diff --git a/.gitignore b/.gitignore index bd4adea3..f8a8f3d6 100644 --- a/.gitignore +++ b/.gitignore @@ -346,3 +346,11 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ + +*.exe +*.obj +*.lnk +*.lib +*.res +*.map +*.I \ No newline at end of file diff --git a/BREN/BWLD.CPP b/BREN/BWLD.CPP index 72e7ccc2..18b605b7 100644 --- a/BREN/BWLD.CPP +++ b/BREN/BWLD.CPP @@ -636,7 +636,7 @@ void BWLD::_CleanWorkingBuffers(void) Callback for when a BACT is rendered. Need to union with dirty region. ***************************************************************************/ -void BWLD::_ActorRendered(PBACT pbact, PBMDL pbmdl, PBMTL pbmtl, +void BWLD::_ActorRendered(PBACT pbact, PBMDL pbmdl, PBMTL pbmtl, void* render_data, br_uint_8 bStyle, br_matrix4 *pbmat4ModelToScreen, br_int_32 bounds[4]) { AssertVarMem(pbact); diff --git a/BREN/INC/ACTOR.H b/BREN/INC/ACTOR.H index edf6c868..c42a0e06 100644 --- a/BREN/INC/ACTOR.H +++ b/BREN/INC/ACTOR.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: actor.h 1.14 1995/05/25 13:37:23 sam Exp $ + * $Id: actor.h 1.15 1995/08/31 16:36:10 sam Exp $ * $Locker: $ * * Definitons for an Actor @@ -103,6 +103,12 @@ typedef struct br_actor { */ br_uint_8 render_style; + /* + * Reference to renderer specific data associated with this actor - NULL will + * inherit from parent (root inherits default data) + */ + void *render_data; + /* * Postiton of this actor within parent space */ diff --git a/BREN/INC/ANGLES.H b/BREN/INC/ANGLES.H index d638faf0..45432331 100644 --- a/BREN/INC/ANGLES.H +++ b/BREN/INC/ANGLES.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1992,1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: angles.h 1.9 1995/05/25 13:37:24 sam Exp $ + * $Id: angles.h 1.10 1995/08/31 16:36:11 sam Exp $ * $Locker: $ * */ @@ -17,8 +17,8 @@ extern "C" { */ typedef br_fixed_luf br_angle; -#define BR_ANGLE_DEG(deg) ((br_angle)((deg)*182)) -#define BR_ANGLE_RAD(rad) ((br_angle)((rad)*10430)) +#define BR_ANGLE_DEG(deg) ((br_angle)(long)((deg)*182)) +#define BR_ANGLE_RAD(rad) ((br_angle)(long)((rad)*10430)) #if BASED_FIXED @@ -31,7 +31,7 @@ typedef br_fixed_luf br_angle; #define BrRadianToDegree(r) (BR_MUL((r),BR_SCALAR(180.0/PI))) #define BrAngleToScalar(a) ((br_scalar)(a)) -#define BrScalarToAngle(s) ((br_angle)(s)) +#define BrScalarToAngle(s) ((br_angle)(long)(s)) #define BR_SIN(a) BrFixedSin(a) #define BR_COS(a) BrFixedCos(a) @@ -44,22 +44,22 @@ typedef br_fixed_luf br_angle; #if BASED_FLOAT -#define BrAngleToDegree(a) ((a) * (180.0/32768.0)) -#define BrDegreeToAngle(d) ((br_angle)((d) * (32768.0/180.0))) -#define BrAngleToRadian(a) ((a) * (PI/32768.0)) -#define BrRadianToAngle(r) ((br_angle)((r)*(32768.0/PI))) -#define BrDegreeToRadian(d) ((d)*(PI/180.0)) -#define BrRadianToDegree(r) ((r)*(180.0/PI)) +#define BrAngleToDegree(a) ((br_scalar)((a) * (180.0/32768.0))) +#define BrDegreeToAngle(d) ((br_angle)(long)((d) * (32768.0/180.0))) +#define BrAngleToRadian(a) ((br_scalar)((a) * (PI/32768.0))) +#define BrRadianToAngle(r) ((br_angle)(long)((r)*(32768.0/PI))) +#define BrDegreeToRadian(d) ((br_scalar)((d)*(PI/180.0))) +#define BrRadianToDegree(r) ((br_scalar)((r)*(180.0/PI))) -#define BrAngleToScalar(a) ((a)*(1.0/(float)BR_ONE_LS)) -#define BrScalarToAngle(s) ((br_angle)((s)*(float)BR_ONE_LS)) +#define BrAngleToScalar(a) ((br_scalar)((a)*(1.0/(float)BR_ONE_LS))) +#define BrScalarToAngle(s) ((br_angle)(long)((s)*(float)BR_ONE_LS)) -#define BR_SIN(a) sin(BrAngleToRadian(a)) -#define BR_COS(a) cos(BrAngleToRadian(a)) +#define BR_SIN(a) ((br_scalar)sin(BrAngleToRadian(a))) +#define BR_COS(a) ((br_scalar)cos(BrAngleToRadian(a))) #define BR_ASIN(a) BrRadianToAngle(asin(a)) #define BR_ACOS(a) BrRadianToAngle(acos(a)) #define BR_ATAN2(a,b) BrRadianToAngle(atan2((a),(b))) -#define BR_ATAN2FAST(a,b) RBradianToAngle(atan2((a),(b))) +#define BR_ATAN2FAST(a,b) BrRadianToAngle(atan2((a),(b))) #endif diff --git a/BREN/INC/BRDIAG.H b/BREN/INC/BRDIAG.H index da3504fa..f6cdc723 100644 --- a/BREN/INC/BRDIAG.H +++ b/BREN/INC/BRDIAG.H @@ -21,18 +21,18 @@ typedef void BR_CALLBACK br_diag_warning_cbfn(char * message); typedef void BR_CALLBACK br_diag_failure_cbfn(char * message); typedef struct br_diaghandler { - char *identifier; - br_diag_warning_cbfn *warning; - br_diag_failure_cbfn *failure; + char *identifier; + br_diag_warning_cbfn *warning; + br_diag_failure_cbfn *failure; } br_diaghandler; /* * For backwards compatibility */ typedef struct br_errorhandler { - char *identifier; - br_diag_warning_cbfn *message; - br_diag_failure_cbfn *error; + char *identifier; + br_diag_warning_cbfn *message; + br_diag_failure_cbfn *error; } br_errorhandler; @@ -92,3 +92,4 @@ typedef struct br_errorhandler { }; #endif #endif + diff --git a/BREN/INC/BRENDER.H b/BREN/INC/BRENDER.H index 231483f5..487b9684 100644 --- a/BREN/INC/BRENDER.H +++ b/BREN/INC/BRENDER.H @@ -1,8 +1,8 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: brender.h 1.17 1995/03/01 16:08:11 sam Exp $ - * $Locker: sam $ + * $Id: brender.h 1.19 1995/08/31 16:36:12 sam Exp $ + * $Locker: $ * * Master include file for BRender * @@ -14,9 +14,7 @@ extern "C" { #endif -#ifndef _COMPILER_H_ #include "compiler.h" -#endif #ifndef _BRLIMITS_H_ #include "brlimits.h" @@ -54,6 +52,10 @@ #include "transfrm.h" #endif +#ifndef _ORDER_H_ +#include "order.h" +#endif + #ifndef _PIXELMAP_H_ #include "pixelmap.h" #endif @@ -94,14 +96,14 @@ #include "brfile.h" #endif -#ifndef _BRMEM_H_ -#include "brmem.h" -#endif - #ifndef _BRDIAG_H_ #include "brdiag.h" #endif +#ifndef _BRMEM_H_ +#include "brmem.h" +#endif + #ifndef _BRERR_H_ #include "brerr.h" #endif @@ -122,6 +124,10 @@ #include "zbproto.h" #endif +#ifndef _ZSPROTO_H_ +#include "zsproto.h" +#endif + #ifndef _FWPEXTRA_H_ #include "fwpextra.h" #endif @@ -138,8 +144,11 @@ #endif #endif +#include "compend.h" + #ifdef __cplusplus }; #endif #endif + diff --git a/BREN/INC/BRERR.H b/BREN/INC/BRERR.H index 9151dbc0..6508073a 100644 --- a/BREN/INC/BRERR.H +++ b/BREN/INC/BRERR.H @@ -1,8 +1,8 @@ /* * Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved. * - * $Id: fwiproto.h 1.27 1995/06/30 16:01:14 sam Exp $ - * $Locker: sam $ + * $Id: brerr.h 1.4 1995/07/28 18:57:02 sam Exp $ + * $Locker: $ * * Error type */ diff --git a/BREN/INC/BRMEM.H b/BREN/INC/BRMEM.H index e10f32fb..8e3c2dea 100644 --- a/BREN/INC/BRMEM.H +++ b/BREN/INC/BRMEM.H @@ -1,8 +1,8 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: brmem.h 1.13 1995/05/25 13:37:26 sam Exp $ - * $Locker: sam $ + * $Id: brmem.h 1.15 1995/08/31 16:36:13 sam Exp $ + * $Locker: $ * * Brender's interface to memory allocation */ @@ -81,6 +81,7 @@ enum br_memory_classes { BR_MEMORY_IMAGE_SECTIONS, BR_MEMORY_IMAGE_NAMES, BR_MEMORY_EXCEPTION_HANDLER, + BR_MEMORY_RENDER_DATA, /* * Application classes diff --git a/BREN/INC/BWLD.H b/BREN/INC/BWLD.H index c4722717..efe8c362 100644 --- a/BREN/INC/BWLD.H +++ b/BREN/INC/BWLD.H @@ -76,7 +76,7 @@ protected: BVEC3 *pbvec3RayPos, BVEC3 *pbvec3RayDir, BRS dzpNear, BRS dzpFar, void *pbwld); static void BR_CALLBACK _ActorRendered(PBACT pbact, PBMDL pbmdl, - PBMTL pbmtl, br_uint_8 bStyle, br_matrix4 *pbmat4ModelToScreen, + PBMTL pbmtl, void* render_data, br_uint_8 bStyle, br_matrix4 *pbmat4ModelToScreen, br_int_32 bounds[4]); public: diff --git a/BREN/INC/COLOUR.H b/BREN/INC/COLOUR.H index 5dbd8423..aa143864 100644 --- a/BREN/INC/COLOUR.H +++ b/BREN/INC/COLOUR.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: colour.h 1.3 1995/02/22 21:37:03 sam Exp $ + * $Id: colour.h 1.4 1995/08/31 16:36:14 sam Exp $ * $Locker: $ * * Colour type and macros @@ -23,7 +23,7 @@ typedef unsigned long int br_colour; #define BR_COLOUR_RGBA(r,g,b,a) \ ((((unsigned int)(a))<<24) |\ - ((((unsigned int)(r))<<16) |\ + (((unsigned int)(r))<<16) |\ (((unsigned int)(g))<<8) |\ ((unsigned int)(b))) diff --git a/BREN/INC/COMPEND.H b/BREN/INC/COMPEND.H new file mode 100644 index 00000000..f652a763 --- /dev/null +++ b/BREN/INC/COMPEND.H @@ -0,0 +1,83 @@ +/* + * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. + * + * $Id: compend.h 1.1 1995/08/31 16:36:45 sam Exp $ + * $Locker: $ + * + * Included at end of BRender includes - undoes any compiler specific pragmas + */ +#ifndef _COMPEND_H_ +#define _COMPEND_H_ + +#ifdef __cplusplus + extern "C" { +#endif + +/* + * WATCOM C/C++ 32 + */ +#if defined(__WATCOMC__) + +#ifndef __H2INC__ +#pragma pack() +#endif + +/* + * Zortech C++ + */ +#elif defined(__ZTC__) + +/* + * GNU C + */ +#elif defined (__GNUC__) + + +/* + * Apple MPW C + */ +#elif defined (__MPW__) + +/* + * Intel Proton + */ +#elif defined (__PROTONC__) + +/* + * Microsoft Visual C++ + */ +#elif defined (_MSC_VER) + +#ifndef __H2INC__ +#pragma pack() +#endif + +/* + * Metaware High-C Version 1 + */ +#elif defined (__HIGHC_V1__) + +/* + * Metaware High-C Version 3 + */ +#elif defined (__HIGHC__) + +/* + * Borland BC 4 + */ +#elif defined (__BORLANDC__) + +/* + * IBM CSet++ + */ +#elif defined (__IBMC__) + +#endif + +#ifdef __cplusplus + }; +#endif +#endif + + + diff --git a/BREN/INC/COMPILER.H b/BREN/INC/COMPILER.H index 61b6bc3f..484e7be6 100644 --- a/BREN/INC/COMPILER.H +++ b/BREN/INC/COMPILER.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: compiler.h 1.20 1995/05/25 13:37:28 sam Exp $ + * $Id: compiler.h 1.22 1995/08/31 16:36:15 sam Exp $ * $Locker: sam $ * * Misc host compiler configuration (types & special declarators etc.) @@ -76,12 +76,16 @@ typedef int br_boolean; #define stricmp _stricmp #define strnicmp _strnicmp #define memccpy _memccpy +#define MEMAVL 0 #pragma aux __cdecl "_*" parm caller [] modify [eax ecx edx] ; #define BR_PUBLIC_ENTRY __cdecl #define BR_CALLBACK __cdecl + #else + +#define MEMAVL _memavl() #define BR_PUBLIC_ENTRY #define BR_CALLBACK #endif @@ -99,12 +103,16 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-WTC" #define BR_HAS_FAR 1 + /* * Stop unreferenced variables producing a warning * Things like "rcsid" and unused fucntion arguments */ #pragma off (unreferenced); +#ifndef __H2INC__ +#pragma pack(4); +#endif /* * Zortech C++ */ @@ -119,6 +127,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-ZTC" #define BR_HAS_FAR 1 +#define MEMAVL 0 /* * GNU C @@ -135,6 +144,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-GCC" #define BR_HAS_FAR 0 +#define MEMAVL 0 /* * Apple MPW C @@ -150,6 +160,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-MPW" #define BR_HAS_FAR 0 +#define MEMAVL 0 /* * Intel Proton @@ -165,6 +176,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-PROTON" #define BR_HAS_FAR 1 +#define MEMAVL 0 /* * Microsoft Visual C++ @@ -180,6 +192,12 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-VISUALC" #define BR_HAS_FAR 0 +#define MEMAVL 0 + +#ifndef __H2INC__ +#pragma warning(disable:4103) +#pragma pack(4) +#endif /* * Metaware High-C Version 1 @@ -198,6 +216,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-HIGHC1" #define BR_HAS_FAR 0 +#define MEMAVL 0 #define stricmp _stricmp @@ -218,6 +237,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-HIGHC3" #define BR_HAS_FAR 0 +#define MEMAVL 0 #define stricmp _stricmp @@ -236,6 +256,12 @@ typedef int br_boolean; #define BR_HAS_FAR 0 +#define MEMAVL 0 + +#ifndef __H2INC__ +#pragma option -a4 +#endif + /* * IBM CSet++ */ @@ -250,6 +276,7 @@ typedef int br_boolean; #define BR_SUFFIX_HOST "-CSET" #define BR_HAS_FAR 0 +#define MEMAVL 0 #endif diff --git a/BREN/INC/FWPEXTRA.FNS b/BREN/INC/FWPEXTRA.FNS new file mode 100644 index 00000000..e06393ec --- /dev/null +++ b/BREN/INC/FWPEXTRA.FNS @@ -0,0 +1,46 @@ +# Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved. +# +# $Id: fwpextra.fns 1.1 1995/05/25 13:37:49 sam Exp $ +# $Locker: $ +# +# List of functions that need per compiler C<-> ASM glue +# + +BrFixedAbs +BrFixedMul +BrFixedMac2 +BrFixedMac3 +BrFixedMac4 +BrFixedSqr +BrFixedSqr2 +BrFixedSqr3 +BrFixedSqr4 +BrFixedLength2 +BrFixedLength3 +BrFixedLength4 +BrFixedRLength2 +BrFixedRLength3 +BrFixedRLength4 +BrFixedDiv +BrFixedDivF +BrFixedDivR +BrFixedMulDiv +BrFixedMac2Div +BrFixedMac3Div +BrFixedMac4Div +BrFixedRcp +BrFixedFMac2 +BrFixedFMac3 +BrFixedFMac4 +BrFixedSin +BrFixedCos +BrFixedASin +BrFixedACos +BrFixedATan2 +BrFixedATan2Fast +BrSqrt +BrFastSqrt +BrFastRSqrt +BrBlockFill +BrBlockCopy + diff --git a/BREN/INC/FWPEXTRA.H b/BREN/INC/FWPEXTRA.H index e69de29b..088c3c4f 100644 --- a/BREN/INC/FWPEXTRA.H +++ b/BREN/INC/FWPEXTRA.H @@ -0,0 +1,94 @@ + +/* + * Copyright (c) 1993-1995 Argonaut Technologies Limited. All rights reserved. + * + * Extra glue for C<->ASM generated via gemasmpr.pl + */ + +#ifdef __cplusplus + extern "C" { +#endif + +#ifdef __IBMC__ +#pragma map(BrFixedAbs,"_BrFixedAbs") +#pragma map(BrFixedMul,"_BrFixedMul") +#pragma map(BrFixedMac2,"_BrFixedMac2") +#pragma map(BrFixedMac3,"_BrFixedMac3") +#pragma map(BrFixedMac4,"_BrFixedMac4") +#pragma map(BrFixedSqr,"_BrFixedSqr") +#pragma map(BrFixedSqr2,"_BrFixedSqr2") +#pragma map(BrFixedSqr3,"_BrFixedSqr3") +#pragma map(BrFixedSqr4,"_BrFixedSqr4") +#pragma map(BrFixedLength2,"_BrFixedLength2") +#pragma map(BrFixedLength3,"_BrFixedLength3") +#pragma map(BrFixedLength4,"_BrFixedLength4") +#pragma map(BrFixedRLength2,"_BrFixedRLength2") +#pragma map(BrFixedRLength3,"_BrFixedRLength3") +#pragma map(BrFixedRLength4,"_BrFixedRLength4") +#pragma map(BrFixedDiv,"_BrFixedDiv") +#pragma map(BrFixedDivF,"_BrFixedDivF") +#pragma map(BrFixedDivR,"_BrFixedDivR") +#pragma map(BrFixedMulDiv,"_BrFixedMulDiv") +#pragma map(BrFixedMac2Div,"_BrFixedMac2Div") +#pragma map(BrFixedMac3Div,"_BrFixedMac3Div") +#pragma map(BrFixedMac4Div,"_BrFixedMac4Div") +#pragma map(BrFixedRcp,"_BrFixedRcp") +#pragma map(BrFixedFMac2,"_BrFixedFMac2") +#pragma map(BrFixedFMac3,"_BrFixedFMac3") +#pragma map(BrFixedFMac4,"_BrFixedFMac4") +#pragma map(BrFixedSin,"_BrFixedSin") +#pragma map(BrFixedCos,"_BrFixedCos") +#pragma map(BrFixedASin,"_BrFixedASin") +#pragma map(BrFixedACos,"_BrFixedACos") +#pragma map(BrFixedATan2,"_BrFixedATan2") +#pragma map(BrFixedATan2Fast,"_BrFixedATan2Fast") +#pragma map(BrSqrt,"_BrSqrt") +#pragma map(BrFastSqrt,"_BrFastSqrt") +#pragma map(BrFastRSqrt,"_BrFastRSqrt") +#pragma map(BrBlockFill,"_BrBlockFill") +#pragma map(BrBlockCopy,"_BrBlockCopy") +#endif /* __IBMC__ */ + +#ifdef __HIGHC__ +#pragma Alias(BrFixedAbs,"_BrFixedAbs") +#pragma Alias(BrFixedMul,"_BrFixedMul") +#pragma Alias(BrFixedMac2,"_BrFixedMac2") +#pragma Alias(BrFixedMac3,"_BrFixedMac3") +#pragma Alias(BrFixedMac4,"_BrFixedMac4") +#pragma Alias(BrFixedSqr,"_BrFixedSqr") +#pragma Alias(BrFixedSqr2,"_BrFixedSqr2") +#pragma Alias(BrFixedSqr3,"_BrFixedSqr3") +#pragma Alias(BrFixedSqr4,"_BrFixedSqr4") +#pragma Alias(BrFixedLength2,"_BrFixedLength2") +#pragma Alias(BrFixedLength3,"_BrFixedLength3") +#pragma Alias(BrFixedLength4,"_BrFixedLength4") +#pragma Alias(BrFixedRLength2,"_BrFixedRLength2") +#pragma Alias(BrFixedRLength3,"_BrFixedRLength3") +#pragma Alias(BrFixedRLength4,"_BrFixedRLength4") +#pragma Alias(BrFixedDiv,"_BrFixedDiv") +#pragma Alias(BrFixedDivF,"_BrFixedDivF") +#pragma Alias(BrFixedDivR,"_BrFixedDivR") +#pragma Alias(BrFixedMulDiv,"_BrFixedMulDiv") +#pragma Alias(BrFixedMac2Div,"_BrFixedMac2Div") +#pragma Alias(BrFixedMac3Div,"_BrFixedMac3Div") +#pragma Alias(BrFixedMac4Div,"_BrFixedMac4Div") +#pragma Alias(BrFixedRcp,"_BrFixedRcp") +#pragma Alias(BrFixedFMac2,"_BrFixedFMac2") +#pragma Alias(BrFixedFMac3,"_BrFixedFMac3") +#pragma Alias(BrFixedFMac4,"_BrFixedFMac4") +#pragma Alias(BrFixedSin,"_BrFixedSin") +#pragma Alias(BrFixedCos,"_BrFixedCos") +#pragma Alias(BrFixedASin,"_BrFixedASin") +#pragma Alias(BrFixedACos,"_BrFixedACos") +#pragma Alias(BrFixedATan2,"_BrFixedATan2") +#pragma Alias(BrFixedATan2Fast,"_BrFixedATan2Fast") +#pragma Alias(BrSqrt,"_BrSqrt") +#pragma Alias(BrFastSqrt,"_BrFastSqrt") +#pragma Alias(BrFastRSqrt,"_BrFastRSqrt") +#pragma Alias(BrBlockFill,"_BrBlockFill") +#pragma Alias(BrBlockCopy,"_BrBlockCopy") +#endif /* __IBMC__ */ + +#ifdef __cplusplus + }; +#endif diff --git a/BREN/INC/FWPROTO.H b/BREN/INC/FWPROTO.H index 93c212a9..2ad0584e 100644 --- a/BREN/INC/FWPROTO.H +++ b/BREN/INC/FWPROTO.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: fwproto.h 1.42 1995/06/30 16:08:49 sam Exp $ + * $Id: fwproto.h 1.44 1995/08/31 16:36:16 sam Exp $ * $Locker: sam $ * * Function prototypes for brender framework @@ -160,10 +160,10 @@ br_fixed_ls BR_ASM_CALL BrFixedFMac3(br_fixed_lsf a, br_fixed_ls b, /* result = a*b + c*d + e*f + g*h (a,c,e,g are fractions) */ -br_fixed_ls BR_ASM_CALL BrFixedFMac4(br_fixed_ls a, br_fixed_ls b, - br_fixed_ls c, br_fixed_ls d, - br_fixed_ls e, br_fixed_ls f, - br_fixed_ls g, br_fixed_ls h); +br_fixed_ls BR_ASM_CALL BrFixedFMac4(br_fixed_lsf a, br_fixed_ls b, + br_fixed_lsf c, br_fixed_ls d, + br_fixed_lsf e, br_fixed_ls f, + br_fixed_lsf g, br_fixed_ls h); /* * Misc. support functions @@ -374,6 +374,11 @@ void BR_PUBLIC_ENTRY BrPixelmapRectangleFill(br_pixelmap *dst,br_int_16 x,br_int void BR_PUBLIC_ENTRY BrPixelmapDirtyRectangleCopy(br_pixelmap *dst,br_pixelmap *src,br_int_16 x,br_int_16 y,br_uint_16 w,br_uint_16 h); void BR_PUBLIC_ENTRY BrPixelmapDirtyRectangleFill(br_pixelmap *dst,br_int_16 x,br_int_16 y,br_uint_16 w,br_uint_16 h,br_uint_32 colour); +/* + * Backwards compat. + */ +#define BrPixelmapDirtyRectangleClear BrPixelmapDirtyRectangleFill + void BR_PUBLIC_ENTRY BrPixelmapPixelSet(br_pixelmap *dst,br_int_16 x,br_int_16 y,br_uint_32 colour); br_uint_32 BR_PUBLIC_ENTRY BrPixelmapPixelGet(br_pixelmap *dst,br_int_16 x,br_int_16 y); void BR_PUBLIC_ENTRY BrPixelmapCopy(br_pixelmap *dst,br_pixelmap *src); @@ -390,7 +395,7 @@ void BR_PUBLIC_ENTRY BrPixelmapCopyBits(br_pixelmap *dst, br_uint_16 BR_PUBLIC_ENTRY BrPixelmapTextWidth(br_pixelmap *dst, br_font *font, char *text); br_uint_16 BR_PUBLIC_ENTRY BrPixelmapTextHeight(br_pixelmap *dst, br_font *font); -void BR_PUBLIC_ENTRY BrPixelmapDoubleBuffer(br_pixelmap *dst,br_pixelmap *src); +br_pixelmap * BR_PUBLIC_ENTRY BrPixelmapDoubleBuffer(br_pixelmap *dst,br_pixelmap *src); /* * Backwards compatibility @@ -547,7 +552,7 @@ br_scalar BR_PUBLIC_ENTRY BrVector2LengthSquared(br_vector2 *v1); /** ** 3D VECTORS **/ -void BR_PUBLIC_ENTRY BrVector3Copy(br_vector3 *v1, br_vector2 *v2); +void BR_PUBLIC_ENTRY BrVector3Copy(br_vector3 *v1, br_vector3 *v2); void BR_PUBLIC_ENTRY BrVector3Set(br_vector3 *v1, br_scalar s1, br_scalar s2, br_scalar s3); void BR_PUBLIC_ENTRY BrVector3SetInt(br_vector3 *v1, int i1, int i2, int i3); void BR_PUBLIC_ENTRY BrVector3SetFloat(br_vector3 *v1, float f1, float f2, float f3); diff --git a/BREN/INC/MODEL.H b/BREN/INC/MODEL.H index 615bb7e2..19f0fd10 100644 --- a/BREN/INC/MODEL.H +++ b/BREN/INC/MODEL.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: model.h 1.19 1995/05/25 13:37:34 sam Exp $ + * $Id: model.h 1.20 1995/08/31 16:36:18 sam Exp $ * $Locker: $ * * In-memory structures for models, both public and private areas @@ -80,6 +80,7 @@ typedef void BR_CALLBACK br_model_custom_cbfn( struct br_actor *actor, struct br_model *model, struct br_material *material, + void *render_data, br_uint_8 style, int on_screen, br_matrix34 *model_to_view, diff --git a/BREN/INC/ORDER.H b/BREN/INC/ORDER.H new file mode 100644 index 00000000..50b7f7b8 --- /dev/null +++ b/BREN/INC/ORDER.H @@ -0,0 +1,55 @@ +/* + * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. + * + * $Id: order.h 1.1 1995/08/31 16:37:15 sam Exp $ + * $Locker: $ + * + * Definitons for an order table + */ +#ifndef _ORDER_H_ +#define _ORDER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +enum { + BR_ORDER_TABLE_NEW_BOUNDS = 0x0001, +}; + +typedef struct br_order_table { + + /* + * Order table array + */ + void **table; + + /* + * Number of entries in array + */ + br_uint_32 ot_size; + + /* + * Next order table in list + */ + struct br_order_table *next; + + /* + * Order table bounds + */ + br_scalar min_z; + br_scalar max_z; + + /* + * Flags + */ + br_uint_32 flags; + +} br_order_table; + + +#ifdef __cplusplus +}; +#endif +#endif + \ No newline at end of file diff --git a/BREN/INC/PIXELMAP.H b/BREN/INC/PIXELMAP.H index 5c51febd..92e2cfad 100644 --- a/BREN/INC/PIXELMAP.H +++ b/BREN/INC/PIXELMAP.H @@ -1,8 +1,8 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: pixelmap.h 1.15 1995/06/30 16:08:58 sam Exp $ - * $Locker: sam $ + * $Id: pixelmap.h 1.17 1995/08/31 16:36:19 sam Exp $ + * $Locker: $ * * A stopgap 2D pixelmap structure for brender. This should really be the * pixelmap data type from the underlying 2D system (whatever that will @@ -69,7 +69,7 @@ enum { /* * Wrong way around 15 bit true colour */ - BR_PMT_BGR_555, + BR_PMT_BGR_555 }; /* diff --git a/BREN/INC/POOLMAC.INC b/BREN/INC/POOLMAC.INC new file mode 100644 index 00000000..d9224adc --- /dev/null +++ b/BREN/INC/POOLMAC.INC @@ -0,0 +1,37 @@ +;; Copyright (c) 1992,1993 Argonaut Software Ltd. All rights reserved. +;; +;; $Id: poolmac.inc 1.2 1994/07/01 18:55:27 sam Exp $ +;; $Locker: $ +;; +;; ASM support for pool allcoation +;; + +; Allocate a block form the given pool, leaving the pointer in a given +; register. +; +; Trashes AX +; +BR_POOL_ALLOCATE macro reg,pool + local alloc_ok + + mov edi,pool.free + and edi,edi + jne alloc_ok + + push ecx + push ebx + push edx + push offset pool + call BrPoolAddChunk + add sp,4 + pop edx + pop ebx + pop ecx + + mov edi,pool.free + +alloc_ok: mov eax,[edi].br_pool_block.next + mov pool.free,eax + + endm + diff --git a/BREN/INC/SAMSTATE.RST b/BREN/INC/SAMSTATE.RST new file mode 100644 index 00000000..be02c3eb --- /dev/null +++ b/BREN/INC/SAMSTATE.RST @@ -0,0 +1,12 @@ +[edit-] +screen=132 60 +toggles=1 1 0 1 0 0 +srch= +src= +rpl= +file=d:\brender\v1_1_2\source\inc\compend.h 1 37 9 54 +[brief] +file=d:\brender\v1_1_2\source\inc\compend.h 1 37 9 54 1 57 130 30 c=1 +file=d:\brender\v1_1_2\source\inc\compend.h 1 7 1 21 1 28 130 1 c=0 +[shared-] +pmark=d:\brender\v1_1_2\source\inc\compend.h 9 54 diff --git a/BREN/INC/SCALAR.H b/BREN/INC/SCALAR.H index a1ddb6de..cb8a858b 100644 --- a/BREN/INC/SCALAR.H +++ b/BREN/INC/SCALAR.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: scalar.h 1.20 1995/05/25 13:37:37 sam Exp $ + * $Id: scalar.h 1.21 1995/08/31 16:36:20 sam Exp $ * $Locker: $ * * Scalar type @@ -95,6 +95,7 @@ typedef br_fixed_luf br_ufraction; #define BR_SQR(a) BrFixedSqr(a) #define BR_ABS(a) BrFixedAbs(a) +#define BR_NEG(a) (-(a)) #define BR_DIV(a,b) BrFixedDiv(a,b) #define BR_DIVR(a,b) BrFixedDivR(a,b) @@ -202,12 +203,13 @@ double atan2(double,double); #define BR_MUL(a,b) ((a)*(b)) #define BR_SQR(a) ((a)*(a)) -#define BR_ABS(a) fabs(a) +#define BR_ABS(a) ((br_scalar)fabs(a)) +#define BR_NEG(a) (-(a)) #define BR_DIV(a,b) ((a)/(b)) #define BR_DIVR(a,b) ((a)/(b)) #define BR_MULDIV(a,b,c) ((a)*(b)/(c)) -#define BR_RCP(a) (1.0/(a)) +#define BR_RCP(a) ((br_scalar)(1.0/(a))) #define BR_CONST_MUL(a,b) ((a)*(b)) #define BR_CONST_DIV(a,b) ((a)/(b)) @@ -229,16 +231,16 @@ double atan2(double,double); #define BR_FMAC3(a,b,c,d,e,f) ((a)*(b)+(c)*(d)+(e)*(f)) #define BR_FMAC4(a,b,c,d,e,f,g,h) ((a)*(b)+(c)*(d)+(e)*(f)+(g)*(h)) -#define BR_LENGTH2(a,b) sqrt((a)*(a)+(b)*(b)) -#define BR_LENGTH3(a,b,c) sqrt((a)*(a)+(b)*(b)+(c)*(c)) -#define BR_LENGTH4(a,b,c,d) sqrt((a)*(a)+(b)*(b)+(c)*(c)+(d)*(d)) +#define BR_LENGTH2(a,b) ((br_scalar)sqrt((a)*(a)+(b)*(b))) +#define BR_LENGTH3(a,b,c) ((br_scalar)sqrt((a)*(a)+(b)*(b)+(c)*(c))) +#define BR_LENGTH4(a,b,c,d) ((br_scalar)sqrt((a)*(a)+(b)*(b)+(c)*(c)+(d)*(d))) -#define BR_RLENGTH2(a,b) (1.0/sqrt((a)*(a)+(b)*(b))) -#define BR_RLENGTH3(a,b,c) (1.0/sqrt((a)*(a)+(b)*(b)+(c)*(c))) -#define BR_RLENGTH4(a,b,c,d) (1.0/sqrt((a)*(a)+(b)*(b)+(c)*(c)+(d)*(d))) +#define BR_RLENGTH2(a,b) ((br_scalar)(1.0/sqrt((a)*(a)+(b)*(b)))) +#define BR_RLENGTH3(a,b,c) ((br_scalar)(1.0/sqrt((a)*(a)+(b)*(b)+(c)*(c)))) +#define BR_RLENGTH4(a,b,c,d) ((br_scalar)(1.0/sqrt((a)*(a)+(b)*(b)+(c)*(c)+(d)*(d)))) -#define BR_POW(a,b) pow((a),(b)) -#define BR_SQRT(a) sqrt(a) +#define BR_POW(a,b) ((br_scalar)pow((a),(b))) +#define BR_SQRT(a) ((br_scalar)sqrt(a)) #endif diff --git a/BREN/INC/VECFNS.H b/BREN/INC/VECFNS.H index 6d09cf4d..f27c08a2 100644 --- a/BREN/INC/VECFNS.H +++ b/BREN/INC/VECFNS.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1992,1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: vecfns.h 1.11 1995/06/30 16:09:04 sam Exp $ + * $Id: vecfns.h 1.12 1995/08/31 16:36:22 sam Exp $ * $Locker: $ * * Inline versions of the vector operations (could do compiler specific @@ -247,9 +247,9 @@ extern "C" { (v1)->v[1]=BR_MUL((v2)->v[1],_scale);\ (v1)->v[2]=BR_MUL((v2)->v[2],_scale);\ } else {\ - (v1)->v[0]=BR_FRACTION(1.0);\ - (v1)->v[1]=BR_FRACTION(0.0);\ - (v1)->v[2]=BR_FRACTION(0.0);\ + (v1)->v[0]=BR_SCALAR(1.0);\ + (v1)->v[1]=BR_SCALAR(0.0);\ + (v1)->v[2]=BR_SCALAR(0.0);\ }\ } while(0) @@ -300,8 +300,8 @@ extern "C" { (v1)->v[0]=BR_MUL((v2)->v[0],_scale);\ (v1)->v[1]=BR_MUL((v2)->v[1],_scale);\ } else {\ - (v1)->v[0]=BR_FRACTION(1.0);\ - (v1)->v[1]=BR_FRACTION(0.0);\ + (v1)->v[0]=BR_SCALAR(1.0);\ + (v1)->v[1]=BR_SCALAR(0.0);\ }\ } while(0) diff --git a/BREN/INC/ZBPROTO.H b/BREN/INC/ZBPROTO.H index 0959969e..6d67fa12 100644 --- a/BREN/INC/ZBPROTO.H +++ b/BREN/INC/ZBPROTO.H @@ -1,7 +1,7 @@ /* * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. * - * $Id: zbproto.h 1.8 1995/02/22 21:37:28 sam Exp $ + * $Id: zbproto.h 1.9 1995/08/31 16:36:24 sam Exp $ * $Locker: $ * * Function prototypes for Z buffer renderer @@ -26,7 +26,8 @@ typedef void BR_CALLBACK br_renderbounds_cbfn( br_actor *actor, br_model *model, br_material *material, - br_uint_8 style, + void *render_data, + br_uint_8 style, br_matrix4 *model_to_screen, br_int_32 bounds[4]); @@ -44,7 +45,7 @@ void BR_PUBLIC_ENTRY BrZbSceneRenderAdd(br_actor *tree); void BR_PUBLIC_ENTRY BrZbSceneRenderEnd(void); /* - * Wrapper that inokes above therr calls in order + * Wrapper that invokes above three calls in order */ void BR_PUBLIC_ENTRY BrZbSceneRender( br_actor *world, @@ -69,3 +70,4 @@ br_renderbounds_cbfn * BR_PUBLIC_ENTRY BrZbSetRenderBoundsCallback(br_renderboun #endif #endif #endif + \ No newline at end of file diff --git a/BREN/INC/ZSPROTO.H b/BREN/INC/ZSPROTO.H new file mode 100644 index 00000000..32bbfd21 --- /dev/null +++ b/BREN/INC/ZSPROTO.H @@ -0,0 +1,106 @@ +/* + * Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved. + * + * $Id: zsproto.h 1.1 1995/08/31 16:37:20 sam Exp $ + * $Locker: $ + * + * Function prototypes for bucket Z-sort renderer + */ +#ifndef _ZSPROTO_H_ +#define _ZSPROTO_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Sort types for primitive insertion + */ +enum { + BR_ZSORT_MIN = 0x0001, + BR_ZSORT_MAX = 0x0002, + BR_ZSORT_AVERAGE = 0x0004, +}; + +#if 0 + +#define BR_BOUNDS_MIN_X 0 +#define BR_BOUNDS_MIN_Y 1 +#define BR_BOUNDS_MAX_X 2 +#define BR_BOUNDS_MAX_Y 3 + +/* + * Callback function invoked when an actor is + * rendered + */ +typedef void BR_CALLBACK br_renderbounds_cbfn( + br_actor *actor, + br_model *model, + br_material *material, + void *render_data, + br_uint_8 style, + br_matrix4 *model_to_screen, + br_int_32 bounds[4]); + +#endif + +/* + * Callback function invoked when primitive is generated + */ +typedef void BR_CALLBACK br_primitive_cbfn( + void *primitive, + br_actor *actor, + br_model *model, + br_material *material, + br_order_table *order_table, + br_scalar z[3]); + +#ifndef _NO_PROTOTYPES + +void BR_PUBLIC_ENTRY BrZsBegin(br_uint_8 colour_type, void *primitive, br_uint_32 size); +void BR_PUBLIC_ENTRY BrZsEnd(void); + +void BR_PUBLIC_ENTRY BrZsSceneRenderBegin(br_actor *world, + br_actor *camera, + br_pixelmap *colour_buffer, + br_uint_8 db_index, + br_uint_32 flags); + +void BR_PUBLIC_ENTRY BrZsSceneRenderAdd(br_actor *tree); +void BR_PUBLIC_ENTRY BrZsSceneRenderEnd(void); + +/* + * Wrapper that invokes above three calls in order + */ +void BR_PUBLIC_ENTRY BrZsSceneRender(br_actor *world, + br_actor *camera, + br_pixelmap *colour_buffer, + br_uint_8 db_index, + br_uint_32 flags); + +/* + * Used within custom model callbacks to render other models + */ +void BR_PUBLIC_ENTRY BrZsModelRender(br_actor *actor, + br_model *model, + br_material *material, + br_order_table *order_table, + br_uint_8 style, + int on_screen, + int use_custom); + +br_primitive_cbfn * BR_PUBLIC_ENTRY BrZsSetPrimitiveCallback(br_primitive_cbfn *new_cbfn); + +br_order_table * BR_PUBLIC_ENTRY BrZsSetActorOrderTable(br_actor *actor, br_order_table *order_table); +br_order_table * BR_PUBLIC_ENTRY BrZsGetActorOrderTable(br_actor *actor); +br_order_table * BR_PUBLIC_ENTRY BrZsGetDefaultOrderTable(void); + +void BR_PUBLIC_ENTRY BrZsClearOrderTable(br_order_table *order_table); +void BR_PUBLIC_ENTRY BrZsClearDefaultOrderTable(void); + +#ifdef __cplusplus +}; +#endif +#endif +#endif + \ No newline at end of file diff --git a/ELIB/WIND/BREN.LIB b/ELIB/WIND/BREN.LIB deleted file mode 100644 index b2152dfa..00000000 Binary files a/ELIB/WIND/BREN.LIB and /dev/null differ diff --git a/ELIB/WIND/BRFMMXR.LIB b/ELIB/WIND/BRFMMXR.LIB index f4f49e30..7564052b 100644 Binary files a/ELIB/WIND/BRFMMXR.LIB and b/ELIB/WIND/BRFMMXR.LIB differ diff --git a/ELIB/WIND/BRFWMXR.LIB b/ELIB/WIND/BRFWMXR.LIB index 4b16a6ff..0442fcc1 100644 Binary files a/ELIB/WIND/BRFWMXR.LIB and b/ELIB/WIND/BRFWMXR.LIB differ diff --git a/ELIB/WIND/BRZBMXR.LIB b/ELIB/WIND/BRZBMXR.LIB index b7dee028..853d22b9 100644 Binary files a/ELIB/WIND/BRZBMXR.LIB and b/ELIB/WIND/BRZBMXR.LIB differ diff --git a/ELIB/WINS/BREN.LIB b/ELIB/WINS/BREN.LIB deleted file mode 100644 index 862e46ea..00000000 Binary files a/ELIB/WINS/BREN.LIB and /dev/null differ diff --git a/OBJ/WIND/3DMOVIE.I b/OBJ/WIND/3DMOVIE.I deleted file mode 100644 index f40cd13e..00000000 --- a/OBJ/WIND/3DMOVIE.I +++ /dev/null @@ -1,3125 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" - - -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 4 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 5 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 6 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" - - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\utestgst.cht" - - - - -CHUNK ('GST ' 3 "TDT Action Names") - LONG - GST(4) - ITEM "At Rest" 0 - ITEM "Flip Letters" 1 - ITEM "Spin Letters" 2 - ITEM "Cartwheel Letters" 3 - ITEM "Side to Side" 4 - ITEM "Rock" 5 - ITEM "Back and Forth" 6 - ITEM "Grow and Shrink" 7 - ITEM "Flip" 8 - ITEM "Spin" 9 - ITEM "Cartwheel" 10 - ITEM "The Wave" 11 - ITEM "Hide and Appear" 12 - ITEM "Walk Forward*" 13 - ITEM "Hop" 14 - ITEM "Stretch" 15 -ENDCHUNK - - - - -CHUNK ('GST ' 6 "Misc. App global strings") - LONG - GST(4) - ITEM "Microsoft 3D Movie Maker" 0 - ITEM "3D Movie Maker" 1 - ITEM "3DMovie" 2 - ITEM "My_Stuff" 3 - ITEM "Copy of" 4 - ITEM "A New Movie" 5 - ITEM "Comic Sans MS" 6 - ITEM "12" 14 - ITEM "Users" 12 - ITEM "Error from net provider \"%z\": \n%x : %z" 13 - ITEM "Save a movie" 15 - ITEM "Open a movie" 16 - ITEM "Import a sound" 17 - ITEM "Import a texture" 18 - ITEM "Movie Files" 19 - ITEM "*.3mm" 20 - ITEM "Sound Files" 21 - ITEM "*.mid;*.3mm" 22 - ITEM "*.wav;*.3mm" 23 - ITEM "Bitmap Files" 24 - ITEM "*.bmp" 25 - ITEM "Melanie" 26 - ITEM "Out-of-Memory Error" 27 - ITEM "Do you want to go to the building? Press 'No' to leave 3D Movie Maker completely" 28 - ITEM "Save changes to %s?" 29 - ITEM "Do you really want to leave 3D Movie Maker?" 30 - ITEM "Delete sound: %s?" 31 - ITEM "Overwrite existing file: %s?" 32 - ITEM "Remove all unused user sounds from file?" 33 -ENDCHUNK -#line 9 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" - - - - -CHUNK( 'GLCR', 0, ) PALETTE "studio\bmp\homelogo.bmp" ENDCHUNK - - - - -CHUNK ('MBMP' 6 "Home Logo") - PACK BITMAP (0 0 0) "studio\bmp\homelogo.bmp" -ENDCHUNK - - - - -CHUNK ('MBMP' 0 "Splash Screen") - PACK BITMAP (0 0 0) "studio\bmp\splash.bmp" -ENDCHUNK - - - - -CHUNK ('MIDS' 0 "Splash Sound") - MIDI "studio\bmp\splash.mid" -ENDCHUNK - - - - -CHUNK ('GST ' 4 "Studio Filenames") - LONG - GST(4) - ITEM "studio" 1048576 -ENDCHUNK - - - - - -CHUNK ('GST ' 5 "Building Filenames") - LONG - GST(4) - ITEM "building" 1572864 - ITEM "bldghd" 1048576 -ENDCHUNK - - - - - -CHUNK ('GST ' 7 "Shared Filenames") - LONG - GST(4) - ITEM "shared" 524288 - ITEM "sharecd" 98304 - ITEM "help" 524288 - ITEM "helpaud" 0 -ENDCHUNK - - - - - -CHUNK('TMAP', 0, "") - PACK BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x03 0x02 - 0x00 0x00 0x00 0x00 0x00 0x01 0x10 0x00 - 0x00 0x00 0x00 0x00 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF -ENDCHUNK diff --git a/OBJ/WIND/3DMOVIE.MAP b/OBJ/WIND/3DMOVIE.MAP deleted file mode 100644 index 16a83edf..00000000 --- a/OBJ/WIND/3DMOVIE.MAP +++ /dev/null @@ -1,10954 +0,0 @@ - 3dmovie - - Timestamp is 3078ea2f (Mon Oct 09 02:23:59 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0018dc72H .text CODE - 0002:00000000 0000948cH .bss DATA - 0003:00000000 00006354H .rdata DATA - 0004:00000000 000140b8H .data DATA - 0004:000140b8 00000004H .CRT$XCA DATA - 0004:000140bc 00000004H .CRT$XCC DATA - 0004:000140c0 0000016cH .CRT$XCU DATA - 0004:0001422c 00000004H .CRT$XCZ DATA - 0004:00014230 00000004H .CRT$XIA DATA - 0004:00014234 0000000cH .CRT$XIC DATA - 0004:00014240 00000004H .CRT$XIZ DATA - 0004:00014244 00000004H .CRT$XPA DATA - 0004:00014248 00000004H .CRT$XPX DATA - 0004:0001424c 00000004H .CRT$XPZ DATA - 0004:00014250 00000004H .CRT$XTA DATA - 0004:00014254 00000004H .CRT$XTZ DATA - 0005:00000000 000000c8H .idata$2 DATA - 0005:000000c8 00000028H .idata$3 DATA - 0005:000000f0 00000564H .idata$4 DATA - 0005:00000654 00000564H .idata$5 DATA - 0005:00000bb8 00001722H .idata$6 DATA - 0006:00000000 0000150fH CONST DATA - 0007:00000000 000008acH .rsrc$01 DATA - 0007:000008b0 0000a010H .rsrc$02 DATA - 0009:00000000 00000000H .debug$C DATA - 0009:00000000 00000110H .debug$E DATA - 0009:00000110 00000ac0H .debug$F DATA - 0009:00000e70 00000000H .debug$G DATA - 0009:00000e70 00000032H .debug$H DATA - 0009:ffe25000 00000000H .debug$P DATA - 0009:ffe25000 00000000H .debug$S DATA - 0009:ffe25000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@SPLOT@@SGHJ@Z 00401000 f splot.obj - 0001:00000040 ?FIs@SPLOT@@UAEHJ@Z 00401040 f splot.obj - 0001:00000070 ?Cls@SPLOT@@UAEJXZ 00401070 f splot.obj - 0001:000000a0 ?PsplotNew@SPLOT@@SGPAV1@JJPAVRCA@@@Z 004010a0 f splot.obj - 0001:000002c0 ?FCmdInit@SPLOT@@QAEHPAUCMD@@@Z 004012c0 f splot.obj - 0001:00000530 ?FCmdSplot@SPLOT@@QAEHPAUCMD@@@Z 00401530 f splot.obj - 0001:00000b20 ?Debugger@@YGXXZ 00401b20 f splot.obj - 0001:00000b40 ?FCmdUpdate@SPLOT@@QAEHPAUCMD@@@Z 00401b40 f splot.obj - 0001:00001060 ??0RC@@QAE@XZ 00402060 f splot.obj - 0001:00001080 ?Set@RC@@QAEXJJJJ@Z 00402080 f splot.obj - 0001:000010d0 ?FCmdDismiss@SPLOT@@QAEHPAUCMD@@@Z 004020d0 f splot.obj - 0001:000011a0 ??1SPLOT@@UAE@XZ 004021a0 f splot.obj - 0001:00001450 ?AssertValid@SPLOT@@QAEXK@Z 00402450 f splot.obj - 0001:00001660 ?MarkMem@SPLOT@@UAEXXZ 00402660 f splot.obj - 0001:00001810 ??_GSPLOT@@UAEPAXI@Z 00402810 f splot.obj - 0001:00001810 ??_ESPLOT@@UAEPAXI@Z 00402810 f splot.obj - 0001:00001960 ??0ACR@@QAE@EEE@Z 00402960 f splot.obj - 0001:000019a0 ?LwFromBytes@@YGJEEEE@Z 004029a0 f splot.obj - 0001:000019e0 ??0ACR@@QAE@HH@Z 004029e0 f splot.obj - 0001:00001a30 ??0GCB@@QAE@XZ 00402a30 f splot.obj - 0001:00001a70 ?_NewRc@GOB@@MAEXXZ 00402a70 f splot.obj - 0001:00001a90 ?_ActivateHwnd@GOB@@MAEXH@Z 00402a90 f splot.obj - 0001:00001ab0 ?SndOff@MSQ@@QAEXXZ 00402ab0 f splot.obj - 0001:00001b00 ?SndOnShort@MSQ@@QAEXXZ 00402b00 f splot.obj - 0001:00001b50 ?SndOnLong@MSQ@@QAEXXZ 00402b50 f splot.obj - 0001:00001ba0 ?StopAll@MSQ@@QAEXXZ 00402ba0 f splot.obj - 0001:00001be0 ?StopAllMovieSounds@@YGXXZ 00402be0 f splot.obj - 0001:00001c80 ?BrsDiv@@YGJJJ@Z 00402c80 f splot.obj - 0001:00001db0 ?LwAbs@@YGJJ@Z 00402db0 f splot.obj - 0001:00001de0 ??0MCC@@QAE@JJJ@Z 00402de0 f splot.obj - 0001:00001e30 ??_GMCC@@UAEPAXI@Z 00402e30 f splot.obj - 0001:00001e30 ??_EMCC@@UAEPAXI@Z 00402e30 f splot.obj - 0001:00001e70 ??1MCC@@UAE@XZ 00402e70 f splot.obj - 0001:00001ea0 ??1BASE@@UAE@XZ 00402ea0 f splot.obj - 0001:00001ef0 ??_EBASE@@UAEPAXI@Z 00402ef0 f splot.obj - 0001:00001ef0 ??_GBASE@@UAEPAXI@Z 00402ef0 f splot.obj - 0001:00001f30 ?Dxp@MCC@@UAEJXZ 00402f30 f splot.obj - 0001:00001f60 ?Dyp@MCC@@UAEJXZ 00402f60 f splot.obj - 0001:00001f90 ?CbCache@MCC@@UAEJXZ 00402f90 f splot.obj - 0001:00001fc0 ?SetCurs@MCC@@UAEXJ@Z 00402fc0 f splot.obj - 0001:00001fe0 ?UpdateRollCall@MCC@@UAEXXZ 00402fe0 f splot.obj - 0001:00002000 ?UpdateAction@MCC@@UAEXXZ 00403000 f splot.obj - 0001:00002020 ?UpdateScrollbars@MCC@@UAEXXZ 00403020 f splot.obj - 0001:00002040 ?PlayStopped@MCC@@UAEXXZ 00403040 f splot.obj - 0001:00002060 ?ChangeTool@MCC@@UAEXJ@Z 00403060 f splot.obj - 0001:00002080 ?SceneNuked@MCC@@UAEXXZ 00403080 f splot.obj - 0001:000020a0 ?SceneUnnuked@MCC@@UAEXXZ 004030a0 f splot.obj - 0001:000020c0 ?ActorNuked@MCC@@UAEXXZ 004030c0 f splot.obj - 0001:000020e0 ?EnableActorTools@MCC@@UAEXXZ 004030e0 f splot.obj - 0001:00002100 ?EnableTboxTools@MCC@@UAEXXZ 00403100 f splot.obj - 0001:00002120 ?TboxSelected@MCC@@UAEXXZ 00403120 f splot.obj - 0001:00002140 ?ActorSelected@MCC@@UAEXJ@Z 00403140 f splot.obj - 0001:00002160 ?ActorEasel@MCC@@UAEXPAH@Z 00403160 f splot.obj - 0001:00002180 ?SetUndo@MCC@@UAEXJ@Z 00403180 f splot.obj - 0001:000021a0 ?SceneChange@MCC@@UAEXXZ 004031a0 f splot.obj - 0001:000021c0 ?PauseType@MCC@@UAEXW4WIT@@@Z 004031c0 f splot.obj - 0001:000021e0 ?Recording@MCC@@UAEXHH@Z 004031e0 f splot.obj - 0001:00002200 ?StartSoonerLater@MCC@@UAEXXZ 00403200 f splot.obj - 0001:00002220 ?EndSoonerLater@MCC@@UAEXXZ 00403220 f splot.obj - 0001:00002240 ?NewActor@MCC@@UAEXXZ 00403240 f splot.obj - 0001:00002260 ?StartActionBrowser@MCC@@UAEXXZ 00403260 f splot.obj - 0001:00002280 ?StartListenerEasel@MCC@@UAEXXZ 00403280 f splot.obj - 0001:000022a0 ?GetFniSave@MCC@@UAEHPAVFNI@@JJJPADPAVSTN@@@Z 004032a0 f splot.obj - 0001:000022d0 ?PlayUISound@MCC@@UAEXJJ@Z 004032d0 f splot.obj - 0001:000022f0 ?StopUISound@MCC@@UAEXXZ 004032f0 f splot.obj - 0001:00002310 ?UpdateTitle@MCC@@UAEXPAVSTN@@@Z 00403310 f splot.obj - 0001:00002330 ?EnableAccel@MCC@@UAEXXZ 00403330 f splot.obj - 0001:00002350 ?DisableAccel@MCC@@UAEXXZ 00403350 f splot.obj - 0001:00002370 ?GetStn@MCC@@UAEXJPAVSTN@@@Z 00403370 f splot.obj - 0001:00002390 ?DypTextDef@MCC@@UAEJXZ 00403390 f splot.obj - 0001:000023c0 ?DypTboxDef@MCC@@UAEJXZ 004033c0 f splot.obj - 0001:000023f0 ?SetSndFrame@MCC@@UAEXH@Z 004033f0 f splot.obj - 0001:00002410 ?FMinimized@MCC@@UAEHXZ 00403410 f splot.obj - 0001:00002430 ?FQueryPurgeSounds@MCC@@UAEHXZ 00403430 f splot.obj - 0001:00002450 ?Cscen@MVIE@@QAEJXZ 00403450 f splot.obj - 0001:00002480 ?SetFSoundsEnabled@MVIE@@QAEXH@Z 00403480 f splot.obj - 0001:000024d0 ?Pscen@MVIE@@QAEPAVSCEN@@XZ 004034d0 f splot.obj - 0001:00002500 ?Pmsq@MVIE@@QAEPAVMSQ@@XZ 00403500 f splot.obj - 0001:00002530 ?GetThd@BCL@@QAEXJPAUTHD@@@Z 00403530 f splot.obj - 0001:00002570 ?IthdMac@BCL@@QAEJXZ 00403570 f splot.obj - 0001:000025a0 ?IvMac@GRPB@@QAEJXZ 004035a0 f splot.obj - 0001:000025d0 ?Pkwa@APP@@QAEPAVKWA@@XZ 004035d0 f splot.obj - 0001:00002600 ?FSlowCPU@APP@@QAEHXZ 00403600 f splot.obj - 0001:00002630 ?Pcmm@SPLOT@@MAEPAUCMM@CMH@@XZ 00403630 f splot.obj - 0001:00002660 ??0SPLOT@@AAE@PAUGCB@@@Z 00403660 f splot.obj - 0001:00002750 ?FWouldBe@SCRT@@SGHJ@Z 00403750 f scnsort.obj - 0001:00002790 ?FIs@SCRT@@UAEHJ@Z 00403790 f scnsort.obj - 0001:000027c0 ?Cls@SCRT@@UAEJXZ 004037c0 f scnsort.obj - 0001:000027f0 ?AssertValid@SCRT@@QAEXK@Z 004037f0 f scnsort.obj - 0001:00002a80 ?MarkMem@SCRT@@UAEXXZ 00403a80 f scnsort.obj - 0001:00002b00 ??0SCRT@@QAE@PAUGCB@@@Z 00403b00 f scnsort.obj - 0001:00002d00 ??1SCRT@@UAE@XZ 00403d00 f scnsort.obj - 0001:00002e50 ?PscrtNew@SCRT@@SGPAV1@JPAVMVIE@@PAVSTDIO@@PAVRCA@@@Z 00403e50 f scnsort.obj - 0001:00003150 ?LwMax@@YGJJJ@Z 00404150 f scnsort.obj - 0001:00003180 ?_ErrorExit@SCRT@@IAEXXZ 00404180 f scnsort.obj - 0001:00003200 ?FCmdInit@SCRT@@QAEHPAUCMD@@@Z 00404200 f scnsort.obj - 0001:00003430 ?FCmdSelect@SCRT@@QAEHPAUCMD@@@Z 00404430 f scnsort.obj - 0001:00003570 ?FCmdInsert@SCRT@@QAEHPAUCMD@@@Z 00404570 f scnsort.obj - 0001:000036b0 ?FCmdScroll@SCRT@@QAEHPAUCMD@@@Z 004046b0 f scnsort.obj - 0001:000037b0 ?FIn@@YGHJJJ@Z 004047b0 f scnsort.obj - 0001:000037f0 ?_EnableScroll@SCRT@@IAEXXZ 004047f0 f scnsort.obj - 0001:000039e0 ?FCmdNuke@SCRT@@QAEHPAUCMD@@@Z 004049e0 f scnsort.obj - 0001:00003b70 ?FCmdDismiss@SCRT@@QAEHPAUCMD@@@Z 00404b70 f scnsort.obj - 0001:00003d60 ?FCmdPortfolio@SCRT@@QAEHPAUCMD@@@Z 00404d60 f scnsort.obj - 0001:00003ee0 ?FCmdTransition@SCRT@@QAEHPAUCMD@@@Z 00404ee0 f scnsort.obj - 0001:00004090 ?_SetSelectionVis@SCRT@@IAEXHH@Z 00405090 f scnsort.obj - 0001:000041f0 ?_FResetThumbnails@SCRT@@IAEHH@Z 004051f0 f scnsort.obj - 0001:000045d0 ?_FResetTransition@SCRT@@IAEHPAVGOK@@W4TRANS@@@Z 004055d0 f scnsort.obj - 0001:00004770 ?_TransFromLw@SCRT@@IAE?AW4TRANS@@J@Z 00405770 f scnsort.obj - 0001:000047b0 ?_LwFromTrans@SCRT@@IAEJW4TRANS@@@Z 004057b0 f scnsort.obj - 0001:00004850 ?FWouldBe@GOMP@@SGHJ@Z 00405850 f scnsort.obj - 0001:00004890 ?FIs@GOMP@@UAEHJ@Z 00405890 f scnsort.obj - 0001:000048c0 ?Cls@GOMP@@UAEJXZ 004058c0 f scnsort.obj - 0001:000048f0 ?AssertValid@GOMP@@QAEXK@Z 004058f0 f scnsort.obj - 0001:00004960 ?MarkMem@GOMP@@UAEXXZ 00405960 f scnsort.obj - 0001:000049d0 ??0GOMP@@QAE@PAUGCB@@@Z 004059d0 f scnsort.obj - 0001:00004a40 ?PgompNew@GOMP@@SGPAV1@PAVGOB@@J@Z 00405a40 f scnsort.obj - 0001:00004bb0 ??0PT@@QAE@XZ 00405bb0 f scnsort.obj - 0001:00004bd0 ??0RC@@QAE@JJJJ@Z 00405bd0 f scnsort.obj - 0001:00004c20 ?Draw@GOMP@@UAEXPAVGNV@@PAVRC@@@Z 00405c20 f scnsort.obj - 0001:00004d20 ?FSetMbmp@GOMP@@QAEHPAVMBMP@@@Z 00405d20 f scnsort.obj - 0001:00004df0 ?PgompFromHidScr@GOMP@@SGPAV1@J@Z 00405df0 f scnsort.obj - 0001:00004ea0 ??1FNI@@UAE@XZ 00405ea0 f scnsort.obj - 0001:00004ed0 ??_GGOMP@@UAEPAXI@Z 00405ed0 f scnsort.obj - 0001:00004ed0 ??_EGOMP@@UAEPAXI@Z 00405ed0 f scnsort.obj - 0001:00005020 ??_ESCRT@@UAEPAXI@Z 00406020 f scnsort.obj - 0001:00005020 ??_GSCRT@@UAEPAXI@Z 00406020 f scnsort.obj - 0001:00005060 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 00406060 f scnsort.obj - 0001:00005090 ?PgobFirstChild@GOB@@QAEPAV1@XZ 00406090 f scnsort.obj - 0001:000050c0 ?PgobNextSib@GOB@@QAEPAV1@XZ 004060c0 f scnsort.obj - 0001:000050f0 ?Sno@GOK@@QAEJXZ 004060f0 f scnsort.obj - 0001:00005170 ?Iscen@MVIE@@QAEJXZ 00406170 f scnsort.obj - 0001:000051a0 ?Pcmm@SCRT@@MAEPAUCMM@CMH@@XZ 004061a0 f scnsort.obj - 0001:000051d0 ?_IscenFromKid@SCRT@@IAEJJ@Z 004061d0 f scnsort.obj - 0001:00005260 ?LwMin@@YGJJJ@Z 00406260 f scnsort.obj - 0001:00005290 ?_KidFromIscen@SCRT@@IAEJJ@Z 00406290 f scnsort.obj - 0001:00005300 ??1GOMP@@UAE@XZ 00406300 f scnsort.obj - 0001:00005390 ?FPtIn@GOMP@@UAEHJJ@Z 00406390 f scnsort.obj - 0001:000053c0 ?FPtInBounds@GOMP@@UAEHJJ@Z 004063c0 f scnsort.obj - 0001:000053f0 ?FGetFniMovieOpen@STDIO@@QAEHPAVFNI@@@Z 004063f0 f scnsort.obj - 0001:00005430 ?FWouldBe@BRCN@@SGHJ@Z 00406430 f browser.obj - 0001:00005470 ?FIs@BRCN@@UAEHJ@Z 00406470 f browser.obj - 0001:000054a0 ?Cls@BRCN@@UAEJXZ 004064a0 f browser.obj - 0001:000054d0 ?FWouldBe@BRCNL@@SGHJ@Z 004064d0 f browser.obj - 0001:00005510 ?FIs@BRCNL@@UAEHJ@Z 00406510 f browser.obj - 0001:00005540 ?Cls@BRCNL@@UAEJXZ 00406540 f browser.obj - 0001:00005570 ?FWouldBe@BRWD@@SGHJ@Z 00406570 f browser.obj - 0001:000055b0 ?FIs@BRWD@@UAEHJ@Z 004065b0 f browser.obj - 0001:000055e0 ?Cls@BRWD@@UAEJXZ 004065e0 f browser.obj - 0001:00005610 ?FWouldBe@BRWL@@SGHJ@Z 00406610 f browser.obj - 0001:00005650 ?FIs@BRWL@@UAEHJ@Z 00406650 f browser.obj - 0001:00005680 ?Cls@BRWL@@UAEJXZ 00406680 f browser.obj - 0001:000056b0 ?FWouldBe@BRWT@@SGHJ@Z 004066b0 f browser.obj - 0001:000056f0 ?FIs@BRWT@@UAEHJ@Z 004066f0 f browser.obj - 0001:00005720 ?Cls@BRWT@@UAEJXZ 00406720 f browser.obj - 0001:00005750 ?FWouldBe@BRWA@@SGHJ@Z 00406750 f browser.obj - 0001:00005790 ?FIs@BRWA@@UAEHJ@Z 00406790 f browser.obj - 0001:000057c0 ?Cls@BRWA@@UAEJXZ 004067c0 f browser.obj - 0001:000057f0 ?FWouldBe@BRWP@@SGHJ@Z 004067f0 f browser.obj - 0001:00005830 ?FIs@BRWP@@UAEHJ@Z 00406830 f browser.obj - 0001:00005860 ?Cls@BRWP@@UAEJXZ 00406860 f browser.obj - 0001:00005890 ?FWouldBe@BRWB@@SGHJ@Z 00406890 f browser.obj - 0001:000058d0 ?FIs@BRWB@@UAEHJ@Z 004068d0 f browser.obj - 0001:00005900 ?Cls@BRWB@@UAEJXZ 00406900 f browser.obj - 0001:00005930 ?FWouldBe@BRWC@@SGHJ@Z 00406930 f browser.obj - 0001:00005970 ?FIs@BRWC@@UAEHJ@Z 00406970 f browser.obj - 0001:000059a0 ?Cls@BRWC@@UAEJXZ 004069a0 f browser.obj - 0001:000059d0 ?FWouldBe@BRWN@@SGHJ@Z 004069d0 f browser.obj - 0001:00005a10 ?FIs@BRWN@@UAEHJ@Z 00406a10 f browser.obj - 0001:00005a40 ?Cls@BRWN@@UAEJXZ 00406a40 f browser.obj - 0001:00005a70 ?FWouldBe@BRWM@@SGHJ@Z 00406a70 f browser.obj - 0001:00005ab0 ?FIs@BRWM@@UAEHJ@Z 00406ab0 f browser.obj - 0001:00005ae0 ?Cls@BRWM@@UAEJXZ 00406ae0 f browser.obj - 0001:00005b10 ?FWouldBe@BRWR@@SGHJ@Z 00406b10 f browser.obj - 0001:00005b70 ?FIs@BRWR@@UAEHJ@Z 00406b70 f browser.obj - 0001:00005ba0 ?Cls@BRWR@@UAEJXZ 00406ba0 f browser.obj - 0001:00005bd0 ?FWouldBe@BRWI@@SGHJ@Z 00406bd0 f browser.obj - 0001:00005c10 ?FIs@BRWI@@UAEHJ@Z 00406c10 f browser.obj - 0001:00005c40 ?Cls@BRWI@@UAEJXZ 00406c40 f browser.obj - 0001:00005c70 ?FWouldBe@BCL@@SGHJ@Z 00406c70 f browser.obj - 0001:00005cb0 ?FIs@BCL@@UAEHJ@Z 00406cb0 f browser.obj - 0001:00005ce0 ?Cls@BCL@@UAEJXZ 00406ce0 f browser.obj - 0001:00005d10 ?FWouldBe@BCLS@@SGHJ@Z 00406d10 f browser.obj - 0001:00005d50 ?FIs@BCLS@@UAEHJ@Z 00406d50 f browser.obj - 0001:00005d80 ?Cls@BCLS@@UAEJXZ 00406d80 f browser.obj - 0001:00005db0 ?FWouldBe@FNET@@SGHJ@Z 00406db0 f browser.obj - 0001:00005df0 ?FIs@FNET@@UAEHJ@Z 00406df0 f browser.obj - 0001:00005e20 ?Cls@FNET@@UAEJXZ 00406e20 f browser.obj - 0001:00005e50 ?_FBuildGcb@BRWD@@KGHPAUGCB@@JJ@Z 00406e50 f browser.obj - 0001:00005f90 ?_FInitGok@BRWD@@IAEHPAVRCA@@J@Z 00406f90 f browser.obj - 0001:00006090 ?Init@BRWD@@QAEXPAUCMD@@JJPAVSTDIO@@HJ@Z 00407090 f browser.obj - 0001:00006110 ?_InitStateVars@BRWD@@IAEXPAUCMD@@PAVSTDIO@@HJ@Z 00407110 f browser.obj - 0001:000061f0 ?SwHigh@@YGFJ@Z 004071f0 f browser.obj - 0001:00006210 ?SwLow@@YGFJ@Z 00407210 f browser.obj - 0001:00006230 ?_InitFromData@BRWD@@IAEXPAUCMD@@JJ@Z 00407230 f browser.obj - 0001:00006320 ?_SetVarForOverride@BRWD@@IAEXXZ 00407320 f browser.obj - 0001:00006440 ?_GetThumFromIthum@BRWD@@MAEXJPAXPAJ@Z 00407440 f browser.obj - 0001:000064d0 ?_CfrmCalc@BRWD@@IAEJXZ 004074d0 f browser.obj - 0001:000065c0 ?_CalcIthumPageFirst@BRWD@@IAEXXZ 004075c0 f browser.obj - 0001:000067b0 ?FDraw@BRWD@@QAEHXZ 004077b0 f browser.obj - 0001:00006ab0 ?_KidThumFromIfrm@BRWD@@IAEJJ@Z 00407ab0 f browser.obj - 0001:00006b30 ?_PgobFromIfrm@BRWD@@IAEPAVGOB@@J@Z 00407b30 f browser.obj - 0001:00006bc0 ?_SetScrollState@BRWD@@IAEXXZ 00407bc0 f browser.obj - 0001:00006d70 ?FCmdFwd@BRWD@@QAEHPAUCMD@@@Z 00407d70 f browser.obj - 0001:00006e70 ?FCmdSelectThum@BRWD@@QAEHPAUCMD@@@Z 00407e70 f browser.obj - 0001:00006f70 ?FCmdBack@BRWD@@QAEHPAUCMD@@@Z 00407f70 f browser.obj - 0001:00007070 ?FCmdSelect@BRWD@@QAEHPAUCMD@@@Z 00408070 f browser.obj - 0001:00007110 ?FCreateAllTgob@BRWD@@QAEHXZ 00408110 f browser.obj - 0001:00007250 ?_FHiliteFrm@BRWD@@IAEHJ@Z 00408250 f browser.obj - 0001:00007370 ??0STN@@QAE@XZ 00408370 f browser.obj - 0001:000073d0 ?_UnhiliteCurFrm@BRWD@@IAEXXZ 004083d0 f browser.obj - 0001:000074f0 ?FCmdCancel@BRWD@@UAEHPAUCMD@@@Z 004084f0 f browser.obj - 0001:00007570 ?Release@BRWD@@UAEXXZ 00408570 f browser.obj - 0001:000075c0 ?FCmdOk@BRWD@@UAEHPAUCMD@@@Z 004085c0 f browser.obj - 0001:00007690 ?_CacheContext@BRWD@@MAEXXZ 00408690 f browser.obj - 0001:000076e0 ?FInit@BRWL@@UAEHPAUCMD@@W4BWS@@JJUCKI@@KPAVSTDIO@@PAVBRCNL@@HJ@Z 004086e0 f browser.obj - 0001:00007b90 ?_FInitNew@BRWL@@IAEHPAUCMD@@W4BWS@@JUCKI@@K@Z 00408b90 f browser.obj - 0001:00007c70 ?_FCreateBuildThd@BRWL@@IAEHUCKI@@KH@Z 00408c70 f browser.obj - 0001:00007de0 ?_FGetContent@BRWL@@MAEHPAVCRM@@PAUCKI@@KH@Z 00408de0 f browser.obj - 0001:00007f30 ?CactRef@BASE@@QAEJXZ 00408f30 f browser.obj - 0001:00007f60 ?_GetThumFromIthum@BRWL@@MAEXJPAXPAJ@Z 00408f60 f browser.obj - 0001:000080c0 ?_CacheContext@BRWL@@MAEXXZ 004090c0 f browser.obj - 0001:000083e0 ?IstnMac@GSTB@@QAEJXZ 004093e0 f browser.obj - 0001:00008410 ?Ccrf@CRM@@QAEJXZ 00409410 f browser.obj - 0001:00008460 ?_SortThd@BRWL@@IAEXXZ 00409460 f browser.obj - 0001:00008800 ?_IthumFromThum@BRWL@@MAEJJJ@Z 00409800 f browser.obj - 0001:00008980 ?_FSetThumFrame@BRWL@@MAEHJPAVGOB@@@Z 00409980 f browser.obj - 0001:00008af0 ?_ReleaseThumFrame@BRWL@@MAEXJ@Z 00409af0 f browser.obj - 0001:00008b70 ?PbclNew@BCL@@SGPAV1@PAVCRM@@PAUCKI@@KPAVGL@@H@Z 00409b70 f browser.obj - 0001:00008c20 ?_FInit@BCLS@@IAEHPAVCRM@@PAUCKI@@KPAVGST@@PAVGL@@@Z 00409c20 f browser.obj - 0001:00008d00 ?_FInit@BCL@@IAEHPAVCRM@@PAUCKI@@KPAVGL@@@Z 00409d00 f browser.obj - 0001:00008fd0 ?PbclsNew@BCLS@@SGPAV1@PAVCRM@@PAUCKI@@KPAVGL@@PAVGST@@H@Z 00409fd0 f browser.obj - 0001:00009090 ?_FBuildThd@BCL@@IAEHPAVCRM@@@Z 0040a090 f browser.obj - 0001:00009320 ?_FAddFileToThd@BCL@@IAEHPAVCFL@@J@Z 0040a320 f browser.obj - 0001:00009560 ?_FAddGokdToThd@BCL@@IAEHPAVCFL@@JPAUCKI@@@Z 0040a560 f browser.obj - 0001:000095b0 ?_FAddGokdToThd@BCL@@MAEHPAVCFL@@JPAUKID@@@Z 0040a5b0 f browser.obj - 0001:00009880 ?_FAddGokdToThd@BCLS@@MAEHPAVCFL@@JPAUKID@@@Z 0040a880 f browser.obj - 0001:000099a0 ?_FSetNameGst@BCLS@@IAEHPAVCFL@@KK@Z 0040a9a0 f browser.obj - 0001:00009ab0 ?FInit@FNET@@QAEHXZ 0040aab0 f browser.obj - 0001:00009bb0 ?FNext@FNET@@QAEHPAVFNI@@PAJ@Z 0040abb0 f browser.obj - 0001:00009dd0 ?AssertNilOrPvCb@@YGXPAXJ@Z 0040add0 f browser.obj - 0001:00009e00 ?_FNextFni@FNET@@IAEHPAVFNI@@PAJ@Z 0040ae00 f browser.obj - 0001:00009f10 ?FInit@BRWN@@UAEHPAUCMD@@W4BWS@@JJUCKI@@KPAVSTDIO@@PAVBRCNL@@HJ@Z 0040af10 f browser.obj - 0001:00009fd0 ?_FGetContent@BRWN@@MAEHPAVCRM@@PAUCKI@@KH@Z 0040afd0 f browser.obj - 0001:0000a1a0 ?_ReleaseThumFrame@BRWN@@MAEXJ@Z 0040b1a0 f browser.obj - 0001:0000a250 ?SetNil@STN@@QAEXXZ 0040b250 f browser.obj - 0001:0000a2b0 ?_FSetThumFrame@BRWN@@MAEHJPAVGOB@@@Z 0040b2b0 f browser.obj - 0001:0000a420 ?FCmdOk@BRWN@@UAEHPAUCMD@@@Z 0040b420 f browser.obj - 0001:0000a4f0 ?PbrwmNew@BRWM@@SGPAV1@PAVRCA@@JJPAVSTDIO@@@Z 0040b4f0 f browser.obj - 0001:0000a700 ?_FUpdateLists@BRWM@@MAEHXZ 0040b700 f browser.obj - 0001:0000aa60 ?Pcfl@CRF@@QAEPAVCFL@@XZ 0040ba60 f browser.obj - 0001:0000aa90 ?_FSndListed@BRWM@@IAEHKPAJ@Z 0040ba90 f browser.obj - 0001:0000ab50 ?_FAddThd@BRWM@@IAEHPAVSTN@@PAUCKI@@@Z 0040bb50 f browser.obj - 0001:0000ac70 ?_ProcessSelection@BRWM@@MAEXXZ 0040bc70 f browser.obj - 0001:0000adb0 ?FCmdFile@BRWM@@UAEHPAUCMD@@@Z 0040bdb0 f browser.obj - 0001:0000b370 ?FCmdDel@BRWM@@UAEHPAUCMD@@@Z 0040c370 f browser.obj - 0001:0000b780 ?FValid@MSND@@QAEHXZ 0040c780 f browser.obj - 0001:0000b7f0 ?Sty@MSND@@QAEJXZ 0040c7f0 f browser.obj - 0001:0000b840 ?Vlm@MSND@@QAEJXZ 0040c840 f browser.obj - 0001:0000b890 ?SetGst@BRWT@@QAEXPAVGST@@@Z 0040c890 f browser.obj - 0001:0000b990 ?FInit@BRWT@@QAEHPAUCMD@@JJPAVSTDIO@@HJ@Z 0040c990 f browser.obj - 0001:0000ba40 ?_FSetThumFrame@BRWT@@MAEHJPAVGOB@@@Z 0040ca40 f browser.obj - 0001:0000bbf0 ?PbrwaNew@BRWA@@SGPAV1@PAVRCA@@@Z 0040cbf0 f browser.obj - 0001:0000be20 ?FBuildApe@BRWA@@QAEHPAVACTR@@@Z 0040ce20 f browser.obj - 0001:0000c000 ?FBuildGst@BRWA@@QAEHPAVSCEN@@@Z 0040d000 f browser.obj - 0001:0000c250 ?FIsTdt@TMPL@@QAEHXZ 0040d250 f browser.obj - 0001:0000c290 ?Cactn@TMPL@@QAEJXZ 0040d290 f browser.obj - 0001:0000c2c0 ?_ProcessSelection@BRWA@@MAEXXZ 0040d2c0 f browser.obj - 0001:0000c360 ?FCmdChangeCel@BRWA@@UAEHPAUCMD@@@Z 0040d360 f browser.obj - 0001:0000c530 ?Ptmpl@ACTR@@QAEPAVTMPL@@XZ 0040d530 f browser.obj - 0001:0000c580 ?PbrwiNew@BRWI@@SGPAV1@PAVRCA@@JJ@Z 0040d580 f browser.obj - 0001:0000c6e0 ?Pbody@ACTR@@QAEPAVBODY@@XZ 0040d6e0 f browser.obj - 0001:0000c730 ?AnidCur@ACTR@@QAEJXZ 0040d730 f browser.obj - 0001:0000c780 ?FInit@BRWI@@QAEHPAUCMD@@UCKI@@PAVSTDIO@@@Z 0040d780 f browser.obj - 0001:0000ca00 ?PbrwpNew@BRWP@@SGPAV1@PAVRCA@@J@Z 0040da00 f browser.obj - 0001:0000cb50 ?PbrwbNew@BRWB@@SGPAV1@PAVRCA@@@Z 0040db50 f browser.obj - 0001:0000cca0 ?FCmdCancel@BRWB@@UAEHPAUCMD@@@Z 0040dca0 f browser.obj - 0001:0000ce20 ?PactrSelected@SCEN@@QAEPAVACTR@@XZ 0040de20 f browser.obj - 0001:0000ce50 ?_SetCbPcrmMin@BRWL@@MAEXXZ 0040de50 f browser.obj - 0001:0000cf20 ?PbrwcNew@BRWC@@SGPAV1@PAVRCA@@@Z 0040df20 f browser.obj - 0001:0000d070 ?PtagTool@MVU@@QAEPAUTAG@@XZ 0040e070 f browser.obj - 0001:0000d0a0 ?FCmdCancel@BRWC@@UAEHPAUCMD@@@Z 0040e0a0 f browser.obj - 0001:0000d1c0 ?PbrwrNew@BRWR@@SGPAV1@PAVRCA@@J@Z 0040e1c0 f browser.obj - 0001:0000d300 ?FInit@BRWR@@QAEHPAUCMD@@KJPAVSTDIO@@@Z 0040e300 f browser.obj - 0001:0000d6f0 ?FUpdate@BRWR@@QAEHJPAVSTDIO@@@Z 0040e6f0 f browser.obj - 0001:0000d7d0 ?_ProcessSelection@BRWR@@MAEXXZ 0040e7d0 f browser.obj - 0001:0000d850 ?_Cthum@BRWR@@MAEJXZ 0040e850 f browser.obj - 0001:0000da10 ?_IaridFromIthum@BRWR@@IAEJJJ@Z 0040ea10 f browser.obj - 0001:0000db90 ?Pmcc@MVIE@@QAEPAVMCC@@XZ 0040eb90 f browser.obj - 0001:0000dbc0 ?_IthumFromArid@BRWR@@IAEJJ@Z 0040ebc0 f browser.obj - 0001:0000de00 ?_FSetThumFrame@BRWR@@MAEHJPAVGOB@@@Z 0040ee00 f browser.obj - 0001:0000e240 ?Dxp@RC@@QAEJXZ 0040f240 f browser.obj - 0001:0000e280 ?Dyp@RC@@QAEJXZ 0040f280 f browser.obj - 0001:0000e2c0 ?Cch@STN@@QAEJXZ 0040f2c0 f browser.obj - 0001:0000e310 ?Pstrg@WOKS@@QAEPAVSTRG@@XZ 0040f310 f browser.obj - 0001:0000e340 ?CmactrMac@MVIE@@QAEJXZ 0040f340 f browser.obj - 0001:0000e3a0 ?_FClearHelp@BRWR@@MAEHJ@Z 0040f3a0 f browser.obj - 0001:0000e480 ?_ReleaseThumFrame@BRWR@@MAEXJ@Z 0040f480 f browser.obj - 0001:0000e510 ??1BRWD@@UAE@XZ 0040f510 f browser.obj - 0001:0000e5e0 ??1BRWL@@UAE@XZ 0040f5e0 f browser.obj - 0001:0000e700 ??1BRWT@@UAE@XZ 0040f700 f browser.obj - 0001:0000e7b0 ??1BRWR@@UAE@XZ 0040f7b0 f browser.obj - 0001:0000e840 ??1BRWI@@UAE@XZ 0040f840 f browser.obj - 0001:0000e8d0 ??1BRCNL@@MAE@XZ 0040f8d0 f browser.obj - 0001:0000e9b0 ?SetText@TGOB@@QAEXPAVSTN@@@Z 0040f9b0 f browser.obj - 0001:0000ea20 ?MarkMem@BRCN@@UAEXXZ 0040fa20 f browser.obj - 0001:0000ea70 ?MarkMem@BRCNL@@UAEXXZ 0040fa70 f browser.obj - 0001:0000eb20 ?MarkMem@BRWR@@UAEXXZ 0040fb20 f browser.obj - 0001:0000eb90 ?MarkMem@BRWI@@UAEXXZ 0040fb90 f browser.obj - 0001:0000ec00 ?MarkMem@BRWD@@UAEXXZ 0040fc00 f browser.obj - 0001:0000ec70 ?Anid@APE@@QAEJXZ 0040fc70 f browser.obj - 0001:0000eca0 ?Celn@APE@@QAEJXZ 0040fca0 f browser.obj - 0001:0000ecd0 ?MarkMem@BRWL@@UAEXXZ 0040fcd0 f browser.obj - 0001:0000ed90 ?FIsCycleCels@APE@@QAEHXZ 0040fd90 f browser.obj - 0001:0000edc0 ?Pcmm@BRWD@@MAEPAUCMM@CMH@@XZ 0040fdc0 f browser.obj - 0001:0000edf0 ?_Cthum@BRWD@@MAEJXZ 0040fdf0 f browser.obj - 0001:0000ee40 ?MarkMem@BRWT@@UAEXXZ 0040fe40 f browser.obj - 0001:0000eeb0 ?_FSetThumFrame@BRWD@@MAEHJPAVGOB@@@Z 0040feb0 f browser.obj - 0001:0000ef00 ?_FClearHelp@BRWD@@MAEHJ@Z 0040ff00 f browser.obj - 0001:0000ef30 ?MarkMem@BRWA@@UAEXXZ 0040ff30 f browser.obj - 0001:0000efa0 ?_ReleaseThumFrame@BRWD@@MAEXJ@Z 0040ffa0 f browser.obj - 0001:0000efc0 ?_IthumFromThum@BRWD@@MAEJJJ@Z 0040ffc0 f browser.obj - 0001:0000eff0 ?_ApplySelection@BRWD@@MAEXJJ@Z 0040fff0 f browser.obj - 0001:0000f010 ?_ProcessSelection@BRWD@@MAEXXZ 00410010 f browser.obj - 0001:0000f030 ?MarkMem@BCL@@UAEXXZ 00410030 f browser.obj - 0001:0000f080 ?_FUpdateLists@BRWD@@MAEHXZ 00410080 f browser.obj - 0001:0000f0b0 ?_SetCbPcrmMin@BRWD@@MAEXXZ 004100b0 f browser.obj - 0001:0000f0d0 ?MarkMem@BCLS@@UAEXXZ 004100d0 f browser.obj - 0001:0000f120 ??0BRWD@@QAE@PAUGCB@@@Z 00410120 f browser.obj - 0001:0000f180 ?AssertValid@BRCN@@QAEXK@Z 00410180 f browser.obj - 0001:0000f1b0 ?FCmdDel@BRWD@@UAEHPAUCMD@@@Z 004101b0 f browser.obj - 0001:0000f1e0 ?AssertValid@BRCNL@@QAEXK@Z 004101e0 f browser.obj - 0001:0000f210 ?FCmdFile@BRWD@@UAEHPAUCMD@@@Z 00410210 f browser.obj - 0001:0000f240 ?AssertValid@BCLS@@QAEXK@Z 00410240 f browser.obj - 0001:0000f2d0 ?FCmdChangeCel@BRWD@@UAEHPAUCMD@@@Z 004102d0 f browser.obj - 0001:0000f300 ??0BCL@@IAE@XZ 00410300 f browser.obj - 0001:0000f340 ?AssertValid@BCL@@QAEXK@Z 00410340 f browser.obj - 0001:0000f3d0 ?AssertValid@BRWD@@QAEXK@Z 004103d0 f browser.obj - 0001:0000f440 ??0BCLS@@IAE@XZ 00410440 f browser.obj - 0001:0000f480 ?AssertValid@BRWL@@QAEXK@Z 00410480 f browser.obj - 0001:0000f570 ?_Cthum@BRWL@@MAEJXZ 00410570 f browser.obj - 0001:0000f5d0 ?AssertValid@BRWR@@QAEXK@Z 004105d0 f browser.obj - 0001:0000f640 ?_FUpdateLists@BRWL@@MAEHXZ 00410640 f browser.obj - 0001:0000f670 ??0BRWL@@QAE@PAUGCB@@@Z 00410670 f browser.obj - 0001:0000f6b0 ?AssertValid@BRWI@@QAEXK@Z 004106b0 f browser.obj - 0001:0000f720 ?_Cthum@BRWT@@MAEJXZ 00410720 f browser.obj - 0001:0000f780 ?AssertValid@BRWT@@QAEXK@Z 00410780 f browser.obj - 0001:0000f7f0 ?_ReleaseThumFrame@BRWT@@MAEXJ@Z 004107f0 f browser.obj - 0001:0000f810 ??0BRWT@@QAE@PAUGCB@@@Z 00410810 f browser.obj - 0001:0000f860 ?AssertValid@BRWA@@QAEXK@Z 00410860 f browser.obj - 0001:0000f8d0 ?_Cthum@BRWN@@MAEJXZ 004108d0 f browser.obj - 0001:0000f920 ??4FNI@@QAEAAV0@AAV0@@Z 00410920 f browser.obj - 0001:0000f970 ??0BRWA@@QAE@PAUGCB@@@Z 00410970 f browser.obj - 0001:0000f9d0 ??0BRWP@@QAE@PAUGCB@@@Z 004109d0 f browser.obj - 0001:0000fa10 ??0BRWB@@QAE@PAUGCB@@@Z 00410a10 f browser.obj - 0001:0000fa50 ??0BRWC@@QAE@PAUGCB@@@Z 00410a50 f browser.obj - 0001:0000fa90 ?_SetCbPcrmMin@BRWC@@MAEXXZ 00410a90 f browser.obj - 0001:0000fab0 ??0BRWM@@QAE@PAUGCB@@@Z 00410ab0 f browser.obj - 0001:0000fb00 ??0BRWN@@QAE@PAUGCB@@@Z 00410b00 f browser.obj - 0001:0000fb40 ??1BRWM@@UAE@XZ 00410b40 f browser.obj - 0001:0000fb70 ??1BRWN@@UAE@XZ 00410b70 f browser.obj - 0001:0000fba0 ??0BRWI@@QAE@PAUGCB@@@Z 00410ba0 f browser.obj - 0001:0000fbf0 ??0BRWR@@QAE@PAUGCB@@@Z 00410bf0 f browser.obj - 0001:0000fc50 ??0FNET@@QAE@XZ 00410c50 f browser.obj - 0001:0000fce0 ??1FNET@@UAE@XZ 00410ce0 f browser.obj - 0001:0000fd60 ??_EBRWD@@UAEPAXI@Z 00410d60 f browser.obj - 0001:0000fd60 ??_GBRWD@@UAEPAXI@Z 00410d60 f browser.obj - 0001:0000fda0 ??_EBCL@@MAEPAXI@Z 00410da0 f browser.obj - 0001:0000fda0 ??_GBCL@@MAEPAXI@Z 00410da0 f browser.obj - 0001:0000fde0 ??1BCL@@MAE@XZ 00410de0 f browser.obj - 0001:0000fe40 ??_GBCLS@@MAEPAXI@Z 00410e40 f browser.obj - 0001:0000fe40 ??_EBCLS@@MAEPAXI@Z 00410e40 f browser.obj - 0001:0000fe80 ??1BCLS@@MAE@XZ 00410e80 f browser.obj - 0001:0000fee0 ??_EBRWL@@UAEPAXI@Z 00410ee0 f browser.obj - 0001:0000fee0 ??_GBRWL@@UAEPAXI@Z 00410ee0 f browser.obj - 0001:0000ff20 ??_GBRWT@@UAEPAXI@Z 00410f20 f browser.obj - 0001:0000ff20 ??_EBRWT@@UAEPAXI@Z 00410f20 f browser.obj - 0001:0000ff60 ??_GBRWN@@UAEPAXI@Z 00410f60 f browser.obj - 0001:0000ff60 ??_EBRWN@@UAEPAXI@Z 00410f60 f browser.obj - 0001:0000ffa0 ??_EBRWA@@UAEPAXI@Z 00410fa0 f browser.obj - 0001:0000ffa0 ??_GBRWA@@UAEPAXI@Z 00410fa0 f browser.obj - 0001:0000ffe0 ??1BRWA@@UAE@XZ 00410fe0 f browser.obj - 0001:00010010 ??_GBRWP@@UAEPAXI@Z 00411010 f browser.obj - 0001:00010010 ??_EBRWP@@UAEPAXI@Z 00411010 f browser.obj - 0001:00010050 ??1BRWP@@UAE@XZ 00411050 f browser.obj - 0001:00010080 ??_GBRWB@@UAEPAXI@Z 00411080 f browser.obj - 0001:00010080 ??_EBRWB@@UAEPAXI@Z 00411080 f browser.obj - 0001:000100c0 ??1BRWB@@UAE@XZ 004110c0 f browser.obj - 0001:000100f0 ??_GBRWC@@UAEPAXI@Z 004110f0 f browser.obj - 0001:000100f0 ??_EBRWC@@UAEPAXI@Z 004110f0 f browser.obj - 0001:00010130 ??1BRWC@@UAE@XZ 00411130 f browser.obj - 0001:00010160 ??_EBRWM@@UAEPAXI@Z 00411160 f browser.obj - 0001:00010160 ??_GBRWM@@UAEPAXI@Z 00411160 f browser.obj - 0001:000101a0 ??_EBRWI@@UAEPAXI@Z 004111a0 f browser.obj - 0001:000101a0 ??_GBRWI@@UAEPAXI@Z 004111a0 f browser.obj - 0001:000101e0 ??_EBRWR@@UAEPAXI@Z 004111e0 f browser.obj - 0001:000101e0 ??_GBRWR@@UAEPAXI@Z 004111e0 f browser.obj - 0001:00010220 ??_GFNET@@UAEPAXI@Z 00411220 f browser.obj - 0001:00010220 ??_EFNET@@UAEPAXI@Z 00411220 f browser.obj - 0001:00010260 ?GetPortfolioDoc@APP@@QAEXPAVFNI@@@Z 00411260 f browser.obj - 0001:00010290 ?PcrmAll@APP@@QAEPAVCRM@@XZ 00411290 f browser.obj - 0001:000102c0 ?FGetStnApp@APP@@QAEHJPAVSTN@@@Z 004112c0 f browser.obj - 0001:00010300 ?GetFniProduct@APP@@QAEXPAVFNI@@@Z 00411300 f browser.obj - 0001:00010330 ?SidProduct@APP@@QAEJXZ 00411330 f browser.obj - 0001:00010360 ??_GBRCNL@@MAEPAXI@Z 00411360 f browser.obj - 0001:00010360 ??_EBRCNL@@MAEPAXI@Z 00411360 f browser.obj - 0001:000103a0 ??1BRCN@@UAE@XZ 004113a0 f browser.obj - 0001:000103d0 ??4BASE@@QAEAAV0@ABV0@@Z 004113d0 f browser.obj - 0001:00010410 ?SetDisplayCast@STDIO@@QAEXH@Z 00411410 f browser.obj - 0001:00010440 ?Pmvie@STDIO@@QAEPAVMVIE@@XZ 00411440 f browser.obj - 0001:00010470 ??_9@$BBCI@A 00411470 f browser.obj - 0001:00010480 ??_9@$BBCM@A 00411480 f browser.obj - 0001:00010490 ??_9@$BBDA@A 00411490 f browser.obj - 0001:000104a0 ??_9@$BBDE@A 004114a0 f browser.obj - 0001:000104b0 ??_9@$BBDI@A 004114b0 f browser.obj - 0001:000104e0 ?FWouldBe@APP@@SGHJ@Z 004114e0 f utest.obj - 0001:00010520 ?FIs@APP@@UAEHJ@Z 00411520 f utest.obj - 0001:00010550 ?Cls@APP@@UAEJXZ 00411550 f utest.obj - 0001:00010580 ?FWouldBe@KWA@@SGHJ@Z 00411580 f utest.obj - 0001:000105c0 ?FIs@KWA@@UAEHJ@Z 004115c0 f utest.obj - 0001:000105f0 ?Cls@KWA@@UAEJXZ 004115f0 f utest.obj - 0001:00010620 ?FrameMain@@YGXXZ 00411620 f utest.obj - 0001:00010650 ?Run@APP@@UAEXKKJ@Z 00411650 f utest.obj - 0001:00010750 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 00411750 f utest.obj - 0001:00010880 ?_FInit@APP@@MAEHKKJ@Z 00411880 f utest.obj - 0001:00010f00 ?_CleanupTemp@APP@@IAEXXZ 00411f00 f utest.obj - 0001:00011010 ?_FAppAlreadyRunning@APP@@IAEHXZ 00412010 f utest.obj - 0001:000110e0 ?_TryToActivateWindow@APP@@IAEXXZ 004120e0 f utest.obj - 0001:00011200 ?_FEnsureOS@APP@@IAEHXZ 00412200 f utest.obj - 0001:000112f0 ?_FEnsureAudio@APP@@IAEHXZ 004122f0 f utest.obj - 0001:00011580 ?_FEnsureVideo@APP@@IAEHXZ 00412580 f utest.obj - 0001:00011610 ?_FEnsureColorDepth@APP@@IAEHXZ 00412610 f utest.obj - 0001:000117d0 ?_FEnsureDisplayResolution@APP@@IAEHXZ 004127d0 f utest.obj - 0001:00011ae0 ?_FDisplayIs640480@APP@@IAEHXZ 00412ae0 f utest.obj - 0001:00011b30 ?_FInitOS@APP@@MAEHXZ 00412b30 f utest.obj - 0001:00011e00 ?_GetWindowProps@APP@@IAEXPAJ000PAK@Z 00412e00 f utest.obj - 0001:00011f80 ?_RebuildMainWindow@APP@@IAEXXZ 00412f80 f utest.obj - 0001:00012070 ?_FOpenResourceFile@APP@@IAEHXZ 00413070 f utest.obj - 0001:00012290 ?_FCantFindFileDialog@APP@@IAEHPAVSTN@@@Z 00413290 f utest.obj - 0001:000123d0 ?Psz@STN@@QAEPADXZ 004133d0 f utest.obj - 0001:00012420 ?_FGetUserDirectories@APP@@IAEHXZ 00413420 f utest.obj - 0001:000129c0 ?SetSz@STN@@QAEXPAD@Z 004139c0 f utest.obj - 0001:00012a00 ??4STN@@QAEAAV0@PAD@Z 00413a00 f utest.obj - 0001:00012a30 ?GetSz@STN@@QAEXPAD@Z 00413a30 f utest.obj - 0001:00012aa0 ?FAppendStn@STN@@QAEHPAV1@@Z 00413aa0 f utest.obj - 0001:00012ae0 ?Prgch@STN@@QAEPADXZ 00413ae0 f utest.obj - 0001:00012b30 ?_FGetUserName@APP@@IAEHXZ 00413b30 f utest.obj - 0001:00012da0 ?_FReadUserData@APP@@IAEHXZ 00413da0 f utest.obj - 0001:00012e70 ?_FWriteUserData@APP@@IAEHXZ 00413e70 f utest.obj - 0001:00012f30 ?FGetSetRegKey@APP@@QAEHPADPAXJKPAH@Z 00413f30 f utest.obj - 0001:00013250 ?_FDisplayHomeLogo@APP@@IAEHXZ 00414250 f utest.obj - 0001:00013460 ?_FInitProductNames@APP@@IAEHXZ 00414460 f utest.obj - 0001:000135f0 ?_FReadTitlesFromReg@APP@@IAEHPAPAVGST@@@Z 004145f0 f utest.obj - 0001:00013850 ?_FInitTdt@APP@@IAEHXZ 00414850 f utest.obj - 0001:000139c0 ?CbExtra@GSTB@@QAEJXZ 004149c0 f utest.obj - 0001:000139f0 ?_PgstRead@APP@@IAEPAVGST@@K@Z 004149f0 f utest.obj - 0001:00013be0 ?_FReadStringTables@APP@@IAEHXZ 00414be0 f utest.obj - 0001:00013d40 ?TsCurrent@@YGKXZ 00414d40 f utest.obj - 0001:00013d60 ?_FInitKidworld@APP@@IAEHXZ 00414d60 f utest.obj - 0001:00013e40 ?_FShowSplashScreen@APP@@IAEHXZ 00414e40 f utest.obj - 0001:00013f50 ?_FPlaySplashSound@APP@@IAEHXZ 00414f50 f utest.obj - 0001:00014010 ?_FInitCrm@APP@@IAEHXZ 00415010 f utest.obj - 0001:000145f0 ?_FAddToCrm@APP@@IAEHPAVGST@@PAVCRM@@PAVGL@@@Z 004155f0 f utest.obj - 0001:00014ac0 ?FAppendCh@STN@@QAEHD@Z 00415ac0 f utest.obj - 0001:00014af0 ?FAppendSz@STN@@QAEHPAD@Z 00415af0 f utest.obj - 0001:00014b30 ?_FInitBuilding@APP@@IAEHXZ 00415b30 f utest.obj - 0001:00014e00 ??0GCB@@QAE@JPAVGOB@@KJPAVRC@@1@Z 00415e00 f utest.obj - 0001:00014e60 ?PgobScreen@GOB@@SGPAV1@XZ 00415e60 f utest.obj - 0001:00014e80 ?_FInitStudio@APP@@IAEHPAVFNI@@H@Z 00415e80 f utest.obj - 0001:000150b0 ?_FDetermineIfSlowCPU@APP@@IAEHXZ 004160b0 f utest.obj - 0001:00015150 ?_ParseCommandLine@APP@@IAEXXZ 00416150 f utest.obj - 0001:00015640 ?ChUpper@@YGDD@Z 00416640 f utest.obj - 0001:00015660 ?_FEnsureProductNames@APP@@IAEHXZ 00416660 f utest.obj - 0001:00015790 ?_FFindMsKidsDir@APP@@IAEHXZ 00416790 f utest.obj - 0001:00015ad0 ?_FFindProductDir@APP@@IAEHPAVGST@@@Z 00416ad0 f utest.obj - 0001:00015cc0 ?_FQueryProductExists@APP@@IAEHPAVSTN@@0PAVFNI@@@Z 00416cc0 f utest.obj - 0001:00015f80 ?_SkipToSpace@APP@@IAEXPAPAD@Z 00416f80 f utest.obj - 0001:00016040 ?_SkipSpace@APP@@IAEXPAPAD@Z 00417040 f utest.obj - 0001:000160b0 ?_Activate@APP@@MAEXH@Z 004170b0 f utest.obj - 0001:000162e0 ?CactModal@APPB@@QAEJXZ 004172e0 f utest.obj - 0001:00016310 ?FCmdDeactivate@APP@@QAEHPAUCMD@@@Z 00417310 f utest.obj - 0001:000167b0 ?_CopyPixels@APP@@MAEXPAVGNV@@PAVRC@@01@Z 004177b0 f utest.obj - 0001:00016c50 ?FCmdLoadStudio@APP@@QAEHPAUCMD@@@Z 00417c50 f utest.obj - 0001:00016e70 ?FCmdLoadBuilding@APP@@QAEHPAUCMD@@@Z 00417e70 f utest.obj - 0001:00016fd0 ?FCmdExitStudio@APP@@QAEHPAUCMD@@@Z 00417fd0 f utest.obj - 0001:000171b0 ?FCmdTheaterOpen@APP@@QAEHPAUCMD@@@Z 004181b0 f utest.obj - 0001:00017300 ?FCmdTheaterClose@APP@@QAEHPAUCMD@@@Z 00418300 f utest.obj - 0001:00017400 ?FCmdPortfolioClear@APP@@QAEHPAUCMD@@@Z 00418400 f utest.obj - 0001:00017470 ?FCmdPortfolioOpen@APP@@QAEHPAUCMD@@@Z 00418470 f utest.obj - 0001:00017700 ?OnnDefVariable@APP@@UAEJXZ 00418700 f utest.obj - 0001:000177d0 ?FGetOnn@APP@@QAEHPAVSTN@@PAJ@Z 004187d0 f utest.obj - 0001:000178b0 ?MemStat@APP@@QAEXPAJ0@Z 004188b0 f utest.obj - 0001:00017910 ?DypTextDef@APP@@UAEJXZ 00418910 f utest.obj - 0001:00017a20 ?TQuerySaveDoc@APP@@UAEHPAVDOCB@@H@Z 00418a20 f utest.obj - 0001:00017bb0 ?Quit@APP@@UAEXH@Z 00418bb0 f utest.obj - 0001:00017d90 ?_Pmvie@APP@@IAEPAVMVIE@@XZ 00418d90 f utest.obj - 0001:00017ea0 ?LoadGenResource@@YGPADPAUHINSTANCE__@@PAD1@Z 00418ea0 f utest.obj - 0001:00017f00 ?FCmdInfo@APP@@QAEHPAUCMD@@@Z 00418f00 f utest.obj - 0001:00018510 ?_FDisplaySwitchSupported@APP@@IAEHXZ 00419510 f utest.obj - 0001:000185c0 ?_FSwitch640480@APP@@IAEHH@Z 004195c0 f utest.obj - 0001:000187a0 ?_CleanUp@APP@@MAEXXZ 004197a0 f utest.obj - 0001:00018ab0 ?TModal@APP@@QAEHPAVRCA@@JPAVSTN@@JJ1@Z 00419ab0 f utest.obj - 0001:00018d80 ?FInsertCD@APP@@SGHPAVSTN@@@Z 00419d80 f utest.obj - 0001:00018e70 ?DisplayErrors@APP@@QAEXXZ 00419e70 f utest.obj - 0001:00019610 ?Trans@MVIE@@QAE?AW4TRANS@@XZ 0041a610 f utest.obj - 0001:00019640 ?Pbwld@MVIE@@QAEPAVBWLD@@XZ 0041a640 f utest.obj - 0001:00019670 ?FCmdIdle@APP@@UAEHPAUCMD@@@Z 0041a670 f utest.obj - 0001:00019770 ?PbllNext@BLL@@QAEPAV1@XZ 0041a770 f utest.obj - 0001:000197a0 ?PcflFirst@CFL@@SGPAV1@XZ 0041a7a0 f utest.obj - 0001:000197c0 ?_FSendOpenDocCmd@APP@@IAEHPAUHWND__@@PAVFNI@@@Z 0041a7c0 f utest.obj - 0001:00019ad0 ?_FProcessOpenDocCmd@APP@@IAEHXZ 0041aad0 f utest.obj - 0001:00019e80 ?_FGetNextEvt@APP@@MAEHPAUtagMSG@@@Z 0041ae80 f utest.obj - 0001:00019f30 ?_FastUpdate@APP@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0041af30 f utest.obj - 0001:0001a010 ?Nfrm@SCEN@@QAEJXZ 0041b010 f utest.obj - 0001:0001a040 ?NfrmFirst@SCEN@@QAEJXZ 0041b040 f utest.obj - 0001:0001a070 ?FPlaying@MVIE@@QAEHXZ 0041b070 f utest.obj - 0001:0001a0a0 ?UpdateHwnd@APP@@UAEXPAUHWND__@@PAVRC@@K@Z 0041b0a0 f utest.obj - 0001:0001a180 ?_FFrameWndProc@APP@@MAEHPAUHWND__@@IIJPAJ@Z 0041b180 f utest.obj - 0001:0001a610 ?FAllowScreenSaver@APP@@UAEHXZ 0041b610 f utest.obj - 0001:0001a6a0 ?DisableAccel@APP@@QAEXXZ 0041b6a0 f utest.obj - 0001:0001a720 ?EnableAccel@APP@@QAEXXZ 0041b720 f utest.obj - 0001:0001a7d0 ?FCmdDisableAccel@APP@@QAEHPAUCMD@@@Z 0041b7d0 f utest.obj - 0001:0001a830 ?FCmdEnableAccel@APP@@QAEHPAUCMD@@@Z 0041b830 f utest.obj - 0001:0001a890 ?FCmdInvokeSplot@APP@@QAEHPAUCMD@@@Z 0041b890 f utest.obj - 0001:0001a930 ?HandoffMovie@APP@@QAEXPAVMVIE@@@Z 0041b930 f utest.obj - 0001:0001aa30 ?PmvieRetrieve@APP@@QAEPAVMVIE@@XZ 0041ba30 f utest.obj - 0001:0001aaa0 ?AssertValid@APP@@QAEXK@Z 0041baa0 f utest.obj - 0001:0001afe0 ?MarkMem@APP@@UAEXXZ 0041bfe0 f utest.obj - 0001:0001b240 ??1KWA@@UAE@XZ 0041c240 f utest.obj - 0001:0001b2b0 ?PclokAnim@WOKS@@UAEPAVCLOK@@XZ 0041c2b0 f utest.obj - 0001:0001b2e0 ?PclokNoSlip@WOKS@@UAEPAVCLOK@@XZ 0041c2e0 f utest.obj - 0001:0001b310 ?PclokGen@WOKS@@UAEPAVCLOK@@XZ 0041c310 f utest.obj - 0001:0001b340 ?PclokReset@WOKS@@UAEPAVCLOK@@XZ 0041c340 f utest.obj - 0001:0001b370 ?SetMbmp@KWA@@QAEXPAVMBMP@@@Z 0041c370 f utest.obj - 0001:0001b480 ?Draw@KWA@@UAEXPAVGNV@@PAVRC@@@Z 0041c480 f utest.obj - 0001:0001b560 ?FFindFile@KWA@@UAEHPAVSTN@@PAVFNI@@@Z 0041c560 f utest.obj - 0001:0001b690 ?Pmvie@TATR@@QAEPAVMVIE@@XZ 0041c690 f utest.obj - 0001:0001b6c0 ??0KWA@@QAE@PAUGCB@@@Z 0041c6c0 f utest.obj - 0001:0001b710 ?FModalTopic@KWA@@UAEHPAVRCA@@KPAJ@Z 0041c710 f utest.obj - 0001:0001b800 ?SetCDPrompt@KWA@@QAEXH@Z 0041c800 f utest.obj - 0001:0001b830 ?FAskForCD@KWA@@QAEHXZ 0041c830 f utest.obj - 0001:0001b860 ??0APP@@QAE@XZ 0041c860 f utest.obj - 0001:0001b950 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 0041c950 f utest.obj - 0001:0001b980 ?_FInitMenu@APP@@MAEHXZ 0041c980 f utest.obj - 0001:0001b9b0 ?AssertValid@KWA@@QAEXK@Z 0041c9b0 f utest.obj - 0001:0001ba20 ?MarkMem@KWA@@UAEXXZ 0041ca20 f utest.obj - 0001:0001bb00 ?SetPortfolioDoc@APP@@QAEXPAVFNI@@@Z 0041cb00 f utest.obj - 0001:0001bb40 ?FInPortfolio@APP@@QAEHXZ 0041cb40 f utest.obj - 0001:0001bb70 ?GetFniUsers@APP@@QAEXPAVFNI@@@Z 0041cb70 f utest.obj - 0001:0001bba0 ?EnsureInteractive@APP@@QAEXXZ 0041cba0 f utest.obj - 0001:0001bc10 ?Pmvie@SPLOT@@QAEPAVMVIE@@XZ 0041cc10 f utest.obj - 0001:0001bc40 ??_EKWA@@UAEPAXI@Z 0041cc40 f utest.obj - 0001:0001bc40 ??_GKWA@@UAEPAXI@Z 0041cc40 f utest.obj - 0001:0001bc80 ??_GAPP@@UAEPAXI@Z 0041cc80 f utest.obj - 0001:0001bc80 ??_EAPP@@UAEPAXI@Z 0041cc80 f utest.obj - 0001:0001bcc0 ??1APP@@UAE@XZ 0041ccc0 f utest.obj - 0001:0001bd60 ??1GTE@@UAE@XZ 0041cd60 f utest.obj - 0001:0001bd90 ?FWouldBe@SSCB@@SGHJ@Z 0041cd90 f stdioscb.obj - 0001:0001bdd0 ?FIs@SSCB@@UAEHJ@Z 0041cdd0 f stdioscb.obj - 0001:0001be00 ?Cls@SSCB@@UAEJXZ 0041ce00 f stdioscb.obj - 0001:0001be30 ??0SSCB@@IAE@PAVMVIE@@@Z 0041ce30 f stdioscb.obj - 0001:0001be70 ?PsscbNew@SSCB@@SGPAV1@PAVMVIE@@@Z 0041ce70 f stdioscb.obj - 0001:0001c1b0 ??1SSCB@@UAE@XZ 0041d1b0 f stdioscb.obj - 0001:0001c220 ?FCmdScroll@SSCB@@QAEHPAUCMD@@@Z 0041d220 f stdioscb.obj - 0001:0001c9d0 ?LwBound@@YGJJJJ@Z 0041d9d0 f stdioscb.obj - 0001:0001ca10 ?LwMulDiv@@YGJJJJ@Z 0041da10 f stdioscb.obj - 0001:0001ca60 ?_CxScrollbar@SSCB@@AAEJJJ@Z 0041da60 f stdioscb.obj - 0001:0001cb40 ?Update@SSCB@@UAEXXZ 0041db40 f stdioscb.obj - 0001:0001cef0 ?SetMvie@SSCB@@QAEXPAVMVIE@@@Z 0041def0 f stdioscb.obj - 0001:0001cf30 ?StartNoAutoadjust@SSCB@@QAEXXZ 0041df30 f stdioscb.obj - 0001:0001cfe0 ?SetSndFrame@SSCB@@QAEXH@Z 0041dfe0 f stdioscb.obj - 0001:0001d0b0 ?MarkMem@SSCB@@UAEXXZ 0041e0b0 f stdioscb.obj - 0001:0001d100 ?AssertValid@SSCB@@QAEXK@Z 0041e100 f stdioscb.obj - 0001:0001d150 ??_ESSCB@@UAEPAXI@Z 0041e150 f stdioscb.obj - 0001:0001d150 ??_GSSCB@@UAEPAXI@Z 0041e150 f stdioscb.obj - 0001:0001d2f0 ?NfrmLast@SCEN@@QAEJXZ 0041e2f0 f stdioscb.obj - 0001:0001d320 ?FSoundsEnabled@MVIE@@QAEHXZ 0041e320 f stdioscb.obj - 0001:0001d350 ?EndNoAutoadjust@SSCB@@QAEXXZ 0041e350 f stdioscb.obj - 0001:0001d3a0 ?FCmdBrowserReady@STDIO@@QAEHPAUCMD@@@Z 0041e3a0 f stdiobrw.obj - 0001:0001e2a0 ?ReleaseBrcn@STDIO@@QAEXXZ 0041f2a0 f stdiobrw.obj - 0001:0001e370 ?_PbrcnFromBrwdid@STDIO@@IAEPAVBRCN@@J@Z 0041f370 f stdiobrw.obj - 0001:0001e420 ?_ApplySelection@BRWC@@MAEXJJ@Z 0041f420 f stdiobrw.obj - 0001:0001e530 ?_ApplySelection@BRWB@@MAEXJJ@Z 0041f530 f stdiobrw.obj - 0001:0001e6a0 ?_ApplySelection@BRWP@@MAEXJJ@Z 0041f6a0 f stdiobrw.obj - 0001:0001e7e0 ?_ApplySelection@BRWA@@MAEXJJ@Z 0041f7e0 f stdiobrw.obj - 0001:0001ea20 ?_ApplySelection@BRWM@@MAEXJJ@Z 0041fa20 f stdiobrw.obj - 0001:0001eda0 ?_ApplySelection@BRWI@@MAEXJJ@Z 0041fda0 f stdiobrw.obj - 0001:0001efd0 ?_ApplySelection@BRWR@@MAEXJJ@Z 0041ffd0 f stdiobrw.obj - 0001:0001f120 ?Cno@BACO@@QAEKXZ 00420120 f stdiobrw.obj - 0001:0001f150 ??0BRCNL@@QAE@XZ 00420150 f stdiobrw.obj - 0001:0001f2f0 ?Pbkgd@SCEN@@QAEPAVBKGD@@XZ 004202f0 f stdiobrw.obj - 0001:0001f320 ?FActrMode@MVU@@QAEHXZ 00420320 f stdiobrw.obj - 0001:0001f370 ?Icam@BKGD@@QAEJXZ 00420370 f stdiobrw.obj - 0001:0001f3a0 ??0BRCN@@IAE@XZ 004203a0 f stdiobrw.obj - 0001:0001f3e0 ??_GBRCN@@UAEPAXI@Z 004203e0 f stdiobrw.obj - 0001:0001f3e0 ??_EBRCN@@UAEPAXI@Z 004203e0 f stdiobrw.obj - 0001:0001f420 ?FWouldBe@STDIO@@SGHJ@Z 00420420 f studio.obj - 0001:0001f460 ?FIs@STDIO@@UAEHJ@Z 00420460 f studio.obj - 0001:0001f490 ?Cls@STDIO@@UAEJXZ 00420490 f studio.obj - 0001:0001f4c0 ?FWouldBe@SMCC@@SGHJ@Z 004204c0 f studio.obj - 0001:0001f500 ?FIs@SMCC@@UAEHJ@Z 00420500 f studio.obj - 0001:0001f530 ?Cls@SMCC@@UAEJXZ 00420530 f studio.obj - 0001:0001f560 ?PstdioNew@STDIO@@SGPAV1@JPAVCRM@@PAVFNI@@H@Z 00420560 f studio.obj - 0001:0001f940 ??1STDIO@@UAE@XZ 00420940 f studio.obj - 0001:0001fb80 ?_FOpenStudio@STDIO@@IAEHH@Z 00420b80 f studio.obj - 0001:000200e0 ?FCmdLoadProjectMovie@STDIO@@QAEHPAUCMD@@@Z 004210e0 f studio.obj - 0001:00020350 ?FLoadMovie@STDIO@@QAEHPAVFNI@@K@Z 00421350 f studio.obj - 0001:000203d0 ?_FLoadMovie@STDIO@@IAEHPAVFNI@@KPAH@Z 004213d0 f studio.obj - 0001:00020880 ?FSetMovie@STDIO@@QAEHPAVMVIE@@@Z 00421880 f studio.obj - 0001:00020cc0 ?FCmdXYAxis@STDIO@@QAEHPAUCMD@@@Z 00421cc0 f studio.obj - 0001:00020e50 ?FCmdXZAxis@STDIO@@QAEHPAUCMD@@@Z 00421e50 f studio.obj - 0001:00020fd0 ?FCmdSetTool@STDIO@@QAEHPAUCMD@@@Z 00421fd0 f studio.obj - 0001:00021340 ?FCmdPlay@STDIO@@QAEHPAUCMD@@@Z 00422340 f studio.obj - 0001:00021680 ?FCmdNewScene@STDIO@@QAEHPAUCMD@@@Z 00422680 f studio.obj - 0001:000217d0 ?FCmdRespectGround@STDIO@@QAEHPAUCMD@@@Z 004227d0 f studio.obj - 0001:00021910 ?FCmdPause@STDIO@@QAEHPAUCMD@@@Z 00422910 f studio.obj - 0001:00021a30 ?FCmdOpen@STDIO@@QAEHPAUCMD@@@Z 00422a30 f studio.obj - 0001:00021c50 ?FCmdScroll@STDIO@@QAEHPAUCMD@@@Z 00422c50 f studio.obj - 0001:00021d10 ?FCmdSooner@STDIO@@QAEHPAUCMD@@@Z 00422d10 f studio.obj - 0001:00021e60 ?FCmdLater@STDIO@@QAEHPAUCMD@@@Z 00422e60 f studio.obj - 0001:00021fb0 ?FCmdNewSpletter@STDIO@@QAEHPAUCMD@@@Z 00422fb0 f studio.obj - 0001:00022190 ?FCmdOpenSoundRecord@STDIO@@QAEHPAUCMD@@@Z 00423190 f studio.obj - 0001:00022260 ?SceneChange@STDIO@@QAEXXZ 00423260 f studio.obj - 0001:00022280 ?FCmdCreatePopup@STDIO@@QAEHPAUCMD@@@Z 00423280 f studio.obj - 0001:00022670 ?FCmdTextSetBkgdColor@STDIO@@QAEHPAUCMD@@@Z 00423670 f studio.obj - 0001:00022740 ?FCmdTextSetColor@STDIO@@QAEHPAUCMD@@@Z 00423740 f studio.obj - 0001:00022810 ?FCmdTextSetSize@STDIO@@QAEHPAUCMD@@@Z 00423810 f studio.obj - 0001:000228a0 ?FCmdTextSetStyle@STDIO@@QAEHPAUCMD@@@Z 004238a0 f studio.obj - 0001:00022950 ?FCmdTextSetFont@STDIO@@QAEHPAUCMD@@@Z 00423950 f studio.obj - 0001:000229e0 ?SetCurs@STDIO@@QAEXJ@Z 004239e0 f studio.obj - 0001:00022d90 ?OnnSystem@NTL@@QAEJXZ 00423d90 f studio.obj - 0001:00022dc0 ??0ACR@@QAE@E@Z 00423dc0 f studio.obj - 0001:00022e00 ?SetToClear@ACR@@QAEXXZ 00423e00 f studio.obj - 0001:00022f40 ?PlayStopped@STDIO@@QAEXXZ 00423f40 f studio.obj - 0001:00023110 ?ChangeTool@STDIO@@QAEXJ@Z 00424110 f studio.obj - 0001:00023410 ?SceneNuked@STDIO@@QAEXXZ 00424410 f studio.obj - 0001:00023530 ?SceneUnnuked@STDIO@@QAEXXZ 00424530 f studio.obj - 0001:00023600 ?ActorNuked@STDIO@@QAEXXZ 00424600 f studio.obj - 0001:00023660 ?_SetToolStates@STDIO@@IAEXXZ 00424660 f studio.obj - 0001:00023c60 ?EnableActorTools@STDIO@@QAEXXZ 00424c60 f studio.obj - 0001:00023d60 ?EnableTboxTools@STDIO@@QAEXXZ 00424d60 f studio.obj - 0001:00023e60 ?TboxSelected@STDIO@@QAEXXZ 00424e60 f studio.obj - 0001:00023eb0 ?SetUndo@STDIO@@QAEXJ@Z 00424eb0 f studio.obj - 0001:00023fe0 ?ActorEasel@STDIO@@QAEXPAH@Z 00424fe0 f studio.obj - 0001:00024060 ?FCmdActorEaselOpen@STDIO@@QAEHPAUCMD@@@Z 00425060 f studio.obj - 0001:00024190 ?PauseType@STDIO@@QAEXW4WIT@@@Z 00425190 f studio.obj - 0001:000242f0 ?Recording@STDIO@@QAEXHH@Z 004252f0 f studio.obj - 0001:000243f0 ?StartSoonerLater@STDIO@@QAEXXZ 004253f0 f studio.obj - 0001:000245d0 ?EndSoonerLater@STDIO@@QAEXXZ 004255d0 f studio.obj - 0001:00024730 ?NewActor@STDIO@@QAEXXZ 00425730 f studio.obj - 0001:00024b40 ?FAddCmg@STDIO@@QAEHKK@Z 00425b40 f studio.obj - 0001:00024c20 ?CnoGokdFromCnoTmpl@STDIO@@QAEKK@Z 00425c20 f studio.obj - 0001:00024cd0 ?StartActionBrowser@STDIO@@QAEXXZ 00425cd0 f studio.obj - 0001:00024e60 ?StartListenerEasel@STDIO@@QAEXXZ 00425e60 f studio.obj - 0001:00024ed0 ?FCmdListenerEaselOpen@STDIO@@QAEHPAUCMD@@@Z 00425ed0 f studio.obj - 0001:00024f50 ?FShutdown@STDIO@@QAEHH@Z 00425f50 f studio.obj - 0001:00025050 ?PauseActionButton@STDIO@@SGXXZ 00426050 f studio.obj - 0001:00025120 ?ResumeActionButton@STDIO@@SGXXZ 00426120 f studio.obj - 0001:000251f0 ?PlayUISound@STDIO@@QAEXJJ@Z 004261f0 f studio.obj - 0001:00025610 ?StopUISound@STDIO@@QAEXXZ 00426610 f studio.obj - 0001:00025680 ?GetStnMisc@STDIO@@QAEXJPAVSTN@@@Z 00426680 f studio.obj - 0001:00025710 ?FCmdToggleXY@STDIO@@QAEHPAUCMD@@@Z 00426710 f studio.obj - 0001:00025880 ?FCmdHelpBook@STDIO@@QAEHPAUCMD@@@Z 00426880 f studio.obj - 0001:000259a0 ?FCmdMovieGoto@STDIO@@QAEHPAUCMD@@@Z 004269a0 f studio.obj - 0001:00025a10 ?FCmdSoundsEnabled@STDIO@@QAEHPAUCMD@@@Z 00426a10 f studio.obj - 0001:00025a80 ?FCmdCreateTbox@STDIO@@QAEHPAUCMD@@@Z 00426a80 f studio.obj - 0001:00025b30 ?UpdateTitle@STDIO@@QAEXPAVSTN@@@Z 00426b30 f studio.obj - 0001:00025cb0 ?FCmdWriteBmps@STDIO@@QAEHPAUCMD@@@Z 00426cb0 f studio.obj - 0001:00025d80 ?MarkMem@STDIO@@UAEXXZ 00426d80 f studio.obj - 0001:00025f90 ?AssertValid@STDIO@@QAEXK@Z 00426f90 f studio.obj - 0001:00026230 ??0SMCC@@QAE@JJJPAVSSCB@@PAVSTDIO@@@Z 00427230 f studio.obj - 0001:00026340 ?UpdateRollCall@SMCC@@UAEXXZ 00427340 f studio.obj - 0001:000264a0 ?DypTboxDef@SMCC@@UAEJXZ 004274a0 f studio.obj - 0001:00026540 ?FQueryPurgeSounds@SMCC@@UAEHXZ 00427540 f studio.obj - 0001:00026620 ?AssertValid@SMCC@@QAEXK@Z 00427620 f studio.obj - 0001:000266b0 ?Cactr@SCEN@@QAEJXZ 004276b0 f studio.obj - 0001:00026700 ?MarkMem@SMCC@@UAEXXZ 00427700 f studio.obj - 0001:00026770 ?PtboxSelected@SCEN@@QAEPAVTBOX@@XZ 00427770 f studio.obj - 0001:000267a0 ?Ctbox@SCEN@@QAEJXZ 004277a0 f studio.obj - 0001:00026810 ?Tool@MVU@@QAEJXZ 00427810 f studio.obj - 0001:00026840 ?SetAxis@MVU@@QAEXQAY02J@Z 00427840 f studio.obj - 0001:00026880 ?SetFRespectGround@MVU@@QAEXH@Z 00427880 f studio.obj - 0001:000268c0 ?FTextMode@MVU@@QAEHXZ 004278c0 f studio.obj - 0001:000268f0 ?GrfontStyleTextCur@MVU@@QAEKXZ 004278f0 f studio.obj - 0001:00026920 ?SetFWriteBmps@MVIE@@QAEXH@Z 00427920 f studio.obj - 0001:00026980 ?ForceSaveAs@MVIE@@QAEXXZ 00427980 f studio.obj - 0001:000269e0 ?SetMcc@MVIE@@QAEXPAVMCC@@@Z 004279e0 f studio.obj - 0001:00026a60 ?PstnTitle@MVIE@@QAEPAVSTN@@XZ 00427a60 f studio.obj - 0001:00026a90 ?SetThumbPalette@MVIE@@QAEXPAVGL@@@Z 00427a90 f studio.obj - 0001:00026b00 ?SetFLeaveLitesOn@BKGD@@QAEXH@Z 00427b00 f studio.obj - 0001:00026b30 ??_ESTDIO@@UAEPAXI@Z 00427b30 f studio.obj - 0001:00026b30 ??_GSTDIO@@UAEPAXI@Z 00427b30 f studio.obj - 0001:00026b70 ??_ESMCC@@UAEPAXI@Z 00427b70 f studio.obj - 0001:00026b70 ??_GSMCC@@UAEPAXI@Z 00427b70 f studio.obj - 0001:00026bb0 ??0CHP@@QAE@XZ 00427bb0 f studio.obj - 0001:00026bf0 ??0ACR@@QAE@XZ 00427bf0 f studio.obj - 0001:00026c20 ?SetFontSize@TGOB@@QAEXJ@Z 00427c20 f studio.obj - 0001:00026c70 ?FApplyingSel@BRWR@@QAEHXZ 00427c70 f studio.obj - 0001:00026cc0 ?GetStnProduct@APP@@QAEXPAVSTN@@@Z 00427cc0 f studio.obj - 0001:00026cf0 ?GetFniMelanie@APP@@QAEXPAVFNI@@@Z 00427cf0 f studio.obj - 0001:00026d20 ?Pcmm@STDIO@@MAEPAUCMM@CMH@@XZ 00427d20 f studio.obj - 0001:00026d50 ??0STDIO@@IAE@PAUGCB@@@Z 00427d50 f studio.obj - 0001:00026d90 ?AridSelected@STDIO@@QAEJXZ 00427d90 f studio.obj - 0001:00026dc0 ?PbrwrActr@STDIO@@QAEPAVBRWR@@XZ 00427dc0 f studio.obj - 0001:00026df0 ?PbrwrProp@STDIO@@QAEPAVBRWR@@XZ 00427df0 f studio.obj - 0001:00026e20 ?Psmcc@STDIO@@QAEPAVSMCC@@XZ 00427e20 f studio.obj - 0001:00026e50 ??1SMCC@@UAE@XZ 00427e50 f studio.obj - 0001:00026eb0 ?Dxp@SMCC@@UAEJXZ 00427eb0 f studio.obj - 0001:00026ee0 ?Dyp@SMCC@@UAEJXZ 00427ee0 f studio.obj - 0001:00026f10 ?CbCache@SMCC@@UAEJXZ 00427f10 f studio.obj - 0001:00026f40 ?Psscb@SMCC@@UAEPAVSSCB@@XZ 00427f40 f studio.obj - 0001:00026f70 ?SetCurs@SMCC@@UAEXJ@Z 00427f70 f studio.obj - 0001:00026fa0 ?ActorSelected@SMCC@@UAEXJ@Z 00427fa0 f studio.obj - 0001:00026fe0 ?SetAridSelected@STDIO@@QAEXJ@Z 00427fe0 f studio.obj - 0001:00027010 ?UpdateAction@SMCC@@UAEXXZ 00428010 f studio.obj - 0001:00027030 ?UpdateScrollbars@SMCC@@UAEXXZ 00428030 f studio.obj - 0001:00027070 ?SetSscb@SMCC@@UAEXPAVSSCB@@@Z 00428070 f studio.obj - 0001:00027120 ?PlayStopped@SMCC@@UAEXXZ 00428120 f studio.obj - 0001:00027150 ?ChangeTool@SMCC@@UAEXJ@Z 00428150 f studio.obj - 0001:00027180 ?SceneNuked@SMCC@@UAEXXZ 00428180 f studio.obj - 0001:000271b0 ?SceneUnnuked@SMCC@@UAEXXZ 004281b0 f studio.obj - 0001:000271e0 ?ActorNuked@SMCC@@UAEXXZ 004281e0 f studio.obj - 0001:00027210 ?EnableActorTools@SMCC@@UAEXXZ 00428210 f studio.obj - 0001:00027240 ?EnableTboxTools@SMCC@@UAEXXZ 00428240 f studio.obj - 0001:00027270 ?TboxSelected@SMCC@@UAEXXZ 00428270 f studio.obj - 0001:000272a0 ?ActorEasel@SMCC@@UAEXPAH@Z 004282a0 f studio.obj - 0001:000272d0 ?SetUndo@SMCC@@UAEXJ@Z 004282d0 f studio.obj - 0001:00027300 ?SceneChange@SMCC@@UAEXXZ 00428300 f studio.obj - 0001:00027330 ?PauseType@SMCC@@UAEXW4WIT@@@Z 00428330 f studio.obj - 0001:00027360 ?Recording@SMCC@@UAEXHH@Z 00428360 f studio.obj - 0001:000273a0 ?StartSoonerLater@SMCC@@UAEXXZ 004283a0 f studio.obj - 0001:000273d0 ?EndSoonerLater@SMCC@@UAEXXZ 004283d0 f studio.obj - 0001:00027400 ?NewActor@SMCC@@UAEXXZ 00428400 f studio.obj - 0001:00027430 ?StartActionBrowser@SMCC@@UAEXXZ 00428430 f studio.obj - 0001:00027460 ?StartListenerEasel@SMCC@@UAEXXZ 00428460 f studio.obj - 0001:00027490 ?GetFniSave@SMCC@@UAEHPAVFNI@@JJJPADPAVSTN@@@Z 00428490 f studio.obj - 0001:000274e0 ?PlayUISound@SMCC@@UAEXJJ@Z 004284e0 f studio.obj - 0001:00027520 ?StopUISound@SMCC@@UAEXXZ 00428520 f studio.obj - 0001:00027550 ?UpdateTitle@SMCC@@UAEXPAVSTN@@@Z 00428550 f studio.obj - 0001:00027580 ?EnableAccel@SMCC@@UAEXXZ 00428580 f studio.obj - 0001:000275b0 ?DisableAccel@SMCC@@UAEXXZ 004285b0 f studio.obj - 0001:000275e0 ?GetStn@SMCC@@UAEXJPAVSTN@@@Z 004285e0 f studio.obj - 0001:00027620 ?SetSndFrame@SMCC@@UAEXH@Z 00428620 f studio.obj - 0001:00027650 ?FMinimized@SMCC@@UAEHXZ 00428650 f studio.obj - 0001:00027680 ?FMinimized@APP@@QAEHXZ 00428680 f studio.obj - 0001:000276b0 ?FWouldBe@TGOB@@SGHJ@Z 004286b0 f tgob.obj - 0001:000276f0 ?FIs@TGOB@@UAEHJ@Z 004286f0 f tgob.obj - 0001:00027720 ?Cls@TGOB@@UAEJXZ 00428720 f tgob.obj - 0001:00027750 ??0TGOB@@QAE@PAUGCB@@@Z 00428750 f tgob.obj - 0001:00027810 ?Draw@TGOB@@UAEXPAVGNV@@PAVRC@@@Z 00428810 f tgob.obj - 0001:00027b40 ?PtgobCreate@TGOB@@SGPAV1@JJJJ@Z 00428b40 f tgob.obj - 0001:00027d60 ?SetAlign@TGOB@@QAEXJJ@Z 00428d60 f tgob.obj - 0001:00027db0 ?MarkMem@TGOB@@UAEXXZ 00428db0 f tgob.obj - 0001:00027e00 ?AssertValid@TGOB@@QAEXK@Z 00428e00 f tgob.obj - 0001:00027e50 ??_GTGOB@@MAEPAXI@Z 00428e50 f tgob.obj - 0001:00027e50 ??_ETGOB@@MAEPAXI@Z 00428e50 f tgob.obj - 0001:00027ff0 ??1TGOB@@MAE@XZ 00428ff0 f tgob.obj - 0001:00028020 ?SetFont@TGOB@@QAEXJ@Z 00429020 f tgob.obj - 0001:00028070 ?FWouldBe@ESL@@SGHJ@Z 00429070 f esl.obj - 0001:000280b0 ?FIs@ESL@@UAEHJ@Z 004290b0 f esl.obj - 0001:000280e0 ?Cls@ESL@@UAEJXZ 004290e0 f esl.obj - 0001:00028110 ?FWouldBe@ESLT@@SGHJ@Z 00429110 f esl.obj - 0001:00028150 ?FIs@ESLT@@UAEHJ@Z 00429150 f esl.obj - 0001:00028180 ?Cls@ESLT@@UAEJXZ 00429180 f esl.obj - 0001:000281b0 ?FWouldBe@ESLA@@SGHJ@Z 004291b0 f esl.obj - 0001:000281f0 ?FIs@ESLA@@UAEHJ@Z 004291f0 f esl.obj - 0001:00028220 ?Cls@ESLA@@UAEJXZ 00429220 f esl.obj - 0001:00028250 ?FWouldBe@SNE@@SGHJ@Z 00429250 f esl.obj - 0001:00028290 ?FIs@SNE@@UAEHJ@Z 00429290 f esl.obj - 0001:000282c0 ?Cls@SNE@@UAEJXZ 004292c0 f esl.obj - 0001:000282f0 ?FWouldBe@ESLL@@SGHJ@Z 004292f0 f esl.obj - 0001:00028330 ?FIs@ESLL@@UAEHJ@Z 00429330 f esl.obj - 0001:00028360 ?Cls@ESLL@@UAEJXZ 00429360 f esl.obj - 0001:00028390 ?FWouldBe@LSND@@SGHJ@Z 00429390 f esl.obj - 0001:000283d0 ?FIs@LSND@@UAEHJ@Z 004293d0 f esl.obj - 0001:00028400 ?Cls@LSND@@UAEJXZ 00429400 f esl.obj - 0001:00028430 ?FWouldBe@ESLR@@SGHJ@Z 00429430 f esl.obj - 0001:00028470 ?FIs@ESLR@@UAEHJ@Z 00429470 f esl.obj - 0001:000284a0 ?Cls@ESLR@@UAEJXZ 004294a0 f esl.obj - 0001:000284d0 ?FBuildGcb@@YGHPAUGCB@@JJ@Z 004294d0 f esl.obj - 0001:000285a0 ?SetGokState@@YGXJJ@Z 004295a0 f esl.obj - 0001:00028620 ?_FInit@ESL@@IAEHPAVRCA@@J@Z 00429620 f esl.obj - 0001:00028720 ??1ESL@@UAE@XZ 00429720 f esl.obj - 0001:00028790 ?FCmdDismiss@ESL@@QAEHPAUCMD@@@Z 00429790 f esl.obj - 0001:00028830 ?AssertValid@ESL@@QAEXK@Z 00429830 f esl.obj - 0001:00028860 ?MarkMem@ESL@@UAEXXZ 00429860 f esl.obj - 0001:000288b0 ?PesltNew@ESLT@@SGPAV1@PAVRCA@@PAVMVIE@@PAVACTR@@PAVSTN@@JPAUTAG@@@Z 004298b0 f esl.obj - 0001:00028b60 ?_FInit@ESLT@@IAEHPAVRCA@@JPAVMVIE@@PAVACTR@@PAVSTN@@JPAUTAG@@@Z 00429b60 f esl.obj - 0001:000293c0 ??1ESLT@@UAE@XZ 0042a3c0 f esl.obj - 0001:00029540 ?FCmdRotate@ESLT@@QAEHPAUCMD@@@Z 0042a540 f esl.obj - 0001:000295b0 ?FCmdTransmogrify@ESLT@@QAEHPAUCMD@@@Z 0042a5b0 f esl.obj - 0001:00029820 ?FCmdStartPopup@ESLT@@QAEHPAUCMD@@@Z 0042a820 f esl.obj - 0001:00029a00 ?FCmdSetFont@ESLT@@QAEHPAUCMD@@@Z 0042aa00 f esl.obj - 0001:00029ae0 ?FCmdSetShape@ESLT@@QAEHPAUCMD@@@Z 0042aae0 f esl.obj - 0001:00029b80 ?FCmdSetColor@ESLT@@QAEHPAUCMD@@@Z 0042ab80 f esl.obj - 0001:00029c30 ?FTextChanged@ESLT@@QAEHPAVSTN@@@Z 0042ac30 f esl.obj - 0001:00029cf0 ?_FAcceptChanges@ESLT@@MAEHPAH@Z 0042acf0 f esl.obj - 0001:0002a280 ?AssertValid@ESLT@@QAEXK@Z 0042b280 f esl.obj - 0001:0002a640 ?FEqual@STN@@QAEHPAV1@@Z 0042b640 f esl.obj - 0001:0002a680 ?MarkMem@ESLT@@UAEXXZ 0042b680 f esl.obj - 0001:0002a780 ?PsneNew@SNE@@SGPAV1@PAVEDPAR@@PAVESLT@@PAVSTN@@@Z 0042b780 f esl.obj - 0001:0002a910 ?FReplace@SNE@@UAEHPADJJJJ@Z 0042b910 f esl.obj - 0001:0002aba0 ?AssertValid@SNE@@QAEXK@Z 0042bba0 f esl.obj - 0001:0002ac40 ?MarkMem@SNE@@UAEXXZ 0042bc40 f esl.obj - 0001:0002ac90 ?PeslaNew@ESLA@@SGPAV1@PAVRCA@@PAVMVIE@@PAVACTR@@@Z 0042bc90 f esl.obj - 0001:0002af00 ?_FInit@ESLA@@IAEHPAVRCA@@JPAVMVIE@@PAVACTR@@@Z 0042bf00 f esl.obj - 0001:0002b380 ??1ESLA@@UAE@XZ 0042c380 f esl.obj - 0001:0002b3e0 ?FCmdRotate@ESLA@@QAEHPAUCMD@@@Z 0042c3e0 f esl.obj - 0001:0002b450 ?FCmdTool@ESLA@@QAEHPAUCMD@@@Z 0042c450 f esl.obj - 0001:0002b530 ?_FAcceptChanges@ESLA@@MAEHPAH@Z 0042c530 f esl.obj - 0001:0002b820 ?AssertValid@ESLA@@QAEXK@Z 0042c820 f esl.obj - 0001:0002b9f0 ?MarkMem@ESLA@@UAEXXZ 0042c9f0 f esl.obj - 0001:0002ba40 ?PesllNew@ESLL@@SGPAV1@PAVRCA@@PAVMVIE@@PAVACTR@@@Z 0042ca40 f esl.obj - 0001:0002bdc0 ?_FInit@ESLL@@IAEHPAVRCA@@JPAVMVIE@@PAVACTR@@@Z 0042cdc0 f esl.obj - 0001:0002c2a0 ?FValidSnd@LSND@@QAEHXZ 0042d2a0 f esl.obj - 0001:0002c3c0 ??1ESLL@@UAE@XZ 0042d3c0 f esl.obj - 0001:0002c460 ?FCmdVlm@ESLL@@QAEHPAUCMD@@@Z 0042d460 f esl.obj - 0001:0002c5b0 ?FCmdPlay@ESLL@@QAEHPAUCMD@@@Z 0042d5b0 f esl.obj - 0001:0002c730 ?_FAcceptChanges@ESLL@@MAEHPAH@Z 0042d730 f esl.obj - 0001:0002ca80 ?AssertValid@ESLL@@QAEXK@Z 0042da80 f esl.obj - 0001:0002cab0 ?MarkMem@ESLL@@UAEXXZ 0042dab0 f esl.obj - 0001:0002cbb0 ??0EDPAR@@QAE@XZ 0042dbb0 f esl.obj - 0001:0002cbf0 ?FInit@LSND@@QAEHJJJJPAPAVGL@@JHJH@Z 0042dbf0 f esl.obj - 0001:0002cf60 ?Play@LSND@@QAEXXZ 0042df60 f esl.obj - 0001:0002d0d0 ?FChanged@LSND@@QAEHPAJPAH@Z 0042e0d0 f esl.obj - 0001:0002d1a0 ??1LSND@@UAE@XZ 0042e1a0 f esl.obj - 0001:0002d230 ?AssertValid@LSND@@QAEXK@Z 0042e230 f esl.obj - 0001:0002d2a0 ?MarkMem@LSND@@UAEXXZ 0042e2a0 f esl.obj - 0001:0002d310 ?PeslrNew@ESLR@@SGPAV1@PAVRCA@@PAVMVIE@@HPAVSTN@@@Z 0042e310 f esl.obj - 0001:0002d590 ?_FInit@ESLR@@IAEHPAVRCA@@JPAVMVIE@@HPAVSTN@@@Z 0042e590 f esl.obj - 0001:0002d980 ??1ESLR@@UAE@XZ 0042e980 f esl.obj - 0001:0002da20 ?_UpdateMeter@ESLR@@IAEXXZ 0042ea20 f esl.obj - 0001:0002db30 ?FCmdRecord@ESLR@@QAEHPAUCMD@@@Z 0042eb30 f esl.obj - 0001:0002dc80 ?FCmdUpdateMeter@ESLR@@QAEHPAUCMD@@@Z 0042ec80 f esl.obj - 0001:0002ddc0 ?FCmdPlay@ESLR@@QAEHPAUCMD@@@Z 0042edc0 f esl.obj - 0001:0002df40 ?_FAcceptChanges@ESLR@@MAEHPAH@Z 0042ef40 f esl.obj - 0001:0002e340 ?Pstn@MSND@@QAEPAVSTN@@XZ 0042f340 f esl.obj - 0001:0002e390 ?AssertValid@ESLR@@QAEXK@Z 0042f390 f esl.obj - 0001:0002e430 ?MarkMem@ESLR@@UAEXXZ 0042f430 f esl.obj - 0001:0002e4c0 ?FHaveSound@SREC@@QAEHXZ 0042f4c0 f esl.obj - 0001:0002e540 ?Arid@ACTR@@QAEJXZ 0042f540 f esl.obj - 0001:0002e590 ??_EESL@@UAEPAXI@Z 0042f590 f esl.obj - 0001:0002e590 ??_GESL@@UAEPAXI@Z 0042f590 f esl.obj - 0001:0002e5d0 ??_EESLT@@UAEPAXI@Z 0042f5d0 f esl.obj - 0001:0002e5d0 ??_GESLT@@UAEPAXI@Z 0042f5d0 f esl.obj - 0001:0002e610 ??_EESLA@@UAEPAXI@Z 0042f610 f esl.obj - 0001:0002e610 ??_GESLA@@UAEPAXI@Z 0042f610 f esl.obj - 0001:0002e650 ??_GLSND@@UAEPAXI@Z 0042f650 f esl.obj - 0001:0002e650 ??_ELSND@@UAEPAXI@Z 0042f650 f esl.obj - 0001:0002e690 ??_EESLL@@UAEPAXI@Z 0042f690 f esl.obj - 0001:0002e690 ??_GESLL@@UAEPAXI@Z 0042f690 f esl.obj - 0001:0002e6d0 ??_EESLR@@UAEPAXI@Z 0042f6d0 f esl.obj - 0001:0002e6d0 ??_GESLR@@UAEPAXI@Z 0042f6d0 f esl.obj - 0001:0002e710 ?Cbset@APE@@QAEJXZ 0042f710 f esl.obj - 0001:0002e740 ?Cbset@BODY@@QAEJXZ 0042f740 f esl.obj - 0001:0002e770 ?Pcmm@ESL@@MAEPAUCMM@CMH@@XZ 0042f770 f esl.obj - 0001:0002e7a0 ??0ESL@@IAE@PAUGCB@@@Z 0042f7a0 f esl.obj - 0001:0002e7e0 ?_FAcceptChanges@ESL@@MAEHPAH@Z 0042f7e0 f esl.obj - 0001:0002e810 ??0SNE@@IAE@PAVEDPAR@@@Z 0042f810 f esl.obj - 0001:0002e850 ??_GSNE@@UAEPAXI@Z 0042f850 f esl.obj - 0001:0002e850 ??_ESNE@@UAEPAXI@Z 0042f850 f esl.obj - 0001:0002e890 ??1SNE@@UAE@XZ 0042f890 f esl.obj - 0001:0002e8c0 ??1EDSL@@UAE@XZ 0042f8c0 f esl.obj - 0001:0002e8f0 ??1EDPL@@UAE@XZ 0042f8f0 f esl.obj - 0001:0002e920 ?Pcmm@ESLT@@MAEPAUCMM@CMH@@XZ 0042f920 f esl.obj - 0001:0002e950 ??0ESLT@@IAE@PAUGCB@@@Z 0042f950 f esl.obj - 0001:0002e990 ?Pcmm@ESLA@@MAEPAUCMM@CMH@@XZ 0042f990 f esl.obj - 0001:0002e9c0 ??0ESLA@@IAE@PAUGCB@@@Z 0042f9c0 f esl.obj - 0001:0002ea00 ?SetVlmNew@LSND@@QAEXJ@Z 0042fa00 f esl.obj - 0001:0002ea30 ?Pcmm@ESLL@@MAEPAUCMM@CMH@@XZ 0042fa30 f esl.obj - 0001:0002ea60 ??0ESLL@@IAE@PAUGCB@@@Z 0042fa60 f esl.obj - 0001:0002eae0 ??0LSND@@QAE@XZ 0042fae0 f esl.obj - 0001:0002eb20 ?Pcmm@ESLR@@MAEPAUCMM@CMH@@XZ 0042fb20 f esl.obj - 0001:0002eb50 ??0ESLR@@IAE@PAUGCB@@@Z 0042fb50 f esl.obj - 0001:0002eba0 ?FWouldBe@APE@@SGHJ@Z 0042fba0 f ape.obj - 0001:0002ebe0 ?FIs@APE@@UAEHJ@Z 0042fbe0 f ape.obj - 0001:0002ec10 ?Cls@APE@@UAEJXZ 0042fc10 f ape.obj - 0001:0002ec40 ?PapeNew@APE@@SGPAV1@PAUGCB@@PAVTMPL@@PAVCOST@@JHPAVRCA@@@Z 0042fc40 f ape.obj - 0001:0002edc0 ?_FInit@APE@@IAEHPAVTMPL@@PAVCOST@@JHPAVRCA@@@Z 0042fdc0 f ape.obj - 0001:0002f1f0 ??1APE@@UAE@XZ 004301f0 f ape.obj - 0001:0002f360 ?SetToolIncCmtl@APE@@QAEXXZ 00430360 f ape.obj - 0001:0002f3f0 ?SetToolIncAccessory@APE@@QAEXXZ 004303f0 f ape.obj - 0001:0002f480 ?FSetAction@APE@@QAEHJ@Z 00430480 f ape.obj - 0001:0002f520 ?FCmdNextCel@APE@@QAEHPAUCMD@@@Z 00430520 f ape.obj - 0001:0002f5c0 ?FDisplayCel@APE@@QAEHJ@Z 004305c0 f ape.obj - 0001:0002f650 ?SetCycleCels@APE@@QAEXH@Z 00430650 f ape.obj - 0001:0002f6b0 ?_InitView@APE@@IAEXXZ 004306b0 f ape.obj - 0001:0002f780 ?SetCustomView@APE@@QAEXGGG@Z 00430780 f ape.obj - 0001:0002f880 ?ChangeView@APE@@QAEXXZ 00430880 f ape.obj - 0001:0002fa00 ?_SetScale@APE@@IAEXXZ 00430a00 f ape.obj - 0001:0002fc00 ?_UpdateView@APE@@IAEXXZ 00430c00 f ape.obj - 0001:0002fc70 ?Draw@APE@@UAEXPAVGNV@@PAVRC@@@Z 00430c70 f ape.obj - 0001:0002fd40 ?FCmdMouseMove@APE@@UAEHPAUCMD_MOUSE@@@Z 00430d40 f ape.obj - 0001:0002fec0 ?FCmdTrackMouse@APE@@UAEHPAUCMD_MOUSE@@@Z 00430ec0 f ape.obj - 0001:00030190 ?_FApplyGms@APE@@IAEHPAUGMS@@J@Z 00431190 f ape.obj - 0001:00030310 ?_FIncCmtl@APE@@IAEHPAUGMS@@JH@Z 00431310 f ape.obj - 0001:00030590 ?_CmidNext@APE@@IAEJJJH@Z 00431590 f ape.obj - 0001:000306a0 ?FChangeTdt@APE@@QAEHPAVSTN@@JPAUTAG@@@Z 004316a0 f ape.obj - 0001:00030910 ?FSetTdtMtrl@APE@@QAEHPAUTAG@@@Z 00431910 f ape.obj - 0001:00030ab0 ?FGetTdtMtrlCno@APE@@QAEHPAK@Z 00431ab0 f ape.obj - 0001:00030ba0 ?GetTdtInfo@APE@@QAEXPAVSTN@@PAJPAUTAG@@@Z 00431ba0 f ape.obj - 0001:00030c60 ?FGetMaterial@APE@@QAEHJPAHPAJPAUTAG@@@Z 00431c60 f ape.obj - 0001:00030d40 ?AssertValid@APE@@QAEXK@Z 00431d40 f ape.obj - 0001:00030f90 ?MarkMem@APE@@UAEXXZ 00431f90 f ape.obj - 0001:000310a0 ?Pcrf@BACO@@QAEPAVCRF@@XZ 004320a0 f ape.obj - 0001:000310d0 ??_GAPE@@UAEPAXI@Z 004320d0 f ape.obj - 0001:000310d0 ??_EAPE@@UAEPAXI@Z 004320d0 f ape.obj - 0001:00031220 ?BrsHalf@@YGJJ@Z 00432220 f ape.obj - 0001:00031240 ?SetBwld@BODY@@QAEXPAVBWLD@@@Z 00432240 f ape.obj - 0001:000312c0 ?Pcmm@APE@@MAEPAUCMM@CMH@@XZ 004322c0 f ape.obj - 0001:000312f0 ??0APE@@IAE@PAUGCB@@@Z 004322f0 f ape.obj - 0001:00031340 ?FWouldBe@MP@@SGHJ@Z 00432340 f popup.obj - 0001:00031380 ?FIs@MP@@UAEHJ@Z 00432380 f popup.obj - 0001:000313b0 ?Cls@MP@@UAEJXZ 004323b0 f popup.obj - 0001:000313e0 ?FWouldBe@MPFNT@@SGHJ@Z 004323e0 f popup.obj - 0001:00031420 ?FIs@MPFNT@@UAEHJ@Z 00432420 f popup.obj - 0001:00031450 ?Cls@MPFNT@@UAEJXZ 00432450 f popup.obj - 0001:00031480 ?PmpNew@MP@@SGPAV1@JJPAVRCA@@PAUCMD@@W4BWS@@JJUCKI@@KPAVCMH@@JH@Z 00432480 f popup.obj - 0001:000318e0 ?_ApplySelection@MP@@MAEXJJ@Z 004328e0 f popup.obj - 0001:000319c0 ?_IthumFromThum@MP@@MAEJJJ@Z 004329c0 f popup.obj - 0001:00031ad0 ?FCmdSelIdle@MP@@UAEHPAUCMD@@@Z 00432ad0 f popup.obj - 0001:00031b40 ?AssertValid@MP@@QAEXK@Z 00432b40 f popup.obj - 0001:00031be0 ?MarkMem@MP@@UAEXXZ 00432be0 f popup.obj - 0001:00031c50 ?PmpfntNew@MPFNT@@SGPAV1@PAVRCA@@JJPAUCMD@@JPAVGST@@@Z 00432c50 f popup.obj - 0001:00031fb0 ?_FSetThumFrame@MPFNT@@MAEHJPAVGOB@@@Z 00432fb0 f popup.obj - 0001:000320b0 ?_ApplySelection@MPFNT@@MAEXJJ@Z 004330b0 f popup.obj - 0001:00032140 ?_AdjustRc@MPFNT@@IAEXJJ@Z 00433140 f popup.obj - 0001:000322d0 ?FCmdSelIdle@MPFNT@@UAEHPAUCMD@@@Z 004332d0 f popup.obj - 0001:00032340 ?AssertValid@MPFNT@@QAEXK@Z 00433340 f popup.obj - 0001:00032370 ?MarkMem@MPFNT@@UAEXXZ 00433370 f popup.obj - 0001:000323e0 ??_9@$BHE@A 004333e0 f popup.obj - 0001:00032500 ?PgobPar@GOB@@QAEPAV1@XZ 00433500 f popup.obj - 0001:00032580 ??0MP@@IAE@PAUGCB@@@Z 00433580 f popup.obj - 0001:000325c0 ??_GMP@@UAEPAXI@Z 004335c0 f popup.obj - 0001:000325c0 ??_EMP@@UAEPAXI@Z 004335c0 f popup.obj - 0001:00032600 ??1MP@@UAE@XZ 00433600 f popup.obj - 0001:00032630 ?Pcmm@MP@@MAEPAUCMM@CMH@@XZ 00433630 f popup.obj - 0001:00032660 ??0MPFNT@@IAE@PAUGCB@@@Z 00433660 f popup.obj - 0001:000326a0 ??_EMPFNT@@UAEPAXI@Z 004336a0 f popup.obj - 0001:000326a0 ??_GMPFNT@@UAEPAXI@Z 004336a0 f popup.obj - 0001:000326e0 ??1MPFNT@@UAE@XZ 004336e0 f popup.obj - 0001:00032710 ?Pcmm@MPFNT@@MAEPAUCMM@CMH@@XZ 00433710 f popup.obj - 0001:00032740 ?Pstdio@APP@@QAEPAVSTDIO@@XZ 00433740 f popup.obj - 0001:00032770 ?FWouldBe@TATR@@SGHJ@Z 00433770 f tatr.obj - 0001:000327b0 ?FIs@TATR@@UAEHJ@Z 004337b0 f tatr.obj - 0001:000327e0 ?Cls@TATR@@UAEJXZ 004337e0 f tatr.obj - 0001:00032810 ?PtatrNew@TATR@@SGPAV1@J@Z 00433810 f tatr.obj - 0001:00032910 ?_FInit@TATR@@IAEHJ@Z 00433910 f tatr.obj - 0001:00032990 ??1TATR@@UAE@XZ 00433990 f tatr.obj - 0001:00032a30 ?FCmdLoad@TATR@@QAEHPAUCMD@@@Z 00433a30 f tatr.obj - 0001:00032e40 ?FCmdPlay@TATR@@QAEHPAUCMD@@@Z 00433e40 f tatr.obj - 0001:00032f20 ?FCmdStop@TATR@@QAEHPAUCMD@@@Z 00433f20 f tatr.obj - 0001:00032fb0 ?FCmdRewind@TATR@@QAEHPAUCMD@@@Z 00433fb0 f tatr.obj - 0001:00033070 ?AssertValid@TATR@@QAEXK@Z 00434070 f tatr.obj - 0001:00033110 ?MarkMem@TATR@@UAEXXZ 00434110 f tatr.obj - 0001:000331a0 ??_GTATR@@UAEPAXI@Z 004341a0 f tatr.obj - 0001:000331a0 ??_ETATR@@UAEPAXI@Z 004341a0 f tatr.obj - 0001:00033340 ?Pcmm@TATR@@MAEPAUCMM@CMH@@XZ 00434340 f tatr.obj - 0001:00033370 ??0TATR@@IAE@J@Z 00434370 f tatr.obj - 0001:000333b0 ?FPortDisplayWithIds@@YGHPAVFNI@@HJJJPADPAVSTN@@0KK@Z 004343b0 f portf.obj - 0001:00033630 ?FPortGetFniOpen@@YGHPAVFNI@@PAD10KK@Z 00434630 f portf.obj - 0001:00033930 ?FPortGetFniSave@@YGHPAVFNI@@PAD11PAVSTN@@KK@Z 00434930 f portf.obj - 0001:00033f60 ?OpenHookProc@@YGIPAUHWND__@@IIJ@Z 00434f60 f portf.obj - 0001:00035190 ??0RC@@QAE@AAUtagRECT@@@Z 00436190 f portf.obj - 0001:000351c0 ?RepaintPortfolio@@YGXPAUHWND__@@@Z 004361c0 f portf.obj - 0001:00035870 ?OpenPreview@@YGXPAUHWND__@@PAVGNV@@PAUtagRECT@@@Z 00436870 f portf.obj - 0001:00035be0 ?SubClassBtnProc@@YGJPAUHWND__@@IIJ@Z 00436be0 f portf.obj - 0001:00035c50 ?SubClassPreviewProc@@YGJPAUHWND__@@IIJ@Z 00436c50 f portf.obj - 0001:00035f50 ?SubClassDlgProc@@YGJPAUHWND__@@IIJ@Z 00436f50 f portf.obj - 0001:000361b0 ??1ERS@@UAE@XZ 004371b0 f portf.obj - 0001:000361e0 ??1MUTX@@QAE@XZ 004371e0 f portf.obj - 0001:00036260 ?SetFInPortfolio@APP@@QAEXH@Z 00437260 f portf.obj - 0001:000362b0 ?GetFniUser@APP@@QAEXPAVFNI@@@Z 004372b0 f portf.obj - 0001:000362e0 _wHaveWaveDevice@4 004372e0 f mminstal.obj - 0001:000363d0 _wHaveACM@0 004373d0 f mminstal.obj - 0001:00036430 _wHaveACMCodec@4 00437430 f mminstal.obj - 0001:000364b0 _wHaveICMCodec@4 004374b0 f mminstal.obj - 0001:00036500 _wHaveMCI@4 00437500 f mminstal.obj - 0001:00036580 ?fRunningWin95@@YGHXZ 00437580 f mminstal.obj - 0001:000365d0 _wInstallComp@4 004375d0 f mminstal.obj - 0001:00036960 ?FWouldBe@USAC@@SGHJ@Z 00437960 f utilglob.obj - 0001:000369a0 ?FIs@USAC@@UAEHJ@Z 004379a0 f utilglob.obj - 0001:000369d0 ?Cls@USAC@@UAEJXZ 004379d0 f utilglob.obj - 0001:00036b10 ??1RND@@UAE@XZ 00437b10 f utilglob.obj - 0001:00036b40 ??1KCDC@@UAE@XZ 00437b40 f utilglob.obj - 0001:00036b70 ??0KCDC@@QAE@XZ 00437b70 f utilglob.obj - 0001:00036bb0 ??1USAC@@UAE@XZ 00437bb0 f utilglob.obj - 0001:00036c00 ??1CODC@@UAE@XZ 00437c00 f utilglob.obj - 0001:00036c30 ??_EKCDC@@UAEPAXI@Z 00437c30 f utilglob.obj - 0001:00036c30 ??_GKCDC@@UAEPAXI@Z 00437c30 f utilglob.obj - 0001:00036c70 ??0CODC@@QAE@XZ 00437c70 f utilglob.obj - 0001:00036cb0 ??_ECODC@@UAEPAXI@Z 00437cb0 f utilglob.obj - 0001:00036cb0 ??_GCODC@@UAEPAXI@Z 00437cb0 f utilglob.obj - 0001:00036cf0 ??0MUTX@@QAE@XZ 00437cf0 f utilglob.obj - 0001:00036d20 ?FCanDo@KCDC@@UAEHHJ@Z 00437d20 f utilglob.obj - 0001:00036d70 ?MarkUtilMem@@YGXXZ 00437d70 f util.obj - 0001:00036ec0 ?PfilNext@FIL@@QAEPAV1@XZ 00437ec0 f util.obj - 0001:00036ef0 ?PfilFirst@FIL@@SGPAV1@XZ 00437ef0 f util.obj - 0001:00036f10 ?PcflNext@CFL@@QAEPAV1@XZ 00437f10 f util.obj - 0001:00036f40 ?FWouldBe@BLL@@SGHJ@Z 00437f40 f base.obj - 0001:00036f80 ?FIs@BLL@@UAEHJ@Z 00437f80 f base.obj - 0001:00036fb0 ?Cls@BLL@@UAEJXZ 00437fb0 f base.obj - 0001:00036fe0 ?Cls@BASE@@UAEJXZ 00437fe0 f base.obj - 0001:00037010 ?FIs@BASE@@UAEHJ@Z 00438010 f base.obj - 0001:00037050 ?FWouldBe@BASE@@SGHJ@Z 00438050 f base.obj - 0001:00037080 ??0BASE@@QAE@XZ 00438080 f base.obj - 0001:00037160 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00438160 f base.obj - 0001:00037180 ?_Enter@@YGXXZ 00438180 f base.obj - 0001:000371a0 ?_Leave@@YGXXZ 004381a0 f base.obj - 0001:000371c0 ?AddRef@BASE@@UAEXXZ 004381c0 f base.obj - 0001:00037250 ?Release@BASE@@UAEXXZ 00438250 f base.obj - 0001:00037300 ??2BASE@@SGPAXIPADJ@Z 00438300 f base.obj - 0001:000374d0 ??3BASE@@SGXPAX@Z 004384d0 f base.obj - 0001:00037550 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00438550 f base.obj - 0001:00037570 ?AssertValid@BASE@@QAEXK@Z 00438570 f base.obj - 0001:000376a0 ?MarkMemStub@BASE@@QAEXXZ 004386a0 f base.obj - 0001:00037780 ?MarkMem@BASE@@UAEXXZ 00438780 f base.obj - 0001:000377d0 ?_AssertDoi@@YGXPAUDOI@@H@Z 004387d0 f base.obj - 0001:000379c0 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 004389c0 f base.obj - 0001:00037a40 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00438a40 f base.obj - 0001:00037ac0 ?AssertUnmarkedObjs@@YGXXZ 00438ac0 f base.obj - 0001:00037d90 ?UnmarkAllObjs@@YGXXZ 00438d90 f base.obj - 0001:00037ea0 ??0BLL@@QAE@XZ 00438ea0 f base.obj - 0001:00037ef0 ??1BLL@@UAE@XZ 00438ef0 f base.obj - 0001:00037f40 ?_Attach@BLL@@IAEXPAX@Z 00438f40 f base.obj - 0001:000380e0 ?AssertValid@BLL@@QAEXK@Z 004390e0 f base.obj - 0001:000381e0 ??_GBLL@@UAEPAXI@Z 004391e0 f base.obj - 0001:000381e0 ??_EBLL@@UAEPAXI@Z 004391e0 f base.obj - 0001:00038220 ?PvAddBv@@YGPAXPAXJ@Z 00439220 f base.obj - 0001:00038240 ?PvSubBv@@YGPAXPAXJ@Z 00439240 f base.obj - 0001:00038260 ?Enter@MUTX@@QAEXXZ 00439260 f base.obj - 0001:00038290 ?Leave@MUTX@@QAEXXZ 00439290 f base.obj - 0001:000382c0 ?LwThreadCur@@YGJXZ 004392c0 f base.obj - 0001:000382e0 ?FillPb@@YGXPAXJE@Z 004392e0 f utilcopy.obj - 0001:00038340 ?ClearPb@@YGXPAXJ@Z 00439340 f utilcopy.obj - 0001:00038390 ?ReversePb@@YGXPAXJ@Z 00439390 f utilcopy.obj - 0001:000383f0 ?ReverseRglw@@YGXPAXJ@Z 004393f0 f utilcopy.obj - 0001:00038450 ?SwapBlocks@@YGXPAXJJ@Z 00439450 f utilcopy.obj - 0001:000384d0 ?SwapPb@@YGXPAX0J@Z 004394d0 f utilcopy.obj - 0001:00038570 ?MoveElement@@YGXPAXJJJ@Z 00439570 f utilcopy.obj - 0001:00038680 ?FEqualRgb@@YGHPAX0J@Z 00439680 f utilcopy.obj - 0001:00038700 ?CbEqualRgb@@YGJPAX0J@Z 00439700 f utilcopy.obj - 0001:00038790 ?FcmpCompareRgb@@YGKPAX0J@Z 00439790 f utilcopy.obj - 0001:00038840 ?CopyPb@@YGXPAX0J@Z 00439840 f utilcopy.obj - 0001:000388e0 ?BltPb@@YGXPAX0J@Z 004398e0 f utilcopy.obj - 0001:000389c0 ?FWouldBe@ERS@@SGHJ@Z 004399c0 f utilerro.obj - 0001:00038a00 ?FIs@ERS@@UAEHJ@Z 00439a00 f utilerro.obj - 0001:00038a30 ?Cls@ERS@@UAEJXZ 00439a30 f utilerro.obj - 0001:00038a60 ??0ERS@@QAE@XZ 00439a60 f utilerro.obj - 0001:00038ab0 ?Push@ERS@@UAEXJPADJ@Z 00439ab0 f utilerro.obj - 0001:00038c70 ?FPop@ERS@@UAEHPAJ@Z 00439c70 f utilerro.obj - 0001:00038d70 ?Clear@ERS@@UAEXXZ 00439d70 f utilerro.obj - 0001:00038de0 ?Cerc@ERS@@UAEJXZ 00439de0 f utilerro.obj - 0001:00038e30 ?FIn@ERS@@UAEHJ@Z 00439e30 f utilerro.obj - 0001:00038f00 ?ErcGet@ERS@@UAEJJ@Z 00439f00 f utilerro.obj - 0001:00038fa0 ?Flush@ERS@@UAEXJ@Z 00439fa0 f utilerro.obj - 0001:00039090 ?AssertValid@ERS@@QAEXK@Z 0043a090 f utilerro.obj - 0001:00039130 ??_EERS@@UAEPAXI@Z 0043a130 f utilerro.obj - 0001:00039130 ??_GERS@@UAEPAXI@Z 0043a130 f utilerro.obj - 0001:00039170 ?LwGcd@@YGJJJ@Z 0043a170 f utilint.obj - 0001:000391a0 ?LuGcd@@YGKKK@Z 0043a1a0 f utilint.obj - 0001:00039230 ?SortLw@@YGXPAJ0@Z 0043a230 f utilint.obj - 0001:00039280 ?LuMulDiv@@YGKKKK@Z 0043a280 f utilint.obj - 0001:000392e0 ?MulLu@@YGXKKPAK0@Z 0043a2e0 f utilint.obj - 0001:00039310 ?LwMulDivAway@@YGJJJJ@Z 0043a310 f utilint.obj - 0001:000393a0 ?LwDivAway@@YGJJJ@Z 0043a3a0 f utilint.obj - 0001:00039450 ?LwRoundAway@@YGJJJ@Z 0043a450 f utilint.obj - 0001:000394e0 ?LwRoundToward@@YGJJJ@Z 0043a4e0 f utilint.obj - 0001:00039550 ?LwRoundClosest@@YGJJJ@Z 0043a550 f utilint.obj - 0001:000395f0 ?FAdjustIv@@YGHPAJJJJ@Z 0043a5f0 f utilint.obj - 0001:000396a0 ?LwMul@@YGJJJ@Z 0043a6a0 f utilint.obj - 0001:00039710 ?AssertIn@@YGXJJJ@Z 0043a710 f utilint.obj - 0001:00039790 ?SwapBytesBom@@YGXPAXK@Z 0043a790 f utilint.obj - 0001:00039870 ?SwapBytesRgsw@@YGXPAXJ@Z 0043a870 f utilint.obj - 0001:00039900 ?LwMulDivMod@@YGJJJJPAJ@Z 0043a900 f utilint.obj - 0001:00039960 ?SwapBytesRglw@@YGXPAXJ@Z 0043a960 f utilint.obj - 0001:00039a10 ?AssertBomRglw@@YGXKJ@Z 0043aa10 f utilint.obj - 0001:00039ad0 ?AssertBomRgsw@@YGXKJ@Z 0043aad0 f utilint.obj - 0001:00039b90 ??BPT@@QAE?AUtagPOINT@@XZ 0043ab90 f utilint.obj - 0001:00039bf0 ?SwTruncLw@@YGFJ@Z 0043abf0 f utilint.obj - 0001:00039c40 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 0043ac40 f utilint.obj - 0001:00039c90 ?Map@PT@@QAEXPAVRC@@0@Z 0043ac90 f utilint.obj - 0001:00039e70 ?Transform@PT@@QAEXK@Z 0043ae70 f utilint.obj - 0001:00039ef0 ??8RC@@QAEHAAV0@@Z 0043aef0 f utilint.obj - 0001:00039f90 ??9RC@@QAEHAAV0@@Z 0043af90 f utilint.obj - 0001:0003a040 ?Union@RC@@QAEXPAV1@0@Z 0043b040 f utilint.obj - 0001:0003a0b0 ?Union@RC@@QAEXPAV1@@Z 0043b0b0 f utilint.obj - 0001:0003a190 ?FIntersect@RC@@QAEHPAV1@0@Z 0043b190 f utilint.obj - 0001:0003a260 ?Zero@RC@@QAEXXZ 0043b260 f utilint.obj - 0001:0003a2c0 ?FEmpty@RC@@QAEHXZ 0043b2c0 f utilint.obj - 0001:0003a320 ?FIntersect@RC@@QAEHPAV1@@Z 0043b320 f utilint.obj - 0001:0003a3e0 ?Inset@RC@@QAEXJJ@Z 0043b3e0 f utilint.obj - 0001:0003a440 ?Map@RC@@QAEXPAV1@0@Z 0043b440 f utilint.obj - 0001:0003a690 ?Transform@RC@@QAEXK@Z 0043b690 f utilint.obj - 0001:0003a760 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 0043b760 f utilint.obj - 0001:0003a7d0 ?Offset@RC@@QAEXJJ@Z 0043b7d0 f utilint.obj - 0001:0003a820 ?OffsetToOrigin@RC@@QAEXXZ 0043b820 f utilint.obj - 0001:0003a880 ?CenterOnRc@RC@@QAEXPAV1@@Z 0043b880 f utilint.obj - 0001:0003a920 ?FPtIn@RC@@QAEHJJ@Z 0043b920 f utilint.obj - 0001:0003a9a0 ?PinPt@RC@@QAEXPAVPT@@@Z 0043b9a0 f utilint.obj - 0001:0003aa20 ?PinToRc@RC@@QAEXPAV1@@Z 0043ba20 f utilint.obj - 0001:0003aad0 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 0043bad0 f utilint.obj - 0001:0003ab30 ??BRC@@QAE?AUtagRECT@@XZ 0043bb30 f utilint.obj - 0001:0003abc0 ?FContains@RC@@QAEHPAV1@@Z 0043bbc0 f utilint.obj - 0001:0003ac60 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 0043bc60 f utilint.obj - 0001:0003ada0 ?AssertValid@RAT@@QAEXK@Z 0043bda0 f utilint.obj - 0001:0003ae20 ??0USAC@@QAE@XZ 0043be20 f utilint.obj - 0001:0003ae80 ?TsCur@USAC@@QAEKXZ 0043be80 f utilint.obj - 0001:0003af10 ?LwHighLow@@YGJFF@Z 0043bf10 f utilint.obj - 0001:0003af40 ?SuHigh@@YGGJ@Z 0043bf40 f utilint.obj - 0001:0003af60 ?SuLow@@YGGJ@Z 0043bf60 f utilint.obj - 0001:0003af80 ?Scale@USAC@@QAEXK@Z 0043bf80 f utilint.obj - 0001:0003b040 ?Set@DVER@@QAEXFF@Z 0043c040 f utilint.obj - 0001:0003b080 ?FReadable@DVER@@QAEHFF@Z 0043c080 f utilint.obj - 0001:0003b140 ??_GUSAC@@UAEPAXI@Z 0043c140 f utilint.obj - 0001:0003b140 ??_EUSAC@@UAEPAXI@Z 0043c140 f utilint.obj - 0001:0003b180 ?TsCurrentSystem@@YGKXZ 0043c180 f utilint.obj - 0001:0003b1a0 ?FFail@DMAGL@@QAEHXZ 0043c1a0 f utilmem.obj - 0001:0003b210 ?Allocate@DMAGL@@QAEXJ@Z 0043c210 f utilmem.obj - 0001:0003b2a0 ?Resize@DMAGL@@QAEXJ@Z 0043c2a0 f utilmem.obj - 0001:0003b300 ?Free@DMAGL@@QAEXJ@Z 0043c300 f utilmem.obj - 0001:0003b340 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 0043c340 f utilmem.obj - 0001:0003b690 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 0043c690 f utilmem.obj - 0001:0003baa0 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 0043caa0 f utilmem.obj - 0001:0003bb40 ?_LinkMbh@@YGXPAUMBH@@@Z 0043cb40 f utilmem.obj - 0001:0003bbe0 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 0043cbe0 f utilmem.obj - 0001:0003bd80 ?_AssertMbh@@YGXPAUMBH@@@Z 0043cd80 f utilmem.obj - 0001:0003bfc0 ?AssertPvAlloced@@YGXPAXJ@Z 0043cfc0 f utilmem.obj - 0001:0003c080 ?AssertUnmarkedMem@@YGXXZ 0043d080 f utilmem.obj - 0001:0003c170 ?UnmarkAllMem@@YGXXZ 0043d170 f utilmem.obj - 0001:0003c1f0 ?MarkPv@@YGXPAX@Z 0043d1f0 f utilmem.obj - 0001:0003c260 ?FWouldBe@RND@@SGHJ@Z 0043d260 f utilrnd.obj - 0001:0003c2a0 ?FIs@RND@@UAEHJ@Z 0043d2a0 f utilrnd.obj - 0001:0003c2d0 ?Cls@RND@@UAEJXZ 0043d2d0 f utilrnd.obj - 0001:0003c300 ?FWouldBe@SFL@@SGHJ@Z 0043d300 f utilrnd.obj - 0001:0003c340 ?FIs@SFL@@UAEHJ@Z 0043d340 f utilrnd.obj - 0001:0003c370 ?Cls@SFL@@UAEJXZ 0043d370 f utilrnd.obj - 0001:0003c3a0 ??0RND@@QAE@K@Z 0043d3a0 f utilrnd.obj - 0001:0003c430 ?LwNext@RND@@UAEJJ@Z 0043d430 f utilrnd.obj - 0001:0003c500 ??0SFL@@QAE@K@Z 0043d500 f utilrnd.obj - 0001:0003c590 ??1SFL@@UAE@XZ 0043d590 f utilrnd.obj - 0001:0003c600 ?AssertValid@SFL@@QAEXK@Z 0043d600 f utilrnd.obj - 0001:0003c6d0 ?MarkMem@SFL@@UAEXXZ 0043d6d0 f utilrnd.obj - 0001:0003c730 ?Shuffle@SFL@@QAEXJ@Z 0043d730 f utilrnd.obj - 0001:0003c840 ?ShuffleRglw@SFL@@QAEXJPAJ@Z 0043d840 f utilrnd.obj - 0001:0003c940 ?_ShuffleCore@SFL@@IAEXXZ 0043d940 f utilrnd.obj - 0001:0003ca30 ?_FEnsureHq@SFL@@IAEHJ@Z 0043da30 f utilrnd.obj - 0001:0003cbb0 ?LwNext@SFL@@UAEJJ@Z 0043dbb0 f utilrnd.obj - 0001:0003cd10 ??_GRND@@UAEPAXI@Z 0043dd10 f utilrnd.obj - 0001:0003cd10 ??_ERND@@UAEPAXI@Z 0043dd10 f utilrnd.obj - 0001:0003cd50 ??_GSFL@@UAEPAXI@Z 0043dd50 f utilrnd.obj - 0001:0003cd50 ??_ESFL@@UAEPAXI@Z 0043dd50 f utilrnd.obj - 0001:0003cd90 ??0STN@@QAE@AAV0@@Z 0043dd90 f utilstr.obj - 0001:0003ce50 ??4STN@@QAEAAV0@AAV0@@Z 0043de50 f utilstr.obj - 0001:0003cf40 ?SetRgch@STN@@QAEXPADJ@Z 0043df40 f utilstr.obj - 0001:0003d020 ?SetSzs@STN@@QAEXPAD@Z 0043e020 f utilstr.obj - 0001:0003d080 ?Delete@STN@@QAEXJJ@Z 0043e080 f utilstr.obj - 0001:0003d1e0 ?FAppendRgch@STN@@QAEHPADJ@Z 0043e1e0 f utilstr.obj - 0001:0003d2e0 ?FInsertRgch@STN@@QAEHJPADJ@Z 0043e2e0 f utilstr.obj - 0001:0003d490 ?FEqualRgch@STN@@QAEHPADJ@Z 0043e490 f utilstr.obj - 0001:0003d530 ?FEqualUserRgch@STN@@QAEHPADJK@Z 0043e530 f utilstr.obj - 0001:0003d5c0 ?CbData@STN@@QAEJXZ 0043e5c0 f utilstr.obj - 0001:0003d610 ?GetData@STN@@QAEXPAX@Z 0043e610 f utilstr.obj - 0001:0003d6a0 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 0043e6a0 f utilstr.obj - 0001:0003d800 ?FSetData@STN@@QAEHPAXJPAJ@Z 0043e800 f utilstr.obj - 0001:0003dcc0 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 0043ecc0 f utilstr.obj - 0001:0003e2f0 ?GetSzs@STN@@QAEXPAD@Z 0043f2f0 f utilstr.obj - 0001:0003e360 ?FFormat@STN@@QAAHPAV1@ZZ 0043f360 f utilstr.obj - 0001:0003e420 ?FFormatSz@STN@@QAAHPADZZ 0043f420 f utilstr.obj - 0001:0003e480 ?FFormatRgch@STN@@QAEHPADJPAK@Z 0043f480 f utilstr.obj - 0001:0003ece0 ?CbCharOsk@@YGJF@Z 0043fce0 f utilstr.obj - 0001:0003ed70 ?FGetLw@STN@@QAEHPAJJ@Z 0043fd70 f utilstr.obj - 0001:0003f040 ?AssertValid@STN@@QAEXK@Z 00440040 f utilstr.obj - 0001:0003f130 ?FValidSt@@YGHPAD@Z 00440130 f utilstr.obj - 0001:0003f1e0 ?PrgchSt@@YGPADPAD@Z 004401e0 f utilstr.obj - 0001:0003f200 ?CchSt@@YGJPAD@Z 00440200 f utilstr.obj - 0001:0003f230 ?CchSz@@YGJPAD@Z 00440230 f utilstr.obj - 0001:0003f2d0 ?FcmpCompareRgch@@YGKPADJ0J@Z 004402d0 f utilstr.obj - 0001:0003f410 ?FEqualUserRgch@@YGHPADJ0JK@Z 00440410 f utilstr.obj - 0001:0003f580 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00440580 f utilstr.obj - 0001:0003f690 ?UpperRgchs@@YGXPADJ@Z 00440690 f utilstr.obj - 0001:0003f750 ?LowerRgchs@@YGXPADJ@Z 00440750 f utilstr.obj - 0001:0003f810 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00440810 f utilstr.obj - 0001:0003f9c0 ?TranslateRgch@@YGXPADJFH@Z 004409c0 f utilstr.obj - 0001:0003fab0 ?GrfchFromCh@@YGKD@Z 00440ab0 f utilstr.obj - 0001:0003fbe0 ?AssertOsk@@YGXF@Z 00440be0 f utilstr.obj - 0001:0003fc90 ?AssertSt@@YGXPAD@Z 00440c90 f utilstr.obj - 0001:0003fce0 ?AssertSz@@YGXPAD@Z 00440ce0 f utilstr.obj - 0001:0003fd30 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00440d30 f memwin.obj - 0001:0003fe10 ?FResizePhq@@YGHPAPAXJKJ@Z 00440e10 f memwin.obj - 0001:0003ff40 ?FreePhq@@YGXPAPAX@Z 00440f40 f memwin.obj - 0001:0003fff0 ?CbOfHq@@YGJPAX@Z 00440ff0 f memwin.obj - 0001:00040030 ?QvFromHq@@YGPAXPAX@Z 00441030 f memwin.obj - 0001:00040050 ?PvLockHq@@YGPAXPAX@Z 00441050 f memwin.obj - 0001:000400d0 ?UnlockHq@@YGXPAX@Z 004410d0 f memwin.obj - 0001:00040150 ?AssertHq@@YGXPAX@Z 00441150 f memwin.obj - 0001:00040240 ?MarkHq@@YGXPAX@Z 00441240 f memwin.obj - 0001:00040280 ?AssertPvCb@@YGXPAXJ@Z 00441280 f memwin.obj - 0001:00040310 ?FWouldBe@APPB@@SGHJ@Z 00441310 f appb.obj - 0001:00040350 ?FIs@APPB@@UAEHJ@Z 00441350 f appb.obj - 0001:00040380 ?Cls@APPB@@UAEJXZ 00441380 f appb.obj - 0001:000403b0 ??0APPB@@QAE@XZ 004413b0 f appb.obj - 0001:00040470 ??1APPB@@UAE@XZ 00441470 f appb.obj - 0001:000404b0 ?Run@APPB@@UAEXKKJ@Z 004414b0 f appb.obj - 0001:00040530 ?Quit@APPB@@UAEXH@Z 00441530 f appb.obj - 0001:000405d0 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 004415d0 f appb.obj - 0001:00040680 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 00441680 f appb.obj - 0001:000407e0 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 004417e0 f appb.obj - 0001:00040900 ?RefreshCurs@APPB@@UAEXXZ 00441900 f appb.obj - 0001:000409b0 ?BeginLongOp@APPB@@UAEXXZ 004419b0 f appb.obj - 0001:00040a20 ?EndLongOp@APPB@@UAEXH@Z 00441a20 f appb.obj - 0001:00040ac0 ?GrfcustCur@APPB@@UAEKH@Z 00441ac0 f appb.obj - 0001:00040b90 ?ModifyGrfcust@APPB@@UAEXKK@Z 00441b90 f appb.obj - 0001:00040c00 ?HideCurs@APPB@@UAEXXZ 00441c00 f appb.obj - 0001:00040c50 ?ShowCurs@APPB@@UAEXXZ 00441c50 f appb.obj - 0001:00040ca0 ?PositionCurs@APPB@@UAEXJJ@Z 00441ca0 f appb.obj - 0001:00040d00 ?OnnDefVariable@APPB@@UAEJXZ 00441d00 f appb.obj - 0001:00040dc0 ?OnnDefFixed@APPB@@UAEJXZ 00441dc0 f appb.obj - 0001:00040ee0 ?DypTextDef@APPB@@UAEJXZ 00441ee0 f appb.obj - 0001:00040f30 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 00441f30 f appb.obj - 0001:00040fa0 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 00441fa0 f appb.obj - 0001:00041010 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 00442010 f appb.obj - 0001:00041350 ?_TakeDownToolTip@APPB@@IAEXXZ 00442350 f appb.obj - 0001:00041420 ?_EnsureToolTip@APPB@@IAEXXZ 00442420 f appb.obj - 0001:00041540 ?ResetToolTip@APPB@@UAEXXZ 00442540 f appb.obj - 0001:000415a0 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 004425a0 f appb.obj - 0001:000416d0 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 004426d0 f appb.obj - 0001:00041740 ?_FInit@APPB@@MAEHKKJ@Z 00442740 f appb.obj - 0001:000418b0 ?_FInitSound@APPB@@MAEHJ@Z 004428b0 f appb.obj - 0001:000419d0 ?_FInitMenu@APPB@@MAEHXZ 004429d0 f appb.obj - 0001:00041a40 ?_Loop@APPB@@MAEXXZ 00442a40 f appb.obj - 0001:00041b90 ?_CleanUp@APPB@@MAEXXZ 00442b90 f appb.obj - 0001:00041c40 ?_Activate@APPB@@MAEXH@Z 00442c40 f appb.obj - 0001:00041ce0 ?TopOfLoop@APPB@@UAEXXZ 00442ce0 f appb.obj - 0001:00041dd0 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 00442dd0 f appb.obj - 0001:00041f80 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 00442f80 f appb.obj - 0001:00042030 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 00443030 f appb.obj - 0001:000421b0 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 004431b0 f appb.obj - 0001:00042270 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00443270 f appb.obj - 0001:00042360 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00443360 f appb.obj - 0001:000426e0 ?PtTopLeft@RC@@QAE?AVPT@@XZ 004436e0 f appb.obj - 0001:00042720 ??0PT@@QAE@JJ@Z 00443720 f appb.obj - 0001:00042760 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00443760 f appb.obj - 0001:00042820 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00443820 f appb.obj - 0001:00042910 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00443910 f appb.obj - 0001:00042bc0 ?FPush@GL@@QAEHPAX@Z 00443bc0 f appb.obj - 0001:00042c00 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 00443c00 f appb.obj - 0001:00042d10 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 00443d10 f appb.obj - 0001:00042e70 ?UpdateMarked@APPB@@UAEXXZ 00443e70 f appb.obj - 0001:00042f40 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 00443f40 f appb.obj - 0001:00043200 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 00444200 f appb.obj - 0001:00043340 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 00444340 f appb.obj - 0001:00043620 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 00444620 f appb.obj - 0001:00043790 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 00444790 f appb.obj - 0001:00043920 ?_FSetProp@APPB@@IAEHJJ@Z 00444920 f appb.obj - 0001:00043a60 ?FSetProp@APPB@@UAEHJJ@Z 00444a60 f appb.obj - 0001:00043dc0 ?FGetProp@APPB@@UAEHJPAJ@Z 00444dc0 f appb.obj - 0001:00043f00 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 00444f00 f appb.obj - 0001:00044140 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 00445140 f appb.obj - 0001:00044350 ?LuScale@USAC@@QAEKXZ 00445350 f appb.obj - 0001:00044380 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 00445380 f appb.obj - 0001:000443b0 ?FModalLoop@APPB@@UAEHPAJ@Z 004453b0 f appb.obj - 0001:000444a0 ?InvalHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 004454a0 f appb.obj - 0001:000444d0 ?EndModal@APPB@@UAEXJ@Z 004454d0 f appb.obj - 0001:00044540 ?PopModal@APPB@@UAEXXZ 00445540 f appb.obj - 0001:000446e0 ?Hwnd@GOB@@QAEPAUHWND__@@XZ 004456e0 f appb.obj - 0001:00044710 ?Pgpt@GOB@@QAEPAVGPT@@XZ 00445710 f appb.obj - 0001:00044740 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 00445740 f appb.obj - 0001:000447d0 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 004457d0 f appb.obj - 0001:00044910 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 00445910 f appb.obj - 0001:000449d0 ?FAllowScreenSaver@APPB@@UAEHXZ 004459d0 f appb.obj - 0001:00044a20 ?AssertValid@APPB@@QAEXK@Z 00445a20 f appb.obj - 0001:00044be0 ?MarkMem@APPB@@UAEXXZ 00445be0 f appb.obj - 0001:00044e80 ?FAssertProc@@YGHPADJ0PAXJ@Z 00445e80 f appb.obj - 0001:00044ed0 ?WarnProc@@YGXPADJ0@Z 00445ed0 f appb.obj - 0001:00044f40 ?WarnProcApp@APPB@@UAEXPADJ0@Z 00445f40 f appb.obj - 0001:00045160 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 00446160 f appb.obj - 0001:00045230 ??_EAPPB@@UAEPAXI@Z 00446230 f appb.obj - 0001:00045230 ??_GAPPB@@UAEPAXI@Z 00446230 f appb.obj - 0001:00045270 ??_9@$BMA@A 00446270 f appb.obj - 0001:00045280 ??_9@$BBCE@A 00446280 f appb.obj - 0001:00045290 ??_9@$BME@A 00446290 f appb.obj - 0001:000452a0 ??_9@$BMI@A 004462a0 f appb.obj - 0001:000452b0 ??_9@$BMM@A 004462b0 f appb.obj - 0001:000452c0 ??_9@$BNA@A 004462c0 f appb.obj - 0001:000452d0 ?FWouldBe@CLOK@@SGHJ@Z 004462d0 f clok.obj - 0001:00045310 ?FIs@CLOK@@UAEHJ@Z 00446310 f clok.obj - 0001:00045340 ?Cls@CLOK@@UAEJXZ 00446340 f clok.obj - 0001:00045390 ??0CLOK@@QAE@JK@Z 00446390 f clok.obj - 0001:00045450 ??1CLOK@@UAE@XZ 00446450 f clok.obj - 0001:00045530 ?PclokFromHid@CLOK@@SGPAV1@J@Z 00446530 f clok.obj - 0001:000455e0 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 004465e0 f clok.obj - 0001:00045630 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 00446630 f clok.obj - 0001:00045710 ?Start@CLOK@@QAEXK@Z 00446710 f clok.obj - 0001:000457c0 ?Stop@CLOK@@QAEXXZ 004467c0 f clok.obj - 0001:00045820 ?TimCur@CLOK@@QAEKH@Z 00446820 f clok.obj - 0001:000458a0 ?FSetAlarm@CLOK@@QAEHJPAVCMH@@JH@Z 004468a0 f clok.obj - 0001:00045a30 ?FCmdAll@CLOK@@UAEHPAUCMD@@@Z 00446a30 f clok.obj - 0001:00045d50 ?AssertValid@CLOK@@QAEXK@Z 00446d50 f clok.obj - 0001:00045e40 ?MarkMem@CLOK@@UAEXXZ 00446e40 f clok.obj - 0001:00045e90 ?MarkAllCloks@CLOK@@SGXXZ 00446e90 f clok.obj - 0001:00045f60 ??_ECLOK@@UAEPAXI@Z 00446f60 f clok.obj - 0001:00045f60 ??_GCLOK@@UAEPAXI@Z 00446f60 f clok.obj - 0001:00045fa0 ??_9@$BCI@A 00446fa0 f clok.obj - 0001:000460c0 ?Hid@CMH@@QAEJXZ 004470c0 f clok.obj - 0001:000460f0 ?Pcmm@CLOK@@MAEPAUCMM@CMH@@XZ 004470f0 f clok.obj - 0001:00046120 ?FWouldBe@CMH@@SGHJ@Z 00447120 f cmd.obj - 0001:00046160 ?FIs@CMH@@UAEHJ@Z 00447160 f cmd.obj - 0001:00046190 ?Cls@CMH@@UAEJXZ 00447190 f cmd.obj - 0001:000461c0 ?FWouldBe@CEX@@SGHJ@Z 004471c0 f cmd.obj - 0001:00046200 ?FIs@CEX@@UAEHJ@Z 00447200 f cmd.obj - 0001:00046230 ?Cls@CEX@@UAEJXZ 00447230 f cmd.obj - 0001:00046260 ?AssertValid@CMD@@QAEXK@Z 00447260 f cmd.obj - 0001:00046300 ?HidUnique@CMH@@SGJJ@Z 00447300 f cmd.obj - 0001:000463c0 ??0CMH@@QAE@J@Z 004473c0 f cmd.obj - 0001:00046460 ??1CMH@@UAE@XZ 00447460 f cmd.obj - 0001:000464e0 ?AssertValid@CMH@@QAEXK@Z 004474e0 f cmd.obj - 0001:00046540 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 00447540 f cmd.obj - 0001:000466e0 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 004476e0 f cmd.obj - 0001:00046800 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 00447800 f cmd.obj - 0001:00046970 ??0CEX@@IAE@XZ 00447970 f cmd.obj - 0001:000469d0 ??1CEX@@UAE@XZ 004479d0 f cmd.obj - 0001:00046b70 ?PcexNew@CEX@@SGPAV1@JJ@Z 00447b70 f cmd.obj - 0001:00046c70 ?_FInit@CEX@@MAEHJJ@Z 00447c70 f cmd.obj - 0001:00046d50 ?StopRecording@CEX@@QAEXXZ 00447d50 f cmd.obj - 0001:00046f90 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00447f90 f cmd.obj - 0001:000472d0 ?StopPlaying@CEX@@QAEXXZ 004482d0 f cmd.obj - 0001:000473f0 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 004483f0 f cmd.obj - 0001:00047770 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 00448770 f cmd.obj - 0001:00047840 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 00448840 f cmd.obj - 0001:000479a0 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 004489a0 f cmd.obj - 0001:00047af0 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 00448af0 f cmd.obj - 0001:00047cf0 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 00448cf0 f cmd.obj - 0001:00047df0 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00448df0 f cmd.obj - 0001:00047ee0 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00448ee0 f cmd.obj - 0001:00047fd0 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 00448fd0 f cmd.obj - 0001:00048150 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 00449150 f cmd.obj - 0001:000482d0 ?FCidIn@CEX@@UAEHJ@Z 004492d0 f cmd.obj - 0001:000483a0 ?FlushCid@CEX@@UAEXJ@Z 004493a0 f cmd.obj - 0001:000484a0 ?FEnqueue@GL@@QAEHPAX@Z 004494a0 f cmd.obj - 0001:000484d0 ?_TGetNextCmd@CEX@@MAEHXZ 004494d0 f cmd.obj - 0001:000487b0 ?SetTemp@CFL@@QAEXH@Z 004497b0 f cmd.obj - 0001:000487e0 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 004497e0 f cmd.obj - 0001:00048890 ?_CleanUpCmd@CEX@@MAEXXZ 00449890 f cmd.obj - 0001:000489c0 ?FDispatchNextCmd@CEX@@UAEHXZ 004499c0 f cmd.obj - 0001:00048bf0 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00449bf0 f cmd.obj - 0001:00048d10 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00449d10 f cmd.obj - 0001:00048f60 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 00449f60 f cmd.obj - 0001:00049080 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 0044a080 f cmd.obj - 0001:000491b0 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 0044a1b0 f cmd.obj - 0001:000492b0 ?EndMouseTracking@CEX@@UAEXXZ 0044a2b0 f cmd.obj - 0001:00049340 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 0044a340 f cmd.obj - 0001:00049390 ?Suspend@CEX@@UAEXH@Z 0044a390 f cmd.obj - 0001:00049560 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 0044a560 f cmd.obj - 0001:000495f0 ?AssertValid@CEX@@QAEXK@Z 0044a5f0 f cmd.obj - 0001:00049790 ?MarkMem@CEX@@UAEXXZ 0044a790 f cmd.obj - 0001:000498d0 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 0044a8d0 f cmd.obj - 0001:00049900 ?FForeground@APPB@@QAEHXZ 0044a900 f cmd.obj - 0001:00049930 ??_ECMH@@UAEPAXI@Z 0044a930 f cmd.obj - 0001:00049930 ??_GCMH@@UAEPAXI@Z 0044a930 f cmd.obj - 0001:00049970 ??_ECEX@@UAEPAXI@Z 0044a970 f cmd.obj - 0001:00049970 ??_GCEX@@UAEPAXI@Z 0044a970 f cmd.obj - 0001:000499b0 ?FWouldBe@CURS@@SGHJ@Z 0044a9b0 f cursor.obj - 0001:000499f0 ?FIs@CURS@@UAEHJ@Z 0044a9f0 f cursor.obj - 0001:00049a20 ?Cls@CURS@@UAEJXZ 0044aa20 f cursor.obj - 0001:00049a50 ??1CURS@@MAE@XZ 0044aa50 f cursor.obj - 0001:00049aa0 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0044aaa0 f cursor.obj - 0001:00049ef0 ?Set@CURS@@QAEXXZ 0044aef0 f cursor.obj - 0001:00049f40 ??_ECURS@@MAEPAXI@Z 0044af40 f cursor.obj - 0001:00049f40 ??_GCURS@@MAEPAXI@Z 0044af40 f cursor.obj - 0001:0004a090 ??0CURS@@IAE@XZ 0044b090 f cursor.obj - 0001:0004a0f0 ?FWouldBe@GNV@@SGHJ@Z 0044b0f0 f gfx.obj - 0001:0004a130 ?FIs@GNV@@UAEHJ@Z 0044b130 f gfx.obj - 0001:0004a160 ?Cls@GNV@@UAEJXZ 0044b160 f gfx.obj - 0001:0004a190 ?FWouldBe@GPT@@SGHJ@Z 0044b190 f gfx.obj - 0001:0004a1d0 ?FIs@GPT@@UAEHJ@Z 0044b1d0 f gfx.obj - 0001:0004a200 ?Cls@GPT@@UAEJXZ 0044b200 f gfx.obj - 0001:0004a230 ?FWouldBe@NTL@@SGHJ@Z 0044b230 f gfx.obj - 0001:0004a270 ?FIs@NTL@@UAEHJ@Z 0044b270 f gfx.obj - 0001:0004a2a0 ?Cls@NTL@@UAEJXZ 0044b2a0 f gfx.obj - 0001:0004a2d0 ?SetFromLw@ACR@@QAEXJ@Z 0044b2d0 f gfx.obj - 0001:0004a320 ?LwGet@ACR@@QBEJXZ 0044b320 f gfx.obj - 0001:0004a350 ?GetClr@ACR@@QAEXPAUCLR@@@Z 0044b350 f gfx.obj - 0001:0004a3e0 ?AssertValid@ACR@@QAEXK@Z 0044b3e0 f gfx.obj - 0001:0004a630 ?MoveOrigin@APT@@QAEXJJ@Z 0044b630 f gfx.obj - 0001:0004a6e0 ??0GNV@@QAE@PAVGPT@@@Z 0044b6e0 f gfx.obj - 0001:0004a7d0 ?B0Lw@@YGEJ@Z 0044b7d0 f gfx.obj - 0001:0004a7f0 ?B1Lw@@YGEJ@Z 0044b7f0 f gfx.obj - 0001:0004a810 ?B2Lw@@YGEJ@Z 0044b810 f gfx.obj - 0001:0004a830 ?B3Lw@@YGEJ@Z 0044b830 f gfx.obj - 0001:0004a850 ??0GNV@@QAE@PAVGOB@@@Z 0044b850 f gfx.obj - 0001:0004a950 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 0044b950 f gfx.obj - 0001:0004aab0 ??1GNV@@UAE@XZ 0044bab0 f gfx.obj - 0001:0004ab40 ?_Init@GNV@@AAEXPAVGPT@@@Z 0044bb40 f gfx.obj - 0001:0004ac50 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 0044bc50 f gfx.obj - 0001:0004acd0 ?AssertValid@GNV@@QAEXK@Z 0044bcd0 f gfx.obj - 0001:0004ae90 ?Max@RC@@QAEXXZ 0044be90 f gfx.obj - 0001:0004aef0 ?MarkMem@GNV@@UAEXXZ 0044bef0 f gfx.obj - 0001:0004af40 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 0044bf40 f gfx.obj - 0001:0004b0d0 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 0044c0d0 f gfx.obj - 0001:0004b1c0 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 0044c1c0 f gfx.obj - 0001:0004b370 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 0044c370 f gfx.obj - 0001:0004b480 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 0044c480 f gfx.obj - 0001:0004b510 ?Unlock@GRPB@@QAEXXZ 0044c510 f gfx.obj - 0001:0004b550 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 0044c550 f gfx.obj - 0001:0004b680 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 0044c680 f gfx.obj - 0001:0004b7f0 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 0044c7f0 f gfx.obj - 0001:0004b870 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 0044c870 f gfx.obj - 0001:0004b940 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 0044c940 f gfx.obj - 0001:0004bac0 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 0044cac0 f gfx.obj - 0001:0004bbe0 ?IntersectRcVis@GNV@@QAEXPAVRC@@@Z 0044cbe0 f gfx.obj - 0001:0004bce0 ?ClipRc@GNV@@QAEXPAVRC@@@Z 0044cce0 f gfx.obj - 0001:0004be20 ?SetPenSize@GNV@@QAEXJJ@Z 0044ce20 f gfx.obj - 0001:0004bee0 ?SetFont@GNV@@QAEXJKJJJ@Z 0044cee0 f gfx.obj - 0001:0004c0b0 ?SetOnn@GNV@@QAEXJ@Z 0044d0b0 f gfx.obj - 0001:0004c130 ?SetFontSize@GNV@@QAEXJ@Z 0044d130 f gfx.obj - 0001:0004c1d0 ?SetFontAlign@GNV@@QAEXJJ@Z 0044d1d0 f gfx.obj - 0001:0004c260 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 0044d260 f gfx.obj - 0001:0004c3d0 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 0044d3d0 f gfx.obj - 0001:0004c550 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 0044d550 f gfx.obj - 0001:0004c620 ?GetRcFromStn@GNV@@QAEXPAVRC@@PAVSTN@@JJ@Z 0044d620 f gfx.obj - 0001:0004c700 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 0044d700 f gfx.obj - 0001:0004c810 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 0044d810 f gfx.obj - 0001:0004c9b0 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 0044d9b0 f gfx.obj - 0001:0004cbc0 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 0044dbc0 f gfx.obj - 0001:0004ccc0 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0044dcc0 f gfx.obj - 0001:0004d140 ??8ACR@@QBEHABV0@@Z 0044e140 f gfx.obj - 0001:0004d180 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0044e180 f gfx.obj - 0001:0004d6f0 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0044e6f0 f gfx.obj - 0001:0004e0e0 ??9ACR@@QBEHABV0@@Z 0044f0e0 f gfx.obj - 0001:0004e120 ?Pgpt@GNV@@QAEPAVGPT@@XZ 0044f120 f gfx.obj - 0001:0004e150 ?_LwNextDissolve@@YGJJ@Z 0044f150 f gfx.obj - 0001:0004e1d0 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0044f1d0 f gfx.obj - 0001:0004e520 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0044f520 f gfx.obj - 0001:0004eb60 ??YPT@@QAEAAV0@AAV0@@Z 0044fb60 f gfx.obj - 0001:0004eba0 ?DrawMbmp@GNV@@QAEXPAVMBMP@@JJ@Z 0044fba0 f gfx.obj - 0001:0004ecb0 ?DrawMbmp@GNV@@QAEXPAVMBMP@@PAVRC@@@Z 0044fcb0 f gfx.obj - 0001:0004eda0 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 0044fda0 f gfx.obj - 0001:0004ee90 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 0044fe90 f gfx.obj - 0001:0004ef30 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 0044ff30 f gfx.obj - 0001:0004f020 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00450020 f gfx.obj - 0001:0004f090 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 00450090 f gfx.obj - 0001:0004f100 ?MarkMem@GPT@@UAEXXZ 00450100 f gfx.obj - 0001:0004f150 ?AssertValid@DSF@@QAEXK@Z 00450150 f gfx.obj - 0001:0004f200 ?FInitGfx@@YGHXZ 00450200 f gfx.obj - 0001:0004f220 ??0NTL@@QAE@XZ 00450220 f gfx.obj - 0001:0004f260 ??1NTL@@UAE@XZ 00450260 f gfx.obj - 0001:0004f2c0 ?AssertValid@NTL@@QAEXK@Z 004502c0 f gfx.obj - 0001:0004f350 ?MarkMem@NTL@@UAEXXZ 00450350 f gfx.obj - 0001:0004f3a0 ?FValidOnn@NTL@@QAEHJ@Z 004503a0 f gfx.obj - 0001:0004f400 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 00450400 f gfx.obj - 0001:0004f4c0 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 004504c0 f gfx.obj - 0001:0004f580 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 00450580 f gfx.obj - 0001:0004f650 ?OnnMac@NTL@@QAEJXZ 00450650 f gfx.obj - 0001:0004f6a0 ??8PT@@QAEHAAV0@@Z 004506a0 f gfx.obj - 0001:0004f6f0 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 004506f0 f gfx.obj - 0001:0004fbc0 ?ScanNext@REGSC@@QAEXJ@Z 00450bc0 f gfx.obj - 0001:0004fc30 ?XpFetch@REGSC@@QAEJXZ 00450c30 f gfx.obj - 0001:0004fd60 ?XpCur@REGSC@@QAEJXZ 00450d60 f gfx.obj - 0001:0004fd90 ?DypCur@REGSC@@QAEJXZ 00450d90 f gfx.obj - 0001:0004fdc0 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00450dc0 f gfx.obj - 0001:000502a0 ??_GGNV@@UAEPAXI@Z 004512a0 f gfx.obj - 0001:000502a0 ??_EGNV@@UAEPAXI@Z 004512a0 f gfx.obj - 0001:000502e0 ??0GDD@@QAE@XZ 004512e0 f gfx.obj - 0001:00050320 ??_ENTL@@UAEPAXI@Z 00451320 f gfx.obj - 0001:00050320 ??_GNTL@@UAEPAXI@Z 00451320 f gfx.obj - 0001:00050360 ??1GL@@UAE@XZ 00451360 f gfx.obj - 0001:00050390 ??1GLB@@UAE@XZ 00451390 f gfx.obj - 0001:000503c0 ?FWouldBe@GOB@@SGHJ@Z 004513c0 f gob.obj - 0001:00050400 ?FIs@GOB@@UAEHJ@Z 00451400 f gob.obj - 0001:00050430 ?Cls@GOB@@UAEJXZ 00451430 f gob.obj - 0001:00050460 ?FWouldBe@GTE@@SGHJ@Z 00451460 f gob.obj - 0001:000504a0 ?FIs@GTE@@UAEHJ@Z 004514a0 f gob.obj - 0001:000504d0 ?Cls@GTE@@UAEJXZ 004514d0 f gob.obj - 0001:00050500 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 00451500 f gob.obj - 0001:00050620 ?ShutDown@GOB@@SGXXZ 00451620 f gob.obj - 0001:00050660 ??0GOB@@QAE@PAUGCB@@@Z 00451660 f gob.obj - 0001:000506e0 ?_Init@GOB@@IAEXPAUGCB@@@Z 004516e0 f gob.obj - 0001:00050980 ??0GOB@@QAE@J@Z 00451980 f gob.obj - 0001:00050a10 ?Release@GOB@@UAEXXZ 00451a10 f gob.obj - 0001:00050b10 ??1GOB@@MAE@XZ 00451b10 f gob.obj - 0001:00050d10 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 00451d10 f gob.obj - 0001:00050dc0 ?BringToFront@GOB@@QAEXXZ 00451dc0 f gob.obj - 0001:00050e10 ?SendBehind@GOB@@QAEXPAV1@@Z 00451e10 f gob.obj - 0001:00051060 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 00452060 f gob.obj - 0001:00051270 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 00452270 f gob.obj - 0001:00051400 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 00452400 f gob.obj - 0001:00051600 ?Offset@PT@@QAEXJJ@Z 00452600 f gob.obj - 0001:00051630 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 00452630 f gob.obj - 0001:00051bb0 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 00452bb0 f gob.obj - 0001:000520d0 ??HRC@@QAE?AV0@AAVPT@@@Z 004530d0 f gob.obj - 0001:00052130 ??GRC@@QAE?AV0@AAVPT@@@Z 00453130 f gob.obj - 0001:00052190 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 00453190 f gob.obj - 0001:00052820 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 00453820 f gob.obj - 0001:00052870 ?Maximize@GOB@@UAEXXZ 00453870 f gob.obj - 0001:00052900 ?SetPos@GOB@@QAEXPAVRC@@0@Z 00453900 f gob.obj - 0001:000529e0 ?GetPos@GOB@@QAEXPAVRC@@0@Z 004539e0 f gob.obj - 0001:00052a90 ?SetRcFromHwnd@GOB@@QAEXXZ 00453a90 f gob.obj - 0001:00052b20 ?GetRc@GOB@@QAEXPAVRC@@J@Z 00453b20 f gob.obj - 0001:00052bd0 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 00453bd0 f gob.obj - 0001:00052c80 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 00453c80 f gob.obj - 0001:00052d00 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 00453d00 f gob.obj - 0001:00052d80 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 00453d80 f gob.obj - 0001:00052e30 ?MapRc@GOB@@QAEXPAVRC@@JJ@Z 00453e30 f gob.obj - 0001:00052ed0 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 00453ed0 f gob.obj - 0001:000530d0 ??0PT@@QAE@AAUtagPOINT@@@Z 004540d0 f gob.obj - 0001:00053100 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 00454100 f gob.obj - 0001:00053150 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 00454150 f gob.obj - 0001:00053200 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 00454200 f gob.obj - 0001:00053310 ?FPtIn@GOB@@UAEHJJ@Z 00454310 f gob.obj - 0001:000533a0 ?FPtInBounds@GOB@@UAEHJJ@Z 004543a0 f gob.obj - 0001:00053430 ?MouseDown@GOB@@UAEXJJJK@Z 00454430 f gob.obj - 0001:00053540 ?_SetRcCur@GOB@@AAEXXZ 00454540 f gob.obj - 0001:00053760 ?PgobPrevSib@GOB@@QAEPAV1@XZ 00454760 f gob.obj - 0001:00053860 ?PgobLastChild@GOB@@QAEPAV1@XZ 00454860 f gob.obj - 0001:00053900 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 00454900 f gob.obj - 0001:00053a20 ?PgobFromCls@GOB@@QAEPAV1@J@Z 00454a20 f gob.obj - 0001:00053ae0 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 00454ae0 f gob.obj - 0001:00053b70 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 00454b70 f gob.obj - 0001:00053be0 ?PgobFromHid@GOB@@QAEPAV1@J@Z 00454be0 f gob.obj - 0001:00053db0 ?PgobFromGrid@GOB@@QAEPAV1@J@Z 00454db0 f gob.obj - 0001:00053e70 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 00454e70 f gob.obj - 0001:00053ed0 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 00454ed0 f gob.obj - 0001:00053f20 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 00454f20 f gob.obj - 0001:00053f50 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 00454f50 f gob.obj - 0001:00053f80 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 00454f80 f gob.obj - 0001:00053fe0 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 00454fe0 f gob.obj - 0001:00054040 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 00455040 f gob.obj - 0001:000540c0 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 004550c0 f gob.obj - 0001:00054610 ??ZPT@@QAEAAV0@AAV0@@Z 00455610 f gob.obj - 0001:00054650 ??YRC@@QAEAAV0@AAVPT@@@Z 00455650 f gob.obj - 0001:000546a0 ?ValidHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 004556a0 f gob.obj - 0001:000546c0 ?Grid@GOB@@QAEJXZ 004556c0 f gob.obj - 0001:000546f0 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 004556f0 f gob.obj - 0001:00054720 ?SetCurs@GOB@@QAEXPAVCURS@@@Z 00455720 f gob.obj - 0001:00054820 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 00455820 f gob.obj - 0001:00054850 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 00455850 f gob.obj - 0001:00054880 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 00455880 f gob.obj - 0001:000548b0 ?SetCursCno@GOB@@QAEXPAVRCA@@K@Z 004558b0 f gob.obj - 0001:000549a0 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 004559a0 f gob.obj - 0001:000549f0 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 004559f0 f gob.obj - 0001:00054a80 ?LwState@GOB@@UAEJXZ 00455a80 f gob.obj - 0001:00054ad0 ?AssertValid@GOB@@QAEXK@Z 00455ad0 f gob.obj - 0001:00054bc0 ?MarkMem@GOB@@UAEXXZ 00455bc0 f gob.obj - 0001:00054c30 ?MarkGobTree@GOB@@QAEXXZ 00455c30 f gob.obj - 0001:00054ca0 ??0GTE@@QAE@XZ 00455ca0 f gob.obj - 0001:00054ce0 ?Init@GTE@@QAEXPAVGOB@@K@Z 00455ce0 f gob.obj - 0001:00054d60 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 00455d60 f gob.obj - 0001:00054f60 ??_EGOB@@MAEPAXI@Z 00455f60 f gob.obj - 0001:00054f60 ??_GGOB@@MAEPAXI@Z 00455f60 f gob.obj - 0001:00054fa0 ??_GGTE@@UAEPAXI@Z 00455fa0 f gob.obj - 0001:00054fa0 ??_EGTE@@UAEPAXI@Z 00455fa0 f gob.obj - 0001:00054fe0 ??_9@$BGA@A 00455fe0 f gob.obj - 0001:00054ff0 ??_9@$BHI@A 00455ff0 f gob.obj - 0001:00055000 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 00456000 f mbmpgui.obj - 0001:000554c0 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 004564c0 f mbmpgui.obj - 0001:00055950 ?_Qrgcb@MBMP@@IAEPAFXZ 00456950 f mbmpgui.obj - 0001:00055990 ?_Qmbmph@MBMP@@IAEPAUMBMPH@1@XZ 00456990 f mbmpgui.obj - 0001:00055ad0 ?FWouldBe@REGN@@SGHJ@Z 00456ad0 f region.obj - 0001:00055b10 ?FIs@REGN@@UAEHJ@Z 00456b10 f region.obj - 0001:00055b40 ?Cls@REGN@@UAEJXZ 00456b40 f region.obj - 0001:00055b70 ?FWouldBe@REGSC@@SGHJ@Z 00456b70 f region.obj - 0001:00055bb0 ?FIs@REGSC@@UAEHJ@Z 00456bb0 f region.obj - 0001:00055be0 ?Cls@REGSC@@UAEJXZ 00456be0 f region.obj - 0001:00055c10 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 00456c10 f region.obj - 0001:00055de0 ?FStartRow@REGBL@@QAEHJJ@Z 00456de0 f region.obj - 0001:00055ff0 ?EndRow@REGBL@@QAEXXZ 00456ff0 f region.obj - 0001:000561e0 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 004571e0 f region.obj - 0001:00056440 ??0REGSC@@QAE@XZ 00457440 f region.obj - 0001:00056480 ??1REGSC@@UAE@XZ 00457480 f region.obj - 0001:000564c0 ?Free@REGSC@@QAEXXZ 004574c0 f region.obj - 0001:00056530 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 00457530 f region.obj - 0001:000565a0 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 004575a0 f region.obj - 0001:000565e0 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 004575e0 f region.obj - 0001:00056740 ?_ScanNextCore@REGSC@@IAEXXZ 00457740 f region.obj - 0001:00056c40 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 00457c40 f region.obj - 0001:00056d30 ??1REGN@@UAE@XZ 00457d30 f region.obj - 0001:00056da0 ?SetRc@REGN@@QAEXPAVRC@@@Z 00457da0 f region.obj - 0001:00056ea0 ?Offset@REGN@@QAEXJJ@Z 00457ea0 f region.obj - 0001:00056f10 ?FEmpty@REGN@@QAEHPAVRC@@@Z 00457f10 f region.obj - 0001:00056fa0 ?FIsRc@REGN@@QAEHPAVRC@@@Z 00457fa0 f region.obj - 0001:00057030 ?Scale@REGN@@QAEXJJJJ@Z 00458030 f region.obj - 0001:00057510 ??0REGBL@@QAE@XZ 00458510 f region.obj - 0001:00057570 ??1REGBL@@UAE@XZ 00458570 f region.obj - 0001:000575d0 ?AddXp@REGBL@@QAEXJ@Z 004585d0 f region.obj - 0001:000576f0 ?FDone@REGBL@@QAEHXZ 004586f0 f region.obj - 0001:00057760 ??0RAT@@QAE@JJ@Z 00458760 f region.obj - 0001:000577a0 ?Set@RAT@@QAEXJJ@Z 004587a0 f region.obj - 0001:00057830 ?LwScale@RAT@@QAEJJ@Z 00458830 f region.obj - 0001:00057880 ?FUnion@REGN@@QAEHPAV1@0@Z 00458880 f region.obj - 0001:00057ac0 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 00458ac0 f region.obj - 0001:00057cd0 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00458cd0 f region.obj - 0001:00058160 ?FIntersect@REGN@@QAEHPAV1@0@Z 00459160 f region.obj - 0001:000583d0 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 004593d0 f region.obj - 0001:000587c0 ?FDiff@REGN@@QAEHPAV1@0@Z 004597c0 f region.obj - 0001:000589f0 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 004599f0 f region.obj - 0001:00058be0 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00459be0 f region.obj - 0001:00059000 ??0REGN@@IAE@XZ 0045a000 f region.obj - 0001:00059050 ?FOn@REGSC@@QAEHXZ 0045a050 f region.obj - 0001:00059080 ?CxpCur@REGSC@@QAEJXZ 0045a080 f region.obj - 0001:000590b0 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 0045a0b0 f region.obj - 0001:00059410 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 0045a410 f region.obj - 0001:000594c0 ?AssertValid@REGN@@QAEXK@Z 0045a4c0 f region.obj - 0001:000595a0 ?MarkMem@REGN@@UAEXXZ 0045a5a0 f region.obj - 0001:00059610 ??_EREGN@@UAEPAXI@Z 0045a610 f region.obj - 0001:00059610 ??_GREGN@@UAEPAXI@Z 0045a610 f region.obj - 0001:00059650 ??_EREGBL@@UAEPAXI@Z 0045a650 f region.obj - 0001:00059650 ??_GREGBL@@UAEPAXI@Z 0045a650 f region.obj - 0001:00059690 ??_EREGSC@@UAEPAXI@Z 0045a690 f region.obj - 0001:00059690 ??_GREGSC@@UAEPAXI@Z 0045a690 f region.obj - 0001:00059820 _WinMain@16 0045a820 f appbwin.obj - 0001:00059870 ?Abort@APPB@@UAEXXZ 0045a870 f appbwin.obj - 0001:000598b0 ?_FInitOS@APPB@@MAEHXZ 0045a8b0 f appbwin.obj - 0001:00059ad0 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 0045aad0 f appbwin.obj - 0001:00059b90 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 0045ab90 f appbwin.obj - 0001:00059d10 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 0045ad10 f appbwin.obj - 0001:00059e80 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 0045ae80 f appbwin.obj - 0001:0005a000 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 0045b000 f appbwin.obj - 0001:0005a1b0 ?FlushUserEvents@APPB@@UAEXK@Z 0045b1b0 f appbwin.obj - 0001:0005a250 ?_ShutDownViewer@APPB@@IAEXXZ 0045b250 f appbwin.obj - 0001:0005a2a0 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 0045b2a0 f appbwin.obj - 0001:0005a360 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0045b360 f appbwin.obj - 0001:0005ace0 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 0045bce0 f appbwin.obj - 0001:0005ad90 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0045bd90 f appbwin.obj - 0001:0005aef0 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0045bef0 f appbwin.obj - 0001:0005b620 ?_FInitDebug@APPB@@MAEHXZ 0045c620 f appbwin.obj - 0001:0005b670 ?_FDlgAssert@@YGHPAUHWND__@@IIJ@Z 0045c670 f appbwin.obj - 0001:0005b790 ?FAssertProcApp@APPB@@UAEHPADJ0PAXJ@Z 0045c790 f appbwin.obj - 0001:0005bd10 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 0045cd10 f appbwin.obj - 0001:0005c070 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 0045d070 f gfxwin.obj - 0001:0005c100 ?_Scr@ACR@@AAEKXZ 0045d100 f gfxwin.obj - 0001:0005c1c0 ?DrawDib@GNV@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAVRC@@@Z 0045d1c0 f gfxwin.obj - 0001:0005c260 ?Flush@GPT@@SGXXZ 0045d260 f gfxwin.obj - 0001:0005c280 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 0045d280 f gfxwin.obj - 0001:0005cab0 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 0045dab0 f gfxwin.obj - 0001:0005cb50 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 0045db50 f gfxwin.obj - 0001:0005ccb0 ?Fbit@@YGEJ@Z 0045dcb0 f gfxwin.obj - 0001:0005ccd0 ?IbFromIbit@@YGJJ@Z 0045dcd0 f gfxwin.obj - 0001:0005ccf0 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 0045dcf0 f gfxwin.obj - 0001:0005ce00 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 0045de00 f gfxwin.obj - 0001:0005cf30 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 0045df30 f gfxwin.obj - 0001:0005d140 ??1GPT@@EAE@XZ 0045e140 f gfxwin.obj - 0001:0005d2b0 ?_Scr@GPT@@AAEKVACR@@@Z 0045e2b0 f gfxwin.obj - 0001:0005d3a0 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 0045e3a0 f gfxwin.obj - 0001:0005d990 ?SetOffscreenColors@GPT@@QAEXPAVGL@@@Z 0045e990 f gfxwin.obj - 0001:0005db00 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 0045eb00 f gfxwin.obj - 0001:0005dbf0 ?CbRow@GPT@@QAEJXZ 0045ebf0 f gfxwin.obj - 0001:0005dc50 ?CbitPixel@GPT@@QAEJXZ 0045ec50 f gfxwin.obj - 0001:0005dd00 ?Lock@GPT@@QAEXXZ 0045ed00 f gfxwin.obj - 0001:0005dd50 ?Unlock@GPT@@QAEXXZ 0045ed50 f gfxwin.obj - 0001:0005ddc0 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0045edc0 f gfxwin.obj - 0001:0005de50 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0045ee50 f gfxwin.obj - 0001:0005df20 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 0045ef20 f gfxwin.obj - 0001:0005e0e0 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 0045f0e0 f gfxwin.obj - 0001:0005e160 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 0045f160 f gfxwin.obj - 0001:0005e1d0 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 0045f1d0 f gfxwin.obj - 0001:0005e410 ?FMax@RC@@QAEHXZ 0045f410 f gfxwin.obj - 0001:0005e490 ?CbEntry@GLB@@QAEJXZ 0045f490 f gfxwin.obj - 0001:0005e4c0 ?_EnsurePalette@GPT@@AAEXXZ 0045f4c0 f gfxwin.obj - 0001:0005e600 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 0045f600 f gfxwin.obj - 0001:0005e930 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 0045f930 f gfxwin.obj - 0001:0005e9e0 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 0045f9e0 f gfxwin.obj - 0001:0005ed30 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 0045fd30 f gfxwin.obj - 0001:0005efa0 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 0045ffa0 f gfxwin.obj - 0001:0005f110 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 00460110 f gfxwin.obj - 0001:0005f210 ?_SetStockBrush@GPT@@AAEXH@Z 00460210 f gfxwin.obj - 0001:0005f300 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 00460300 f gfxwin.obj - 0001:0005f610 ??8APT@@QAEHAAU0@@Z 00460610 f gfxwin.obj - 0001:0005f660 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 00460660 f gfxwin.obj - 0001:0005fc80 ?FSolidFore@APT@@QAEHXZ 00460c80 f gfxwin.obj - 0001:0005fcc0 ?FSolidBack@APT@@QAEHXZ 00460cc0 f gfxwin.obj - 0001:0005fd00 ?Invert@APT@@QAEXXZ 00460d00 f gfxwin.obj - 0001:0005fd40 ??0GPT@@AAE@XZ 00460d40 f gfxwin.obj - 0001:0005fda0 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 00460da0 f gfxwin.obj - 0001:000602d0 ?DrawDib@GPT@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAUtagRECT@@PAUGDD@@@Z 004612d0 f gfxwin.obj - 0001:000603e0 ?AssertValid@GPT@@QAEXK@Z 004613e0 f gfxwin.obj - 0001:000605c0 ?MarkStaticMem@GPT@@SGXXZ 004615c0 f gfxwin.obj - 0001:000605e0 ?FInit@NTL@@QAEHXZ 004615e0 f gfxwin.obj - 0001:000607e0 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 004617e0 f gfxwin.obj - 0001:000608f0 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 004618f0 f gfxwin.obj - 0001:00060a40 ?FFixedPitch@NTL@@QAEHJ@Z 00461a40 f gfxwin.obj - 0001:00060b00 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 00461b00 f gfxwin.obj - 0001:00060ba0 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 00461ba0 f gfxwin.obj - 0001:00060c00 ??_GGPT@@EAEPAXI@Z 00461c00 f gfxwin.obj - 0001:00060c00 ??_EGPT@@EAEPAXI@Z 00461c00 f gfxwin.obj - 0001:00060c40 ?FInitScreen@GOB@@SGHKJ@Z 00461c40 f gobwin.obj - 0001:00060d50 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 00461d50 f gobwin.obj - 0001:00060e00 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 00461e00 f gobwin.obj - 0001:00060ec0 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 00461ec0 f gobwin.obj - 0001:00060f00 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 00461f00 f gobwin.obj - 0001:000610f0 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 004620f0 f gobwin.obj - 0001:000611b0 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 004621b0 f gobwin.obj - 0001:000612e0 ?Clean@GOB@@UAEXXZ 004622e0 f gobwin.obj - 0001:000613c0 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 004623c0 f gobwin.obj - 0001:00061470 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 00462470 f gobwin.obj - 0001:00061600 ?FWouldBe@MUB@@SGHJ@Z 00462600 f menuwin.obj - 0001:00061640 ?FIs@MUB@@UAEHJ@Z 00462640 f menuwin.obj - 0001:00061670 ?Cls@MUB@@UAEJXZ 00462670 f menuwin.obj - 0001:000616a0 ??1MUB@@UAE@XZ 004626a0 f menuwin.obj - 0001:000616f0 ?PmubNew@MUB@@SGPAV1@K@Z 004626f0 f menuwin.obj - 0001:00061800 ?Set@MUB@@UAEXXZ 00462800 f menuwin.obj - 0001:000618a0 ?Clean@MUB@@UAEXXZ 004628a0 f menuwin.obj - 0001:00061aa0 ?EnqueueWcid@MUB@@UAEXJ@Z 00462aa0 f menuwin.obj - 0001:00061af0 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 00462af0 f menuwin.obj - 0001:00061e60 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 00462e60 f menuwin.obj - 0001:000622c0 ?FRemoveAllListCid@MUB@@UAEHJ@Z 004632c0 f menuwin.obj - 0001:00062560 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 00463560 f menuwin.obj - 0001:000627c0 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 004637c0 f menuwin.obj - 0001:00062960 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 00463960 f menuwin.obj - 0001:00062a70 ?_FInitLists@MUB@@AAEHXZ 00463a70 f menuwin.obj - 0001:00062ee0 ?MarkMem@MUB@@UAEXXZ 00463ee0 f menuwin.obj - 0001:00062fd0 ??_GMUB@@UAEPAXI@Z 00463fd0 f menuwin.obj - 0001:00062fd0 ??_EMUB@@UAEPAXI@Z 00463fd0 f menuwin.obj - 0001:00063120 ??0MUB@@IAE@XZ 00464120 f menuwin.obj - 0001:000631a0 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 004641a0 f picwin.obj - 0001:00063200 ?FWrite@BLCK@@QAEHPAXH@Z 00464200 f picwin.obj - 0001:00063350 ?FWouldBe@GRPB@@SGHJ@Z 00464350 f groups.obj - 0001:00063390 ?FIs@GRPB@@UAEHJ@Z 00464390 f groups.obj - 0001:000633c0 ?Cls@GRPB@@UAEJXZ 004643c0 f groups.obj - 0001:000633f0 ?FWouldBe@GLB@@SGHJ@Z 004643f0 f groups.obj - 0001:00063430 ?FIs@GLB@@UAEHJ@Z 00464430 f groups.obj - 0001:00063460 ?Cls@GLB@@UAEJXZ 00464460 f groups.obj - 0001:00063490 ?FWouldBe@GL@@SGHJ@Z 00464490 f groups.obj - 0001:000634d0 ?FIs@GL@@UAEHJ@Z 004644d0 f groups.obj - 0001:00063500 ?Cls@GL@@UAEJXZ 00464500 f groups.obj - 0001:00063530 ?FWouldBe@AL@@SGHJ@Z 00464530 f groups.obj - 0001:00063570 ?FIs@AL@@UAEHJ@Z 00464570 f groups.obj - 0001:000635a0 ?Cls@AL@@UAEJXZ 004645a0 f groups.obj - 0001:000635d0 ?FWouldBe@GGB@@SGHJ@Z 004645d0 f groups.obj - 0001:00063610 ?FIs@GGB@@UAEHJ@Z 00464610 f groups.obj - 0001:00063640 ?Cls@GGB@@UAEJXZ 00464640 f groups.obj - 0001:00063670 ?FWouldBe@GG@@SGHJ@Z 00464670 f groups.obj - 0001:000636b0 ?FIs@GG@@UAEHJ@Z 004646b0 f groups.obj - 0001:000636e0 ?Cls@GG@@UAEJXZ 004646e0 f groups.obj - 0001:00063710 ?FWouldBe@AG@@SGHJ@Z 00464710 f groups.obj - 0001:00063750 ?FIs@AG@@UAEHJ@Z 00464750 f groups.obj - 0001:00063780 ?Cls@AG@@UAEJXZ 00464780 f groups.obj - 0001:000637b0 ??1GRPB@@UAE@XZ 004647b0 f groups.obj - 0001:00063820 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00464820 f groups.obj - 0001:00063a20 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00464a20 f groups.obj - 0001:00063be0 ?_FDup@GRPB@@IAEHPAV1@JJ@Z 00464be0 f groups.obj - 0001:00063da0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00464da0 f groups.obj - 0001:00063e00 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00464e00 f groups.obj - 0001:00063fd0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 00464fd0 f groups.obj - 0001:00064150 ?AssertValid@GRPB@@QAEXK@Z 00465150 f groups.obj - 0001:000642e0 ?MarkMem@GRPB@@UAEXXZ 004652e0 f groups.obj - 0001:00064350 ??0GLB@@IAE@J@Z 00465350 f groups.obj - 0001:000643e0 ?QvGet@GLB@@QAEPAXJ@Z 004653e0 f groups.obj - 0001:00064470 ?Get@GLB@@QAEXJPAX@Z 00465470 f groups.obj - 0001:00064500 ?Put@GLB@@QAEXJPAX@Z 00465500 f groups.obj - 0001:000645b0 ?PvLock@GLB@@QAEPAXJ@Z 004655b0 f groups.obj - 0001:000645f0 ?SetMinGrow@GLB@@QAEXJ@Z 004655f0 f groups.obj - 0001:00064680 ?CbRoundToLong@@YGJJ@Z 00465680 f groups.obj - 0001:000646a0 ?AssertValid@GLB@@QAEXK@Z 004656a0 f groups.obj - 0001:00064740 ?PglNew@GL@@SGPAV1@JJ@Z 00465740 f groups.obj - 0001:00064870 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 00465870 f groups.obj - 0001:00064a30 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 00465a30 f groups.obj - 0001:00064a90 ??0GL@@IAE@J@Z 00465a90 f groups.obj - 0001:00064af0 ?FFree@GL@@UAEHJ@Z 00465af0 f groups.obj - 0001:00064b60 ?PglDup@GL@@QAEPAV1@XZ 00465b60 f groups.obj - 0001:00064c50 ?CbOnFile@GL@@UAEJXZ 00465c50 f groups.obj - 0001:00064cb0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00465cb0 f groups.obj - 0001:00064e80 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00465e80 f groups.obj - 0001:000650d0 ?FInsert@GL@@QAEHJPAXJ@Z 004660d0 f groups.obj - 0001:00065250 ?Delete@GL@@UAEXJ@Z 00466250 f groups.obj - 0001:000652b0 ?Delete@GL@@QAEXJJ@Z 004662b0 f groups.obj - 0001:00065420 ?Move@GL@@QAEXJJ@Z 00466420 f groups.obj - 0001:000654e0 ?FAdd@GL@@UAEHPAXPAJ@Z 004664e0 f groups.obj - 0001:00065590 ?FPop@GL@@QAEHPAX@Z 00466590 f groups.obj - 0001:000656a0 ?FSetIvMac@GL@@QAEHJ@Z 004666a0 f groups.obj - 0001:000658b0 ?FEnsureSpace@GL@@QAEHJK@Z 004668b0 f groups.obj - 0001:00065980 ?PalNew@AL@@SGPAV1@JJ@Z 00466980 f groups.obj - 0001:00065ab0 ??0AL@@IAE@J@Z 00466ab0 f groups.obj - 0001:00065b20 ?CbFromCbit@@YGJJ@Z 00466b20 f groups.obj - 0001:00065b50 ?CbOnFile@AL@@UAEJXZ 00466b50 f groups.obj - 0001:00065bc0 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 00466bc0 f groups.obj - 0001:00065db0 ?_Qb1@GRPB@@IAEPAEJ@Z 00466db0 f groups.obj - 0001:00065de0 ?_Qb2@GRPB@@IAEPAEJ@Z 00466de0 f groups.obj - 0001:00065e10 ?_Cb1@GRPB@@IAEJXZ 00466e10 f groups.obj - 0001:00065e40 ??0GRPB@@IAE@XZ 00466e40 f groups.obj - 0001:00065e80 ?Lock@GRPB@@QAEXXZ 00466e80 f groups.obj - 0001:00065ec0 ?FFree@AL@@UAEHJ@Z 00466ec0 f groups.obj - 0001:00065f60 ?_Qgrfbit@AL@@AAEPAEJ@Z 00466f60 f groups.obj - 0001:00065fa0 ?FEnsureSpace@AL@@QAEHJK@Z 00466fa0 f groups.obj - 0001:00066090 ?FAdd@AL@@UAEHPAXPAJ@Z 00467090 f groups.obj - 0001:00066290 ?Delete@AL@@UAEXJ@Z 00467290 f groups.obj - 0001:00066510 ?AssertValid@AL@@QAEXK@Z 00467510 f groups.obj - 0001:00066620 ?_Cb2@GRPB@@IAEJXZ 00467620 f groups.obj - 0001:00066650 ??0GGB@@IAE@JH@Z 00467650 f groups.obj - 0001:00066710 ?_FDup@GGB@@IAEHPAV1@@Z 00467710 f groups.obj - 0001:000668b0 ?CbOnFile@GGB@@UAEJXZ 004678b0 f groups.obj - 0001:00066910 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00467910 f groups.obj - 0001:00066b60 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 00467b60 f groups.obj - 0001:00066e70 ?FFree@GGB@@UAEHJ@Z 00467e70 f groups.obj - 0001:00066fb0 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 00467fb0 f groups.obj - 0001:00066ff0 ?FEnsureSpace@GGB@@QAEHJJK@Z 00467ff0 f groups.obj - 0001:00067150 ?_RemoveRgb@GGB@@IAEXJJ@Z 00468150 f groups.obj - 0001:000672a0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 004682a0 f groups.obj - 0001:00067410 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00468410 f groups.obj - 0001:00067520 ?GetFixed@GGB@@QAEXJPAX@Z 00468520 f groups.obj - 0001:00067630 ?PutFixed@GGB@@QAEXJPAX@Z 00468630 f groups.obj - 0001:00067770 ?Cb@GGB@@QAEJJ@Z 00468770 f groups.obj - 0001:00067820 ?QvGet@GGB@@QAEPAXJPAJ@Z 00468820 f groups.obj - 0001:00067930 ?PvLock@GGB@@QAEPAXJPAJ@Z 00468930 f groups.obj - 0001:00067990 ?Get@GGB@@QAEXJPAX@Z 00468990 f groups.obj - 0001:00067a80 ?Put@GGB@@QAEXJPAX@Z 00468a80 f groups.obj - 0001:00067b70 ?FPut@GGB@@QAEHJJPAX@Z 00468b70 f groups.obj - 0001:00067cf0 ?GetRgb@GGB@@QAEXJJJPAX@Z 00468cf0 f groups.obj - 0001:00067e00 ?PutRgb@GGB@@QAEXJJJPAX@Z 00468e00 f groups.obj - 0001:00067f40 ?DeleteRgb@GGB@@QAEXJJJ@Z 00468f40 f groups.obj - 0001:00068130 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00469130 f groups.obj - 0001:000683f0 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 004693f0 f groups.obj - 0001:000688a0 ?Merge@GGB@@QAEXJJ@Z 004698a0 f groups.obj - 0001:00068b20 ?AssertValid@GGB@@QAEXK@Z 00469b20 f groups.obj - 0001:00068e80 ?PggNew@GG@@SGPAV1@JJJ@Z 00469e80 f groups.obj - 0001:00068fd0 ??0GG@@IAE@J@Z 00469fd0 f groups.obj - 0001:00069010 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0046a010 f groups.obj - 0001:000691e0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0046a1e0 f groups.obj - 0001:00069240 ?PggDup@GG@@QAEPAV1@XZ 0046a240 f groups.obj - 0001:00069320 ?FInsert@GG@@QAEHJJPAX0@Z 0046a320 f groups.obj - 0001:000695d0 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 0046a5d0 f groups.obj - 0001:000698a0 ?CbFixed@GGB@@QAEJXZ 0046a8a0 f groups.obj - 0001:000698d0 ?FAdd@GG@@UAEHJPAJPAX1@Z 0046a8d0 f groups.obj - 0001:00069990 ?Delete@GG@@UAEXJ@Z 0046a990 f groups.obj - 0001:00069ad0 ?Move@GG@@QAEXJJ@Z 0046aad0 f groups.obj - 0001:00069b80 ?Swap@GG@@QAEXJJ@Z 0046ab80 f groups.obj - 0001:00069c40 ?AssertValid@GG@@QAEXK@Z 0046ac40 f groups.obj - 0001:00069cb0 ?PagNew@AG@@SGPAV1@JJJ@Z 0046acb0 f groups.obj - 0001:00069e00 ??0AG@@IAE@J@Z 0046ae00 f groups.obj - 0001:00069e40 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 0046ae40 f groups.obj - 0001:0006a010 ?FAdd@AG@@UAEHJPAJPAX1@Z 0046b010 f groups.obj - 0001:0006a3a0 ?Delete@AG@@UAEXJ@Z 0046b3a0 f groups.obj - 0001:0006a550 ?AssertValid@AG@@QAEXK@Z 0046b550 f groups.obj - 0001:0006a5c0 ??_GGRPB@@UAEPAXI@Z 0046b5c0 f groups.obj - 0001:0006a5c0 ??_EGRPB@@UAEPAXI@Z 0046b5c0 f groups.obj - 0001:0006a600 ??_EGG@@UAEPAXI@Z 0046b600 f groups.obj - 0001:0006a600 ??_GGG@@UAEPAXI@Z 0046b600 f groups.obj - 0001:0006a640 ??_EAG@@UAEPAXI@Z 0046b640 f groups.obj - 0001:0006a640 ??_GAG@@UAEPAXI@Z 0046b640 f groups.obj - 0001:0006a680 ??_EGLB@@UAEPAXI@Z 0046b680 f groups.obj - 0001:0006a680 ??_GGLB@@UAEPAXI@Z 0046b680 f groups.obj - 0001:0006a6c0 ??_GGL@@UAEPAXI@Z 0046b6c0 f groups.obj - 0001:0006a6c0 ??_EGL@@UAEPAXI@Z 0046b6c0 f groups.obj - 0001:0006a700 ??_EAL@@UAEPAXI@Z 0046b700 f groups.obj - 0001:0006a700 ??_GAL@@UAEPAXI@Z 0046b700 f groups.obj - 0001:0006a740 ??_GGGB@@UAEPAXI@Z 0046b740 f groups.obj - 0001:0006a740 ??_EGGB@@UAEPAXI@Z 0046b740 f groups.obj - 0001:0006a780 ??1GGB@@UAE@XZ 0046b780 f groups.obj - 0001:0006a7b0 ??1GG@@UAE@XZ 0046b7b0 f groups.obj - 0001:0006a7e0 ??1AG@@UAE@XZ 0046b7e0 f groups.obj - 0001:0006a810 ??1AL@@UAE@XZ 0046b810 f groups.obj - 0001:0006a840 ?FWouldBe@GSTB@@SGHJ@Z 0046b840 f groups2.obj - 0001:0006a880 ?FIs@GSTB@@UAEHJ@Z 0046b880 f groups2.obj - 0001:0006a8b0 ?Cls@GSTB@@UAEJXZ 0046b8b0 f groups2.obj - 0001:0006a8e0 ?FWouldBe@GST@@SGHJ@Z 0046b8e0 f groups2.obj - 0001:0006a920 ?FIs@GST@@UAEHJ@Z 0046b920 f groups2.obj - 0001:0006a950 ?Cls@GST@@UAEJXZ 0046b950 f groups2.obj - 0001:0006a980 ??0GSTB@@IAE@JK@Z 0046b980 f groups2.obj - 0001:0006aa80 ?CbOnFile@GSTB@@UAEJXZ 0046ba80 f groups2.obj - 0001:0006aaf0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 0046baf0 f groups2.obj - 0001:0006adc0 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 0046bdc0 f groups2.obj - 0001:0006b120 ?FEnsureSpace@GSTB@@QAEHJJK@Z 0046c120 f groups2.obj - 0001:0006b260 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 0046c260 f groups2.obj - 0001:0006b330 ?FPutRgch@GSTB@@QAEHJPADJ@Z 0046c330 f groups2.obj - 0001:0006b500 ?FPutStn@GSTB@@QAEHJPAVSTN@@@Z 0046c500 f groups2.obj - 0001:0006b5d0 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 0046c5d0 f groups2.obj - 0001:0006b6e0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 0046c6e0 f groups2.obj - 0001:0006b7f0 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 0046c7f0 f groups2.obj - 0001:0006b8c0 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 0046c8c0 f groups2.obj - 0001:0006ba30 ?FFindExtra@GSTB@@QAEHPAXPAVSTN@@PAJ@Z 0046ca30 f groups2.obj - 0001:0006bbf0 ?GetExtra@GSTB@@QAEXJPAX@Z 0046cbf0 f groups2.obj - 0001:0006bd00 ?PutExtra@GSTB@@QAEXJPAX@Z 0046cd00 f groups2.obj - 0001:0006be40 ?_Qst@GSTB@@IAEPADJ@Z 0046ce40 f groups2.obj - 0001:0006bea0 ?_AppendRgch@GSTB@@IAEXPADJ@Z 0046cea0 f groups2.obj - 0001:0006bf60 ?_RemoveSt@GSTB@@IAEXJ@Z 0046cf60 f groups2.obj - 0001:0006c090 ?_SwapBytesRgbst@GSTB@@IAEXXZ 0046d090 f groups2.obj - 0001:0006c120 ?_TranslateGrst@GSTB@@IAEXFH@Z 0046d120 f groups2.obj - 0001:0006c1e0 ?_FTranslateGrst@GSTB@@IAEHF@Z 0046d1e0 f groups2.obj - 0001:0006c5a0 ?CchTotSt@@YGJPAD@Z 0046d5a0 f groups2.obj - 0001:0006c5d0 ?FFree@GSTB@@UAEHJ@Z 0046d5d0 f groups2.obj - 0001:0006c6a0 ?TranslateSt@@YGXPADFH@Z 0046d6a0 f groups2.obj - 0001:0006c6d0 ?AssertValid@GSTB@@QAEXK@Z 0046d6d0 f groups2.obj - 0001:0006c9b0 ?PgstNew@GST@@SGPAV1@JJJ@Z 0046d9b0 f groups2.obj - 0001:0006cb40 ?SetSt@STN@@QAEXPAD@Z 0046db40 f groups2.obj - 0001:0006cb80 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 0046db80 f groups2.obj - 0001:0006cd40 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 0046dd40 f groups2.obj - 0001:0006ce30 ?FFindRgch@GST@@UAEHPADJPAJK@Z 0046de30 f groups2.obj - 0001:0006cfe0 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 0046dfe0 f groups2.obj - 0001:0006d1e0 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 0046e1e0 f groups2.obj - 0001:0006d2d0 ?Delete@GST@@UAEXJ@Z 0046e2d0 f groups2.obj - 0001:0006d400 ?Move@GST@@QAEXJJ@Z 0046e400 f groups2.obj - 0001:0006d4c0 ?AssertValid@GST@@QAEXK@Z 0046e4c0 f groups2.obj - 0001:0006d530 ?_Bst@GSTB@@IAEJJ@Z 0046e530 f groups2.obj - 0001:0006d570 ?_Qbst@GSTB@@IAEPAJJ@Z 0046e570 f groups2.obj - 0001:0006d5b0 ??0GST@@IAE@J@Z 0046e5b0 f groups2.obj - 0001:0006d610 ??_EGST@@UAEPAXI@Z 0046e610 f groups2.obj - 0001:0006d610 ??_GGST@@UAEPAXI@Z 0046e610 f groups2.obj - 0001:0006d650 ??_GGSTB@@UAEPAXI@Z 0046e650 f groups2.obj - 0001:0006d650 ??_EGSTB@@UAEPAXI@Z 0046e650 f groups2.obj - 0001:0006d690 ??1GSTB@@UAE@XZ 0046e690 f groups2.obj - 0001:0006d6c0 ??1GST@@UAE@XZ 0046e6c0 f groups2.obj - 0001:0006d6f0 ?FWouldBe@CFL@@SGHJ@Z 0046e6f0 f chunk.obj - 0001:0006d730 ?FIs@CFL@@UAEHJ@Z 0046e730 f chunk.obj - 0001:0006d760 ?Cls@CFL@@UAEJXZ 0046e760 f chunk.obj - 0001:0006d790 ?FWouldBe@CGE@@SGHJ@Z 0046e790 f chunk.obj - 0001:0006d7d0 ?FIs@CGE@@UAEHJ@Z 0046e7d0 f chunk.obj - 0001:0006d800 ?Cls@CGE@@UAEJXZ 0046e800 f chunk.obj - 0001:0006d830 ??0CFL@@AAE@XZ 0046e830 f chunk.obj - 0001:0006d8a0 ??1CFL@@EAE@XZ 0046e8a0 f chunk.obj - 0001:0006da30 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 0046ea30 f chunk.obj - 0001:0006dcc0 ?FReopen@CFL@@QAEHXZ 0046ecc0 f chunk.obj - 0001:0006e050 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 0046f050 f chunk.obj - 0001:0006e0a0 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 0046f0a0 f chunk.obj - 0001:0006e310 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 0046f310 f chunk.obj - 0001:0006e430 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 0046f430 f chunk.obj - 0001:0006e560 ?PcflReadForestFromFlo@CFL@@SGPAV1@PAUFLO@@H@Z 0046f560 f chunk.obj - 0001:0006ead0 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 0046fad0 f chunk.obj - 0001:0006eb20 ?SetCb@CRPSM@@QAEXJ@Z 0046fb20 f chunk.obj - 0001:0006eb60 ?FForest@CFL@@QAEHKK@Z 0046fb60 f chunk.obj - 0001:0006ec70 ?Grfcrp@CRPSM@@QAEKK@Z 0046fc70 f chunk.obj - 0001:0006eca0 ?ClearGrfcrp@CRPSM@@QAEXK@Z 0046fca0 f chunk.obj - 0001:0006ecd0 ?SetGrfcrp@CRPSM@@QAEXK@Z 0046fcd0 f chunk.obj - 0001:0006ed00 ?PcflReadForest@CFL@@QAEPAV1@KKH@Z 0046fd00 f chunk.obj - 0001:0006edf0 ?FSetGrfcfl@CFL@@QAEHKK@Z 0046fdf0 f chunk.obj - 0001:0006ef40 ?ElError@CFL@@QAEJXZ 0046ff40 f chunk.obj - 0001:0006efc0 ?ResetEl@CFL@@QAEXJ@Z 0046ffc0 f chunk.obj - 0001:0006f070 ?Release@CFL@@UAEXXZ 00470070 f chunk.obj - 0001:0006f150 ?AssertValid@CFL@@QAEXK@Z 00470150 f chunk.obj - 0001:0006ff20 ?CbRgch@CRPSM@@QAEJJ@Z 00470f20 f chunk.obj - 0001:0006ff50 ?BvRgch@CRPSM@@QAEJXZ 00470f50 f chunk.obj - 0001:0006ff80 ?Cb@CRPSM@@QAEJXZ 00470f80 f chunk.obj - 0001:0006ffb0 ?SuspendAssertValid@@YGXXZ 00470fb0 f chunk.obj - 0001:00070000 ?ResumeAssertValid@@YGXXZ 00471000 f chunk.obj - 0001:00070030 ?ElError@FIL@@QAEJXZ 00471030 f chunk.obj - 0001:00070060 ?SetEl@FIL@@QAEXJ@Z 00471060 f chunk.obj - 0001:00070090 ?GrffilCur@FIL@@QAEKXZ 00471090 f chunk.obj - 0001:000700c0 ?MarkMem@CFL@@UAEXXZ 004710c0 f chunk.obj - 0001:00070190 ?_TValidIndex@CFL@@AAEHXZ 00471190 f chunk.obj - 0001:000706c0 ?_FReadIndex@CFL@@AAEHXZ 004716c0 f chunk.obj - 0001:000713d0 ?BvRgch@CRPBG@@QAEJXZ 004723d0 f chunk.obj - 0001:00071400 ?CbRgch@CRPBG@@QAEJJ@Z 00472400 f chunk.obj - 0001:00071430 ?Grfcrp@CRPBG@@QAEKK@Z 00472430 f chunk.obj - 0001:00071460 ?ClearGrfcrp@CRPBG@@QAEXK@Z 00472460 f chunk.obj - 0001:00071490 ?SetGrfcrp@CRPBG@@QAEXK@Z 00472490 f chunk.obj - 0001:000714c0 ?Cb@CRPBG@@QAEJXZ 004724c0 f chunk.obj - 0001:000714f0 ?_ReadFreeMap@CFL@@AAEXXZ 004724f0 f chunk.obj - 0001:000716e0 ?FSave@CFL@@QAEHKPAVFNI@@@Z 004726e0 f chunk.obj - 0001:00071f30 ?FTemp@FIL@@QAEHXZ 00472f30 f chunk.obj - 0001:00071f70 ?GetFni@CFL@@QAEXPAVFNI@@@Z 00472f70 f chunk.obj - 0001:00071fa0 ?GetFni@FIL@@QAEXPAVFNI@@@Z 00472fa0 f chunk.obj - 0001:00071fd0 ?_FWriteIndex@CFL@@AAEHK@Z 00472fd0 f chunk.obj - 0001:00072330 ?FEnsureOnExtra@CFL@@QAEHKK@Z 00473330 f chunk.obj - 0001:000723b0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 004733b0 f chunk.obj - 0001:00072530 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00473530 f chunk.obj - 0001:00072680 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00473680 f chunk.obj - 0001:00072760 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00473760 f chunk.obj - 0001:00072830 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 00473830 f chunk.obj - 0001:000728e0 ?FReadHq@BLCK@@QAEHPAPAXH@Z 004738e0 f chunk.obj - 0001:00072920 ?SetPacked@CFL@@QAEXKKH@Z 00473920 f chunk.obj - 0001:00072a60 ?FPacked@CFL@@QAEHKK@Z 00473a60 f chunk.obj - 0001:00072b70 ?_FCreateExtra@CFL@@AAEHXZ 00473b70 f chunk.obj - 0001:00072c50 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00473c50 f chunk.obj - 0001:00072f90 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00473f90 f chunk.obj - 0001:00073130 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00474130 f chunk.obj - 0001:00073240 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00474240 f chunk.obj - 0001:00073390 ?FAddPv@CFL@@QAEHPAXJKPAK@Z 00474390 f chunk.obj - 0001:000734b0 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 004744b0 f chunk.obj - 0001:00073640 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 00474640 f chunk.obj - 0001:00073770 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00474770 f chunk.obj - 0001:000739a0 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 004749a0 f chunk.obj - 0001:00073a40 ?FPutPv@CFL@@QAEHPAXJKK@Z 00474a40 f chunk.obj - 0001:00073ac0 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 00474ac0 f chunk.obj - 0001:00073bc0 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00474bc0 f chunk.obj - 0001:000740c0 ?FWrite@FLO@@QAEHPAX@Z 004750c0 f chunk.obj - 0001:00074100 ?Move@CFL@@QAEXKKKK@Z 00475100 f chunk.obj - 0001:00074410 ?Delete@CFL@@QAEXKK@Z 00475410 f chunk.obj - 0001:00074720 ?SetLoner@CFL@@QAEXKKH@Z 00475720 f chunk.obj - 0001:00074810 ?CckiRef@CFL@@QAEJKK@Z 00475810 f chunk.obj - 0001:000748d0 ?TIsDescendent@CFL@@QAEHKKKK@Z 004758d0 f chunk.obj - 0001:000749f0 ?DeleteChild@CFL@@QAEXKKKKK@Z 004759f0 f chunk.obj - 0001:00074b80 ?_FDecRefCount@CFL@@AAEHJ@Z 00475b80 f chunk.obj - 0001:00074c60 ?_DeleteCore@CFL@@AAEXJ@Z 00475c60 f chunk.obj - 0001:00074d20 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00475d20 f chunk.obj - 0001:000752e0 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 004762e0 f chunk.obj - 0001:00075410 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 00476410 f chunk.obj - 0001:000755b0 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 004765b0 f chunk.obj - 0001:000756c0 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 004766c0 f chunk.obj - 0001:00075840 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00476840 f chunk.obj - 0001:00075990 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 00476990 f chunk.obj - 0001:00075c30 ?ChangeChid@CFL@@QAEXKKKKKK@Z 00476c30 f chunk.obj - 0001:00075dc0 ?CckiCtg@CFL@@QAEJK@Z 00476dc0 f chunk.obj - 0001:00075e70 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 00476e70 f chunk.obj - 0001:00076050 ?Ckid@CFL@@QAEJKK@Z 00477050 f chunk.obj - 0001:00076110 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00477110 f chunk.obj - 0001:000762f0 ?FGetKidChid@CFL@@QAEHKKKPAUKID@@@Z 004772f0 f chunk.obj - 0001:00076360 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00477360 f chunk.obj - 0001:00076410 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00477410 f chunk.obj - 0001:00076650 ?FGetIkid@CFL@@QAEHKKKKKPAJ@Z 00477650 f chunk.obj - 0001:00076720 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00477720 f chunk.obj - 0001:00076900 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 00477900 f chunk.obj - 0001:00076ac0 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 00477ac0 f chunk.obj - 0001:00076bc0 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 00477bc0 f chunk.obj - 0001:00077480 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 00478480 f chunk.obj - 0001:00077830 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 00478830 f chunk.obj - 0001:00077950 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 00478950 f chunk.obj - 0001:00077990 ?FClone@CFL@@QAEHKKPAV1@PAK@Z 00478990 f chunk.obj - 0001:000779d0 ?_Rti@CFL@@AAEJKK@Z 004789d0 f chunk.obj - 0001:00077a40 ?_FSetRti@CFL@@AAEHKKJ@Z 00478a40 f chunk.obj - 0001:00077b60 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00478b60 f chunk.obj - 0001:00077d20 ??0CGE@@QAE@XZ 00478d20 f chunk.obj - 0001:00077da0 ??1CGE@@UAE@XZ 00478da0 f chunk.obj - 0001:00077e30 ?AssertValid@CGE@@QAEXK@Z 00478e30 f chunk.obj - 0001:00077f60 ?MarkMem@CGE@@UAEXXZ 00478f60 f chunk.obj - 0001:00077fd0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00478fd0 f chunk.obj - 0001:00078120 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00479120 f chunk.obj - 0001:00078560 ??_GCFL@@EAEPAXI@Z 00479560 f chunk.obj - 0001:00078560 ??_ECFL@@EAEPAXI@Z 00479560 f chunk.obj - 0001:000785a0 ??_ECGE@@UAEPAXI@Z 004795a0 f chunk.obj - 0001:000785a0 ??_GCGE@@UAEPAXI@Z 004795a0 f chunk.obj - 0001:000785e0 ?FWouldBe@CODM@@SGHJ@Z 004795e0 f codec.obj - 0001:00078620 ?FIs@CODM@@UAEHJ@Z 00479620 f codec.obj - 0001:00078650 ?Cls@CODM@@UAEJXZ 00479650 f codec.obj - 0001:00078680 ?FWouldBe@CODC@@SGHJ@Z 00479680 f codec.obj - 0001:000786c0 ?FIs@CODC@@UAEHJ@Z 004796c0 f codec.obj - 0001:000786f0 ?Cls@CODC@@UAEJXZ 004796f0 f codec.obj - 0001:00078720 ??0CODM@@QAE@PAVCODC@@J@Z 00479720 f codec.obj - 0001:00078820 ??1CODM@@UAE@XZ 00479820 f codec.obj - 0001:00078940 ?AssertValid@CODM@@QAEXK@Z 00479940 f codec.obj - 0001:00078a10 ?MarkMem@CODM@@UAEXXZ 00479a10 f codec.obj - 0001:00078b00 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00479b00 f codec.obj - 0001:00078c10 ?FCanDo@CODM@@UAEHJH@Z 00479c10 f codec.obj - 0001:00078c80 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00479c80 f codec.obj - 0001:00078db0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00479db0 f codec.obj - 0001:00078ef0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00479ef0 f codec.obj - 0001:000790e0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0047a0e0 f codec.obj - 0001:00079410 ??_GCODM@@UAEPAXI@Z 0047a410 f codec.obj - 0001:00079410 ??_ECODM@@UAEPAXI@Z 0047a410 f codec.obj - 0001:00079450 ?FWouldBe@KCDC@@SGHJ@Z 0047a450 f codkauai.obj - 0001:00079490 ?FIs@KCDC@@UAEHJ@Z 0047a490 f codkauai.obj - 0001:000794c0 ?Cls@KCDC@@UAEJXZ 0047a4c0 f codkauai.obj - 0001:000794f0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0047a4f0 f codkauai.obj - 0001:00079650 ?Set@BITA@@QAEXPAXJ@Z 0047a650 f codkauai.obj - 0001:000796b0 ?FWriteBits@BITA@@QAEHKJ@Z 0047a6b0 f codkauai.obj - 0001:00079850 ?FWriteLogEncoded@BITA@@QAEHK@Z 0047a850 f codkauai.obj - 0001:00079940 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0047a940 f codkauai.obj - 0001:0007a100 ?Ibit@BITA@@QAEJXZ 0047b100 f codkauai.obj - 0001:0007a130 ?Ib@BITA@@QAEJXZ 0047b130 f codkauai.obj - 0001:0007a160 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0047b160 f codkauai.obj - 0001:0007de40 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0047ee40 f codkauai.obj - 0001:0007e760 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0047f760 f codkauai.obj - 0001:00080f50 ?FWouldBe@BACO@@SGHJ@Z 00481f50 f crf.obj - 0001:00080f90 ?FIs@BACO@@UAEHJ@Z 00481f90 f crf.obj - 0001:00080fc0 ?Cls@BACO@@UAEJXZ 00481fc0 f crf.obj - 0001:00080ff0 ?FWouldBe@RCA@@SGHJ@Z 00481ff0 f crf.obj - 0001:00081030 ?FIs@RCA@@UAEHJ@Z 00482030 f crf.obj - 0001:00081060 ?Cls@RCA@@UAEJXZ 00482060 f crf.obj - 0001:00081090 ?FWouldBe@CRF@@SGHJ@Z 00482090 f crf.obj - 0001:000810d0 ?FIs@CRF@@UAEHJ@Z 004820d0 f crf.obj - 0001:00081100 ?Cls@CRF@@UAEJXZ 00482100 f crf.obj - 0001:00081130 ?FWouldBe@CRM@@SGHJ@Z 00482130 f crf.obj - 0001:00081170 ?FIs@CRM@@UAEHJ@Z 00482170 f crf.obj - 0001:000811a0 ?Cls@CRM@@UAEJXZ 004821a0 f crf.obj - 0001:000811d0 ?FWouldBe@CABO@@SGHJ@Z 004821d0 f crf.obj - 0001:00081210 ?FIs@CABO@@UAEHJ@Z 00482210 f crf.obj - 0001:00081240 ?Cls@CABO@@UAEJXZ 00482240 f crf.obj - 0001:00081270 ??0BACO@@IAE@XZ 00482270 f crf.obj - 0001:000812f0 ??1BACO@@MAE@XZ 004822f0 f crf.obj - 0001:000813c0 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 004823c0 f crf.obj - 0001:000814b0 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 004824b0 f crf.obj - 0001:00081520 ?CbOnFile@BACO@@UAEJXZ 00482520 f crf.obj - 0001:00081590 ?AssertValid@BACO@@QAEXK@Z 00482590 f crf.obj - 0001:00081620 ?MarkMem@BACO@@UAEXXZ 00482620 f crf.obj - 0001:00081690 ?Release@BACO@@UAEXXZ 00482690 f crf.obj - 0001:000817f0 ?Detach@BACO@@UAEXXZ 004827f0 f crf.obj - 0001:00081920 ?SetCrep@BACO@@UAEXJ@Z 00482920 f crf.obj - 0001:000819a0 ??0CRF@@IAE@PAVCFL@@J@Z 004829a0 f crf.obj - 0001:00081a90 ??1CRF@@UAE@XZ 00482a90 f crf.obj - 0001:00081bf0 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 00482bf0 f crf.obj - 0001:00081d40 ?SetCbMax@CRF@@QAEXJ@Z 00482d40 f crf.obj - 0001:00081ee0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 00482ee0 f crf.obj - 0001:00082380 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 00483380 f crf.obj - 0001:00082760 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00483760 f crf.obj - 0001:000828b0 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 004838b0 f crf.obj - 0001:00082a00 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 00483a00 f crf.obj - 0001:00082aa0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00483aa0 f crf.obj - 0001:00082c60 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00483c60 f crf.obj - 0001:00082e50 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 00483e50 f crf.obj - 0001:00083020 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00484020 f crf.obj - 0001:000833a0 ?_FPurgeCb@CRF@@IAEHJJ@Z 004843a0 f crf.obj - 0001:00083650 ?AssertValid@CRF@@QAEXK@Z 00484650 f crf.obj - 0001:00083780 ?MarkMem@CRF@@UAEXXZ 00484780 f crf.obj - 0001:00083910 ??1CRM@@UAE@XZ 00484910 f crf.obj - 0001:00083a60 ?PcrmNew@CRM@@SGPAV1@J@Z 00484a60 f crf.obj - 0001:00083b80 ?TLoad@CRM@@UAEHKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 00484b80 f crf.obj - 0001:00083cd0 ?PbacoFetch@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 00484cd0 f crf.obj - 0001:00083e90 ?PbacoFind@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00484e90 f crf.obj - 0001:00083f50 ?FSetCrep@CRM@@UAEHJKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00484f50 f crf.obj - 0001:000840a0 ?PcrfFindChunk@CRM@@UAEPAVCRF@@KKK@Z 004850a0 f crf.obj - 0001:000841e0 ??0CRM@@IAE@XZ 004851e0 f crf.obj - 0001:00084220 ?FAddCfl@CRM@@QAEHPAVCFL@@JPAJ@Z 00485220 f crf.obj - 0001:00084370 ?PcrfGet@CRM@@QAEPAVCRF@@J@Z 00485370 f crf.obj - 0001:00084460 ?AssertValid@CRM@@QAEXK@Z 00485460 f crf.obj - 0001:00084500 ?MarkMem@CRM@@UAEXXZ 00485500 f crf.obj - 0001:00084620 ?MarkMem@CABO@@UAEXXZ 00485620 f crf.obj - 0001:00084690 ??_GCRM@@UAEPAXI@Z 00485690 f crf.obj - 0001:00084690 ??_ECRM@@UAEPAXI@Z 00485690 f crf.obj - 0001:000846d0 ??0RCA@@QAE@XZ 004856d0 f crf.obj - 0001:00084710 ??1RCA@@UAE@XZ 00485710 f crf.obj - 0001:00084740 ??_EBACO@@MAEPAXI@Z 00485740 f crf.obj - 0001:00084740 ??_GBACO@@MAEPAXI@Z 00485740 f crf.obj - 0001:00084780 ??_GCRF@@UAEPAXI@Z 00485780 f crf.obj - 0001:00084780 ??_ECRF@@UAEPAXI@Z 00485780 f crf.obj - 0001:000847c0 ??_GRCA@@UAEPAXI@Z 004857c0 f crf.obj - 0001:000847c0 ??_ERCA@@UAEPAXI@Z 004857c0 f crf.obj - 0001:00084820 ?FWouldBe@FIL@@SGHJ@Z 00485820 f file.obj - 0001:00084860 ?FIs@FIL@@UAEHJ@Z 00485860 f file.obj - 0001:00084890 ?Cls@FIL@@UAEJXZ 00485890 f file.obj - 0001:000848c0 ?FWouldBe@BLCK@@SGHJ@Z 004858c0 f file.obj - 0001:00084900 ?FIs@BLCK@@UAEHJ@Z 00485900 f file.obj - 0001:00084930 ?Cls@BLCK@@UAEJXZ 00485930 f file.obj - 0001:00084960 ??0FIL@@IAE@PAVFNI@@K@Z 00485960 f file.obj - 0001:00084a50 ??1FIL@@MAE@XZ 00485a50 f file.obj - 0001:00084ac0 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00485ac0 f file.obj - 0001:00084ce0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00485ce0 f file.obj - 0001:00084eb0 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00485eb0 f file.obj - 0001:00084fd0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00485fd0 f file.obj - 0001:00085120 ?FSetGrffil@FIL@@QAEHKK@Z 00486120 f file.obj - 0001:00085230 ?Release@FIL@@UAEXXZ 00486230 f file.obj - 0001:00085310 ?SetTemp@FIL@@QAEXH@Z 00486310 f file.obj - 0001:00085390 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 00486390 f file.obj - 0001:00085490 ?ShutDown@FIL@@SGXXZ 00486490 f file.obj - 0001:00085550 ?AssertValid@FIL@@QAEXK@Z 00486550 f file.obj - 0001:00085680 ?_FRangeIn@@YGHJJJ@Z 00486680 f file.obj - 0001:000856e0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 004866e0 f file.obj - 0001:000857b0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 004867b0 f file.obj - 0001:00085880 ?FCopy@FLO@@QAEHPAU1@@Z 00486880 f file.obj - 0001:00085b00 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00486b00 f file.obj - 0001:00085c10 ?FWriteHq@FLO@@QAEHPAXJ@Z 00486c10 f file.obj - 0001:00085cf0 ?FTranslate@FLO@@QAEHF@Z 00486cf0 f file.obj - 0001:00086220 ?AssertValid@FLO@@QAEXK@Z 00487220 f file.obj - 0001:00086320 ??0BLCK@@QAE@PAUFLO@@H@Z 00487320 f file.obj - 0001:00086460 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00487460 f file.obj - 0001:000865a0 ??0BLCK@@QAE@XZ 004875a0 f file.obj - 0001:00086640 ??1BLCK@@UAE@XZ 00487640 f file.obj - 0001:000866a0 ?Set@BLCK@@QAEXPAUFLO@@H@Z 004876a0 f file.obj - 0001:000867c0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 004877c0 f file.obj - 0001:000868f0 ?SetHq@BLCK@@QAEXPAPAXH@Z 004878f0 f file.obj - 0001:000869d0 ?Free@BLCK@@QAEXXZ 004879d0 f file.obj - 0001:00086a80 ?HqFree@BLCK@@QAEPAXH@Z 00487a80 f file.obj - 0001:00086c30 ?Cb@BLCK@@QAEJH@Z 00487c30 f file.obj - 0001:00086cc0 ?FSetTemp@BLCK@@QAEHJH@Z 00487cc0 f file.obj - 0001:00086dc0 ?FMoveMin@BLCK@@QAEHJ@Z 00487dc0 f file.obj - 0001:00086eb0 ?FMoveLim@BLCK@@QAEHJ@Z 00487eb0 f file.obj - 0001:00086fa0 ?FReadHq@FLO@@QAEHPAPAX@Z 00487fa0 f file.obj - 0001:00086fe0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00487fe0 f file.obj - 0001:00087180 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00488180 f file.obj - 0001:00087320 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 00488320 f file.obj - 0001:000874f0 ?FWriteHq@BLCK@@QAEHPAXJH@Z 004884f0 f file.obj - 0001:00087690 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00488690 f file.obj - 0001:00087830 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 00488830 f file.obj - 0001:000879e0 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 004889e0 f file.obj - 0001:00087be0 ?FPacked@BLCK@@QAEHPAJ@Z 00488be0 f file.obj - 0001:00087c80 ?FUnpackData@BLCK@@QAEHXZ 00488c80 f file.obj - 0001:00087eb0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 00488eb0 f file.obj - 0001:00087ee0 ?CbMem@BLCK@@QAEJXZ 00488ee0 f file.obj - 0001:00087f60 ?AssertValid@BLCK@@QAEXK@Z 00488f60 f file.obj - 0001:00088190 ?MarkMem@BLCK@@UAEXXZ 00489190 f file.obj - 0001:00088230 ??_GFIL@@MAEPAXI@Z 00489230 f file.obj - 0001:00088230 ??_EFIL@@MAEPAXI@Z 00489230 f file.obj - 0001:00088270 ??_EBLCK@@UAEPAXI@Z 00489270 f file.obj - 0001:00088270 ??_GBLCK@@UAEPAXI@Z 00489270 f file.obj - 0001:000882b0 ?_HfileOpen@@YGPAXPADHK@Z 004892b0 f filewin.obj - 0001:00088330 ?_FOpen@FIL@@IAEHHK@Z 00489330 f filewin.obj - 0001:00088570 ?_Close@FIL@@IAEXH@Z 00489570 f filewin.obj - 0001:00088690 ?Flush@FIL@@QAEXXZ 00489690 f filewin.obj - 0001:00088720 ?_SetFpPos@FIL@@IAEXJ@Z 00489720 f filewin.obj - 0001:00088820 ?FSetFpMac@FIL@@QAEHJ@Z 00489820 f filewin.obj - 0001:00088960 ?FpMac@FIL@@QAEJXZ 00489960 f filewin.obj - 0001:00088a70 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00489a70 f filewin.obj - 0001:00088c30 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00489c30 f filewin.obj - 0001:00088e00 ?FSwapNames@FIL@@QAEHPAV1@@Z 00489e00 f filewin.obj - 0001:00089290 ?FRename@FIL@@QAEHPAVFNI@@@Z 0048a290 f filewin.obj - 0001:000894c0 ?FWouldBe@FNI@@SGHJ@Z 0048a4c0 f fniwin.obj - 0001:00089500 ?FIs@FNI@@UAEHJ@Z 0048a500 f fniwin.obj - 0001:00089530 ?Cls@FNI@@UAEJXZ 0048a530 f fniwin.obj - 0001:00089560 ?FWouldBe@FNE@@SGHJ@Z 0048a560 f fniwin.obj - 0001:000895a0 ?FIs@FNE@@UAEHJ@Z 0048a5a0 f fniwin.obj - 0001:000895d0 ?Cls@FNE@@UAEJXZ 0048a5d0 f fniwin.obj - 0001:00089600 ?SetNil@FNI@@QAEXXZ 0048a600 f fniwin.obj - 0001:00089660 ??0FNI@@QAE@XZ 0048a660 f fniwin.obj - 0001:000896b0 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 0048a6b0 f fniwin.obj - 0001:00089810 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0048a810 f fniwin.obj - 0001:00089b60 ?FGetUnique@FNI@@QAEHJ@Z 0048ab60 f fniwin.obj - 0001:00089d10 ?FGetTemp@FNI@@QAEHXZ 0048ad10 f fniwin.obj - 0001:00089e50 ?Ftg@FNI@@QAEJXZ 0048ae50 f fniwin.obj - 0001:00089ea0 ?Grfvk@FNI@@QAEKXZ 0048aea0 f fniwin.obj - 0001:0008a0a0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0048b0a0 f fniwin.obj - 0001:0008a260 ?FChangeFtg@FNI@@QAEHJ@Z 0048b260 f fniwin.obj - 0001:0008a3d0 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0048b3d0 f fniwin.obj - 0001:0008a510 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 0048b510 f fniwin.obj - 0001:0008a5d0 ?TExists@FNI@@QAEHXZ 0048b5d0 f fniwin.obj - 0001:0008a810 ?FDelete@FNI@@QAEHXZ 0048b810 f fniwin.obj - 0001:0008a8e0 ?FRename@FNI@@QAEHPAV1@@Z 0048b8e0 f fniwin.obj - 0001:0008aa00 ?FEqual@FNI@@QAEHPAV1@@Z 0048ba00 f fniwin.obj - 0001:0008aac0 ?FDir@FNI@@QAEHXZ 0048bac0 f fniwin.obj - 0001:0008ab30 ?FSameDir@FNI@@QAEHPAV1@@Z 0048bb30 f fniwin.obj - 0001:0008ac70 ?FDownDir@FNI@@QAEHPAVSTN@@K@Z 0048bc70 f fniwin.obj - 0001:0008af50 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 0048bf50 f fniwin.obj - 0001:0008b220 ?AssertValid@FNI@@QAEXK@Z 0048c220 f fniwin.obj - 0001:0008b560 ?_CchExt@FNI@@AAEJXZ 0048c560 f fniwin.obj - 0001:0008b660 ?_SetFtgFromName@FNI@@AAEXXZ 0048c660 f fniwin.obj - 0001:0008b7d0 ?ChsUpper@@YGDD@Z 0048c7d0 f fniwin.obj - 0001:0008b7f0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0048c7f0 f fniwin.obj - 0001:0008b9d0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0048c9d0 f fniwin.obj - 0001:0008bb00 ?FInsertCh@STN@@QAEHJD@Z 0048cb00 f fniwin.obj - 0001:0008bb40 ??0FNE@@QAE@XZ 0048cb40 f fniwin.obj - 0001:0008bc00 ?FEqualUser@STN@@QAEHPAV1@K@Z 0048cc00 f fniwin.obj - 0001:0008bc40 ??1FNE@@UAE@XZ 0048cc40 f fniwin.obj - 0001:0008bcb0 ?_Free@FNE@@AAEXXZ 0048ccb0 f fniwin.obj - 0001:0008bdb0 ?FInit@FNE@@QAEHPAVFNI@@PAJJK@Z 0048cdb0 f fniwin.obj - 0001:0008c0f0 ?FNextFni@FNE@@QAEHPAVFNI@@PAKK@Z 0048d0f0 f fniwin.obj - 0001:0008c970 ?FEqualSz@STN@@QAEHPAD@Z 0048d970 f fniwin.obj - 0001:0008c9b0 ?_FPop@FNE@@AAEHXZ 0048d9b0 f fniwin.obj - 0001:0008ca60 ?AssertValid@FNE@@QAEXK@Z 0048da60 f fniwin.obj - 0001:0008cba0 ?MarkMem@FNE@@UAEXXZ 0048dba0 f fniwin.obj - 0001:0008cc70 ??_GFNI@@UAEPAXI@Z 0048dc70 f fniwin.obj - 0001:0008cc70 ??_EFNI@@UAEPAXI@Z 0048dc70 f fniwin.obj - 0001:0008ccb0 ??_EFNE@@UAEPAXI@Z 0048dcb0 f fniwin.obj - 0001:0008ccb0 ??_GFNE@@UAEPAXI@Z 0048dcb0 f fniwin.obj - 0001:0008ccf0 ??0FES@FNE@@QAE@XZ 0048dcf0 f fniwin.obj - 0001:0008cd20 ??1FES@FNE@@QAE@XZ 0048dd20 f fniwin.obj - 0001:0008cd50 ?FWouldBe@MBMP@@SGHJ@Z 0048dd50 f mbmp.obj - 0001:0008cd90 ?FIs@MBMP@@UAEHJ@Z 0048dd90 f mbmp.obj - 0001:0008cdc0 ?Cls@MBMP@@UAEJXZ 0048ddc0 f mbmp.obj - 0001:0008cdf0 ??1MBMP@@UAE@XZ 0048ddf0 f mbmp.obj - 0001:0008ce60 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 0048de60 f mbmp.obj - 0001:0008cf60 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 0048df60 f mbmp.obj - 0001:0008d680 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 0048e680 f mbmp.obj - 0001:0008d7c0 ?PmbmpRead@MBMP@@SGPAV1@PAVBLCK@@@Z 0048e7c0 f mbmp.obj - 0001:0008dc00 ?CbOnFile@MBMP@@UAEJXZ 0048ec00 f mbmp.obj - 0001:0008dc60 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 0048ec60 f mbmp.obj - 0001:0008ddb0 ?GetRc@MBMP@@QAEXPAVRC@@@Z 0048edb0 f mbmp.obj - 0001:0008de20 ?FPtIn@MBMP@@QAEHJJ@Z 0048ee20 f mbmp.obj - 0001:0008dfc0 ?AssertValid@MBMP@@QAEXK@Z 0048efc0 f mbmp.obj - 0001:0008e110 ?MarkMem@MBMP@@UAEXXZ 0048f110 f mbmp.obj - 0001:0008e150 ?FReadMbmp@MBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0048f150 f mbmp.obj - 0001:0008e300 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0048f300 f mbmp.obj - 0001:0008ece0 ?FWriteBitmap@@YGHPAVFNI@@PAEPAVGL@@JJH@Z 0048fce0 f mbmp.obj - 0001:0008f110 ?BvSubPvs@@YGJPAX0@Z 00490110 f mbmp.obj - 0001:0008f130 ??_GMBMP@@UAEPAXI@Z 00490130 f mbmp.obj - 0001:0008f130 ??_EMBMP@@UAEPAXI@Z 00490130 f mbmp.obj - 0001:0008f170 ??0MBMP@@IAE@XZ 00490170 f mbmp.obj - 0001:0008f2c0 ?FWouldBe@SNDV@@SGHJ@Z 004902c0 f sndm.obj - 0001:0008f300 ?FIs@SNDV@@UAEHJ@Z 00490300 f sndm.obj - 0001:0008f330 ?Cls@SNDV@@UAEJXZ 00490330 f sndm.obj - 0001:0008f360 ?FWouldBe@SNDM@@SGHJ@Z 00490360 f sndm.obj - 0001:0008f3a0 ?FIs@SNDM@@UAEHJ@Z 004903a0 f sndm.obj - 0001:0008f3d0 ?Cls@SNDM@@UAEJXZ 004903d0 f sndm.obj - 0001:0008f400 ?FWouldBe@SNDMQ@@SGHJ@Z 00490400 f sndm.obj - 0001:0008f440 ?FIs@SNDMQ@@UAEHJ@Z 00490440 f sndm.obj - 0001:0008f470 ?Cls@SNDMQ@@UAEJXZ 00490470 f sndm.obj - 0001:0008f4a0 ?FWouldBe@SNQUE@@SGHJ@Z 004904a0 f sndm.obj - 0001:0008f4e0 ?FIs@SNQUE@@UAEHJ@Z 004904e0 f sndm.obj - 0001:0008f510 ?Cls@SNQUE@@UAEJXZ 00490510 f sndm.obj - 0001:0008f540 ?BeginSynch@SNDV@@UAEXXZ 00490540 f sndm.obj - 0001:0008f560 ?EndSynch@SNDV@@UAEXXZ 00490560 f sndm.obj - 0001:0008f580 ??0SNDM@@IAE@XZ 00490580 f sndm.obj - 0001:0008f5c0 ??1SNDM@@UAE@XZ 004905c0 f sndm.obj - 0001:0008f6b0 ?AssertValid@SNDM@@QAEXK@Z 004906b0 f sndm.obj - 0001:0008f740 ?MarkMem@SNDM@@UAEXXZ 00490740 f sndm.obj - 0001:0008f7e0 ?PsndmNew@SNDM@@SGPAV1@XZ 004907e0 f sndm.obj - 0001:0008f8d0 ?_FInit@SNDM@@IAEHXZ 004908d0 f sndm.obj - 0001:0008f990 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 00490990 f sndm.obj - 0001:0008fab0 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 00490ab0 f sndm.obj - 0001:0008fc60 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 00490c60 f sndm.obj - 0001:0008fcd0 ?RemoveSndv@SNDM@@UAEXK@Z 00490cd0 f sndm.obj - 0001:0008fd70 ?FActive@SNDM@@UAEHXZ 00490d70 f sndm.obj - 0001:0008fdd0 ?Activate@SNDM@@UAEXH@Z 00490dd0 f sndm.obj - 0001:0008fec0 ?Suspend@SNDM@@UAEXH@Z 00490ec0 f sndm.obj - 0001:0008ffb0 ?SetVlm@SNDM@@UAEXJ@Z 00490fb0 f sndm.obj - 0001:00090050 ?VlmCur@SNDM@@UAEJXZ 00491050 f sndm.obj - 0001:00090100 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 00491100 f sndm.obj - 0001:00090200 ?Stop@SNDM@@UAEXJ@Z 00491200 f sndm.obj - 0001:000902a0 ?StopAll@SNDM@@UAEXJJ@Z 004912a0 f sndm.obj - 0001:00090340 ?Pause@SNDM@@UAEXJ@Z 00491340 f sndm.obj - 0001:000903e0 ?PauseAll@SNDM@@UAEXJJ@Z 004913e0 f sndm.obj - 0001:00090480 ?Resume@SNDM@@UAEXJ@Z 00491480 f sndm.obj - 0001:00090520 ?ResumeAll@SNDM@@UAEXJJ@Z 00491520 f sndm.obj - 0001:000905c0 ?FPlaying@SNDM@@UAEHJ@Z 004915c0 f sndm.obj - 0001:00090670 ?FPlayingAll@SNDM@@UAEHJJ@Z 00491670 f sndm.obj - 0001:00090720 ?Flush@SNDM@@UAEXXZ 00491720 f sndm.obj - 0001:000907b0 ?BeginSynch@SNDM@@UAEXXZ 004917b0 f sndm.obj - 0001:00090840 ?EndSynch@SNDM@@UAEXXZ 00491840 f sndm.obj - 0001:000908d0 ??1SNDMQ@@UAE@XZ 004918d0 f sndm.obj - 0001:000909c0 ?AssertValid@SNDMQ@@QAEXK@Z 004919c0 f sndm.obj - 0001:00090a50 ?MarkMem@SNDMQ@@UAEXXZ 00491a50 f sndm.obj - 0001:00090af0 ?_FInit@SNDMQ@@MAEHXZ 00491af0 f sndm.obj - 0001:00090ba0 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 00491ba0 f sndm.obj - 0001:00090dc0 ?FActive@SNDMQ@@UAEHXZ 00491dc0 f sndm.obj - 0001:00090e20 ?Activate@SNDMQ@@UAEXH@Z 00491e20 f sndm.obj - 0001:00090f10 ?Suspend@SNDMQ@@UAEXH@Z 00491f10 f sndm.obj - 0001:00091000 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 00492000 f sndm.obj - 0001:00091130 ?Stop@SNDMQ@@UAEXJ@Z 00492130 f sndm.obj - 0001:000911c0 ?StopAll@SNDMQ@@UAEXJJ@Z 004921c0 f sndm.obj - 0001:00091270 ?Pause@SNDMQ@@UAEXJ@Z 00492270 f sndm.obj - 0001:00091300 ?PauseAll@SNDMQ@@UAEXJJ@Z 00492300 f sndm.obj - 0001:000913b0 ?Resume@SNDMQ@@UAEXJ@Z 004923b0 f sndm.obj - 0001:00091440 ?ResumeAll@SNDMQ@@UAEXJJ@Z 00492440 f sndm.obj - 0001:000914f0 ?FPlaying@SNDMQ@@UAEHJ@Z 004924f0 f sndm.obj - 0001:000915a0 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 004925a0 f sndm.obj - 0001:00091660 ?Flush@SNDMQ@@UAEXXZ 00492660 f sndm.obj - 0001:00091750 ??0SNQUE@@IAE@XZ 00492750 f sndm.obj - 0001:00091790 ??1SNQUE@@UAE@XZ 00492790 f sndm.obj - 0001:00091890 ?AssertValid@SNQUE@@QAEXK@Z 00492890 f sndm.obj - 0001:00091950 ?MarkMem@SNQUE@@UAEXXZ 00492950 f sndm.obj - 0001:00091a10 ?_FInit@SNQUE@@MAEHXZ 00492a10 f sndm.obj - 0001:00091ab0 ?_Enter@SNQUE@@MAEXXZ 00492ab0 f sndm.obj - 0001:00091b00 ?_Leave@SNQUE@@MAEXXZ 00492b00 f sndm.obj - 0001:00091b50 ?_Flush@SNQUE@@MAEXXZ 00492b50 f sndm.obj - 0001:00091c20 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 00492c20 f sndm.obj - 0001:00091da0 ?Stop@SNQUE@@QAEXJ@Z 00492da0 f sndm.obj - 0001:00091ea0 ?StopAll@SNQUE@@QAEXJ@Z 00492ea0 f sndm.obj - 0001:00091fb0 ?Pause@SNQUE@@QAEXJ@Z 00492fb0 f sndm.obj - 0001:000920b0 ?PauseAll@SNQUE@@QAEXJ@Z 004930b0 f sndm.obj - 0001:000921d0 ?Resume@SNQUE@@QAEXJ@Z 004931d0 f sndm.obj - 0001:000922d0 ?ResumeAll@SNQUE@@QAEXJ@Z 004932d0 f sndm.obj - 0001:000923e0 ?FPlaying@SNQUE@@QAEHJ@Z 004933e0 f sndm.obj - 0001:000924c0 ?FPlayingAll@SNQUE@@QAEHJ@Z 004934c0 f sndm.obj - 0001:000925a0 ?Flush@SNQUE@@QAEXXZ 004935a0 f sndm.obj - 0001:000925f0 ?LuVolScale@@YGKKJ@Z 004935f0 f sndm.obj - 0001:000926b0 ?LuHighLow@@YGKGG@Z 004936b0 f sndm.obj - 0001:00092810 ??_ESNDM@@UAEPAXI@Z 00493810 f sndm.obj - 0001:00092810 ??_GSNDM@@UAEPAXI@Z 00493810 f sndm.obj - 0001:00092850 ??0SNDV@@QAE@XZ 00493850 f sndm.obj - 0001:00092890 ??1SNDV@@UAE@XZ 00493890 f sndm.obj - 0001:000928c0 ??_ESNDMQ@@UAEPAXI@Z 004938c0 f sndm.obj - 0001:000928c0 ??_GSNDMQ@@UAEPAXI@Z 004938c0 f sndm.obj - 0001:00092900 ??_GSNQUE@@UAEPAXI@Z 00493900 f sndm.obj - 0001:00092900 ??_ESNQUE@@UAEPAXI@Z 00493900 f sndm.obj - 0001:00092940 ??_GSNDV@@UAEPAXI@Z 00493940 f sndm.obj - 0001:00092940 ??_ESNDV@@UAEPAXI@Z 00493940 f sndm.obj - 0001:00092980 ?_SiiAlloc@SNDV@@KGJXZ 00493980 f sndm.obj - 0001:000929a0 ?FWouldBe@SDAM@@SGHJ@Z 004939a0 f sndam.obj - 0001:000929e0 ?FIs@SDAM@@UAEHJ@Z 004939e0 f sndam.obj - 0001:00092a10 ?Cls@SDAM@@UAEJXZ 00493a10 f sndam.obj - 0001:00092a40 ?FWouldBe@CAMS@@SGHJ@Z 00493a40 f sndam.obj - 0001:00092a80 ?FIs@CAMS@@UAEHJ@Z 00493a80 f sndam.obj - 0001:00092ab0 ?Cls@CAMS@@UAEJXZ 00493ab0 f sndam.obj - 0001:00092ae0 ?FWouldBe@AMQUE@@SGHJ@Z 00493ae0 f sndam.obj - 0001:00092b20 ?FIs@AMQUE@@UAEHJ@Z 00493b20 f sndam.obj - 0001:00092b50 ?Cls@AMQUE@@UAEJXZ 00493b50 f sndam.obj - 0001:00092b80 ??0STBL@@IAE@XZ 00493b80 f sndam.obj - 0001:00092be0 ?Write@STBL@@UAGJPBXKPAK@Z 00493be0 f sndam.obj - 0001:00092c10 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 00493c10 f sndam.obj - 0001:00092c30 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00493c30 f sndam.obj - 0001:00092c90 ?Commit@STBL@@UAGJK@Z 00493c90 f sndam.obj - 0001:00092cb0 ?Revert@STBL@@UAGJXZ 00493cb0 f sndam.obj - 0001:00092cd0 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00493cd0 f sndam.obj - 0001:00092cf0 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00493cf0 f sndam.obj - 0001:00092d10 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 00493d10 f sndam.obj - 0001:00092d30 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 00493d30 f sndam.obj - 0001:00092d70 ??1STBL@@IAE@XZ 00493d70 f sndam.obj - 0001:00092db0 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 00493db0 f sndam.obj - 0001:00092e40 ?IsEqualGUID@@YGHABU_GUID@@0@Z 00493e40 f sndam.obj - 0001:00092e80 ?AddRef@STBL@@UAGKXZ 00493e80 f sndam.obj - 0001:00092ed0 ?Release@STBL@@UAGKXZ 00493ed0 f sndam.obj - 0001:00092f60 ?Read@STBL@@UAGJPAXKPAK@Z 00493f60 f sndam.obj - 0001:00093040 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00494040 f sndam.obj - 0001:00093180 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 00494180 f sndam.obj - 0001:000934f0 ?CbMem@STBL@@QAEJXZ 004944f0 f sndam.obj - 0001:00093520 ?AssertValid@STBL@@QAEXK@Z 00494520 f sndam.obj - 0001:000935d0 ?MarkMem@STBL@@UAEXXZ 004945d0 f sndam.obj - 0001:00093620 ??0CAMS@@IAE@XZ 00494620 f sndam.obj - 0001:00093680 ??1CAMS@@UAE@XZ 00494680 f sndam.obj - 0001:00093740 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00494740 f sndam.obj - 0001:000939e0 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 004949e0 f sndam.obj - 0001:00093b70 ?AssertValid@CAMS@@QAEXK@Z 00494b70 f sndam.obj - 0001:00093c30 ?MarkMem@CAMS@@UAEXXZ 00494c30 f sndam.obj - 0001:00093c80 ??0AMNOT@@QAE@XZ 00494c80 f sndam.obj - 0001:00093cd0 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 00494cd0 f sndam.obj - 0001:00093cf0 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 00494cf0 f sndam.obj - 0001:00093d10 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 00494d10 f sndam.obj - 0001:00093d30 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 00494d30 f sndam.obj - 0001:00093d70 ?AssertValid@AMNOT@@QAEXK@Z 00494d70 f sndam.obj - 0001:00093db0 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 00494db0 f sndam.obj - 0001:00093e40 ?AddRef@AMNOT@@UAGKXZ 00494e40 f sndam.obj - 0001:00093e90 ?Release@AMNOT@@UAGKXZ 00494e90 f sndam.obj - 0001:00093f10 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 00494f10 f sndam.obj - 0001:00093f70 ??0AMQUE@@IAE@XZ 00494f70 f sndam.obj - 0001:00093fc0 ??1AMQUE@@UAE@XZ 00494fc0 f sndam.obj - 0001:00094040 ?AssertValid@AMQUE@@QAEXK@Z 00495040 f sndam.obj - 0001:000940a0 ?PamqueNew@AMQUE@@SGPAV1@XZ 004950a0 f sndam.obj - 0001:00094170 ?_FInit@AMQUE@@MAEHXZ 00495170 f sndam.obj - 0001:000942a0 ?_Enter@AMQUE@@MAEXXZ 004952a0 f sndam.obj - 0001:000942d0 ?_Leave@AMQUE@@MAEXXZ 004952d0 f sndam.obj - 0001:00094300 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 00495300 f sndam.obj - 0001:000943c0 ?_Queue@AMQUE@@MAEXJ@Z 004953c0 f sndam.obj - 0001:000946a0 ?FInMemory@CAMS@@QAEHXZ 004956a0 f sndam.obj - 0001:000946d0 ?FInMemory@STBL@@QAEHXZ 004956d0 f sndam.obj - 0001:00094710 ?_PauseQueue@AMQUE@@MAEXJ@Z 00495710 f sndam.obj - 0001:000947e0 ?_ResumeQueue@AMQUE@@MAEXJ@Z 004957e0 f sndam.obj - 0001:00094840 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 00495840 f sndam.obj - 0001:00094950 ??0SDAM@@IAE@XZ 00495950 f sndam.obj - 0001:000949a0 ??1SDAM@@UAE@XZ 004959a0 f sndam.obj - 0001:00094a40 ?AssertValid@SDAM@@QAEXK@Z 00495a40 f sndam.obj - 0001:00094aa0 ?PsdamNew@SDAM@@SGPAV1@J@Z 00495aa0 f sndam.obj - 0001:00094b70 ?FHaveWaveDevice@@YGHK@Z 00495b70 f sndam.obj - 0001:00094c20 ?_FInit@SDAM@@MAEHJ@Z 00495c20 f sndam.obj - 0001:00094e50 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 00495e50 f sndam.obj - 0001:00094ea0 ?_Suspend@SDAM@@MAEXH@Z 00495ea0 f sndam.obj - 0001:00094fb0 ?SetVlm@SDAM@@UAEXJ@Z 00495fb0 f sndam.obj - 0001:00095060 ?VlmCur@SDAM@@UAEJXZ 00496060 f sndam.obj - 0001:000950b0 ?BeginSynch@SDAM@@UAEXXZ 004960b0 f sndam.obj - 0001:00095150 ?EndSynch@SDAM@@UAEXXZ 00496150 f sndam.obj - 0001:00095210 ??0IStream@@QAE@XZ 00496210 f sndam.obj - 0001:00095250 ??_GSTBL@@IAEPAXI@Z 00496250 f sndam.obj - 0001:00095290 ??_GCAMS@@UAEPAXI@Z 00496290 f sndam.obj - 0001:00095290 ??_ECAMS@@UAEPAXI@Z 00496290 f sndam.obj - 0001:000952d0 ??0IAMNotifySink@@QAE@XZ 004962d0 f sndam.obj - 0001:00095310 ??_GAMQUE@@UAEPAXI@Z 00496310 f sndam.obj - 0001:00095310 ??_EAMQUE@@UAEPAXI@Z 00496310 f sndam.obj - 0001:00095350 ??_ESDAM@@UAEPAXI@Z 00496350 f sndam.obj - 0001:00095350 ??_GSDAM@@UAEPAXI@Z 00496350 f sndam.obj - 0001:00095390 ??0SNDMQ@@QAE@XZ 00496390 f sndam.obj - 0001:000953d0 ??0IUnknown@@QAE@XZ 004963d0 f sndam.obj - 0001:00095530 ?FWouldBe@MIDO@@SGHJ@Z 00496530 f mididev.obj - 0001:00095570 ?FIs@MIDO@@UAEHJ@Z 00496570 f mididev.obj - 0001:000955a0 ?Cls@MIDO@@UAEJXZ 004965a0 f mididev.obj - 0001:000955d0 ??0MIDO@@QAE@XZ 004965d0 f mididev.obj - 0001:00095670 ??1MIDO@@UAE@XZ 00496670 f mididev.obj - 0001:00095700 ?_GetSysVol@MIDO@@IAEXXZ 00496700 f mididev.obj - 0001:00095780 ?_SetSysVol@MIDO@@IAEXK@Z 00496780 f mididev.obj - 0001:000957f0 ?_Reset@MIDO@@IAEXXZ 004967f0 f mididev.obj - 0001:000958d0 ?Suspend@MIDO@@QAEXH@Z 004968d0 f mididev.obj - 0001:00095a70 ??_EMIDO@@UAEPAXI@Z 00496a70 f mididev.obj - 0001:00095a70 ??_GMIDO@@UAEPAXI@Z 00496a70 f mididev.obj - 0001:00095bc0 ?FWouldBe@MDWS@@SGHJ@Z 00496bc0 f mididev2.obj - 0001:00095c00 ?FIs@MDWS@@UAEHJ@Z 00496c00 f mididev2.obj - 0001:00095c30 ?Cls@MDWS@@UAEJXZ 00496c30 f mididev2.obj - 0001:00095c60 ?FWouldBe@MSQUE@@SGHJ@Z 00496c60 f mididev2.obj - 0001:00095ca0 ?FIs@MSQUE@@UAEHJ@Z 00496ca0 f mididev2.obj - 0001:00095cd0 ?Cls@MSQUE@@UAEJXZ 00496cd0 f mididev2.obj - 0001:00095d00 ?FWouldBe@MDPS@@SGHJ@Z 00496d00 f mididev2.obj - 0001:00095d40 ?FIs@MDPS@@UAEHJ@Z 00496d40 f mididev2.obj - 0001:00095d70 ?Cls@MDPS@@UAEJXZ 00496d70 f mididev2.obj - 0001:00095da0 ?FWouldBe@MSMIX@@SGHJ@Z 00496da0 f mididev2.obj - 0001:00095de0 ?FIs@MSMIX@@UAEHJ@Z 00496de0 f mididev2.obj - 0001:00095e10 ?Cls@MSMIX@@UAEJXZ 00496e10 f mididev2.obj - 0001:00095e40 ?FWouldBe@MISI@@SGHJ@Z 00496e40 f mididev2.obj - 0001:00095e80 ?FIs@MISI@@UAEHJ@Z 00496e80 f mididev2.obj - 0001:00095eb0 ?Cls@MISI@@UAEJXZ 00496eb0 f mididev2.obj - 0001:00095ee0 ?FWouldBe@WMS@@SGHJ@Z 00496ee0 f mididev2.obj - 0001:00095f20 ?FIs@WMS@@UAEHJ@Z 00496f20 f mididev2.obj - 0001:00095f50 ?Cls@WMS@@UAEJXZ 00496f50 f mididev2.obj - 0001:00095f80 ?FWouldBe@OMS@@SGHJ@Z 00496f80 f mididev2.obj - 0001:00095fc0 ?FIs@OMS@@UAEHJ@Z 00496fc0 f mididev2.obj - 0001:00095ff0 ?Cls@OMS@@UAEJXZ 00496ff0 f mididev2.obj - 0001:00096020 ??0MDPS@@IAE@XZ 00497020 f mididev2.obj - 0001:00096060 ??1MDPS@@UAE@XZ 00497060 f mididev2.obj - 0001:00096110 ?AssertValid@MDPS@@QAEXK@Z 00497110 f mididev2.obj - 0001:000961a0 ?MarkMem@MDPS@@UAEXXZ 004971a0 f mididev2.obj - 0001:000961f0 ?PmdpsNew@MDPS@@SGPAV1@XZ 004971f0 f mididev2.obj - 0001:000962c0 ?_FInit@MDPS@@MAEHXZ 004972c0 f mididev2.obj - 0001:000963c0 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 004973c0 f mididev2.obj - 0001:00096420 ?_Suspend@MDPS@@MAEXH@Z 00497420 f mididev2.obj - 0001:00096480 ?SetVlm@MDPS@@UAEXJ@Z 00497480 f mididev2.obj - 0001:000964e0 ?VlmCur@MDPS@@UAEJXZ 004974e0 f mididev2.obj - 0001:00096530 ??0MDWS@@IAE@XZ 00497530 f mididev2.obj - 0001:00096570 ??1MDWS@@UAE@XZ 00497570 f mididev2.obj - 0001:000965d0 ?AssertValid@MDWS@@QAEXK@Z 004975d0 f mididev2.obj - 0001:00096660 ?MarkMem@MDWS@@UAEXXZ 00497660 f mididev2.obj - 0001:000966b0 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004976b0 f mididev2.obj - 0001:00096860 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 00497860 f mididev2.obj - 0001:000969c0 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 004979c0 f mididev2.obj - 0001:00096c90 ?PvLockData@MDWS@@QAEPAXPAJ@Z 00497c90 f mididev2.obj - 0001:00096d10 ?UnlockData@MDWS@@QAEXXZ 00497d10 f mididev2.obj - 0001:00096d60 ??0MSQUE@@IAE@XZ 00497d60 f mididev2.obj - 0001:00096da0 ??1MSQUE@@UAE@XZ 00497da0 f mididev2.obj - 0001:00096e40 ?AssertValid@MSQUE@@QAEXK@Z 00497e40 f mididev2.obj - 0001:00096ed0 ?MarkMem@MSQUE@@UAEXXZ 00497ed0 f mididev2.obj - 0001:00096f20 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 00497f20 f mididev2.obj - 0001:00097050 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 00498050 f mididev2.obj - 0001:00097160 ?_Enter@MSQUE@@MAEXXZ 00498160 f mididev2.obj - 0001:00097190 ?_Leave@MSQUE@@MAEXXZ 00498190 f mididev2.obj - 0001:000971c0 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004981c0 f mididev2.obj - 0001:00097280 ?_Queue@MSQUE@@MAEXJ@Z 00498280 f mididev2.obj - 0001:000973c0 ?_PauseQueue@MSQUE@@MAEXJ@Z 004983c0 f mididev2.obj - 0001:00097490 ?_ResumeQueue@MSQUE@@MAEXJ@Z 00498490 f mididev2.obj - 0001:000974f0 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 004984f0 f mididev2.obj - 0001:000975b0 ??0MSMIX@@IAE@XZ 004985b0 f mididev2.obj - 0001:00097600 ??1MSMIX@@UAE@XZ 00498600 f mididev2.obj - 0001:000977b0 ?PmsmixNew@MSMIX@@SGPAV1@XZ 004987b0 f mididev2.obj - 0001:00097880 ?_FInit@MSMIX@@IAEHXZ 00498880 f mididev2.obj - 0001:000979b0 ?AssertValid@MSMIX@@QAEXK@Z 004989b0 f mididev2.obj - 0001:00097b60 ?MarkMem@MSMIX@@UAEXXZ 00498b60 f mididev2.obj - 0001:00097c00 ?Suspend@MSMIX@@QAEXH@Z 00498c00 f mididev2.obj - 0001:00097cd0 ?_StopStream@MSMIX@@IAEXXZ 00498cd0 f mididev2.obj - 0001:00097da0 ?SetVlm@MSMIX@@QAEXJ@Z 00498da0 f mididev2.obj - 0001:00097e50 ?VlmCur@MSMIX@@QAEJXZ 00498e50 f mididev2.obj - 0001:00097ea0 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 00498ea0 f mididev2.obj - 0001:00098150 ?Dts@MDWS@@QAEKXZ 00499150 f mididev2.obj - 0001:00098180 ?_Restart@MSMIX@@IAEXH@Z 00499180 f mididev2.obj - 0001:00098270 ?_SubmitBuffers@MSMIX@@IAEXK@Z 00499270 f mididev2.obj - 0001:00098570 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 00499570 f mididev2.obj - 0001:00098ac0 ?BHigh@@YGEF@Z 00499ac0 f mididev2.obj - 0001:00098ae0 ?_MidiProc@MSMIX@@KGXKPAXK@Z 00499ae0 f mididev2.obj - 0001:00098bb0 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 00499bb0 f mididev2.obj - 0001:00098e00 ?_ThreadProc@MSMIX@@KGKPAX@Z 00499e00 f mididev2.obj - 0001:00098e90 ?_LuThread@MSMIX@@IAEKXZ 00499e90 f mididev2.obj - 0001:00099090 ?LuMin@@YGKKK@Z 0049a090 f mididev2.obj - 0001:000990c0 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 0049a0c0 f mididev2.obj - 0001:00099180 ?_Reset@MISI@@IAEXXZ 0049a180 f mididev2.obj - 0001:00099230 ?_GetSysVol@MISI@@IAEXXZ 0049a230 f mididev2.obj - 0001:00099410 ?_SetSysVol@MISI@@IAEXK@Z 0049a410 f mididev2.obj - 0001:00099590 ?_SetSysVlm@MISI@@IAEXXZ 0049a590 f mididev2.obj - 0001:000995d0 ?SetVlm@MISI@@UAEXJ@Z 0049a5d0 f mididev2.obj - 0001:00099650 ?VlmCur@MISI@@UAEJXZ 0049a650 f mididev2.obj - 0001:000996a0 ?FActive@MISI@@UAEHXZ 0049a6a0 f mididev2.obj - 0001:000996e0 ?FActivate@MISI@@UAEHH@Z 0049a6e0 f mididev2.obj - 0001:00099750 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 0049a750 f mididev2.obj - 0001:000997a0 ??1WMS@@UAE@XZ 0049a7a0 f mididev2.obj - 0001:000998d0 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 0049a8d0 f mididev2.obj - 0001:00099970 ?_FInit@WMS@@IAEHXZ 0049a970 f mididev2.obj - 0001:00099c80 ?AssertValid@WMS@@QAEXK@Z 0049ac80 f mididev2.obj - 0001:00099e20 ?MarkMem@WMS@@UAEXXZ 0049ae20 f mididev2.obj - 0001:00099ee0 ?_FOpen@WMS@@MAEHXZ 0049aee0 f mididev2.obj - 0001:0009a050 ?_FClose@WMS@@MAEHXZ 0049b050 f mididev2.obj - 0001:0009a150 ?FActive@WMS@@UAEHXZ 0049b150 f mididev2.obj - 0001:0009a180 ?FActivate@WMS@@UAEHH@Z 0049b180 f mididev2.obj - 0001:0009a1e0 ?_ResetStream@WMS@@IAEXXZ 0049b1e0 f mididev2.obj - 0001:0009a260 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 0049b260 f mididev2.obj - 0001:0009a480 ?_CmhSubmitBuffers@WMS@@IAEJXZ 0049b480 f mididev2.obj - 0001:0009a650 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 0049b650 f mididev2.obj - 0001:0009a720 ?StopPlaying@WMS@@UAEXXZ 0049b720 f mididev2.obj - 0001:0009a7c0 ?_MidiProc@WMS@@KGXPAXKKKK@Z 0049b7c0 f mididev2.obj - 0001:0009a880 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 0049b880 f mididev2.obj - 0001:0009aa80 ?_ThreadProc@WMS@@KGKPAX@Z 0049ba80 f mididev2.obj - 0001:0009ab10 ?_LuThread@WMS@@IAEKXZ 0049bb10 f mididev2.obj - 0001:0009abd0 ?_DoCallBacks@WMS@@IAEXXZ 0049bbd0 f mididev2.obj - 0001:0009acf0 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 0049bcf0 f mididev2.obj - 0001:0009ad40 ??1OMS@@UAE@XZ 0049bd40 f mididev2.obj - 0001:0009ae90 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 0049be90 f mididev2.obj - 0001:0009af30 ?_FInit@OMS@@IAEHXZ 0049bf30 f mididev2.obj - 0001:0009b030 ?AssertValid@OMS@@QAEXK@Z 0049c030 f mididev2.obj - 0001:0009b140 ?MarkMem@OMS@@UAEXXZ 0049c140 f mididev2.obj - 0001:0009b1b0 ?_FOpen@OMS@@MAEHXZ 0049c1b0 f mididev2.obj - 0001:0009b290 ?_FClose@OMS@@MAEHXZ 0049c290 f mididev2.obj - 0001:0009b390 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 0049c390 f mididev2.obj - 0001:0009b530 ?StopPlaying@OMS@@UAEXXZ 0049c530 f mididev2.obj - 0001:0009b5d0 ?_ThreadProc@OMS@@KGKPAX@Z 0049c5d0 f mididev2.obj - 0001:0009b660 ?_LuThread@OMS@@IAEKXZ 0049c660 f mididev2.obj - 0001:0009b970 ?_ReleaseBuffers@OMS@@IAEXXZ 0049c970 f mididev2.obj - 0001:0009ba40 ??_GMDPS@@UAEPAXI@Z 0049ca40 f mididev2.obj - 0001:0009ba40 ??_EMDPS@@UAEPAXI@Z 0049ca40 f mididev2.obj - 0001:0009ba80 ??_EMDWS@@UAEPAXI@Z 0049ca80 f mididev2.obj - 0001:0009ba80 ??_GMDWS@@UAEPAXI@Z 0049ca80 f mididev2.obj - 0001:0009bac0 ??_GMSQUE@@UAEPAXI@Z 0049cac0 f mididev2.obj - 0001:0009bac0 ??_EMSQUE@@UAEPAXI@Z 0049cac0 f mididev2.obj - 0001:0009bb00 ??_GMSMIX@@UAEPAXI@Z 0049cb00 f mididev2.obj - 0001:0009bb00 ??_EMSMIX@@UAEPAXI@Z 0049cb00 f mididev2.obj - 0001:0009bb40 ??_EMISI@@UAEPAXI@Z 0049cb40 f mididev2.obj - 0001:0009bb40 ??_GMISI@@UAEPAXI@Z 0049cb40 f mididev2.obj - 0001:0009bb80 ??_GWMS@@UAEPAXI@Z 0049cb80 f mididev2.obj - 0001:0009bb80 ??_EWMS@@UAEPAXI@Z 0049cb80 f mididev2.obj - 0001:0009bbc0 ??1MISI@@UAE@XZ 0049cbc0 f mididev2.obj - 0001:0009bbf0 ??_GOMS@@UAEPAXI@Z 0049cbf0 f mididev2.obj - 0001:0009bbf0 ??_EOMS@@UAEPAXI@Z 0049cbf0 f mididev2.obj - 0001:0009bc30 ?FWouldBe@MSTP@@SGHJ@Z 0049cc30 f midi.obj - 0001:0009bc70 ?FIs@MSTP@@UAEHJ@Z 0049cc70 f midi.obj - 0001:0009bca0 ?Cls@MSTP@@UAEJXZ 0049cca0 f midi.obj - 0001:0009bcd0 ?FWouldBe@MIDS@@SGHJ@Z 0049ccd0 f midi.obj - 0001:0009bd10 ?FIs@MIDS@@UAEHJ@Z 0049cd10 f midi.obj - 0001:0009bd40 ?Cls@MIDS@@UAEJXZ 0049cd40 f midi.obj - 0001:0009bd70 ??0MSTP@@QAE@XZ 0049cd70 f midi.obj - 0001:0009bde0 ??1MSTP@@UAE@XZ 0049cde0 f midi.obj - 0001:0009be80 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 0049ce80 f midi.obj - 0001:0009c020 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 0049d020 f midi.obj - 0001:0009c560 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 0049d560 f midi.obj - 0001:0009c610 ?AssertValid@MSTP@@QAEXK@Z 0049d610 f midi.obj - 0001:0009c760 ?MarkMem@MSTP@@UAEXXZ 0049d760 f midi.obj - 0001:0009c7b0 ??0MIDS@@IAE@XZ 0049d7b0 f midi.obj - 0001:0009c7f0 ??1MIDS@@UAE@XZ 0049d7f0 f midi.obj - 0001:0009c830 ?AssertValid@MIDS@@QAEXK@Z 0049d830 f midi.obj - 0001:0009c870 ?MarkMem@MIDS@@UAEXXZ 0049d870 f midi.obj - 0001:0009c8b0 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 0049d8b0 f midi.obj - 0001:0009c9f0 ?PmidsReadNative@MIDS@@SGPAV1@PAVFNI@@@Z 0049d9f0 f midi.obj - 0001:0009d3f0 ?BLow@@YGEF@Z 0049e3f0 f midi.obj - 0001:0009d410 ??0RAT@@QAE@XZ 0049e410 f midi.obj - 0001:0009d440 ??9@YGHABVRAT@@0@Z 0049e440 f midi.obj - 0001:0009d480 ?_CbEncodeLu@MIDS@@KGJKPAE@Z 0049e480 f midi.obj - 0001:0009d520 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 0049e520 f midi.obj - 0001:0009d5e0 ?CbOnFile@MIDS@@UAEJXZ 0049e5e0 f midi.obj - 0001:0009d660 ??_EMSTP@@UAEPAXI@Z 0049e660 f midi.obj - 0001:0009d660 ??_GMSTP@@UAEPAXI@Z 0049e660 f midi.obj - 0001:0009d6a0 ??_EMIDS@@UAEPAXI@Z 0049e6a0 f midi.obj - 0001:0009d6a0 ??_GMIDS@@UAEPAXI@Z 0049e6a0 f midi.obj - 0001:0009d6e0 ?IbMac@BSM@@QAEJXZ 0049e6e0 f midi.obj - 0001:0009d820 ?FWouldBe@GVID@@SGHJ@Z 0049e820 f video.obj - 0001:0009d860 ?FIs@GVID@@UAEHJ@Z 0049e860 f video.obj - 0001:0009d890 ?Cls@GVID@@UAEJXZ 0049e890 f video.obj - 0001:0009d8c0 ?FWouldBe@GVDS@@SGHJ@Z 0049e8c0 f video.obj - 0001:0009d900 ?FIs@GVDS@@UAEHJ@Z 0049e900 f video.obj - 0001:0009d930 ?Cls@GVDS@@UAEJXZ 0049e930 f video.obj - 0001:0009d960 ?FWouldBe@GVDW@@SGHJ@Z 0049e960 f video.obj - 0001:0009d9a0 ?FIs@GVDW@@UAEHJ@Z 0049e9a0 f video.obj - 0001:0009d9d0 ?Cls@GVDW@@UAEJXZ 0049e9d0 f video.obj - 0001:0009da20 ?PgvidNew@GVID@@SGPAV1@PAVFNI@@PAVGOB@@HJ@Z 0049ea20 f video.obj - 0001:0009db20 ??0GVID@@IAE@J@Z 0049eb20 f video.obj - 0001:0009db80 ??0GVDS@@IAE@J@Z 0049eb80 f video.obj - 0001:0009dbf0 ??1GVDS@@MAE@XZ 0049ebf0 f video.obj - 0001:0009dcd0 ?_FInit@GVDS@@MAEHPAVFNI@@PAVGOB@@@Z 0049ecd0 f video.obj - 0001:0009dfe0 ?PgvdsNew@GVDS@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 0049efe0 f video.obj - 0001:0009e100 ?NfrMac@GVDS@@UAEJXZ 0049f100 f video.obj - 0001:0009e150 ?NfrCur@GVDS@@UAEJXZ 0049f150 f video.obj - 0001:0009e1a0 ?GotoNfr@GVDS@@UAEXJ@Z 0049f1a0 f video.obj - 0001:0009e210 ?FPlaying@GVDS@@UAEHXZ 0049f210 f video.obj - 0001:0009e260 ?FPlay@GVDS@@UAEHPAVRC@@@Z 0049f260 f video.obj - 0001:0009e330 ?SetRcPlay@GVDS@@UAEXPAVRC@@@Z 0049f330 f video.obj - 0001:0009e3d0 ?Stop@GVDS@@UAEXXZ 0049f3d0 f video.obj - 0001:0009e440 ?FCmdAll@GVDS@@UAEHPAUCMD@@@Z 0049f440 f video.obj - 0001:0009e570 ?Draw@GVDS@@UAEXPAVGNV@@PAVRC@@@Z 0049f570 f video.obj - 0001:0009e670 ?GetRc@GVDS@@UAEXPAVRC@@@Z 0049f670 f video.obj - 0001:0009e6e0 ?AssertValid@GVDS@@QAEXK@Z 0049f6e0 f video.obj - 0001:0009e770 ?PgvdwNew@GVDW@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 0049f770 f video.obj - 0001:0009e890 ??0GVDW@@IAE@J@Z 0049f890 f video.obj - 0001:0009e910 ??1GVDW@@MAE@XZ 0049f910 f video.obj - 0001:0009e9e0 ?_FInit@GVDW@@MAEHPAVFNI@@PAVGOB@@@Z 0049f9e0 f video.obj - 0001:0009ed80 ?NfrMac@GVDW@@UAEJXZ 0049fd80 f video.obj - 0001:0009edd0 ?NfrCur@GVDW@@UAEJXZ 0049fdd0 f video.obj - 0001:0009ee70 ?GotoNfr@GVDW@@UAEXJ@Z 0049fe70 f video.obj - 0001:0009ef10 ?FPlaying@GVDW@@UAEHXZ 0049ff10 f video.obj - 0001:0009eff0 ?FPlay@GVDW@@UAEHPAVRC@@@Z 0049fff0 f video.obj - 0001:0009f0b0 ?SetRcPlay@GVDW@@UAEXPAVRC@@@Z 004a00b0 f video.obj - 0001:0009f150 ?Stop@GVDW@@UAEXXZ 004a0150 f video.obj - 0001:0009f1f0 ?Draw@GVDW@@UAEXPAVGNV@@PAVRC@@@Z 004a01f0 f video.obj - 0001:0009f2b0 ?_SetRc@GVDW@@MAEXXZ 004a02b0 f video.obj - 0001:0009f450 ?GetRc@GVDW@@UAEXPAVRC@@@Z 004a0450 f video.obj - 0001:0009f4c0 ?AssertValid@GVDW@@QAEXK@Z 004a04c0 f video.obj - 0001:0009f5a0 ??_GGVID@@MAEPAXI@Z 004a05a0 f video.obj - 0001:0009f5a0 ??_EGVID@@MAEPAXI@Z 004a05a0 f video.obj - 0001:0009f5e0 ??_EGVDS@@MAEPAXI@Z 004a05e0 f video.obj - 0001:0009f5e0 ??_GGVDS@@MAEPAXI@Z 004a05e0 f video.obj - 0001:0009f620 ??_EGVDW@@MAEPAXI@Z 004a0620 f video.obj - 0001:0009f620 ??_GGVDW@@MAEPAXI@Z 004a0620 f video.obj - 0001:0009f660 ??_9@$BFA@A 004a0660 f video.obj - 0001:0009f780 ??1GVID@@MAE@XZ 004a0780 f video.obj - 0001:0009f7b0 ?Pcmm@GVDS@@MAEPAUCMM@CMH@@XZ 004a07b0 f video.obj - 0001:0009f7e0 ?FWouldBe@SCEB@@SGHJ@Z 004a07e0 f screxe.obj - 0001:0009f820 ?FIs@SCEB@@UAEHJ@Z 004a0820 f screxe.obj - 0001:0009f850 ?Cls@SCEB@@UAEJXZ 004a0850 f screxe.obj - 0001:0009f880 ?FWouldBe@SCPT@@SGHJ@Z 004a0880 f screxe.obj - 0001:0009f8c0 ?FIs@SCPT@@UAEHJ@Z 004a08c0 f screxe.obj - 0001:0009f8f0 ?Cls@SCPT@@UAEJXZ 004a08f0 f screxe.obj - 0001:0009f920 ?FWouldBe@STRG@@SGHJ@Z 004a0920 f screxe.obj - 0001:0009f960 ?FIs@STRG@@UAEHJ@Z 004a0960 f screxe.obj - 0001:0009f990 ?Cls@STRG@@UAEJXZ 004a0990 f screxe.obj - 0001:0009f9e0 ??0SCEB@@QAE@PAVRCA@@PAVSTRG@@@Z 004a09e0 f screxe.obj - 0001:0009fb20 ??1SCEB@@UAE@XZ 004a0b20 f screxe.obj - 0001:0009fbb0 ?Free@SCEB@@UAEXXZ 004a0bb0 f screxe.obj - 0001:0009fd20 ?AssertValid@SCEB@@QAEXK@Z 004a0d20 f screxe.obj - 0001:0009ff90 ?MarkMem@SCEB@@UAEXXZ 004a0f90 f screxe.obj - 0001:000a0040 ?FRunScript@SCEB@@UAEHPAVSCPT@@PAJJ1PAH@Z 004a1040 f screxe.obj - 0001:000a00d0 ?FAttachScript@SCEB@@UAEHPAVSCPT@@PAJJ@Z 004a10d0 f screxe.obj - 0001:000a03d0 ?FResume@SCEB@@UAEHPAJPAH@Z 004a13d0 f screxe.obj - 0001:000a0890 ?_AddParameters@SCEB@@MAEXPAJJ@Z 004a1890 f screxe.obj - 0001:000a0a00 ?_AddStrings@SCEB@@MAEXPAVGST@@@Z 004a1a00 f screxe.obj - 0001:000a0bc0 ?_SwCur@SCEB@@MAEFXZ 004a1bc0 f screxe.obj - 0001:000a0c10 ?_SwMin@SCEB@@MAEFXZ 004a1c10 f screxe.obj - 0001:000a0c60 ?_FExecVarOp@SCEB@@MAEHJPAURTVN@@@Z 004a1c60 f screxe.obj - 0001:000a0f20 ?_FExecOp@SCEB@@MAEHJ@Z 004a1f20 f screxe.obj - 0001:000a19e0 ?_LwPop@SCEB@@IAEJXZ 004a29e0 f screxe.obj - 0001:000a1ab0 ?_QlwGet@SCEB@@IAEPAJJ@Z 004a2ab0 f screxe.obj - 0001:000a1b40 ?_Error@SCEB@@IAEXH@Z 004a2b40 f screxe.obj - 0001:000a1c00 ?_WarnSz@SCEB@@IAAXPADZZ 004a2c00 f screxe.obj - 0001:000a1ce0 ?_Rotate@SCEB@@IAEXJJ@Z 004a2ce0 f screxe.obj - 0001:000a1db0 ?_Reverse@SCEB@@IAEXJ@Z 004a2db0 f screxe.obj - 0001:000a1e70 ?_DupList@SCEB@@IAEXJ@Z 004a2e70 f screxe.obj - 0001:000a1f80 ?_PopList@SCEB@@IAEXJ@Z 004a2f80 f screxe.obj - 0001:000a2070 ?_Select@SCEB@@IAEXJJ@Z 004a3070 f screxe.obj - 0001:000a2130 ?_Match@SCEB@@IAEXJ@Z 004a3130 f screxe.obj - 0001:000a2210 ?_RndList@SCEB@@IAEXJ@Z 004a3210 f screxe.obj - 0001:000a2290 ?_CopySubStr@SCEB@@IAEXJJJJ@Z 004a3290 f screxe.obj - 0001:000a2400 ?_ConcatStrs@SCEB@@IAEXJJJ@Z 004a3400 f screxe.obj - 0001:000a2580 ?_LenStr@SCEB@@IAEXJ@Z 004a3580 f screxe.obj - 0001:000a2650 ?_FReadStringReg@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004a3650 f screxe.obj - 0001:000a28e0 ?_MergeStrings@SCEB@@IAEXKK@Z 004a38e0 f screxe.obj - 0001:000a2bf0 ?_NumToStr@SCEB@@IAEXJJ@Z 004a3bf0 f screxe.obj - 0001:000a2cf0 ?_StrToNum@SCEB@@IAEXJJJ@Z 004a3cf0 f screxe.obj - 0001:000a2e00 ?Ctg@BACO@@QAEKXZ 004a3e00 f screxe.obj - 0001:000a2e30 ?_PushVar@SCEB@@MAEXPAVGL@@PAURTVN@@@Z 004a3e30 f screxe.obj - 0001:000a2f40 ?_AssignVar@SCEB@@MAEXPAPAVGL@@PAURTVN@@J@Z 004a3f40 f screxe.obj - 0001:000a3000 ??0CABO@@QAE@PAVBASE@@@Z 004a4000 f screxe.obj - 0001:000a3040 ?_PglrtvmThis@SCEB@@MAEPAVGL@@XZ 004a4040 f screxe.obj - 0001:000a3090 ?_PpglrtvmThis@SCEB@@MAEPAPAVGL@@XZ 004a4090 f screxe.obj - 0001:000a30b0 ?_PglrtvmGlobal@SCEB@@MAEPAVGL@@XZ 004a40b0 f screxe.obj - 0001:000a3100 ?_PpglrtvmGlobal@SCEB@@MAEPAPAVGL@@XZ 004a4100 f screxe.obj - 0001:000a3120 ?_PglrtvmRemote@SCEB@@MAEPAVGL@@J@Z 004a4120 f screxe.obj - 0001:000a3170 ?_PpglrtvmRemote@SCEB@@MAEPAPAVGL@@J@Z 004a4170 f screxe.obj - 0001:000a31a0 ?FFindRtvm@@YGHPAVGL@@PAURTVN@@PAJ2@Z 004a41a0 f screxe.obj - 0001:000a3360 ?FAssignRtvm@@YGHPAPAVGL@@PAURTVN@@J@Z 004a4360 f screxe.obj - 0001:000a3470 ?_Push@SCEB@@IAEXJ@Z 004a4470 f screxe.obj - 0001:000a34d0 ?FReadScript@SCPT@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004a44d0 f screxe.obj - 0001:000a3600 ?PscptRead@SCPT@@SGPAV1@PAVCFL@@KK@Z 004a4600 f screxe.obj - 0001:000a3840 ??0SCPT@@IAE@XZ 004a4840 f screxe.obj - 0001:000a3880 ??1SCPT@@UAE@XZ 004a4880 f screxe.obj - 0001:000a3930 ?AssertValid@SCPT@@QAEXK@Z 004a4930 f screxe.obj - 0001:000a3a00 ?MarkMem@SCPT@@UAEXXZ 004a4a00 f screxe.obj - 0001:000a3a70 ??0STRG@@QAE@XZ 004a4a70 f screxe.obj - 0001:000a3ae0 ??1STRG@@UAE@XZ 004a4ae0 f screxe.obj - 0001:000a3b70 ?AssertValid@STRG@@QAEXK@Z 004a4b70 f screxe.obj - 0001:000a3be0 ?MarkMem@STRG@@UAEXXZ 004a4be0 f screxe.obj - 0001:000a3c30 ?FPut@STRG@@QAEHJPAVSTN@@@Z 004a4c30 f screxe.obj - 0001:000a3d40 ?FGet@STRG@@QAEHJPAVSTN@@@Z 004a4d40 f screxe.obj - 0001:000a3e30 ?FAdd@STRG@@QAEHPAJPAVSTN@@@Z 004a4e30 f screxe.obj - 0001:000a3f40 ?Delete@STRG@@QAEXJ@Z 004a4f40 f screxe.obj - 0001:000a3fc0 ?FMove@STRG@@QAEHJJ@Z 004a4fc0 f screxe.obj - 0001:000a40b0 ?_FFind@STRG@@IAEHJPAJ@Z 004a50b0 f screxe.obj - 0001:000a41c0 ?_FEnsureGst@STRG@@IAEHXZ 004a51c0 f screxe.obj - 0001:000a4290 ??_ECABO@@UAEPAXI@Z 004a5290 f screxe.obj - 0001:000a4290 ??_GCABO@@UAEPAXI@Z 004a5290 f screxe.obj - 0001:000a42d0 ??1CABO@@UAE@XZ 004a52d0 f screxe.obj - 0001:000a4330 ??_GSCPT@@UAEPAXI@Z 004a5330 f screxe.obj - 0001:000a4330 ??_ESCPT@@UAEPAXI@Z 004a5330 f screxe.obj - 0001:000a4370 ??_ESCEB@@UAEPAXI@Z 004a5370 f screxe.obj - 0001:000a4370 ??_GSCEB@@UAEPAXI@Z 004a5370 f screxe.obj - 0001:000a43b0 ??_ESTRG@@UAEPAXI@Z 004a53b0 f screxe.obj - 0001:000a43b0 ??_GSTRG@@UAEPAXI@Z 004a53b0 f screxe.obj - 0001:000a43f0 ?FWouldBe@DOCB@@SGHJ@Z 004a53f0 f docb.obj - 0001:000a4430 ?FIs@DOCB@@UAEHJ@Z 004a5430 f docb.obj - 0001:000a4460 ?Cls@DOCB@@UAEJXZ 004a5460 f docb.obj - 0001:000a4490 ?FWouldBe@DTE@@SGHJ@Z 004a5490 f docb.obj - 0001:000a44d0 ?FIs@DTE@@UAEHJ@Z 004a54d0 f docb.obj - 0001:000a4500 ?Cls@DTE@@UAEJXZ 004a5500 f docb.obj - 0001:000a4530 ?FWouldBe@DDG@@SGHJ@Z 004a5530 f docb.obj - 0001:000a4570 ?FIs@DDG@@UAEHJ@Z 004a5570 f docb.obj - 0001:000a45a0 ?Cls@DDG@@UAEJXZ 004a55a0 f docb.obj - 0001:000a45d0 ?FWouldBe@DMD@@SGHJ@Z 004a55d0 f docb.obj - 0001:000a4610 ?FIs@DMD@@UAEHJ@Z 004a5610 f docb.obj - 0001:000a4640 ?Cls@DMD@@UAEJXZ 004a5640 f docb.obj - 0001:000a4670 ?FWouldBe@DMW@@SGHJ@Z 004a5670 f docb.obj - 0001:000a46b0 ?FIs@DMW@@UAEHJ@Z 004a56b0 f docb.obj - 0001:000a46e0 ?Cls@DMW@@UAEJXZ 004a56e0 f docb.obj - 0001:000a4710 ?FWouldBe@DSG@@SGHJ@Z 004a5710 f docb.obj - 0001:000a4750 ?FIs@DSG@@UAEHJ@Z 004a5750 f docb.obj - 0001:000a4780 ?Cls@DSG@@UAEJXZ 004a5780 f docb.obj - 0001:000a47b0 ?FWouldBe@DSSP@@SGHJ@Z 004a57b0 f docb.obj - 0001:000a47f0 ?FIs@DSSP@@UAEHJ@Z 004a57f0 f docb.obj - 0001:000a4820 ?Cls@DSSP@@UAEJXZ 004a5820 f docb.obj - 0001:000a4850 ?FWouldBe@DSSM@@SGHJ@Z 004a5850 f docb.obj - 0001:000a4890 ?FIs@DSSM@@UAEHJ@Z 004a5890 f docb.obj - 0001:000a48c0 ?Cls@DSSM@@UAEJXZ 004a58c0 f docb.obj - 0001:000a48f0 ?FWouldBe@UNDB@@SGHJ@Z 004a58f0 f docb.obj - 0001:000a4930 ?FIs@UNDB@@UAEHJ@Z 004a5930 f docb.obj - 0001:000a4980 ?Cls@UNDB@@UAEJXZ 004a5980 f docb.obj - 0001:000a49b0 ??0DOCB@@IAE@PAV0@K@Z 004a59b0 f docb.obj - 0001:000a4b50 ?Release@DOCB@@UAEXXZ 004a5b50 f docb.obj - 0001:000a4d60 ?CloseAllDdg@DOCB@@QAEXXZ 004a5d60 f docb.obj - 0001:000a4e20 ??1DOCB@@MAE@XZ 004a5e20 f docb.obj - 0001:000a5070 ?FQueryCloseAll@DOCB@@SGHK@Z 004a6070 f docb.obj - 0001:000a50e0 ?FQueryClose@DOCB@@UAEHK@Z 004a60e0 f docb.obj - 0001:000a5210 ?_TQuerySave@DOCB@@MAEHH@Z 004a6210 f docb.obj - 0001:000a5280 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 004a6280 f docb.obj - 0001:000a53c0 ?FInternal@DOCB@@QAEHXZ 004a63c0 f docb.obj - 0001:000a5450 ?SetInternal@DOCB@@QAEXH@Z 004a6450 f docb.obj - 0001:000a54c0 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 004a64c0 f docb.obj - 0001:000a54f0 ?FSave@DOCB@@UAEHJ@Z 004a64f0 f docb.obj - 0001:000a56c0 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 004a66c0 f docb.obj - 0001:000a56f0 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 004a66f0 f docb.obj - 0001:000a5730 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 004a6730 f docb.obj - 0001:000a5850 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 004a6850 f docb.obj - 0001:000a5940 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 004a6940 f docb.obj - 0001:000a59f0 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 004a69f0 f docb.obj - 0001:000a5a80 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 004a6a80 f docb.obj - 0001:000a5b80 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 004a6b80 f docb.obj - 0001:000a5c00 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 004a6c00 f docb.obj - 0001:000a5c60 ?ActivateDmd@DOCB@@QAEXXZ 004a6c60 f docb.obj - 0001:000a5d10 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 004a6d10 f docb.obj - 0001:000a5d70 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 004a6d70 f docb.obj - 0001:000a5dd0 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 004a6dd0 f docb.obj - 0001:000a5e30 ?GetName@DOCB@@UAEXPAVSTN@@@Z 004a6e30 f docb.obj - 0001:000a5f90 ?UpdateName@DOCB@@UAEXXZ 004a6f90 f docb.obj - 0001:000a60b0 ?FUndo@DOCB@@UAEHXZ 004a70b0 f docb.obj - 0001:000a6160 ?FRedo@DOCB@@UAEHXZ 004a7160 f docb.obj - 0001:000a6220 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 004a7220 f docb.obj - 0001:000a63f0 ?ClearUndo@DOCB@@UAEXXZ 004a73f0 f docb.obj - 0001:000a6470 ?ClearRedo@DOCB@@UAEXXZ 004a7470 f docb.obj - 0001:000a6520 ?SetCundbMax@DOCB@@UAEXJ@Z 004a7520 f docb.obj - 0001:000a6710 ?CundbMax@DOCB@@UAEJXZ 004a7710 f docb.obj - 0001:000a6760 ?CundbUndo@DOCB@@UAEJXZ 004a7760 f docb.obj - 0001:000a67b0 ?CundbRedo@DOCB@@UAEJXZ 004a77b0 f docb.obj - 0001:000a6800 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 004a7800 f docb.obj - 0001:000a68b0 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 004a78b0 f docb.obj - 0001:000a6920 ?AssertValid@DOCB@@QAEXK@Z 004a7920 f docb.obj - 0001:000a6b60 ?MarkMem@DOCB@@UAEXXZ 004a7b60 f docb.obj - 0001:000a6c50 ??0DTE@@QAE@XZ 004a7c50 f docb.obj - 0001:000a6c90 ?Init@DTE@@QAEXPAVDOCB@@@Z 004a7c90 f docb.obj - 0001:000a6cf0 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 004a7cf0 f docb.obj - 0001:000a6e90 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 004a7e90 f docb.obj - 0001:000a6fb0 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 004a7fb0 f docb.obj - 0001:000a70a0 ??1DDG@@MAE@XZ 004a80a0 f docb.obj - 0001:000a7190 ?_FInit@DDG@@MAEHXZ 004a8190 f docb.obj - 0001:000a71f0 ?Pdmd@DDG@@QAEPAVDMD@@XZ 004a81f0 f docb.obj - 0001:000a7220 ?Activate@DDG@@UAEXH@Z 004a8220 f docb.obj - 0001:000a7380 ?_Activate@DDG@@MAEXH@Z 004a8380 f docb.obj - 0001:000a73e0 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 004a83e0 f docb.obj - 0001:000a7620 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 004a8620 f docb.obj - 0001:000a77b0 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 004a87b0 f docb.obj - 0001:000a77e0 ?_ClearSel@DDG@@MAEXXZ 004a87e0 f docb.obj - 0001:000a7800 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 004a8800 f docb.obj - 0001:000a7830 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 004a8830 f docb.obj - 0001:000a7890 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 004a8890 f docb.obj - 0001:000a78d0 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 004a88d0 f docb.obj - 0001:000a7930 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 004a8930 f docb.obj - 0001:000a79b0 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 004a89b0 f docb.obj - 0001:000a79f0 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 004a89f0 f docb.obj - 0001:000a7b10 ?_Scroll@DDG@@MAEXJJJJ@Z 004a8b10 f docb.obj - 0001:000a7b40 ?_SetScrollValues@DDG@@MAEXXZ 004a8b40 f docb.obj - 0001:000a7c00 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 004a8c00 f docb.obj - 0001:000a7c40 ?_ScvMax@DDG@@MAEJH@Z 004a8c40 f docb.obj - 0001:000a7c70 ?_NewRc@DDG@@MAEXXZ 004a8c70 f docb.obj - 0001:000a7ca0 ?AssertValid@DDG@@QAEXK@Z 004a8ca0 f docb.obj - 0001:000a7e50 ?MarkMem@DDG@@UAEXXZ 004a8e50 f docb.obj - 0001:000a7ea0 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 004a8ea0 f docb.obj - 0001:000a8130 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 004a9130 f docb.obj - 0001:000a81d0 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 004a91d0 f docb.obj - 0001:000a82d0 ?_ActivateHwnd@DMD@@MAEXH@Z 004a92d0 f docb.obj - 0001:000a8360 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 004a9360 f docb.obj - 0001:000a83c0 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 004a93c0 f docb.obj - 0001:000a84c0 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 004a94c0 f docb.obj - 0001:000a85a0 ?Release@DMW@@UAEXXZ 004a95a0 f docb.obj - 0001:000a8690 ?_FInit@DMW@@MAEHXZ 004a9690 f docb.obj - 0001:000a87a0 ?_NewRc@DMW@@MAEXXZ 004a97a0 f docb.obj - 0001:000a8800 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 004a9800 f docb.obj - 0001:000a8c60 ?Cddg@DOCB@@QAEJXZ 004a9c60 f docb.obj - 0001:000a8ca0 ?FDirty@DOCB@@UAEHXZ 004a9ca0 f docb.obj - 0001:000a8d00 ?SetDirty@DOCB@@UAEXH@Z 004a9d00 f docb.obj - 0001:000a8d50 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 004a9d50 f docb.obj - 0001:000a8d80 ?FActive@DDG@@QAEHXZ 004a9d80 f docb.obj - 0001:000a8db0 ?_Qdsed@DMW@@IAEPAUDSED@1@J@Z 004a9db0 f docb.obj - 0001:000a8de0 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 004a9de0 f docb.obj - 0001:000a8e40 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 004a9e40 f docb.obj - 0001:000a9170 ?_IdsedEdge@DMW@@IAEJJJ@Z 004aa170 f docb.obj - 0001:000a92a0 ?_IdsedNext@DMW@@IAEJJJ@Z 004aa2a0 f docb.obj - 0001:000a9390 ?_Layout@DMW@@IAEXJ@Z 004aa390 f docb.obj - 0001:000a9900 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 004aa900 f docb.obj - 0001:000a99e0 ?Cdsg@DMW@@QAEJXZ 004aa9e0 f docb.obj - 0001:000a9ab0 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 004aaab0 f docb.obj - 0001:000a9d10 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 004aad10 f docb.obj - 0001:000a9e80 ?TVert@DMW@@QAEHPAVDSG@@@Z 004aae80 f docb.obj - 0001:000a9f90 ?AssertValid@DMW@@QAEXK@Z 004aaf90 f docb.obj - 0001:000aa5f0 ?MarkMem@DMW@@UAEXXZ 004ab5f0 f docb.obj - 0001:000aa640 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 004ab640 f docb.obj - 0001:000aa810 ??0DSG@@IAE@PAUGCB@@@Z 004ab810 f docb.obj - 0001:000aa880 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 004ab880 f docb.obj - 0001:000aa8b0 ??1DSG@@MAE@XZ 004ab8b0 f docb.obj - 0001:000aa900 ?Pdmw@DSG@@QAEPAVDMW@@XZ 004ab900 f docb.obj - 0001:000aa930 ?_FInit@DSG@@MAEHPAV1@KJ@Z 004ab930 f docb.obj - 0001:000aabc0 ?Pdocb@DMW@@QAEPAVDOCB@@XZ 004abbc0 f docb.obj - 0001:000aabf0 ?DypNormal@DSSP@@SGJXZ 004abbf0 f docb.obj - 0001:000aac10 ?DxpNormal@DSSP@@SGJXZ 004abc10 f docb.obj - 0001:000aac30 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 004abc30 f docb.obj - 0001:000aad80 ?Split@DSG@@UAEXKJ@Z 004abd80 f docb.obj - 0001:000aae40 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 004abe40 f docb.obj - 0001:000aaec0 ?AssertValid@DSG@@QAEXK@Z 004abec0 f docb.obj - 0001:000aaf60 ??0DSSP@@IAE@PAUGCB@@@Z 004abf60 f docb.obj - 0001:000aafc0 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 004abfc0 f docb.obj - 0001:000ab150 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 004ac150 f docb.obj - 0001:000ab1c0 ?MouseDown@DSSP@@UAEXJJJK@Z 004ac1c0 f docb.obj - 0001:000ab3b0 ??0DSSM@@IAE@PAUGCB@@@Z 004ac3b0 f docb.obj - 0001:000ab3f0 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 004ac3f0 f docb.obj - 0001:000ab500 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 004ac500 f docb.obj - 0001:000ab5d0 ?MouseDown@DSSM@@UAEXJJJK@Z 004ac5d0 f docb.obj - 0001:000ab890 ?TVert@DSSM@@QAEHXZ 004ac890 f docb.obj - 0001:000ab8f0 ??_EDOCB@@MAEPAXI@Z 004ac8f0 f docb.obj - 0001:000ab8f0 ??_GDOCB@@MAEPAXI@Z 004ac8f0 f docb.obj - 0001:000ab930 ??1DTE@@UAE@XZ 004ac930 f docb.obj - 0001:000ab960 ??_GDTE@@UAEPAXI@Z 004ac960 f docb.obj - 0001:000ab960 ??_EDTE@@UAEPAXI@Z 004ac960 f docb.obj - 0001:000ab9a0 ??_EDDG@@MAEPAXI@Z 004ac9a0 f docb.obj - 0001:000ab9a0 ??_GDDG@@MAEPAXI@Z 004ac9a0 f docb.obj - 0001:000ab9e0 ??_EDMD@@UAEPAXI@Z 004ac9e0 f docb.obj - 0001:000ab9e0 ??_GDMD@@UAEPAXI@Z 004ac9e0 f docb.obj - 0001:000aba20 ??_EDMW@@UAEPAXI@Z 004aca20 f docb.obj - 0001:000aba20 ??_GDMW@@UAEPAXI@Z 004aca20 f docb.obj - 0001:000aba60 ??0DSED@DMW@@QAE@XZ 004aca60 f docb.obj - 0001:000aba90 ??_EDSG@@MAEPAXI@Z 004aca90 f docb.obj - 0001:000aba90 ??_GDSG@@MAEPAXI@Z 004aca90 f docb.obj - 0001:000abad0 ??_EDSSP@@UAEPAXI@Z 004acad0 f docb.obj - 0001:000abad0 ??_GDSSP@@UAEPAXI@Z 004acad0 f docb.obj - 0001:000abb10 ??_EDSSM@@UAEPAXI@Z 004acb10 f docb.obj - 0001:000abb10 ??_GDSSM@@UAEPAXI@Z 004acb10 f docb.obj - 0001:000abb50 ??1DMD@@UAE@XZ 004acb50 f docb.obj - 0001:000abb80 ??1DMW@@UAE@XZ 004acb80 f docb.obj - 0001:000abbb0 ??1DSSP@@UAE@XZ 004acbb0 f docb.obj - 0001:000abbe0 ??1DSSM@@UAE@XZ 004acbe0 f docb.obj - 0001:000abc10 ??_9@$BIM@A 004acc10 f docb.obj - 0001:000abc20 ??_9@$BLA@A 004acc20 f docb.obj - 0001:000abc30 ??_9@$BLE@A 004acc30 f docb.obj - 0001:000abc40 ??_9@$BLI@A 004acc40 f docb.obj - 0001:000abc50 ??_9@$BLM@A 004acc50 f docb.obj - 0001:000abc60 ?FWouldBe@CLIP@@SGHJ@Z 004acc60 f clip.obj - 0001:000abca0 ?FIs@CLIP@@UAEHJ@Z 004acca0 f clip.obj - 0001:000abcd0 ?Cls@CLIP@@UAEJXZ 004accd0 f clip.obj - 0001:000abd20 ??0CLIP@@QAE@XZ 004acd20 f clip.obj - 0001:000abd90 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 004acd90 f clip.obj - 0001:000abe40 ?Show@CLIP@@QAEXXZ 004ace40 f clip.obj - 0001:000abee0 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 004acee0 f clip.obj - 0001:000ac110 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 004ad110 f clip.obj - 0001:000ac200 ?Import@CLIP@@QAEXXZ 004ad200 f clip.obj - 0001:000ac280 ?_EnsureDoc@CLIP@@IAEXXZ 004ad280 f clip.obj - 0001:000ac490 ?_ImportCur@CLIP@@IAEXXZ 004ad490 f clip.obj - 0001:000ac650 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 004ad650 f clip.obj - 0001:000ac820 ?FInitExport@CLIP@@QAEHXZ 004ad820 f clip.obj - 0001:000ac930 ?PvExport@CLIP@@QAEPAXJJ@Z 004ad930 f clip.obj - 0001:000aca50 ?EndExport@CLIP@@QAEXXZ 004ada50 f clip.obj - 0001:000acad0 ?_ExportCur@CLIP@@IAEXXZ 004adad0 f clip.obj - 0001:000acba0 ?AssertValid@CLIP@@QAEXK@Z 004adba0 f clip.obj - 0001:000acc70 ?MarkMem@CLIP@@UAEXXZ 004adc70 f clip.obj - 0001:000acd30 ??1CLIP@@UAE@XZ 004add30 f clip.obj - 0001:000acd60 ??_GCLIP@@UAEPAXI@Z 004add60 f clip.obj - 0001:000acd60 ??_ECLIP@@UAEPAXI@Z 004add60 f clip.obj - 0001:000aceb0 ?FWouldBe@TXTB@@SGHJ@Z 004adeb0 f rtxt.obj - 0001:000acef0 ?FIs@TXTB@@UAEHJ@Z 004adef0 f rtxt.obj - 0001:000acf20 ?Cls@TXTB@@UAEJXZ 004adf20 f rtxt.obj - 0001:000acf50 ?FWouldBe@TXRD@@SGHJ@Z 004adf50 f rtxt.obj - 0001:000acf90 ?FIs@TXRD@@UAEHJ@Z 004adf90 f rtxt.obj - 0001:000acfc0 ?Cls@TXRD@@UAEJXZ 004adfc0 f rtxt.obj - 0001:000acff0 ?FWouldBe@TXTG@@SGHJ@Z 004adff0 f rtxt.obj - 0001:000ad030 ?FIs@TXTG@@UAEHJ@Z 004ae030 f rtxt.obj - 0001:000ad060 ?Cls@TXTG@@UAEJXZ 004ae060 f rtxt.obj - 0001:000ad090 ?FWouldBe@TXRG@@SGHJ@Z 004ae090 f rtxt.obj - 0001:000ad0d0 ?FIs@TXRG@@UAEHJ@Z 004ae0d0 f rtxt.obj - 0001:000ad100 ?Cls@TXRG@@UAEJXZ 004ae100 f rtxt.obj - 0001:000ad130 ?FWouldBe@RTUN@@SGHJ@Z 004ae130 f rtxt.obj - 0001:000ad170 ?FIs@RTUN@@UAEHJ@Z 004ae170 f rtxt.obj - 0001:000ad1a0 ?Cls@RTUN@@UAEJXZ 004ae1a0 f rtxt.obj - 0001:000ad1d0 ?AssertValid@TXTB@@QAEXK@Z 004ae1d0 f rtxt.obj - 0001:000ad3b0 ?MarkMem@TXTB@@UAEXXZ 004ae3b0 f rtxt.obj - 0001:000ad420 ??0TXTB@@IAE@PAVDOCB@@K@Z 004ae420 f rtxt.obj - 0001:000ad480 ??1TXTB@@MAE@XZ 004ae480 f rtxt.obj - 0001:000ad510 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 004ae510 f rtxt.obj - 0001:000ad750 ?_FLoad@TXTB@@MAEHF@Z 004ae750 f rtxt.obj - 0001:000ad840 ?CpMac@TXTB@@QAEJXZ 004ae840 f rtxt.obj - 0001:000ad8d0 ?SuspendUndo@TXTB@@UAEXXZ 004ae8d0 f rtxt.obj - 0001:000ad920 ?ResumeUndo@TXTB@@UAEXXZ 004ae920 f rtxt.obj - 0001:000ad9b0 ?FSetUndo@TXTB@@UAEHJJJ@Z 004ae9b0 f rtxt.obj - 0001:000ada40 ?CancelUndo@TXTB@@UAEXXZ 004aea40 f rtxt.obj - 0001:000ada70 ?CommitUndo@TXTB@@UAEXXZ 004aea70 f rtxt.obj - 0001:000adaa0 ?BumpCombineUndo@TXTB@@UAEXXZ 004aeaa0 f rtxt.obj - 0001:000adb00 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 004aeb00 f rtxt.obj - 0001:000add50 ?HideSel@TXTB@@UAEXXZ 004aed50 f rtxt.obj - 0001:000addd0 ?SetSel@TXTB@@UAEXJJJ@Z 004aedd0 f rtxt.obj - 0001:000ade60 ?ShowSel@TXTB@@UAEXXZ 004aee60 f rtxt.obj - 0001:000adee0 ?_CacheRange@TXTB@@MAEXJJ@Z 004aeee0 f rtxt.obj - 0001:000ae1f0 ?_InvalCache@TXTB@@MAEXJJJ@Z 004af1f0 f rtxt.obj - 0001:000ae320 ?_ChFetch@TXTB@@MAEDJ@Z 004af320 f rtxt.obj - 0001:000ae3d0 ?FetchRgch@TXTB@@UAEXJJPAD@Z 004af3d0 f rtxt.obj - 0001:000ae4c0 ?FMinPara@TXTB@@QAEHJ@Z 004af4c0 f rtxt.obj - 0001:000ae5f0 ?CpMinPara@TXTB@@QAEJJ@Z 004af5f0 f rtxt.obj - 0001:000ae730 ?CpLimPara@TXTB@@QAEJJ@Z 004af730 f rtxt.obj - 0001:000ae8a0 ?CpPrev@TXTB@@QAEJJH@Z 004af8a0 f rtxt.obj - 0001:000ae9b0 ?LowerRgch@@YGXPADJ@Z 004af9b0 f rtxt.obj - 0001:000ae9d0 ?ChLower@@YGDD@Z 004af9d0 f rtxt.obj - 0001:000ae9f0 ?CpNext@TXTB@@QAEJJH@Z 004af9f0 f rtxt.obj - 0001:000aeb20 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 004afb20 f rtxt.obj - 0001:000aec40 ?SetAcrBack@TXTB@@QAEXVACR@@K@Z 004afc40 f rtxt.obj - 0001:000aed70 ?SetDxpDef@TXTB@@UAEXJ@Z 004afd70 f rtxt.obj - 0001:000aee30 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 004afe30 f rtxt.obj - 0001:000aef60 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 004aff60 f rtxt.obj - 0001:000af150 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 004b0150 f rtxt.obj - 0001:000af2f0 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 004b02f0 f rtxt.obj - 0001:000af3d0 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 004b03d0 f rtxt.obj - 0001:000af4c0 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004b04c0 f rtxt.obj - 0001:000af5a0 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 004b05a0 f rtxt.obj - 0001:000af680 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 004b0680 f rtxt.obj - 0001:000af790 ??0TXRD@@IAE@PAVDOCB@@K@Z 004b0790 f rtxt.obj - 0001:000af7f0 ??1TXRD@@MAE@XZ 004b07f0 f rtxt.obj - 0001:000af8d0 ?IbMac@BSF@@QAEJXZ 004b08d0 f rtxt.obj - 0001:000af900 ?AssertValid@TXRD@@QAEXK@Z 004b0900 f rtxt.obj - 0001:000afaa0 ?MarkMem@TXRD@@UAEXXZ 004b0aa0 f rtxt.obj - 0001:000afb40 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 004b0b40 f rtxt.obj - 0001:000afc20 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 004b0c20 f rtxt.obj - 0001:000afe90 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 004b0e90 f rtxt.obj - 0001:000b0680 ?_FOpenArg@TXRD@@MAEHJEFF@Z 004b1680 f rtxt.obj - 0001:000b0860 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 004b1860 f rtxt.obj - 0001:000b0940 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 004b1940 f rtxt.obj - 0001:000b09a0 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 004b19a0 f rtxt.obj - 0001:000b0c60 ?FSetFni@CFL@@QAEHPAVFNI@@@Z 004b1c60 f rtxt.obj - 0001:000b0c90 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 004b1c90 f rtxt.obj - 0001:000b1170 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 004b2170 f rtxt.obj - 0001:000b11d0 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 004b21d0 f rtxt.obj - 0001:000b1440 ?_SprmFromSpcp@TXRD@@IAEEK@Z 004b2440 f rtxt.obj - 0001:000b1470 ?_CpFromSpcp@TXRD@@IAEJK@Z 004b2470 f rtxt.obj - 0001:000b14a0 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 004b24a0 f rtxt.obj - 0001:000b15d0 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 004b25d0 f rtxt.obj - 0001:000b1ae0 ?_SpcpFromSprmCp@TXRD@@IAEKEJ@Z 004b2ae0 f rtxt.obj - 0001:000b1b20 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 004b2b20 f rtxt.obj - 0001:000b1d80 ?_ReleaseInAg@TXRD@@IAEXJ@Z 004b2d80 f rtxt.obj - 0001:000b1e90 ?_AddRefInAg@TXRD@@IAEXJ@Z 004b2e90 f rtxt.obj - 0001:000b1f80 ?_FSprmInAg@TXRD@@KGHE@Z 004b2f80 f rtxt.obj - 0001:000b2000 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 004b3000 f rtxt.obj - 0001:000b2050 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 004b3050 f rtxt.obj - 0001:000b20a0 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 004b30a0 f rtxt.obj - 0001:000b21d0 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 004b31d0 f rtxt.obj - 0001:000b2300 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 004b3300 f rtxt.obj - 0001:000b2390 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 004b3390 f rtxt.obj - 0001:000b2890 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 004b3890 f rtxt.obj - 0001:000b2c00 ?SwHighLow@@YGFEE@Z 004b3c00 f rtxt.obj - 0001:000b2c30 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 004b3c30 f rtxt.obj - 0001:000b2fc0 ?Clear@CHP@@QAEXXZ 004b3fc0 f rtxt.obj - 0001:000b3000 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 004b4000 f rtxt.obj - 0001:000b31e0 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 004b41e0 f rtxt.obj - 0001:000b3330 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 004b4330 f rtxt.obj - 0001:000b35a0 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 004b45a0 f rtxt.obj - 0001:000b3890 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 004b4890 f rtxt.obj - 0001:000b3b00 ?FSetUndo@TXRD@@UAEHJJJ@Z 004b4b00 f rtxt.obj - 0001:000b3c10 ?CancelUndo@TXRD@@UAEXXZ 004b4c10 f rtxt.obj - 0001:000b3c90 ?CommitUndo@TXRD@@UAEXXZ 004b4c90 f rtxt.obj - 0001:000b3e10 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 004b4e10 f rtxt.obj - 0001:000b3fc0 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 004b4fc0 f rtxt.obj - 0001:000b40a0 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 004b50a0 f rtxt.obj - 0001:000b45f0 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 004b55f0 f rtxt.obj - 0001:000b4880 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 004b5880 f rtxt.obj - 0001:000b4aa0 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 004b5aa0 f rtxt.obj - 0001:000b4bd0 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 004b5bd0 f rtxt.obj - 0001:000b4d20 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 004b5d20 f rtxt.obj - 0001:000b5250 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 004b6250 f rtxt.obj - 0001:000b5610 ?FFetchObject@TXRD@@QAEHJPAJPAPAX0@Z 004b6610 f rtxt.obj - 0001:000b5860 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 004b6860 f rtxt.obj - 0001:000b5b30 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 004b6b30 f rtxt.obj - 0001:000b5d10 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 004b6d10 f rtxt.obj - 0001:000b5e60 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 004b6e60 f rtxt.obj - 0001:000b5f70 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004b6f70 f rtxt.obj - 0001:000b60d0 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004b70d0 f rtxt.obj - 0001:000b61c0 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 004b71c0 f rtxt.obj - 0001:000b63d0 ??1RTUN@@UAE@XZ 004b73d0 f rtxt.obj - 0001:000b6430 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 004b7430 f rtxt.obj - 0001:000b67e0 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 004b77e0 f rtxt.obj - 0001:000b6840 ?FCombine@RTUN@@QAEHPAV1@@Z 004b7840 f rtxt.obj - 0001:000b6ad0 ?AssertValid@RTUN@@QAEXK@Z 004b7ad0 f rtxt.obj - 0001:000b6ba0 ?MarkMem@RTUN@@UAEXXZ 004b7ba0 f rtxt.obj - 0001:000b6c30 ??_ETXTB@@MAEPAXI@Z 004b7c30 f rtxt.obj - 0001:000b6c30 ??_GTXTB@@MAEPAXI@Z 004b7c30 f rtxt.obj - 0001:000b6c70 ??_ETXRD@@MAEPAXI@Z 004b7c70 f rtxt.obj - 0001:000b6c70 ??_GTXRD@@MAEPAXI@Z 004b7c70 f rtxt.obj - 0001:000b6cb0 ??0RTUN@@QAE@XZ 004b7cb0 f rtxt.obj - 0001:000b6cf0 ??0UNDB@@IAE@XZ 004b7cf0 f rtxt.obj - 0001:000b6d30 ??_EUNDB@@UAEPAXI@Z 004b7d30 f rtxt.obj - 0001:000b6d30 ??_GUNDB@@UAEPAXI@Z 004b7d30 f rtxt.obj - 0001:000b6d70 ??_ERTUN@@UAEPAXI@Z 004b7d70 f rtxt.obj - 0001:000b6d70 ??_GRTUN@@UAEPAXI@Z 004b7d70 f rtxt.obj - 0001:000b6db0 ??1UNDB@@UAE@XZ 004b7db0 f rtxt.obj - 0001:000b6de0 ??_9@$BBBE@A 004b7de0 f rtxt.obj - 0001:000b6df0 ??_9@$BBBI@A 004b7df0 f rtxt.obj - 0001:000b6e00 ?AssertValid@CHR@@QAEXK@Z 004b7e00 f rtxt2.obj - 0001:000b6ef0 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 004b7ef0 f rtxt2.obj - 0001:000b72c0 ?GetNextRun@CHR@@QAEXH@Z 004b82c0 f rtxt2.obj - 0001:000b78b0 ?_FFit@CHR@@AAEHXZ 004b88b0 f rtxt2.obj - 0001:000b79a0 ?_SetToBop@CHR@@AAEXXZ 004b89a0 f rtxt2.obj - 0001:000b7b80 ?_SkipIgnores@CHR@@AAEXXZ 004b8b80 f rtxt2.obj - 0001:000b7c80 ?_DoTab@CHR@@AAEXXZ 004b8c80 f rtxt2.obj - 0001:000b7de0 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 004b8de0 f rtxt2.obj - 0001:000b7eb0 ??1TXTG@@MAE@XZ 004b8eb0 f rtxt2.obj - 0001:000b7f80 ?AssertValid@TXTG@@QAEXK@Z 004b8f80 f rtxt2.obj - 0001:000b80e0 ?MarkMem@TXTG@@UAEXXZ 004b90e0 f rtxt2.obj - 0001:000b8160 ?_FInit@TXTG@@MAEHXZ 004b9160 f rtxt2.obj - 0001:000b8390 ?_Activate@TXTG@@MAEXH@Z 004b9390 f rtxt2.obj - 0001:000b8400 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 004b9400 f rtxt2.obj - 0001:000b8760 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 004b9760 f rtxt2.obj - 0001:000b8c50 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 004b9c50 f rtxt2.obj - 0001:000b91e0 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 004ba1e0 f rtxt2.obj - 0001:000b9810 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 004ba810 f rtxt2.obj - 0001:000b9e40 ?FBreak@CHR@@QAEHXZ 004bae40 f rtxt2.obj - 0001:000b9e70 ?GetChrd@CHR@@QAEXPAUCHRD@@0@Z 004bae70 f rtxt2.obj - 0001:000b9f00 ?DypAscent@CHR@@QAEJXZ 004baf00 f rtxt2.obj - 0001:000b9f30 ?DypDescent@CHR@@QAEJXZ 004baf30 f rtxt2.obj - 0001:000b9f60 ?XpBreak@CHR@@QAEJXZ 004baf60 f rtxt2.obj - 0001:000b9f90 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 004baf90 f rtxt2.obj - 0001:000ba090 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 004bb090 f rtxt2.obj - 0001:000ba670 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 004bb670 f rtxt2.obj - 0001:000ba7b0 ?_DxpFromCp@TXTG@@IAEJJJ@Z 004bb7b0 f rtxt2.obj - 0001:000baa10 ?XpMin@CHR@@QAEJXZ 004bba10 f rtxt2.obj - 0001:000baa40 ?FReplace@TXTG@@UAEHPADJJJ@Z 004bba40 f rtxt2.obj - 0001:000bab60 ?InvalCp@TXTG@@UAEXJJJ@Z 004bbb60 f rtxt2.obj - 0001:000bad60 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 004bbd60 f rtxt2.obj - 0001:000baf90 ?GinDefault@GOB@@SGJXZ 004bbf90 f rtxt2.obj - 0001:000bafb0 ?_Scroll@TXTG@@MAEXJJJJ@Z 004bbfb0 f rtxt2.obj - 0001:000bb580 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 004bc580 f rtxt2.obj - 0001:000bb6b0 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 004bc6b0 f rtxt2.obj - 0001:000bb7b0 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 004bc7b0 f rtxt2.obj - 0001:000bbc20 ?Prgch@CHR@@QAEPADXZ 004bcc20 f rtxt2.obj - 0001:000bbc50 ?CpMin@CHR@@QAEJXZ 004bcc50 f rtxt2.obj - 0001:000bbc80 ?FObject@CHR@@QAEHXZ 004bcc80 f rtxt2.obj - 0001:000bbcb0 ?AcrBack@TXTB@@QAE?AVACR@@XZ 004bccb0 f rtxt2.obj - 0001:000bbce0 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 004bcce0 f rtxt2.obj - 0001:000bbd00 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 004bcd00 f rtxt2.obj - 0001:000bc130 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 004bd130 f rtxt2.obj - 0001:000bc240 ?DtsCaret@@YGKXZ 004bd240 f rtxt2.obj - 0001:000bc260 ?GetSel@TXTG@@UAEXPAJ0@Z 004bd260 f rtxt2.obj - 0001:000bc2e0 ?SetSel@TXTG@@UAEXJJJ@Z 004bd2e0 f rtxt2.obj - 0001:000bc500 ?ShowSel@TXTG@@QAEXXZ 004bd500 f rtxt2.obj - 0001:000bc870 ?HideSel@TXTG@@UAEXXZ 004bd870 f rtxt2.obj - 0001:000bc900 ?_SwitchSel@TXTG@@IAEXHJ@Z 004bd900 f rtxt2.obj - 0001:000bca30 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 004bda30 f rtxt2.obj - 0001:000bcbb0 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 004bdbb0 f rtxt2.obj - 0001:000bcec0 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 004bdec0 f rtxt2.obj - 0001:000bd9b0 ?_ScvMax@TXTG@@MAEJH@Z 004be9b0 f rtxt2.obj - 0001:000bda30 ?_DxpDoc@TXTG@@MAEJXZ 004bea30 f rtxt2.obj - 0001:000bda60 ?DxpDef@TXTB@@QAEJXZ 004bea60 f rtxt2.obj - 0001:000bda90 ?SetDxpTab@TXTG@@UAEXJ@Z 004bea90 f rtxt2.obj - 0001:000bdae0 ?SetDxpDoc@TXTG@@UAEXJ@Z 004beae0 f rtxt2.obj - 0001:000bdb60 ?ShowRuler@TXTG@@UAEXH@Z 004beb60 f rtxt2.obj - 0001:000bdd30 ?_DypTrul@TXTG@@MAEJXZ 004bed30 f rtxt2.obj - 0001:000bdd80 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 004bed80 f rtxt2.obj - 0001:000bddd0 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 004bedd0 f rtxt2.obj - 0001:000bde80 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 004bee80 f rtxt2.obj - 0001:000bded0 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 004beed0 f rtxt2.obj - 0001:000bdf00 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 004bef00 f rtxt2.obj - 0001:000bdfc0 ?AssertValid@TXRG@@QAEXK@Z 004befc0 f rtxt2.obj - 0001:000be030 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 004bf030 f rtxt2.obj - 0001:000be070 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 004bf070 f rtxt2.obj - 0001:000be0b0 ?SetDxpTab@TXRG@@UAEXJ@Z 004bf0b0 f rtxt2.obj - 0001:000be200 ?SetSel@TXRG@@UAEXJJJ@Z 004bf200 f rtxt2.obj - 0001:000be330 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 004bf330 f rtxt2.obj - 0001:000be440 ?_EnsureChpIns@TXRG@@IAEXXZ 004bf440 f rtxt2.obj - 0001:000be4d0 ?FReplace@TXRG@@UAEHPADJJJ@Z 004bf4d0 f rtxt2.obj - 0001:000be680 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 004bf680 f rtxt2.obj - 0001:000be7c0 ?_ClearSel@TXRG@@MAEXXZ 004bf7c0 f rtxt2.obj - 0001:000be810 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 004bf810 f rtxt2.obj - 0001:000beac0 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 004bfac0 f rtxt2.obj - 0001:000bed50 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 004bfd50 f rtxt2.obj - 0001:000bee70 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 004bfe70 f rtxt2.obj - 0001:000bf320 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 004c0320 f rtxt2.obj - 0001:000bf3a0 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 004c03a0 f rtxt2.obj - 0001:000bf420 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 004c0420 f rtxt2.obj - 0001:000bf8b0 ??_ETXTG@@MAEPAXI@Z 004c08b0 f rtxt2.obj - 0001:000bf8b0 ??_GTXTG@@MAEPAXI@Z 004c08b0 f rtxt2.obj - 0001:000bf8f0 ??0CHR@@QAE@XZ 004c08f0 f rtxt2.obj - 0001:000bf920 ??_ETXRG@@UAEPAXI@Z 004c0920 f rtxt2.obj - 0001:000bf920 ??_GTXRG@@UAEPAXI@Z 004c0920 f rtxt2.obj - 0001:000bf960 ??1TXRG@@UAE@XZ 004c0960 f rtxt2.obj - 0001:000bf990 ?FWouldBe@CTL@@SGHJ@Z 004c0990 f ctl.obj - 0001:000bf9d0 ?FIs@CTL@@UAEHJ@Z 004c09d0 f ctl.obj - 0001:000bfa00 ?Cls@CTL@@UAEJXZ 004c0a00 f ctl.obj - 0001:000bfa30 ?FWouldBe@SCB@@SGHJ@Z 004c0a30 f ctl.obj - 0001:000bfa70 ?FIs@SCB@@UAEHJ@Z 004c0a70 f ctl.obj - 0001:000bfaa0 ?Cls@SCB@@UAEJXZ 004c0aa0 f ctl.obj - 0001:000bfad0 ?FWouldBe@WSB@@SGHJ@Z 004c0ad0 f ctl.obj - 0001:000bfb10 ?FIs@WSB@@UAEHJ@Z 004c0b10 f ctl.obj - 0001:000bfb40 ?Cls@WSB@@UAEJXZ 004c0b40 f ctl.obj - 0001:000bfb70 ??0CTL@@IAE@PAUGCB@@@Z 004c0b70 f ctl.obj - 0001:000bfbc0 ??1CTL@@MAE@XZ 004c0bc0 f ctl.obj - 0001:000bfc30 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 004c0c30 f ctl.obj - 0001:000bfcd0 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 004c0cd0 f ctl.obj - 0001:000bfd00 ?_NewRc@CTL@@MAEXXZ 004c0d00 f ctl.obj - 0001:000bfde0 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 004c0de0 f ctl.obj - 0001:000bff40 ?DxpNormal@SCB@@SGJXZ 004c0f40 f ctl.obj - 0001:000bff80 ?DypNormal@SCB@@SGJXZ 004c0f80 f ctl.obj - 0001:000bffc0 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 004c0fc0 f ctl.obj - 0001:000c0120 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 004c1120 f ctl.obj - 0001:000c01c0 ?_FCreate@SCB@@IAEHJJJK@Z 004c11c0 f ctl.obj - 0001:000c0390 ?SetValMinMax@SCB@@QAEXJJJH@Z 004c1390 f ctl.obj - 0001:000c0480 ?TrackScroll@SCB@@UAEXJJ@Z 004c1480 f ctl.obj - 0001:000c06f0 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 004c16f0 f ctl.obj - 0001:000c0920 ??_GCTL@@MAEPAXI@Z 004c1920 f ctl.obj - 0001:000c0920 ??_ECTL@@MAEPAXI@Z 004c1920 f ctl.obj - 0001:000c0a70 ?_Hctl@CTL@@IAEPAUHWND__@@XZ 004c1a70 f ctl.obj - 0001:000c0aa0 ??0SCB@@IAE@PAUGCB@@@Z 004c1aa0 f ctl.obj - 0001:000c0ae0 ??_ESCB@@UAEPAXI@Z 004c1ae0 f ctl.obj - 0001:000c0ae0 ??_GSCB@@UAEPAXI@Z 004c1ae0 f ctl.obj - 0001:000c0b20 ??1SCB@@UAE@XZ 004c1b20 f ctl.obj - 0001:000c0b50 ??0WSB@@IAE@PAUGCB@@@Z 004c1b50 f ctl.obj - 0001:000c0b90 ??_EWSB@@UAEPAXI@Z 004c1b90 f ctl.obj - 0001:000c0b90 ??_GWSB@@UAEPAXI@Z 004c1b90 f ctl.obj - 0001:000c0bd0 ??1WSB@@UAE@XZ 004c1bd0 f ctl.obj - 0001:000c0c00 ?FWouldBe@BSM@@SGHJ@Z 004c1c00 f stream.obj - 0001:000c0c40 ?FIs@BSM@@UAEHJ@Z 004c1c40 f stream.obj - 0001:000c0c70 ?Cls@BSM@@UAEJXZ 004c1c70 f stream.obj - 0001:000c0ca0 ?FWouldBe@BSF@@SGHJ@Z 004c1ca0 f stream.obj - 0001:000c0ce0 ?FIs@BSF@@UAEHJ@Z 004c1ce0 f stream.obj - 0001:000c0d10 ?Cls@BSF@@UAEJXZ 004c1d10 f stream.obj - 0001:000c0d40 ??0BSM@@QAE@XZ 004c1d40 f stream.obj - 0001:000c0dc0 ??1BSM@@UAE@XZ 004c1dc0 f stream.obj - 0001:000c0e30 ?SetMinGrow@BSM@@QAEXJ@Z 004c1e30 f stream.obj - 0001:000c0e90 ?FetchRgb@BSM@@QAEXJJPAX@Z 004c1e90 f stream.obj - 0001:000c0f40 ?FReplace@BSM@@QAEHPAXJJJ@Z 004c1f40 f stream.obj - 0001:000c10d0 ?_FEnsureSize@BSM@@IAEHJH@Z 004c20d0 f stream.obj - 0001:000c12a0 ?AssertValid@BSM@@QAEXK@Z 004c22a0 f stream.obj - 0001:000c1350 ?MarkMem@BSM@@UAEXXZ 004c2350 f stream.obj - 0001:000c1390 ??0BSF@@QAE@XZ 004c2390 f stream.obj - 0001:000c1400 ??1BSF@@UAE@XZ 004c2400 f stream.obj - 0001:000c14f0 ?_IfloFind@BSF@@IAEJJPAJ0@Z 004c24f0 f stream.obj - 0001:000c1610 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 004c2610 f stream.obj - 0001:000c1880 ?_AttemptMerge@BSF@@IAEXJJ@Z 004c2880 f stream.obj - 0001:000c1a70 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 004c2a70 f stream.obj - 0001:000c2000 ?FReplace@BSF@@QAEHPAXJJJ@Z 004c3000 f stream.obj - 0001:000c25c0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 004c35c0 f stream.obj - 0001:000c2910 ?FetchRgb@BSF@@QAEXJJPAX@Z 004c3910 f stream.obj - 0001:000c2b10 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 004c3b10 f stream.obj - 0001:000c3030 ?AssertValid@BSF@@QAEXK@Z 004c4030 f stream.obj - 0001:000c32b0 ?MarkMem@BSF@@UAEXXZ 004c42b0 f stream.obj - 0001:000c3340 ??_EBSM@@UAEPAXI@Z 004c4340 f stream.obj - 0001:000c3340 ??_GBSM@@UAEPAXI@Z 004c4340 f stream.obj - 0001:000c3380 ??_GBSF@@UAEPAXI@Z 004c4380 f stream.obj - 0001:000c3380 ??_EBSF@@UAEPAXI@Z 004c4380 f stream.obj - 0001:000c33c0 ?FWouldBe@DLG@@SGHJ@Z 004c43c0 f dlg.obj - 0001:000c3400 ?FIs@DLG@@UAEHJ@Z 004c4400 f dlg.obj - 0001:000c3430 ?Cls@DLG@@UAEJXZ 004c4430 f dlg.obj - 0001:000c3460 ??0DLG@@AAE@J@Z 004c4460 f dlg.obj - 0001:000c34a0 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 004c44a0 f dlg.obj - 0001:000c3550 ?FGetValues@DLG@@QAEHJJ@Z 004c4550 f dlg.obj - 0001:000c3740 ?SetValues@DLG@@QAEXJJ@Z 004c4740 f dlg.obj - 0001:000c3af0 ?IditFromSit@DLG@@QAEJJ@Z 004c4af0 f dlg.obj - 0001:000c3b70 ?_FDitChange@DLG@@AAEHPAJ@Z 004c4b70 f dlg.obj - 0001:000c3c00 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 004c4c00 f dlg.obj - 0001:000c3d90 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 004c4d90 f dlg.obj - 0001:000c4030 ?LwGetRadio@DLG@@QAEJJ@Z 004c5030 f dlg.obj - 0001:000c40f0 ?PutRadio@DLG@@QAEXJJ@Z 004c50f0 f dlg.obj - 0001:000c41c0 ?FGetCheck@DLG@@QAEHJ@Z 004c51c0 f dlg.obj - 0001:000c4280 ?FGetLwFromEdit@DLG@@QAEHJPAJPAH@Z 004c5280 f dlg.obj - 0001:000c43a0 ?FPutLwInEdit@DLG@@QAEHJJ@Z 004c53a0 f dlg.obj - 0001:000c4450 ??_GDLG@@UAEPAXI@Z 004c5450 f dlg.obj - 0001:000c4450 ??_EDLG@@UAEPAXI@Z 004c5450 f dlg.obj - 0001:000c4490 ??1DLG@@UAE@XZ 004c5490 f dlg.obj - 0001:000c45d0 ?GetDit@DLG@@QAEXJPAUDIT@@@Z 004c55d0 f dlg.obj - 0001:000c4600 ?_FInit@DLG@@AAEHXZ 004c5600 f dlgwin.obj - 0001:000c4b80 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 004c5b80 f dlgwin.obj - 0001:000c5050 ?IditDo@DLG@@QAEJJ@Z 004c6050 f dlgwin.obj - 0001:000c50b0 ?SelectDit@DLG@@QAEXJ@Z 004c60b0 f dlgwin.obj - 0001:000c51c0 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 004c61c0 f dlgwin.obj - 0001:000c52e0 ?_SetRadioGroup@DLG@@AAEXJJ@Z 004c62e0 f dlgwin.obj - 0001:000c53c0 ?_FGetCheckBox@DLG@@AAEHJ@Z 004c63c0 f dlgwin.obj - 0001:000c54c0 ?_SetCheckBox@DLG@@AAEXJH@Z 004c64c0 f dlgwin.obj - 0001:000c55c0 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 004c65c0 f dlgwin.obj - 0001:000c5780 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 004c6780 f dlgwin.obj - 0001:000c5910 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 004c6910 f dlgwin.obj - 0001:000c5ae0 ?_ClearList@DLG@@AAEXJ@Z 004c6ae0 f dlgwin.obj - 0001:000c5d60 ?PutDit@DLG@@QAEXJPAUDIT@@@Z 004c6d60 f dlgwin.obj - 0001:000c5d90 ?FWouldBe@EDCB@@SGHJ@Z 004c6d90 f text.obj - 0001:000c5dd0 ?FIs@EDCB@@UAEHJ@Z 004c6dd0 f text.obj - 0001:000c5e00 ?Cls@EDCB@@UAEJXZ 004c6e00 f text.obj - 0001:000c5e30 ?FWouldBe@EDSL@@SGHJ@Z 004c6e30 f text.obj - 0001:000c5e70 ?FIs@EDSL@@UAEHJ@Z 004c6e70 f text.obj - 0001:000c5ea0 ?Cls@EDSL@@UAEJXZ 004c6ea0 f text.obj - 0001:000c5ed0 ?FWouldBe@EDPL@@SGHJ@Z 004c6ed0 f text.obj - 0001:000c5f10 ?FIs@EDPL@@UAEHJ@Z 004c6f10 f text.obj - 0001:000c5f40 ?Cls@EDPL@@UAEJXZ 004c6f40 f text.obj - 0001:000c5f70 ??0EDPAR@@QAE@JPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 004c6f70 f text.obj - 0001:000c6010 ?Set@EDPAR@@QAEXJPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 004c7010 f text.obj - 0001:000c60c0 ??0EDCB@@IAE@PAUGCB@@J@Z 004c70c0 f text.obj - 0001:000c6180 ??1EDCB@@UAE@XZ 004c7180 f text.obj - 0001:000c6210 ?_FInit@EDCB@@MAEHXZ 004c7210 f text.obj - 0001:000c6340 ?Draw@EDCB@@UAEXPAVGNV@@PAVRC@@@Z 004c7340 f text.obj - 0001:000c64c0 ?FCmdTrackMouse@EDCB@@UAEHPAUCMD_MOUSE@@@Z 004c74c0 f text.obj - 0001:000c6800 ?FCmdKey@EDCB@@UAEHPAUCMD_KEY@@@Z 004c7800 f text.obj - 0001:000c7160 ?FCmdSelIdle@EDCB@@UAEHPAUCMD@@@Z 004c8160 f text.obj - 0001:000c7270 ?FCmdActivateSel@EDCB@@UAEHPAUCMD@@@Z 004c8270 f text.obj - 0001:000c72b0 ?Activate@EDCB@@UAEXH@Z 004c82b0 f text.obj - 0001:000c7350 ?_GetRcContent@EDCB@@MAEXPAVRC@@@Z 004c8350 f text.obj - 0001:000c7380 ?_InitGnv@EDCB@@MAEXPAVGNV@@@Z 004c8380 f text.obj - 0001:000c73d0 ?_NewRc@EDCB@@MAEXXZ 004c83d0 f text.obj - 0001:000c7400 ?SetSel@EDCB@@QAEXJJJ@Z 004c8400 f text.obj - 0001:000c7600 ?_SwitchSel@EDCB@@IAEXHJ@Z 004c8600 f text.obj - 0001:000c7730 ?ShowSel@EDCB@@QAEXHJ@Z 004c8730 f text.obj - 0001:000c7a40 ?_InvertSel@EDCB@@IAEXPAVGNV@@J@Z 004c8a40 f text.obj - 0001:000c7bf0 ?_InvertIchRange@EDCB@@IAEXPAVGNV@@JJJ@Z 004c8bf0 f text.obj - 0001:000c7f30 ?_UpdateLn@EDCB@@IAEXJJJJJ@Z 004c8f30 f text.obj - 0001:000c81f0 ?_Scroll@EDCB@@IAEXJJJ@Z 004c91f0 f text.obj - 0001:000c8290 ?_YpFromIch@EDCB@@MAEJJ@Z 004c9290 f text.obj - 0001:000c82d0 ?_ChFetch@EDCB@@IAEDJ@Z 004c92d0 f text.obj - 0001:000c8350 ?_IchPrev@EDCB@@IAEJJH@Z 004c9350 f text.obj - 0001:000c8480 ?_IchNext@EDCB@@IAEJJH@Z 004c9480 f text.obj - 0001:000c85b0 ?AssertValid@EDCB@@QAEXK@Z 004c95b0 f text.obj - 0001:000c8670 ?MarkMem@EDCB@@UAEXXZ 004c9670 f text.obj - 0001:000c86c0 ??0EDPL@@IAE@PAVEDPAR@@@Z 004c96c0 f text.obj - 0001:000c87c0 ?_FInit@EDPL@@MAEHXZ 004c97c0 f text.obj - 0001:000c8890 ?_YpFromLn@EDPL@@MAEJJ@Z 004c9890 f text.obj - 0001:000c89f0 ?YpCenter@RC@@QAEJXZ 004c99f0 f text.obj - 0001:000c8a30 ?_LnFromYp@EDPL@@MAEJJ@Z 004c9a30 f text.obj - 0001:000c8ac0 ?_HiliteRc@EDPL@@MAEXPAVGNV@@PAVRC@@@Z 004c9ac0 f text.obj - 0001:000c8b30 ?_XpFromIch@EDPL@@MAEJJ@Z 004c9b30 f text.obj - 0001:000c8cf0 ?_IchFromLnXp@EDPL@@MAEJJJH@Z 004c9cf0 f text.obj - 0001:000c8e70 ?_DrawLine@EDPL@@MAEXPAVGNV@@J@Z 004c9e70 f text.obj - 0001:000c9010 ?_XpOrigin@EDPL@@IAEJXZ 004ca010 f text.obj - 0001:000c90e0 ?XpCenter@RC@@QAEJXZ 004ca0e0 f text.obj - 0001:000c9120 ?AssertValid@EDPL@@QAEXK@Z 004ca120 f text.obj - 0001:000c92f0 ??0EDSL@@IAE@PAVEDPAR@@@Z 004ca2f0 f text.obj - 0001:000c9350 ?PedslNew@EDSL@@SGPAV1@PAVEDPAR@@@Z 004ca350 f text.obj - 0001:000c9430 ?_FLockLn@EDSL@@MAEHJPAPADPAJ@Z 004ca430 f text.obj - 0001:000c94d0 ?_UnlockLn@EDSL@@MAEXJPAD@Z 004ca4d0 f text.obj - 0001:000c9560 ?_LnFromIch@EDSL@@MAEJJ@Z 004ca560 f text.obj - 0001:000c95e0 ?_IchMinLn@EDSL@@MAEJJ@Z 004ca5e0 f text.obj - 0001:000c9650 ?IchMac@EDSL@@UAEJXZ 004ca650 f text.obj - 0001:000c96a0 ?_LnMac@EDSL@@MAEJXZ 004ca6a0 f text.obj - 0001:000c9800 ?FReplace@EDSL@@UAEHPADJJJJ@Z 004ca800 f text.obj - 0001:000c9aa0 ?_FFilterCh@EDSL@@MAEHD@Z 004caaa0 f text.obj - 0001:000c9ae0 ?GetStn@EDSL@@QAEXPAVSTN@@@Z 004caae0 f text.obj - 0001:000c9ba0 ?SetStn@EDSL@@QAEXPAVSTN@@J@Z 004caba0 f text.obj - 0001:000c9c80 ?CchFetch@EDSL@@UAEJPADJJ@Z 004cac80 f text.obj - 0001:000c9d50 ?AssertValid@EDSL@@QAEXK@Z 004cad50 f text.obj - 0001:000c9e50 ??_EEDCB@@UAEPAXI@Z 004cae50 f text.obj - 0001:000c9e50 ??_GEDCB@@UAEPAXI@Z 004cae50 f text.obj - 0001:000c9e90 ??_EEDPL@@UAEPAXI@Z 004cae90 f text.obj - 0001:000c9e90 ??_GEDPL@@UAEPAXI@Z 004cae90 f text.obj - 0001:000c9ed0 ??_GEDSL@@UAEPAXI@Z 004caed0 f text.obj - 0001:000c9ed0 ??_EEDSL@@UAEPAXI@Z 004caed0 f text.obj - 0001:000c9f10 ?FWouldBe@GOKD@@SGHJ@Z 004caf10 f kidworld.obj - 0001:000c9f50 ?FIs@GOKD@@UAEHJ@Z 004caf50 f kidworld.obj - 0001:000c9f80 ?Cls@GOKD@@UAEJXZ 004caf80 f kidworld.obj - 0001:000c9fb0 ?FWouldBe@GKDS@@SGHJ@Z 004cafb0 f kidworld.obj - 0001:000c9ff0 ?FIs@GKDS@@UAEHJ@Z 004caff0 f kidworld.obj - 0001:000ca020 ?Cls@GKDS@@UAEJXZ 004cb020 f kidworld.obj - 0001:000ca050 ?FWouldBe@WOKS@@SGHJ@Z 004cb050 f kidworld.obj - 0001:000ca090 ?FIs@WOKS@@UAEHJ@Z 004cb090 f kidworld.obj - 0001:000ca0c0 ?Cls@WOKS@@UAEJXZ 004cb0c0 f kidworld.obj - 0001:000ca0f0 ?FReadGkds@GKDS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004cb0f0 f kidworld.obj - 0001:000ca410 ??1GKDS@@UAE@XZ 004cb410 f kidworld.obj - 0001:000ca450 ?AssertValid@GKDS@@QAEXK@Z 004cb450 f kidworld.obj - 0001:000ca580 ?MarkMem@GKDS@@UAEXXZ 004cb580 f kidworld.obj - 0001:000ca5c0 ?Gokk@GKDS@@UAEJXZ 004cb5c0 f kidworld.obj - 0001:000ca610 ?FGetCume@GKDS@@UAEHKJPAUCUME@@@Z 004cb610 f kidworld.obj - 0001:000ca730 ?GetLop@GKDS@@UAEXJPAULOP@@@Z 004cb730 f kidworld.obj - 0001:000ca7e0 ??0WOKS@@QAE@PAUGCB@@PAVSTRG@@@Z 004cb7e0 f kidworld.obj - 0001:000ca950 ??1WOKS@@UAE@XZ 004cb950 f kidworld.obj - 0001:000ca9f0 ?AssertValid@WOKS@@QAEXK@Z 004cb9f0 f kidworld.obj - 0001:000caa80 ?MarkMem@WOKS@@UAEXXZ 004cba80 f kidworld.obj - 0001:000caad0 ?FGobIn@WOKS@@UAEHPAVGOB@@@Z 004cbad0 f kidworld.obj - 0001:000cabb0 ?PgokdFetch@WOKS@@UAEPAVGOKD@@KKPAVRCA@@@Z 004cbbb0 f kidworld.obj - 0001:000cac70 ?PgokNew@WOKS@@UAEPAVGOK@@PAVGOB@@JKPAVRCA@@@Z 004cbc70 f kidworld.obj - 0001:000cae20 ?PscegNew@WOKS@@UAEPAVSCEG@@PAVRCA@@PAVGOB@@@Z 004cbe20 f kidworld.obj - 0001:000caf60 ?PhbalNew@WOKS@@UAEPAVHBAL@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 004cbf60 f kidworld.obj - 0001:000cb0c0 ?PcmhFromHid@WOKS@@UAEPAVCMH@@J@Z 004cc0c0 f kidworld.obj - 0001:000cb180 ?PclokFromHid@WOKS@@UAEPAVCLOK@@J@Z 004cc180 f kidworld.obj - 0001:000cb210 ?PgobParGob@WOKS@@UAEPAVGOB@@PAV2@@Z 004cc210 f kidworld.obj - 0001:000cb2f0 ?FFindFile@WOKS@@UAEHPAVSTN@@PAVFNI@@@Z 004cc2f0 f kidworld.obj - 0001:000cb400 ?TGiveAlert@WOKS@@UAEHPAVSTN@@JJ@Z 004cc400 f kidworld.obj - 0001:000cb470 ?Print@WOKS@@UAEXPAVSTN@@@Z 004cc470 f kidworld.obj - 0001:000cb530 ?GrfcustCur@WOKS@@UAEKH@Z 004cc530 f kidworld.obj - 0001:000cb5a0 ?ModifyGrfcust@WOKS@@UAEXKK@Z 004cc5a0 f kidworld.obj - 0001:000cb620 ?GrfcustAdjust@WOKS@@UAEKK@Z 004cc620 f kidworld.obj - 0001:000cb690 ?FModalTopic@WOKS@@UAEHPAVRCA@@KPAJ@Z 004cc690 f kidworld.obj - 0001:000cb9c0 ??_GGKDS@@UAEPAXI@Z 004cc9c0 f kidworld.obj - 0001:000cb9c0 ??_EGKDS@@UAEPAXI@Z 004cc9c0 f kidworld.obj - 0001:000cba00 ??1GOKD@@UAE@XZ 004cca00 f kidworld.obj - 0001:000cba30 ??_EWOKS@@UAEPAXI@Z 004cca30 f kidworld.obj - 0001:000cba30 ??_GWOKS@@UAEPAXI@Z 004cca30 f kidworld.obj - 0001:000cbb80 ??0GKDS@@IAE@XZ 004ccb80 f kidworld.obj - 0001:000cbbc0 ??0GOKD@@IAE@XZ 004ccbc0 f kidworld.obj - 0001:000cbc00 ??_GGOKD@@UAEPAXI@Z 004ccc00 f kidworld.obj - 0001:000cbc00 ??_EGOKD@@UAEPAXI@Z 004ccc00 f kidworld.obj - 0001:000cbc40 ?FWouldBe@TXHD@@SGHJ@Z 004ccc40 f kidhelp.obj - 0001:000cbc80 ?FIs@TXHD@@UAEHJ@Z 004ccc80 f kidhelp.obj - 0001:000cbcb0 ?Cls@TXHD@@UAEJXZ 004cccb0 f kidhelp.obj - 0001:000cbce0 ?FWouldBe@TXHG@@SGHJ@Z 004ccce0 f kidhelp.obj - 0001:000cbd20 ?FIs@TXHG@@UAEHJ@Z 004ccd20 f kidhelp.obj - 0001:000cbd50 ?Cls@TXHG@@UAEJXZ 004ccd50 f kidhelp.obj - 0001:000cbd80 ?FWouldBe@HBAL@@SGHJ@Z 004ccd80 f kidhelp.obj - 0001:000cbdc0 ?FIs@HBAL@@UAEHJ@Z 004ccdc0 f kidhelp.obj - 0001:000cbdf0 ?Cls@HBAL@@UAEJXZ 004ccdf0 f kidhelp.obj - 0001:000cbe20 ?FWouldBe@HBTN@@SGHJ@Z 004cce20 f kidhelp.obj - 0001:000cbe60 ?FIs@HBTN@@UAEHJ@Z 004cce60 f kidhelp.obj - 0001:000cbe90 ?Cls@HBTN@@UAEJXZ 004cce90 f kidhelp.obj - 0001:000cbec0 ??0TXHD@@IAE@PAVRCA@@PAVDOCB@@K@Z 004ccec0 f kidhelp.obj - 0001:000cbfb0 ??1TXHD@@MAE@XZ 004ccfb0 f kidhelp.obj - 0001:000cc020 ?AssertValid@TXHD@@QAEXK@Z 004cd020 f kidhelp.obj - 0001:000cc0d0 ?MarkMem@TXHD@@UAEXXZ 004cd0d0 f kidhelp.obj - 0001:000cc130 ?PtxhdReadChunk@TXHD@@SGPAV1@PAVRCA@@PAVCFL@@KKPAVSTRG@@K@Z 004cd130 f kidhelp.obj - 0001:000cc2f0 ?_FReadChunk@TXHD@@MAEHPAVCFL@@KKPAVSTRG@@K@Z 004cd2f0 f kidhelp.obj - 0001:000cc7d0 ?_FOpenArg@TXHD@@MAEHJEFF@Z 004cd7d0 f kidhelp.obj - 0001:000cca20 ?FSaveToChunk@TXHD@@UAEHPAVCFL@@PAUCKI@@H@Z 004cda20 f kidhelp.obj - 0001:000ccc40 ?_FGetObjectRc@TXHD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 004cdc40 f kidhelp.obj - 0001:000ccf60 ?_FDrawObject@TXHD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004cdf60 f kidhelp.obj - 0001:000cd370 ?FGrouped@TXHD@@QAEHJPAJ0PAEPAKPAVSTN@@@Z 004ce370 f kidhelp.obj - 0001:000cd5d0 ?GetHtop@TXHD@@QAEXPAUHTOP@@@Z 004ce5d0 f kidhelp.obj - 0001:000cd640 ??0TXHG@@IAE@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 004ce640 f kidhelp.obj - 0001:000cd710 ?PtxhgNew@TXHG@@SGPAV1@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 004ce710 f kidhelp.obj - 0001:000cd7d0 ?_FInit@TXHG@@MAEHXZ 004ce7d0 f kidhelp.obj - 0001:000cde70 ?FRead@BLCK@@QAEHPAXH@Z 004cee70 f kidhelp.obj - 0001:000cdeb0 ?FPtIn@TXHG@@UAEHJJ@Z 004ceeb0 f kidhelp.obj - 0001:000cdf30 ?FCmdTrackMouse@TXHG@@UAEHPAUCMD_MOUSE@@@Z 004cef30 f kidhelp.obj - 0001:000ce190 ?FCmdBadKey@TXHG@@UAEHPAUCMD_BADKEY@@@Z 004cf190 f kidhelp.obj - 0001:000ce280 ?FGroupFromPt@TXHG@@UAEHJJPAEPAK@Z 004cf280 f kidhelp.obj - 0001:000ce330 ?DoHit@TXHG@@UAEXEKKJ@Z 004cf330 f kidhelp.obj - 0001:000ce410 ?_FRunScript@TXHG@@MAEHEKJDKPAJ@Z 004cf410 f kidhelp.obj - 0001:000ce6a0 ?FCmdMouseMove@TXHG@@UAEHPAUCMD_MOUSE@@@Z 004cf6a0 f kidhelp.obj - 0001:000ce760 ?SetCursor@TXHG@@UAEXK@Z 004cf760 f kidhelp.obj - 0001:000ce820 ?PhbalCreate@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 004cf820 f kidhelp.obj - 0001:000cea10 ?PhbalNew@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@PAVTXHD@@PAUHTOP@@@Z 004cfa10 f kidhelp.obj - 0001:000cef00 ??0HBAL@@IAE@PAUGCB@@@Z 004cff00 f kidhelp.obj - 0001:000cef40 ?_FInit@HBAL@@MAEHPAVWOKS@@PAVTXHD@@PAUHTOP@@PAVRCA@@@Z 004cff40 f kidhelp.obj - 0001:000cf1a0 ?FSetTopic@HBAL@@UAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 004d01a0 f kidhelp.obj - 0001:000cf2f0 ?_FSetTopic@HBAL@@MAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 004d02f0 f kidhelp.obj - 0001:000cf770 ?_SetGorp@HBAL@@MAEXPAVGORP@@JJ@Z 004d0770 f kidhelp.obj - 0001:000cf870 ??0HBTN@@IAE@PAUGCB@@@Z 004d0870 f kidhelp.obj - 0001:000cf8b0 ?PhbtnNew@HBTN@@SGPAV1@PAVWOKS@@PAVGOB@@JKPAVRCA@@EKJJ@Z 004d08b0 f kidhelp.obj - 0001:000cfbd0 ?FPtIn@HBTN@@UAEHJJ@Z 004d0bd0 f kidhelp.obj - 0001:000cfd10 ?FCmdClicked@HBTN@@UAEHPAUCMD_MOUSE@@@Z 004d0d10 f kidhelp.obj - 0001:000cfe30 ??_GTXHD@@MAEPAXI@Z 004d0e30 f kidhelp.obj - 0001:000cfe30 ??_ETXHD@@MAEPAXI@Z 004d0e30 f kidhelp.obj - 0001:000cfe70 ??_GTXHG@@UAEPAXI@Z 004d0e70 f kidhelp.obj - 0001:000cfe70 ??_ETXHG@@UAEPAXI@Z 004d0e70 f kidhelp.obj - 0001:000cfeb0 ?Pcmm@GOK@@MAEPAUCMM@CMH@@XZ 004d0eb0 f kidhelp.obj - 0001:000cfee0 ??_EHBAL@@UAEPAXI@Z 004d0ee0 f kidhelp.obj - 0001:000cfee0 ??_GHBAL@@UAEPAXI@Z 004d0ee0 f kidhelp.obj - 0001:000cff20 ??_GHBTN@@UAEPAXI@Z 004d0f20 f kidhelp.obj - 0001:000cff20 ??_EHBTN@@UAEPAXI@Z 004d0f20 f kidhelp.obj - 0001:000cff60 ?Prca@TXHD@@QAEPAVRCA@@XZ 004d0f60 f kidhelp.obj - 0001:000cff90 ?HideButtons@TXHD@@QAEXH@Z 004d0f90 f kidhelp.obj - 0001:000cffe0 ?Pcmm@TXHG@@MAEPAUCMM@CMH@@XZ 004d0fe0 f kidhelp.obj - 0001:000d0010 ?Ptxhd@TXHG@@QAEPAVTXHD@@XZ 004d1010 f kidhelp.obj - 0001:000d0040 ??1TXHG@@UAE@XZ 004d1040 f kidhelp.obj - 0001:000d0070 ??1HBAL@@UAE@XZ 004d1070 f kidhelp.obj - 0001:000d00a0 ??1HBTN@@UAE@XZ 004d10a0 f kidhelp.obj - 0001:000d00d0 ?FWouldBe@GOK@@SGHJ@Z 004d10d0 f kidspace.obj - 0001:000d0110 ?FIs@GOK@@UAEHJ@Z 004d1110 f kidspace.obj - 0001:000d0140 ?Cls@GOK@@UAEJXZ 004d1140 f kidspace.obj - 0001:000d0170 ?FWouldBe@GORP@@SGHJ@Z 004d1170 f kidspace.obj - 0001:000d01b0 ?FIs@GORP@@UAEHJ@Z 004d11b0 f kidspace.obj - 0001:000d01e0 ?Cls@GORP@@UAEJXZ 004d11e0 f kidspace.obj - 0001:000d0210 ?FWouldBe@GORF@@SGHJ@Z 004d1210 f kidspace.obj - 0001:000d0250 ?FIs@GORF@@UAEHJ@Z 004d1250 f kidspace.obj - 0001:000d0280 ?Cls@GORF@@UAEJXZ 004d1280 f kidspace.obj - 0001:000d02b0 ?FWouldBe@GORB@@SGHJ@Z 004d12b0 f kidspace.obj - 0001:000d02f0 ?FIs@GORB@@UAEHJ@Z 004d12f0 f kidspace.obj - 0001:000d0320 ?Cls@GORB@@UAEJXZ 004d1320 f kidspace.obj - 0001:000d0350 ?FWouldBe@GORT@@SGHJ@Z 004d1350 f kidspace.obj - 0001:000d0390 ?FIs@GORT@@UAEHJ@Z 004d1390 f kidspace.obj - 0001:000d03c0 ?Cls@GORT@@UAEJXZ 004d13c0 f kidspace.obj - 0001:000d03f0 ?FWouldBe@GORV@@SGHJ@Z 004d13f0 f kidspace.obj - 0001:000d0430 ?FIs@GORV@@UAEHJ@Z 004d1430 f kidspace.obj - 0001:000d0460 ?Cls@GORV@@UAEJXZ 004d1460 f kidspace.obj - 0001:000d0490 ?PgokNew@GOK@@SGPAV1@PAVWOKS@@PAVGOB@@JPAVGOKD@@PAVRCA@@@Z 004d1490 f kidspace.obj - 0001:000d0750 ?_PgobBefore@GOK@@KGPAVGOB@@PAV2@J@Z 004d1750 f kidspace.obj - 0001:000d0830 ??0GOK@@IAE@PAUGCB@@@Z 004d1830 f kidspace.obj - 0001:000d08b0 ??1GOK@@MAE@XZ 004d18b0 f kidspace.obj - 0001:000d0ae0 ?_FInit@GOK@@MAEHPAVWOKS@@KPAVRCA@@@Z 004d1ae0 f kidspace.obj - 0001:000d0c50 ?_FInit@GOK@@MAEHPAVWOKS@@PAVGOKD@@PAVRCA@@@Z 004d1c50 f kidspace.obj - 0001:000d0f90 ?_ChidMouse@GOK@@IAEKXZ 004d1f90 f kidspace.obj - 0001:000d1000 ?_FAdjustGms@GOK@@MAEHPAUGMSE@@@Z 004d2000 f kidspace.obj - 0001:000d1200 ?_FSetGms@GOK@@MAEHJK@Z 004d2200 f kidspace.obj - 0001:000d1380 ?_FSetGmsCore@GOK@@MAEHJKPAH@Z 004d2380 f kidspace.obj - 0001:000d1560 ?_FSetRep@GOK@@MAEHKKKJJPAH@Z 004d2560 f kidspace.obj - 0001:000d1b30 ?_FAdvanceFrame@GOK@@MAEHXZ 004d2b30 f kidspace.obj - 0001:000d1f20 ?_FEnterState@GOK@@MAEHJ@Z 004d2f20 f kidspace.obj - 0001:000d2110 ?FPtIn@GOK@@UAEHJJ@Z 004d3110 f kidspace.obj - 0001:000d2220 ?FPtInBounds@GOK@@UAEHJJ@Z 004d3220 f kidspace.obj - 0001:000d22d0 ?Draw@GOK@@UAEXPAVGNV@@PAVRC@@@Z 004d32d0 f kidspace.obj - 0001:000d23e0 ?FCmdAlarm@GOK@@UAEHPAUCMD@@@Z 004d33e0 f kidspace.obj - 0001:000d2540 ?FCmdAll@GOK@@UAEHPAUCMD@@@Z 004d3540 f kidspace.obj - 0001:000d2690 ?_FFilterCmd@GOK@@IAEHPAUCMD@@KPAH@Z 004d3690 f kidspace.obj - 0001:000d27b0 ?FFilterCidHid@GOK@@UAEHJJK@Z 004d37b0 f kidspace.obj - 0001:000d2a70 ?_FFindCmflt@GOK@@IAEHJJPAUCMFLT@1@PAJ@Z 004d3a70 f kidspace.obj - 0001:000d2c40 ?FCmdMouseMove@GOK@@UAEHPAUCMD_MOUSE@@@Z 004d3c40 f kidspace.obj - 0001:000d2da0 ?SetCursor@GOK@@UAEXK@Z 004d3da0 f kidspace.obj - 0001:000d2ec0 ?FCmdTrackMouse@GOK@@UAEHPAUCMD_MOUSE@@@Z 004d3ec0 f kidspace.obj - 0001:000d30b0 ?FEnsureToolTip@GOK@@UAEHPAPAVGOB@@JJ@Z 004d40b0 f kidspace.obj - 0001:000d3270 ?_CnoToolTip@GOK@@IAEKXZ 004d4270 f kidspace.obj - 0001:000d3310 ?SetHidToolTip@GOK@@QAEXJ@Z 004d4310 f kidspace.obj - 0001:000d3370 ?LwState@GOK@@UAEJXZ 004d4370 f kidspace.obj - 0001:000d33e0 ?GetPtReg@GOK@@QAEXPAVPT@@J@Z 004d43e0 f kidspace.obj - 0001:000d3480 ?GetRcContent@GOK@@QAEXPAVRC@@@Z 004d4480 f kidspace.obj - 0001:000d3510 ?SetZPlane@GOK@@QAEXJ@Z 004d4510 f kidspace.obj - 0001:000d35d0 ?SetNoSlip@GOK@@QAEXH@Z 004d45d0 f kidspace.obj - 0001:000d3650 ?FRunScript@GOK@@UAEHKPAJJ0PAH@Z 004d4650 f kidspace.obj - 0001:000d3730 ?FRunScriptCno@GOK@@UAEHKPAJJ0PAH@Z 004d4730 f kidspace.obj - 0001:000d3940 ?FChangeState@GOK@@UAEHJ@Z 004d4940 f kidspace.obj - 0001:000d39b0 ?FSetRep@GOK@@UAEHKKKJJK@Z 004d49b0 f kidspace.obj - 0001:000d3b70 ?FCmdClicked@GOK@@UAEHPAUCMD_MOUSE@@@Z 004d4b70 f kidspace.obj - 0001:000d3d60 ?_PgorpNew@GOK@@MAEPAVGORP@@PAVCRF@@KK@Z 004d4d60 f kidspace.obj - 0001:000d3e60 ?_SetGorp@GOK@@MAEXPAVGORP@@JJ@Z 004d4e60 f kidspace.obj - 0001:000d4140 ?_DeferGorp@GOK@@IAEXH@Z 004d5140 f kidspace.obj - 0001:000d4240 ?FPlay@GOK@@UAEHXZ 004d5240 f kidspace.obj - 0001:000d42c0 ?FPlaying@GOK@@UAEHXZ 004d52c0 f kidspace.obj - 0001:000d4340 ?Stop@GOK@@UAEXXZ 004d5340 f kidspace.obj - 0001:000d43b0 ?GotoNfr@GOK@@UAEXJ@Z 004d53b0 f kidspace.obj - 0001:000d4470 ?NfrMac@GOK@@UAEJXZ 004d5470 f kidspace.obj - 0001:000d44f0 ?NfrCur@GOK@@UAEJXZ 004d54f0 f kidspace.obj - 0001:000d4570 ?SiiPlaySound@GOK@@UAEJKKJJJKJJ@Z 004d5570 f kidspace.obj - 0001:000d4660 ?_DeferSnd@GOK@@IAEXH@Z 004d5660 f kidspace.obj - 0001:000d4760 ?SiiPlayMouseSound@GOK@@UAEJKK@Z 004d5760 f kidspace.obj - 0001:000d4850 ?_PlayMouseSound@GOK@@IAEXK@Z 004d5850 f kidspace.obj - 0001:000d49a0 ?Suspend@GOK@@UAEXXZ 004d59a0 f kidspace.obj - 0001:000d4a10 ?Resume@GOK@@UAEXXZ 004d5a10 f kidspace.obj - 0001:000d4a80 ?Stream@GOK@@UAEXH@Z 004d5a80 f kidspace.obj - 0001:000d4b20 ?AssertValid@GOK@@QAEXK@Z 004d5b20 f kidspace.obj - 0001:000d4e10 ?DtimAlarm@CLOK@@QAEKXZ 004d5e10 f kidspace.obj - 0001:000d4e40 ?MarkMem@GOK@@UAEXXZ 004d5e40 f kidspace.obj - 0001:000d4f20 ?NfrMac@GORP@@UAEJXZ 004d5f20 f kidspace.obj - 0001:000d4f70 ?NfrCur@GORP@@UAEJXZ 004d5f70 f kidspace.obj - 0001:000d4fc0 ?GotoNfr@GORP@@UAEXJ@Z 004d5fc0 f kidspace.obj - 0001:000d5010 ?FPlaying@GORP@@UAEHXZ 004d6010 f kidspace.obj - 0001:000d5060 ?FPlay@GORP@@UAEHXZ 004d6060 f kidspace.obj - 0001:000d50b0 ?Stop@GORP@@UAEXXZ 004d60b0 f kidspace.obj - 0001:000d5100 ?Suspend@GORP@@UAEXXZ 004d6100 f kidspace.obj - 0001:000d5150 ?FCmdClickedCore@GOK@@QAEHPAUCMD@@@Z 004d6150 f kidspace.obj - 0001:000d5190 ?Resume@GORP@@UAEXXZ 004d6190 f kidspace.obj - 0001:000d51e0 ?Stream@GORP@@UAEXH@Z 004d61e0 f kidspace.obj - 0001:000d5230 ?PgorfNew@GORF@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 004d6230 f kidspace.obj - 0001:000d5530 ?Draw@GORF@@UAEXPAVGNV@@PAVRC@@@Z 004d6530 f kidspace.obj - 0001:000d5660 ?FPtIn@GORF@@UAEHJJ@Z 004d6660 f kidspace.obj - 0001:000d56f0 ?SetDxpDyp@GORF@@UAEXJJ@Z 004d66f0 f kidspace.obj - 0001:000d57b0 ?GetRc@GORF@@UAEXPAVRC@@@Z 004d67b0 f kidspace.obj - 0001:000d5830 ?GetRcContent@GORF@@UAEXPAVRC@@@Z 004d6830 f kidspace.obj - 0001:000d58a0 ?PgorbNew@GORB@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 004d68a0 f kidspace.obj - 0001:000d5a50 ??1GORB@@MAE@XZ 004d6a50 f kidspace.obj - 0001:000d5b00 ?Draw@GORB@@UAEXPAVGNV@@PAVRC@@@Z 004d6b00 f kidspace.obj - 0001:000d5cb0 ?FPtIn@GORB@@UAEHJJ@Z 004d6cb0 f kidspace.obj - 0001:000d5e00 ?SetDxpDyp@GORB@@UAEXJJ@Z 004d6e00 f kidspace.obj - 0001:000d5e70 ?GetRc@GORB@@UAEXPAVRC@@@Z 004d6e70 f kidspace.obj - 0001:000d5fa0 ?GetRcContent@GORB@@UAEXPAVRC@@@Z 004d6fa0 f kidspace.obj - 0001:000d6010 ?Stream@GORB@@UAEXH@Z 004d7010 f kidspace.obj - 0001:000d6080 ?PgortNew@GORT@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 004d7080 f kidspace.obj - 0001:000d6530 ??1GORT@@MAE@XZ 004d7530 f kidspace.obj - 0001:000d65e0 ?Draw@GORT@@UAEXPAVGNV@@PAVRC@@@Z 004d75e0 f kidspace.obj - 0001:000d6920 ?_DrawRow@GORT@@IAEXPAVGNV@@PAVMBMP@@PAVRC@@2JJ@Z 004d7920 f kidspace.obj - 0001:000d6d40 ?FPtIn@GORT@@UAEHJJ@Z 004d7d40 f kidspace.obj - 0001:000d6f10 ?_MapZpToMbmp@GORT@@IAEXPAJPAFJJ@Z 004d7f10 f kidspace.obj - 0001:000d7040 ?SetDxpDyp@GORT@@UAEXJJ@Z 004d8040 f kidspace.obj - 0001:000d7170 ?_ComputeFlexZp@GORT@@IAEXPAJ0JPAF@Z 004d8170 f kidspace.obj - 0001:000d72f0 ?GetRc@GORT@@UAEXPAVRC@@@Z 004d82f0 f kidspace.obj - 0001:000d74b0 ?_MapZpFlex@GORT@@IAEXPAJPAFJJ@Z 004d84b0 f kidspace.obj - 0001:000d75f0 ?GetRcContent@GORT@@UAEXPAVRC@@@Z 004d85f0 f kidspace.obj - 0001:000d7690 ?Stream@GORT@@UAEXH@Z 004d8690 f kidspace.obj - 0001:000d7700 ?PgorvNew@GORV@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 004d8700 f kidspace.obj - 0001:000d78d0 ?_FInit@GORV@@MAEHPAVGOK@@PAVCRF@@KK@Z 004d88d0 f kidspace.obj - 0001:000d7ba0 ?Pwoks@GOK@@QAEPAVWOKS@@XZ 004d8ba0 f kidspace.obj - 0001:000d7bd0 ??1GORV@@MAE@XZ 004d8bd0 f kidspace.obj - 0001:000d7c30 ?Draw@GORV@@UAEXPAVGNV@@PAVRC@@@Z 004d8c30 f kidspace.obj - 0001:000d7d10 ?FPtIn@GORV@@UAEHJJ@Z 004d8d10 f kidspace.obj - 0001:000d7da0 ?SetDxpDyp@GORV@@UAEXJJ@Z 004d8da0 f kidspace.obj - 0001:000d7e70 ?GetRc@GORV@@UAEXPAVRC@@@Z 004d8e70 f kidspace.obj - 0001:000d7ee0 ?GetRcContent@GORV@@UAEXPAVRC@@@Z 004d8ee0 f kidspace.obj - 0001:000d7f50 ?NfrMac@GORV@@UAEJXZ 004d8f50 f kidspace.obj - 0001:000d7fb0 ?NfrCur@GORV@@UAEJXZ 004d8fb0 f kidspace.obj - 0001:000d8010 ?GotoNfr@GORV@@UAEXJ@Z 004d9010 f kidspace.obj - 0001:000d8070 ?FPlaying@GORV@@UAEHXZ 004d9070 f kidspace.obj - 0001:000d8110 ?FPlay@GORV@@UAEHXZ 004d9110 f kidspace.obj - 0001:000d81c0 ?Stop@GORV@@UAEXXZ 004d91c0 f kidspace.obj - 0001:000d8220 ?Suspend@GORV@@UAEXXZ 004d9220 f kidspace.obj - 0001:000d8310 ?Resume@GORV@@UAEXXZ 004d9310 f kidspace.obj - 0001:000d83a0 ?AssertValid@GORV@@QAEXK@Z 004d93a0 f kidspace.obj - 0001:000d8430 ?MarkMem@GORV@@UAEXXZ 004d9430 f kidspace.obj - 0001:000d84a0 ??_GGOK@@MAEPAXI@Z 004d94a0 f kidspace.obj - 0001:000d84a0 ??_EGOK@@MAEPAXI@Z 004d94a0 f kidspace.obj - 0001:000d84e0 ??0GOKFL@@QAE@XZ 004d94e0 f kidspace.obj - 0001:000d8510 ??0GORF@@QAE@XZ 004d9510 f kidspace.obj - 0001:000d8570 ??0GORP@@IAE@XZ 004d9570 f kidspace.obj - 0001:000d85b0 ??_GGORP@@UAEPAXI@Z 004d95b0 f kidspace.obj - 0001:000d85b0 ??_EGORP@@UAEPAXI@Z 004d95b0 f kidspace.obj - 0001:000d85f0 ??0GORB@@QAE@XZ 004d95f0 f kidspace.obj - 0001:000d8630 ??_EGORB@@MAEPAXI@Z 004d9630 f kidspace.obj - 0001:000d8630 ??_GGORB@@MAEPAXI@Z 004d9630 f kidspace.obj - 0001:000d8670 ??1GORP@@UAE@XZ 004d9670 f kidspace.obj - 0001:000d86a0 ??0GORT@@QAE@XZ 004d96a0 f kidspace.obj - 0001:000d86e0 ??_GGORT@@MAEPAXI@Z 004d96e0 f kidspace.obj - 0001:000d86e0 ??_EGORT@@MAEPAXI@Z 004d96e0 f kidspace.obj - 0001:000d8720 ??0GORV@@QAE@XZ 004d9720 f kidspace.obj - 0001:000d8760 ??_GGORV@@MAEPAXI@Z 004d9760 f kidspace.obj - 0001:000d8760 ??_EGORV@@MAEPAXI@Z 004d9760 f kidspace.obj - 0001:000d87a0 ??_EGORF@@UAEPAXI@Z 004d97a0 f kidspace.obj - 0001:000d87a0 ??_GGORF@@UAEPAXI@Z 004d97a0 f kidspace.obj - 0001:000d87e0 ??1GORF@@UAE@XZ 004d97e0 f kidspace.obj - 0001:000d8810 ?FWouldBe@SCEG@@SGHJ@Z 004d9810 f screxeg.obj - 0001:000d8850 ?FIs@SCEG@@UAEHJ@Z 004d9850 f screxeg.obj - 0001:000d8880 ?Cls@SCEG@@UAEJXZ 004d9880 f screxeg.obj - 0001:000d88d0 ??0SCEG@@QAE@PAVWOKS@@PAVRCA@@PAVGOB@@@Z 004d98d0 f screxeg.obj - 0001:000d8a80 ?AssertValid@SCEG@@QAEXK@Z 004d9a80 f screxeg.obj - 0001:000d8b70 ?FResume@SCEG@@UAEHPAJPAH@Z 004d9b70 f screxeg.obj - 0001:000d8bb0 ?_PgobThis@SCEG@@MAEPAVGOB@@XZ 004d9bb0 f screxeg.obj - 0001:000d8cf0 ?_PgobFromHid@SCEG@@MAEPAVGOB@@J@Z 004d9cf0 f screxeg.obj - 0001:000d8d70 ?_PpglrtvmThis@SCEG@@MAEPAPAVGL@@XZ 004d9d70 f screxeg.obj - 0001:000d8dc0 ?_PpglrtvmGlobal@SCEG@@MAEPAPAVGL@@XZ 004d9dc0 f screxeg.obj - 0001:000d8e20 ?_PpglrtvmRemote@SCEG@@MAEPAPAVGL@@J@Z 004d9e20 f screxeg.obj - 0001:000d8e70 ?_SwCur@SCEG@@MAEFXZ 004d9e70 f screxeg.obj - 0001:000d8ea0 ?_SwMin@SCEG@@MAEFXZ 004d9ea0 f screxeg.obj - 0001:000d8ed0 ?_FExecOp@SCEG@@MAEHJ@Z 004d9ed0 f screxeg.obj - 0001:000dbc80 ?_DoAlert@SCEG@@IAEXJ@Z 004dcc80 f screxeg.obj - 0001:000dbf70 ?_DoEditControl@SCEG@@IAEXJJH@Z 004dcf70 f screxeg.obj - 0001:000dc130 ?_SetColorTable@SCEG@@IAEXK@Z 004dd130 f screxeg.obj - 0001:000dc1a0 ?_PglclrGet@SCEG@@IAEPAVGL@@K@Z 004dd1a0 f screxeg.obj - 0001:000dc2b0 ?FReadColorTable@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004dd2b0 f screxeg.obj - 0001:000dc420 ?_FLaunch@SCEG@@IAEHJ@Z 004dd420 f screxeg.obj - 0001:000dc660 ??_ESCEG@@UAEPAXI@Z 004dd660 f screxeg.obj - 0001:000dc660 ??_GSCEG@@UAEPAXI@Z 004dd660 f screxeg.obj - 0001:000dc6a0 ??1SCEG@@UAE@XZ 004dd6a0 f screxeg.obj - 0001:000dc6d0 ?GobMayDie@SCEG@@QAEXXZ 004dd6d0 f screxeg.obj - 0001:000dc700 ?ZPlane@GOK@@QAEJXZ 004dd700 f screxeg.obj - 0001:000dc750 ?SetFromStn@RTVN@@QAEXPAVSTN@@@Z 004dd750 f scrcom.obj - 0001:000dc9a0 ?GetStn@RTVN@@QAEXPAVSTN@@@Z 004dd9a0 f scrcom.obj - 0001:000dcc76 _CommDlgExtendedError@0 004ddc76 comdlg32:comdlg32.dll - 0001:000dcc7c _GetOpenFileNameA@4 004ddc7c comdlg32:comdlg32.dll - 0001:000dcc82 _GetSaveFileNameA@4 004ddc82 comdlg32:comdlg32.dll - 0001:000dcc88 _midiOutGetNumDevs@0 004ddc88 winmm:WINMM.dll - 0001:000dcc8e _waveOutGetNumDevs@0 004ddc8e winmm:WINMM.dll - 0001:000dcc94 _waveOutGetDevCapsA@12 004ddc94 winmm:WINMM.dll - 0001:000dcc9a _mciSendCommandA@16 004ddc9a winmm:WINMM.dll - 0001:000dcca0 _timeGetTime@0 004ddca0 winmm:WINMM.dll - 0001:000dcca6 _midiOutGetVolume@8 004ddca6 winmm:WINMM.dll - 0001:000dccac _midiOutSetVolume@8 004ddcac winmm:WINMM.dll - 0001:000dccb2 _midiOutShortMsg@8 004ddcb2 winmm:WINMM.dll - 0001:000dccb8 _midiOutReset@4 004ddcb8 winmm:WINMM.dll - 0001:000dccbe _midiOutOpen@20 004ddcbe winmm:WINMM.dll - 0001:000dccc4 _midiOutClose@4 004ddcc4 winmm:WINMM.dll - 0001:000dccca _midiOutUnprepareHeader@12 004ddcca winmm:WINMM.dll - 0001:000dccd0 _midiOutPrepareHeader@12 004ddcd0 winmm:WINMM.dll - 0001:000dccd6 _WNetGetLastErrorA@20 004ddcd6 mpr:MPR.dll - 0001:000dccdc _WNetGetUserA@12 004ddcdc mpr:MPR.dll - 0001:000dcce2 _ICInfo@12 004ddce2 vfw32:MSVFW32.dll - 0001:000dcce8 _DrawDibDraw@52 004ddce8 vfw32:MSVFW32.dll - 0001:000dccee _AVIFileInit@0 004ddcee vfw32:AVIFIL32.dll - 0001:000dccf4 _AVIFileExit@0 004ddcf4 vfw32:AVIFIL32.dll - 0001:000dccfa _AVIFileRelease@4 004ddcfa vfw32:AVIFIL32.dll - 0001:000dcd00 _AVIStreamRelease@4 004ddd00 vfw32:AVIFIL32.dll - 0001:000dcd06 _AVIStreamGetFrameClose@4 004ddd06 vfw32:AVIFIL32.dll - 0001:000dcd0c _DrawDibClose@4 004ddd0c vfw32:MSVFW32.dll - 0001:000dcd12 _DrawDibOpen@0 004ddd12 vfw32:MSVFW32.dll - 0001:000dcd18 _AVIStreamStart@4 004ddd18 vfw32:AVIFIL32.dll - 0001:000dcd1e _AVIStreamLength@4 004ddd1e vfw32:AVIFIL32.dll - 0001:000dcd24 _AVIFileInfoA@12 004ddd24 vfw32:AVIFIL32.dll - 0001:000dcd2a _AVIStreamGetFrameOpen@8 004ddd2a vfw32:AVIFIL32.dll - 0001:000dcd30 _AVIFileGetStream@16 004ddd30 vfw32:AVIFIL32.dll - 0001:000dcd36 _AVIFileOpenA@16 004ddd36 vfw32:AVIFIL32.dll - 0001:000dcd3c _AVIStreamSampleToTime@8 004ddd3c vfw32:AVIFIL32.dll - 0001:000dcd42 _AVIStreamTimeToSample@8 004ddd42 vfw32:AVIFIL32.dll - 0001:000dcd48 _AVIStreamGetFrame@8 004ddd48 vfw32:AVIFIL32.dll - 0001:000dcd4e _acmFormatTagDetailsA@12 004ddd4e f audiod:MSACM32.dll - 0001:000dcd60 _AMCreate@16 004ddd60 f audiod:audioman.obj - 0001:000dcdfa ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 004dddfa f audiod:audioman.obj - 0001:000dce48 _AMFinishCache@20 004dde48 f audiod:audioman.obj - 0001:000dceda _GetAudioManMixer@0 004ddeda f audiod:audioman.obj - 0001:000dcf43 _TimeToSamples@8 004ddf43 f audiod:audioman.obj - 0001:000dcf9c _SamplesToTime@8 004ddf9c f audiod:audioman.obj - 0001:000dcff5 _SizeToSamples@8 004ddff5 f audiod:audioman.obj - 0001:000dd04e _SamplesToSize@8 004de04e f audiod:audioman.obj - 0001:000dd0a7 _SoundToStreamAsWave@12 004de0a7 f audiod:audioman.obj - 0001:000dd50e _SoundToFileAsWave@8 004de50e f audiod:audioman.obj - 0001:000dd5d6 _DetectLeaks@8 004de5d6 f audiod:audioman.obj - 0001:000dd620 _AllocSoundFromStream@16 004de620 f audiod:sound.obj - 0001:000dd6f8 _AllocSoundFromFile@20 004de6f8 f audiod:sound.obj - 0001:000dd7d4 _AllocSoundFromMemory@12 004de7d4 f audiod:sound.obj - 0001:000dd872 ??0CAMWavFileSrc@@QAE@XZ 004de872 f audiod:sound.obj - 0001:000dd8c8 ??1CAMWavFileSrc@@QAE@XZ 004de8c8 f audiod:sound.obj - 0001:000dd9be ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 004de9be f audiod:sound.obj - 0001:000dda28 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 004dea28 f audiod:sound.obj - 0001:000dda4e ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 004dea4e f audiod:sound.obj - 0001:000ddad0 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 004dead0 f audiod:sound.obj - 0001:000ddd2f ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 004ded2f f audiod:sound.obj - 0001:000ddf75 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 004def75 f audiod:sound.obj - 0001:000de01b ?AddRef@CAMWavFileSrc@@UAGKXZ 004df01b f audiod:sound.obj - 0001:000de039 ?Release@CAMWavFileSrc@@UAGKXZ 004df039 f audiod:sound.obj - 0001:000de08f ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 004df08f f audiod:sound.obj - 0001:000de184 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 004df184 f audiod:sound.obj - 0001:000de1e7 ?GetSamples@CAMWavFileSrc@@UAGKXZ 004df1e7 f audiod:sound.obj - 0001:000de1ff ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 004df1ff f audiod:sound.obj - 0001:000de250 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 004df250 f audiod:sound.obj - 0001:000de84c ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 004df84c f audiod:sound.obj - 0001:000de860 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 004df860 f audiod:sound.obj - 0001:000de8b6 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 004df8b6 f audiod:sound.obj - 0001:000dedd0 ?IsEqualGUID@@YAHABU_GUID@@0@Z 004dfdd0 f audiod:sound.obj - 0001:000dee10 ??0CRIFF@@QAE@PAUIStream@@@Z 004dfe10 f audiod:sound.obj - 0001:000dee50 ??1CRIFF@@QAE@XZ 004dfe50 f audiod:sound.obj - 0001:000dee90 ?GetStream@CRIFF@@QAEPAUIStream@@XZ 004dfe90 f audiod:sound.obj - 0001:000deeb0 ?SwapDWORD@@YAKK@Z 004dfeb0 f audiod:sound.obj - 0001:000deed0 ?SwapWORD@@YAGG@Z 004dfed0 f audiod:sound.obj - 0001:000deef0 ??0IAMSound@@QAE@XZ 004dfef0 f audiod:sound.obj - 0001:000def20 ??0IAMWavFileSrc@@QAE@XZ 004dff20 f audiod:sound.obj - 0001:000def50 ??_GCAMWavFileSrc@@QAEPAXI@Z 004dff50 f audiod:sound.obj - 0001:000def90 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 004dff90 f audiod:sound.obj - 0001:000defa0 ?AddRef@CAMWavFileSrc@@W3AGKXZ 004dffa0 f audiod:sound.obj - 0001:000defb0 ?Release@CAMWavFileSrc@@W3AGKXZ 004dffb0 f audiod:sound.obj - 0001:000defc0 _AllocLoopFilter@12 004dffc0 f audiod:sndloop.obj - 0001:000df05e ?AddRef@CAMLoopFilter@@UAGKXZ 004e005e f audiod:sndloop.obj - 0001:000df079 ?Release@CAMLoopFilter@@UAGKXZ 004e0079 f audiod:sndloop.obj - 0001:000df094 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 004e0094 f audiod:sndloop.obj - 0001:000df12e ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 004e012e f audiod:sndloop.obj - 0001:000df264 ?GetSamples@CAMLoopFilter@@UAGKXZ 004e0264 f audiod:sndloop.obj - 0001:000df295 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 004e0295 f audiod:sndloop.obj - 0001:000df2ff ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e02ff f audiod:sndloop.obj - 0001:000df540 ??0CClassFactory@@QAE@XZ 004e0540 f audiod:factory.obj - 0001:000df574 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 004e0574 f audiod:factory.obj - 0001:000df8a7 ?AddRef@CClassFactory@@UAGKXZ 004e08a7 f audiod:factory.obj - 0001:000df8c5 ?Release@CClassFactory@@UAGKXZ 004e08c5 f audiod:factory.obj - 0001:000df90e ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 004e090e f audiod:factory.obj - 0001:000df9a3 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 004e09a3 f audiod:factory.obj - 0001:000e00e0 ?LockServer@CClassFactory@@UAGJH@Z 004e10e0 f audiod:factory.obj - 0001:000e0100 ??0IClassFactory@@QAE@XZ 004e1100 f audiod:factory.obj - 0001:000e0130 ??0CAMGateFilter@@QAE@XZ 004e1130 f audiod:factory.obj - 0001:000e01c0 ??0CAMLoopFilter@@QAE@XZ 004e11c0 f audiod:factory.obj - 0001:000e0250 ??0CAMFaderFilter@@QAE@XZ 004e1250 f audiod:factory.obj - 0001:000e02e0 ??0CAMRandomizeFilter@@QAE@XZ 004e12e0 f audiod:factory.obj - 0001:000e0370 ??0CAMDistortFilter@@QAE@XZ 004e1370 f audiod:factory.obj - 0001:000e0400 ??0CAMStereoFilter@@QAE@XZ 004e1400 f audiod:factory.obj - 0001:000e0490 ??0CAMTrimFilter@@QAE@XZ 004e1490 f audiod:factory.obj - 0001:000e0520 ??0CAMBiasFilter@@QAE@XZ 004e1520 f audiod:factory.obj - 0001:000e05b0 ??_ECAMGateFilter@@UAEPAXI@Z 004e15b0 f audiod:factory.obj - 0001:000e05b0 ??_GCAMGateFilter@@UAEPAXI@Z 004e15b0 f audiod:factory.obj - 0001:000e05f0 ??0IAMGateFilter@@QAE@XZ 004e15f0 f audiod:factory.obj - 0001:000e0620 ??_GCAMLoopFilter@@UAEPAXI@Z 004e1620 f audiod:factory.obj - 0001:000e0620 ??_ECAMLoopFilter@@UAEPAXI@Z 004e1620 f audiod:factory.obj - 0001:000e0660 ??0IAMLoopFilter@@QAE@XZ 004e1660 f audiod:factory.obj - 0001:000e0690 ??_GCAMFaderFilter@@UAEPAXI@Z 004e1690 f audiod:factory.obj - 0001:000e0690 ??_ECAMFaderFilter@@UAEPAXI@Z 004e1690 f audiod:factory.obj - 0001:000e06d0 ??0IAMFaderFilter@@QAE@XZ 004e16d0 f audiod:factory.obj - 0001:000e0700 ??_GCAMRandomizeFilter@@UAEPAXI@Z 004e1700 f audiod:factory.obj - 0001:000e0700 ??_ECAMRandomizeFilter@@UAEPAXI@Z 004e1700 f audiod:factory.obj - 0001:000e0740 ??0IAMRandomizeFilter@@QAE@XZ 004e1740 f audiod:factory.obj - 0001:000e0770 ??_GCAMDistortFilter@@UAEPAXI@Z 004e1770 f audiod:factory.obj - 0001:000e0770 ??_ECAMDistortFilter@@UAEPAXI@Z 004e1770 f audiod:factory.obj - 0001:000e07b0 ??0IAMDistortFilter@@QAE@XZ 004e17b0 f audiod:factory.obj - 0001:000e07e0 ??_ECAMStereoFilter@@UAEPAXI@Z 004e17e0 f audiod:factory.obj - 0001:000e07e0 ??_GCAMStereoFilter@@UAEPAXI@Z 004e17e0 f audiod:factory.obj - 0001:000e0820 ??0IAMStereoFilter@@QAE@XZ 004e1820 f audiod:factory.obj - 0001:000e0850 ??_ECAMTrimFilter@@UAEPAXI@Z 004e1850 f audiod:factory.obj - 0001:000e0850 ??_GCAMTrimFilter@@UAEPAXI@Z 004e1850 f audiod:factory.obj - 0001:000e0890 ??0IAMTrimFilter@@QAE@XZ 004e1890 f audiod:factory.obj - 0001:000e08c0 ??_GCAMBiasFilter@@UAEPAXI@Z 004e18c0 f audiod:factory.obj - 0001:000e08c0 ??_ECAMBiasFilter@@UAEPAXI@Z 004e18c0 f audiod:factory.obj - 0001:000e0900 ??0IAMBiasFilter@@QAE@XZ 004e1900 f audiod:factory.obj - 0001:000e0930 ??1CAMGateFilter@@UAE@XZ 004e1930 f audiod:factory.obj - 0001:000e0990 ??1CAMLoopFilter@@UAE@XZ 004e1990 f audiod:factory.obj - 0001:000e09f0 ??1CAMFaderFilter@@UAE@XZ 004e19f0 f audiod:factory.obj - 0001:000e0a50 ??1CAMRandomizeFilter@@UAE@XZ 004e1a50 f audiod:factory.obj - 0001:000e0ab0 ??1CAMDistortFilter@@UAE@XZ 004e1ab0 f audiod:factory.obj - 0001:000e0b10 ??1CAMStereoFilter@@UAE@XZ 004e1b10 f audiod:factory.obj - 0001:000e0b70 ??1CAMTrimFilter@@UAE@XZ 004e1b70 f audiod:factory.obj - 0001:000e0bd0 ??1CAMBiasFilter@@UAE@XZ 004e1bd0 f audiod:factory.obj - 0001:000e0c30 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1c30 f audiod:factory.obj - 0001:000e0c40 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 004e1c40 f audiod:factory.obj - 0001:000e0c50 ?Release@CAMLoopFilter@@WBE@AGKXZ 004e1c50 f audiod:factory.obj - 0001:000e0c60 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1c60 f audiod:factory.obj - 0001:000e0c70 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 004e1c70 f audiod:factory.obj - 0001:000e0c80 ?Release@CAMBiasFilter@@WBE@AGKXZ 004e1c80 f audiod:factory.obj - 0001:000e0c90 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1c90 f audiod:factory.obj - 0001:000e0ca0 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 004e1ca0 f audiod:factory.obj - 0001:000e0cb0 ?Release@CAMTrimFilter@@WBE@AGKXZ 004e1cb0 f audiod:factory.obj - 0001:000e0cc0 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1cc0 f audiod:factory.obj - 0001:000e0cd0 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 004e1cd0 f audiod:factory.obj - 0001:000e0ce0 ?Release@CAMDistortFilter@@WBE@AGKXZ 004e1ce0 f audiod:factory.obj - 0001:000e0cf0 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1cf0 f audiod:factory.obj - 0001:000e0d00 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 004e1d00 f audiod:factory.obj - 0001:000e0d10 ?Release@CAMFaderFilter@@WBE@AGKXZ 004e1d10 f audiod:factory.obj - 0001:000e0d20 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1d20 f audiod:factory.obj - 0001:000e0d30 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 004e1d30 f audiod:factory.obj - 0001:000e0d40 ?Release@CAMStereoFilter@@WBE@AGKXZ 004e1d40 f audiod:factory.obj - 0001:000e0d50 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1d50 f audiod:factory.obj - 0001:000e0d60 ?AddRef@CAMGateFilter@@WBE@AGKXZ 004e1d60 f audiod:factory.obj - 0001:000e0d70 ?Release@CAMGateFilter@@WBE@AGKXZ 004e1d70 f audiod:factory.obj - 0001:000e0d80 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004e1d80 f audiod:factory.obj - 0001:000e0d90 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 004e1d90 f audiod:factory.obj - 0001:000e0da0 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 004e1da0 f audiod:factory.obj - 0001:000e0db0 _DbgOutActive 004e1db0 f audiod:dpf.obj - 0001:000e0dc8 _DbgLogActive 004e1dc8 f audiod:dpf.obj - 0001:000e0de0 _DbgLogFile 004e1de0 f audiod:dpf.obj - 0001:000e0e09 ?DbgVPrintF@@YAXPAD0@Z 004e1e09 f audiod:dpf.obj - 0001:000e0f91 _dprintf 004e1f91 f audiod:dpf.obj - 0001:000e0fe2 _DbgEnable@4 004e1fe2 f audiod:dpf.obj - 0001:000e100a _DbgSetLevel@4 004e200a f audiod:dpf.obj - 0001:000e1032 _DbgGetLevel@0 004e2032 f audiod:dpf.obj - 0001:000e1047 _DbgInitialize@4 004e2047 f audiod:dpf.obj - 0001:000e10a0 __Assert@8 004e20a0 f audiod:dpf.obj - 0001:000e1140 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 004e2140 f audiod:audio.obj - 0001:000e1210 _AllocCacheFilter@12 004e2210 f audiod:sndcache.obj - 0001:000e12c4 ??0CAMCacheFilter@@QAE@XZ 004e22c4 f audiod:sndcache.obj - 0001:000e1303 ??1CAMCacheFilter@@QAE@XZ 004e2303 f audiod:sndcache.obj - 0001:000e13a6 ?AddRef@CAMCacheFilter@@UAGKXZ 004e23a6 f audiod:sndcache.obj - 0001:000e13c4 ?Release@CAMCacheFilter@@UAGKXZ 004e23c4 f audiod:sndcache.obj - 0001:000e141a ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 004e241a f audiod:sndcache.obj - 0001:000e150c ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004e250c f audiod:sndcache.obj - 0001:000e1755 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e2755 f audiod:sndcache.obj - 0001:000e17a7 ?GetSamples@CAMCacheFilter@@UAGKXZ 004e27a7 f audiod:sndcache.obj - 0001:000e17d8 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 004e27d8 f audiod:sndcache.obj - 0001:000e182d ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e282d f audiod:sndcache.obj - 0001:000e1aa6 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 004e2aa6 f audiod:sndcache.obj - 0001:000e1b25 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 004e2b25 f audiod:sndcache.obj - 0001:000e1ba6 ?FillCache@CAMCacheFilter@@AAGJKK@Z 004e2ba6 f audiod:sndcache.obj - 0001:000e1db5 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 004e2db5 f audiod:sndcache.obj - 0001:000e1eac ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 004e2eac f audiod:sndcache.obj - 0001:000e1f71 ?SetMode@CAMCacheFilter@@UAGJHH@Z 004e2f71 f audiod:sndcache.obj - 0001:000e20e0 ??0IAMCacheFilter@@QAE@XZ 004e30e0 f audiod:sndcache.obj - 0001:000e2110 ??_GCAMCacheFilter@@QAEPAXI@Z 004e3110 f audiod:sndcache.obj - 0001:000e2150 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 004e3150 f audiod:sndcache.obj - 0001:000e2160 ?AddRef@CAMCacheFilter@@W3AGKXZ 004e3160 f audiod:sndcache.obj - 0001:000e2170 ?Release@CAMCacheFilter@@W3AGKXZ 004e3170 f audiod:sndcache.obj - 0001:000e2180 _HRESULTFromMMRESULT@4 004e3180 f audiod:utils.obj - 0001:000e2404 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 004e3404 f audiod:utils.obj - 0001:000e24f7 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 004e34f7 f audiod:utils.obj - 0001:000e25b7 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004e35b7 f audiod:utils.obj - 0001:000e25e1 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004e35e1 f audiod:utils.obj - 0001:000e2643 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004e3643 f audiod:utils.obj - 0001:000e2665 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004e3665 f audiod:utils.obj - 0001:000e2686 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004e3686 f audiod:utils.obj - 0001:000e26bb ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004e36bb f audiod:utils.obj - 0001:000e26ed ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 004e36ed f audiod:utils.obj - 0001:000e27d7 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 004e37d7 f audiod:utils.obj - 0001:000e28b6 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 004e38b6 f audiod:utils.obj - 0001:000e2a80 ?MultDivUL@@YAKKKK@Z 004e3a80 f audiod:utils.obj - 0001:000e2af0 ??2CDebugMem@@SAPAXI@Z 004e3af0 f audiod:debugmem.obj - 0001:000e2b0e ??3CDebugMem@@SAXPAX@Z 004e3b0e f audiod:debugmem.obj - 0001:000e2b2a ?AllocPtr@CDebugMem@@SAPAXIK@Z 004e3b2a f audiod:debugmem.obj - 0001:000e2bc0 ?FreePtr@CDebugMem@@SAHPAX@Z 004e3bc0 f audiod:debugmem.obj - 0001:000e2ca8 ?DetectLeaks@CDebugMem@@SAHK@Z 004e3ca8 f audiod:debugmem.obj - 0001:000e2d70 _AMRIFFStream_CreateFromIStream@8 004e3d70 f audiod:riffstrm.obj - 0001:000e2de8 ??0CAMRIFFStream@@QAE@PAUIStream@@@Z 004e3de8 f audiod:riffstrm.obj - 0001:000e2e4d ??1CAMRIFFStream@@QAE@XZ 004e3e4d f audiod:riffstrm.obj - 0001:000e2e9a ?AddRef@CAMRIFFStream@@UAGKXZ 004e3e9a f audiod:riffstrm.obj - 0001:000e2eb8 ?Release@CAMRIFFStream@@UAGKXZ 004e3eb8 f audiod:riffstrm.obj - 0001:000e2f0e ?QueryInterface@CAMRIFFStream@@UAGJABU_GUID@@PAPAX@Z 004e3f0e f audiod:riffstrm.obj - 0001:000e2fa9 ?Descend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@0I@Z 004e3fa9 f audiod:riffstrm.obj - 0001:000e3164 ?Ascend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004e4164 f audiod:riffstrm.obj - 0001:000e3299 ?CreateChunk@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004e4299 f audiod:riffstrm.obj - 0001:000e3353 ?MyRead@CAMRIFFStream@@AAGJPAXJ@Z 004e4353 f audiod:riffstrm.obj - 0001:000e339b ?MyWrite@CAMRIFFStream@@AAGJPBXJ@Z 004e439b f audiod:riffstrm.obj - 0001:000e33e3 ?MySeek@CAMRIFFStream@@AAGJJH@Z 004e43e3 f audiod:riffstrm.obj - 0001:000e3440 ??0IAMRIFFStream@@QAE@XZ 004e4440 f audiod:riffstrm.obj - 0001:000e3470 ??_GCAMRIFFStream@@QAEPAXI@Z 004e4470 f audiod:riffstrm.obj - 0001:000e34b0 ??0CFileStream@@QAE@PADKK@Z 004e44b0 f audiod:stream.obj - 0001:000e35e4 ??1CFileStream@@QAE@XZ 004e45e4 f audiod:stream.obj - 0001:000e3630 ?AddRef@CFileStream@@UAGKXZ 004e4630 f audiod:stream.obj - 0001:000e364e ?Release@CFileStream@@UAGKXZ 004e464e f audiod:stream.obj - 0001:000e36a4 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 004e46a4 f audiod:stream.obj - 0001:000e373f ?Read@CFileStream@@UAGJPAXKPAK@Z 004e473f f audiod:stream.obj - 0001:000e3797 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004e4797 f audiod:stream.obj - 0001:000e386e ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 004e486e f audiod:stream.obj - 0001:000e38e9 ?Write@CFileStream@@UAGJPBXKPAK@Z 004e48e9 f audiod:stream.obj - 0001:000e3930 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 004e4930 f audiod:stream.obj - 0001:000e3947 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004e4947 f audiod:stream.obj - 0001:000e395e ?Commit@CFileStream@@UAGJK@Z 004e495e f audiod:stream.obj - 0001:000e3975 ?Revert@CFileStream@@UAGJXZ 004e4975 f audiod:stream.obj - 0001:000e398c ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004e498c f audiod:stream.obj - 0001:000e39a3 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004e49a3 f audiod:stream.obj - 0001:000e39ba ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 004e49ba f audiod:stream.obj - 0001:000e39d1 ??0CMemoryStream@@AAE@PAV0@@Z 004e49d1 f audiod:stream.obj - 0001:000e3a9c ??0CMemoryStream@@QAE@PAUIStream@@K@Z 004e4a9c f audiod:stream.obj - 0001:000e3b84 ??0CMemoryStream@@QAE@PADKK@Z 004e4b84 f audiod:stream.obj - 0001:000e3bf3 ??1CMemoryStream@@QAE@XZ 004e4bf3 f audiod:stream.obj - 0001:000e3c38 ?AddRef@CMemoryStream@@UAGKXZ 004e4c38 f audiod:stream.obj - 0001:000e3c56 ?Release@CMemoryStream@@UAGKXZ 004e4c56 f audiod:stream.obj - 0001:000e3cac ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 004e4cac f audiod:stream.obj - 0001:000e3d4a ?Read@CMemoryStream@@UAGJPAXKPAK@Z 004e4d4a f audiod:stream.obj - 0001:000e3de9 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004e4de9 f audiod:stream.obj - 0001:000e3e86 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 004e4e86 f audiod:stream.obj - 0001:000e3ee7 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 004e4ee7 f audiod:stream.obj - 0001:000e3f86 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 004e4f86 f audiod:stream.obj - 0001:000e3f9d ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004e4f9d f audiod:stream.obj - 0001:000e3fb4 ?Commit@CMemoryStream@@UAGJK@Z 004e4fb4 f audiod:stream.obj - 0001:000e3fcb ?Revert@CMemoryStream@@UAGJXZ 004e4fcb f audiod:stream.obj - 0001:000e3fe2 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004e4fe2 f audiod:stream.obj - 0001:000e3ff9 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004e4ff9 f audiod:stream.obj - 0001:000e4010 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 004e5010 f audiod:stream.obj - 0001:000e4030 ??_GCFileStream@@QAEPAXI@Z 004e5030 f audiod:stream.obj - 0001:000e4070 ??_GCMemoryStream@@QAEPAXI@Z 004e5070 f audiod:stream.obj - 0001:000e40aa _acmFormatSuggest@20 004e50aa f audiod:MSACM32.dll - 0001:000e40b0 _acmStreamSize@16 004e50b0 f audiod:MSACM32.dll - 0001:000e40b6 _acmStreamPrepareHeader@12 004e50b6 f audiod:MSACM32.dll - 0001:000e40bc _acmStreamOpen@32 004e50bc f audiod:MSACM32.dll - 0001:000e40c2 _acmStreamClose@8 004e50c2 f audiod:MSACM32.dll - 0001:000e40c8 _acmStreamUnprepareHeader@12 004e50c8 f audiod:MSACM32.dll - 0001:000e40ce _acmStreamConvert@12 004e50ce f audiod:MSACM32.dll - 0001:000e40e0 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 004e50e0 f audiod:riff.obj - 0001:000e4110 ?ReadLongData@CRIFF@@QAEJPAK@Z 004e5110 f audiod:riff.obj - 0001:000e4179 ?ReadShortData@CRIFF@@QAEJPAG@Z 004e5179 f audiod:riff.obj - 0001:000e41e4 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 004e51e4 f audiod:riff.obj - 0001:000e4320 ??0CAMPassThruFilter@@QAE@XZ 004e5320 f audiod:sndpass.obj - 0001:000e434a ??1CAMPassThruFilter@@UAE@XZ 004e534a f audiod:sndpass.obj - 0001:000e43c7 ?AddRef@CAMPassThruFilter@@UAGKXZ 004e53c7 f audiod:sndpass.obj - 0001:000e43e5 ?Release@CAMPassThruFilter@@UAGKXZ 004e53e5 f audiod:sndpass.obj - 0001:000e443e ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 004e543e f audiod:sndpass.obj - 0001:000e44d9 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e54d9 f audiod:sndpass.obj - 0001:000e452b ?GetSamples@CAMPassThruFilter@@UAGKXZ 004e552b f audiod:sndpass.obj - 0001:000e4568 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 004e5568 f audiod:sndpass.obj - 0001:000e45bd ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e55bd f audiod:sndpass.obj - 0001:000e4633 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 004e5633 f audiod:sndpass.obj - 0001:000e4677 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 004e5677 f audiod:sndpass.obj - 0001:000e4740 ??_ECAMPassThruFilter@@UAEPAXI@Z 004e5740 f audiod:sndpass.obj - 0001:000e4740 ??_GCAMPassThruFilter@@UAEPAXI@Z 004e5740 f audiod:sndpass.obj - 0001:000e4780 _AllocScheduleFilter@8 004e5780 f audiod:sndsched.obj - 0001:000e481a ??0CAMScheduleFilter@@QAE@XZ 004e581a f audiod:sndsched.obj - 0001:000e4859 ??1CAMScheduleFilter@@QAE@XZ 004e5859 f audiod:sndsched.obj - 0001:000e48e0 ?AddRef@CAMScheduleFilter@@UAGKXZ 004e58e0 f audiod:sndsched.obj - 0001:000e48fe ?Release@CAMScheduleFilter@@UAGKXZ 004e58fe f audiod:sndsched.obj - 0001:000e4954 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 004e5954 f audiod:sndsched.obj - 0001:000e4a46 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 004e5a46 f audiod:sndsched.obj - 0001:000e4a6f ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e5a6f f audiod:sndsched.obj - 0001:000e4ac1 ?GetSamples@CAMScheduleFilter@@UAGKXZ 004e5ac1 f audiod:sndsched.obj - 0001:000e4afe ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 004e5afe f audiod:sndsched.obj - 0001:000e4b53 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e5b53 f audiod:sndsched.obj - 0001:000e4bb0 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 004e5bb0 f audiod:sndsched.obj - 0001:000e4bc7 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 004e5bc7 f audiod:sndsched.obj - 0001:000e4bde ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 004e5bde f audiod:sndsched.obj - 0001:000e4bf5 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 004e5bf5 f audiod:sndsched.obj - 0001:000e4c0c ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 004e5c0c f audiod:sndsched.obj - 0001:000e4c23 ?ClearAll@CAMScheduleFilter@@UAGJXZ 004e5c23 f audiod:sndsched.obj - 0001:000e4c3a ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 004e5c3a f audiod:sndsched.obj - 0001:000e4c4e ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 004e5c4e f audiod:sndsched.obj - 0001:000e4c65 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 004e5c65 f audiod:sndsched.obj - 0001:000e4c7c ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004e5c7c f audiod:sndsched.obj - 0001:000e4c90 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004e5c90 f audiod:sndsched.obj - 0001:000e4cb0 ??0IAMScheduleFilter@@QAE@XZ 004e5cb0 f audiod:sndsched.obj - 0001:000e4ce0 ??_GCAMScheduleFilter@@QAEPAXI@Z 004e5ce0 f audiod:sndsched.obj - 0001:000e4d20 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 004e5d20 f audiod:sndsched.obj - 0001:000e4d30 ?AddRef@CAMScheduleFilter@@W3AGKXZ 004e5d30 f audiod:sndsched.obj - 0001:000e4d40 ?Release@CAMScheduleFilter@@W3AGKXZ 004e5d40 f audiod:sndsched.obj - 0001:000e4d50 _AllocMixFilter@12 004e5d50 f audiod:sndmix.obj - 0001:000e4e04 ??0CAMMixFilter@@QAE@XZ 004e5e04 f audiod:sndmix.obj - 0001:000e4e43 ??1CAMMixFilter@@QAE@XZ 004e5e43 f audiod:sndmix.obj - 0001:000e4ef2 ?AddRef@CAMMixFilter@@UAGKXZ 004e5ef2 f audiod:sndmix.obj - 0001:000e4f10 ?Release@CAMMixFilter@@UAGKXZ 004e5f10 f audiod:sndmix.obj - 0001:000e4f66 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 004e5f66 f audiod:sndmix.obj - 0001:000e5058 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 004e6058 f audiod:sndmix.obj - 0001:000e5143 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 004e6143 f audiod:sndmix.obj - 0001:000e53ea ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 004e63ea f audiod:sndmix.obj - 0001:000e544b ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 004e644b f audiod:sndmix.obj - 0001:000e5486 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e6486 f audiod:sndmix.obj - 0001:000e54d8 ?GetSamples@CAMMixFilter@@UAGKXZ 004e64d8 f audiod:sndmix.obj - 0001:000e5509 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 004e6509 f audiod:sndmix.obj - 0001:000e55ac ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e65ac f audiod:sndmix.obj - 0001:000e576d ?SetCacheSize@CAMMixFilter@@UAGJK@Z 004e676d f audiod:sndmix.obj - 0001:000e5784 ?SetMode@CAMMixFilter@@UAGJHH@Z 004e6784 f audiod:sndmix.obj - 0001:000e5880 ??0IAMMixFilter@@QAE@XZ 004e6880 f audiod:sndmix.obj - 0001:000e58b0 ??_GCAMMixFilter@@QAEPAXI@Z 004e68b0 f audiod:sndmix.obj - 0001:000e58f0 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 004e68f0 f audiod:sndmix.obj - 0001:000e5900 ?AddRef@CAMMixFilter@@W3AGKXZ 004e6900 f audiod:sndmix.obj - 0001:000e5910 ?Release@CAMMixFilter@@W3AGKXZ 004e6910 f audiod:sndmix.obj - 0001:000e5920 _AllocGainFilter@16 004e6920 f audiod:sndgain.obj - 0001:000e59c2 ??0CAMGainFilter@@QAE@XZ 004e69c2 f audiod:sndgain.obj - 0001:000e5a35 ??1CAMGainFilter@@QAE@XZ 004e6a35 f audiod:sndgain.obj - 0001:000e5af1 ?AddRef@CAMGainFilter@@UAGKXZ 004e6af1 f audiod:sndgain.obj - 0001:000e5b0f ?Release@CAMGainFilter@@UAGKXZ 004e6b0f f audiod:sndgain.obj - 0001:000e5b65 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 004e6b65 f audiod:sndgain.obj - 0001:000e5c57 ?EnterFilter@CAMGainFilter@@AAGXXZ 004e6c57 f audiod:sndgain.obj - 0001:000e5c81 ?LeaveFilter@CAMGainFilter@@AAGXXZ 004e6c81 f audiod:sndgain.obj - 0001:000e5cab ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 004e6cab f audiod:sndgain.obj - 0001:000e5d85 ?SetGain@CAMGainFilter@@UAGJMM@Z 004e6d85 f audiod:sndgain.obj - 0001:000e5df0 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e6df0 f audiod:sndgain.obj - 0001:000e5e57 ?GetSamples@CAMGainFilter@@UAGKXZ 004e6e57 f audiod:sndgain.obj - 0001:000e5eaa ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 004e6eaa f audiod:sndgain.obj - 0001:000e5f11 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e6f11 f audiod:sndgain.obj - 0001:000e5fe6 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 004e6fe6 f audiod:sndgain.obj - 0001:000e6049 ?SetMode@CAMGainFilter@@UAGJHH@Z 004e7049 f audiod:sndgain.obj - 0001:000e6130 ??0IAMGainFilter@@QAE@XZ 004e7130 f audiod:sndgain.obj - 0001:000e6160 ??_GMUTX@@QAEPAXI@Z 004e7160 f audiod:sndgain.obj - 0001:000e61a0 ??_GCAMGainFilter@@QAEPAXI@Z 004e71a0 f audiod:sndgain.obj - 0001:000e61e0 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 004e71e0 f audiod:sndgain.obj - 0001:000e61f0 ?AddRef@CAMGainFilter@@W3AGKXZ 004e71f0 f audiod:sndgain.obj - 0001:000e6200 ?Release@CAMGainFilter@@W3AGKXZ 004e7200 f audiod:sndgain.obj - 0001:000e6210 _AllocDelayFilter@28 004e7210 f audiod:sndecho.obj - 0001:000e62be ??0CAMDelayFilter@@QAE@XZ 004e72be f audiod:sndecho.obj - 0001:000e62fd ??1CAMDelayFilter@@QAE@XZ 004e72fd f audiod:sndecho.obj - 0001:000e63d8 ?AddRef@CAMDelayFilter@@UAGKXZ 004e73d8 f audiod:sndecho.obj - 0001:000e63f6 ?Release@CAMDelayFilter@@UAGKXZ 004e73f6 f audiod:sndecho.obj - 0001:000e644c ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 004e744c f audiod:sndecho.obj - 0001:000e653e ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 004e753e f audiod:sndecho.obj - 0001:000e6867 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e7867 f audiod:sndecho.obj - 0001:000e68b9 ?GetSamples@CAMDelayFilter@@UAGKXZ 004e78b9 f audiod:sndecho.obj - 0001:000e68ea ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 004e78ea f audiod:sndecho.obj - 0001:000e6987 ?MixInNewData@CAMDelayFilter@@QAGJXZ 004e7987 f audiod:sndecho.obj - 0001:000e6ca8 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e7ca8 f audiod:sndecho.obj - 0001:000e707f ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 004e807f f audiod:sndecho.obj - 0001:000e70c3 ?SetMode@CAMDelayFilter@@UAGJHH@Z 004e80c3 f audiod:sndecho.obj - 0001:000e7190 ??0IAMDelayFilter@@QAE@XZ 004e8190 f audiod:sndecho.obj - 0001:000e71c0 ??_GCAMDelayFilter@@QAEPAXI@Z 004e81c0 f audiod:sndecho.obj - 0001:000e7200 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 004e8200 f audiod:sndecho.obj - 0001:000e7210 ?AddRef@CAMDelayFilter@@W3AGKXZ 004e8210 f audiod:sndecho.obj - 0001:000e7220 ?Release@CAMDelayFilter@@W3AGKXZ 004e8220 f audiod:sndecho.obj - 0001:000e7230 _AllocConvertFilter@12 004e8230 f audiod:sndcnvt.obj - 0001:000e72ce ??0CAMConvertFilter@@QAE@XZ 004e82ce f audiod:sndcnvt.obj - 0001:000e730d ??1CAMConvertFilter@@QAE@XZ 004e830d f audiod:sndcnvt.obj - 0001:000e73cc ?AddRef@CAMConvertFilter@@UAGKXZ 004e83cc f audiod:sndcnvt.obj - 0001:000e73ea ?Release@CAMConvertFilter@@UAGKXZ 004e83ea f audiod:sndcnvt.obj - 0001:000e7440 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 004e8440 f audiod:sndcnvt.obj - 0001:000e7532 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 004e8532 f audiod:sndcnvt.obj - 0001:000e7680 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e8680 f audiod:sndcnvt.obj - 0001:000e76f9 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 004e86f9 f audiod:sndcnvt.obj - 0001:000e775b ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 004e875b f audiod:sndcnvt.obj - 0001:000e77bd ?GetSamples@CAMConvertFilter@@UAGKXZ 004e87bd f audiod:sndcnvt.obj - 0001:000e7804 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 004e8804 f audiod:sndcnvt.obj - 0001:000e7881 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e8881 f audiod:sndcnvt.obj - 0001:000e7cbe ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 004e8cbe f audiod:sndcnvt.obj - 0001:000e7d0c ?SetMode@CAMConvertFilter@@UAGJHH@Z 004e8d0c f audiod:sndcnvt.obj - 0001:000e7de0 ??0IAMConvertFilter@@QAE@XZ 004e8de0 f audiod:sndcnvt.obj - 0001:000e7e10 ??_GCAMConvertFilter@@QAEPAXI@Z 004e8e10 f audiod:sndcnvt.obj - 0001:000e7e50 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 004e8e50 f audiod:sndcnvt.obj - 0001:000e7e60 ?AddRef@CAMConvertFilter@@W3AGKXZ 004e8e60 f audiod:sndcnvt.obj - 0001:000e7e70 ?Release@CAMConvertFilter@@W3AGKXZ 004e8e70 f audiod:sndcnvt.obj - 0001:000e7e80 _AllocClipFilter@16 004e8e80 f audiod:sndclip.obj - 0001:000e7f22 ??0CAMClipFilter@@QAE@XZ 004e8f22 f audiod:sndclip.obj - 0001:000e7f61 ??1CAMClipFilter@@QAE@XZ 004e8f61 f audiod:sndclip.obj - 0001:000e7fe8 ?AddRef@CAMClipFilter@@UAGKXZ 004e8fe8 f audiod:sndclip.obj - 0001:000e8006 ?Release@CAMClipFilter@@UAGKXZ 004e9006 f audiod:sndclip.obj - 0001:000e805c ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 004e905c f audiod:sndclip.obj - 0001:000e814e ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 004e914e f audiod:sndclip.obj - 0001:000e8260 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004e9260 f audiod:sndclip.obj - 0001:000e82b5 ?GetSamples@CAMClipFilter@@UAGKXZ 004e92b5 f audiod:sndclip.obj - 0001:000e82e6 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 004e92e6 f audiod:sndclip.obj - 0001:000e837c ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 004e937c f audiod:sndclip.obj - 0001:000e83ef ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e93ef f audiod:sndclip.obj - 0001:000e85bb ?SetCacheSize@CAMClipFilter@@UAGJK@Z 004e95bb f audiod:sndclip.obj - 0001:000e85ff ?SetMode@CAMClipFilter@@UAGJHH@Z 004e95ff f audiod:sndclip.obj - 0001:000e86d0 ??0IAMClipFilter@@QAE@XZ 004e96d0 f audiod:sndclip.obj - 0001:000e8700 ??_GCAMClipFilter@@QAEPAXI@Z 004e9700 f audiod:sndclip.obj - 0001:000e8740 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 004e9740 f audiod:sndclip.obj - 0001:000e8750 ?AddRef@CAMClipFilter@@W3AGKXZ 004e9750 f audiod:sndclip.obj - 0001:000e8760 ?Release@CAMClipFilter@@W3AGKXZ 004e9760 f audiod:sndclip.obj - 0001:000e8770 _AllocAppendFilter@16 004e9770 f audiod:sndapend.obj - 0001:000e8828 ??0CAMAppendFilter@@QAE@XZ 004e9828 f audiod:sndapend.obj - 0001:000e8867 ??1CAMAppendFilter@@QAE@XZ 004e9867 f audiod:sndapend.obj - 0001:000e890d ?AddRef@CAMAppendFilter@@UAGKXZ 004e990d f audiod:sndapend.obj - 0001:000e892b ?Release@CAMAppendFilter@@UAGKXZ 004e992b f audiod:sndapend.obj - 0001:000e8981 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 004e9981 f audiod:sndapend.obj - 0001:000e8a73 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 004e9a73 f audiod:sndapend.obj - 0001:000e8aeb ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 004e9aeb f audiod:sndapend.obj - 0001:000e91c5 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004ea1c5 f audiod:sndapend.obj - 0001:000e921a ?GetSamples@CAMAppendFilter@@UAGKXZ 004ea21a f audiod:sndapend.obj - 0001:000e924b ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 004ea24b f audiod:sndapend.obj - 0001:000e92a0 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004ea2a0 f audiod:sndapend.obj - 0001:000e94de ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 004ea4de f audiod:sndapend.obj - 0001:000e951e ?SetMode@CAMAppendFilter@@UAGJHH@Z 004ea51e f audiod:sndapend.obj - 0001:000e9610 ??0IAMAppendFilter@@QAE@XZ 004ea610 f audiod:sndapend.obj - 0001:000e9640 ??_GCAMAppendFilter@@QAEPAXI@Z 004ea640 f audiod:sndapend.obj - 0001:000e9680 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 004ea680 f audiod:sndapend.obj - 0001:000e9690 ?AddRef@CAMAppendFilter@@W3AGKXZ 004ea690 f audiod:sndapend.obj - 0001:000e96a0 ?Release@CAMAppendFilter@@W3AGKXZ 004ea6a0 f audiod:sndapend.obj - 0001:000e96b0 _AllocSilentSound@12 004ea6b0 f audiod:sndmute.obj - 0001:000e9764 ??0CAMSilentSound@@QAE@XZ 004ea764 f audiod:sndmute.obj - 0001:000e97d5 ??1CAMSilentSound@@QAE@XZ 004ea7d5 f audiod:sndmute.obj - 0001:000e980d ?AddRef@CAMSilentSound@@UAGKXZ 004ea80d f audiod:sndmute.obj - 0001:000e982b ?Release@CAMSilentSound@@UAGKXZ 004ea82b f audiod:sndmute.obj - 0001:000e9881 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 004ea881 f audiod:sndmute.obj - 0001:000e9973 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004ea973 f audiod:sndmute.obj - 0001:000e9a1e ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004eaa1e f audiod:sndmute.obj - 0001:000e9a97 ?GetSamples@CAMSilentSound@@UAGKXZ 004eaa97 f audiod:sndmute.obj - 0001:000e9ac8 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 004eaac8 f audiod:sndmute.obj - 0001:000e9b32 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 004eab32 f audiod:sndmute.obj - 0001:000e9c18 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 004eac18 f audiod:sndmute.obj - 0001:000e9c2c ?SetMode@CAMSilentSound@@UAGJHH@Z 004eac2c f audiod:sndmute.obj - 0001:000e9ca0 ??0IAMSilentSound@@QAE@XZ 004eaca0 f audiod:sndmute.obj - 0001:000e9cd0 ??_GCAMSilentSound@@QAEPAXI@Z 004eacd0 f audiod:sndmute.obj - 0001:000e9d10 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 004ead10 f audiod:sndmute.obj - 0001:000e9d20 ?AddRef@CAMSilentSound@@W3AGKXZ 004ead20 f audiod:sndmute.obj - 0001:000e9d30 ?Release@CAMSilentSound@@W3AGKXZ 004ead30 f audiod:sndmute.obj - 0001:000e9d40 ??0CAMMixer@@QAE@XZ 004ead40 f audiod:cmixer.obj - 0001:000e9e4a ??1CAMMixer@@QAE@XZ 004eae4a f audiod:cmixer.obj - 0001:000e9ef3 ?AddRef@CAMMixer@@UAGKXZ 004eaef3 f audiod:cmixer.obj - 0001:000e9f11 ?Release@CAMMixer@@UAGKXZ 004eaf11 f audiod:cmixer.obj - 0001:000e9f99 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 004eaf99 f audiod:cmixer.obj - 0001:000ea037 ?EnterMixer@CAMMixer@@AAGXXZ 004eb037 f audiod:cmixer.obj - 0001:000ea061 ?LeaveMixer@CAMMixer@@AAGXXZ 004eb061 f audiod:cmixer.obj - 0001:000ea08b ?EnterPump@CAMMixer@@AAGXXZ 004eb08b f audiod:cmixer.obj - 0001:000ea0b5 ?LeavePump@CAMMixer@@AAGXXZ 004eb0b5 f audiod:cmixer.obj - 0001:000ea0df ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 004eb0df f audiod:cmixer.obj - 0001:000ea236 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 004eb236 f audiod:cmixer.obj - 0001:000ea379 ?Uninit@CAMMixer@@UAGJXZ 004eb379 f audiod:cmixer.obj - 0001:000ea3f1 ?Activate@CAMMixer@@UAGJH@Z 004eb3f1 f audiod:cmixer.obj - 0001:000ea449 ?Suspend@CAMMixer@@UAGJH@Z 004eb449 f audiod:cmixer.obj - 0001:000ea50a ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004eb50a f audiod:cmixer.obj - 0001:000ea621 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004eb621 f audiod:cmixer.obj - 0001:000ea743 ?SetMixerVolume@CAMMixer@@UAGJK@Z 004eb743 f audiod:cmixer.obj - 0001:000ea7b2 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 004eb7b2 f audiod:cmixer.obj - 0001:000ea821 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 004eb821 f audiod:cmixer.obj - 0001:000ea8ef ?RemixMode@CAMMixer@@UAGHH@Z 004eb8ef f audiod:cmixer.obj - 0001:000ea92b ?GetAvgSample@CAMMixer@@UAGKXZ 004eb92b f audiod:cmixer.obj - 0001:000ead02 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 004ebd02 f audiod:cmixer.obj - 0001:000eae18 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 004ebe18 f audiod:cmixer.obj - 0001:000eae64 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 004ebe64 f audiod:cmixer.obj - 0001:000eafd5 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 004ebfd5 f audiod:cmixer.obj - 0001:000eb12b ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ec12b f audiod:cmixer.obj - 0001:000eb1db ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 004ec1db f audiod:cmixer.obj - 0001:000eb26f ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004ec26f f audiod:cmixer.obj - 0001:000eb3c5 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004ec3c5 f audiod:cmixer.obj - 0001:000eb4df ?AllocGroup@CAMMixer@@UAGJPAK@Z 004ec4df f audiod:cmixer.obj - 0001:000eb599 ?FreeGroup@CAMMixer@@UAGJK@Z 004ec599 f audiod:cmixer.obj - 0001:000eb627 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ec627 f audiod:cmixer.obj - 0001:000eb6d2 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ec6d2 f audiod:cmixer.obj - 0001:000eb7e0 ?StartGroup@CAMMixer@@UAGJKH@Z 004ec7e0 f audiod:cmixer.obj - 0001:000eb8ad ?ResetGroup@CAMMixer@@UAGJK@Z 004ec8ad f audiod:cmixer.obj - 0001:000eb976 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 004ec976 f audiod:cmixer.obj - 0001:000eba43 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 004eca43 f audiod:cmixer.obj - 0001:000ebb10 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 004ecb10 f audiod:cmixer.obj - 0001:000ebbe5 ?GetInitFile@CAMMixer@@AAGPADXZ 004ecbe5 f audiod:cmixer.obj - 0001:000ebbfc ?LoadProfile@CAMMixer@@AAGJXZ 004ecbfc f audiod:cmixer.obj - 0001:000ebd05 ?SaveProfile@CAMMixer@@AAGJXZ 004ecd05 f audiod:cmixer.obj - 0001:000ebe83 ?DebugSetup@CAMMixer@@AAGJXZ 004ece83 f audiod:cmixer.obj - 0001:000ebf15 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004ecf15 f audiod:cmixer.obj - 0001:000ebf67 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004ecf67 f audiod:cmixer.obj - 0001:000ebfd5 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004ecfd5 f audiod:cmixer.obj - 0001:000ec05f ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004ed05f f audiod:cmixer.obj - 0001:000ec0fa ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004ed0fa f audiod:cmixer.obj - 0001:000ec149 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004ed149 f audiod:cmixer.obj - 0001:000ec35d ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 004ed35d f audiod:cmixer.obj - 0001:000ec3b5 ?AllocMixerData@CAMMixer@@AAGJXZ 004ed3b5 f audiod:cmixer.obj - 0001:000ec648 ?FreeMixerData@CAMMixer@@AAGJXZ 004ed648 f audiod:cmixer.obj - 0001:000ec723 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 004ed723 f audiod:cmixer.obj - 0001:000ec7f5 ?FreeOutputDevice@CAMMixer@@AAGJXZ 004ed7f5 f audiod:cmixer.obj - 0001:000ec832 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 004ed832 f audiod:cmixer.obj - 0001:000ec934 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 004ed934 f audiod:cmixer.obj - 0001:000ec9a2 ?ActivateMixer@CAMMixer@@AAGJXZ 004ed9a2 f audiod:cmixer.obj - 0001:000ecc4e ?DeactivateMixer@CAMMixer@@AAGJXZ 004edc4e f audiod:cmixer.obj - 0001:000ecd0e ?AllocMixerTimer@CAMMixer@@AAGJXZ 004edd0e f audiod:cmixer.obj - 0001:000ecde3 ?FreeMixerTimer@CAMMixer@@AAGJXZ 004edde3 f audiod:cmixer.obj - 0001:000ece3b ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 004ede3b f audiod:cmixer.obj - 0001:000ecf7a ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 004edf7a f audiod:cmixer.obj - 0001:000ecff6 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 004edff6 f audiod:cmixer.obj - 0001:000ed035 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 004ee035 f audiod:cmixer.obj - 0001:000ed0e1 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 004ee0e1 f audiod:cmixer.obj - 0001:000ed144 ?StartMixer@CAMMixer@@AAGXXZ 004ee144 f audiod:cmixer.obj - 0001:000ed2d9 ?StopMixer@CAMMixer@@AAGXXZ 004ee2d9 f audiod:cmixer.obj - 0001:000ed369 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 004ee369 f audiod:cmixer.obj - 0001:000ed46e ?CalcRemixBuffers@CAMMixer@@AAGKXZ 004ee46e f audiod:cmixer.obj - 0001:000ed52a ?RemixBuffers@CAMMixer@@AAGXK@Z 004ee52a f audiod:cmixer.obj - 0001:000ed667 ?Refresh@CAMMixer@@UAGXXZ 004ee667 f audiod:cmixer.obj - 0001:000ed83c ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 004ee83c f audiod:cmixer.obj - 0001:000ed8d6 ?Pump@CAMMixer@@AAGXXZ 004ee8d6 f audiod:cmixer.obj - 0001:000ed8fe ?MixNextBuffer@CAMMixer@@AAGHXZ 004ee8fe f audiod:cmixer.obj - 0001:000edb37 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 004eeb37 f audiod:cmixer.obj - 0001:000edb70 ??0IAMMixer@@QAE@XZ 004eeb70 f audiod:cmixer.obj - 0001:000edba0 ??_GCAMMixer@@QAEPAXI@Z 004eeba0 f audiod:cmixer.obj - 0001:000edbe0 ??_GCAMPlaySnd@@QAEPAXI@Z 004eebe0 f audiod:cmixer.obj - 0001:000edc20 ??_GCAMChannel@@QAEPAXI@Z 004eec20 f audiod:cmixer.obj - 0001:000edc60 ??_GCMixerOut@@QAEPAXI@Z 004eec60 f audiod:cmixer.obj - 0001:000edca0 _AllocGateFilter@12 004eeca0 f audiod:sndgate.obj - 0001:000edd3e ?AddRef@CAMGateFilter@@UAGKXZ 004eed3e f audiod:sndgate.obj - 0001:000edd59 ?Release@CAMGateFilter@@UAGKXZ 004eed59 f audiod:sndgate.obj - 0001:000edd74 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 004eed74 f audiod:sndgate.obj - 0001:000ede0e ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 004eee0e f audiod:sndgate.obj - 0001:000edf35 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004eef35 f audiod:sndgate.obj - 0001:000ee050 _AllocFaderFilter@16 004ef050 f audiod:sndfader.obj - 0001:000ee0f2 ?AddRef@CAMFaderFilter@@UAGKXZ 004ef0f2 f audiod:sndfader.obj - 0001:000ee10d ?Release@CAMFaderFilter@@UAGKXZ 004ef10d f audiod:sndfader.obj - 0001:000ee128 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 004ef128 f audiod:sndfader.obj - 0001:000ee1c2 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 004ef1c2 f audiod:sndfader.obj - 0001:000ee294 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004ef294 f audiod:sndfader.obj - 0001:000ee2f0 _AllocRandomizeFilter@8 004ef2f0 f audiod:sndrand.obj - 0001:000ee38a ?AddRef@CAMRandomizeFilter@@UAGKXZ 004ef38a f audiod:sndrand.obj - 0001:000ee3a5 ?Release@CAMRandomizeFilter@@UAGKXZ 004ef3a5 f audiod:sndrand.obj - 0001:000ee3c0 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 004ef3c0 f audiod:sndrand.obj - 0001:000ee45a ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 004ef45a f audiod:sndrand.obj - 0001:000ee483 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 004ef483 f audiod:sndrand.obj - 0001:000ee49a ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 004ef49a f audiod:sndrand.obj - 0001:000ee4b1 ?Clear@CAMRandomizeFilter@@UAGJXZ 004ef4b1 f audiod:sndrand.obj - 0001:000ee4d0 _AllocDistortFilter@12 004ef4d0 f audiod:snddist.obj - 0001:000ee56e ?AddRef@CAMDistortFilter@@UAGKXZ 004ef56e f audiod:snddist.obj - 0001:000ee589 ?Release@CAMDistortFilter@@UAGKXZ 004ef589 f audiod:snddist.obj - 0001:000ee5a4 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 004ef5a4 f audiod:snddist.obj - 0001:000ee63e ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004ef63e f audiod:snddist.obj - 0001:000ee765 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004ef765 f audiod:snddist.obj - 0001:000ee8d0 _AllocStereoFilter@8 004ef8d0 f audiod:sndstreo.obj - 0001:000ee96a ?AddRef@CAMStereoFilter@@UAGKXZ 004ef96a f audiod:sndstreo.obj - 0001:000ee985 ?Release@CAMStereoFilter@@UAGKXZ 004ef985 f audiod:sndstreo.obj - 0001:000ee9a0 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 004ef9a0 f audiod:sndstreo.obj - 0001:000eea3a ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 004efa3a f audiod:sndstreo.obj - 0001:000eeb31 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004efb31 f audiod:sndstreo.obj - 0001:000eec10 _AllocTrimFilter@8 004efc10 f audiod:sndtrim.obj - 0001:000eecaa ?AddRef@CAMTrimFilter@@UAGKXZ 004efcaa f audiod:sndtrim.obj - 0001:000eecc5 ?Release@CAMTrimFilter@@UAGKXZ 004efcc5 f audiod:sndtrim.obj - 0001:000eece0 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 004efce0 f audiod:sndtrim.obj - 0001:000eed7a ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 004efd7a f audiod:sndtrim.obj - 0001:000eee37 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 004efe37 f audiod:sndtrim.obj - 0001:000ef120 _AllocBiasFilter@8 004f0120 f audiod:sndbias.obj - 0001:000ef1ba ?AddRef@CAMBiasFilter@@UAGKXZ 004f01ba f audiod:sndbias.obj - 0001:000ef1d5 ?Release@CAMBiasFilter@@UAGKXZ 004f01d5 f audiod:sndbias.obj - 0001:000ef1f0 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 004f01f0 f audiod:sndbias.obj - 0001:000ef28a ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 004f028a f audiod:sndbias.obj - 0001:000ef301 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 004f0301 f audiod:sndbias.obj - 0001:000ef5ac ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004f05ac f audiod:sndbias.obj - 0001:000ef700 ?Interpolate@@YGGMMMGG@Z 004f0700 f audiod:cmixlib.obj - 0001:000ef768 ?DecibelToInternalVol@@YGGM@Z 004f0768 f audiod:cmixlib.obj - 0001:000ef8fb ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 004f08fb f audiod:cmixlib.obj - 0001:000ef9b8 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 004f09b8 f audiod:cmixlib.obj - 0001:000efa16 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 004f0a16 f audiod:cmixlib.obj - 0001:000efbba ?SixteenPanVol@@YGXKPAE0K0@Z 004f0bba f audiod:cmixlib.obj - 0001:000efc15 ?SixteenVol@@YGXKPAE0K0@Z 004f0c15 f audiod:cmixlib.obj - 0001:000efc70 ?Sixteen@@YGXKPAE0K0@Z 004f0c70 f audiod:cmixlib.obj - 0001:000efca4 ?EightPanVol@@YGXKPAE0K0@Z 004f0ca4 f audiod:cmixlib.obj - 0001:000efcff ?EightVol@@YGXKPAE0K0@Z 004f0cff f audiod:cmixlib.obj - 0001:000efd5a ?Eight@@YGXKPAE0K0@Z 004f0d5a f audiod:cmixlib.obj - 0001:000efd8e ?Muted@@YGXKPAE0K0@Z 004f0d8e f audiod:cmixlib.obj - 0001:000efdaf ?slowMixSixteen@@YGXPAF0KPAE@Z 004f0daf f audiod:cmixlib.obj - 0001:000efe63 ?slowMixEight@@YGXPAE0K0@Z 004f0e63 f audiod:cmixlib.obj - 0001:000eff07 ?MixEight@@YGXPAE0K0@Z 004f0f07 f audiod:cmixlib.obj - 0001:000f0368 ?MixSixteen@@YGXPAF0KPAE@Z 004f1368 f audiod:cmixlib.obj - 0001:000f081d ?VolAdjustSixteen@@YGXKPAE0K0@Z 004f181d f audiod:cmixlib.obj - 0001:000f15e1 ?VolAdjustEight@@YGXKPAE0K0@Z 004f25e1 f audiod:cmixlib.obj - 0001:000f248d ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 004f348d f audiod:cmixlib.obj - 0001:000f32f4 ?PanVolAdjustEight@@YGXKPAE0K0@Z 004f42f4 f audiod:cmixlib.obj - 0001:000f4280 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 004f5280 f audiod:convert.obj - 0001:000f4977 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 004f5977 f audiod:convert.obj - 0001:000f49b3 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 004f59b3 f audiod:convert.obj - 0001:000f4a49 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 004f5a49 f audiod:convert.obj - 0001:000f4adf ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f5adf f audiod:convert.obj - 0001:000f4bf6 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f5bf6 f audiod:convert.obj - 0001:000f4d51 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f5d51 f audiod:convert.obj - 0001:000f4f07 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f5f07 f audiod:convert.obj - 0001:000f50bd ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f60bd f audiod:convert.obj - 0001:000f5289 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6289 f audiod:convert.obj - 0001:000f5444 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6444 f audiod:convert.obj - 0001:000f5648 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6648 f audiod:convert.obj - 0001:000f5800 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6800 f audiod:convert.obj - 0001:000f59e4 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f69e4 f audiod:convert.obj - 0001:000f5b9f ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6b9f f audiod:convert.obj - 0001:000f5d57 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6d57 f audiod:convert.obj - 0001:000f5f5b ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f6f5b f audiod:convert.obj - 0001:000f613f ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f713f f audiod:convert.obj - 0001:000f6313 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f7313 f audiod:convert.obj - 0001:000f64fa ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f74fa f audiod:convert.obj - 0001:000f66e1 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004f76e1 f audiod:convert.obj - 0001:000f68a0 ?Mono8ToStereo8@@YAGE@Z 004f78a0 f audiod:convert.obj - 0001:000f68c0 ?Mono8ToMono16@@YAGE@Z 004f78c0 f audiod:convert.obj - 0001:000f68f0 ?Mono16ToStereo16@@YAKG@Z 004f78f0 f audiod:convert.obj - 0001:000f6920 ?Mono16ToMono8@@YAEG@Z 004f7920 f audiod:convert.obj - 0001:000f6940 ?Stereo8ToMono8@@YAEG@Z 004f7940 f audiod:convert.obj - 0001:000f69b0 ?Stereo8ToStereo16@@YAKG@Z 004f79b0 f audiod:convert.obj - 0001:000f6a00 ?Stereo16ToStereo8@@YAGK@Z 004f7a00 f audiod:convert.obj - 0001:000f6a40 ?Stereo16ToMono16@@YAGK@Z 004f7a40 f audiod:convert.obj - 0001:000f6ad0 ??0CMixerOut@@QAE@XZ 004f7ad0 f audiod:cmixout.obj - 0001:000f6b40 ??1CMixerOut@@QAE@XZ 004f7b40 f audiod:cmixout.obj - 0001:000f6bbc ?AddRef@CMixerOut@@UAGKXZ 004f7bbc f audiod:cmixout.obj - 0001:000f6bda ?Release@CMixerOut@@UAGKXZ 004f7bda f audiod:cmixout.obj - 0001:000f6c30 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 004f7c30 f audiod:cmixout.obj - 0001:000f6ccb ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 004f7ccb f audiod:cmixout.obj - 0001:000f6e0a ?Suspend@CMixerOut@@QAGJH@Z 004f7e0a f audiod:cmixout.obj - 0001:000f6f8d ?SuspendPump@CMixerOut@@QAGXXZ 004f7f8d f audiod:cmixout.obj - 0001:000f6fca ?GetNumDevs@CMixerOut@@UAGIXZ 004f7fca f audiod:cmixout.obj - 0001:000f7014 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004f8014 f audiod:cmixout.obj - 0001:000f7075 ?Close@CMixerOut@@UAGIXZ 004f8075 f audiod:cmixout.obj - 0001:000f70c2 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004f80c2 f audiod:cmixout.obj - 0001:000f711b ?GetVolume@CMixerOut@@UAGIPAK@Z 004f811b f audiod:cmixout.obj - 0001:000f716c ?SetVolume@CMixerOut@@UAGIK@Z 004f816c f audiod:cmixout.obj - 0001:000f71dd ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004f81dd f audiod:cmixout.obj - 0001:000f7232 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004f8232 f audiod:cmixout.obj - 0001:000f7287 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004f8287 f audiod:cmixout.obj - 0001:000f72dc ?Pause@CMixerOut@@UAGIXZ 004f82dc f audiod:cmixout.obj - 0001:000f7329 ?Restart@CMixerOut@@UAGIXZ 004f8329 f audiod:cmixout.obj - 0001:000f7376 ?Reset@CMixerOut@@UAGIXZ 004f8376 f audiod:cmixout.obj - 0001:000f73c3 ?BreakLoop@CMixerOut@@UAGIXZ 004f83c3 f audiod:cmixout.obj - 0001:000f7410 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 004f8410 f audiod:cmixout.obj - 0001:000f7465 ?GetPitch@CMixerOut@@UAGIPAK@Z 004f8465 f audiod:cmixout.obj - 0001:000f74b6 ?SetPitch@CMixerOut@@UAGIK@Z 004f84b6 f audiod:cmixout.obj - 0001:000f7507 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 004f8507 f audiod:cmixout.obj - 0001:000f7558 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 004f8558 f audiod:cmixout.obj - 0001:000f75a9 ?GetID@CMixerOut@@UAGIPAI@Z 004f85a9 f audiod:cmixout.obj - 0001:000f75fa ?Message@CMixerOut@@UAGIIKK@Z 004f85fa f audiod:cmixout.obj - 0001:000f7653 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 004f8653 f audiod:cmixout.obj - 0001:000f76b0 ??0IAMWaveOut@@QAE@XZ 004f86b0 f audiod:cmixout.obj - 0001:000f76e0 ??_GCRealOut@@QAEPAXI@Z 004f86e0 f audiod:cmixout.obj - 0001:000f7720 ??0CAMPlaySnd@@QAE@XZ 004f8720 f audiod:cplaysnd.obj - 0001:000f775e ??1CAMPlaySnd@@QAE@XZ 004f875e f audiod:cplaysnd.obj - 0001:000f77ab ?AddRef@CAMPlaySnd@@UAGKXZ 004f87ab f audiod:cplaysnd.obj - 0001:000f77c9 ?Release@CAMPlaySnd@@UAGKXZ 004f87c9 f audiod:cplaysnd.obj - 0001:000f781f ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 004f881f f audiod:cplaysnd.obj - 0001:000f78ba ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 004f88ba f audiod:cplaysnd.obj - 0001:000f79ba ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004f89ba f audiod:cplaysnd.obj - 0001:000f7a0a ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 004f8a0a f audiod:cplaysnd.obj - 0001:000f7a60 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004f8a60 f audiod:cplaysnd.obj - 0001:000f7a80 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 004f8a80 f audiod:cplaysnd.obj - 0001:000f7aa0 ?AddRef@CAMChannel@@UAGKXZ 004f8aa0 f audiod:cchannel.obj - 0001:000f7abe ?Release@CAMChannel@@UAGKXZ 004f8abe f audiod:cchannel.obj - 0001:000f7ba4 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 004f8ba4 f audiod:cchannel.obj - 0001:000f7c7b ??0CAMChannel@@QAE@XZ 004f8c7b f audiod:cchannel.obj - 0001:000f7d00 ??1CAMChannel@@QAE@XZ 004f8d00 f audiod:cchannel.obj - 0001:000f7e02 ?EnterChannel@CAMChannel@@AAGXXZ 004f8e02 f audiod:cchannel.obj - 0001:000f7e32 ?LeaveChannel@CAMChannel@@AAGXXZ 004f8e32 f audiod:cchannel.obj - 0001:000f7e62 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 004f8e62 f audiod:cchannel.obj - 0001:000f7f9a ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 004f8f9a f audiod:cchannel.obj - 0001:000f8041 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004f9041 f audiod:cchannel.obj - 0001:000f81f4 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 004f91f4 f audiod:cchannel.obj - 0001:000f848c ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 004f948c f audiod:cchannel.obj - 0001:000f8538 ?Play@CAMChannel@@UAGJXZ 004f9538 f audiod:cchannel.obj - 0001:000f85ce ?Stop@CAMChannel@@UAGJXZ 004f95ce f audiod:cchannel.obj - 0001:000f86c6 ?Finish@CAMChannel@@UAGJXZ 004f96c6 f audiod:cchannel.obj - 0001:000f871d ?IsPlaying@CAMChannel@@UAGHXZ 004f971d f audiod:cchannel.obj - 0001:000f8764 ?Samples@CAMChannel@@UAGKXZ 004f9764 f audiod:cchannel.obj - 0001:000f87b8 ?SetPosition@CAMChannel@@UAGJK@Z 004f97b8 f audiod:cchannel.obj - 0001:000f885c ?GetPosition@CAMChannel@@UAGJPAK@Z 004f985c f audiod:cchannel.obj - 0001:000f88ca ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004f98ca f audiod:cchannel.obj - 0001:000f8974 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004f9974 f audiod:cchannel.obj - 0001:000f8a23 ?SetTimePos@CAMChannel@@UAGJK@Z 004f9a23 f audiod:cchannel.obj - 0001:000f8a93 ?GetTimePos@CAMChannel@@UAGJPAK@Z 004f9a93 f audiod:cchannel.obj - 0001:000f8b0f ?Mute@CAMChannel@@UAGJH@Z 004f9b0f f audiod:cchannel.obj - 0001:000f8b8a ?SetVolume@CAMChannel@@UAGJK@Z 004f9b8a f audiod:cchannel.obj - 0001:000f8c10 ?SetChannelVol@CAMChannel@@AAGXGG@Z 004f9c10 f audiod:cchannel.obj - 0001:000f8d05 ?GetVolume@CAMChannel@@UAGJPAK@Z 004f9d05 f audiod:cchannel.obj - 0001:000f8d70 ?SetGain@CAMChannel@@UAGJMM@Z 004f9d70 f audiod:cchannel.obj - 0001:000f8def ?GetGain@CAMChannel@@UAGJPAM0@Z 004f9def f audiod:cchannel.obj - 0001:000f8e6f ?DoRemix@CAMChannel@@AAGXXZ 004f9e6f f audiod:cchannel.obj - 0001:000f8ead ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 004f9ead f audiod:cchannel.obj - 0001:000f8ecd ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 004f9ecd f audiod:cchannel.obj - 0001:000f9181 ?ClearNotify@CAMChannel@@AAGXK@Z 004fa181 f audiod:cchannel.obj - 0001:000f9261 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 004fa261 f audiod:cchannel.obj - 0001:000f95a9 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 004fa5a9 f audiod:cchannel.obj - 0001:000f9771 ?RevertTo@CAMChannel@@UAGJK@Z 004fa771 f audiod:cchannel.obj - 0001:000f97e7 ?GetActiveState@CAMChannel@@UAGHXZ 004fa7e7 f audiod:cchannel.obj - 0001:000f981c ?DoStart@CAMChannel@@UAGJH@Z 004fa81c f audiod:cchannel.obj - 0001:000f9905 ?DoReset@CAMChannel@@UAGJXZ 004fa905 f audiod:cchannel.obj - 0001:000f9976 ?DoPosition@CAMChannel@@UAGJK@Z 004fa976 f audiod:cchannel.obj - 0001:000f99db ?DoVolume@CAMChannel@@UAGJK@Z 004fa9db f audiod:cchannel.obj - 0001:000f9a44 ?DoGain@CAMChannel@@UAGJMMH@Z 004faa44 f audiod:cchannel.obj - 0001:000f9afe ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 004faafe f audiod:cchannel.obj - 0001:000f9b1b ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 004fab1b f audiod:cchannel.obj - 0001:000f9b33 ?SetPriority@CAMChannel@@UAGJK@Z 004fab33 f audiod:cchannel.obj - 0001:000f9b50 ?GetPriority@CAMChannel@@UAGKXZ 004fab50 f audiod:cchannel.obj - 0001:000f9b68 ?SetGroup@CAMChannel@@UAGJK@Z 004fab68 f audiod:cchannel.obj - 0001:000f9b85 ?GetGroup@CAMChannel@@UAGKXZ 004fab85 f audiod:cchannel.obj - 0001:000f9ba0 ??0IAMChannel@@QAE@XZ 004faba0 f audiod:cchannel.obj - 0001:000f9bd0 ??0IAMMixerChannel@@QAE@XZ 004fabd0 f audiod:cchannel.obj - 0001:000f9c00 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 004fac00 f audiod:cchannel.obj - 0001:000f9c10 ?AddRef@CAMChannel@@W3AGKXZ 004fac10 f audiod:cchannel.obj - 0001:000f9c20 ?Release@CAMChannel@@W3AGKXZ 004fac20 f audiod:cchannel.obj - 0001:000f9c30 ??0CRealOut@@QAE@XZ 004fac30 f audiod:crealout.obj - 0001:000f9c82 ??1CRealOut@@QAE@XZ 004fac82 f audiod:crealout.obj - 0001:000f9cd2 ?AddRef@CRealOut@@UAGKXZ 004facd2 f audiod:crealout.obj - 0001:000f9cf0 ?Release@CRealOut@@UAGKXZ 004facf0 f audiod:crealout.obj - 0001:000f9d46 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 004fad46 f audiod:crealout.obj - 0001:000f9de1 ?GetNumDevs@CRealOut@@UAGIXZ 004fade1 f audiod:crealout.obj - 0001:000f9df9 ?Init@CRealOut@@QAGJXZ 004fadf9 f audiod:crealout.obj - 0001:000f9e17 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004fae17 f audiod:crealout.obj - 0001:000f9e80 ?Close@CRealOut@@UAGIXZ 004fae80 f audiod:crealout.obj - 0001:000f9eec ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004faeec f audiod:crealout.obj - 0001:000f9f2c ?GetVolume@CRealOut@@UAGIPAK@Z 004faf2c f audiod:crealout.obj - 0001:000f9f7a ?SetVolume@CRealOut@@UAGIK@Z 004faf7a f audiod:crealout.obj - 0001:000f9fc8 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004fafc8 f audiod:crealout.obj - 0001:000fa00b ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004fb00b f audiod:crealout.obj - 0001:000fa04e ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004fb04e f audiod:crealout.obj - 0001:000fa091 ?Pause@CRealOut@@UAGIXZ 004fb091 f audiod:crealout.obj - 0001:000fa0cc ?Restart@CRealOut@@UAGIXZ 004fb0cc f audiod:crealout.obj - 0001:000fa107 ?Reset@CRealOut@@UAGIXZ 004fb107 f audiod:crealout.obj - 0001:000fa142 ?BreakLoop@CRealOut@@UAGIXZ 004fb142 f audiod:crealout.obj - 0001:000fa17d ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 004fb17d f audiod:crealout.obj - 0001:000fa1c0 ?GetPitch@CRealOut@@UAGIPAK@Z 004fb1c0 f audiod:crealout.obj - 0001:000fa1ff ?SetPitch@CRealOut@@UAGIK@Z 004fb1ff f audiod:crealout.obj - 0001:000fa23e ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 004fb23e f audiod:crealout.obj - 0001:000fa27d ?SetPlaybackRate@CRealOut@@UAGIK@Z 004fb27d f audiod:crealout.obj - 0001:000fa2bc ?GetID@CRealOut@@UAGIPAI@Z 004fb2bc f audiod:crealout.obj - 0001:000fa2fb ?Message@CRealOut@@UAGIIKK@Z 004fb2fb f audiod:crealout.obj - 0001:000fa342 ?GetErrorText@CRealOut@@UAGIIPADI@Z 004fb342 f audiod:crealout.obj - 0001:000fa390 ??0CFakeOut@@QAE@XZ 004fb390 f audiod:cfakeout.obj - 0001:000fa413 ??1CFakeOut@@QAE@XZ 004fb413 f audiod:cfakeout.obj - 0001:000fa432 ?AddRef@CFakeOut@@UAGKXZ 004fb432 f audiod:cfakeout.obj - 0001:000fa450 ?Release@CFakeOut@@UAGKXZ 004fb450 f audiod:cfakeout.obj - 0001:000fa4a6 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 004fb4a6 f audiod:cfakeout.obj - 0001:000fa541 ?Init@CFakeOut@@QAGJXZ 004fb541 f audiod:cfakeout.obj - 0001:000fa55f ?GetNumDevs@CFakeOut@@UAGIXZ 004fb55f f audiod:cfakeout.obj - 0001:000fa576 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004fb576 f audiod:cfakeout.obj - 0001:000fa62b ?Close@CFakeOut@@UAGIXZ 004fb62b f audiod:cfakeout.obj - 0001:000fa689 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004fb689 f audiod:cfakeout.obj - 0001:000fa731 ?GetVolume@CFakeOut@@UAGIPAK@Z 004fb731 f audiod:cfakeout.obj - 0001:000fa786 ?SetVolume@CFakeOut@@UAGIK@Z 004fb786 f audiod:cfakeout.obj - 0001:000fa7cf ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004fb7cf f audiod:cfakeout.obj - 0001:000fa831 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004fb831 f audiod:cfakeout.obj - 0001:000fa893 ?StartPlayback@CFakeOut@@AAGXXZ 004fb893 f audiod:cfakeout.obj - 0001:000fa8f1 ?SuspendPump@CFakeOut@@QAGXXZ 004fb8f1 f audiod:cfakeout.obj - 0001:000fa972 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004fb972 f audiod:cfakeout.obj - 0001:000faa96 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 004fba96 f audiod:cfakeout.obj - 0001:000faafa ?Pause@CFakeOut@@UAGIXZ 004fbafa f audiod:cfakeout.obj - 0001:000fab51 ?Restart@CFakeOut@@UAGIXZ 004fbb51 f audiod:cfakeout.obj - 0001:000fabb1 ?Reset@CFakeOut@@UAGIXZ 004fbbb1 f audiod:cfakeout.obj - 0001:000fac3c ?BreakLoop@CFakeOut@@UAGIXZ 004fbc3c f audiod:cfakeout.obj - 0001:000fac53 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 004fbc53 f audiod:cfakeout.obj - 0001:000fac6a ?GetPitch@CFakeOut@@UAGIPAK@Z 004fbc6a f audiod:cfakeout.obj - 0001:000fac81 ?SetPitch@CFakeOut@@UAGIK@Z 004fbc81 f audiod:cfakeout.obj - 0001:000fac98 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 004fbc98 f audiod:cfakeout.obj - 0001:000facaf ?SetPlaybackRate@CFakeOut@@UAGIK@Z 004fbcaf f audiod:cfakeout.obj - 0001:000facc6 ?GetID@CFakeOut@@UAGIPAI@Z 004fbcc6 f audiod:cfakeout.obj - 0001:000facdd ?Message@CFakeOut@@UAGIIKK@Z 004fbcdd f audiod:cfakeout.obj - 0001:000facf4 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 004fbcf4 f audiod:cfakeout.obj - 0001:000fad10 ??_GCFakeOut@@QAEPAXI@Z 004fbd10 f audiod:cfakeout.obj - 0001:000fad50 ?FWouldBe@BWLD@@SGHJ@Z 004fbd50 f bren:bwld.obj - 0001:000fad90 ?FIs@BWLD@@UAEHJ@Z 004fbd90 f bren:bwld.obj - 0001:000fadc0 ?Cls@BWLD@@UAEJXZ 004fbdc0 f bren:bwld.obj - 0001:000fadf0 ?PbwldNew@BWLD@@SGPAV1@JJHH@Z 004fbdf0 f bren:bwld.obj - 0001:000faf90 ?_FInit@BWLD@@IAEHJJHH@Z 004fbf90 f bren:bwld.obj - 0001:000fb190 ?_FInitBuffers@BWLD@@IAEHJJHH@Z 004fc190 f bren:bwld.obj - 0001:000fb5d0 ??1BWLD@@UAE@XZ 004fc5d0 f bren:bwld.obj - 0001:000fb810 ?FSetHalfMode@BWLD@@QAEHHH@Z 004fc810 f bren:bwld.obj - 0001:000fbd00 ?CloseBRender@BWLD@@SGXXZ 004fcd00 f bren:bwld.obj - 0001:000fbd40 ?FSetBackground@BWLD@@QAEHPAVCRF@@KKKK@Z 004fcd40 f bren:bwld.obj - 0001:000fc300 ?SqueezePb@@YGXPAX0J@Z 004fd300 f bren:bwld.obj - 0001:000fc3f0 ?SetCamera@BWLD@@QAEXPAUbr_matrix34@@JJG@Z 004fd3f0 f bren:bwld.obj - 0001:000fc4d0 ?GetCamera@BWLD@@QAEXPAUbr_matrix34@@PAJ1PAG@Z 004fd4d0 f bren:bwld.obj - 0001:000fc5a0 ?Render@BWLD@@QAEXXZ 004fd5a0 f bren:bwld.obj - 0001:000fc750 ?Prerender@BWLD@@QAEXXZ 004fd750 f bren:bwld.obj - 0001:000fc890 ?Unprerender@BWLD@@QAEXXZ 004fd890 f bren:bwld.obj - 0001:000fc910 ?_CleanWorkingBuffers@BWLD@@IAEXXZ 004fd910 f bren:bwld.obj - 0001:000fcb90 ?_ActorRendered@BWLD@@KAXPAUbr_actor@@PAUbr_model@@PAUbr_material@@EPAUbr_matrix4@@QAJ@Z 004fdb90 f bren:bwld.obj - 0001:000fcc90 ?MarkRenderedRegn@BWLD@@QAEXPAVGOB@@JJ@Z 004fdc90 f bren:bwld.obj - 0001:000fcdb0 ?Draw@BWLD@@QAEXPAVGNV@@PAVRC@@JJ@Z 004fddb0 f bren:bwld.obj - 0001:000fcee0 ?AddActor@BWLD@@QAEXPAUbr_actor@@@Z 004fdee0 f bren:bwld.obj - 0001:000fcf50 ?_FFilter@BWLD@@KAHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z 004fdf50 f bren:bwld.obj - 0001:000fd020 ?IterateActorsInPt@BWLD@@QAEXP6AHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z4JJ@Z 004fe020 f bren:bwld.obj - 0001:000fd100 ?FClickedActor@BWLD@@QAEHJJPAPAUbr_actor@@@Z 004fe100 f bren:bwld.obj - 0001:000fd1d0 ?AssertValid@BWLD@@QAEXK@Z 004fe1d0 f bren:bwld.obj - 0001:000fd580 ?MarkMem@BWLD@@UAEXXZ 004fe580 f bren:bwld.obj - 0001:000fd6f0 ?FWriteBmp@BWLD@@QAEHPAVFNI@@@Z 004fe6f0 f bren:bwld.obj - 0001:000fd7f0 ??_GBWLD@@UAEPAXI@Z 004fe7f0 f bren:bwld.obj - 0001:000fd7f0 ??_EBWLD@@UAEPAXI@Z 004fe7f0 f bren:bwld.obj - 0001:000fd940 ?Prgb@ZBMP@@QAEPAEXZ 004fe940 f bren:bwld.obj - 0001:000fd970 ?CbRow@ZBMP@@QAEJXZ 004fe970 f bren:bwld.obj - 0001:000fd9a0 ??0BWLD@@IAE@XZ 004fe9a0 f bren:bwld.obj - 0001:000fd9f0 ?FWouldBe@ZBMP@@SGHJ@Z 004fe9f0 f bren:zbmp.obj - 0001:000fda30 ?FIs@ZBMP@@UAEHJ@Z 004fea30 f bren:zbmp.obj - 0001:000fda60 ?Cls@ZBMP@@UAEJXZ 004fea60 f bren:zbmp.obj - 0001:000fda90 ?PzbmpNew@ZBMP@@SGPAV1@JJ@Z 004fea90 f bren:zbmp.obj - 0001:000fdc30 ?FReadZbmp@ZBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004fec30 f bren:zbmp.obj - 0001:000fde60 ?PzbmpRead@ZBMP@@SGPAV1@PAVBLCK@@@Z 004fee60 f bren:zbmp.obj - 0001:000fe100 ??1ZBMP@@UAE@XZ 004ff100 f bren:zbmp.obj - 0001:000fe170 ?Draw@ZBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 004ff170 f bren:zbmp.obj - 0001:000fe450 ?AssertValid@ZBMP@@QAEXK@Z 004ff450 f bren:zbmp.obj - 0001:000fe530 ?MarkMem@ZBMP@@UAEXXZ 004ff530 f bren:zbmp.obj - 0001:000fe5b0 ??_GZBMP@@UAEPAXI@Z 004ff5b0 f bren:zbmp.obj - 0001:000fe5b0 ??_EZBMP@@UAEPAXI@Z 004ff5b0 f bren:zbmp.obj - 0001:000fe700 ??0ZBMP@@IAE@XZ 004ff700 f bren:zbmp.obj - 0001:000fe73c _BrFixedAbs 004ff73c brfwmxr:fixed386.obj - 0001:000fe74c _BrFixedMul 004ff74c brfwmxr:fixed386.obj - 0001:000fe75d _BrFixedMac2 004ff75d brfwmxr:fixed386.obj - 0001:000fe780 _BrFixedMac3 004ff780 brfwmxr:fixed386.obj - 0001:000fe7ad _BrFixedMac4 004ff7ad brfwmxr:fixed386.obj - 0001:000fe7e4 _BrFixedLength2 004ff7e4 brfwmxr:fixed386.obj - 0001:000fe808 _BrFixedLength3 004ff808 brfwmxr:fixed386.obj - 0001:000fe835 _BrFixedLength4 004ff835 brfwmxr:fixed386.obj - 0001:000fe86b _BrFixedRLength2 004ff86b brfwmxr:fixed386.obj - 0001:000fe88f _BrFixedRLength3 004ff88f brfwmxr:fixed386.obj - 0001:000fe8bc _BrFixedRLength4 004ff8bc brfwmxr:fixed386.obj - 0001:000fe8f2 _BrFixedDiv 004ff8f2 brfwmxr:fixed386.obj - 0001:000fe907 _BrFixedDivR 004ff907 brfwmxr:fixed386.obj - 0001:000fe91d _BrFixedDivF 004ff91d brfwmxr:fixed386.obj - 0001:000fe930 _BrFixedMulDiv 004ff930 brfwmxr:fixed386.obj - 0001:000fe940 _BrFixedMac2Div 004ff940 brfwmxr:fixed386.obj - 0001:000fe962 _BrFixedMac3Div 004ff962 f brfwmxr:fixed386.obj - 0001:000fe98e _BrFixedMac4Div 004ff98e brfwmxr:fixed386.obj - 0001:000fe9c4 _BrFixedFMac2 004ff9c4 brfwmxr:fixed386.obj - 0001:000fe9e9 _BrFixedFMac3 004ff9e9 brfwmxr:fixed386.obj - 0001:000fea19 _BrFixedFMac4 004ffa19 brfwmxr:fixed386.obj - 0001:000fea54 _BrFixedRcp 004ffa54 brfwmxr:fixed386.obj - 0001:000fea65 _BrFixedSqr 004ffa65 brfwmxr:fixed386.obj - 0001:000fea75 _BrFixedSqr2 004ffa75 brfwmxr:fixed386.obj - 0001:000fea96 _BrFixedSqr3 004ffa96 brfwmxr:fixed386.obj - 0001:000feac0 _BrFixedSqr4 004ffac0 brfwmxr:fixed386.obj - 0001:000feaf3 _BrFixedSin 004ffaf3 brfwmxr:fixed386.obj - 0001:000feb24 _BrFixedCos 004ffb24 brfwmxr:fixed386.obj - 0001:000feb55 _BrFixedASin 004ffb55 brfwmxr:fixed386.obj - 0001:000feb89 _BrFixedACos 004ffb89 brfwmxr:fixed386.obj - 0001:000febbd _BrFixedATan2 004ffbbd brfwmxr:fixed386.obj - 0001:000fedc1 _BrFixedATan2Fast 004ffdc1 brfwmxr:fixed386.obj - 0001:000feec9 __Sqrt 004ffec9 brfwmxr:fixed386.obj - 0001:000ff021 __Sqrt64 00500021 brfwmxr:fixed386.obj - 0001:000ff2c8 __FastSqrt 005002c8 brfwmxr:fixed386.obj - 0001:000ff2f3 __FastRSqrt 005002f3 brfwmxr:fixed386.obj - 0001:000ff31c __FastRSqrt64 0050031c brfwmxr:fixed386.obj - 0001:000ff370 SurfacePerScene_ 00500370 brfwmxr:surface.obj - 0001:000ff860 SurfacePerModel_ 00500860 brfwmxr:surface.obj - 0001:000ffb48 Surface_Null_ 00500b48 brfwmxr:surface.obj - 0001:000ffb4f FaceSurface_Null_ 00500b4f brfwmxr:surface.obj - 0001:000ffb56 SurfacePerMaterial_ 00500b56 brfwmxr:surface.obj - 0001:000ffdca _BrLightEnable 00500dca brfwmxr:surface.obj - 0001:000ffe16 _BrLightDisable 00500e16 brfwmxr:surface.obj - 0001:000ffe42 _BrClipPlaneEnable 00500e42 brfwmxr:surface.obj - 0001:000ffe8e _BrClipPlaneDisable 00500e8e brfwmxr:surface.obj - 0001:000ffeba _CopyComponents 00500eba brfwmxr:surface.obj - 0001:000fff20 _BrMatrix34Copy 00500f20 brfwmxr:matrix34.obj - 0001:000fff74 _BrMatrix34Mul 00500f74 brfwmxr:matrix34.obj - 0001:001002df _BrMatrix34Identity 005012df brfwmxr:matrix34.obj - 0001:0010033b _BrMatrix34RotateX 0050133b brfwmxr:matrix34.obj - 0001:001003b2 _BrMatrix34RotateY 005013b2 brfwmxr:matrix34.obj - 0001:00100429 _BrMatrix34RotateZ 00501429 brfwmxr:matrix34.obj - 0001:001004a0 _BrMatrix34Rotate 005014a0 brfwmxr:matrix34.obj - 0001:001005e4 _BrMatrix34Translate 005015e4 brfwmxr:matrix34.obj - 0001:0010063c _BrMatrix34Scale 0050163c brfwmxr:matrix34.obj - 0001:00100694 _BrMatrix34ShearX 00501694 brfwmxr:matrix34.obj - 0001:001006ef _BrMatrix34ShearY 005016ef brfwmxr:matrix34.obj - 0001:0010074a _BrMatrix34ShearZ 0050174a brfwmxr:matrix34.obj - 0001:001007a5 _BrMatrix34Inverse 005017a5 brfwmxr:matrix34.obj - 0001:00100bf1 _BrMatrix34LPInverse 00501bf1 brfwmxr:matrix34.obj - 0001:00100d2d _BrMatrix34LPNormalise 00501d2d brfwmxr:matrix34.obj - 0001:00100ed1 _BrMatrix34RollingBall 00501ed1 brfwmxr:matrix34.obj - 0001:00101029 _BrMatrix34Copy4 00502029 brfwmxr:matrix34.obj - 0001:0010107d BrMatrix34TApplyFV_ 0050207d brfwmxr:matrix34.obj - 0001:00101169 _BrMatrix34Apply 00502169 brfwmxr:matrix34.obj - 0001:00101249 _BrMatrix34ApplyP 00502249 brfwmxr:matrix34.obj - 0001:00101335 _BrMatrix34ApplyV 00502335 brfwmxr:matrix34.obj - 0001:00101411 _BrMatrix34TApply 00502411 brfwmxr:matrix34.obj - 0001:00101544 _BrMatrix34TApplyP 00502544 brfwmxr:matrix34.obj - 0001:00101620 _BrMatrix34TApplyV 00502620 brfwmxr:matrix34.obj - 0001:001016fc _BrMatrix34Pre 005026fc brfwmxr:matrix34.obj - 0001:0010172b _BrMatrix34Post 0050272b brfwmxr:matrix34.obj - 0001:0010175a _BrMatrix34PreRotateX 0050275a brfwmxr:matrix34.obj - 0001:0010179e _BrMatrix34PostRotateX 0050279e brfwmxr:matrix34.obj - 0001:001017e2 _BrMatrix34PreRotateY 005027e2 brfwmxr:matrix34.obj - 0001:00101826 _BrMatrix34PostRotateY 00502826 brfwmxr:matrix34.obj - 0001:0010186a _BrMatrix34PreRotateZ 0050286a brfwmxr:matrix34.obj - 0001:001018ae _BrMatrix34PostRotateZ 005028ae brfwmxr:matrix34.obj - 0001:001018f2 _BrMatrix34PreRotate 005028f2 brfwmxr:matrix34.obj - 0001:0010193a _BrMatrix34PostRotate 0050293a brfwmxr:matrix34.obj - 0001:00101982 _BrMatrix34PreTranslate 00502982 brfwmxr:matrix34.obj - 0001:001019cd _BrMatrix34PostTranslate 005029cd brfwmxr:matrix34.obj - 0001:00101a18 _BrMatrix34PreScale 00502a18 brfwmxr:matrix34.obj - 0001:00101a63 _BrMatrix34PostScale 00502a63 brfwmxr:matrix34.obj - 0001:00101aae _BrMatrix34PreShearX 00502aae brfwmxr:matrix34.obj - 0001:00101af2 _BrMatrix34PostShearX 00502af2 brfwmxr:matrix34.obj - 0001:00101b36 _BrMatrix34PreShearY 00502b36 brfwmxr:matrix34.obj - 0001:00101b7a _BrMatrix34PostShearY 00502b7a brfwmxr:matrix34.obj - 0001:00101bbe _BrMatrix34PreShearZ 00502bbe brfwmxr:matrix34.obj - 0001:00101c02 _BrMatrix34PostShearZ 00502c02 brfwmxr:matrix34.obj - 0001:00101c50 _BrActorEnum 00502c50 brfwmxr:actsupt.obj - 0001:00101c7b _BrActorSearchMany 00502c7b brfwmxr:actsupt.obj - 0001:00101d17 _BrActorSearch 00502d17 brfwmxr:actsupt.obj - 0001:00101d77 _BrActorAdd 00502d77 brfwmxr:actsupt.obj - 0001:00101ddf _BrActorRemove 00502ddf brfwmxr:actsupt.obj - 0001:00101e37 _BrActorRelink 00502e37 brfwmxr:actsupt.obj - 0001:00101ebb _BrActorAllocate 00502ebb brfwmxr:actsupt.obj - 0001:00102002 _BrActorFree 00503002 brfwmxr:actsupt.obj - 0001:00102031 BrActorToRoot_ 00503031 brfwmxr:actsupt.obj - 0001:00102095 BrCameraToScreenMatrix4_ 00503095 brfwmxr:actsupt.obj - 0001:00102155 BrVector3EyeInModel_ 00503155 brfwmxr:actsupt.obj - 0001:001021a5 _BrActorToActorMatrix34 005031a5 brfwmxr:actsupt.obj - 0001:0010243d _BrActorToScreenMatrix4 0050343d brfwmxr:actsupt.obj - 0001:001025e9 _BrActorToBounds 005035e9 brfwmxr:actsupt.obj - 0001:00102695 _BrBoundsToMatrix34 00503695 brfwmxr:actsupt.obj - 0001:00102760 _BrBegin 00503760 brfwmxr:fwsetup.obj - 0001:00102864 _BrEnd 00503864 brfwmxr:fwsetup.obj - 0001:00102887 _BrDiagHandlerSet 00503887 brfwmxr:fwsetup.obj - 0001:001028a6 _BrFilesystemSet 005038a6 brfwmxr:fwsetup.obj - 0001:001028c5 _BrAllocatorSet 005038c5 brfwmxr:fwsetup.obj - 0001:00102be4 _BrScenePick2D 00503be4 brfwmxr:pick.obj - 0001:00102fa3 _BrScenePick3D 00503fa3 brfwmxr:pick.obj - 0001:00102ff7 _BrModelPick2D 00503ff7 brfwmxr:pick.obj - 0001:00103560 _LightingFaceColour 00504560 brfwmxr:light24.obj - 0001:001035f8 _LightingColourCopyMaterial 005045f8 brfwmxr:light24.obj - 0001:0010363b _LightingColourCopyVertex 0050463b brfwmxr:light24.obj - 0001:0010366b _LightingColour 0050466b brfwmxr:light24.obj - 0001:001038d2 LightingColour_Null_ 005048d2 brfwmxr:light24.obj - 0001:001038e9 LightingColour_Dirn_ 005048e9 brfwmxr:light24.obj - 0001:00103ae9 LightingColour_Point_ 00504ae9 brfwmxr:light24.obj - 0001:00103dfd LightingColour_PointAttn_ 00504dfd brfwmxr:light24.obj - 0001:0010415c LightingColour_Spot_ 0050515c brfwmxr:light24.obj - 0001:00104508 LightingColour_SpotAttn_ 00505508 brfwmxr:light24.obj - 0001:00104920 _BrMatrix4Copy 00505920 brfwmxr:matrix4.obj - 0001:0010498c _BrMatrix4Mul 0050598c brfwmxr:matrix4.obj - 0001:00104ddc _BrMatrix4Identity 00505ddc brfwmxr:matrix4.obj - 0001:00104e54 _BrMatrix4Scale 00505e54 brfwmxr:matrix4.obj - 0001:00104ec8 _BrMatrix4Inverse 00505ec8 brfwmxr:matrix4.obj - 0001:00104ff7 _BrMatrix4Determinant 00505ff7 brfwmxr:matrix4.obj - 0001:00105147 _BrMatrix4Adjoint 00506147 brfwmxr:matrix4.obj - 0001:00105483 _BrMatrix4Perspective 00506483 brfwmxr:matrix4.obj - 0001:00105566 _BrMatrix4Apply 00506566 brfwmxr:matrix4.obj - 0001:00105689 _BrMatrix4ApplyP 00506689 brfwmxr:matrix4.obj - 0001:001057d4 _BrMatrix4ApplyV 005067d4 brfwmxr:matrix4.obj - 0001:001058f8 _BrMatrix4TApply 005068f8 brfwmxr:matrix4.obj - 0001:00105a1b _BrMatrix4TApplyP 00506a1b brfwmxr:matrix4.obj - 0001:00105b66 _BrMatrix4TApplyV 00506b66 brfwmxr:matrix4.obj - 0001:00105c8a _BrMatrix4Copy34 00506c8a brfwmxr:matrix4.obj - 0001:00105cfa _BrMatrix4Pre34 00506cfa brfwmxr:matrix4.obj - 0001:00106100 _BrEnvironmentSet 00507100 brfwmxr:envmap.obj - 0001:00106114 _MapEnvironmentInfinite2D 00507114 brfwmxr:envmap.obj - 0001:001062f0 _MapEnvironmentLocal2D 005072f0 brfwmxr:envmap.obj - 0001:00106540 _MapFromVertex 00507540 brfwmxr:envmap.obj - 0001:001065bb _MapFromVertexOnly 005075bb brfwmxr:envmap.obj - 0001:00106630 _LightingFaceIndex 00507630 brfwmxr:light8.obj - 0001:0010669c _LightingIndexCopyMaterial 0050769c brfwmxr:light8.obj - 0001:001066b8 _LightingIndexCopyVertex 005076b8 brfwmxr:light8.obj - 0001:001066e8 _LightingIndex 005076e8 brfwmxr:light8.obj - 0001:00106880 LightingIndex_Null_ 00507880 brfwmxr:light8.obj - 0001:0010688c LightingIndex_Dirn_ 0050788c brfwmxr:light8.obj - 0001:001069b7 LightingIndex_Point_ 005079b7 brfwmxr:light8.obj - 0001:00106be3 LightingIndex_PointAttn_ 00507be3 brfwmxr:light8.obj - 0001:00106e53 LightingIndex_Spot_ 00507e53 brfwmxr:light8.obj - 0001:001070d7 LightingIndex_SpotAttn_ 005080d7 brfwmxr:light8.obj - 0001:001073c0 _LightingColour_1MD 005083c0 brfwmxr:light24o.obj - 0001:001073e0 _LightingColour_1MDT 005083e0 brfwmxr:light24o.obj - 0001:00107460 _LightingIndex_1MD 00508460 brfwmxr:light8o.obj - 0001:001075ff _LightingIndex_1MDT 005085ff brfwmxr:light8o.obj - 0001:00107800 _BrFailure 00508800 brfwmxr:diag.obj - 0001:00107840 _BrWarning 00508840 brfwmxr:diag.obj - 0001:00107880 _BrFatal 00508880 brfwmxr:diag.obj - 0001:001078d0 _BrNewList 005088d0 brfwmxr:brlists.obj - 0001:001078e8 _BrAddHead 005088e8 brfwmxr:brlists.obj - 0001:00107903 _BrAddTail 00508903 brfwmxr:brlists.obj - 0001:00107922 _BrRemHead 00508922 brfwmxr:brlists.obj - 0001:0010793e _BrRemTail 0050893e brfwmxr:brlists.obj - 0001:0010795a _BrInsert 0050895a brfwmxr:brlists.obj - 0001:00107976 _BrRemove 00508976 brfwmxr:brlists.obj - 0001:0010798e _BrSimpleNewList 0050898e brfwmxr:brlists.obj - 0001:0010799e _BrSimpleAddHead 0050899e brfwmxr:brlists.obj - 0001:001079be _BrSimpleRemHead 005089be brfwmxr:brlists.obj - 0001:001079f2 _BrSimpleInsert 005089f2 brfwmxr:brlists.obj - 0001:00107a12 _BrSimpleRemove 00508a12 brfwmxr:brlists.obj - 0001:00107a5c _BrTransformToMatrix34 00508a5c brfwmxr:transfrm.obj - 0001:00107ce8 _BrMatrix34PreTransform 00508ce8 brfwmxr:transfrm.obj - 0001:00107d1c _BrMatrix34PostTransform 00508d1c brfwmxr:transfrm.obj - 0001:00107d50 _BrMatrix4PreTransform 00508d50 brfwmxr:transfrm.obj - 0001:00107da0 _BrMatrix34ToTransform 00508da0 brfwmxr:transfrm.obj - 0001:00107e90 _BrTransformToTransform 00508e90 brfwmxr:transfrm.obj - 0001:00107f00 NamePatternMatch_ 00508f00 brfwmxr:register.obj - 0001:00107fd3 RegistryNew_ 00508fd3 brfwmxr:register.obj - 0001:00107ff7 RegistryClear_ 00508ff7 brfwmxr:register.obj - 0001:0010802b RegistryAdd_ 0050902b brfwmxr:register.obj - 0001:00108067 RegistryAddMany_ 00509067 brfwmxr:register.obj - 0001:001080d2 RegistryRemove_ 005090d2 brfwmxr:register.obj - 0001:0010811a RegistryRemoveMany_ 0050911a brfwmxr:register.obj - 0001:0010815e RegistryFind_ 0050915e brfwmxr:register.obj - 0001:001081a9 RegistryFindMany_ 005091a9 brfwmxr:register.obj - 0001:001081f9 RegistryCount_ 005091f9 brfwmxr:register.obj - 0001:00108234 RegistryEnum_ 00509234 brfwmxr:register.obj - 0001:001082c0 _BrResAllocate 005092c0 brfwmxr:resource.obj - 0001:001083e4 _BrResFree 005093e4 brfwmxr:resource.obj - 0001:00108403 _BrResAdd 00509403 brfwmxr:resource.obj - 0001:00108453 _BrResRemove 00509453 brfwmxr:resource.obj - 0001:0010847b _BrResClass 0050947b brfwmxr:resource.obj - 0001:0010849b _BrResSize 0050949b brfwmxr:resource.obj - 0001:001084ef _BrResSizeTotal 005094ef brfwmxr:resource.obj - 0001:0010852f _BrResChildEnum 0050952f brfwmxr:resource.obj - 0001:0010857b _BrResCheck 0050957b brfwmxr:resource.obj - 0001:001085af _BrResStrDup 005095af brfwmxr:resource.obj - 0001:001085f0 _BrModelAdd 005095f0 brfwmxr:regsupt.obj - 0001:00108624 _BrModelRemove 00509624 brfwmxr:regsupt.obj - 0001:0010863c _BrModelFind 0050963c brfwmxr:regsupt.obj - 0001:00108650 _BrModelFindHook 00509650 brfwmxr:regsupt.obj - 0001:00108664 _BrModelAddMany 00509664 brfwmxr:regsupt.obj - 0001:001086c0 _BrModelRemoveMany 005096c0 brfwmxr:regsupt.obj - 0001:00108704 _BrModelFindMany 00509704 brfwmxr:regsupt.obj - 0001:00108723 _BrModelCount 00509723 brfwmxr:regsupt.obj - 0001:00108737 _BrModelEnum 00509737 brfwmxr:regsupt.obj - 0001:00108756 _BrMaterialAdd 00509756 brfwmxr:regsupt.obj - 0001:00108786 _BrMaterialRemove 00509786 brfwmxr:regsupt.obj - 0001:0010879e _BrMaterialFind 0050979e brfwmxr:regsupt.obj - 0001:001087b2 _BrMaterialFindHook 005097b2 brfwmxr:regsupt.obj - 0001:001087c6 _BrMaterialAddMany 005097c6 brfwmxr:regsupt.obj - 0001:00108826 _BrMaterialRemoveMany 00509826 brfwmxr:regsupt.obj - 0001:0010886a _BrMaterialFindMany 0050986a brfwmxr:regsupt.obj - 0001:00108889 _BrMaterialCount 00509889 brfwmxr:regsupt.obj - 0001:0010889d _BrMaterialEnum 0050989d brfwmxr:regsupt.obj - 0001:001088bc _BrMapAdd 005098bc brfwmxr:regsupt.obj - 0001:001088d0 _BrMapRemove 005098d0 brfwmxr:regsupt.obj - 0001:001088e4 _BrMapFind 005098e4 brfwmxr:regsupt.obj - 0001:001088f8 _BrMapFindHook 005098f8 brfwmxr:regsupt.obj - 0001:0010890c _BrMapAddMany 0050990c brfwmxr:regsupt.obj - 0001:00108928 _BrMapRemoveMany 00509928 brfwmxr:regsupt.obj - 0001:00108944 _BrMapFindMany 00509944 brfwmxr:regsupt.obj - 0001:00108963 _BrMapCount 00509963 brfwmxr:regsupt.obj - 0001:00108977 _BrMapEnum 00509977 brfwmxr:regsupt.obj - 0001:00108996 _BrTableAdd 00509996 brfwmxr:regsupt.obj - 0001:001089aa _BrTableRemove 005099aa brfwmxr:regsupt.obj - 0001:001089be _BrTableFind 005099be brfwmxr:regsupt.obj - 0001:001089d2 _BrTableFindHook 005099d2 brfwmxr:regsupt.obj - 0001:001089e6 _BrTableAddMany 005099e6 brfwmxr:regsupt.obj - 0001:00108a02 _BrTableRemoveMany 00509a02 brfwmxr:regsupt.obj - 0001:00108a1e _BrTableFindMany 00509a1e brfwmxr:regsupt.obj - 0001:00108a3d _BrTableCount 00509a3d brfwmxr:regsupt.obj - 0001:00108a51 _BrTableEnum 00509a51 brfwmxr:regsupt.obj - 0001:00108a70 _BrResClassAdd 00509a70 brfwmxr:regsupt.obj - 0001:00108aa3 _BrResClassRemove 00509aa3 brfwmxr:regsupt.obj - 0001:00108ad3 _BrResClassFind 00509ad3 brfwmxr:regsupt.obj - 0001:00108ae7 _BrResClassFindHook 00509ae7 brfwmxr:regsupt.obj - 0001:00108afb _BrResClassAddMany 00509afb brfwmxr:regsupt.obj - 0001:00108b4e _BrResClassRemoveMany 00509b4e brfwmxr:regsupt.obj - 0001:00108ba6 _BrResClassFindMany 00509ba6 brfwmxr:regsupt.obj - 0001:00108bc5 _BrResClassCount 00509bc5 brfwmxr:regsupt.obj - 0001:00108bd9 _BrResClassEnum 00509bd9 brfwmxr:regsupt.obj - 0001:00108c0c _BrModelApplyMap 00509c0c brfwmxr:regsupt.obj - 0001:00108dd8 _BrModelFitMap 00509dd8 brfwmxr:regsupt.obj - 0001:00108fa8 _BrModelFree 00509fa8 brfwmxr:regsupt.obj - 0001:00108fbc _BrModelAllocate 00509fbc brfwmxr:regsupt.obj - 0001:00109038 _BrMaterialAllocate 0050a038 brfwmxr:regsupt.obj - 0001:0010908c _BrMaterialFree 0050a08c brfwmxr:regsupt.obj - 0001:00109700 _BrImageFind 0050a700 brfwmxr:loader.obj - 0001:00109737 _BrImageReference 0050a737 brfwmxr:loader.obj - 0001:0010979a _BrImageLookupName 0050a79a brfwmxr:loader.obj - 0001:0010984a _BrImageLookupOrdinal 0050a84a brfwmxr:loader.obj - 0001:00109876 _BrImageDereference 0050a876 brfwmxr:loader.obj - 0001:001098a6 _BrImageFree 0050a8a6 brfwmxr:loader.obj - 0001:001098f1 __BrImageFree 0050a8f1 brfwmxr:loader.obj - 0001:00109920 __BrPmMemFill 0050a920 brfwmxr:pmmemops.obj - 0001:001099ef __BrPmMemRectangleCopyTo 0050a9ef brfwmxr:pmmemops.obj - 0001:00109adf __BrPmMemRectangleCopyFrom 0050aadf brfwmxr:pmmemops.obj - 0001:00109bbf __BrPmMemRectangleFill 0050abbf brfwmxr:pmmemops.obj - 0001:00109c33 __BrPmMemDirtyRectangleCopy 0050ac33 brfwmxr:pmmemops.obj - 0001:00109c73 __BrPmMemDirtyRectangleFill 0050ac73 brfwmxr:pmmemops.obj - 0001:00109caf __BrPmMemCopy 0050acaf brfwmxr:pmmemops.obj - 0001:00109e3a __BrPmMemPixelSet 0050ae3a brfwmxr:pmmemops.obj - 0001:00109ea2 __BrPmMemPixelGet 0050aea2 brfwmxr:pmmemops.obj - 0001:00109f06 __BrPmMemLine 0050af06 brfwmxr:pmmemops.obj - 0001:0010b5de __BrPmMemCopyBits 0050c5de brfwmxr:pmmemops.obj - 0001:0010b664 __MemCopyBits_A 0050c664 brfwmxr:memloops.obj - 0001:0010ba54 __MemFill_A 0050ca54 brfwmxr:memloops.obj - 0001:0010bb38 __MemRectFill_A 0050cb38 brfwmxr:memloops.obj - 0001:0010bc61 __MemRectCopy_A 0050cc61 brfwmxr:memloops.obj - 0001:0010bcb9 __MemCopy_A 0050ccb9 brfwmxr:memloops.obj - 0001:0010bcfe __MemPixelSet 0050ccfe brfwmxr:memloops.obj - 0001:0010bd5b __MemPixelGet 0050cd5b f brfwmxr:memloops.obj - 0001:0010bdb7 __GetSysQual 0050cdb7 brfwmxr:memloops.obj - 0001:0010bdc0 __BrFileFree 0050cdc0 brfwmxr:file.obj - 0001:0010bddc _BrFileAttributes 0050cddc brfwmxr:file.obj - 0001:0010bdec _BrFileOpenRead 0050cdec brfwmxr:file.obj - 0001:0010be58 _BrFileOpenWrite 0050ce58 brfwmxr:file.obj - 0001:0010beb8 _BrFileClose 0050ceb8 brfwmxr:file.obj - 0001:0010bed4 _BrFileEof 0050ced4 brfwmxr:file.obj - 0001:0010bef0 _BrFileGetChar 0050cef0 brfwmxr:file.obj - 0001:0010bf0c _BrFilePutChar 0050cf0c brfwmxr:file.obj - 0001:0010bf2c _BrFileRead 0050cf2c brfwmxr:file.obj - 0001:0010bf58 _BrFileWrite 0050cf58 brfwmxr:file.obj - 0001:0010bf84 _BrFileGetLine 0050cf84 brfwmxr:file.obj - 0001:0010bfab _BrFilePutLine 0050cfab brfwmxr:file.obj - 0001:0010bfcb _BrFileAdvance 0050cfcb brfwmxr:file.obj - 0001:0010bfeb _BrFilePrintf 0050cfeb brfwmxr:file.obj - 0001:0010c030 _BrEulerToMatrix34 0050d030 brfwmxr:angles.obj - 0001:0010c354 _BrMatrix34ToEuler 0050d354 brfwmxr:angles.obj - 0001:0010c5b3 _BrEulerToMatrix4 0050d5b3 brfwmxr:angles.obj - 0001:0010c5e3 _BrMatrix4ToEuler 0050d5e3 brfwmxr:angles.obj - 0001:0010c612 _BrEulerToQuat 0050d612 brfwmxr:angles.obj - 0001:0010c896 _BrQuatToEuler 0050d896 brfwmxr:angles.obj - 0001:0010c8d0 _BrQuatMul 0050d8d0 brfwmxr:quat.obj - 0001:0010c9f0 _BrQuatNormalise 0050d9f0 brfwmxr:quat.obj - 0001:0010ca68 _BrQuatInvert 0050da68 brfwmxr:quat.obj - 0001:0010ca98 _BrQuatSlerp 0050da98 brfwmxr:quat.obj - 0001:0010cc68 _BrQuatToMatrix34 0050dc68 brfwmxr:quat.obj - 0001:0010cd93 _BrMatrix34ToQuat 0050dd93 brfwmxr:quat.obj - 0001:0010cf5f _BrQuatToMatrix4 0050df5f brfwmxr:quat.obj - 0001:0010cf8f _BrMatrix4ToQuat 0050df8f brfwmxr:quat.obj - 0001:0010cfc0 _BrMemAllocate 0050dfc0 brfwmxr:mem.obj - 0001:0010cff3 _BrMemFree 0050dff3 brfwmxr:mem.obj - 0001:0010d00b _BrMemInquire 0050e00b brfwmxr:mem.obj - 0001:0010d023 _BrMemCalloc 0050e023 brfwmxr:mem.obj - 0001:0010d05a _BrMemStrDup 0050e05a brfwmxr:mem.obj - 0001:0010d0a0 _BrMaterialUpdate 0050e0a0 brfwmxr:prepmatl.obj - 0001:0010dcc9 PrepareVertices_ 0050ecc9 brfwmxr:prepmesh.obj - 0001:0010e1d1 PrepareVerticesFast_ 0050f1d1 brfwmxr:prepmesh.obj - 0001:0010e509 PrepareEdges_ 0050f509 brfwmxr:prepmesh.obj - 0001:0010e6e8 _BrModelUpdate 0050f6e8 brfwmxr:prepmesh.obj - 0001:0010e920 __BrGenericLine 0050f920 brfwmxr:pmgenops.obj - 0001:0010f79c __BrGenericDoubleBuffer 0051079c brfwmxr:pmgenops.obj - 0001:0010f7b8 __BrGenericMatch 005107b8 brfwmxr:pmgenops.obj - 0001:0010f89c __BrGenericClone 0051089c brfwmxr:pmgenops.obj - 0001:0010f8e8 __BrGenericFree 005108e8 brfwmxr:pmgenops.obj - 0001:0010f8fc __BrGenericDirtyRectangleCopy 005108fc brfwmxr:pmgenops.obj - 0001:0010f938 __BrGenericDirtyRectangleFill 00510938 brfwmxr:pmgenops.obj - 0001:0010f970 __BrGenericRectangle 00510970 brfwmxr:pmgenops.obj - 0001:0010fa10 __BrGenericRectangle2 00510a10 brfwmxr:pmgenops.obj - 0001:0010faa8 __BrGenericRectangleCopy 00510aa8 brfwmxr:pmgenops.obj - 0001:0010faaf __BrGenericCopy 00510aaf brfwmxr:pmgenops.obj - 0001:0010fac0 _BrPixelmapAllocate 00510ac0 brfwmxr:pixelmap.obj - 0001:0010fbd8 _BrPixelmapAllocateSub 00510bd8 brfwmxr:pixelmap.obj - 0001:0010fca0 _BrPixelmapFileSize 00510ca0 brfwmxr:pixelmap.obj - 0001:0010fcb7 _BrPixelmapPixelSize 00510cb7 brfwmxr:pixelmap.obj - 0001:0010fcce _BrPixelmapChannels 00510cce brfwmxr:pixelmap.obj - 0001:0010fcf0 _BrFixedSqrt 00510cf0 brfwmxr:fixed.obj - 0001:0010fd24 _BrFixedPow 00510d24 brfwmxr:fixed.obj - 0001:0010fd70 _BrScratchAllocate 00510d70 brfwmxr:scratch.obj - 0001:0010fdec _BrScratchFree 00510dec brfwmxr:scratch.obj - 0001:0010fdfb _BrScratchFlush 00510dfb brfwmxr:scratch.obj - 0001:0010fe3f _BrScratchInquire 00510e3f brfwmxr:scratch.obj - 0001:0010fe50 _BrQsort 00510e50 brfwmxr:brqsort.obj - 0001:00110060 __CHP 00511060 f brfwmxr:magicsym.obj - 0001:00110080 _BrPixelmapFree 00511080 brfwmxr:pmdsptch.obj - 0001:001100a8 _BrPixelmapMatch 005110a8 brfwmxr:pmdsptch.obj - 0001:001100d7 _BrPixelmapClone 005110d7 brfwmxr:pmdsptch.obj - 0001:001100ff _BrPixelmapFill 005110ff brfwmxr:pmdsptch.obj - 0001:0011012b _BrPixelmapRectangle 0051112b brfwmxr:pmdsptch.obj - 0001:00110183 _BrPixelmapRectangle2 00511183 brfwmxr:pmdsptch.obj - 0001:001101db _BrPixelmapRectangleCopy 005111db brfwmxr:pmdsptch.obj - 0001:00110536 _BrPixelmapRectangleFill 00511536 brfwmxr:pmdsptch.obj - 0001:0011066a _BrPixelmapDirtyRectangleCopy 0051166a brfwmxr:pmdsptch.obj - 0001:001107a1 _BrPixelmapDirtyRectangleClear 005117a1 brfwmxr:pmdsptch.obj - 0001:001108d5 _BrPixelmapPixelSet 005118d5 brfwmxr:pmdsptch.obj - 0001:0011094d _BrPixelmapPixelGet 0051194d brfwmxr:pmdsptch.obj - 0001:001109d0 _BrPixelmapCopy 005119d0 brfwmxr:pmdsptch.obj - 0001:00110a50 _BrPixelmapLine 00511a50 brfwmxr:pmdsptch.obj - 0001:00110d0c _BrPixelmapDoubleBuffer 00511d0c brfwmxr:pmdsptch.obj - 0001:00110d38 _BrPixelmapText 00511d38 brfwmxr:pmdsptch.obj - 0001:00110fd3 _BrPixelmapTextF 00511fd3 brfwmxr:pmdsptch.obj - 0001:0011101b _BrPixelmapTextWidth 0051201b brfwmxr:pmdsptch.obj - 0001:0011109b _BrPixelmapTextHeight 0051209b brfwmxr:pmdsptch.obj - 0001:001110c3 _BrPixelmapCopyBits 005120c3 brfwmxr:pmdsptch.obj - 0001:00111230 _BrZbModelRender 00512230 brzbmxr:zbrendr.obj - 0001:00111790 _BrZbSceneRenderBegin 00512790 brzbmxr:zbrendr.obj - 0001:001119d0 _BrZbSceneRenderAdd 005129d0 brzbmxr:zbrendr.obj - 0001:001119f0 _BrZbSceneRenderEnd 005129f0 brzbmxr:zbrendr.obj - 0001:001119ff _BrZbSceneRender 005129ff brzbmxr:zbrendr.obj - 0001:00111a4a _BrZbSetRenderBoundsCallback 00512a4a brzbmxr:zbrendr.obj - 0001:00111a60 _BrZbBegin 00512a60 brzbmxr:zbsetup.obj - 0001:00111b13 _BrZbEnd 00512b13 brzbmxr:zbsetup.obj - 0001:00111b37 _TriangleRender_Null 00512b37 brzbmxr:zbsetup.obj - 0001:00111b3e _LineRender_Null 00512b3e brzbmxr:zbsetup.obj - 0001:00111b45 _PointRender_Null 00512b45 brzbmxr:zbsetup.obj - 0001:00111b90 ZbFindVisibleFaces_ 00512b90 brzbmxr:zbmesh.obj - 0001:00111edb ZbFindVisibleFacesPar_ 00512edb brzbmxr:zbmesh.obj - 0001:0011221f ZbTransformVertices_ 0051321f brzbmxr:zbmesh.obj - 0001:001128d3 _ZbRenderFaceGroup 005138d3 brzbmxr:zbmesh.obj - 0001:00112b87 _ZbRenderFaceGroup_FaceI 00513b87 brzbmxr:zbmesh.obj - 0001:00112e63 _ZbRenderFaceGroup_FaceIV 00513e63 brzbmxr:zbmesh.obj - 0001:001131d3 _ZbRenderFaceGroup_FaceRGB 005141d3 brzbmxr:zbmesh.obj - 0001:0011448e ZbMeshRender_ 0051548e brzbmxr:zbmesh.obj - 0001:0011474a ZbScratchShrink_ 0051574a brzbmxr:zbmesh.obj - 0001:00114750 _PointRenderPFZ2 00515750 brzbmxr:zbmeshp.obj - 0001:00114808 _PointRenderPFZ4 00515808 brzbmxr:zbmeshp.obj - 0001:00114be4 ZbMeshRenderPoints_ 00515be4 brzbmxr:zbmeshp.obj - 0001:00114f94 ZbBoundingBoxRenderPoints_ 00515f94 brzbmxr:bbox.obj - 0001:00114fc0 ZbBoundingBoxRenderEdges_ 00515fc0 brzbmxr:bbox.obj - 0001:00114fec ZbBoundingBoxRenderFaces_ 00515fec brzbmxr:bbox.obj - 0001:00115020 _LineRenderPFZ2I555 00516020 brzbmxr:zbmeshe.obj - 0001:001154af _LineRenderPFZ2I888 005164af brzbmxr:zbmeshe.obj - 0001:0011593b _LineRenderPFZ2I 0051693b brzbmxr:zbmeshe.obj - 0001:00115caf _LineRenderPFZ4I 00516caf brzbmxr:zbmeshe.obj - 0001:00116cca ZbMeshRenderEdges_ 00517cca brzbmxr:zbmeshe.obj - 0001:00116f70 _TriangleRenderPIZ2TIP256 00517f70 brzbmxr:persp.obj - 0001:001180f6 _TriangleRenderPIZ2TP256 005190f6 brzbmxr:persp.obj - 0001:00119140 _TriangleRenderPIZ2TIP64 0051a140 brzbmxr:persp.obj - 0001:0011a34a _TriangleRenderPIZ2TP64 0051b34a brzbmxr:persp.obj - 0001:0011b427 _TriangleRenderPIZ2TP1024 0051c427 brzbmxr:persp.obj - 0001:0011c530 _TriangleRenderPIZ2_RGB_888 0051d530 brzbmxr:tt24_piz.obj - 0001:0011c551 _RawTriangle_PIZ2_RGB_888 0051d551 f brzbmxr:tt24_piz.obj - 0001:0011cc00 _TriangleRenderPIZ2I_RGB_888 0051dc00 brzbmxr:tt24_piz.obj - 0001:0011cc21 _RawTriangle_PIZ2I_RGB_888 0051dc21 brzbmxr:tt24_piz.obj - 0001:0011d8e0 _TriangleRenderPIZ2TIA 0051e8e0 brzbmxr:awtm.obj - 0001:0011e1a8 _TriangleRenderPIZ2TA 0051f1a8 brzbmxr:awtm.obj - 0001:0011e9d8 _TriangleRenderPIZ2TA24 0051f9d8 brzbmxr:awtm.obj - 0001:0011f254 _TriangleRenderPIZ2TA15 00520254 brzbmxr:awtm.obj - 0001:0011faa0 _TriangleRenderPIZ2_RGB_555 00520aa0 brzbmxr:tt15_piz.obj - 0001:0011fac1 _RawTriangle_PIZ2_RGB_555 00520ac1 brzbmxr:tt15_piz.obj - 0001:00120140 _TriangleRenderPIZ2I_RGB_555 00521140 f brzbmxr:tt15_piz.obj - 0001:00120161 _RawTriangle_PIZ2I_RGB_555 00521161 brzbmxr:tt15_piz.obj - 0001:00120ecc _TriangleRenderPIZ2 00521ecc brzbmxr:ti8_piz.obj - 0001:00120eed _RawTriangle_PIZ2 00521eed brzbmxr:ti8_piz.obj - 0001:00121496 _TriangleRenderPIZ2I 00522496 brzbmxr:ti8_piz.obj - 0001:001214b7 _RawTriangle_PIZ2I 005224b7 brzbmxr:ti8_piz.obj - 0001:00121c76 _TriangleRenderPIZ2T 00522c76 brzbmxr:ti8_piz.obj - 0001:00121c97 _RawTriangle_PIZ2T 00522c97 brzbmxr:ti8_piz.obj - 0001:00122790 _TriangleRenderPIZ2TI 00523790 brzbmxr:ti8_piz.obj - 0001:001227b1 _RawTriangle_PIZ2TI 005237b1 f brzbmxr:ti8_piz.obj - 0001:00123560 ZbMaterialUpdate_ 00524560 brzbmxr:zbmatl.obj - 0001:001236d0 _TriangleRenderPIZ2TAD 005246d0 brzbmxr:decal.obj - 0001:00123714 _TriangleRenderPIZ2TIAD 00524714 brzbmxr:decal.obj - 0001:00123848 _OSFFVGroupCulled_A 00524848 brzbmxr:mesh386.obj - 0001:00123909 _OSFFVGroupCulledLit_A 00524909 brzbmxr:mesh386.obj - 0001:001239f1 _OSCopyModelToScreen_A 005249f1 brzbmxr:mesh386.obj - 0001:00123ada _OSTVGroup_A 00524ada f brzbmxr:mesh386.obj - 0001:00123bf9 _OSTVGroupBC_A 00524bf9 brzbmxr:mesh386.obj - 0001:00123d4c _OSTVGroupLit_A 00524d4c brzbmxr:mesh386.obj - 0001:00123e7e _OSTVGroupLitBC_A 00524e7e brzbmxr:mesh386.obj - 0001:00124776 ZbFaceClip_ 00525776 brzbmxr:zbclip.obj - 0001:0012497e ZbTempClip_ 0052597e brzbmxr:zbclip.obj - 0001:00124b6c _ScanLinePIZ2TIP256 00525b6c brzbmxr:pscan.obj - 0001:00124efa _ScanLinePIZ2TIP64 00525efa f brzbmxr:pscan.obj - 0001:001252a2 _ScanLinePIZ2TP256 005262a2 brzbmxr:pscan.obj - 0001:001255b8 _ScanLinePIZ2TP64 005265b8 brzbmxr:pscan.obj - 0001:001258e8 _ScanLinePIZ2TP1024 005268e8 brzbmxr:pscan.obj - 0001:00125c2c _SafeFixedMac2Div 00526c2c f brzbmxr:safediv.obj - 0001:00125c80 _TrapezoidRenderPIZ2TA 00526c80 brzbmxr:piz2tia.obj - 0001:00126001 _TrapezoidRenderPIZ2TIA 00527001 brzbmxr:piz2tia.obj - 0001:00126409 _TrapezoidRenderPIZ2TA15 00527409 f brzbmxr:piz2tia.obj - 0001:001267b4 _TrapezoidRenderPIZ2TA24 005277b4 brzbmxr:piz2tia.obj - 0001:00126b90 ?FWouldBe@MVIE@@SGHJ@Z 00527b90 f engine:movie.obj - 0001:00126bd0 ?FIs@MVIE@@UAEHJ@Z 00527bd0 f engine:movie.obj - 0001:00126c00 ?Cls@MVIE@@UAEJXZ 00527c00 f engine:movie.obj - 0001:00126c30 ?FWouldBe@MUNB@@SGHJ@Z 00527c30 f engine:movie.obj - 0001:00126c70 ?FIs@MUNB@@UAEHJ@Z 00527c70 f engine:movie.obj - 0001:00126ca0 ?Cls@MUNB@@UAEJXZ 00527ca0 f engine:movie.obj - 0001:00126cd0 ?FWouldBe@MUNS@@SGHJ@Z 00527cd0 f engine:movie.obj - 0001:00126d10 ?FIs@MUNS@@UAEHJ@Z 00527d10 f engine:movie.obj - 0001:00126d40 ?Cls@MUNS@@UAEJXZ 00527d40 f engine:movie.obj - 0001:00126d70 ??0MVIE@@AAE@XZ 00527d70 f engine:movie.obj - 0001:00126e20 ?_FSetPfilSave@MVIE@@AAEHPAVFNI@@@Z 00527e20 f engine:movie.obj - 0001:00127000 ?PmvieNew@MVIE@@SGPAV1@HPAVMCC@@PAVFNI@@K@Z 00528000 f engine:movie.obj - 0001:00127550 ?FReadRollCall@MVIE@@SGHPAVCRF@@KPAPAVGST@@PAJ@Z 00528550 f engine:movie.obj - 0001:001277e0 ?Flush@MVIE@@QAEXXZ 005287e0 f engine:movie.obj - 0001:00127890 ?_DoSndGarbageCollection@MVIE@@AAEXH@Z 00528890 f engine:movie.obj - 0001:00127a10 ??1MVIE@@UAE@XZ 00528a10 f engine:movie.obj - 0001:00127d90 ?MarkMem@MVIE@@UAEXXZ 00528d90 f engine:movie.obj - 0001:00127ef0 ?AssertValid@MVIE@@QAEXK@Z 00528ef0 f engine:movie.obj - 0001:001280d0 ?_PtaglFetch@MVIE@@AAEPAVTAGL@@XZ 005290d0 f engine:movie.obj - 0001:00128200 ?FGetArid@MVIE@@QAEHJPAJPAVSTN@@0PAUTAG@@@Z 00529200 f engine:movie.obj - 0001:001282f0 ?FChooseArid@MVIE@@QAEHJ@Z 005292f0 f engine:movie.obj - 0001:001286e0 ?FGetName@MVIE@@QAEHJPAVSTN@@@Z 005296e0 f engine:movie.obj - 0001:00128800 ?FNameActr@MVIE@@QAEHJPAVSTN@@@Z 00529800 f engine:movie.obj - 0001:00128950 ?FIsPropBrwsIarid@MVIE@@QAEHJ@Z 00529950 f engine:movie.obj - 0001:001289e0 ?FIsIaridTdt@MVIE@@QAEHJ@Z 005299e0 f engine:movie.obj - 0001:00128a70 ?FAddToRollCall@MVIE@@QAEHPAVACTR@@PAVSTN@@@Z 00529a70 f engine:movie.obj - 0001:00128d90 ?RemFromRollCall@MVIE@@QAEXPAVACTR@@H@Z 00529d90 f engine:movie.obj - 0001:00128f60 ?FSwitchScen@MVIE@@QAEHJ@Z 00529f60 f engine:movie.obj - 0001:001292f0 ?FNewScenInsCore@MVIE@@QAEHJ@Z 0052a2f0 f engine:movie.obj - 0001:001293a0 ?_MoveChids@MVIE@@AAEXKH@Z 0052a3a0 f engine:movie.obj - 0001:00129540 ?_FIsChild@MVIE@@AAEHPAVCFL@@KK@Z 0052a540 f engine:movie.obj - 0001:00129620 ?_FAdoptMsndInMvie@MVIE@@QAEHPAVCFL@@K@Z 0052a620 f engine:movie.obj - 0001:001297d0 ?FResolveSndTag@MVIE@@QAEHPAUTAG@@KKPAVCRF@@@Z 0052a7d0 f engine:movie.obj - 0001:00129950 ?FChidFromUserSndCno@MVIE@@QAEHKPAK@Z 0052a950 f engine:movie.obj - 0001:00129ac0 ?FCopySndFileToMvie@MVIE@@QAEHPAVFIL@@JPAKPAVSTN@@@Z 0052aac0 f engine:movie.obj - 0001:00129e20 ?FCopyMsndFromPcfl@MVIE@@QAEHPAVCFL@@KPAK@Z 0052ae20 f engine:movie.obj - 0001:0012a1c0 ?_ChidScenNewSnd@MVIE@@AAEKXZ 0052b1c0 f engine:movie.obj - 0001:0012a2b0 ?_ChidMvieNewSnd@MVIE@@AAEKXZ 0052b2b0 f engine:movie.obj - 0001:0012a370 ?FVerifyVersion@MVIE@@QAEHPAVCFL@@PAK@Z 0052b370 f engine:movie.obj - 0001:0012a5b0 ?FRemScenCore@MVIE@@QAEHJ@Z 0052b5b0 f engine:movie.obj - 0001:0012a840 ?FRemScen@MVIE@@QAEHJ@Z 0052b840 f engine:movie.obj - 0001:0012aab0 ?SetIscen@MUNS@@QAEXJ@Z 0052bab0 f engine:movie.obj - 0001:0012aae0 ?SetPscen@MUNS@@QAEXPAVSCEN@@@Z 0052bae0 f engine:movie.obj - 0001:0012ab20 ?SetMunst@MUNS@@QAEXW4MUNST@@@Z 0052bb20 f engine:movie.obj - 0001:0012ab50 ?FEnsureAutosave@MVIE@@QAEHPAPAVCRF@@@Z 0052bb50 f engine:movie.obj - 0001:0012abe0 ?FInsTdt@MVIE@@QAEHPAVSTN@@JPAUTAG@@@Z 0052bbe0 f engine:movie.obj - 0001:0012ade0 ?FChangeActrTdt@MVIE@@QAEHPAVACTR@@PAVSTN@@JPAUTAG@@@Z 0052bde0 f engine:movie.obj - 0001:0012b1d0 ?_FCloseCurrentScene@MVIE@@AAEHXZ 0052c1d0 f engine:movie.obj - 0001:0012b260 ?_FUseTempFile@MVIE@@AAEHXZ 0052c260 f engine:movie.obj - 0001:0012b410 ?FTemp@CFL@@QAEHXZ 0052c410 f engine:movie.obj - 0001:0012b440 ?_FMakeCrfValid@MVIE@@AAEHXZ 0052c440 f engine:movie.obj - 0001:0012b6b0 ?FAutoSave@MVIE@@QAEHPAVFNI@@H@Z 0052c6b0 f engine:movie.obj - 0001:0012bff0 ?_FDoGarbageCollection@MVIE@@AAEHPAVCFL@@@Z 0052cff0 f engine:movie.obj - 0001:0012c130 ?_FDoMtrlTmplGC@MVIE@@AAEHPAVCFL@@@Z 0052d130 f engine:movie.obj - 0001:0012c4a0 ?FGetFni@MVIE@@UAEHPAVFNI@@@Z 0052d4a0 f engine:movie.obj - 0001:0012c570 ?FSave@MVIE@@UAEHJ@Z 0052d570 f engine:movie.obj - 0001:0012c5f0 ?FSaveToFni@MVIE@@UAEHPAVFNI@@H@Z 0052d5f0 f engine:movie.obj - 0001:0012c770 ?FGetFniSave@MVIE@@UAEHPAVFNI@@@Z 0052d770 f engine:movie.obj - 0001:0012c800 ?PddgNew@MVIE@@UAEPAVDDG@@PAUGCB@@@Z 0052d800 f engine:movie.obj - 0001:0012c890 ?PdmdNew@MVIE@@UAEPAVDMD@@XZ 0052d890 f engine:movie.obj - 0001:0012c8e0 ?FAddUndo@MVIE@@QAEHPAVMUNB@@@Z 0052d8e0 f engine:movie.obj - 0001:0012ca30 ?SetPmvie@MUNB@@QAEXPAVMVIE@@@Z 0052da30 f engine:movie.obj - 0001:0012ca60 ?SetIscen@MUNB@@QAEXJ@Z 0052da60 f engine:movie.obj - 0001:0012ca90 ?SetNfrm@MUNB@@QAEXJ@Z 0052da90 f engine:movie.obj - 0001:0012cac0 ?ClearUndo@MVIE@@UAEXXZ 0052dac0 f engine:movie.obj - 0001:0012cb80 ?FInsTbox@MVIE@@QAEHPAVRC@@H@Z 0052db80 f engine:movie.obj - 0001:0012cd70 ?SetArid@ACTR@@QAEXJ@Z 0052dd70 f engine:movie.obj - 0001:0012cdc0 ?FHideTbox@MVIE@@QAEHXZ 0052ddc0 f engine:movie.obj - 0001:0012cec0 ?FIsInView@ACTR@@QAEHXZ 0052dec0 f engine:movie.obj - 0001:0012cf10 ?SetPaintAcr@MVIE@@QAEXVACR@@@Z 0052df10 f engine:movie.obj - 0001:0012cfd0 ?SetDypFontTextCur@MVIE@@QAEXJ@Z 0052dfd0 f engine:movie.obj - 0001:0012d030 ?SetStyleTextCur@MVIE@@QAEXK@Z 0052e030 f engine:movie.obj - 0001:0012d090 ?SetOnnTextCur@MVIE@@QAEXJ@Z 0052e090 f engine:movie.obj - 0001:0012d0f0 ?PmvuCur@MVIE@@QAEPAVMVU@@XZ 0052e0f0 f engine:movie.obj - 0001:0012d1e0 ?PmvuFirst@MVIE@@QAEPAVMVU@@XZ 0052e1e0 f engine:movie.obj - 0001:0012d2e0 ?GetTagTmpl@ACTR@@QAEXPAUTAG@@@Z 0052e2e0 f engine:movie.obj - 0001:0012d350 ?FInsActr@MVIE@@QAEHPAUTAG@@@Z 0052e350 f engine:movie.obj - 0001:0012d560 ?FIsPropBrws@ACTR@@QAEHXZ 0052e560 f engine:movie.obj - 0001:0012d600 ?FIsProp@TMPL@@QAEHXZ 0052e600 f engine:movie.obj - 0001:0012d640 ?FIsTdt@ACTR@@QAEHXZ 0052e640 f engine:movie.obj - 0001:0012d6b0 ?FRemActr@MVIE@@QAEHXZ 0052e6b0 f engine:movie.obj - 0001:0012d830 ?FRotateActr@MVIE@@QAEHGGGH@Z 0052e830 f engine:movie.obj - 0001:0012d990 ?FSquashStretchActr@MVIE@@QAEHJ@Z 0052e990 f engine:movie.obj - 0001:0012db10 ?FSoonerLaterActr@MVIE@@QAEHJ@Z 0052eb10 f engine:movie.obj - 0001:0012dd40 ?SetNfrmLast@AUND@@QAEXJ@Z 0052ed40 f engine:movie.obj - 0001:0012dd70 ?FSoonerLater@AUND@@QAEHXZ 0052ed70 f engine:movie.obj - 0001:0012dda0 ?SetActrUndo@MVU@@QAEXPAVACTR@@@Z 0052eda0 f engine:movie.obj - 0001:0012ddd0 ?SetPaintAcr@MVU@@QAEXVACR@@@Z 0052edd0 f engine:movie.obj - 0001:0012de00 ?SetOnnTextCur@MVU@@QAEXJ@Z 0052ee00 f engine:movie.obj - 0001:0012de30 ?SetDypFontTextCur@MVU@@QAEXJ@Z 0052ee30 f engine:movie.obj - 0001:0012de60 ?SetStyleTextCur@MVU@@QAEXK@Z 0052ee60 f engine:movie.obj - 0001:0012de90 ?FScaleActr@MVIE@@QAEHJ@Z 0052ee90 f engine:movie.obj - 0001:0012dff0 ?FAddBkgdSnd@MVIE@@QAEHPAUTAG@@HHJJ@Z 0052eff0 f engine:movie.obj - 0001:0012e120 ?FAddActrSnd@MVIE@@QAEHPAUTAG@@HHHJJ@Z 0052f120 f engine:movie.obj - 0001:0012e200 ?FInsScenCore@MVIE@@QAEHJPAVSCEN@@@Z 0052f200 f engine:movie.obj - 0001:0012e550 ?Pmvie@SCEN@@QAEPAVMVIE@@XZ 0052f550 f engine:movie.obj - 0001:0012e580 ?Pcmm@MVIE@@MAEPAUCMM@CMH@@XZ 0052f580 f engine:movie.obj - 0001:0012e5b0 ?FReadOnly@MVIE@@QAEHXZ 0052f5b0 f engine:movie.obj - 0001:0012e600 ?FAddScen@MVIE@@QAEHPAUTAG@@@Z 0052f600 f engine:movie.obj - 0001:0012e8c0 ?SetTag@MUNS@@QAEXPAUTAG@@@Z 0052f8c0 f engine:movie.obj - 0001:0012e900 ?FDirty@MVIE@@UAEHXZ 0052f900 f engine:movie.obj - 0001:0012e970 ?SetDirty@MVIE@@UAEXH@Z 0052f970 f engine:movie.obj - 0001:0012e9b0 ?Play@MVIE@@QAEXXZ 0052f9b0 f engine:movie.obj - 0001:0012edf0 ?Enable@SCEN@@QAEXK@Z 0052fdf0 f engine:movie.obj - 0001:0012ee20 ?SetFPlaying@MVIE@@QAEXH@Z 0052fe20 f engine:movie.obj - 0001:0012ee80 ?SetFStopPlaying@MVIE@@QAEXH@Z 0052fe80 f engine:movie.obj - 0001:0012eec0 ?FStopPlaying@MVIE@@QAEHXZ 0052fec0 f engine:movie.obj - 0001:0012eef0 ?FCmdAlarm@MVIE@@QAEHPAUCMD@@@Z 0052fef0 f engine:movie.obj - 0001:0012f100 ?Disable@SCEN@@QAEXK@Z 00530100 f engine:movie.obj - 0001:0012f130 ?PauseUntilClick@MVU@@QAEXH@Z 00530130 f engine:movie.obj - 0001:0012f170 ?SetFIdleSeen@MVIE@@QAEXH@Z 00530170 f engine:movie.obj - 0001:0012f1b0 ?FIdleSeen@MVIE@@QAEHXZ 005301b0 f engine:movie.obj - 0001:0012f1e0 ?SetDypFontDef@TBOX@@QAEXJ@Z 005301e0 f engine:movie.obj - 0001:0012f210 ?FCmdRender@MVIE@@QAEHPAUCMD@@@Z 00530210 f engine:movie.obj - 0001:0012fc80 ?FPlaying@MSQ@@QAEHH@Z 00530c80 f engine:movie.obj - 0001:0012fd30 ?Trans@SCEN@@QAE?AW4TRANS@@XZ 00530d30 f engine:movie.obj - 0001:0012fd60 ?FCostumeActr@MVIE@@QAEHJPAUTAG@@JH@Z 00530d60 f engine:movie.obj - 0001:0012fec0 ?FPause@MVIE@@QAEHW4WIT@@J@Z 00530ec0 f engine:movie.obj - 0001:0012ffb0 ?MarkMem@_cmvi@@QAEXXZ 00530fb0 f engine:movie.obj - 0001:001300c0 ?FAddToCmvi@MVIE@@QAEHPAU_cmvi@@PAJ@Z 005310c0 f engine:movie.obj - 0001:00130590 ?FSetCmvi@MVIE@@QAEHPAU_cmvi@@@Z 00531590 f engine:movie.obj - 0001:00130f80 ?SetTransitionCore@SCEN@@QAEXW4TRANS@@@Z 00531f80 f engine:movie.obj - 0001:00130fb0 ?_FAddMvieToRollCall@MVIE@@QAEHKJ@Z 00531fb0 f engine:movie.obj - 0001:001314d0 ?Empty@_cmvi@@QAEXXZ 005324d0 f engine:movie.obj - 0001:001316e0 ?_FInsertScend@MVIE@@QAEHPAVGL@@JPAU_scend@@@Z 005326e0 f engine:movie.obj - 0001:00131800 ?_DeleteScend@MVIE@@QAEXPAVGL@@J@Z 00532800 f engine:movie.obj - 0001:00131930 ?FPasteActr@MVIE@@QAEHPAVACTR@@@Z 00532930 f engine:movie.obj - 0001:00131b10 ?FPasteActrPath@MVIE@@QAEHPAVACTR@@@Z 00532b10 f engine:movie.obj - 0001:00131dc0 ?InvalViews@MVIE@@QAEXXZ 00532dc0 f engine:movie.obj - 0001:00131e50 ?InvalViewsAndScb@MVIE@@QAEXXZ 00532e50 f engine:movie.obj - 0001:00131ec0 ?MarkViews@MVIE@@QAEXXZ 00532ec0 f engine:movie.obj - 0001:00132030 ?FWriteBmps@MVIE@@QAEHXZ 00533030 f engine:movie.obj - 0001:00132060 ?GetName@MVIE@@UAEXPAVSTN@@@Z 00533060 f engine:movie.obj - 0001:00132120 ?ResetTitle@MVIE@@QAEXXZ 00533120 f engine:movie.obj - 0001:001321d0 ?BuildActionMenu@MVIE@@QAEXXZ 005331d0 f engine:movie.obj - 0001:00132290 ?DoTrans@MVIE@@QAEXPAVGNV@@0PAVRC@@1@Z 00533290 f engine:movie.obj - 0001:00132610 ?LwQueryExists@MVIE@@QAEJJJ@Z 00533610 f engine:movie.obj - 0001:00132750 ?LwQueryLocation@MVIE@@QAEJJJ@Z 00533750 f engine:movie.obj - 0001:00132a80 ?GetCenter@ACTR@@QAEXPAJ0@Z 00533a80 f engine:movie.obj - 0001:00132ae0 ?GetRcBounds@ACTR@@QAEXPAVRC@@@Z 00533ae0 f engine:movie.obj - 0001:00132b40 ?GetRc@TBOX@@QAEXPAVRC@@@Z 00533b40 f engine:movie.obj - 0001:00132b80 ?LwSetMoviePos@MVIE@@QAEJJJ@Z 00533b80 f engine:movie.obj - 0001:00132c20 ?FUnusedSndsUser@MVIE@@QAEHPAH@Z 00533c20 f engine:movie.obj - 0001:00132de0 ?_SetTitle@MVIE@@AAEXPAVFNI@@@Z 00533de0 f engine:movie.obj - 0001:00132f90 ?FWouldBe@MVU@@SGHJ@Z 00533f90 f engine:movie.obj - 0001:00132fd0 ?FIs@MVU@@UAEHJ@Z 00533fd0 f engine:movie.obj - 0001:00133000 ?Cls@MVU@@UAEJXZ 00534000 f engine:movie.obj - 0001:00133030 ??1MVU@@UAE@XZ 00534030 f engine:movie.obj - 0001:00133080 ?Pcmm@MVU@@MAEPAUCMM@CMH@@XZ 00534080 f engine:movie.obj - 0001:001330b0 ?PmvuNew@MVU@@SGPAV1@PAVMVIE@@PAUGCB@@JJ@Z 005340b0 f engine:movie.obj - 0001:00133280 ??0MVU@@IAE@PAVDOCB@@PAUGCB@@@Z 00534280 f engine:movie.obj - 0001:001332e0 ?SetTool@MVU@@QAEXJ@Z 005342e0 f engine:movie.obj - 0001:00133a60 ?FTimeFrozen@ACTR@@QAEHXZ 00534a60 f engine:movie.obj - 0001:00133ac0 ?SetTimeFreeze@ACTR@@QAEXH@Z 00534ac0 f engine:movie.obj - 0001:00133b30 ?Pmvie@MVU@@QAEPAVMVIE@@XZ 00534b30 f engine:movie.obj - 0001:00133b60 ?AcrPaint@MVU@@QAE?AVACR@@XZ 00534b60 f engine:movie.obj - 0001:00133b90 ?OnnTextCur@MVU@@QAEJXZ 00534b90 f engine:movie.obj - 0001:00133bc0 ?DypFontTextCur@MVU@@QAEJXZ 00534bc0 f engine:movie.obj - 0001:00133bf0 ?Pscen@TBOX@@QAEPAVSCEN@@XZ 00534bf0 f engine:movie.obj - 0001:00133c20 ?SetTagTool@MVU@@QAEXPAUTAG@@@Z 00534c20 f engine:movie.obj - 0001:00133d40 ?Draw@MVU@@UAEXPAVGNV@@PAVRC@@@Z 00534d40 f engine:movie.obj - 0001:00133f60 ?WarpCursToCenter@MVU@@QAEXXZ 00534f60 f engine:movie.obj - 0001:00134030 ?WarpCursToActor@MVU@@QAEXPAVACTR@@@Z 00535030 f engine:movie.obj - 0001:00134120 ?AdjustCursor@MVU@@QAEXJJ@Z 00535120 f engine:movie.obj - 0001:001341e0 ?MouseToWorld@MVU@@QAEXJJJPAJ00H@Z 005351e0 f engine:movie.obj - 0001:001343d0 ?SlowKeyboardRepeat@MVU@@SGXXZ 005353d0 f engine:movie.obj - 0001:00134520 ?RestoreKeyboardRepeat@MVU@@SGXXZ 00535520 f engine:movie.obj - 0001:001345e0 ?StartPlaceActor@MVU@@QAEXH@Z 005355e0 f engine:movie.obj - 0001:001347f0 ?EndPlaceActor@MVU@@QAEXXZ 005357f0 f engine:movie.obj - 0001:00134990 ?FCmdMouseMove@MVU@@UAEHPAUCMD_MOUSE@@@Z 00535990 f engine:movie.obj - 0001:00135370 ?FRouteOnly@ACLP@@QAEHXZ 00536370 f engine:movie.obj - 0001:001353a0 ?FCmdTrackMouse@MVU@@UAEHPAUCMD_MOUSE@@@Z 005363a0 f engine:movie.obj - 0001:00135550 ?_PositionActr@MVU@@IAEXJJJ@Z 00536550 f engine:movie.obj - 0001:001357c0 ?MarkDirty@BWLD@@QAEXXZ 005367c0 f engine:movie.obj - 0001:001357f0 ?FRespectGround@MVU@@QAEHXZ 005367f0 f engine:movie.obj - 0001:00135820 ?_ActorClicked@MVU@@IAEXPAVACTR@@H@Z 00536820 f engine:movie.obj - 0001:00135980 ?_MouseDown@MVU@@IAEXPAUCMD_MOUSE@@@Z 00536980 f engine:movie.obj - 0001:00136ca0 ?SetArid@AUND@@QAEXJ@Z 00537ca0 f engine:movie.obj - 0001:00136cd0 ?CelnCur@ACTR@@QAEJXZ 00537cd0 f engine:movie.obj - 0001:00136d20 ?SetTsInsert@ACTR@@QAEXK@Z 00537d20 f engine:movie.obj - 0001:00136d80 ?CmidTool@MVU@@QAEJXZ 00537d80 f engine:movie.obj - 0001:00136db0 ?SetAnidTool@MVU@@QAEXJ@Z 00537db0 f engine:movie.obj - 0001:00136de0 ?SetFRecordDefault@MVU@@QAEXH@Z 00537de0 f engine:movie.obj - 0001:00136e10 ?FRecordDefault@MVU@@QAEHXZ 00537e10 f engine:movie.obj - 0001:00136e40 ?_MouseDrag@MVU@@IAEXPAUCMD_MOUSE@@@Z 00537e40 f engine:movie.obj - 0001:00138090 ?FIsModeRecord@ACTR@@QAEHXZ 00539090 f engine:movie.obj - 0001:00138110 ?_MouseUp@MVU@@IAEXPAUCMD_MOUSE@@@Z 00539110 f engine:movie.obj - 0001:00138e30 ?SetSoonerLater@AUND@@QAEXH@Z 00539e30 f engine:movie.obj - 0001:00138e60 ?SetActr@SUNA@@QAEXPAVACTR@@@Z 00539e60 f engine:movie.obj - 0001:00138e90 ?SetType@SUNA@@QAEXJ@Z 00539e90 f engine:movie.obj - 0001:00138ec0 ?Pclok@MVIE@@QAEPAVCLOK@@XZ 00539ec0 f engine:movie.obj - 0001:00138ef0 ?FCmdClip@MVU@@UAEHPAUCMD@@@Z 00539ef0 f engine:movie.obj - 0001:00139390 ?FDoClip@MVU@@QAEHJ@Z 0053a390 f engine:movie.obj - 0001:001396f0 ?FCmdUndo@MVU@@UAEHPAUCMD@@@Z 0053a6f0 f engine:movie.obj - 0001:00139860 ?_FCopySel@MVU@@IAEHPAPAVDOCB@@H@Z 0053a860 f engine:movie.obj - 0001:001399e0 ?_ClearSel@MVU@@MAEXXZ 0053a9e0 f engine:movie.obj - 0001:00139c00 ?GrfScen@SCEN@@QAEJXZ 0053ac00 f engine:movie.obj - 0001:00139c30 ?_FPaste@MVU@@IAEHPAVCLIP@@@Z 0053ac30 f engine:movie.obj - 0001:0013a010 ?FCloseDoc@MVU@@UAEHHH@Z 0053b010 f engine:movie.obj - 0001:0013a230 ?SetDocClosing@MVIE@@QAEXH@Z 0053b230 f engine:movie.obj - 0001:0013a280 ?FCmdSave@MVU@@UAEHPAUCMD@@@Z 0053b280 f engine:movie.obj - 0001:0013a300 ?FCmdIdle@MVU@@QAEHPAUCMD@@@Z 0053b300 f engine:movie.obj - 0001:0013a370 ?FCmdRollOff@MVU@@QAEHPAUCMD@@@Z 0053b370 f engine:movie.obj - 0001:0013a420 ?AssertValid@MVU@@QAEXK@Z 0053b420 f engine:movie.obj - 0001:0013a450 ?MarkMem@MVU@@UAEXXZ 0053b450 f engine:movie.obj - 0001:0013a4d0 ?PmunsNew@MUNS@@SGPAV1@XZ 0053b4d0 f engine:movie.obj - 0001:0013a530 ??0MUNS@@IAE@XZ 0053b530 f engine:movie.obj - 0001:0013a570 ??0MUNB@@IAE@XZ 0053b570 f engine:movie.obj - 0001:0013a5b0 ??1MUNS@@UAE@XZ 0053b5b0 f engine:movie.obj - 0001:0013a640 ?FDo@MUNS@@UAEHPAVDOCB@@@Z 0053b640 f engine:movie.obj - 0001:0013a810 ?FUndo@MUNS@@UAEHPAVDOCB@@@Z 0053b810 f engine:movie.obj - 0001:0013a9a0 ?MarkMem@MUNS@@UAEXXZ 0053b9a0 f engine:movie.obj - 0001:0013aa10 ?AssertValid@MUNS@@QAEXK@Z 0053ba10 f engine:movie.obj - 0001:0013aa70 ?AssertValid@MUNB@@QAEXK@Z 0053ba70 f engine:movie.obj - 0001:0013ab20 ??_EMUNB@@UAEPAXI@Z 0053bb20 f engine:movie.obj - 0001:0013ab20 ??_GMUNB@@UAEPAXI@Z 0053bb20 f engine:movie.obj - 0001:0013ab60 ??1MUNB@@UAE@XZ 0053bb60 f engine:movie.obj - 0001:0013ab90 ??_EMVU@@UAEPAXI@Z 0053bb90 f engine:movie.obj - 0001:0013ab90 ??_GMVU@@UAEPAXI@Z 0053bb90 f engine:movie.obj - 0001:0013abd0 ??_GMUNS@@UAEPAXI@Z 0053bbd0 f engine:movie.obj - 0001:0013abd0 ??_EMUNS@@UAEPAXI@Z 0053bbd0 f engine:movie.obj - 0001:0013ac10 ??_GMVIE@@UAEPAXI@Z 0053bc10 f engine:movie.obj - 0001:0013ac10 ??_EMVIE@@UAEPAXI@Z 0053bc10 f engine:movie.obj - 0001:0013ac50 ?FWouldBe@MSND@@SGHJ@Z 0053bc50 f engine:msnd.obj - 0001:0013ac90 ?FIs@MSND@@UAEHJ@Z 0053bc90 f engine:msnd.obj - 0001:0013acc0 ?Cls@MSND@@UAEJXZ 0053bcc0 f engine:msnd.obj - 0001:0013acf0 ?FWouldBe@MSQ@@SGHJ@Z 0053bcf0 f engine:msnd.obj - 0001:0013ad30 ?FIs@MSQ@@UAEHJ@Z 0053bd30 f engine:msnd.obj - 0001:0013ad60 ?Cls@MSQ@@UAEJXZ 0053bd60 f engine:msnd.obj - 0001:0013ad90 ?FReadMsnd@MSND@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0053bd90 f engine:msnd.obj - 0001:0013afd0 ?FGetMsndInfo@MSND@@SGHPAVCFL@@KKPAHPAJ2@Z 0053bfd0 f engine:msnd.obj - 0001:0013b160 ?_FInit@MSND@@IAEHPAVCFL@@KK@Z 0053c160 f engine:msnd.obj - 0001:0013b3c0 ?FWriteMidi@MSND@@SGHPAVCFL@@PAVMIDS@@PAVSTN@@PAK@Z 0053c3c0 f engine:msnd.obj - 0001:0013b5e0 ?FWriteWave@MSND@@SGHPAVFIL@@PAVCFL@@JPAVSTN@@PAK@Z 0053c5e0 f engine:msnd.obj - 0001:0013b7c0 ?FCopyMidi@MSND@@SGHPAVFIL@@PAVCFL@@PAKPAVSTN@@@Z 0053c7c0 f engine:msnd.obj - 0001:0013b9e0 ?FCopyWave@MSND@@SGHPAVFIL@@PAVCFL@@JPAKPAVSTN@@@Z 0053c9e0 f engine:msnd.obj - 0001:0013c6e0 ?FInvalidate@MSND@@QAEHXZ 0053d6e0 f engine:msnd.obj - 0001:0013c810 ??1MSND@@UAE@XZ 0053d810 f engine:msnd.obj - 0001:0013c870 ?SqnActr@MSND@@SGJJJ@Z 0053d870 f engine:msnd.obj - 0001:0013c8c0 ?SqnBkgd@MSND@@SGJJJ@Z 0053d8c0 f engine:msnd.obj - 0001:0013c900 ?Spr@MSND@@QAEJJ@Z 0053d900 f engine:msnd.obj - 0001:0013caa0 ?Play@MSND@@QAEXJHHJJHK@Z 0053daa0 f engine:msnd.obj - 0001:0013cc50 ?PmsqNew@MSQ@@SGPAV1@XZ 0053dc50 f engine:msnd.obj - 0001:0013cd80 ?FEnqueue@MSQ@@QAEHPAVMSND@@JHHJJHKH@Z 0053dd80 f engine:msnd.obj - 0001:0013d040 ?PlayMsq@MSQ@@QAEXXZ 0053e040 f engine:msnd.obj - 0001:0013d1a0 ?FlushMsq@MSQ@@QAEXXZ 0053e1a0 f engine:msnd.obj - 0001:0013d230 ?FCmdAlarm@MSQ@@QAEHPAUCMD@@@Z 0053e230 f engine:msnd.obj - 0001:0013d2a0 ??1MSQ@@UAE@XZ 0053e2a0 f engine:msnd.obj - 0001:0013d360 ?AssertValid@MSND@@QAEXK@Z 0053e360 f engine:msnd.obj - 0001:0013d3e0 ?MarkMem@MSND@@UAEXXZ 0053e3e0 f engine:msnd.obj - 0001:0013d430 ?AssertValid@MSQ@@QAEXK@Z 0053e430 f engine:msnd.obj - 0001:0013d520 ?MarkMem@MSQ@@UAEXXZ 0053e520 f engine:msnd.obj - 0001:0013d5d0 ?FDequeue@GL@@QAEHPAX@Z 0053e5d0 f engine:msnd.obj - 0001:0013d600 ??_EMSQ@@UAEPAXI@Z 0053e600 f engine:msnd.obj - 0001:0013d600 ??_GMSQ@@UAEPAXI@Z 0053e600 f engine:msnd.obj - 0001:0013d640 ??0MSND@@QAE@XZ 0053e640 f engine:msnd.obj - 0001:0013d680 ??_EMSND@@UAEPAXI@Z 0053e680 f engine:msnd.obj - 0001:0013d680 ??_GMSND@@UAEPAXI@Z 0053e680 f engine:msnd.obj - 0001:0013d7d0 ?Scl@MSND@@QAEJH@Z 0053e7d0 f engine:msnd.obj - 0001:0013d820 ?SqnActr@MSND@@QAEJJ@Z 0053e820 f engine:msnd.obj - 0001:0013d880 ?SqnBkgd@MSND@@QAEJJ@Z 0053e880 f engine:msnd.obj - 0001:0013d8e0 ?Pcmm@MSQ@@MAEPAUCMM@CMH@@XZ 0053e8e0 f engine:msnd.obj - 0001:0013d910 ??0MSQ@@QAE@J@Z 0053e910 f engine:msnd.obj - 0001:0013d9a0 ?FWouldBe@TAGM@@SGHJ@Z 0053e9a0 f engine:tagman.obj - 0001:0013d9e0 ?FIs@TAGM@@UAEHJ@Z 0053e9e0 f engine:tagman.obj - 0001:0013da10 ?Cls@TAGM@@UAEJXZ 0053ea10 f engine:tagman.obj - 0001:0013da40 ?PtagmNew@TAGM@@SGPAV1@PAVFNI@@P6GHPAVSTN@@@ZJ@Z 0053ea40 f engine:tagman.obj - 0001:0013dc60 ??1TAGM@@UAE@XZ 0053ec60 f engine:tagman.obj - 0001:0013de10 ?SplitString@TAGM@@QAEXPAVSTN@@00@Z 0053ee10 f engine:tagman.obj - 0001:0013df20 ?PgstSource@TAGM@@QAEPAVGST@@XZ 0053ef20 f engine:tagman.obj - 0001:0013df70 ?_FFindSid@TAGM@@IAEHJPAJ@Z 0053ef70 f engine:tagman.obj - 0001:0013e080 ?FMergeGstSource@TAGM@@QAEHPAVGST@@FF@Z 0053f080 f engine:tagman.obj - 0001:0013e220 ?FAddStnSource@TAGM@@QAEHPAVSTN@@J@Z 0053f220 f engine:tagman.obj - 0001:0013e330 ?FGetSid@TAGM@@QAEHPAVSTN@@PAJ@Z 0053f330 f engine:tagman.obj - 0001:0013e520 ?_FGetStnMergedOfSid@TAGM@@IAEHJPAVSTN@@@Z 0053f520 f engine:tagman.obj - 0001:0013e5f0 ?_FGetStnSplitOfSid@TAGM@@IAEHJPAVSTN@@0@Z 0053f5f0 f engine:tagman.obj - 0001:0013e6b0 ?_FBuildFniHD@TAGM@@IAEHJPAVFNI@@PAH@Z 0053f6b0 f engine:tagman.obj - 0001:0013e860 ?_FDetermineIfContentOnFni@TAGM@@IAEHPAVFNI@@PAH@Z 0053f860 f engine:tagman.obj - 0001:0013e9e0 ?_FEnsureFniCD@TAGM@@IAEHJPAVFNI@@PAVSTN@@@Z 0053f9e0 f engine:tagman.obj - 0001:0013eba0 ?_FFindFniCD@TAGM@@IAEHJPAVFNI@@PAH@Z 0053fba0 f engine:tagman.obj - 0001:0013ef40 ?_FRetry@TAGM@@IAEHJ@Z 0053ff40 f engine:tagman.obj - 0001:0013f040 ?_PcrmSourceNew@TAGM@@IAEPAVCRM@@JPAVFNI@@@Z 00540040 f engine:tagman.obj - 0001:0013f310 ?_PcrmSourceGet@TAGM@@IAEPAVCRM@@JH@Z 00540310 f engine:tagman.obj - 0001:0013f790 ?Clear@SFS@@QAEXXZ 00540790 f engine:tagman.obj - 0001:0013f7f0 ?_FDetermineIfSourceHD@TAGM@@IAEHJPAH@Z 005407f0 f engine:tagman.obj - 0001:0013faa0 ?_FGetFniHD@TAGM@@IAEHJPAVFNI@@@Z 00540aa0 f engine:tagman.obj - 0001:0013fc80 ?_FGetFniCD@TAGM@@IAEHJPAVFNI@@H@Z 00540c80 f engine:tagman.obj - 0001:0013fe90 ?FFindFile@TAGM@@QAEHJPAVSTN@@PAVFNI@@H@Z 00540e90 f engine:tagman.obj - 0001:00140060 ?FBuildChildTag@TAGM@@QAEHPAUTAG@@KK0@Z 00541060 f engine:tagman.obj - 0001:001402b0 ?FCacheTagToHD@TAGM@@QAEHPAUTAG@@H@Z 005412b0 f engine:tagman.obj - 0001:001404e0 ?PbacoFetch@TAGM@@QAEPAVBACO@@PAUTAG@@P6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZH@Z 005414e0 f engine:tagman.obj - 0001:00140690 ?ClearCache@TAGM@@QAEXJK@Z 00541690 f engine:tagman.obj - 0001:00140940 ?CbMax@CRF@@QAEJXZ 00541940 f engine:tagman.obj - 0001:00140970 ?FOpenTag@TAGM@@SGHPAUTAG@@PAVCRF@@PAVCFL@@@Z 00541970 f engine:tagman.obj - 0001:00140af0 ?FSaveTag@TAGM@@SGHPAUTAG@@PAVCRF@@H@Z 00541af0 f engine:tagman.obj - 0001:00140cc0 ?DupTag@TAGM@@SGXPAUTAG@@@Z 00541cc0 f engine:tagman.obj - 0001:00140da0 ?CloseTag@TAGM@@SGXPAUTAG@@@Z 00541da0 f engine:tagman.obj - 0001:00140ea0 ?FcmpCompareTags@TAGM@@SGKPAUTAG@@0@Z 00541ea0 f engine:tagman.obj - 0001:00141030 ?AssertValid@TAGM@@QAEXK@Z 00542030 f engine:tagman.obj - 0001:001412e0 ?MarkMem@TAGM@@UAEXXZ 005422e0 f engine:tagman.obj - 0001:00141400 ?MarkMem@TAG@@QAEXXZ 00542400 f engine:tagman.obj - 0001:001415e0 ??_ETAGM@@UAEPAXI@Z 005425e0 f engine:tagman.obj - 0001:001415e0 ??_GTAGM@@UAEPAXI@Z 005425e0 f engine:tagman.obj - 0001:00141620 ??0SFS@@QAE@XZ 00542620 f engine:tagman.obj - 0001:00141660 ??1SFS@@QAE@XZ 00542660 f engine:tagman.obj - 0001:001416a0 ??0TAGM@@IAE@XZ 005426a0 f engine:tagman.obj - 0001:00141750 ?FWouldBe@SCEN@@SGHJ@Z 00542750 f engine:scene.obj - 0001:00141790 ?FIs@SCEN@@UAEHJ@Z 00542790 f engine:scene.obj - 0001:001417c0 ?Cls@SCEN@@UAEJXZ 005427c0 f engine:scene.obj - 0001:001417f0 ?FWouldBe@SUNS@@SGHJ@Z 005427f0 f engine:scene.obj - 0001:00141830 ?FIs@SUNS@@UAEHJ@Z 00542830 f engine:scene.obj - 0001:00141860 ?Cls@SUNS@@UAEJXZ 00542860 f engine:scene.obj - 0001:00141890 ?FWouldBe@SUNA@@SGHJ@Z 00542890 f engine:scene.obj - 0001:001418d0 ?FIs@SUNA@@UAEHJ@Z 005428d0 f engine:scene.obj - 0001:00141900 ?Cls@SUNA@@UAEJXZ 00542900 f engine:scene.obj - 0001:00141930 ?FWouldBe@SUNK@@SGHJ@Z 00542930 f engine:scene.obj - 0001:00141970 ?FIs@SUNK@@UAEHJ@Z 00542970 f engine:scene.obj - 0001:001419a0 ?Cls@SUNK@@UAEJXZ 005429a0 f engine:scene.obj - 0001:001419d0 ?FWouldBe@SUNP@@SGHJ@Z 005429d0 f engine:scene.obj - 0001:00141a10 ?FIs@SUNP@@UAEHJ@Z 00542a10 f engine:scene.obj - 0001:00141a40 ?Cls@SUNP@@UAEJXZ 00542a40 f engine:scene.obj - 0001:00141a70 ?FWouldBe@SUNX@@SGHJ@Z 00542a70 f engine:scene.obj - 0001:00141ab0 ?FIs@SUNX@@UAEHJ@Z 00542ab0 f engine:scene.obj - 0001:00141ae0 ?Cls@SUNX@@UAEJXZ 00542ae0 f engine:scene.obj - 0001:00141b10 ?FWouldBe@SUNC@@SGHJ@Z 00542b10 f engine:scene.obj - 0001:00141b50 ?FIs@SUNC@@UAEHJ@Z 00542b50 f engine:scene.obj - 0001:00141b80 ?Cls@SUNC@@UAEJXZ 00542b80 f engine:scene.obj - 0001:00141bb0 ??0SCEN@@IAE@PAVMVIE@@@Z 00542bb0 f engine:scene.obj - 0001:00141c70 ?PscenNew@SCEN@@SGPAV1@PAVMVIE@@@Z 00542c70 f engine:scene.obj - 0001:00141ea0 ??1SCEN@@MAE@XZ 00542ea0 f engine:scene.obj - 0001:001423b0 ?Ptag@SSE@@QAEPAUTAG@@J@Z 005433b0 f engine:scene.obj - 0001:001423f0 ?Close@SCEN@@SGXPAPAV1@@Z 005433f0 f engine:scene.obj - 0001:001424d0 ?MarkMem@SCEN@@UAEXXZ 005434d0 f engine:scene.obj - 0001:001426a0 ?AssertValid@SCEN@@QAEXK@Z 005436a0 f engine:scene.obj - 0001:00142b40 ?FGotoFrm@SCEN@@QAEHJ@Z 00543b40 f engine:scene.obj - 0001:00143030 ?_DoPrerenderingWork@SCEN@@IAEXH@Z 00544030 f engine:scene.obj - 0001:001432f0 ?_EndPrerendering@SCEN@@IAEXXZ 005442f0 f engine:scene.obj - 0001:001433b0 ?FReplayFrm@SCEN@@QAEHK@Z 005443b0 f engine:scene.obj - 0001:00143570 ?InvalFrmRange@SCEN@@QAEXXZ 00544570 f engine:scene.obj - 0001:001436d0 ?_FPlaySev@SCEN@@IAEHPAUSEV@@PAXK@Z 005446d0 f engine:scene.obj - 0001:00143ba0 ?_FUnPlaySev@SCEN@@IAEHPAUSEV@@PAX@Z 00544ba0 f engine:scene.obj - 0001:00143e50 ?_MoveBackFirstFrame@SCEN@@IAEXJ@Z 00544e50 f engine:scene.obj - 0001:00143f60 ?FAddSndCore@SCEN@@QAEHHHJJJPAUTAG@@@Z 00544f60 f engine:scene.obj - 0001:00144570 ?Pchid@SSE@@QAEPAKJ@Z 00545570 f engine:scene.obj - 0001:001445b0 ?Cb@SSE@@QAEJXZ 005455b0 f engine:scene.obj - 0001:001446f0 ?FAddSndCoreTagc@SCEN@@QAEHHHJJJPAUTAGC@@@Z 005456f0 f engine:scene.obj - 0001:001449f0 ?FAddSnd@SCEN@@QAEHPAUTAG@@HHJJ@Z 005459f0 f engine:scene.obj - 0001:00144c00 ?FSetSnd@SUNS@@QAEHPAUSSE@@@Z 00545c00 f engine:scene.obj - 0001:00144c70 ?SetSty@SUNS@@QAEXJ@Z 00545c70 f engine:scene.obj - 0001:00144ca0 ?RemSndCore@SCEN@@QAEXJ@Z 00545ca0 f engine:scene.obj - 0001:00144e50 ?FGetSnd@SCEN@@QAEHJPAHPAPAUSSE@@@Z 00545e50 f engine:scene.obj - 0001:00144f70 ?PlayBkgdSnd@SCEN@@QAEXXZ 00545f70 f engine:scene.obj - 0001:00145040 ?FQuerySnd@SCEN@@QAEHJPAPAVGL@@PAJPAH@Z 00546040 f engine:scene.obj - 0001:001451c0 ?SetSndVlmCore@SCEN@@QAEXJJ@Z 005461c0 f engine:scene.obj - 0001:00145310 ?UpdateSndFrame@SCEN@@QAEXXZ 00546310 f engine:scene.obj - 0001:00145490 ?_FAddSev@SCEN@@IAEHPAUSEV@@JPAX@Z 00546490 f engine:scene.obj - 0001:00145540 ?SelectActr@SCEN@@QAEXPAVACTR@@@Z 00546540 f engine:scene.obj - 0001:001456a0 ?SelectTbox@SCEN@@QAEXPAVTBOX@@@Z 005466a0 f engine:scene.obj - 0001:00145850 ?FAddActrCore@SCEN@@QAEHPAVACTR@@@Z 00546850 f engine:scene.obj - 0001:00145cc0 ?FAddActr@SCEN@@QAEHPAVACTR@@@Z 00546cc0 f engine:scene.obj - 0001:00145dc0 ?RemActrCore@SCEN@@QAEXJ@Z 00546dc0 f engine:scene.obj - 0001:00146010 ?FRemActr@SCEN@@QAEHJ@Z 00547010 f engine:scene.obj - 0001:001461d0 ?PactrFromPt@SCEN@@QAEPAVACTR@@JJPAJ@Z 005471d0 f engine:scene.obj - 0001:001462e0 ?FAddTboxCore@SCEN@@QAEHPAVTBOX@@@Z 005472e0 f engine:scene.obj - 0001:001464e0 ?FAddTbox@SCEN@@QAEHPAVTBOX@@@Z 005474e0 f engine:scene.obj - 0001:001466b0 ?SetNfrmFirst@SUNX@@QAEXJ@Z 005476b0 f engine:scene.obj - 0001:001466e0 ?SetNfrmLast@SUNX@@QAEXJ@Z 005476e0 f engine:scene.obj - 0001:00146710 ?SetItbox@SUNX@@QAEXJ@Z 00547710 f engine:scene.obj - 0001:00146740 ?SetTbox@SUNX@@QAEXPAVTBOX@@@Z 00547740 f engine:scene.obj - 0001:00146770 ?SetAdd@SUNX@@QAEXH@Z 00547770 f engine:scene.obj - 0001:001467a0 ?FRemTboxCore@SCEN@@QAEHPAVTBOX@@@Z 005477a0 f engine:scene.obj - 0001:00146a70 ?FRemTbox@SCEN@@QAEHPAVTBOX@@@Z 00547a70 f engine:scene.obj - 0001:00146c30 ?PtboxFromItbox@SCEN@@QAEPAVTBOX@@J@Z 00547c30 f engine:scene.obj - 0001:00146d70 ?FPauseCore@SCEN@@QAEHPAW4WIT@@PAJ@Z 00547d70 f engine:scene.obj - 0001:00146f10 ?FPause@SCEN@@QAEHW4WIT@@J@Z 00547f10 f engine:scene.obj - 0001:00147030 ?SetWit@SUNP@@QAEXW4WIT@@@Z 00548030 f engine:scene.obj - 0001:00147060 ?SetDts@SUNP@@QAEXJ@Z 00548060 f engine:scene.obj - 0001:00147090 ?SetAdd@SUNP@@QAEXH@Z 00548090 f engine:scene.obj - 0001:001470c0 ?Unhilite@ACTR@@QAEXXZ 005480c0 f engine:scene.obj - 0001:00147110 ?Hide@ACTR@@QAEXXZ 00548110 f engine:scene.obj - 0001:00147160 ?Show@ACTR@@QAEXXZ 00548160 f engine:scene.obj - 0001:001471b0 ?FSetBkgdCore@SCEN@@QAEHPAUTAG@@0@Z 005481b0 f engine:scene.obj - 0001:001476a0 ?SetPrerendered@ACTR@@QAEXH@Z 005486a0 f engine:scene.obj - 0001:00147710 ?FPrerendered@ACTR@@QAEHXZ 00548710 f engine:scene.obj - 0001:00147770 ?FIsMyBody@ACTR@@QAEHPAVBODY@@@Z 00548770 f engine:scene.obj - 0001:001477e0 ?FSetBkgd@SCEN@@QAEHPAUTAG@@@Z 005487e0 f engine:scene.obj - 0001:00147a00 ?SetTag@SUNK@@QAEXPAUTAG@@@Z 00548a00 f engine:scene.obj - 0001:00147a40 ?SetIcam@SUNK@@QAEXJ@Z 00548a40 f engine:scene.obj - 0001:00147a70 ?SetFBkgd@SUNK@@QAEXH@Z 00548a70 f engine:scene.obj - 0001:00147aa0 ?FIsEmpty@SCEN@@QAEHXZ 00548aa0 f engine:scene.obj - 0001:00147b80 ?FChangeCamCore@SCEN@@QAEHJPAJ@Z 00548b80 f engine:scene.obj - 0001:00147ee0 ?FChangeCam@SCEN@@QAEHJ@Z 00548ee0 f engine:scene.obj - 0001:001480b0 ?PscenRead@SCEN@@SGPAV1@PAVMVIE@@PAVCRF@@K@Z 005490b0 f engine:scene.obj - 0001:00148d20 ?SwapBytes@SSE@@QAEXXZ 00549d20 f engine:scene.obj - 0001:00148da0 ?SetTrans@MVIE@@QAEXW4TRANS@@@Z 00549da0 f engine:scene.obj - 0001:00148dd0 ?DoPause@MVIE@@QAEXW4WIT@@J@Z 00549dd0 f engine:scene.obj - 0001:00148e10 ?FPlayStartEvents@SCEN@@QAEHH@Z 00549e10 f engine:scene.obj - 0001:00148ef0 ?FGetTagBkgd@SCEN@@QAEHPAUTAG@@@Z 00549ef0 f engine:scene.obj - 0001:00148fd0 ?FWrite@SCEN@@QAEHPAVCRF@@PAK@Z 00549fd0 f engine:scene.obj - 0001:00149aa0 ?Ptagc@SSE@@QAEPAUTAGC@@J@Z 0054aaa0 f engine:scene.obj - 0001:00149ae0 ?GetDefaultSound@BKGD@@QAEXPAUTAG@@PAJPAH@Z 0054aae0 f engine:scene.obj - 0001:00149b40 ?FSelected@TBOX@@QAEHXZ 0054ab40 f engine:scene.obj - 0001:00149b70 ?RemActrsFromRollCall@SCEN@@QAEXH@Z 0054ab70 f engine:scene.obj - 0001:00149c10 ?FAddActrsToRollCall@SCEN@@QAEHXZ 0054ac10 f engine:scene.obj - 0001:00149dc0 ?PmbmpThumbnail@SCEN@@QAEPAVMBMP@@XZ 0054adc0 f engine:scene.obj - 0001:00149e20 ?_UpdateThumbnail@SCEN@@IAEXXZ 0054ae20 f engine:scene.obj - 0001:0014a410 ?DtimSnd@MSQ@@QAEJXZ 0054b410 f engine:scene.obj - 0001:0014a460 ?SndOnDtim@MSQ@@QAEXJ@Z 0054b460 f engine:scene.obj - 0001:0014a4b0 ?PglclrThumbPalette@MVIE@@QAEPAVGL@@XZ 0054b4b0 f engine:scene.obj - 0001:0014a500 ?MarkDirty@SCEN@@QAEXH@Z 0054b500 f engine:scene.obj - 0001:0014a560 ?FPasteActrCore@SCEN@@QAEHPAVACTR@@@Z 0054b560 f engine:scene.obj - 0001:0014a6b0 ?FPasteActr@SCEN@@QAEHPAVACTR@@@Z 0054b6b0 f engine:scene.obj - 0001:0014a780 ?_FForceActorsToFrm@SCEN@@IAEHJPAH@Z 0054b780 f engine:scene.obj - 0001:0014a8a0 ?_FForceTboxesToFrm@SCEN@@IAEHJ@Z 0054b8a0 f engine:scene.obj - 0001:0014a9c0 ?HideTboxes@SCEN@@QAEXXZ 0054b9c0 f engine:scene.obj - 0001:0014ab00 ?HideActors@SCEN@@QAEXXZ 0054bb00 f engine:scene.obj - 0001:0014abf0 ?_MarkMovieDirty@SCEN@@IAEXXZ 0054bbf0 f engine:scene.obj - 0001:0014ac60 ?FAddTagsToTagl@SCEN@@SGHPAVCFL@@KPAVTAGL@@@Z 0054bc60 f engine:scene.obj - 0001:0014b5d0 ?PactrFromArid@SCEN@@QAEPAVACTR@@J@Z 0054c5d0 f engine:scene.obj - 0001:0014b6b0 ?FChopCore@SCEN@@QAEHXZ 0054c6b0 f engine:scene.obj - 0001:0014b960 ?FChop@SCEN@@QAEHXZ 0054c960 f engine:scene.obj - 0001:0014ba70 ?FChopBackCore@SCEN@@QAEHXZ 0054ca70 f engine:scene.obj - 0001:0014be60 ?FChopBack@SCEN@@QAEHXZ 0054ce60 f engine:scene.obj - 0001:0014bf70 ?FStartPlaying@SCEN@@QAEHXZ 0054cf70 f engine:scene.obj - 0001:0014c0e0 ?FStory@TBOX@@QAEHXZ 0054d0e0 f engine:scene.obj - 0001:0014c110 ?StopPlaying@SCEN@@QAEXXZ 0054d110 f engine:scene.obj - 0001:0014c210 ?FTransOnFile@SCEN@@SGHPAVCRF@@KPAW4TRANS@@@Z 0054d210 f engine:scene.obj - 0001:0014c310 ?FSetTransOnFile@SCEN@@SGHPAVCRF@@KW4TRANS@@@Z 0054d310 f engine:scene.obj - 0001:0014c420 ?PsunsNew@SUNS@@SGPAV1@XZ 0054d420 f engine:scene.obj - 0001:0014c480 ??0SUNS@@IAE@XZ 0054d480 f engine:scene.obj - 0001:0014c4c0 ??1SUNS@@UAE@XZ 0054d4c0 f engine:scene.obj - 0001:0014c530 ?FDo@SUNS@@UAEHPAVDOCB@@@Z 0054d530 f engine:scene.obj - 0001:0014c890 ?FUndo@SUNS@@UAEHPAVDOCB@@@Z 0054d890 f engine:scene.obj - 0001:0014c950 ?MarkMem@SUNS@@UAEXXZ 0054d950 f engine:scene.obj - 0001:0014c9c0 ?AssertValid@SUNS@@QAEXK@Z 0054d9c0 f engine:scene.obj - 0001:0014ca60 ?PsunaNew@SUNA@@SGPAV1@XZ 0054da60 f engine:scene.obj - 0001:0014cac0 ??0SUNA@@IAE@XZ 0054dac0 f engine:scene.obj - 0001:0014cb00 ??1SUNA@@UAE@XZ 0054db00 f engine:scene.obj - 0001:0014cb90 ?FDo@SUNA@@UAEHPAVDOCB@@@Z 0054db90 f engine:scene.obj - 0001:0014ceb0 ?FUndo@SUNA@@UAEHPAVDOCB@@@Z 0054deb0 f engine:scene.obj - 0001:0014d1d0 ?MarkMem@SUNA@@UAEXXZ 0054e1d0 f engine:scene.obj - 0001:0014d240 ?AssertValid@SUNA@@QAEXK@Z 0054e240 f engine:scene.obj - 0001:0014d2d0 ?PsunxNew@SUNX@@SGPAV1@XZ 0054e2d0 f engine:scene.obj - 0001:0014d330 ??0SUNX@@IAE@XZ 0054e330 f engine:scene.obj - 0001:0014d370 ??1SUNX@@UAE@XZ 0054e370 f engine:scene.obj - 0001:0014d400 ?FDo@SUNX@@UAEHPAVDOCB@@@Z 0054e400 f engine:scene.obj - 0001:0014d710 ?FUndo@SUNX@@UAEHPAVDOCB@@@Z 0054e710 f engine:scene.obj - 0001:0014da20 ?MarkMem@SUNX@@UAEXXZ 0054ea20 f engine:scene.obj - 0001:0014da90 ?AssertValid@SUNX@@QAEXK@Z 0054ea90 f engine:scene.obj - 0001:0014db20 ?PsunpNew@SUNP@@SGPAV1@XZ 0054eb20 f engine:scene.obj - 0001:0014db80 ??0SUNP@@IAE@XZ 0054eb80 f engine:scene.obj - 0001:0014dbc0 ??1SUNP@@UAE@XZ 0054ebc0 f engine:scene.obj - 0001:0014dc20 ?FDo@SUNP@@UAEHPAVDOCB@@@Z 0054ec20 f engine:scene.obj - 0001:0014dd70 ?FUndo@SUNP@@UAEHPAVDOCB@@@Z 0054ed70 f engine:scene.obj - 0001:0014dda0 ?MarkMem@SUNP@@UAEXXZ 0054eda0 f engine:scene.obj - 0001:0014ddf0 ?AssertValid@SUNP@@QAEXK@Z 0054edf0 f engine:scene.obj - 0001:0014de10 ?PsunkNew@SUNK@@SGPAV1@XZ 0054ee10 f engine:scene.obj - 0001:0014de70 ??0SUNK@@IAE@XZ 0054ee70 f engine:scene.obj - 0001:0014deb0 ??1SUNK@@UAE@XZ 0054eeb0 f engine:scene.obj - 0001:0014df10 ?FDo@SUNK@@UAEHPAVDOCB@@@Z 0054ef10 f engine:scene.obj - 0001:0014e110 ?FUndo@SUNK@@UAEHPAVDOCB@@@Z 0054f110 f engine:scene.obj - 0001:0014e170 ?MarkMem@SUNK@@UAEXXZ 0054f170 f engine:scene.obj - 0001:0014e1c0 ?AssertValid@SUNK@@QAEXK@Z 0054f1c0 f engine:scene.obj - 0001:0014e1e0 ?PsuncNew@SUNC@@SGPAV1@XZ 0054f1e0 f engine:scene.obj - 0001:0014e240 ??0SUNC@@IAE@XZ 0054f240 f engine:scene.obj - 0001:0014e280 ??1SUNC@@UAE@XZ 0054f280 f engine:scene.obj - 0001:0014e310 ?FSave@SUNC@@QAEHPAVSCEN@@@Z 0054f310 f engine:scene.obj - 0001:0014e400 ?FDo@SUNC@@UAEHPAVDOCB@@@Z 0054f400 f engine:scene.obj - 0001:0014e6b0 ?SetNfrmCur@SCEN@@QAEXJ@Z 0054f6b0 f engine:scene.obj - 0001:0014e6e0 ?FUndo@SUNC@@UAEHPAVDOCB@@@Z 0054f6e0 f engine:scene.obj - 0001:0014e740 ?MarkMem@SUNC@@UAEXXZ 0054f740 f engine:scene.obj - 0001:0014e7b0 ?AssertValid@SUNC@@QAEXK@Z 0054f7b0 f engine:scene.obj - 0001:0014e810 ?PsseNew@SSE@@SGPAU1@J@Z 0054f810 f engine:scene.obj - 0001:0014e8a0 ?_Cb@SSE@@KGJJ@Z 0054f8a0 f engine:scene.obj - 0001:0014e8c0 ?PsseNew@SSE@@SGPAU1@JJHJPAUTAGC@@@Z 0054f8c0 f engine:scene.obj - 0001:0014e9c0 ?ReleasePpsse@@YGXPAPAUSSE@@@Z 0054f9c0 f engine:scene.obj - 0001:0014ea80 ?PsseDupFromGg@SSE@@SGPAU1@PAVGG@@JH@Z 0054fa80 f engine:scene.obj - 0001:0014ec80 ?PsseAddTagChid@SSE@@QAEPAU1@PAUTAG@@J@Z 0054fc80 f engine:scene.obj - 0001:0014ed40 ?PsseDup@SSE@@QAEPAU1@XZ 0054fd40 f engine:scene.obj - 0001:0014ee00 ?PlayAllSounds@SSE@@QAEXPAVMVIE@@K@Z 0054fe00 f engine:scene.obj - 0001:0014ef80 ??_ESUNA@@UAEPAXI@Z 0054ff80 f engine:scene.obj - 0001:0014ef80 ??_GSUNA@@UAEPAXI@Z 0054ff80 f engine:scene.obj - 0001:0014efc0 ??_ESUNC@@UAEPAXI@Z 0054ffc0 f engine:scene.obj - 0001:0014efc0 ??_GSUNC@@UAEPAXI@Z 0054ffc0 f engine:scene.obj - 0001:0014f000 ??_ESUNK@@UAEPAXI@Z 00550000 f engine:scene.obj - 0001:0014f000 ??_GSUNK@@UAEPAXI@Z 00550000 f engine:scene.obj - 0001:0014f040 ??_ESUNP@@UAEPAXI@Z 00550040 f engine:scene.obj - 0001:0014f040 ??_GSUNP@@UAEPAXI@Z 00550040 f engine:scene.obj - 0001:0014f080 ??_ESUNX@@UAEPAXI@Z 00550080 f engine:scene.obj - 0001:0014f080 ??_GSUNX@@UAEPAXI@Z 00550080 f engine:scene.obj - 0001:0014f0c0 ??_GSUNS@@UAEPAXI@Z 005500c0 f engine:scene.obj - 0001:0014f0c0 ??_ESUNS@@UAEPAXI@Z 005500c0 f engine:scene.obj - 0001:0014f100 ??_ESCEN@@MAEPAXI@Z 00550100 f engine:scene.obj - 0001:0014f100 ??_GSCEN@@MAEPAXI@Z 00550100 f engine:scene.obj - 0001:0014f140 ?FWouldBe@BKGD@@SGHJ@Z 00550140 f engine:bkgd.obj - 0001:0014f180 ?FIs@BKGD@@UAEHJ@Z 00550180 f engine:bkgd.obj - 0001:0014f1b0 ?Cls@BKGD@@UAEJXZ 005501b0 f engine:bkgd.obj - 0001:0014f1e0 ?FAddTagsToTagl@BKGD@@SGHPAUTAG@@PAVTAGL@@@Z 005501e0 f engine:bkgd.obj - 0001:0014f300 ?FCacheToHD@BKGD@@SGHPAUTAG@@@Z 00550300 f engine:bkgd.obj - 0001:0014f470 ?FReadBkgd@BKGD@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00550470 f engine:bkgd.obj - 0001:0014f6f0 ?_FInit@BKGD@@IAEHPAVCFL@@KK@Z 005506f0 f engine:bkgd.obj - 0001:0014fca0 ?_Ccam@BKGD@@IAEJPAVCFL@@KK@Z 00550ca0 f engine:bkgd.obj - 0001:0014fe00 ?_SetupLights@BKGD@@IAEXPAVGL@@@Z 00550e00 f engine:bkgd.obj - 0001:0014ff50 ??1BKGD@@UAE@XZ 00550f50 f engine:bkgd.obj - 0001:001500a0 ?GetName@BKGD@@QAEXPAVSTN@@@Z 005510a0 f engine:bkgd.obj - 0001:00150160 ?FGetPalette@BKGD@@QAEHPAPAVGL@@PAJ@Z 00551160 f engine:bkgd.obj - 0001:00150220 ?GetCameraPos@BKGD@@QAEXPAJ00@Z 00551220 f engine:bkgd.obj - 0001:001502d0 ?TurnOnLights@BKGD@@QAEXPAVBWLD@@@Z 005512d0 f engine:bkgd.obj - 0001:001503e0 ?TurnOffLights@BKGD@@QAEXXZ 005513e0 f engine:bkgd.obj - 0001:001504b0 ?FSetCamera@BKGD@@QAEHPAVBWLD@@J@Z 005514b0 f engine:bkgd.obj - 0001:00150be0 ?GetMouseMatrix@BKGD@@QAEXPAUbr_matrix34@@@Z 00551be0 f engine:bkgd.obj - 0001:00150c50 ?GetActorPlacePoint@BKGD@@QAEXPAJ00@Z 00551c50 f engine:bkgd.obj - 0001:00150d90 ?ReuseActorPlacePoint@BKGD@@QAEXXZ 00551d90 f engine:bkgd.obj - 0001:00150dc0 ?FWritePlaceFile@BKGD@@QAEHJJJ@Z 00551dc0 f engine:bkgd.obj - 0001:00151170 ?AssertValid@BKGD@@QAEXK@Z 00552170 f engine:bkgd.obj - 0001:001512f0 ?MarkMem@BKGD@@UAEXXZ 005522f0 f engine:bkgd.obj - 0001:001513c0 ??0BKGD@@QAE@XZ 005523c0 f engine:bkgd.obj - 0001:00151400 ??_EBKGD@@UAEPAXI@Z 00552400 f engine:bkgd.obj - 0001:00151400 ??_GBKGD@@UAEPAXI@Z 00552400 f engine:bkgd.obj - 0001:001515a0 ?Ccam@BKGD@@QAEJXZ 005525a0 f engine:bkgd.obj - 0001:001515d0 ?FWouldBe@BODY@@SGHJ@Z 005525d0 f engine:body.obj - 0001:00151610 ?FIs@BODY@@UAEHJ@Z 00552610 f engine:body.obj - 0001:00151640 ?Cls@BODY@@UAEJXZ 00552640 f engine:body.obj - 0001:00151670 ?FWouldBe@COST@@SGHJ@Z 00552670 f engine:body.obj - 0001:001516b0 ?FIs@COST@@UAEHJ@Z 005526b0 f engine:body.obj - 0001:001516e0 ?Cls@COST@@UAEJXZ 005526e0 f engine:body.obj - 0001:00151710 ?PbodyNew@BODY@@SGPAV1@PAVGL@@0@Z 00552710 f engine:body.obj - 0001:001519e0 ?_FInit@BODY@@IAEHPAVGL@@0@Z 005529e0 f engine:body.obj - 0001:00151b30 ?_FInitShape@BODY@@IAEHPAVGL@@0@Z 00552b30 f engine:body.obj - 0001:00151ff0 ?FChangeShape@BODY@@QAEHPAVGL@@0@Z 00552ff0 f engine:body.obj - 0001:00152370 ?PbodyFromBact@BODY@@SGPAV1@PAUbr_actor@@PAJ@Z 00553370 f engine:body.obj - 0001:001524b0 ?PbodyClicked@BODY@@SGPAV1@JJPAVBWLD@@PAJ@Z 005534b0 f engine:body.obj - 0001:00152650 ?_FFilter@BODY@@SAHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z 00553650 f engine:body.obj - 0001:001526e0 ?_DestroyShape@BODY@@IAEXXZ 005536e0 f engine:body.obj - 0001:001528b0 ??1BODY@@UAE@XZ 005538b0 f engine:body.obj - 0001:00152910 ?PbodyDup@BODY@@QAEPAV1@XZ 00553910 f engine:body.obj - 0001:00152e40 ?Restore@BODY@@QAEXPAV1@@Z 00553e40 f engine:body.obj - 0001:00152ff0 ?Show@BODY@@QAEXXZ 00553ff0 f engine:body.obj - 0001:00153130 ?Hide@BODY@@QAEXXZ 00554130 f engine:body.obj - 0001:00153220 ?SetHiliteColor@BODY@@SGXJ@Z 00554220 f engine:body.obj - 0001:00153250 ?Hilite@BODY@@QAEXXZ 00554250 f engine:body.obj - 0001:00153330 ?Unhilite@BODY@@QAEXXZ 00554330 f engine:body.obj - 0001:00153410 ?LocateOrient@BODY@@QAEXJJJPAUbr_matrix34@@@Z 00554410 f engine:body.obj - 0001:00153520 ?SetPartModel@BODY@@QAEXJPAVMODL@@@Z 00554520 f engine:body.obj - 0001:00153760 ?SetPartMatrix@BODY@@QAEXJPAUbr_matrix34@@@Z 00554760 f engine:body.obj - 0001:00153860 ?_RemoveMaterial@BODY@@IAEXJ@Z 00554860 f engine:body.obj - 0001:001539f0 ?SetPartSetMtrl@BODY@@QAEXJPAVMTRL@@@Z 005549f0 f engine:body.obj - 0001:00153b90 ?SetPartSetCmtl@BODY@@QAEXPAVCMTL@@@Z 00554b90 f engine:body.obj - 0001:00153db0 ?GetPartSetMaterial@BODY@@QAEXJPAHPAPAVMTRL@@PAPAVCMTL@@@Z 00554db0 f engine:body.obj - 0001:00154020 ?_FFilterSearch@BODY@@KAHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z 00555020 f engine:body.obj - 0001:001541b0 ?FPtInBody@BODY@@QAEHJJPAJ@Z 005551b0 f engine:body.obj - 0001:00154240 ?_PrepareToRender@BODY@@KGXPAUbr_actor@@@Z 00555240 f engine:body.obj - 0001:00154370 ?_GetRc@BODY@@KGXPAUbr_actor@@PAVRC@@@Z 00555370 f engine:body.obj - 0001:00154440 ?GetBcbBounds@BODY@@QAEXPAUBCB@@H@Z 00555440 f engine:body.obj - 0001:001548c0 ?_BactRendered@BODY@@KGXPAUbr_actor@@PAVRC@@@Z 005558c0 f engine:body.obj - 0001:00154920 ?FIsInView@BODY@@QAEHXZ 00555920 f engine:body.obj - 0001:00154990 ?GetRcBounds@BODY@@QAEXPAVRC@@@Z 00555990 f engine:body.obj - 0001:00154a40 ?GetCenter@BODY@@QAEXPAJ0@Z 00555a40 f engine:body.obj - 0001:00154b00 ?GetPosition@BODY@@QAEXPAJ00@Z 00555b00 f engine:body.obj - 0001:00154cb0 ?AssertValid@BODY@@QAEXK@Z 00555cb0 f engine:body.obj - 0001:00155000 ?MarkMem@BODY@@UAEXXZ 00556000 f engine:body.obj - 0001:001551c0 ??0COST@@QAE@XZ 005561c0 f engine:body.obj - 0001:00155220 ??1COST@@UAE@XZ 00556220 f engine:body.obj - 0001:00155280 ?_Clear@COST@@AAEXXZ 00556280 f engine:body.obj - 0001:00155380 ?FGet@COST@@QAEHPAVBODY@@@Z 00556380 f engine:body.obj - 0001:00155530 ?Set@COST@@QAEXPAVBODY@@H@Z 00556530 f engine:body.obj - 0001:00155720 ?AssertValid@COST@@QAEXK@Z 00556720 f engine:body.obj - 0001:00155870 ?MarkMem@COST@@UAEXXZ 00556870 f engine:body.obj - 0001:00155940 ??_GBODY@@UAEPAXI@Z 00556940 f engine:body.obj - 0001:00155940 ??_EBODY@@UAEPAXI@Z 00556940 f engine:body.obj - 0001:00155980 ??_ECOST@@UAEPAXI@Z 00556980 f engine:body.obj - 0001:00155980 ??_GCOST@@UAEPAXI@Z 00556980 f engine:body.obj - 0001:001559c0 ?SetBeginRenderCallback@BWLD@@QAEXP6GXPAUbr_actor@@@Z@Z 005569c0 f engine:body.obj - 0001:001559f0 ?SetActorRenderedCallback@BWLD@@QAEXP6GXPAUbr_actor@@PAVRC@@@Z@Z 005569f0 f engine:body.obj - 0001:00155a20 ?SetGetRcCallback@BWLD@@QAEXP6GXPAUbr_actor@@PAVRC@@@Z@Z 00556a20 f engine:body.obj - 0001:00155a50 ?Pbmdl@MODL@@QAEPAUbr_model@@XZ 00556a50 f engine:body.obj - 0001:00155a80 ?Pbmtl@MTRL@@QAEPAUbr_material@@XZ 00556a80 f engine:body.obj - 0001:00155ab0 ?Ibset@CMTL@@QAEJXZ 00556ab0 f engine:body.obj - 0001:00155ae0 ?Cbprt@CMTL@@QAEJXZ 00556ae0 f engine:body.obj - 0001:00155b10 ??0BODY@@IAE@XZ 00556b10 f engine:body.obj - 0001:00155b60 ?_PbactRoot@BODY@@IAEPAUbr_actor@@XZ 00556b60 f engine:body.obj - 0001:00155b90 ?_PbactHilite@BODY@@IAEPAUbr_actor@@XZ 00556b90 f engine:body.obj - 0001:00155bc0 ?_PbactPart@BODY@@IAEPAUbr_actor@@J@Z 00556bc0 f engine:body.obj - 0001:00155c00 ?_Cbact@BODY@@IAEJXZ 00556c00 f engine:body.obj - 0001:00155c30 ?_Ibset@BODY@@IAEJJ@Z 00556c30 f engine:body.obj - 0001:00155cc0 ?FWouldBe@ACTR@@SGHJ@Z 00556cc0 f engine:actor.obj - 0001:00155d00 ?FIs@ACTR@@UAEHJ@Z 00556d00 f engine:actor.obj - 0001:00155d30 ?Cls@ACTR@@UAEJXZ 00556d30 f engine:actor.obj - 0001:00155d60 ??0ACTR@@IAE@XZ 00556d60 f engine:actor.obj - 0001:00155de0 ??1ACTR@@UAE@XZ 00556de0 f engine:actor.obj - 0001:00155f30 ?_FInit@ACTR@@IAEHPAUTAG@@@Z 00556f30 f engine:actor.obj - 0001:00156090 ?_InitXfrm@ACTR@@IAEXXZ 00557090 f engine:actor.obj - 0001:00156170 ?_InitXfrmRot@ACTR@@IAEXPAUbr_matrix34@@@Z 00557170 f engine:actor.obj - 0001:001561d0 ?PactrNew@ACTR@@SGPAV1@PAUTAG@@@Z 005571d0 f engine:actor.obj - 0001:00156280 ?_FCreateGroups@ACTR@@IAEHXZ 00557280 f engine:actor.obj - 0001:00156360 ?SetPscen@ACTR@@QAEXPAVSCEN@@@Z 00557360 f engine:actor.obj - 0001:001564d0 ?_InitState@ACTR@@IAEXXZ 005574d0 f engine:actor.obj - 0001:00156570 ?_SetStateRewound@ACTR@@IAEXXZ 00557570 f engine:actor.obj - 0001:001566a0 ?FGotoFrame@ACTR@@QAEHJPAH@Z 005576a0 f engine:actor.obj - 0001:00156b50 ?_FQuickBackupToFrm@ACTR@@IAEHJPAH@Z 00557b50 f engine:actor.obj - 0001:00156e80 ?_FGetRtelBack@ACTR@@IAEHPAURTEL@@H@Z 00557e80 f engine:actor.obj - 0001:00157140 ?_FDoFrm@ACTR@@IAEHHPAH0@Z 00558140 f engine:actor.obj - 0001:00157700 ?FReplayFrame@ACTR@@QAEHJ@Z 00558700 f engine:actor.obj - 0001:001577f0 ?_FGetStatic@ACTR@@IAEHJPAH@Z 005587f0 f engine:actor.obj - 0001:001578c0 ?_FIsDoneAevSub@ACTR@@IAEHJURTEL@@@Z 005588c0 f engine:actor.obj - 0001:001579b0 ?_FIsAddNow@ACTR@@IAEHJ@Z 005589b0 f engine:actor.obj - 0001:00157ac0 ?_FGetDwrPlay@ACTR@@IAEHPAJ@Z 00558ac0 f engine:actor.obj - 0001:00157b90 ?_FGetDwrRecord@ACTR@@IAEHPAJ@Z 00558b90 f engine:actor.obj - 0001:00157c40 ?_FDoAevCur@ACTR@@IAEHXZ 00558c40 f engine:actor.obj - 0001:00157d00 ?_FDoAevCore@ACTR@@IAEHJ@Z 00558d00 f engine:actor.obj - 0001:001585a0 ?_FAddDoAev@ACTR@@IAEHJJPAX@Z 005595a0 f engine:actor.obj - 0001:001588a0 ?_MergeAev@ACTR@@IAEXJJPAJ@Z 005598a0 f engine:actor.obj - 0001:00158eb0 ?FSetActionCore@ACTR@@QAEHJJH@Z 00559eb0 f engine:actor.obj - 0001:00159150 ?_Hide@ACTR@@IAEXXZ 0055a150 f engine:actor.obj - 0001:001591e0 ?_FInsertGgRpt@ACTR@@IAEHJPAURPT@@J@Z 0055a1e0 f engine:actor.obj - 0001:001593f0 ?FSetStep@ACTR@@QAEHJ@Z 0055a3f0 f engine:actor.obj - 0001:001594b0 ?_GetNewOrigin@ACTR@@IAEXPAJ00@Z 0055a4b0 f engine:actor.obj - 0001:001596b0 ?FAddOnStageCore@ACTR@@QAEHXZ 0055a6b0 f engine:actor.obj - 0001:00159b40 ?_FAddAevFromPrev@ACTR@@IAEHJK@Z 0055ab40 f engine:actor.obj - 0001:00159fb0 ?_FAddAevFromLater@ACTR@@IAEHXZ 0055afb0 f engine:actor.obj - 0001:0015a250 ?_FFindPrevAevAet@ACTR@@IAEHJJPAJ@Z 0055b250 f engine:actor.obj - 0001:0015a320 ?_FFindNextAevAet@ACTR@@IAEHJJPAJ@Z 0055b320 f engine:actor.obj - 0001:0015a400 ?_FindAevLastSub@ACTR@@IAEXJJPAJ@Z 0055b400 f engine:actor.obj - 0001:0015a4f0 ?FRemFromStageCore@ACTR@@QAEHXZ 0055b4f0 f engine:actor.obj - 0001:0015a620 ?_FDeleteEntireSubrte@ACTR@@IAEHXZ 0055b620 f engine:actor.obj - 0001:0015a7e0 ?_DelAddFrame@ACTR@@IAEXJJ@Z 0055b7e0 f engine:actor.obj - 0001:0015a920 ?FSetCostumeCore@ACTR@@QAEHJPAUTAG@@JH@Z 0055b920 f engine:actor.obj - 0001:0015aab0 ?_FFreeze@ACTR@@IAEHXZ 0055bab0 f engine:actor.obj - 0001:0015ab10 ?_FUnfreeze@ACTR@@IAEHXZ 0055bb10 f engine:actor.obj - 0001:0015ab70 ?SetAddOrient@ACTR@@QAEXGGGKPAUXYZ@@@Z 0055bb70 f engine:actor.obj - 0001:0015ad10 ?_BraAvgAngle@ACTR@@IAEGGGJ@Z 0055bd10 f engine:actor.obj - 0001:0015ae10 ?FRotate@ACTR@@QAEHGGGH@Z 0055be10 f engine:actor.obj - 0001:0015b090 ?FNormalizeCore@ACTR@@QAEHK@Z 0055c090 f engine:actor.obj - 0001:0015b3b0 ?FScale@ACTR@@QAEHJ@Z 0055c3b0 f engine:actor.obj - 0001:0015b5c0 ?FSoonerLater@ACTR@@QAEHJ@Z 0055c5c0 f engine:actor.obj - 0001:0015b900 ?FPull@ACTR@@QAEHJJJ@Z 0055c900 f engine:actor.obj - 0001:0015baf0 ?FTweakRoute@ACTR@@QAEHJJJK@Z 0055caf0 f engine:actor.obj - 0001:0015bbf0 ?_UpdateXyzRte@ACTR@@IAEXXZ 0055cbf0 f engine:actor.obj - 0001:0015bc70 ?FMoveRoute@ACTR@@QAEHJJJPAHK@Z 0055cc70 f engine:actor.obj - 0001:0015c340 ??9XYZ@@QAEHAAU0@@Z 0055d340 f engine:actor.obj - 0001:0015c3f0 ??9RTEL@@QAEHAAU0@@Z 0055d3f0 f engine:actor.obj - 0001:0015c450 ??ORTEL@@QAEHAAU0@@Z 0055d450 f engine:actor.obj - 0001:0015c4e0 ?_LoadAddOrien@ACTR@@IAEXPAUAEVADD@@H@Z 0055d4e0 f engine:actor.obj - 0001:0015c5c0 ?_PrepXfrmFill@ACTR@@IAEXJPAXJJJK@Z 0055d5c0 f engine:actor.obj - 0001:0015ca80 ??8RTEL@@QAEHAAU0@@Z 0055da80 f engine:actor.obj - 0001:0015cae0 ??PRTEL@@QAEHAAU0@@Z 0055dae0 f engine:actor.obj - 0001:0015cb70 ?_FInsertAev@ACTR@@IAEHJJPAX0H@Z 0055db70 f engine:actor.obj - 0001:0015ccf0 ?_RemoveAev@ACTR@@IAEXJH@Z 0055dcf0 f engine:actor.obj - 0001:0015ce90 ?_PrepActnFill@ACTR@@IAEXJJJK@Z 0055de90 f engine:actor.obj - 0001:0015d060 ??MRTEL@@QAEHAAU0@@Z 0055e060 f engine:actor.obj - 0001:0015d0f0 ?_PrepCostFill@ACTR@@IAEXJPAUAEVCOST@@@Z 0055e0f0 f engine:actor.obj - 0001:0015d4f0 ?_AdjustAevForRteIns@ACTR@@IAEXJJ@Z 0055e4f0 f engine:actor.obj - 0001:0015d660 ?_AdjustAevForRteDel@ACTR@@IAEXJJ@Z 0055e660 f engine:actor.obj - 0001:0015d7d0 ?_AdvanceRtel@ACTR@@IAEXJPAURTEL@@JJPAH@Z 0055e7d0 f engine:actor.obj - 0001:0015daa0 ??NRTEL@@QAEHAAU0@@Z 0055eaa0 f engine:actor.obj - 0001:0015db30 ?_GetXyzFromRtel@ACTR@@IAEXPAURTEL@@PAUXYZ@@@Z 0055eb30 f engine:actor.obj - 0001:0015dc80 ?_GetXyzOnLine@ACTR@@IAEXPAUXYZ@@0J0@Z 0055ec80 f engine:actor.obj - 0001:0015dd90 ?_PositionBody@ACTR@@IAEXPAUXYZ@@@Z 0055ed90 f engine:actor.obj - 0001:0015de40 ?_MatrixRotUpdate@ACTR@@IAEXPAUXYZ@@PAUbr_matrix34@@@Z 0055ee40 f engine:actor.obj - 0001:0015e220 ?_CalcRteOrient@ACTR@@IAEXPAUbr_matrix34@@PAG11PAK@Z 0055f220 f engine:actor.obj - 0001:0015e460 ?BraRotYCamera@BKGD@@QAEGXZ 0055f460 f engine:actor.obj - 0001:0015e490 ?_UpdateXyzTan@ACTR@@IAEXPAUXYZ@@JJ@Z 0055f490 f engine:actor.obj - 0001:0015e6c0 ?BrsAbsMax3@@YGJJJJ@Z 0055f6c0 f engine:actor.obj - 0001:0015e700 ?_ApplyRotFromVec@ACTR@@IAEXPAUXYZ@@PAUbr_matrix34@@PAG22PAK@Z 0055f700 f engine:actor.obj - 0001:0015e960 ?FGetLifetime@ACTR@@QAEHPAJ0@Z 0055f960 f engine:actor.obj - 0001:0015eab0 ?_FComputeLifetime@ACTR@@IAEHPAJ@Z 0055fab0 f engine:actor.obj - 0001:0015f180 ?_FIsStalled@ACTR@@IAEHJPAURTEL@@PAJ@Z 00560180 f engine:actor.obj - 0001:0015f2b0 ?FIsRecordValid@ACTR@@QAEHJJJK@Z 005602b0 f engine:actor.obj - 0001:0015f370 ?FBeginRecord@ACTR@@QAEHKHPAV1@@Z 00560370 f engine:actor.obj - 0001:0015f770 ?FRecordMove@ACTR@@QAEHJJJKKPAH0PAV1@@Z 00560770 f engine:actor.obj - 0001:0015fd90 ?FEndRecord@ACTR@@QAEHHPAV1@@Z 00560d90 f engine:actor.obj - 0001:00160500 ?DeleteFwdCore@ACTR@@QAEXHPAHJ@Z 00561500 f engine:actor.obj - 0001:00160780 ?_DeleteFwdCore@ACTR@@IAEXHPAHJ@Z 00561780 f engine:actor.obj - 0001:00160af0 ?_SaveCurPathOrien@ACTR@@IAEXXZ 00561af0 f engine:actor.obj - 0001:00160bd0 ?DeleteBackCore@ACTR@@QAEXPAH@Z 00561bd0 f engine:actor.obj - 0001:00161260 ?_TruncateSubRte@ACTR@@IAEXJ@Z 00562260 f engine:actor.obj - 0001:00161470 ?FPtIn@ACTR@@QAEHJJPAJ@Z 00562470 f engine:actor.obj - 0001:001614e0 ?FMustRender@ACTR@@QAEHJ@Z 005624e0 f engine:actor.obj - 0001:00161790 ?GetName@ACTR@@QAEXPAVSTN@@@Z 00562790 f engine:actor.obj - 0001:00161870 ?GetXyzWorld@ACTR@@QAEXPAJ00@Z 00562870 f engine:actor.obj - 0001:00161940 ?Hilite@ACTR@@QAEXXZ 00562940 f engine:actor.obj - 0001:001619c0 ?FChangeTagTmpl@ACTR@@QAEHPAUTAG@@@Z 005629c0 f engine:actor.obj - 0001:00161be0 ?AssertValid@ACTR@@QAEXK@Z 00562be0 f engine:actor.obj - 0001:00162510 ?MarkMem@ACTR@@UAEXXZ 00563510 f engine:actor.obj - 0001:001626a0 ??_EACTR@@UAEPAXI@Z 005636a0 f engine:actor.obj - 0001:001626a0 ??_GACTR@@UAEPAXI@Z 005636a0 f engine:actor.obj - 0001:001626e0 ?FWouldBe@ACTN@@SGHJ@Z 005636e0 f engine:tmpl.obj - 0001:00162720 ?FIs@ACTN@@UAEHJ@Z 00563720 f engine:tmpl.obj - 0001:00162750 ?Cls@ACTN@@UAEJXZ 00563750 f engine:tmpl.obj - 0001:00162780 ?FWouldBe@TMPL@@SGHJ@Z 00563780 f engine:tmpl.obj - 0001:001627c0 ?FIs@TMPL@@UAEHJ@Z 005637c0 f engine:tmpl.obj - 0001:001627f0 ?Cls@TMPL@@UAEJXZ 005637f0 f engine:tmpl.obj - 0001:00162820 ?PactnNew@ACTN@@SGPAV1@PAVGG@@PAVGL@@K@Z 00563820 f engine:tmpl.obj - 0001:00162a20 ?FReadActn@ACTN@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00563a20 f engine:tmpl.obj - 0001:00162cd0 ?_FInit@ACTN@@IAEHPAVCFL@@KK@Z 00563cd0 f engine:tmpl.obj - 0001:00163160 ??1ACTN@@UAE@XZ 00564160 f engine:tmpl.obj - 0001:00163210 ?GetCel@ACTN@@QAEXJPAUCEL@@@Z 00564210 f engine:tmpl.obj - 0001:00163290 ?GetCps@ACTN@@QAEXJJPAUCPS@@@Z 00564290 f engine:tmpl.obj - 0001:00163340 ?GetSnd@ACTN@@QAEXJPAUTAG@@@Z 00564340 f engine:tmpl.obj - 0001:001633f0 ?GetMatrix@ACTN@@QAEXJPAUbr_matrix34@@@Z 005643f0 f engine:tmpl.obj - 0001:00163470 ?AssertValid@ACTN@@QAEXK@Z 00564470 f engine:tmpl.obj - 0001:001635a0 ?MarkMem@ACTN@@UAEXXZ 005645a0 f engine:tmpl.obj - 0001:00163650 ?FReadTmpl@TMPL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00564650 f engine:tmpl.obj - 0001:00163960 ?_FReadTmplf@TMPL@@IAEHPAVCFL@@KK@Z 00564960 f engine:tmpl.obj - 0001:00163b20 ?_FWriteTmplf@TMPL@@IAEHPAVCFL@@KPAK@Z 00564b20 f engine:tmpl.obj - 0001:00163c70 ?_FInit@TMPL@@MAEHPAVCFL@@KK@Z 00564c70 f engine:tmpl.obj - 0001:00164570 ??1TMPL@@UAE@XZ 00565570 f engine:tmpl.obj - 0001:00164650 ?PgltagFetch@TMPL@@SGPAVGL@@PAVCFL@@KKPAH@Z 00565650 f engine:tmpl.obj - 0001:00164720 ?PbodyCreate@TMPL@@QAEPAVBODY@@XZ 00565720 f engine:tmpl.obj - 0001:001647d0 ?FGetActnName@TMPL@@UAEHJPAVSTN@@@Z 005657d0 f engine:tmpl.obj - 0001:001648f0 ?_PactnFetch@TMPL@@MAEPAVACTN@@J@Z 005658f0 f engine:tmpl.obj - 0001:00164a00 ?_PmodlFetch@TMPL@@MAEPAVMODL@@K@Z 00565a00 f engine:tmpl.obj - 0001:00164af0 ?FSetActnCel@TMPL@@QAEHPAVBODY@@JJPAJ@Z 00565af0 f engine:tmpl.obj - 0001:00164e70 ?FGetDwrActnCel@TMPL@@QAEHJJPAJ@Z 00565e70 f engine:tmpl.obj - 0001:00164f60 ?FGetCcelActn@TMPL@@QAEHJPAJ@Z 00565f60 f engine:tmpl.obj - 0001:00165020 ?FGetSndActnCel@TMPL@@QAEHJJPAHPAUTAG@@@Z 00566020 f engine:tmpl.obj - 0001:00165130 ?FGetGrfactn@TMPL@@QAEHJPAK@Z 00566130 f engine:tmpl.obj - 0001:001651f0 ?GetRestOrien@TMPL@@QAEXPAG00@Z 005661f0 f engine:tmpl.obj - 0001:00165280 ?FSetDefaultCost@TMPL@@UAEHPAVBODY@@@Z 00566280 f engine:tmpl.obj - 0001:001654e0 ?CcmidOfBset@TMPL@@QAEJJ@Z 005664e0 f engine:tmpl.obj - 0001:00165550 ?CmidOfBset@TMPL@@QAEJJJ@Z 00566550 f engine:tmpl.obj - 0001:001655e0 ?FBsetIsAccessory@TMPL@@QAEHJ@Z 005665e0 f engine:tmpl.obj - 0001:001656d0 ?FIbsetAccOfIbset@TMPL@@QAEHJPAJ@Z 005666d0 f engine:tmpl.obj - 0001:00165830 ?FSameAccCmids@TMPL@@QAEHJJ@Z 00566830 f engine:tmpl.obj - 0001:00165920 ?PcmtlFetch@TMPL@@UAEPAVCMTL@@J@Z 00566920 f engine:tmpl.obj - 0001:00165a30 ?GetName@TMPL@@QAEXPAVSTN@@@Z 00566a30 f engine:tmpl.obj - 0001:00165af0 ?AssertValid@TMPL@@QAEXK@Z 00566af0 f engine:tmpl.obj - 0001:00165d70 ?MarkMem@TMPL@@UAEXXZ 00566d70 f engine:tmpl.obj - 0001:00165f50 ??_EACTN@@UAEPAXI@Z 00566f50 f engine:tmpl.obj - 0001:00165f50 ??_GACTN@@UAEPAXI@Z 00566f50 f engine:tmpl.obj - 0001:00165f90 ??_ETMPL@@UAEPAXI@Z 00566f90 f engine:tmpl.obj - 0001:00165f90 ??_GTMPL@@UAEPAXI@Z 00566f90 f engine:tmpl.obj - 0001:00165fd0 ??0TDT@@QAE@XZ 00566fd0 f engine:tmpl.obj - 0001:00166010 ??_ETDT@@UAEPAXI@Z 00567010 f engine:tmpl.obj - 0001:00166010 ??_GTDT@@UAEPAXI@Z 00567010 f engine:tmpl.obj - 0001:00166050 ??0ACTN@@IAE@XZ 00567050 f engine:tmpl.obj - 0001:00166090 ?Grfactn@ACTN@@QAEKXZ 00567090 f engine:tmpl.obj - 0001:001660c0 ?Ccel@ACTN@@QAEJXZ 005670c0 f engine:tmpl.obj - 0001:001660f0 ??0TMPL@@IAE@XZ 005670f0 f engine:tmpl.obj - 0001:00166180 ?FWouldBe@MTRL@@SGHJ@Z 00567180 f engine:mtrl.obj - 0001:001661c0 ?FIs@MTRL@@UAEHJ@Z 005671c0 f engine:mtrl.obj - 0001:001661f0 ?Cls@MTRL@@UAEJXZ 005671f0 f engine:mtrl.obj - 0001:00166220 ?FWouldBe@CMTL@@SGHJ@Z 00567220 f engine:mtrl.obj - 0001:00166260 ?FIs@CMTL@@UAEHJ@Z 00567260 f engine:mtrl.obj - 0001:00166290 ?Cls@CMTL@@UAEJXZ 00567290 f engine:mtrl.obj - 0001:001662c0 ?FSetShadeTable@MTRL@@SGHPAVCFL@@KK@Z 005672c0 f engine:mtrl.obj - 0001:00166390 ?PmtrlNew@MTRL@@SGPAV1@JJ@Z 00567390 f engine:mtrl.obj - 0001:00166580 ?FReadMtrl@MTRL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00567580 f engine:mtrl.obj - 0001:001667d0 ?_FInit@MTRL@@IAEHPAVCRF@@KK@Z 005677d0 f engine:mtrl.obj - 0001:00166da0 ?PmtrlFromBmtl@MTRL@@SGPAV1@PAUbr_material@@@Z 00567da0 f engine:mtrl.obj - 0001:00166e30 ?Ptmap@MTRL@@QAEPAVTMAP@@XZ 00567e30 f engine:mtrl.obj - 0001:00166ec0 ??1MTRL@@UAE@XZ 00567ec0 f engine:mtrl.obj - 0001:00166f70 ?AssertValid@MTRL@@QAEXK@Z 00567f70 f engine:mtrl.obj - 0001:00167020 ?MarkMem@MTRL@@UAEXXZ 00568020 f engine:mtrl.obj - 0001:00167090 ?MarkShadeTable@MTRL@@SGXXZ 00568090 f engine:mtrl.obj - 0001:001670c0 ?FHasModels@CMTL@@SGHPAVCFL@@KK@Z 005680c0 f engine:mtrl.obj - 0001:00167160 ?FEqualModels@CMTL@@SGHPAVCFL@@KK@Z 00568160 f engine:mtrl.obj - 0001:00167280 ?FReadCmtl@CMTL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00568280 f engine:mtrl.obj - 0001:001674d0 ?_FInit@CMTL@@IAEHPAVCRF@@KK@Z 005684d0 f engine:mtrl.obj - 0001:001678d0 ??1CMTL@@UAE@XZ 005688d0 f engine:mtrl.obj - 0001:00167a40 ?Pbmtl@CMTL@@QAEPAUbr_material@@J@Z 00568a40 f engine:mtrl.obj - 0001:00167ab0 ?Pmodl@CMTL@@QAEPAVMODL@@J@Z 00568ab0 f engine:mtrl.obj - 0001:00167b60 ?AssertValid@CMTL@@QAEXK@Z 00568b60 f engine:mtrl.obj - 0001:00167ca0 ?MarkMem@CMTL@@UAEXXZ 00568ca0 f engine:mtrl.obj - 0001:00167da0 ??_GMTRL@@UAEPAXI@Z 00568da0 f engine:mtrl.obj - 0001:00167da0 ??_EMTRL@@UAEPAXI@Z 00568da0 f engine:mtrl.obj - 0001:00167de0 ??_GCMTL@@UAEPAXI@Z 00568de0 f engine:mtrl.obj - 0001:00167de0 ??_ECMTL@@UAEPAXI@Z 00568de0 f engine:mtrl.obj - 0001:00167f30 ?Pbpmp@TMAP@@QAEPAUbr_pixelmap@@XZ 00568f30 f engine:mtrl.obj - 0001:00167f60 ??0MTRL@@IAE@XZ 00568f60 f engine:mtrl.obj - 0001:00167fa0 ??0CMTL@@IAE@XZ 00568fa0 f engine:mtrl.obj - 0001:00168030 ?FWouldBe@TDT@@SGHJ@Z 00569030 f engine:tdt.obj - 0001:00168070 ?FIs@TDT@@UAEHJ@Z 00569070 f engine:tdt.obj - 0001:001680a0 ?Cls@TDT@@UAEJXZ 005690a0 f engine:tdt.obj - 0001:001680d0 ?FSetActionNames@TDT@@SGHPAVGST@@@Z 005690d0 f engine:tdt.obj - 0001:00168190 ?PgltagFetch@TDT@@SGPAVGL@@PAVCFL@@KKPAH@Z 00569190 f engine:tdt.obj - 0001:001683c0 ?PtdtNew@TDT@@SGPAV1@PAVSTN@@JPAUTAG@@@Z 005693c0 f engine:tdt.obj - 0001:001685c0 ?_FInit@TDT@@MAEHPAVCFL@@KK@Z 005695c0 f engine:tdt.obj - 0001:00168850 ?_FInitLists@TDT@@IAEHXZ 00569850 f engine:tdt.obj - 0001:00168be0 ?_PactnFetch@TDT@@MAEPAVACTN@@J@Z 00569be0 f engine:tdt.obj - 0001:00168ce0 ?_PactnBuild@TDT@@IAEPAVACTN@@J@Z 00569ce0 f engine:tdt.obj - 0001:00168e50 ?FGetActnName@TDT@@UAEHJPAVSTN@@@Z 00569e50 f engine:tdt.obj - 0001:00168f90 ?_PmodlFetch@TDT@@MAEPAVMODL@@K@Z 00569f90 f engine:tdt.obj - 0001:00169060 ?_PglibactParBuild@TDT@@IAEPAVGL@@XZ 0056a060 f engine:tdt.obj - 0001:00169150 ?_PglibsetBuild@TDT@@IAEPAVGL@@XZ 0056a150 f engine:tdt.obj - 0001:00169240 ?_PggcmidBuild@TDT@@IAEPAVGG@@XZ 0056a240 f engine:tdt.obj - 0001:00169310 ?_Pglbmat34Build@TDT@@IAEPAVGL@@J@Z 0056a310 f engine:tdt.obj - 0001:001697a0 ?_PggcelBuild@TDT@@IAEPAVGG@@J@Z 0056a7a0 f engine:tdt.obj - 0001:001699a0 ??1TDT@@UAE@XZ 0056a9a0 f engine:tdt.obj - 0001:00169a70 ?PtdtDup@TDT@@QAEPAV1@XZ 0056aa70 f engine:tdt.obj - 0001:00169b10 ?FChange@TDT@@QAEHPAVSTN@@JPAUTAG@@@Z 0056ab10 f engine:tdt.obj - 0001:00169d10 ?GetInfo@TDT@@QAEXPAVSTN@@PAJPAUTAG@@@Z 0056ad10 f engine:tdt.obj - 0001:00169e00 ?FAdjustBody@TDT@@QAEHPAVBODY@@@Z 0056ae00 f engine:tdt.obj - 0001:00169ed0 ?FSetDefaultCost@TDT@@UAEHPAVBODY@@@Z 0056aed0 f engine:tdt.obj - 0001:00169f90 ?PcmtlFetch@TDT@@UAEPAVCMTL@@J@Z 0056af90 f engine:tdt.obj - 0001:0016a020 ?FWrite@TDT@@QAEHPAVCFL@@KPAK@Z 0056b020 f engine:tdt.obj - 0001:0016a1e0 ?_CcelOfTda@TDT@@IAEJJ@Z 0056b1e0 f engine:tdt.obj - 0001:0016a2e0 ?_ApplyAction@TDT@@IAEXPAUbr_matrix34@@JJJJJJ@Z 0056b2e0 f engine:tdt.obj - 0001:0016ab30 ?_ApplyShape@TDT@@IAEXPAUbr_matrix34@@JJJJJJJJ@Z 0056bb30 f engine:tdt.obj - 0001:0016af10 ?AssertValid@TDT@@QAEXK@Z 0056bf10 f engine:tdt.obj - 0001:0016b120 ?MarkMem@TDT@@UAEXXZ 0056c120 f engine:tdt.obj - 0001:0016b1d0 ?MarkActionNames@TDT@@SGXXZ 0056c1d0 f engine:tdt.obj - 0001:0016b330 ?DyrMax@TDF@@QAEJXZ 0056c330 f engine:tdt.obj - 0001:0016b3b0 ?FWouldBe@AUND@@SGHJ@Z 0056c3b0 f engine:actredit.obj - 0001:0016b3f0 ?FIs@AUND@@UAEHJ@Z 0056c3f0 f engine:actredit.obj - 0001:0016b420 ?Cls@AUND@@UAEJXZ 0056c420 f engine:actredit.obj - 0001:0016b450 ?FCopy@ACTR@@QAEHPAPAV1@H@Z 0056c450 f engine:actredit.obj - 0001:0016bb90 ?FDup@ACTR@@QAEHPAPAV1@H@Z 0056cb90 f engine:actredit.obj - 0001:0016bd40 ?Restore@ACTR@@QAEXPAV1@@Z 0056cd40 f engine:actredit.obj - 0001:0016bf70 ?_RestoreFromUndo@ACTR@@IAEXPAV1@@Z 0056cf70 f engine:actredit.obj - 0001:0016c070 ?_FDupCopy@ACTR@@IAEHPAV1@0@Z 0056d070 f engine:actredit.obj - 0001:0016c370 ?FCopyRte@ACTR@@QAEHPAPAV1@H@Z 0056d370 f engine:actredit.obj - 0001:0016c670 ?FPasteRte@ACTR@@QAEHPAV1@@Z 0056d670 f engine:actredit.obj - 0001:0016cb10 ?FPaste@ACTR@@QAEHJPAVSCEN@@@Z 0056db10 f engine:actredit.obj - 0001:0016d0b0 ?Reset@ACTR@@QAEXXZ 0056e0b0 f engine:actredit.obj - 0001:0016d120 ?FWouldBe@ACLP@@SGHJ@Z 0056e120 f engine:actredit.obj - 0001:0016d160 ?FIs@ACLP@@UAEHJ@Z 0056e160 f engine:actredit.obj - 0001:0016d190 ?Cls@ACLP@@UAEJXZ 0056e190 f engine:actredit.obj - 0001:0016d1c0 ?PaclpNew@ACLP@@SGPAV1@PAVACTR@@HH@Z 0056e1c0 f engine:actredit.obj - 0001:0016d5b0 ??1ACLP@@UAE@XZ 0056e5b0 f engine:actredit.obj - 0001:0016d610 ?FPaste@ACLP@@QAEHPAVMVIE@@@Z 0056e610 f engine:actredit.obj - 0001:0016d820 ?MarkMem@ACLP@@UAEXXZ 0056e820 f engine:actredit.obj - 0001:0016d870 ?AssertValid@ACLP@@QAEXK@Z 0056e870 f engine:actredit.obj - 0001:0016d8b0 ?FCreateUndo@ACTR@@QAEHPAV1@HPAVSTN@@@Z 0056e8b0 f engine:actredit.obj - 0001:0016da50 ?FSetAction@ACTR@@QAEHJJHPAPAV1@@Z 0056ea50 f engine:actredit.obj - 0001:0016dba0 ?FNormalize@ACTR@@QAEHK@Z 0056eba0 f engine:actredit.obj - 0001:0016dcc0 ?FSetCostume@ACTR@@QAEHJPAUTAG@@JH@Z 0056ecc0 f engine:actredit.obj - 0001:0016de30 ?FDelete@ACTR@@QAEHPAHH@Z 0056ee30 f engine:actredit.obj - 0001:0016e0e0 ?PaundNew@AUND@@SGPAV1@XZ 0056f0e0 f engine:actredit.obj - 0001:0016e170 ??1AUND@@UAE@XZ 0056f170 f engine:actredit.obj - 0001:0016e200 ?FDo@AUND@@UAEHPAVDOCB@@@Z 0056f200 f engine:actredit.obj - 0001:0016e300 ?FUndo@AUND@@UAEHPAVDOCB@@@Z 0056f300 f engine:actredit.obj - 0001:0016e720 ?SetPactr@AUND@@QAEXPAVACTR@@@Z 0056f720 f engine:actredit.obj - 0001:0016e780 ?MarkMem@AUND@@UAEXXZ 0056f780 f engine:actredit.obj - 0001:0016e900 ?AssertValid@AUND@@QAEXK@Z 0056f900 f engine:actredit.obj - 0001:0016e980 ??_EAUND@@UAEPAXI@Z 0056f980 f engine:actredit.obj - 0001:0016e980 ??_GAUND@@UAEPAXI@Z 0056f980 f engine:actredit.obj - 0001:0016e9c0 ??_EACLP@@UAEPAXI@Z 0056f9c0 f engine:actredit.obj - 0001:0016e9c0 ??_GACLP@@UAEPAXI@Z 0056f9c0 f engine:actredit.obj - 0001:0016ea00 ??4ACTR@@QAEAAV0@ABV0@@Z 0056fa00 f engine:actredit.obj - 0001:0016ee00 ??0AUND@@IAE@XZ 0056fe00 f engine:actredit.obj - 0001:0016ee40 ?SetSndUndo@AUND@@QAEXH@Z 0056fe40 f engine:actredit.obj - 0001:0016ee70 ?SetStn@AUND@@QAEXPAVSTN@@@Z 0056fe70 f engine:actredit.obj - 0001:0016eef0 ?Pscen@ACTR@@QAEPAVSCEN@@XZ 0056fef0 f engine:actredit.obj - 0001:0016ef40 ??0ACLP@@IAE@XZ 0056ff40 f engine:actredit.obj - 0001:0016ef80 ?FSaveTagSnd@MVIE@@QAEHPAUTAG@@@Z 0056ff80 f engine:actredit.obj - 0001:0016efc0 ?FWouldBe@TBOX@@SGHJ@Z 0056ffc0 f engine:tbox.obj - 0001:0016f000 ?FIs@TBOX@@UAEHJ@Z 00570000 f engine:tbox.obj - 0001:0016f030 ?Cls@TBOX@@UAEJXZ 00570030 f engine:tbox.obj - 0001:0016f060 ?FWouldBe@TBXG@@SGHJ@Z 00570060 f engine:tbox.obj - 0001:0016f0a0 ?FIs@TBXG@@UAEHJ@Z 005700a0 f engine:tbox.obj - 0001:0016f0d0 ?Cls@TBXG@@UAEJXZ 005700d0 f engine:tbox.obj - 0001:0016f100 ?FWouldBe@TBXB@@SGHJ@Z 00570100 f engine:tbox.obj - 0001:0016f140 ?FIs@TBXB@@UAEHJ@Z 00570140 f engine:tbox.obj - 0001:0016f170 ?Cls@TBXB@@UAEJXZ 00570170 f engine:tbox.obj - 0001:0016f1a0 ?FWouldBe@TCLP@@SGHJ@Z 005701a0 f engine:tbox.obj - 0001:0016f1e0 ?FIs@TCLP@@UAEHJ@Z 005701e0 f engine:tbox.obj - 0001:0016f210 ?Cls@TCLP@@UAEJXZ 00570210 f engine:tbox.obj - 0001:0016f240 ?FWouldBe@TUNT@@SGHJ@Z 00570240 f engine:tbox.obj - 0001:0016f280 ?FIs@TUNT@@UAEHJ@Z 00570280 f engine:tbox.obj - 0001:0016f2b0 ?Cls@TUNT@@UAEJXZ 005702b0 f engine:tbox.obj - 0001:0016f2e0 ?FWouldBe@TUNS@@SGHJ@Z 005702e0 f engine:tbox.obj - 0001:0016f320 ?FIs@TUNS@@UAEHJ@Z 00570320 f engine:tbox.obj - 0001:0016f370 ?Cls@TUNS@@UAEJXZ 00570370 f engine:tbox.obj - 0001:0016f3a0 ?FWouldBe@TUNH@@SGHJ@Z 005703a0 f engine:tbox.obj - 0001:0016f3e0 ?FIs@TUNH@@UAEHJ@Z 005703e0 f engine:tbox.obj - 0001:0016f410 ?Cls@TUNH@@UAEJXZ 00570410 f engine:tbox.obj - 0001:0016f440 ?FWouldBe@TUND@@SGHJ@Z 00570440 f engine:tbox.obj - 0001:0016f480 ?FIs@TUND@@UAEHJ@Z 00570480 f engine:tbox.obj - 0001:0016f4b0 ?Cls@TUND@@UAEJXZ 005704b0 f engine:tbox.obj - 0001:0016f4e0 ?FWouldBe@TUNC@@SGHJ@Z 005704e0 f engine:tbox.obj - 0001:0016f520 ?FIs@TUNC@@UAEHJ@Z 00570520 f engine:tbox.obj - 0001:0016f550 ?Cls@TUNC@@UAEJXZ 00570550 f engine:tbox.obj - 0001:0016f580 ?PtbxbNew@TBXB@@SGPAV1@PAVTBOX@@PAUGCB@@@Z 00570580 f engine:tbox.obj - 0001:0016f710 ?Draw@TBXB@@UAEXPAVGNV@@PAVRC@@@Z 00570710 f engine:tbox.obj - 0001:0016fb50 ?FCmdTrackMouse@TBXB@@UAEHPAUCMD_MOUSE@@@Z 00570b50 f engine:tbox.obj - 0001:00170540 ?SetRc@TUNS@@QAEXPAVRC@@@Z 00571540 f engine:tbox.obj - 0001:00170580 ?SetItbox@TUNS@@QAEXJ@Z 00571580 f engine:tbox.obj - 0001:001705b0 ?FCmdMouseMove@TBXB@@UAEHPAUCMD_MOUSE@@@Z 005715b0 f engine:tbox.obj - 0001:00170860 ?_TbxtAnchor@TBXB@@AAE?AW4TBXT@@JJ@Z 00571860 f engine:tbox.obj - 0001:00170a70 ?Activate@TBXB@@QAEXH@Z 00571a70 f engine:tbox.obj - 0001:00170b40 ?FPtIn@TBXB@@UAEHJJ@Z 00571b40 f engine:tbox.obj - 0001:00170ca0 ?AttachToMouse@TBXB@@QAEXXZ 00571ca0 f engine:tbox.obj - 0001:00170e60 ?MarkMem@TBXB@@UAEXXZ 00571e60 f engine:tbox.obj - 0001:00170eb0 ?AssertValid@TBXB@@QAEXK@Z 00571eb0 f engine:tbox.obj - 0001:00170ee0 ??1TBXG@@EAE@XZ 00571ee0 f engine:tbox.obj - 0001:00170f10 ?PtbxgNew@TBXG@@SGPAV1@PAVTBOX@@PAUGCB@@@Z 00571f10 f engine:tbox.obj - 0001:00171040 ?Draw@TBXG@@UAEXPAVGNV@@PAVRC@@@Z 00572040 f engine:tbox.obj - 0001:00171150 ?Activate@TBXG@@UAEXH@Z 00572150 f engine:tbox.obj - 0001:00171220 ?InvalCp@TBXG@@UAEXJJJ@Z 00572220 f engine:tbox.obj - 0001:001713c0 ?FCmdMouseMove@TBXG@@UAEHPAUCMD_MOUSE@@@Z 005723c0 f engine:tbox.obj - 0001:00171610 ?FCmdTrackMouse@TBXG@@UAEHPAUCMD_MOUSE@@@Z 00572610 f engine:tbox.obj - 0001:00171b90 ?FPtIn@TBXG@@UAEHJJ@Z 00572b90 f engine:tbox.obj - 0001:00171d10 ?_DxpDoc@TBXG@@UAEJXZ 00572d10 f engine:tbox.obj - 0001:00171d80 ?_NewRc@TBXG@@UAEXXZ 00572d80 f engine:tbox.obj - 0001:00171e60 ?FCmdClip@TBXG@@UAEHPAUCMD@@@Z 00572e60 f engine:tbox.obj - 0001:00172100 ?FEnableDdgCmd@TBXG@@UAEHPAUCMD@@PAK@Z 00573100 f engine:tbox.obj - 0001:001722c0 ?_FDoClip@TBXG@@QAEHJ@Z 005732c0 f engine:tbox.obj - 0001:00172950 ?FNeedToScroll@TBXG@@QAEHXZ 00573950 f engine:tbox.obj - 0001:001729f0 ?Scroll@TBXG@@QAEXJ@Z 005739f0 f engine:tbox.obj - 0001:00172a90 ?FTextSelected@TBXG@@QAEHXZ 00573a90 f engine:tbox.obj - 0001:00172b00 ?_FetchChp@TBXG@@UAEXJPAUCHP@@PAJ1@Z 00573b00 f engine:tbox.obj - 0001:00172b60 ?MarkMem@TBXG@@UAEXXZ 00573b60 f engine:tbox.obj - 0001:00172bd0 ?AssertValid@TBXG@@QAEXK@Z 00573bd0 f engine:tbox.obj - 0001:00172c70 ?PtboxNew@TBOX@@SGPAV1@PAVSCEN@@PAVRC@@H@Z 00573c70 f engine:tbox.obj - 0001:00172e30 ?SetDirty@TBOX@@UAEXH@Z 00573e30 f engine:tbox.obj - 0001:00172ea0 ?PtboxRead@TBOX@@SGPAV1@PAVCRF@@KPAVSCEN@@@Z 00573ea0 f engine:tbox.obj - 0001:00173200 ?FWrite@TBOX@@QAEHPAVCFL@@K@Z 00574200 f engine:tbox.obj - 0001:001733f0 ?SetScen@TBOX@@QAEXPAVSCEN@@@Z 005743f0 f engine:tbox.obj - 0001:001734d0 ?SetTypeCore@TBOX@@QAEXH@Z 005744d0 f engine:tbox.obj - 0001:00173590 ?AttachToMouse@TBOX@@QAEXXZ 00574590 f engine:tbox.obj - 0001:00173640 ?FSetType@TBOX@@QAEHH@Z 00574640 f engine:tbox.obj - 0001:00173760 ?SetType@TUNT@@QAEXH@Z 00574760 f engine:tbox.obj - 0001:00173790 ?SetItbox@TUNT@@QAEXJ@Z 00574790 f engine:tbox.obj - 0001:001737c0 ?SetRc@TBOX@@QAEXPAVRC@@@Z 005747c0 f engine:tbox.obj - 0001:00173870 ?FIsVisible@TBOX@@QAEHXZ 00574870 f engine:tbox.obj - 0001:00173900 ?FGetLifetime@TBOX@@QAEHPAJ0@Z 00574900 f engine:tbox.obj - 0001:001739d0 ?Select@TBOX@@QAEXH@Z 005749d0 f engine:tbox.obj - 0001:00173b20 ?FGotoFrame@TBOX@@QAEHJ@Z 00574b20 f engine:tbox.obj - 0001:00173cc0 ?FShowCore@TBOX@@QAEHXZ 00574cc0 f engine:tbox.obj - 0001:00173dc0 ?SetFrmFirst@TUNH@@QAEXJ@Z 00574dc0 f engine:tbox.obj - 0001:00173df0 ?SetFrmLast@TUNH@@QAEXJ@Z 00574df0 f engine:tbox.obj - 0001:00173e20 ?SetItbox@TUNH@@QAEXJ@Z 00574e20 f engine:tbox.obj - 0001:00173e50 ?HideCore@TBOX@@QAEXXZ 00574e50 f engine:tbox.obj - 0001:00173f30 ?FHide@TBOX@@QAEHXZ 00574f30 f engine:tbox.obj - 0001:00174070 ?FDup@TBOX@@QAEHPAPAV1@@Z 00575070 f engine:tbox.obj - 0001:00174200 ?FSetAcrBack@TBOX@@QAEHVACR@@@Z 00575200 f engine:tbox.obj - 0001:00174370 ?SetItbox@TUNC@@QAEXJ@Z 00575370 f engine:tbox.obj - 0001:001743a0 ?SetAcrBack@TUNC@@QAEXVACR@@@Z 005753a0 f engine:tbox.obj - 0001:001743d0 ?FSetAcrText@TBOX@@QAEHVACR@@@Z 005753d0 f engine:tbox.obj - 0001:001744b0 ?FSetDypFontText@TBOX@@QAEHJ@Z 005754b0 f engine:tbox.obj - 0001:00174600 ?FSetStyleText@TBOX@@QAEHK@Z 00575600 f engine:tbox.obj - 0001:00174750 ?FSetOnnText@TBOX@@QAEHJ@Z 00575750 f engine:tbox.obj - 0001:001748a0 ?FetchChpSel@TBOX@@QAEXPAUCHP@@PAK@Z 005758a0 f engine:tbox.obj - 0001:00174aa0 ?FNeedToScroll@TBOX@@QAEHXZ 00575aa0 f engine:tbox.obj - 0001:00174b90 ?Scroll@TBOX@@QAEXXZ 00575b90 f engine:tbox.obj - 0001:00174c50 ?FTextSelected@TBOX@@QAEHXZ 00575c50 f engine:tbox.obj - 0001:00174d20 ?SetStartFrame@TBOX@@QAEXJ@Z 00575d20 f engine:tbox.obj - 0001:00174d80 ?FAddUndo@TBOX@@UAEHPAVUNDB@@@Z 00575d80 f engine:tbox.obj - 0001:00174f90 ?SetItbox@TUND@@QAEXJ@Z 00575f90 f engine:tbox.obj - 0001:00174fc0 ?ClearUndo@TBOX@@UAEXXZ 00575fc0 f engine:tbox.obj - 0001:001750f0 ?CleanDdg@TBOX@@QAEXXZ 005760f0 f engine:tbox.obj - 0001:001751f0 ?Itbox@TBOX@@QAEJXZ 005761f0 f engine:tbox.obj - 0001:00175270 ?MarkMem@TBOX@@UAEXXZ 00576270 f engine:tbox.obj - 0001:001752c0 ?AssertValid@TBOX@@QAEXK@Z 005762c0 f engine:tbox.obj - 0001:00175370 ?PtuntNew@TUNT@@SGPAV1@XZ 00576370 f engine:tbox.obj - 0001:001753d0 ??0TUNT@@IAE@XZ 005763d0 f engine:tbox.obj - 0001:00175410 ??1TUNT@@UAE@XZ 00576410 f engine:tbox.obj - 0001:00175440 ?FDo@TUNT@@UAEHPAVDOCB@@@Z 00576440 f engine:tbox.obj - 0001:00175620 ?FUndo@TUNT@@UAEHPAVDOCB@@@Z 00576620 f engine:tbox.obj - 0001:001756e0 ?MarkMem@TUNT@@UAEXXZ 005766e0 f engine:tbox.obj - 0001:00175730 ?AssertValid@TUNT@@QAEXK@Z 00576730 f engine:tbox.obj - 0001:00175760 ?PtunsNew@TUNS@@SGPAV1@XZ 00576760 f engine:tbox.obj - 0001:001757c0 ??0TUNS@@IAE@XZ 005767c0 f engine:tbox.obj - 0001:00175800 ??1TUNS@@UAE@XZ 00576800 f engine:tbox.obj - 0001:00175830 ?FDo@TUNS@@UAEHPAVDOCB@@@Z 00576830 f engine:tbox.obj - 0001:00175ab0 ?FUndo@TUNS@@UAEHPAVDOCB@@@Z 00576ab0 f engine:tbox.obj - 0001:00175b70 ?MarkMem@TUNS@@UAEXXZ 00576b70 f engine:tbox.obj - 0001:00175bc0 ?AssertValid@TUNS@@QAEXK@Z 00576bc0 f engine:tbox.obj - 0001:00175bf0 ?PtunhNew@TUNH@@SGPAV1@XZ 00576bf0 f engine:tbox.obj - 0001:00175c50 ??0TUNH@@IAE@XZ 00576c50 f engine:tbox.obj - 0001:00175c90 ??1TUNH@@UAE@XZ 00576c90 f engine:tbox.obj - 0001:00175cf0 ?FDo@TUNH@@UAEHPAVDOCB@@@Z 00576cf0 f engine:tbox.obj - 0001:00175f60 ?FUndo@TUNH@@UAEHPAVDOCB@@@Z 00576f60 f engine:tbox.obj - 0001:00176020 ?MarkMem@TUNH@@UAEXXZ 00577020 f engine:tbox.obj - 0001:00176070 ?AssertValid@TUNH@@QAEXK@Z 00577070 f engine:tbox.obj - 0001:001760a0 ?PtundNew@TUND@@SGPAV1@PAVUNDB@@@Z 005770a0 f engine:tbox.obj - 0001:001761d0 ??0TUND@@IAE@XZ 005771d0 f engine:tbox.obj - 0001:00176210 ??1TUND@@UAE@XZ 00577210 f engine:tbox.obj - 0001:00176310 ?FDo@TUND@@UAEHPAVDOCB@@@Z 00577310 f engine:tbox.obj - 0001:001764e0 ?FUndo@TUND@@UAEHPAVDOCB@@@Z 005774e0 f engine:tbox.obj - 0001:001766b0 ?MarkMem@TUND@@UAEXXZ 005776b0 f engine:tbox.obj - 0001:00176720 ?AssertValid@TUND@@QAEXK@Z 00577720 f engine:tbox.obj - 0001:00176770 ?PtuncNew@TUNC@@SGPAV1@XZ 00577770 f engine:tbox.obj - 0001:001767d0 ??0TUNC@@IAE@XZ 005777d0 f engine:tbox.obj - 0001:00176810 ??1TUNC@@UAE@XZ 00577810 f engine:tbox.obj - 0001:00176870 ?FDo@TUNC@@UAEHPAVDOCB@@@Z 00577870 f engine:tbox.obj - 0001:00176a60 ?FUndo@TUNC@@UAEHPAVDOCB@@@Z 00577a60 f engine:tbox.obj - 0001:00176a90 ?MarkMem@TUNC@@UAEXXZ 00577a90 f engine:tbox.obj - 0001:00176ae0 ?AssertValid@TUNC@@QAEXK@Z 00577ae0 f engine:tbox.obj - 0001:00176b30 ??1TCLP@@UAE@XZ 00577b30 f engine:tbox.obj - 0001:00176b90 ?PtclpNew@TCLP@@SGPAV1@PAVTBOX@@@Z 00577b90 f engine:tbox.obj - 0001:00176c60 ?FPaste@TCLP@@QAEHPAVSCEN@@@Z 00577c60 f engine:tbox.obj - 0001:00176ed0 ?MarkMem@TCLP@@UAEXXZ 00577ed0 f engine:tbox.obj - 0001:00176f40 ?AssertValid@TCLP@@QAEXK@Z 00577f40 f engine:tbox.obj - 0001:00176ff0 ??0TBXB@@AAE@PAVTBOX@@PAUGCB@@@Z 00577ff0 f engine:tbox.obj - 0001:00177040 ?Pcmm@TBXG@@MAEPAUCMM@CMH@@XZ 00578040 f engine:tbox.obj - 0001:00177070 ??0TBXG@@AAE@PAVTXRD@@PAUGCB@@@Z 00578070 f engine:tbox.obj - 0001:001770c0 ?SetTbxb@TBXG@@QAEXPAVTBXB@@@Z 005780c0 f engine:tbox.obj - 0001:001770f0 ?Ptbxb@TBXG@@QAEPAVTBXB@@XZ 005780f0 f engine:tbox.obj - 0001:00177120 ??0TBOX@@AAE@XZ 00578120 f engine:tbox.obj - 0001:00177170 ?PddgNew@TBOX@@UAEPAVDDG@@PAUGCB@@@Z 00578170 f engine:tbox.obj - 0001:001771a0 ?ParClearUndo@TBOX@@QAEXXZ 005781a0 f engine:tbox.obj - 0001:001771d0 ?NfrmFirst@TBOX@@QAEJXZ 005781d0 f engine:tbox.obj - 0001:00177200 ?nfrmMax@TBOX@@QAEJXZ 00578200 f engine:tbox.obj - 0001:00177230 ??0TCLP@@IAE@XZ 00578230 f engine:tbox.obj - 0001:00177270 ??_GTBXB@@UAEPAXI@Z 00578270 f engine:tbox.obj - 0001:00177270 ??_ETBXB@@UAEPAXI@Z 00578270 f engine:tbox.obj - 0001:001772b0 ??_GTBXG@@EAEPAXI@Z 005782b0 f engine:tbox.obj - 0001:001772b0 ??_ETBXG@@EAEPAXI@Z 005782b0 f engine:tbox.obj - 0001:001772f0 ??_ETBOX@@UAEPAXI@Z 005782f0 f engine:tbox.obj - 0001:001772f0 ??_GTBOX@@UAEPAXI@Z 005782f0 f engine:tbox.obj - 0001:00177330 ??_GTCLP@@UAEPAXI@Z 00578330 f engine:tbox.obj - 0001:00177330 ??_ETCLP@@UAEPAXI@Z 00578330 f engine:tbox.obj - 0001:00177370 ??_GTUNT@@UAEPAXI@Z 00578370 f engine:tbox.obj - 0001:00177370 ??_ETUNT@@UAEPAXI@Z 00578370 f engine:tbox.obj - 0001:001773b0 ??_ETUNS@@UAEPAXI@Z 005783b0 f engine:tbox.obj - 0001:001773b0 ??_GTUNS@@UAEPAXI@Z 005783b0 f engine:tbox.obj - 0001:001773f0 ??_ETUNH@@UAEPAXI@Z 005783f0 f engine:tbox.obj - 0001:001773f0 ??_GTUNH@@UAEPAXI@Z 005783f0 f engine:tbox.obj - 0001:00177430 ??_ETUND@@UAEPAXI@Z 00578430 f engine:tbox.obj - 0001:00177430 ??_GTUND@@UAEPAXI@Z 00578430 f engine:tbox.obj - 0001:00177470 ??_ETUNC@@UAEPAXI@Z 00578470 f engine:tbox.obj - 0001:00177470 ??_GTUNC@@UAEPAXI@Z 00578470 f engine:tbox.obj - 0001:001774b0 ??1TBXB@@UAE@XZ 005784b0 f engine:tbox.obj - 0001:001774e0 ??1TBOX@@UAE@XZ 005784e0 f engine:tbox.obj - 0001:00177510 ?FSetSnd@ACTR@@QAEHPAUTAG@@HHHJJ@Z 00578510 f engine:actrsnd.obj - 0001:00177660 ?FSetSndCore@ACTR@@QAEHPAUTAG@@HHHJJ@Z 00578660 f engine:actrsnd.obj - 0001:00177a40 ?_FEnqueueSnd@ACTR@@IAEHJ@Z 00578a40 f engine:actrsnd.obj - 0001:00177c50 ?_FEnqueueSmmInMsq@ACTR@@IAEHXZ 00578c50 f engine:actrsnd.obj - 0001:00177ed0 ?_FInsertSmm@ACTR@@IAEHJ@Z 00578ed0 f engine:actrsnd.obj - 0001:00178020 ?_FRemoveAevMm@ACTR@@IAEHJ@Z 00579020 f engine:actrsnd.obj - 0001:00178140 ?_FAddAevDefMm@ACTR@@IAEHJ@Z 00579140 f engine:actrsnd.obj - 0001:001782c0 ?FSetVlmSnd@ACTR@@QAEHJHJ@Z 005792c0 f engine:actrsnd.obj - 0001:00178620 ?FQuerySnd@ACTR@@QAEHJHPAPAVGL@@PAJPAH@Z 00579620 f engine:actrsnd.obj - 0001:00178990 ?FDeleteSndCore@ACTR@@QAEHJH@Z 00579990 f engine:actrsnd.obj - 0001:00178c40 ?FSoundInFrm@ACTR@@QAEHXZ 00579c40 f engine:actrsnd.obj - 0001:00178ea0 ?FNoSound@MSND@@QAEJXZ 00579ea0 f engine:actrsnd.obj - 0001:00178f40 ?FWouldBe@SREC@@SGHJ@Z 00579f40 f engine:srec.obj - 0001:00178f80 ?FIs@SREC@@UAEHJ@Z 00579f80 f engine:srec.obj - 0001:00178fb0 ?Cls@SREC@@UAEJXZ 00579fb0 f engine:srec.obj - 0001:00178fe0 ?PsrecNew@SREC@@SGPAV1@JJJK@Z 00579fe0 f engine:srec.obj - 0001:001790f0 ?_FInit@SREC@@IAEHJJJK@Z 0057a0f0 f engine:srec.obj - 0001:001792e0 ??1SREC@@UAE@XZ 0057a2e0 f engine:srec.obj - 0001:00179410 ?_FOpenRecord@SREC@@IAEHXZ 0057a410 f engine:srec.obj - 0001:00179550 ?_FCloseRecord@SREC@@IAEHXZ 0057a550 f engine:srec.obj - 0001:001795f0 ?_UpdateStatus@SREC@@IAEXXZ 0057a5f0 f engine:srec.obj - 0001:00179810 ?_WaveInProc@SREC@@KGXPAXIKKK@Z 0057a810 f engine:srec.obj - 0001:00179870 ?FStart@SREC@@QAEHXZ 0057a870 f engine:srec.obj - 0001:00179960 ?FStop@SREC@@QAEHXZ 0057a960 f engine:srec.obj - 0001:00179a40 ?FPlay@SREC@@QAEHXZ 0057aa40 f engine:srec.obj - 0001:00179b80 ?FRecording@SREC@@QAEHXZ 0057ab80 f engine:srec.obj - 0001:00179be0 ?FPlaying@SREC@@QAEHXZ 0057abe0 f engine:srec.obj - 0001:00179c40 ?FSave@SREC@@QAEHPAVFNI@@@Z 0057ac40 f engine:srec.obj - 0001:00179d50 ?AssertValid@SREC@@QAEXK@Z 0057ad50 f engine:srec.obj - 0001:00179df0 ?MarkMem@SREC@@UAEXXZ 0057adf0 f engine:srec.obj - 0001:00179e70 ??0SREC@@QAE@XZ 0057ae70 f engine:srec.obj - 0001:00179eb0 ??_GSREC@@UAEPAXI@Z 0057aeb0 f engine:srec.obj - 0001:00179eb0 ??_ESREC@@UAEPAXI@Z 0057aeb0 f engine:srec.obj - 0001:0017a000 ?Set@RIFF@@QAEXJJJK@Z 0057b000 f engine:srec.obj - 0001:0017a0d0 ?PwfxGet@RIFF@@QAEPAUtWAVEFORMATEX@@XZ 0057b0d0 f engine:srec.obj - 0001:0017a100 ?Cb@RIFF@@QAEKXZ 0057b100 f engine:srec.obj - 0001:0017a180 ?FWouldBe@TAGL@@SGHJ@Z 0057b180 f engine:tagl.obj - 0001:0017a1c0 ?FIs@TAGL@@UAEHJ@Z 0057b1c0 f engine:tagl.obj - 0001:0017a1f0 ?Cls@TAGL@@UAEJXZ 0057b1f0 f engine:tagl.obj - 0001:0017a220 ?PtaglNew@TAGL@@SGPAV1@XZ 0057b220 f engine:tagl.obj - 0001:0017a320 ?_FInit@TAGL@@IAEHXZ 0057b320 f engine:tagl.obj - 0001:0017a390 ??1TAGL@@UAE@XZ 0057b390 f engine:tagl.obj - 0001:0017a420 ?Ctag@TAGL@@QAEJXZ 0057b420 f engine:tagl.obj - 0001:0017a470 ?GetTag@TAGL@@QAEXJPAUTAG@@@Z 0057b470 f engine:tagl.obj - 0001:0017a510 ?_FFindTag@TAGL@@IAEHPAUTAG@@PAJ@Z 0057b510 f engine:tagl.obj - 0001:0017a6d0 ?FInsertTag@TAGL@@QAEHPAUTAG@@H@Z 0057b6d0 f engine:tagl.obj - 0001:0017a7e0 ?FInsertChild@TAGL@@QAEHPAUTAG@@KK@Z 0057b7e0 f engine:tagl.obj - 0001:0017a9e0 ?FCacheTags@TAGL@@QAEHXZ 0057b9e0 f engine:tagl.obj - 0001:0017ab30 ?AssertValid@TAGL@@QAEXK@Z 0057bb30 f engine:tagl.obj - 0001:0017abc0 ?MarkMem@TAGL@@UAEXXZ 0057bbc0 f engine:tagl.obj - 0001:0017ac50 ??0TAGL@@QAE@XZ 0057bc50 f engine:tagl.obj - 0001:0017ac90 ??_ETAGL@@UAEPAXI@Z 0057bc90 f engine:tagl.obj - 0001:0017ac90 ??_GTAGL@@UAEPAXI@Z 0057bc90 f engine:tagl.obj - 0001:0017ae30 ?FWrite@ACTR@@QAEHPAVCFL@@KK@Z 0057be30 f engine:actrsave.obj - 0001:0017b410 ?PactrRead@ACTR@@SGPAV1@PAVCRF@@K@Z 0057c410 f engine:actrsave.obj - 0001:0017b750 ?_FReadActf@@YGHPAVBLCK@@PAUACTF@@@Z 0057c750 f engine:actrsave.obj - 0001:0017b8f0 ?_FReadActor@ACTR@@IAEHPAVCFL@@K@Z 0057c8f0 f engine:actrsave.obj - 0001:0017bb40 ?FAdjustAridOnFile@ACTR@@SGHPAVCFL@@KJ@Z 0057cb40 f engine:actrsave.obj - 0001:0017bca0 ?_FReadRoute@ACTR@@IAEHPAVCFL@@K@Z 0057cca0 f engine:actrsave.obj - 0001:0017be10 ?_FReadEvents@ACTR@@IAEHPAVCFL@@K@Z 0057ce10 f engine:actrsave.obj - 0001:0017bf60 ?_SwapBytesPggaev@ACTR@@KGXPAVGG@@@Z 0057cf60 f engine:actrsave.obj - 0001:0017c200 ?_FOpenTags@ACTR@@IAEHPAVCRF@@@Z 0057d200 f engine:actrsave.obj - 0001:0017c3b0 ?_CloseTags@ACTR@@IAEXXZ 0057d3b0 f engine:actrsave.obj - 0001:0017c480 ?PgltagFetch@ACTR@@SGPAVGL@@PAVCFL@@KPAH@Z 0057d480 f engine:actrsave.obj - 0001:0017c8b0 ?_FIsIaevTag@ACTR@@KGHPAVGG@@JPAPAUTAG@@PAPAUAEV@@@Z 0057d8b0 f engine:actrsave.obj - 0001:0017cbf0 ?FWouldBe@MODL@@SGHJ@Z 0057dbf0 f engine:modl.obj - 0001:0017cc30 ?FIs@MODL@@UAEHJ@Z 0057dc30 f engine:modl.obj - 0001:0017cc60 ?Cls@MODL@@UAEJXZ 0057dc60 f engine:modl.obj - 0001:0017cc90 ?FReadModl@MODL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0057dc90 f engine:modl.obj - 0001:0017cf10 ?_FInit@MODL@@IAEHPAVBLCK@@@Z 0057df10 f engine:modl.obj - 0001:0017d460 ?PmodlFromBmdl@MODL@@SGPAV1@PAUbr_model@@@Z 0057e460 f engine:modl.obj - 0001:0017d4f0 ??1MODL@@UAE@XZ 0057e4f0 f engine:modl.obj - 0001:0017d580 ?AssertValid@MODL@@QAEXK@Z 0057e580 f engine:modl.obj - 0001:0017d600 ?MarkMem@MODL@@UAEXXZ 0057e600 f engine:modl.obj - 0001:0017d670 ??_EMODL@@UAEPAXI@Z 0057e670 f engine:modl.obj - 0001:0017d670 ??_GMODL@@UAEPAXI@Z 0057e670 f engine:modl.obj - 0001:0017d7c0 ??0MODL@@IAE@XZ 0057e7c0 f engine:modl.obj - 0001:0017d850 ?FWouldBe@TDF@@SGHJ@Z 0057e850 f engine:tdf.obj - 0001:0017d890 ?FIs@TDF@@UAEHJ@Z 0057e890 f engine:tdf.obj - 0001:0017d8c0 ?Cls@TDF@@UAEJXZ 0057e8c0 f engine:tdf.obj - 0001:0017d8f0 ?FReadTdf@TDF@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0057e8f0 f engine:tdf.obj - 0001:0017db60 ?_FInit@TDF@@IAEHPAVBLCK@@@Z 0057eb60 f engine:tdf.obj - 0001:0017de60 ??1TDF@@UAE@XZ 0057ee60 f engine:tdf.obj - 0001:0017dee0 ?PmodlFetch@TDF@@QAEPAVMODL@@K@Z 0057eee0 f engine:tdf.obj - 0001:0017e020 ?DxrChar@TDF@@QAEJJ@Z 0057f020 f engine:tdf.obj - 0001:0017e090 ?DyrChar@TDF@@QAEJJ@Z 0057f090 f engine:tdf.obj - 0001:0017e100 ?AssertValid@TDF@@QAEXK@Z 0057f100 f engine:tdf.obj - 0001:0017e190 ?MarkMem@TDF@@UAEXXZ 0057f190 f engine:tdf.obj - 0001:0017e220 ??_GTDF@@UAEPAXI@Z 0057f220 f engine:tdf.obj - 0001:0017e220 ??_ETDF@@UAEPAXI@Z 0057f220 f engine:tdf.obj - 0001:0017e370 ??0TDF@@IAE@XZ 0057f370 f engine:tdf.obj - 0001:0017e3fc __chkstk 0057f3fc LIBC:chkstk.obj - 0001:0017e3fc __alloca_probe 0057f3fc LIBC:chkstk.obj - 0001:0017e42c __global_unwind2 0057f42c f LIBC:exsup.obj - 0001:0017e46e __local_unwind2 0057f46e f LIBC:exsup.obj - 0001:0017e4c8 __abnormal_termination 0057f4c8 f LIBC:exsup.obj - 0001:0017e4f4 __except_handler3 0057f4f4 f LIBC:exsup3.obj - 0001:0017e5a2 __seh_longjmp_unwind@4 0057f5a2 f LIBC:exsup3.obj - 0001:0017e5bd __onexit 0057f5bd f LIBC:onexit.obj - 0001:0017e633 _atexit 0057f633 f LIBC:onexit.obj - 0001:0017e645 ___onexitinit 0057f645 f LIBC:onexit.obj - 0001:0017e67b __purecall 0057f67b f LIBC:purevirt.obj - 0001:0017e688 _memcmp 0057f688 f LIBC:memcmp.obj - 0001:0017e6a7 ??2@YAPAXI@Z 0057f6a7 f LIBC:new.obj - 0001:0017e6b6 ??3@YAXPAX@Z 0057f6b6 f LIBC:delete.obj - 0001:0017e6c4 __ftol 0057f6c4 f LIBC:ftol.obj - 0001:0017e6ec _fdiv_main_routine 0057f6ec f LIBC:adj_fdiv.obj - 0001:0017e803 __adj_fdiv_r 0057f803 f LIBC:adj_fdiv.obj - 0001:0017eca2 _fdivp_sti_st 0057fca2 f LIBC:adj_fdiv.obj - 0001:0017ecb5 _fdivrp_sti_st 0057fcb5 f LIBC:adj_fdiv.obj - 0001:0017ecc8 __adj_fdiv_m32 0057fcc8 f LIBC:adj_fdiv.obj - 0001:0017ed14 __adj_fdiv_m64 0057fd14 f LIBC:adj_fdiv.obj - 0001:0017ed60 __adj_fdiv_m16i 0057fd60 f LIBC:adj_fdiv.obj - 0001:0017ed94 __adj_fdiv_m32i 0057fd94 f LIBC:adj_fdiv.obj - 0001:0017edc8 __adj_fdivr_m32 0057fdc8 f LIBC:adj_fdiv.obj - 0001:0017ee14 __adj_fdivr_m64 0057fe14 f LIBC:adj_fdiv.obj - 0001:0017ee60 __adj_fdivr_m16i 0057fe60 f LIBC:adj_fdiv.obj - 0001:0017ee94 __adj_fdivr_m32i 0057fe94 f LIBC:adj_fdiv.obj - 0001:0017eec8 __safe_fdiv 0057fec8 f LIBC:adj_fdiv.obj - 0001:0017eedd __safe_fdivr 0057fedd f LIBC:adj_fdiv.obj - 0001:0017eef2 __fprem_common 0057fef2 f LIBC:adj_fdiv.obj - 0001:0017f0f8 __adj_fprem 005800f8 f LIBC:adj_fdiv.obj - 0001:0017f1aa __fprem1_common 005801aa f LIBC:adj_fdiv.obj - 0001:0017f3b0 __adj_fprem1 005803b0 f LIBC:adj_fdiv.obj - 0001:0017f465 __safe_fprem 00580465 f LIBC:adj_fdiv.obj - 0001:0017f46b __safe_fprem1 0058046b f LIBC:adj_fdiv.obj - 0001:0017f471 __adj_fpatan 00580471 f LIBC:adj_fdiv.obj - 0001:0017f474 __adj_fptan 00580474 f LIBC:adj_fdiv.obj - 0001:0017f477 __fpmath 00580477 f LIBC:fpinit.obj - 0001:0017f48b __fpclear 0058048b f LIBC:fpinit.obj - 0001:0017f48c __cfltcvt_init 0058048c f LIBC:fpinit.obj - 0001:0017f4c4 _WinMainCRTStartup 005804c4 f LIBC:wincrt0.obj - 0001:0017f62a __amsg_exit 0058062a f LIBC:wincrt0.obj - 0001:0017f65c _memcpy 0058065c f LIBC:memcpy.obj - 0001:0017f7ac _memset 005807ac f LIBC:memset.obj - 0001:0017f7ee ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 005807ee f LIBC:trnsctrl.obj - 0001:0017f814 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 00580814 f LIBC:trnsctrl.obj - 0001:0017f849 ?_CallMemberFunction0@@YGXPAX0@Z 00580849 f LIBC:trnsctrl.obj - 0001:0017f850 ?_CallMemberFunction1@@YGXPAX00@Z 00580850 f LIBC:trnsctrl.obj - 0001:0017f857 ?_CallMemberFunction2@@YGXPAX00H@Z 00580857 f LIBC:trnsctrl.obj - 0001:0017f85e ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 0058085e f LIBC:trnsctrl.obj - 0001:0017f8ac ___CxxFrameHandler 005808ac f LIBC:trnsctrl.obj - 0001:0017f8e3 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 005808e3 f LIBC:trnsctrl.obj - 0001:0017f95b ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 0058095b f LIBC:trnsctrl.obj - 0001:0017fa90 _strcat 00580a90 f LIBC:strcat.obj - 0001:0017fa94 _strcpy 00580a94 LIBC:strcat.obj - 0001:0017fb21 _fclose 00580b21 f LIBC:fclose.obj - 0001:0017fb7d _fputs 00580b7d f LIBC:fputs.obj - 0001:0017fbcf __fsopen 00580bcf f LIBC:fopen.obj - 0001:0017fbf2 _fopen 00580bf2 f LIBC:fopen.obj - 0001:0017fc05 _abs 00580c05 f LIBC:abs.obj - 0001:0017fc10 _pow 00580c10 LIBC:87ctran.obj - 0001:0017fc1a _log 00580c1a LIBC:87ctran.obj - 0001:0017fc24 _log10 00580c24 LIBC:87ctran.obj - 0001:0017fc2b _exp 00580c2b LIBC:87ctran.obj - 0001:0017fc32 __CIpow 00580c32 LIBC:87ctran.obj - 0001:0017fc3c __CIlog 00580c3c LIBC:87ctran.obj - 0001:0017fc46 __CIlog10 00580c46 LIBC:87ctran.obj - 0001:0017fc4d __CIexp 00580c4d LIBC:87ctran.obj - 0001:0017fc54 __lrotl 00580c54 f LIBC:rotl.obj - 0001:0017fc65 __rotl 00580c65 f LIBC:rotl.obj - 0001:0017fc90 _memmove 00580c90 f LIBC:memmove.obj - 0001:0017fdde _sprintf 00580dde f LIBC:sprintf.obj - 0001:0017fe37 _vsprintf 00580e37 f LIBC:vsprintf.obj - 0001:0017fe90 _strlen 00580e90 f LIBC:strlen.obj - 0001:0017fee0 _strcmp 00580ee0 f LIBC:strcmp.obj - 0001:0017ff64 _sqrt 00580f64 LIBC:87csqrt.obj - 0001:0017ff6e __CIsqrt 00580f6e LIBC:87csqrt.obj - 0001:0017ff78 _fabs 00580f78 f LIBC:fabs.obj - 0001:00180022 __cinit 00581022 f LIBC:crt0dat.obj - 0001:00180052 _exit 00581052 f LIBC:crt0dat.obj - 0001:00180063 __exit 00581063 f LIBC:crt0dat.obj - 0001:00180113 _realloc 00581113 f LIBC:realloc.obj - 0001:00180265 __msize 00581265 f LIBC:msize.obj - 0001:00180276 _malloc 00581276 f LIBC:malloc.obj - 0001:00180289 __nh_malloc 00581289 f LIBC:malloc.obj - 0001:00180348 __heap_split_block 00581348 f LIBC:malloc.obj - 0001:0018038d _free 0058138d f LIBC:free.obj - 0001:001803f5 __setdefaultprecision 005813f5 f LIBC:fp8.obj - 0001:00180408 _ms_p5_test_fdiv 00581408 f LIBC:testfdiv.obj - 0001:0018044e _ms_p5_mp_test_fdiv 0058144e f LIBC:testfdiv.obj - 0001:00180521 __forcdecpt 00581521 f LIBC:cvt.obj - 0001:00180586 __cropzeros 00581586 f LIBC:cvt.obj - 0001:001805e5 __positive 005815e5 f LIBC:cvt.obj - 0001:001805fa __fassign 005815fa f LIBC:cvt.obj - 0001:0018063d __cftoe 0058163d f LIBC:cvt.obj - 0001:00180790 __cftof 00581790 f LIBC:cvt.obj - 0001:001808ac __cftog 005818ac f LIBC:cvt.obj - 0001:00180954 __cfltcvt 00581954 f LIBC:cvt.obj - 0001:001809d0 __XcptFilter 005819d0 f LIBC:winxfltr.obj - 0001:00180b5b __ismbblead 00581b5b f LIBC:ismbbyte.obj - 0001:00180b9e __setenvp 00581b9e f LIBC:stdenvp.obj - 0001:00180c69 __setargv 00581c69 f LIBC:stdargv.obj - 0001:00180f67 __setmbcp 00581f67 f LIBC:mbctype.obj - 0001:001810f5 ___initmbctable 005820f5 f LIBC:mbctype.obj - 0001:00181100 __ioinit 00582100 f LIBC:ioinit.obj - 0001:001811ee __heap_init 005821ee f LIBC:heapinit.obj - 0001:0018126b ___getempty 0058226b f LIBC:heapinit.obj - 0001:00181290 __NMSG_WRITE 00582290 f LIBC:crt0msg.obj - 0001:001812e8 __GET_RTERRMSG 005822e8 f LIBC:crt0msg.obj - 0001:0018131d ___InternalCxxFrameHandler 0058231d f LIBC:frame.obj - 0001:00181790 ___FrameUnwindToState 00582790 f LIBC:frame.obj - 0001:00181c8f ?terminate@@YAXXZ 00582c8f f LIBC:hooks.obj - 0001:00181d01 ?_inconsistency@@YAXXZ 00582d01 f LIBC:hooks.obj - 0001:00181d73 __close 00582d73 f LIBC:close.obj - 0001:00181e09 __freebuf 00582e09 f LIBC:_freebuf.obj - 0001:00181e41 _fflush 00582e41 f LIBC:fflush.obj - 0001:00181e8d __flush 00582e8d f LIBC:fflush.obj - 0001:00181eef __flushall 00582eef f LIBC:fflush.obj - 0001:00181f64 ___endstdio 00582f64 f LIBC:fflush.obj - 0001:00181f78 __stbuf 00582f78 f LIBC:_sftbuf.obj - 0001:00181ff9 __ftbuf 00582ff9 f LIBC:_sftbuf.obj - 0001:0018203f _fwrite 0058303f f LIBC:fwrite.obj - 0001:00182194 __openfile 00583194 f LIBC:_open.obj - 0001:0018232f __getstream 0058332f f LIBC:stream.obj - 0001:0018237d __fFEXP 0058337d LIBC:87tran.obj - 0001:001823e4 __rtinfpopse 005833e4 LIBC:87tran.obj - 0001:001823e6 __rtinfnpopse 005833e6 LIBC:87tran.obj - 0001:001823f6 __fFLN 005833f6 LIBC:87tran.obj - 0001:001824ab __rtinfpop 005834ab LIBC:87tran.obj - 0001:001824ad __rtinfnpop 005834ad LIBC:87tran.obj - 0001:001824ca __ffexpm1 005834ca LIBC:87tran.obj - 0001:00182574 __cintrindisp2 00583574 f LIBC:87cdisp.obj - 0001:001825b2 __cintrindisp1 005835b2 f LIBC:87cdisp.obj - 0001:001825e8 __ctrandisp2 005835e8 f LIBC:87cdisp.obj - 0001:00182759 __ctrandisp1 00583759 f LIBC:87cdisp.obj - 0001:00182785 __fload 00583785 f LIBC:87cdisp.obj - 0001:001827c1 __flsbuf 005837c1 f LIBC:_flsbuf.obj - 0001:001828cd __output 005838cd f LIBC:output.obj - 0001:0018320f __handle_qnan1 0058420f f LIBC:fpexcept.obj - 0001:0018325c __except1 0058425c f LIBC:fpexcept.obj - 0001:001832f3 __raise_exc 005842f3 f LIBC:fpexcept.obj - 0001:00183605 __handle_exc 00584605 f LIBC:fpexcept.obj - 0001:0018385d __umatherr 0058485d f LIBC:fpexcept.obj - 0001:001838f1 __set_errno 005848f1 f LIBC:fpexcept.obj - 0001:00183944 __errcode 00584944 f LIBC:fpexcept.obj - 0001:0018397a __statfp 0058497a f LIBC:fpctrl.obj - 0001:0018398b __clrfp 0058498b f LIBC:fpctrl.obj - 0001:0018399d __ctrlfp 0058499d f LIBC:fpctrl.obj - 0001:001839cd __set_statfp 005849cd f LIBC:fpctrl.obj - 0001:00183a27 __set_exp 00584a27 f LIBC:util.obj - 0001:00183a5c __sptype 00584a5c f LIBC:util.obj - 0001:00183ac1 __decomp 00584ac1 f LIBC:util.obj - 0001:00183b8f __heap_abort 00584b8f f LIBC:hpabort.obj - 0001:00183b9a __heap_grow 00584b9a f LIBC:heapgrow.obj - 0001:00183c83 __heap_grow_region 00584c83 f LIBC:heapgrow.obj - 0001:00183d30 __heap_free_region 00584d30 f LIBC:heapgrow.obj - 0001:00183d6a __heap_search 00584d6a f LIBC:heapsrch.obj - 0001:00183e5a __control87 00584e5a f LIBC:ieee87.obj - 0001:00183e95 __controlfp 00584e95 f LIBC:ieee87.obj - 0001:00183fcc __fptrap 00584fcc f LIBC:crt0fp.obj - 0001:00183fd7 __isctype 00584fd7 f LIBC:isctype.obj - 0001:00184052 _tolower 00585052 f LIBC:tolower.obj - 0001:0018411e __ZeroTail 0058511e f LIBC:intrncvt.obj - 0001:0018417e __IncMan 0058517e f LIBC:intrncvt.obj - 0001:001841df __RoundMan 005851df f LIBC:intrncvt.obj - 0001:0018427c __CopyMan 0058527c f LIBC:intrncvt.obj - 0001:00184299 __FillZeroMan 00585299 f LIBC:intrncvt.obj - 0001:001842a5 __IsZeroMan 005852a5 f LIBC:intrncvt.obj - 0001:001842c3 __ShrMan 005852c3 f LIBC:intrncvt.obj - 0001:0018436e __ld12cvt 0058536e f LIBC:intrncvt.obj - 0001:0018450a __ld12tod 0058550a f LIBC:intrncvt.obj - 0001:00184520 __ld12tof 00585520 f LIBC:intrncvt.obj - 0001:00184536 __atodbl 00585536 f LIBC:intrncvt.obj - 0001:00184567 __atoflt 00585567 f LIBC:intrncvt.obj - 0001:00184598 __fptostr 00585598 f LIBC:_fptostr.obj - 0001:00184616 __fltout 00585616 f LIBC:cfout.obj - 0001:00184679 ___dtold 00585679 f LIBC:cfout.obj - 0001:00184743 ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 00585743 f LIBC:unhandld.obj - 0001:0018479c ?_ValidateRead@@YAHPBXI@Z 0058579c f LIBC:validate.obj - 0001:001847ba ?_ValidateWrite@@YAHPAXI@Z 005857ba f LIBC:validate.obj - 0001:001847d8 ?_ValidateExecute@@YAHP6GHXZ@Z 005857d8 f LIBC:validate.obj - 0001:001847f2 _abort 005857f2 f LIBC:abort.obj - 0001:00184811 __dosmaperr 00585811 f LIBC:dosmap.obj - 0001:0018487a __alloc_osfhnd 0058587a f LIBC:osfinfo.obj - 0001:001848b0 __set_osfhnd 005858b0 f LIBC:osfinfo.obj - 0001:0018491a __free_osfhnd 0058591a f LIBC:osfinfo.obj - 0001:00184987 __get_osfhandle 00585987 f LIBC:osfinfo.obj - 0001:001849bf __commit 005859bf f LIBC:commit.obj - 0001:00184a0c __write 00585a0c f LIBC:write.obj - 0001:00184ba5 __fcloseall 00585ba5 f LIBC:closeall.obj - 0001:00184bd6 __isatty 00585bd6 f LIBC:isatty.obj - 0001:00184bf0 __sopen 00585bf0 f LIBC:open.obj - 0001:00184f38 __trandisp1 00585f38 f LIBC:87disp.obj - 0001:00184f9f __trandisp2 00585f9f f LIBC:87disp.obj - 0001:0018502b __rttospopde 0058602b LIBC:87disp.obj - 0001:00185030 __rttospop 00586030 LIBC:87disp.obj - 0001:00185032 __rtnospop 00586032 LIBC:87disp.obj - 0001:00185034 __rttosnpop 00586034 LIBC:87disp.obj - 0001:00185035 __rtnospopde 00586035 LIBC:87disp.obj - 0001:0018503c __rtzeropop 0058603c LIBC:87disp.obj - 0001:0018503e __rtzeronpop 0058603e LIBC:87disp.obj - 0001:00185043 __rtonepop 00586043 LIBC:87disp.obj - 0001:00185045 __rtonenpop 00586045 LIBC:87disp.obj - 0001:0018504a __tosnan1 0058604a LIBC:87disp.obj - 0001:00185075 __nosnan2 00586075 LIBC:87disp.obj - 0001:00185077 __tosnan2 00586077 LIBC:87disp.obj - 0001:0018509f __nan2 0058609f LIBC:87disp.obj - 0001:001850de __rtindfpop 005860de LIBC:87disp.obj - 0001:001850e0 __rtindfnpop 005860e0 LIBC:87disp.obj - 0001:001850f1 __rttosnpopde 005860f1 LIBC:87disp.obj - 0001:001850fb __rtchsifneg 005860fb LIBC:87disp.obj - 0001:00185102 __powhlp 00586102 f LIBC:powhlp.obj - 0001:001852ef __d_inttype 005862ef f LIBC:powhlp.obj - 0001:00185341 __87except 00586341 f LIBC:87except.obj - 0001:0018544b __lseek 0058644b f LIBC:lseek.obj - 0001:001854c0 __getbuf 005864c0 f LIBC:_getbuf.obj - 0001:0018550b _wctomb 0058650b f LIBC:wctomb.obj - 0001:00185584 __aulldiv 00586584 f LIBC:ulldiv.obj - 0001:001855e4 __aullrem 005865e4 f LIBC:ullrem.obj - 0001:0018564e __matherr 0058664e f LIBC:matherr.obj - 0001:00185651 __heap_addblock 00586651 f LIBC:heapadd.obj - 0001:00185908 ___crtGetStringTypeA 00586908 f LIBC:aw_str.obj - 0001:00185a7f ___crtLCMapStringA 00586a7f f LIBC:aw_map.obj - 0001:00185cde ___addl 00586cde f LIBC:mantold.obj - 0001:00185d01 ___add_12 00586d01 f LIBC:mantold.obj - 0001:00185d5f ___shl_12 00586d5f f LIBC:mantold.obj - 0001:00185d9d ___shr_12 00586d9d f LIBC:mantold.obj - 0001:00185dd0 ___mtold12 00586dd0 f LIBC:mantold.obj - 0001:00185eb4 ___strgtold12 00586eb4 f LIBC:strgtold.obj - 0001:001864f3 _$I10_OUTPUT 005874f3 f LIBC:x10fout.obj - 0001:00186829 _raise 00587829 f LIBC:winsig.obj - 0001:001869ae __chsize 005879ae f LIBC:chsize.obj - 0001:00186ae2 __read 00587ae2 f LIBC:read.obj - 0001:00186cdc __frnd 00587cdc f LIBC:frnd.obj - 0001:00186cf1 __heap_findaddr 00587cf1 f LIBC:findaddr.obj - 0001:00186d5b _calloc 00587d5b f LIBC:calloc.obj - 0001:00186d95 ___set_invalid_mb_chars 00587d95 f LIBC:setmbval.obj - 0001:00186dc4 _strncpy 00587dc4 f LIBC:strncpy.obj - 0001:00186de8 ___ld12mul 00587de8 f LIBC:tenpow.obj - 0001:00187028 ___multtenpow12 00588028 f LIBC:tenpow.obj - 0001:0018709d __setmode 0058809d f LIBC:setmode.obj - 0001:00187118 _RtlUnwind@16 00588118 kernel32:KERNEL32.dll - 0001:0018711e _waveInGetNumDevs@0 0058811e winmm:WINMM.dll - 0001:00187124 _waveInAddBuffer@12 00588124 winmm:WINMM.dll - 0001:0018712a _waveInClose@4 0058812a winmm:WINMM.dll - 0001:00187130 _waveInPrepareHeader@12 00588130 winmm:WINMM.dll - 0001:00187136 _waveInOpen@24 00588136 winmm:WINMM.dll - 0001:0018713c _waveInUnprepareHeader@12 0058813c winmm:WINMM.dll - 0001:00187142 _waveInReset@4 00588142 winmm:WINMM.dll - 0001:00187148 _waveInStart@4 00588148 winmm:WINMM.dll - 0001:0018714e _waveInStop@4 0058814e winmm:WINMM.dll - 0001:00187154 _acmMetrics@12 00588154 f audiod:MSACM32.dll - 0001:00187180 _BrStdioOpenRead 00588180 f bren:stdfile.obj - 0001:00187660 _BrStdioPutLine 00588660 f bren:stdfile.obj - 0001:00187800 ?FWouldBe@TMAP@@SGHJ@Z 00588800 f bren:tmap.obj - 0001:00187840 ?FIs@TMAP@@UAEHJ@Z 00588840 f bren:tmap.obj - 0001:00187870 ?Cls@TMAP@@UAEJXZ 00588870 f bren:tmap.obj - 0001:001878a0 ?FReadTmap@TMAP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 005888a0 f bren:tmap.obj - 0001:00187a80 ?PtmapRead@TMAP@@SGPAV1@PAVCFL@@KK@Z 00588a80 f bren:tmap.obj - 0001:00187cf0 ??1TMAP@@UAE@XZ 00588cf0 f bren:tmap.obj - 0001:00187d50 ?FWrite@TMAP@@UAEHPAVBLCK@@@Z 00588d50 f bren:tmap.obj - 0001:00187e40 ?AssertValid@TMAP@@QAEXK@Z 00588e40 f bren:tmap.obj - 0001:00187ea0 ?MarkMem@TMAP@@UAEXXZ 00588ea0 f bren:tmap.obj - 0001:00187f30 ??_GTMAP@@UAEPAXI@Z 00588f30 f bren:tmap.obj - 0001:00187f30 ??_ETMAP@@UAEPAXI@Z 00588f30 f bren:tmap.obj - 0001:00188080 ??0TMAP@@IAE@XZ 00589080 f bren:tmap.obj - 0001:001880c0 ?CbOnFile@TMAP@@UAEJXZ 005890c0 f bren:tmap.obj - 0001:00188100 _BrOnScreenCheck 00589100 brfwmxr:onscreen.obj - 0001:00189ae0 FopRead_BOUNDS_ 0058aae0 brfwmxr:fileops.obj - 0001:00189cec _BrModelLoadMany 0058acec brfwmxr:fileops.obj - 0001:00189eef _BrModelSaveMany 0058aeef brfwmxr:fileops.obj - 0001:00189f66 _BrActorLoadMany 0058af66 brfwmxr:fileops.obj - 0001:0018a0de _BrActorSaveMany 0058b0de brfwmxr:fileops.obj - 0001:0018a146 _BrMaterialLoadMany 0058b146 brfwmxr:fileops.obj - 0001:0018a22d _BrMaterialSaveMany 0058b22d brfwmxr:fileops.obj - 0001:0018a2a4 _BrPixelmapLoadMany 0058b2a4 brfwmxr:fileops.obj - 0001:0018a354 _BrPixelmapSaveMany 0058b354 brfwmxr:fileops.obj - 0001:0018a3e7 _BrModelLoad 0058b3e7 brfwmxr:fileops.obj - 0001:0018a413 _BrModelSave 0058b413 brfwmxr:fileops.obj - 0001:0018a42e _BrMaterialLoad 0058b42e brfwmxr:fileops.obj - 0001:0018a45a _BrMaterialSave 0058b45a brfwmxr:fileops.obj - 0001:0018a475 _BrPixelmapLoad 0058b475 brfwmxr:fileops.obj - 0001:0018a4a1 _BrPixelmapSave 0058b4a1 brfwmxr:fileops.obj - 0001:0018a4bc _BrActorLoad 0058b4bc brfwmxr:fileops.obj - 0001:0018a4e8 _BrActorSave 0058b4e8 brfwmxr:fileops.obj - 0001:0018a510 _BrSceneModelLight 0058b510 brfwmxr:prelight.obj - 0001:0018a660 DfPush_ 0058b660 brfwmxr:datafile.obj - 0001:0018a6b8 DfPop_ 0058b6b8 brfwmxr:datafile.obj - 0001:0018a748 DfTop_ 0058b748 brfwmxr:datafile.obj - 0001:0018a7e0 DfTopType_ 0058b7e0 brfwmxr:datafile.obj - 0001:0018bb91 DfStructWriteArray_ 0058cb91 brfwmxr:datafile.obj - 0001:0018bbdd DfStructReadArray_ 0058cbdd brfwmxr:datafile.obj - 0001:0018bf07 DfCountSizeText_ 0058cf07 brfwmxr:datafile.obj - 0001:0018c54d DfChunksInterpret_ 0058d54d brfwmxr:datafile.obj - 0001:0018c66f DfOpen_ 0058d66f brfwmxr:datafile.obj - 0001:0018c723 DfClose_ 0058d723 brfwmxr:datafile.obj - 0001:0018c79f _BrWriteModeSet 0058d79f brfwmxr:datafile.obj - 0001:0018c7c0 _BrSwap32 0058d7c0 brfwmxr:bswap.obj - 0001:0018c7f8 _BrSwap16 0058d7f8 brfwmxr:bswap.obj - 0001:0018c820 _BrSwapFloat 0058d820 brfwmxr:bswap.obj - 0001:0018c878 _BrSwapBlock 0058d878 brfwmxr:bswap.obj - 0001:0018ca53 _freopen 0058da53 f LIBC:freopen.obj - 0001:0018ca89 _fread 0058da89 f LIBC:fread.obj - 0001:0018cbc0 _getenv 0058dbc0 f LIBC:getenv.obj - 0001:0018cc4c _strchr 0058dc4c f LIBC:strchr.obj - 0001:0018cc71 __filbuf 0058dc71 f LIBC:_filbuf.obj - 0001:0018cd34 _fgets 0058dd34 f LIBC:fgets.obj - 0001:0018cd8f _fseek 0058dd8f f LIBC:fseek.obj - 0001:0018d04d _strtol 0058e04d f LIBC:strtol.obj - 0001:0018d064 _strtoul 0058e064 f LIBC:strtol.obj - 0001:0018d07b _atof 0058e07b f LIBC:atof.obj - 0001:0018d0d7 __mbsnbicoll 0058e0d7 f LIBC:mbsnbico.obj - 0001:0018d2a5 ___wtomb_environ 0058e2a5 f LIBC:wtombenv.obj - 0001:0018d324 _ftell 0058e324 f LIBC:ftell.obj - 0001:0018d45c _toupper 0058e45c f LIBC:toupper.obj - 0001:0018d528 __fltin 0058e528 f LIBC:cfin.obj - 0001:0018d5c9 ___set_fcntrlcomp 0058e5c9 f LIBC:setfcntr.obj - 0001:0018d62f ___crtCompareStringA 0058e62f f LIBC:aw_cmp.obj - 0001:0018d8ff ___crtsetenv 0058e8ff f LIBC:setenv.obj - 0001:0018dbc9 __mbschr 0058ebc9 f LIBC:mbschr.obj - 0001:0018dc4c __strdup 0058ec4c f LIBC:strdup.obj - 0002:00000118 ?vptagm@@3PAVTAGM@@A 0058f118 utest.obj - 0002:00000120 ?vapp@@3VAPP@@A 0058f120 utest.obj - 0002:00001034 ?csampSec@@3JA 00590034 esl.obj - 0002:00001230 ?vcodmUtil@@3VCODM@@A 00590230 utilglob.obj - 0002:00001248 ?vmutxMem@@3VMUTX@@A 00590248 utilglob.obj - 0002:00001260 ?vkcdcUtil@@3VKCDC@@A 00590260 utilglob.obj - 0002:00001270 ?_usac@@3VUSAC@@A 00590270 utilglob.obj - 0002:00001288 ?vmutxBase@@3VMUTX@@A 00590288 utilglob.obj - 0002:000012a0 ?vdmglob@@3UDMGLOB@@A 005902a0 utilglob.obj - 0002:000012f8 ?vsflUtil@@3VSFL@@A 005902f8 utilglob.obj - 0002:00001318 ?vrndUtil@@3VRND@@A 00590318 utilglob.obj - 0002:00001338 ?_pdoiFirst@@3PAUDOI@@A 00590338 base.obj - 0002:0000133c ?_pdoiFirstRaw@@3PAUDOI@@A 0059033c base.obj - 0002:00001350 ?_ers@@3VERS@@A 00590350 utilerro.obj - 0002:00001478 ?_pmbhFirst@@3PAUMBH@@A 00590478 utilmem.obj - 0002:00001490 ?_mpchschsLower@@3QADA 00590490 utilstr.obj - 0002:00001598 ?_mpchschsUpper@@3QADA 00590598 utilstr.obj - 0002:000016d4 ?vpappb@@3PAVAPPB@@A 005906d4 appb.obj - 0002:000016d8 ?vpsndm@@3PAVSNDM@@A 005906d8 appb.obj - 0002:000016f0 ?vpcex@@3PAVCEX@@A 005906f0 appb.obj - 0002:00001718 ?_pclokFirst@CLOK@@1PAV1@A 00590718 clok.obj - 0002:0000175c ?_hidLast@CMH@@0JA 0059075c cmd.obj - 0002:000017e4 ?vcactRealize@@3JA 005907e4 gfx.obj - 0002:000017f8 ?vntl@@3VNTL@@A 005907f8 gfx.obj - 0002:00001838 ?_gridLast@GOB@@1JA 00590838 gob.obj - 0002:00001940 ?vwig@@3UWIG@@A 00590940 appbwin.obj - 0002:00001970 ?_mutxAssert@@3VMUTX@@A 00590970 appbwin.obj - 0002:00001998 ?_rgpstn@@3QAPAVSTN@@A 00590998 appbwin.obj - 0002:000019bc ?_fFlushGdi@GPT@@0HA 005909bc gfxwin.obj - 0002:000019f8 ?_pgobScreen@GOB@@0PAV1@A 005909f8 gobwin.obj - 0002:00001a34 ?vpmubCur@@3PAVMUB@@A 00590a34 menuwin.obj - 0002:00001ab8 ?_pcflFirst@CFL@@0PAV1@A 00590ab8 chunk.obj - 0002:00001ae0 ?_pfilFirst@FIL@@1PAV1@A 00590ae0 file.obj - 0002:00001ae8 ?_mutxList@FIL@@1VMUTX@@A 00590ae8 file.obj - 0002:00001b10 ?_fniTemp@@3VFNI@@A 00590b10 fniwin.obj - 0002:00001c88 ?_siiLast@SNDV@@1JA 00590c88 sndm.obj - 0002:00001f90 ?_clip@@3VCLIP@@A 00590f90 clip.obj - 0002:00001fb4 ?vpclip@@3PAVCLIP@@A 00590fb4 clip.obj - 0002:00002664 _fw 00591664 brfwmxr:fwsetup.obj - 0002:00003be8 __BrLoadedImages 00592be8 brfwmxr:loader.obj - 0002:00003bf8 _zb 00592bf8 brzbmxr:zbsetup.obj - 0002:00003e14 _tsl 00592e14 brzbmxr:persp.obj - 0002:00003e3c _awsl 00592e3c brzbmxr:awtm.obj - 0002:00004ac8 ?_dtsKbdDelay@MVU@@1JA 00593ac8 engine:movie.obj - 0002:00004ad0 ?_dtsKbdRepeat@MVU@@1JA 00593ad0 engine:movie.obj - 0002:00004c1c ?_dzpClosestClicked@BODY@@1JA 00593c1c engine:body.obj - 0002:00004c2c ?_pbactClosestClicked@BODY@@1PAUbr_actor@@A 00593c2c engine:body.obj - 0002:00004c4c ?_pbodyClosestClicked@BODY@@1PAV1@A 00593c4c engine:body.obj - 0002:00008170 __bufin 00597170 - 0002:00009170 __heap_descpages 00598170 - 0002:00009180 __heap_regions 00598180 - 0002:00009480 ___onexitend 00598480 - 0002:00009484 ___onexitbegin 00598484 - 0002:00009488 __acmdln 00598488 - 0003:00000058 ??_7SPLOT@@6B@ 00599058 splot.obj - 0003:00000158 ??_7MCC@@6B@ 00599158 splot.obj - 0003:00000208 ??_7BASE@@6B@ 00599208 splot.obj - 0003:00000220 ?_mplwtrans@SCRT@@1QBW4TRANS@@B 00599220 scnsort.obj - 0003:00000230 ??_7SCRT@@6B@ 00599230 scnsort.obj - 0003:00000330 ??_7GOMP@@6B@ 00599330 scnsort.obj - 0003:000003b8 ??_7BRWD@@6B@ 005993b8 browser.obj - 0003:000004f8 ??_7BRWL@@6B@ 005994f8 browser.obj - 0003:00000640 ??_7BRWT@@6B@ 00599640 browser.obj - 0003:00000780 ??_7BRWR@@6B@ 00599780 browser.obj - 0003:000008c0 ??_7BRWI@@6B@ 005998c0 browser.obj - 0003:00000a08 ??_7BRCNL@@6B@ 00599a08 browser.obj - 0003:00000a20 ??_7BCL@@6B@ 00599a20 browser.obj - 0003:00000a40 ??_7BCLS@@6B@ 00599a40 browser.obj - 0003:00000a60 ??_7BRWA@@6B@ 00599a60 browser.obj - 0003:00000ba0 ??_7BRWP@@6B@ 00599ba0 browser.obj - 0003:00000ce8 ??_7BRWB@@6B@ 00599ce8 browser.obj - 0003:00000e30 ??_7BRWC@@6B@ 00599e30 browser.obj - 0003:00000f78 ??_7BRWM@@6B@ 00599f78 browser.obj - 0003:000010c0 ??_7BRWN@@6B@ 0059a0c0 browser.obj - 0003:00001208 ??_7FNET@@6B@ 0059a208 browser.obj - 0003:00001238 ??_7KWA@@6B@ 0059a238 utest.obj - 0003:00001308 ??_7APP@@6B@ 0059a308 utest.obj - 0003:00001440 ??_7SSCB@@6B@ 0059a440 stdioscb.obj - 0003:00001460 ??_7BRCN@@6B@ 0059a460 stdiobrw.obj - 0003:00001478 ??_7STDIO@@6B@ 0059a478 studio.obj - 0003:00001500 ??_7SMCC@@6B@ 0059a500 studio.obj - 0003:000015b8 ??_7TGOB@@6B@ 0059a5b8 tgob.obj - 0003:00001640 ??_7ESL@@6B@ 0059a640 esl.obj - 0003:00001740 ??_7ESLT@@6B@ 0059a740 esl.obj - 0003:00001840 ??_7ESLA@@6B@ 0059a840 esl.obj - 0003:00001940 ??_7ESLL@@6B@ 0059a940 esl.obj - 0003:00001a40 ??_7LSND@@6B@ 0059aa40 esl.obj - 0003:00001a58 ??_7ESLR@@6B@ 0059aa58 esl.obj - 0003:00001b58 ??_7SNE@@6B@ 0059ab58 esl.obj - 0003:00001c30 ??_7APE@@6B@ 0059ac30 ape.obj - 0003:00001cb8 ??_7MP@@6B@ 0059acb8 popup.obj - 0003:00001e00 ??_7MPFNT@@6B@ 0059ae00 popup.obj - 0003:00001f40 ??_7TATR@@6B@ 0059af40 tatr.obj - 0003:00001f68 ??_7KCDC@@6B@ 0059af68 utilglob.obj - 0003:00001f88 ??_7CODC@@6B@ 0059af88 utilglob.obj - 0003:00001fa8 ??_7BLL@@6B@ 0059afa8 base.obj - 0003:00001fc0 ??_7ERS@@6B@ 0059afc0 utilerro.obj - 0003:00001ff8 ??_7USAC@@6B@ 0059aff8 utilint.obj - 0003:00002010 ??_7RND@@6B@ 0059b010 utilrnd.obj - 0003:00002030 ??_7SFL@@6B@ 0059b030 utilrnd.obj - 0003:00002050 ?vrgchHex@@3QBDB 0059b050 utilstr.obj - 0003:00002068 ??_7APPB@@6B@ 0059b068 appb.obj - 0003:000021a0 ??_7CLOK@@6B@ 0059b1a0 clok.obj - 0003:000021d0 ??_7CMH@@6B@ 0059b1d0 cmd.obj - 0003:000021f8 ??_7CEX@@6B@ 0059b1f8 cmd.obj - 0003:00002278 ??_7CURS@@6B@ 0059b278 cursor.obj - 0003:000022a8 ??_7GNV@@6B@ 0059b2a8 gfx.obj - 0003:000022c0 ??_7NTL@@6B@ 0059b2c0 gfx.obj - 0003:000022d8 ??_7GOB@@6B@ 0059b2d8 gob.obj - 0003:00002360 ??_7GTE@@6B@ 0059b360 gob.obj - 0003:00002378 ??_7REGSC@@6B@ 0059b378 region.obj - 0003:00002390 ??_7REGN@@6B@ 0059b390 region.obj - 0003:000023a8 ??_7REGBL@@6B@ 0059b3a8 region.obj - 0003:000023c0 ??_7GPT@@6B@ 0059b3c0 gfxwin.obj - 0003:000023d8 ??_7MUB@@6B@ 0059b3d8 menuwin.obj - 0003:00002410 ??_7GRPB@@6B@ 0059b410 groups.obj - 0003:00002440 ??_7GLB@@6B@ 0059b440 groups.obj - 0003:00002470 ??_7GL@@6B@ 0059b470 groups.obj - 0003:000024a0 ??_7AL@@6B@ 0059b4a0 groups.obj - 0003:000024d0 ??_7GGB@@6B@ 0059b4d0 groups.obj - 0003:00002500 ??_7GG@@6B@ 0059b500 groups.obj - 0003:00002530 ??_7AG@@6B@ 0059b530 groups.obj - 0003:00002560 ??_7GSTB@@6B@ 0059b560 groups2.obj - 0003:00002598 ??_7GST@@6B@ 0059b598 groups2.obj - 0003:000025d0 ??_7CFL@@6B@ 0059b5d0 chunk.obj - 0003:000025e8 ??_7CGE@@6B@ 0059b5e8 chunk.obj - 0003:00002600 ??_7CODM@@6B@ 0059b600 codec.obj - 0003:00002630 ??_7BACO@@6B@ 0059b630 crf.obj - 0003:00002660 ??_7CRF@@6B@ 0059b660 crf.obj - 0003:00002690 ??_7CRM@@6B@ 0059b690 crf.obj - 0003:000026c0 ??_7RCA@@6B@ 0059b6c0 crf.obj - 0003:000026f0 ??_7FIL@@6B@ 0059b6f0 file.obj - 0003:00002708 ??_7BLCK@@6B@ 0059b708 file.obj - 0003:00002720 ??_7FNI@@6B@ 0059b720 fniwin.obj - 0003:00002738 ??_7FNE@@6B@ 0059b738 fniwin.obj - 0003:00002750 ??_7MBMP@@6B@ 0059b750 mbmp.obj - 0003:00002780 ??_7SNDM@@6B@ 0059b780 sndm.obj - 0003:000027e8 ??_7SNDMQ@@6B@ 0059b7e8 sndm.obj - 0003:00002858 ??_7SNQUE@@6B@ 0059b858 sndm.obj - 0003:00002890 ??_7SNDV@@6B@ 0059b890 sndm.obj - 0003:000028f0 ??_7STBL@@6B@ 0059b8f0 sndam.obj - 0003:00002930 ??_7CAMS@@6B@ 0059b930 sndam.obj - 0003:00002960 ??_7AMNOT@@6B@ 0059b960 sndam.obj - 0003:00002980 ??_7AMQUE@@6B@ 0059b980 sndam.obj - 0003:000029b8 ??_7SDAM@@6B@ 0059b9b8 sndam.obj - 0003:00002a28 ??_7IStream@@6B@ 0059ba28 sndam.obj - 0003:00002a60 ??_7IAMNotifySink@@6B@ 0059ba60 sndam.obj - 0003:00002a80 ??_7IUnknown@@6B@ 0059ba80 sndam.obj - 0003:00002a90 ??_7MIDO@@6B@ 0059ba90 mididev.obj - 0003:00002aa8 ??_7MDPS@@6B@ 0059baa8 mididev2.obj - 0003:00002b18 ??_7MDWS@@6B@ 0059bb18 mididev2.obj - 0003:00002b48 ??_7MSQUE@@6B@ 0059bb48 mididev2.obj - 0003:00002b88 ??_7MSMIX@@6B@ 0059bb88 mididev2.obj - 0003:00002ba0 ??_7MISI@@6B@ 0059bba0 mididev2.obj - 0003:00002bd8 ??_7WMS@@6B@ 0059bbd8 mididev2.obj - 0003:00002c10 ??_7OMS@@6B@ 0059bc10 mididev2.obj - 0003:00002c48 ??_7MSTP@@6B@ 0059bc48 midi.obj - 0003:00002c60 ??_7MIDS@@6B@ 0059bc60 midi.obj - 0003:00002c90 ??_7GVID@@6B@ 0059bc90 video.obj - 0003:00002ce0 ??_7GVDS@@6B@ 0059bce0 video.obj - 0003:00002d38 ??_7GVDW@@6B@ 0059bd38 video.obj - 0003:00002d90 ??_7SCEB@@6B@ 0059bd90 screxe.obj - 0003:00002e00 ??_7CABO@@6B@ 0059be00 screxe.obj - 0003:00002e30 ??_7SCPT@@6B@ 0059be30 screxe.obj - 0003:00002e60 ??_7STRG@@6B@ 0059be60 screxe.obj - 0003:00002e78 ??_7DOCB@@6B@ 0059be78 docb.obj - 0003:00002f08 ??_7DTE@@6B@ 0059bf08 docb.obj - 0003:00002f20 ??_7DDG@@6B@ 0059bf20 docb.obj - 0003:00002fe8 ??_7DMD@@6B@ 0059bfe8 docb.obj - 0003:00003070 ??_7DMW@@6B@ 0059c070 docb.obj - 0003:000030f8 ??_7DSG@@6B@ 0059c0f8 docb.obj - 0003:00003188 ??_7DSSP@@6B@ 0059c188 docb.obj - 0003:00003210 ??_7DSSM@@6B@ 0059c210 docb.obj - 0003:00003298 ??_7CLIP@@6B@ 0059c298 clip.obj - 0003:000032b0 ??_7TXTB@@6B@ 0059c2b0 rtxt.obj - 0003:000033a0 ??_7TXRD@@6B@ 0059c3a0 rtxt.obj - 0003:000034b0 ??_7RTUN@@6B@ 0059c4b0 rtxt.obj - 0003:000034d0 ??_7UNDB@@6B@ 0059c4d0 rtxt.obj - 0003:000034f0 ??_7TXTG@@6B@ 0059c4f0 rtxt2.obj - 0003:000035f8 ??_7TXRG@@6B@ 0059c5f8 rtxt2.obj - 0003:00003718 ??_7CTL@@6B@ 0059c718 ctl.obj - 0003:000037a0 ??_7SCB@@6B@ 0059c7a0 ctl.obj - 0003:00003828 ??_7WSB@@6B@ 0059c828 ctl.obj - 0003:000038b0 ??_7BSM@@6B@ 0059c8b0 stream.obj - 0003:000038c8 ??_7BSF@@6B@ 0059c8c8 stream.obj - 0003:000038e0 ??_7DLG@@6B@ 0059c8e0 dlg.obj - 0003:00003910 ??_7EDCB@@6B@ 0059c910 text.obj - 0003:000039e0 ??_7EDPL@@6B@ 0059c9e0 text.obj - 0003:00003ab8 ??_7EDSL@@6B@ 0059cab8 text.obj - 0003:00003b90 ??_7GKDS@@6B@ 0059cb90 kidworld.obj - 0003:00003bc8 ??_7WOKS@@6B@ 0059cbc8 kidworld.obj - 0003:00003c98 ??_7GOKD@@6B@ 0059cc98 kidworld.obj - 0003:00003cd0 ??_7TXHD@@6B@ 0059ccd0 kidhelp.obj - 0003:00003de0 ??_7TXHG@@6B@ 0059cde0 kidhelp.obj - 0003:00003f10 ??_7HBAL@@6B@ 0059cf10 kidhelp.obj - 0003:00004018 ??_7HBTN@@6B@ 0059d018 kidhelp.obj - 0003:00004150 ??_7GOK@@6B@ 0059d150 kidspace.obj - 0003:00004250 ??_7GORB@@6B@ 0059d250 kidspace.obj - 0003:000042a0 ??_7GORT@@6B@ 0059d2a0 kidspace.obj - 0003:000042f0 ??_7GORV@@6B@ 0059d2f0 kidspace.obj - 0003:00004348 ??_7GORF@@6B@ 0059d348 kidspace.obj - 0003:00004398 ??_7GORP@@6B@ 0059d398 kidspace.obj - 0003:000043e8 ??_7SCEG@@6B@ 0059d3e8 screxeg.obj - 0003:00004450 _IID_IUnknown 0059d450 uuid:com_i.obj - 0003:00004460 _IID_IClassFactory 0059d460 uuid:com_i.obj - 0003:00004470 _IID_IMarshal 0059d470 uuid:com_i.obj - 0003:00004480 _IID_IMalloc 0059d480 uuid:com_i.obj - 0003:00004490 _IID_IStdMarshalInfo 0059d490 uuid:com_i.obj - 0003:000044a0 _IID_IExternalConnection 0059d4a0 uuid:com_i.obj - 0003:000044b0 _IID_IWeakRef 0059d4b0 uuid:com_i.obj - 0003:000044c0 _IID_IEnumUnknown 0059d4c0 uuid:com_i.obj - 0003:000044d0 _IID_IBindCtx 0059d4d0 uuid:com_i.obj - 0003:000044e0 _IID_IParseDisplayName 0059d4e0 uuid:com_i.obj - 0003:000044f0 _IID_IEnumMoniker 0059d4f0 uuid:com_i.obj - 0003:00004500 _IID_IRunnableObject 0059d500 uuid:com_i.obj - 0003:00004510 _IID_IRunningObjectTable 0059d510 uuid:com_i.obj - 0003:00004520 _IID_IPersist 0059d520 uuid:com_i.obj - 0003:00004530 _IID_IPersistStream 0059d530 uuid:com_i.obj - 0003:00004540 _IID_IMoniker 0059d540 uuid:com_i.obj - 0003:00004550 _IID_IEnumString 0059d550 uuid:com_i.obj - 0003:00004560 _IID_IStream 0059d560 uuid:com_i.obj - 0003:00004570 _IID_IEnumSTATSTG 0059d570 uuid:com_i.obj - 0003:00004580 _IID_IStorage 0059d580 uuid:com_i.obj - 0003:00004590 _IID_IPersistFile 0059d590 uuid:com_i.obj - 0003:000045a0 _IID_IPersistStorage 0059d5a0 uuid:com_i.obj - 0003:000045b0 _IID_ILockBytes 0059d5b0 uuid:com_i.obj - 0003:000045c0 _IID_IEnumFORMATETC 0059d5c0 uuid:com_i.obj - 0003:000045d0 _IID_IEnumSTATDATA 0059d5d0 uuid:com_i.obj - 0003:000045e0 _IID_IRootStorage 0059d5e0 uuid:com_i.obj - 0003:000045f0 _IID_IAdviseSink 0059d5f0 uuid:com_i.obj - 0003:00004600 _IID_IAdviseSink2 0059d600 uuid:com_i.obj - 0003:00004610 _IID_IDataObject 0059d610 uuid:com_i.obj - 0003:00004620 _IID_IDataAdviseHolder 0059d620 uuid:com_i.obj - 0003:00004630 _IID_IMessageFilter 0059d630 uuid:com_i.obj - 0003:00004640 _IID_IRpcChannelBuffer 0059d640 uuid:com_i.obj - 0003:00004650 _IID_IRpcProxyBuffer 0059d650 uuid:com_i.obj - 0003:00004660 _IID_IRpcStubBuffer 0059d660 uuid:com_i.obj - 0003:00004670 _IID_IPSFactoryBuffer 0059d670 uuid:com_i.obj - 0003:00004680 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 0059d680 audiod:sound.obj - 0003:00004698 ??_7CAMWavFileSrc@@6BIAMSound@@@ 0059d698 audiod:sound.obj - 0003:000046e8 ??_7IAMSound@@6B@ 0059d6e8 audiod:sound.obj - 0003:00004710 ??_7IAMWavFileSrc@@6B@ 0059d710 audiod:sound.obj - 0003:00004730 _CLSID_AMMixer 0059d730 audiod:factory.obj - 0003:00004740 _CLSID_AMWavFileSrc 0059d740 audiod:factory.obj - 0003:00004750 _CLSID_AMSilentSound 0059d750 audiod:factory.obj - 0003:00004760 _CLSID_AMAppendFilter 0059d760 audiod:factory.obj - 0003:00004770 _CLSID_AMClipFilter 0059d770 audiod:factory.obj - 0003:00004780 _CLSID_AMConvertFilter 0059d780 audiod:factory.obj - 0003:00004790 _CLSID_AMDelayFilter 0059d790 audiod:factory.obj - 0003:000047a0 _CLSID_AMGainFilter 0059d7a0 audiod:factory.obj - 0003:000047b0 _CLSID_AMGateFilter 0059d7b0 audiod:factory.obj - 0003:000047c0 _CLSID_AMLoopFilter 0059d7c0 audiod:factory.obj - 0003:000047d0 _CLSID_AMMixFilter 0059d7d0 audiod:factory.obj - 0003:000047e0 _CLSID_AMFaderFilter 0059d7e0 audiod:factory.obj - 0003:000047f0 _CLSID_AMScheduleFilter 0059d7f0 audiod:factory.obj - 0003:00004800 _CLSID_AMRandomizeFilter 0059d800 audiod:factory.obj - 0003:00004810 _CLSID_AMDistortFilter 0059d810 audiod:factory.obj - 0003:00004820 _CLSID_AMCacheFilter 0059d820 audiod:factory.obj - 0003:00004830 _CLSID_AMTrimFilter 0059d830 audiod:factory.obj - 0003:00004840 _CLSID_AMStereoFilter 0059d840 audiod:factory.obj - 0003:00004850 _CLSID_AMBiasFilter 0059d850 audiod:factory.obj - 0003:00004860 _IID_IAMMixer 0059d860 audiod:factory.obj - 0003:00004870 _IID_IAMChannel 0059d870 audiod:factory.obj - 0003:00004880 _IID_IAMWaveOut 0059d880 audiod:factory.obj - 0003:00004890 _IID_IAMSound 0059d890 audiod:factory.obj - 0003:000048a0 _IID_IAMNotifySink 0059d8a0 audiod:factory.obj - 0003:000048b0 _IID_IAMWavFileSrc 0059d8b0 audiod:factory.obj - 0003:000048c0 _IID_IAMSilentSound 0059d8c0 audiod:factory.obj - 0003:000048d0 _IID_IAMAppendFilter 0059d8d0 audiod:factory.obj - 0003:000048e0 _IID_IAMClipFilter 0059d8e0 audiod:factory.obj - 0003:000048f0 _IID_IAMConvertFilter 0059d8f0 audiod:factory.obj - 0003:00004900 _IID_IAMDelayFilter 0059d900 audiod:factory.obj - 0003:00004910 _IID_IAMGainFilter 0059d910 audiod:factory.obj - 0003:00004920 _IID_IAMGateFilter 0059d920 audiod:factory.obj - 0003:00004930 _IID_IAMLoopFilter 0059d930 audiod:factory.obj - 0003:00004940 _IID_IAMMixFilter 0059d940 audiod:factory.obj - 0003:00004950 _IID_IAMFaderFilter 0059d950 audiod:factory.obj - 0003:00004960 _IID_IAMScheduleFilter 0059d960 audiod:factory.obj - 0003:00004970 _IID_IAMRandomizeFilter 0059d970 audiod:factory.obj - 0003:00004980 _IID_IAMDistortFilter 0059d980 audiod:factory.obj - 0003:00004990 _IID_IAMCacheFilter 0059d990 audiod:factory.obj - 0003:000049a0 _IID_IAMTrimFilter 0059d9a0 audiod:factory.obj - 0003:000049b0 _IID_IAMStereoFilter 0059d9b0 audiod:factory.obj - 0003:000049c0 _IID_IAMBiasFilter 0059d9c0 audiod:factory.obj - 0003:000049d0 _IID_IAMMixerChannel 0059d9d0 audiod:factory.obj - 0003:000049e0 _IID_IAMRIFFStream 0059d9e0 audiod:factory.obj - 0003:000049f0 ??_7CClassFactory@@6B@ 0059d9f0 audiod:factory.obj - 0003:00004a08 ??_7IClassFactory@@6B@ 0059da08 audiod:factory.obj - 0003:00004a48 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 0059da48 audiod:factory.obj - 0003:00004a58 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 0059da58 audiod:factory.obj - 0003:00004aa8 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 0059daa8 audiod:factory.obj - 0003:00004ab8 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 0059dab8 audiod:factory.obj - 0003:00004b08 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 0059db08 audiod:factory.obj - 0003:00004b18 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 0059db18 audiod:factory.obj - 0003:00004b68 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 0059db68 audiod:factory.obj - 0003:00004b88 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 0059db88 audiod:factory.obj - 0003:00004bd8 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 0059dbd8 audiod:factory.obj - 0003:00004be8 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 0059dbe8 audiod:factory.obj - 0003:00004c38 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 0059dc38 audiod:factory.obj - 0003:00004c48 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 0059dc48 audiod:factory.obj - 0003:00004c98 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 0059dc98 audiod:factory.obj - 0003:00004ca8 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 0059dca8 audiod:factory.obj - 0003:00004cf8 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 0059dcf8 audiod:factory.obj - 0003:00004d08 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 0059dd08 audiod:factory.obj - 0003:00004d30 ??_7IAMGateFilter@@6B@ 0059dd30 audiod:factory.obj - 0003:00004d40 ??_7IAMLoopFilter@@6B@ 0059dd40 audiod:factory.obj - 0003:00004d50 ??_7IAMFaderFilter@@6B@ 0059dd50 audiod:factory.obj - 0003:00004d60 ??_7IAMRandomizeFilter@@6B@ 0059dd60 audiod:factory.obj - 0003:00004d80 ??_7IAMDistortFilter@@6B@ 0059dd80 audiod:factory.obj - 0003:00004d90 ??_7IAMStereoFilter@@6B@ 0059dd90 audiod:factory.obj - 0003:00004da0 ??_7IAMTrimFilter@@6B@ 0059dda0 audiod:factory.obj - 0003:00004db0 ??_7IAMBiasFilter@@6B@ 0059ddb0 audiod:factory.obj - 0003:00004f00 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 0059df00 audiod:sndcache.obj - 0003:00004f10 ??_7CAMCacheFilter@@6BIAMSound@@@ 0059df10 audiod:sndcache.obj - 0003:00004f38 ??_7IAMCacheFilter@@6B@ 0059df38 audiod:sndcache.obj - 0003:00004f48 ??_7CAMRIFFStream@@6B@ 0059df48 audiod:riffstrm.obj - 0003:00004f60 ??_7IAMRIFFStream@@6B@ 0059df60 audiod:riffstrm.obj - 0003:00004f78 ??_7CFileStream@@6B@ 0059df78 audiod:stream.obj - 0003:00004fb0 ??_7CMemoryStream@@6B@ 0059dfb0 audiod:stream.obj - 0003:00004fe8 ??_7CAMPassThruFilter@@6B@ 0059dfe8 audiod:sndpass.obj - 0003:00005010 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 0059e010 audiod:sndsched.obj - 0003:00005048 ??_7CAMScheduleFilter@@6BIAMSound@@@ 0059e048 audiod:sndsched.obj - 0003:00005070 ??_7IAMScheduleFilter@@6B@ 0059e070 audiod:sndsched.obj - 0003:000050a8 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 0059e0a8 audiod:sndmix.obj - 0003:000050b8 ??_7CAMMixFilter@@6BIAMSound@@@ 0059e0b8 audiod:sndmix.obj - 0003:000050e0 ??_7IAMMixFilter@@6B@ 0059e0e0 audiod:sndmix.obj - 0003:000050f0 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 0059e0f0 audiod:sndgain.obj - 0003:00005108 ??_7CAMGainFilter@@6BIAMSound@@@ 0059e108 audiod:sndgain.obj - 0003:00005130 ??_7IAMGainFilter@@6B@ 0059e130 audiod:sndgain.obj - 0003:00005148 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 0059e148 audiod:sndecho.obj - 0003:00005158 ??_7CAMDelayFilter@@6BIAMSound@@@ 0059e158 audiod:sndecho.obj - 0003:00005188 ??_7IAMDelayFilter@@6B@ 0059e188 audiod:sndecho.obj - 0003:00005198 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 0059e198 audiod:sndcnvt.obj - 0003:000051a8 ??_7CAMConvertFilter@@6BIAMSound@@@ 0059e1a8 audiod:sndcnvt.obj - 0003:000051d0 ??_7IAMConvertFilter@@6B@ 0059e1d0 audiod:sndcnvt.obj - 0003:000051e0 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 0059e1e0 audiod:sndclip.obj - 0003:000051f0 ??_7CAMClipFilter@@6BIAMSound@@@ 0059e1f0 audiod:sndclip.obj - 0003:00005218 ??_7IAMClipFilter@@6B@ 0059e218 audiod:sndclip.obj - 0003:00005228 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 0059e228 audiod:sndapend.obj - 0003:00005238 ??_7CAMAppendFilter@@6BIAMSound@@@ 0059e238 audiod:sndapend.obj - 0003:00005260 ??_7IAMAppendFilter@@6B@ 0059e260 audiod:sndapend.obj - 0003:00005270 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 0059e270 audiod:sndmute.obj - 0003:00005280 ??_7CAMSilentSound@@6BIAMSound@@@ 0059e280 audiod:sndmute.obj - 0003:000052a8 ??_7IAMSilentSound@@6B@ 0059e2a8 audiod:sndmute.obj - 0003:00005330 ??_7CAMMixer@@6B@ 0059e330 audiod:cmixer.obj - 0003:000053a8 ??_7IAMMixer@@6B@ 0059e3a8 audiod:cmixer.obj - 0003:000054a0 ??_7CMixerOut@@6B@ 0059e4a0 audiod:cmixout.obj - 0003:00005500 ??_7IAMWaveOut@@6B@ 0059e500 audiod:cmixout.obj - 0003:00005560 ??_7CAMPlaySnd@@6B@ 0059e560 audiod:cplaysnd.obj - 0003:00005580 ??_7CAMChannel@@6BIAMMixerChannel@@@ 0059e580 audiod:cchannel.obj - 0003:000055d0 ??_7CAMChannel@@6BIAMChannel@@@ 0059e5d0 audiod:cchannel.obj - 0003:00005630 ??_7IAMChannel@@6B@ 0059e630 audiod:cchannel.obj - 0003:00005690 ??_7IAMMixerChannel@@6B@ 0059e690 audiod:cchannel.obj - 0003:000056e0 ??_7CRealOut@@6B@ 0059e6e0 audiod:crealout.obj - 0003:00005760 ??_7CFakeOut@@6B@ 0059e760 audiod:cfakeout.obj - 0003:000057c8 ??_7BWLD@@6B@ 0059e7c8 bren:bwld.obj - 0003:000057e0 ??_7ZBMP@@6B@ 0059e7e0 bren:zbmp.obj - 0003:00005810 ??_7MVIE@@6B@ 0059e810 engine:movie.obj - 0003:000058a0 ??_7MVU@@6B@ 0059e8a0 engine:movie.obj - 0003:00005968 ??_7MUNS@@6B@ 0059e968 engine:movie.obj - 0003:00005988 ??_7MUNB@@6B@ 0059e988 engine:movie.obj - 0003:000059a8 ??_7MSND@@6B@ 0059e9a8 engine:msnd.obj - 0003:000059d8 ??_7MSQ@@6B@ 0059e9d8 engine:msnd.obj - 0003:00005a00 ??_7TAGM@@6B@ 0059ea00 engine:tagman.obj - 0003:00005a18 ??_7SCEN@@6B@ 0059ea18 engine:scene.obj - 0003:00005a30 ??_7SUNS@@6B@ 0059ea30 engine:scene.obj - 0003:00005a50 ??_7SUNA@@6B@ 0059ea50 engine:scene.obj - 0003:00005a70 ??_7SUNX@@6B@ 0059ea70 engine:scene.obj - 0003:00005a90 ??_7SUNP@@6B@ 0059ea90 engine:scene.obj - 0003:00005ab0 ??_7SUNK@@6B@ 0059eab0 engine:scene.obj - 0003:00005ad0 ??_7SUNC@@6B@ 0059ead0 engine:scene.obj - 0003:00005af0 ??_7BKGD@@6B@ 0059eaf0 engine:bkgd.obj - 0003:00005b30 ??_7BODY@@6B@ 0059eb30 engine:body.obj - 0003:00005b48 ??_7COST@@6B@ 0059eb48 engine:body.obj - 0003:00005b60 ??_7ACTR@@6B@ 0059eb60 engine:actor.obj - 0003:00005b78 ??_7ACTN@@6B@ 0059eb78 engine:tmpl.obj - 0003:00005ba8 ??_7TMPL@@6B@ 0059eba8 engine:tmpl.obj - 0003:00005bf0 ??_7TDT@@6B@ 0059ebf0 engine:tmpl.obj - 0003:00005c38 ??_7MTRL@@6B@ 0059ec38 engine:mtrl.obj - 0003:00005c68 ??_7CMTL@@6B@ 0059ec68 engine:mtrl.obj - 0003:00005c98 ??_7ACLP@@6B@ 0059ec98 engine:actredit.obj - 0003:00005d28 ??_7AUND@@6B@ 0059ed28 engine:actredit.obj - 0003:00005d48 ??_7TBXG@@6B@ 0059ed48 engine:tbox.obj - 0003:00005e68 ??_7TUNT@@6B@ 0059ee68 engine:tbox.obj - 0003:00005e88 ??_7TUNS@@6B@ 0059ee88 engine:tbox.obj - 0003:00005ea8 ??_7TUNH@@6B@ 0059eea8 engine:tbox.obj - 0003:00005ec8 ??_7TUND@@6B@ 0059eec8 engine:tbox.obj - 0003:00005ee8 ??_7TUNC@@6B@ 0059eee8 engine:tbox.obj - 0003:00005f08 ??_7TCLP@@6B@ 0059ef08 engine:tbox.obj - 0003:00005f98 ??_7TBXB@@6B@ 0059ef98 engine:tbox.obj - 0003:00006020 ??_7TBOX@@6B@ 0059f020 engine:tbox.obj - 0003:00006130 ??_7SREC@@6B@ 0059f130 engine:srec.obj - 0003:00006148 ??_7TAGL@@6B@ 0059f148 engine:tagl.obj - 0003:00006160 ??_7MODL@@6B@ 0059f160 engine:modl.obj - 0003:00006190 ??_7TDF@@6B@ 0059f190 engine:tdf.obj - 0003:000062a0 ___lookuptable 0059f2a0 LIBC:output.obj - 0003:00006328 ??_7TMAP@@6B@ 0059f328 bren:tmap.obj - 0004:00000028 ?_cmmSPLOT@SPLOT@@1UCMM@CMH@@A 005a0028 splot.obj - 0004:00000030 ?_rgcmmeSPLOT@SPLOT@@0QAUCMME@CMH@@A 005a0030 splot.obj - 0004:00000094 ??_C@_0BL@GJLC@GOK?5immediately?5destroyed?$CB?$AA@ 005a0094 splot.obj - 0004:000000b0 ??_C@_0BN@LOFF@Couldn?8t?5find?5background?5GOB?$AA@ 005a00b0 splot.obj - 0004:000000d0 ??_C@_0CC@JIGF@Parent?5GOB?5for?5view?5doesn?8t?5exis@ 005a00d0 splot.obj - 0004:000000f4 ??_C@_0CB@CHMN@Already?5Inited?5the?5Splot?5Machine@ 005a00f4 splot.obj - 0004:00000118 ??_C@_0DB@JDBO@Why?5bother?5calling?5this?5with?5no?5@ 005a0118 splot.obj - 0004:0000014c ??_C@_03GOHA@nil?$AA@ 005a014c splot.obj - 0004:00000150 ??_C@_0CB@LJIL@Need?5to?5open?5tag?5before?5using?5it@ 005a0150 splot.obj - 0004:00000174 ??_C@_0BB@BKFL@MVU?5wasn?8t?5freed?$AA@ 005a0174 splot.obj - 0004:000001b0 ?_cmmSCRT@SCRT@@1UCMM@CMH@@A 005a01b0 scnsort.obj - 0004:000001b8 ?_rgcmmeSCRT@SCRT@@0QAUCMME@CMH@@A 005a01b8 scnsort.obj - 0004:00000258 ??_C@_0BO@MJHL@Bogus?5scene?5entry?5in?5pglscend?$AA@ 005a0258 scnsort.obj - 0004:00000278 ??_C@_0BB@KCIB@Bad?5GL?5of?5SCENDs?$AA@ 005a0278 scnsort.obj - 0004:0000028c ??_C@_0CD@CDAO@Non?9zero?5_iscenCur?5for?5empty?5mov@ 005a028c scnsort.obj - 0004:000002b0 ??_C@_0BH@OBIB@SCRT?5block?5not?5cleared?$AA@ 005a02b0 scnsort.obj - 0004:000002c8 ??_C@_0BG@IFGK@Frame?5has?5no?5children?$AA@ 005a02c8 scnsort.obj - 0004:000002e0 ??_C@_0BG@NFOM@Frame?5GOB?5isn?8t?5a?5GOK?$AA@ 005a02e0 scnsort.obj - 0004:000002f8 ??_C@_0CF@LDEE@Can?8t?5select?5scene?5in?5an?5empty?5m@ 005a02f8 scnsort.obj - 0004:00000320 ??_C@_0BF@DPCB@Bogus?5kid?5for?5select?$AA@ 005a0320 scnsort.obj - 0004:00000338 ??_C@_0BF@PLCL@Bogus?5kid?5for?5insert?$AA@ 005a0338 scnsort.obj - 0004:00000350 ??_C@_0BO@GCOF@Can?8t?5find?5scroll?5down?5button?$AA@ 005a0350 scnsort.obj - 0004:00000370 ??_C@_0CA@FKPE@Scroll?5down?5button?5is?5not?5a?5GOK?$AA@ 005a0370 scnsort.obj - 0004:00000390 ??_C@_0BM@MEBA@Can?8t?5find?5scroll?5up?5button?$AA@ 005a0390 scnsort.obj - 0004:000003ac ??_C@_0BO@EIEN@Scroll?5up?5button?5is?5not?5a?5GOK?$AA@ 005a03ac scnsort.obj - 0004:000003cc ??_C@_0BO@FBFM@Nuking?5an?5already?5nuked?5scene?$AA@ 005a03cc scnsort.obj - 0004:000003ec ??_C@_0CH@PGDL@Can?8t?5nuke?5a?5scene?5from?5an?5empty@ 005a03ec scnsort.obj - 0004:00000414 ??_C@_0BA@NBDG@kid?5isn?8t?5a?5GOK?$AA@ 005a0414 scnsort.obj - 0004:00000424 ??_C@_0BC@LMIG@kid?5doesn?8t?5exist?$AA@ 005a0424 scnsort.obj - 0004:00000438 ??_C@_0CJ@HDMM@Can?8t?5set?5transition?5when?5movie?5@ 005a0438 scnsort.obj - 0004:00000464 ??_C@_0BM@GMKD@Where?8s?5my?5frame?5to?5select?$DP?$AA@ 005a0464 scnsort.obj - 0004:00000480 ??_C@_0BF@EMCM@Didn?8t?5get?5a?5GOK?5GOB?$AA@ 005a0480 scnsort.obj - 0004:00000498 ??_C@_0BK@BEDI@Selection?5GOMP?5is?5missing?$AA@ 005a0498 scnsort.obj - 0004:000004b4 ??_C@_0BJ@PDON@Selection?5GOK?5is?5missing?$AA@ 005a04b4 scnsort.obj - 0004:000004d0 ??_C@_0BL@BBPE@Thumbnail?5GOB?5isn?8t?5a?5GOMP?$AA@ 005a04d0 scnsort.obj - 0004:000004ec ??_C@_0CF@GAEC@Couldn?8t?5find?5thumbnail?5or?5its?5f@ 005a04ec scnsort.obj - 0004:00000514 ??_C@_0BL@IIIP@Transition?5GOB?5isn?8t?5a?5GOK?$AA@ 005a0514 scnsort.obj - 0004:00000530 ??_C@_0BJ@HFPJ@First?5child?5wasn?8t?5a?5GOK?$AA@ 005a0530 scnsort.obj - 0004:0000054c ??_C@_0O@LOAA@Invalid?5trans?$AA@ 005a054c scnsort.obj - 0004:0000055c ??_C@_0BB@IFNE@GOB?5isn?8t?5a?5GOMP?$AA@ 005a055c scnsort.obj - 0004:00000598 ?_cmmBRWD@BRWD@@1UCMM@CMH@@A 005a0598 browser.obj - 0004:000005a0 ?_rgcmmeBRWD@BRWD@@0QAUCMME@CMH@@A 005a05a0 browser.obj - 0004:00000640 ??_C@_0CB@GNCK@GOK?5already?5exists?5with?5given?5ID@ 005a0640 browser.obj - 0004:00000664 ??_C@_0BD@HBON@Parent?5isn?8t?5a?5GOK?$AA@ 005a0664 browser.obj - 0004:00000678 ??_C@_0O@OPAP@Invalid?5class?$AA@ 005a0678 browser.obj - 0004:00000688 ??_C@_0CI@IGOL@Failed?5to?5change?5state?5Page?5Back@ 005a0688 browser.obj - 0004:000006b0 ??_C@_0CH@IHLJ@Failed?5to?5change?5state?5Page?5Fwd?5@ 005a06b0 browser.obj - 0004:000006d8 ??_C@_09IGCB@Lost?5BRCN?$AA@ 005a06d8 browser.obj - 0004:000006e4 ??_C@_0M@IJDG@Logic?5error?$AA@ 005a06e4 browser.obj - 0004:000006f0 ??_C@_0BL@FBLM@Logic?5error?5releasing?5pcrm?$AA@ 005a06f0 browser.obj - 0004:0000070c ??_C@_0CL@LFMA@couldn?8t?5get?5property?5kpridBrwsD@ 005a070c browser.obj - 0004:00000738 ??_C@_0BJ@LDJK@GL?5of?5THDs?5will?5be?5lost?$CB?$AA@ 005a0738 browser.obj - 0004:00000754 ??_C@_0BF@KJGJ@Invalid?5browser?5call?$AA@ 005a0754 browser.obj - 0004:0000076c ??_C@_0BD@BIKB@Unhandled?5bws?5case?$AA@ 005a076c browser.obj - 0004:00000780 ??_C@_0BO@PPOM@Bogus?5sort?5order?5for?5THD?5list?$AA@ 005a0780 browser.obj - 0004:000007a0 ??_C@_0DB@NHKA@Tried?5to?5grow?5pglthd?5?$CIbad?$CJ?5and?5f@ 005a07a0 browser.obj - 0004:000007d4 ??_C@_0BD@PKDI@Inconsistent?5state?$AA@ 005a07d4 browser.obj - 0004:000007e8 ??_C@_0BD@PFPK@Bad?5context?5buffer?$AA@ 005a07e8 browser.obj - 0004:000007fc ??_C@_0CF@KCEO@Browser?5deleting?5the?5wrong?5dupli@ 005a07fc browser.obj - 0004:00000824 ??_C@_0BK@LGNB@Logic?5error?5cleaning?5pgst?$AA@ 005a0824 browser.obj - 0004:00000840 ??_C@_0BD@NDAE@Illegal?5_bws?5value?$AA@ 005a0840 browser.obj - 0004:00000854 ??_C@_0BI@FGGB@Selection?5not?5available?$AA@ 005a0854 browser.obj - 0004:0000086c ??_C@_0N@MHDP@Invalid?5_bws?$AA@ 005a086c browser.obj - 0004:0000087c ??_C@_0BD@OFHB@Bad?5initialization?$AA@ 005a087c browser.obj - 0004:00000890 ??_C@_07JKLH@Bad?5CKI?$AA@ 005a0890 browser.obj - 0004:00000898 ??_C@_0N@DMLG@Illegal?5call?$AA@ 005a0898 browser.obj - 0004:000008a8 ??_C@_0BK@FGEF@Font?5style?5browser?5broken?$AA@ 005a08a8 browser.obj - 0004:000008c4 ??_C@_07CPMK@bad?5TFC?$AA@ 005a08c4 browser.obj - 0004:000008cc ??_C@_0BC@JLAB@GST?5will?5be?5lost?$CB?$AA@ 005a08cc browser.obj - 0004:000008e0 ??_C@_0BF@CEKO@No?5TGOB?5for?5the?5text?$AA@ 005a08e0 browser.obj - 0004:000008f8 ??_C@_0BB@CBNA@cache?5tag?5failed?$AA@ 005a08f8 browser.obj - 0004:0000090c ??_C@_0BI@HOLK@Invalid?5_sty?5in?5browser?$AA@ 005a090c browser.obj - 0004:00000924 ??_C@_0DC@EBGI@Portfolio?5should?5filter?5out?5Midi@ 005a0924 browser.obj - 0004:00000958 ??_C@_0DC@BNDK@Portfolio?5should?5filter?5out?5Wave@ 005a0958 browser.obj - 0004:0000098c ??_C@_0BJ@BOJD@Error?5invalidating?5sound?$AA@ 005a098c browser.obj - 0004:000009a8 ??_C@_0BD@CDLN@String?5not?5present?$AA@ 005a09a8 browser.obj - 0004:000009bc ??_C@_0BB@POLN@GOB?5isn?8t?5a?5TGOB?$AA@ 005a09bc browser.obj - 0004:000009d0 ??_C@_0BG@CPFF@Actor?5has?5no?5template?$AA@ 005a09d0 browser.obj - 0004:000009e8 ??_C@_0BN@IJC@kidBrwsAction?3?5Invalid?5actor?$AA@ 005a09e8 browser.obj - 0004:00000a08 ??_C@_0BN@NAMO@Unimplemented?5Change?5Cel?5kid?$AA@ 005a0a08 browser.obj - 0004:00000a28 ??_C@_0BO@MMDK@Failed?5to?5initialize?5RollCall?$AA@ 005a0a28 browser.obj - 0004:00000a48 ??_C@_0BL@GNOD@Actor?5content?5missing?5gokd?$AA@ 005a0a48 browser.obj - 0004:00000a64 ??_C@_0BM@BAPE@Invalid?5BRWR?5initialization?$AA@ 005a0a64 browser.obj - 0004:00000a80 ??_C@_0BC@PDDP@Arid?5should?5exist?$AA@ 005a0a80 browser.obj - 0004:00000a94 ??_C@_0BH@PLEH@ChangeDisplaySettingsA?$AA@ 005a0a94 utest.obj - 0004:00000ad8 ?_cmmAPP@APP@@1UCMM@CMH@@A 005a0ad8 utest.obj - 0004:00000ae0 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 005a0ae0 utest.obj - 0004:00000bb0 ??_C@_0N@HPFK@3DMMOpen?4tmp?$AA@ 005a0bb0 utest.obj - 0004:00000bc0 ??_C@_07DOFL@3DMOVIE?$AA@ 005a0bc0 utest.obj - 0004:00000bc8 ??_C@_0BH@JKNP@Couldn?8t?5read?5app?5name?$AA@ 005a0bc8 utest.obj - 0004:00000be0 ??_C@_0O@OMMI@DebugSettings?$AA@ 005a0be0 utest.obj - 0004:00000bf0 ??_C@_0L@IJIP@MidiOutMsg?$AA@ 005a0bf0 utest.obj - 0004:00000bfc ??_C@_0BG@IMED@Registry?5query?5failed?$AA@ 005a0bfc utest.obj - 0004:00000c14 ??_C@_0L@NKDD@WaveOutMsg?$AA@ 005a0c14 utest.obj - 0004:00000c20 ??_C@_08KHDN@AVIVIDEO?$AA@ 005a0c20 utest.obj - 0004:00000c2c ??_C@_0BD@HGMC@GreaterThan8bppMsg?$AA@ 005a0c2c utest.obj - 0004:00000c40 ??_C@_0BB@ICNP@SwitchResolution?$AA@ 005a0c40 utest.obj - 0004:00000c54 ??_C@_03KELD@MDI?$AA@ 005a0c54 utest.obj - 0004:00000c58 ??_C@_0O@MFJG@HomeDirectory?$AA@ 005a0c58 utest.obj - 0004:00000c68 ??_C@_0BE@FPLK@need?5valid?5stnUser?$CB?$AA@ 005a0c68 utest.obj - 0004:00000c7c ??_C@_0BF@PKAF@Bug?5in?5_FGetUserName?$AA@ 005a0c7c utest.obj - 0004:00000c94 ??_C@_0DK@NFLA@Call?5to?5WNetGetLastError?5failed?$DL@ 005a0c94 utest.obj - 0004:00000cd0 ??_C@_08BKML@UserData?$AA@ 005a0cd0 utest.obj - 0004:00000cdc ??_C@_0BB@NPGL@Invalid?5key?5type?$AA@ 005a0cdc utest.obj - 0004:00000cf0 ??_C@_0BF@BINI@Unknown?5reg?5key?5type?$AA@ 005a0cf0 utest.obj - 0004:00000d08 ??_C@_0BL@KDHN@Invalid?5string?5for?5reg?5key?$AA@ 005a0d08 utest.obj - 0004:00000d24 ??_C@_0DB@JKIH@Software?2Microsoft?2Microsoft?5Kid@ 005a0d24 utest.obj - 0004:00000d58 ??_C@_0CN@PCME@Invalid?5registry?5name?5for?5Produc@ 005a0d58 utest.obj - 0004:00000d88 ??_C@_0DK@NAHB@Missing?5InstallDirectory?5registr@ 005a0d88 utest.obj - 0004:00000dc4 ??_C@_0DK@HJDH@Software?2Microsoft?2Microsoft?5Kid@ 005a0dc4 utest.obj - 0004:00000e00 ??_C@_0BI@PBEB@bad?5Action?5string?5table?$AA@ 005a0e00 utest.obj - 0004:00000e18 ??_C@_0BG@CGID@unexpected?5extra?5size?$AA@ 005a0e18 utest.obj - 0004:00000e30 ??_C@_04PIPI@?4chk?$AA@ 005a0e30 utest.obj - 0004:00000e38 ??_C@_0BF@FCGO@Main?5CRM?5is?5corrupt?4?$AA@ 005a0e38 utest.obj - 0004:00000e50 ??_C@_0M@CJBH@BetterSpeed?$AA@ 005a0e50 utest.obj - 0004:00000e5c ??_C@_0BI@KABG@Bad?5command?9line?5switch?$AA@ 005a0e5c utest.obj - 0004:00000e74 ??_C@_0BF@EPCB@Bad?5module?5filename?$DP?$AA@ 005a0e74 utest.obj - 0004:00000e8c ??_C@_0CF@GLBA@Can?8t?5find?5Microsoft?5Kids?5or?5MSK@ 005a0e8c utest.obj - 0004:00000eb4 ??_C@_06LIKK@MSKIDS?$AA@ 005a0eb4 utest.obj - 0004:00000ebc ??_C@_0P@GGDA@Microsoft?5Kids?$AA@ 005a0ebc utest.obj - 0004:00000ecc ??_C@_0BB@OKGI@InstallDirectory?$AA@ 005a0ecc utest.obj - 0004:00000ee0 ??_C@_0DA@EPL@_stnProductLong?5and?5_stnProductS@ 005a0ee0 utest.obj - 0004:00000f10 ??_C@_0CP@GDKG@AAAAAAAAAhhhhh?$CB?5?9?5P?4Floyd?5?$CIEncor@ 005a0f10 utest.obj - 0004:00000f40 ??_C@_0BK@PKBB@AAAAAAAAAhhhhh?$CB?5?9?5P?4Floyd?$AA@ 005a0f40 utest.obj - 0004:00000f5c ??_C@_0BA@PPFN@rc?8s?5are?5scaled?$AA@ 005a0f5c utest.obj - 0004:00000f6c ??_C@_0BN@KMJH@_FInitStudio?5didn?8t?5clean?5up?$AA@ 005a0f6c utest.obj - 0004:00000f8c ??_C@_0BM@GNFB@Shutting?5down?5Studio?5failed?$AA@ 005a0f8c utest.obj - 0004:00000fa8 ??_C@_0CD@CAGG@You?5forgot?5to?5close?5the?5last?5TAT@ 005a0fa8 utest.obj - 0004:00000fcc ??_C@_0CC@KGMN@Unrecognized?5portfolio?5open?5type@ 005a0fcc utest.obj - 0004:00000ff0 ??_C@_0BC@DOOM@DypTextDef?5failed?$AA@ 005a0ff0 utest.obj - 0004:00001004 ??_C@_0DB@BAN@Couldn?8t?5save?5current?5debug?5sett@ 005a1004 utest.obj - 0004:00001038 ??_C@_0BI@DDAK@?$CF5?45s?9?$CF3?43s?9?$CF7?47s?9?$CF5?45s?$AA@ 005a1038 utest.obj - 0004:00001050 ??_C@_0M@PHHK@?5?$CFd?4?$CFd?4?$CF04d?$AA@ 005a1050 utest.obj - 0004:0000105c ??_C@_08EKFL@?5?$CIDebug?$CJ?$AA@ 005a105c utest.obj - 0004:00001068 ??_C@_0L@KEOG@USER32?4DLL?$AA@ 005a1068 utest.obj - 0004:00001074 ??_C@_0DB@LDOD@TModal?$CI?$CJ?5balloon?5returned?5unreco@ 005a1074 utest.obj - 0004:000010a8 ??_C@_0EC@FKDM@I?5can?8t?5find?5the?5CD?5?8?$CFs?8?5?5Please@ 005a10a8 utest.obj - 0004:000010ec ??_C@_02MECO@?$CFd?$AA@ 005a10ec utest.obj - 0004:000010f0 ??_C@_08CFEH@bad?5hwnd?$AA@ 005a10f0 utest.obj - 0004:000010fc ??_C@_0DC@MJBB@Got?5a?5ProcessOpenDocCmd?5but?5ther@ 005a10fc utest.obj - 0004:00001130 ??_C@_0BM@GHPK@Enable?5called?5w?1o?5a?5disable?$AA@ 005a1130 utest.obj - 0004:00001178 ??_C@_03OALE@?$CF4d?$AA@ 005a1178 stdioscb.obj - 0004:0000117c ??_C@_0CA@NEAF@invalid?5chtt?5from?5studio?5scroll?$AA@ 005a117c stdioscb.obj - 0004:0000119c ??_C@_09MADN@Bad?5scene?$AA@ 005a119c stdioscb.obj - 0004:000011a8 ??_C@_0BN@LKBN@Missing?5or?5invalid?5thumb?5GOB?$AA@ 005a11a8 stdioscb.obj - 0004:000011f0 ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 005a11f0 stdiobrw.obj - 0004:00001204 ??_C@_0BN@BJPL@Roll?5Call?5browser?5already?5up?$AA@ 005a1204 stdiobrw.obj - 0004:00001224 ??_C@_0CE@BAJO@No?5actor?5selected?5in?5action?5brow@ 005a1224 stdiobrw.obj - 0004:00001248 ??_C@_0BN@GFJG@Actor?5browser?5requires?5scene?$AA@ 005a1248 stdiobrw.obj - 0004:00001268 ??_C@_0BJ@HBHF@Missing?5background?5event?$AA@ 005a1268 stdiobrw.obj - 0004:00001284 ??_C@_0M@JCLH@Pbkgd?$CI?$CJ?5Nil?$AA@ 005a1284 stdiobrw.obj - 0004:00001290 ??_C@_07HBCE@No?5pmvu?$AA@ 005a1290 stdiobrw.obj - 0004:00001298 ??_C@_0CL@HKHA@Should?5never?5fail?5when?5not?5copyi@ 005a1298 stdiobrw.obj - 0004:000012c4 ??_C@_0N@IOCK@Invalid?5_sty?$AA@ 005a12c4 stdiobrw.obj - 0004:00001300 ?_cmmSTDIO@STDIO@@1UCMM@CMH@@A 005a1300 studio.obj - 0004:00001308 ?_rgcmmeSTDIO@STDIO@@0QAUCMME@CMH@@A 005a1308 studio.obj - 0004:000015a8 ??_C@_0FH@PIMN@Warning?3?5Failed?5to?5open?5studio?5f@ 005a15a8 studio.obj - 0004:00001600 ??_C@_0BG@BNCH@Running?5script?5failed?$AA@ 005a1600 studio.obj - 0004:00001618 ??_C@_0BG@FJFH@FLoadMovie?5lied?5to?5us?$AA@ 005a1618 studio.obj - 0004:00001630 ??_C@_0CH@OLHM@Missing?5string?5in?5FCmdLoadProjec@ 005a1630 studio.obj - 0004:00001658 ??_C@_0BJ@BAG@Not?5enough?5refs?5for?5BKGD?$AA@ 005a1658 studio.obj - 0004:00001674 ??_C@_0BH@ODMP@Bogus?5state?5for?5studio?$AA@ 005a1674 studio.obj - 0004:0000168c ??_C@_0CI@LAP@You?5forgot?5to?5put?5this?5tool?5in?5S@ 005a168c studio.obj - 0004:000016b4 ??_C@_0M@BPAF@Unknown?5cid?$AA@ 005a16b4 studio.obj - 0004:000016c0 ??_C@_0L@KLLF@3dmovie?4ms?$AA@ 005a16c0 studio.obj - 0004:000016cc ??_C@_0BB@PCCB@why?5are?5we?5here?$DP?$AA@ 005a16cc studio.obj - 0004:000016e0 ??_C@_0P@KNPA@unexpected?5cid?$AA@ 005a16e0 studio.obj - 0004:000016f0 ??_C@_0BA@DKGJ@No?5current?5SCEN?$AA@ 005a16f0 studio.obj - 0004:00001700 ??_C@_0BA@OFON@No?5current?5MVIE?$AA@ 005a1700 studio.obj - 0004:00001710 ??_C@_0BC@LNEH@Unknown?5tool?5type?$AA@ 005a1710 studio.obj - 0004:00001724 ??_C@_0BP@KMFA@Duplicate?5actor?5cno?5in?5content?$AA@ 005a1724 studio.obj - 0004:00001744 ??_C@_0BH@NOLN@No?5Sound?5for?5this?5tool?$AA@ 005a1744 studio.obj - 0004:0000175c ??_C@_0BK@OMPB@Invalid?5studio?4cht?5or?5ids?$AA@ 005a175c studio.obj - 0004:00001778 ??_C@_0CD@CFKF@Update?5Movie?5Name?5font?5size?5fail@ 005a1778 studio.obj - 0004:000017c4 ??_C@_02OOND@?4?4?$AA@ 005a17c4 tgob.obj - 0004:000017c8 ??_C@_0BL@GDMO@Someone?5else?5set?5the?5_onn?$DP?$AA@ 005a17c8 tgob.obj - 0004:000017e4 ??_C@_0CG@GGJP@Creating?5a?5TGOB?5with?5no?5STDIO?5pr@ 005a17e4 tgob.obj - 0004:00001830 ?_cmmESL@ESL@@1UCMM@CMH@@A 005a1830 esl.obj - 0004:00001838 ?_rgcmmeESL@ESL@@0QAUCMME@CMH@@A 005a1838 esl.obj - 0004:00001868 ?_cmmESLT@ESLT@@1UCMM@CMH@@A 005a1868 esl.obj - 0004:00001870 ?_rgcmmeESLT@ESLT@@0QAUCMME@CMH@@A 005a1870 esl.obj - 0004:00001900 ?_cmmESLA@ESLA@@1UCMM@CMH@@A 005a1900 esl.obj - 0004:00001908 ?_rgcmmeESLA@ESLA@@0QAUCMME@CMH@@A 005a1908 esl.obj - 0004:00001948 ?_cmmESLL@ESLL@@1UCMM@CMH@@A 005a1948 esl.obj - 0004:00001950 ?_rgcmmeESLL@ESLL@@0QAUCMME@CMH@@A 005a1950 esl.obj - 0004:00001980 ?_cmmESLR@ESLR@@1UCMM@CMH@@A 005a1980 esl.obj - 0004:00001988 ?_rgcmmeESLR@ESLR@@0QAUCMME@CMH@@A 005a1988 esl.obj - 0004:000019c8 ??_C@_0BH@HNMA@only?5use?5ESLT?5for?5TDTs?$AA@ 005a19c8 esl.obj - 0004:000019e0 ??_C@_0CF@CHBL@Invalid?5cid?5for?5ESLT?3?3FCmdStartP@ 005a19e0 esl.obj - 0004:00001a08 ??_C@_0M@CFAG@Invalid?5kid?$AA@ 005a1a08 esl.obj - 0004:00001a14 ??_C@_0BB@CHAK@Invalid?5Vlm?5type?$AA@ 005a1a14 esl.obj - 0004:00001a28 ??_C@_0BB@PJNP@missing?5edit?5box?$AA@ 005a1a28 esl.obj - 0004:00001a3c ??_C@_0BO@LMBO@where?8s?5the?5sound?5length?5gok?$DP?$AA@ 005a1a3c esl.obj - 0004:00001a5c ??_C@_0CA@HOKG@Couldn?8t?5delete?5temp?5sound?5file?$AA@ 005a1a5c esl.obj - 0004:00001aa0 ?_cmmAPE@APE@@1UCMM@CMH@@A 005a1aa0 ape.obj - 0004:00001aa8 ?_rgcmmeAPE@APE@@0QAUCMME@CMH@@A 005a1aa8 ape.obj - 0004:00001ac8 ??_C@_0CB@CBFD@PglNew?5should?5have?5ensured?5space@ 005a1ac8 ape.obj - 0004:00001aec ??_C@_0BD@ODGK@what?5BODY?5is?5this?$DP?$AA@ 005a1aec ape.obj - 0004:00001b00 ??_C@_0L@HEEG@weird?5tool?$AA@ 005a1b00 ape.obj - 0004:00001b0c ??_C@_0CC@DLBB@Should?5only?5get?5a?5mousedown?5here@ 005a1b0c ape.obj - 0004:00001b30 ??_C@_07BKCH@bad?5gms?$AA@ 005a1b30 ape.obj - 0004:00001b38 ??_C@_0BM@JGCF@FChangeTdt?5is?5only?5for?5TDTs?$AA@ 005a1b38 ape.obj - 0004:00001b54 ??_C@_0CI@JIFN@TDTs?5should?5only?5have?5one?5body?5p@ 005a1b54 ape.obj - 0004:00001b7c ??_C@_0BN@JKGC@FSetTdtMtrl?5is?5only?5for?5TDTs?$AA@ 005a1b7c ape.obj - 0004:00001b9c ??_C@_0CA@LLBM@FGetTdtMtrlCno?5is?5only?5for?5TDTs?$AA@ 005a1b9c ape.obj - 0004:00001bbc ??_C@_0BM@ECBE@GetTdtInfo?5is?5only?5for?5TDTs?$AA@ 005a1bbc ape.obj - 0004:00001bd8 ??_C@_0BD@PEKF@_pglgms?5wrong?5size?$AA@ 005a1bd8 ape.obj - 0004:00001c18 ?_cmmMP@MP@@1UCMM@CMH@@A 005a1c18 popup.obj - 0004:00001c20 ?_rgcmmeMP@MP@@0QAUCMME@CMH@@A 005a1c20 popup.obj - 0004:00001c40 ?_cmmMPFNT@MPFNT@@1UCMM@CMH@@A 005a1c40 popup.obj - 0004:00001c48 ?_rgcmmeMPFNT@MPFNT@@0QAUCMME@CMH@@A 005a1c48 popup.obj - 0004:00001c68 ??_C@_0O@KJEG@pstdio?5is?5nil?$AA@ 005a1c68 popup.obj - 0004:00001c78 ??_C@_0BI@FBF@Returning?5invalid?5ithum?$AA@ 005a1c78 popup.obj - 0004:00001c90 ??_C@_0CM@OKBP@GST?5CbExtra?5isn?8t?5the?5right?5size@ 005a1c90 popup.obj - 0004:00001ce8 ?_cmmTATR@TATR@@1UCMM@CMH@@A 005a1ce8 tatr.obj - 0004:00001cf0 ?_rgcmmeTATR@TATR@@0QAUCMME@CMH@@A 005a1cf0 tatr.obj - 0004:00001d40 ??_C@_0CH@JDJG@Couldn?8t?5find?5gob?5for?5TATR?8s?5kid@ 005a1d40 tatr.obj - 0004:00001d68 ??_C@_0CH@KGHD@Portfolio?8s?5FNI?5has?5bad?5FTG?5in?5t@ 005a1d68 tatr.obj - 0004:00001db4 ??_C@_0CL@MEAI@Portfolio?5selection?5of?5a?5file?5wi@ 005a1db4 portf.obj - 0004:00001de0 ??_C@_0DK@JJMP@Portfolio?5?9?5draw?5items?5GetStockO@ 005a1de0 portf.obj - 0004:00001e1c ??_C@_0DK@KBCB@Portfolio?5?9?5draw?5items?5GetStockO@ 005a1e1c portf.obj - 0004:00001e58 ??_C@_0DH@NGIJ@Portfolio?5?9?5draw?5items?5GetStockO@ 005a1e58 portf.obj - 0004:00001e90 ??_C@_0DP@LHMI@Custom?5portfolio?5buttons?5?$CIok?1hom@ 005a1e90 portf.obj - 0004:00001ed0 ??_C@_0EB@LICC@Custom?5portfolio?5buttons?5?$CIok?1can@ 005a1ed0 portf.obj - 0004:00001f14 ??_C@_0DP@OIMI@Portfolio?5?9?5draw?5background?5GetS@ 005a1f14 portf.obj - 0004:00001f54 ??_C@_0DP@NACG@Portfolio?5?9?5draw?5background?5GetS@ 005a1f54 portf.obj - 0004:00001f94 ??_C@_0DM@OMKD@Portfolio?5?9?5draw?5background?5GetS@ 005a1f94 portf.obj - 0004:00001fd0 ??_C@_0DM@NJCE@Portfolio?5?9?5draw?5Preview?5GetStoc@ 005a1fd0 portf.obj - 0004:0000200c ??_C@_0DM@OBMK@Portfolio?5?9?5draw?5Preview?5GetStoc@ 005a200c portf.obj - 0004:00002048 ??_C@_0DJ@FEMO@Portfolio?5?9?5draw?5Preview?5GetStoc@ 005a2048 portf.obj - 0004:00002084 ??_C@_0O@GHNP@?50?5MOTOWN?4INF?$AA@ 005a2084 mminstal.obj - 0004:000020b8 ?vpcodmUtil@@3PAVCODM@@A 005a20b8 utilglob.obj - 0004:000020bc ?vpusac@@3PAVUSAC@@A 005a20bc utilglob.obj - 0004:000020fc ?vcactSuspendAssertValid@@3JA 005a20fc base.obj - 0004:00002100 ?vcactAVSave@@3JA 005a2100 base.obj - 0004:00002104 ?vcactAV@@3JA 005a2104 base.obj - 0004:00002108 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 005a2108 base.obj - 0004:00002120 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 005a2120 base.obj - 0004:00002138 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 005a2138 base.obj - 0004:00002148 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 005a2148 base.obj - 0004:0000215c ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 005a215c base.obj - 0004:00002178 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 005a2178 base.obj - 0004:0000218c ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 005a218c base.obj - 0004:000021a4 ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 005a21a4 base.obj - 0004:000021b8 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 005a21b8 base.obj - 0004:000021d4 ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 005a21d4 base.obj - 0004:000021f4 ??_C@_0DL@HKA@?6Lost?5object?3?5cls?$DN?8?$CFf?8?0?5size?$DN?$CFd?0@ 005a21f4 base.obj - 0004:00002230 ??_C@_0DE@ELAM@Total?5lost?5objects?3?5?$CFd?4?5Press?5?8D@ 005a2230 base.obj - 0004:00002264 ??_C@_0BH@KF@Raw?5list?5is?5not?5empty?$CB?$AA@ 005a2264 base.obj - 0004:0000227c ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 005a227c base.obj - 0004:0000228c ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 005a228c base.obj - 0004:0000229c ??_C@_0O@NAKK@links?5corrupt?$AA@ 005a229c base.obj - 0004:000022d0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 005a22d0 utilcopy.obj - 0004:00002300 ?vpers@@3PAVERS@@A 005a2300 utilerro.obj - 0004:00002304 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 005a2304 utilerro.obj - 0004:0000232c ??_C@_08GEE@Error?5?$CFd?$AA@ 005a232c utilerro.obj - 0004:00002358 ??_C@_0BF@FJFO@divide?5by?5zero?5error?$AA@ 005a2358 utilint.obj - 0004:00002370 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 005a2370 utilint.obj - 0004:00002380 ??_C@_084overflow?$AA@ 005a2380 utilint.obj - 0004:0000238c ??_C@_0N@INPL@long?5too?5big?$AA@ 005a238c utilint.obj - 0004:0000239c ??_C@_0P@DFPA@long?5too?5small?$AA@ 005a239c utilint.obj - 0004:000023ac ??_C@_09MGFD@wrong?5bom?$AA@ 005a23ac utilint.obj - 0004:000023b8 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 005a23b8 utilint.obj - 0004:000023dc ??_C@_0CE@PLAM@cb?5is?5not?5a?5multiple?5of?5size?$CIsho@ 005a23dc utilint.obj - 0004:00002400 ??_C@_0BE@OJMN@empty?5map?5rectangle?$AA@ 005a2400 utilint.obj - 0004:00002414 ??_C@_0BF@OOKN@this?5can?8t?5be?5prcSrc?$AA@ 005a2414 utilint.obj - 0004:0000242c ??_C@_0BN@KEGA@fraction?5not?5in?5lowest?5terms?$AA@ 005a242c utilint.obj - 0004:00002470 ?vpfnlib@@3P6GJJJ@ZA 005a2470 utilmem.obj - 0004:00002474 ?_fInLiberator@@3HA 005a2474 utilmem.obj - 0004:00002478 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 005a2478 utilmem.obj - 0004:0000249c ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 005a249c utilmem.obj - 0004:000024b4 ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 005a24b4 utilmem.obj - 0004:000024dc ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 005a24dc utilmem.obj - 0004:00002500 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 005a2500 utilmem.obj - 0004:00002520 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 005a2520 utilmem.obj - 0004:00002534 ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 005a2534 utilmem.obj - 0004:00002548 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 005a2548 utilmem.obj - 0004:0000255c ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 005a255c utilmem.obj - 0004:00002570 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 005a2570 utilmem.obj - 0004:00002588 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 005a2588 utilmem.obj - 0004:0000259c ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 005a259c utilmem.obj - 0004:000025ac ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 005a25ac utilmem.obj - 0004:000025c0 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 005a25c0 utilmem.obj - 0004:000025dc ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 005a25dc utilmem.obj - 0004:000025f0 ??_C@_08ECDH@wrong?5cb?$AA@ 005a25f0 utilmem.obj - 0004:000025fc ??_C@_06BHIL@nil?5pv?$AA@ 005a25fc utilmem.obj - 0004:00002604 ??_C@_0DA@JKM@?6Lost?5block?3?5size?$DN?$CFd?0?5StackTrace@ 005a2604 utilmem.obj - 0004:00002658 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 005a2658 utilrnd.obj - 0004:00002674 ??_C@_0L@LEMP@_clw?5wrong?$AA@ 005a2674 utilrnd.obj - 0004:00002680 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 005a2680 utilrnd.obj - 0004:00002690 ??_C@_0L@DINP@wrong?5_clw?$AA@ 005a2690 utilrnd.obj - 0004:000027c0 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 005a27c0 utilstr.obj - 0004:000027e8 ??_C@_0BH@GGIJ@BLCK?5is?5not?5big?5enough?$AA@ 005a27e8 utilstr.obj - 0004:00002800 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 005a2800 utilstr.obj - 0004:00002810 ??_C@_0BN@MDCJ@bad?5STN?5data?5or?5read?5failure?$AA@ 005a2810 utilstr.obj - 0004:00002830 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 005a2830 utilstr.obj - 0004:00002858 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 005a2858 utilstr.obj - 0004:00002868 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 005a2868 utilstr.obj - 0004:0000287c ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 005a287c utilstr.obj - 0004:0000288c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 005a288c utilstr.obj - 0004:000028a8 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 005a28a8 utilstr.obj - 0004:000028c4 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 005a28c4 utilstr.obj - 0004:000028d0 ??_C@_0BM@CLPI@why?5did?5CompareString?5fail?$DP?$AA@ 005a28d0 utilstr.obj - 0004:000028ec ??_C@_0CE@IKBC@TranslateRgch?5can?8t?5handle?5this?5@ 005a28ec utilstr.obj - 0004:00002910 ??_C@_07NPFI@bad?5osk?$AA@ 005a2910 utilstr.obj - 0004:00002918 ??_C@_06KJGB@bad?5st?$AA@ 005a2918 utilstr.obj - 0004:00002940 ?vcactSuspendCheckPointers@@3JA 005a2940 memwin.obj - 0004:00002944 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 005a2944 memwin.obj - 0004:00002958 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 005a2958 memwin.obj - 0004:0000296c ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 005a296c memwin.obj - 0004:00002984 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 005a2984 memwin.obj - 0004:00002994 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 005a2994 memwin.obj - 0004:000029b8 ??_C@_09BABB@hq?5is?5nil?$AA@ 005a29b8 memwin.obj - 0004:000029c4 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 005a29c4 memwin.obj - 0004:00002a00 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 005a2a00 appb.obj - 0004:00002a08 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 005a2a08 appb.obj - 0004:00002a6c ??_C@_07GHND@Generic?$AA@ 005a2a6c appb.obj - 0004:00002a74 ??_C@_0BC@PEHH@sizes?5don?8t?5match?$AA@ 005a2a74 appb.obj - 0004:00002a88 ??_C@_0BB@LOCN@cursor?5not?5found?$AA@ 005a2a88 appb.obj - 0004:00002a9c ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 005a2a9c appb.obj - 0004:00002aac ??_C@_0M@HLIB@Courier?5New?$AA@ 005a2aac appb.obj - 0004:00002ab8 ??_C@_0CH@KHLM@how?5did?5a?5tooltip?5become?5_pgobMo@ 005a2ab8 appb.obj - 0004:00002ae0 ??_C@_0BP@KFNN@unhandled?5cid?5in?5FEnableAppCmd?$AA@ 005a2ae0 appb.obj - 0004:00002b00 ??_C@_0BH@IDIP@nil?5hwnd?5in?5UpdateHwnd?$AA@ 005a2b00 appb.obj - 0004:00002b18 ??_C@_0P@FENM@marking?5failed?$AA@ 005a2b18 appb.obj - 0004:00002b28 ??_C@_0BE@FHLE@unknown?5clip?5format?$AA@ 005a2b28 appb.obj - 0004:00002b3c ??_C@_0BM@LGKN@Unbalanced?5call?5to?5PopModal?$AA@ 005a2b3c appb.obj - 0004:00002b58 ??_C@_0CN@JDDC@Don?8t?5know?5what?5to?5do?5with?5the?5m@ 005a2b58 appb.obj - 0004:00002b88 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 005a2b88 appb.obj - 0004:00002bb0 ??_C@_0N@DOFL@?$CFs?$CI?$CFd?$CJ?3?5?$CFs?$AN?6?$AA@ 005a2bb0 appb.obj - 0004:00002bc0 ??_C@_08IGFG@_Frame_W?$AA@ 005a2bc0 appb.obj - 0004:00002bf0 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 005a2bf0 clok.obj - 0004:00002bf8 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 005a2bf8 clok.obj - 0004:00002c08 ??_C@_0BI@KLNP@clok?5not?5in?5linked?5list?$AA@ 005a2c08 clok.obj - 0004:00002c20 ??_C@_0BH@FPKJ@_dtimAlarm?5should?5be?50?$AA@ 005a2c20 clok.obj - 0004:00002c38 ??_C@_0BD@MPJC@_timNext?5too?5small?$AA@ 005a2c38 clok.obj - 0004:00002c70 ?_cmmCMH@CMH@@1UCMM@1@A 005a2c70 cmd.obj - 0004:00002c78 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 005a2c78 cmd.obj - 0004:00002c88 ??_C@_07JCMM@bad?5hid?$AA@ 005a2c88 cmd.obj - 0004:00002c90 ??_C@_0BE@IGJC@why?5is?5the?5cid?5nil?$DP?$AA@ 005a2c90 cmd.obj - 0004:00002ca4 ??_C@_0O@FKP@not?5recording?$AA@ 005a2ca4 cmd.obj - 0004:00002cb4 ??_C@_0BN@CBME@not?5playing?5a?5command?5stream?$AA@ 005a2cb4 cmd.obj - 0004:00002cd4 ??_C@_0BD@CMOM@why?5is?5grfcmm?5nil?$DP?$AA@ 005a2cd4 cmd.obj - 0004:00002ce8 ??_C@_0BL@FHGP@event?5queue?5not?5big?5enough?$AA@ 005a2ce8 cmd.obj - 0004:00002d04 ??_C@_0BL@DLEE@why?5enqueue?5a?5nil?5command?$DP?$AA@ 005a2d04 cmd.obj - 0004:00002d20 ??_C@_0BN@MBPA@why?5check?5for?5a?5nil?5command?$DP?$AA@ 005a2d20 cmd.obj - 0004:00002d40 ??_C@_0BJ@IDBN@why?5flush?5a?5nil?5command?$DP?$AA@ 005a2d40 cmd.obj - 0004:00002d5c ??_C@_0CB@BCIM@recursing?5into?5FDispatchNextCmd?$CB@ 005a2d5c cmd.obj - 0004:00002d80 ??_C@_0CN@NJMF@some?5other?5gob?5is?5already?5tracki@ 005a2d80 cmd.obj - 0004:00002df0 ?vaptGray@@3UAPT@@A 005a2df0 gfx.obj - 0004:00002df8 ?vaptLtGray@@3UAPT@@A 005a2df8 gfx.obj - 0004:00002e00 ?vaptDkGray@@3UAPT@@A 005a2e00 gfx.obj - 0004:00002e08 ?_mpgfdgrfpt@@3QAKA 005a2e08 gfx.obj - 0004:00002e18 ?_mpgfdgrfptInv@@3QAKA 005a2e18 gfx.obj - 0004:00002e28 ??_C@_0M@ELAC@invalid?5ACR?$AA@ 005a2e28 gfx.obj - 0004:00002e34 ??_C@_0BH@KGNJ@unexpected?5Special?5ACR?$AA@ 005a2e34 gfx.obj - 0004:00002e4c ??_C@_0M@CEND@unknown?5acr?$AA@ 005a2e4c gfx.obj - 0004:00002e58 ??_C@_0BF@HMLG@unexpected?5Index?5ACR?$AA@ 005a2e58 gfx.obj - 0004:00002e70 ??_C@_0O@KIA@bad?5Index?5ACR?$AA@ 005a2e70 gfx.obj - 0004:00002e80 ??_C@_0BD@BMIG@unexpected?5RGB?5ACR?$AA@ 005a2e80 gfx.obj - 0004:00002e94 ??_C@_0BD@EIAJ@unexpected?5nil?5ACR?$AA@ 005a2e94 gfx.obj - 0004:00002ea8 ??_C@_0BC@JKJL@bad?5_gdd?4prcsClip?$AA@ 005a2ea8 gfx.obj - 0004:00002ebc ??_C@_0BE@JMIN@empty?5dst?5rectangle?$AA@ 005a2ebc gfx.obj - 0004:00002ed0 ??_C@_0BE@GMOL@empty?5src?5rectangle?$AA@ 005a2ed0 gfx.obj - 0004:00002ee4 ??_C@_0CO@PIMN@Source?5rectangle?5is?5outside?5the?5@ 005a2ee4 gfx.obj - 0004:00002f14 ??_C@_0BN@GNCH@Can?8t?5dissolve?5from?5this?5GPT?$AA@ 005a2f14 gfx.obj - 0004:00002f34 ??_C@_0M@NJP@Invalid?5onn?$AA@ 005a2f34 gfx.obj - 0004:00002f40 ??_C@_0CH@JIKM@Source?5rectangle?5not?5in?5source?5b@ 005a2f40 gfx.obj - 0004:00002f88 ?_cmmGOB@GOB@@1UCMM@CMH@@A 005a2f88 gob.obj - 0004:00002f90 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 005a2f90 gob.obj - 0004:00003020 ?_ginDefGob@GOB@@1JA 005a3020 gob.obj - 0004:00003024 ??_C@_0BL@LFFA@screen?5gob?5already?5created?$AA@ 005a3024 gob.obj - 0004:00003040 ??_C@_0BB@HLJB@corrupt?5gob?5tree?$AA@ 005a3040 gob.obj - 0004:00003054 ??_C@_0BH@LDKF@gob?5still?5has?5children?$AA@ 005a3054 gob.obj - 0004:0000306c ??_C@_0BB@BIPD@corrupt?5GOB?5tree?$AA@ 005a306c gob.obj - 0004:00003080 ??_C@_0BL@KBND@don?8t?5have?5the?5same?5parent?$AA@ 005a3080 gob.obj - 0004:0000309c ??_C@_0O@LIGN@bad?5gin?5value?$AA@ 005a309c gob.obj - 0004:000030ac ??_C@_07LNIO@bad?5gin?$AA@ 005a30ac gob.obj - 0004:000030b4 ??_C@_0BD@HAPB@no?5port?5to?5draw?5to?$AA@ 005a30b4 gob.obj - 0004:000030c8 ??_C@_07BFMJ@no?5hwnd?$AA@ 005a30c8 gob.obj - 0004:000030d0 ??_C@_07CILM@bad?5coo?$AA@ 005a30d0 gob.obj - 0004:000030d8 ??_C@_0O@JPAA@grfcust?5wrong?$AA@ 005a30d8 gob.obj - 0004:000030e8 ??_C@_0M@FIGF@wrong?5logic?$AA@ 005a30e8 gob.obj - 0004:000030f4 ??_C@_07PABM@nil?5hid?$AA@ 005a30f4 gob.obj - 0004:000030fc ??_C@_0BB@LCPC@bad?5pinned?5point?$AA@ 005a30fc gob.obj - 0004:00003110 ??_C@_0BO@NNPC@_hwnd?5based?5gob?5not?5at?5?$CI0?0?50?$CJ?$AA@ 005a3110 gob.obj - 0004:00003170 ??_C@_0BK@LBAJ@empty?5reference?5rectangle?$AA@ 005a3170 region.obj - 0004:0000318c ??_C@_0BI@NJNM@overflowed?5provided?5pgl?$AA@ 005a318c region.obj - 0004:000031a4 ??_C@_0P@EJHA@already?5filled?$AA@ 005a31a4 region.obj - 0004:000031b4 ??_C@_0BE@KNCN@row?5already?5started?$AA@ 005a31b4 region.obj - 0004:000031c8 ??_C@_0BD@DNOF@overflow?5in?5EndRow?$AA@ 005a31c8 region.obj - 0004:000031dc ??_C@_0CA@JIOJ@not?5an?5even?5number?5of?5xp?5values?$AA@ 005a31dc region.obj - 0004:000031fc ??_C@_0BC@OMHD@logic?5error?5above?$AA@ 005a31fc region.obj - 0004:00003210 ??_C@_0N@FJND@bad?5region?56?$AA@ 005a3210 region.obj - 0004:00003220 ??_C@_0N@KGGK@bad?5region?55?$AA@ 005a3220 region.obj - 0004:00003230 ??_C@_0N@MPN@bad?5region?54?$AA@ 005a3230 region.obj - 0004:00003240 ??_C@_0N@FJBI@bad?5region?53?$AA@ 005a3240 region.obj - 0004:00003250 ??_C@_0N@PDIP@bad?5region?52?$AA@ 005a3250 region.obj - 0004:00003260 ??_C@_0N@MDG@bad?5region?51?$AA@ 005a3260 region.obj - 0004:00003270 ??_C@_0CD@BMHN@why?5is?5_ScanNextCore?5being?5calle@ 005a3270 region.obj - 0004:00003294 ??_C@_0O@MEHM@bad?5Y?5scaling?$AA@ 005a3294 region.obj - 0004:000032a4 ??_C@_0O@GDE@bad?5X?5scaling?$AA@ 005a32a4 region.obj - 0004:000032b4 ??_C@_0BC@IADK@overflow?5in?5AddXp?$AA@ 005a32b4 region.obj - 0004:000032c8 ??_C@_0BM@ODBF@calling?5AddXp?5outside?5a?5row?$AA@ 005a32c8 region.obj - 0004:000032e4 ??_C@_0L@IENI@bad?5region?$AA@ 005a32e4 region.obj - 0004:000032f0 ??_C@_0M@MCGN@bad?5regions?$AA@ 005a32f0 region.obj - 0004:000032fc ??_C@_0CN@CMLG@region?5scanners?5have?5different?5o@ 005a32fc region.obj - 0004:0000332c ??_C@_0BF@MDBC@we?5shouldn?8t?5be?5here?$AA@ 005a332c region.obj - 0004:00003344 ??_C@_0BE@FHKJ@_dxp?5should?5be?5zero?$AA@ 005a3344 region.obj - 0004:00003358 ??_C@_08OJLB@bad?5_dxp?$AA@ 005a3358 region.obj - 0004:000033a8 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 005a33a8 appbwin.obj - 0004:000033c0 ??_C@_03BLAA@APP?$AA@ 005a33c0 appbwin.obj - 0004:000033c4 ??_C@_0BA@LBBH@Painting?5failed?$AA@ 005a33c4 appbwin.obj - 0004:000033d4 ??_C@_09HIMI@AssertDlg?$AA@ 005a33d4 appbwin.obj - 0004:000033e0 ??_C@_0CK@LIEM@Thread?5Assert?$CB?5?$CIY?5?$DN?5Ignore?0?5N?5?$DN?5@ 005a33e0 appbwin.obj - 0004:0000340c ??_C@_01BJG@?6?$AA@ 005a340c appbwin.obj - 0004:00003410 ??_C@_04HJKA@?$CF08x?$AA@ 005a3410 appbwin.obj - 0004:00003418 ??_C@_04JGFO@?$CF04x?$AA@ 005a3418 appbwin.obj - 0004:00003420 ??_C@_05NKJJ@?$CF08x?5?$AA@ 005a3420 appbwin.obj - 0004:00003428 ??_C@_0BB@DJOH@Some?5Header?5file?$AA@ 005a3428 appbwin.obj - 0004:0000343c ??_C@_0BI@LAFO@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?3?5?$CFs?$AA@ 005a343c appbwin.obj - 0004:00003454 ??_C@_0BE@PHBM@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?$AA@ 005a3454 appbwin.obj - 0004:00003468 ??_C@_00A@?$AA@ 005a3468 appbwin.obj - 0004:0000346c ??_C@_0O@JFGJ@bad?5cok?5value?$AA@ 005a346c appbwin.obj - 0004:0000347c ??_C@_0N@IFFC@bad?5bk?5value?$AA@ 005a347c appbwin.obj - 0004:000034b0 ?_hpal@GPT@@0PAUHPALETTE__@@A 005a34b0 gfxwin.obj - 0004:000034b4 ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 005a34b4 gfxwin.obj - 0004:000034b8 ?_cclrPal@GPT@@0JA 005a34b8 gfxwin.obj - 0004:000034bc ?_prgclr@GPT@@0PAUCLR@@A 005a34bc gfxwin.obj - 0004:000034c0 ?_cactPalCur@GPT@@0JA 005a34c0 gfxwin.obj - 0004:000034c4 ?_cactFlush@GPT@@0JA 005a34c4 gfxwin.obj - 0004:000034c8 ?_fPalettized@GPT@@0HA 005a34c8 gfxwin.obj - 0004:00003540 ??_C@_0BJ@PBFH@Shrinking?5palette?5failed?$AA@ 005a3540 gfxwin.obj - 0004:0000355c ??_C@_0BJ@KNCM@shrinking?5palette?5failed?$AA@ 005a355c gfxwin.obj - 0004:00003578 ??_C@_0CK@ECAI@Setting?5palette?5before?5vwig?4hdcA@ 005a3578 gfxwin.obj - 0004:000035a4 ??_C@_0O@NFNB@wrong?5CbEntry?$AA@ 005a35a4 gfxwin.obj - 0004:000035b4 ??_C@_0CG@ELJM@why?5doesn?8t?5the?5window?5have?5a?5pa@ 005a35b4 gfxwin.obj - 0004:000035dc ??_C@_08ILPC@Null?5hdc?$AA@ 005a35dc gfxwin.obj - 0004:000035e8 ??_C@_09BPPC@Null?5hwnd?$AA@ 005a35e8 gfxwin.obj - 0004:000035f4 ??_C@_0CD@LHJN@GetStockObject?$CISYSTEM_FONT?$CJ?5fail@ 005a35f4 gfxwin.obj - 0004:00003618 ??_C@_0CD@IPHD@GetStockObject?$CIWHITE_BRUSH?$CJ?5fail@ 005a3618 gfxwin.obj - 0004:0000363c ??_C@_0CA@BNGH@GetStockObject?$CINULL_PEN?$CJ?5failed?$AA@ 005a363c gfxwin.obj - 0004:0000365c ??_C@_0BJ@KIOC@pixels?5are?5still?5locked?$CB?$AA@ 005a365c gfxwin.obj - 0004:00003678 ??_C@_0BF@ELIM@cannot?5select?5bitmap?$AA@ 005a3678 gfxwin.obj - 0004:00003690 ??_C@_0BG@JHJN@Failed?5to?5GetDC?$CIhNil?$CJ?$AA@ 005a3690 gfxwin.obj - 0004:000036a8 ??_C@_0BE@DPNK@bad?5cbitPixel?5value?$AA@ 005a36a8 gfxwin.obj - 0004:000036bc ??_C@_0BO@BHDB@empty?5rectangle?5for?5offscreen?$AA@ 005a36bc gfxwin.obj - 0004:000036dc ??_C@_0CE@KGO@Can?8t?5set?5the?5palette?5of?5this?5po@ 005a36dc gfxwin.obj - 0004:00003700 ??_C@_0BP@CMGG@why?5is?5_cactDraw?5?$DO?5_cactFlush?$DP?$AA@ 005a3700 gfxwin.obj - 0004:00003720 ??_C@_0BG@LAEK@Unmatched?5unlock?5call?$AA@ 005a3720 gfxwin.obj - 0004:00003738 ??_C@_0P@HGNP@use?5solid?5fill?$AA@ 005a3738 gfxwin.obj - 0004:00003748 ??_C@_0CC@HEMK@fore?5and?5back?5colors?5still?5equal@ 005a3748 gfxwin.obj - 0004:0000376c ??_C@_0CI@FAP@Unsupported?5DrawRgch?$CI?$CJ?5foregroun@ 005a376c gfxwin.obj - 0004:00003794 ??_C@_0BL@JFGJ@bogus?5horizontal?5alignment?$AA@ 005a3794 gfxwin.obj - 0004:000037b0 ??_C@_0BJ@MJCK@bogus?5vertical?5alignment?$AA@ 005a37b0 gfxwin.obj - 0004:000037cc ??_C@_0BE@EMDF@Drawing?5MBMP?5failed?$AA@ 005a37cc gfxwin.obj - 0004:000037e0 ??_C@_0L@PAPO@bad?5_rcOff?$AA@ 005a37e0 gfxwin.obj - 0004:000037ec ??_C@_0BP@GGFE@Internal?5logical?5font?5mismatch?$AA@ 005a37ec gfxwin.obj - 0004:0000380c ??_C@_0BI@DCMG@internal?5brush?5mismatch?$AA@ 005a380c gfxwin.obj - 0004:00003824 ??_C@_05OOL@No?5DC?$AA@ 005a3824 gfxwin.obj - 0004:0000382c ??_C@_0BG@OFPP@Invalid?5window?5handle?$AA@ 005a382c gfxwin.obj - 0004:00003844 ??_C@_0BH@FOIP@system?5font?5not?5found?$CB?$AA@ 005a3844 gfxwin.obj - 0004:0000385c ??_C@_0BH@KAMK@Can?8t?5get?5logical?5font?$AA@ 005a385c gfxwin.obj - 0004:00003874 ??_C@_0BG@JGMN@Can?8t?5get?5system?5font?$AA@ 005a3874 gfxwin.obj - 0004:0000388c ??_C@_0BG@FBMG@font?5already?5in?5list?$CB?$AA@ 005a388c gfxwin.obj - 0004:000038a4 ??_C@_07EMGO@bad?5onn?$AA@ 005a38a4 gfxwin.obj - 0004:000038d0 ??_C@_08JNCF@nil?5hwnd?$AA@ 005a38d0 gobwin.obj - 0004:000038dc ??_C@_09MLCM@MDICLIENT?$AA@ 005a38dc gobwin.obj - 0004:000038e8 ??_C@_0BJ@HBI@can?8t?5destroy?5app?5window?$AA@ 005a38e8 gobwin.obj - 0004:00003904 ??_C@_0BJ@OPBN@GOB?5doesn?8t?5have?5an?5hwnd?$AA@ 005a3904 gobwin.obj - 0004:00003940 ??_C@_0BC@EDDP@bad?5client?5window?$AA@ 005a3940 menuwin.obj - 0004:00003954 ??_C@_0CO@PDBN@somebody?5took?5some?5menus?5out?5of?5@ 005a3954 menuwin.obj - 0004:00003984 ??_C@_0N@BINH@bad?5imniBase?$AA@ 005a3984 menuwin.obj - 0004:00003994 ??_C@_09DFOI@bad?5_cmnu?$AA@ 005a3994 menuwin.obj - 0004:000039e0 ??_C@_0P@JECG@negative?5sizes?$AA@ 005a39e0 groups.obj - 0004:000039f0 ??_C@_06JFMK@bad?5cb?$AA@ 005a39f0 groups.obj - 0004:000039f8 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 005a39f8 groups.obj - 0004:00003a08 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 005a3a08 groups.obj - 0004:00003a1c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 005a3a1c groups.obj - 0004:00003a30 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 005a3a30 groups.obj - 0004:00003a4c ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 005a3a4c groups.obj - 0004:00003a68 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 005a3a68 groups.obj - 0004:00003a80 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 005a3a80 groups.obj - 0004:00003aa8 ??_C@_08OO@wrong?5bo?$AA@ 005a3aa8 groups.obj - 0004:00003ab4 ??_C@_06NHBD@bad?5bo?$AA@ 005a3ab4 groups.obj - 0004:00003abc ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 005a3abc groups.obj - 0004:00003ad8 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 005a3ad8 groups.obj - 0004:00003b04 ??_C@_0BJ@LGAF@why?5is?5this?5marked?5free?$DP?$AA@ 005a3b04 groups.obj - 0004:00003b20 ??_C@_0BF@EMCD@everything?5is?5free?$CB?$DP?$AA@ 005a3b20 groups.obj - 0004:00003b38 ??_C@_0O@HCLM@already?5free?$CB?$AA@ 005a3b38 groups.obj - 0004:00003b48 ??_C@_0BB@PNKH@_cvFree?5is?5wrong?$AA@ 005a3b48 groups.obj - 0004:00003b5c ??_C@_0BE@MANP@flag?5area?5too?5small?$AA@ 005a3b5c groups.obj - 0004:00003b70 ??_C@_0DC@GFGD@why?5do?5these?5have?5different?5size@ 005a3b70 groups.obj - 0004:00003ba4 ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 005a3ba4 groups.obj - 0004:00003bc0 ??_C@_07PIIM@bad?5loc?$AA@ 005a3bc0 groups.obj - 0004:00003bc8 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 005a3bc8 groups.obj - 0004:00003bec ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 005a3bec groups.obj - 0004:00003c0c ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 005a3c0c groups.obj - 0004:00003c2c ??_C@_0O@EMCN@element?5free?$CB?$AA@ 005a3c2c groups.obj - 0004:00003c3c ??_C@_05HCAE@oops?$CB?$AA@ 005a3c3c groups.obj - 0004:00003c44 ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 005a3c44 groups.obj - 0004:00003c60 ??_C@_05JLFG@what?$DP?$AA@ 005a3c60 groups.obj - 0004:00003c68 ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 005a3c68 groups.obj - 0004:00003ca0 ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 005a3ca0 groups.obj - 0004:00003cbc ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 005a3cbc groups.obj - 0004:00003cd4 ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 005a3cd4 groups.obj - 0004:00003cf8 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 005a3cf8 groups.obj - 0004:00003d08 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 005a3d08 groups.obj - 0004:00003d1c ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 005a3d1c groups.obj - 0004:00003d34 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 005a3d34 groups.obj - 0004:00003d5c ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 005a3d5c groups.obj - 0004:00003d70 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 005a3d70 groups.obj - 0004:00003d84 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 005a3d84 groups.obj - 0004:00003d98 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 005a3d98 groups.obj - 0004:00003db0 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 005a3db0 groups.obj - 0004:00003dc8 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 005a3dc8 groups.obj - 0004:00003de0 ??_C@_0BM@NBGL@Cant?5insert?5from?5same?5group?$AA@ 005a3de0 groups.obj - 0004:00003dfc ??_C@_0CC@DEJH@Groups?5have?5different?5fixed?5size@ 005a3dfc groups.obj - 0004:00003e20 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 005a3e20 groups.obj - 0004:00003e34 ??_C@_0BA@BKJJ@_clocFree?5wrong?$AA@ 005a3e34 groups.obj - 0004:00003e44 ??_C@_0BE@CBDM@entry?5already?5free?$CB?$AA@ 005a3e44 groups.obj - 0004:00003e78 ??_C@_0CD@BJKN@cbExtra?5not?5multiple?5of?5size?$CIlon@ 005a3e78 groups2.obj - 0004:00003e9c ??_C@_0M@GFOH@unknown?5osk?$AA@ 005a3e9c groups2.obj - 0004:00003ea8 ??_C@_0BL@PADL@file?5corrupt?5or?5not?5a?5GSTB?$AA@ 005a3ea8 groups2.obj - 0004:00003ec4 ??_C@_0CL@EPJN@why?5is?5this?5string?5table?5growing@ 005a3ec4 groups2.obj - 0004:00003ef0 ??_C@_0BG@PPCE@string?5entry?5is?5free?$CB?$AA@ 005a3ef0 groups2.obj - 0004:00003f08 ??_C@_0BC@OIJF@last?5element?5free?$AA@ 005a3f08 groups2.obj - 0004:00003f1c ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 005a3f1c groups2.obj - 0004:00003f2c ??_C@_0BL@KJJP@first?5block?5not?5big?5enough?$AA@ 005a3f2c groups2.obj - 0004:00003f48 ??_C@_0BM@DEGE@overlapping?5strings?5in?5GSTB?$AA@ 005a3f48 groups2.obj - 0004:00003f64 ??_C@_0BM@GHNE@can?8t?5translate?5to?5this?5osk?$AA@ 005a3f64 groups2.obj - 0004:00003f80 ??_C@_07PNIM@bad?5bst?$AA@ 005a3f80 groups2.obj - 0004:00003f88 ??_C@_0O@HDCF@bad?5_cbstFree?$AA@ 005a3f88 groups2.obj - 0004:00003f98 ??_C@_0BA@HOMP@grst?5wrong?5size?$AA@ 005a3f98 groups2.obj - 0004:00003fa8 ??_C@_0BD@GPKO@_cbstFree?5is?5wrong?$AA@ 005a3fa8 groups2.obj - 0004:00003fbc ??_C@_0BF@BDL@rgbst?5area?5too?5small?$AA@ 005a3fbc groups2.obj - 0004:00003fd4 ??_C@_0BE@GGCD@grst?5area?5too?5small?$AA@ 005a3fd4 groups2.obj - 0004:00003fe8 ??_C@_0N@GMIA@_cbEntry?5bad?$AA@ 005a3fe8 groups2.obj - 0004:00003ff8 ??_C@_08IBNI@bad?5fcmp?$AA@ 005a3ff8 groups2.obj - 0004:00004004 ??_C@_0BA@BCJG@cbExtra?5is?5zero?$AA@ 005a4004 groups2.obj - 0004:00004014 ??_C@_0BF@IGAN@bad?5_cbstFree?5in?5GST?$AA@ 005a4014 groups2.obj - 0004:00004050 ?_rtiLast@CFL@@0JA 005a4050 chunk.obj - 0004:00004054 ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 005a4054 chunk.obj - 0004:00004070 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 005a4070 chunk.obj - 0004:00004090 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 005a4090 chunk.obj - 0004:000040a8 ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 005a40a8 chunk.obj - 0004:000040b8 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 005a40b8 chunk.obj - 0004:000040dc ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 005a40dc chunk.obj - 0004:000040f0 ??_C@_08EHFM@Bad?5RTIE?$AA@ 005a40f0 chunk.obj - 0004:000040fc ??_C@_09HBDJ@bad?5index?$AA@ 005a40fc chunk.obj - 0004:00004108 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 005a4108 chunk.obj - 0004:00004128 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 005a4128 chunk.obj - 0004:0000413c ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 005a413c chunk.obj - 0004:0000414c ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 005a414c chunk.obj - 0004:0000415c ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 005a415c chunk.obj - 0004:00004178 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 005a4178 chunk.obj - 0004:00004194 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 005a4194 chunk.obj - 0004:000041ac ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 005a41ac chunk.obj - 0004:000041d0 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 005a41d0 chunk.obj - 0004:000041ec ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 005a41ec chunk.obj - 0004:00004200 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 005a4200 chunk.obj - 0004:00004214 ??_C@_06CFJE@bad?5fp?$AA@ 005a4214 chunk.obj - 0004:0000421c ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 005a421c chunk.obj - 0004:00004230 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 005a4230 chunk.obj - 0004:00004240 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 005a4240 chunk.obj - 0004:0000424c ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 005a424c chunk.obj - 0004:00004270 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 005a4270 chunk.obj - 0004:00004288 ??_C@_0M@INOI@corrupt?5crp?$AA@ 005a4288 chunk.obj - 0004:00004294 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 005a4294 chunk.obj - 0004:000042b4 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 005a42b4 chunk.obj - 0004:000042cc ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 005a42cc chunk.obj - 0004:000042e4 ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 005a42e4 chunk.obj - 0004:00004304 ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 005a4304 chunk.obj - 0004:00004314 ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 005a4314 chunk.obj - 0004:00004338 ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 005a4338 chunk.obj - 0004:00004364 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 005a4364 chunk.obj - 0004:0000437c ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 005a437c chunk.obj - 0004:00004394 ??_C@_0BF@CKCG@corrupt?5chunky?5index?$AA@ 005a4394 chunk.obj - 0004:000043ac ??_C@_0BA@GFFG@already?5a?5child?$AA@ 005a43ac chunk.obj - 0004:000043bc ??_C@_0BB@GINM@bad?5move?5request?$AA@ 005a43bc chunk.obj - 0004:000043d0 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 005a43d0 chunk.obj - 0004:000043e0 ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 005a43e0 chunk.obj - 0004:00004418 ??_C@_03JFP@MIA?$AA@ 005a4418 chunk.obj - 0004:0000441c ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 005a441c chunk.obj - 0004:00004440 ??_C@_0M@OPIM@not?5a?5child?$AA@ 005a4440 chunk.obj - 0004:0000444c ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 005a444c chunk.obj - 0004:0000445c ??_C@_07NFMH@overlap?$AA@ 005a445c chunk.obj - 0004:00004464 ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 005a4464 chunk.obj - 0004:00004470 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 005a4470 chunk.obj - 0004:00004498 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 005a4498 chunk.obj - 0004:000044a4 ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 005a44a4 chunk.obj - 0004:000044b0 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 005a44b0 chunk.obj - 0004:000044c4 ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 005a44c4 chunk.obj - 0004:000044f0 ??_C@_0CI@KFLB@src?5not?5a?5child?5or?5dest?5already?5@ 005a44f0 chunk.obj - 0004:00004518 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 005a4518 chunk.obj - 0004:00004528 ??_C@_07BDGM@bad?5crp?$AA@ 005a4528 chunk.obj - 0004:00004530 ??_C@_0CE@COLA@why?5is?5this?5cnom?5already?5in?5the?5@ 005a4530 chunk.obj - 0004:00004554 ??_C@_0BK@ECCP@_FFindCtgCno?5doesn?8t?5work?$AA@ 005a4554 chunk.obj - 0004:00004570 ??_C@_0CL@CGLG@how?5can?5the?5root?5already?5have?5be@ 005a4570 chunk.obj - 0004:0000459c ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 005a459c chunk.obj - 0004:000045d0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 005a45d0 codec.obj - 0004:000045f0 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 005a45f0 codec.obj - 0004:00004608 ??_C@_08DJLA@nil?5cfmt?$AA@ 005a4608 codec.obj - 0004:00004614 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 005a4614 codec.obj - 0004:00004634 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 005a4634 codec.obj - 0004:00004670 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 005a4670 codkauai.obj - 0004:00004694 ??_C@_07DEPO@bad?5len?$AA@ 005a4694 codkauai.obj - 0004:0000469c ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 005a469c codkauai.obj - 0004:000046ac ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 005a46ac codkauai.obj - 0004:000046d0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 005a46d0 codkauai.obj - 0004:000046e4 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 005a46e4 codkauai.obj - 0004:000046f8 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 005a46f8 codkauai.obj - 0004:00004714 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 005a4714 codkauai.obj - 0004:00004744 ??_C@_0P@KAFA@still?5attached?$AA@ 005a4744 crf.obj - 0004:00004754 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 005a4754 crf.obj - 0004:00004770 ??_C@_0CB@ILAK@someone?5still?5refers?5to?5this?5CRF@ 005a4770 crf.obj - 0004:00004794 ??_C@_0BD@BILB@BACO?5not?5attached?$CB?$AA@ 005a4794 crf.obj - 0004:000047a8 ??_C@_0BF@MMHE@how?5did?5this?5happen?$DP?$AA@ 005a47a8 crf.obj - 0004:000047c0 ??_C@_0P@DLJO@crep?5too?5small?$AA@ 005a47c0 crf.obj - 0004:000047d0 ??_C@_0L@BDOO@bad?5pfnrpo?$AA@ 005a47d0 crf.obj - 0004:000047dc ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 005a47dc crf.obj - 0004:000047fc ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 005a47fc crf.obj - 0004:00004818 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 005a4818 crf.obj - 0004:00004834 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 005a4834 crf.obj - 0004:00004850 ??_C@_0CA@FCHL@baco?5claims?5to?5not?5be?5attached?$CB?$AA@ 005a4850 crf.obj - 0004:00004870 ??_C@_0BC@IJA@nil?5object?5reader?$AA@ 005a4870 crf.obj - 0004:000048a4 ?vftgCreator@FIL@@2JA 005a48a4 file.obj - 0004:000048a8 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 005a48a8 file.obj - 0004:000048bc ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 005a48bc file.obj - 0004:000048d0 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 005a48d0 file.obj - 0004:000048e4 ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 005a48e4 file.obj - 0004:000048fc ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 005a48fc file.obj - 0004:00004914 ??_C@_0BG@MHHD@writing?5outside?5flo?52?$AA@ 005a4914 file.obj - 0004:0000492c ??_C@_0BO@MEMN@why?5did?5CchTranslateRgb?5fail?$DP?$AA@ 005a492c file.obj - 0004:0000494c ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 005a494c file.obj - 0004:00004964 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 005a4964 file.obj - 0004:0000497c ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 005a497c file.obj - 0004:00004990 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 005a4990 file.obj - 0004:000049a8 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 005a49a8 file.obj - 0004:000049bc ??_C@_0BH@KHHD@reading?5outside?5blck?52?$AA@ 005a49bc file.obj - 0004:000049d4 ??_C@_0BH@BMPJ@writing?5outside?5blck?52?$AA@ 005a49d4 file.obj - 0004:000049ec ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 005a49ec file.obj - 0004:00004a00 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 005a4a00 file.obj - 0004:00004a14 ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 005a4a14 file.obj - 0004:00004a28 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 005a4a28 file.obj - 0004:00004a44 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 005a4a44 file.obj - 0004:00004a5c ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 005a4a5c file.obj - 0004:00004a78 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 005a4a78 file.obj - 0004:00004a98 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 005a4a98 file.obj - 0004:00004ae0 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 005a4ae0 filewin.obj - 0004:00004afc ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 005a4afc filewin.obj - 0004:00004b18 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 005a4b18 filewin.obj - 0004:00004b38 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 005a4b38 filewin.obj - 0004:00004b48 ??_C@_0P@DBGM@rename?5failure?$AA@ 005a4b48 filewin.obj - 0004:00004b58 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 005a4b58 filewin.obj - 0004:00004b88 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 005a4b88 filewin.obj - 0004:00004bbc ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 005a4bbc filewin.obj - 0004:00004c08 ?vftgTemp@@3JA 005a4c08 fniwin.obj - 0004:00004c10 ??_C@_08GBDA@Temp?$CF04x?$AA@ 005a4c10 fniwin.obj - 0004:00004c1c ??_C@_04POLC@?$CFc?3?2?$AA@ 005a4c1c fniwin.obj - 0004:00004c24 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 005a4c24 fniwin.obj - 0004:00004c3c ??_C@_07JFJJ@Bad?5FTG?$AA@ 005a4c3c fniwin.obj - 0004:00004c44 ??_C@_07NLCI@bad?5fni?$AA@ 005a4c44 fniwin.obj - 0004:00004c4c ??_C@_0N@NEA@file?5is?5open?$AA@ 005a4c4c fniwin.obj - 0004:00004c5c ??_C@_0BC@IKJG@expected?5filename?$AA@ 005a4c5c fniwin.obj - 0004:00004c70 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 005a4c70 fniwin.obj - 0004:00004c80 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 005a4c80 fniwin.obj - 0004:00004c94 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 005a4c94 fniwin.obj - 0004:00004cac ??_C@_0P@EFJD@unexpected?5dir?$AA@ 005a4cac fniwin.obj - 0004:00004cbc ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 005a4cbc fniwin.obj - 0004:00004ccc ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 005a4ccc fniwin.obj - 0004:00004ce0 ??_C@_01FDHG@?$CK?$AA@ 005a4ce0 fniwin.obj - 0004:00004ce4 ??_C@_0CB@CEDB@How?5did?5we?5fall?5through?5to?5here?$DP@ 005a4ce4 fniwin.obj - 0004:00004d08 ??_C@_01PJCK@?4?$AA@ 005a4d08 fniwin.obj - 0004:00004d0c ??_C@_0CJ@IFJA@must?5initialize?5the?5FNE?5before?5u@ 005a4d0c fniwin.obj - 0004:00004d38 ??_C@_0O@BKPH@wrong?5_prgftg?$AA@ 005a4d38 fniwin.obj - 0004:00004d64 ??_C@_0BC@MABH@shrinking?5failed?$CB?$AA@ 005a4d64 mbmp.obj - 0004:00004d78 ??_C@_0BN@HMNP@Empty?5source?5bitmap?5for?5MBMP?$AA@ 005a4d78 mbmp.obj - 0004:00004d98 ??_C@_0BC@JEGH@Invalid?5rectangle?$AA@ 005a4d98 mbmp.obj - 0004:00004dac ??_C@_0BL@DNGM@Attempted?5to?5read?5bad?5MBMP?$AA@ 005a4dac mbmp.obj - 0004:00004dc8 ??_C@_0BC@ICFM@Wrong?5sized?5block?$AA@ 005a4dc8 mbmp.obj - 0004:00004ddc ??_C@_0BA@DPNI@bad?5row?5in?5MBMP?$AA@ 005a4ddc mbmp.obj - 0004:00004dec ??_C@_0BC@FLNL@_hqrgb?5wrong?5size?$AA@ 005a4dec mbmp.obj - 0004:00004e00 ??_C@_0O@JBAC@_cbRgcb?5wrong?$AA@ 005a4e00 mbmp.obj - 0004:00004e10 ??_C@_0BJ@GIGP@compressed?5bitmap?5is?5bad?$AA@ 005a4e10 mbmp.obj - 0004:00004e2c ??_C@_0BG@EIAF@palette?5is?5wrong?5size?$AA@ 005a4e2c mbmp.obj - 0004:00004e44 ??_C@_0BH@FEMH@Bitmap?5data?5wrong?5size?$AA@ 005a4e44 mbmp.obj - 0004:00004e5c ??_C@_0BH@DGGF@Empty?5bitmap?5rectangle?$AA@ 005a4e5c mbmp.obj - 0004:00004e74 ??_C@_0DE@EEJE@bad?5compression?5type?5or?5bitmap?5f@ 005a4e74 mbmp.obj - 0004:00004ea8 ??_C@_0BE@GKKF@not?5an?58?9bit?5bitmap?$AA@ 005a4ea8 mbmp.obj - 0004:00004ebc ??_C@_0BA@NOIG@bad?5bitmap?5file?$AA@ 005a4ebc mbmp.obj - 0004:00004ecc ??_C@_0BK@PENP@Current?5file?5pos?5is?5wrong?$AA@ 005a4ecc mbmp.obj - 0004:00004ee8 ??_C@_0CK@OAED@Palette?5has?5different?5format?5fro@ 005a4ee8 mbmp.obj - 0004:00004f14 ??_C@_0P@JFKP@Invalid?5height?$AA@ 005a4f14 mbmp.obj - 0004:00004f24 ??_C@_0O@KELN@Invalid?5width?$AA@ 005a4f24 mbmp.obj - 0004:00004f34 ??_C@_0BG@IDHE@Invalid?5color?5palette?$AA@ 005a4f34 mbmp.obj - 0004:00004f6c ?vluSysVolFake@@3KA 005a4f6c sndm.obj - 0004:00004f70 ??_C@_0BB@DFGC@bad?5_cactSuspend?$AA@ 005a4f70 sndm.obj - 0004:00004f84 ??_C@_0BI@CEDJ@couldn?8t?5allocate?5queue?$AA@ 005a4f84 sndm.obj - 0004:00004fc0 ?vcbMaxMemWave@SDAM@@2JA 005a4fc0 sndam.obj - 0004:00004ff8 ??_C@_0P@HMJA@bad?5loop?5count?$AA@ 005a4ff8 sndam.obj - 0004:00005008 ??_C@_0BE@PDLM@Audioman?5messed?5up?$CB?$AA@ 005a5008 sndam.obj - 0004:00005040 ??_C@_0CB@BCE@calling?5_VlmGetSys?5with?5nil?5_hmo@ 005a5040 mididev.obj - 0004:00005064 ??_C@_0CB@ELPC@calling?5_SetSysVol?5with?5nil?5_hmo@ 005a5064 mididev.obj - 0004:000050a8 ??_C@_0BO@JNJB@MSMIX?5still?5has?5active?5sounds?$AA@ 005a50a8 mididev2.obj - 0004:000050c8 ??_C@_0BD@MPCK@MISI?5still?5active?$CB?$AA@ 005a50c8 mididev2.obj - 0004:000050dc ??_C@_0L@DEEF@nil?5thread?$AA@ 005a50dc mididev2.obj - 0004:000050e8 ??_C@_09IDNG@nil?5event?$AA@ 005a50e8 mididev2.obj - 0004:000050f4 ??_C@_0BB@HDKE@already?5playing?$CB?$AA@ 005a50f4 mididev2.obj - 0004:00005108 ??_C@_0BH@FADN@Bad?5pvData?1pmdws?5combo?$AA@ 005a5108 mididev2.obj - 0004:00005120 ??_C@_0M@DHJK@Wrong?5pmdws?$AA@ 005a5120 mididev2.obj - 0004:0000512c ??_C@_0BF@IOMN@what?5buffer?5is?5this?$DP?$AA@ 005a512c mididev2.obj - 0004:00005144 ??_C@_0CB@KOKF@calling?5_GetSysVol?5with?5nil?5_hms@ 005a5144 mididev2.obj - 0004:00005168 ??_C@_0CB@BMGG@calling?5_SetSysVol?5with?5nil?5_hms@ 005a5168 mididev2.obj - 0004:0000518c ??_C@_0CC@EBKD@WMS?5still?5has?5some?5active?5buffer@ 005a518c mididev2.obj - 0004:000051b0 ??_C@_0P@GIHP@midiStreamStop?$AA@ 005a51b0 mididev2.obj - 0004:000051c0 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 005a51c0 mididev2.obj - 0004:000051d4 ??_C@_0BA@JHNK@midiStreamPause?$AA@ 005a51d4 mididev2.obj - 0004:000051e4 ??_C@_0O@MCEN@midiStreamOut?$AA@ 005a51e4 mididev2.obj - 0004:000051f4 ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 005a51f4 mididev2.obj - 0004:00005208 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 005a5208 mididev2.obj - 0004:0000521c ??_C@_0BA@PKJI@midiStreamClose?$AA@ 005a521c mididev2.obj - 0004:0000522c ??_C@_0P@FAGH@midiStreamOpen?$AA@ 005a522c mididev2.obj - 0004:0000523c ??_C@_09GPGB@WINMM?4DLL?$AA@ 005a523c mididev2.obj - 0004:00005248 ??_C@_0BB@KAHJ@negative?5_cmhOut?$AA@ 005a5248 mididev2.obj - 0004:0000525c ??_C@_0BJ@HJFO@why?5is?5_cmhOut?5non?9zero?$DP?$AA@ 005a525c mididev2.obj - 0004:00005278 ??_C@_0CJ@NKGD@closing?5a?5stream?5that?5still?5has?5@ 005a5278 mididev2.obj - 0004:000052a4 ??_C@_0BF@NJBO@pmh?9?$DOlpData?5is?5wrong?$AA@ 005a52a4 mididev2.obj - 0004:000052bc ??_C@_0N@NPMO@corrupt?5msir?$AA@ 005a52bc mididev2.obj - 0004:000052cc ??_C@_09NNCE@wrong?5hms?$AA@ 005a52cc mididev2.obj - 0004:000052d8 ??_C@_0BI@DGGH@Still?5have?5some?5buffers?$AA@ 005a52d8 mididev2.obj - 0004:000052f0 ??_C@_0BC@ELJP@Still?5have?5an?5HMS?$AA@ 005a52f0 mididev2.obj - 0004:00005348 ?_cmmGVDS@GVDS@@1UCMM@CMH@@A 005a5348 video.obj - 0004:00005350 ?_rgcmmeGVDS@GVDS@@0QAUCMME@CMH@@A 005a5350 video.obj - 0004:00005360 ??_C@_08KPNA@avivideo?$AA@ 005a5360 video.obj - 0004:0000536c ??_C@_0BI@HPNN@getting?5position?5failed?$AA@ 005a536c video.obj - 0004:00005384 ??_C@_0P@ICM@seeking?5failed?$AA@ 005a5384 video.obj - 0004:000053b8 ??_C@_0L@DAPM@nil?5script?$AA@ 005a53b8 screxe.obj - 0004:000053c4 ??_C@_09BCNL@nil?5stack?$AA@ 005a53c4 screxe.obj - 0004:000053d0 ??_C@_0DI@EHG@Script?5version?5doesn?8t?5match?5scr@ 005a53d0 screxe.obj - 0004:00005408 ??_C@_0BK@EFFE@No?5version?5info?5on?5script?$AA@ 005a5408 screxe.obj - 0004:00005424 ??_C@_0BE@DJNF@bad?5var?5instruction?$AA@ 005a5424 screxe.obj - 0004:00005438 ??_C@_0BA@OBOI@bad?5instruction?$AA@ 005a5438 screxe.obj - 0004:00005448 ??_C@_0BC@GIIF@script?5not?5paused?$AA@ 005a5448 screxe.obj - 0004:0000545c ??_C@_05MPAG@_parm?$AA@ 005a545c screxe.obj - 0004:00005464 ??_C@_06DPCM@_cparm?$AA@ 005a5464 screxe.obj - 0004:0000546c ??_C@_0O@GLPC@Runtime?5error?$AA@ 005a546c screxe.obj - 0004:0000547c ??_C@_0BI@NKLN@Runtime?5error?5in?5script?$AA@ 005a547c screxe.obj - 0004:00005494 ??_C@_0BM@HHFO@Script?5?$CI?8?$CFf?8?0?50x?$CFx?0?5?$CFd?$CJ?3?5?$CFs?$AA@ 005a5494 screxe.obj - 0004:000054b0 ??_C@_0BG@BPIN@why?5did?5_QlwGet?5fail?$DP?$AA@ 005a54b0 screxe.obj - 0004:000054c8 ??_C@_09PGGB@why?5fail?$DP?$AA@ 005a54c8 screxe.obj - 0004:000054d4 ??_C@_0BK@JMEC@Setting?5dst?5string?5failed?$AA@ 005a54d4 screxe.obj - 0004:000054f0 ??_C@_0CI@NDGD@Source?5string?5doesn?8t?5exist?5?$CIsti@ 005a54f0 screxe.obj - 0004:00005518 ??_C@_0CK@JFKB@Source?5string?52?5doesn?8t?5exist?5?$CIs@ 005a5518 screxe.obj - 0004:00005544 ??_C@_0CK@JCGG@Source?5string?51?5doesn?8t?5exist?5?$CIs@ 005a5544 screxe.obj - 0004:00005570 ??_C@_0BM@GENM@Merging?5string?5table?5failed?$AA@ 005a5570 screxe.obj - 0004:0000558c ??_C@_0CJ@IJOA@Reading?5string?5table?5failed?5?$CIcno@ 005a558c screxe.obj - 0004:000055b8 ??_C@_0CB@NFPE@no?5rca?5to?5read?5string?5table?5from@ 005a55b8 screxe.obj - 0004:000055dc ??_C@_0CI@FDAP@no?5string?5registry?5to?5put?5the?5st@ 005a55dc screxe.obj - 0004:00005604 ??_C@_0CC@CEFC@Putting?5string?5in?5registry?5faile@ 005a5604 screxe.obj - 0004:00005628 ??_C@_0CK@EBJH@Pushing?5uninitialized?5script?5var@ 005a5628 screxe.obj - 0004:00005674 ?_cactLast@DOCB@@1JA 005a5674 docb.obj - 0004:00005678 ?_pdocbFirst@DOCB@@1PAV1@A 005a5678 docb.obj - 0004:00005680 ?_cmmDDG@DDG@@1UCMM@CMH@@A 005a5680 docb.obj - 0004:00005688 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 005a5688 docb.obj - 0004:00005758 ?_cmmDSG@DSG@@1UCMM@CMH@@A 005a5758 docb.obj - 0004:00005760 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 005a5760 docb.obj - 0004:00005790 ??_C@_0CE@BPAB@why?5wasn?8t?5this?5child?5doc?5releas@ 005a5790 docb.obj - 0004:000057b4 ??_C@_0CI@EBJI@we?8re?5recursing?5into?5the?5DOCB?3?3R@ 005a57b4 docb.obj - 0004:000057dc ??_C@_0CN@JCIE@why?5are?5there?5still?5DDG?8s?5open?5o@ 005a57dc docb.obj - 0004:0000580c ??_C@_0BC@HEOH@corrupt?5docb?5tree?$AA@ 005a580c docb.obj - 0004:00005820 ??_C@_0CG@LHOP@The?5clipboard?5document?5is?5going?5@ 005a5820 docb.obj - 0004:00005848 ??_C@_0CJ@OGCN@doc?5is?5still?5being?5displayed?5by?5@ 005a5848 docb.obj - 0004:00005874 ??_C@_0BI@KGKL@docb?5still?5has?5children?$AA@ 005a5874 docb.obj - 0004:0000588c ??_C@_0BK@DGAM@Release?5not?5called?5first?$CB?$AA@ 005a588c docb.obj - 0004:000058a8 ??_C@_0DF@HACK@why?5are?5there?5no?5DDGs?5for?5this?5d@ 005a58a8 docb.obj - 0004:000058e0 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 005a58e0 docb.obj - 0004:000058f0 ??_C@_0BI@KKOJ@pddg?5not?5in?5docb?8s?5list?$AA@ 005a58f0 docb.obj - 0004:00005908 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 005a5908 docb.obj - 0004:00005914 ??_C@_09IDMC@Clipboard?$AA@ 005a5914 docb.obj - 0004:00005920 ??_C@_0BP@ELKC@unhandled?5cid?5in?5FEnableDdgCmd?$AA@ 005a5920 docb.obj - 0004:00005940 ??_C@_0CF@MEK@we?8re?5recursing?5into?5the?5destruc@ 005a5940 docb.obj - 0004:00005968 ??_C@_0CA@OKAI@the?5DSG?5wasn?8t?5added?5to?5the?5DMW?$AA@ 005a5968 docb.obj - 0004:00005988 ??_C@_0BF@HMHJ@DSED?5tree?5is?5trashed?$AA@ 005a5988 docb.obj - 0004:000059a0 ??_C@_0BC@CHBK@corrupt?5DSED?5tree?$AA@ 005a59a0 docb.obj - 0004:000059b4 ??_C@_0O@MJPM@DSED?5tree?5bad?$AA@ 005a59b4 docb.obj - 0004:000059c4 ??_C@_0CC@BIDP@pdsgSplit?5is?5not?5a?5registered?5DS@ 005a59c4 docb.obj - 0004:000059e8 ??_C@_0CA@BLAJ@no?5DSGs?5yet?0?5so?5can?8t?5split?5one?$AA@ 005a59e8 docb.obj - 0004:00005a08 ??_C@_0BG@IHEB@DSED?5root?5value?5wrong?$AA@ 005a5a08 docb.obj - 0004:00005a20 ??_C@_0P@LHMI@bad?5root?5value?$AA@ 005a5a20 docb.obj - 0004:00005a30 ??_C@_0O@KHGM@bad?5DSED?5tree?$AA@ 005a5a30 docb.obj - 0004:00005a40 ??_C@_08HJOC@bad?5node?$AA@ 005a5a40 docb.obj - 0004:00005a4c ??_C@_0BH@HFEJ@node?5should?5have?5a?5dsg?$AA@ 005a5a4c docb.obj - 0004:00005a64 ??_C@_0BN@JMDO@nil?5parent?5but?5not?5the?5root?$CB?$AA@ 005a5a64 docb.obj - 0004:00005a84 ??_C@_0BF@EMHD@split?5can?8t?5be?5moved?$AA@ 005a5a84 docb.obj - 0004:00005a9c ??_C@_0BB@FBIP@node?5count?5wrong?$AA@ 005a5a9c docb.obj - 0004:00005ab0 ??_C@_0BC@GHEO@idsedRight?5is?5nil?$AA@ 005a5ab0 docb.obj - 0004:00005ac4 ??_C@_08GBPF@bad?5edge?$AA@ 005a5ac4 docb.obj - 0004:00005ad0 ??_C@_0CD@NKGA@dsed?5tree?5is?5mangled?5or?5has?5a?5lo@ 005a5ad0 docb.obj - 0004:00005af4 ??_C@_0BO@EEIG@right?5child?8s?5parent?5is?5wrong?$AA@ 005a5af4 docb.obj - 0004:00005b14 ??_C@_0BN@JDOP@left?5child?8s?5parent?5is?5wrong?$AA@ 005a5b14 docb.obj - 0004:00005b34 ??_C@_0BC@HGNB@nil?5pdsg?5expected?$AA@ 005a5b34 docb.obj - 0004:00005b48 ??_C@_0BC@EGIE@free?5right?5child?$CB?$AA@ 005a5b48 docb.obj - 0004:00005b5c ??_C@_0BL@FCAG@non?9nil?5left?5but?5nil?5right?$AA@ 005a5b5c docb.obj - 0004:00005b78 ??_C@_0BB@POPH@free?5left?5child?$CB?$AA@ 005a5b78 docb.obj - 0004:00005b8c ??_C@_0BB@BEEP@bad?5_dsno?5in?5DSG?$AA@ 005a5b8c docb.obj - 0004:00005ba0 ??_C@_0BI@HFOK@left?5nil?0?5but?5right?5not?$AA@ 005a5ba0 docb.obj - 0004:00005bb8 ??_C@_0BK@PKFL@dsed?4idsedPar?5isn?8t?5right?$AA@ 005a5bb8 docb.obj - 0004:00005bd4 ??_C@_0L@MEPF@free?5node?$CB?$AA@ 005a5bd4 docb.obj - 0004:00005be0 ??_C@_0BP@NDI@some?5DSEDs?0?5but?5nil?5_idsedRoot?$AA@ 005a5be0 docb.obj - 0004:00005c00 ??_C@_0CC@NHIN@no?5paldsed?5but?5_idsedRoot?5not?5ni@ 005a5c00 docb.obj - 0004:00005c24 ??_C@_0BL@OHLG@must?5split?5an?5existing?5DSG?$AA@ 005a5c24 docb.obj - 0004:00005c40 ??_C@_0CI@PJOP@why?5are?5we?5splitting?5an?5unattach@ 005a5c40 docb.obj - 0004:00005c68 ??_C@_0DC@CLKB@must?5specify?5exactly?5one?5of?5?$CIfds@ 005a5c68 docb.obj - 0004:00005cbc ??_C@_0DI@KPOC@can?8t?5change?5the?5clipboard?5while@ 005a5cbc clip.obj - 0004:00005cf4 ??_C@_0DI@JOCL@can?8t?5import?5the?5clipboard?5while@ 005a5cf4 clip.obj - 0004:00005d2c ??_C@_0BP@ELFF@Already?5exporting?5or?5importing?$AA@ 005a5d2c clip.obj - 0004:00005d4c ??_C@_0O@KBJ@not?5exporting?$AA@ 005a5d4c clip.obj - 0004:00005d5c ??_C@_0BO@NMNE@both?5importing?5and?5exporting?$CB?$AA@ 005a5d5c clip.obj - 0004:00005da0 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 005a5da0 rtxt.obj - 0004:00005da8 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 005a5da8 rtxt.obj - 0004:00005e98 ??_C@_0CK@FOFE@stream?5doesn?8t?5end?5with?5a?5carria@ 005a5e98 rtxt.obj - 0004:00005ec4 ??_C@_0CD@LPLH@ibMac?5not?5divisible?5by?5size?$CIacha@ 005a5ec4 rtxt.obj - 0004:00005ee8 ??_C@_0BM@KLFJ@BSF?5has?5a?5partial?5character?$AA@ 005a5ee8 rtxt.obj - 0004:00005f04 ??_C@_0BG@MPE@Can?8t?5translate?5a?5BSF?$AA@ 005a5f04 rtxt.obj - 0004:00005f1c ??_C@_0CF@BNNC@IbMac?$CI?$CJ?5not?5divisible?5by?5size?$CIac@ 005a5f1c rtxt.obj - 0004:00005f44 ??_C@_0BF@PJHC@bad?5_cactSuspendUndo?$AA@ 005a5f44 rtxt.obj - 0004:00005f5c ??_C@_0BE@BMIO@isolated?5line?5feeds?$AA@ 005a5f5c rtxt.obj - 0004:00005f70 ??_C@_0CJ@FMK@last?5character?5is?5not?5a?5return?5c@ 005a5f70 rtxt.obj - 0004:00005f9c ??_C@_0CH@IHHP@can?8t?5use?5invert?5as?5a?5background@ 005a5f9c rtxt.obj - 0004:00005fc4 ??_C@_0CB@JELN@Can?8t?5do?5a?5normal?5save?5?9?5no?5file@ 005a5fc4 rtxt.obj - 0004:00005fe8 ??_C@_0BF@KGIC@non?9increasing?5mpe?8s?$AA@ 005a5fe8 rtxt.obj - 0004:00006000 ??_C@_0BG@IMMF@bad?5default?5font?5size?$AA@ 005a6000 rtxt.obj - 0004:00006018 ??_C@_0P@IJMB@bad?5font?5entry?$AA@ 005a6018 rtxt.obj - 0004:00006028 ??_C@_09OCFF@no?5MPE?8s?$CB?$AA@ 005a6028 rtxt.obj - 0004:00006034 ??_C@_0BA@EEMO@cact?5overflowed?$AA@ 005a6034 rtxt.obj - 0004:00006044 ??_C@_0BC@BPKD@bad?5index?5into?5AG?$AA@ 005a6044 rtxt.obj - 0004:00006058 ??_C@_0M@FMGH@invalid?5onn?$AA@ 005a6058 rtxt.obj - 0004:00006064 ??_C@_0BC@GHIO@bad?5group?5element?$AA@ 005a6064 rtxt.obj - 0004:00006078 ??_C@_0CE@BPKC@why?5is?5there?5an?5active?5undo?5reco@ 005a6078 rtxt.obj - 0004:0000609c ??_C@_0BH@JGKA@new?5para?5after?5old?5one?$AA@ 005a609c rtxt.obj - 0004:000060b4 ??_C@_0BI@FHDH@new?5para?5before?5old?5one?$AA@ 005a60b4 rtxt.obj - 0004:000060cc ??_C@_09EEFH@bad?5cpSrc?$AA@ 005a60cc rtxt.obj - 0004:000060d8 ??_C@_07JAP@bad?5flo?$AA@ 005a60d8 rtxt.obj - 0004:000060e0 ??_C@_0BP@GPDI@bad?5parameters?5to?5FReplaceTxrd?$AA@ 005a60e0 rtxt.obj - 0004:00006100 ??_C@_0BP@GEAI@trying?5to?5replace?5trailing?5EOP?$AA@ 005a6100 rtxt.obj - 0004:00006120 ??_C@_0CL@FCLK@can?8t?5copy?5from?5a?5rich?5text?5doc?5@ 005a6120 rtxt.obj - 0004:0000614c ??_C@_0BE@GFCP@ensure?5in?5ag?5failed?$AA@ 005a614c rtxt.obj - 0004:00006160 ??_C@_0BH@ILBP@growing?5_pglmpe?5failed?$AA@ 005a6160 rtxt.obj - 0004:00006178 ??_C@_0BE@OEMI@_FFindMpe?5messed?5up?$AA@ 005a6178 rtxt.obj - 0004:0000618c ??_C@_0BJ@CHOK@bad?5cpLim?5from?5_FFindMpe?$AA@ 005a618c rtxt.obj - 0004:000061a8 ??_C@_0BJ@PKPG@should?5have?5been?5ensured?$AA@ 005a61a8 rtxt.obj - 0004:000061c4 ??_C@_0BB@FOPC@cp?5not?5an?5object?$AA@ 005a61c4 rtxt.obj - 0004:000061d8 ??_C@_0DO@IEAA@This?5rich?5text?5undo?5object?5canno@ 005a61d8 rtxt.obj - 0004:00006218 ??_C@_0L@INOB@empty?5RTUN?$AA@ 005a6218 rtxt.obj - 0004:00006248 ??_C@_0BD@JIFK@xpBase?5?$DO?5xpLimLine?$AA@ 005a6248 rtxt2.obj - 0004:0000625c ??_C@_0BN@IIGO@bad?5rectangle?5for?5the?5object?$AA@ 005a625c rtxt2.obj - 0004:0000627c ??_C@_0CC@GHD@why?5is?5_chrd?4cpLimDraw?5?$DN?$DN?5_cpMin@ 005a627c rtxt2.obj - 0004:000062a0 ??_C@_0CB@ODOD@why?5isn?8t?5_ilinInval?5?$DN?$DN?5ilinMac?$DP@ 005a62a0 rtxt2.obj - 0004:000062c4 ??_C@_0BL@IJJH@why?5isn?8t?5cpFind?5?$DO?$DN?5cpLim?$DP?$AA@ 005a62c4 rtxt2.obj - 0004:000062e0 ??_C@_0N@MFLG@Invalid?5LINs?$AA@ 005a62e0 rtxt2.obj - 0004:000062f0 ??_C@_0BN@OKNN@why?5isn?8t?5dypFind?5?$DO?$DN?5dypTot?$DP?$AA@ 005a62f0 rtxt2.obj - 0004:00006310 ??_C@_0BB@HLFD@why?5is?5cch?5zero?$DP?$AA@ 005a6310 rtxt2.obj - 0004:00006324 ??_C@_07DPP@bad?5run?$AA@ 005a6324 rtxt2.obj - 0004:0000632c ??_C@_0BJ@GBOL@why?5don?8t?5we?5have?5a?5BOP?$DP?$AA@ 005a632c rtxt2.obj - 0004:00006348 ??_C@_0BO@JNII@why?5is?5run?4cpLim?5?$DO?$DN?5cpLimChp?$DP?$AA@ 005a6348 rtxt2.obj - 0004:00006368 ??_C@_0BK@NEDM@why?5is?5cpCur?5?$DO?$DN?5cpLimChp?$DP?$AA@ 005a6368 rtxt2.obj - 0004:00006384 ??_C@_0BM@DHHO@selection?5is?5on?5in?5InvalCp?$CB?$AA@ 005a6384 rtxt2.obj - 0004:000063a0 ??_C@_0BE@FPAB@not?5tracking?5mouse?$CB?$AA@ 005a63a0 rtxt2.obj - 0004:000063b4 ??_C@_0BN@CKIE@mouse?5already?5being?5tracked?$CB?$AA@ 005a63b4 rtxt2.obj - 0004:000063f4 ?_szCtlProp@@3QADA 005a63f4 ctl.obj - 0004:00006400 ??_C@_0BO@GIFH@CTL?5already?5has?5an?5OS?5control?$AA@ 005a6400 ctl.obj - 0004:00006420 ??_C@_0BP@GBPK@control?5isn?8t?5based?5in?5an?5hwnd?$AA@ 005a6420 ctl.obj - 0004:00006440 ??_C@_0DB@JCMI@exactly?5one?5of?5?$CIfscbHorz?0fscbVer@ 005a6440 ctl.obj - 0004:00006474 ??_C@_09LIFG@SCROLLBAR?$AA@ 005a6474 ctl.obj - 0004:00006480 ??_C@_0CJ@MLJM@can?5only?5add?5controls?5to?5hwnd?5ba@ 005a6480 ctl.obj - 0004:000064ac ??_C@_0BE@ODCL@scb?5already?5created?$AA@ 005a64ac ctl.obj - 0004:000064c0 ??_C@_0CI@NMHP@parent?5of?5size?5box?5doesn?8t?5have?5@ 005a64c0 ctl.obj - 0004:000064e8 ??_C@_0L@LOLL@nil?5parent?$AA@ 005a64e8 ctl.obj - 0004:00006518 ??_C@_0BA@NDF@blck?5is?5too?5big?$AA@ 005a6518 stream.obj - 0004:00006528 ??_C@_0BA@LNIE@cleanup?5failed?$CB?$AA@ 005a6528 stream.obj - 0004:00006538 ??_C@_0CC@LBKJ@didn?8t?5insert?5the?5correct?5amount@ 005a6538 stream.obj - 0004:0000655c ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 005a655c stream.obj - 0004:00006574 ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 005a6574 stream.obj - 0004:00006580 ??_C@_08NKDG@wrong?5ib?$AA@ 005a6580 stream.obj - 0004:0000658c ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 005a658c stream.obj - 0004:000065a8 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 005a65a8 stream.obj - 0004:000065c0 ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 005a65c0 stream.obj - 0004:000065dc ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 005a65dc stream.obj - 0004:000065f0 ??_C@_0BP@PMGM@wrong?5number?5of?5bytes?5written?$CB?$AA@ 005a65f0 stream.obj - 0004:00006610 ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 005a6610 stream.obj - 0004:0000661c ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 005a661c stream.obj - 0004:00006634 ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 005a6634 stream.obj - 0004:00006648 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 005a6648 stream.obj - 0004:00006674 ??_C@_0DI@IFAL@why?5are?5you?5calling?5this?5when?5th@ 005a6674 dlg.obj - 0004:000066ac ??_C@_0P@BJLM@bad?5combo?5item?$AA@ 005a66ac dlg.obj - 0004:000066bc ??_C@_0BJ@CDJF@not?5a?5text?5item?5or?5combo?$AA@ 005a66bc dlg.obj - 0004:000066d8 ??_C@_0BP@GJMK@why?5did?5setting?5the?5data?5fail?$DP?$AA@ 005a66d8 dlg.obj - 0004:000066f8 ??_C@_0BC@DLOF@not?5a?5radio?5group?$AA@ 005a66f8 dlg.obj - 0004:0000670c ??_C@_0BA@LEDF@not?5a?5check?5box?$AA@ 005a670c dlg.obj - 0004:00006740 ?_szDlgProp@@3QADA 005a6740 dlgwin.obj - 0004:00006744 ??_C@_0BH@KIEH@no?5dits?5in?5this?5dialog?$AA@ 005a6744 dlgwin.obj - 0004:0000675c ??_C@_0BI@GHJH@no?5items?5in?5this?5dialog?$AA@ 005a675c dlgwin.obj - 0004:00006774 ??_C@_0BH@NFFD@wrong?5lim?5on?5edit?5item?$AA@ 005a6774 dlgwin.obj - 0004:0000678c ??_C@_0BL@IDGN@bad?5call?5to?5DLG?3?3SelectDit?$AA@ 005a678c dlgwin.obj - 0004:000067a8 ??_C@_0BE@FDKG@no?5radio?5button?5set?$AA@ 005a67a8 dlgwin.obj - 0004:000067bc ??_C@_0BD@CCEM@not?5a?5radio?5group?$CB?$AA@ 005a67bc dlgwin.obj - 0004:000067d0 ??_C@_0L@BPLN@no?5dialog?$CB?$AA@ 005a67d0 dlgwin.obj - 0004:000067dc ??_C@_0BH@KEF@wrong?5lim?5on?5check?5box?$AA@ 005a67dc dlgwin.obj - 0004:000067f4 ??_C@_0BB@JHMD@not?5a?5check?5box?$CB?$AA@ 005a67f4 dlgwin.obj - 0004:00006808 ??_C@_0BC@OOLE@wrong?5lim?5on?5item?$AA@ 005a6808 dlgwin.obj - 0004:0000681c ??_C@_0BI@NNCK@not?5edit?5item?5or?5combo?$CB?$AA@ 005a681c dlgwin.obj - 0004:00006834 ??_C@_0BI@MIMM@Couldn?8t?5get?5combo?5hwnd?$AA@ 005a6834 dlgwin.obj - 0004:0000684c ??_C@_0L@PEDO@not?5combo?$CB?$AA@ 005a684c dlgwin.obj - 0004:00006874 ??_C@_0L@JHNP@bad?5dlnSel?$AA@ 005a6874 text.obj - 0004:00006880 ??_C@_0BH@BMDK@baseline?5not?5supported?$AA@ 005a6880 text.obj - 0004:00006898 ??_C@_0BG@LJHF@bad?5call?5to?5_UnlockLn?$AA@ 005a6898 text.obj - 0004:000068b0 ??_C@_0BH@COAP@null?5character?5in?5EDSL?$AA@ 005a68b0 text.obj - 0004:000068e8 ??_C@_0BG@IOCL@Bad?5CUME?5list?5in?5GOKD?$AA@ 005a68e8 kidworld.obj - 0004:00006900 ??_C@_0BF@CLJM@Bad?5LOP?5list?5in?5GOKD?$AA@ 005a6900 kidworld.obj - 0004:00006918 ??_C@_0L@EFDL@Bad?5GOKD?52?$AA@ 005a6918 kidworld.obj - 0004:00006924 ??_C@_08GCEB@Bad?5GOKD?$AA@ 005a6924 kidworld.obj - 0004:00006930 ??_C@_0BC@LBCI@bad?5rglop?5in?5GKDS?$AA@ 005a6930 kidworld.obj - 0004:00006944 ??_C@_0BI@FDPH@GKDS?5_hqData?5wrong?5size?$AA@ 005a6944 kidworld.obj - 0004:0000695c ??_C@_0CM@EOBM@command?5handler?5with?5this?5ID?5alr@ 005a695c kidworld.obj - 0004:00006988 ??_C@_0CF@IEIO@Parent?5is?5not?5in?5this?5kidspace?5w@ 005a6988 kidworld.obj - 0004:000069d0 ?_cmmTXHG@TXHG@@1UCMM@CMH@@A 005a69d0 kidhelp.obj - 0004:000069d8 ?_rgcmmeTXHG@TXHG@@0QAUCMME@CMH@@A 005a69d8 kidhelp.obj - 0004:00006a08 ??_C@_0P@NFKE@string?5missing?$AA@ 005a6a08 kidhelp.obj - 0004:00006a18 ??_C@_0P@FHNJ@bad?5group?5data?$AA@ 005a6a18 kidhelp.obj - 0004:00006a28 ??_C@_08LFAA@_gidBase?$AA@ 005a6a28 kidhelp.obj - 0004:00006a34 ??_C@_0BO@BJPM@HBAL?5immediately?5destroyed?52?$CB?$AA@ 005a6a34 kidhelp.obj - 0004:00006a54 ??_C@_0BM@FEHJ@HBAL?5immediately?5destroyed?$CB?$AA@ 005a6a54 kidhelp.obj - 0004:00006a70 ??_C@_09JJKK@_cnoSound?$AA@ 005a6a70 kidhelp.obj - 0004:00006a7c ??_C@_09PEHH@_ctgSound?$AA@ 005a6a7c kidhelp.obj - 0004:00006a88 ??_C@_06KFDA@nil?5ID?$AA@ 005a6a88 kidhelp.obj - 0004:00006a90 ??_C@_0BM@OIPK@why?5isn?8t?5my?5parent?5a?5TXHG?$DP?$AA@ 005a6a90 kidhelp.obj - 0004:00006ad0 ?_cmmGOK@GOK@@1UCMM@CMH@@A 005a6ad0 kidspace.obj - 0004:00006ad8 ?_rgcmmeGOK@GOK@@0QAUCMME@CMH@@A 005a6ad8 kidspace.obj - 0004:00006b38 ?_mpgmsgmseEnd@@3QAUGMSE@@A 005a6b38 kidspace.obj - 0004:00006be0 ?_mpgmsgmseMove@@3QAUGMSE@@A 005a6be0 kidspace.obj - 0004:00006c88 ?_mpgmsgmseRollOff@@3QAUGMSE@@A 005a6c88 kidspace.obj - 0004:00006d30 ?_mpgmsgmseMouseDown@@3QAUGMSE@@A 005a6d30 kidspace.obj - 0004:00006dd8 ?_mpgmsgmseDownOn@@3QAUGMSE@@A 005a6dd8 kidspace.obj - 0004:00006e80 ?_mpgmsgmseDownOff@@3QAUGMSE@@A 005a6e80 kidspace.obj - 0004:00006f28 ?_mpgmsgmseUpOn@@3QAUGMSE@@A 005a6f28 kidspace.obj - 0004:00006fd0 ?_mpgmsgmseUpOff@@3QAUGMSE@@A 005a6fd0 kidspace.obj - 0004:000070e8 ??_C@_0P@EKOK@nil?5handler?5id?$AA@ 005a70e8 kidspace.obj - 0004:000070f8 ??_C@_0BF@PJIH@bug?5in?5_mpgmsgmseEnd?$AA@ 005a70f8 kidspace.obj - 0004:00007110 ??_C@_0BG@JAKL@invalid?5change?5in?5gms?$AA@ 005a7110 kidspace.obj - 0004:00007128 ??_C@_0P@KOIA@bad?5gmse?5table?$AA@ 005a7128 kidspace.obj - 0004:00007138 ??_C@_0M@HLCN@bad?5_gmsCur?$AA@ 005a7138 kidspace.obj - 0004:00007144 ??_C@_0CB@OJOM@Couldn?8t?5attach?5animation?5script@ 005a7144 kidspace.obj - 0004:00007168 ??_C@_0N@BHJG@no?5animation?$AA@ 005a7168 kidspace.obj - 0004:00007178 ??_C@_0BA@EFJC@bad?5_mpgmsgmmpe?$AA@ 005a7178 kidspace.obj - 0004:00007188 ??_C@_0CE@LKFG@Alarm?5sounding?5without?5an?5animat@ 005a7188 kidspace.obj - 0004:000071ac ??_C@_0CC@DDLF@can?8t?5filter?5on?5?$CIcidNil?0?5hidNil?$CJ@ 005a71ac kidspace.obj - 0004:000071d0 ??_C@_0CF@BDIN@script?5doesn?8t?5exist?5?$CIfor?5filter@ 005a71d0 kidspace.obj - 0004:000071f8 ??_C@_0BK@HMOH@cid?5and?5hid?5are?5both?5nil?$CB?$AA@ 005a71f8 kidspace.obj - 0004:00007214 ??_C@_0BA@IAMN@unknown?5command?$AA@ 005a7214 kidspace.obj - 0004:00007224 ??_C@_0BG@PJOM@_cactDeferGorp?5is?5bad?$AA@ 005a7224 kidspace.obj - 0004:0000723c ??_C@_0BF@IIDH@_cactDeferSnd?5is?5bad?$AA@ 005a723c kidspace.obj - 0004:00007254 ??_C@_0CA@KEDA@shouldn?8t?5be?5tracking?5the?5mouse?$AA@ 005a7254 kidspace.obj - 0004:00007274 ??_C@_0BN@NKF@should?5be?5tracking?5the?5mouse?$AA@ 005a7274 kidspace.obj - 0004:00007294 ??_C@_0P@FBPA@Bad?5FILL?5chunk?$AA@ 005a7294 kidspace.obj - 0004:000072a4 ??_C@_0BN@CKFH@couldn?8t?5load?5indicated?5fill?$AA@ 005a72a4 kidspace.obj - 0004:000072c4 ??_C@_0BO@MHHN@Couldn?8t?5load?5kidspace?5bitmap?$AA@ 005a72c4 kidspace.obj - 0004:000072e4 ??_C@_0BM@JBHO@no?5child?5MBMP?5of?5TILE?5chunk?$AA@ 005a72e4 kidspace.obj - 0004:00007300 ??_C@_0P@OIGI@Bad?5TILE?5chunk?$AA@ 005a7300 kidspace.obj - 0004:00007310 ??_C@_0CD@CCOK@couldn?8t?5load?5indicated?5tile?5chu@ 005a7310 kidspace.obj - 0004:00007334 ??_C@_0BO@ILEJ@couldn?8t?5load?5indicated?5video?$AA@ 005a7334 kidspace.obj - 0004:00007378 ??_C@_0BD@CADP@bad?5value?5of?5_pgob?$AA@ 005a7378 screxeg.obj - 0004:0000738c ??_C@_0CM@PACN@Missing?5GOB?5for?5Stream?$CIGob?$HMThis?$CJ@ 005a738c screxeg.obj - 0004:000073b8 ??_C@_0DG@IPN@Missing?5GOB?5for?5SetToolTipSource@ 005a73b8 screxeg.obj - 0004:000073f0 ??_C@_0CP@EOAF@Missing?5GOB?5for?5SetNoSlip?$CIGob?$HMTh@ 005a73f0 screxeg.obj - 0004:00007420 ??_C@_0DE@NBOP@Missing?5GOB?5for?5?$CIWidth?$HMHeight?$CJ?$CIG@ 005a7420 screxeg.obj - 0004:00007454 ??_C@_0CK@OFFJ@No?5GOK?5for?5PlaySound?$CIGob?$HMThis?$CJ?5?$CI@ 005a7454 screxeg.obj - 0004:00007480 ??_C@_0BM@HPBB@Filtering?5failed?5?$CIgid?5?$DN?5?$CFd?$CJ?$AA@ 005a7480 screxeg.obj - 0004:0000749c ??_C@_0DA@HJIB@Missing?5GOB?5for?5FilterCmds?$CIGob?$HMT@ 005a749c screxeg.obj - 0004:000074cc ??_C@_0CP@KHIA@Missing?5GOB?5for?5GotoFrame?$CIGob?$HMTh@ 005a74cc screxeg.obj - 0004:000074fc ??_C@_0DB@CHJG@Missing?5GOB?5for?5CountFrames?$CIGob?$HM@ 005a74fc screxeg.obj - 0004:00007530 ??_C@_0CP@CLHO@Missing?5GOB?5for?5?$CICurFrame?$CIGob?$HMTh@ 005a7530 screxeg.obj - 0004:00007560 ??_C@_0CK@MNKK@Missing?5GOB?5for?5Stop?$CIGob?$HMThis?$CJ?5?$CI@ 005a7560 screxeg.obj - 0004:0000758c ??_C@_0CN@GAPO@Missing?5GOB?5for?5Playing?$CIGob?$HMThis@ 005a758c screxeg.obj - 0004:000075bc ??_C@_0CK@MPCH@Missing?5GOB?5for?5Play?$CIGob?$HMThis?$CJ?5?$CI@ 005a75bc screxeg.obj - 0004:000075e8 ??_C@_0CF@LGAJ@SetProp?5failed?5?$CIprid?5?$DN?5?$CFd?0?5val?5?$DN@ 005a75e8 screxeg.obj - 0004:00007610 ??_C@_0BL@NLIA@GetProp?5failed?5?$CIprid?5?$DN?5?$CFd?$CJ?$AA@ 005a7610 screxeg.obj - 0004:0000762c ??_C@_0CJ@EINF@Missing?5GOB?5for?5Cell?$FLNoPause?$FN?5?$CIg@ 005a762c screxeg.obj - 0004:00007658 ??_C@_0CK@EFMM@Missing?5GOB?5for?5SetZ?$CIGob?$HMThis?$CJ?5?$CI@ 005a7658 screxeg.obj - 0004:00007684 ??_C@_0CH@LPFN@Missing?5GOB?5for?5Z?$CIGob?$HMThis?$CJ?5?$CIgid@ 005a7684 screxeg.obj - 0004:000076ac ??_C@_0CL@DGMM@Missing?5GOB?5for?5?$CIX?$HMY?$CJ?$CIGob?$HMThis?$CJ?5@ 005a76ac screxeg.obj - 0004:000076d8 ??_C@_0DA@PMKD@Missing?5GOB?5for?5?$CIX?$HMY?$CJMouse?$CIGob?$HMT@ 005a76d8 screxeg.obj - 0004:00007708 ??_C@_0CA@POHE@Setting?5Alarm?5failed?5?$CIhid?5?$DN?5?$CFd?$CJ?$AA@ 005a7708 screxeg.obj - 0004:00007728 ??_C@_0CF@MAAJ@Missing?5clock?5for?5TimeCur?5?$CIhid?5?$DN@ 005a7728 screxeg.obj - 0004:00007750 ??_C@_0CH@GOKA@Missing?5clock?5for?5StopClock?5?$CIhid@ 005a7750 screxeg.obj - 0004:00007778 ??_C@_0CI@FMBP@Missing?5clock?5for?5StartClock?5?$CIhi@ 005a7778 screxeg.obj - 0004:000077a0 ??_C@_0DJ@EFN@Clock?5already?5exists?5?9?5increment@ 005a77a0 screxeg.obj - 0004:000077dc ??_C@_0CL@BNGO@Missing?5GOB?5for?5State?$CIGob?$HMThis?$CJ?5@ 005a77dc screxeg.obj - 0004:00007808 ??_C@_0CM@JDCE@Missing?5GOB?5for?5SetRep?$CIGob?$HMThis?$CJ@ 005a7808 screxeg.obj - 0004:00007834 ??_C@_0DA@KBPE@Missing?5GOB?5for?5SetPicture?$CIGob?$HMT@ 005a7834 screxeg.obj - 0004:00007864 ??_C@_0CN@GOMK@Missing?5GOB?5for?5Animate?$CIGob?$HMThis@ 005a7864 screxeg.obj - 0004:00007894 ??_C@_0FB@MPEJ@Missing?5GOB?5or?5state?5out?5of?5rang@ 005a7894 screxeg.obj - 0004:000078e8 ??_C@_0CO@LBBK@Running?5script?5failed?5?$CIchid?5?$DN?50x@ 005a78e8 screxeg.obj - 0004:00007918 ??_C@_0DE@IPBI@Missing?5GOB?5for?5RunScript?$FLCno?$FN?$CIG@ 005a7918 screxeg.obj - 0004:0000794c ??_C@_0BN@OIKC@OOM?5attempting?5to?5run?5script?$AA@ 005a794c screxeg.obj - 0004:0000796c ??_C@_0CN@LKBD@Missing?5GOB?5for?5MoveAbs?$CIGob?$HMThis@ 005a796c screxeg.obj - 0004:0000799c ??_C@_0CN@PAHI@Missing?5GOB?5for?5MoveRel?$CIGob?$HMThis@ 005a799c screxeg.obj - 0004:000079cc ??_C@_0CM@MLLE@Missing?5GOB?5for?5Resize?$CIGob?$HMThis?$CJ@ 005a79cc screxeg.obj - 0004:000079f8 ??_C@_0DH@IKED@Missing?5parent?5GOB?5for?5CreateHel@ 005a79f8 screxeg.obj - 0004:00007a30 ??_C@_0DI@LPKH@Missing?5parent?5GOB?5for?5CreateChi@ 005a7a30 screxeg.obj - 0004:00007a68 ??_C@_0DB@FFLM@Can?8t?5Destroy?5WOKS?5?9?5destroying?5@ 005a7a68 screxeg.obj - 0004:00007a9c ??_C@_0L@JBFE@?$CFd?5?$CI0x?$CFx?$CJ?5?$AA@ 005a7a9c screxeg.obj - 0004:00007aa8 ??_C@_0CC@ONHO@Script?5Message?5?$CI?8?$CFf?8?0?50x?$CFx?0?5?$CFd?$CJ?3@ 005a7aa8 screxeg.obj - 0004:00007acc ??_C@_0DC@IGPJ@Missing?5edit?5control?5for?5?$CIGet?$HMSe@ 005a7acc screxeg.obj - 0004:00007b00 ??_C@_0CG@MCBB@String?5missing?5for?5Launch?5?$CIstid?5@ 005a7b00 screxeg.obj - 0004:00007b48 ?_pszOom@@3PADA 005a7b48 scrcom.obj - 0004:00007b4c ?_pszSyntax@@3PADA 005a7b4c scrcom.obj - 0004:00007b50 ?_rgszop@@3QAUSZOP@@A 005a7b50 scrcom.obj - 0004:00007d30 ?_rgarop@@3QAUAROP@@A 005a7d30 scrcom.obj - 0004:00007fa0 ?_rgpszKey@@3QAPADA 005a7fa0 scrcom.obj - 0004:00007fc0 ?_rgtomeExp@@3QAUTOME@@A 005a7fc0 scrcom.obj - 0004:00008220 ?_rgtomeOp@@3QAUTOME@@A 005a8220 scrcom.obj - 0004:000082e4 ??_C@_08HOLA@Continue?$AA@ 005a82e4 scrcom.obj - 0004:000082f0 ??_C@_05EABD@Break?$AA@ 005a82f0 scrcom.obj - 0004:000082f8 ??_C@_05NNJC@While?$AA@ 005a82f8 scrcom.obj - 0004:00008300 ??_C@_03HPMG@End?$AA@ 005a8300 scrcom.obj - 0004:00008304 ??_C@_04CCEF@Else?$AA@ 005a8304 scrcom.obj - 0004:0000830c ??_C@_04CPFE@Elif?$AA@ 005a830c scrcom.obj - 0004:00008314 ??_C@_02BAJ@If?$AA@ 005a8314 scrcom.obj - 0004:00008318 ??_C@_04POBJ@Goto?$AA@ 005a8318 scrcom.obj - 0004:00008320 ??_C@_06GDJA@IfGoto?$AA@ 005a8320 scrcom.obj - 0004:00008328 ??_C@_0L@KPKB@CopySubStr?$AA@ 005a8328 scrcom.obj - 0004:00008334 ??_C@_06KDAM@LenStr?$AA@ 005a8334 scrcom.obj - 0004:0000833c ??_C@_0L@ICIJ@ConcatStrs?$AA@ 005a833c scrcom.obj - 0004:00008348 ??_C@_08HOLI@StrToNum?$AA@ 005a8348 scrcom.obj - 0004:00008354 ??_C@_08PBFD@NumToStr?$AA@ 005a8354 scrcom.obj - 0004:00008360 ??_C@_09JFKG@ScaleTime?$AA@ 005a8360 scrcom.obj - 0004:0000836c ??_C@_09KOLA@MergeStrs?$AA@ 005a836c scrcom.obj - 0004:00008378 ??_C@_07MHIA@NukeStr?$AA@ 005a8378 scrcom.obj - 0004:00008380 ??_C@_07ELLC@MoveStr?$AA@ 005a8380 scrcom.obj - 0004:00008388 ??_C@_07PCEE@CopyStr?$AA@ 005a8388 scrcom.obj - 0004:00008390 ??_C@_05PFIH@Pause?$AA@ 005a8390 scrcom.obj - 0004:00008398 ??_C@_05LKIE@Match?$AA@ 005a8398 scrcom.obj - 0004:000083a0 ??_C@_08HGHE@NextCard?$AA@ 005a83a0 scrcom.obj - 0004:000083ac ??_C@_0M@GGGO@ShuffleList?$AA@ 005a83ac scrcom.obj - 0004:000083b8 ??_C@_07MFK@Shuffle?$AA@ 005a83b8 scrcom.obj - 0004:000083c0 ??_C@_09CAHB@SetReturn?$AA@ 005a83c0 scrcom.obj - 0004:000083cc ??_C@_06JCBD@Return?$AA@ 005a83cc scrcom.obj - 0004:000083d4 ??_C@_04LKDK@Exit?$AA@ 005a83d4 scrcom.obj - 0004:000083dc ??_C@_02DNIN@Go?$AA@ 005a83dc scrcom.obj - 0004:000083e0 ??_C@_04HAFI@GoNz?$AA@ 005a83e0 scrcom.obj - 0004:000083e8 ??_C@_03JNBL@GoZ?$AA@ 005a83e8 scrcom.obj - 0004:000083ec ??_C@_04PFCA@GoLe?$AA@ 005a83ec scrcom.obj - 0004:000083f4 ??_C@_04HLIL@GoGe?$AA@ 005a83f4 scrcom.obj - 0004:000083fc ??_C@_04PGMH@GoLt?$AA@ 005a83fc scrcom.obj - 0004:00008404 ??_C@_04HIGM@GoGt?$AA@ 005a8404 scrcom.obj - 0004:0000840c ??_C@_04NIHF@GoNe?$AA@ 005a840c scrcom.obj - 0004:00008414 ??_C@_04FFPC@GoEq?$AA@ 005a8414 scrcom.obj - 0004:0000841c ??_C@_06ININ@Select?$AA@ 005a841c scrcom.obj - 0004:00008424 ??_C@_07KEJC@RndList?$AA@ 005a8424 scrcom.obj - 0004:0000842c ??_C@_07OONJ@PopList?$AA@ 005a842c scrcom.obj - 0004:00008434 ??_C@_07GBJG@DupList?$AA@ 005a8434 scrcom.obj - 0004:0000843c ??_C@_03JCDI@Rev?$AA@ 005a843c scrcom.obj - 0004:00008440 ??_C@_03FPBH@Rot?$AA@ 005a8440 scrcom.obj - 0004:00008444 ??_C@_04BCL@Swap?$AA@ 005a8444 scrcom.obj - 0004:0000844c ??_C@_03FBGG@Pop?$AA@ 005a844c scrcom.obj - 0004:00008450 ??_C@_03MKPO@Dup?$AA@ 005a8450 scrcom.obj - 0004:00008454 ??_C@_02LCLA@Le?$AA@ 005a8454 scrcom.obj - 0004:00008458 ??_C@_02DMBL@Ge?$AA@ 005a8458 scrcom.obj - 0004:0000845c ??_C@_02LBFH@Lt?$AA@ 005a845c scrcom.obj - 0004:00008460 ??_C@_02DPPM@Gt?$AA@ 005a8460 scrcom.obj - 0004:00008464 ??_C@_02JPOF@Ne?$AA@ 005a8464 scrcom.obj - 0004:00008468 ??_C@_02BCGC@Eq?$AA@ 005a8468 scrcom.obj - 0004:0000846c ??_C@_04ENMP@LNot?$AA@ 005a846c scrcom.obj - 0004:00008474 ??_C@_04HPKA@LXor?$AA@ 005a8474 scrcom.obj - 0004:0000847c ??_C@_04LILD@BNot?$AA@ 005a847c scrcom.obj - 0004:00008484 ??_C@_04IKNM@BXor?$AA@ 005a8484 scrcom.obj - 0004:0000848c ??_C@_03FEFN@BOr?$AA@ 005a848c scrcom.obj - 0004:00008490 ??_C@_04CJLN@BAnd?$AA@ 005a8490 scrcom.obj - 0004:00008498 ??_C@_06NIPH@MulDiv?$AA@ 005a8498 scrcom.obj - 0004:000084a0 ??_C@_03OAMN@Rnd?$AA@ 005a84a0 scrcom.obj - 0004:000084a4 ??_C@_03PGJO@Dec?$AA@ 005a84a4 scrcom.obj - 0004:000084a8 ??_C@_03PCMM@Inc?$AA@ 005a84a8 scrcom.obj - 0004:000084ac ??_C@_03GIFK@Neg?$AA@ 005a84ac scrcom.obj - 0004:000084b0 ??_C@_03CEPH@Abs?$AA@ 005a84b0 scrcom.obj - 0004:000084b4 ??_C@_03PJNJ@Mod?$AA@ 005a84b4 scrcom.obj - 0004:000084b8 ??_C@_03LANL@Div?$AA@ 005a84b8 scrcom.obj - 0004:000084bc ??_C@_03FPMJ@Mul?$AA@ 005a84bc scrcom.obj - 0004:000084c0 ??_C@_03KJKL@Sub?$AA@ 005a84c0 scrcom.obj - 0004:000084c4 ??_C@_03KPJN@Add?$AA@ 005a84c4 scrcom.obj - 0004:000084c8 ??_C@_0N@GABD@Syntax?5error?$AA@ 005a84c8 scrcom.obj - 0004:000084d8 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 005a84d8 scrcom.obj - 0004:000084e8 ??_C@_0P@JBBE@bad?5identifier?$AA@ 005a84e8 scrcom.obj - 0004:000084f8 ??_C@_04GBMF@?$FL?$CFd?$FN?$AA@ 005a84f8 scrcom.obj - 0004:00008520 ?_szPoundLine@@3QADA 005a8520 lex.obj - 0004:00008528 ?_mpchgrfct@LEXB@@1QAGA 005a8528 lex.obj - 0004:00008628 ?_rgtt@@3QAFA 005a8628 lex.obj - 0004:000086e8 ?_rgttDouble@@3QAFA 005a86e8 lex.obj - 0004:00008798 ?_rgttEqual@@3QAFA 005a8798 lex.obj - 0004:00008b54 ?gpMixer@@3PAUIAMMixer@@A 005a8b54 audiod:factory.obj - 0004:00008b58 ?__gfDbgEnabled@@3HA 005a8b58 audiod:dpf.obj - 0004:00008b5c ?__guDbgLevel@@3IA 005a8b5c audiod:dpf.obj - 0004:00008b60 ?rgchOutputFile@@3QADA 005a8b60 audiod:dpf.obj - 0004:00008ba0 ?gDebugOutActive@@3HA 005a8ba0 audiod:dpf.obj - 0004:00008ba4 ?gDebugLogActive@@3HA 005a8ba4 audiod:dpf.obj - 0004:00008d18 ?g_cDebugMemAllocBlocks@@3KA 005a8d18 audiod:debugmem.obj - 0004:00008d1c ?g_cbDebugMemAllocNet@@3KA 005a8d1c audiod:debugmem.obj - 0004:00008d20 ?g_cbDebugMemAllocGross@@3KA 005a8d20 audiod:debugmem.obj - 0004:00008d24 ?g_cbDebugMaxNetMemAlloc@@3KA 005a8d24 audiod:debugmem.obj - 0004:0000ab64 ?_fBRenderInited@BWLD@@1HA 005aab64 bren:bwld.obj - 0004:0000ab68 ??_C@_0BD@DOFJ@dyp?5should?5be?5even?$AA@ 005aab68 bren:bwld.obj - 0004:0000ab7c ??_C@_0BD@MKHI@dxp?5should?5be?5even?$AA@ 005aab7c bren:bwld.obj - 0004:0000ab90 ??_C@_0BJ@HJNF@bad?5src?1dest?5width?5ratio?$AA@ 005aab90 bren:bwld.obj - 0004:0000abac ??_C@_0BF@NJNK@cbSrc?5is?5not?5aligned?$AA@ 005aabac bren:bwld.obj - 0004:0000abc4 ??_C@_0CA@EBLP@Yon?5must?5be?5further?5than?5hither?$AA@ 005aabc4 bren:bwld.obj - 0004:0000abe4 ??_C@_0BJ@IPED@don?8t?5need?5_pgptStretch?$CB?$AA@ 005aabe4 bren:bwld.obj - 0004:0000ac1c ??_C@_0BD@DNBI@Couldn?8t?5load?5ZBMP?$AA@ 005aac1c bren:zbmp.obj - 0004:0000ac30 ??_C@_07CIGB@bad?5_cb?$AA@ 005aac30 bren:zbmp.obj - 0004:0000ac38 ??_C@_0L@HMFG@bad?5_cbRow?$AA@ 005aac38 bren:zbmp.obj - 0004:0000ac7c _sin_table 005aac7c brfwmxr:fixed386.obj - 0004:0000acfc _cos_table 005aacfc brfwmxr:fixed386.obj - 0004:0000af00 _arcsin_table 005aaf00 brfwmxr:fixed386.obj - 0004:0000b102 _arccos_table 005ab102 brfwmxr:fixed386.obj - 0004:0000bc5b __CombineTransforms 005abc5b brfwmxr:transfrm.obj - 0004:0000c024 __BrDefaultModel 005ac024 brfwmxr:def_mdl.obj - 0004:0000c0cc __BrMemoryDevice 005ac0cc brfwmxr:pmmemops.obj - 0004:0000c0e8 __BrMemoryContext 005ac0e8 brfwmxr:pmmemops.obj - 0004:0000c1f4 __BrDefaultMaterial 005ac1f4 brfwmxr:def_mat.obj - 0004:0000c39c __br_scratch_string 005ac39c brfwmxr:scrstr.obj - 0004:0000c604 __FontFixed3x5 005ac604 brfwmxr:fnt3x5.obj - 0004:0000cbd4 __reciprocal 005acbd4 brfwmxr:fixed.obj - 0004:0000ebe0 __8087 005aebe0 brfwmxr:magicsym.obj - 0004:0000ebe4 __init_387_emulator 005aebe4 brfwmxr:magicsym.obj - 0004:0000ebe8 _fltused_ 005aebe8 brfwmxr:magicsym.obj - 0004:0000f4e4 _cutoff 005af4e4 brzbmxr:persp.obj - 0004:0000f4e8 _PerspCheat 005af4e8 brzbmxr:persp.obj - 0004:0000f560 _Orig 005af560 brzbmxr:awtm.obj - 0004:0000f7b0 ?_cmmMVIE@MVIE@@1UCMM@CMH@@A 005af7b0 engine:movie.obj - 0004:0000f7b8 ?_rgcmmeMVIE@MVIE@@0QAUCMME@CMH@@A 005af7b8 engine:movie.obj - 0004:0000f7f8 ?_cmmMVU@MVU@@1UCMM@CMH@@A 005af7f8 engine:movie.obj - 0004:0000f800 ?_rgcmmeMVU@MVU@@0QAUCMME@CMH@@A 005af800 engine:movie.obj - 0004:0000f8d0 ?_fKbdDelayed@MVU@@1HA 005af8d0 engine:movie.obj - 0004:0000f8d4 ??_C@_0BB@MNNC@pcfl?5isn?8t?5right?$AA@ 005af8d4 engine:movie.obj - 0004:0000f8e8 ??_C@_0BP@BMBC@Hey?0?5we?5just?5opened?5this?5file?$CB?$AA@ 005af8e8 engine:movie.obj - 0004:0000f908 ??_C@_0BJ@DEKB@Overwriting?5existing?5GST?$AA@ 005af908 engine:movie.obj - 0004:0000f924 ??_C@_0BK@EEFH@CFL?5returned?5bogus?5Ckid?$CI?$CJ?$AA@ 005af924 engine:movie.obj - 0004:0000f940 ??_C@_0BC@CFFM@need?5pcrfAutosave?$AA@ 005af940 engine:movie.obj - 0004:0000f954 ??_C@_0BC@EGHP@Should?5never?5fail?$AA@ 005af954 engine:movie.obj - 0004:0000f968 ??_C@_0CB@POED@Tried?5to?5remove?5an?5invalid?5actor@ 005af968 engine:movie.obj - 0004:0000f98c ??_C@_0BB@EPAA@Too?5many?5removes?$AA@ 005af98c engine:movie.obj - 0004:0000f9a0 ??_C@_0CG@NLNE@_FCloseCurrentScene?5didn?8t?5clear@ 005af9a0 engine:movie.obj - 0004:0000f9c8 ??_C@_0BC@DLIN@Invalid?5save?5file?$AA@ 005af9c8 engine:movie.obj - 0004:0000f9dc ??_C@_0BD@CBKH@iscen?5out?5of?5range?$AA@ 005af9dc engine:movie.obj - 0004:0000f9f0 ??_C@_0BI@BPFK@CFL?5returned?5bogus?5ckid?$AA@ 005af9f0 engine:movie.obj - 0004:0000fa08 ??_C@_0BL@PFND@Scene?5chunk?5doesn?8t?5exist?$CB?$AA@ 005afa08 engine:movie.obj - 0004:0000fa24 ??_C@_0BC@HEEK@Bad?5working?5file?4?$AA@ 005afa24 engine:movie.obj - 0004:0000fa38 ??_C@_0BK@DODP@can?8t?5insert?50?9length?5TDT?$AA@ 005afa38 engine:movie.obj - 0004:0000fa54 ??_C@_0BE@BJGJ@actor?5must?5be?5a?5TDT?$AA@ 005afa54 engine:movie.obj - 0004:0000fa68 ??_C@_07GDCI@Bad?5CFL?$AA@ 005afa68 engine:movie.obj - 0004:0000fa70 ??_C@_0P@MBLE@unexpected?5ctg?$AA@ 005afa70 engine:movie.obj - 0004:0000fa80 ??_C@_03LAHE@3mm?$AA@ 005afa80 engine:movie.obj - 0004:0000fa84 ??_C@_0DA@LANA@Movie?5does?5not?5support?5DMDs?0?5use@ 005afa84 engine:movie.obj - 0004:0000fab4 ??_C@_0BJ@CNBH@Current?5DDG?5isn?8t?5an?5MVU?$AA@ 005afab4 engine:movie.obj - 0004:0000fad0 ??_C@_0BH@LKCK@First?5DDG?5isn?8t?5an?5MVU?$AA@ 005afad0 engine:movie.obj - 0004:0000fae8 ??_C@_0CJ@HKAJ@Cannot?5insert?5a?5scene?5from?5anoth@ 005afae8 engine:movie.obj - 0004:0000fb14 ??_C@_0CA@BIAM@warning?3?5set?5background?5failed?4?$AA@ 005afb14 engine:movie.obj - 0004:0000fb34 ??_C@_0P@KNBL@Bad?5Pause?5type?$AA@ 005afb34 engine:movie.obj - 0004:0000fb44 ??_C@_0BC@FPBO@Bogus?5scene?5state?$AA@ 005afb44 engine:movie.obj - 0004:0000fb58 ??_C@_0BP@KBIL@Scene?5doesn?8t?5have?5a?5thumbnail?$AA@ 005afb58 engine:movie.obj - 0004:0000fb78 ??_C@_0CC@NHDB@Not?5enough?5scene?5chunks?5for?5movi@ 005afb78 engine:movie.obj - 0004:0000fb9c ??_C@_0BN@KLKD@Invalid?5MVIED?5during?5cleanup?$AA@ 005afb9c engine:movie.obj - 0004:0000fbbc ??_C@_0DB@PAEG@Can?8t?5guarantee?5validity?5of?5MVIE@ 005afbbc engine:movie.obj - 0004:0000fbf0 ??_C@_0CH@HGKK@Found?5duplicate?5CHID?5in?5scene?5ch@ 005afbf0 engine:movie.obj - 0004:0000fc18 ??_C@_0BH@PILG@Didn?8t?5set?5the?5cnoScen?$AA@ 005afc18 engine:movie.obj - 0004:0000fc30 ??_C@_0BP@OBKF@Scene?8s?5MVIE?5didn?8t?5get?5copied?$AA@ 005afc30 engine:movie.obj - 0004:0000fc50 ??_C@_0BF@LMDJ@Invalid?5GL?5of?5MVIEDs?$AA@ 005afc50 engine:movie.obj - 0004:0000fc68 ??_C@_0BJ@LEMK@icnoMac?5isn?8t?5up?9to?9date?$AA@ 005afc68 engine:movie.obj - 0004:0000fc84 ??_C@_0M@HILO@cel?$CF04d?4dib?$AA@ 005afc84 engine:movie.obj - 0004:0000fc90 ??_C@_09IHOJ@bad?5trans?$AA@ 005afc90 engine:movie.obj - 0004:0000fc9c ??_C@_0BN@KCCJ@Background?5palette?5too?5large?$AA@ 005afc9c engine:movie.obj - 0004:0000fcbc ??_C@_0BK@FILP@Not?5a?5child?5of?5MVIE?5chunk?$AA@ 005afcbc engine:movie.obj - 0004:0000fcd8 ??_C@_0BF@GJJK@why?5could?5this?5fail?$DP?$AA@ 005afcd8 engine:movie.obj - 0004:0000fcf0 ??_C@_0BF@IMAJ@Wrong?5tool?5in?5effect?$AA@ 005afcf0 engine:movie.obj - 0004:0000fd08 ??_C@_0BL@MIEC@Tool?5unknown?5on?5mouse?5down?$AA@ 005afd08 engine:movie.obj - 0004:0000fd24 ??_C@_0CL@OPFP@_pactrRestore?5should?5not?5require@ 005afd24 engine:movie.obj - 0004:0000fd50 ??_C@_0BO@HAAO@Wrote?5bkgd?5actor?5start?5point?4?$AA@ 005afd50 engine:movie.obj - 0004:0000fd70 ??_C@_0BK@OOAN@ouch?4?5?5bkgd?5write?5failed?4?$AA@ 005afd70 engine:movie.obj - 0004:0000fd8c ??_C@_0BL@HKCL@Tool?5unknown?5on?5mouse?5move?$AA@ 005afd8c engine:movie.obj - 0004:0000fda8 ??_C@_0BJ@HMJG@Tool?5unknown?5on?5mouse?5up?$AA@ 005afda8 engine:movie.obj - 0004:0000fdc4 ??_C@_0BK@KMK@Something?5odd?5is?5going?5on?$AA@ 005afdc4 engine:movie.obj - 0004:0000fde0 ??_C@_0BA@NEMH@Unknown?5command?$AA@ 005afde0 engine:movie.obj - 0004:0000fdf0 ??_C@_08JDOD@Bad?5Tool?$AA@ 005afdf0 engine:movie.obj - 0004:0000fdfc ??_C@_0O@KGGF@Unknown?5munst?$AA@ 005afdfc engine:movie.obj - 0004:0000fe38 ?_cmmMSQ@MSQ@@1UCMM@CMH@@A 005afe38 engine:msnd.obj - 0004:0000fe40 ?_rgcmmeMSQ@MSQ@@0QAUCMME@CMH@@A 005afe40 engine:msnd.obj - 0004:0000fe60 ??_C@_09HFAA@bad?5MSNDF?$AA@ 005afe60 engine:msnd.obj - 0004:0000fe6c ??_C@_0BF@CBIB@Illegal?5sty?5argument?$AA@ 005afe6c engine:msnd.obj - 0004:0000fe84 ??_C@_0BJ@IOGP@Invalid?5sty?5in?5MSND?3?5Spr?$AA@ 005afe84 engine:msnd.obj - 0004:0000fea0 ??_C@_0BI@HNMC@No?5midi?5motion?5matching?$AA@ 005afea0 engine:msnd.obj - 0004:0000feb8 ??_C@_0N@NFDC@Invalid?5tool?$AA@ 005afeb8 engine:msnd.obj - 0004:0000feec ??_C@_0N@MEJE@bad?5pfninscd?$AA@ 005afeec engine:tagman.obj - 0004:0000fefc ??_C@_0M@JENJ@Invalid?5sid?$AA@ 005afefc engine:tagman.obj - 0004:0000ff08 ??_C@_0P@ECAI@bad?5pgstSource?$AA@ 005aff08 engine:tagman.obj - 0004:0000ff18 ??_C@_0CI@KIBL@_pgstSource?5has?5no?5string?5for?5th@ 005aff18 engine:tagman.obj - 0004:0000ff40 ??_C@_0BO@MJBJ@should?5have?5valid?5pcrmSource?$CB?$AA@ 005aff40 engine:tagman.obj - 0004:0000ff60 ??_C@_0CI@NFGL@fniCD?5can?8t?5change?5once?5pcrm?5is?5@ 005aff60 engine:tagman.obj - 0004:0000ff88 ??_C@_07OFGI@bad?5rpo?$AA@ 005aff88 engine:tagman.obj - 0004:0000ff90 ??_C@_0O@ILKJ@bad?5_pfninscd?$AA@ 005aff90 engine:tagman.obj - 0004:0000ffc4 ??_C@_0BD@GNKG@Unknown?5event?5type?$AA@ 005affc4 engine:scene.obj - 0004:0000ffd8 ??_C@_0BP@CDPK@Invalid?5event?5in?5event?5stream?4?$AA@ 005affd8 engine:scene.obj - 0004:0000fff8 ??_C@_0CL@DIEJ@no?5actor?5should?5be?5marked?5preren@ 005afff8 engine:scene.obj - 0004:00010024 ??_C@_0P@JDNJ@Unhandled?5sevt?$AA@ 005b0024 engine:scene.obj - 0004:00010034 ??_C@_0BL@MOKN@No?5background?5in?5the?5scene?$AA@ 005b0034 engine:scene.obj - 0004:00010050 ??_C@_0BE@MKKE@Should?5never?5happen?$AA@ 005b0050 engine:scene.obj - 0004:00010064 ??_C@_0BB@EIIJ@Should?5not?5fail?4?$AA@ 005b0064 engine:scene.obj - 0004:00010078 ??_C@_0BH@BJKK@No?5background?5in?5scene?$AA@ 005b0078 engine:scene.obj - 0004:00010090 ??_C@_0CJ@OAPF@Can?5only?5be?5called?5to?5extend?5sce@ 005b0090 engine:scene.obj - 0004:000100bc ??_C@_0BK@LHAD@can?8t?5both?5queue?5and?5loop?$AA@ 005b00bc engine:scene.obj - 0004:000100d8 ??_C@_0DD@DGKO@if?5fQueue?8ing?0?5you?5should?5only?5b@ 005b00d8 engine:scene.obj - 0004:0001010c ??_C@_0CA@HMDO@Should?5never?5queue?5when?5undoing?$AA@ 005b010c engine:scene.obj - 0004:0001012c ??_C@_0O@CDMK@No?5such?5sound?$AA@ 005b012c engine:scene.obj - 0004:0001013c ??_C@_0O@LNED@sty?5not?5found?$AA@ 005b013c engine:scene.obj - 0004:0001014c ??_C@_0BN@OFJJ@this?5sound?5is?5in?5the?5future?$CB?$AA@ 005b014c engine:scene.obj - 0004:0001016c ??_C@_0BP@ILKG@Cannot?5find?5actor?5in?5Roll?5call?$AA@ 005b016c engine:scene.obj - 0004:0001018c ??_C@_0BO@HOIC@Actor?5does?5not?5exist?5in?5scene?$AA@ 005b018c engine:scene.obj - 0004:000101ac ??_C@_0CC@HKEO@Actor?5does?5not?5exist?5in?5roll?5cal@ 005b01ac engine:scene.obj - 0004:000101d0 ??_C@_0DL@JBPI@weird?4?4?4we?5clicked?5a?5pbody?0?5but?5@ 005b01d0 engine:scene.obj - 0004:0001020c ??_C@_0CC@OMDO@Error?0?5adding?5same?5text?5box?5twic@ 005b020c engine:scene.obj - 0004:00010230 ??_C@_0CL@HBIN@Error?$CB?5Could?5not?5find?5text?5box?5f@ 005b0230 engine:scene.obj - 0004:0001025c ??_C@_0BJ@GMOL@Text?5box?5not?5found?5in?5GL?$AA@ 005b025c engine:scene.obj - 0004:00010278 ??_C@_0BM@CHG@Could?5not?5remove?5a?5text?5box?$AA@ 005b0278 engine:scene.obj - 0004:00010294 ??_C@_0BA@EIMJ@Bad?5index?5value?$AA@ 005b0294 engine:scene.obj - 0004:000102a4 ??_C@_0CK@KPHC@Shouldn?8t?5cache?5tags?5if?5movie?5is@ 005b02a4 engine:scene.obj - 0004:000102d0 ??_C@_0BK@NNBI@No?5background?5event?5found?$AA@ 005b02d0 engine:scene.obj - 0004:000102ec ??_C@_0CK@NELN@Use?5CORE?5function?5to?5set?5first?5b@ 005b02ec engine:scene.obj - 0004:00010318 ??_C@_0BJ@KBKF@Wrong?5size?5for?5SSE?5in?5GG?$AA@ 005b0318 engine:scene.obj - 0004:00010334 ??_C@_0BI@FIDA@Bad?5event?5in?5frame?5list?$AA@ 005b0334 engine:scene.obj - 0004:0001034c ??_C@_0BO@EBPJ@Bad?5event?5in?5start?5event?5list?$AA@ 005b034c engine:scene.obj - 0004:0001036c ??_C@_0BO@OMCI@Bad?5event?5in?5frame?5event?5list?$AA@ 005b036c engine:scene.obj - 0004:0001038c ??_C@_0BG@JPOI@Bad?5GG?5read?5for?5event?$AA@ 005b038c engine:scene.obj - 0004:000103a4 ??_C@_0BA@LFCF@Bad?5Chunky?5file?$AA@ 005b03a4 engine:scene.obj - 0004:000103b4 ??_C@_0BG@FPDM@no?5background?5event?$CB?$DP?$AA@ 005b03b4 engine:scene.obj - 0004:000103cc ??_C@_08PLLL@Bad?5long?$AA@ 005b03cc engine:scene.obj - 0004:000103d8 ??_C@_08LAHE@Bad?5tbox?$AA@ 005b03d8 engine:scene.obj - 0004:000103e4 ??_C@_0BJ@NFKF@where?8s?5the?5sound?5event?$DP?$AA@ 005b03e4 engine:scene.obj - 0004:00010400 ??_C@_0BC@FDJJ@sty?8s?5don?8t?5match?$AA@ 005b0400 engine:scene.obj - 0004:00010414 ??_C@_07JNFF@Bad?5Grf?$AA@ 005b0414 engine:scene.obj - 0004:0001041c ??_C@_0BI@GMCF@variable?5part?5too?5small?$AA@ 005b041c engine:scene.obj - 0004:0001045c ??_C@_0BJ@DNKM@Error?5reading?5background?$AA@ 005b045c engine:bkgd.obj - 0004:00010478 ??_C@_0CP@GJOE@bad?5pgllite?4?4?4you?5may?5need?5to?5up@ 005b0478 engine:bkgd.obj - 0004:000104a8 ??_C@_07GGPC@bad?5BDS?$AA@ 005b04a8 engine:bkgd.obj - 0004:000104b0 ??_C@_09KJMC@bad?5BKGDF?$AA@ 005b04b0 engine:bkgd.obj - 0004:000104bc ??_C@_0BP@BBJG@cam?5chids?5are?5not?5consecutive?$CB?$AA@ 005b04bc engine:bkgd.obj - 0004:000104dc ??_C@_0CE@MFGF@Shouldn?8t?5be?5freeing?5background?5@ 005b04dc engine:bkgd.obj - 0004:00010500 ??_C@_07LPDJ@bad?5cam?$AA@ 005b0500 engine:bkgd.obj - 0004:00010508 ??_C@_0BI@KHOG@BOM?5macros?5aren?8t?5right?$AA@ 005b0508 engine:bkgd.obj - 0004:00010520 ??_C@_0DK@HKJD@CAM?5chunk?8s?5extra?5data?5not?5an?5ev@ 005b0520 engine:bkgd.obj - 0004:0001055c ??_C@_0BL@JDEL@CAM?5chunk?5not?5large?5enough?$AA@ 005b055c engine:bkgd.obj - 0004:00010578 ??_C@_0CI@MBOP@NEW_ACTOR_POS?5?$CFd?4?$CF06d?5?$CFd?4?$CF06d?5?$CFd@ 005b0578 engine:bkgd.obj - 0004:000105a0 ??_C@_0BA@BILI@?$CFs?9cam?41?9?$CFd?4pos?$AA@ 005b05a0 engine:bkgd.obj - 0004:000105b0 ??_C@_0CC@CLHO@are?5you?5sure?5you?5want?5non?9zero?5Y@ 005b05b0 engine:bkgd.obj - 0004:000105d4 ??_C@_09NH@bad?5_icam?$AA@ 005b05d4 engine:bkgd.obj - 0004:00010604 ?_pbmtlHilite@BODY@@1PAUbr_material@@A 005b0604 engine:body.obj - 0004:00010608 ??_C@_06JFCF@Hilite?$AA@ 005b0608 engine:body.obj - 0004:00010610 ??_C@_0N@KABG@bad?5pglibset?$AA@ 005b0610 engine:body.obj - 0004:00010620 ??_C@_0BA@FPM@bad?5pglibactPar?$AA@ 005b0620 engine:body.obj - 0004:00010630 ??_C@_0BL@ECNB@More?5sets?5than?5body?5parts?$DP?$AA@ 005b0630 engine:body.obj - 0004:0001064c ??_C@_0CK@LBFJ@pglibactPar?5must?5be?5same?5size?5as@ 005b064c engine:body.obj - 0004:00010678 ??_C@_0BO@DNLI@bad?5first?5item?5in?5pglibactPar?$AA@ 005b0678 engine:body.obj - 0004:00010698 ??_C@_0CE@KBID@What?5actor?5is?5this?$DP?5?5It?5has?5no?5B@ 005b0698 engine:body.obj - 0004:000106bc ??_C@_0BL@PLPG@dup?5hidden?5count?5must?5be?51?$AA@ 005b06bc engine:body.obj - 0004:000106d8 ??_C@_0BL@GEAI@object?5is?5already?5visible?$CB?$AA@ 005b06d8 engine:body.obj - 0004:000106f4 ??_C@_0N@IKAF@MODL?5problem?$AA@ 005b06f4 engine:body.obj - 0004:00010704 ??_C@_0CB@JMEF@didn?8t?5use?5all?5custom?5materials?$CB@ 005b0704 engine:body.obj - 0004:00010728 ??_C@_0EB@NNFP@Why?5does?5this?5body?5part?5set?5have@ 005b0728 engine:body.obj - 0004:0001076c ??_C@_0O@OPCL@bad?5_pglibset?$AA@ 005b076c engine:body.obj - 0004:0001077c ??_C@_0CG@LLIK@BODY?5root?5shouldn?8t?5have?5a?5mater@ 005b077c engine:body.obj - 0004:000107a4 ??_C@_0CD@EHPN@BODY?5root?5shouldn?8t?5have?5a?5model@ 005b07a4 engine:body.obj - 0004:000107c8 ??_C@_0BH@LLMF@different?5BODY?5shapes?$CB?$AA@ 005b07c8 engine:body.obj - 0004:00010804 ??_C@_0BB@LLAA@Bad?5body?5pointer?$AA@ 005b0804 engine:actor.obj - 0004:00010818 ??_C@_0BF@JMD@SetPscen?5logic?5error?$AA@ 005b0818 engine:actor.obj - 0004:00010830 ??_C@_0BO@ODMO@Illegal?5_iaevAddCur?5state?5var?$AA@ 005b0830 engine:actor.obj - 0004:00010850 ??_C@_0CI@HAAM@Invalid?5state?5variables?5in?5FGoto@ 005b0850 engine:actor.obj - 0004:00010878 ??_C@_0CF@OBLE@Invalid?5Call?5to?5_FQuickBackupToF@ 005b0878 engine:actor.obj - 0004:000108a0 ??_C@_0BO@GBEP@Illegal?5call?5to?5_FBackupToFrm?$AA@ 005b08a0 engine:actor.obj - 0004:000108c0 ??_C@_0BF@BIKG@Corrupted?5event?5list?$AA@ 005b08c0 engine:actor.obj - 0004:000108d8 ??_C@_0BD@EBFC@Corrupt?5event?5list?$AA@ 005b08d8 engine:actor.obj - 0004:000108ec ??_C@_0N@MDKG@_iaevCur?5bug?$AA@ 005b08ec engine:actor.obj - 0004:000108fc ??_C@_0BK@EJPM@Unimplemented?5actor?5event?$AA@ 005b08fc engine:actor.obj - 0004:00010918 ??_C@_0L@CFAH@check?5case?$AA@ 005b0918 engine:actor.obj - 0004:00010924 ??_C@_0BM@MNJK@_iaevActnCur?5not?5up?5to?5date?$AA@ 005b0924 engine:actor.obj - 0004:00010940 ??_C@_0DF@LIIG@Error?$CB?5?5Beginning?5subroute?5with?5@ 005b0940 engine:actor.obj - 0004:00010978 ??_C@_0P@FOLC@Wrong?5Var?5size?$AA@ 005b0978 engine:actor.obj - 0004:00010988 ??_C@_0BJ@GHID@Invalid?5end?5sub?9node?5dwr?$AA@ 005b0988 engine:actor.obj - 0004:000109a4 ??_C@_0BJ@EHEK@Overwriting?5end?5of?5route?$AA@ 005b09a4 engine:actor.obj - 0004:000109c0 ??_C@_0BB@PKFB@Illegal?5distance?$AA@ 005b09c0 engine:actor.obj - 0004:000109d4 ??_C@_0BJ@NJFI@Invalid?5dwrStep?5argument?$AA@ 005b09d4 engine:actor.obj - 0004:000109f0 ??_C@_0BH@MPGE@Negative?5camera?5values?$AA@ 005b09f0 engine:actor.obj - 0004:00010a08 ??_C@_0BN@FOPG@Non?9negative?5placement?5value?$AA@ 005b0a08 engine:actor.obj - 0004:00010a28 ??_C@_0M@INJM@Logic?5Error?$AA@ 005b0a28 engine:actor.obj - 0004:00010a34 ??_C@_0BO@FPKI@_FAddAevFromLater?5logic?5error?$AA@ 005b0a34 engine:actor.obj - 0004:00010a54 ??_C@_0DK@FCJD@Logic?5error?3?5trying?5to?5delete?5wh@ 005b0a54 engine:actor.obj - 0004:00010a90 ??_C@_0BO@DLKP@Invalid?5ibsetClicked?5argument?$AA@ 005b0a90 engine:actor.obj - 0004:00010ab0 ??_C@_0BK@HGDE@Ensure?5space?5insufficient?$AA@ 005b0ab0 engine:actor.obj - 0004:00010acc ??_C@_0BJ@CCND@EnsureSpace?5insufficient?$AA@ 005b0acc engine:actor.obj - 0004:00010ae8 ??_C@_0BO@LIHC@Invalid?5value?5for?5_iaevAddCur?$AA@ 005b0ae8 engine:actor.obj - 0004:00010b08 ??_C@_0M@IMLD@Corrupt?5aev?$AA@ 005b0b08 engine:actor.obj - 0004:00010b14 ??_C@_0BK@KHIL@Should?5have?5ensured?5space?$AA@ 005b0b14 engine:actor.obj - 0004:00010b30 ??_C@_0BO@LIJI@Unsupported?5use?5of?5fmafOrient?$AA@ 005b0b30 engine:actor.obj - 0004:00010b50 ??_C@_0BF@KIFG@Illegal?5aet?5argument?$AA@ 005b0b50 engine:actor.obj - 0004:00010b68 ??_C@_0BF@FFIA@Illegal?5argument?5aet?$AA@ 005b0b68 engine:actor.obj - 0004:00010b80 ??_C@_0BF@EJKG@Expected?5zero?5offset?$AA@ 005b0b80 engine:actor.obj - 0004:00010b98 ??_C@_0CH@PDIP@Possible?5offset?5bug?5in?5_GetXyzFr@ 005b0b98 engine:actor.obj - 0004:00010bc0 ??_C@_0BJ@POLF@Incorrect?5offset?5in?5path?$AA@ 005b0bc0 engine:actor.obj - 0004:00010bdc ??_C@_0BC@MLNM@irpt?5out?5of?5range?$AA@ 005b0bdc engine:actor.obj - 0004:00010bf0 ??_C@_0BF@GCJJ@fLifeDirty?5incorrect?$AA@ 005b0bf0 engine:actor.obj - 0004:00010c08 ??_C@_0N@FIKI@Invalid?5type?$AA@ 005b0c08 engine:actor.obj - 0004:00010c18 ??_C@_0BD@PIKE@Bug?5in?5InsertRoute?$AA@ 005b0c18 engine:actor.obj - 0004:00010c2c ??_C@_0CI@CC@Zero?5length?5step?5illegal?5in?5FRec@ 005b0c2c engine:actor.obj - 0004:00010c54 ??_C@_0BD@KDEA@Illegal?5empty?5path?$AA@ 005b0c54 engine:actor.obj - 0004:00010c68 ??_C@_0CG@MHBL@Ensurespace?5should?5have?5ensured?5@ 005b0c68 engine:actor.obj - 0004:00010c90 ??_C@_0CM@PAG@Recording?5an?5actor?5that?5wasn?8t?5s@ 005b0c90 engine:actor.obj - 0004:00010cbc ??_C@_0BB@DOAD@_rtelCur?5invalid?$AA@ 005b0cbc engine:actor.obj - 0004:00010cd0 ??_C@_0BD@EBLN@Invalid?5Join?5point?$AA@ 005b0cd0 engine:actor.obj - 0004:00010ce4 ??_C@_0BM@HIFD@Not?5enough?5points?5to?5rejoin?$AA@ 005b0ce4 engine:actor.obj - 0004:00010d00 ??_C@_0CD@COEB@Expected?5set?5step?5event?5to?5succe@ 005b0d00 engine:actor.obj - 0004:00010d24 ??_C@_0CB@ODHA@Expected?5freeze?5event?5to?5succeed@ 005b0d24 engine:actor.obj - 0004:00010d48 ??_C@_0CG@FOCB@Should?5be?5an?5add?5event?5at?5_iaevA@ 005b0d48 engine:actor.obj - 0004:00010d70 ??_C@_0BF@LOEG@Invalid?5fAlive?5value?$AA@ 005b0d70 engine:actor.obj - 0004:00010d88 ??_C@_0BL@DMCO@Bug?5in?5ACTR?3?3DeleteFwdCore?$AA@ 005b0d88 engine:actor.obj - 0004:00010da4 ??_C@_0CK@CCIM@An?5aetAdd?5event?5should?5be?5the?5fi@ 005b0da4 engine:actor.obj - 0004:00010dd0 ??_C@_0CI@GEME@Offstage?5case?5should?5be?5already?5@ 005b0dd0 engine:actor.obj - 0004:00010df8 ??_C@_0CG@OGOG@Event?5list?5out?5of?5order?5?$CIdnfrm?5e@ 005b0df8 engine:actor.obj - 0004:00010e20 ??_C@_0BE@GCIM@Error?5in?5truncation?$AA@ 005b0e20 engine:actor.obj - 0004:00010e34 ??_C@_0DF@LGGJ@FMustRender?5was?5called?5when?5nfrm@ 005b0e34 engine:actor.obj - 0004:00010e6c ??_C@_0CA@FKFB@Invalid?5argument?5to?5FMustRender?$AA@ 005b0e6c engine:actor.obj - 0004:00010e8c ??_C@_0BL@PFEK@Corrupt?5size?5in?5event?5list?$AA@ 005b0e8c engine:actor.obj - 0004:00010ea8 ??_C@_0BH@BMCF@Invalid?5rtel?4dwrOffset?$AA@ 005b0ea8 engine:actor.obj - 0004:00010ec0 ??_C@_0CD@FGD@Duplicate?5events?5in?5a?5single?5fra@ 005b0ec0 engine:actor.obj - 0004:00010ee4 ??_C@_0BP@OPLF@Illegal?5ordering?5in?5event?5list?$AA@ 005b0ee4 engine:actor.obj - 0004:00010f04 ??_C@_0CD@LLDL@BUG?3?5No?5add?5event?5at?5front?5of?5li@ 005b0f04 engine:actor.obj - 0004:00010f4c ??_C@_09CMGN@bad?5ACTNF?$AA@ 005b0f4c engine:tmpl.obj - 0004:00010f58 ??_C@_0O@GIA@freaky?5tmplf?$CB?$AA@ 005b0f58 engine:tmpl.obj - 0004:00010f68 ??_C@_0CH@GCJN@missing?5GGCM?4?4?4building?5one?5on?5t@ 005b0f68 engine:tmpl.obj - 0004:00010f90 ??_C@_0BC@OLEH@Bad?5TMPL?5_pggcmid?$AA@ 005b0f90 engine:tmpl.obj - 0004:00010fa4 ??_C@_0CI@GGKE@Obsolete?5GLDC?5structure?4?4?4get?5ri@ 005b0fa4 engine:tmpl.obj - 0004:00010fcc ??_C@_0BE@KAKG@Bad?5TMPL?5_pglibset?$CB?$AA@ 005b0fcc engine:tmpl.obj - 0004:00010fe0 ??_C@_0BC@EHEO@Bad?5_pglibactPar?$CB?$AA@ 005b0fe0 engine:tmpl.obj - 0004:00010ff4 ??_C@_0BH@CNLH@fmemClear?5didn?8t?5work?$DP?$AA@ 005b0ff4 engine:tmpl.obj - 0004:0001100c ??_C@_0BE@BCEP@ibset?8s?5don?8t?5match?$AA@ 005b100c engine:tmpl.obj - 0004:00011044 ?_ptmapShadeTable@MTRL@@1PAVTMAP@@A 005b1044 engine:mtrl.obj - 0004:00011048 ??_C@_04MIGL@1234?$AA@ 005b1048 engine:mtrl.obj - 0004:00011050 ??_C@_09HDHE@bad?5TXXFF?$AA@ 005b1050 engine:mtrl.obj - 0004:0001105c ??_C@_0L@JIHN@lost?5tmap?$CB?$AA@ 005b105c engine:mtrl.obj - 0004:00011068 ??_C@_09MDGP@bad?5MTRLF?$AA@ 005b1068 engine:mtrl.obj - 0004:00011074 ??_C@_0CJ@PFIE@Why?5do?5we?5have?5MTRLs?5but?5no?5shad@ 005b1074 engine:mtrl.obj - 0004:000110a0 ??_C@_09LEAO@bad?5CMTLF?$AA@ 005b10a0 engine:mtrl.obj - 0004:000110ac ??_C@_0CN@GFMB@bad?5CMTLF?4?4?4you?5may?5need?5to?5upda@ 005b10ac engine:mtrl.obj - 0004:00011100 ?_pgstAction@TDT@@1PAVGST@@A 005b1100 engine:tdt.obj - 0004:00011104 ??_C@_0CB@KMMC@you?5already?5set?5the?5action?5names@ 005b1104 engine:tdt.obj - 0004:00011128 ??_C@_08NAEM@bad?5TDTF?$AA@ 005b1128 engine:tdt.obj - 0004:00011134 ??_C@_0BG@ICKM@action?5name?5not?5found?$AA@ 005b1134 engine:tdt.obj - 0004:0001114c ??_C@_0CC@GDFG@PglNew?5should?5have?5ensured?5space@ 005b114c engine:tdt.obj - 0004:00011170 ??_C@_0CB@FBCK@Shouldn?8t?5fetch?5CMTLs?5from?5a?5TDT@ 005b1170 engine:tdt.obj - 0004:00011194 ??_C@_0M@HJJB@Unknown?5tda?$AA@ 005b1194 engine:tdt.obj - 0004:000111a0 ??_C@_0N@PGI@unknown?5tdts?$AA@ 005b11a0 engine:tdt.obj - 0004:000111b0 ??_C@_0BD@NICA@_tdaCache?5is?5wrong?$AA@ 005b11b0 engine:tdt.obj - 0004:000111c4 ??_C@_0BE@FDOK@TDT?5has?5bad?5_tagTdf?$AA@ 005b11c4 engine:tdt.obj - 0004:00011200 ??_C@_0CD@OKFN@Unknown?5event?5type?4?4?4?5Copy?5or?5No@ 005b1200 engine:actredit.obj - 0004:00011224 ??_C@_0BK@OBND@Restore?5pbody?5logic?5error?$AA@ 005b1224 engine:actredit.obj - 0004:00011240 ??_C@_0BK@DKGB@Restore?5ptmpl?5logic?5error?$AA@ 005b1240 engine:actredit.obj - 0004:0001125c ??_C@_0BP@HLCM@Not?5restoring?5from?5undo?5object?$AA@ 005b125c engine:actredit.obj - 0004:0001127c ??_C@_0CE@OFAL@Expected?5to?5locate?5user?5sound?5ch@ 005b127c engine:actredit.obj - 0004:000112a0 ??_C@_0BC@BMFC@Nothing?5to?5paste?$CB?$AA@ 005b12a0 engine:actredit.obj - 0004:000112b4 ??_C@_0CF@OKHO@TDTs?5should?5be?5stored?5in?5a?5docum@ 005b12b4 engine:actredit.obj - 0004:000112dc ??_C@_0BI@MLNF@Expecting?5subroute?5only?$AA@ 005b12dc engine:actredit.obj - 0004:000112f4 ??_C@_0BH@DPDF@Invalid?5ibset?5argument?$AA@ 005b12f4 engine:actredit.obj - 0004:00011338 ?_cmmTBXG@TBXG@@1UCMM@CMH@@A 005b1338 engine:tbox.obj - 0004:00011340 ?_rgcmmeTBXG@TBXG@@0QAUCMME@CMH@@A 005b1340 engine:tbox.obj - 0004:00011420 ??_C@_0CA@DHEC@DDG?5existing?5for?5invisible?5tbox?$AA@ 005b1420 engine:tbox.obj - 0004:00011440 ??_C@_08BDMG@Bad?5mode?$AA@ 005b1440 engine:tbox.obj - 0004:0001144c ??_C@_0CJ@KCPM@TUND?5assumes?5there?5is?5one?5level?5@ 005b144c engine:tbox.obj - 0004:00011478 ??_C@_07JIAG@bad?5ctg?$AA@ 005b1478 engine:tbox.obj - 0004:00011480 ??_C@_0CJ@MEDE@Multiple?5views?5on?5text?5boxes?5not@ 005b1480 engine:tbox.obj - 0004:000114ac ??_C@_0BG@LMGO@Current?5frame?5too?5big?$AA@ 005b14ac engine:tbox.obj - 0004:000114c4 ??_C@_0BF@JMDG@Could?5not?5goto?5frame?$AA@ 005b14c4 engine:tbox.obj - 0004:000114dc ??_C@_0BB@POHH@DDG?5isn?8t?5a?5TBXG?$AA@ 005b14dc engine:tbox.obj - 0004:000114f0 ??_C@_0BB@EHL@DDG?5isn?8t?5a?5TXTG?$AA@ 005b14f0 engine:tbox.obj - 0004:0001152c ??_C@_0CF@HEKK@Actrsnd?3?5Expected?5to?5resolve?5snd@ 005b152c engine:actrsnd.obj - 0004:00011554 ??_C@_0BD@LHDG@Logic?5error?5in?5smm?$AA@ 005b1554 engine:actrsnd.obj - 0004:0001158c ??_C@_0BO@OOKC@stop?5previous?5recording?5first?$AA@ 005b158c engine:srec.obj - 0004:000115ac ??_C@_0BA@GPOC@Nothing?5to?5stop?$AA@ 005b15ac engine:srec.obj - 0004:000115bc ??_C@_0BB@HBEA@No?5sound?5to?5play?$AA@ 005b15bc engine:srec.obj - 0004:000115d0 ??_C@_0BB@KMED@Nothing?5to?5save?$CB?$AA@ 005b15d0 engine:srec.obj - 0004:000115e4 ??_C@_0M@PBGA@No?5Channel?$DP?$AA@ 005b15e4 engine:srec.obj - 0004:000115f0 ??_C@_09OINK@No?5mixer?$DP?$AA@ 005b15f0 engine:srec.obj - 0004:00011624 ??_C@_0BE@LFDK@_FFindTag?5has?5a?5bug?$AA@ 005b1624 engine:tagl.obj - 0004:00011638 ??_C@_0CE@NJLN@You?5should?5have?5inserted?5ptag?5fi@ 005b1638 engine:tagl.obj - 0004:00011688 ??_C@_0CJ@PFDN@only?5TDTs?5should?5be?5embedded?5in?5@ 005b1688 engine:actrsave.obj - 0004:000116b4 ??_C@_0DP@NMJ@Dev?3?5Why?5are?5we?5saving?5an?5actor?5@ 005b16b4 engine:actrsave.obj - 0004:000116f4 ??_C@_0BB@EEKM@PactrRead?5failed?$AA@ 005b16f4 engine:actrsave.obj - 0004:00011708 ??_C@_0N@DNJ@Corrupt?5ACTF?$AA@ 005b1708 engine:actrsave.obj - 0004:00011718 ??_C@_0BI@FDHK@where?8s?5the?5child?5TMPL?$DP?$AA@ 005b1718 engine:actrsave.obj - 0004:00011730 ??_C@_08ILBG@bad?5ACTF?$AA@ 005b1730 engine:actrsave.obj - 0004:0001173c ??_C@_0BP@JOCE@Why?5call?5this?5with?5darid?5?$DN?$DN?50?$DP?$AA@ 005b173c engine:actrsave.obj - 0004:0001175c ??_C@_0M@DIMB@Unknown?5AET?$AA@ 005b175c engine:actrsave.obj - 0004:0001178c ??_C@_09LMPA@bad?5MODL?$CB?$AA@ 005b178c engine:modl.obj - 0004:00011798 ??_C@_0BE@ONEG@Bad?5MODL?5identifier?$AA@ 005b1798 engine:modl.obj - 0004:000117d0 ??_C@_08JHLA@bad?5TDFF?$AA@ 005b17d0 engine:tdf.obj - 0004:000117dc ??_C@_0CO@DFMB@Couldn?8t?5find?5BMDL?5for?53?9D?5Font?5@ 005b17dc engine:tdf.obj - 0004:0001196c __fltused 005b196c LIBC:fpinit.obj - 0004:00011970 __ldused 005b1970 LIBC:fpinit.obj - 0004:00011974 ___fastflag 005b1974 LIBC:fpinit.obj - 0004:00011978 __adjust_fdiv 005b1978 LIBC:fpinit.obj - 0004:0001197c __FPinit 005b197c LIBC:fpinit.obj - 0004:00011980 __FPmtinit 005b1980 LIBC:fpinit.obj - 0004:00011984 __FPmtterm 005b1984 LIBC:fpinit.obj - 0004:00011988 __aenvptr 005b1988 LIBC:wincrt0.obj - 0004:0001198c __wenvptr 005b198c LIBC:wincrt0.obj - 0004:00011990 __aexit_rtn 005b1990 LIBC:wincrt0.obj - 0004:000119a4 _errno 005b19a4 LIBC:crt0dat.obj - 0004:000119a8 __doserrno 005b19a8 LIBC:crt0dat.obj - 0004:000119ac __umaskval 005b19ac LIBC:crt0dat.obj - 0004:000119b0 __osver 005b19b0 LIBC:crt0dat.obj - 0004:000119b4 __winver 005b19b4 LIBC:crt0dat.obj - 0004:000119b8 __winmajor 005b19b8 LIBC:crt0dat.obj - 0004:000119bc __winminor 005b19bc LIBC:crt0dat.obj - 0004:000119c0 ___argc 005b19c0 LIBC:crt0dat.obj - 0004:000119c4 ___argv 005b19c4 LIBC:crt0dat.obj - 0004:000119c8 ___wargv 005b19c8 LIBC:crt0dat.obj - 0004:000119cc __environ 005b19cc LIBC:crt0dat.obj - 0004:000119d0 ___initenv 005b19d0 LIBC:crt0dat.obj - 0004:000119d4 __wenviron 005b19d4 LIBC:crt0dat.obj - 0004:000119d8 ___winitenv 005b19d8 LIBC:crt0dat.obj - 0004:000119dc __pgmptr 005b19dc LIBC:crt0dat.obj - 0004:000119e0 __wpgmptr 005b19e0 LIBC:crt0dat.obj - 0004:000119e4 __exitflag 005b19e4 LIBC:crt0dat.obj - 0004:000119e8 __C_Termination_Done 005b19e8 LIBC:crt0dat.obj - 0004:000119ec __pnhHeap 005b19ec LIBC:malloc.obj - 0004:00011a58 __cfltcvt_tab 005b1a58 LIBC:cmiscdat.obj - 0004:00011a88 __XcptActTab 005b1a88 LIBC:winxfltr.obj - 0004:00011b00 __First_FPE_Indx 005b1b00 LIBC:winxfltr.obj - 0004:00011b04 __Num_FPE 005b1b04 LIBC:winxfltr.obj - 0004:00011b08 __XcptActTabCount 005b1b08 LIBC:winxfltr.obj - 0004:00011b0c __fpecode 005b1b0c LIBC:winxfltr.obj - 0004:00011b10 __pxcptinfoptrs 005b1b10 LIBC:winxfltr.obj - 0004:00011b18 __mbctype 005b1b18 LIBC:mbctype.obj - 0004:00011c1c ___mbcodepage 005b1c1c LIBC:mbctype.obj - 0004:00011c20 ___mblcid 005b1c20 LIBC:mbctype.obj - 0004:00011c28 ___mbulinfo 005b1c28 LIBC:mbctype.obj - 0004:00011d30 __nhandle 005b1d30 LIBC:ioinit.obj - 0004:00011d38 __osfile 005b1d38 LIBC:ioinit.obj - 0004:00011d78 __osfhnd 005b1d78 LIBC:ioinit.obj - 0004:00011e78 __pipech 005b1e78 LIBC:ioinit.obj - 0004:00011eb8 __heap_desc 005b1eb8 LIBC:heapinit.obj - 0004:00011ecc __heap_resetsize 005b1ecc LIBC:heapinit.obj - 0004:00011ed0 __amblksiz 005b1ed0 LIBC:heapinit.obj - 0004:00011ed4 __heap_regionsize 005b1ed4 LIBC:heapinit.obj - 0004:00011ed8 __heap_maxregsize 005b1ed8 LIBC:heapinit.obj - 0004:00012148 __adbgmsg 005b2148 LIBC:crt0msg.obj - 0004:00012158 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 005b2158 LIBC:hooks.obj - 0004:0001215c ?__pTerminate@@3P6AXXZA 005b215c LIBC:hooks.obj - 0004:00012160 ?__pUnexpected@@3P6AXXZA 005b2160 LIBC:hooks.obj - 0004:00012164 ?__pInconsistency@@3P6AXXZA 005b2164 LIBC:hooks.obj - 0004:00012168 __cflush 005b2168 LIBC:fflush.obj - 0004:00012170 __stdbuf 005b2170 LIBC:_sftbuf.obj - 0004:00012178 __infinity 005b2178 LIBC:87tran.obj - 0004:00012182 __minfinity 005b2182 LIBC:87tran.obj - 0004:0001218c __logemax 005b218c LIBC:87tran.obj - 0004:000121bc __OP_POWjmptab 005b21bc LIBC:87tran.obj - 0004:0001220c __OP_LOG10jmptab 005b220c LIBC:87tran.obj - 0004:0001222c __OP_LOGjmptab 005b222c LIBC:87tran.obj - 0004:0001224c __OP_EXPjmptab 005b224c LIBC:87tran.obj - 0004:00012274 ___nullstring 005b2274 LIBC:output.obj - 0004:00012288 ___wnullstring 005b2288 LIBC:output.obj - 0004:0001228c __OP_SQRTjmptab 005b228c LIBC:87sqrt.obj - 0004:00012460 __d_inf 005b2460 LIBC:util.obj - 0004:00012468 __d_ind 005b2468 LIBC:util.obj - 0004:00012470 __d_max 005b2470 LIBC:util.obj - 0004:00012478 __d_min 005b2478 LIBC:util.obj - 0004:00012480 __d_mzero 005b2480 LIBC:util.obj - 0004:00012488 __newmode 005b2488 LIBC:_newmode.obj - 0004:0001248c ___mb_cur_max 005b248c LIBC:nlsdata1.obj - 0004:00012494 ___decimal_point 005b2494 LIBC:nlsdata1.obj - 0004:00012498 ___decimal_point_length 005b2498 LIBC:nlsdata1.obj - 0004:000124a0 __pctype 005b24a0 LIBC:ctype.obj - 0004:000124a4 __pwctype 005b24a4 LIBC:ctype.obj - 0004:000124a8 __ctype 005b24a8 LIBC:ctype.obj - 0004:000128d8 __iob 005b28d8 LIBC:_file.obj - 0004:00012b58 __lastiob 005b2b58 LIBC:_file.obj - 0004:00012b5c __commode 005b2b5c LIBC:ncommode.obj - 0004:00012b60 __indefinite 005b2b60 LIBC:87disp.obj - 0004:00012b6a __piby2 005b2b6a LIBC:87disp.obj - 0004:00012b7c __cpower 005b2b7c LIBC:87disp.obj - 0004:00012b90 __matherr_flag 005b2b90 LIBC:matherr.obj - 0004:00012c38 ___lc_handle 005b2c38 LIBC:nlsdata2.obj - 0004:00012c50 ___lc_codepage 005b2c50 LIBC:nlsdata2.obj - 0004:00012c88 __fmode 005b2c88 LIBC:txtmode.obj - 0004:00012c8c ___invalid_mb_chars 005b2c8c LIBC:setmbval.obj - 0004:00012c98 __pow10pos 005b2c98 LIBC:constpow.obj - 0004:00012df8 __pow10neg 005b2df8 LIBC:constpow.obj - 0004:00012f58 _BrStdioFilesystem 005b2f58 bren:stdfile.obj - 0004:00012f8c __BrDefaultFilesystem 005b2f8c bren:stdfile.obj - 0004:00012f90 ??_C@_0M@FGJC@Standard?5IO?$AA@ 005b2f90 bren:stdfile.obj - 0004:00012f9c ??_C@_0CI@EKNG@BrStdFileOpenRead?3?5invalid?5open_@ 005b2f9c bren:stdfile.obj - 0004:00012fc4 ??_C@_02MMAH@rt?$AA@ 005b2fc4 bren:stdfile.obj - 0004:00012fc8 ??_C@_0N@OGCO@BRENDER_PATH?$AA@ 005b2fc8 bren:stdfile.obj - 0004:00012fd8 ??_C@_02JKAF@rb?$AA@ 005b2fd8 bren:stdfile.obj - 0004:00012fdc ??_C@_02NGAF@wb?$AA@ 005b2fdc bren:stdfile.obj - 0004:00012fe0 ??_C@_02IAAH@wt?$AA@ 005b2fe0 bren:stdfile.obj - 0004:00012fe8 _BrStdioDiagHandler 005b2fe8 bren:stderr.obj - 0004:00012ff4 __BrDefaultDiagHandler 005b2ff4 bren:stderr.obj - 0004:00012ff8 ??_C@_0BC@DONA@Stdio?5DiagHandler?$AA@ 005b2ff8 bren:stderr.obj - 0004:0001300c ??_C@_0BA@NGPO@BRender?5Warning?$AA@ 005b300c bren:stderr.obj - 0004:0001301c ??_C@_0BE@CABL@BRender?5Fatal?5Error?$AA@ 005b301c bren:stderr.obj - 0004:00013038 _BrStdlibAllocator 005b3038 bren:stdmem.obj - 0004:00013048 __BrDefaultAllocator 005b3048 bren:stdmem.obj - 0004:0001304c ??_C@_06OCBH@malloc?$AA@ 005b304c bren:stdmem.obj - 0004:00013074 ??_C@_09GINA@bad?5TMAPF?$AA@ 005b3074 bren:tmap.obj - 0004:00013ed0 __BrFilePrimsNull 005b3ed0 brfwmxr:datafile.obj - 0004:00014054 ___fcntrlcomp 005b4054 LIBC:setfcntr.obj - 0004:000140b8 ___xc_a 005b40b8 LIBC:crt0init.obj - 0004:0001422c ___xc_z 005b422c LIBC:crt0init.obj - 0004:00014230 ___xi_a 005b4230 LIBC:crt0init.obj - 0004:00014240 ___xi_z 005b4240 LIBC:crt0init.obj - 0004:00014244 ___xp_a 005b4244 LIBC:crt0init.obj - 0004:0001424c ___xp_z 005b424c LIBC:crt0init.obj - 0004:00014250 ___xt_a 005b4250 LIBC:crt0init.obj - 0004:00014254 ___xt_z 005b4254 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 005b5000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 005b5014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 005b5028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 005b503c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 005b5050 winmm:WINMM.dll - 0005:00000064 ADVAPI32_IMPORT_DESCRIPTOR 005b5064 advapi32:ADVAPI32.dll - 0005:00000078 MPR_IMPORT_DESCRIPTOR 005b5078 mpr:MPR.dll - 0005:0000008c MSVFW32_IMPORT_DESCRIPTOR 005b508c vfw32:MSVFW32.dll - 0005:000000a0 AVIFIL32_IMPORT_DESCRIPTOR 005b50a0 vfw32:AVIFIL32.dll - 0005:000000b4 __IMPORT_DESCRIPTOR_MSACM32 005b50b4 audiod:MSACM32.dll - 0005:000000c8 NULL_IMPORT_DESCRIPTOR 005b50c8 kernel32:KERNEL32.dll - 0005:000000dc __NULL_IMPORT_DESCRIPTOR 005b50dc audiod:MSACM32.dll - 0005:00000654 __imp__RegCloseKey@4 005b5654 advapi32:ADVAPI32.dll - 0005:00000658 __imp__RegQueryValueExA@24 005b5658 advapi32:ADVAPI32.dll - 0005:0000065c __imp__RegSetValueExA@24 005b565c advapi32:ADVAPI32.dll - 0005:00000660 __imp__RegCreateKeyExA@36 005b5660 advapi32:ADVAPI32.dll - 0005:00000664 __imp__RegEnumValueA@32 005b5664 advapi32:ADVAPI32.dll - 0005:00000668 \177ADVAPI32_NULL_THUNK_DATA 005b5668 advapi32:ADVAPI32.dll - 0005:0000066c __imp__AVIStreamLength@4 005b566c vfw32:AVIFIL32.dll - 0005:00000670 __imp__AVIFileRelease@4 005b5670 vfw32:AVIFIL32.dll - 0005:00000674 __imp__AVIStreamRelease@4 005b5674 vfw32:AVIFIL32.dll - 0005:00000678 __imp__AVIStreamGetFrameOpen@8 005b5678 vfw32:AVIFIL32.dll - 0005:0000067c __imp__AVIFileInit@0 005b567c vfw32:AVIFIL32.dll - 0005:00000680 __imp__AVIFileExit@0 005b5680 vfw32:AVIFIL32.dll - 0005:00000684 __imp__AVIStreamGetFrameClose@4 005b5684 vfw32:AVIFIL32.dll - 0005:00000688 __imp__AVIStreamStart@4 005b5688 vfw32:AVIFIL32.dll - 0005:0000068c __imp__AVIFileInfoA@12 005b568c vfw32:AVIFIL32.dll - 0005:00000690 __imp__AVIFileGetStream@16 005b5690 vfw32:AVIFIL32.dll - 0005:00000694 __imp__AVIFileOpenA@16 005b5694 vfw32:AVIFIL32.dll - 0005:00000698 __imp__AVIStreamSampleToTime@8 005b5698 vfw32:AVIFIL32.dll - 0005:0000069c __imp__AVIStreamTimeToSample@8 005b569c vfw32:AVIFIL32.dll - 0005:000006a0 __imp__AVIStreamGetFrame@8 005b56a0 vfw32:AVIFIL32.dll - 0005:000006a4 \177AVIFIL32_NULL_THUNK_DATA 005b56a4 vfw32:AVIFIL32.dll - 0005:000006a8 __imp__GetStockObject@4 005b56a8 gdi32:GDI32.dll - 0005:000006ac __imp__SetTextColor@8 005b56ac gdi32:GDI32.dll - 0005:000006b0 __imp__SetBkMode@8 005b56b0 gdi32:GDI32.dll - 0005:000006b4 __imp__GetTextMetricsA@8 005b56b4 gdi32:GDI32.dll - 0005:000006b8 __imp__OffsetRgn@12 005b56b8 gdi32:GDI32.dll - 0005:000006bc __imp__SelectClipRgn@8 005b56bc gdi32:GDI32.dll - 0005:000006c0 __imp__ExtCreateRegion@12 005b56c0 gdi32:GDI32.dll - 0005:000006c4 __imp__CreateRectRgn@16 005b56c4 gdi32:GDI32.dll - 0005:000006c8 __imp__CreateEllipticRgn@16 005b56c8 gdi32:GDI32.dll - 0005:000006cc __imp__GetClipRgn@8 005b56cc gdi32:GDI32.dll - 0005:000006d0 __imp__RealizePalette@4 005b56d0 gdi32:GDI32.dll - 0005:000006d4 __imp__SelectPalette@12 005b56d4 gdi32:GDI32.dll - 0005:000006d8 __imp__GdiFlush@0 005b56d8 gdi32:GDI32.dll - 0005:000006dc __imp__SetPaletteEntries@16 005b56dc gdi32:GDI32.dll - 0005:000006e0 __imp__AnimatePalette@16 005b56e0 gdi32:GDI32.dll - 0005:000006e4 __imp__ResizePalette@8 005b56e4 gdi32:GDI32.dll - 0005:000006e8 __imp__CreatePalette@4 005b56e8 gdi32:GDI32.dll - 0005:000006ec __imp__SetPolyFillMode@8 005b56ec gdi32:GDI32.dll - 0005:000006f0 __imp__GetSystemPaletteEntries@16 005b56f0 gdi32:GDI32.dll - 0005:000006f4 __imp__DeleteDC@4 005b56f4 gdi32:GDI32.dll - 0005:000006f8 __imp__DeleteEnhMetaFile@4 005b56f8 gdi32:GDI32.dll - 0005:000006fc __imp__DeleteObject@4 005b56fc gdi32:GDI32.dll - 0005:00000700 __imp__CreateDIBSection@24 005b5700 gdi32:GDI32.dll - 0005:00000704 __imp__CreateCompatibleDC@4 005b5704 gdi32:GDI32.dll - 0005:00000708 __imp__CloseEnhMetaFile@4 005b5708 gdi32:GDI32.dll - 0005:0000070c __imp__CombineRgn@16 005b570c gdi32:GDI32.dll - 0005:00000710 __imp__SetDIBColorTable@16 005b5710 gdi32:GDI32.dll - 0005:00000714 __imp__FillRgn@12 005b5714 gdi32:GDI32.dll - 0005:00000718 __imp__Rectangle@20 005b5718 gdi32:GDI32.dll - 0005:0000071c __imp__IntersectClipRect@20 005b571c gdi32:GDI32.dll - 0005:00000720 __imp__SetROP2@8 005b5720 gdi32:GDI32.dll - 0005:00000724 __imp__TextOutA@20 005b5724 gdi32:GDI32.dll - 0005:00000728 __imp__GetTextExtentPoint32A@16 005b5728 gdi32:GDI32.dll - 0005:0000072c __imp__SetBkColor@8 005b572c gdi32:GDI32.dll - 0005:00000730 __imp__CreateBitmap@20 005b5730 gdi32:GDI32.dll - 0005:00000734 __imp__CreateSolidBrush@4 005b5734 gdi32:GDI32.dll - 0005:00000738 __imp__CreatePatternBrush@4 005b5738 gdi32:GDI32.dll - 0005:0000073c __imp__StretchBlt@44 005b573c gdi32:GDI32.dll - 0005:00000740 __imp__SetStretchBltMode@8 005b5740 gdi32:GDI32.dll - 0005:00000744 __imp__SetTextAlign@8 005b5744 gdi32:GDI32.dll - 0005:00000748 __imp__GetObjectA@12 005b5748 gdi32:GDI32.dll - 0005:0000074c __imp__CreateFontIndirectA@4 005b574c gdi32:GDI32.dll - 0005:00000750 __imp__EnumFontsA@16 005b5750 gdi32:GDI32.dll - 0005:00000754 __imp__GetDeviceCaps@8 005b5754 gdi32:GDI32.dll - 0005:00000758 __imp__CreateRectRgnIndirect@4 005b5758 gdi32:GDI32.dll - 0005:0000075c __imp__SelectObject@8 005b575c gdi32:GDI32.dll - 0005:00000760 \177GDI32_NULL_THUNK_DATA 005b5760 gdi32:GDI32.dll - 0005:00000764 __imp__LockResource@4 005b5764 kernel32:KERNEL32.dll - 0005:00000768 __imp__CloseHandle@4 005b5768 kernel32:KERNEL32.dll - 0005:0000076c __imp__GetProcAddress@8 005b576c kernel32:KERNEL32.dll - 0005:00000770 __imp__SetCurrentDirectoryA@4 005b5770 kernel32:KERNEL32.dll - 0005:00000774 __imp__FindClose@4 005b5774 kernel32:KERNEL32.dll - 0005:00000778 __imp__LoadResource@8 005b5778 kernel32:KERNEL32.dll - 0005:0000077c __imp__GlobalMemoryStatus@4 005b577c kernel32:KERNEL32.dll - 0005:00000780 __imp__FindResourceA@12 005b5780 kernel32:KERNEL32.dll - 0005:00000784 __imp__FreeLibrary@4 005b5784 kernel32:KERNEL32.dll - 0005:00000788 __imp__GetLastError@0 005b5788 kernel32:KERNEL32.dll - 0005:0000078c __imp__WaitForSingleObject@8 005b578c kernel32:KERNEL32.dll - 0005:00000790 __imp__LoadLibraryA@4 005b5790 kernel32:KERNEL32.dll - 0005:00000794 __imp__DeleteCriticalSection@4 005b5794 kernel32:KERNEL32.dll - 0005:00000798 __imp__InitializeCriticalSection@4 005b5798 kernel32:KERNEL32.dll - 0005:0000079c __imp__CreateProcessA@40 005b579c kernel32:KERNEL32.dll - 0005:000007a0 __imp__lstrcatA@8 005b57a0 kernel32:KERNEL32.dll - 0005:000007a4 __imp__IsBadReadPtr@8 005b57a4 kernel32:KERNEL32.dll - 0005:000007a8 __imp__MultiByteToWideChar@24 005b57a8 kernel32:KERNEL32.dll - 0005:000007ac __imp__GlobalLock@4 005b57ac kernel32:KERNEL32.dll - 0005:000007b0 __imp__SetEnvironmentVariableA@8 005b57b0 kernel32:KERNEL32.dll - 0005:000007b4 __imp__Sleep@4 005b57b4 kernel32:KERNEL32.dll - 0005:000007b8 __imp__GlobalUnlock@4 005b57b8 kernel32:KERNEL32.dll - 0005:000007bc __imp__GetVersionExA@4 005b57bc kernel32:KERNEL32.dll - 0005:000007c0 __imp__SetThreadPriority@8 005b57c0 kernel32:KERNEL32.dll - 0005:000007c4 __imp__CreateEventA@16 005b57c4 kernel32:KERNEL32.dll - 0005:000007c8 __imp__CreateThread@24 005b57c8 kernel32:KERNEL32.dll - 0005:000007cc __imp__FindNextFileA@8 005b57cc kernel32:KERNEL32.dll - 0005:000007d0 __imp__ResumeThread@4 005b57d0 kernel32:KERNEL32.dll - 0005:000007d4 __imp__SetEvent@4 005b57d4 kernel32:KERNEL32.dll - 0005:000007d8 __imp__MoveFileA@8 005b57d8 kernel32:KERNEL32.dll - 0005:000007dc __imp__GetLogicalDrives@0 005b57dc kernel32:KERNEL32.dll - 0005:000007e0 __imp__CreateDirectoryA@8 005b57e0 kernel32:KERNEL32.dll - 0005:000007e4 __imp__GetTempPathA@8 005b57e4 kernel32:KERNEL32.dll - 0005:000007e8 __imp__GetFileAttributesA@4 005b57e8 kernel32:KERNEL32.dll - 0005:000007ec __imp__GetDriveTypeA@4 005b57ec kernel32:KERNEL32.dll - 0005:000007f0 __imp__WriteFile@20 005b57f0 kernel32:KERNEL32.dll - 0005:000007f4 __imp__GetFullPathNameA@16 005b57f4 kernel32:KERNEL32.dll - 0005:000007f8 __imp__SetFilePointer@16 005b57f8 kernel32:KERNEL32.dll - 0005:000007fc __imp__ReadFile@20 005b57fc kernel32:KERNEL32.dll - 0005:00000800 __imp__SetEndOfFile@4 005b5800 kernel32:KERNEL32.dll - 0005:00000804 __imp__CreateFileA@28 005b5804 kernel32:KERNEL32.dll - 0005:00000808 __imp__FlushFileBuffers@4 005b5808 kernel32:KERNEL32.dll - 0005:0000080c __imp__DeleteFileA@4 005b580c kernel32:KERNEL32.dll - 0005:00000810 __imp__OutputDebugStringA@4 005b5810 kernel32:KERNEL32.dll - 0005:00000814 __imp__FatalAppExitA@8 005b5814 kernel32:KERNEL32.dll - 0005:00000818 __imp__GetCommandLineA@0 005b5818 kernel32:KERNEL32.dll - 0005:0000081c __imp__CompareStringA@24 005b581c kernel32:KERNEL32.dll - 0005:00000820 __imp__IsBadWritePtr@8 005b5820 kernel32:KERNEL32.dll - 0005:00000824 __imp__WideCharToMultiByte@32 005b5824 kernel32:KERNEL32.dll - 0005:00000828 __imp__GetCurrentThreadId@0 005b5828 kernel32:KERNEL32.dll - 0005:0000082c __imp__GlobalSize@4 005b582c kernel32:KERNEL32.dll - 0005:00000830 __imp__GlobalReAlloc@12 005b5830 kernel32:KERNEL32.dll - 0005:00000834 __imp__GlobalFree@4 005b5834 kernel32:KERNEL32.dll - 0005:00000838 __imp__LeaveCriticalSection@4 005b5838 kernel32:KERNEL32.dll - 0005:0000083c __imp__EnterCriticalSection@4 005b583c kernel32:KERNEL32.dll - 0005:00000840 __imp__GetVersion@0 005b5840 kernel32:KERNEL32.dll - 0005:00000844 __imp__GlobalAlloc@8 005b5844 kernel32:KERNEL32.dll - 0005:00000848 __imp__CreateSemaphoreA@16 005b5848 kernel32:KERNEL32.dll - 0005:0000084c __imp__GetModuleFileNameA@12 005b584c kernel32:KERNEL32.dll - 0005:00000850 __imp__FindFirstFileA@8 005b5850 kernel32:KERNEL32.dll - 0005:00000854 __imp__GetModuleHandleA@4 005b5854 kernel32:KERNEL32.dll - 0005:00000858 __imp__SetErrorMode@4 005b5858 kernel32:KERNEL32.dll - 0005:0000085c __imp__GetPrivateProfileStringA@24 005b585c kernel32:KERNEL32.dll - 0005:00000860 __imp__WritePrivateProfileStringA@16 005b5860 kernel32:KERNEL32.dll - 0005:00000864 __imp__GetPrivateProfileIntA@16 005b5864 kernel32:KERNEL32.dll - 0005:00000868 __imp___hwrite@12 005b5868 kernel32:KERNEL32.dll - 0005:0000086c __imp___hread@12 005b586c kernel32:KERNEL32.dll - 0005:00000870 __imp___llseek@12 005b5870 kernel32:KERNEL32.dll - 0005:00000874 __imp___lcreat@8 005b5874 kernel32:KERNEL32.dll - 0005:00000878 __imp___lclose@4 005b5878 kernel32:KERNEL32.dll - 0005:0000087c __imp__RtlUnwind@16 005b587c kernel32:KERNEL32.dll - 0005:00000880 __imp___lopen@8 005b5880 kernel32:KERNEL32.dll - 0005:00000884 __imp__GlobalHandle@4 005b5884 kernel32:KERNEL32.dll - 0005:00000888 __imp__GetProfileIntA@12 005b5888 kernel32:KERNEL32.dll - 0005:0000088c __imp__lstrlenA@4 005b588c kernel32:KERNEL32.dll - 0005:00000890 __imp__DebugBreak@0 005b5890 kernel32:KERNEL32.dll - 0005:00000894 __imp__GetCPInfo@8 005b5894 kernel32:KERNEL32.dll - 0005:00000898 __imp__UnhandledExceptionFilter@4 005b5898 kernel32:KERNEL32.dll - 0005:0000089c __imp__GetStdHandle@4 005b589c kernel32:KERNEL32.dll - 0005:000008a0 __imp__IsBadCodePtr@4 005b58a0 kernel32:KERNEL32.dll - 0005:000008a4 __imp__GetStartupInfoA@4 005b58a4 kernel32:KERNEL32.dll - 0005:000008a8 __imp__GetEnvironmentStrings@0 005b58a8 kernel32:KERNEL32.dll - 0005:000008ac __imp__ExitProcess@4 005b58ac kernel32:KERNEL32.dll - 0005:000008b0 __imp__GetACP@0 005b58b0 kernel32:KERNEL32.dll - 0005:000008b4 __imp__GetOEMCP@0 005b58b4 kernel32:KERNEL32.dll - 0005:000008b8 __imp__SetUnhandledExceptionFilter@4 005b58b8 kernel32:KERNEL32.dll - 0005:000008bc __imp__SetStdHandle@8 005b58bc kernel32:KERNEL32.dll - 0005:000008c0 __imp__GetFileType@4 005b58c0 kernel32:KERNEL32.dll - 0005:000008c4 __imp__VirtualFree@12 005b58c4 kernel32:KERNEL32.dll - 0005:000008c8 __imp__VirtualAlloc@16 005b58c8 kernel32:KERNEL32.dll - 0005:000008cc __imp__RaiseException@16 005b58cc kernel32:KERNEL32.dll - 0005:000008d0 \177KERNEL32_NULL_THUNK_DATA 005b58d0 kernel32:KERNEL32.dll - 0005:000008d4 __imp__WNetGetLastErrorA@20 005b58d4 mpr:MPR.dll - 0005:000008d8 __imp__WNetGetUserA@12 005b58d8 mpr:MPR.dll - 0005:000008dc \177MPR_NULL_THUNK_DATA 005b58dc mpr:MPR.dll - 0005:000008e0 __imp__acmStreamUnprepareHeader@12 005b58e0 audiod:MSACM32.dll - 0005:000008e4 __imp__acmStreamClose@8 005b58e4 audiod:MSACM32.dll - 0005:000008e8 __imp__acmStreamOpen@32 005b58e8 audiod:MSACM32.dll - 0005:000008ec __imp__acmStreamPrepareHeader@12 005b58ec audiod:MSACM32.dll - 0005:000008f0 __imp__acmStreamSize@16 005b58f0 audiod:MSACM32.dll - 0005:000008f4 __imp__acmFormatSuggest@20 005b58f4 audiod:MSACM32.dll - 0005:000008f8 __imp__acmFormatTagDetailsA@12 005b58f8 audiod:MSACM32.dll - 0005:000008fc __imp__acmMetrics@12 005b58fc audiod:MSACM32.dll - 0005:00000900 __imp__acmStreamConvert@12 005b5900 audiod:MSACM32.dll - 0005:00000904 \177MSACM32_NULL_THUNK_DATA 005b5904 audiod:MSACM32.dll - 0005:00000908 __imp__DrawDibOpen@0 005b5908 vfw32:MSVFW32.dll - 0005:0000090c __imp__DrawDibDraw@52 005b590c vfw32:MSVFW32.dll - 0005:00000910 __imp__ICInfo@12 005b5910 vfw32:MSVFW32.dll - 0005:00000914 __imp__DrawDibClose@4 005b5914 vfw32:MSVFW32.dll - 0005:00000918 \177MSVFW32_NULL_THUNK_DATA 005b5918 vfw32:MSVFW32.dll - 0005:0000091c __imp__TranslateMDISysAccel@8 005b591c user32:USER32.dll - 0005:00000920 __imp__TranslateAcceleratorA@12 005b5920 user32:USER32.dll - 0005:00000924 __imp__PeekMessageA@20 005b5924 user32:USER32.dll - 0005:00000928 __imp__ChangeClipboardChain@8 005b5928 user32:USER32.dll - 0005:0000092c __imp__GetCursorPos@4 005b592c user32:USER32.dll - 0005:00000930 __imp__TranslateMessage@4 005b5930 user32:USER32.dll - 0005:00000934 __imp__DispatchMessageA@4 005b5934 user32:USER32.dll - 0005:00000938 __imp__GetMessageA@16 005b5938 user32:USER32.dll - 0005:0000093c __imp__WindowFromPoint@8 005b593c user32:USER32.dll - 0005:00000940 __imp__ScreenToClient@8 005b5940 user32:USER32.dll - 0005:00000944 __imp__ClientToScreen@8 005b5944 user32:USER32.dll - 0005:00000948 __imp__ScrollWindowEx@32 005b5948 user32:USER32.dll - 0005:0000094c __imp__ValidateRect@8 005b594c user32:USER32.dll - 0005:00000950 __imp__GetUpdateRect@12 005b5950 user32:USER32.dll - 0005:00000954 __imp__CreateCursor@28 005b5954 user32:USER32.dll - 0005:00000958 __imp__GetClipboardOwner@0 005b5958 user32:USER32.dll - 0005:0000095c __imp__DefFrameProcA@20 005b595c user32:USER32.dll - 0005:00000960 __imp__GetCapture@0 005b5960 user32:USER32.dll - 0005:00000964 __imp__ReleaseCapture@0 005b5964 user32:USER32.dll - 0005:00000968 __imp__PostQuitMessage@4 005b5968 user32:USER32.dll - 0005:0000096c __imp__SetCursorPos@8 005b596c user32:USER32.dll - 0005:00000970 __imp__ShowCursor@4 005b5970 user32:USER32.dll - 0005:00000974 __imp__GetAsyncKeyState@4 005b5974 user32:USER32.dll - 0005:00000978 __imp__GetKeyState@4 005b5978 user32:USER32.dll - 0005:0000097c __imp__SetCursor@4 005b597c user32:USER32.dll - 0005:00000980 __imp__CharLowerBuffA@8 005b5980 user32:USER32.dll - 0005:00000984 __imp__CharUpperBuffA@8 005b5984 user32:USER32.dll - 0005:00000988 __imp__MessageBoxA@16 005b5988 user32:USER32.dll - 0005:0000098c __imp__CallWindowProcA@20 005b598c user32:USER32.dll - 0005:00000990 __imp__BeginPaint@8 005b5990 user32:USER32.dll - 0005:00000994 __imp__GetWindowTextA@12 005b5994 user32:USER32.dll - 0005:00000998 __imp__DefMDIChildProcA@16 005b5998 user32:USER32.dll - 0005:0000099c __imp__DestroyCursor@4 005b599c user32:USER32.dll - 0005:000009a0 __imp__SetCapture@4 005b59a0 user32:USER32.dll - 0005:000009a4 __imp__GetDlgItemTextA@16 005b59a4 user32:USER32.dll - 0005:000009a8 __imp__IsZoomed@4 005b59a8 user32:USER32.dll - 0005:000009ac __imp__SetClipboardViewer@4 005b59ac user32:USER32.dll - 0005:000009b0 __imp__GetClientRect@8 005b59b0 user32:USER32.dll - 0005:000009b4 __imp__MapWindowPoints@16 005b59b4 user32:USER32.dll - 0005:000009b8 __imp__GetWindowRect@8 005b59b8 user32:USER32.dll - 0005:000009bc __imp__InsertMenuA@20 005b59bc user32:USER32.dll - 0005:000009c0 __imp__GetDoubleClickTime@0 005b59c0 user32:USER32.dll - 0005:000009c4 __imp__UpdateWindow@4 005b59c4 user32:USER32.dll - 0005:000009c8 __imp__GetForegroundWindow@0 005b59c8 user32:USER32.dll - 0005:000009cc __imp__EnableMenuItem@12 005b59cc user32:USER32.dll - 0005:000009d0 __imp__GetWindowThreadProcessId@8 005b59d0 user32:USER32.dll - 0005:000009d4 __imp__PostThreadMessageA@16 005b59d4 user32:USER32.dll - 0005:000009d8 __imp__wsprintfA 005b59d8 user32:USER32.dll - 0005:000009dc __imp__SendDlgItemMessageA@20 005b59dc user32:USER32.dll - 0005:000009e0 __imp__KillTimer@8 005b59e0 user32:USER32.dll - 0005:000009e4 __imp__SetScrollRange@20 005b59e4 user32:USER32.dll - 0005:000009e8 __imp__SetScrollPos@16 005b59e8 user32:USER32.dll - 0005:000009ec __imp__GetPropA@8 005b59ec user32:USER32.dll - 0005:000009f0 __imp__SetPropA@12 005b59f0 user32:USER32.dll - 0005:000009f4 __imp__RemovePropA@8 005b59f4 user32:USER32.dll - 0005:000009f8 __imp__GetCaretBlinkTime@0 005b59f8 user32:USER32.dll - 0005:000009fc __imp__SetClipboardData@8 005b59fc user32:USER32.dll - 0005:00000a00 __imp__EmptyClipboard@0 005b5a00 user32:USER32.dll - 0005:00000a04 __imp__OpenClipboard@4 005b5a04 user32:USER32.dll - 0005:00000a08 __imp__EnumClipboardFormats@4 005b5a08 user32:USER32.dll - 0005:00000a0c __imp__GetClipboardData@4 005b5a0c user32:USER32.dll - 0005:00000a10 __imp__CloseClipboard@0 005b5a10 user32:USER32.dll - 0005:00000a14 __imp__IsIconic@4 005b5a14 user32:USER32.dll - 0005:00000a18 __imp__EnableWindow@8 005b5a18 user32:USER32.dll - 0005:00000a1c __imp__GetWindowLongA@8 005b5a1c user32:USER32.dll - 0005:00000a20 __imp__SetWindowLongA@12 005b5a20 user32:USER32.dll - 0005:00000a24 __imp__SetWindowPos@28 005b5a24 user32:USER32.dll - 0005:00000a28 __imp__AdjustWindowRect@12 005b5a28 user32:USER32.dll - 0005:00000a2c __imp__MoveWindow@24 005b5a2c user32:USER32.dll - 0005:00000a30 __imp__GetMenuStringA@20 005b5a30 user32:USER32.dll - 0005:00000a34 __imp__ModifyMenuA@20 005b5a34 user32:USER32.dll - 0005:00000a38 __imp__PostMessageA@16 005b5a38 user32:USER32.dll - 0005:00000a3c __imp__GetParent@4 005b5a3c user32:USER32.dll - 0005:00000a40 __imp__LoadIconA@8 005b5a40 user32:USER32.dll - 0005:00000a44 __imp__LoadCursorA@8 005b5a44 user32:USER32.dll - 0005:00000a48 __imp__RegisterClassA@4 005b5a48 user32:USER32.dll - 0005:00000a4c __imp__CreateWindowExA@48 005b5a4c user32:USER32.dll - 0005:00000a50 __imp__SetTimer@16 005b5a50 user32:USER32.dll - 0005:00000a54 __imp__SendMessageA@16 005b5a54 user32:USER32.dll - 0005:00000a58 __imp__GetMessageTime@0 005b5a58 user32:USER32.dll - 0005:00000a5c __imp__LoadAcceleratorsA@8 005b5a5c user32:USER32.dll - 0005:00000a60 __imp__GetSystemMetrics@4 005b5a60 user32:USER32.dll - 0005:00000a64 __imp__GetDC@4 005b5a64 user32:USER32.dll - 0005:00000a68 __imp__ReleaseDC@8 005b5a68 user32:USER32.dll - 0005:00000a6c __imp__FindWindowA@8 005b5a6c user32:USER32.dll - 0005:00000a70 __imp__SetForegroundWindow@4 005b5a70 user32:USER32.dll - 0005:00000a74 __imp__ShowWindow@8 005b5a74 user32:USER32.dll - 0005:00000a78 __imp__LoadStringA@16 005b5a78 user32:USER32.dll - 0005:00000a7c __imp__ClipCursor@4 005b5a7c user32:USER32.dll - 0005:00000a80 __imp__EndDialog@8 005b5a80 user32:USER32.dll - 0005:00000a84 __imp__SetDlgItemTextA@12 005b5a84 user32:USER32.dll - 0005:00000a88 __imp__DialogBoxParamA@20 005b5a88 user32:USER32.dll - 0005:00000a8c __imp__GetActiveWindow@0 005b5a8c user32:USER32.dll - 0005:00000a90 __imp__IsDlgButtonChecked@8 005b5a90 user32:USER32.dll - 0005:00000a94 __imp__CheckRadioButton@16 005b5a94 user32:USER32.dll - 0005:00000a98 __imp__GetDlgItem@8 005b5a98 user32:USER32.dll - 0005:00000a9c __imp__InvalidateRect@12 005b5a9c user32:USER32.dll - 0005:00000aa0 __imp__DeleteMenu@12 005b5aa0 user32:USER32.dll - 0005:00000aa4 __imp__GetSubMenu@8 005b5aa4 user32:USER32.dll - 0005:00000aa8 __imp__GetMenuItemID@8 005b5aa8 user32:USER32.dll - 0005:00000aac __imp__CheckMenuItem@12 005b5aac user32:USER32.dll - 0005:00000ab0 __imp__SetMenu@8 005b5ab0 user32:USER32.dll - 0005:00000ab4 __imp__GetMenuItemCount@4 005b5ab4 user32:USER32.dll - 0005:00000ab8 __imp__SetWindowTextA@8 005b5ab8 user32:USER32.dll - 0005:00000abc __imp__DestroyWindow@4 005b5abc user32:USER32.dll - 0005:00000ac0 __imp__CreateMDIWindowA@40 005b5ac0 user32:USER32.dll - 0005:00000ac4 __imp__IsWindow@4 005b5ac4 user32:USER32.dll - 0005:00000ac8 __imp__ScrollDC@28 005b5ac8 user32:USER32.dll - 0005:00000acc __imp__InvertRect@8 005b5acc user32:USER32.dll - 0005:00000ad0 __imp__FillRect@12 005b5ad0 user32:USER32.dll - 0005:00000ad4 __imp__GetWindow@8 005b5ad4 user32:USER32.dll - 0005:00000ad8 __imp__EndPaint@8 005b5ad8 user32:USER32.dll - 0005:00000adc __imp__SetFocus@4 005b5adc user32:USER32.dll - 0005:00000ae0 __imp__LoadMenuA@8 005b5ae0 user32:USER32.dll - 0005:00000ae4 __imp__CheckDlgButton@12 005b5ae4 user32:USER32.dll - 0005:00000ae8 __imp__wvsprintfA@12 005b5ae8 user32:USER32.dll - 0005:00000aec __imp__SystemParametersInfoA@16 005b5aec user32:USER32.dll - 0005:00000af0 \177USER32_NULL_THUNK_DATA 005b5af0 user32:USER32.dll - 0005:00000af4 __imp__midiOutGetVolume@8 005b5af4 winmm:WINMM.dll - 0005:00000af8 __imp__midiOutClose@4 005b5af8 winmm:WINMM.dll - 0005:00000afc __imp__midiOutOpen@20 005b5afc winmm:WINMM.dll - 0005:00000b00 __imp__midiOutReset@4 005b5b00 winmm:WINMM.dll - 0005:00000b04 __imp__midiOutShortMsg@8 005b5b04 winmm:WINMM.dll - 0005:00000b08 __imp__midiOutPrepareHeader@12 005b5b08 winmm:WINMM.dll - 0005:00000b0c __imp__midiOutUnprepareHeader@12 005b5b0c winmm:WINMM.dll - 0005:00000b10 __imp__timeGetTime@0 005b5b10 winmm:WINMM.dll - 0005:00000b14 __imp__mciSendCommandA@16 005b5b14 winmm:WINMM.dll - 0005:00000b18 __imp__waveOutGetDevCapsA@12 005b5b18 winmm:WINMM.dll - 0005:00000b1c __imp__waveOutGetNumDevs@0 005b5b1c winmm:WINMM.dll - 0005:00000b20 __imp__midiOutGetNumDevs@0 005b5b20 winmm:WINMM.dll - 0005:00000b24 __imp__midiOutSetVolume@8 005b5b24 winmm:WINMM.dll - 0005:00000b28 __imp__waveOutGetVolume@8 005b5b28 winmm:WINMM.dll - 0005:00000b2c __imp__waveOutGetPosition@12 005b5b2c winmm:WINMM.dll - 0005:00000b30 __imp__waveOutGetPitch@8 005b5b30 winmm:WINMM.dll - 0005:00000b34 __imp__timeSetEvent@20 005b5b34 winmm:WINMM.dll - 0005:00000b38 __imp__timeGetDevCaps@8 005b5b38 winmm:WINMM.dll - 0005:00000b3c __imp__timeKillEvent@4 005b5b3c winmm:WINMM.dll - 0005:00000b40 __imp__waveOutClose@4 005b5b40 winmm:WINMM.dll - 0005:00000b44 __imp__waveOutReset@4 005b5b44 winmm:WINMM.dll - 0005:00000b48 __imp__waveOutGetID@8 005b5b48 winmm:WINMM.dll - 0005:00000b4c __imp__waveOutOpen@24 005b5b4c winmm:WINMM.dll - 0005:00000b50 __imp__waveOutSetVolume@8 005b5b50 winmm:WINMM.dll - 0005:00000b54 __imp__waveOutPrepareHeader@12 005b5b54 winmm:WINMM.dll - 0005:00000b58 __imp__waveOutUnprepareHeader@12 005b5b58 winmm:WINMM.dll - 0005:00000b5c __imp__waveOutWrite@12 005b5b5c winmm:WINMM.dll - 0005:00000b60 __imp__waveOutPause@4 005b5b60 winmm:WINMM.dll - 0005:00000b64 __imp__waveOutRestart@4 005b5b64 winmm:WINMM.dll - 0005:00000b68 __imp__waveOutBreakLoop@4 005b5b68 winmm:WINMM.dll - 0005:00000b6c __imp__waveInClose@4 005b5b6c winmm:WINMM.dll - 0005:00000b70 __imp__waveInAddBuffer@12 005b5b70 winmm:WINMM.dll - 0005:00000b74 __imp__waveOutSetPitch@8 005b5b74 winmm:WINMM.dll - 0005:00000b78 __imp__waveOutGetPlaybackRate@8 005b5b78 winmm:WINMM.dll - 0005:00000b7c __imp__waveOutSetPlaybackRate@8 005b5b7c winmm:WINMM.dll - 0005:00000b80 __imp__waveOutMessage@16 005b5b80 winmm:WINMM.dll - 0005:00000b84 __imp__waveOutGetErrorTextA@12 005b5b84 winmm:WINMM.dll - 0005:00000b88 __imp__waveInGetNumDevs@0 005b5b88 winmm:WINMM.dll - 0005:00000b8c __imp__waveInStop@4 005b5b8c winmm:WINMM.dll - 0005:00000b90 __imp__waveInPrepareHeader@12 005b5b90 winmm:WINMM.dll - 0005:00000b94 __imp__waveInOpen@24 005b5b94 winmm:WINMM.dll - 0005:00000b98 __imp__waveInUnprepareHeader@12 005b5b98 winmm:WINMM.dll - 0005:00000b9c __imp__waveInReset@4 005b5b9c winmm:WINMM.dll - 0005:00000ba0 __imp__waveInStart@4 005b5ba0 winmm:WINMM.dll - 0005:00000ba4 \177WINMM_NULL_THUNK_DATA 005b5ba4 winmm:WINMM.dll - 0005:00000ba8 __imp__GetSaveFileNameA@4 005b5ba8 comdlg32:comdlg32.dll - 0005:00000bac __imp__GetOpenFileNameA@4 005b5bac comdlg32:comdlg32.dll - 0005:00000bb0 __imp__CommDlgExtendedError@0 005b5bb0 comdlg32:comdlg32.dll - 0005:00000bb4 \177comdlg32_NULL_THUNK_DATA 005b5bb4 comdlg32:comdlg32.dll - - entry point at 0001:0017f4c4 - - Static symbols - - 0001:000dcc40 _$$1000 004ddc40 f lex.obj - 0001:000dcc60 _$$8000 004ddc60 f lex.obj - 0001:000dc730 _$$1000 004dd730 f scrcom.obj - 0001:000dcc20 _$$8000 004ddc20 f scrcom.obj - 0001:000d88b0 _$$e200 004d98b0 f screxeg.obj - 0001:000d8cd0 _$$1000 004d9cd0 f screxeg.obj - 0001:000dc530 _$$f200 004dd530 f screxeg.obj - 0001:000dc550 _$$8000 004dd550 f screxeg.obj - 0001:000d0730 _$$1000 004d1730 f kidspace.obj - 0001:000d3a60 _$$8000 004d4a60 f kidspace.obj - 0001:000d8480 _$$e200 004d9480 f kidspace.obj - 0001:000cc0b0 _$$1000 004cd0b0 f kidhelp.obj - 0001:000cf090 _$$8000 004d0090 f kidhelp.obj - 0001:000cfe10 _$$e200 004d0e10 f kidhelp.obj - 0001:000ca560 _$$1000 004cb560 f kidworld.obj - 0001:000cb9a0 _$$e200 004cc9a0 f kidworld.obj - 0001:000cba70 _$$8000 004cca70 f kidworld.obj - 0001:000c60a0 _$$1000 004c70a0 f text.obj - 0001:000c96f0 _$$8000 004ca6f0 f text.obj - 0001:000c9e30 _$$a200 004cae30 f text.obj - 0001:000c4b60 _$$1000 004c5b60 f dlgwin.obj - 0001:000c5c30 _$$a200 004c6c30 f dlgwin.obj - 0001:000c5c50 _$$8000 004c6c50 f dlgwin.obj - 0001:000c3ad0 _$$1000 004c4ad0 f dlg.obj - 0001:000c4430 _$$a200 004c5430 f dlg.obj - 0001:000c44c0 _$$8000 004c54c0 f dlg.obj - 0001:000c10b0 _$$1000 004c20b0 f stream.obj - 0001:000c3320 _$$8000 004c4320 f stream.obj - 0001:000bff20 _$$1000 004c0f20 f ctl.obj - 0001:000c0900 _$$a200 004c1900 f ctl.obj - 0001:000c0960 _$$8000 004c1960 f ctl.obj - 0001:000b72a0 _$$1000 004b82a0 f rtxt2.obj - 0001:000ba560 _$$8000 004bb560 f rtxt2.obj - 0001:000bf890 _$$a200 004c0890 f rtxt2.obj - 0001:000ad390 _$$1000 004ae390 f rtxt.obj - 0001:000b0570 _$$8000 004b1570 f rtxt.obj - 0001:000b6c10 _$$a200 004b7c10 f rtxt.obj - 0001:000abd00 _$$a200 004acd00 f clip.obj - 0001:000ac0f0 _$$1000 004ad0f0 f clip.obj - 0001:000accc0 _$$b200 004adcc0 f clip.obj - 0001:000acce0 _$$c200 004adce0 f clip.obj - 0001:000acd00 _$$d200 004add00 f clip.obj - 0001:000acda0 _$$8000 004adda0 f clip.obj - 0001:000a4960 _$$1000 004a5960 f docb.obj - 0001:000a7d40 _$$8000 004a8d40 f docb.obj - 0001:000ab8d0 _$$a200 004ac8d0 f docb.obj - 0001:0009f9c0 _$$8000 004a09c0 f screxe.obj - 0001:0009ff70 _$$1000 004a0f70 f screxe.obj - 0001:000a4270 _$$9000 004a5270 f screxe.obj - 0001:0009da00 _$$a200 0049ea00 f video.obj - 0001:0009dcb0 _$$1000 0049ecb0 f video.obj - 0001:0009f580 _$$b200 004a0580 f video.obj - 0001:0009f670 _$$8000 004a0670 f video.obj - 0001:0009c540 _$$1000 0049d540 f midi.obj - 0001:0009d640 _$$a200 0049e640 f midi.obj - 0001:0009d710 _$$8000 0049e710 f midi.obj - 0001:000960f0 _$$1000 004970f0 f mididev2.obj - 0001:00099480 _$$8000 0049a480 f mididev2.obj - 0001:0009ba20 _$$a200 0049ca20 f mididev2.obj - 0001:00095510 _$$a200 00496510 f mididev.obj - 0001:000958b0 _$$1000 004968b0 f mididev.obj - 0001:00095a00 _$$b200 00496a00 f mididev.obj - 0001:00095a20 _$$c200 00496a20 f mididev.obj - 0001:00095a40 _$$d200 00496a40 f mididev.obj - 0001:00095ab0 _$$8000 00496ab0 f mididev.obj - 0001:00092d50 _$$1000 00493d50 f sndam.obj - 0001:000951f0 _$$a200 004961f0 f sndam.obj - 0001:00095400 _$$8000 00496400 f sndam.obj - 0001:0008f8b0 _$$1000 004908b0 f sndm.obj - 0001:000926e0 _$$a200 004936e0 f sndm.obj - 0001:00092700 _$$8000 00493700 f sndm.obj - 0001:0008d660 _$$1000 0048e660 f mbmp.obj - 0001:0008f0f0 _$$a200 004900f0 f mbmp.obj - 0001:0008f1b0 _$$8000 004901b0 f mbmp.obj - 0001:000894a0 _$$8000 0048a4a0 f fniwin.obj - 0001:00089b40 _$$1000 0048ab40 f fniwin.obj - 0001:0008cc10 _$$9000 0048dc10 f fniwin.obj - 0001:0008cc30 _$$a000 0048dc30 f fniwin.obj - 0001:0008cc50 _$$b000 0048dc50 f fniwin.obj - 0001:00088800 _$$1000 00489800 f filewin.obj - 0001:00089480 _$$8000 0048a480 f filewin.obj - 0001:00084800 _$$8000 00485800 f file.obj - 0001:00084cc0 _$$1000 00485cc0 f file.obj - 0001:000881d0 _$$9000 004891d0 f file.obj - 0001:000881f0 _$$a000 004891f0 f file.obj - 0001:00088210 _$$b000 00489210 f file.obj - 0001:00081490 _$$1000 00482490 f crf.obj - 0001:00084670 _$$8000 00485670 f crf.obj - 0001:00079920 _$$1000 0047a920 f codkauai.obj - 0001:00080f30 _$$8000 00481f30 f codkauai.obj - 0001:00078ae0 _$$1000 00479ae0 f codec.obj - 0001:000793f0 _$$8000 0047a3f0 f codec.obj - 0001:0006da10 _$$1000 0046ea10 f chunk.obj - 0001:00078540 _$$8000 00479540 f chunk.obj - 0001:0006ada0 _$$1000 0046bda0 f groups2.obj - 0001:0006d5f0 _$$8000 0046e5f0 f groups2.obj - 0001:00063a00 _$$1000 00464a00 f groups.obj - 0001:0006a5a0 _$$8000 0046b5a0 f groups.obj - 0001:00063160 _$$1000 00464160 f picwin.obj - 0001:00063180 _$$a200 00464180 f picwin.obj - 0001:00063240 _$$8000 00464240 f picwin.obj - 0001:00061a80 _$$1000 00462a80 f menuwin.obj - 0001:00062fb0 _$$a200 00463fb0 f menuwin.obj - 0001:00063010 _$$8000 00464010 f menuwin.obj - 0001:000610d0 _$$1000 004620d0 f gobwin.obj - 0001:000614d0 _$$a200 004624d0 f gobwin.obj - 0001:000614f0 _$$8000 004624f0 f gobwin.obj - 0001:0005ca90 _$$1000 0045da90 f gfxwin.obj - 0001:0005f500 _$$8000 00460500 f gfxwin.obj - 0001:00060be0 _$$b200 00461be0 f gfxwin.obj - 0001:00059cf0 _$$1000 0045acf0 f appbwin.obj - 0001:0005b770 _$$a200 0045c770 f appbwin.obj - 0001:0005bef0 _$$b200 0045cef0 f appbwin.obj - 0001:0005bf10 _$$c200 0045cf10 f appbwin.obj - 0001:0005bf30 _$$d200 0045cf30 f appbwin.obj - 0001:0005bf60 _$$8000 0045cf60 f appbwin.obj - 0001:000596d0 _$$1000 0045a6d0 f pic.obj - 0001:000596f0 _$$a200 0045a6f0 f pic.obj - 0001:00059710 _$$8000 0045a710 f pic.obj - 0001:00055dc0 _$$1000 00456dc0 f region.obj - 0001:00059300 _$$8000 0045a300 f region.obj - 0001:000595f0 _$$a200 0045a5f0 f region.obj - 0001:000554a0 _$$1000 004564a0 f mbmpgui.obj - 0001:00055930 _$$a200 00456930 f mbmpgui.obj - 0001:000559c0 _$$8000 004569c0 f mbmpgui.obj - 0001:00050960 _$$1000 00451960 f gob.obj - 0001:00053ca0 _$$8000 00454ca0 f gob.obj - 0001:00054f40 _$$a200 00455f40 f gob.obj - 0001:0004a0d0 _$$a200 0044b0d0 f gfx.obj - 0001:0004a610 _$$1000 0044b610 f gfx.obj - 0001:0004bfa0 _$$8000 0044cfa0 f gfx.obj - 0001:00050230 _$$b200 00451230 f gfx.obj - 0001:00050250 _$$c200 00451250 f gfx.obj - 0001:00050270 _$$d200 00451270 f gfx.obj - 0001:00049ed0 _$$1000 0044aed0 f cursor.obj - 0001:00049f20 _$$a200 0044af20 f cursor.obj - 0001:00049f80 _$$8000 0044af80 f cursor.obj - 0001:000466c0 _$$1000 004476c0 f cmd.obj - 0001:00049450 _$$8000 0044a450 f cmd.obj - 0001:000498b0 _$$a200 0044a8b0 f cmd.obj - 0001:00045370 _$$a200 00446370 f clok.obj - 0001:000456f0 _$$1000 004466f0 f clok.obj - 0001:00045f40 _$$b200 00446f40 f clok.obj - 0001:00045fb0 _$$8000 00446fb0 f clok.obj - 0001:000407c0 _$$1000 004417c0 f appb.obj - 0001:00043cb0 _$$8000 00444cb0 f appb.obj - 0001:00044f20 _$$a200 00445f20 f appb.obj - 0001:000451c0 _$$b200 004461c0 f appb.obj - 0001:000451e0 _$$c200 004461e0 f appb.obj - 0001:00045200 _$$d200 00446200 f appb.obj - 0001:00040220 _$$1000 00441220 f memwin.obj - 0001:000402f0 _$$8000 004412f0 f memwin.obj - 0001:0003d1c0 _$$1000 0043e1c0 f utilstr.obj - 0001:0003fd10 _$$8000 00440d10 f utilstr.obj - 0001:0003c710 _$$1000 0043d710 f utilrnd.obj - 0001:0003ccf0 _$$8000 0043dcf0 f utilrnd.obj - 0001:0003b670 _$$1000 0043c670 f utilmem.obj - 0001:0003c240 _$$8000 0043d240 f utilmem.obj - 0001:00039430 _$$1000 0043a430 f utilint.obj - 0001:0003b120 _$$8000 0043c120 f utilint.obj - 0001:000389a0 _$$8000 004399a0 f utilerro.obj - 0001:00038ee0 _$$1000 00439ee0 f utilerro.obj - 0001:000390d0 _$$9000 0043a0d0 f utilerro.obj - 0001:000390f0 _$$a000 0043a0f0 f utilerro.obj - 0001:00039110 _$$b000 0043a110 f utilerro.obj - 0001:00038550 _$$1000 00439550 f utilcopy.obj - 0001:00038980 _$$8000 00439980 f utilcopy.obj - 0001:000374b0 _$$1000 004384b0 f base.obj - 0001:000381c0 _$$8000 004391c0 f base.obj - 0001:00036e80 _$$8000 00437e80 f util.obj - 0001:00036ea0 _$$1000 00437ea0 f util.obj - 0001:00036a00 _$$8000 00437a00 f utilglob.obj - 0001:00036a70 _$$9000 00437a70 f utilglob.obj - 0001:00036ad0 _$$a000 00437ad0 f utilglob.obj - 0001:00036af0 _$$b000 00437af0 f utilglob.obj - 0001:00036be0 _$$1000 00437be0 f utilglob.obj - 0001:000367c0 _$$1000 004377c0 f mminstal.obj - 0001:000367e0 _$$e500 004377e0 f mminstal.obj - 0001:00036800 _$$8000 00437800 f mminstal.obj - 0001:00036910 _$$7300 00437910 f mminstal.obj - 0001:00033910 _$$1000 00434910 f portf.obj - 0001:00036080 _$$e500 00437080 f portf.obj - 0001:000360a0 _$$8000 004370a0 f portf.obj - 0001:00036210 _$$7300 00437210 f portf.obj - 0001:00032e20 _$$1000 00433e20 f tatr.obj - 0001:00033180 _$$e500 00434180 f tatr.obj - 0001:000331e0 _$$8000 004341e0 f tatr.obj - 0001:000332f0 _$$7300 004342f0 f tatr.obj - 0001:000318c0 _$$1000 004328c0 f popup.obj - 0001:000323c0 _$$e500 004333c0 f popup.obj - 0001:000323f0 _$$8000 004333f0 f popup.obj - 0001:00032530 _$$7300 00433530 f popup.obj - 0001:0002f1d0 _$$1000 004301d0 f ape.obj - 0001:00031080 _$$e500 00432080 f ape.obj - 0001:00031110 _$$8000 00432110 f ape.obj - 0001:00031270 _$$7300 00432270 f ape.obj - 0001:00028580 _$$1000 00429580 f esl.obj - 0001:0002bcb0 _$$8000 0042ccb0 f esl.obj - 0001:0002e4a0 _$$e500 0042f4a0 f esl.obj - 0001:0002e4f0 _$$7300 0042f4f0 f esl.obj - 0001:00027b20 _$$1000 00428b20 f tgob.obj - 0001:00027e30 _$$e500 00428e30 f tgob.obj - 0001:00027e90 _$$8000 00428e90 f tgob.obj - 0001:00027fa0 _$$7300 00428fa0 f tgob.obj - 0001:0001fb60 _$$1000 00420b60 f studio.obj - 0001:00022e30 _$$8000 00423e30 f studio.obj - 0001:00025830 _$$7300 00426830 f studio.obj - 0001:000267f0 _$$e500 004277f0 f studio.obj - 0001:0001e280 _$$1000 0041f280 f stdiobrw.obj - 0001:0001f100 _$$e500 00420100 f stdiobrw.obj - 0001:0001f190 _$$8000 00420190 f stdiobrw.obj - 0001:0001f2a0 _$$7300 004202a0 f stdiobrw.obj - 0001:0001c9b0 _$$1000 0041d9b0 f stdioscb.obj - 0001:0001d130 _$$e500 0041e130 f stdioscb.obj - 0001:0001d190 _$$8000 0041e190 f stdioscb.obj - 0001:0001d2a0 _$$7300 0041e2a0 f stdioscb.obj - 0001:000104c0 _$$e500 004114c0 f utest.obj - 0001:00010ee0 _$$1000 00411ee0 f utest.obj - 0001:000144e0 _$$8000 004154e0 f utest.obj - 0001:00017160 _$$7300 00418160 f utest.obj - 0001:0001ba90 _$$f500 0041ca90 f utest.obj - 0001:0001bab0 _$$0600 0041cab0 f utest.obj - 0001:0001bad0 _$$1600 0041cad0 f utest.obj - 0001:00005b50 _$$1000 00406b50 f browser.obj - 0001:00008ec0 _$$8000 00409ec0 f browser.obj - 0001:0000bdd0 _$$7300 0040cdd0 f browser.obj - 0001:0000f900 _$$e500 00410900 f browser.obj - 0001:00002ce0 _$$1000 00403ce0 f scnsort.obj - 0001:00004e80 _$$e500 00405e80 f scnsort.obj - 0001:00004f10 _$$8000 00405f10 f scnsort.obj - 0001:00005120 _$$7300 00406120 f scnsort.obj - 0001:00000b00 _$$1000 00401b00 f splot.obj - 0001:000017f0 _$$e500 004027f0 f splot.obj - 0001:00001850 _$$8000 00402850 f splot.obj - 0001:00001c30 _$$7300 00402c30 f splot.obj - 0001:00187cd0 _$$1000 00588cd0 f bren:tmap.obj - 0001:00187f10 _$$f200 00588f10 f bren:tmap.obj - 0001:00187f70 _$$8000 00588f70 f bren:tmap.obj - 0001:00187720 _BrStdlibAllocate 00588720 f bren:stdmem.obj - 0001:00187790 _BrStdlibFree 00588790 f bren:stdmem.obj - 0001:001877e0 _BrStdlibInquire 005887e0 f bren:stdmem.obj - 0001:001876d0 _BrStdioWarning 005886d0 f bren:stderr.obj - 0001:001876f0 _BrStdioError 005886f0 f bren:stderr.obj - 0001:00187160 _BrStdioAttributes 00588160 f bren:stdfile.obj - 0001:00187440 _BrStdioOpenWrite 00588440 f bren:stdfile.obj - 0001:00187490 _BrStdioClose 00588490 f bren:stdfile.obj - 0001:001874b0 _BrStdioEof 005884b0 f bren:stdfile.obj - 0001:001874d0 _BrStdioGetChar 005884d0 f bren:stdfile.obj - 0001:00187530 _BrStdioPutChar 00588530 f bren:stdfile.obj - 0001:00187580 _BrStdioRead 00588580 f bren:stdfile.obj - 0001:001875b0 _BrStdioWrite 005885b0 f bren:stdfile.obj - 0001:001875e0 _BrStdioGetLine 005885e0 f bren:stdfile.obj - 0001:001876b0 _BrStdioAdvance 005886b0 f bren:stdfile.obj - 0001:000fde40 _$$1000 004fee40 f bren:zbmp.obj - 0001:000fe590 _$$f200 004ff590 f bren:zbmp.obj - 0001:000fe5f0 _$$8000 004ff5f0 f bren:zbmp.obj - 0001:000fb5b0 _$$1000 004fc5b0 f bren:bwld.obj - 0001:000fd7d0 _$$f200 004fe7d0 f bren:bwld.obj - 0001:000fd830 _$$8000 004fe830 f bren:bwld.obj - 0001:0017de40 _$$1000 0057ee40 f engine:tdf.obj - 0001:0017e200 _$$1400 0057f200 f engine:tdf.obj - 0001:0017e260 _$$8000 0057f260 f engine:tdf.obj - 0001:0017e3b0 _$$7300 0057f3b0 f engine:tdf.obj - 0001:0017cef0 _$$1000 0057def0 f engine:modl.obj - 0001:0017d650 _$$1400 0057e650 f engine:modl.obj - 0001:0017d6b0 _$$8000 0057e6b0 f engine:modl.obj - 0001:0017d800 _$$7300 0057e800 f engine:modl.obj - 0001:0017b3f0 _$$1000 0057c3f0 f engine:actrsave.obj - 0001:0017ca70 _$$1400 0057da70 f engine:actrsave.obj - 0001:0017ca90 _$$8000 0057da90 f engine:actrsave.obj - 0001:0017cba0 _$$7300 0057dba0 f engine:actrsave.obj - 0001:0017a6b0 _$$1000 0057b6b0 f engine:tagl.obj - 0001:0017ac30 _$$1400 0057bc30 f engine:tagl.obj - 0001:0017acd0 _$$8000 0057bcd0 f engine:tagl.obj - 0001:0017ade0 _$$7300 0057bde0 f engine:tagl.obj - 0001:001793f0 _$$1000 0057a3f0 f engine:srec.obj - 0001:00179e50 _$$1400 0057ae50 f engine:srec.obj - 0001:00179ef0 _$$8000 0057aef0 f engine:srec.obj - 0001:0017a130 _$$7300 0057b130 f engine:srec.obj - 0001:00177a20 _$$1000 00578a20 f engine:actrsnd.obj - 0001:00178d70 _$$1400 00579d70 f engine:actrsnd.obj - 0001:00178d90 _$$8000 00579d90 f engine:actrsnd.obj - 0001:00178ef0 _$$7300 00579ef0 f engine:actrsnd.obj - 0001:0016f350 _$$1000 00570350 f engine:tbox.obj - 0001:00172840 _$$8000 00573840 f engine:tbox.obj - 0001:001750a0 _$$7300 005760a0 f engine:tbox.obj - 0001:00176fd0 _$$1400 00577fd0 f engine:tbox.obj - 0001:0016bb70 _$$1000 0056cb70 f engine:actredit.obj - 0001:0016e7f0 _$$8000 0056f7f0 f engine:actredit.obj - 0001:0016e960 _$$1400 0056f960 f engine:actredit.obj - 0001:0016eea0 _$$7300 0056fea0 f engine:actredit.obj - 0001:001685a0 _$$1000 005695a0 f engine:tdt.obj - 0001:0016b200 _$$1400 0056c200 f engine:tdt.obj - 0001:0016b220 _$$8000 0056c220 f engine:tdt.obj - 0001:0016b360 _$$7300 0056c360 f engine:tdt.obj - 0001:001667b0 _$$1000 005677b0 f engine:mtrl.obj - 0001:00167d80 _$$1400 00568d80 f engine:mtrl.obj - 0001:00167e20 _$$8000 00568e20 f engine:mtrl.obj - 0001:00167fe0 _$$7300 00568fe0 f engine:mtrl.obj - 0001:00162cb0 _$$1000 00563cb0 f engine:tmpl.obj - 0001:00165e20 _$$1400 00566e20 f engine:tmpl.obj - 0001:00165e40 _$$8000 00566e40 f engine:tmpl.obj - 0001:00166130 _$$7300 00567130 f engine:tmpl.obj - 0001:00156150 _$$1000 00557150 f engine:actor.obj - 0001:00159a30 _$$8000 0055aa30 f engine:actor.obj - 0001:0015c3a0 _$$7300 0055d3a0 f engine:actor.obj - 0001:00162680 _$$1400 00563680 f engine:actor.obj - 0001:00151b10 _$$1000 00552b10 f engine:body.obj - 0001:00154ba0 _$$8000 00555ba0 f engine:body.obj - 0001:00155920 _$$1400 00556920 f engine:body.obj - 0001:00155c70 _$$7300 00556c70 f engine:body.obj - 0001:0014f6d0 _$$1000 005506d0 f engine:bkgd.obj - 0001:001513a0 _$$1400 005523a0 f engine:bkgd.obj - 0001:00151440 _$$8000 00552440 f engine:bkgd.obj - 0001:00151550 _$$7300 00552550 f engine:bkgd.obj - 0001:00141730 _$$1000 00542730 f engine:scene.obj - 0001:001445e0 _$$8000 005455e0 f engine:scene.obj - 0001:00146d20 _$$7300 00547d20 f engine:scene.obj - 0001:0014ef60 _$$1400 0054ff60 f engine:scene.obj - 0001:0013ddf0 _$$1000 0053edf0 f engine:tagman.obj - 0001:001414b0 _$$1400 005424b0 f engine:tagman.obj - 0001:001414d0 _$$8000 005424d0 f engine:tagman.obj - 0001:001416e0 _$$7300 005426e0 f engine:tagman.obj - 0001:0013b140 _$$1000 0053c140 f engine:msnd.obj - 0001:0013d5b0 _$$1400 0053e5b0 f engine:msnd.obj - 0001:0013d6c0 _$$8000 0053e6c0 f engine:msnd.obj - 0001:0013d950 _$$7300 0053e950 f engine:msnd.obj - 0001:00126fe0 _$$1000 00527fe0 f engine:movie.obj - 0001:0012a0b0 _$$8000 0052b0b0 f engine:movie.obj - 0001:0012cb30 _$$7300 0052db30 f engine:movie.obj - 0001:0013ab00 _$$1400 0053bb00 f engine:movie.obj - 0001:0018dafc _findenv 0058eafc f LIBC:setenv.obj - 0001:0018db59 _copy_environ 0058eb59 f LIBC:setenv.obj - 0001:0018d603 _strncnt 0058e603 f LIBC:aw_cmp.obj - 0001:0018ce23 _strtoxl 0058de23 f LIBC:strtol.obj - 0001:0018697f _siglookup 0058797f f LIBC:winsig.obj - 0001:00185a53 _strncnt 00586a53 f LIBC:aw_map.obj - 0001:0018589f __before 0058689f f LIBC:heapadd.obj - 0001:00184732 _$$1000 00585732 f LIBC:unhandld.obj - 0001:00184797 _$$2000 00585797 f LIBC:unhandld.obj - 0001:00183eac __abstract_cw 00584eac f LIBC:ieee87.obj - 0001:00183f3f __hw_cw 00584f3f f LIBC:ieee87.obj - 0001:00183bff __heap_new_region 00584bff f LIBC:heapgrow.obj - 0001:0018391d __get_fname 0058491d f LIBC:fpexcept.obj - 0001:00183118 _write_char 00584118 f LIBC:output.obj - 0001:00183158 _write_multi_char 00584158 f LIBC:output.obj - 0001:00183189 _write_string 00584189 f LIBC:output.obj - 0001:001831c0 _get_int_arg 005841c0 f LIBC:output.obj - 0001:001831cf _get_int64_arg 005841cf f LIBC:output.obj - 0001:001831e3 _get_short_arg 005841e3 f LIBC:output.obj - 0001:00181efa _flsall 00582efa f LIBC:fflush.obj - 0001:001813db ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 005823db f LIBC:frame.obj - 0001:00181629 ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 00582629 f LIBC:frame.obj - 0001:001816f9 ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 005826f9 f LIBC:frame.obj - 0001:00181853 ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 00582853 f LIBC:frame.obj - 0001:001818e0 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 005828e0 f LIBC:frame.obj - 0001:001819e8 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 005829e8 f LIBC:frame.obj - 0001:00181a13 ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 00582a13 f LIBC:frame.obj - 0001:00181c02 ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 00582c02 f LIBC:frame.obj - 0001:00181c6e ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 00582c6e f LIBC:frame.obj - 0001:00181215 __heap_grow_emptylist 00582215 f LIBC:heapinit.obj - 0001:00180ec9 _getSystemCP 00581ec9 f LIBC:mbctype.obj - 0001:00180f04 _CPtoLCID 00581f04 f LIBC:mbctype.obj - 0001:00180f43 _setSBCS 00581f43 f LIBC:mbctype.obj - 0001:00180cff _parse_cmdline 00581cff f LIBC:stdargv.obj - 0001:00180b69 @x_ismbbtype@12 00581b69 f LIBC:ismbbyte.obj - 0001:00180b2e _xcptlookup 00581b2e f LIBC:winxfltr.obj - 0001:00180768 __cftoe_g 00581768 f LIBC:cvt.obj - 0001:00180889 __cftof_g 00581889 f LIBC:cvt.obj - 0001:001809a5 __shift 005819a5 f LIBC:cvt.obj - 0001:00180209 __heap_expand_block 00581209 f LIBC:realloc.obj - 0001:00180074 _doexit 00581074 f LIBC:crt0dat.obj - 0001:001800f3 __initterm 005810f3 f LIBC:crt0dat.obj - 0001:0017f937 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 00580937 f LIBC:trnsctrl.obj - 0001:0017fa2b ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 00580a2b f LIBC:trnsctrl.obj - 0001:0017e44c __unwind_handler 0057f44c f LIBC:exsup.obj - -FIXUPS: 17f5c4 1e 12 44 13 13 fffffeed d 35 25 fffffe8e 17bd ffffff9e f -FIXUPS: 180bb8 ffffff81 b b 1b fffffd19 4c 53 31 110 13 fffffab0 c 5 10 -FIXUPS: 180557 5 30 56 6 15 f 23 fffffe49 5 a fffff234 fffffff3 ffffffd0 -FIXUPS: 181127 16 33 1f d 23 23 fffffe56 12 11 11 5d 12 fffffebf 10 2d -FIXUPS: 180fe7 13 17 ffffff59 a fffffeed 20 ffffff88 20 fffffe34 ffffffb9 -FIXUPS: 180c20 18 a ffffff8e 1a 963 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 -FIXUPS: 1818ba 36 47 11 2c 16 13 29 fffffa90 9a ffffff10 ffffffa6 fffffedb -FIXUPS: 1812ae f e c 3d 55 17c6 13 1a a a f f 1a d e d 7 10 5a 12 fffff622 -FIXUPS: 181f74 b8 78 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 ffffff3f -FIXUPS: 1819d7 fffffb55 f4a 3c 114 26 28 a 3b 2e 52 5c 46 6d 1a 21 14 39 -FIXUPS: 182893 15 21 e 77 4f 9 c 17 af 13 1d 1f 13 17 21 5bd 2d 32 fffffe54 -FIXUPS: 182fc7 46 29 fffffe17 b 21 42 37 2f 19 2b e fffffeaa ffffff8c c -FIXUPS: 182dc2 20 d ffffff0e 72 fffff5bf 2b 2c 2b 1b 34 46 c 1ae0 96 14 -FIXUPS: 183ff7 2d 16 1d 1b cb 3a 37 fffff681 d 2b 1a 1f fffffcf0 3d 49 -FIXUPS: 183748 31 fffffc33 12 1d 5 55 3c 7 2f b2 15 fffffd8d 110d 133 ef -FIXUPS: 18464b 26 10d aa 1f 21 41 c d 15 b fffff929 fffff7c6 4c 9b 1d 6d -FIXUPS: 183b52 6b 4f 24 6b 6a 30 14 16 11 ab 17 16e6 16 22 f 22 f fffffafe -FIXUPS: 1850f2 ffffff44 ffffff99 fffffe9a 17 24 fffffd3d c 75 d 96 d c -FIXUPS: 184d50 fffffe42 ffffffc3 1c fffff6c3 1c 20 24 9 2c b 10 1bf9 e -FIXUPS: 185eff e fffffcab fffffead f3 fffffe7e fffffe1f a a ffffff59 1b -FIXUPS: 185798 fffffe8e 1a fffffb77 17 67 e 177 1a 1d 12 1f 20 d f 13 17 -FIXUPS: 18549b 22 1807 c fffffd3a 38 fffffc2c 10 10 18 a1 3e 24 d 41 34 -FIXUPS: 1864d1 ffffffaf 26 fffffee9 78 10 18 e fffffe1b a4 22 fffffa9d -FIXUPS: 185e0c 2b 29 33 1c 1a 19a7 44 fffffdf1 1a 65 1d 2b c 10 c fffff8cd -FIXUPS: 187126 92 10e 49 c6 4f fffff8ed 14 18 18 b0 9 e 9 29 4d fffffc51 -FIXUPS: 186bae 75 c 1e 72fd 24 ee 17 fffffd4a 15 2f ffffff65 ffffff3f 18 -FIXUPS: 18dbd8 50 ffffff15 1a ffffff09 20 ffffa475 47 3e 110 fffffcde fffffe37 -FIXUPS: 187c9a fffffd1d 2e 19 31 1e 2d 10 9 37 6f2c 39 2d 37 4d 3a 6c 12 -FIXUPS: 18ebac fffffaf2 15 1a0 52 3e b fffffcf0 ffffff66 2c ffffff28 64 -FIXUPS: 18e346 ab 2e fffffeb5 28 fffffe0f bd 21 fffffeac 35 fffffd7f c9 -FIXUPS: 13ba4c 2d 13 2d 23 d 1e 5 5 18 e 13 1f 13 1d e 13 1f e 13 1f e -FIXUPS: 13bc3a 5301b 8 c ffffff75 fffffd38 3a 2a 27 2b fffacc7d 23 2b 28 -FIXUPS: 13b6c6 1a 15 2b 1d 31 d 38 7 15 7 43 23 2b 1d 32 1d 31 d 38 7 15 -FIXUPS: 13b96c 3d 23 13 18 22 fffff87e 7 6b 23 16 a 7 26 23 16 29 11 7 -FIXUPS: 13b3fa 2f 13 1d 23 13 8 10 7 2b 14 15 37 e 32 e 32 2c 45 fffff808 -FIXUPS: 13ae4c 5a 9 3d 2f 23 d d 7 36 7 9 74 29 16 d 7 b 38 7 13 7 13 76 -FIXUPS: 13b160 5e 7 22 29 29 50 fffff8dc 19 7 7 12 9 7 7 d a 7 7 8 7 20 -FIXUPS: 13ac39 23 32 23 d 16 2f 23 d d 7 36 10 5a 7 7 2a fffffa2e 1c 23 -FIXUPS: 13a89f 17 7 17 7 7 2a 1d 4b 2a 4b 23 13 7 15 7 7 58 23 d d 7 7 -FIXUPS: 13ab11 7 7 1c 1c 7 fffff97a 23 d d 7 38 7 9 31 7 1c 7 50 7 37 8 -FIXUPS: 13a65c 3a d 56 23 16 18 7 28 7 27 b 7 13 33 47 fffff77c d 10 7 -FIXUPS: 139fed 15 42 2f 10 53 2a 29 6d 39 21 1a 12 2f f f 1c 29 2a d b4 -FIXUPS: 13a3bc 37 23 41 7 2f 1c fffff710 7 7 9 f 7 13 5f 7 7 b 7 b 7 36 -FIXUPS: 139ccd da 92 30 30 30 30 23 16 f 7 10 7 25 7 7 23 fffff812 2d 7 -FIXUPS: 13982d 1f 7 89 21 38 2a 23 10 7 25 9 50 7 f 51 b 7 16 23 20 d a -FIXUPS: 139b1b 13 44 29 9 a fffff88b 23 d 3b 18 b 7 1e 33 7 7 17 80 7 20 -FIXUPS: 1395f8 d c 7 7 e 46 41 7 20 d a 2e 53 21 9 1e fffff901 5d 29 16 -FIXUPS: 13916a 2a 23 d 20 20 2f 7 20 d 17 7 12 19 15 7 1d 7 1f 2a 27 2a -FIXUPS: 1393aa 19 b 33 7 7 fffff7ca 7 b 7 19 f 71 23 10 7 6a 23 20 10 18 -FIXUPS: 138db0 b 7 1f 75 a 9 18 7 d b5 22 7 49 b 7 cb fffff6e8 7 b 7 19 -FIXUPS: 1387c6 6e 7 31 7 31 1f 33 7 32 73 7 7 b 7 19 15 74 7 31 7 31 1f -FIXUPS: 138b26 7 32 73 fffff6a0 14 d 11 23 d 2b 19 60 18 3d 7 32 73 7 38 -FIXUPS: 1384f5 7 32 81 b 7 7 b 7 13 23 8b 33 7 32 73 fffff751 7 3e 2a 23 -FIXUPS: 137f6a d 2a 22 2a 68 14 14 2b 30 1f 24 11 13 14 13 2d 17 2e 10 -FIXUPS: 1381f8 7 c 14 25 d 14 fffff823 7 3c 30 45 d d1 7 13 7 7 10 7 7 -FIXUPS: 137c7f 7 23 30 23 2d 23 3d 30 30 30 30 29 16 16 8 b 7 fffff831 -FIXUPS: 137730 5f 23 10 7 51 b 11 2e d 6a 1a 5 21 b 7 21 2d 1b f 7 7 8 -FIXUPS: 1379d2 7 42 15 12 14 7 20 fffff8d4 33 7 7 41 8 1b 7 21 49 1b 13 -FIXUPS: 1374e8 29 9 1a 14 14 7 2c 42 7 21 1d 1a 7 21 1d 17 18 c 8 fffffa09 -FIXUPS: 1370e6 7 b 7 21 32 7 b 7 21 23 7 7 13 7 b 7 21 23 7 7 13 7 b 7 -FIXUPS: 137288 47 c 3d 10 1d fffff9fe 17 7 7 7 20 d 1e 4b 17 20 4d 76 7 -FIXUPS: 136f16 4d 56 7 1a 1b b 7 24 7 18 1d 7 c 7 13 7 1f fffffa09 7 7 -FIXUPS: 136af4 d 34 7 7 13 13 14 14 7 7 2a 1d 12 1d 7 7 15 22 13 36 26 -FIXUPS: 136cd8 7 7 b 7 7 3d fffffabd 30 23 32 23 d 14 7 14 7 24 7 9 2d -FIXUPS: 13694c 9 34 29 16 f 5 b 7 18 28 7 23 d 10 7 18 7 fffffa22 d 3e -FIXUPS: 136519 19 27 23 13 20 d 1b 2a 23 d d 2a 23 d d 2a 23 d 3b 28 1a -FIXUPS: 136783 7 8 7 8 7 21 fffff8a4 21 7 26 21 7 26 1d 10 13 7 2c 7 1f -FIXUPS: 1361e3 7 1f 20 7 35 7 42 d be 30 23 16 8 40 d 4f d fffff8e7 28 -FIXUPS: 135da9 7 23 d 22 7 7 2a 20 7 3e 7 26 7 16 1a 7 4a 7 28 7 7 23 d -FIXUPS: 135fe3 7 7 2a 20 7 fffffac5 2d 7 16 2d 7 26 7 16 1a 7 16 27 7 7 -FIXUPS: 135c61 7 7 a b 7 7 5c 7 7 d 7 7 b 7 7 43 fffffb19 d d 28 a a 7 -FIXUPS: 1358f0 9 7 20 d d 7 58 29 16 b 28 7 23 d 10 7 13 7 2b 7 13 7 2b -FIXUPS: 135b00 fffffabc 2d 23 13 7 25 7 7 23 d d 7 7 2a 23 d 20 2a e 7 -FIXUPS: 135765 7 34 23 e 28 23 13 7 25 7 7 fffff910 10 3a 26 23 16 b b -FIXUPS: 135267 35 35 30 13 13 12 7 7 7 1d 25 25 60 d 3b d 3b d 38 d 6f -FIXUPS: 135573 3c fffff82f 8 4f 4f 8 7 10 7 7 14 7 7 e 2a 25 12 27 23 13 -FIXUPS: 135004 35 23 32 23 d d 10 10 3e 23 13 e fffff760 7 7 58 9 8 7 7 -FIXUPS: 134991 d cb 23 3d 23 4d 30 30 30 30 30 23 16 1e 39 23 d 40 20 23 -FIXUPS: 134d9e 23 d fffff78a 41 7 26 12 8 8 7 41 d d2 7 14 7 7 31 7 14 -FIXUPS: 13478b 7 3a b 8 7 7 58 9 8 7 7 58 9 fffffaa9 d d 7 25 7 7 21 7 -FIXUPS: 1343fa 7 7 25 7 7 7 13 7 7 25 7 7 7 13 7 7 b 7 7 15 3c 23 fffff963 -FIXUPS: 133ec6 3f e b 10 28 5c 27 f 21 30 2d d 16 30 2a 23 d 10 53 1d 72 -FIXUPS: 134289 16 e e 2e 23 13 25 7 fffff761 1e 1f 23 1a 23 40 23 17 1e -FIXUPS: 133be8 1a 27 23 16 39 10 37 20 d 19 20 d 15 30 4f 23 20 10 28 32 -FIXUPS: 133ea1 fffff91d 25 7 23 d 17 11 c 7 1c 2f 23 d d 17 18 c 14 7 21 -FIXUPS: 133962 b e 37 14 7 3e 23 d d 1e 23 fffff9c2 8 d b 6 23 2c 2c 2c -FIXUPS: 13352f b 14 1d d a1 23 18 8 17 25 7 23 d 1b 7 25 7 3c 23 18 8 8 -FIXUPS: 1330ee 14 27 29 16 e 37 b 21 23 30 16 7 50 23 32 23 d 2c 23 d 10 -FIXUPS: 133395 13 b 18 7 7 2b d 20 d fffff906 7 3d 41 23 26 15 16 1c 23 -FIXUPS: 132ea6 23 29 16 7 b 13 b 36 22 1a 7 15 b 1e 20 7 23 30 23 32 23 -FIXUPS: 132ab9 1b 7 a 15 1f 23 32 23 d d 25 7 23 d d 7 25 7 7 13 7 3c 7 -FIXUPS: 132cb2 1b 7 7 40 7 7 14 fffff9d9 23 d 32 23 d 17 4a 2d 23 d d c -FIXUPS: 13288f 27 23 d 53 23 32 23 d d 25 7 23 d f 3b 23 d 11 fffff5e3 -FIXUPS: 1320c9 4a 9 23 1d 22 30 21 d 42 70 45 b4 46 3b c 3d 2f c 4d 33 -FIXUPS: 13252f d 30 23 d 20 26 6b 26 76 fffff43d 42 55 d 27 d 16 43 24 -FIXUPS: 131c82 7d d 2d b 3a 47 49 d 2b d 4c 27 d 19 9d 30 29 20 23 21 29 -FIXUPS: 132082 fffff5a4 d 32 23 d 17 e d 1f 19 42 23 7 25 33 29 d 2f d -FIXUPS: 13187a 10 28 68 25 26 17 10 32 2e 84 17 5a fffff67a 1e 28 32 78 -FIXUPS: 131293 20 d 20 11 11 15 21 20 d 19 15 e 1a d d 7 b 7 3b 74 1d 89 -FIXUPS: 131599 29 16 2b fffff7eb d d 7 2a 23 d 1d 24 1f 23 13 25 7 23 d -FIXUPS: 130f70 7 42 10 30 12 20 10 31 12 22 29 23 16 2d 1a fffff9cc a 10 -FIXUPS: 130b54 7 23 d f 7 a 7 a 7 12 12 7 f 17 7 a 7 12 12 7 32 23 8d 30 -FIXUPS: 130d8c 13 25 7 fffff96c 1f 16 13 2e 7 2a 22 20 6e 1a 35 75 31 d -FIXUPS: 1309e7 23 9 a f 17 7 8 7 a 7 10 b 2e 38 12 7 fffff87f 7 a 7 2d -FIXUPS: 1303d5 d 8 10 7 2f 8 ba 43 5d 7 2a 22 10 53 81 7 a 7 8 7 9 7 12 -FIXUPS: 130719 f 7 fffff91b a 7 a 7 8 8 7 2f 8 4f 30 40 40 30 30 23 16 -FIXUPS: 130257 d 2a 23 d d 10 25 12 2b a 18 a 8 fffff988 18 d 1f 10 7 a -FIXUPS: 12fd65 27 1b 7 8 16 13 1a 30 3a 26 40 30 23 16 8 2a b 3e 10 21 -FIXUPS: 12ffe8 18 12 2b fffffa91 12 10 21 7 9 7 10 21 2a 12 13 10 a 39 -FIXUPS: 12fc0b 1e e 18 13 a 7 a 7 a 7 a 7 10 7 10 1e fffffa89 13 5 17 d -FIXUPS: 12f7bc c 36 3a 18 7 20 d 21 24 40 70 40 23 13 10 17 2b d 10 27 -FIXUPS: 12fa93 8 b 10 7 a fffff918 1a 7 2c 16 13 34 e f 2e 18 15 11 47 -FIXUPS: 12f589 30 50 23 16 1c 41 13 12 8 10 7 10 21 1f 7 15 f fffff92a -FIXUPS: 12f0ae 15 40 7 1f 23 13 7 2a 23 d 25 24 23 13 d 27 23 d d 21 d -FIXUPS: 12f2eb 1d b 1a 25 26 e 2c 21 fffff8c9 2f 23 d 11 15 28 30 30 30 -FIXUPS: 12ee09 30 30 30 23 13 25 7 23 d d 7 2a 23 d 11 24 2b 23 13 1d d -FIXUPS: 12e97a 1f 23 13 25 7 23 d d 7 2a 23 d 27 17 24 1e 23 13 25 7 23 -FIXUPS: 12ebab 10 7 d 7 2a 23 d 11 3c fffff9ef 16 37 23 13 25 7 23 d d -FIXUPS: 12e75f 2a 23 d d 9 7 24 8 37 23 13 25 7 23 d d 7 2a 23 d 1d fffff893 -FIXUPS: 12e20c 15 2a 23 d 34 d 2d 23 4d 23 16 8 25 7 23 d 29 42 3b 23 d -FIXUPS: 12e4dd 7 66 1f 23 16 13 54 40 fffff826 3b 1f 23 16 17 23 15 2a -FIXUPS: 12df9e d 11 1d 23 17 7 1f 23 17 7 1f 23 17 7 1f 23 13 2a 23 d 34 -FIXUPS: 12e1ca fffff989 14 22 23 16 8 25 7 23 d 15 6 1c 20 27 23 d 11 7 -FIXUPS: 12dd21 7 8 49 23 2d 23 13 25 7 23 d d fffff934 19 54 23 16 3d 1a -FIXUPS: 12d8b7 d 25 23 17 8 9 27 23 d d 11 7 9 c 10 25 3f 30 30 30 23 13 -FIXUPS: 12db07 35 fffff74d 19 43 48 19 10 b 53 d e8 23 32 23 d 21 2a 23 -FIXUPS: 12d5b9 1b 25 23 35 2a 11 26 1d d 1b 17 20 d 3e fffff5e0 7f 11 1c -FIXUPS: 12ce7b 43 27 2d 22 b 35 8 12 46 25 23 32 23 d 11 30 1a 3e 22 23 -FIXUPS: 12d18e 23 d 29 20 39 2a fffff5a7 30 13 2f 38 2a e 1d 21 7 3f 20 -FIXUPS: 12c9a4 34 19 2c 25 37 4c 42 66 19 2c 1a 38 54 19 2b 1d 35 2c 2c -FIXUPS: 12c350 1d d 22 20 d 29 27 11 1f 29 16 25 16 1d 19 28 16 20 d 13 -FIXUPS: 12c5d2 2d 4a 4d 23 29 3e 35 13 29 19 fffff7ec 33 16 1c 1a b 24 -FIXUPS: 12c09a 1d 11 13 11 32 10 14 2a 15 2a 2e 23 13 14 1d 29 29 16 e -FIXUPS: 12c2c7 13 1d 22 1d fffff945 20 d 12 b 11 1c 1a b 24 56 1b 18 25 -FIXUPS: 12be0c 32 23 d d 7 20 d 2c 23 d 12 b 8 7 1e d 23 fffff8c4 23 13 -FIXUPS: 12b88b 1a 37 7 20 d 19 17 11 f 8 5 44 c a c 9f 47 30 40 30 23 13 -FIXUPS: 12bbbb 2e 23 32 23 d fffff845 12 1b 36 25 c 36 17 25 23 13 c 25 -FIXUPS: 12b62d 10 b 39 14 f 1c 17 42 20 d 26 17 f 8 1a 15 12 15 fffff8e2 -FIXUPS: 12b0e2 19 19 13 13 13 16 16 16 e e 1e 23 16 2a 20 3c 31 23 16 17 -FIXUPS: 12b348 31 23 32 23 d d 2d 36 35 fffff820 34 1e 15 1d 1d 3d 5c 2c -FIXUPS: 12ae52 32 23 d 10 b d 1d 19 15 1c 1d 3b 20 d 10 2e 1e 15 1d 1d -FIXUPS: 12b093 2f fffff792 4a 33 33 18 3d 23 16 b 2a 20 37 51 27 33 29 -FIXUPS: 12ab0b b 27 33 d 10 e 11 1d 1a b 23 33 42 20 d fffff6f6 23 16 49 -FIXUPS: 12a44b d 2b 4c 20 d 2b 22 21 3a 20 d 58 23 32 23 d 16 37 20 d 2c -FIXUPS: 12a764 26 4f 23 16 b fffff78c c 20 d 34 d 3c 4d 32 d 2d d 33 7 -FIXUPS: 12a17f d 19 17 35 78 9 2b 32 8 22 23 13 d 9 24 11 10 fffff872 8 -FIXUPS: 129c47 27 23 d d 12 14 1f 12 20 d 1d 10 3d 23 32 23 d 22 1f 8 2a -FIXUPS: 129e9e 22 36 12 36 d 1e 23 fffff8a0 1b 27 23 d 22 1f 22 58 23 19 -FIXUPS: 1299a1 16 32 23 19 c 16 32 23 32 23 d 2c 13 26 1f 8 18 d 12 25 -FIXUPS: 1294a1 d d 3c 7 e 20 d f c c 7 8 2c 1f 15 3b 23 d 11 c 7 3a 51 -FIXUPS: 12970c 32 23 d 22 1f 22 38 fffff8d0 23 30 d a 47 7 1b 6 57 23 16 -FIXUPS: 12924d 18 26 16 58 23 13 25 7 23 d f 3b 23 d 11 7 15 16 36 fffff8ff -FIXUPS: 128d85 14 23 13 18 1d 23 d 10 7 d 10 7 23 23 23 21 13 2d 3e 23 -FIXUPS: 128fa7 d 25 7 3c 23 d 38 23 d fffff735 54 23 d 10 1c 23 28 26 32 -FIXUPS: 12895c d 2d 2f 29 2b 2c 6d 10 25 7 23 d d 1f 67 10 1c 16 2d 1f -FIXUPS: 128c48 fffff736 21 d 25 27 1f 60 36 8d 1f 2a 23 d 10 24 d 10 8 -FIXUPS: 128617 1c 1c 40 25 30 1d 30 20 d 17 14 22 14 fffff66a 29 32 23 -FIXUPS: 127eb4 10 42 61 b 97 2a 32 23 d 22 14 15 2c 32 46 28 52 2d 27 27 -FIXUPS: 128299 d 1a 39 1c 19 24 1645b e 1e 50 23 1b 22 23 1b 22 30 12 31 -FIXUPS: 13e973 14 fffe922b 27 f 21 49 27 f 21 49 27 f 21 30 12 b 15 5b -FIXUPS: 13e4fe d 1e 23 13 18 1d 23 5 5 18 12 1e e 13 1f e b 27 e 13 28 -FIXUPS: 13e6e2 10 19 19 13 13 13 16 16 16 fffff915 27 2c 53 1a 10 25 23 -FIXUPS: 13e1e6 53 23 16 b 8 24 2c 13 8 67 12 13 2d 1b 25 23 13 1a 13 2d -FIXUPS: 13e49c d 32 fffff5ce 23 36 14 2c 117 14 1a 29 4c 1c 71 23 32 23 -FIXUPS: 13de0e 32 6 14 6 27 18 21 6 19 6 c3 44 5d 23 16 22 fffff645 23 -FIXUPS: 13d725 e 7 7 3c 9 f 7 7 21 9 9 7 7 35 2c 18 1c 10 12 2e 15 2b 23 -FIXUPS: 13d96d d 35 d 95 d fffff664 18 4c 54 37 37 42 32 37 37 39 37 39 -FIXUPS: 13d3a5 27 15 15 9e 30 3c 4a 14 15 b 45 42 15 15 66 14 15 b fffff3a6 -FIXUPS: 13ca92 d 12 b 22 d 2c 16 b b 29 b 4b 1c 14 12 b 20 28 44 d 9e f6 -FIXUPS: 13ce94 3c 48 6c 33 9d 27 27 fffff547 2a 23 d 12 e b 2e 21 33 27 -FIXUPS: 13c735 29 2f 3c 2a 23 d 2c 20 b f 1c 14 c 57 54 4d 2c 2a 23 d fffff7a8 -FIXUPS: 13c1f8 14 10 1c 25 2d 25 d 1c 17 45 1e 42 17 1e 2a 23 d 2c 23 d -FIXUPS: 13c492 b 8 38 17 36 4a 21 1b f fffff77a f 21 30 2a 20 d 2c 20 d -FIXUPS: 13be59 b 2e 15 29 9 22 1f 5d 20 d 35 2a 20 d 16 15 34 da 23 32 -FIXUPS: 13c1de 6314 10 19 19 13 13 13 16 16 16 e e 1e e 13 1f 11 e 21 19 -FIXUPS: 14268d 1c e b 2a 17 14 ffff955b 27 f 21 49 6422 30 d 25 25 31 23 -FIXUPS: 14221c 36 23 d 2c 1b 20 29 16 b 24 29 25 25 12 15 18 3f 23 d 1d -FIXUPS: 1424b7 5 5 21 fffff6fa 23 d 11 1a 7 8f 24 d 3e 23 d 41 30 d 3e -FIXUPS: 141e4b d 55 24 d 10 24 d 11a 14 10 39 23 d 3e 23 fffff6fa 11 28 -FIXUPS: 141861 23 d 10 1d 7 15 10 f 10 40 30 e 24 d 2c 23 d 2c 33 15 17 -FIXUPS: 141af9 e 24 d 2c 23 d fffff7bc 36 51 15 21 16 22 15 12 1b 62 23 -FIXUPS: 141522 24 d 27 d 45 23 d 41 5c 29 2d d 29 29 1c 2e 23 18 18 fffff75a -FIXUPS: 140f52 13 11 17 13 1f 10 27 1f 10 1b 29 23 16 24 d 10 1a 3e 23 -FIXUPS: 14116b 2a 7 61 65 7 50 23 16 24 d fffff7c8 b 20 25 29 4e 16 25 -FIXUPS: 140c14 27 f 15 2a 29 19 b 20 25 29 4e 25 27 1a 1d 36 f 15 2a 23 -FIXUPS: 140ee9 d 2c fffff767 d 21 2c d 20 22 27 14 2c 1a e 38 29 2d d 10 -FIXUPS: 140877 20 25 29 4e 20 25 1d 38 20 1d 44 36 25 29 fffff684 37 28 -FIXUPS: 1401cb 3e 5b b 7a b 25 29 2d d 10 20 25 29 4e 20 25 1d 38 20 1d -FIXUPS: 140563 2a 22 27 14 2f 17 1d fffff7b0 21 13 1f 1d 25 25 15 b b 25 -FIXUPS: 13ff12 b 2c 29 2d d 10 b 1d 20 d 38 29 2d d 2f 23 d 10 b 15 fffff9b2 -FIXUPS: 13fb26 13 4e 22 29 2d d 2f 23 d 10 b b b b b 11 20 1d b b 25 b -FIXUPS: 13fd51 28 1d b b 1e 1d b fffff95e b 26 1d 20 14 1c 1d 1a 1e 26 -FIXUPS: 13f892 35 23 d 10 b 15 1a 1d b 21 34 b 20 29 2d d 2f 23 d 2c fffff8fd -FIXUPS: 13f3df b b 26 2b 11 24 2a 11 19 24 36 23 19 1d 1f 16 42 29 19 e -FIXUPS: 13f654 16 29 26 29 2d d 13 b b fffff8a1 1d 1f 47 20 29 32 23 d -FIXUPS: 13f121 21 d 10 1d 22 16 20 19 3c 23 32 23 d 27 d 13 2a 1a 29 32 -FIXUPS: 13f3b7 d fffff74b 32 24 2e 4a 20 d 5f 35 16 33 25 bb 13 b 34 2d -FIXUPS: 13ee69 d 13 e 8 41 d 16 c 1a 23 2d 23 2d d 10fc1 13 1f e 13 1f -FIXUPS: 150017 13 1f e 13 1f e 13 1f e 13 1f e 13 fffee898 27 f 21 30 2d -FIXUPS: 13ea96 d 24 d 15 11 1112f 11 6 11 38 11 2f 1c e f 1f 28 2b d 1d -FIXUPS: 14fdaf 2a 6 2a 50 19 f 9 20 c 42 24 7 44 5 5 18 fffff989 9 5e 27 -FIXUPS: 14f9a6 23 e 2c 10 2a 16 6 17 19 2a 23 d d c c 21 d 13 f c 13 6 -FIXUPS: 14fbb1 15 2b 8 23 fffff94b a 16 1b 9 13 13 24 1a 7 b 2a 7 67 30 -FIXUPS: 14f70c 3d 23 13 18 22 35 2b 22 d 25 a 36 1c 22 d 10 fffff7c2 4f -FIXUPS: 14f13c 3d 23 13 1a 20 14 15 37 e 32 2c 45 1f d 1f 85 3f 23 38 21 -FIXUPS: 14f496 1c 11 15 24 32 13 17 7 fffff81a 30 23 13 1a 20 14 15 37 -FIXUPS: 14ee87 32 2c 18 1c 23 1d 2a 7 13 7 7 19 7 28 7 51 7 28 7 26 7 15 -FIXUPS: 14e9bc 7 15 7 4a 23 13 18 22 33 23 d 2d 14 15 37 e 32 2c 18 1c -FIXUPS: 14ec4c 26 24 7 2b 7 1d 23 7 15 7 fffff972 7 15 7 52 23 1d 31 7 -FIXUPS: 14e7b5 7 12 7 4a 7 24 7 1d 7 1f 20 d 10 12 7 12 7 2f 7 2a 23 d -FIXUPS: 14e3a5 45 1f 23 1d 31 7 24 7 1a 7 15 7 1f 20 d 10 12 7 12 7 2f -FIXUPS: 14e5ad 2a 23 d 35 7 24 7 12 7 fffff9cd d 10 c 7 11 24 7 24 7 b -FIXUPS: 14e0ff 39 b 7 b 29 7 54 23 13 18 22 33 23 d 2d 14 15 37 e 32 fffff9c5 -FIXUPS: 14dd4e c 7 11 24 7 24 7 b 9 39 b 7 b 29 7 57 23 1d 24 7 2a c 7 -FIXUPS: 14df84 1d 9 f 7 42 7 fffff9c0 12 1b b d 2d d 21 14 15 37 e 32 2c -FIXUPS: 14db7a 1f 23 1d 24 7 31 7 24 7 11 1d 9 39 1d c 7 2a fffff916 7 -FIXUPS: 14d668 7 49 7 d 35 7 11 24 27 35 7 2c 27 d 1d 29 12 7 b 7 28 23 -FIXUPS: 14d8ee 23 d 3b 23 13 19 fffff8d5 12 25 29 17 25 b 8 18 1a 12 25 -FIXUPS: 14d3d0 21 17 21 14 15 37 e 32 2c 17 d 20 23 32 23 d 25 32 7 fffff8b9 -FIXUPS: 14cf2e 10 3b 23 28 1f 10 31 1f 8 10 10 18 21 d f 29 30 23 13 1d -FIXUPS: 14d18b 27 23 d d 2a b 8 1d 1a fffff816 23 3c 1f 27 23 d 11 12 9 -FIXUPS: 14cb9c 1f 27 23 d 15 23 1c 20 d 14 38 3a 56 22 3f 49 23 2d 27 19 -FIXUPS: 14cece fffff78a 1f 8 3a 23 3c 1f 27 23 d 15 12 9 22 1f 27 23 d -FIXUPS: 14c86b 23 21 10 f 13 4f 39 27 19 25 7 59 10 fffff7b6 1a 1a 1f 13 -FIXUPS: 14c27b d 1c 17 20 21 1d 22 d 38 20 3b 24 46 25 3e 9 14 33 1c 1d -FIXUPS: 14c53e 73 28 23 2d d fffff6e9 d 23 1a 1f 1a 1a 1f 13 21 d 1c 17 -FIXUPS: 14be6f 21 1d 1e 3b 24 64 2c 19 e 5c 46 1d d 3b 49 d 7d 1a fffff751 -FIXUPS: 14b94d 23 d 11 3b 23 28 1f 27 23 d 15 15 20 d 28 23 28 1f 27 23 -FIXUPS: 14bbca d 22 23 4d 2a 23 d 2c 23 fffff87a 32 23 d 18 1b 17 11 10 -FIXUPS: 14b662 f e 1c 1e 23 32 23 d 11 3a 23 1e 1d 1f 27 23 d 15 37 23 -FIXUPS: 14b8ea 1d fffff854 1c 39 6b 15 12 1f 17 14 f f 1a 60 b 6 14 75 -FIXUPS: 14b3d8 b f 7 7 19 23 2d 23 2d 23 2d 23 1d 20 fffff8ff e b 8 b 7 -FIXUPS: 14aea2 e 7 7 d 7 51 23 d 10 40 7 1f 7 40 b 3e 23 d 18 b 5f 23 d -FIXUPS: 14b14b 7 fffff8b4 2a 54 25 11 2f 60 30 23 28 1f 10 7 1f 29 16 26 -FIXUPS: 14aca9 2d 23 d 17 19 7 3a 14 7 37 23 13 2a 29 fffff642 28 37 6 -FIXUPS: 14a526 f 32 f 3b 31 7 28 32 d 69 41 2a 19 1d 27 41 2a 19 1d b 4c -FIXUPS: 14a8c5 2a 19 1d 50 2b fffff694 23 d 29 15 21 1d 34 1d 35 4d 27 -FIXUPS: 14a1f0 1e 11 1e 12 1c 27 d 18 31 f 2f f 2f d 51 37 20 3d 37 fffff726 -FIXUPS: 149bc1 11 a 20 d 39 f 6 ab 27 14 2f 6 11 6 20 30 40 23 28 1f 37 -FIXUPS: 149ec7 32 23 16 1d 1d 29 44 29 fffff698 31 21 d 1b 1d 20 27 1d -FIXUPS: 1497b3 1f 2a 35 1b 1d 1e 23 2a 35 22 d 5a 27 23 d 16 3a 24 3c cc -FIXUPS: 149b8b d fffff685 2a d 19 22 36 2c 6a 1c 11 25 1c 21 28 21 d 18 -FIXUPS: 149472 20 23 2e 32 6 2d 6 17 22 12 22 d 95 1c fffff6b8 8 1a 31 -FIXUPS: 148dc8 22 58 1a 23 6a 27 20 1f 14 1d 51 a 12 39 93 2a 23 d 2c 23 -FIXUPS: 14916f 14 16 18 10 12 1b fffff652 13 1f 29 d a 1d 51 c a 12 39 -FIXUPS: 148a09 40 30 30 23 19 3e 1c 4a 23 1b b 36 4b 23 29 16 1a 2b 24 -FIXUPS: 14839d 1a 27 d 26 26 29 5b 23 d 1a 8 b 13 3c 18 20 d 16 1e 15 40 -FIXUPS: 148643 66 23 4d 23 3d 23 4d 23 16 fffff762 c a 12 18 75 30 30 30 -FIXUPS: 1480ec 16 17 23 16 17 23 16 17 23 16 b 2d 1f 20 18 1d 41 1a 20 -FIXUPS: 148333 3a 23 fffff70c 32 23 d a 2f c a c 2d 12 5d 44 23 2d d 22 -FIXUPS: 147cd7 55 17 14 22 23 1a 12 2d 39 5b 51 3f b 24 fffff68e 15 18 -FIXUPS: 14760f a 12 8e 30 30 30 30 30 23 32 23 d 38 1d 1d 24 43 1b 55 15 -FIXUPS: 1479ac d 2e 27 d 29 d 28 fffff7a5 7 e 31 1f c 2d d 20 23 32 23 -FIXUPS: 14736e 22 1d 24 21 d 27 18 f 32 1b 26 29 b 20 4b c c 2d 1d fffff8a3 -FIXUPS: 146eaa 1f 8 58 15 14 8 29 8 22 d d 22 d 23 23 1b 1d 1f 8 3a 23 -FIXUPS: 147105 15 41 a 12 3c 26 23 16 fffff882 f 8 2c b b 27 d 34 2d 7 -FIXUPS: 146ba5 72 2a 50 b b 22 23 32 23 d 11 17 10 9 13 27 23 28 1d 2b -FIXUPS: 1466a9 23 32 15 7 2a 19 12 26 e 24 2d 14 1a 37 29 32 23 d 10 26 -FIXUPS: 146940 37 8 a 33 28 8 a 22 14 4c fffff82a 22 22 d 26 3a 54 1f 27 -FIXUPS: 146410 d d 26 7 42 23 16 10 8 2a 35 23 32 15 7 2a 1d 26 12 20 e -FIXUPS: 146681 fffff854 37 1e 4f 23 23 2e d 15 f f 1c 23 16 b b 1d 31 1a -FIXUPS: 146118 20 d 2f f 23 23 23 18 10 2d 2c d fffff803 5 20 14 46 11 -FIXUPS: 145b3e 12 6f 4a e 20 42 30 23 18 2d 2c d 28 1d 2d 6 38 8 8 22 d -FIXUPS: 145e59 23 18 b fffff82e e 1e 23 16 a 2c d 31 d 12 36 2f 66 20 d -FIXUPS: 1458ce 22 2d 6 3d d 1f 1a 8 8 7 3c 23 16 2c d fffff95d 11 9 10 -FIXUPS: 145438 f 7 23 2a 1f 7 7 43 1a 8 8 7 3d 11 2f 14 25 10 10 19 19 -FIXUPS: 145657 13 13 16 16 16 fffff87f 2b 23 16 a 2c d 31 d 12 36 2f 6f -FIXUPS: 145113 8f 1a 49 2a 15 1d d 11 22 2d 6 37 39 11 1c 1e 16 13 fffff6ab -FIXUPS: 144a79 4d d 2d f 2c d 61 23 16 3b 4d d 1d 32 d 32 4a d 20 d 3c -FIXUPS: 144de5 d 67 23 32 d 1f 1c 37 fffff752 23 37 23 16 29 22 38 9 37 -FIXUPS: 1447f9 9 38 7 13 7 62 23 d 17 1b 11 1a 1c 7 45 7 34 23 d 19 f fffff87d -FIXUPS: 1442cf a 20 23 13 7 7 1d 1f 8 10 a 1e 23 43 25 1c 5a 1f 27 23 d -FIXUPS: 144541 38 23 28 1f 10 23 3a 1f fffff933 29 8 7 12 7 46 23 13 7 -FIXUPS: 1440ce 5c 1c 3e 1f c 10 10 10 a 17 7 7 1d 1f c 10 8 10 a d 20 fffff78b -FIXUPS: 143a4d 4f 1d 33 d 50 23 54 7 31 8 38 29 13 62 25 1d 71 7 2a 1d -FIXUPS: 143de8 7 2c 7 3c 16 22 28 46 73 fffff65e 1f 12 27 1f 12 29 22 13 -FIXUPS: 1436e8 23 d 38 3e 3e 3e 23 d 38 23 d 32 23 d 38 23 d 38 23 d 1f -FIXUPS: 143a0d fffff633 48 d 22 d a0 1a 29 d 1b 2d 6 27 d 15f d 17 11 53 -FIXUPS: 143440 d 27 a a 51 23 13 1e 1d 23 23 23 fffff515 21 49 27 f 21 -FIXUPS: 142bb9 e b 30 77 2a 1f 19 2e 32 2c 2c 78 23 d 6e 2c 38 1d 27 27 -FIXUPS: 142f9b d 41 27 23 f4aa 16 16 16 e e 21 17 14 22 ffff01c9 27 f 21 -FIXUPS: 142812 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f744 13 d -FIXUPS: 15222b d 2c 23 d 38 2d 23 13 c c 1e 23 1f 5 5 18 e b 27 e 13 28 -FIXUPS: 152462 10 19 19 13 13 fffff928 2d d 10 b 12 4c c 6 52 c 6 52 c -FIXUPS: 151f7f 2c 2c 1d 17 16 52 1d 2b d 9 48 41 1f 13 10 10 44 fffff6b7 -FIXUPS: 1518c1 2c 9 1a 8d 34 20 d 16 21 9 5f 1c 77 3a 1e 21 8 12 26 23 -FIXUPS: 151c22 37 23 16 b b 5c 51 44 30 fffff7b1 15 1b c c 1a 28 10 1a -FIXUPS: 151643 21 d 17 15 18 2c d 17 20 1a 49 d f 28 10 6 15 6 28 d 29 -FIXUPS: 151875 fffff8cd 27 23 16 b 29 18 3b 23 16 b b 61 23 32 23 d 55 -FIXUPS: 1513bc 2d 23 6a c 37 29 32 23 d 10 c 8 b fffff69b 30 1c 30 1f 23 -FIXUPS: 150cfe 23 d 31 3b 41 d 21 23 32 23 d 2f 9c 2c 30 d 27 15 15 7f -FIXUPS: 1510a9 23 32 23 d fffff74c 1c 2d 1c 10 1c 2a 38 2b d 32 1c 21 36 -FIXUPS: 150a5b 6 39 26 21 1f 21 d e 19 6 b 6 8 2b d 37 d fffff8b3 20 d -FIXUPS: 1504fc 20 d 10 b 31 15 29 9 22 1f 54 23 d 1b 10 4d 23 32 23 d d -FIXUPS: 1507a6 24 10 1c 25 2d 25 635c 40 30 15 2e 17 14 ffff94bb 27 f 21 -FIXUPS: 1501ed 27 20 d 13 22 22 22 22 2d e 1a 29 29 29 20 20 20 20 20 2d -FIXUPS: 1567c2 23 d 31 23 d 26 23 24 42 25 5 5 18 e 13 1f e 13 1f 30 30 -FIXUPS: 156a59 30 30 30 30 e b b 2c 30 fffff7a8 1f 29 23 32 23 d d 1f 8 -FIXUPS: 15644f 17 3c 6c 2b 23 32 23 d 17 d 10 24 d 5f 23 d 35 1a 28 21 -FIXUPS: 156757 fffff78e d 1e 29 7 23 d 61 38 23 13 c c 18 2f 1c 2a 23 d -FIXUPS: 15612b 40 1c 1c 26 e 28 2a 2c 13 d 14 23 fffff97e 13 16 16 16 e -FIXUPS: 155c9b 1e 13 10 16 a 6 d e d 8 22 d d 22 d 32 23 d 10 21 d 39 1c -FIXUPS: 155ebb 7 fffffa2b 1c 20 23 16 37 23 16 8 6f 23 16 b 8 13 10 15 -FIXUPS: 155add 2c 23 16 b b 8 10 10 32 10 10 19 19 13 fffff6a0 d d 35 8 -FIXUPS: 15532a a 11 9 2b e b b 2a 23 d 52 29 16 b 11 1a 10 a e 120 6a 4a -FIXUPS: 155704 1c5 e b fffff634 15 28 d 11 30 23 d 27 d 24 e b b 2d 23 -FIXUPS: 1550aa 12 25 d 33 23 d 2a 3e 23 3b 32 e 8 b 2a fffff8d7 10 1e 23 -FIXUPS: 154bee 23 d 14 1a 39 15 f 1d c 16 21 d 3f 23 d 10 24 23 1d b b -FIXUPS: 154e1a 51 23 d 1f 2d fffff859 10 19 23 1d b c 4d 23 d 10 1c 23 -FIXUPS: 1548a9 44 23 d 60 15 26 41 23 1d 27 23 d 11 2a 15 b 50 23 fffff811 -FIXUPS: 1543b3 23 d 10 26 23 16 8 27 9 3d 23 d 10 22 23 1d 27 23 d 11 1c -FIXUPS: 154617 23 d 3f 12 21 d 4a 23 fffff8c6 23 30 d 45 23 d d c 10 10 -FIXUPS: 154117 b 17 23 13 24 8 6 30 23 d 10 48 23 13 44 23 d 10 26 23 fffff79f -FIXUPS: 153b36 23 21 22 35 1c 24 42 d 20 14 7a 34 40 27 23 d 1f 51 23 32 -FIXUPS: 153ec1 d 2a d 2b d 19 17 3a 29 fffff6a2 b b 23 3e 23 20 37 1c 2a -FIXUPS: 1537cc d 6c 1a 15 45 2c 13 d 14 23 3d 11 15 8a 6 d 1c 6 14 13 1a -FIXUPS: 153228 20 b 18 16 41 2b 12 41 39 e b 2b d 33 23 d 42 15 35 e 27 -FIXUPS: 153511 d 30 49 23 d 47 1b 30 e fffff842 14 1f 2a 6 2f 26 1d 15 -FIXUPS: 152fac d 10 30 26 32 23 d 2c 23 d 16 1f 10 24 22 21 1a 11 27 15 -FIXUPS: 1531ff 1c fffff973 23 d d 21 d 2c 23 d d 21 d d 12 24 d d a 20 -FIXUPS: 152d24 d 3e 20 4a d 17 30 d 26 6 d 17 fffff88f 2a 23 d d 21 d 2c -FIXUPS: 1527fd d d 21 d 1c 7e 14 15 29 5a 23 d 2e 23 32 23 d 2c 23 d 1f -FIXUPS: 152b39 23 108e3 21 d 22 d 7d 23 13 1a 1a 20 1b 1d 1d 1d 1d 23 10 -FIXUPS: 163687 5 5 18 e 13 fffeef28 27 f 21 49 27 f 21 10a29 25 21 d 1e -FIXUPS: 1631a1 12 21 d 1c 21 d 1c 21 d 1c 21 d 1c 21 d 28 12 21 d 1c 21 -FIXUPS: 1633bb 23 12 21 d fffff8b6 d 38 23 d 3e 23 d 13 11 39 22 2b 2b -FIXUPS: 162ea1 46 1e 14 22 d 22 1f c 20 d 12 16 5e d 4b 37 2e fffff756 -FIXUPS: 162879 23 16 b b 15 6c 23 37 b 1b 23 16 16 1c 17 52 20 42 28 8 -FIXUPS: 162b4c e 29 1d 1a 2f 19 33 3e 3e fffff645 15 12 24 d 19 55 3a 34 -FIXUPS: 162479 23 16 17 20 23 35 d 3b d 67 1d 26 31 1a 10e 23 32 23 d 1b -FIXUPS: 162840 14 fffff4cc 5a d 5f 1a 1f 67 3e 2b 2a 34 1f 18 1b d 44 1c -FIXUPS: 1620ee 1c 1d 16 15 2a 10 16 22 d 34 32 32 23 4b fffff50f 2d 1a -FIXUPS: 161895 52 47 31 44 20 d 1e 20 d 3a 15 17 33 d 38 23 2d 21 13 39 -FIXUPS: 161bd9 23 16 2a 4c 40 1d 1f fffff609 14 6c 39 33 1c 42 b 20 21 -FIXUPS: 161509 23 1f 30 23 20 d 28 22 d 2b 20 d f 20 d 46 11 31 4b 23 2c -FIXUPS: 160d4c 1e 2f 23 3f 6e 8 1c a1 10 36 4a 28 d 24 1c 69 2c 43 20 d -FIXUPS: 161165 d 1e 13 2c 30 1f 1c 37 1e 48 fffff56a 17 a2 20 d 35 20 d -FIXUPS: 1609bf 20 d 1e 2c 12 56 20 d 38 d 51 25 d 1d 56 2f 20 d 2d d 1e -FIXUPS: 160cd7 68 fffff48f b 19 1c 73 38 23 47 56 23 2d d 25 8f 1c 33 19 -FIXUPS: 16053d 3d 2c 14 41 50 1c 4b 93 34 23 16 b 36 d fffff26e 4b 23 16 -FIXUPS: 15fbab 1a ac 14 49 36 28 19 1c c e7 35 18 32 1d d 63 43 31 2a 33 -FIXUPS: 160068 76 49 d 55 23 16 fffff48a 1d 13 13 3c a a 6 6 1e 23 16 b -FIXUPS: 15f758 b b 32 24 2d 2d 45 1e 4a e 20 1e 52 23 16 b 99 d fffff89c -FIXUPS: 15f350 21 d 18 48 22 25 20 24 30 23 16 24 d 18 14 2c 18 a 6 20 -FIXUPS: 15f5ad 6 14 a 6 13 10 10 16 16 fffff83c 16 b 96 1d 10 13 13 40 -FIXUPS: 15f008 40 1d 11 15 1d 1c e 55 10 13 13 79 14 18 27 23 16 b b b -FIXUPS: 15f2c4 12 fffff69f 74 1c c 43 55 90 23 16 b 18 23 30 16 27 d 15 -FIXUPS: 15ec62 27 23 16 b b 42 18 19 4e 23 16 10 47 20 fffff6d3 16 12 b -FIXUPS: 15e55c 1e 25 19 1c 73 22 23 16 12 b d 2a 19 1f 1c 38 2e 29 23 16 -FIXUPS: 15e81d 68 3e d 56 e 25 fffff477 a5 24 23 16 d 1f 1c 2c 3f 28 1e -FIXUPS: 15dffa 31 16 28 90 23 16 d b 32 36 1c 36 49 74 95 d 34 97 cb fffff3e6 -FIXUPS: 15d8fb 14 3a 2f 2f 2f 78 13 28 60 90 23 16 d d 17 b 1b 24 16 11 -FIXUPS: 15dc5f 9a 23 16 c b 18 11 24 2a fffff699 90 23 26 16 19 19 4f 23 -FIXUPS: 15d62d d 12 d b d b d 2c d 1e 1d 27 d 39 24 27 d 33 23 51 14 55 -FIXUPS: 15cf70 3e 28 3e 17 19 12 9 13 d 13 13 14 38 27 21 20 d 7e 29 25 -FIXUPS: 15d23f 39 2b 8 d 69 28 63 17 14 22 fffff602 1d 1d 2c 15 1a 27 d -FIXUPS: 15cada 1f 23 1c 85 1b 21 23 5d 23 16 68 5e 4b 34 34 21 1c 27 30 -FIXUPS: 15cecc 1e 22 3e fffff635 2a 20 23 47 4f d 53 31 17 2c 46 1c 3b -FIXUPS: 15c836 16 18 d 23 b 11 18 7 3a 23 1c 23 17 17 16 19 19 fffff763 -FIXUPS: 15c167 15 20 d 8c 25 15 20 d 1a 20 d 2a 2a b 27 d 16 2d 23 2f 23 -FIXUPS: 15c444 19 53 15 1a 27 d 31 11 fffff713 22 22 1d 50 23 1b 34 38 -FIXUPS: 15bdd6 43 23 1c 5b 2f 2f 2f 34 1d 1d e 27 d 2d 12 20 d 16 27 23 -FIXUPS: 15c109 2a fffff660 1f 37 23 1a 11 35 21 44 58 23 37 d 10 3b 6e -FIXUPS: 15ba6e 10 3b 23 22 1b 23 22 1b 23 16 12 19 40 14 16 fffff753 1a -FIXUPS: 15b409 23 16 c 15 d b 15 17 14 3e 23 44 1a 12 17 20 3b 2b 23 22 -FIXUPS: 15b69e d 1b 1c 8 3a 24 17 27 fffff833 23 41 d 24 1c 5d 1c c 5f -FIXUPS: 15b16f 23 16 8 40 b 20 d 13 1e 23 18 b c b 28 4b 23 18 b d b fffff796 -FIXUPS: 15ab2b 1e 23 16 d 19 14 1a 4b d 18 3e 37 20 16 20 c 71 34 21 20 -FIXUPS: 15ae19 20 c 54 2e 3c 2d 30 25 e fffff76d 1b 17 2b 17 23 3d 7 a8 -FIXUPS: 15a8e0 20 d 19 1a 10 27 32 20 a 17 24 34 10 10 19 19 13 13 13 16 -FIXUPS: 15aaf9 16 fffff811 2f d 3b 2a d 2b 23 3a d 16 1f 21 23 16 b b 2c -FIXUPS: 15a53b 3d 7 7 22 d 31 d e 3a 33 18 33 23 fffff789 54 23 1b 13 2a -FIXUPS: 159f53 31 6d 10 25 41 2f 10 1c 24 2d 15 31 23 41 2c 23 16 d b 1c -FIXUPS: 15a283 3b 27 d 10 fffff61c e 42 30 5a 2e 19 3d 28 16 20 28 28 19 -FIXUPS: 159b59 18 45 24 6f 37 21 28 16 20 1c 28 15 21 d 1b 9d 11 fffff669 -FIXUPS: 1594ea 1d d 6a 2b 23 18 d d 40 d 52 2f 3e 37 34 d 10 13 b 36 d -FIXUPS: 159818 32 32 2d 29 19 c e e fffff622 2e 1a 46 3c 1c 12 1e 16 2f -FIXUPS: 15909b 11 69 16 2f 25 1b 4a 20 48 25 24 50 2d 38 23 21 52 1b 66 -FIXUPS: 159475 1a fffff63a 23 16 39 34 2a 23 16 29 24 2a 23 1d 23 27 d -FIXUPS: 158d09 29 19 c 8 16 3a d 24 25 22 1a 48 1a 5c 1c fffff6bb 52 23 -FIXUPS: 1586a6 3e 25 23 76 1b 1c 20 23 1b b 13 74 23 16 d b 26 1c 20 3d -FIXUPS: 1589dc 16 c 28 1e 21 d 16 fffff30d 40 11 43 60 23 16 4a 9c 6e d -FIXUPS: 158063 e6 29 16 4d 3c 23 a2 17 27 42 1f 19 18 31 ba 13 2a 15 53 -FIXUPS: 1585ad fffff13d 61 8c 4a d 1d 22 5d 36 15 c 47 55 d 28 15 65 69 -FIXUPS: 157b21 12 26 23 16 2a d 47 2a d 71 31 48 22 fffff4e9 4d 23 16 23 -FIXUPS: 15730c 9 30 24 23 19 34 d 37 d 2f d 19 20 7 c 27 23 13 49 21 23 -FIXUPS: 157606 19 67 23 23 fffff63d f 21 30 e 72 2c 13 fa 17 23 16 16 47 -FIXUPS: 156ff2 d 30 8 17 14 37 23 1c 11 90 23 16 9 1e e 14 15 fc94 13 13 -FIXUPS: 166edd 16 16 16 e e 1e e 13 1f e 13 1f e 32 e 13 1f e 32 30 11 -FIXUPS: 1670f9 e b 2a 17 14 fffefb7b fe57 23 d 32 23 d 32 23 d 31 23 d -FIXUPS: 166c9e 21 d 34 14 27 d 31 23 13 18 1d 1d 26 5 5 21 10 10 19 fffff9d1 -FIXUPS: 16687c 9 9 7 7 1d 9 9 7 7 1f 7 6 24 23 1d 15 9 9 7 7 17 4f 35 23 -FIXUPS: 166a8e 23 d 14 27 13 fffffa1d 11 1f 23 1d c c 11 27 23 1d 8 1d -FIXUPS: 166666 9 9 7 7 1f 7 6 27 23 1d b c 44 22 18 23 15 53 fffff813 1d -FIXUPS: 166074 b 34 1d 13 56 23 1d b 2b 4a 23 16 b b 41 23 32 23 d 31 a -FIXUPS: 166387 43 21 d 3a 84 33 23 fffff642 23 d 17 b 12 3f 1d 13 22 a -FIXUPS: 165c90 36 d 9b 15 11 11 86 4e 23 1d b 2b 1d 13 4a 23 1d b 2b 4a -FIXUPS: 165840 23 d 1a 9 9 7 7 23 7 7 1e 23 1d 1b 9 9 7 7 17 4f 2f 23 20 -FIXUPS: 165a55 9 7 7 17 4f 27 23 fffff745 6 15 18 6 17 1f b 1f 16 4c 71 -FIXUPS: 16544c 13 b7 43 20 2c 9f 15 2a 23 d 10 24 1d 25 23 1e 6f 23 1d -FIXUPS: 164e47 11 6 1e 1a 25 1a 1a 2b 19 21 d 22 11 6 1e 1c 2a 1f 61 49 -FIXUPS: 1650fb 2c 1a 1a 2b 19 21 d 13 27 d fffff821 25 25 d 46 17 17 29 -FIXUPS: 164b4c 32 23 d 10 4c 29 1a 2c 30 23 d d 17 1a 29 1a 25 1a 1a 2b -FIXUPS: 164df7 21 d fffff80c 28 2a 23 d 2c 23 d 10 b a 34 7 1c 15 28 15 -FIXUPS: 164806 4f 1f 33 23 d 92 23 13 14 10 17 12 18 1a fffff8bd f 15 b -FIXUPS: 16431b 2e 23 13 c b 27 1d 1f 23 16 c b 13 1d 13 2d 23 d 32 23 d -FIXUPS: 16457d 2c 23 13 18 1d fffff9b3 17 17 22 14 1c 6 e 6 1b 1c 17 17 -FIXUPS: 1640e8 14 1c 6 e 6 f 28 2c 72 12 23 13 c b 13 20 23 13 fffff98b -FIXUPS: 163cd9 2d 23 d d 14 10 17 12 18 1a 17 25 25 d 29 17 1c 17 17 22 -FIXUPS: 163ef0 c 29 1c 6 f 18 6 20 17 fffff8c8 d 2c 20 d 13 15 34 25 44 -FIXUPS: 1639be d 5e 2a 20 d 2c 20 d 10 b a 21 1c 13 15 29 9 43 1f 33 23 -FIXUPS: 168e0a 28 10 10 19 19 13 13 13 16 16 16 e e 1e 30 e 32 e 35 17 -FIXUPS: 169017 ffffa6eb 27 f 21 49 27 f 21 30 2a 5219 1d 11 1f 23 1d 39 -FIXUPS: 168b69 13 e d e d 57 23 d 3e 32 23 13 c c 42 29 25 5 5 18 e 13 -FIXUPS: 168de9 e fffff774 8 17 10 17 12 21 d 14 1a 17 25 25 d 3f 4c d 17 -FIXUPS: 168769 d 17 43 52 25 52 1c 24 2c 95 8a d 18 fffff6da 20 26 2a 23 -FIXUPS: 1681c3 2a 26 48 2e 2a 23 d 2c 23 d 10 b 2e 15 2d 43 1f 33 23 d -FIXUPS: 1684aa 2f 23 32 23 d fffff7b0 4b 22 2e e 31 23 d 21 23 6d 2c 13 -FIXUPS: 167f45 f 10 15 13 8 25 7 30 d 2c 23 13 8 15 2e 1f 2a 23 fffff797 -FIXUPS: 1678c4 12 18 1a 17 25 25 d f 2b 1f a7 43 13 3b d 32 23 d 10 24 -FIXUPS: 167bd8 1c 10 1c 25 2d 25 d 2a 23 fffff706 2a 52 9e 2a 20 d 21 2a -FIXUPS: 1675d3 d 2c 20 d 10 b 2b 15 2d 22 1f 54 20 d 56 29 32 20 d d b -FIXUPS: 16789d 49a5 10 19 19 13 13 13 16 16 16 e e 1e 33 17 14 ffffae0b -FIXUPS: 1671c9 f 21 49 27 f 21 50 20 d 42 41 1d 1e e 4a69 19 24 20 d 64 -FIXUPS: 16bf2c 2d 23 d 2d d 38 23 d 28 33 23 d 32 d 18 1c 23 13 1e 33 3a -FIXUPS: 16c207 5 5 21 fffff9ba 1f 1b 9 9 d 19 20 9 9 f 19 19 16 9 d 19 -FIXUPS: 16bd31 9 9 17 1b 9 9 d 19 19 16 9 12 1c 19 fffffa71 11 10 19 49 -FIXUPS: 16b931 14 10 35 11 19 15 9 19 1a 29 11 19 10 19 f 20 d 7c 23 16 -FIXUPS: 16bb7f 10 f 1e c 13 fffff954 1b 9 12 1b 9 d 19 2a 11 10 22 33 16 -FIXUPS: 16b66e 14 20 2c 16 9 14 20 11 10 e 22 43 11 3c 27 2e 1f fffffa96 -FIXUPS: 16b322 d 10 f 9 13 16 16 9 9 29 9 d 1b 9 d 1b 9 d 18 d 11 c 11 -FIXUPS: 16b4a8 16 17 17 12 1b 9 fffff9b7 23 32 23 d 19 22 23 1d 18 d 2b -FIXUPS: 16b04c 32 23 d 10 8 14 17 64 17 16 25 f 17 1c 23 18 47 d 71 fffff66e -FIXUPS: 16a9a9 2c 8a 1a 23 2a 2a 29 29 32 22 b b 15 55 56 26 b 1d 5f 23 -FIXUPS: 16ad6e 16 b 19 61 23 32 23 d 1b fffff681 11 11 11 c 11 20 11 1f -FIXUPS: 16a5da f 15 1f 29 34 27 1d 10 e 20 e 9f 23 18 b 16 e 39 a 86 2c -FIXUPS: 16a93d fffff7c6 30 26 23 16 14 20 20 d 30 26 23 16 1c 7b 29 18 -FIXUPS: 16a368 28 26 10 8 24 9 20 d 35 11 11 33 11 11 fffff750 64 61 23 -FIXUPS: 169d24 13 23 2f d0 23 18 27 23 d 1f 1c 1f 23 8 29 23 16 c 1b 1f -FIXUPS: 16a029 40 23 16 14 20 20 fffff565 14 17 23 17 1c 17 10 17 12 18 -FIXUPS: 16975e 17 23 25 d 3b 17 17 26 23 37 23 d 18 24 1f 1f 22 1c 24e -FIXUPS: 169c0c fffff5fc 12 32 26 1a 1c 25 2d 22 d 36 41 29 2a 23 d 12 b -FIXUPS: 169454 15 2f b 1d 36 57 23 d 4c 23 32 23 d 63bb 12 3ee e b 27 30 -FIXUPS: 16fe8e 1e 17 14 22 23 2d 12 b 23 18 ffff90b1 27 f 21 50 20 d 27 -FIXUPS: 16915a 3f 2a 20 d 10 64fe 7 24 23 3d 23 13 18 2b 10 10 19 19 13 -FIXUPS: 16f87a 13 16 16 16 e e 1e 33 2b 5 5 18 e 13 1f e 13 fffff9ee 7 -FIXUPS: 16f413 7 18 7 2a 38 f 7 13 13 1f 20 f 15 e 27 7 e 21 7 40 2a 1d -FIXUPS: 16f653 7 47 7 1e 1e 7 fffff78a 22 3d 20 27 4a 26 15 1a 10 7 a 37 -FIXUPS: 16f026 c3 17 15 36 2e 2c 45 1f 23 32 23 d 7b 29 32 23 d 1d fffff5f2 -FIXUPS: 16e9b2 7 13 65 28 23 16 e 23 14 38 14 86 23 19 1b 14 38 14 69 23 -FIXUPS: 16ed23 d 10 e 18 14 38 14 73 23 fffff7a6 17 23 32 23 d 21 16 36 -FIXUPS: 16e72e d 11 3f 9 10 9 7 75 e 18 2a 13 f 1e 2d 23 d 2c 10 20 f c -FIXUPS: 16e1c9 2a 23 d 31 d 10 b 14 1e 43 51 63 23 d 14 8 7 7 3a 6 c c -FIXUPS: 16e45d 1d 10 1d 75 45 23 d 28 fffff7d5 1c 34 68 4d 22 30 28 21 -FIXUPS: 16df35 38 1a 7 20 d 16 1e 7 25 13 1c e 7 18 b 10 27 52 37 27 f -FIXUPS: 16e199 fffff740 19 49 30 20 d 24 1a 30 d 6b 34 29 d 11 20 29 2b -FIXUPS: 16db9d d 11 7 52 12 14 20 1f 16 ad 17 e 20 fffff5f8 23 16 c 2d -FIXUPS: 16d404 37 2a 1a 2c 3b 41 4a 46 20 3a 68 23 19 12 45 19 24 59 29 -FIXUPS: 16d7df 20 1c 3a 1f 1c 31 fffff79f 19 23 38 23 d 32 23 d 10 17 1d -FIXUPS: 16d1c4 1f 11 10 b 13 c 1f 10 10 6 e e 16 f 22 13 13 6 e fffff96f -FIXUPS: 16cc9a 22 26 67 23 19 36 d 2f d 38 44 d 1f 1d d 1f 1d d 23 b 7 -FIXUPS: 16cf79 23 19 25 d 3a c 21 b fffff73e 2a 1f 21 b1 11 1a 13 f 16 -FIXUPS: 16c92d 1a 20 23 46 28 22 2e 12 1d e 1f a 2b 23 d 90 23 16 1a 15 -FIXUPS: 16cc6a b7f0 1f e 13 1f 13 1d 13 ffff3ed6 27 f 21 30 29 16 f 37 -FIXUPS: 16c538 24 2f 1a 7 28 86 d 7f 11 2c 25 f 16 18 b9c4 30 13 1d e 22 -FIXUPS: 178209 30 12 2e e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f -FIXUPS: 178407 13 1f e fffff99c 11 1a c c c 10 48 8 47 23 13 18 22 13 2d -FIXUPS: 177fac d 1e 5 5 18 12 e 30 30 16 e 2c 30 30 12 fffff8d4 15 7 3e -FIXUPS: 177a99 23 13 1a 23 2d 49 17 2a 23 d 16 15 4b 23 32 23 d d 8 7 13 -FIXUPS: 177d24 2e f 10 42 23 fffff8e3 23 13 18 22 23 2d 14 15 37 e b 27 -FIXUPS: 177845 18 1c 23 32 23 d d 12 24 7 24 7 2a 2b 16 18 7 b fffff966 -FIXUPS: 177391 d 17 24 7 24 7 2a 2e 7 b 7 25 7 41 23 32 23 d 17 24 7 24 -FIXUPS: 1775db 2a 2e 7 b 7 25 7 fffff89b 56 23 32 23 d 3b 23 13 1a 13 1d -FIXUPS: 1770d3 23 d 16 15 54 23 d 27 e 32 2c 16 1e 7 2a 1d 3a 18 23 fffff8a0 -FIXUPS: 176bf9 14 15 37 e 32 2c 18 1c 23 32 23 d 17 24 7 24 7 2a 27 b 12 -FIXUPS: 176e73 21 1a f f 7 1d 7 15 fffff9a5 d d 12 24 7 24 7 2a 2b f a -FIXUPS: 1769cb 23 d 16 7 f 7 2a 7 15 7 3e 23 32 23 d 3b 23 13 1a fffff96b -FIXUPS: 17653b 2a 27 12 18 7 b 7 15 7 3e 23 32 23 d 3b 23 13 1a 13 1d 14 -FIXUPS: 176792 37 e b 27 1c 14 23 32 fffff941 10 1a 23 26 7 30 23 13 1a -FIXUPS: 1762dc a 12 27 7 23 d 23 14 15 37 e 32 1c 14 23 32 23 d 17 24 7 -FIXUPS: 175e94 d 9 c 7 7 10 7 48 76 30 23 13 25 7 23 d d 8 7 35 17 14 22 -FIXUPS: 17611c 13 8 a 39 23 d 15 fffff94a 2a 23 d d 29 23 15 2a 23 d f -FIXUPS: 175c59 23 13 19 2a 23 d d 1a 23 3d 23 13 25 7 23 d e 3b 23 fffff828 -FIXUPS: 1756bc 34 d d 8 47 23 13 8 a 3b 23 d 34 d d 8 47 11 b 8 8 46 d -FIXUPS: 17597a d 19 21 30 b8 23 fffff814 7 7 5f 2c 30 30 23 13 8 a 2a 24 -FIXUPS: 175477 42 23 13 8 a 3b 23 d 34 d d 8 47 23 13 8 a 3b fffff8ff 7 -FIXUPS: 174f9c 26 12 8 9 c 7 7 59 21 23 1d 30 3c b 11 80 d 8 b 28 23 10 -FIXUPS: 175277 23 d d 9 c b fffff931 b d 1c 7 7 12 8 1a 4e 23 15 7 43 d -FIXUPS: 174db1 18 30 30 30 23 27 7 12 20 d d 7 13 7 22 23 fffff8e1 3c 23 -FIXUPS: 174909 23 16 b 48 7 3d 23 36 10 21 d f 2a 23 d 11 7 c 7 25 23 13 -FIXUPS: 174b67 1e 2a 1f 29 7 fffff88d 11 3d 23 21 2a 26 7 25 23 15 2a 22 -FIXUPS: 174624 25 23 2c 25 8 9 c 7 7 5d 24 30 30 23 16 12 10 12 fffff769 -FIXUPS: 173fd5 25 2a d 23 17 1c 15 28 5c 63 27 23 d 13 1c 23 32 23 d b8 -FIXUPS: 174353 22 18 1e 23 2b 23 32 23 d fffff6eb 23 13 1e 1c 13 33 23 -FIXUPS: 173c4f 2a 2a 16 14 15 2f 98 12 35 d 3c 23 2d 20 2a 23 d 2c 13 8 -FIXUPS: 173f62 10 12 fffff7e2 66 d 79 10 10 19 19 13 13 13 16 16 16 e e -FIXUPS: 173959 23 13 32 8 30 23 13 8 35 13 1a 23 4d 1e 10 fffff877 7 29 -FIXUPS: 173413 1a 13 f 7 7 29 3f 36 23 d e 2a 4f 7 7 62 29 7 7 36 2f 23 -FIXUPS: 1736ee d 10 9 44 7 fffff7b1 d d 20 d 36 10 c4 14 d 14 d 14 52 23 -FIXUPS: 173142 b 30 23 d 29 15 4a 26 6e 23 3b 23 d 18 13 25 fffff88f 7 -FIXUPS: 172c44 2a 23 d d 10 11 11 20 1c 23 13 e 8 24 23 13 e 8 10 37 e -FIXUPS: 172e46 23 23 16 13 7 7 2a fffff99d 7 15 1c 8 7 7 15 6f 22 12 f -FIXUPS: 1729d2 d 19 d b 12 15 1d 15 1d 15 13 7 7 15 c8 23 3b 23 d fffffa2b -FIXUPS: 172663 8 8 8 a 7 7 2a 23 d d 27 22 7 7 27 7 12 11 11 15 2b 22 14 -FIXUPS: 172834 8 7 7 15 1c 8 fffffaea 7 7 2a 24 23 16 13 7 7 2a 23 d d -FIXUPS: 17249a 7 7 28 7 7 28 7 7 28 7 7 13 7a 7 7 34 23 fffffa62 23 d 10 -FIXUPS: 1720e6 e 17 c c 10 26 23 3b 23 d 11 c 25 36 23 d f 7 7 2a 23 d -FIXUPS: 172313 11 11 11 1f fffff944 23 13 d 7 7 2a 23 d 2c 28 22 b 7 7 -FIXUPS: 171e69 23 13 1a 13 1d 1c 14 2a 23 d 10 14 1d 71 24 23 fffff77d -FIXUPS: 1717f0 7 72 23 13 e 1cc 13 2a 23 d 29 12 7 21 23 18 7 7 2a 23 d -FIXUPS: 171bf9 10 11 11 14 7 14 11 20 fffff8be 40 30 23 16 d 7 7 2a 23 -FIXUPS: 171667 d 11 11 11 14 7 7 13 2a 13 7 7 26 7 7 26 7 7 26 7 7 fffff8d1 -FIXUPS: 1710e1 38 1e 26 1d 76 1e 23 20 39 c 92 13 7 7 2d f 28 12 d 37 7 -FIXUPS: 17142e 9 11 f 7 7 32 7 46 fffff822 64 d 10 7 1e 7 b 32 14 7 7 2d -FIXUPS: 170e46 12 11 11 1f 19 4c 44 d 2a d d 5d 11 23 2a 23 d d fffff99f -FIXUPS: 170a3c c 28 1a 12 2b 1a 12 1f 1a 12 1b 23 16 8 8 8 b 7 7 16 7 7 -FIXUPS: 170c12 d 7 7 2a 23 d 27 fffffa6b 23 32 23 d 10 8 8 b 20 d 10 19 -FIXUPS: 17082b b 25 22 c 28 1a 12 2b 1a 12 1f 1a 12 c 3a 1a 12 1f fffff888 -FIXUPS: 1702b9 49 27 f 41 49 27 f 21 49 27 f 21 49 27 f 21 30 2a 23 d 10 -FIXUPS: 1705fb 8 8 14 1d 30 16 28 50 96fa 13 13 13 16 16 16 e e 1e 23 30 -FIXUPS: 179f13 14 ffff60bb 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 -FIXUPS: 170289 95be 46 7 57 ae 29 18 23 95 50 55 34 42 22 5b 1f 23 13 25 -FIXUPS: 179cab 23 d d 7 4f 39 5 5 21 10 10 19 fffff44b 1d 86 29 18 10 2d -FIXUPS: 1793b1 3c 4b 54 53 3e 3d 22 22 d 46 15 23 29 18 b b 10 1e 4f 28 -FIXUPS: 179769 7 70 45 fffff555 7 20 d 25 19 29 2c 7 7 8a 23 16 c 11 14 -FIXUPS: 178f7d 1b 47 4a 23 2a 1a 33 3a 1d 2f 23 1e 45 32 1a fffff6e1 38 -FIXUPS: 178944 2b 13 10 8 7 7 a1 23 16 c 1a 16 43 7 20 d 22 16 29 23 7 -FIXUPS: 178bc7 92 23 2f 3c 1b 28 d 235e 44 30 33 17 14 ffffd3b2 23 16 d -FIXUPS: 17856d 2f 14 38 14 6d 23 16 d 1d 1f 49 2d 32 15 41 1d 7 3e 32 43 -FIXUPS: 1788e2 2477 13 25 d 2a d 24 23 17 8 1c 5 5 18 e 32 e 13 28 10 10 -FIXUPS: 17af3b 19 13 13 13 16 16 16 e e 1e fffff893 30 d 1a 8 39 35 23 -FIXUPS: 17a9c9 d 1e 2c 29 23 30 d d a1 32 23 13 2a 23 13 2a 29 33 d 10 -FIXUPS: 17ace1 b 10 fffff53d 28 8 14 6c 2c 2d 15 71 1f 32 23 3b f 2d 14 -FIXUPS: 17a4fa 10 4f 23 24 15 16 2e 23 ff b 11 4a 48 50 60 1469 10 10 19 -FIXUPS: 17bd34 13 13 13 16 16 16 e e 21 17 14 ffffe14b 27 f 21 30 11 15 -FIXUPS: 17a047 57 20 d 2e 23 1b 6d 78 1698 d 20 2b 2a 81 32 23 25 1c 13 -FIXUPS: 17ba7e 43 1b 20 3d 13 2d 23 d 20 23 13 18 20 5 5 18 e 32 e 13 fffff70b -FIXUPS: 17b40a 1f 23 16 17 23 13 c b 13 40 23 16 b 25 2a 2f fe 23 16 10 -FIXUPS: 17b763 2c 36 24 23 16 10 20 d 1f 2203 21 10 10 19 19 13 13 13 16 -FIXUPS: 17db59 16 e e 21 17 14 ffffd5cb 27 f 21 30 11 15 28 57 20 d 2e -FIXUPS: 17b34c 16 37 2223 1a 5b 1c 7d 2e 27 21 2f 8 17 1c 29 17 3b 68 2c -FIXUPS: 17d8e3 23 d d c b b e 30 18 25 2f d 7e 5 fffff7b0 32 23 d 1e 1d -FIXUPS: 17d2e3 1f 17 22 29 11 10 34 23 17 1d 1a 1f 11 10 1f 2a 23 d 10 -FIXUPS: 17d4fb 10 2c 15 38 2b fffff9e4 23 d 1c 1c 6 e 1d 6 18 6 18 6 18 -FIXUPS: 17d08c 18 6 18 6 15 6 18 6 18 6 18 6 18 6 22 d 7f fffffa56 22 b -FIXUPS: 17cca9 23 32 23 d d 15 17 17 22 14 1c 6 e 6 f 20 23 32 23 d d 15 -FIXUPS: 17ced7 17 22 23 f 27 fffff8c7 2e 1f 27 d 48 23 32 23 d d 15 15 -FIXUPS: 17c9cc 2d d c2 20 d 14 20 20 2a 23 d 27 d d 15 15 17 2d fffff75c -FIXUPS: 17c3d0 49 2a 23 d d 17 15 33 2e 22 2e 22 1e 1b 33 19 50 39 23 d -FIXUPS: 17c6de 7b 2a 23 d 10 f 19 13 25 fffff63f 32 20 d d 2c 1a 2f 1e -FIXUPS: 17bf7e d 23 2b 1a 38 25 31 1a 93 1a 43 1a 47 43 1a 47 2e 23 36 -FIXUPS: 17c347 20 2d 2208 e 2b d 27 23 13 18 5 5 18 e 13 28 10 10 19 19 -FIXUPS: 17e727 13 13 16 16 16 e e 1e e 35 17 14 ffffd602 2216 11 f 20 31 -FIXUPS: 17e0da 2e 1b 15 31 e d 31 d 3d 58 24 58 55 6e a5 2e e 31 23 d 21 -FIXUPS: 17e525 24 f 10 21 fffff6e0 30 2a 20 d 2c 20 d 10 b a 21 1c 13 15 -FIXUPS: 17ddf8 43 1f 33 20 d 5f 23 32 20 d 16 8 19 22 2c 22 1157 23 13 -FIXUPS: 17f1db c 20 5 5 18 e 13 28 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 17f387 35 17 14 ffffe82b 27 f 11d8 49 2c 20 15 d 12 29 1e c c 7 -FIXUPS: 17ef56 13 15 e 10 31 5c 23 1d 30 23 1d 30 13 13 13 e d e d fffff856 -FIXUPS: 17e9e2 17 27 15 25 22 1f 54 20 d 13 3a 23 32 20 d d 19 3e 2a 22 -FIXUPS: 17eca8 1c d 61 26 1b 20 27 2b 1b fff9355b ffffffca 69e ffffffe6 -FIXUPS: 112997 ffffffee ffffffee ffffffe1 ffffffcc ffffffe2 ffffffb8 ffffff96 -FIXUPS: 1127e1 ffffff2a ffffffe3 fffffff2 fffffff0 ffffffee ffffffee 6c1c6 -FIXUPS: 17e899 f 21 30 2a 20 d 2c 20 d 10 b fff96136 ffffff47 ffffffe9 -FIXUPS: 114746 901 66b ffffff7e ffffff97 ffffffe1 fffffff1 ffffffe6 ffffff7f -FIXUPS: 1153f2 ffffffc3 ffffffb9 ffffffc0 ffffffd5 ffffd81f ffffffe1 ffffffec -FIXUPS: 112ac3 ffffffd9 fffffa90 ffffffd5 ffffffc4 ffffffd4 ffffffe3 fffffff2 -FIXUPS: 11245e ffffffee ffffffee ffffff37 551a 590 ffffffe8 ffffffde fffffffb -FIXUPS: 117dc3 ffffff72 ffffe2d5 ffffffd4 ffffffd4 fffffa2f 342 ffffffe8 -FIXUPS: 115d06 fffffff9 ffffffd5 fffffffb ffffffe7 ffffff88 ffffd61d 237 -FIXUPS: 113b22 ffffffea fffffded 4f7 ffffffea fffffdd3 5c0 ffffffae 461 -FIXUPS: 11447a ffffffea 7d65 fffffd64 64a 52d ffffffe9 ffffffcd ffffffef -FIXUPS: 11ca2d ffffffe4 fffffff3 fffffff0 fffffff0 ffffffed ffffffed ffffffdf -FIXUPS: 11c97d ffffffe3 ffffffe3 ffffffe3 ffffffe9 4aa ffffffd8 fffffff4 -FIXUPS: 11cce3 ffffff27 ffffffc0 ffffff21 ffffffee ffffffef ffffffee 567 -FIXUPS: 11d2c6 ffffdb49 fffffd96 ffffffd5 558 3c8 574 ffffffee ffffffef -FIXUPS: 11b9d9 ffffffee ffffffe9 ffffffcd ffffffef ffffffe4 ffffffe4 fffffff3 -FIXUPS: 11b917 fffffff0 ffffffed ffffffed ffffffdf ffffffe0 ffffffe3 ffffffe3 -FIXUPS: 11b849 ffffffe9 4a5 ffffffd8 fffffff4 ffffff5e ffffff2c ffffffc0 -FIXUPS: 119773 ffffffe9 7b4 fffffd90 5f0 46d fffffff0 ffffffed ffffffdc -FIXUPS: 11a696 ffffffe3 ffffffe3 ffffffe0 ffffffe9 4b7 ffffffd2 fffffff4 -FIXUPS: 11a9f6 ffffff2d ffffffc0 ffffff21 ffffffee ffffffef ffffffee ffffffee -FIXUPS: 11a7a6 ffffffcd ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 ffffe1fa -FIXUPS: 1188d9 fffffff4 ffffff54 68c fffffd63 636 4e3 ffffffef ffffffe4 -FIXUPS: 1196e0 fffffff3 fffffff0 fffffff0 ffffffed ffffffed ffffffdf ffffffe0 -FIXUPS: 11962f ffffffe3 ffffffe3 ffffffe9 49a ffffffd8 fffffff4 ffffff5e -FIXUPS: 1198c9 ffffffbe ffffff33 ffffffee ffffffef ffffffee 6ead ffffff88 -FIXUPS: 120591 ffffff81 57f ffffffc9 ffff7666 683 ffffffbe ffffff33 ffffffee -FIXUPS: 118611 ffffffee ffffffee ffffffe9 ffffffcd ffffffef ffffffe4 ffffffe4 -FIXUPS: 11854d fffffff0 fffffff0 fffffff0 ffffffed ffffffdc ffffffe0 ffffffe3 -FIXUPS: 11848c ffffffe0 ffffffe9 57a ffffffd5 6bfc ffffffd8 ffffff88 ffffffd7 -FIXUPS: 11fca4 ffffff67 ffffff2f ffffffeb ffffffea ffffffeb ffffffed ffffffea -FIXUPS: 11f9cb ffffffce 4f3 ffffffd8 ffffff88 ffffffd8 ffffff88 ffffffd7 -FIXUPS: 120488 ffffff32 ffffffeb ffffffea ffffffeb ffffffed ffffffea fffffef6 -FIXUPS: 12020d 4ed ffffffd8 ffffff88 409e ffffffb5 ffffff4c ffffffd2 ffffa6e5 -FIXUPS: 11ec38 ffffffd7 ffffff81 ffffff72 ffffff40 ffffffeb ffffffea ffffffeb -FIXUPS: 11e9ef ffffffea 43f ffffffd8 ffffff88 ffffffd8 ffffff88 780 ffffff72 -FIXUPS: 11f30a ffffffeb ffffffea ffffffeb ffffffed ffffffea fffffef9 ffffffce -FIXUPS: 11f640 ffffffd8 fffe28da ffffff13 ffffff41 1fe ffffe816 ffffffef -FIXUPS: 10073b fffffed6 ffffffee fffffe59 ffffffea ffffffe3 68c ffffffa8 -FIXUPS: 1009f1 ffffffec ffffff6f ffffff72 ffffffec ffffff95 ffffffd8 ffffffe3 -FIXUPS: 1007e4 ffffffea ffffffe3 ffffffe2 ffffffd6 717 ffffff88 23a2e ffffff8e -FIXUPS: 124703 fffdec97 ffffffbd ffffffc5 ffffffbd ffffffb8 ffffffb9 ffffffef -FIXUPS: 10321b fffffff4 ffffffea ffffffe0 ffffffe7 ffffff81 fffffff3 ffffffec -FIXUPS: 1030d8 ffffff94 ffffffe9 fffffff1 6fc ffffffeb fffffef1 ffffff3c -FIXUPS: 10345e ffffe065 fffffff4 ffffff8e fffffff5 ffffff94 fffffff5 ffffff94 -FIXUPS: 10134c 2e1c fffff70a ffffffb2 ffffffe8 ffffffde ffffffdf fffffff6 -FIXUPS: 1037b5 fffffff6 fffffff6 ffffffe4 fffff89d fffffff0 ffffffe1 fffffff0 -FIXUPS: 102fbc ffffffe6 ffffffc7 ffffffc8 ffffffcd ffffffe2 fffffff0 ffffff9d -FIXUPS: 102e62 ffffff88 ffffff9f ffffff3f 74a ffffffec fffffff1 ffffffdf -FIXUPS: 1033c2 2b2f 5bc fffffff5 ffffe2c2 ffffffef fffffff2 3e5 314 364 -FIXUPS: 105549 ffffe777 ffffffb7 ffffffcf ffffffe1 ffffffe3 fffffff2 ffffff77 -FIXUPS: 103aaf ffffffc7 601 ffffff52 fffffff2 fffffef8 fffffe4d 64d fffffff4 -FIXUPS: 1042ad fffffff2 fffffff2 ffffff25 ffffffe3 ffffffe5 4bfb ffffffcc -FIXUPS: 108d11 ffffffc7 fffffefe ffffff3c ffffffe4 ffffffd1 ffffffdc 42f -FIXUPS: 1088ad ffffffea ffffffcc ffffffeb ffffffd5 ffffffeb fffffbe5 ffffffde -FIXUPS: 1079f8 fffffd89 ffffffef fffffff2 4be 4f8 fffffd81 fffff614 ffffff96 -FIXUPS: 10742f ffffff00 ffffff2d ffffff99 ffffffec 2e6c ffffffd6 ffffffe5 -FIXUPS: 109ff1 ffffffe0 ffffffdf ffffffe7 ffffffe8 fffffe67 fffff7ef ffffffe4 -FIXUPS: 10946c ffffffd6 fffffff3 ffffff9e ffffffb0 ffffffea ffffffd9 ffffffd5 -FIXUPS: 1092e1 fffffe1e fffffff4 ffffffb9 fffffff0 ffffffb2 fffffff3 ffffffd2 -FIXUPS: 10900a ffffffd3 fffffe4b ffffffdc ffffffee 93d ffffffe8 ffffffd3 -FIXUPS: 10969e fffffff5 ffffffb5 ffffffec ffffffd6 fffffff5 7b0 ffffffcc -FIXUPS: 109d30 ffffffbe fffffff3 ffffffcc ffffff97 ffffffdc ffffffcc ffffffe5 -FIXUPS: 109bb9 ffffffbf ffffffad ffffffba ffffffd3 ffffffcd ffffffe5 ffffffe5 -FIXUPS: 109a31 ffffffe1 ffffffe4 69e ffffffde 791 ffffffb7 ffffffce ffffffcd -FIXUPS: 10a71f fffffe17 39f fffffff7 ffffffcd fffffff7 fffff13a ffffffec -FIXUPS: 1099a2 ffffffe8 ffffffe5 ffffffe8 ffffffe1 ffffffe4 ffffffd4 ffffffec -FIXUPS: 1098c8 ffffffe8 ffffffe5 ffffffe8 ffffffd3 ffffffbc ffffffe8 ffffffb6 -FIXUPS: 109796 ffffffe6 ffffffe8 ffffffe6 2d7d ffffff9a ffffff21 ffffff8c -FIXUPS: 10c291 ffffff7c ffffff8e ffffff5d 55d ffffff93 ffffffe7 ffffff8b -FIXUPS: 10a478 ffffffbe ffffffd2 ffffff83 ffffff8e ffffffdd ffffffdf ffffffde -FIXUPS: 10a292 ffffff6b ffffffc9 ffffffef ffffffb0 ffffffe2 ffffffed ffffffee -FIXUPS: 10a10e ffffffed ffffffee ffffffec 13f8 ffffff9d ffffff88 ffffff81 -FIXUPS: 10b2fe ffffff9d ffffff9a ffffff52 ffffff9d 7ce ffffff87 ffffff83 -FIXUPS: 10b796 ffffff68 ffffff8b ffffff8a ffffff9a 73f ffffff8a ffffff88 -FIXUPS: 10bb50 ffffff7c ffffff98 ffffff87 ffffff7b 71d ffffff8a ffffff97 -FIXUPS: 10bec4 ffffff9d ffffff88 ffffff81 178e ffffffd4 ffffffd8 ffffffe1 -FIXUPS: 10d46b ffffffee ffffffdb 472 fffff757 fffffeaa ffffffe2 fffffff2 -FIXUPS: 10ce45 ffffffe0 fffffff2 ffffdebc ffffff52 ffffffa4 ffffffe7 ffffff50 -FIXUPS: 10aad0 ffffff40 ffffffce ffffffbe ffffff92 5e6 ffffffe3 ffffffb4 -FIXUPS: 10ae93 ffffffb0 ffffffe6 ffffff77 32ee fffffff6 ffffffe1 ffffffe3 -FIXUPS: 10dfe1 fffffbd1 ffffffd6 ffffffe5 ffffffd5 fffffeca 593 ffffffe0 -FIXUPS: 10dec9 fffffef0 fffff318 ffffffef fffffff1 fffffff4 ffffffed ffffffec -FIXUPS: 10d6e9 fffffff2 fffffff4 fffffff4 ffffffec ffffffee ffffff56 ffffffe0 -FIXUPS: 10d554 ffffffec ffffffe4 ffffffe8 1b35 ffffff1b ffffffbb ffffffd0 -FIXUPS: 10eeb9 ffffff9c ffffff99 ffffff73 ffffffea 746 ffffffe8 ffffff9e -FIXUPS: 10f3f8 ffffffc4 ffffffec ffffff9f ffffffea ffffffdc ffffff27 ffffffe2 -FIXUPS: 10f1a8 ffffffdb ffffffc0 ffffffe7 728 ffffffc3 ffffff56 ffffffc0 -FIXUPS: 10f63d ffffff8a ffffff92 ffffffd8 16c1 ffffffa8 ffffff47 ffffee53 -FIXUPS: 1108f0 ffffffe6 fffffff4 ffffffa3 ffffffb8 fffffff3 ffffffdf ffffdceb -FIXUPS: 10e4aa ffffff99 48e ffffff6f fffffe87 ffffffdb fffffe79 651 ffffffdb -FIXUPS: 10ead3 ffffffec ffffffd3 ffffffc8 ffffffe5 ffffff96 ffffffec ffffffe1 -FIXUPS: 10e95e ffffffe3 ffffffd8 7c9e4 ffffffdf fffffff1 fffffff9 ffffffea -FIXUPS: 18b294 fffffff4 fffffff7 ffffffc0 ffffff60 ffffffdf fffffff1 fffffff9 -FIXUPS: 18b152 ffffffe2 ffffffb9 ffffe6ef fff87d49 51c 60c ffffff99 9e -FIXUPS: 110e22 ffffffed ffffffba fffffff2 ffffffef ffffffdd ffffffce fffffff2 -FIXUPS: 110d14 fffffff2 79e1c ffffffd1 ffffff9a ffffffc6 ffffff5b fffffff9 -FIXUPS: 18a999 ffffffc7 fffffff2 ffffffc7 fffffff2 ffffffc7 6ed ffffffdf -FIXUPS: 18af8f fffffff9 ffffffea ffffffe4 fffffff4 fffffff7 ffffffc0 ffffffdb -FIXUPS: 18add8 ffffffb9 ffffffb4 ffffffdf fffffff1 fffffff9 ffffffea ffffffe6 -FIXUPS: 18b3d3 ffffff93 ffffef1a ffffffe0 ffffffd1 ffffff7c ffffffc8 ffffffe1 -FIXUPS: 18a14a ffffffc0 7ba ffffffc7 fffffff2 ffffffc4 fffffff3 ffffffed -FIXUPS: 18a7e3 ffffffea ffffffa2 ffffffea ffffffa5 ffffffcb ffffffa1 fffffff2 -FIXUPS: 18a5f1 fffffff4 ffffff7b ffffffe1 ffffffd1 79d ffffff9b ffffffd1 -FIXUPS: 18abb6 ffffffd1 fffff505 ffffff71 ffffffd1 ffffffee ffffff9e ffffffea -FIXUPS: 189f30 ffffffee fffffff1 ffffff79 ffffffe2 ffffffed ffffffdc ffffff75 -FIXUPS: 189d8a ffffffed ffffffdd fffffff0 ffffffd8 fffffff2 748 ffffffea -FIXUPS: 18a416 ffffff7a ffffffd1 ffffffe9 ffffffd4 ffffffe2 ffffffe8 ffffffee -FIXUPS: 18a2c2 ffffffe9 33e3 ffffffc9 ffffffe5 ffffffe1 ffffdfa6 ffffffef -FIXUPS: 18b56d fffffff6 fffffff1 ffffe784 ffffffef ffffffee ffffff51 ffffffd8 -FIXUPS: 189bbc ffffffc8 fffffff1 ffffffea ffffffbe ffffffea ffffffe7 ffffffdf -FIXUPS: 189a6e fffffff1 ffffffea ffffffba ffffffe9 fffffff0 ffffffdb 715 -FIXUPS: 18a0c1 fffffff1 3489 ffffffc9 ffffffe1 ffffffe6 fffffff3 fffffff4 -FIXUPS: 18d474 ffffffd2 ffffffd8 ffffffed ffffffde ffffffef ffffff9e fffffff2 -FIXUPS: 18d34f ffffffe1 ffffffd6 ffffffeb fffffff4 ffffffea fffffff4 ffffffd2 -FIXUPS: 18d288 ffffffec ffffffed ffffffed fffffff2 ffffffe6 568 fffffff7 -FIXUPS: 18d6c4 ffffffe0 fffffb55 ffffffda ffffffce ffffffdd ffffffec ffffffbf -FIXUPS: 18d10d ffffffd3 ffffffec fffffff0 ffffffef ffffffe2 ffffffed ffffffef -FIXUPS: 18d030 ffffffef ffffffcb ffffffe0 ffffffe6 ffffffe0 ffffffed ffffffec -FIXUPS: 18cf5b ffffffea ffffffb2 fffffff4 ffffffde ffffffea ffffffe3 fffffff0 -FIXUPS: 18ce75 ffffffd4 fffff95f ffffffd6 ffffffeb ffffffe7 ffffff44 ffffffeb -FIXUPS: 18c670 ffffffeb 7cb ffffffde fffffff5 ffffffea ffffffe2 fffffff5 -FIXUPS: 18cd99 ffffffdc ffffffea fffffff7 ffffffea ffffffdf ffffffec ffffffe0 -FIXUPS: 18cccf ffffffdb ffffffb7 ffffffa3 ffffff04 ffffffc4 ffffffe0 ffffffeb -FIXUPS: 18ca35 7d0 fffff178 ffffffe4 ffffffe3 ffffffc9 ffffffdd ffffffe8 -FIXUPS: 18c2ba ffffffcd ffffffe5 ffffffe7 7d0 fffffff4 ffffff4e fffffff5 -FIXUPS: 18c937 fffffff5 ffffffed ffffffed ffffffe5 ffffffe8 fffffff0 fffffff2 -FIXUPS: 18c8a4 ffffffeb ffffffdc ffffffed ffffffe1 ffffffed ffffffe2 ffffffe6 -FIXUPS: 18c7d6 ffffffe9 fffffa7a ffffffc7 ffffffd1 ffffff4b ffffffd7 ffffffbf -FIXUPS: 18c08f ffffffa5 ffffff02 ffffffb5 ffffffcb ffffffe6 fffffff2 fffffff2 -FIXUPS: 18be72 790 ffffffe3 ffffffde ffffffee ffffffd4 fffffff3 ffffffe0 -FIXUPS: 18c535 ffffffe2 ffffffba ffffffc5 ffffffd0 ffffffdd ffffffda ffffffdb -FIXUPS: 18c3cc ffffffd4 fffffa00 fffffff2 fffffff2 fffffff2 ffffffee fffffff2 -FIXUPS: 18bd48 fffffff2 fffffff2 fffffff2 fffffff2 fffffff2 fffffff1 ffffffec -FIXUPS: 18bcd1 fffffff2 fffffff2 ffffffee fffffff2 fffffff2 fffffff2 ffffffee -FIXUPS: 18bc59 ffffff2f fffffff3 fffffff2 ffffffd1 ffffffef ffffffef ffffffef -FIXUPS: 18ba73 ffffffef fff72ebb e 1e 30 30 e b b 8d084 ffffffef ffffffef -FIXUPS: 18ba1e ffffffef ffffffe1 ffffffef ffffffef ffffffd7 ffffffef ffffffef -FIXUPS: 18b82b fffffff5 ffffff7b ffffffc6 ffffffa3 ffffffce ffffffaa 795 -FIXUPS: 18bdfd fffffff2 fffffff2 fffffff2 ffffffe1 fff72892 23 23 23 23 -FIXUPS: fe6f9 2d 23 d d d c 6 13 a 11 27 5 1d e 13 28 10 10 19 19 13 13 -FIXUPS: fe8cd 16 16 16 fffff8ca 13 33 23 d 38 23 d 38 23 d 38 23 d 38 23 -FIXUPS: fe3ef 38 23 d 38 5e 23 d 32 d 2d 23 13 1e 23 23 fffff748 31 1d -FIXUPS: fdde2 32 23 d 10 b 18 21 20 b 26 23 16 10 27 e b b 2d 23 d 4f 23 -FIXUPS: fe0e3 26 23 16 33 42 fffff7de 1b 10 56 19 17 10 15 19 16 15 27 -FIXUPS: fdae9 e 11 20 21 16 11 8 21 e 2b 4b 23 d 4c 23 32 23 d 37 fffff854 -FIXUPS: fd5cc 13 6f 1a 10 27 68 1f 33 29 23 18 b 1e 12 12 12 43 5 b b 1f -FIXUPS: fd8bc 45 18 29 13 8 8 b 15 fffff6e1 d 28 39 1f 68 b 1d 13 80 1b -FIXUPS: fd309 13 9 28 d 12 13 a 3e 32 23 16 24 d 53 23 23 16 b b b ffffefd6 -FIXUPS: fc579 60 2c 29 1d5 16 23 13a c 9 5c 24 c2 33 1d3 41 5 30 29 32 -FIXUPS: fcdc7 d d7 74 18 13 47 35 17 e 17 ffffef97 23 1b 10 12 9 24 18 -FIXUPS: fc069 48 14 20 c 1e f 27 2a 2a 23 1b 10 67 46 66 2a 1a 58 50 3e -FIXUPS: fc46b 2a 1a 3163 10 19 19 13 13 13 16 16 16 e e 1e e b ffffc650 -FIXUPS: fbd99 f 21 30 13 10 2a d 2f d 16 15 31 57 20 d 3417 15 8 e 16 d -FIXUPS: ff3ef d 1f f d 22 13 13 d 6 24 d 17 6 24 d 28 23 13 c 1c 5 1d e -FIXUPS: ff5da 28 fffffa57 20 d 21 62 2c 20 d 17 29 18 a b b 8 2d b 13 1c -FIXUPS: ff264 10 18 11 10 1b 10 1e 10 18 22 13 13 fffff91d d 2c 20 d 10 -FIXUPS: fed04 a 21 1c e 27 1f 33 20 d 6a 2a 20 d d 1d 15 35 3d d 6 18 6 -FIXUPS: fefb2 42 2c 89457 24 3e 3c 51 31 30 22 14 1b 57 33 1f fff76351 -FIXUPS: fea39 f 21 30 13 10 e 15 3a b 16 2d 2a 27 20 d 54 2a 8a371 13 13 -FIXUPS: 18900d 16 16 16 e e 1e e 32 1d fffff643 70 ffffff73 fffffa7d 1f -FIXUPS: 1881bc 1b 16 16 1c c7 14 3e 15 5a 20 14 1d 51 728 d 31 d 8e 10 -FIXUPS: 188c7a 38 47 36 d 1d 83 22 10 3b 13 24 d 1c 23 13 19 1f 5 1d e -FIXUPS: 188f5a 28 10 10 19 fff5559f 4e 62 aa218 27 f 21 30 2a 20 d 2c 20 -FIXUPS: 188959 10 b a 29 6 27 1f 33 20 d 36 b e 15 37 10 24 2d fff571be -FIXUPS: dfdae b 28 11f 30 30 13 23 10 10 ffffddc9 1c 39 3e 67 19 70 26 -FIXUPS: ddf85 59 59 59 66 ba 20 e 2e 131 7c de a3 f84 f3 48 6c 1d 35 1a -FIXUPS: df712 26 59 7a 98 43 14 f 51 33 55 57 3d 59 c c c c 18 38 43 18 -FIXUPS: dfc05 1c 2f ffffef6d a0 1f 32 43 c 19 44 24 45 52 4a 75 5b 33 34 -FIXUPS: deff3 e 76 33 17 3c 21 8b 28 ab 19 8e 1f 10 19 98 e17 272 ffffe1b6 -FIXUPS: de658 17 3a 39 38 16 17 3e 39 38 16 17 39 26 b 62 1f 5a 32 16 1d -FIXUPS: de9ef 29 26 23 22 2b 7d 66 30c5 10 10 10 10 10 10 10 10 10 10 10 -FIXUPS: e1d16 10 10 10 10 10 10 10 10 10 ffffe23c 16 17 39 21 1b 32 e 54 -FIXUPS: e0150 15d3 2d 30 13 2d 30 13 2d 30 13 2d 30 13 2d 62 b 55 b 55 -FIXUPS: e1a3d 55 b 55 b 55 b 55 b 55 b 19 10 fffff670 b 44 12 2f b 44 12 -FIXUPS: e13d6 b 44 12 2f b 44 12 2f b 44 12 2f b 2f 13 2d 30 13 2d 30 13 -FIXUPS: e16e0 30 fffff710 18 29 12 18 29 12 18 29 12 18 29 12 18 29 12 -FIXUPS: e0fd7 29 12 18 7a 6c 45 12 2f b 44 12 2f b 44 12 fffff81d 29 12 -FIXUPS: e0af7 29 12 18 29 12 18 29 12 18 29 15 18 29 12 18 29 12 18 29 -FIXUPS: e0d27 18 29 12 18 29 12 18 29 1162 5a b8 9 ffffe4c5 60 28 28 28 -FIXUPS: e0650 28 28 28 28 28 28 28 28 28 28 28 28 28 28 78 2f 38 93 22 -FIXUPS: e0a2c 4b 15 2223 11 41 e4 13 4f e 1c 10 73 14 16 14 16 14 96 2d -FIXUPS: e302a 61 1e 47 30 13 23 10 10 ffffefd6 18 3b fffffc59 14e 1e 1b69 -FIXUPS: e3ad4 ffffe75e 16 16 17 39 26 b 4b 29 38 77 30 17 3c 21 e0 1b 4b -FIXUPS: e260b 50 69 1ed 63 3b 40 5b 5b 36 168 21 1178 1c 60 72 8c 30 17 -FIXUPS: e3f5e d2 20 7e b5 51 47 25 34 37 79 12c 30 13 fffff66a 1c e3 7c -FIXUPS: e34db bb 38 38 92 35 10 1ae6 3c 2e 6d fffff226 96 136 30 17 21 -FIXUPS: e4891 33 11d 75 30 26 5a 59 35 89 77 33 17 21 b0 f7 1c 8a f4 13 -FIXUPS: e5080 13 1863 10 10 ffffee8c 16 17 35 26 b 4b 29 93 30 17 3c 21 -FIXUPS: e5cc0 30 13 23 10 10 fffff5ea 37 29 c6 17 21 29d 25 13 fffff9f6 -FIXUPS: e5dee 26 b 4b 29 47 74 30 17 3c 21 a6 19 27 25 b7 35 1f 8f 4a 123 -FIXUPS: e641b 55 17b 40 8e 31 38 13d 31 30 13 409 65 31 2b 2b 15 28 3f -FIXUPS: e6e6c 2b 28 3f 28 76 37 28 3b 28 a8 9 31 30 13 2d 13 23 10 10 ffffeb6c -FIXUPS: e5d88 16 17 2049 23 112 7e 17 23 23 169 29 30 13 23 10 10 ffffe71c -FIXUPS: e6958 17 3d 26 b 1a 18 4d 29 4f 79 30 17 3c 21 80 2a 689 29 19 -FIXUPS: e7382 1c 96 30 17 3c 21 115 19 af 19 17 35 b 22 25 b 22 19 48 1dd -FIXUPS: e79f1 51 4d d8 50 15b b2 17 b2d 16 13 13 16 28 81 13 16 2f 1e 2a -FIXUPS: e8b6f 13 48 13 2e 6f 60 e6 30 30 13 23 10 10 ffffe3bc 16 17 49 -FIXUPS: e72ce b fa6 39 26 b 4b 29 19 1c 96 30 17 3c 21 a4 4e 30 13 29 ad -FIXUPS: e8722 13 16 39 13 16 3b 61 14 5a 13 16 15 1d5b 13 23 10 10 ffffe7fc -FIXUPS: e8eb8 17 3d 26 b 4b 29 93 30 17 3c 21 88 25d 16d 13 1a 14c 2d 30 -FIXUPS: e9723 23 10 10 ffffeaec 16 15db 4b 29 b2 30 17 3c 21 aa 9e 35 1f -FIXUPS: e9d4d 1c 67 1c 63 1c 66 1c 5a 24 1c 1f 1c 18 1c 2b 1c 3e3 1d2 2e -FIXUPS: eec83 ffffba4f 16 16 17 39 26 b 7d 6d 30 17 3c 21 88 34 ac 14c -FIXUPS: eabd2 b6 28 30 13 23 10 10 ffffea5c 16 16 17 3d 26 4e4b 67 25 36 -FIXUPS: ee74e 84 5a 21 2b 19 32 1e 68 9 53 39 55 1c 35 5a 34 9 9 39 23 -FIXUPS: eebb0 13 2d 13 2d 13 2d ffffeda7 16 16 ca 96 6a 19 68 2f c 2f 44 -FIXUPS: edd5a 12 4d 14 12e 69 b0 1a3 1c 17 15 35 19 134 22 b5 e3 8d 72 -FIXUPS: ee657 ffffeb2e 1d 19 15 c9 90 16 9 aa 41 1d 29 1d 1d 39 84 96 20 -FIXUPS: ed632 8d 14 26 3d 18 3e 30 ba 87 21 62 c 57 ffffeef4 8c 3d 90 3d -FIXUPS: ecafd 3d 98 3f b6 d 17 2f 10 16e 42 7 b c 7 2f 17 3b 17 10 52 1c -FIXUPS: ed083 17 32 59 57 ffffec11 15 19 23 27 74 11 3d fb 28 11 11d 28 -FIXUPS: ec151 38 2a 15 28 11 5b 29f 8b 36 58 36 11 64 3d 1b b6 3d 90 ffffedef -FIXUPS: eb6c4 18 18 30 c 28 2f 18 28 2f 18 28 1d 18 36 2d e 21 1b 44 8b -FIXUPS: eba7c 1c ee 91 1b aa 3b 16 19 18 fffff5c3 2a 9 9 9 41 9 13 9 9 -FIXUPS: eb3de 28 13 11 c 28 2f 10 9 22 9 26 28 22 31 3b 15 16 2a c 28 22 -FIXUPS: eef85 3e 51 ffffbd3c 32 18 33 18 45 71 45 5b 46 33 17 21 65 2a -FIXUPS: eb0a5 2a 9f 1a 2d 20 36 18 3f 9 c 2f 4b 1a 40a5 32 e 54 fffffc2e -FIXUPS: ef088 17 3d 21 1b 32 e 54 7d 1d 73 fffffa09 16 17 39 21 1b 32 e -FIXUPS: eedf8 9b 13 e 2b 13 e 5a 9ae 17 35 21 1b 32 e 54 84 ae fffff99c -FIXUPS: ef508 17 39 21 1b 32 e 54 9b 13 e 2b 13 e 5a 2b fffffb5d 16 17 -FIXUPS: ef374 21 dda 35 21 1b 32 e 54 48 9e 10 1c 111 ae 51 3b fffff661 -FIXUPS: efc48 17 35 21 1b 32 e 54 50 2f b0 40 11 19f 73 fffff7fc eae 6b -FIXUPS: f083f 34 34 31 ee d 32 1c3 2a 13 1e 2a 13 1e 16 1e 2a 13 1e 2a -FIXUPS: f0d4a 1e 16 1e ac2 db8 eb0 e5b ffffbe21 16 714b 37 9 67 25 27 24 -FIXUPS: f73ef 52 50 37 69 25 27 24 35 52 50 37 69 25 27 24 32 81 18d 12 -FIXUPS: f7a13 13 ffff8d1a 7 46 6449 25 27 24 32 85 91 25 27 24 36 9 53 -FIXUPS: f6e99 50 38 9 68 25 27 24 36 52 4d 38 65 25 27 35 9 50 9 fffff224 -FIXUPS: f64a0 27 24 36 9 53 9 50 38 9 68 25 27 24 32 85 91 25 27 24 36 -FIXUPS: f692f 4d 38 65 25 27 36 51 4c 38 fffff18f 84 25 27 34 51 50 36 -FIXUPS: f5f39 25 27 34 51 50 36 5f 25 27 34 9 50 9 4d 36 9 61 25 27 36 -FIXUPS: f6391 4c 38 fffff128 38 4a 38 5c 38 4a 38 6e 38 4a 38 5c 38 4a -FIXUPS: f594b 19 3c 40 51 45 51 39 1b 27 1d 62 12 12 41 25 35 4f60 26 10 -FIXUPS: fac26 ffffdb0a 4b 8c 30 17 21 166 50 fffff0bb 138 30 17 21 b9 18 -FIXUPS: f7d8b 5d 59 18 3a b3 74 706 30 13 ffffcce4 26 32 497e a 15 28 58 -FIXUPS: f9f21 1b 2f 32 14 2f 3e 2a 13 a 89 22 22 39 4d 12a 204 19b 30 37 -FIXUPS: fa727 37 11c 4f 29 71 24d ffffec1d 67 15 28 46 28 30 27 2b 28 50 -FIXUPS: f99e9 27 28 1d 2b 28 3a 1a 28 3e 15 28 2d 1c 15 9b 22 60 43 28 -FIXUPS: f9db0 fffff041 31 30 b4 a9 7f 28 b9 d2 2f 39 1f 19b 76 28 84 28 -FIXUPS: f9589 1d 15 28 22 46 2d 26 15 28 2f 28 1f 28 2c 1bfb 5f 8f 30 17 -FIXUPS: fb4f6 bb 42 fa 22 1b6 9d e2 1a 25 107 196 13 ffffef0d ee 30 17 -FIXUPS: fad96 ffffddf6 30 17 21 21 76 b 91 ae fff0a4b4 20 30 20 20 20 20 -FIXUPS: 3379 20 30 30 20 20 20 30 50 30 30 19 27 11 1f 30 30 30 30 12 10 -FIXUPS: 369b 10 10 10 fffff7ae 13 1d 2c 24 e 13 1f 30 30 30 20 20 20 20 -FIXUPS: 3069 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 fffff780 50 -FIXUPS: 2a4a b 24 20 20 23 2d 23 2d 23 2d 1e 5 70 17 14 22 26 b 15 11 40 -FIXUPS: 2d2f 11 26 83 e 42 e 13 fffff7a4 3e 2d e 1e 23 23 23 23 23 23 90 -FIXUPS: 27fc 5 18 e 13 28 10 10 19 19 13 13 13 16 16 16 e e 1e 19 fffff757 -FIXUPS: 20fc 2b 2b 13 7 f 2e 2f 20 d 13 7 e 7 1a 11 1a2 e e e e 8 18 12 -FIXUPS: 249e 23 d 38 3e 3e 3e fffff786 7 1c 1c 23 24 7 2e 22 d 16 24 2e -FIXUPS: 1eba d 16 24 22 7 10 7 1c 22 d 16 2c 20 7 c 68 20 11 fffff76b 27 -FIXUPS: 18b0 27 70 2d 55 27 70 48 d 1d 77 23 25 e 18 20 7 e 7 1b 26 22 -FIXUPS: 1c63 e 24 3c 2b 7 23 d fffff472 36 6b 5f 24 23 30 d 14 8 12 7 22 -FIXUPS: 138d 1d 24 36 6 33 16 18 74 5a 23 1c 3c 27 70 ad 21 27 70 49a7 -FIXUPS: 6179 30 30 37 31 58 2c 44 2c 45 1f 30 30 24 ffffac05 27 f 21 30 -FIXUPS: 10c2 8 9 9 e 7 22 d 14 2d 1a 11 4cc1 d 2d 5 5 18 13 1d e 13 28 -FIXUPS: 5f32 10 19 19 13 13 13 16 16 16 e e 1e e 13 1f 30 30 30 33 17 fffff930 -FIXUPS: 5a96 d 14 16 1a 11 19 38 8 e 10 14 10 26 20 11 3f 23 32 23 d 10 -FIXUPS: 5cc6 21 8 13 27 2d a3 11 7 fffff7c8 20 b 32 d d 32 d 20 4f 3c d -FIXUPS: 5779 13 2d 5e d 4e 27 f 21 30 10 2d 33 23 13 18 22 12 30 2e fffff77f -FIXUPS: 51d5 24 76 e 7 c 2f d 3e d 34 d 2d 32 3d 1a 3e 1e 40 e 7 25 d 34 -FIXUPS: 5532 e 25 d 15 c 8 fffff867 6 40 1f 13 3f b 25 23 33 d 14 14 7 -FIXUPS: 4fa0 d 3e d 1a 16 10 19 10 14 24 42 1a b 7 3c d 40 fffff859 23 -FIXUPS: 4a3f d 21 33 d 2a e 19 44 10 27 23 25 17 16 16 27 3d e 2a 23 d -FIXUPS: 4cdf 10 e 6c 29 16 e 22 fffff778 29 23 4d d 14 2b 1c 2b 10 2d 23 -FIXUPS: 472e 28 18 10 e 6d 1a 7 5f d d 38 d 1a 7 70 d d 38 d fffff5e1 14 -FIXUPS: 3fd6 36 4d 2b 64 8 17 82 80 23 5a 62 7 3c d d 25 d 1b 6a 15 28 -FIXUPS: 445c 4d d 2d d 14 2b 14 fffff63d d 2a d 2a d 3b d 3b d 2a d 47 -FIXUPS: 3d46 59 7 50 4a 19 2a 20 d 2c 20 d 14 8 f 7 22 d 25 fffff7e3 27 -FIXUPS: 37a8 21 30 10 2b 2a d 21 43 20 d 38 20 d 13 20 1f 70 d 26 d 26 -FIXUPS: 3aac 13 1e 13 19 12 2e d d5b1 13 1f 1c 14 e 13 1f e 13 1f e 13 -FIXUPS: 11229 e 13 1f 17 19 30 1e 22 17 19 30 e 13 1f 13 1d 40 30 fffff9a0 -FIXUPS: 10e32 17 e 13 1f 49 17 e 13 1f e 13 1f e 13 1f e 13 1f 1c 14 e -FIXUPS: 1103a 1f 1c 14 e 13 1f 1c 14 fffff9c0 12 3e 12 2e 1c 14 1c 14 12 -FIXUPS: 10bf9 12 4e e b e e e e 3f 22 e e e b 8 21 e 13 1f e 13 fffff8ef -FIXUPS: 106cc 33 2a 23 19 24 13 33 2a 20 12 3e 13 33 2a 14 1a 5 5 18 12 -FIXUPS: 10959 20 12 4e 12 2e 12 2e 12 2e fffff7b0 12 2d 23 d 21 30 e 32 -FIXUPS: 1035b 2d 23 d 21 13 33 2a e 32 13 33 3e 3e 2e 23 19 24 13 33 2a -FIXUPS: 10679 12 fffff791 2d 23 29 d 17 23 2d 30 23 29 d 17 20 30 20 20 -FIXUPS: 10047 18 2a 30 20 e 18 2a 12 4e 13 1d 30 13 1d fffff810 23 13 1a -FIXUPS: fa9c 23 1d 1d d 23 23 29 d 17 23 29 d 17 23 13 1e 1c 30 30 23 13 -FIXUPS: fd2d 23 23 26 30 30 fffff612 50 7 7 20 23 20 c 41 2c 85 1f 2c d0 -FIXUPS: f6f2 17 2c 5e d 19 2c 51 13 2c 51 13 2c 9f 15 23 1a c fffff5ac -FIXUPS: efcc 10 75 11 b d 1b d 86 17 b 1e 3a 25 59 7 7 1b 11 2f 11 2f 23 -FIXUPS: f319 30 23 19 24 29 23 b fffff7c9 29 16 1b 4d 7 34 7 20 d 1a 7 -FIXUPS: ee09 29 1c 7 c 27 23 d 10 b 8 b b 11 34 7 2e 7 15 7 fffff6f9 8 -FIXUPS: e6ae 15 b 8 23 23 23 6a 8 28 23 5d 29 16 4e d 16 4a 7 1d 7 9b 29 -FIXUPS: ea58 1b 4c 7 1d 7 af fffff6cc 19 30 5b 29 1d b b b 1d b 8 37 c -FIXUPS: e420 13 1e 33 2c 15 36 21 10 1c 28 33 28 d 23 1c 24 41 fffff887 -FIXUPS: df0a 1f 2a 23 d d 13 23 19 31 40 29 30 23 16 14 e 7 2a 23 d f e -FIXUPS: e189 22 1e 2a 23 d d 12 fffff917 2a 23 d d 13 23 19 31 40 29 23 -FIXUPS: dce2 14 e 7 2a 23 d f e 7 41 7 18 15 c 1f 30 23 1e 4c fffff788 -FIXUPS: d6ba 2f 23 2d 23 2d 29 16 b 18 34 1e b 34 43 e 2b 97 b 27 20 28 -FIXUPS: da33 23 d d 12 23 19 30 40 fffff76b 30 23 23 10 18 32 23 16 e 7 -FIXUPS: d3be 15 9 7 3d 18 e 4c 26 1d d 57 23 2d 2a 23 d d 12 23 19 fffff89e -FIXUPS: cef3 17 7 32 d 1b 1b c d a 28 17 21 29 16 12 20 d d 7 2b d 10 1f -FIXUPS: d167 26 29 c 1d 22 58 fffff8cc 25 d 3e d 2b 2c 2a 23 d d 13 23 -FIXUPS: ccaf 31 3f 7 53 d 25 31 17 14 22 23 32 23 d d 8 8 8 fffff81a 52 -FIXUPS: c750 7 7 b 20 23 4d 23 2d 23 2d 23 32 23 d 7b 23 16 20 8 19 36 -FIXUPS: ca72 1c c 27 23 d 10 1c fffff4fb 3a cb d a8 4b 7 2e 19 4e 96 2a -FIXUPS: c3a2 16 b b 3b 7 33 23 d 2a 13 20 d 29 b 81 28 1c 75 66 fffff3b8 -FIXUPS: ba99 23 2d 1b 55 23 21 4f 4a 43 23 71 1c 1b 20 f 46 29 16 b 1f -FIXUPS: be33 1e 36 d 5c d 3f 37 7 22 fffff516 47 2a 23 d 2c 23 d d 12 23 -FIXUPS: b60a 30 59 7 40 2f 29 16 1b 16 49 5d 36 13 82 2b 25 1a 27 30 2b -FIXUPS: b124 21 d 57 29 23 b f 18 f 23 23 3d 29 1c c 27 23 d 10 1c 1f 8 -FIXUPS: b3d9 d 1e 25 23 16 20 7 1d fffff7ae 1c 2d 47 3d 25 32 22 4f 20 -FIXUPS: ae32 16 11 23 d 29 25 25 1d 23 16 34 17 3c 23 38 51 d 2c 25 21 -FIXUPS: b111 fffff700 18 21 17 28 23 32 23 d 10 19 26 4c 29 32 23 d 10 -FIXUPS: aa5b 28 36 23 25 17 17 1c 2b 43 29 32 23 d fffff708 32 23 d 2a -FIXUPS: a3e5 21 64 23 26 1d 36 63 50 23 32 23 d 10 16 14 10 1c 25 2d 25 -FIXUPS: a728 53 d 29 d 2f fffff71e 19 13 13 13 16 16 16 e e 1e 14 15 3f -FIXUPS: a099 29 32 1d b b 1d b 24 1d 1e 40 38 55 2f 53 b 21 fffff6e5 d -FIXUPS: 9a23 16 12 d 51 1c 10 24 23 17 46 14 15 38 4f 2d 20 48 4b 2d 2f -FIXUPS: 9d72 2c 1e a8 d 11 50 10 10 fffff603 35 d 3b 1c 23 1f 52 43 2d -FIXUPS: 969f 3d 1f 19 53 d 3e 16 16 2b 23 42 1a 28 d 4a 1f 45 1e 23 32 -FIXUPS: 9a01 fffff631 d 37 d 46 51 d d 32 d 2a d a4 d 32 d 32 d 1a 20 d -FIXUPS: 933d 4f 20 7 36 30 23 16 17 23 42 fffff47c 20 7 2c 3a d 15f a 4c -FIXUPS: 8bbc 22 46 23 32 23 67 30 84 32 23 5b d 22 25 21 d 50 30 23 25 -FIXUPS: 8fbc 3b fffff3b7 2b 23 70 7 41 d 38 23 16 47 2a 26 23 16 10 3a -FIXUPS: 866e 2b 50 23 16 2a 21 55 d e 43 20 41 27 d fffff5c4 23 16 a0 8 -FIXUPS: 7f79 23 16 a1 26 23 16 1a 21 2c 23 13 8 76 20 10 1c 10 30 23 20 -FIXUPS: 82b1 17 7 43 d 5a fffff51d 46 d e1 b 73 22 1b 34 23 3e 1f 23 22 -FIXUPS: 7b85 1c 28 23 4f 7 3c d 33 15 7 3c d 33 23 23 16 a3 fffff2fd 36 -FIXUPS: 71a0 99 23 4d f 21 11 1e 8 19 23 fd 23 16 b 22 2a 23 31 7 3c 23 -FIXUPS: 75a0 29 23 1cd 29 13 22 78 fffff543 27 f 21 30 e 8 e 7 27 3b d -FIXUPS: 6f06 7 25 d 1b 1a 25 23 32 23 d 17 9 5b 23 16 18 14 1b 23 fffff776 -FIXUPS: 68d9 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 47 f 21 49 27 f 21 -FIXUPS: 6c92 27 f 21 49 27 f 21 15fbb 8 1d 13 fffe96d6 27 f 21 49 27 f -FIXUPS: 6549 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 161c0 -FIXUPS: 1ca4c 13 1e 1f 20 1b 5 5 5 5 1e 18 28 30 17 19 70 30 e 13 1f e -FIXUPS: 1ccaa 1f 19 e e e e e e fffff940 23 30 14 3c 23 32 23 d 10 14 47 -FIXUPS: 1c839 30 e e e e e e e e e e e e e 3a 30 30 10 33 fffff7c6 23 23 -FIXUPS: 1c22b 1e 55 1b 30 30 30 30 23 32 13 68 40 23 32 23 d 10 26 25 23 -FIXUPS: 1c5be 23 d 2c 23 d d 13 fffff744 23 d 38 23 d 38 23 d 38 23 d 38 -FIXUPS: 1bf71 d 38 33 23 13 18 a 5 1e 23 23 23 23 23 23 23 23 23 fffff6db -FIXUPS: 1b899 23 16 1d 4a 23 32 23 d 7b 23 4d 10 33 3e 3e 3e 23 d 38 23 -FIXUPS: 1bc3e 38 23 d 38 23 d 38 23 d fffff598 12 4b 1a 78 3b 15 aa 24 -FIXUPS: 1b541 7 25 7 25 7 2b 4e 23 13 5a 23 5d 23 33 d 4d 23 16 8 1f 23 -FIXUPS: 1b872 fffff63a 16 c 41 2a 23 13 25 10 7 a 7 23 1d 1d 30 30 30 23 -FIXUPS: 1b0df 25 10 7 a 7 1f 19 25 23 16 3a c8 fffff8ba b 1c 17 1d b b -FIXUPS: 1ac05 21 d 1a b b 29 20 21 12 16 1d 38 37 40 b 15 b b 16 2c 15 -FIXUPS: 1ae59 b 25 fffffa02 10 b b 12 f b 23 17 1d 14 20 22 9 1f 12 14 -FIXUPS: 1a9f5 61 b 16 36 b 21 29 16 b b 12 b b 1d fffff345 2a 66 19 7 7 -FIXUPS: 19f82 61b 1f c b 17 7 7 21 30 30 23 16 13 5 10 15 19 4b 26 50 29 -FIXUPS: 1a81f d 2f 23 fffff1f2 2b 1e 29 32 16 b 31 23 d 18 7 7 27 5b 17 -FIXUPS: 19c66 76 d 59 7 7 39 2a 23 d 10 10 22 c 48 29 fffff26c d 13 13 -FIXUPS: 191d0 33 7 b 42 d 4b 20 d 2e 10 52 d 32 67 1b 27 45 20 d 53 23 -FIXUPS: 195c9 29 d3 e4 e 2b1 fffff229 5e 13 1d c 33 3b 23 30 16 26 16 10 -FIXUPS: 18e63 7 15 2a 60 29 20 b b 14 4f 2b 1a 15 14 12 6a 14 13 fffff690 -FIXUPS: 18790 13 36 23 1d 70 30 60 29 29 27 21 2f b 3c 29 32 23 d 10 b -FIXUPS: 18b12 13 43 c 45 29 16 2c 23 34 fffff5b5 38 23 d 18 59 23 16 33 -FIXUPS: 18398 d 64 23 16 e 29 29 16 b b e4 d 1a b 5e 67 1f 15 b 21 29 26 -FIXUPS: 17cf8 7 32 7 4b 23 d 54 d 3b 2a 23 16 20 88 12 6d 29 16 b 14 2f -FIXUPS: 18072 3d 27 96 17 14 22 23 16 31 fffff682 10 8 b 8 8 12 21 d a -FIXUPS: 17932 a 20 d 12 7 15 20 13 74 73 90 92 c 44 18 1e 29 16 b 27 14 -FIXUPS: 17368 8 1e 20 d 17 51 b dd 18 9 12 72 8 9 16 25 1e 7 10 ec 9 12 -FIXUPS: 1778b 2e 23 32 23 d 10 27 23 fffff590 17 24 19 14 13 1e 1a 14 13 -FIXUPS: 16f20 28 1a 27 23 16 87 23 16 37 23 17 21 81 9a 20 d 8d 30 29 16 -FIXUPS: 17360 fffff779 29 16 b b b b 2f 1d 28 22 20 20 20 18 18 15 25 25 -FIXUPS: 16cf2 19 27 23 d 2c 23 d 10 b 14 e 16 fffff95d 2b 29 1c 19 20 d -FIXUPS: 16834 b b 27 1c 12 b 25 19 26 18 1d 20 1d 1a 18 1a 1c 10 12 15 -FIXUPS: 16a64 23 d 1a fffff765 22 12 44 85 3b 2a 2a 3b 2a 19 6c 12 11 8c -FIXUPS: 1657b 24 b e 1a d 17 1a c 16 1b 1c 29 1c 49 41 11 fffff628 98 11 -FIXUPS: 15e25 20 44 23 1a 39 40 1f 16 12 25 d 11 22 1f 12 25 d f 5c 23 -FIXUPS: 160fe 5b 29 16 b 26 1d 20 fffff65a b 4c 7 1b 1b b 4a 1e 1d 25 27 -FIXUPS: 15a9f 2a 14 1c f d 24 23 f7 1f 16 12 25 d 11 22 1f 12 25 d fffff7e2 -FIXUPS: 15557 13 13 16 16 16 e e 1e 29 45 23 d 2c 23 d 2c 23 d 2c 20 b -FIXUPS: 157cd 22 16 b 7 18 d 10 d fffff700 23 1c 81 23 3e 23 d 38 23 d -FIXUPS: 1514a 23 d 38 23 d 21 10 10 8 31 8 31 8 41 38 38 1a4 10 10 19 fffff65a -FIXUPS: 14b9e b 10 13 1d 23 3e 23 d f 2a 2a 2a 46 1c 23 21 f 8 9 14 19 -FIXUPS: 14e49 23 13 19 17 11 1c 1a 3e fffff7a7 70 14 1c 17 1b ac 23 3e -FIXUPS: 148dd d f 1c 21 d e 78 30 23 3e 23 d d 1b 17 19 1c 10 10 21 d 1a -FIXUPS: 142ba 23 d d 19 17 19 1c 13 3a 17 11 1c 1a 3e 24 23 13 18 21 14 -FIXUPS: 14514 1e 2f 42 38 1e 29 16 15 15 15 fffff5c2 32 d 16 27 11 26 6c -FIXUPS: 13d78 d 24 23 16 17 80 23 6e 2f 23 14 d b cc 12 21 d 33 d 115 d -FIXUPS: 14259 23 fffff60b 27 12 10 19 56 23 d 5a f d 24 12 1e 23 13 e 6 -FIXUPS: 13aa9 e 9 9 20 23 2d 29 34 16 24 13 14 30 fffff8a0 16 20 d 10 b -FIXUPS: 13530 1d 14 29 20 12 21 41 23 d 22 14 29 20 12 21 41 23 d 36 21 -FIXUPS: 137d3 25 19 30 1f fffff842 45 23 d 10 b 17 1c 13 20 1c 13 1b 12 -FIXUPS: 13209 19 34 20 23 23 32 23 d 13 22 3a 4c 23 2d 29 45 23 fffff446 -FIXUPS: 12925 79 25 f 45 a 38 17 3f 3a 50 29 1d 42 113 31 104 23 16 b b -FIXUPS: 12e63 b d5 20 26 23 41 d 32 4d fffff39e 10 12 1b 12 19 2b 1c 18 -FIXUPS: 124fc a 5d 26 10 12 1e 12 3e 23 61 1e 5d 1c 18 17 a 4c 20 23 13 -FIXUPS: 12833 40 fffff6fa 28 13 44 b 22 29 16 26 6b 29 16 b 26 47 12 b -FIXUPS: 121e1 b 1d 23 62 1e 4d 23 10 2b 1c 18 1e a 5d fffff6a0 1d 17 e -FIXUPS: 11b0f 2b 17 1e 17 e 1d 1d 1d 1d 17 20 7 12 b 7f 5b 1d 15 51 84 -FIXUPS: 11e5d 20 42 4a 14 15 1e fffff737 1b 2d 17 35 3e 29 32 23 d 16 42 -FIXUPS: 11855 14 20 29 16 b 13 42 1e 1d 1d 1d b 1d 1d 1d 1d 1d 1d 29 c6fb -FIXUPS: 1e1a2 10 10 19 19 13 13 13 16 16 16 e e 21 17 14 22 30 30 23 ffff3150 -FIXUPS: 11502 27 f 21 49 27 f 21 43 3a c7e5 13 d 15 18 e 13 18 18 40 23 -FIXUPS: 1df7c 20 d 10 7 29 32 7 2c 38 d 26 23 13 1a 13 1b 5 5 18 e fffff990 -FIXUPS: 1db19 30 29 16 b 1e 28 7 18 d 14 d 19 2e 15 1b 13 7 1e 3e 7 1b -FIXUPS: 1dd49 17 2e 15 1b 13 7 1e 49 fffff8f0 d 24 13 2a 18 27 3e 1d 16 -FIXUPS: 1d854 13 7 2b 15 18 27 38 1d 16 7 13 7 b5 d 2e 23 13 f 7 22 19 -FIXUPS: 1d211 18 29 16 16 de 56 a 1d a 3f 2a 29 18 c a 66 18 c a 77 16 -FIXUPS: 1d5df 17 a e 14 39 d 7f 1e 14 fffff699 27 f 21 30 e 32 2a 16 8 -FIXUPS: 1cec9 b e 22 4d 10 7 3c 28 11 22 5a 7 3c 28 11 22 71 20 d 24 2c -FIXUPS: 200c9 13 2b 5 5 18 30 e 3b 10 10 19 19 13 13 13 16 16 16 e e 21 -FIXUPS: 202c3 14 22 30 50 30 e 32 e 13 fffff844 2c 3a 7 2c 30 23 d 34 9 -FIXUPS: 1fda9 23 19 2b 7 23 d 52 d 50 36 f 7 97 29 1c 11 11 29 28 18 b -FIXUPS: 1f8e7 2a 23 d f e 7 25 7 53 d 38 23 19 2b 7 23 d 1c 7 2a 23 d 45 -FIXUPS: 1fb90 22 20 d 15 7 2c 20 fffff962 43 7 2a 23 d f e 7 38 23 1b 7 -FIXUPS: 1f70f 2c 23 d 31 7 1c 2a 23 19 2b 7 23 d 13 7 7 1d 1b fffff605 -FIXUPS: 1ef02 2f d 1a4 d d 16 bd da 38 1f 79 23 28 1f 46 23 1d 7 7 e 7 -FIXUPS: 1f4b6 23 d f e 7 2f 23 30 fffff49b 1a 7 7 f 22 9 2e 32 33 28 2b -FIXUPS: 1eb9a 40 15 19 7 b 83 27 27 2f 3f d 16 42 33 1d 3f d 16 42 fffff849 -FIXUPS: 1e702 23 d 10 7 20 d 17 7 7 e 7 7 f 32 15 1e 7 20 d 69 25 15 20 -FIXUPS: 1e92f 3b 15 61 13 7 20 9c3f 11 1f ffff5d20 23 16 20 16 44 20 d -FIXUPS: 1e4a7 2f 2a 2f 1f 15 7 1d d 10 7 7 12 7 1d d 17 32 15 63 1d 9c36 -FIXUPS: 2831a 1f 15 1b 19 27 11 1f 11 1f 11 1f 11 1f 11 1f 2e 22 19 27 -FIXUPS: 2853a 1f 15 1b 11 1f 11 1f 19 27 15 fffff8ab 30 30 30 15 1b 15 -FIXUPS: 27fe9 30 20 40 2d 83 11 1f 15 1b 11 1f 11 1f 11 1f 11 1f 11 1f -FIXUPS: 2828a 1f 15 1b 15 fffff6fb 80 30 70 30 e 13 1f e 13 1f 11 b 24 -FIXUPS: 27c29 23 2d 23 2d 17 19 17 19 30 12 2e 30 30 30 30 49 17 fffff6b9 -FIXUPS: 27588 13 20 d 21 b 35 10 2d 23 d 23 2b 25 23 13 18 22 30 2b 23 -FIXUPS: 277fc 5 18 30 1a 26 40 30 30 60 fffff71a 38 3e 3e 3e 3e 3e 28 1a -FIXUPS: 27283 32 23 d 64 23 16 e 13 7 43 13 7 58 7 20 7 1c 24 17 17 22 -FIXUPS: 27549 fffff728 28 20 40 23 d 12 4e 23 13 18 23 1d 1d 23 23 23 23 -FIXUPS: 26ee3 23 a 2d 1f 12 2b 13 2d 38 23 d 32 23 fffff816 16 10 7 4b -FIXUPS: 26947 d 55 23 16 19 1e 23 16 16 21 23 16 8 19 1b 10 2b 29 32 23 -FIXUPS: 26bc4 10 23 20 14 2d fffff466 23 d 3b 13 7 4b 23 d 3b 23 280 d -FIXUPS: 26619 23 4d 23 20 20 d 20 23 16 10 7 4b 23 d 58 17 14 22 fffff489 -FIXUPS: 25d3a 7 23 d 10 7 28 7 7 23 d 15 7 5f 23 4d 23 16 b 7 14 21 23 -FIXUPS: 25fa6 2a 23 d 3d 1c 13 7 fffff7a1 34 69 10 7 4b 23 d 30 7 2a 34 -FIXUPS: 25a00 10 7 4b 23 d 30 7 2a 56 23 28 1f 20 56 23 28 1f 46 23 fffff720 -FIXUPS: 25437 7 2a 3a 7 2a 25 7 2a 23 d 35 21 2a 23 41 10 7 2a 35 7 2a -FIXUPS: 25714 25 23 18 2a 23 d 15 7 fffff822 16 47 23 16 b 7 2a 23 d f -FIXUPS: 25125 7 25 1c c 20 23 38 7 2a 70 7 35 28 23 1b 7 2a 2c 26 3f fffff721 -FIXUPS: 24b27 78 10 7 4b 23 d 38 23 1b 7 4b 23 d 40 23 1b 7 4b 23 d 40 -FIXUPS: 24e8c 2d 23 1b 7 4b 23 d 70 fffff6be 7 2f 2f 23 d 6d 23 d 30 7 -FIXUPS: 2485b 23 d 25 7 4b 23 d 25 7 4b 23 d 25 7 4b 23 d 25 7 4b fffff7c1 -FIXUPS: 242d0 7 af 30 23 d 33 23 16 10 27 7 4b 23 d 2e 23 16 16 22 7 10 -FIXUPS: 245cc 7 10 26 23 16 10 17 23 fffff891 e 1e 23 1b 7 2c 30 23 d 25 -FIXUPS: 24046 4b 23 d 58 23 25 7 22 7 18 7 2c 30 23 d 37 7 18 7 18 fffff61b -FIXUPS: 238e2 b b 26 a a 27 23 16 b 15 a a 23 239 d 16a 30 18 28 39 10 -FIXUPS: 23e62 19 19 13 13 13 16 16 16 fffff611 87 43 d 82 23 16 13 15 b -FIXUPS: 236fd f a a 29 23 16 13 15 b 18 f a a 29 23 16 b 15 a a 23 fffff79d -FIXUPS: 2306e 53 63 3d c 2c 29 16 31 a 27 c 23 20 29 16 16 2f d 13 20 d -FIXUPS: 2336d 7 1d fd f e 2b 14 21 fffff867 7 10 7 d 10 7 4b 23 d 3a 23 -FIXUPS: 22ea2 8 7 7 a 7 10 7 d 10 7 4b 23 d 3a 29 16 b a 11 fffff982 14 -FIXUPS: 229d1 d 5b 29 16 29 d 47 b 20 1a c 1c 39 14 10 22 1c b 51 23 16 -FIXUPS: 22ca3 51 25 23 16 8 7 7 fffff900 21 23 16 a 59 23 d 10 2a 1a c -FIXUPS: 227d9 23 16 d 2a 23 d 14 8 11 11 11 10 12 a 25 23 16 b 2f fffff84c -FIXUPS: 221e7 f f f f f f 1d d de 23 16 3a 23 d 15 7 e 6f 23 d 25 7 4b -FIXUPS: 2254f d f 9a 23 d 20 fffff913 11 11 10 12 a 23 23 16 3a 23 d 10 -FIXUPS: 220a5 12 f f f f f f f f f f f 22 f f f f f fffff96f 1a 8 28 a -FIXUPS: 21bb3 7 3c a4 2f 23 16 79 23 d 10 f 8 11 11 11 10 12 a 28 23 84 -FIXUPS: 21f23 d 10 f 8 fffff832 2e 21 d d 36 9 2f 29 2d 23 d 1b 8 8 a 50 -FIXUPS: 2199b 10 10 7 2a 23 d 4b 53 23 d 10 9 15 b fffff7a6 20 45 2b 20 -FIXUPS: 213ae 2b 23 32 48 2a 23 d 44 1c 15 17 1d 6 44 1d 7 2f 2f 23 d 70 -FIXUPS: 21714 d 16 38 13 fffff4f7 18 38 1f 5d 21 1c 7 18 f5 2b 83 d 15b -FIXUPS: 210c3 26 29 16 17 b b 23 7 7 20 d 21 17 1d 46 59 d fffff3f0 11 -FIXUPS: 206ce 28 30 2a 3f 36 2e c 1a 13 2d 39 23 d 66 21 1bb 10 7 31 3d -FIXUPS: 20bb2 31 b 8 b 14 23 21 19 82e7 16 e e 21 17 14 22 1c 14 23 ffff73f6 -FIXUPS: 20469 f 21 49 27 f 21 30 2a 20 d 2f 16 28 7 20 d 1b 8 13 859b 39 -FIXUPS: 28c72 2b d 1b 18 1c f 24 d 30 50 23 13 1a 13 1b 5 5 18 e 13 28 -FIXUPS: 28eb2 10 19 19 13 13 13 16 fffff9cb 30 1b 12 17 8 a 2a 31 10 b -FIXUPS: 28a1a 1a b 36 12 17 8 a 1f 2f 4b b b b 8 2d f 7 25 22 14 6e87 e -FIXUPS: 2fab3 e 28 e 32 30 12 9 f ffff8b4f 27 f 21 30 12 b e e 49 10 2e -FIXUPS: 28842 32 20 d 10 8 8 15 11 6df2 e 13 1f 11 1f 30 30 12 2e 30 12 -FIXUPS: 2f859 e 13 1f 13 1d 13 1d 13 1d 30 12 2e 30 12 2e 30 30 12 e fffff923 -FIXUPS: 2f3df 23 d 2a 23 13 1e 1a 5 5 18 33 17 14 22 23 2d e 13 1f e 13 -FIXUPS: 2f619 e 13 1f e 13 1f e 13 fffff88f 29 16 b b 70 19 14 1b 11 19 -FIXUPS: 2f0a4 11 1d 23 b 45 16 1d 23 1d 19 41 7d 1c 15 37 1c 15 21 23 2d -FIXUPS: 2eb72 1e d 2e 20 15 39 14 15 27 23 16 20 e 17 2f 8 26 38 2d 23 -FIXUPS: 2ee02 1e 14 15 11 1e 26 2d 22 21 11 fffff78d 23 d d b 31 16 f 6e -FIXUPS: 2e7c4 3d 36 39 1e 95 10 7 4f 2c 57 8 15 23 20 1c 10 13 7 4f d 2b -FIXUPS: 2eb5c fffff6ed 2d 33 23 13 18 22 2a 23 d 2c 23 d 2c 23 d d 13 23 -FIXUPS: 2e487 3d 57 23 d 4e 29 32 23 d 2c 23 d fffff718 1c 16 1c 3d 21 -FIXUPS: 2de74 9 58 7 25 7 61 23 23 24 1a 1c 16 1a 21 d 32 40 23 16 b 47 -FIXUPS: 2e1a9 2c 45 1f fffff67b 2a 25 24 2a 25 24 2a 25 24 2a 52 13 1d -FIXUPS: 2dadc 13 1c 21 21 21 21 2a e b b 1c 23 18 2b 88 2a 38 fffff759 -FIXUPS: 2d4d1 17 17 17 17 1d d 62 11 33 43 23 13 13 13 13 1d d 60 23 16 -FIXUPS: 2d798 22 19 16 22 19 16 22 19 1b fffff791 3e 32 1f 2c 2d 1f 2c -FIXUPS: 2d171 26 1f 2c 1d 26 1f 2c 39 23 39 1c 16 1a 78 2c 1e e e e e 8 -FIXUPS: 2d469 23 fffff755 57 23 d 5a 10 10 19 19 13 13 13 16 16 16 e e -FIXUPS: 2cdc9 23 32 23 d 2c 23 d 2c 1b 23 3b 3e 2b 3e fffff748 46 52 53 -FIXUPS: 2c83c 33 23 d 38 23 d 38 23 d 38 23 d 22 23 13 1a 2a 23 d 2c 23 -FIXUPS: 2caff 2c 13 2f 23 19 fffff76c 39 15 26 2c 18 1c 23 16 e 29 23 16 -FIXUPS: 2c4ae 13 1d d 4e 29 16 12 b 17 27 18 12 2f 17 46 12 2a 48 fffff887 -FIXUPS: 2bfc0 23 d 2c 23 d d b b b 13 1d 13 c 1d 12 f 1d 19 10 a 34 1c -FIXUPS: 2c1ae f 1d 6a 36 c 34 25 fffff87e 22 2a 13 33 23 d 2a 23 13 1a -FIXUPS: 2bcc3 23 d 2c 23 d 2c 23 d d 13 23 19 39 57 23 d 42 29 32 23 fffff7e2 -FIXUPS: 2b789 e 27 23 d 2c 23 d 19 19 78 25 29 16 b 12 1d 21 b 1d 12 10 -FIXUPS: 2ba11 17 18 17 d 14 9f 12 18 fffff7f6 3e 23 d 38 23 d 38 23 d 38 -FIXUPS: 2b4d0 d 38 23 d 38 23 d 38 3e 26 e 9 9 20 23 13 1e 23 23 23 fffff612 -FIXUPS: 2ad63 39 20 17 7f 23 7 1d 48 31 31 7 16 1d 2f 26 12 2a 3c 2a 48 -FIXUPS: 2b0ed 41 72 7 3c a6 13 33 23 d fffff5b1 3c 2b 45 d 75 2b 23 16 -FIXUPS: 2aa78 d 24 1e 22 23 16 1f 22 26 23 16 31 1a 2c 23 32 23 d 1b 20 -FIXUPS: 2ad22 16 fffff588 1a 34 63 20 15 23 2c 135 1f 23 16 e 29 23 16 -FIXUPS: 2a650 27 16 31 2d 20 2f 27 16 31 2d 1a 3a 23 16 12 fffff5a4 20 -FIXUPS: 29e81 1c 20 49 1c 20 49 3c 23 d 12 b 11 28 2e 61 1a d c 1d 13 7 -FIXUPS: 2a16e 33 61 1a 7 7 f 1d fffff7ac 13 23 19 45 57 23 d 4c 29 32 23 -FIXUPS: 29bf4 2c 23 d 2c 1d 7 20 d 2c 22 b 8 b b 5d 1d 12 f 1d fffff850 -FIXUPS: 2967e 20 d 18 9 39 5 1f 2c 16 5 d 1c 23 16 67 13 1d 23 13 1a 2a -FIXUPS: 29906 d 2c 23 d 2c 32 22 b fffff7ff f 21 49 27 f 21 49 27 f 21 -FIXUPS: 293b2 27 f 21 49 27 f 21 30 e 8 f 7 27 22 1a 41 12 7 2c 3b 8ad1 -FIXUPS: 32122 10 10 19 19 13 13 13 16 16 16 e e 3e 33 17 14 22 30 12 9 -FIXUPS: 32323 ffff6d6f 27 f 21 49 27 f 21 49 8b8a 2d 23 d 32 23 d 32 23 -FIXUPS: 31e7d 38 23 d 13 d 20 d 38 2f 23 13 18 1d 1d 23 23 20 5 5 18 30 -FIXUPS: 320e7 fffff8fc 25 4a 35 8 2a 23 16 20 d 10 19 19 17 31 23 16 20 -FIXUPS: 31c0f 13 b b 17 1a 23 16 c b b b 16 64 fffff7eb 65 23 1e 12 3e -FIXUPS: 3164a 28 37 23 16 20 d 2c 16 19 22 2b 1e 34 57 29 8 88 23 16 20 -FIXUPS: 3197f 10 21 d 10 fffff69b 1e 2e 1e 12 1e 8 24 d 3b 23 23 16 24 -FIXUPS: 31203 10 c 26 27 61 4c 23 16 b c 11 12 37 38 6d 6a 1d fffff7ad -FIXUPS: 30cce 23 d 10 17 24 23 16 24 1d 15 2a d 24 1d 38 1c c 19 23 33 -FIXUPS: 30f2c 2c 1f 2a d 4d d 15 1e 1b fffff927 16 4a 8 8 1c 29 13 17 34 -FIXUPS: 30aa2 12 14 8 e 13 d 13 10 9 1c 6 1b 19 6 48 22 19 23 16 13 24 -FIXUPS: 306dc 2f 9 10 10 10 18 8 8 1d 23 2f 9 10 10 10 10 10 10 18 8 8 -FIXUPS: 30889 23 3d 9 10 10 10 1c 13 16 fffff822 18 58 2c 15 27 11 d6 8 -FIXUPS: 30369 23 3b 32 23 3b 32 23 25 30 8 20 23 16 23 18 2c 23 2d 1c 24 -FIXUPS: 3067c 3d fffff685 3c 4f 23 32 20 d 2c 13 3d 35 b 3a 4b 32 1d d -FIXUPS: 2fffd 3d 13 c 9 6 73 16 16 17 e 15 b 8 c 33dc 17 14 22 12 2e e -FIXUPS: 335ea 1f 13 1d 30 12 2e e 13 1f 13 1d 30 ffffc479 27 f 21 30 e -FIXUPS: 2fc7e 20 d 2c 32 1c 352f 13 8 19 d 1e 26 23 16 c 2b 10 20 23 13 -FIXUPS: 333c7 5 5 31 10 10 19 19 13 13 13 16 16 16 e e 1e fffff949 2e 47 -FIXUPS: 32efa 27 23 d 68 16 10 25 d 34 d 1b c c 34 23 21 4c e 8 8 25 7 -FIXUPS: 331bd 23 d d 2a 23 fffff869 29 23 16 c 2b 13 33 23 d 2a 23 13 1e -FIXUPS: 32c59 2a 23 d 10 27 23 d d b 25 d 14 21 d 1d 23 19 fffff78c 1d -FIXUPS: 325c8 19 33 8d 5b 8 8 15 7 2a 20 d 13 8 19 1a 1f 1e 27 20 d 8b -FIXUPS: 3290c 34 89 23 2c 2c 45 d 17d4 13 16 16 16 e e 21 17 14 22 30 12 -FIXUPS: 32362 27 f 21 49 27 f 21 30 2a 20 d 10 27 20 d d b 22 1a19 22 23 -FIXUPS: 33ff2 22 d d 13 7 c 7 1e 13 37 23 d 26 23 13 18 20 5 5 18 e 13 -FIXUPS: 341f2 10 10 19 19 13 fffff8b9 20 d 40 84 18 6 53 7 22 d 22 9 32 -FIXUPS: 33d1a 57 8f 49 23 16 8 8 22 13 16 10 b 13 1e 23 16 22 3298 17 14 -FIXUPS: 37269 50 17 ffffc4c2 27 f 21 30 11 14 9 2c 57 20 d 22 23 5d 2c -FIXUPS: 33a0c d 20 29 16 b 12 e 2d 35 325e 1f 1c 1a b 21 22 31 17 5 6e -FIXUPS: 36f59 12e 5 5 21 10 10 19 19 13 13 13 16 16 16 e e 1e 16 8 12 fffff69e -FIXUPS: 36892 b 2b 1b b 30 2e 1a 14 b 26 1e 1d 2d 2d 28 14 29 6f 33 29 -FIXUPS: 36bbd b 21 70 19 3b d 49 d 46 fffff443 12 1e 53 7b d 52 d 52 d -FIXUPS: 3638d 1e 12 23 e 27 25 37 12 19 62 13 5a bf 67 40 1d 38 20 5 92 -FIXUPS: 36879 ffffef68 92 bb d4 58 b 23 19 1d 20 1b c 5f 58 b 23 19 1d -FIXUPS: 35c40 1b c 5f 58 b 23 19 1d 20 1b c 128 112 ffffeeb5 d 31 11 3e -FIXUPS: 34f69 19 241 d 4c d 10b b 21 12 12 85 15d 7e d 55 d 55 d 31 25 -FIXUPS: 35720 e 27 25 42 20 fffff19d 27 23 d 2c 19 e 91 12 12 72 2e 33 -FIXUPS: 34bf7 a6 1c c 22 f 11 8 25 b 11 5c 1c 20 20 d 29 b 15 fffff679 -FIXUPS: 344ec 19 16 a c 21 11 26 11 26 79 e b 27 20 d 2c 19 e e0 12 27 -FIXUPS: 34845 1e 40 11 11 74 1f b b 2c6b 8 206 5 5 21 10 10 19 19 13 13 -FIXUPS: 3789d 16 16 16 e e 21 17 14 ffffca72 e b b e 27 32 20 24 24 1a -FIXUPS: 37b2c 1d 13 1d e 32 13 3d 13 1d e 13 1f e 32 e 13 1f 30 fffff5c0 -FIXUPS: 372f1 56 92 10 50 32 4e 18 38 33 21 2c 8aa f 10 15 20 42 e 42 e -FIXUPS: 37982 27 f 21 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 18 1413 -FIXUPS: 38f49 23 1c 36 d 4f d 7b d 3a 12 1b 2d d 20 29 d 21 22 e 13 5f -FIXUPS: 39299 ffffeae0 1a 1c 1c 1c 1d a 10 cbe f 28 d a5 15 1a 1b 36 23 -FIXUPS: 38c75 63 15 2c d 18 2e 10 1d 8 5 28 d 2e 2d 23 d 27 1c e 42 26 -FIXUPS: 387d7 b 13 10 2b d 31 d 34 d 2c d 13 2e d 20 35 d a 18 b b 19 35 -FIXUPS: 38a30 17 b 38 1f 5 1b 8 fffff92d 90 5 46 c c 14 1f 39 1c 11 13 -FIXUPS: 385cf d 32 d 10 27 d a 9 e 5 24 23 48 d 1e 17 33 10 19 fffff7d7 -FIXUPS: 37f98 21 30 30 70 30 29 14 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 -FIXUPS: 382ba 4f e 5 a d 28 42 3a 1e 1217 12 a 6 19 e a 6 24 13 d d 53 -FIXUPS: 3971c d d 63 13 d d 11 13 68 d d 36 d 43 d d 7b ffffe5db 219a 1b -FIXUPS: 3a11c 5 18 e 13 fffff198 d 53 d 43 d 53 10 50 10 10 d 11 6 10 29 -FIXUPS: 394ec 10 86 10 10 e a d a 6a8 23 16 b 27 10 37 1d 31 23 16 15 22 -FIXUPS: 39e0c 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 90 27 10 10 23 1f27 -FIXUPS: 3c049 40 1d 13 12 11 4b 22 e 13 1d ffffd825 36 27 f 21 30 e b 37 -FIXUPS: 39ae2 16 15 15 14 e 5b 9 1a 6b 20 209a d 15 6 1d 6 1d 6 1f 6 2f -FIXUPS: 3bdc2 12 25 d 23 e 14 5 39 11 5 31 9 a 6 a0 11 19 37 9 a fffff9ac -FIXUPS: 3b9ba b 18 1f 2d 11 b 1f 6 24 6 27 1e 11 4f 11 b 12 12 12 3e 11 -FIXUPS: 3bbe5 8 7c 11 b 10 10 f f fffff7b5 b 33 d 4d d 1d 25 15 b 33 d -FIXUPS: 3b611 d 1f 28 34 11 bf 11 b 54 11 3f 11 4f 11 b 8 b 71 11 fffff805 -FIXUPS: 3b158 19 28 11 b b 11 18 19 19 e 10 30 11 4f 11 4f 11 b 11 18 19 -FIXUPS: 3b3a0 e 10 2b 11 4f 11 b b fffff8a3 3d d 1d 14 b 33 d 40 d 1f 34 -FIXUPS: 3ae8a 6f 11 8 10 77 11 8 10 87 11 b b 28 21 11 b 8 10 3a fffff804 -FIXUPS: 3a93b 2e 13 b a 10 78 39 d 12 3a d 21 35 d 12 3a d 25 11 b 12 82 -FIXUPS: 3ac5a 3f 11 b b 8 b 33 fffff638 d 1a 5f d a3 d 83 d 63 d 7c 10 -FIXUPS: 3a61d 10 3b 77 d 4a d 29 d 20 13 24 58 51 13 b a 10 6d 26e2 d 10 -FIXUPS: 3d029 33 d 20 8 d 29 29 17 15 23 d f 1e 8 d 29 27 1b 18 b 2b ffffcf34 -FIXUPS: 3a185 6 ae 6b d 68 2942 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a 2d -FIXUPS: 3ce3e 14 1b 2a d 2b d 20 2a d 17 15 2c d f 22 fffff90e 42 d 17 -FIXUPS: 3c992 6 28 6 30 6 19 f 2b a 12 f 2f e 1e c d 11 14 3a a 49 d 23 -FIXUPS: 3cbed 1f d f fffff868 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 f d -FIXUPS: 3c6ef 27 d 2b 36 d 29 d 35 d 2a 6 3f 2d 1e 13d0 1f 1b 2a 22 e 13 -FIXUPS: 3dd59 e 13 ffffe42f 17 3c 1d 10 58 28 10 31 1f 40 e 10 27 d 17 -FIXUPS: 3c3ce 18 a 24 d 42 1409 1b b a c 3e d 10 d a 12 1d 23 2d d 11 26 -FIXUPS: 3da39 23 1b 46 d 3c d 14 27 2f 3c 23 1b 32 23 fffff82b 58 d 2d -FIXUPS: 3d51b 4e 30 2c 17 d 20 10 19 c 10 1d d 2c d 28 10 8 c 3c 23 1b -FIXUPS: 3d783 3e d 11 44 26 30db 49 5c 10 9 36 d 94 130 2e d 77 20 d 21 -FIXUPS: 40cf5 22 ffffc56b 27 f 21 49 27 f 21 30 e 18 e 26 36 23 2efd 13 -FIXUPS: 403b9 d 53 13 d 10 d 27 44 1d 17 42 52 13 d 10 d 66 d 1a 46 13 -FIXUPS: 406b9 a0 13 d a0 10 9 d fffff573 d 22 d 14 11e 25 25 75 6a 14 1a -FIXUPS: 400a2 d 51 d 2c e 1a 1d 9 84 2e e 4a d 16 25 13 d 10 d fffff0e5 -FIXUPS: 3f404 3b 14 d d 1c 29 1b d b 2cd a 75 23 d d e 14 15 14e d 98 d6 -FIXUPS: 3fb9c d 71 d 55 6d 90 23 ffffef88 23 d 10 8 19 35 4f 38 51 54 43 -FIXUPS: 3ef8b 5a 5c 36 60 62 c7 45 b 1a 8f 23 19 8 10 32 32 23 d 11 fffff39f -FIXUPS: 3e7b1 2b 2d 23 1b d b 2f 3d 6 1d 48 6 36 37 33 34 6 57 6 1e 50 -FIXUPS: 3eae7 38 6 ad 45 8 1a 90 29 fffff7ca 1b d 8 1b 32 23 1b d 14 9 -FIXUPS: 3e5a7 22 23 13 1a 23 13 a 15 8 f a 1a 23 32 23 d d d 1c 20 fffff8a5 -FIXUPS: 3e04c 16 c 1b 23 1b 8 12 29 d 53 36 49 23 1b d f 45 36 2b 23 1b -FIXUPS: 3e334 f 13 7d d 3a 15 36 34 2d07 2d d 1d 12 4c b 6 63 d 21 ffffcaa2 -FIXUPS: 3ddc6 20 d d 11 1d 2b 23 32 20 d d 11 1d 33 23 1b d 30 3c 2e32 -FIXUPS: 40e42 14 25 d 4d 2c 23 25 e 1c d 2e d 17 27 c b 2b 1e c b 2e d -FIXUPS: 410d9 c b 28 d 34 25 d 4eab 18 28 2d 10 f f 23 e 17 c c 14 24 11 -FIXUPS: 46190 3c 20 1b 5 5 5 23 e 13 ffffaadf e 10 29 61 38 e 4e83 1d 1d -FIXUPS: 45d01 1d 1d 2a 10 29 12 2f 10 29 12 17 f 5 5 15 75 48 1d 14 b b -FIXUPS: 45f8f 22 b 1a 18 14 1d fffff7dd 32 23 d 1d 25 d 20 4c 29 16 b 2a -FIXUPS: 459aa 2f 23 2d 10 2d 38 38 38 38 38 38 33 23 13 18 1d 1c 1d fffff5cc -FIXUPS: 4526e 47 1d d 45 35 30 30 23 16 8a 5d 23 4d 23 27 20 d 27 d 1a -FIXUPS: 4562b d 1a 2e 69 30 30 23 16 57 fffff522 19 13 13 13 16 16 16 e -FIXUPS: 44dab 1e 23 16 1a 69 1c 68 23 18 b b 76 d 37 62 67 6c 23 28 3e -FIXUPS: 451e4 37 fffff4e7 1b e 3a f 25 23 16 b 3a 1e 31 94 2f 23 1f 29 -FIXUPS: 449a1 1e 36 d e 3b 1e 23 194 c 13 29 5a 10 10 fffff5a4 23 d 93 -FIXUPS: 4436c 32 23 d 10 27 23 d 10 22 35 35 32 10 c 35 4f 86 23 16 8 8 -FIXUPS: 44686 48 6 10 6 d fffff6fe 26 5e 23 2c 11 70 29 32 23 d 2c 23 d -FIXUPS: 4405c 13 8 c 1b c 54 6d f 8 15 36 5 b b 21 23 32 fffff7d3 24 c -FIXUPS: 43a88 22 26 8 1c 2d e 14 18 a 64 1b 25 23 2d d 10 18 29 18 26 24 -FIXUPS: 43d3c 2d d d 1d 29 18 fffff86a 3d c 1e 37 1b 25 40 23 16 27 23 -FIXUPS: 437f9 17 19 23 32 32 23 d 17 22 2d 16 27 23 d d 8 18 15 e fffff876 -FIXUPS: 4329c 32 32 23 d 17 22 23 32 16 27 23 d d 8 e c 27 22 26 8 1c 2d -FIXUPS: 43522 19 2d 29 24 2a 30 25 fffff7ce 2d d 10 10 ca f 1a b b 24 23 -FIXUPS: 42ff8 1e 23 23 2a d 3e 33 27 23 d 22 21 1b 23 16 27 23 d 17 fffff5c3 -FIXUPS: 42859 36 2a 23 27 25 4c 65 23 15 38 23 15 118 23 61 5 5 8 1a 23 -FIXUPS: 42ce9 23 38 7 9 12 1a 14 d 38 fffff479 5 35 63 1a 50 23 12 34 d -FIXUPS: 42429 23 3b c2 23 13 c 1e 23 16 b 24 1c 3f d 60 23 16 c 2b 23 53 -FIXUPS: 41df2 26 10 1b 2d 19 22 3e 23 2d 23 16 37 23 16 b 2c 23 16 6b 5 -FIXUPS: 420d2 5 5 14 15 10 24 11 a5 23 d fffff525 19 8c 23 32 23 d 43 58 -FIXUPS: 4192c 45 48 23 4d 23 7d 23 ad 23 4d 23 2d 23 2d 23 3d 29 26 10 -FIXUPS: 41d83 12 34 52b0 16 e e 1e 30 ffffa239 27 f 21 30 10 b 26 55 2a -FIXUPS: 4149f 1a 23 5d 23 3e 3f 23 32 20 d 12 1c 23 32 59 55c4 5e 10 2d -FIXUPS: 46dcb d 37 d 2d 10 8 18 20 40 23 d 17 27 5 5 18 e 13 38 10 10 19 -FIXUPS: 47014 13 13 13 16 fffff621 25 70 23 2f 5e 23 3d 23 2c c 25 23 1b -FIXUPS: 4690e 1d d 21 2c 2d 3e 49 23 16 26 19 c7 30 81 15 46 d 3be6 12 -FIXUPS: 4a8b7 5 1d 30 30 e 13 1f e 13 ffffb958 27 f 21 50 12 82 2c 78 d -FIXUPS: 4651d 1c 40 23 d d 33 2f 21 23 3e3f 19 13 13 13 16 16 16 e e 1e -FIXUPS: 4a58c 32 3b 13 2d 23 d 32 23 d 32 38 38 2c 23 13 18 1d 1d 1d 10 -FIXUPS: 49f69 23 2a d 2c 32 68 23 16 22 21 1d 1d d 29 44 23 32 23 d 2a -FIXUPS: 4a275 16 2e 23 6d 23 2d 23 a6 10 10 fffff44a 2e 31 2f 27 48 23 -FIXUPS: 49a1c d 6f 38 ae 23 d 4b 2d 23 d 2c 23 d 10 57 23 32 23 d 17 2a -FIXUPS: 49e4b 23 d fffff4bb 10 29 3a 23 2d d 10 29 6a 16 1a 23 1d 16 41 -FIXUPS: 49593 d d 35 38 7a 23 d 5b 9a 15 1b 2d 23 d 53 fffff650 25 d 2c -FIXUPS: 48f79 60 23 32 23 d 2a d 14 20 d 3d 1a 2c 23 32 23 d 2a d 14 20 -FIXUPS: 49256 3d 1a 2c 23 2d fffff575 23 d 27 d 64 43 23 32 23 d 30 2a -FIXUPS: 48af9 23 2a d ad 29 46 29 61 23 16 d 15 5e 47 25 d 2c 32 fffff473 -FIXUPS: 4833e bb 23 16 25 d 32 23 d 3d 2c b 41 12 1f d 29 1f 19 2a 65 d -FIXUPS: 486dd 23 d 44 28 2d 56 4d 23 fffff484 37 32 23 13 15 35 1f 33 67 -FIXUPS: 47ebb 15 a8 21 23 32 23 d 2a d 43 56 1f 3b 44 18 2c 40 5a 2a d -FIXUPS: 482d9 fffff2cb d 138 23 32 23 d 9b 23 32 23 d 10 db e 26 2c 2c -FIXUPS: 47a28 29 114 14 13 10 14 15 83 31 23 1b 10 b 33a9 1e e ffffc09b -FIXUPS: 47169 f 21 49 27 f 21 30 11 2d 36 2c 13 ad e 26 2a d 35 2c 3c 18 -FIXUPS: 474f9 1f d 24 23 16 377e 35 a e 10 12 27 13 b 14 18 b 12 70 8c -FIXUPS: 4af27 5 1d e 13 28 10 10 19 19 13 13 13 16 16 16 e 6298 24 e 13 -FIXUPS: 51369 13 1d 13 ffff9626 27 f 21 30 36 1a 36 15 6b 19 1d 4a 58 c -FIXUPS: 4ac53 1d f 6 10 6 26 a 20 6266 15 28 17 1f 1e 2b 1b 10 17 44 2c -FIXUPS: 510d5 1e 10 17 2b 2c 16 2f 67 1f 20 1b 5 5 5 23 e 13 1f 11 fffff7d2 -FIXUPS: 50af8 16 2f 67 25 35 3b 92 d 2d 64 30 30 10 a d a b 4f d 10 27 -FIXUPS: 50eab 8 e 16 14 c 10 1b 10 fffff7ee a b 4f d 10 27 13 8 e 16 14 -FIXUPS: 50827 10 1b 10 1f 15 28 17 1f 1e 2b 1b 10 17 6a 2c 16 1e 10 17 -FIXUPS: 50336 23 10 8 18 20 28 38 23 32 23 d 18 23 23 32 23 d 1a 21 23 -FIXUPS: 505de 23 d 15 36 23 16 17 50 10 a fffff86e 26 1d d 1c 3c 23 16 -FIXUPS: 50099 23 16 37 10 8 18 20 11 13 10 22 d 15 10 2b 1d e 32 49 17 -FIXUPS: 502d9 2d 23 fffff840 40 23 32 23 d d c 16 10 27 25 23 32 23 d 10 -FIXUPS: 4fd5e 27 24 23 16 b 32 c 6e 23 16 10 16 c 35 fffff7b4 1b 19 c 32 -FIXUPS: 4f76f 31 32 57 2d 3b 9 2a 1c 1c 1c 4d c 1c 1f 21 20 17 36 14 14 -FIXUPS: 4fa71 1a 19 5 f 1a fffff90a 9 a 2d 19 5 15 29 9 a 2d 10 61 23 28 -FIXUPS: 4f597 d 2c 23 d 10 b 27 13 8 8 8 8 13 9 27 1e fffff93c 5 1e 7 1c -FIXUPS: 4f05f 6b 1f 40 39 a f 5e 23 1b 1d 23 d 2c 23 d 10 b 27 31 25 1c -FIXUPS: 4f379 a 10 1b 5 fffff734 37 10 5 21 10 a 3c 6 f 6 10 13 40 57 1b -FIXUPS: 4ecf6 1f 9 14 6d 32 1d 31 17 5c 80 6a 5 35 1a 22 fffff86c 10 35 -FIXUPS: 4e8ab a 10 a 20 d d 11 18 25 d 41 c 20 d 1a 13 1e 24 7 15 21 18 -FIXUPS: 4eaa7 8 f 7 b 7 fffff9c2 8 25 9 14 2b 18 63 c 1a 19 32 20 5 1a -FIXUPS: 4e64e 1d 5 89 29 28 23 d 2c 16 b 27 1b 10 a 8 8 fffff916 40 23 -FIXUPS: 4e1d4 23 d 2c 23 d 10 b 27 13 8 8 8 8 16 a 10 a 20 d 15 1d 14 5 -FIXUPS: 4e39c 64 32 14 47 fffff923 b 27 13 8 8 8 16 a 10 a 20 d a 10 64 -FIXUPS: 4df24 14 47 c 8 69 9 14 47 8 14 c 1a 19 5 1a fffff90c 32 1b 10 -FIXUPS: 4da4e 8 19 6 19 6 25 39 1a 1a 28 28 1e 10 25 11 21 19 7f 5 31 23 -FIXUPS: 4dd14 23 d 2c 23 d fffff8e9 23 d 15 9 d 25 23 32 23 d 10 b 10 18 -FIXUPS: 4d7ff 1a 2d 16 b 1e 2a e 1f 6 18 4f 15 1d d 12 1f fffff948 22 23 -FIXUPS: 4d353 3a 29 23 23 32 23 d 22 23 d 22 23 d 1d 9 9 28 23 16 10 d -FIXUPS: 4d5c3 26 c 16 1e 23 16 fffff91d 33 10 10 19 19 13 13 13 16 16 16 -FIXUPS: 4d08d e 1e 23 31 2c 23 16 c a 23 2e 23 3a 33 23 1b d 1d 23 fffff8f5 -FIXUPS: 4cc0c 16 8 32 f f 48 27 23 16 8 12 f 70 f c 53 23 1b 10 b c a 14 -FIXUPS: 4ceb8 a 27 23 28 c a fffff70a 19 20 b 99 26 7a 28 23 16 47 23 16 -FIXUPS: 4c8dc 3f 2e 23 16 8 2a 31 17 18 a 79 32 23 16 15 4a f 48 fffff6c4 -FIXUPS: 4c29f d 15 6f 28 21 23 16 1d 23 d 15 56 1f 23 16 10 2c 1b 1f 21 -FIXUPS: 4c57c 16 b b 8 10 2e 12 24 c fffff8c9 10 8 18 20 23 16 b 1d 23 -FIXUPS: 4bfda 22 23 d 15 4f 28 21 23 16 1d 23 d 15 36 1f 23 16 b 1d 23 -FIXUPS: 4c25a fffff8fd 27 c 1e 20 74 1d e e c e c e c 24 10 2d 23 d 31 -FIXUPS: 4bd9a d 10 20 d 10 20 d 42 d 29 11 fffff9af e b b b b 30 23 d d -FIXUPS: 4b909 c 1d 27 e b b b b 30 23 d 2c 23 d 11 c 1d 30 2c 45 1f fffff876 -FIXUPS: 4b3e9 11 2b d 33 d 15 17 21 d 2e d 3a d 24 d 21 d 8c 8b 25 e b -FIXUPS: 4b70d b b 30 20 d 11 1d a5bb 5b 6c 117 5 1d e 13 1f e 13 ffff5112 -FIXUPS: 4b112 27 f 21 49 27 f 21 49 27 f 21 30 2b 25 30 23 16 b 11 a55b -FIXUPS: 55916 43 11 3f 23 2d 23 16 2b 2c 23 2d 10 3f d 3f 23 d 25 10 8 -FIXUPS: 55bf9 1d 23 e e 12 2a 18 e 32 fffff732 d 25 18 28 23 f 27 f 20 -FIXUPS: 5553a f 15 1e 27 25 32 1f 40 70 30 30 23 32 28 d 1c 5a 30 30 30 -FIXUPS: 558e6 fffff73c 27 23 16 47 14 b b b 12 34 17 2f 17 19 28 25 19 -FIXUPS: 55244 32 d 17 26 18 27 b 36 54 d 2b 20 18 fffff8ae 10 10 19 19 -FIXUPS: 54d17 13 13 16 16 16 e e 1e 23 13 e 12 10 17 1c 27 23 3d 23 2d -FIXUPS: 54f59 30 23 16 27 23 fffff85d 65 d 2e 23 32 23 d e 20 11 24 38 -FIXUPS: 54a4c 13 e 12 2c 1c 22 23 88 d 28 20 23 13 e 12 10 17 1c fffff783 -FIXUPS: 54415 24 23 2d d 34 7f e 8 8 c e 12 41 8 20 11 18 20 20 20 1c 2c -FIXUPS: 546d9 54 18 24 8d d 33 d fffff5c0 36 23 16 8 10 14 10 10 1b 3a -FIXUPS: 53f20 136 25 5e 12 1e 50 e 30 72 23 ed 23 13 8 1e 10 24 23 13 8 -FIXUPS: 539e9 23 16 b 6c 23 30 d d 23 23 16 8 2f 1c 24 23 16 8 2f 1c 24 -FIXUPS: 53c97 2d 1f 26 23 5d 23 16 8 10 fffff7a0 14 24 2b 12 19 3c 12 1c -FIXUPS: 536bd 15 17 c 25 8f b 14 2f b 27 23 2d 23 16 34 23 23 16 b 15 39 -FIXUPS: 539c7 fffff7fb 32 16 27 23 d 10 b b b b b 38 d 1c 17 22 41 b 1c -FIXUPS: 533b5 16 1a 24 1f 26 27 28 44 b 5f 12 fffff75d d 1c 22 41 18 47 -FIXUPS: 52dc1 b 14 27 28 44 b 5f 19 2e 24 19 3c 12 1c 4b 15 17 70 b 1c -FIXUPS: 53118 21 3f 21 fffff75d 8 25 18 f 16 10 f 16 12 56 22 22 26 d 5f -FIXUPS: 52aea 32 17 66 20 29 32 16 b b b b b b b b fffff91b 14 14 8 3c -FIXUPS: 52639 29 16 b b b 8 8 8 8 c 8 40 12 1c 19 19 10 49 18 12 13 2e -FIXUPS: 52896 f 19 13 fffff7d9 8 48 16 8 4e 37 d 5b 29 4b 23 13 8 48 16 -FIXUPS: 5231d 4e 4f 29 26 23 16 8 c 8 39 8 5a 15 4b 1f fffff60a 8f d 7a -FIXUPS: 51cff 1a c 26 8 e 12 2e 28 23 15 18 23 32 3f d 12 48 d 40 d 77 -FIXUPS: 52008 d 22 32 23 16 fffff5f1 b b 15 2b 11 2d 7b d 4c 20 d 61 20 -FIXUPS: 518b6 5e 1d 58 12 b b b b 16 d c 23 23 6e 6f 2c 30 4e36 27 10 10 -FIXUPS: 56a0b 19 13 13 13 16 16 16 e e ffffa927 27 f 21 49 27 f 21 30 25 -FIXUPS: 5153b 2c 43 39 59 2d 14 b 4c79 c 6 87 2c 6 a8 1a 3b 23 1b 10 d -FIXUPS: 5652e b 8 12 d 40 1d c 15 13 10 80 1c2 f4 5 1d 14 6 26 3ce1 1f -FIXUPS: 5a6a7 13 ffffb94f 29 1b 10 d a b 27 13 14 b 4f 10 18 f 10 1f 15 -FIXUPS: 561ad 16 10 1f 8 2b 3b 1e 2f 10 4065 10 19 19 13 13 13 16 16 16 -FIXUPS: 5a3ed e 1e 89 27 10 2d 30 d 37 d 22 10 8 18 1e 5 1d e 13 1f e fffff8db -FIXUPS: 59f4e 3e 16 23 1a 2a e b b 2c 30 30 11 2a 2b d 17 2a 15 1c b 13 -FIXUPS: 5a1d4 19 4a 15 38 2b 21 11 31 fffffa09 b a f 17 10 b 18 1c 10 14 -FIXUPS: 59dd1 b 20 d d 1c 14 8 b 10 20 d 1d 8 14 8 10 20 d d 8 fffffb0f -FIXUPS: 59a5f 13 b 8 20 1d 8 1f 17 10 f 15 8 3a 13 1a 11 8 2d 23 32 23 -FIXUPS: 59c6e 2c 23 d d e 17 10 9 fffff9de 19 c 3e 16 23 1a 20 29 32 23 -FIXUPS: 59854 2c 13 b 8 8 23 1d 8 1f 10 f 15 8 3a 13 1a 11 8 28 29 fffffafe -FIXUPS: 5952f 17 10 13 13 e 26 d d a 22 10 8 a 10 d 9 8 d 9 8 8 a 10 9 -FIXUPS: 59697 d d 20 d d fffffb53 8 29 17 15 8 39 1d 8 34 15 8 1b 13 1a -FIXUPS: 593ab 8 26 23 32 23 d 2c 23 d d e 17 10 9 6 b fffffa62 d 9 8 d -FIXUPS: 58fc3 d d 20 d d 13 9 8 d 20 d d 8 19 c 3e 16 23 1a 29 29 32 23 -FIXUPS: 591f4 2c 13 fffffb7a d d e 17 10 9 6 b a f 17 10 e 26 d d a 22 -FIXUPS: 58ee8 10 9 8 8 a 10 9 8 d d 8 a fffffb1d 11 8 2b 29 16 27 13 b -FIXUPS: 58b55 12 1d 8 27 c 17 15 8 3c 1d 8 1b 13 1a 11 8 24 23 32 23 d -FIXUPS: 58d8a fffff8dd d 53 32 23 4d 16 2a 13 4b 32 2d 23 29 32 23 d 2c -FIXUPS: 58953 b 8 14 1d 8 2a 1c 24 17 15 8 1b 13 fffff8e3 1d 9 e 9 20 18 -FIXUPS: 583cc 1d 14 1d d 9 16 b 1c 4d 8 1f 14 8 1c e b b 3c 49 17 23 2d -FIXUPS: 58636 10 fffff90c 34 23 23 6d 29 37 d 31 d d 10 13 12 15 18 18 -FIXUPS: 58176 16 8a b 19 19 1d d 22 1b 31 19 13 1d d fffff6b7 62 d 65 d -FIXUPS: 57b49 d 6c d 40 d 2d 14 15 70 23 d 27 48 d 1b 23 16 15 5d 27 2e -FIXUPS: 57ecc 1e 13 1c 23 fffff4b5 58 e 32 17 d 1c 1e 52 36 17 23 18 28 -FIXUPS: 575f7 50 11 20 8 18 3e 1d 35 21 2b d eb d 70 d cb 2a fffff506 4c -FIXUPS: 56f5e d 22 2d 3f 23 37 d 10 24 d 12 92 a4 23 16 b 3f 1d d 3d 10 -FIXUPS: 57300 d 56 1d d 14 1d d 33f8 16 16 e e ffffc2e7 27 f 21 49 27 f -FIXUPS: 56be9 30 11 27 13 1d d 6e 27 55 71 23 2d d 15 27 d 15 27 e 5eb0 -FIXUPS: 5cdfc d f3 20 1b 5 5 5 2c 10 10 19 19 13 13 13 16 16 16 e e ffffd69c -FIXUPS: 5a6fc 26 10 10 19 19 13 13 13 2052 77 19 15 22 f9 b 4c 18 15 3d -FIXUPS: 5caae 15 10 2c 10 1d 13 1d 13 17 1c 12 10 12 21 92 38 58 23 14 -FIXUPS: 5cd7c fffff271 44 26 d 11 90 32 16 16 16 19 15 22 1a d 52 84 23 -FIXUPS: 5c2f6 ea 249 23 2d 19 18 18 ba 1d 1b b b a fffff1e9 58 14 23 7 -FIXUPS: 5ba62 15 18 15 15 18 15 15 18 15 15 18 30 164 30 80 23 16 85 4e -FIXUPS: 5bef9 29 16 8 8 39 44 ffffefb5 66 29 23 16 2d 118 32 23 7d 50 30 -FIXUPS: 5b369 23 16 8 8 5a d c0 12 e7 18f 9f 3c 25 8 2f 90 22 7 d 62ab -FIXUPS: 61c17 13 ffff8c20 a 25 e 32 29 16 12d b4 23 16 87 23 32 23 d 10 -FIXUPS: 5ac6a 2e 42 3f 23 16 137 23 16 b b 95 682c 22 2e 30 23 d 2b 33 -FIXUPS: 618b4 15 14 1c 23 32 23 d 1a 1b 96 23 17 20 d 18 41 e b 15 11 65 -FIXUPS: 61be7 5 fffff6ed 23 16 b b 33 49 12 33 10 13 15 3f d 4b d 61 d -FIXUPS: 6158f d 31 1c 2b d 10 4a d 35 d 14 78 36 fffff80c 14 49 d a 24 -FIXUPS: 61047 d 30 13 b 21 14 1d d 1d 17 f d 9 14 9 42 21 11 38 1a 17 d -FIXUPS: 6126a 14 9 fffff9d1 31 40 40 40 e b b b b 26 23 32 23 d 10 b 8 -FIXUPS: 60e59 8 c 1c c 3a 8 22 a 10 a 2a d 37 fffff701 32 23 d 10 b b bc -FIXUPS: 607dc c f 88 c 57 2f 1e 14 28 1e 14 ab c c f 60 c 57 23 1e 14 38 -FIXUPS: 60bc7 fffff230 5b d 92 d ab 11 1c 143 22 19 c5 f0 2d 23 d 62 14a -FIXUPS: 60522 10 19 19 13 13 13 16 16 16 e e 1e 50 fffff3be d b 27 23 d -FIXUPS: 5faa3 8 f 16 42 d 3c 11 d 37 1e 18 25 d 27 50 6b 18 27 23 16 10 -FIXUPS: 5fd8f 27 23 d fffff823 e 18 2e 14 1a 24 20 d 12 15 15 1f c d 52 -FIXUPS: 5f7c6 51 38 1a 39 1a 12 20 4b 23 16 b f 33 2a 23 fffff51d 61 d -FIXUPS: 5efad 39 48 bb 11 3c 33 11 2c 33 11 8 8 12 11 49 30 34 38 13 19 -FIXUPS: 5f3a1 56 22 11 6f 30 68 27 fffff4d3 63 12 17 6 18 34 23 16 50 d -FIXUPS: 5eba9 31 1f 23 3d 23 8d 23 2d 31 d 32 23 1a 23 30 23 16 b 58 17 -FIXUPS: 5e437 d 68 a b f 23 e 58 6 6 f 6 109 1a 85 1f 28 6 13 6a d 40 1d -FIXUPS: 5e8b1 d 3f 3a 62 23 32 30 fffff41d 55 52 23 d 27 28 d 3b d 5a d -FIXUPS: 5e077 d 52 3b 38 34 d 11c 13 3c d c 2b 17 59 e 8 20 d 12 fffff3c8 -FIXUPS: 5d817 43 15 17 2a 17 25 17 9a 75 d 9a 10 22 1d d 12 b c 1b e9 d -FIXUPS: 5dcf9 25 d 23 15 2c 50 2a 25 fffff2db 23 16 1b 1c 12 11 2d 23 16 -FIXUPS: 5d20d 10 2b 41 2a 1d 21 d 40 d 2d b 17d 6 ac d 55 77 59 18 19 9d -FIXUPS: 62119 d 93 23 95 78 23 13 8 c 45 25 2c 2b d 45 91 5 26 10 10 19 -FIXUPS: 62554 13 13 13 16 16 16 e e ffffaa92 705c 16 e e 1e e ffffdb12 -FIXUPS: 61c60 44 19 40 d 13 3c 5d 2b 28 22 d d 10 12 25 1c 61 2a 20 d 56 -FIXUPS: 61fc3 5c 54 1a1a 4d d 1d3 8 33 24 f 19 f2 2b 8b 23 13 2a 10 29 -FIXUPS: 63f94 23 5 1d e 13 28 10 10 19 19 13 13 13 16 fffff501 32 4f 25 -FIXUPS: 636a2 2c 5a 1f 5c 26 14 b 22 13 16 3d 18 a 29 e 1d d 14 c b 4b -FIXUPS: 6398e 29 23 60 1f 20 fffff293 d 34 77 61 44 29 32 60 25 3d d 1e -FIXUPS: 6300a 2c 5f 10f 7d 67 41 23 51 1c 3a d 18 3f 75 77 61 25 29 fffff0c6 -FIXUPS: 62679 30 34 1c 11 15 8b 5f 3c d 57 3a d b8 101 16 3a 23 32 23 d -FIXUPS: 62bc9 1c 25 3b 31 a 8 f 21 37 8a7b 1f 13 1d 13 1d 13 1d 13 ffff895b -FIXUPS: 6418c 1d 11 16 39 18 d 24 10 10 19 19 13 13 13 16 16 16 e e ffffe2e7 -FIXUPS: 62649 8e4e 1f 10 6 36 d 20 2a 12 e f 1f 22 e 13 1f e 13 1f e 13 -FIXUPS: 6b689 e 13 1f e 13 1f e 13 1f e fffff8e8 1b b 19 17 63 d 5c 13 -FIXUPS: 6b187 43 18 2e c 22 22 24 16 1d 6 34 d 15 c 17 3b 38 26 1d 2f d -FIXUPS: 6b439 fffff7e0 30 12 2a d 27 13 10 10 11 19 46 5a 23 d 23 14 2c -FIXUPS: 6ae73 23 d 10 b 11 17 37 43 1f 36 23 d 34 fffff890 30 23 16 30 -FIXUPS: 6a964 35 26 1d c 37 11 f 1e 6 18 d 20 31 23 1d 13 14 6 1d 26 23 -FIXUPS: 6abc9 12 e d 6 fffff940 d 15 c 17 2f 29 26 32 23 d d d 8 10 13 -FIXUPS: 6a6ae b 21 d 30 d 42 1a 17 26 17 43 1d d 12 20 fffff8bd 1f 36 23 -FIXUPS: 6a1b5 34 19 11 b 2b 23 1b 20 50 32 26 1b 13 33 14 13 1b 23 11 35 -FIXUPS: 6a467 22 22 24 16 1d 6 fffff83a 12 2c d e 2d d 37 d 43 d 20 13 -FIXUPS: 69eac 10 11 19 46 5a 23 d 23 14 2c 2a 23 d 10 b 11 17 37 fffff8b7 -FIXUPS: 699b1 11 e 2a c 27 20 d 4d 20 d 25 30 12 13 13 8 24 d d 10 20 d -FIXUPS: 69c3a d 18 40 3d d 27 d fffff8aa 15 13 1a 17 34 42 d 1a 35 d 47 -FIXUPS: 6974c 18 1c 6 16 20 32 17 1e 20 d 25 34 26 1d 2f d 17 2f d fffff951 -FIXUPS: 692f5 1a 17 13 a 14 20 6 17 2e 37 26 1d 2f d 17 2f d 11 d c 10 -FIXUPS: 69511 d c 17 17 b b e 3e fffff98f 23 1d 2f d 1a 1f 13 1e 1d 9 e -FIXUPS: 69088 c 42 d 2b 2b 23 1d 2f d 15 15 20 1f b 1f 13 18 23 1d fffff942 -FIXUPS: 68c0a c 28 37 21 12 a 1d 2a 23 1d 2f d 12 15 1f 13 17 6 1e 23 1d -FIXUPS: 68e78 d 12 15 1f 13 13 a 1d fffff980 d 10 c 3e 12 28 23 13 10 1a -FIXUPS: 689bc 1d 2f d 11 1e 20 6 1f 23 1d 2f d 11 1e 1c a 1f 23 1d 2f fffff941 -FIXUPS: 6854c 1e 12 2f d 15 c 26 17 6 1d 23 1e 12 2f d 15 c 26 13 a 1d -FIXUPS: 68779 23 1d 2f d 11 23 23 1d fffff930 16 9 21 d 23 20 1b 21 20 -FIXUPS: 6828b 1e 23 20 17 17 2d d 19 1b 46 24 27 23 1e 12 2f d 10 c 3e -FIXUPS: 6850e fffff89e f 29 b 6 24 29 37 23 1b 12 1e 17 23 d 45 d 39 11 -FIXUPS: 67fd3 26 23 1b 10 29 72 d 21 14 14 21 23 fffff7f5 23 d 39 d e 3e -FIXUPS: 67a50 28 d 2d d 15 b 6 e 1a 22 b 6 29 23 32 23 d 10 b f 1c 29 5f -FIXUPS: 67d65 fffff7c4 c a 20 d 3e d 3b d 2a 30 e 19 3d 30 2c 26 35 23 -FIXUPS: 677a4 2f d 13 14 5d 23 d 25 26 19 21 26 fffff73b 1f 26 1b b 17 -FIXUPS: 6716e 22 2d c c 3d d 15 32 33 26 1d 2f d 11 20 6 11 c 4a 49 16 -FIXUPS: 67497 d 43 32 fffff7fa d 2d d 11 14 13 27 12 1e 12 1e 30 e 32 1f -FIXUPS: 66ec9 23 1d 1b d 38 f 9 28 16 1d 1c 36 d 1f 17 fffff848 23 1b 33 -FIXUPS: 66937 28 9 21 13 10 11 19 38 57 23 d 24 12 29 65 26 1e e 1e 26 -FIXUPS: 66c21 23 d 39 d e 46 fffff883 2b 23 1b 2c 2a 19 9 27 9 6 24 23 -FIXUPS: 666e7 3c d 1c b 19 22 9 23 14 9 6 29 9 23 11 9 6 2b fffff985 26 -FIXUPS: 66259 23 19 24 23 1d 16 2c 9 19 15 b 13 9 1d 14 9 6 22 2e 23 1d -FIXUPS: 6647c 19 6 1d 31 23 16 2a fffff8e5 d 1a 13 1e 23 32 23 d 10 b f -FIXUPS: 65f54 29 57 49 30 27 29 3c 23 1e 10 10 a 16 13 13 b 19 1b 2c fffff81a -FIXUPS: 65a12 27 19 11 b 2b 12 26 28 23 1d 30 23 19 29 d 50 2e 23 1e 1f -FIXUPS: 65cdc 32 23 d 39 d e 3d 28 d fffff849 11 6 45 12 13 13 13 a 20 -FIXUPS: 6572b 1e 13 10 11 19 38 57 23 d 24 2a 23 d 10 b 11 17 37 43 1f -FIXUPS: 659e2 fffff93d c c 22 e 19 3a 2f 23 1e 24 9 22 23 1d 10 17 6 23 -FIXUPS: 6552c 1d 10 13 a 1d 26 e c 26 23 1b 10 fffff949 9 f 31 2d 23 d -FIXUPS: 6504b 10 30 2f 9 f 34 9 f 3b 17 13 13 36 d 3b d 1e 24 d 1e 24 d -FIXUPS: 652e9 23 fffff955 d 15 10 12 27 b 6 18 b 6 4b 23 d 28 14 22 2a -FIXUPS: 64e36 23 d 15 d 13 13 1a 20 d 20 2f 9 f fffff85d 2c 17 c d 14 23 -FIXUPS: 64880 d 25 32 1f 32 39 3f 2c 50 11 10 b 12 29 17 25 30 45 d 2c -FIXUPS: 64bb4 35 23 32 9a5b 13 1d 13 ffff5c96 27 f 21 49 27 f 21 49 27 -FIXUPS: 644e8 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 9be9 f 23 -FIXUPS: 6e3aa 11 20 2e 23 1d 13 19 6 1d 31 12 2a d 27 16 9 21 16 9 21 14 -FIXUPS: 6e5f7 22 e 13 1f e 13 fffff96f 26 1e 10 d 13 16 16 1b 28 14 3d -FIXUPS: 6e144 2c d 1b 20 31 23 1e 27 23 d 18 c 9 d 1e 26 1d c 36 fffff8a0 -FIXUPS: 6dc0f 17 37 43 1f 33 23 d 27 23 1b d 13 b 30 22 35 23 1b d b 22 -FIXUPS: 6deed 18 a e 11 a e 50 d fffff90e d 1f c 6 c 6 2f d 43 d 2c 13 -FIXUPS: 6d9f9 d 15 10 11 19 46 57 23 d 27 f a 9 1e 2a 23 d 10 fffff939 -FIXUPS: 6d549 d 1a 3b 2e 16 12 1e 1f 20 d 48 b 1b 12 13 30 d 18 8 24 d -FIXUPS: 6d7a4 a 20 d 20 f 20 d 45 fffff88e 1f f 9 c 20 d 14 2d c 22 12 -FIXUPS: 6d20b 10 1d 3c d 5f 2a 6 3d 55 34 6 1d 24 63 6 21 1d 2b 27 fffff899 -FIXUPS: 6cdbc 18 c 1d 1d 2f 18 c 15 c 1b 16 d 12 20 d 14 1f 2b 18 c c 19 -FIXUPS: 6cfe1 a 64 d 3d 24 6 18 fffff919 45 23 13 a 27 16 8 b 25 d 1f 33 -FIXUPS: 6cb64 22 33 1a 26 23 1d 2f d 2a d 18 c 1d 1c 23 1d 2f d fffff937 -FIXUPS: 6c6c2 27 23 1d 2f d 2c 23 d 11 9 1e 23 32 23 d 15 9 2d 23 1b d -FIXUPS: 6c91f 2a 22 28 d 1c c c 1a fffff9df d c c 1c a 2b 16 1b f c 1e -FIXUPS: 6c4cd 3c 23 32 23 d d 9 d 28 23 1d 2f d 15 d b c c a fffff8d0 1b -FIXUPS: 6bf9b 4d c 1c 47 24 1b 27 29 43 23 1b 10 2f 61 d 26 16 19 23 32 -FIXUPS: 6c2e1 d 15 9 2d 26 1d 2f d fffff712 2f 26 32 20 d 36 d e 46 d a4 -FIXUPS: 6bcee d d 1d 13 1a 20 17 40 23 32 23 d 10 b f 1c 29 5f 2b d35c -FIXUPS: 7934e 1e 25 b9 1f 1f 5a 30 35 22 e 13 1f e 13 ffff2298 27 f 21 -FIXUPS: 6b902 27 f 21 30 e 19 2a d 70 32 23 d2fd 2c 45 1f 10 10 10 35 23 -FIXUPS: 78ece 32 35 d 27 23 13 18 22 23 32 23 d 76 22 33 23 16 b b 36 6d -FIXUPS: 7925d fffff5dc 23 16 18 23 27 58 2d 20 20 20 20 23 21 2c 23 23 -FIXUPS: 78ad4 46 2f 20 23 16 b 3a 1e 31 cb 28 e 14 31 fffff70d 29 32 23 -FIXUPS: 78514 10 b 8 22 1f b 1e 3e 1a b 1b 28 14 1c 26 1f b 21 42 b 2b -FIXUPS: 7876b 51 22 12 1f b fffff7db 31 34 41 1d d 22 20 d 1c 13 1c 13 -FIXUPS: 7818b 1e 1e 34 13 5c 1d d 3c 2b 2d 23 35 23 d 5e 27 1c b fffff734 -FIXUPS: 77ba9 20 2c 35 23 d 10 b b b 38 20 d 1f 1a b 39 1d b 25 31 5e 2d -FIXUPS: 77e83 2d 41 44 51 1d d 1e fffff655 36 23 16 14 20 d 31 25 23 16 -FIXUPS: 7776d c 11 37 d 26 115 2a 16 b 24 2e 2e b9 3c e 2b 16 15 36 20 -FIXUPS: 77196 d 1f 1d 18 22 1d 10 19 20 d 3a d 26 23 16 1a 1d 23 16 1c -FIXUPS: 773ee 2b 23 16 14 20 d 20 37 d 20 fffff87f 33 23 16 26 2b 26 23 -FIXUPS: 76eb7 b b 27 16 12 24 15 23 2b 1f 17 53 2d 23 1f 20 d 1d 34 23 -FIXUPS: 77152 10 14 fffff846 16 c 14 20 d 1d 19 1d 1c 2a 10 25 23 3a 29 -FIXUPS: 76b8a 10 1d 2d 1d 38 23 30 20 d 26 24 20 d 1b 2e fffff8fe d d 17 -FIXUPS: 766c9 23 16 c 27 23 d 18 f 13 12 f 1e 6 9 10 b 8 39 23 1f 20 d -FIXUPS: 768e0 32 25 2f 33 fffff931 1f 23 32 1f 20 d 1c 21 1d 35 23 16 c -FIXUPS: 76485 1d 10 22 b 1c 26 2d 2e 6 9 b 23 23 32 23 d 19 fffff7b2 44 -FIXUPS: 75ea2 23 d 2f d 32 25 3c d 35 2d 2e 36 d 30 1e 24 d 3b d 2d 36 -FIXUPS: 761b8 31 21 24 d 3b d 24 fffff775 1f 1c 20 d 26 20 d 1b 17 10 c -FIXUPS: 75b3d 20 2c 23 1c 2c d 2e 3a 23 1c 19 12 9 12 3b 23 3d d 66 fffff89e -FIXUPS: 756a7 16 11 25 13 23 23 1f 20 d 1b 17 f 18 28 23 1f 20 d 1d 34 -FIXUPS: 758fc 13 10 17 1c 14 2f 21 1c 27 fffff914 d 16 36 2f d 2f 20 28 -FIXUPS: 7543c 13 14 20 d d 16 d 31 d f 19 19 1d 23 20 d 2a 3c 11 33 10 -FIXUPS: 7567a fffff8c9 1d 23 26 d 29 d d 12 9 11 18 19 f 12 1d 35 1b 25 -FIXUPS: 7512c 3c 1c 20 d 1a 1f 11 33 18 33 11 63 fffff889 19 11 29 23 1b -FIXUPS: 74c2e 32 1f 10 2c 17 31 d 13 2f 18 8 1d 1a 25 1a 1a 25 45 d 1d -FIXUPS: 74ebf d 11 2f 25 fffff86b 1b 27 20 1a 19 3a 1d 3a d 16 e 26 19 -FIXUPS: 7493c 18 1d 38 23 32 27 24 23 1b d 1c 19 23 32 23 d 1f fffff8cf -FIXUPS: 74456 1a 14 17 1e 23 32 23 d 10 8 a 1b 17 16 1a 1a 14 12 1c f 1c -FIXUPS: 7466c 16 27 23 2f 1a 1a 17 33 fffff843 16 2d 23 d 10 56 a4 23 16 -FIXUPS: 7417d 12 21 3b 5e 23 1b b 27 1f 1e 22 22 2f 30 23 16 10 d 8 18 -FIXUPS: 74426 fffff6a5 d 1d 35 d f 33 23 2d d 27 d c 43 23 1b b 25 d 5b -FIXUPS: 73d51 47 d 39 23 d 58 1a 93 25 22 3f fffff7a8 d 1b 23 32 1f 1a -FIXUPS: 73818 21 23 16 14 22 1c 25 18 d 1b 23 1f 20 d 1b 35 d f 29 f 12 -FIXUPS: 73a69 23 1f fffff8d0 1d 21 23 16 11 d 10 31 25 15 1b 1a 18 d 54 -FIXUPS: 7355c 16 2e 19 d 37 31 23 d 2b 23 32 23 d 15 11 fffff780 44 20 -FIXUPS: 72f39 40 15 1b 15 1b 29 3e 23 d 38 23 d d 11 22 60 3c 3c 1d d 31 -FIXUPS: 73268 d 41 48 e 2d 23 fffff55c 14 27 17 24 27 3e 13 45 28 10 20 -FIXUPS: 72a50 80 13 b 34 32 d 95 36 9e 24 10 12 33 a3 11 15 1b 4e 20 fffff574 -FIXUPS: 7241a 1f 30 30 30 30 23 41 d 38 d 31 d 39 1e 47 18 20 6 20 2c 35 -FIXUPS: 72760 43 d 1a 1a 17 19 23 74 fffff61a 2c d 3c 41 19 32 24 1a 68 -FIXUPS: 72072 d 21 16 18 d 67 8 2b 49 37 c 2f c 1e 16 13 43 1a 5b 9e 14 -FIXUPS: 7197e 24 6a 2e 40 e 60 41 5c 32 21 1a 61 6 79 1d 13 25 42 6 6 20 -FIXUPS: 71da0 26 3d 40 e 1e 6 c 13 23 fffff66b 1e 15 33 d 15 1c d 1e 18 -FIXUPS: 71639 d 22 15 12 a 15 1b 29 3e 23 d 3b d 10 58 d 13 39 6b f 7a -FIXUPS: 71199 11 1b 2c 21 17 1e 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c -FIXUPS: 713f3 d 15 12 14 20 d f 18 30 46 fffff7f9 20 d 23 16 23 2d 20 d -FIXUPS: 70e3d 2d 20 d 53 d f 23 11 1f 17 19 30 80 30 30 30 23 13 18 1d -FIXUPS: 71151 1d fffff6a6 50 13 17 22 d 35 d 6f d 50 d 2f d 32 d 2f 32 -FIXUPS: 70ae4 d 3b d 43 d 2f 41 34 d 4a d 46 d fffff7f4 d 2f d 38 22 15 -FIXUPS: 705c2 12 f 18 10 a 20 d 2f 30 d 1a 18 6 8 10 1c 2c d 31 d 1d 6 -FIXUPS: 707bc 4b fffff7c2 23 1b b 18 18 18 1f 23 30 d 80 19 a7 d 38 23 -FIXUPS: 7028e 38 23 d 48 23 d 3e d 2f d 48 23 d 48 fffff6f6 20 d 1d 35 -FIXUPS: 6fc37 f 33 30 30 30 23 1f 1f 16 8 16 17 17 d 20 23 1a c e 3d 3f -FIXUPS: 6ff49 23 16 1b a fffff6ab 2e 23 97 23 d 10 4c 2f 2f 39 14 15 d -FIXUPS: 6f8ac 18 23 31 e e 27 d 23 37 3f 14 12 7e 34 50 40 23 fffff6d7 -FIXUPS: 6f280 d 2f 23 d 2d 2d 16 19 8 c 22 3c 19 11 28 2d 23 d e 29 34 -FIXUPS: 6f50e 5b e 2b 23 d 15 28 15 fffff6de 90 41 8 10 43 d 1c 1d d 1c -FIXUPS: 6eeba d 1c 1d d 1c 108 28 50 2d 23 d 12 c 25 d 20 15 2e 20 23 fffff5dd -FIXUPS: 6e7e8 21 30 e 16 1d 2f 2c 126 3e 2d 23 d 27 d e 1b 2b 14 15 30 -FIXUPS: 6eb92 1a 5e 1d d 2f 23 d 36 23 b3b9 d e 29 16 d 10 d b cc f e f -FIXUPS: 7a23b f f f f 46 24 33 ac d 2a 22 e 13 ffff42d8 27 f 21 49 b54f -FIXUPS: 79d0e 10 1a f 22 24 2c 23 16 22 d 60 29 4f 23 16 b b e 30 2c 1a -FIXUPS: 79fe0 24 b 13 10 21 d e 1a fffff716 5c 2f 2c 50 29 60 1b 10 22 -FIXUPS: 79988 32 38 27 10 8 18 1d 29 12 22 46 23 32 23 d 1b 70 23 4d 23 -FIXUPS: 79cde 59ff 17 1c 59 23 1b d 10 d b 1a 27 d 58 d 3e d 2629 d 27 -FIXUPS: 79602 27 f 21 49 27 f 21 30 e 30 2a 5a2c 50 36 d 1d 94 d 2a 1e -FIXUPS: 7f370 2b 26 1d d 39 3c 49 23 ab d 2d 22 d 11 22 1f 15 10 1d d 2f -FIXUPS: 7f6be ffffbb5f d 58 d 3e d 3b41 d 21 23 1b d 10 d b 2e 3d a 2b -FIXUPS: 7ef66 1c 1b a 90 10 c 1d d 68 d 44 7a ffffbc39 d 24 2e 27 c2 d -FIXUPS: 7af6b 22 d 15 1e 1f 15 10 1d d 2f e 1f 17 1c 3f 30 30 23 1b d 10 -FIXUPS: 7b1d1 b 1a fffff6a2 47 22 48 23 1b d 10 d b 2e 3d a 2b a 1c 1b -FIXUPS: 7aaa7 90 10 c 1d d 50 d 44 7a d 50 36 d 1d a9f4 e 13 1f e 13 1f -FIXUPS: 857d7 13 ffff4c88 27 f 21 30 23 1b d 10 d b 38 21 2b 21 48 13 4d -FIXUPS: 7a6e1 b6 d b5 32 ab37 c 22 27 23 d 22 17 2d 23 d 2c 23 13 18 17 -FIXUPS: 85598 27 23 d 17 23 e 18 28 22 e 13 1f e 32 13 fffff87d d 10 31 -FIXUPS: 8501e 23 d 5b 23 16 31 27 23 d 17 7 25 7 35 e 32 23 32 23 d 15 -FIXUPS: 852ce d 27 77 23 1b fffff6d6 15 2b 62 23 d 2a 23 2d d 10 31 27 -FIXUPS: 84c71 d 5b 23 2d d 10 19 31 27 23 d 7e 34 23 2d d 63 23 fffff71d -FIXUPS: 846bc d 32 23 d 18 13 13 20 23 13 18 1d 10 29 27 23 d 3b d 28 25 -FIXUPS: 84948 23 29 27 23 d 65 19 13 fffff65e d 10 1f 15 57 23 d 129 7e -FIXUPS: 84384 25 23 1b 1c 56 27 23 d d 49 d 17 1d b d 8 5b 36 d 54 13 fffff57d -FIXUPS: 83bf6 1d 20 36 23 32 23 d 2c d 2b 20 d 1a 20 d 1d 22 54 23 16 d -FIXUPS: 83eb4 57 23 d ee 23 32 23 d fffff70b d 1d 28 22 27 23 d 35 23 2d -FIXUPS: 83916 1d 28 22 27 23 d 35 23 20 28 35 23 32 23 d 2c d 3b d 1a fffff75a -FIXUPS: 8336a 1f 23 2d d 10 8 33 17 20 1b 27 23 d 1e 1f 17 6c 2f 23 d 15 -FIXUPS: 83670 20 d 1a 29 59 e 22 23 fffff703 33 27 23 2d d 27 d d 20 17 -FIXUPS: 82fde 1b 16 2e f 1f 17 38 3a 17 3a 2f 23 d 15 32 38 81 20 d 1a -FIXUPS: 829e0 32 23 d 15 42 2f 29 19 88 d 3f 1b 2a 23 d 15 11 1d 22 5b -FIXUPS: 82d49 23 1b 15 29 27 23 d d 3e d fffff695 20 23 20 d 20 13 40 d -FIXUPS: 8260c 1d 10 8 36 22 23 39 d 94 23 d 14 1f 23 56 23 d 2f 58 23 5d -FIXUPS: 829b7 fffff691 21 49 27 f 21 49 27 f 21 49 27 f 21 30 e 29 49 2f -FIXUPS: 82366 d 3f 17 23 32 20 d 13 1a 41 23 20 6b63 43 d 11 c 16 18 2f -FIXUPS: 89136 34 d 22 10 8 c 1f 20 1b 5 5 18 e 13 1f e 13 ffff8cd8 27 f -FIXUPS: 81fc9 49 27 6bb0 23 16 67 23 3e 1e 11 1d 20 2a 19 16 11 2c d 17 -FIXUPS: 88e35 28 2d 2f 30 23 31 2c 10 41 23 d 2a d 31 fffff754 28 25 6 -FIXUPS: 88802 f 28 23 32 23 d 34 d 16 d 21 d 2c 26 11 f 27 23 16 2f d 71 -FIXUPS: 88b19 6 9 f 4d fffff8a4 2d 1e d 11 33 d 28 23 14 9 32 d 1e 6 20 -FIXUPS: 885c9 2c 22 15 6 33 d 27 23 32 23 d 34 d 16 24 fffff8e5 6 20 d -FIXUPS: 880e1 26 11 33 d 31 23 18 2f d 1e 6 20 d 30 22 15 33 d 31 23 16 -FIXUPS: 8839a d 1e 6 20 d fffff723 48 23 19 20 1d d 22 2e 2b 65 23 3d 1b -FIXUPS: 87d55 2d 47 23 32 55 46 23 36 3b 18 44 1b 25 23 18 2f d fffff615 -FIXUPS: 87688 d 14 23 32 23 d d 6a 24 23 32 23 d d 6c 32 23 16 b 8 2a 46 -FIXUPS: 879d9 23 44 27 22 23 3a d fffff671 3a 21 6a 31 23 d 18 13 a d 1c -FIXUPS: 87310 19 e 26 32 23 d 79 31 e 26 32 23 d 7b 2f e 26 46 26 fffff53a -FIXUPS: 86baa 22 9 e 13 23 23 14 9 17 20 d 1d 9 c 2a 29 5c b2 e 24 34 66 -FIXUPS: 86fc5 2d 42 30 31 21 d 26 fffff56d d 2f 1b 3c 23 1f 20 d 3c 25 -FIXUPS: 867dc 1f 20 d 3c 25 29 32 23 d 3c d 58 a9 37 48 2c 23 16 14 20 -FIXUPS: 86319 23 16 2e 19 30 23 d e 2f 19 12 10 c 1c d 15 2a 23 d f f 26 -FIXUPS: 8656c b 2f 23 d 10 a 15 2d fffff887 2d 16 19 8 c 22 39 19 11 2b -FIXUPS: 86006 23 d f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 25 23 30 d fffff7ed -FIXUPS: 85a90 10 b 8 16 2d 20 d 24 d e 1b 33 1d 31 77 20 d 47 2d 20 d e -FIXUPS: 85d73 d 21 1d 31 77 20 d 44f8 12 12 1f 1a 1d 46 1f 1d ffffb385 -FIXUPS: 85842 27 f 21 49 27 f 21 30 e b b 33 20 d 14 16 d a 2b 19 a 45b0 -FIXUPS: 8a049 20 d 1a 15 1f 20 d 1a 1f 15 12 21 14 e b 46 32 23 d 19 b -FIXUPS: 8a299 29 35 23 d 10 15 12 20 fffff8f9 10 d 26 28 d 3a c a6 2e 29 -FIXUPS: 89e64 23 d 10 b 2e d 1a b 19 b 15 20 d 17 b c 1f a 15 27 fffff6ca -FIXUPS: 8970e 1b 23 40 9d 23 1b b 28 d 11 94 1d 23 16 35 7e 24 23 1b 10 -FIXUPS: 89ad4 26 35 8 12 3e d 7c 29 23 4000 5 18 e 13 1f e 13 1f e 22 13 -FIXUPS: 892b9 80 23 1d 5e d 69 6 51 6 98 37 23 16 29 6d 20 b 26 23 4151 -FIXUPS: 8d827 10 15 20 1d d 91 52 f d 24 23 57 36 10 4b 1e e d 41 d 2c -FIXUPS: 8db84 25 10 8 1e 18 25 20 1b fffff671 d 3c d9 12 23 18 17 1d d -FIXUPS: 8d48e 1a d4 d 23 13 20 37 a 1d d 10 1d d 2f 23 d 25 3f 23 d 65 -FIXUPS: 8cce6 4b 66 22 29 19 10 b a b 27 37 59 29 51 41 32 10 15 32 20 -FIXUPS: 8d0cb 2e 29 19 b b 39 d 21 dc 17 fffff62e d 23 1c 34 1d d d 20 -FIXUPS: 8c9d9 e 27 1d 82 2d 2f 18 28 e b 26 52 2f 12 9 9 1c 2c 13 10 8 -FIXUPS: 8ccb9 fffff726 3f d 4b d 2a d 2c d 48 d 21 23 16 e b9 23 16 1d -FIXUPS: 8c6cc 10 d 46 11 34 3a 2f 1c 26 32 16 e fffff7aa 28 39 d 13 24 -FIXUPS: 8c0d1 17 b 28 1d d 4c 11 d a 1f 23 2e 16 32 23 d 4b d 13 20 d 2b -FIXUPS: 8c39c 16 20 fffff87c 2b 2c 32 23 d 10 12 b a 43 1a 1d d 12 1d d -FIXUPS: 8be33 23 d 10 28 18 43 27 15 27 2c 32 16 15 10 fffff881 d 10 59 -FIXUPS: 8b90f 35 23 d 10 1a c 5f 26 35 23 d 19 1c 23 4d 2c 35 23 d 10 b -FIXUPS: 8bbf7 f d d 12 11 fffff761 15 20 23 32 23 d 10 e 64 d 12 1a 23 -FIXUPS: 8b56e 23 d 14 27 2c 16 34 14 1e 1f 29 d 1d 8 11e 26 14 fffff606 -FIXUPS: 8ae7c 2d 2c 16 18 14 67 e 29 f4 26 32 16 12 57 d 11 38 32 1d 44 -FIXUPS: 8b295 3d d 10 10 2a d 10 2f 17 fffff634 1a 1b 11 39 2f 25 b 1c -FIXUPS: 8aacd 49 53 2c 16 b b 16 17 c 6c 15 23 13 22 46 29 6d 39 23 d 15 -FIXUPS: 8ae3e fffff6da 21 49 27 f 21 30 1b 20 25 e b 11 26 29 16 e b 77 -FIXUPS: 8a79b 1c b 23 34 29 32 23 d 1a e 8e 59 55f4 10 12 24 d 18 4b 21 -FIXUPS: 9009f 58 5 3d e 13 1f e 3b 10 10 19 19 13 13 13 16 16 16 e e ffffa201 -FIXUPS: 8a4e2 27 55b7 28 1a 7f 1f 1f 52 d8 2d 23 d 10 27 23 d d 23 d 27 -FIXUPS: 8fe1e 27 d d 21 d 23 19 17 68 29 22 b fffff4e2 50 2f 55 13 11 9 -FIXUPS: 8f590 1c 49 3f 16 2a 1d d 15 d 9 d 3b 27 26 2c cd 5c 35 83 2c 64 -FIXUPS: 8fa67 14 1c fffff682 10 8 c 1c 2a 23 d 2c 23 d 10 b a 21 1c e 27 -FIXUPS: 8f2c5 44 2d 23 d 10 b b b b 8 38 1c 1f fffff8de 29 10 24 d 1f 35 -FIXUPS: 8eddc 13 3a 23 13 16 17 13 f3 d 2a e a c 8 24 d 6 24 d 14 29 1e -FIXUPS: 8f0e4 d fffff73f f 19 17 1d 3f 6d 38 6 2d 15 22 2b 9 6 8 10 10 -FIXUPS: 8ea56 33 8d 4f d 4d 4a 23 17 26 23 32 23 d fffff66e 23 17 13 2f -FIXUPS: 8e427 b0 78 21 a f d 14 20 d 19 8 3f 52 2d 23 d d 26 23 43 a 15 -FIXUPS: 8e7c9 2a 23 d fffff659 10 d a b e 15 98 16 10 d a b 8 54 d 36 6 -FIXUPS: 8e066 17 31 55 10 1b4 39 1c 8 c 10 6 6 a 5434 13 16 16 16 e e 1e -FIXUPS: 93827 13 1f e 32 13 1d e 13 1f e 13 1f e 13 ffffa408 27 f 21 30 -FIXUPS: 8de25 17 d 20 5470 23 33 2e 42 4a 23 2c 2e 63 23 2c 2e 63 23 2d -FIXUPS: 93606 1a 9 1e 19 9 1e 11 4f 5 26 10 10 19 19 13 fffff405 3f 6e -FIXUPS: 92c4c 32 23 d fb 23 2c 2e 30 53 23 33 2e 3a 52 23 2c 2e 2c 57 23 -FIXUPS: 9310f 2e 4c 50 23 2c 2e 2c fffff4d7 e 32 2c 13 18 29 5b d 18 10 -FIXUPS: 928e1 23 d 10 10 28 10 8 23 1f 1c 12 38 23 14 37 32 23 2d 23 2d -FIXUPS: 92309 23 25 1c 22 2a 23 25 1c c 20 23 25 1c 22 2a 23 25 1c c 40 -FIXUPS: 925cc 25 1c 22 3a 23 16 29 8 a 13 fffff66d 6c 23 3d 23 cd 23 51 -FIXUPS: 91f9a 6f 23 32 23 d a 5f 19 29 23 25 1c c 20 23 25 1c 22 2a 23 -FIXUPS: 922c1 1c c fffff5c4 2c 2c 32 1c 60 16 10 2d 23 d 23 10 8 18 1f -FIXUPS: 91ac4 12 23 23 14 46 33 23 16 b 12 29 34 45 19 84 fffff66f 3c 23 -FIXUPS: 91431 1c 3c 23 25 1c 3c 23 25 1c 3c 23 25 1c 4c 23 25 1c 4c 23 -FIXUPS: 91771 1c 2c 23 25 1c 2c 23 25 fffff65b 51 d 1f 1c 34 23 25 1c 3c -FIXUPS: 9107c 2c 1c 15 30 23 32 23 d 17 d 57 23 25 1c 3c 23 25 1c 3c 23 -FIXUPS: 91391 fffff57f 27 2c 36 23 16 b 1a 1c 5f 1a 2d 23 32 23 d 24 42 -FIXUPS: 90bca 9f 23 1d 30 23 1f 5e 23 3d 23 7c 1c 35 fffff5f9 27 f 21 30 -FIXUPS: 90569 20 e 32 2c 32 1c 60 16 10 2d 20 d 26 10 8 18 1f 1c 12 23 -FIXUPS: 907fa 15 28 50 52 23 5a3e 1f e 13 1f e 32 39 10 10 19 19 13 13 -FIXUPS: 9649d 16 16 16 e e ffff9de7 27 f 21 49 27 f 21 49 27 f 21 58af -FIXUPS: 95d41 e6 32 23 10 1d 23 b5 38 23 5e 2f 23 2d 23 7d 23 7b 5 1d e -FIXUPS: 96259 e 13 1f e 13 1f e 32 e fffff46c 1f 1a 1d 23 3d 23 2e 22 4b -FIXUPS: 95925 34 e 42 2c 58 1c 10 22 d 21 14 15 7f 28 8 54 54 23 13 45 -FIXUPS: 95ce7 fffff554 47 27 11 1f 11 1f 23 32 23 d 3b 23 3c 1c 1c 4e 37 -FIXUPS: 95507 1f 33 1b d3 62 11 1f 11 2f 23 16 1a 22 fffff5fc e 37 19 16 -FIXUPS: 94e5f 3a 20 39 3d 27 23 e b b 2c 26 3e 8 14 10 22 d 21 14 15 7b -FIXUPS: 95179 23 13 64 d fffff66f 10 1c 19 15 2d 8a 49 2a 23 d 27 d 1d -FIXUPS: 94aa9 31 78 27 10 2d 23 d 27 d 1f 10 8 38 e a2 11 2f fffff74b 16 -FIXUPS: 944f9 11 1f 11 2c 23 d 12 10 21 10 17 29 e 29 29 2f 74 1d 2a 23 -FIXUPS: 947a3 2c 23 d 10 b 48 7 1f fffff968 7 21 2b 2e 8 37 17 13 16 c -FIXUPS: 94307 9 18 11 13 10 11 b 19 f 1c 19 37 1a b 8 16 13 b 27 23 fffff681 -FIXUPS: 93b59 30 e b 14 1c3 1a 10 2c 19 16 53 4e 3a 20 44 42 18 b 11 c -FIXUPS: 93fde 6b 20 16 2f 5b 80 2a 23 d 2829 20 1b 5 5 5 23 e 13 28 10 -FIXUPS: 96ae2 19 19 13 13 13 16 16 16 e e ffffce17 27 f 21 49 27 f 21 49 -FIXUPS: 93b29 2abe b 61 26 2c 16 a b 10 8 21 28 d 18 33 2b d 15 23 23 24 -FIXUPS: 96878 1c 45 23 16 2c f c 23 10 57 602a 1a 5 1d e 13 1f e 13 1f -FIXUPS: 9cad7 13 1f e 13 1f e 13 1f e 13 1f 13 1d e 13 ffff9902 36 27 f -FIXUPS: 965a9 30 5f00 30 30 23 16 43 24 30 23 d d 23 23 a1 95 2a 49 1c -FIXUPS: 9c87b 35 e b 25 d 13 34 13 24 11 21 1e 24 fffff797 10 25 23 16 -FIXUPS: 9c22b 1d f 8 b 2f 23 16 18 15 20 d 10 f f c 15 1e 23 18 f 2b d -FIXUPS: 9c44b d 10 5f fffff8d4 3f d 10 20 d 3d 10 8 20 14 1d 28 47 23 14 -FIXUPS: 9bf97 a2 10 b 25 d 2a d 32 23 d 10 1a 10 8 b fffff834 d 10 43 23 -FIXUPS: 9ba30 1e 1e 1d 30 23 d d 23 23 4a 22 8 b 1e 11 10 1e 68 2c b b -FIXUPS: 9bcd2 27 16 b 2f fffff758 22 75 d 4c 1c 46 66 4c 3c 48 23 16 32 -FIXUPS: 9b7a5 24 42 23 d 16 10 28 23 2a d 10 b 27 d 14 17 12 fffff690 17 -FIXUPS: 9b01e b 30 23 16 18 34 d 10 f f 22 1e 30 12 4e 80 23 18 f 2b d -FIXUPS: 9b31b d 1e 3c 7e 41 12 36 fffff800 10 22 d 10 25 d 2a d 32 23 d -FIXUPS: 9adb3 28 d 18 b 1e 10 8 b b 29 e 9 1d 10 25 23 1d 98 31 fffff557 -FIXUPS: 9a55f e e 1e 19 f 18 23 38 25 23 2d 40 23 4d 16 b 2f 79 20 d 66 -FIXUPS: 9a8bd 1c 14 1d 28 47 21f 30 90 fffff4dc 55 28 d 11 2e 15 27 2b -FIXUPS: 9a271 36 23 18 19 18 16 18 62 18 5e 2b d 15 2c 10 10 19 19 13 13 -FIXUPS: 9a51d 16 fffff7c0 d 2e 42 19 1e c b b 12 b 23 30 23 d d 23 23 53 -FIXUPS: 99f3e 15 56 56 c b 36 15 13 55 e 26 2a fffff692 18 12 8 17 14 20 -FIXUPS: 99844 11 6e 6 14 1a0 8 64 30 23 d 32 1b 23 2d 16 25 d 20 15 26 -FIXUPS: 99c96 d 1f 14 fffff627 6a 18 2a 1f 6 1a 35 31 4c e 31 38 12 e c -FIXUPS: 9954b 6 28 30 23 d 10 11 11 19 30 f 14 19 bd 34 fffff74b 32 23 -FIXUPS: 98f2e 2c 2b 1a b 29 1e 13 43 1c 47 b 26 14 1b 22 b 22 30 23 4d -FIXUPS: 99206 1e 1a c 2f 3c d 1f fffff820 32 16 20 10 8 b 18 1d 1d 10 1b -FIXUPS: 98c2c 16 12 55 b 25 23 60 25 28 23 16 24 9 a 6 1d 1d 23 2d fffff729 -FIXUPS: 98609 4d d 6f 20 d 9c 8 16 14 15 28 50 2f 23 14 27 e 21 a3 10 b -FIXUPS: 989f9 d 2a d 32 23 d 32 23 fffff6d5 23 32 23 d 3b 23 16 32 22 40 -FIXUPS: 98363 36 b 25 23 16 1a 22 5 1f 1a 1d 23 3d 23 16 18 22 2f 1e e -FIXUPS: 97d82 27 3a 3d 8 21 10 2d 23 d 23 10 8 18 20 2a 23 d 16 15 7f 2c -FIXUPS: 98086 23 d 22 13 46 38 11 1f 11 fffff7f7 28 30 23 d d 9 2b 15 16 -FIXUPS: 97ac5 15 27 3a 1a 19 16 d 62 1d 5e 2b 23 16 d 6 12 22 23 16 17 -FIXUPS: 97d77 fffff862 10 2d 23 d 23 10 8 18 20 2a 23 d 2c 23 d 10 b a -FIXUPS: 977b5 1b 27 1f 17 3c 2a 23 d e 25 15 25 fffff826 20 d 26 10 8 18 -FIXUPS: 971f9 11 15 7b 2f 23 13 14 84 32 23 17 26 23 1a 23 23 1a 23 23 -FIXUPS: 97522 17 e 32 49 fffff677 49 27 f 21 49 27 f 21 49 27 f 21 49 27 -FIXUPS: 96e98 21 49 27 f 21 49 27 f 21 30 e 32 2c 45 3f 10 7455 23 d 18 -FIXUPS: 9e5e9 23 17 24 5 1d e 13 1f e 13 1f 39 10 10 19 19 13 13 13 16 -FIXUPS: 9e7d9 16 e e ffff83d7 27 f 7414 2b 10 10 4d d 1e 10 17 1c 11 2c -FIXUPS: 9e197 52 38 16 1e 2f d 14 9 b c 66 8e 1c 44 70 e 68 2a 23 fffff51f -FIXUPS: 9da87 1f 1a 1d 20 1f 1b 53 24 13 45 1e 30 29 1e 42 35 e3 1f 32 -FIXUPS: 9de5f 58 e 2d b 62 32 1f 42 d 1b fffff70a 27 1e 10 8 18 20 e 32 -FIXUPS: 9d814 d 18 10 c 24 10 8 c 1c 2a 23 d 16 15 28 19 50 2a 2d 23 d -FIXUPS: 9da63 fffff413 13 23 32 36 68 15 67 31 23 16 b 4c 152 1e 51 1e -FIXUPS: 9d2fb 1dd 91 23 16 77 10 3f 23 d 14 21 d 14 29 2f20 13 38 10 10 -FIXUPS: a06bb 19 13 13 13 16 16 16 e e 1e 1c 14 ffffc499 27 f 21 49 27 -FIXUPS: 9cd28 21 30 e 26 3c 2c 27 34a0 13 8 11 2f f 30 9 3f 21 58 22 23 -FIXUPS: a0492 1a 1d 10 22 d 32 23 d 1d 5 5 18 e 13 1f e 13 1f fffff811 -FIXUPS: 9fe56 23 23 1d b 1d 1c 1c 23 3b 28 5a 23 16 30 1a 3d 23 16 27 40 -FIXUPS: a017c 39 17 2d 23 32 23 d 10 2b fffff62e 32 2c 40 49 1b 33 23 d -FIXUPS: 9fa78 23 d 1c f e 15 1e 1e 8c 2a 2f 34 41 24 2d 17 24 71 23 2d -FIXUPS: 9fdfc 16 fffff694 13 6d 53 23 32 23 d 10 8 19 29 21 23 16 1a 1d -FIXUPS: 9f6f9 2d 23 d 23 2d 23 d 16 14 19 80 12 b b fffff661 28 9f 2d 23 -FIXUPS: 9f046 16 14 19 80 23 2d 23 2d 23 1d 30 23 2d 23 16 54 1b 28 23 -FIXUPS: 9f372 27 40 23 4d 23 16 fffff6a7 12 26 28 12 b 26 10 1d 2c 24 19 -FIXUPS: 9ec7b 19 5 d 33 29 35 20 d 2c 20 d 10 1b f 10 3f 30 3b 3f 63ca -FIXUPS: a52d9 49 17 e 13 1f e 13 1f e 13 ffff9468 27 f 21 49 27 f 21 49 -FIXUPS: 9e9a9 f 21 73 20 d 2c 20 d 20 16 6305 2c 23 16 27 23 d 2a 30 26 -FIXUPS: a4f6c 1b 42 23 27 15 1f 3f 13 20 23 16 2f 31 77 23 2d 23 3b 5 1d -FIXUPS: a52a7 fffff77a 18 1d 23 e 30 32 2c 45 1f 10 2d 33 10 8 18 20 23 -FIXUPS: a4c8e 23 d d 1f 1b 1c 28 23 32 23 d 15 10 fffff7db 3b 2a 23 d d -FIXUPS: a4699 21 15 2e 1c 15 28 15 6a 1f b 6 20 24 e 32 2c 72 12 10 2d -FIXUPS: a4999 d 32 31 10 fffff760 30 2a 23 d 10 b b a 12 ef 35 e 2b 16 -FIXUPS: a43e1 24 21 1a 1e 1b 33 12 3b 23 d 2c 23 d 10 a 29 fffff731 29 -FIXUPS: a3d38 1d 3f b 2a 23 1d 30 23 16 27 4b 15 13 d 11 1f 23 16 b 37 -FIXUPS: a3fda 12 1d e 32 50 20 50 20 fffff6ef 19 54 1f 45 29 16 4e d 12 -FIXUPS: a39c2 d 12 58 40 d 1f 1e d 1a 3e 19 1c 37 65 29 16 1d 3b 1c 19 -FIXUPS: a3cde fffff827 15 19 19 10 14 19 29 16 1d 19 1d e c 24 2a 23 d -FIXUPS: a36df 23 d 10 b a 21 19 14 15 2a 26 b 10 fffff937 23 13 b 11 6e -FIXUPS: a3219 23 1f 13 d 1e 29 16 1d 3f 1d 1e b 1d 19 19 10 14 1c 29 16 -FIXUPS: a3453 1d 3f 1d 1c fffff88a 18 c a 19 23 30 6d 23 26 18 11 12 13 -FIXUPS: a2f35 d 10 14 23 23 43 13 12 17 20 d 21 23 17 21 12 2e fffff8d5 -FIXUPS: a2a1f 17 19 14 1d d 2c 36 13 12 19 1c 23 4b d 13 32 20 14 b b d -FIXUPS: a2c70 19 c 12 15 16 17 23 30 fffff92a 10 c 1f b 11 d 14 1c d 16 -FIXUPS: a2731 f 1c 14 d d 14 d d d b 11 d b 11 11 d b b 15 f fffffa6b 17 -FIXUPS: a2318 33 d 9 11 c 12 f c d 13 11 11 11 11 d d d 2e 2e 2e 2e 2e -FIXUPS: a2567 c 30 26 30 41 13 fffffa9d e d e d c d c d c 13 d 1e 16 d -FIXUPS: a21d2 d 12 d 11 d 11 d 11 d 11 e 9 19 13 9 d fffff9f3 10 33 a 6 -FIXUPS: a1d3f 44 49 29 4d 29 2f 8f 23 38 9 5c 16 e d c d d 19 d d 19 d -FIXUPS: a20a6 13 12 12 fffff7bc 29 1b b a b 10 12 36 12 30 d 6 5f 29 32 -FIXUPS: a1a87 d 10 1d 2c 22 1c 15 64 25 23 2d 23 2d 23 16 fffff5d4 20 20 -FIXUPS: a12c3 d5 41 23 16 b 1a 1f 59 d 25 76 e 20 20 d 21 33 d 3e 41 55 -FIXUPS: a16fc 12 10 10 16 6 d9 fffff60c d 32 38 38 38 38 4b 10 8 18 1d -FIXUPS: a1003 1d 29 23 6d 23 32 23 d 15 b a 25 2a 28 2b d 23 9 a fffff635 -FIXUPS: a08c9 f 21 49 27 f 21 33 1d e 30 32 9b 35 17 67 12 23 57 2c 17 -FIXUPS: a0d29 10 2c d 27 d 13 1e d 1b bbaa e 13 1f e 13 1f e 13 1f 11 1f -FIXUPS: acaa7 13 1f e 13 1f e 13 1f 13 1d 13 1d 13 1d 13 ffff3c06 27 f -FIXUPS: a0859 bdbe 10 8 1a 2a 23 d 37 2a 23 d 15 10 14 18 2e b2 14 20 e -FIXUPS: ac8b2 f 16 5 1d e 13 1f 13 1d e 13 fffff8a1 13 10 38 12 10 25 1f -FIXUPS: ac35a 20 3f 12 2e 2a 23 d 1b 1e a 23 19 37 23 13 8 20 12 c 2f 25 -FIXUPS: ac5fc 13 fffff85d 5d 12 8 2a 23 d 2c 12 26 28 32 d 2c 23 d 28 29 -FIXUPS: ac0cd 2e a 1b 19 20 23 13 c 12 1c 23 13 8 fffff895 23 d d 2a 23 -FIXUPS: abb33 1e 41 37 2e 20 22 23 10 8 30 23 d 1f 11 f 12 20 1c 28 26 -FIXUPS: abddf d d b 45 fffff8b9 11 19 91 23 d 2c 12 33 2b 30 1b 7 d 21 -FIXUPS: ab917 22 18 7 20 d 1f 25 12 5 14 13 28 5 14 13 17 fffff90f d 3a -FIXUPS: ab3d5 27 d 11 2a d 11 2a d 26 d 2d 47 d 11 2e d 2c d 27 e 18 2a -FIXUPS: ab673 23 d 17 20 d fffff827 2e 23 3a e c 34 23 d 1d 2d d 22 20 -FIXUPS: ab0bd 2b 83 d 11 53 d 44 d 31 d 2c 23 d 2d d 3f d fffff82f 8 13 -FIXUPS: aabb0 18 1a 1b 1b 3e d 1d 11 1d d 1d 11 30 26 32 23 d 15 29 25 -FIXUPS: aae11 16 18 20 2a 23 32 23 fffff81b b 11 28 46 1c 3a d 54 23 d -FIXUPS: aa8a0 c 16 22 25 12 5e 6 33 6 31 23 31 44 38 23 32 23 d d 29 fffff7e0 -FIXUPS: aa377 22 23 13 8 8 1d 8 b 3d 28 d 19 c 34 3d 19 18 25 d 26 c 2e -FIXUPS: aa626 d 54 23 d 26 15 15 fffff797 23 d d 5e 46 d 2c 1c 50 d 54 -FIXUPS: aa092 1f 47 d 1a 31 29 23 17 22 37 d 34 d 4f 12 40 d 2a d fffff65a -FIXUPS: a99b7 45 d 3b d 11 2a d 48 d 1f 47 d 1a 2b 75 20 2e 25 1b 2c 34 -FIXUPS: a9d59 30 30 15 1b 34 c 20 23 fffff66f 30 23 d 42 2c 26 4e d 55 -FIXUPS: a9699 71 23 d 10 20 d 32 23 1a 23 26 1b 8 b 2d 2a d 1b 76 f 2b -FIXUPS: a8f75 4d 66 32 78 23 d 37 12 30 23 d 2e 26 13 26 13 12 43 12 27 -FIXUPS: a92fc 18 b 4a 60 17 1d 74 23 d 28 fffff7e0 17 34 23 d 2e 10 10 -FIXUPS: a8d8b 19 13 13 13 16 16 16 e e 1e 13 8 18 1d 2a 23 d 10 8 b d b -FIXUPS: a8f4f fffff54c af d d2 26 16 4a 53 1a 9d 30 20 30 3c 24 40 60 23 -FIXUPS: a8999 20 40 120 30 e 24 31 a 34 1f 22 1e 30 fffff2e9 23 d 27 12 -FIXUPS: a7ffb 23 d 55 29 3c 23 d 14 15 3d 1e 26 3a 13 1d 26 3e 2f 20 17 -FIXUPS: a8307 55 2d 60 23 75 fffff51e 29 27 23 d 22 10 15 6 b 29 27 23 -FIXUPS: a7af7 31 d 18 1c 26 13 18 2a 10 29 12 2a e 32 60 1a0 17 1d fffff65c -FIXUPS: a754f 1b 21 1e e 18 1d d 36 14 21 d 16 5f 33 23 2d 23 2d 25 2b -FIXUPS: a782c 32 23 d 2b 23 16 37 17 2d fffff640 b 12 1b 57 1e 25 15 25 -FIXUPS: a70df 43 47 26 23 29 4e 26 38 30 1d 43 18 19 59 26 32 27 59 23 -FIXUPS: a74b7 1d d fffff6e0 15 33 26 14 26 26 26 1a 15 6 2f 26 18 22 26 -FIXUPS: a6dbf 1a 26 18 22 29 32 23 d 10 12 15 34 41 e 1b fffff7a0 26 32 -FIXUPS: a67b4 d 1b 54 29 23 16 22 31 3d 27 26 1b 3d 32 16 22 d 25 26 23 -FIXUPS: a6ac7 18 23 27 23 d 30 23 fffff5f4 36 1c 27 23 4d 1e 20 d 1a 29 -FIXUPS: a633e 23 d d 4e 23 38 35 23 4d 30 14 26 d 1a 65 a2 3b 2d 30 19 -FIXUPS: a5c19 30 80 24 d 6f 29 19 8 76 2f 41 d 2a d 1d 20 d 14 20 d d 8 -FIXUPS: a5f8c 8a d 3f 17 70 e 29 12 fffff5b7 49 27 f 21 49 27 f 21 49 27 -FIXUPS: a58a8 21 49 27 f 41 30 10 70 20 d 52 20 d 4d 27 26 2b 1d d 38 81a6 -FIXUPS: addc2 10 19 19 13 13 13 16 16 16 e e ffff7577 27 f 21 49 27 f 21 -FIXUPS: a5552 27 f 21 49 27 f 21 49 27 f 82af 36 d 14 17 74 23 36 27 23 -FIXUPS: adb3a d 62 10 2d 5f d 27 10 8 18 23 20 1b 5 5 5 23 13 1d e 13 fffff3e2 -FIXUPS: ad209 23 23 14 26 5a d 99 61 20 8f 23 3e d d0 25 5d 23 18 b b 33 -FIXUPS: ad6ea 6d 46 8c 23 5f d 81 23 fffff34d f 21 33 1d e 2e 34 23 32 -FIXUPS: ace0b 3e 23 13 8 18 13 37 23 32 5c d 58 d 1c 12 5d 43 3f 23 16 -FIXUPS: ad15a a97f 12 2d 1e 13 32 d 21 26 13 18 1d 5 1d e 13 1f e 13 1f -FIXUPS: b7cc7 32 e 32 e 13 1f e 13 1f 13 ffff4eb6 a83c 5a 23 d d f 10 16 -FIXUPS: b75aa d 20 1e 2e 86 29 117 23 3d 23 32 23 d a7 23 d 32 23 d 10 -FIXUPS: b7a3c 1a 38 fffff690 d 2c 23 d 10 b b 1c 2a 23 d d d 8 d 10 d 8 -FIXUPS: b7283 11 15 4e 2a 34 50 34 49 17 23 32 23 fffff92d 17 14 28 38 -FIXUPS: b6e7d c 25 d 2c 23 d 10 b 1a 2d 23 13 c 27 23 d 10 b b 11 17 14 -FIXUPS: b70a4 35 14 c fffff8af 48 11 35 14 23 20 d 41 5e 26 18 8 c 1b 9 -FIXUPS: b6bc3 21 d 61 33 11 3c 47 23 13 c 27 23 d 10 b fffff899 b b 1d -FIXUPS: b66a2 19 1e 32 21 d 1b c 23 d 22 20 c 12 27 26 6 26 26 18 8 c 8 -FIXUPS: b68d2 b 54 1c 32 fffff95f d c 8 c 8 10 8 10 28 9 1f 49 1e 19 1b -FIXUPS: b642f 25 ae 25 18 1b 11 1e 22 21 19 e 26 23 13 c fffff7b3 24 d -FIXUPS: b5e53 6b 4f d 31 d 97 2f 51 23 9 e 28 c 17 19 19 18 1a 11 11 23 -FIXUPS: b61c0 14 33 52 23 32 23 fffff897 c 8 f 4e 23 32 23 d d d 8 10 8 -FIXUPS: b5ca4 8 f b b 31 27 26 32 23 d d c 8 10 8 c 8 fffff8b3 2d 20 88 -FIXUPS: b57f9 2e 62 26 32 23 d d d 8 10 8 c 8 f 8 81 31 2e 53 23 32 23 -FIXUPS: b5b2e d d 8 10 fffff626 b b 8 7d 35 29 1f 13 1c 82 d a8 d 12 49 -FIXUPS: b5495 2b 24 d 2f d 27 2e 77 26 32 23 d d c 8 fffff777 26 1b d 8 -FIXUPS: b4e7b 8 f 8 7d 31 2e 53 23 1b d 8 c 8 f b b 2c 28 26 1b d 27 32 -FIXUPS: b5163 c 8 fffff60f 22 18 22 b7 26 13 c 8 10 b b b b 1d 8c 33 18 -FIXUPS: b4a44 2d 3c 5c 64 d 44 5b 80 6c 23 d 29 29 fffff54d 18 d 19 27 -FIXUPS: b4354 b b b a8 6 72 72 75 2d 23 13 c b b b 1d 22 2c 42 19 16 24 -FIXUPS: b471c 1f 12 12 fffff741 20 d 1e 14 19 14 9d 11 2f 26 13 d 8 f 59 -FIXUPS: b40f2 18 2e 2a 3c 4b 11 b 8 e 8 13 4a 13 18 16 fffff79b 27 2b 30 -FIXUPS: b3aff c 28 21 c 7b 5e 23 13 c b b b 1d 20 48 40 19 16 24 10 1f -FIXUPS: b3df9 15 32 17 1c 19 fffff7d3 29 c 19 14 37 30 50 1f 2c d 2d 21 -FIXUPS: b383b d 1a 10 27 18 b b b b 39 19 34 1b 65 1e 15 18 23 fffff801 -FIXUPS: b3297 1a 58 16 b a 3e 27 e c 8 10 4b d 4b 1f 29 21 1d d 22 3c 21 -FIXUPS: b359d d 1c 1e d 2d c 27 fffff7db 53 1a 24 d 44 d 21 15 1a 3a 64 -FIXUPS: b3022 14 23 19 14 23 11 b 9 a b 3d 45 1a 5a 11 b 9 a b fffff7a0 -FIXUPS: b29c4 1f 21 15 13 32 16 4f 26 40 16 d b 1d 33 1a 54 25 1e 9 2f -FIXUPS: b2c9c 29 d 1b 65 37 24 d 44 d fffff804 c 8 f 10 58 1b 11 13 22 -FIXUPS: b2732 16 30 24 13 65 20 11 24 13 29 d 24 f 15 16 24 15 13 1a b -FIXUPS: b2998 fffff890 c 18 34 71 2d c 54 26 d 17 13 1f c 1d 26 f 21 30 -FIXUPS: b24bd c 25 16 2d 17 13 23 c 10 18 27 23 fffff7d1 36 8 1a 1f 2d -FIXUPS: b1e8a 1a 1c 1d d 19 5a 66 50 5a 1d d 13 18 33 8 20 31 8 23 26 18 -FIXUPS: b21d9 23 16 b fffff6c4 d 2e 2d 23 1e 1f 2c 35 16 35 d 1a 2a 12 -FIXUPS: b1b09 1e 5d 15 a3 2d 15 1b 2c 32 23 d 10 8 8 4f 14 fffff7d8 10 -FIXUPS: b15a2 19 19 13 13 13 16 16 16 e e 1e 29 16 15 3b d 29 19 6 1b 20 -FIXUPS: b17b5 16 18 15 26 4b 23 32 fffff83f 24 27 1c 22 17 2d 42 1d 38 -FIXUPS: b12a5 1c 17 30 18 2a 6 1d 6 1b 1c 19 30 1b 1c 63 1a 19 11 33 33 -FIXUPS: b1554 fffff6f8 32 20 49 9f 26 18 30 45 2d 33 30 23 d d 14 17 1c -FIXUPS: b0f5d 12 1b 17 25 21 18 18 20 d 14 35 19 19 fffff6bc 1e 16 e e -FIXUPS: b07f9 c7 19 30 12 33 23 d 38 21 12 6 1f 2c 24 d 3e 26 13 1e 23 -FIXUPS: b0b49 2d 1f 19 2a 51 fffff819 23 d 10 b 1a 22 23 13 c 27 23 d 10 -FIXUPS: b057d b 21 23 32 23 d 1d 1e 20 23 32 23 d d 1b 1b 22 fffff89f f -FIXUPS: b0055 4e 42 74 26 32 23 d d d 8 10 8 c 8 f 1f 49 53 2d 23 d d d -FIXUPS: b0378 10 51 23 13 c fffff7b0 59 25 23 28 23 d 12 20 d 14 62 23 -FIXUPS: afdb7 40 42 26 1b d 8 c 8 f 1b 49 53 26 32 23 d d c fffff72f 23 -FIXUPS: af776 37 22 3c 6e d 23 23 13 d 2f 35 33 3c 1e 1c 23 13 d 8 48 36 -FIXUPS: afaf6 33 23 13 d 8 10 10 fffff665 f6 3a 23 13 d 17 56 23 13 d 8 -FIXUPS: af434 d 18 39 37 23 34 28 17 c 2b 41 22 23 2b 11 21 19 c 2b fffff6c6 -FIXUPS: aedd9 23 13 5a 23 13 2c 1e 23 13 d 8 f 13 2b 62 8 18 2f 20 32 d -FIXUPS: af0cc 8 1b 2c 1a a 18 38 2c fffff7fe 23 13 d 8 d 10 28 30 30 23 -FIXUPS: aeb09 26 1b d 8 d b b 1e 17 34 9 c 1f 51 14 f 80 1f 27 23 fffff79d -FIXUPS: ae549 32 20 48 d 14 27 d 36 15 60 12 2f 35 2b 35 1d 14 5f 14 e -FIXUPS: ae876 2a d 10 1c 23 2d 23 33 d fffff74d f 21 49 27 f 21 30 12 2d -FIXUPS: ae238 d 10 33 d 15 13 13 1f 2d 2b 22 d 43 26 13 18 1f 16 b 3f 76 -FIXUPS: c0599 10 c 13 10 1e 12 28f 5 1d e 13 1f e 22 e 13 1f 13 fffed556 -FIXUPS: adef9 f 21 49 27 f 21 49 27 f 21 49 11d66 14 27 26 29 16 b b b -FIXUPS: bfee7 27 a6 18 10 c 25 122 1fa 23 16 1a 2d 23 16 1a 2d 14 b b 2a -FIXUPS: c048f ed fffff331 36 23 d d 60 1c 59 10 30 6e 26 23 16 b 25 1c -FIXUPS: bfb99 af 29 34 21 23 14 34 28 23 16 b 25 1c f fffff621 1d 1e 23 -FIXUPS: bf4ac 2d 16 d e c e c 8 22 19 22 11 33 29 35 52 11 3a 26 1c 34 -FIXUPS: bf7c9 34 1c 23 24 34 fffff745 33 2d 24 1c 24 1c 23 16 13 e 3b 1c -FIXUPS: bf180 2d 14 20 28 23 19 12 12 4d 31 52 23 16 d 2b 1c 15 16 fffff6f8 -FIXUPS: beb0c 1b 42 23 13 8 44 8 39 16 2d 9 83 1a 24 23 2d 23 2d 23 16 -FIXUPS: bee1d 42 2a 16 e 2c 30 17 1d 8c fffff44d 3a 3a 20 32 16 20 2d 15 -FIXUPS: be565 25 d 46 d 1b a4 64 a4 70 23 49 12c e 18 28 b a 1d 14 1c 30 -FIXUPS: beabc fffff292 24 15 36 24 15 2d 24 15 16 24 15 1e 30 16 8 1eb -FIXUPS: be14c 37 1b 14 17 54 51 4b 40 79 3e 18 10 c 25 fffff60c 24 23 32 -FIXUPS: bdab1 d d 8 e 3a 18 24 15 29 24 23 32 23 d 13 c e c 8 8 8 8 8 1e -FIXUPS: bdcd9 1c e fffff83c 28 1c 2e 14 12 10 12 45 5f 10 17 1c 10 b 26 -FIXUPS: bd768 22 1e a 25 12 1a 15 6 5b 23 3d 30 23 a0 16 fffff514 38 74 -FIXUPS: bd00e 1d 5c 38 3c 3e 23 13 25 39 a 10 35 4d 23 16 b 3c 23 19 12 -FIXUPS: bd349 b2 4c 2e 5 32 5d 23 fffff4c1 30 d 58 d 14 1d 16 31 3e 2b -FIXUPS: bcb7e 9 1a 88 30 30 30 30 20 23 16 8 52 d 8d d 2a d 13 11 38 fffff516 -FIXUPS: bc428 6d 6a 12 78 23 13 8 8 e 2f 58 55 2d 23 d 10 67 2c 30 23 d -FIXUPS: bc829 8 b b 11 35 21 f 58 fffff65b 49 e e 1e 6 1b 6 15 1f 4a 9f -FIXUPS: bc150 c 19 46 12 14 2d d 4c d 1a 58 4f 18 27 d 14 a 19 27 fffff6a8 -FIXUPS: bba94 e c e c 1b 64 22 23 19 d e 10 10 39 d 32 15 50 31 7b e 8 -FIXUPS: bbd8f 20 e 52 91 f 40 14 fffff73c e e 1e 23 19 c b b b b 14 73 -FIXUPS: bb7b9 29 1c c 11 e 8 b a2 30 d 54 d 14 1a 1f 50 30 23 fffff6bd -FIXUPS: bb134 8 b 97 9e c 47 30 d 55 d 14 b 13 35 8b d 14 4e d 46 50 10 -FIXUPS: bb592 19 19 13 13 13 16 16 fffff5b3 3d d 2c d cf 36 19 38 94 30 -FIXUPS: bae8a b 74 30 30 30 23 16 8 e f 2c 29 28 25 29 16 11 e b 11 fffff52d -FIXUPS: ba656 c 16 24 d6 23 26 5e 29 1c c b 8 b dd 30 d 5d 1c 19 39 d 71 -FIXUPS: baaf8 11 d 11 13 77 d 11 fffff680 10 b b b 17 7 35 19 4a 1c 1b -FIXUPS: ba381 40 27 d 40 1f 48 2a 19 d 1f 12 1a 1f 40 e 17 3c c 25 fffff631 -FIXUPS: b9c7c 1b b b 18 99 99 d 44 d 13 2d 7d 71 d 29 d 53 29 13 3a 10 -FIXUPS: ba0dd d 40 63 5c 23 19 c e fffff36e 2c 1e d 28 18 46 3e 69 38 23 -FIXUPS: b97a5 c b b 18 99 97 d 44 d 13 2d 7d 71 d 29 d 53 29 34 63 fffff4f8 -FIXUPS: b90f9 8 1e 23 27 23 13 18 51 b 21 22 1d 63 58 1b 1d 33 23 17 16 -FIXUPS: b9409 23 1b b b 13 6 3f c2 d fffff605 23 36 30 3c 3b 23 13 10 30 -FIXUPS: b8d22 51 1c 40 1a 16 26 36 5e 2c 8a 1a 10 33 23 d 13 13 33 23 d -FIXUPS: b90bd fffff4a0 13 5a 5f 3b d 2c 10 86 8 2a d 94 16 32 39 32 23 -FIXUPS: b88ef 56 8 5c 23 74 d d 54 1e 8 39 34 2f fffff45f c 8 10 21 d d -FIXUPS: b809e 32 2c 7e 7b 25 17 13 17 23 4b 23 13 1b 34 43 7b 1a 96 31 -FIXUPS: b8502 10 d 17 17 952c 30 12 2e e 13 1f 13 1d 12 2e e 13 1f 13 ffff621d -FIXUPS: b7e1d 2d 20 d 32 20 d 23 11 b 27 20 d 2c 20 d 97a2 11 19 28 20 -FIXUPS: c17e3 d 7 20 d d c 12 6d 4b 5 1d e 13 28 10 10 19 19 13 13 13 16 -FIXUPS: c1a29 16 e e fffff79c d d 3a 25 d 18 8f 4a 2b 13 10 a 6d 18 15 -FIXUPS: c1489 23 16 f b 4c 8 28 28 8 21 150 b 8 1e b fffff414 30 12 3e -FIXUPS: c0c1b 1e 28 d 9b e 1e 22 d 11 74 32 d d 31 11 1a 19 38 12f 4d 4f -FIXUPS: c10d0 84 f 26 40 e 2fbb 31 23 d 27 d 15 10 3d d 23 26 13 18 1d -FIXUPS: c4349 e 13 1f e 13 ffffc608 27 f 21 49 27 f 21 49 27 f 3350 e b -FIXUPS: c3eaa 1d d 38 d f 1d d 13 1d d 14 1d d f 1e d 10 22 12 37 d 37 -FIXUPS: c40e9 d 26 29 f 31 fffffa1c 18 11 6 a 34 d 32 18 e 1d d 35 13 1d -FIXUPS: c3d0f 18 24 d 15 f 1d d f 1e d 1e 21 d 1c 6 9 fffff97d 1f 27 20 -FIXUPS: c387c 1d d 1b 20 38 26 1e 16 d 12 2a 1c 24 d 15 1c 21 d 20 19 1c -FIXUPS: c3acf d 3d 26 32 23 fffff7b0 31 6c 1c 36 d 23 2e 20 d 1e 42 20 -FIXUPS: c354b 21 20 3d 26 32 23 d 18 16 21 21 27 9 c 9 19 30 49 fffff75f -FIXUPS: c2f17 d 25 3b d 1b 20 3d 26 1e 16 10 d 2a 21 29 1a 36 18 20 39 -FIXUPS: c31d7 d 2b 1d 39 19 4d d 1a 1c fffff74b 20 26 32 23 d 18 16 13 -FIXUPS: c2b58 2e 2a 1a 69 58 45 1b 1f e 28 32 24 d 2b 36 d 26 1b 1b 24 -FIXUPS: c2e9f 2d fffff679 b 2d 1c 80 23 1e b 18 2e 27 3b 21 d 40 22 34 -FIXUPS: c2809 44 3c 23 1e 15 24 9 1a 1d 14 51 63 23 d fffff6df 25 4f 35 -FIXUPS: c21d0 35 30 d 2e 39 12 13 13 19 c 10 1e 25 13 8 c 19 e 3d 25 2f -FIXUPS: c245b 29 60 15 23 1e fffff7df 30 e 47 2b 2f 17 d 1d 23 1b 22 23 -FIXUPS: c1eda 16 d 22 6 6 1e 26 1b d 13 16 17 1b 47 1e 2c 56 26 32e9 15 -FIXUPS: c5416 21 5 1d e 13 1f 13 26 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: c55ef ffffc633 27 f 21 49 27 f 3393 22 d 19 26 23 13 c 10 22 d -FIXUPS: c5191 14 24 23 13 c 10 22 d 19 26 29 16 b b 16 b 4f 22 39 29 fffff985 -FIXUPS: c4d64 d 28 29 16 c 27 23 d 18 f b 29 d 2d 29 19 c 20 d 14 e 24 -FIXUPS: c4fbc 49 9 b 20 23 13 c fffff87f 1e 19 19 20 20 d 2a 47 25 d 2f -FIXUPS: c4a79 80 e 26 4c 38 58 23 13 c 27 23 d 15 2c d 11 15 1b 9 fffff780 -FIXUPS: c44d3 3a 4c 29 16 f 25 d 17 a 3f 23 22 23 1e 19 71 29 16 25 d 15 -FIXUPS: c47d9 3f 2e 19 22 19 1e 19 17 224a 25 d 27 d 2a d 34 34 5 26 10 -FIXUPS: c6c82 19 19 13 13 13 16 16 16 e e 1e 16 ffffd663 27 f 21 30 10 -FIXUPS: c44a9 22e0 23 32 23 d 15 b 25 d 31 d 2a d d 37 23 32 23 d 15 b -FIXUPS: c69e3 d 27 d 2a d 34 f 4b 23 1b fffff8a2 16 b 25 d 27 d 2a d 42 -FIXUPS: c64df b 25 d 27 d 2a d 42 29 32 23 d 1b e 2b d 37 d 30 d 34 fffff73f -FIXUPS: c5ecb 1b 53 27 b 1c d2 60 1e 27 2c d 2f d 56 16 b 25 d 27 d 5d -FIXUPS: c62ba 2f 16 b 25 d 27 d 17 fffff5b7 2f ef d 2d 2e 6 2a d 13 75 -FIXUPS: c5b94 8 96 23 d 5f 17 3b 40 b 1c 1a 1e 15 1c c 11 c a 9 53 4e17 -FIXUPS: cacac 1b 1b d 1e 26 26 10 16 4d d 23 1c 1f 5 1d e 13 1f e 13 1f -FIXUPS: caee7 13 ffffa70f b8 25 d 1a 125 91 4f28 1e 23 1b d 1b 1b 16 19 -FIXUPS: ca8ea 26 3c 44 74 19 46 1d 29 f 31 23 32 23 d 20 1b 23 32 23 d -FIXUPS: cac50 9 fffff717 19 7e 32 23 16 b 5c 23 34 d 2c 23 1b 42 23 4d -FIXUPS: ca67c 2d 23 36 10 10 19 19 13 13 13 16 16 16 e fffff74b 35 3c 2c -FIXUPS: c9ffc 1d 23 13 55 45 11 2f 10 14 1d d 1b 13 13 28 d 36 23 d 36 -FIXUPS: ca2ac d 1b 25 12 26 28 fffff6e0 23 46 27 23 16 16 21 23 26 8 8 -FIXUPS: c9bf6 15 35 18 25 15 28 3f 23 44 64 a 27 2c 1f 39 23 26 8 56 fffff6bc -FIXUPS: c95f2 2d 23 d 2a 10 8 18 20 19 e e 85 46 23 13 8 44 17 8 2f 23 -FIXUPS: c98e2 8 36 42 11 29 1b 42 11 fffff737 6c 18 e 26 23 13 46 24 40 -FIXUPS: c92fc 25 38 23 28 4d 6 29 6 27 6 36 23 26 4a 6 2a 6 28 6 39 10 -FIXUPS: c8b9f 15 26 1f 23 32 23 d 20 1b 8 8 8 1e b3 3d 1b 3d 31 3d 32 3d -FIXUPS: c8f39 23 25 1e 10 10 8 8 143 f fffff49b 4d 23 b6 33 24 23 13 57 -FIXUPS: c87d3 1f 1b 43 2e 4c 6 3b e 25 12 1a 3b 6 7e 20 23 32 23 d d 8 -FIXUPS: c8b7b fffff39e f 96 f 5e 28 116 23 13 25 36 a 10 35 30 40 23 5e -FIXUPS: c8359 14 1c e 1e 24 12 1e 23 2c 13 f5 28 5 ffffef75 40 d 8d d 2a -FIXUPS: c7620 77 5e 17 18 35 32 20 16 c 3c 30 16 92 e 269 48 48 1a0 6f -FIXUPS: c7e0c 21 d 3c 8 1c fffff0df 26 b b 64 26 8a 12 26 33 55 2c 45 1f -FIXUPS: c723c 3c b 21 1f 1d 69 23 32 23 d 10 8 1e 14 8f 22 23 5596 10 10 -FIXUPS: ccabb 19 13 13 13 16 16 16 e e 1e e 32 e 32 e 13 ffffa188 27 f -FIXUPS: c6e09 49 27 f 21 49 27 f 21 5660 23 5d 23 4d 23 32 23 d 10 8 8 -FIXUPS: cc753 12 71 9 16 14 20 ff 12 4f 1e 5 1d e 13 1f 13 1d e 13 fffff66f -FIXUPS: cc0ec 78 25 23 48 25 23 32 23 d d 4e 23 32 23 d 2c 23 d 16 19 23 -FIXUPS: cc447 32 23 32 23 d d 2e 23 fffff6b2 23 d 3b 23 32 52 d 1d 3c d -FIXUPS: cbde7 42 23 32 23 d 2c 23 d 16 21 28 23 32 32 23 d 10 47 d 25 fffff7ae -FIXUPS: cb866 26 32 48 10 10 10 23 4f e e e b 8 14 10 2c 23 d 24 10 8 17 -FIXUPS: cbad9 23 32 23 d 12 49 23 fffff8eb 1d d 11 2f d 4b 10 8 c 1c 23 -FIXUPS: cb619 23 16 34 d 6 7b 25 23 16 c 6b 12 b 9 f 9 f 9 f fffff8d9 19 -FIXUPS: cb15c 20 d 1e 2c 27 d 16 19 1d 11 15 22 3e 6 9 35 d 75 d 6d 1b -FIXUPS: cb441 18 10 c 13 13 e 10 59e1 1f 30 e 13 1f e 13 1f 30 50 30 30 -FIXUPS: d105c 1d 13 1d 13 ffff9e76 27 f 21 49 27 f 21 49 27 f 21 30 d 5947 -FIXUPS: d0a61 19 ae 15 16 e 27 23 d 21 23 1b 10 2d 2f 13 83 23 16 8 b 38 -FIXUPS: d0daa 17 56 5 1d e 13 1f e fffff8f2 e 8 8 14 e e 7 10 c 14 e c -FIXUPS: d0838 c 14 21 12 2e 2a 23 d 2c 2d d 2c 23 d d 8 32 d fffff8f9 32 -FIXUPS: d0377 d 10 27 23 d d b b b 28 9 1a 39 12 31 22 12 31 f0 18 2b 10 -FIXUPS: d0699 b 11 19 16 7 14 fffff86d 32 23 d 10 27 23 d 1b 52 10 10 19 -FIXUPS: d00f4 13 13 13 16 16 16 e e 1e 23 32 23 d 10 27 23 d 64 fffff77a -FIXUPS: cfa9f 23 d 2c 23 d 2c 23 d 10 8 c b0 56 d 33 23 d 3e 14 19 28 7d -FIXUPS: cfe66 1d 2e 23 d 28 12 2e fffff5fc d 2c 23 d 19 88 5a 23 16 87 -FIXUPS: cf78c 19 84 2a 23 d 2c 23 d 2c 23 d 10 34 12 a 1e 19 47 2a 23 fffff4f6 -FIXUPS: cef72 67 d b3 d 2a d bc 23 16 26 91 23 16 b 16 29 7 26 23 65 7 -FIXUPS: cf3d1 7 41 23 16 f b 22 94 fffff416 3d 1a 7 42 7 7f 23 50 20 1a -FIXUPS: ceb46 7 60 16 62 c 67 23 54 7 60 50 29 54 36 18 d 1b 23 1b 42 fffff5c4 -FIXUPS: ce526 d e 2a 28 46 23 16 37 16 26 32 23 d 32 17 21 88 29 16 b b -FIXUPS: ce839 b 11 2e 32 15 34 1d 12 fffff831 7 4b 18 11 1b 1a 39 1e 8 -FIXUPS: ce29c 16 c 25 12 c 13 65 23 13 c b b b b 27 27 9 37 44 d 13 fffff7b8 -FIXUPS: cdca6 27 23 d 10 b 21 17 2e 93 7 4b 3a 2a 14 c 82 14 c 25 d 2c -FIXUPS: ce00a d 10 b b 8 30 2e aa fffff68c 1e 24 4a b 1a 30 1a 1a 34 44 -FIXUPS: cd973 1f 97 23 32 23 d 10 8 43 36 16 26 33 18 15 2e 17 29 23 19 -FIXUPS: cd1ff 1d aa 33 30 20 d 2c 16 b 1a 1a 30 50 13 15 16 1a 2f 3a 36 -FIXUPS: cd581 1f c4 3a 1c 21 c 28 19 4b 43 fffff5a3 49 27 f 21 49 27 f -FIXUPS: cce99 30 16 30 20 d 7d 55 1b 10 33 20 d 40 10 8 1e 2a 2a 20 d 2c -FIXUPS: cd1dc d c3d0 e 13 1f e 32 e 13 1f 13 1d e 32 e 13 1f e 32 e 13 -FIXUPS: d97a9 e 13 1f 13 ffff3466 27 f 21 49 27 f c429 33 35 23 3d 23 97 -FIXUPS: d9319 23 6d 10 2d 23 d 23 10 8 18 1e 5 1d e 13 1f 11 1f e b b b -FIXUPS: d9579 e fffff72a d 1f 3c 23 1d 1a 36 23 1b 10 8 33 24 23 23 16 -FIXUPS: d8ecc 1d 23 16 1a 1d 23 3d 23 3d 23 3d 23 7d 23 fffff763 d 2d 30 -FIXUPS: d892c d 25 16 b b b 8 20 13 15 21 1e 1a 57 2d 15 b 34 14 52 b 22 -FIXUPS: d8bd9 49 17 23 32 fffff6b4 1a 49 2c 23 d 11 52 21 14 20 23 16 9 -FIXUPS: d8505 4c 6f 39 23 16 67 23 4d 2a 23 d 2c 23 d 16 15 92 fffff63b -FIXUPS: d7ecd 4c 23 16 9 a e4 23 1b 10 47 21 7a 23 16 b 9 a 26 29 24 19 -FIXUPS: d826a 1c 24 19 e 28 23 16 8 fffff7c0 10 36 13 14 19 10 3b 23 14 -FIXUPS: d7c1b 10 36 13 14 19 10 34 14 19 10 27 23 13 12 1a 58 31 23 d 26 -FIXUPS: d7eab fffff824 2c 23 d 36 14 1e 36 21 3b 31 36 21 42 3a 23 32 23 -FIXUPS: d79ae 2c 23 d 10 b 8 8 8 10 19 4e 19 14 fffff66b 8 17 10 12 17 -FIXUPS: d71c0 f 22 171 f 23 1c f 19 15 28 1a 12 91 23 d 13 24 98 18 23 -FIXUPS: d763e 23 d 10 8 fffff6b2 31 23 d 11 16 49 23 1b 10 22 23 16 52 -FIXUPS: d6f27 d 11 3a 8 22 23 16 17 20 23 4d 2a 23 d 2c 23 d fffff74a 20 -FIXUPS: d68d3 23 d 2c 23 d 16 15 73 23 d 2c 98 18 23 32 23 d 10 8 67 23 -FIXUPS: d6c3d 11 8 10 3a 19 23 13 fffff7dd 23 d 13 2a 23 32 23 d 1f c 18 -FIXUPS: d6619 29 27 23 1d 1a 36 23 1b 10 21 27 2a 23 16 1a f 1e 23 16 fffff8e7 -FIXUPS: d6199 23 2d 23 2d 2a 23 d 2c 23 d d 8 8 17 10 12 17 1c f 25 21 -FIXUPS: d63dc 19 15 28 17 f 12 27 e fffff843 3e 1e 13 2c 20 d 3b d 27 30 -FIXUPS: d5e59 8 1e 23 23 23 23 1e 23 2d 23 2d 23 2d 23 2d 23 2d 23 2d 23 -FIXUPS: d5738 d 24 23 cd 23 38 f f 7 23 f f 7 88 23 4d 23 4d 23 7d 10 33 -FIXUPS: d5b8f d 38 3e 23 d 38 23 d fffff214 13 8 93 28 24 85 53 26 24 6f -FIXUPS: d516c a6 d 11 19 23 5d 23 5d 23 4d 23 7c 21 23 5d 23 5d 23 cd 23 -FIXUPS: d4949 23 1b 32 23 96 10 10 19 19 13 13 13 16 16 16 e e 1e 23 13 -FIXUPS: d4bba d 7c 2e 8d 37 13 21 23 dd 23 fffff596 8 12 15 38 23 16 3e -FIXUPS: d4519 23 2b 6 17 23 c 26 23 5d 23 16 1b f f 7 67 23 16 5c 23 d -FIXUPS: d480b ca fffff24b 34 b9 3c 23 16 77 d a3 23 67 96 23 16 f9 d b1 -FIXUPS: d40dc 16 2b 3c 32 33 3e 7d 23 7d 23 3d 23 4d 23 fffff1d5 20 b 1c -FIXUPS: d364f 1c 2e 23 16 b 22 ba 23 30 f f 7 26 2a 3b 9a d 24 24 23 4a -FIXUPS: d3a79 23 37 d 10 b fffff654 39 1e 10 73 23 13 29 1e 10 23 23 32 -FIXUPS: d3351 d 10 8 1e c 49 23 16 2a 2a 44 d 3c 46 23 16 33 10 fffff46d -FIXUPS: d2aa4 25 23 4d 23 32 25 d 36 23 d 1a 20 6b 9f 25 c7 16 24 36 35 -FIXUPS: d2f29 23 1b 55 d 21 bc 46 2d 23 fffff181 49 d 29 d 20 20 23 18 -FIXUPS: d23cf 19 77 6b 9f 23 3d 87 f 9 123 25 61 73 f 9 1e f 9 6a ca e -FIXUPS: d2a24 fffff2ad d 2c 23 d 2c 23 d 40 7 13b 3d 17 2d 14 31 2b 23 -FIXUPS: d204f 5b d 4d d 39 d 73 1a 25 23 18 a 62 fffff2ff 1f d 24 11 19 -FIXUPS: d16bc 2e 20 d 42 2a 20 d 14 10 65 12 38 36 21d 13 23 32 23 d 2c -FIXUPS: d1bbd d 8f 23 32 fffff47a 21 49 27 f 21 49 27 f 21 49 27 f 21 49 -FIXUPS: d1399 f 21 49 27 f 21 30 2a 20 d 2c 20 d 2c 20 d bec6 1d 20 1d -FIXUPS: dd4d9 12 29 23 5 5 21 10 10 19 19 13 13 13 16 16 16 e e 1e e 13 -FIXUPS: dd6a9 13 1d 30 ffff39e9 27 bd10 1e 15 11d 14 7b 25 3a 3d 19 1e -FIXUPS: dd0f1 c 3c 12 1d 41 7e 23 d 62 14 21 1c 12 15 24 19 54 1f 48 29 -FIXUPS: dc62f 1a 13 e 7b 60 10 73 12 28 24 e 69 1a 13 e 2f 49 10 24 e 72 -FIXUPS: dca36 253 14 b b eb 1d f 12 27 fffff2e8 f 10 55 e 59 51 10 e 55 -FIXUPS: dc29a 55 e 59 55 e 59 e e 7f 12 10 51 11 25 c 10 c 1a 10 10 e fffff428 -FIXUPS: dba60 26 72 10 1f 10 72 26 72 10 1f 10 72 10 1f 10 e 72 2a e e -FIXUPS: dbe05 72 3f 13 51 8 48 87 74 1d fffff5be 13 4f 10 e 56 e e e e -FIXUPS: db77d f 15 1e 59 10 10 10 10 10 10 2f 38 19 10 e e 5d 13 e 30 c -FIXUPS: db1d7 5b 10 10 16 49 c c 10 5b 10 27 11 49 10 11 49 10 72 10 d -FIXUPS: db4da 10 e 72 14 10 c 25 e e e fffff773 45 e e e 48 f 10 4d 24 -FIXUPS: daeb7 24 38 10 4f e 5b 1a 13 30 1a 13 32 c 1a 10 10 e e 27 87 1d -FIXUPS: da8b2 2f e 72 13 2f e 72 13 2c 79 10 12 1a 10 67 18 10 27 24 18 -FIXUPS: dac29 27 24 18 10 27 24 18 10 28 10 fffff6f2 22 11 36 11 1a 13 -FIXUPS: da508 e 42 2f a 19 12 1e 14 6 d f 5a 1a 8f 1c f 10 e 6d 21 13 22 -FIXUPS: da82d 72 fffff82b 18 10 e 58 4b 24 18 10 e e 4e 10 e b 13 16 1a -FIXUPS: da2d8 e e 4e 10 e 10 e 1a 13 e e 4e 13 fffff72d 24 e 10 22 23 45 -FIXUPS: d9c41 d 10 21 d 22 4b 23 39 24 50 23 3d 50 30 30 2e 51 23 b 5f -FIXUPS: d9ff3 e 58 4d 3b40 15 12 1a ffffbc0b 27 f 21 33 1d e d 30 20 d -FIXUPS: d997d 20 d 2c 20 d 16 e 2d 35 10 1f d 32 20 d 24 411f fffffaf2 -FIXUPS: dd76a 27 23 d d b e 57 27 27 3e d 18 30 23 26 1a 27 17 27 23 d -FIXUPS: ddac7 44 27 27 3b d 15 22 diff --git a/OBJ/WIND/BLDGHD.I b/OBJ/WIND/BLDGHD.I deleted file mode 100644 index fecb2e40..00000000 --- a/OBJ/WIND/BLDGHD.I +++ /dev/null @@ -1,6533 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 11 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 17 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 23 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 26 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 31 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 32 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - -SET _dfmbmp = 0x00040000 SET _dfscr = 0x00040000 SET _dfanm = 0x00040000 SET _dffill = 0x00040000 SET _curgok = 0x00040000 SET _dfmask = 0x00040000 SET _dftile = 0x00040000 SET _dfwave = 0x00040000 SET _dfmidi = 0x00040000 SET _dfvid = 0x00040000 - - - -CHUNK( 'GLOP', 0, ) SCRIPT - - ::fInStudio = 0; - FilterCmdsGob(0x00010000, 50107, 0, 0xFFFFFFFF); - - kgobGoto = GetProp(0x23300); - - -PrintStr("Starting Building with kpridBuildingGob = ", NumToStr(kgobGoto, ""), "; kpridBuildingState = ", NumToStr(GetProp(0x23302), "")); - If (!(kgobGoto != 0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(47,"")); End; - If (!(GetProp(0x23302) >= 0x0001)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(48,"")); End; - - - EnqueueCid(50091, 0, 0,0,0,0); - - - - - 0x00010000->kstEntry = (GetProp(0x23302)); - RunScriptGob(0x00010000, 0x0021, kgobGoto, (0x00010000->kstEntry)); - - - - - FilterCmdsGob(0x00010000, 101, 0, 0x0026); - FilterCmdsGob(0x00010000, 100, 0, 0x0026); - FilterCmdsGob(0x00010000, 50110, 0, 0x0026); - - EndLongOp(1); - If (0x00010000->cDisable <= 0 && !1); PrintStr("Enable Accels takes disable count below 0."); End; If (1); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 75 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\palette.cht" - - - - -CHUNK( 'GLCR', 0x00010000, ) PACK PALETTE "building\bitmaps\palette\socbase.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010001, ) PACK PALETTE "building\bitmaps\palette\imaginpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010002, ) PACK PALETTE "building\bitmaps\palette\ticketpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010003, ) PACK PALETTE "building\bitmaps\palette\lobbypl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010004, ) PACK PALETTE "building\bitmaps\palette\theatpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010005, ) PACK PALETTE "building\bitmaps\palette\bkstagpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010006, ) PACK PALETTE "building\bitmaps\palette\insppl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010008, ) PACK PALETTE "building\bitmaps\palette\projpal.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010007, ) PACK PALETTE "building\bitmaps\palette\studiopl.bmp" ENDCHUNK - -CHUNK( 'GLCR', 0x00010009, ) PACK PALETTE "building\bitmaps\palette\streetpl.bmp" ENDCHUNK - -#line 81 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\navbars.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x00010108 CHUNK( 'GOKD', 0x00010108, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 400 - LONG 0 0 0xffffffff 0x00000005 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 50 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - plc = ::kgobCurrentPlace; - nxt = Match( plc, plc, - 0x00010600, 0x00010900, - 0x00010700, 0x00010800, - 0x00010900, 0x00010700, - 0x00010800, 0x00010600, - 0x00010d00, 0x00010c00, - 0x00010c00, 0x00010d00, - 0x00011000, 0x00011100, - 0x00011100, 0x00011000, - 0x00011800, 0x00011b00, - 0x00011900, 0x00011a00, - 0x00011a00, 0x00011800, - 0x00011b00, 0x00011900, - 0x00011400, 0x00011700, - 0x00011500, 0x00011600, - 0x00011600, 0x00011400, - 0x00011700, 0x00011500, - 0x00011c00, 0x00011f00, - 0x00011d00, 0x00011e00, - 0x00011e00, 0x00011c00, - 0x00011f00, 0x00011d00 - ); - If (!(plc != nxt)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\navbars.cht", ", line ", NumToStr(65,"")); End; - - Transition( 0, 0x05, 30, 0xffffffff, 0xFFFFFFFF ); - RunScriptGob(0x00010000, 0x0021, nxt, Match( nxt, 0x0001, 0x00010900, 0x0001, 0x00010800, 0x0001, 0x00010700, 0x0001, 0x00010600, 0x0002, 0x00010d00, 0x0001, 0x00010c00, 0x0004, 0x00011000, 0x0002, 0x00011100, 0x0001, 0x00011b00, 0x0001, 0x00011900, 0x0001, 0x00011800, 0x0001, 0x00011a00, 0x0001, 0x00011700, 0x0001, 0x00011500, 0x0001, 0x00011400, 0x0006, 0x00011600, 0x0001, 0x00010580, 0x0003, 0x00011f00, 0x0001, 0x00011d00, 0x0001, 0x00011c00, 0x0002, 0x00011e00, 0x0001 )); - -ENDCHUNK - -SET _curgok = 0x00010109 CHUNK( 'GOKD', 0x00010109, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 400 - LONG 0 0 0xffffffff 0x00000006 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 590 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - plc = ::kgobCurrentPlace; - nxt = Match( plc, plc, - 0x00010900, 0x00010600, - 0x00010800, 0x00010700, - 0x00010700, 0x00010900, - 0x00010600, 0x00010800, - 0x00010d00, 0x00010c00, - 0x00010c00, 0x00010d00 , - 0x00011000, 0x00011100, - 0x00011100, 0x00011000, - 0x00011b00, 0x00011800, - 0x00011900, 0x00011b00, - 0x00011800, 0x00011a00, - 0x00011a00, 0x00011900, - 0x00011700, 0x00011400, - 0x00011500, 0x00011700, - 0x00011400, 0x00011600, - 0x00011600, 0x00011500, - 0x00011f00, 0x00011c00, - 0x00011d00, 0x00011f00, - 0x00011c00, 0x00011e00, - 0x00011e00, 0x00011d00 - - ); - - If (!(plc != nxt)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\navbars.cht", ", line ", NumToStr(103,"")); End; - - Transition( 0, 0x00, 30, 0xffffffff, 0xFFFFFFFF ); - RunScriptGob(0x00010000, 0x0021, nxt, Match( nxt, 0x0001, 0x00010900, 0x0001, 0x00010800, 0x0001, 0x00010700, 0x0001, 0x00010600, 0x0002, 0x00010d00, 0x0001, 0x00010c00, 0x0004, 0x00011000, 0x0002, 0x00011100, 0x0001, 0x00011b00, 0x0001, 0x00011900, 0x0001, 0x00011800, 0x0001, 0x00011a00, 0x0001, 0x00011700, 0x0001, 0x00011500, 0x0001, 0x00011400, 0x0006, 0x00011600, 0x0001, 0x00010580, 0x0003, 0x00011f00, 0x0001, 0x00011d00, 0x0001, 0x00011c00, 0x0002, 0x00011e00, 0x0001 )); - -ENDCHUNK - -SET _curgok = 0x0001010a CHUNK( 'GOKD', 0x0001010a, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 430 400 - LONG 0 0 0xffffffff 0x00000009 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 50 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - plc = ::kgobCurrentPlace; - nxt = Match( plc, plc, - 0x00010900, 0x00010800, - 0x00010800, 0x00010900, - 0x00010700, 0x00010600, - 0x00010600, 0x00010700, - 0x00010c00, 0x00010d00, - 0x00010d00, 0x00010c00, - 0x00011000, 0x00011100, - 0x00011100, 0x00011000, - 0x00011800, 0x00011900, - 0x00011900, 0x00011800, - 0x00011a00, 0x00011b00, - 0x00011b00, 0x00011a00, - 0x00011400, 0x00011500, - 0x00011500, 0x00011400, - 0x00011600, 0x00011700, - 0x00011700, 0x00011600, - 0x00011c00, 0x00011d00, - 0x00011d00, 0x00011c00, - 0x00011e00, 0x00011f00, - 0x00011f00, 0x00011e00, - 0x00010580, 0x00010500 - - ); - - If (!(plc != nxt)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\navbars.cht", ", line ", NumToStr(142,"")); End; - Transition( 0, 0x0F, 30, 0xffffffff, 0xFFFFFFFF ); - RunScriptGob(0x00010000, 0x0021, nxt, Match( nxt, 0x0001, 0x00010900, 0x0001, 0x00010800, 0x0001, 0x00010700, 0x0001, 0x00010600, 0x0002, 0x00010d00, 0x0001, 0x00010c00, 0x0004, 0x00011000, 0x0002, 0x00011100, 0x0001, 0x00011b00, 0x0001, 0x00011900, 0x0001, 0x00011800, 0x0001, 0x00011a00, 0x0001, 0x00011700, 0x0001, 0x00011500, 0x0001, 0x00011400, 0x0006, 0x00011600, 0x0001, 0x00010580, 0x0003, 0x00011f00, 0x0001, 0x00011d00, 0x0001, 0x00011c00, 0x0002, 0x00011e00, 0x0001 )); - -ENDCHUNK - -#line 88 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\music.cht" - - - - -CHUNK( 'MIDS', 0x00010011, ) PACK MIDI "building\sound\backstag\bakstage.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010012, ) PACK MIDI "building\sound\ticket\boothjam.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010013, ) PACK MIDI "building\sound\imagin\closet.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010014, ) PACK MIDI "building\sound\imagin\coaster.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010015, ) PACK MIDI "building\sound\inspirat\ideas.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010016, ) PACK MIDI "building\sound\ticket\jamloop.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010017, ) PACK MIDI "building\sound\lobby\lobby.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010018, ) PACK MIDI "building\sound\projects\project.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010019, ) PACK MIDI "building\sound\snackbar\snack.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001a, ) PACK MIDI "building\sound\studio\studio.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001b, ) PACK MIDI "building\sound\login\tag.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001c, ) PACK MIDI "building\sound\theatre\theater.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001d, ) PACK MIDI "building\sound\imagin\coaster.mid" ENDCHUNK; -#line 89 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\portfol.cht" - - - -SET _curgok = 0x00010101 CHUNK( 'GOKD', 0x00010101, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 975 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - .kidCallObj = 0; - .chidCallScript = 0xFFFFFFFF; - - EnqueueCid(50080, 0, 1, 0, 1, 0); - - FilterCmdsThis(50082, 0, 0x0021); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT; - If(_parm[2] == 1); - - - RunScriptGob( 0x00010101->kidCallObj, 0x00010101->chidCallScript, 1 ); - Else; - RunScriptGob( 0x00010101->kidCallObj, 0x00010101->chidCallScript, 0 ); - End; - - DestroyGob( 0x00010101 ); - ENDCHUNK -#line 90 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\login.cht" - - - - -SET _curgok = 0x00010200 CHUNK( 'GOKD', 0x00010200, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\login\login.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010001); - 0x00010000->keys = ((0x00000002)); - 0x00010000->fTrans = (0); - CreateHelpThis( 0x00018542 ); - ENDCHUNK - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - If (_parm[2]); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - End; - ENDCHUNK - - -CHUNK( 'GLOP', 0x00018542, ) SCRIPT - If( _parm[0] == 0 ); - Exit(); - - Elif( _parm[0] == 1 ); - RunScriptGob(0x00010000, 0x0021, 0x00011800, 0x0002); - - Elif( _parm[0] == 2 ); - - - EnqueueCid(50080, 0, 1, 0, 0, 0); - - FilterCmdsGob( 0x00010200, 50082, 0, 0x0022); - - Elif( _parm[0] == 3 ); - RunScriptGob(0x00010000, 0x0021, 0x00010600, 0x0005); - - Elif( _parm[0] == 4 ); - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0005); - - Elif( _parm[0] == 5 ); - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0004); - - Elif( _parm[0] == 6 ); - RunScriptGob(0x00010000, 0x0021, 0x00010280, 0x0001); - - Elif( _parm[0] == 7 ); - EnqueueCid(106, 0, 0, 0, 0, 0);; - End; -ENDCHUNK - - - -#line 95 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\street.cht" - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x00010400 CHUNK( 'GOKD', 0x00010400, ) PACK SHORT BO OSK LONG 2 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\street\street1.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - 0x00010000->fTrans = (1); - RunScriptGob(0x00010000, 0x0027, 0x00010009); - Cell( 0x00000040, 0, 0, 60); - - SetColorTable( 0x00010009 ); - CreateChildThis( 0x00010401, 0x00010401 ); - Cell( 0x00000040, 0, 0, 30 ); - - - While( PlayingGob( 0x00010401 )); - Cell( 0x00000040, 0, 0, 30 ); - End; - RunScriptGob(0x00010000, 0x0021, 0x00010500, 0x0001); -ENDCHUNK - -SET _curgok = 0x00010401 CHUNK( 'GOKD', 0x00010401, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "mhole2.avi" ENDCHUNK -#line 100 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - - - -SET _curgok = 0x00010500 CHUNK( 'GOKD', 0x00010500, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\ticket1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010002); - 0x00010000->keys = ((0x00000002)); - - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 1 ); - - CreateChildThis( 0x00010501, 0x00010501 ); - CreateChildThis( 0x00010502, 0x00010502 ); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010580, 0x0002); - ENDCHUNK - - - - - -SET _curgok = 0x00010580 CHUNK( 'GOKD', 0x00010580, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\ticket2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010002); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00010583, 0x00010583 ); - CreateChildThis( 0x00010581, 0x00010581 ); - CreateChildThis( 0x00010582, 0x00010582 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010586, 0x00010586 ); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - If (!(0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(144,"")); End; - ENDCHUNK -#line 147 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -SET _curgok = 0x00010600 CHUNK( 'GOKD', 0x00010600, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\lobby\lobby1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - - .fExitLobby=0; - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010607, 0x00010607 ); - CreateChildThis( 0x00010603, 0x00010603 ); - CreateChildThis( 0x00010604, 0x00010604 ); - CreateChildThis( 0x00010608, 0x00010608 ); - CreateChildThis( 0x00010609, 0x00010609 ); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - If (!(0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(176,"")); End; - ENDCHUNK -#line 179 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -SET _curgok = 0x00010700 CHUNK( 'GOKD', 0x00010700, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\lobby\lobby2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010703, 0x00010703 ); - CreateChildThis( 0x00010705, 0x00010705 ); - CreateChildThis( 0x00010704, 0x00010704 ); - ENDCHUNK - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\waiting.cht" - - - - - -SET _curgok = 0x00010900 CHUNK( 'GOKD', 0x00010900, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\waiting\waiting.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010706, 0x00010706 ); - CreateChildThis( 0x00010707, 0x00010707 ); - CreateChildThis( 0x00010708, 0x00010708 ); -ENDCHUNK - - - - -SET _curgok = 0x00010706 CHUNK( 'GOKD', 0x00010706, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby3m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((25 > 31) ? ( ::fBio2 & (1<<(25&31)) ) : ( ::fBio1 & (1<<(25&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (25 & 31); If (25 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 25; ::fBioCtrl = 0; CreateChildGob( 0x00010900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010707 CHUNK( 'GOKD', 0x00010707, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby3m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((26 > 31) ? ( ::fBio2 & (1<<(26&31)) ) : ( ::fBio1 & (1<<(26&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (26 & 31); If (26 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 26; ::fBioCtrl = 0; CreateChildGob( 0x00010900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010708 CHUNK( 'GOKD', 0x00010708, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby3m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((27 > 31) ? ( ::fBio2 & (1<<(27&31)) ) : ( ::fBio1 & (1<<(27&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (27 & 31); If (27 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 27; ::fBioCtrl = 0; CreateChildGob( 0x00010900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -#line 202 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -SET _curgok = 0x00010800 CHUNK( 'GOKD', 0x00010800, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\snackbar\snackbr2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - CreateChildThis( 0x00010806, 0x00010806 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010807, 0x00010807 ); - CreateChildThis( 0x00010808, 0x00010808 ); -ENDCHUNK - - - - - -SET _curgok = 0x00010c00 CHUNK( 'GOKD', 0x00010c00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\the1dark.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - PrintStr("Creating Theatre1"); - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010c01, 0x00010c01 ); - CreateChildThis( 0x00010c02, 0x00010c02 ); - CreateChildThis( 0x00010c03, 0x00010c03 ); - ChangeStateThis(0x0002); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - If (!(0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(245,"")); End; - ENDCHUNK -#line 248 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -SET _curgok = 0x00010d00 CHUNK( 'GOKD', 0x00010d00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010d01, 0x00010d01 ); - CreateChildThis( 0x00010d03, 0x00010d03 ); - CreateChildThis( 0x00010d02, 0x00010d02 ); - CreateChildThis( 0x00010d04, 0x00010d04 ); - CreateChildThis( 0x00010d05, 0x00010d05 ); - CreateChildThis( 0x00010d06, 0x00010d06 ); - ENDCHUNK - - - - - -SET _curgok = 0x00010e00 CHUNK( 'GOKD', 0x00010e00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre3.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - CreateChildThis( 0x00010e01, 0x00010e01 ); - CreateChildThis( 0x00010e02, 0x00010e02 ); - CreateChildThis( 0x00010e04, 0x00010e03 ); - CreateChildThis( 0x00010e03, 0x00010e04 ); - ENDCHUNK - - - - -SET _curgok = 0x00010f00 CHUNK( 'GOKD', 0x00010f00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre4.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If (!((0x00010000->kstEntry) >= 0x0002 && (0x00010000->kstEntry) <= 0x0004)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(290,"")); End; - PrintStr("Create theatre4 object"); - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - - - - If ((0x00010000->kstEntry) == 0x0003); - .nxtPlcState = 0x0003; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - CreateChildThis( 0x00010f05, 0x00010f05 ); - Elif ((0x00010000->kstEntry) == 0x0004); - .nxtPlcState = 0x0006; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - CreateChildThis( 0x00010f05, 0x00010f05 ); - End; - - - CreateChildThis( 0x00010f01, 0x00010f01 ); - CreateChildThis( 0x00010f02, 0x00010f02 ); - CreateChildThis( 0x00010f04, 0x00010f03 ); - CreateChildThis( 0x00010f03, 0x00010f04 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, .nxtPlcState); - ENDCHUNK - - - - - - - - -SET _curgok = 0x00011000 CHUNK( 'GOKD', 0x00011000, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010005); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - - - - - - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00011001, 0x00011001 ); - CreateChildThis( 0x00011002, 0x00011002 ); - CreateChildThis( 0x00011003, 0x00011003 ); - CreateChildThis( 0x0001100a, 0x0001100a ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\backstag\backstg1.pbm" ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - If (!(0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(349,"")); End; - ENDCHUNK -#line 352 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - -SET _curgok = 0x00011100 CHUNK( 'GOKD', 0x00011100, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\backstag\backstg2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010005); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010011, 0 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00011104, 0x00011104 ); - CreateChildThis( 0x00011103, 0x00011103 ); - CreateChildThis( 0x00011106, 0x00011106 ); - CreateChildThis( 0x00011105, 0x00011105 ); - - CreateChildThis( 0x00011107, 0x00011107 ); - ENDCHUNK - - - - - - -SET _curgok = 0x00011103 CHUNK( 'GOKD', 0x00011103, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000005 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2ltdr2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0002); - ENDCHUNK - - -SET _curgok = 0x00011104 CHUNK( 'GOKD', 0x00011104, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000006 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2rtdr2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010e00, 0x0001); - ENDCHUNK - - -SET _curgok = 0x00011106 CHUNK( 'GOKD', 0x00011106, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - - -SET _curgok = 0x00011105 CHUNK( 'GOKD', 0x00011105, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - -SET _curgok = 0x00011107 CHUNK( 'GOKD', 0x00011107, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bkstg2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((40 > 31) ? ( ::fBio2 & (1<<(40&31)) ) : ( ::fBio1 & (1<<(40&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (40 & 31); If (40 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 40; ::fBioCtrl = 0; CreateChildGob( 0x00011100, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - - - -SET _curgok = 0x00011400 CHUNK( 'GOKD', 0x00011400, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob(0x00010000, 0x0027, 0x00010006); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011402, 0x00011402 ); - CreateChildThis( 0x00011403, 0x00011403 ); - CreateChildThis( 0x00011401, 0x00011401 ); - CreateChildThis( 0x00011404, 0x00011404 ); - - - - - - - 0x00010000->fBackstagePS = (0); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - - - ChangeStateGob(0x00011401, 0x0001); - ENDCHUNK - - - - -SET _curgok = 0x00011500 CHUNK( 'GOKD', 0x00011500, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010006); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011501, 0x00011501 ); - CreateChildThis( 0x00011503, 0x00011503 ); - CreateChildThis( 0x00011502, 0x00011502 ); - - CreateChildThis( 0x00011405, 0x00011405 ); -ENDCHUNK - - - - -SET _curgok = 0x00011600 CHUNK( 'GOKD', 0x00011600, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir3.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010006); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011406, 0x00011406 ); - CreateChildThis( 0x00011407, 0x00011407 ); - CreateChildThis( 0x00011408, 0x00011408 ); -ENDCHUNK - - - - -SET _curgok = 0x00011700 CHUNK( 'GOKD', 0x00011700, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir4.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010006); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x0001140a, 0x0001140a ); - CreateChildThis( 0x0001140b, 0x0001140b ); - CreateChildThis( 0x0001140c, 0x0001140c ); - ENDCHUNK - - - - - - - -SET _curgok = 0x00011800 CHUNK( 'GOKD', 0x00011800, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio1b.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If (!((0x00010000->kstEntry) == 0x0001 || (0x00010000->kstEntry) == 0x0002)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(510,"")); End; - - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011801, 0x00011801 ); - CreateChildThis( 0x00011802, 0x00011802 ); - CreateChildThis( 0x00011805, 0x00011805 ); - - - - - - - 0x00010000->fBackstagePS = (0); - - RunScriptThis(0x0020); - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - If ((0x00010000->kstEntry) == 0x0001); - - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - 0x00010000->fHelpOn = (0); - ChangeStateGob(0x00011802, 0x0002 ); - Else; - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - ChangeStateGob( 0x00011801, 0x0002 ); - End; -ENDCHUNK - - - - - - -SET _curgok = 0x00011900 CHUNK( 'GOKD', 0x00011900, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011901, 0x00011901 ); - CreateChildThis( 0x00011903, 0x00011903 ); - CreateChildThis( 0x00011904, 0x00011904); - CreateChildThis( 0x00011902, 0x00011902); - - CreateChildThis( 0x0001190c, 0x0001190c ); - CreateChildThis( 0x0001190d, 0x0001190d ); - CreateChildThis( 0x0001190e, 0x0001190e ); -ENDCHUNK - - - - - - -SET _curgok = 0x00011a00 CHUNK( 'GOKD', 0x00011a00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio3.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011909, 0x00011909 ); - CreateChildThis( 0x0001190a, 0x0001190a ); - CreateChildThis( 0x0001190b, 0x0001190b ); -ENDCHUNK - - - - - -SET _curgok = 0x00011b00 CHUNK( 'GOKD', 0x00011b00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio4.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011905, 0x00011905 ); - CreateChildThis( 0x00011906, 0x00011906 ); - CreateChildThis( 0x00011907, 0x00011907 ); - CreateChildThis( 0x00011908, 0x00011908 ); -ENDCHUNK - - - - - -SET _curgok = 0x00011c00 CHUNK( 'GOKD', 0x00011c00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project1.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - - - - - -If (!((0x00010000->kstEntry) == 0x0001 || (0x00010000->kstEntry) == 0x0002 || (0x00010000->kstEntry) == 0x0004 || (0x00010000->kstEntry) == 0x0005)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\bldghd.cht", ", line ", NumToStr(625,"")); End; - - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - - CreateChildThis(0x00011b02, 0x00011b02); - CreateChildThis(0x00011b03, 0x00011b03); - CreateChildThis(0x00011c0d, 0x00011c0d ); - CreateChildThis(0x00011c0e, 0x00011c0e ); - CreateChildThis( 0x00011b07, 0x00011b07 ); - - - - CreateChildThis(0x00011b01, 0x00011b01); - - - - - - - 0x00010000->fBackstagePS = (0); - - - RunScriptThis(0x0020); - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - - enter = (0x00010000->kstEntry); - If( enter == 0x0004 ); - - EnqueueCid( 100008, 0x00011b02, 0,0,0,0 ); - Elif( enter == 0x0005 ); - - EnqueueCid( 100008, 0x00011b03, 0,0,0,0 ); - End; - - - - - - If ( enter != 0x0001 ); - 0x00010000->fHelpOn = (0); - End; - ChangeStateGob(0x00011b01, 0x0002); - -ENDCHUNK - - - - - - - -SET _curgok = 0x00011d00 CHUNK( 'GOKD', 0x00011d00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011c01, 0x00011c01 ); - CreateChildThis( 0x00011c02, 0x00011c02 ); - CreateChildThis( 0x00011c03, 0x00011c03 ); - - CreateChildThis( 0x00011c04, 0x00011c04 ); - CreateChildThis( 0x00011c05, 0x00011c05 ); - CreateChildThis( 0x00011c06, 0x00011c06 ); - CreateChildThis( 0x00011c07, 0x00011c07 ); -ENDCHUNK - - - - - -SET _curgok = 0x00011e00 CHUNK( 'GOKD', 0x00011e00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project3.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); -ENDCHUNK - - - - - -SET _curgok = 0x00011f00 CHUNK( 'GOKD', 0x00011f00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project4.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011c09, 0x00011c09 ); - CreateChildThis( 0x00011c0a, 0x00011c0a ); - CreateChildThis( 0x00011c0b, 0x00011c0b ); -ENDCHUNK - - -SET _curgok = 0x00010300 CHUNK( 'GOKD', 0x00010300, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x00010000->keys = ((0x00000002)); - RunScriptGob(0x00010000, 0x0027, 0x00010001); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00010301, 0x00010301 ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back2.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back3.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back4.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back5.pbm" ENDCHUNK diff --git a/OBJ/WIND/BUILDING.I b/OBJ/WIND/BUILDING.I deleted file mode 100644 index 806b2330..00000000 --- a/OBJ/WIND/BUILDING.I +++ /dev/null @@ -1,11411 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 22 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 28 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 34 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - - -SET _dfmbmp = 0x00030000 SET _dfscr = 0x00030000 SET _dfanm = 0x00030000 SET _dffill = 0x00030000 SET _curgok = 0x00030000 SET _dfmask = 0x00030000 SET _dftile = 0x00030000 SET _dfwave = 0x00030000 SET _dfmidi = 0x00030000 SET _dfvid = 0x00030000 - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 47 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 48 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 53 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 57 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\ticket.cht" - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018020, ) FILE "building\sound\ticket\TKTBTH.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801d, ) FILE "building\sound\ticket\TBCY2.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801f, ) FILE "building\sound\ticket\TBTH3.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001810f, ) FILE "building\sound\ticket\VO54.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018022, ) FILE "building\sound\ticket\VO56B.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018111, ) FILE "building\sound\ticket\tbfar.wav" ENDCHUNK - - - - - -SET _curgok = 0x00010501 CHUNK( 'GOKD', 0x00010501, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\ticket\tik1drs.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( GetProp(0x23510) && (0x00010000->fTicketPS) ); - 0x00010000->fTicketPS = (0); - RunScriptGob(0x00010000, 0x0021, 0x00010580, 0x0002); - Else; - RunScriptGob(0x00010000, 0x0021, 0x00010600, 0x0003); - End; - ENDCHUNK - - - - - -SET _curgok = 0x00010502 CHUNK( 'GOKD', 0x00010502, ) SHORT BO OSK LONG 2 LONG 0 0 0 15 LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018111, 0, 0x00010000, 1, 0, 998); - i = 5; - While( --i ); - cnt = 0x00000040; - While( cnt <= 0x00000055 ); - Cell( cnt++, 0, 0, 6 ); - End; - End; - RunScriptGob(0x00010000, 0x0021, 0x00010580, 0x0002); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\ticket1.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\ticket\tbth1_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\ticket\tbth1_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\ticket\tbth1_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\ticket\tbth1_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\ticket\tbth1_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\ticket\tbth1_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\ticket\tbth1_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\ticket\tbth1_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\ticket\tbth1_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\ticket\tbth1_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\ticket\tbth1_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\ticket\tbth1_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\ticket\tbth1_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\ticket\tbth1_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\ticket\tbth1_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\ticket\tbth1_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\ticket\tbth1_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\ticket\tbth1_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\ticket\tbth1_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\ticket\tbth1_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\ticket\tbth1_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\ticket\tbth1_22.pbm" ENDCHUNK -#line 59 "H:\\BUILD\\SOC\\src\\building\\ticket.cht" - - - - -SET _curgok = 0x00010582 CHUNK( 'GOKD', 0x00010582, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 155 97 236 158 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - - - - -SET _curgok = 0x00010581 CHUNK( 'GOKD', 0x00010581, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 173 31 223 61 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - - -SET _curgok = 0x00010583 CHUNK( 'GOKD', 0x00010583, ) SHORT BO OSK LONG 0 LONG 0 0 0 20 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (!((0x00010000->kstEntry) == 0x0002 || (0x00010000->kstEntry) == 0x0003)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\ticket.cht", ", line ", NumToStr(83,"")); End; - - .fWay = 0; - ChangeStateThis((0x00010000->kstEntry)); - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x00000040, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x00010587, 0x00010587 ); - Cell( 0x00000040,0,0, 100 ); - - - While( PlayingGob( 0x00010587 )); - Cell( 0x00000040, 0, 0, 10 ); - End; - DestroyGob( 0x00010587 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0003 ); - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x0000016c, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x00010588, 0x00010588 ); - Cell( 0x0000016c,0,0, 100 ); - - - While( PlayingGob( 0x00010588 )); - Cell( 0x0000016c, 0, 0, 10 ); - End; - DestroyGob( 0x00010588 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - CreateChildGob( 0x00010580, 0x00010584, 0x00010584 ); - CreateChildGob( 0x00010580, 0x00010585, 0x00010585 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell( 0x0000016c, 0,0,1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( !FGobExists( 0x00010584 ) ); - CreateChildGob( 0x00010580, 0x00010584, 0x00010584 ); - End; - - If( !FGobExists( 0x00010585 ) ); - CreateChildGob( 0x00010580, 0x00010585, 0x00010585 ); - End; - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00010580, 0x00018548 ); - Elif( (0x00010000->fTic1stHelp) ); - - 0x00010000->fTic1stHelp = (0); - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010580, 0x00018548 ); - End; - - - While( 1 ); - cnt=0x000001cf; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001801d, 0, 0x00010000, 1, 0, 998); - While( cnt <= 0x000001f7 ); - Cell( cnt++, 0, 0, 6); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - PrintStr("Ticket McZee: State 5"); - - SetZThis( 900 ); - cnt=0x00000266; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001810f, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x00000280 ); - Cell( cnt++, 0, 0, 6 ); - End; - - CreateChildGob( 0x00010583, 0x00010101, 0x00010101 ); - 0x00010101->kidCallObj = 0x00010583; - 0x00010101->chidCallScript = 0x0021; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - PrintStr("Ticket McZee: State 6"); - - cnt=0x0000027f; - While( cnt >= 0x00000266 ); - Cell( cnt--, 0, 0, 6 ); - End; - - If( .fWay ); - PrintStr("flag fMovie is set to fTrue"); - 0x00010000->fMovie = (1); - RunScriptGob(0x00010000, 0x0021, 0x00010600, 0x0003); - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - SetZThis( 20 ); - ChangeStateThis( 0x0004 ); - End; - ENDCHUNK; - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - PrintStr("Ticket McZee: State 7"); - - If( FGobExists( 0x00016007 ) ); - DestroyGob( 0x00016007 ); - End; - - SetZThis( 50 ); - - cnt = 0x00000234; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018022, 0, 0x00010000, 1, 0, 998); - While( cnt <= 0x0000024e ); - Cell( cnt++, 0,0, 6 ); - If( cnt == 0x0000023e ); - DestroyGob( 0x00010585 ); - End; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - 0x00010000->fTrans = (0); - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x000A); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( StateThis() != 0x0004 ); - ChangeStateThis( 0x0004 ); - 0x00010000->fHelpOn = (1); - Elif( (0x00010000->fHelpOn) ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - Else; - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010580, 0x00018548 ); - End; - ENDCHUNK - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If( _parm[0] == 0 ); - .fWay = 0; - Else; - .fWay = 1; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateThis( 0x0006 ); - ENDCHUNK - - - #line 1 "H:\\BUILD\\SOC\\src\\building\\ticket.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\ticket\mczee1.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\ticket\tkmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\ticket\tkmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\ticket\tkmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\ticket\tkmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\ticket\tkmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\ticket\tkmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\ticket\tkmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\ticket\tkmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\ticket\tkmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\ticket\tkmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\ticket\tkmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\ticket\tkmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\ticket\tkmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\ticket\tkmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\ticket\tkmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\ticket\tkmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\ticket\tkmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\ticket\tkmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\ticket\tkmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\ticket\tkmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\ticket\tkmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\ticket\tkmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\ticket\tkmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\ticket\tkmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\ticket\tkmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\ticket\tkmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000186 ) PACKEDFILE "building\pbm\ticket\tkmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000187 ) PACKEDFILE "building\pbm\ticket\tkmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000188 ) PACKEDFILE "building\pbm\ticket\tkmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000189 ) PACKEDFILE "building\pbm\ticket\tkmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018a ) PACKEDFILE "building\pbm\ticket\tkmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018b ) PACKEDFILE "building\pbm\ticket\tkmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018c ) PACKEDFILE "building\pbm\ticket\tkmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018d ) PACKEDFILE "building\pbm\ticket\tkmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018e ) PACKEDFILE "building\pbm\ticket\tkmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018f ) PACKEDFILE "building\pbm\ticket\tkmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000190 ) PACKEDFILE "building\pbm\ticket\tkmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000191 ) PACKEDFILE "building\pbm\ticket\tkmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000192 ) PACKEDFILE "building\pbm\ticket\tkmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000193 ) PACKEDFILE "building\pbm\ticket\tkmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000194 ) PACKEDFILE "building\pbm\ticket\tkmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000195 ) PACKEDFILE "building\pbm\ticket\tkmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000196 ) PACKEDFILE "building\pbm\ticket\tkmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000197 ) PACKEDFILE "building\pbm\ticket\tkmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000198 ) PACKEDFILE "building\pbm\ticket\tkmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000199 ) PACKEDFILE "building\pbm\ticket\tkmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019a ) PACKEDFILE "building\pbm\ticket\tkmz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019b ) PACKEDFILE "building\pbm\ticket\tkmz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019c ) PACKEDFILE "building\pbm\ticket\tkmz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\ticket\tkmz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\ticket\tkmz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\ticket\tkmz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\ticket\tkmz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\ticket\tkmz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\ticket\tkmz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\ticket\tkmz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\ticket\tkmz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\ticket\tkmz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\ticket\tkmz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\ticket\tkmz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\ticket\tkmz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\ticket\tkmz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\ticket\tkmz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\ticket\tkmz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\ticket\tkmz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\ticket\tkmz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\ticket\tkmz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\ticket\tkmz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\ticket\tkmz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\ticket\tkmz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b2 ) PACKEDFILE "building\pbm\ticket\tkmz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b3 ) PACKEDFILE "building\pbm\ticket\tkmz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b4 ) PACKEDFILE "building\pbm\ticket\tkmz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b5 ) PACKEDFILE "building\pbm\ticket\tkmz74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b6 ) PACKEDFILE "building\pbm\ticket\tkmz75.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\ticket\tkwait1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\ticket\tkwait2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\ticket\tkwait3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\ticket\tkwait4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\ticket\tkwait5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\ticket\tkwait6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\ticket\tkwait7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\ticket\tkwait8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\ticket\tkwait9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\ticket\tkwait10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\ticket\tkwait11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\ticket\tkwait12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\ticket\tkwait13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\ticket\tkwait14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\ticket\tkwait15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\ticket\tkwait16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\ticket\tkwait17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\ticket\tkwait18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\ticket\tkwait19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\ticket\tkwait20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e4 ) PACKEDFILE "building\pbm\ticket\tkwait21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e5 ) PACKEDFILE "building\pbm\ticket\tkwait22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e6 ) PACKEDFILE "building\pbm\ticket\tkwait23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e7 ) PACKEDFILE "building\pbm\ticket\tkwait24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e8 ) PACKEDFILE "building\pbm\ticket\tkwait25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e9 ) PACKEDFILE "building\pbm\ticket\tkwait26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ea ) PACKEDFILE "building\pbm\ticket\tkwait27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001eb ) PACKEDFILE "building\pbm\ticket\tkwait28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ec ) PACKEDFILE "building\pbm\ticket\tkwait29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ed ) PACKEDFILE "building\pbm\ticket\tkwait30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ee ) PACKEDFILE "building\pbm\ticket\tkwait31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ef ) PACKEDFILE "building\pbm\ticket\tkwait32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f0 ) PACKEDFILE "building\pbm\ticket\tkwait33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f1 ) PACKEDFILE "building\pbm\ticket\tkwait34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f2 ) PACKEDFILE "building\pbm\ticket\tkwait35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f3 ) PACKEDFILE "building\pbm\ticket\tkwait36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f4 ) PACKEDFILE "building\pbm\ticket\tkwait37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f5 ) PACKEDFILE "building\pbm\ticket\tkwait38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f6 ) PACKEDFILE "building\pbm\ticket\tkwait39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f7 ) PACKEDFILE "building\pbm\ticket\tkwait40.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000234 ) PACKEDFILE "building\pbm\ticket\tbth5_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000235 ) PACKEDFILE "building\pbm\ticket\tbth5_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000236 ) PACKEDFILE "building\pbm\ticket\tbth5_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000237 ) PACKEDFILE "building\pbm\ticket\tbth5_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000238 ) PACKEDFILE "building\pbm\ticket\tbth5_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000239 ) PACKEDFILE "building\pbm\ticket\tbth5_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023a ) PACKEDFILE "building\pbm\ticket\tbth5_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023b ) PACKEDFILE "building\pbm\ticket\tbth5_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023c ) PACKEDFILE "building\pbm\ticket\tbth5_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023d ) PACKEDFILE "building\pbm\ticket\tbth5_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023e ) PACKEDFILE "building\pbm\ticket\tbth5_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023f ) PACKEDFILE "building\pbm\ticket\tbth5_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000240 ) PACKEDFILE "building\pbm\ticket\tbth5_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000241 ) PACKEDFILE "building\pbm\ticket\tbth5_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000242 ) PACKEDFILE "building\pbm\ticket\tbth5_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000243 ) PACKEDFILE "building\pbm\ticket\tbth5_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000244 ) PACKEDFILE "building\pbm\ticket\tbth5_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000245 ) PACKEDFILE "building\pbm\ticket\tbth5_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000246 ) PACKEDFILE "building\pbm\ticket\tbth5_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000247 ) PACKEDFILE "building\pbm\ticket\tbth5_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000248 ) PACKEDFILE "building\pbm\ticket\tbth5_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000249 ) PACKEDFILE "building\pbm\ticket\tbth5_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024a ) PACKEDFILE "building\pbm\ticket\tbth5_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024b ) PACKEDFILE "building\pbm\ticket\tbth5_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024c ) PACKEDFILE "building\pbm\ticket\tbth5_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024d ) PACKEDFILE "building\pbm\ticket\tbth5_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024e ) PACKEDFILE "building\pbm\ticket\tbth5_27.pbm" ENDCHUNK - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000266 ) PACKEDFILE "building\pbm\ticket\tbth4_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000267 ) PACKEDFILE "building\pbm\ticket\tbth4_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000268 ) PACKEDFILE "building\pbm\ticket\tbth4_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000269 ) PACKEDFILE "building\pbm\ticket\tbth4_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026a ) PACKEDFILE "building\pbm\ticket\tbth4_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026b ) PACKEDFILE "building\pbm\ticket\tbth4_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026c ) PACKEDFILE "building\pbm\ticket\tbth4_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026d ) PACKEDFILE "building\pbm\ticket\tbth4_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026e ) PACKEDFILE "building\pbm\ticket\tbth4_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026f ) PACKEDFILE "building\pbm\ticket\tbth4_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000270 ) PACKEDFILE "building\pbm\ticket\tbth4_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000271 ) PACKEDFILE "building\pbm\ticket\tbth4_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000272 ) PACKEDFILE "building\pbm\ticket\tbth4_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000273 ) PACKEDFILE "building\pbm\ticket\tbth4_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000274 ) PACKEDFILE "building\pbm\ticket\tbth4_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000275 ) PACKEDFILE "building\pbm\ticket\tbth4_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000276 ) PACKEDFILE "building\pbm\ticket\tbth4_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000277 ) PACKEDFILE "building\pbm\ticket\tbth4_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000278 ) PACKEDFILE "building\pbm\ticket\tbth4_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000279 ) PACKEDFILE "building\pbm\ticket\tbth4_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027a ) PACKEDFILE "building\pbm\ticket\tbth4_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027b ) PACKEDFILE "building\pbm\ticket\tbth4_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027c ) PACKEDFILE "building\pbm\ticket\tbth4_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027d ) PACKEDFILE "building\pbm\ticket\tbth4_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027e ) PACKEDFILE "building\pbm\ticket\tbth4_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027f ) PACKEDFILE "building\pbm\ticket\tbth4_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000280 ) PACKEDFILE "building\pbm\ticket\tbth4_27.pbm" ENDCHUNK -#line 257 "H:\\BUILD\\SOC\\src\\building\\ticket.cht" - - - -SET _curgok = 0x00010587 CHUNK( 'GOKD', 0x00010587, ) SHORT BO OSK LONG 0 LONG 0 132 18 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "ticket1.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - StopThis(); - ENDCHUNK - -SET _curgok = 0x00010588 CHUNK( 'GOKD', 0x00010588, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "ticket2.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - StopThis(); - ENDCHUNK - - - - - - -CHUNK( 'GLOP', 0x00018548, ) SCRIPT - If( _parm[0] == 2 ); - ChangeStateGob( 0x00010583, 0x0005 ); - Elif( _parm[0] == 1 ); - ChangeStateGob( 0x00010583, 0x0007 ); - End; -ENDCHUNK - - - - -SET _curgok = 0x00010584 CHUNK( 'GOKD', 0x00010584, ) SHORT BO OSK LONG 0 LONG 0 0 0 30 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\tik2cans.pbm" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ChangeStateGob( 0x00010583, 0x0005 ); - ENDCHUNK - - - - - -SET _curgok = 0x00010585 CHUNK( 'GOKD', 0x00010585, ) SHORT BO OSK LONG 0 LONG 0 0 0 30 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\tik2cam.pbm" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateGob( 0x00010583, 0x0007 ); - ENDCHUNK - - - - - -SET _curgok = 0x00010586 CHUNK( 'GOKD', 0x00010586, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\ticket\tic1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((24 > 31) ? ( ::fBio2 & (1<<(24&31)) ) : ( ::fBio1 & (1<<(24&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (24 & 31); If (24 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 24; ::fBioCtrl = 0; CreateChildGob( 0x00010580, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 63 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\imagin.cht" - - - - - -SET _curgok = 0x00010280 CHUNK( 'GOKD', 0x00010280, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x00010000->keys = ((0x00000002)); - RunScriptGob(0x00010000, 0x0027, 0x00010001); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00010302, 0x00010302 ); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - - Cell( 0x00000040, 0,0, 1 ); - While( PlayingGob( 0x00010302 )); - Cell( 0x00000040, 0, 0, 10 ); - End; - RunScriptGob(0x00010000, 0x0021, 0x00010300, 0x0001); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\imagin\closet2.pbm" ENDCHUNK - - - - - -SET _curgok = 0x00010302 CHUNK( 'GOKD', 0x00010302, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "logn1.avi" ENDCHUNK - - - -CHUNK( 'WAVE', 0x00018110, ) FILE "building\sound\imagin\rllrcstr.wav" ENDCHUNK - - -SET _curgok = 0x00010301 CHUNK( 'GOKD', 0x00010301, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - cnt = 0x00000040; - Cell( cnt++, 0,0, 1 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018110, 0, 0x00010000, 1, 0, 998); - SetNoSlipThis( 1 ); - While( cnt < 0x000000a3 ); - - - If( cnt == 0x00000059 ); - ChangeStateGob( 0x00010300, 0x0002 ); - Elif( cnt == 0x00000067 ); - ChangeStateGob( 0x00010300, 0x0003 ); - Elif( cnt == 0x00000077 ); - ChangeStateGob( 0x00010300, 0x0004 ); - Elif( cnt == 0x0000007e ); - ChangeStateGob( 0x00010300, 0x0005 ); - End; - Cell( cnt, 0,0, 6 ); - ++cnt; - End; - RunScriptGob(0x00010000, 0x0021, 0x00010400, 0x0001); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzroller.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\imagin\cell1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\imagin\cell2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\imagin\cell3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\imagin\cell4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\imagin\cell5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\imagin\cell6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\imagin\cell7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\imagin\cell8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\imagin\cell9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\imagin\cell10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\imagin\cell11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\imagin\cell12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\imagin\cell13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\imagin\cell14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\imagin\cell15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\imagin\cell16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\imagin\cell17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\imagin\cell18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\imagin\cell19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\imagin\cell20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\imagin\cell21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\imagin\cell22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\imagin\cell23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\imagin\cell24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\imagin\cell25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\imagin\cell26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\imagin\cell27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\imagin\cell28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\imagin\cell29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\imagin\cell30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\imagin\cell31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\imagin\cell32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\imagin\cell33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\imagin\cell34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\imagin\cell35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\imagin\cell36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\imagin\cell37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\imagin\cell38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\imagin\cell39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\imagin\cell40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\imagin\cell41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\imagin\cell42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\imagin\cell43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\imagin\cell44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\imagin\cell45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\imagin\cell46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\imagin\cell47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\imagin\cell48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\imagin\cell49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\imagin\cell50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\imagin\cell51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\imagin\cell52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\imagin\cell53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\imagin\cell54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\imagin\cell55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\imagin\cell56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\imagin\cell57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\imagin\cell58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\imagin\cell59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\imagin\cell60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\imagin\cell61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\imagin\cell62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\imagin\cell63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\imagin\cell64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\imagin\cell65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\imagin\cell66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\imagin\cell67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\imagin\cell68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\imagin\cell69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\imagin\cell70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\imagin\cell71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\imagin\cell72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\imagin\cell73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\imagin\cell74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\imagin\cell75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\imagin\cell76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\imagin\cell77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\imagin\cell78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\imagin\cell79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\imagin\cell80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\imagin\cell81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\imagin\cell82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\imagin\cell83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\imagin\cell84.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\imagin\cell85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\imagin\cell86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\imagin\cell87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\imagin\cell88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\imagin\cell89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\imagin\cell90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\imagin\cell91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\imagin\cell92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\imagin\cell93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\imagin\cell94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\imagin\cell95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\imagin\cell96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\imagin\cell97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\imagin\cell98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\imagin\cell99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\imagin\cell100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\imagin\cell101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\imagin\cell102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\imagin\cell103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\imagin\cell104.pbm" ENDCHUNK - -#line 61 "H:\\BUILD\\SOC\\src\\building\\imagin.cht" -#line 64 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\lobby.cht" - - - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00010003, ) FILE "building\sound\lobby\bingo.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018015, ) FILE "building\sound\lobby\04_logn3.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018023, ) FILE "building\sound\lobby\VO57A.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001803c, ) FILE "building\sound\lobby\VO57aa.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018024, ) FILE "building\sound\lobby\VO58.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018025, ) FILE "building\sound\lobby\VO59.wav" ENDCHUNK - - - -SET _curgok = 0x00010608 CHUNK( 'GOKD', 0x00010608, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - -If (!((0x00010000->kstEntry) == 2 || (0x00010000->kstEntry) == 3 || (0x00010000->kstEntry) == 5)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\lobby.cht", ", line ", NumToStr(42,"")); End; - - fFirstLoop = 1; - - - - - - .f1sthelp=1; - .fLipsink = 0; - - If( (0x00010000->fLobby1PS) && (0x00010000->kstEntry) == 0x0002 ); - ChangeStateThis( 0x0003 ); - Else; - ChangeStateThis((0x00010000->kstEntry)); - End; - ENDCHUNK - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Lobby Mz: State 2"); - - Cell( 0x000000f7, 0,0, 6); - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00010600, 0x00018551 ); - Elif( (0x00010000->fLob1stHelp) ); - 0x00010000->fLob1stHelp = (0); - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010600, 0x00018551 ); - End; - - fFirstLoop = 1; - While( !0x00010600->fExitLobby ); - - - - - - - - - - - - - - - - - If( !fFirstLoop ); - If( .fLipsink ); - .fLipsink = 0; - cnt = 0x000001d0; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018025, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x000001e6 ); - Cell( cnt++, 0, 0, 6); - End; - Cell( 0x000000f3, 0, 0, 7); - Cell( 0x000000f4, 0, 0, 8); - Cell( 0x000000f5, 0, 0, 8); - Cell( 0x000000f6, 0, 0, 7); - Else; - cnt = 0x00000105; - While( cnt > 0x000000f7 ); - Cell( cnt--, 0, 0, 6); - End; - End; - End; - fFirstLoop = 0; - - cnt = 0x000000f7; - While( cnt < 0x00000107 ); - Cell( cnt++, 0, 0, 6); - End; - - - If( !0x00010600->fExitLobby ); - - If( Rnd(100) < 20 ); - While( cnt < 0x00000119 ); - Cell( cnt++, 0, 0, 6); - End; - - - - - - If( !0x00010600->fExitLobby ); - Cell( 0x0000010a, 0, 0, 6); - End; - End; - Else; - Cell( 0x0000010a, 0, 0, 6); - Cell( 0x00000044, 0, 0, 6); - Cell( 0x00000118, 0, 0, 6); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - - - ChangeStateThis( 0x0006 ); - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Lobby Mz: State 3"); - - If( !(0x00010000->fLobby1PS) ); - PrintStr("flag fLobby1PS = fFalse"); - If( (0x00010000->fMovie) ); - PrintStr("flag fMovie = fTrue"); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x000000f1, 0,0, 6); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - cnt = 0x000000f1; - While( cnt < 0x00000119 ); - Cell( cnt++, 0,0, 6); - End; - - ChangeStateThis( 0x0006 ); - Else; - ChangeStateThis( 0x0002 ); - End; - Else; - 0x00010000->fLobby1PS = (0); - If( (0x00010000->fMovie) ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - End; - cnt = 0x00000049; - Cell( 0x00000049, 0,0, 6); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - While( cnt < 0x000000b4 ); - If( cnt == 0x0000005e ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018023, 0, 0x00010000, 1, 0, 998); - Elif( cnt == 0x00000078 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001803c, 0, 0x00010000, 1, 0, 998); - End; - Cell( cnt++, 0,0, 6); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - If( (0x00010000->fMovie) ); - - cnt = 0x00000109; - While( cnt < 0x00000119 ); - Cell( cnt++, 0,0, 6); - End; - - ChangeStateThis( 0x0006 ); - Else; - ChangeStateThis( 0x0004 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Lobby Mz: State 4"); - cnt = 0x000000b4; - Cell( 0x000000b4, 0,0, 1); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018024, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x000000f7 ); - Cell( cnt++, 0,0, 6); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - ChangeStateThis( 0x0002 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Lobby Mz: State 5"); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - Cell( 0x0000016d, 0, 0, 1); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00010600, 0x0001060a, 0x0001060a ); - - - Cell( 0x0000016d, 0,0, 100 ); - While( PlayingGob( 0x0001060a )); - Cell( 0x0000016d, 0, 0, 10 ); - End; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0007); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Lobby Mz: State 6"); - cnt = 0x0000011a; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( cnt < 0x00000143 ); - Cell( cnt++, 0,0, 6); - End; - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0005); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PrintStr("Lobby Mz: Clicked"); - If( StateThis() != 0x0002 ); - ChangeStateThis( 0x0002 ); - 0x00010000->fHelpOn = (1); - Elif( (0x00010000->fHelpOn) ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - Else; - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010600, 0x00018551 ); - End; - ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\lobby\fork217.pbm" ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzlobby.seq" - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\lobby\l1mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\lobby\l1mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\lobby\l1mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\lobby\l1mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\lobby\l1mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\lobby\l1mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\lobby\l1mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\lobby\l1mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\lobby\l1mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\lobby\l1mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\lobby\l1mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\lobby\l1mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\lobby\l1mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\lobby\l1mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\lobby\l1mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\lobby\l1mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\lobby\l1mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\lobby\l1mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\lobby\l1mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\lobby\l1mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\lobby\l1mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\lobby\l1mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\lobby\l1mz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\lobby\l1mz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\lobby\l1mz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\lobby\l1mz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\lobby\l1mz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\lobby\l1mz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\lobby\l1mz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\lobby\l1mz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\lobby\l1mz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\lobby\l1mz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\lobby\l1mz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\lobby\l1mz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\lobby\l1mz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\lobby\l1mz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\lobby\l1mz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\lobby\l1mz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\lobby\l1mz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\lobby\l1mz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\lobby\l1mz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\lobby\l1mz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\lobby\l1mz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\lobby\l1mz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\lobby\l1mz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\lobby\l1mz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\lobby\l1mz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\lobby\l1mz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\lobby\l1mz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\lobby\l1mz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\lobby\l1mz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\lobby\l1mz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\lobby\l1mz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\lobby\l1mz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\lobby\l1mz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\lobby\l1mz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\lobby\l1mz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\lobby\l1mz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\lobby\l1mz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\lobby\l1mz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\lobby\l1mz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\lobby\l1mz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\lobby\l1mz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\lobby\l1mz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\lobby\l1mz74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\lobby\l1mz75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\lobby\l1mz76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\lobby\l1mz77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\lobby\l1mz78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\lobby\l1mz79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\lobby\l1mz80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\lobby\l1mz81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\lobby\l1mz82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\lobby\l1mz83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\lobby\l1mz84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\lobby\l1mz85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\lobby\l1mz86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\lobby\l1mz87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\lobby\l1mz88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\lobby\l1mz89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\lobby\l1mz90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\lobby\l1mz91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\lobby\l1mz92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\lobby\l1mz93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\lobby\l1mz94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\lobby\l1mz95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\lobby\l1mz96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\lobby\l1mz97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\lobby\l1mz98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\lobby\l1mz99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\lobby\l1mz100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\lobby\l1mz101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\lobby\l1mz102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\lobby\l1mz103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\lobby\l1mz104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\lobby\l1mz105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\lobby\l1mz106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\lobby\l1mz107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\lobby\l1mz108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\lobby\l1mz109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\lobby\l1mz110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\lobby\l1mz111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\lobby\l1mz112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\lobby\l1mz113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\lobby\l1mz114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\lobby\l1mz115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\lobby\l1mz116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\lobby\l1mz117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\lobby\l1mz118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\lobby\l1mz119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\lobby\l1mz120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\lobby\l1mz121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\lobby\l1mz122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\lobby\l1mz123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\lobby\l1mz124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\lobby\l1mz125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\lobby\l1mz126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\lobby\l1mz127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\lobby\l1mz128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\lobby\l1mz129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\lobby\l1mz130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\lobby\l1mz131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\lobby\l1mz132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\lobby\l1mz133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\lobby\l1mz134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\lobby\l1mz135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\lobby\l1mz136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\lobby\l1mz137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\lobby\l1mz138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\lobby\l1mz139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\lobby\l1mz140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\lobby\l1mz141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\lobby\l1mz142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\lobby\l1mz143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\lobby\l1mz144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\lobby\l1mz145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\lobby\l1mz146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\lobby\l1mz147.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\lobby\l1mz148.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\lobby\l1mz149.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\lobby\l1mz150.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\lobby\l1mz151.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\lobby\l1mz152.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\lobby\l1mz153.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\lobby\l1mz154.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\lobby\l1mz155.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\lobby\l1mz156.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\lobby\l1mz157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\lobby\l1mz158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\lobby\l1mz159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\lobby\l1mz160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\lobby\l1mz161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\lobby\l1mz162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\lobby\l1mz163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\lobby\l1mz164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\lobby\l1mz165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\lobby\l1mz166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\lobby\l1mz167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\lobby\l1mz168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\lobby\l1mz169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e9 ) PACKEDFILE "building\pbm\lobby\l1mz170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ea ) PACKEDFILE "building\pbm\lobby\l1mz171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000eb ) PACKEDFILE "building\pbm\lobby\l1mz172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ec ) PACKEDFILE "building\pbm\lobby\l1mz173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ed ) PACKEDFILE "building\pbm\lobby\l1mz174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ee ) PACKEDFILE "building\pbm\lobby\l1mz175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ef ) PACKEDFILE "building\pbm\lobby\l1mz176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f0 ) PACKEDFILE "building\pbm\lobby\l1mz177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f1 ) PACKEDFILE "building\pbm\lobby\l1mz178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f2 ) PACKEDFILE "building\pbm\lobby\l1mz179.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f3 ) PACKEDFILE "building\pbm\lobby\l1mz180.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\lobby\l1mz181.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\lobby\l1mz182.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\lobby\l1mz183.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f7 ) PACKEDFILE "building\pbm\lobby\l1mz184.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f8 ) PACKEDFILE "building\pbm\lobby\l1mz185.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f9 ) PACKEDFILE "building\pbm\lobby\l1mz186.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fa ) PACKEDFILE "building\pbm\lobby\l1mz187.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fb ) PACKEDFILE "building\pbm\lobby\l1mz188.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fc ) PACKEDFILE "building\pbm\lobby\l1mz189.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fd ) PACKEDFILE "building\pbm\lobby\l1mz190.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fe ) PACKEDFILE "building\pbm\lobby\l1mz191.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ff ) PACKEDFILE "building\pbm\lobby\l1mz192.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000100 ) PACKEDFILE "building\pbm\lobby\l1mz193.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000101 ) PACKEDFILE "building\pbm\lobby\l1mz194.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000102 ) PACKEDFILE "building\pbm\lobby\l1mz195.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000103 ) PACKEDFILE "building\pbm\lobby\l1mz196.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000104 ) PACKEDFILE "building\pbm\lobby\l1mz197.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000105 ) PACKEDFILE "building\pbm\lobby\l1mz198.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000106 ) PACKEDFILE "building\pbm\lobby\l1mz199.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000107 ) PACKEDFILE "building\pbm\lobby\l1mz200.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\lobby\l1mz201.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\lobby\l1mz202.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\lobby\l1mz203.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\lobby\l1mz204.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\lobby\l1mz205.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\lobby\l1mz206.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\lobby\l1mz207.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\lobby\l1mz208.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\lobby\l1mz209.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\lobby\l1mz210.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\lobby\l1mz211.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\lobby\l1mz212.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\lobby\l1mz213.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\lobby\l1mz214.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\lobby\l1mz215.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\lobby\l1mz216.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\lobby\l1mz217.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\lobby\l1mz218.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\lobby\l1mz219.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\lobby\l1mz220.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011c ) PACKEDFILE "building\pbm\lobby\l1mz221.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011d ) PACKEDFILE "building\pbm\lobby\l1mz222.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011e ) PACKEDFILE "building\pbm\lobby\l1mz223.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011f ) PACKEDFILE "building\pbm\lobby\l1mz224.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000120 ) PACKEDFILE "building\pbm\lobby\l1mz225.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000121 ) PACKEDFILE "building\pbm\lobby\l1mz226.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000122 ) PACKEDFILE "building\pbm\lobby\l1mz227.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000123 ) PACKEDFILE "building\pbm\lobby\l1mz228.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000124 ) PACKEDFILE "building\pbm\lobby\l1mz229.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000125 ) PACKEDFILE "building\pbm\lobby\l1mz230.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000126 ) PACKEDFILE "building\pbm\lobby\l1mz231.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000127 ) PACKEDFILE "building\pbm\lobby\l1mz232.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000128 ) PACKEDFILE "building\pbm\lobby\l1mz233.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000129 ) PACKEDFILE "building\pbm\lobby\l1mz234.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012a ) PACKEDFILE "building\pbm\lobby\l1mz235.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012b ) PACKEDFILE "building\pbm\lobby\l1mz236.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012c ) PACKEDFILE "building\pbm\lobby\l1mz237.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012d ) PACKEDFILE "building\pbm\lobby\l1mz238.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012e ) PACKEDFILE "building\pbm\lobby\l1mz239.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012f ) PACKEDFILE "building\pbm\lobby\l1mz240.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000130 ) PACKEDFILE "building\pbm\lobby\l1mz241.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000131 ) PACKEDFILE "building\pbm\lobby\l1mz242.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000132 ) PACKEDFILE "building\pbm\lobby\l1mz243.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000133 ) PACKEDFILE "building\pbm\lobby\l1mz244.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000134 ) PACKEDFILE "building\pbm\lobby\l1mz245.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000135 ) PACKEDFILE "building\pbm\lobby\l1mz246.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000136 ) PACKEDFILE "building\pbm\lobby\l1mz247.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000137 ) PACKEDFILE "building\pbm\lobby\l1mz248.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000138 ) PACKEDFILE "building\pbm\lobby\l1mz249.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000139 ) PACKEDFILE "building\pbm\lobby\l1mz250.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\lobby\l1mz251.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\lobby\l1mz252.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\lobby\l1mz253.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\lobby\l1mz254.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\lobby\l1mz255.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\lobby\l1mz256.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\lobby\l1mz257.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\lobby\l1mz258.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\lobby\l1mz259.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\lobby\l1mz260.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\lobby\l3mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\lobby\l3mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\lobby\l3mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\lobby\l3mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\lobby\l3mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\lobby\l3mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\lobby\l3mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\lobby\l3mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\lobby\l3mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\lobby\l3mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\lobby\l3mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\lobby\l3mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\lobby\l3mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\lobby\l3mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\lobby\l3mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\lobby\l3mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\lobby\l3mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\lobby\l3mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\lobby\l3mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\lobby\l3mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\lobby\l3mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\lobby\l3mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\lobby\l3mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\lobby\l3mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\lobby\l3mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\lobby\l3mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000186 ) PACKEDFILE "building\pbm\lobby\l3mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000187 ) PACKEDFILE "building\pbm\lobby\l3mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000188 ) PACKEDFILE "building\pbm\lobby\l3mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000189 ) PACKEDFILE "building\pbm\lobby\l3mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018a ) PACKEDFILE "building\pbm\lobby\l3mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018b ) PACKEDFILE "building\pbm\lobby\l3mz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018c ) PACKEDFILE "building\pbm\lobby\l3mz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018d ) PACKEDFILE "building\pbm\lobby\l3mz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018e ) PACKEDFILE "building\pbm\lobby\l3mz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018f ) PACKEDFILE "building\pbm\lobby\l3mz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000190 ) PACKEDFILE "building\pbm\lobby\l3mz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000191 ) PACKEDFILE "building\pbm\lobby\l3mz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000192 ) PACKEDFILE "building\pbm\lobby\l3mz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000193 ) PACKEDFILE "building\pbm\lobby\l3mz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000194 ) PACKEDFILE "building\pbm\lobby\l3mz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000195 ) PACKEDFILE "building\pbm\lobby\l3mz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000196 ) PACKEDFILE "building\pbm\lobby\l3mz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000197 ) PACKEDFILE "building\pbm\lobby\l3mz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000198 ) PACKEDFILE "building\pbm\lobby\l3mz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000199 ) PACKEDFILE "building\pbm\lobby\l3mz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019a ) PACKEDFILE "building\pbm\lobby\l3mz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019b ) PACKEDFILE "building\pbm\lobby\l3mz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019c ) PACKEDFILE "building\pbm\lobby\l3mz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\lobby\l3mz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\lobby\l3mz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\lobby\l3mz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\lobby\l3mz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\lobby\l3mz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\lobby\l3mz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\lobby\l3mz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\lobby\l3mz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\lobby\l3mz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\lobby\l3mz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\lobby\l3mz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\lobby\l3mz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\lobby\l3mz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\lobby\l3mz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\lobby\l3mz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\lobby\l3mz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\lobby\l3mz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\lobby\l3mz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\lobby\l3mz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\lobby\l3mz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\lobby\l3mz70.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\lobby\lipsk157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\lobby\lipsk158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\lobby\lipsk159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\lobby\lipsk160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\lobby\lipsk161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\lobby\lipsk162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\lobby\lipsk163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\lobby\lipsk164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\lobby\lipsk165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\lobby\lipsk166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\lobby\lipsk167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\lobby\lipsk168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\lobby\lipsk169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\lobby\lipsk170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\lobby\lipsk171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\lobby\lipsk172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\lobby\lipsk173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\lobby\lipsk174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\lobby\lipsk175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\lobby\lipsk176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e4 ) PACKEDFILE "building\pbm\lobby\lipsk177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e5 ) PACKEDFILE "building\pbm\lobby\lipsk178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e6 ) PACKEDFILE "building\pbm\lobby\lipsk179.pbm" ENDCHUNK -#line 270 "H:\\BUILD\\SOC\\src\\building\\lobby.cht" - -SET _curgok = 0x0001060a CHUNK( 'GOKD', 0x0001060a, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "04logn3.avi" ENDCHUNK - - - -CHUNK( 'GLOP', 0x00018551, ) SCRIPT - If( _parm[0] == 0 ); - If( 0x00010608->f1sthelp ); - 0x00010608->fLipsink = 1; - 0x00010608->f1sthelp = 0; - End; - Exit(); - Elif( _parm[0] == 1 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - 0x00010600->fExitLobby=1; - - Elif( _parm[0] == 2 ); - - - - - RunScriptGob(0x00010000, 0x0021, 0x00010800, 0x0001); - End; -ENDCHUNK - -SET _curgok = 0x00010607 CHUNK( 'GOKD', 0x00010607, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lob1door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( !0x00010600->fExitLobby ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - If( (0x00010000->fHelpOn) ); - DestroyGob( 0x00016007 ); - End; - If( StateGob(0x00010608) != 0x0002 ); - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0005); - Else; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - 0x00010600->fExitLobby=1; - End; - End; - ENDCHUNK - - - -SET _curgok = 0x00010603 CHUNK( 'GOKD', 0x00010603, ) SHORT BO OSK LONG 0 LONG 0 0 0 45 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\poster3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((35 > 31) ? ( ::fBio2 & (1<<(35&31)) ) : ( ::fBio1 & (1<<(35&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (35 & 31); If (35 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 35; ::fBioCtrl = 0; CreateChildGob( 0x00010600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - -SET _curgok = 0x00010604 CHUNK( 'GOKD', 0x00010604, ) SHORT BO OSK LONG 0 LONG 0 0 0 45 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\poster4.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((36 > 31) ? ( ::fBio2 & (1<<(36&31)) ) : ( ::fBio1 & (1<<(36&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (36 & 31); If (36 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 36; ::fBioCtrl = 0; CreateChildGob( 0x00010600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - -SET _curgok = 0x00010703 CHUNK( 'GOKD', 0x00010703, ) SHORT BO OSK LONG 0 LONG 0 0 0 22 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lob2door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010500, 0x0001); - ENDCHUNK - -SET _curgok = 0x00010705 CHUNK( 'GOKD', 0x00010705, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lob2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010704 CHUNK( 'GOKD', 0x00010704, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 403 187 429 204 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - -SET _curgok = 0x00010609 CHUNK( 'GOKD', 0x00010609, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((30 > 31) ? ( ::fBio2 & (1<<(30&31)) ) : ( ::fBio1 & (1<<(30&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (30 & 31); If (30 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 30; ::fBioCtrl = 0; CreateChildGob( 0x00010600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 65 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\snackbar.cht" - - - - -CHUNK( 'WAVE', 0x00018026, ) FILE "building\sound\snackbar\VO60.wav" ENDCHUNK - -SET _curgok = 0x00010806 CHUNK( 'GOKD', 0x00010806, ) SHORT BO OSK LONG 0 - LONG 0 0 0 0 - LONG 0 0 0x00000002 0x00000001 0x0020 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - While( 1 ); - cnt=0x000000d5; - While( cnt <= 0x000000e3 ); - Cell( cnt++, 0, 0, 6 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018026, 0, 0x00010000, 1, 0, 998); - cnt=0x00000040; - While( cnt <= 0x000000d2 ); - Cell( cnt++, 0, 0, 6 ); - End; - - ChangeStateThis( 0x0001 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\snackbar.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\snackbar\mczee1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\snackbar\mczee2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\snackbar\mczee3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\snackbar\mczee4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\snackbar\mczee5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\snackbar\mczee6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\snackbar\mczee7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\snackbar\mczee8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\snackbar\mczee9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\snackbar\mczee10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\snackbar\mczee11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\snackbar\mczee12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\snackbar\mczee13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\snackbar\mczee14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\snackbar\mczee15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\snackbar\mczee16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\snackbar\mczee17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\snackbar\mczee18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\snackbar\mczee19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\snackbar\mczee20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\snackbar\mczee21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\snackbar\mczee22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\snackbar\mczee23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\snackbar\mczee24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\snackbar\mczee25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\snackbar\mczee26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\snackbar\mczee27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\snackbar\mczee28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\snackbar\mczee29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\snackbar\mczee30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\snackbar\mczee31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\snackbar\mczee32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\snackbar\mczee33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\snackbar\mczee34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\snackbar\mczee35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\snackbar\mczee36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\snackbar\mczee37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\snackbar\mczee38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\snackbar\mczee39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\snackbar\mczee40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\snackbar\mczee41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\snackbar\mczee42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\snackbar\mczee43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\snackbar\mczee44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\snackbar\mczee45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\snackbar\mczee46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\snackbar\mczee47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\snackbar\mczee48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\snackbar\mczee49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\snackbar\mczee50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\snackbar\mczee51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\snackbar\mczee52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\snackbar\mczee53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\snackbar\mczee54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\snackbar\mczee55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\snackbar\mczee56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\snackbar\mczee57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\snackbar\mczee58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\snackbar\mczee59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\snackbar\mczee60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\snackbar\mczee61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\snackbar\mczee62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\snackbar\mczee63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\snackbar\mczee64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\snackbar\mczee65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\snackbar\mczee66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\snackbar\mczee67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\snackbar\mczee68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\snackbar\mczee69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\snackbar\mczee70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\snackbar\mczee71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\snackbar\mczee72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\snackbar\mczee73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\snackbar\mczee74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\snackbar\mczee75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\snackbar\mczee76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\snackbar\mczee77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\snackbar\mczee78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\snackbar\mczee79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\snackbar\mczee80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\snackbar\mczee81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\snackbar\mczee82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\snackbar\mczee83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\snackbar\mczee84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\snackbar\mczee85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\snackbar\mczee86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\snackbar\mczee87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\snackbar\mczee88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\snackbar\mczee89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\snackbar\mczee90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\snackbar\mczee91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\snackbar\mczee92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\snackbar\mczee93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\snackbar\mczee94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\snackbar\mczee95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\snackbar\mczee96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\snackbar\mczee97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\snackbar\mczee98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\snackbar\mczee99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\snackbar\mczee100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\snackbar\mczee101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\snackbar\mczee102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\snackbar\mczee103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\snackbar\mczee104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\snackbar\mczee105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\snackbar\mczee106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\snackbar\mczee107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\snackbar\mczee108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\snackbar\mczee109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\snackbar\mczee110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\snackbar\mczee111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\snackbar\mczee112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\snackbar\mczee113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\snackbar\mczee114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\snackbar\mczee115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\snackbar\mczee116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\snackbar\mczee117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\snackbar\mczee118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\snackbar\mczee119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\snackbar\mczee120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\snackbar\mczee121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\snackbar\mczee122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\snackbar\mczee123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\snackbar\mczee124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\snackbar\mczee125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\snackbar\mczee126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\snackbar\mczee127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\snackbar\mczee128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\snackbar\mczee129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\snackbar\mczee130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\snackbar\mczee131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\snackbar\mczee132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\snackbar\mczee133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\snackbar\mczee134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\snackbar\mczee135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\snackbar\mczee136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\snackbar\mczee137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\snackbar\mczee138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\snackbar\mczee139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\snackbar\mczee140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\snackbar\mczee141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\snackbar\mczee142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\snackbar\mczee143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\snackbar\mczee144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\snackbar\mczee145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\snackbar\mczee146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\snackbar\mczee147.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\snackbar\cyc46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\snackbar\cyc47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\snackbar\cyc48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\snackbar\cyc49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\snackbar\cyc50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\snackbar\cyc51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\snackbar\cyc52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\snackbar\cyc53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\snackbar\cyc54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\snackbar\cyc55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\snackbar\cyc56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\snackbar\cyc57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\snackbar\cyc58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\snackbar\cyc59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\snackbar\cyc60.pbm" ENDCHUNK -#line 36 "H:\\BUILD\\SOC\\src\\building\\snackbar.cht" - -SET _curgok = 0x00010807 CHUNK( 'GOKD', 0x00010807, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((28 > 31) ? ( ::fBio2 & (1<<(28&31)) ) : ( ::fBio1 & (1<<(28&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (28 & 31); If (28 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 28; ::fBioCtrl = 0; CreateChildGob( 0x00010800, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010808 CHUNK( 'GOKD', 0x00010808, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((29 > 31) ? ( ::fBio2 & (1<<(29&31)) ) : ( ::fBio1 & (1<<(29&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (29 & 31); If (29 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 29; ::fBioCtrl = 0; CreateChildGob( 0x00010800, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -#line 66 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\theatre.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018107, ) FILE "building\sound\theatre\30_thr4.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018027, ) FILE "building\sound\theatre\21_thr1a.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018029, ) FILE "building\sound\theatre\VO74B.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018108, ) FILE "building\sound\theatre\VO75.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001802a, ) FILE "building\sound\theatre\VO76.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001810d, ) FILE "building\sound\theatre\21_thr1b.wav" ENDCHUNK - -SET _curgok = 0x00010c03 CHUNK( 'GOKD', 0x00010c03, ) SHORT BO OSK LONG 0 LONG 0 0 0 550 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x0000003f ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzthea.seq" - - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\thr2a1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\thr2a2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\theatre\thr2a3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\theatre\thr2a4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\theatre\thr2a5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\theatre\thr2a6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\theatre\thr2a7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\theatre\thr2a8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\theatre\thr2a9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\theatre\thr2a10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\theatre\thr2a11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\theatre\thr2a12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\theatre\thr2a13.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\theatre\thr2b1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\theatre\thr2b2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\theatre\thr2b3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\theatre\thr2b4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\theatre\thr2b5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\theatre\thr2b6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\theatre\thr2b7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\theatre\thr2b8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\theatre\thr2b9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\theatre\thr2b10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\theatre\thr2b11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\theatre\thr2b12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\theatre\thr2b13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\theatre\thr2b14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\theatre\thr2b15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\theatre\thr2b16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\theatre\thr2b17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\theatre\thr2b18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\theatre\thr2b19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\theatre\thr2b20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\theatre\thr2b21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\theatre\thr2b22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\theatre\thr2b23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\theatre\thr2b24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\theatre\thr2b25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\theatre\thr2b26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\theatre\thr2b27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\theatre\thr2b28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\theatre\thr2b29.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\theatre\thr2d1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\theatre\thr2d2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\theatre\thr2d3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\theatre\thr2d4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\theatre\thr2d5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\theatre\thr2d6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\theatre\thr2d7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\theatre\thr2d8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\theatre\thr2d9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\theatre\thr2d10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\theatre\thr2d11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\theatre\thr2d12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\theatre\thr2d13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\theatre\thr2d14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\theatre\thr2d15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\theatre\thr2d16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\theatre\thr2d17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\theatre\thr2d18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\theatre\thr2d19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\theatre\thr2d20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\theatre\thr2d21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\theatre\thr2d22.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\theatre\thr2e1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\theatre\thr2e2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\theatre\thr2e3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\theatre\thr2e4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\theatre\thr2e5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\theatre\thr2e6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\theatre\thr2e7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\theatre\thr2e8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\theatre\thr2e9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\theatre\thr2e10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\theatre\thr2e11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\theatre\thr2e12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\theatre\thr2e13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\theatre\thr2e14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\theatre\thr2e15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\theatre\thr2e16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\theatre\thr2e17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\theatre\thr2e18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\theatre\thr2e19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\theatre\thr2e20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\theatre\thr2e21.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\theatre\thr2f1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\theatre\thr2f2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\theatre\thr2f3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\theatre\thr2f4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\theatre\thr2f5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\theatre\thr2f6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\theatre\thr2f7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\theatre\thr2f8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\theatre\thr2f9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\theatre\thr2f10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\theatre\thr2f11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\theatre\thr2f12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\theatre\thr2f13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\theatre\thr2f14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\theatre\thr2f15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\theatre\thr2f16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\theatre\thr2f17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\theatre\thr2f18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\theatre\thr2f19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\theatre\thr2f20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\theatre\thr2f21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\theatre\thr2f22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\theatre\thr2f23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\theatre\thr2f24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\theatre\thr2f25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\theatre\thr2f26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\theatre\thr2f27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\theatre\thr2f28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\theatre\thr2f29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\theatre\thr2f30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\theatre\thr2f31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\theatre\thr2f32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\theatre\thr2f33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\theatre\thr2f34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\theatre\thr2f35.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\theatre\thrcy1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\theatre\thrcy2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\theatre\thrcy3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f7 ) PACKEDFILE "building\pbm\theatre\thrcy4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f8 ) PACKEDFILE "building\pbm\theatre\thrcy5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f9 ) PACKEDFILE "building\pbm\theatre\thrcy6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fa ) PACKEDFILE "building\pbm\theatre\thrcy7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fb ) PACKEDFILE "building\pbm\theatre\thrcy8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fc ) PACKEDFILE "building\pbm\theatre\thrcy9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fd ) PACKEDFILE "building\pbm\theatre\thrcy10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fe ) PACKEDFILE "building\pbm\theatre\thrcy11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ff ) PACKEDFILE "building\pbm\theatre\thrcy12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000100 ) PACKEDFILE "building\pbm\theatre\thrcy13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000101 ) PACKEDFILE "building\pbm\theatre\thrcy14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000102 ) PACKEDFILE "building\pbm\theatre\thrcy15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000103 ) PACKEDFILE "building\pbm\theatre\thrcy16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000104 ) PACKEDFILE "building\pbm\theatre\thrcy17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000105 ) PACKEDFILE "building\pbm\theatre\thrcy18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000106 ) PACKEDFILE "building\pbm\theatre\thrcy19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000107 ) PACKEDFILE "building\pbm\theatre\thrcy20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\theatre\thrcy21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\theatre\thrcy22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\theatre\thrcy23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\theatre\thrcy24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\theatre\thrcy25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\theatre\thrcy26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\theatre\thrcy27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\theatre\thrcy28.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\theatre\thr1_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\theatre\thr1_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\theatre\thr1_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\theatre\thr1_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\theatre\thr1_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\theatre\thr1_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\theatre\thr1_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\theatre\thr1_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\theatre\thr1_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\theatre\thr1_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000144 ) PACKEDFILE "building\pbm\theatre\thr1_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000145 ) PACKEDFILE "building\pbm\theatre\thr1_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000146 ) PACKEDFILE "building\pbm\theatre\thr1_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000147 ) PACKEDFILE "building\pbm\theatre\thr1_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000148 ) PACKEDFILE "building\pbm\theatre\thr1_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000149 ) PACKEDFILE "building\pbm\theatre\thr1_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014a ) PACKEDFILE "building\pbm\theatre\thr1_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014b ) PACKEDFILE "building\pbm\theatre\thr1_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014c ) PACKEDFILE "building\pbm\theatre\thr1_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014d ) PACKEDFILE "building\pbm\theatre\thr1_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014e ) PACKEDFILE "building\pbm\theatre\thr1_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014f ) PACKEDFILE "building\pbm\theatre\thr1_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000150 ) PACKEDFILE "building\pbm\theatre\thr1_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000151 ) PACKEDFILE "building\pbm\theatre\thr1_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000152 ) PACKEDFILE "building\pbm\theatre\thr1_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000153 ) PACKEDFILE "building\pbm\theatre\thr1_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000154 ) PACKEDFILE "building\pbm\theatre\thr1_27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000155 ) PACKEDFILE "building\pbm\theatre\thr1_28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000156 ) PACKEDFILE "building\pbm\theatre\thr1_29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000157 ) PACKEDFILE "building\pbm\theatre\thr1_30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000158 ) PACKEDFILE "building\pbm\theatre\thr1_31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000159 ) PACKEDFILE "building\pbm\theatre\thr1_32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015a ) PACKEDFILE "building\pbm\theatre\thr1_33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015b ) PACKEDFILE "building\pbm\theatre\thr1_34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015c ) PACKEDFILE "building\pbm\theatre\thr1_35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015d ) PACKEDFILE "building\pbm\theatre\thr1_36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015e ) PACKEDFILE "building\pbm\theatre\thr1_37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015f ) PACKEDFILE "building\pbm\theatre\thr1_38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000160 ) PACKEDFILE "building\pbm\theatre\thr1_39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000161 ) PACKEDFILE "building\pbm\theatre\thr1_40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000162 ) PACKEDFILE "building\pbm\theatre\thr1_41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000163 ) PACKEDFILE "building\pbm\theatre\thr1_42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000164 ) PACKEDFILE "building\pbm\theatre\thr1_43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000165 ) PACKEDFILE "building\pbm\theatre\thr1_44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000166 ) PACKEDFILE "building\pbm\theatre\thr1_45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000167 ) PACKEDFILE "building\pbm\theatre\thr1_46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000168 ) PACKEDFILE "building\pbm\theatre\thr1_47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000169 ) PACKEDFILE "building\pbm\theatre\thr1_48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016a ) PACKEDFILE "building\pbm\theatre\thr1_49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016b ) PACKEDFILE "building\pbm\theatre\thr1_50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\theatre\thr1_51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\theatre\thr1_52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\theatre\thr1_53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\theatre\thr1_54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\theatre\thr1_55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\theatre\thr1_56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\theatre\thr1_57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\theatre\thr1_58.pbm" ENDCHUNK - -#line 89 "H:\\BUILD\\SOC\\src\\building\\theatre.cht" - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - PrintStr("Theater McZee: State 1"); - - - -If (!((0x00010000->kstEntry) == 0x0004 || (0x00010000->kstEntry) == 0x0005 || (0x00010000->kstEntry) == 0x0007)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\theatre.cht", ", line ", NumToStr(95,"")); End; - - - 0x00010000->fHelpOn = (1); - - .fHelpState = 1; - - .fWay = 0; - - - .MzNextAction = 0; - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - If ((0x00010000->kstEntry) == 0x0007); - .MzNextAction = 0x0007; - 0x00010000->kstEntry = (0x0002); - End; - - ChangeStateThis((0x00010000->kstEntry)); - ENDCHUNK - - - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 2"); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - cnt=0x00000040; - While( cnt <= 0x0000004c ); - Cell( cnt++, 0, 0, 6 ); - End; - ChangeStateThis( .MzNextAction ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 3"); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - - cnt=0x0000004d; - While( cnt >= 0x00000040 ); - Cell( cnt--, 0, 0, 6 ); - End; - If (FGobExists(0x00012300)); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - End; - - If( .MzNextAction == 0x0014 ); - 0x00010000->kstEntry = (0x0003); - - - - If (FGobExists(0x00012300)); - PrintStr("Enqueuing TheaterClose"); EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - End; - If (1 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!1 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; ChangeStateGob(0x00010c00, 0x0003); CreateChildGob(0x00010c00, 0x00012300, 0x00012300); CreateChildGob(0x00010c00, 0x00010c0a, 0x00010c0a); CreateChildGob(0x00010c00, 0x00010c04, 0x00010c04); CreateChildGob(0x00010c00, 0x00010c06, 0x00010c06); - - Elif( .MzNextAction == 0x0015 ); - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0004); - Elif( .MzNextAction == 0x0016 ); - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0003); - Elif( .MzNextAction == 0x0017 ); - ChangeStateGob( 0x00012300, 0x0003 ); - Elif( .MzNextAction == 0x0018 ); - ChangeStateThis( 0x000c ); - End; - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 4"); - - If (FGobExists(0x00012300)); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - Cell( 0x000000f4, 0, 0, 6 ); - If( (0x00010000->fHelpOn) == 1 ); - If( .fHelpState == 1 ); - CreateHelpGob( 0x00010c00, 0x00018552 ); - Elif( .fHelpState == 2); - CreateHelpGob( 0x00010c00, 0x00018553 ); - End; - End; - - - While( 1 ); - cnt = 0x000000f4; - While( cnt <= 0x0000010f); - Cell( cnt++, 0, 0, 6 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 5"); - If( (0x00010000->fMovie) == 1 ); - 0x00010000->fMovie = (0); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018027, 0, 0x00010000, 1, 0, 998); - cnt=0x0000013a; - While( cnt <= 0x00000173 ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - 0x00010000->kstEntry = (0x0003); - If (1 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!1 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; ChangeStateGob(0x00010c00, 0x0003); CreateChildGob(0x00010c00, 0x00012300, 0x00012300); CreateChildGob(0x00010c00, 0x00010c0a, 0x00010c0a); CreateChildGob(0x00010c00, 0x00010c04, 0x00010c04); CreateChildGob(0x00010c00, 0x00010c06, 0x00010c06); - Else; - .fHelpState=1; - - If( (0x00010000->fHelpOn) == 1 ); - .MzNextAction = 0x0006; - ChangeStateThis( 0x0002 ); - Else; - .MzNextAction = 0x0004; - ChangeStateThis( 0x0002 ); - End; - - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 6"); - Cell( 0x000000a4, 0, 0, 6 ); - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018108, 0, 0x00010000, 1, 0, 998); - - cnt=0x000000a5; - While( cnt <= 0x000000b8 ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 7"); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - - cnt=0x0000007c; - While( cnt <= 0x00000090 ); - Cell( cnt++, 0, 0, 6 ); - End; - - - - EnqueueCid(50080, 0, 1, 0, 1, 0); - - - FilterCmdsThis(50082, 0, 0x0021); - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - .fHelpState=2; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - - PrintStr("Theater McZee: State 8"); - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018029, 0, 0x00010000, 1, 0, 998); - cnt=0x00000054; - While( cnt <= 0x00000070 ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - 0x00010000->fHelpOn = (1); - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - .fHelpState=2; - - PrintStr("Theater McZee: State 9"); - - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018029, 0, 0x00010000, 1, 0, 998); - cnt=0x00000054; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x0000006f ); - Cell( cnt++, 0, 0, 6 ); - End; - SetNoSlipThis( 0); - Cell( cnt++, 0, 0, 6 ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - 0x00010000->fHelpOn = (1); - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000A SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 10"); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - DestroyGob( 0x00016009 ); - - - cnt=0x00000090; - While( cnt >= 0x0000007c ); - Cell( cnt--, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - If( .fWay == 1 ); - .MzNextAction = 0x0014; - ChangeStateThis( 0x0003 ); - Else; - 0x00010000->fHelpOn = (1); - ChangeStateThis( 0x0004 ); - End; - ENDCHUNK; - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000b SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 11"); - - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001802a, 0, 0x00010000, 1, 0, 998); - cnt=0x000000c2; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x000000e3 ); - Cell( cnt++, 0, 0, 6 ); - End; - SetNoSlipThis( 0 ); - Cell( cnt++, 0, 0, 6 ); - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000c SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Theater McZee: State 12"); - Cell( 0x0000003f, 0, 0, 0 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - .fWay = _parm[2]; - If (.fWay); - - ResizeGob(0x00012300, 0, 0); - End; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis(0x000A); - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PrintStr("Theater McZee: Click script"); - If( StateThis() != 0x0004 ); - 0x00010000->fHelpOn = (1); - ChangeStateThis( 0x0004 ); - Elif( (0x00010000->fHelpOn) == 0 ); - 0x00010000->fHelpOn = (1); - If( .fHelpState == 1 ); - CreateHelpGob( 0x00010c00, 0x00018552 ); - Elif( .fHelpState == 2); - CreateHelpGob( 0x00010c00, 0x00018553 ); - End; - End; - ENDCHUNK - -CHUNK( 'GLOP', 0x00018552, ) SCRIPT - If( _parm[0] == 0 ); - - Elif( _parm[0] == 1 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00010c03, 0x0007 ); - Elif( _parm[0] == 2 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00010c03, 0x000b ); - End; -ENDCHUNK - -CHUNK( 'GLOP', 0x00018553, ) SCRIPT - If( _parm[0] == 0 ); - - Elif( _parm[0] == 1 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - PrintStr("Enqueuing TheaterClose"); EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->MzNextAction = 0x0015; - ChangeStateGob( 0x00010c03, 0x0003 ); - - Elif( _parm[0] == 2 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - PrintStr("Enqueuing PortfolioClear"); - EnqueueCid(50091, 0, 0,0,0,0); - PrintStr("Enqueuing TheaterClose"); EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->MzNextAction = 0x0016; - ChangeStateGob( 0x00010c03, 0x0003); - - Elif( _parm[0] == 3 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - - PrintStr("Enqueuing TheaterRewind"); - EnqueueCid(50068, 0, 0, 0, 0, 0); - 0x00010c03->MzNextAction = 0x0017; - ChangeStateGob( 0x00010c03, 0x0003 ); - - Elif (_parm[0] == 4); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00010c03, 0x0007 ); - Elif( _parm[0] == 5 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - PrintStr("Enqueuing PortfolioClear"); - EnqueueCid(50091, 0, 0,0,0,0); - PrintStr("Enqueuing TheaterClose"); EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->fHelpState=1; - ChangeStateGob( 0x00010c03, 0x000b ); - End; -ENDCHUNK - -SET _curgok = 0x00010c01 CHUNK( 'GOKD', 0x00010c01, ) SHORT BO OSK LONG 0 LONG 0 0 0 450 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\leftdr.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010e00, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010c02 CHUNK( 'GOKD', 0x00010c02, ) SHORT BO OSK LONG 0 LONG 0 0 0 450 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\rightdr.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0002); - ENDCHUNK - - - - - - -SET _curgok = 0x00012300 CHUNK( 'GOKD', 0x00012300, ) SHORT BO OSK LONG 0 LONG 0 0 0 400 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x00000043 ) LONG BO OSK 48 85 592 391 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - PrintStr("Movie Work space: Entry state ", NumToStr((0x00010000->kstEntry), "")); - If (!((0x00010000->kstEntry) == 0x0002 || (0x00010000->kstEntry) == 0x0003)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\theatre.cht", ", line ", NumToStr(460,"")); End; - - Cell( 0x00000043, 0, 0, 0 ); - - - FilterCmdsThis(50100, 0, 0x0022); - FilterCmdsThis(50101, 0, 0x0022); - - - - PrintStr("Enqueuing TheaterOpen"); - EnqueueCid(50064, 0, 0x00012300, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Movie Work space: State 2"); - Cell( 0x00000043, 0, 0, 0 ); - - If( StateGob( 0x00010c03 ) != 0x000c ); - 0x00010c03->MzNextAction = 0x0018; - ChangeStateGob( 0x00010c03, 0x0003 ); - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Movie Work space: State 3"); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - Cell( 0x00000043, 0, 0, 0 ); - ChangeStateGob( 0x00010c03, 0x000c ); - ChangeStateGob( 0x00010c04, 0x0002 ); - ChangeStateGob(0x00010c06, 0x0002); - If( .f1stMovie == 1 ); - .f1stMovie = 0; - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If (HeightGob(0x00012300) == 0); - ResizeGob(0x00012300, 592-48, 391-85); - End; - CreateChildThis( 0x00010c08, 0x00010c08 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x00010c08 )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x00010c08 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - End; - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Movie Work space: State 4"); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - ChangeStateGob( 0x00010c04, 0x0002 ); - ChangeStateGob(0x00010c06, 0x0002); - - If( StateGob( 0x00010c03 ) != 0x000c ); - 0x00010c03->MzNextAction = 0x0018; - ChangeStateGob( 0x00010c03, 0x0003 ); - While( StateGob( 0x00010c03 ) != 0x000c ); - Cell( 0, 0, 0, 6 ); - End; - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - End; - Cell( 0x00000043, 0, 0, 0 ); - - - - PrintStr("Enqueuing TheaterPlay"); - EnqueueCid(50066, 0, 0, 0, 0, 0); - - - FilterCmdsThis(44011, 0, 0x0021); - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Movie Work space: State 5"); - Cell( 0x00000043, 0, 0, 0 ); - ChangeStateGob(0x00010c04, 0x0001); - ChangeStateGob(0x00010c06, 0x0001); - 0x00010c03->MzNextAction = 0x0009; - 0x00010c03->fHelpState = 2; - ChangeStateGob( 0x00010c03, 0x0002 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Movie Work space: State 6"); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x00000043, 0, 0, 0 ); - - - - - PrintStr("kgobMovie kst6: Enqueuing TheaterStop"); - EnqueueCid(50067, 0, 0, 0, 0, 0); - 0x00010c03->MzNextAction = 0x0008; - 0x00010c03->fHelpState = 2; - ChangeStateGob( 0x00010c03, 0x0002 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (!_parm[2] && StateGob(0x00010c04) == 0x0002); - FilterCmdsThis(44011, 0, 0xFFFFFFFF); - ChangeStateThis(0x0005); - End; - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - If (_parm[2] == 0); - - - PrintStr("Warning: cidTheaterLoad or cidTheaterOpen failed!"); - PrintStr("Enqueuing PortfolioClear"); - EnqueueCid(50091, 0, 0,0,0,0); - PrintStr("Enqueuing TheaterClose"); EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->fHelpState=1; - 0x00010000->fHelpOn = (1); - ChangeStateGob(0x00010c03, 0x0004); - Elif (_parm[1] == 50100); - PrintStr("Enqueuing TheaterLoad"); - EnqueueCid(50065, 0, 0, 0, 0, 0); - Else; - .f1stMovie=1; - ChangeStateThis((0x00010000->kstEntry)); - End; - ENDCHUNK - -SET _curgok = 0x00010c08 CHUNK( 'GOKD', 0x00010c08, ) SHORT BO OSK LONG 0 LONG 0 0 1 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "CNTDWN5.AVI" ENDCHUNK - - - - - - - -SET _curgok = 0x00010c09 CHUNK( 'GOKD', 0x00010c09, ) SHORT BO OSK LONG 0 LONG 0 0 0 450 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x00010c07 CHUNK( 'GOKD', 0x00010c07, ) SHORT BO OSK LONG 3 LONG 0 0 0 451 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\thumb.pbm" ENDCHUNK - - - -SET _curgok = 0x00010c0a CHUNK( 'GOKD', 0x00010c0a, ) SHORT BO OSK LONG 0 LONG 0 9 110 451 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 12 74 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x00010c07, 0x00010c07 ); - - y = 62 -(( GetMasterVolume() * 62 )/ (2*0x00010000)); - MoveAbsGob( 0x00010c07, 0, y ); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis('WAVE', 0x00010004, 2, 0x00010000, 30000, 1, - 998); - While( 1 ); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif ( y > 62 ); - y =62; - End; - - - MoveAbsGob( 0x00010c07, 0, y ); - - - newvol = ( (2*0x00010000)* (62-y) ) / 62; - - - SetMasterVolume( newvol ); - - - Cell( 0 , 0,0, 10 ); - End; - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound( .siiLoop ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - -SET _curgok = 0x00010c04 CHUNK( 'GOKD', 0x00010c04, ) SHORT BO OSK LONG 0 LONG 0 318 7 451 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\play1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\play2.pbm" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - If( StateThis() == 0x0001 ); - - If( FGobExists( 0x00016008 ) ); - DestroyGob( 0x00016008 ); - Elif( FGobExists( 0x00016009 ) ); - DestroyGob( 0x00016009 ); - End; - - - - If( 0x00012300->f1stMovie == 1 ); - ChangeStateGob( 0x00012300, 0x0003 ); - Else; - ChangeStateGob( 0x00012300, 0x0004 ); - End; - ChangeStateThis( 0x0002 ); - ChangeStateGob(0x00010c06, 0x0002); - - Else; - - - ChangeStateGob( 0x00012300, 0x0006 ); - ChangeStateThis( 0x0001 ); - ChangeStateGob(0x00010c06, 0x0001); - End; - ENDCHUNK - -SET _curgok = 0x00010c06 CHUNK( 'GOKD', 0x00010c06, ) SHORT BO OSK LONG 0 - LONG 0 293 7 451 - LONG 0 0 0x00000002 0x00000001 0x0021 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\rewind1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\rewind2.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - Cell (0x00000041, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (!(StateGob(0x00010c04) == 0x0001)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\theatre.cht", ", line ", NumToStr(713,"")); End; - If( FGobExists( 0x00016009 ) ); - DestroyGob( 0x00016009 ); - End; - If (FGobExists(0x00016008)); - DestroyGob(0x00016008); - End; - - - - ChangeStateGob(0x00012300, 0x0002); - PrintStr("Enqueuing TheaterRewind"); - EnqueueCid(50068, 0, 0, 0, 0, 0); - - ChangeStateGob( 0x00012300, 0x0004 ); - - ENDCHUNK - - -SET _curgok = 0x00010d01 CHUNK( 'GOKD', 0x00010d01, ) SHORT BO OSK LONG 0 LONG 0 0 0 50 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010700, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010d03 CHUNK( 'GOKD', 0x00010d03, ) SHORT BO OSK LONG 0 LONG 0 0 0 50 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010d02 CHUNK( 'GOKD', 0x00010d02, ) SHORT BO OSK LONG 0 LONG 0 0 0 50 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 420 194 445 206 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - -SET _curgok = 0x00010e01 CHUNK( 'GOKD', 0x00010e01, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000006 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\right.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0004); - ENDCHUNK - -SET _curgok = 0x00010e02 CHUNK( 'GOKD', 0x00010e02, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\bkleft.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010e04 CHUNK( 'GOKD', 0x00010e04, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the3map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010e03 CHUNK( 'GOKD', 0x00010e03, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the3quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - -SET _curgok = 0x00010f05 CHUNK( 'GOKD', 0x00010f05, ) SHORT BO OSK LONG 0 LONG 0 0 0 550 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Create theatre4 McZee"); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018107, 0, 0x00010000, 1, 0, 998); - cnt = 0x00000040; - While( cnt <= 0x0000006b ); - If( cnt == 0x00000066 ); - CreateChildGob( 0x00010f00, 0x00010f06, 0x00010f06 ); - End; - Cell( cnt, 0, 0, 6 ); - cnt++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - DestroyThis(); - RunScriptGob( 0x00010f00, 0x0021 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzthea4.seq" - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\thr4_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\thr4_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\theatre\thr4_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\theatre\thr4_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\theatre\thr4_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\theatre\thr4_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\theatre\thr4_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\theatre\thr4_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\theatre\thr4_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\theatre\thr4_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\theatre\thr4_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\theatre\thr4_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\theatre\thr4_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\theatre\thr4_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\theatre\thr4_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\theatre\thr4_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\theatre\thr4_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\theatre\thr4_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\theatre\thr4_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\theatre\thr4_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\theatre\thr4_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\theatre\thr4_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\theatre\thr4_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\theatre\thr4_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\theatre\thr4_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\theatre\thr4_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\theatre\thr4_27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\theatre\thr4_28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\theatre\thr4_29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\theatre\thr4_30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\theatre\thr4_31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\theatre\thr4_32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\theatre\thr4_33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\theatre\thr4_34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\theatre\thr4_35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\theatre\thr4_36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\theatre\thr4_37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\theatre\thr4_38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\theatre\thr4_39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\theatre\thr4_40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\theatre\thr4_41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\theatre\thr4_42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\theatre\thr4_43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\theatre\thr4_44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\theatre\thr4_45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\theatre\thr4_46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\theatre\thr4_47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\theatre\thr4_48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\theatre\thr4_49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\theatre\thr4_50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\theatre\thr4_51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\theatre\thr4_52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\theatre\thr4_53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\theatre\thr4_54.pbm" ENDCHUNK -#line 796 "H:\\BUILD\\SOC\\src\\building\\theatre.cht" - -SET _curgok = 0x00010f06 CHUNK( 'GOKD', 0x00010f06, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - cnt=0x00000040; - While( cnt <= 0x00000044 ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\Ldoor49.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\Ldoor50.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\theatre\Ldoor51.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\theatre\Ldoor52.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\theatre\Ldoor53.pbm" ENDCHUNK - -SET _curgok = 0x00010f01 CHUNK( 'GOKD', 0x00010f01, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000005 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\left.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0004); - ENDCHUNK - -SET _curgok = 0x00010f02 CHUNK( 'GOKD', 0x00010f02, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\bkright.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010f04 CHUNK( 'GOKD', 0x00010f04, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the4map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010f03 CHUNK( 'GOKD', 0x00010f03, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the4quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - - -SET _curgok = 0x00010d04 CHUNK( 'GOKD', 0x00010d04, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((31 > 31) ? ( ::fBio2 & (1<<(31&31)) ) : ( ::fBio1 & (1<<(31&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (31 & 31); If (31 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 31; ::fBioCtrl = 0; CreateChildGob( 0x00010d00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010d05 CHUNK( 'GOKD', 0x00010d05, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((32 > 31) ? ( ::fBio2 & (1<<(32&31)) ) : ( ::fBio1 & (1<<(32&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (32 & 31); If (32 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 32; ::fBioCtrl = 0; CreateChildGob( 0x00010d00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010d06 CHUNK( 'GOKD', 0x00010d06, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((33 > 31) ? ( ::fBio2 & (1<<(33&31)) ) : ( ::fBio1 & (1<<(33&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (33 & 31); If (33 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 33; ::fBioCtrl = 0; CreateChildGob( 0x00010d00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - - - -#line 67 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" -CHUNK( 'WAVE', 0x0001801a, ) FILE "building\sound\backstag\GOIDA.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801b, ) FILE "building\sound\backstag\GOSTU.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801c, ) FILE "building\sound\backstag\GOPRJ.wav" ENDCHUNK - -SET _curgok = 0x0001100a CHUNK( 'GOKD', 0x0001100a, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - -If (!(((0x00010000->kstEntry) >= 0x0002 && (0x00010000->kstEntry) <= 0x0006) || (0x00010000->kstEntry) == 10)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\backstag.cht", ", line ", NumToStr(14,"")); End; - - - - - - - .f1sthelp=0; - .fLipsink = 0; - - - - If ((0x00010000->kstEntry) == 0x0006); - .nxtPlcState = 0x0002; - End; - - ChangeStateThis((0x00010000->kstEntry)); - - ENDCHUNK - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x00010011, 0 ); - - If( (0x00010000->fBackstagePS) ); - 0x00010000->keys = ((0x00000002)); - 0x00010000->fBackstagePS = (0); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x00011009, 0x00011009 ); - While( PlayingGob( 0x00011009 )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x00011009 ); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - End; - - If( !FGobExists( 0x00011005 ) ); - CreateChildGob( 0x00011000, 0x00011005, 0x00011005 ); - End; - - Cell( 0x000000a4, 0, 0, 0 ); - - - - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00011000, 0x00018555 ); - Elif( (0x00010000->fBkstg1stHelp) ); - 0x00010000->fBkstg1stHelp = (0); - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00011000, 0x00018555 ); - End; - - While( 1 ); - If( .fLipsink ); - .fLipsink = 0; - cnt = 0x00000234; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018025, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x00000247 ); - Cell( cnt++, 0, 0, 6); - End; - End; - - cnt = 0x00000040; - While( cnt <= 0x0000004b ); - Cell( cnt, 0,0, 6 ); - cnt++; - End; - - rnd=Rnd(10); - If( rnd == 0 ); - cnt = 0x00000054; - While( cnt <= 0x0000005f ); - Cell( cnt, 0,0, 6 ); - cnt++; - End; - Elif( rnd == 1 ); - cnt = 0x0000005f; - While( cnt >= 0x00000054 ); - Cell( cnt, 0,0, 6 ); - cnt--; - End; - Elif( rnd == 2 ); - - Cell( 0x00000054, 0,0, 11 ); - Cell( 0x00000055, 0,0, 10 ); - Cell( 0x00000056, 0,0, 9 ); - Cell( 0x00000057, 0,0, 8 ); - Cell( 0x00000058, 0,0, 7 ); - Cell( 0x00000059, 0,0, 6 ); - - Cell( 0x0000005a, 0,0, 4 ); - Cell( 0x0000005b, 0,0, 4 ); - Cell( 0x0000005c, 0,0, 4 ); - Cell( 0x0000005d, 0,0, 4 ); - Cell( 0x00000056, 0,0, 4 ); - Cell( 0x00000057, 0,0, 4 ); - Cell( 0x00000058, 0,0, 4 ); - Cell( 0x00000059, 0,0, 4 ); - - Cell( 0x0000005a, 0,0, 6 ); - Cell( 0x0000005b, 0,0, 7 ); - Cell( 0x0000005c, 0,0, 8 ); - Cell( 0x0000005d, 0,0, 9 ); - Cell( 0x0000005e, 0,0, 10 ); - Cell( 0x0000005f, 0,0, 11 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x0001100d, 0x0001100d ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x0001100d )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100d ); - RunScriptGob(0x00010000, 0x0021, 0x00011800, 0x0002); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x0001100c, 0x0001100c ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x0001100c )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100c ); - RunScriptGob(0x00010000, 0x0021, 0x00011400, 0x0002); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x0001100b, 0x0001100b ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x0001100b )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100b ); - RunScriptGob(0x00010000, 0x0021, 0x00011c00, 0x0001); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell( 0x00000054, 0,0, 1 ); - If( !FGobExists( 0x00011005 ) ); - CreateChildGob( 0x00011000, 0x00011005, 0x00011005 ); - End; - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - - CreateChildGob( 0x00011000, 0x00011010, 0x00011010 ); - While( PlayingGob( 0x00011010 )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x00011010 ); - RunScriptGob(0x00010000, 0x0021, 0x00011800, .nxtPlcState); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildGob( 0x00011000, 0x0001100e, 0x0001100e ); - While( PlayingGob( 0x0001100e )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100e ); - RunScriptGob(0x00010000, 0x0021, 0x00011400, 0x0002); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildGob( 0x00011000, 0x0001100f, 0x0001100f ); - While( PlayingGob( 0x0001100f )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100f ); - RunScriptGob(0x00010000, 0x0021, 0x00011c00, 0x0001); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000A SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell( 0x000001d0, 0,0, 6 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - RunScriptGob( 0x00010000, 0x0024, 0x00010011, 0 ); - cnt=0x000001d1; - While( cnt <= 0x000001e4 ); - Cell( cnt++, 0,0, 6 ); - End; - - - - - - - If( !(0x00010000->fBackstagePS) ); - cnt=0x00000202; - CreateChildGob( 0x00011000, 0x00011005, 0x00011005 ); - ChangeStateGob( 0x00011005, 0x0002 ); - CreateChildGob( 0x00011000, 0x00011008, 0x00011008 ); - While( cnt <= 0x00000223 ); - Cell( cnt++, 0,0, 8 ); - End; - End; - - ChangeStateThis( 0x0002 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( (0x00010000->fHelpOn) ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - Else; - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00011000, 0x00018555 ); - End; - ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x0000003f ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzbkstg.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\lpcell1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\lpcell2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\lpcell3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\lpcell4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\lpcell5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\lpcell6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\lpcell7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\lpcell8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\lpcell9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\lpcell10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\lpcell11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\lpcell12.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\backstag\evcell1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\backstag\evcell2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\backstag\evcell3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\backstag\evcell4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\backstag\evcell5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\backstag\evcell6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\backstag\evcell7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\backstag\evcell8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\backstag\evcell9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\backstag\evcell10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\backstag\evcell11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\backstag\evcell12.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\backstag\idmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\backstag\idmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\backstag\idmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\backstag\idmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\backstag\idmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\backstag\idmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\backstag\idmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\backstag\idmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\backstag\idmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\backstag\idmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\backstag\idmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\backstag\idmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\backstag\idmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\backstag\idmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\backstag\idmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\backstag\idmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\backstag\idmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\backstag\idmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\backstag\idmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\backstag\idmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\backstag\idmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\backstag\idmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\backstag\idmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\backstag\idmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\backstag\idmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\backstag\idmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\backstag\idmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\backstag\idmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\backstag\idmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\backstag\idmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\backstag\idmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\backstag\idmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\backstag\idmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\backstag\idmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\backstag\idmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\backstag\idmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\backstag\idmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\backstag\idmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\backstag\idmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\backstag\idmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\backstag\idmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\backstag\idmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\backstag\idmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\backstag\idmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\backstag\idmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\backstag\idmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\backstag\idmz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\backstag\idmz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\backstag\idmz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\backstag\idmz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\backstag\idmz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\backstag\idmz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\backstag\idmz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\backstag\idmz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\backstag\idmz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\backstag\idmz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\backstag\idmz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\backstag\idmz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\backstag\idmz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\backstag\idmz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\backstag\idmz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\backstag\idmz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\backstag\idmz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\backstag\idmz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\backstag\idmz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\backstag\idmz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\backstag\idmz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\backstag\idmz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\backstag\idmz69.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\backstag\gostu1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\backstag\gostu2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\backstag\gostu3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\backstag\gostu4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\backstag\gostu5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\backstag\gostu6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\backstag\gostu7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\backstag\gostu8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\backstag\gostu9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\backstag\gostu10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\backstag\gostu11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\backstag\gostu12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\backstag\gostu13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\backstag\gostu14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\backstag\gostu15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\backstag\gostu16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\backstag\gostu17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\backstag\gostu18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\backstag\gostu19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\backstag\gostu20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011c ) PACKEDFILE "building\pbm\backstag\gostu21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011d ) PACKEDFILE "building\pbm\backstag\gostu22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011e ) PACKEDFILE "building\pbm\backstag\gostu23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011f ) PACKEDFILE "building\pbm\backstag\gostu24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000120 ) PACKEDFILE "building\pbm\backstag\gostu25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000121 ) PACKEDFILE "building\pbm\backstag\gostu26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000122 ) PACKEDFILE "building\pbm\backstag\gostu27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000123 ) PACKEDFILE "building\pbm\backstag\gostu28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000124 ) PACKEDFILE "building\pbm\backstag\gostu29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000125 ) PACKEDFILE "building\pbm\backstag\gostu30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000126 ) PACKEDFILE "building\pbm\backstag\gostu31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000127 ) PACKEDFILE "building\pbm\backstag\gostu32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000128 ) PACKEDFILE "building\pbm\backstag\gostu33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000129 ) PACKEDFILE "building\pbm\backstag\gostu34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012a ) PACKEDFILE "building\pbm\backstag\gostu35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012b ) PACKEDFILE "building\pbm\backstag\gostu36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012c ) PACKEDFILE "building\pbm\backstag\gostu37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012d ) PACKEDFILE "building\pbm\backstag\gostu38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012e ) PACKEDFILE "building\pbm\backstag\gostu39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012f ) PACKEDFILE "building\pbm\backstag\gostu40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000130 ) PACKEDFILE "building\pbm\backstag\gostu41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000131 ) PACKEDFILE "building\pbm\backstag\gostu42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000132 ) PACKEDFILE "building\pbm\backstag\gostu43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000133 ) PACKEDFILE "building\pbm\backstag\gostu44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000134 ) PACKEDFILE "building\pbm\backstag\gostu45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000135 ) PACKEDFILE "building\pbm\backstag\gostu46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000136 ) PACKEDFILE "building\pbm\backstag\gostu47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000137 ) PACKEDFILE "building\pbm\backstag\gostu48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000138 ) PACKEDFILE "building\pbm\backstag\gostu49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000139 ) PACKEDFILE "building\pbm\backstag\gostu50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\backstag\gostu51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\backstag\gostu52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\backstag\gostu53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\backstag\gostu54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\backstag\gostu55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\backstag\gostu56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\backstag\gostu57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\backstag\gostu58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\backstag\gostu59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\backstag\gostu60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000144 ) PACKEDFILE "building\pbm\backstag\gostu61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000145 ) PACKEDFILE "building\pbm\backstag\gostu62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000146 ) PACKEDFILE "building\pbm\backstag\gostu63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000147 ) PACKEDFILE "building\pbm\backstag\gostu64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000148 ) PACKEDFILE "building\pbm\backstag\gostu65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000149 ) PACKEDFILE "building\pbm\backstag\gostu66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014a ) PACKEDFILE "building\pbm\backstag\gostu67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014b ) PACKEDFILE "building\pbm\backstag\gostu68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014c ) PACKEDFILE "building\pbm\backstag\gostu69.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\backstag\gopmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\backstag\gopmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\backstag\gopmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\backstag\gopmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\backstag\gopmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\backstag\gopmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\backstag\gopmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\backstag\gopmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\backstag\gopmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\backstag\gopmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\backstag\gopmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\backstag\gopmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\backstag\gopmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\backstag\gopmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\backstag\gopmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\backstag\gopmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\backstag\gopmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\backstag\gopmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\backstag\gopmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\backstag\gopmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\backstag\gopmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\backstag\gopmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\backstag\gopmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\backstag\gopmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\backstag\gopmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\backstag\gopmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000186 ) PACKEDFILE "building\pbm\backstag\gopmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000187 ) PACKEDFILE "building\pbm\backstag\gopmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000188 ) PACKEDFILE "building\pbm\backstag\gopmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000189 ) PACKEDFILE "building\pbm\backstag\gopmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018a ) PACKEDFILE "building\pbm\backstag\gopmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018b ) PACKEDFILE "building\pbm\backstag\gopmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018c ) PACKEDFILE "building\pbm\backstag\gopmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018d ) PACKEDFILE "building\pbm\backstag\gopmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018e ) PACKEDFILE "building\pbm\backstag\gopmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018f ) PACKEDFILE "building\pbm\backstag\gopmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000190 ) PACKEDFILE "building\pbm\backstag\gopmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000191 ) PACKEDFILE "building\pbm\backstag\gopmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000192 ) PACKEDFILE "building\pbm\backstag\gopmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000193 ) PACKEDFILE "building\pbm\backstag\gopmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000194 ) PACKEDFILE "building\pbm\backstag\gopmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000195 ) PACKEDFILE "building\pbm\backstag\gopmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000196 ) PACKEDFILE "building\pbm\backstag\gopmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000197 ) PACKEDFILE "building\pbm\backstag\gopmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000198 ) PACKEDFILE "building\pbm\backstag\gopmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000199 ) PACKEDFILE "building\pbm\backstag\gopmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019a ) PACKEDFILE "building\pbm\backstag\gopmz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019b ) PACKEDFILE "building\pbm\backstag\gopmz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019c ) PACKEDFILE "building\pbm\backstag\gopmz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\backstag\gopmz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\backstag\gopmz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\backstag\gopmz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\backstag\gopmz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\backstag\gopmz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\backstag\gopmz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\backstag\gopmz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\backstag\gopmz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\backstag\gopmz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\backstag\gopmz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\backstag\gopmz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\backstag\gopmz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\backstag\gopmz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\backstag\gopmz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\backstag\gopmz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\backstag\gopmz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\backstag\gopmz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\backstag\gopmz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\backstag\gopmz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\backstag\gopmz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\backstag\gopmz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b2 ) PACKEDFILE "building\pbm\backstag\gopmz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b3 ) PACKEDFILE "building\pbm\backstag\gopmz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b4 ) PACKEDFILE "building\pbm\backstag\gopmz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b5 ) PACKEDFILE "building\pbm\backstag\gopmz74.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\backstag\tbth5_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\backstag\tbth5_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\backstag\tbth5_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\backstag\tbth5_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\backstag\tbth5_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\backstag\tbth5_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\backstag\tbth5_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\backstag\tbth5_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\backstag\tbth5_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\backstag\tbth5_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\backstag\tbth5_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\backstag\tbth5_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\backstag\tbth5_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\backstag\tbth5_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\backstag\tbth5_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\backstag\tbth5_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\backstag\tbth5_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\backstag\tbth5_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\backstag\tbth5_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\backstag\tbth5_20.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000202 ) PACKEDFILE "building\pbm\backstag\tbth6_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000203 ) PACKEDFILE "building\pbm\backstag\tbth6_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000204 ) PACKEDFILE "building\pbm\backstag\tbth6_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000205 ) PACKEDFILE "building\pbm\backstag\tbth6_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000206 ) PACKEDFILE "building\pbm\backstag\tbth6_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000207 ) PACKEDFILE "building\pbm\backstag\tbth6_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000208 ) PACKEDFILE "building\pbm\backstag\tbth6_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000209 ) PACKEDFILE "building\pbm\backstag\tbth6_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020a ) PACKEDFILE "building\pbm\backstag\tbth6_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020b ) PACKEDFILE "building\pbm\backstag\tbth6_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020c ) PACKEDFILE "building\pbm\backstag\tbth6_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020d ) PACKEDFILE "building\pbm\backstag\tbth6_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020e ) PACKEDFILE "building\pbm\backstag\tbth6_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020f ) PACKEDFILE "building\pbm\backstag\tbth6_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000210 ) PACKEDFILE "building\pbm\backstag\tbth6_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000211 ) PACKEDFILE "building\pbm\backstag\tbth6_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000212 ) PACKEDFILE "building\pbm\backstag\tbth6_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000213 ) PACKEDFILE "building\pbm\backstag\tbth6_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000214 ) PACKEDFILE "building\pbm\backstag\tbth6_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000215 ) PACKEDFILE "building\pbm\backstag\tbth6_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000216 ) PACKEDFILE "building\pbm\backstag\tbth6_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000217 ) PACKEDFILE "building\pbm\backstag\tbth6_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000218 ) PACKEDFILE "building\pbm\backstag\tbth6_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000219 ) PACKEDFILE "building\pbm\backstag\tbth6_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021a ) PACKEDFILE "building\pbm\backstag\tbth6_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021b ) PACKEDFILE "building\pbm\backstag\tbth6_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021c ) PACKEDFILE "building\pbm\backstag\tbth6_27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021d ) PACKEDFILE "building\pbm\backstag\tbth6_28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021e ) PACKEDFILE "building\pbm\backstag\tbth6_29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021f ) PACKEDFILE "building\pbm\backstag\tbth6_30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000220 ) PACKEDFILE "building\pbm\backstag\tbth6_31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000221 ) PACKEDFILE "building\pbm\backstag\tbth6_32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000222 ) PACKEDFILE "building\pbm\backstag\tbth6_33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000223 ) PACKEDFILE "building\pbm\backstag\tbth6_34.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000234 ) PACKEDFILE "building\pbm\backstag\speak1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000235 ) PACKEDFILE "building\pbm\backstag\speak2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000236 ) PACKEDFILE "building\pbm\backstag\speak3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000237 ) PACKEDFILE "building\pbm\backstag\speak4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000238 ) PACKEDFILE "building\pbm\backstag\speak5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000239 ) PACKEDFILE "building\pbm\backstag\speak6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023a ) PACKEDFILE "building\pbm\backstag\speak7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023b ) PACKEDFILE "building\pbm\backstag\speak8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023c ) PACKEDFILE "building\pbm\backstag\speak9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023d ) PACKEDFILE "building\pbm\backstag\speak10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023e ) PACKEDFILE "building\pbm\backstag\speak11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023f ) PACKEDFILE "building\pbm\backstag\speak12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000240 ) PACKEDFILE "building\pbm\backstag\speak13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000241 ) PACKEDFILE "building\pbm\backstag\speak14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000242 ) PACKEDFILE "building\pbm\backstag\speak15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000243 ) PACKEDFILE "building\pbm\backstag\speak16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000244 ) PACKEDFILE "building\pbm\backstag\speak17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000245 ) PACKEDFILE "building\pbm\backstag\speak18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000246 ) PACKEDFILE "building\pbm\backstag\speak19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000247 ) PACKEDFILE "building\pbm\backstag\speak20.pbm" ENDCHUNK -#line 255 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - -CHUNK( 'GLOP', 0x00018555, ) SCRIPT - If( _parm[0] == 0 ); - If( !0x0001100a->f1sthelp ); - 0x0001100a->fLipsink = 1; - 0x0001100a->f1sthelp = 1; - End; - Elif( _parm[0] == 1 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ChangeStateGob( 0x0001100a, 0x0009 ); - - Elif( _parm[0] == 2 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ChangeStateGob( 0x0001100a, 0x0008 ); - - Elif( _parm[0] == 3 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - 0x0001100a->nxtPlcState = 0x0002; - ChangeStateGob( 0x0001100a, 0x0006 ); - End; -ENDCHUNK - -SET _curgok = 0x00011006 CHUNK( 'GOKD', 0x00011006, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x0000004f ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\PrDoor.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\Pdoor54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\Pdoor55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\Pdoor56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\Pdoor57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\Pdoor58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\Pdoor59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\Pdoor60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\Pdoor61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\Pdoor62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\Pdoor63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\Pdoor64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\Pdoor65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\Pdoor66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\Pdoor67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\Pdoor68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\Pdoor69.pbm" ENDCHUNK - -#line 289 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - -SET _curgok = 0x00011007 CHUNK( 'GOKD', 0x00011007, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x0000004f ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\StDoor.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\Sdoor49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\Sdoor50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\Sdoor51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\Sdoor52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\Sdoor53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\Sdoor54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\Sdoor55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\Sdoor56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\Sdoor57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\Sdoor58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\Sdoor59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\Sdoor60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\Sdoor61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\Sdoor62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\Sdoor63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\Sdoor64.pbm" ENDCHUNK - -#line 298 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - -SET _curgok = 0x00011004 CHUNK( 'GOKD', 0x00011004, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x00000051 ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\IdDoor.seq" - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\door47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\door48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\door49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\door50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\door51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\door52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\door53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\door54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\door55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\door56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\door57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\door58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\door59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\door60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\door61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\door62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\backstag\door63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\backstag\door64.pbm" ENDCHUNK - -#line 307 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - SET _curgok = 0x00011005 CHUNK( 'GOKD', 0x00011005, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\backstag\bag12.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x00000053 ); - Cell( cnt++, 0,0, 8 ); - End; - ChangeStateThis( 0x0001 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\BkstgBag.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\bag1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\bag2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\bag3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\bag4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\bag5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\bag6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\bag7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\bag8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\bag9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\bag10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\bag11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\bag12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\bag13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\bag14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\bag15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\bag16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\backstag\bag17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\backstag\bag18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\backstag\bag19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\backstag\bag20.pbm" ENDCHUNK -#line 318 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - SET _curgok = 0x00011008 CHUNK( 'GOKD', 0x00011008, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x00000061 ); - Cell( cnt++, 0,0, 8 ); - End; - DestroyThis(); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\BkShdw.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\shdw1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\shdw2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\shdw3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\shdw4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\shdw5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\shdw6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\shdw7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\shdw8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\shdw9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\shdw10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\shdw11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\shdw12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\shdw13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\shdw14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\shdw15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\shdw16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\backstag\shdw17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\backstag\shdw18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\backstag\shdw19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\backstag\shdw20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\backstag\shdw21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\backstag\shdw22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\backstag\shdw23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\backstag\shdw24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\backstag\shdw25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\backstag\shdw26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\backstag\shdw27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\backstag\shdw28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\backstag\shdw29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\backstag\shdw30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\backstag\shdw31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\backstag\shdw32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\backstag\shdw33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\backstag\shdw34.pbm" ENDCHUNK - -#line 328 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - - - -SET _curgok = 0x00011009 CHUNK( 'GOKD', 0x00011009, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "backstag.avi" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); - ENDCHUNK - -SET _curgok = 0x0001100b CHUNK( 'GOKD', 0x0001100b, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "05LOGN4.AVI" ENDCHUNK - -SET _curgok = 0x0001100c CHUNK( 'GOKD', 0x0001100c, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "LOGN5.AVI" ENDCHUNK - -SET _curgok = 0x0001100d CHUNK( 'GOKD', 0x0001100d, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "LOGN06.AVI" ENDCHUNK - -SET _curgok = 0x0001100e CHUNK( 'GOKD', 0x0001100e, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "GOIDA.AVI" ENDCHUNK - -SET _curgok = 0x0001100f CHUNK( 'GOKD', 0x0001100f, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "GOPRJ.AVI" ENDCHUNK - -SET _curgok = 0x00011010 CHUNK( 'GOKD', 0x00011010, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "GOSTU.AVI" ENDCHUNK - - - -SET _curgok = 0x00011001 CHUNK( 'GOKD', 0x00011001, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\Bkstgdr1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateGob( 0x0001100a, 0x0008 ); - ENDCHUNK - - -SET _curgok = 0x00011002 CHUNK( 'GOKD', 0x00011002, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\Bkstgdr2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - 0x0001100a->nxtPlcState = 0x0001; - ChangeStateGob( 0x0001100a, 0x0006 ); - ENDCHUNK - - -SET _curgok = 0x00011003 CHUNK( 'GOKD', 0x00011003, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\Bkstgdr3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateGob( 0x0001100a, 0x0009 ); - ENDCHUNK - -#line 68 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\inspirat.cht" - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018032, ) FILE "building\sound\inspirat\idea1a.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018033, ) FILE "building\sound\inspirat\idea1b.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018034, ) FILE "building\sound\inspirat\idea2.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018035, ) FILE "building\sound\inspirat\idea3.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018036, ) FILE "building\sound\inspirat\idea4.wav" ENDCHUNK - -SET _curgok = 0x0001140d CHUNK( 'GOKD', 0x0001140d, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "idea2.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - StopThis(); - ENDCHUNK - - -SET _curgok = 0x0001140e CHUNK( 'GOKD', 0x0001140e, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "idea3.avi" ENDCHUNK - - - -SET _curgok = 0x0001140f CHUNK( 'GOKD', 0x0001140f, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "idea4.avi" ENDCHUNK - - -SET _curgok = 0x00011401 CHUNK( 'GOKD', 0x00011401, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzinsp.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\inspirat\lpmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\lpmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\lpmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\lpmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\inspirat\lpmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\inspirat\lpmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\inspirat\lpmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\inspirat\lpmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\inspirat\lpmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\inspirat\lpmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\inspirat\lpmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\inspirat\lpmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\inspirat\lpmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\inspirat\lpmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\inspirat\lpmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\inspirat\lpmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\inspirat\lpmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\inspirat\lpmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\inspirat\lpmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\inspirat\lpmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\inspirat\lpmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\inspirat\lpmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\inspirat\lpmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\inspirat\lpmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\inspirat\lpmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\inspirat\lpmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\inspirat\lpmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\inspirat\lpmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\inspirat\lpmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\inspirat\lpmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\inspirat\lpmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\inspirat\lpmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\inspirat\lpmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\inspirat\lpmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\inspirat\lpmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\inspirat\lpmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\inspirat\lpmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\inspirat\lpmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\inspirat\lpmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\inspirat\lpmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\inspirat\lpmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\inspirat\lpmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\inspirat\lpmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\inspirat\lpmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\inspirat\lpmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\inspirat\lpmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\inspirat\lpmz47.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\inspirat\sq2mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\inspirat\sq2mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\inspirat\sq2mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\inspirat\sq2mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\inspirat\sq2mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\inspirat\sq2mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\inspirat\sq2mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\inspirat\sq2mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\inspirat\sq2mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\inspirat\sq2mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\inspirat\sq2mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\inspirat\sq2mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\inspirat\sq2mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\inspirat\sq2mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\inspirat\sq2mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\inspirat\sq2mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\inspirat\sq2mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\inspirat\sq2mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\inspirat\sq2mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\inspirat\sq2mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\inspirat\sq2mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\inspirat\sq2mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\inspirat\sq2mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\inspirat\sq2mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\inspirat\sq2mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\inspirat\sq2mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\inspirat\sq2mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\inspirat\sq2mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\inspirat\sq2mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\inspirat\sq2mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\inspirat\sq2mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\inspirat\sq2mz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\inspirat\sq2mz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\inspirat\sq2mz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\inspirat\sq2mz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\inspirat\sq2mz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\inspirat\sq2mz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\inspirat\sq2mz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\inspirat\sq2mz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\inspirat\sq2mz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\inspirat\sq2mz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\inspirat\sq2mz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\inspirat\sq2mz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\inspirat\sq2mz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\inspirat\sq2mz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\inspirat\sq2mz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\inspirat\sq2mz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\inspirat\sq2mz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\inspirat\sq2mz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\inspirat\sq2mz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\inspirat\sq2mz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\inspirat\sq2mz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\inspirat\sq2mz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\inspirat\sq2mz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\inspirat\sq2mz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\inspirat\sq2mz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\inspirat\sq2mz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\inspirat\sq2mz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\inspirat\sq2mz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\inspirat\sq2mz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\inspirat\sq2mz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\inspirat\sq2mz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\inspirat\sq2mz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\inspirat\sq2mz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\inspirat\sq2mz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\inspirat\sq2mz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\inspirat\sq2mz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\inspirat\sq2mz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\inspirat\sq2mz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\inspirat\sq2mz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e9 ) PACKEDFILE "building\pbm\inspirat\sq2mz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ea ) PACKEDFILE "building\pbm\inspirat\sq2mz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000eb ) PACKEDFILE "building\pbm\inspirat\sq2mz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ec ) PACKEDFILE "building\pbm\inspirat\sq2mz74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ed ) PACKEDFILE "building\pbm\inspirat\sq2mz75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ee ) PACKEDFILE "building\pbm\inspirat\sq2mz76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ef ) PACKEDFILE "building\pbm\inspirat\sq2mz77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f0 ) PACKEDFILE "building\pbm\inspirat\sq2mz78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f1 ) PACKEDFILE "building\pbm\inspirat\sq2mz79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f2 ) PACKEDFILE "building\pbm\inspirat\sq2mz80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f3 ) PACKEDFILE "building\pbm\inspirat\sq2mz81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\inspirat\sq2mz82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\inspirat\sq2mz83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\inspirat\sq2mz84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f7 ) PACKEDFILE "building\pbm\inspirat\sq2mz85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f8 ) PACKEDFILE "building\pbm\inspirat\sq2mz86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f9 ) PACKEDFILE "building\pbm\inspirat\sq2mz87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fa ) PACKEDFILE "building\pbm\inspirat\sq2mz88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fb ) PACKEDFILE "building\pbm\inspirat\sq2mz89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fc ) PACKEDFILE "building\pbm\inspirat\sq2mz90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fd ) PACKEDFILE "building\pbm\inspirat\sq2mz91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fe ) PACKEDFILE "building\pbm\inspirat\sq2mz92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ff ) PACKEDFILE "building\pbm\inspirat\sq2mz93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000100 ) PACKEDFILE "building\pbm\inspirat\sq2mz94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000101 ) PACKEDFILE "building\pbm\inspirat\sq2mz95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000102 ) PACKEDFILE "building\pbm\inspirat\sq2mz96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000103 ) PACKEDFILE "building\pbm\inspirat\sq2mz97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000104 ) PACKEDFILE "building\pbm\inspirat\sq2mz98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000105 ) PACKEDFILE "building\pbm\inspirat\sq2mz99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000106 ) PACKEDFILE "building\pbm\inspirat\sq2mz100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000107 ) PACKEDFILE "building\pbm\inspirat\sq2mz101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\inspirat\sq2mz102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\inspirat\sq2mz103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\inspirat\sq2mz104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\inspirat\sq2mz105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\inspirat\sq2mz106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\inspirat\sq2mz107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\inspirat\sq2mz108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\inspirat\sq2mz109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\inspirat\sq2mz110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\inspirat\sq2mz111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\inspirat\sq2mz112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\inspirat\sq2mz113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\inspirat\sq2mz114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\inspirat\sq2mz115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\inspirat\sq2mz116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\inspirat\sq2mz117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\inspirat\sq2mz118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\inspirat\sq2mz119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\inspirat\sq2mz120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\inspirat\sq2mz121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011c ) PACKEDFILE "building\pbm\inspirat\sq2mz122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011d ) PACKEDFILE "building\pbm\inspirat\sq2mz123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011e ) PACKEDFILE "building\pbm\inspirat\sq2mz124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011f ) PACKEDFILE "building\pbm\inspirat\sq2mz125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000120 ) PACKEDFILE "building\pbm\inspirat\sq2mz126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000121 ) PACKEDFILE "building\pbm\inspirat\sq2mz127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000122 ) PACKEDFILE "building\pbm\inspirat\sq2mz128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000123 ) PACKEDFILE "building\pbm\inspirat\sq2mz129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000124 ) PACKEDFILE "building\pbm\inspirat\sq2mz130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000125 ) PACKEDFILE "building\pbm\inspirat\sq2mz131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000126 ) PACKEDFILE "building\pbm\inspirat\sq2mz132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000127 ) PACKEDFILE "building\pbm\inspirat\sq2mz133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000128 ) PACKEDFILE "building\pbm\inspirat\sq2mz134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000129 ) PACKEDFILE "building\pbm\inspirat\sq2mz135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012a ) PACKEDFILE "building\pbm\inspirat\sq2mz136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012b ) PACKEDFILE "building\pbm\inspirat\sq2mz137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012c ) PACKEDFILE "building\pbm\inspirat\sq2mz138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012d ) PACKEDFILE "building\pbm\inspirat\sq2mz139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012e ) PACKEDFILE "building\pbm\inspirat\sq2mz140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012f ) PACKEDFILE "building\pbm\inspirat\sq2mz141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000130 ) PACKEDFILE "building\pbm\inspirat\sq2mz142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000131 ) PACKEDFILE "building\pbm\inspirat\sq2mz143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000132 ) PACKEDFILE "building\pbm\inspirat\sq2mz144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000133 ) PACKEDFILE "building\pbm\inspirat\sq2mz145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000134 ) PACKEDFILE "building\pbm\inspirat\sq2mz146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000135 ) PACKEDFILE "building\pbm\inspirat\sq2mz147.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000136 ) PACKEDFILE "building\pbm\inspirat\sq2mz148.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000137 ) PACKEDFILE "building\pbm\inspirat\sq2mz149.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000138 ) PACKEDFILE "building\pbm\inspirat\sq2mz150.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000139 ) PACKEDFILE "building\pbm\inspirat\sq2mz151.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\inspirat\sq2mz152.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\inspirat\sq2mz153.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\inspirat\sq2mz154.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\inspirat\sq2mz155.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\inspirat\sq2mz156.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\inspirat\sq2mz157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\inspirat\sq2mz158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\inspirat\sq2mz159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\inspirat\sq2mz160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\inspirat\sq2mz161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000144 ) PACKEDFILE "building\pbm\inspirat\sq2mz162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000145 ) PACKEDFILE "building\pbm\inspirat\sq2mz163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000146 ) PACKEDFILE "building\pbm\inspirat\sq2mz164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000147 ) PACKEDFILE "building\pbm\inspirat\sq2mz165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000148 ) PACKEDFILE "building\pbm\inspirat\sq2mz166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000149 ) PACKEDFILE "building\pbm\inspirat\sq2mz167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014a ) PACKEDFILE "building\pbm\inspirat\sq2mz168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014b ) PACKEDFILE "building\pbm\inspirat\sq2mz169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014c ) PACKEDFILE "building\pbm\inspirat\sq2mz170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014d ) PACKEDFILE "building\pbm\inspirat\sq2mz171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014e ) PACKEDFILE "building\pbm\inspirat\sq2mz172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014f ) PACKEDFILE "building\pbm\inspirat\sq2mz173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000150 ) PACKEDFILE "building\pbm\inspirat\sq2mz174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000151 ) PACKEDFILE "building\pbm\inspirat\sq2mz175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000152 ) PACKEDFILE "building\pbm\inspirat\sq2mz176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000153 ) PACKEDFILE "building\pbm\inspirat\sq2mz177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000154 ) PACKEDFILE "building\pbm\inspirat\sq2mz178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000155 ) PACKEDFILE "building\pbm\inspirat\sq2mz179.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000156 ) PACKEDFILE "building\pbm\inspirat\sq2mz180.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000157 ) PACKEDFILE "building\pbm\inspirat\sq2mz181.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000158 ) PACKEDFILE "building\pbm\inspirat\sq2mz182.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000159 ) PACKEDFILE "building\pbm\inspirat\sq2mz183.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015a ) PACKEDFILE "building\pbm\inspirat\sq2mz184.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015b ) PACKEDFILE "building\pbm\inspirat\sq2mz185.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015c ) PACKEDFILE "building\pbm\inspirat\sq2mz186.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015d ) PACKEDFILE "building\pbm\inspirat\sq2mz187.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015e ) PACKEDFILE "building\pbm\inspirat\sq2mz188.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015f ) PACKEDFILE "building\pbm\inspirat\sq2mz189.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000160 ) PACKEDFILE "building\pbm\inspirat\sq2mz190.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000161 ) PACKEDFILE "building\pbm\inspirat\sq2mz191.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000162 ) PACKEDFILE "building\pbm\inspirat\sq2mz192.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000163 ) PACKEDFILE "building\pbm\inspirat\sq2mz193.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000164 ) PACKEDFILE "building\pbm\inspirat\sq2mz194.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000165 ) PACKEDFILE "building\pbm\inspirat\sq2mz195.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000166 ) PACKEDFILE "building\pbm\inspirat\sq2mz196.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000167 ) PACKEDFILE "building\pbm\inspirat\sq2mz197.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000168 ) PACKEDFILE "building\pbm\inspirat\sq2mz198.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000169 ) PACKEDFILE "building\pbm\inspirat\sq2mz199.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016a ) PACKEDFILE "building\pbm\inspirat\sq2mz200.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016b ) PACKEDFILE "building\pbm\inspirat\sq2mz201.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\inspirat\sq3mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\inspirat\sq3mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\inspirat\sq3mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\inspirat\sq3mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\inspirat\sq3mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\inspirat\sq3mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\inspirat\sq3mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\inspirat\sq3mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\inspirat\sq3mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\inspirat\sq3mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\inspirat\sq3mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\inspirat\sq3mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\inspirat\sq3mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\inspirat\sq3mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\inspirat\sq3mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\inspirat\sq3mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\inspirat\sq3mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\inspirat\sq3mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\inspirat\sq3mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\inspirat\sq3mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\inspirat\sq3mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b2 ) PACKEDFILE "building\pbm\inspirat\sq3mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b3 ) PACKEDFILE "building\pbm\inspirat\sq3mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b4 ) PACKEDFILE "building\pbm\inspirat\sq3mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b5 ) PACKEDFILE "building\pbm\inspirat\sq3mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b6 ) PACKEDFILE "building\pbm\inspirat\sq3mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b7 ) PACKEDFILE "building\pbm\inspirat\sq3mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b8 ) PACKEDFILE "building\pbm\inspirat\sq3mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b9 ) PACKEDFILE "building\pbm\inspirat\sq3mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ba ) PACKEDFILE "building\pbm\inspirat\sq3mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001bb ) PACKEDFILE "building\pbm\inspirat\sq3mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001bc ) PACKEDFILE "building\pbm\inspirat\sq3mz32.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001cf ) PACKEDFILE "building\pbm\inspirat\sq4mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\inspirat\sq4mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\inspirat\sq4mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\inspirat\sq4mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\inspirat\sq4mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\inspirat\sq4mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\inspirat\sq4mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\inspirat\sq4mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\inspirat\sq4mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\inspirat\sq4mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\inspirat\sq4mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\inspirat\sq4mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\inspirat\sq4mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\inspirat\sq4mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\inspirat\sq4mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\inspirat\sq4mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\inspirat\sq4mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\inspirat\sq4mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\inspirat\sq4mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\inspirat\sq4mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\inspirat\sq4mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e4 ) PACKEDFILE "building\pbm\inspirat\sq4mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e5 ) PACKEDFILE "building\pbm\inspirat\sq4mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e6 ) PACKEDFILE "building\pbm\inspirat\sq4mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e7 ) PACKEDFILE "building\pbm\inspirat\sq4mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e8 ) PACKEDFILE "building\pbm\inspirat\sq4mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e9 ) PACKEDFILE "building\pbm\inspirat\sq4mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ea ) PACKEDFILE "building\pbm\inspirat\sq4mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001eb ) PACKEDFILE "building\pbm\inspirat\sq4mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ec ) PACKEDFILE "building\pbm\inspirat\sq4mz30.pbm" ENDCHUNK -#line 53 "H:\\BUILD\\SOC\\src\\building\\inspirat.cht" - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x00000099 ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - If (!((0x00010000->kstEntry) == 0x0002 || (0x00010000->kstEntry) == 0x0006 || (0x00010000->kstEntry) == 0x0007 || (0x00010000->kstEntry) == 0x0008)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\building\\inspirat.cht", ", line ", NumToStr(55,"")); End; - - If ((0x00010000->kstEntry) == 0x0006); - 0x00010000->kstEntry = (0x0002); - - - - - Else; - 0x00010000->fHelpOn = (0); - - End; - - .fEnableAccel = 0; - - ChangeStateThis((0x00010000->kstEntry)); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt=0x00000068; - Cell( cnt, 0,0, 0 ); - - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00011400, 0x00018557 ); - End; - - While (1); - While( cnt <= 0x0000006e ); - Cell( cnt++, 0, 0, 9); - End; - - cnt = 0x0000006d; - While( cnt >= 0x00000069 ); - Cell( cnt--, 0, 0, 9); - End; - - SetNoSlipThis( 1 ); - rnd = Rnd( 100 ); - If( rnd < 20 ); - If( rnd < 14 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018032, 0, 0x00010000, 1, 0, 998); - cnt=0x00000040; - While( cnt < 0x0000004e ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - If( rnd > 5 ); - cnt=0x0000004e; - While( cnt <= 0x00000068 ); - If( cnt == 0x00000052 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018033, 0, 0x00010000, 1, 0, 998); - End; - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - End; - SetNoSlipThis( 0 ); - End; - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x000000a4, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x0001140d, 0x0001140d ); - Cell( 0x000000a4,0,0, 100 ); - - - While( PlayingGob( 0x0001140d )); - Cell( 0x000000a4, 0, 0, 10 ); - End; - DestroyGob( 0x0001140d ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0002 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - - - - - - - - Cell( 0x00000068,0,0, 1 ); - - - While ( !FGobExists(0x00015100) && !FGobExists(0x00012205) ); - Cell( 0,0,0, 50 ); - End; - - While( FGobExists(0x00015100) || FGobExists(0x00012205) ); - - Cell( 0,0,0, 50 ); - End; - - - If (.fEnableAccel); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - .fEnableAccel = 0; - End; - - - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0002 ); - ENDCHUNK; - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x0000019e, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x0001140e, 0x0001140e ); - Cell( 0x0000019e,0,0, 100 ); - - - While( PlayingGob( 0x0001140e )); - Cell( 0x0000019e, 0, 0, 10 ); - End; - DestroyGob( 0x0001140e ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - .fEnableAccel = 1; - - EnqueueCid(50095, 1, 0x00011400, 0x00012205, 0, 0); - ChangeStateThis( 0x0005 ); - ENDCHUNK; - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x000001d0, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x0001140f, 0x0001140f ); - Cell( 0x000001d0,0,0, 100 ); - - - While( PlayingGob( 0x0001140f )); - Cell( 0x000001d0, 0, 0, 10 ); - End; - DestroyGob( 0x0001140f ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - Transition(3, 0, 60, 0xffffffff, 0xFFFFFFFF ); - - - ::nBioPage = 0; ::fBioCtrl = 1; CreateChildGob( 0x00011400, 0x00015100, 0x00015100 ); - ChangeStateThis( 0x0005 ); - ENDCHUNK; - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - SetNoSlipThis( 0 ); - If( (0x00010000->fHelpOn) == 0 ); - 0x00010000->fHelpOn = (1); - 0x00010000->fIdeasPS = (0); - ChangeStateGob( 0x00011401, 0x0003 ); - Elif( (0x00010000->fHelpOn) == 1 && StateThis() == 0x0002); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - Elif( (0x00010000->fHelpOn) == 1 ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateThis( 0x0002 ); - End; - ENDCHUNK - -CHUNK( 'GLOP', 0x00018557, ) SCRIPT - If( _parm[0] == 0 ); - - Elif( _parm[0] == 1 ); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00011401, 0x0007 ); - - Elif( _parm[0] == 2 ); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00011401, 0x0008 ); - End; -ENDCHUNK - -SET _curgok = 0x00011402 CHUNK( 'GOKD', 0x00011402, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\SplotMsk.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - 0x00010000->fHelpOn = (0); - If( FGobExists( 0x00016008 ) ); - DestroyGob( 0x00016008 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateGob( 0x00011401, 0x0007 ); - ENDCHUNK - -SET _curgok = 0x00011403 CHUNK( 'GOKD', 0x00011403, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\TalntMsk.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - 0x00010000->fHelpOn = (0); - If( FGobExists( 0x00016008 ) ); - DestroyGob( 0x00016008 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateGob( 0x00011401, 0x0008 ); - ENDCHUNK - - -SET _curgok = 0x00011501 CHUNK( 'GOKD', 0x00011501, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\ins2door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); - ENDCHUNK - -SET _curgok = 0x00011503 CHUNK( 'GOKD', 0x00011503, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\ins2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00011502 CHUNK( 'GOKD', 0x00011502, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\ins2quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - - -SET _curgok = 0x00012205 CHUNK( 'GOKD', 0x00012205, ) SHORT BO OSK LONG 0 LONG 0 0 0 1000 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\splot0.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00012206, 0x00012206 ); - CreateChildThis( 0x00012207, 0x00012207 ); - CreateChildThis( 0x00012208, 0x00012208 ); - CreateChildThis( 0x00012209, 0x00012209 ); - CreateChildThis( 0x0001220a, 0x0001220a ); - CreateChildThis( 0x0001220b, 0x0001220b ); - CreateChildThis( 0x0001220c, 0x0001220c ); - CreateChildThis( 0x0001220d, 0x0001220d ); - CreateHelpThis( 0x00018558 ); - EnqueueCid(50083, 0x00012205, 0x0001220d, 0, 0, 0); - CreateChildThis( 0x0001220e, 0x0001220e ); - ENDCHUNK - - -SET _curgok = 0x0001220e CHUNK( 'GOKD', 0x0001220e, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 48 95 591 401 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x0001220d CHUNK( 'GOKD', 0x0001220d, ) SHORT BO OSK LONG 1 - LONG 0 0 0 0 - LONG 0 0 0x00000000 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 48 95 591 401 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x00012206 CHUNK( 'GOKD', 0x00012206, ) SHORT BO OSK LONG 1 - LONG 0 600 194 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\bigarm2.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\bigarm3.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\bigarm4.pbm" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\bigarm1.pbm" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\bigarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob( 0x00012207, 0x0002 ); - ChangeStateGob( 0x00012208, 0x0002 ); - ChangeStateGob( 0x00012209, 0x0002 ); - ChangeStateGob( 0x0001220a, 0x0002 ); - - ChangeStateGob( 0x0001220b, 0x0002 ); - EnqueueCid(50084, 0x00012205, 1, 1, 1, 1); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - CreateHelpGob( GidParThis(), 0x00018559 ); - End; - ENDCHUNK - - - - - -SET _curgok = 0x00012207 CHUNK( 'GOKD', 0x00012207, ) SHORT BO OSK LONG 1 - LONG 0 427 2 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\actarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\actarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\actarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\actarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\actarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - EnqueueCid(50084, 0x00012205, 0, 0, 1, 0); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - -SET _curgok = 0x00012208 CHUNK( 'GOKD', 0x00012208, ) SHORT BO OSK LONG 1 - LONG 0 289 2 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\cmrarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\cmrarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\cmrarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\cmrarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\cmrarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50084, 0x00012205, 0, 1, 0, 0); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - -SET _curgok = 0x00012209 CHUNK( 'GOKD', 0x00012209, ) SHORT BO OSK LONG 1 - LONG 0 566 2 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\muscarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\muscarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\muscarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\muscarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\muscarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50084, 0x00012205, 0, 0, 0, 1); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - -SET _curgok = 0x0001220a CHUNK( 'GOKD', 0x0001220a, ) SHORT BO OSK LONG 1 - LONG 0 146 1 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\scnarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\scnarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\scnarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\scnarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\scnarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50084, 0x00012205, 1, 0, 0, 0); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - - -SET _curgok = 0x0001220b CHUNK( 'GOKD', 0x0001220b, ) SHORT BO OSK LONG 1 - LONG 0 471 426 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\toolboxd.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\toolbox1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\toolbox2.pbm" ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50086, 0x00012205, 0, 0, 0, 0); - - - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - RunScriptGob(0x00010000, 0x0028, 0x00011400, 0x0002, 0xFFFFFFFF);; - ENDCHUNK - - - - -SET _curgok = 0x0001220c CHUNK( 'GOKD', 0x0001220c, ) SHORT BO OSK LONG 1 - LONG 0 521 426 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\cancel1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\cancel2.pbm" ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - EnqueueCid(50087, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - - - -SET _curgok = 0x00011404 CHUNK( 'GOKD', 0x00011404, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((39 > 31) ? ( ::fBio2 & (1<<(39&31)) ) : ( ::fBio1 & (1<<(39&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (39 & 31); If (39 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 39; ::fBioCtrl = 0; CreateChildGob( 0x00011400, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - -SET _curgok = 0x0001140a CHUNK( 'GOKD', 0x0001140a, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea4m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((7 > 31) ? ( ::fBio2 & (1<<(7&31)) ) : ( ::fBio1 & (1<<(7&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (7 & 31); If (7 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 7; ::fBioCtrl = 0; CreateChildGob( 0x00011700, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001140b CHUNK( 'GOKD', 0x0001140b, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea4m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((8 > 31) ? ( ::fBio2 & (1<<(8&31)) ) : ( ::fBio1 & (1<<(8&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (8 & 31); If (8 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 8; ::fBioCtrl = 0; CreateChildGob( 0x00011700, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001140c CHUNK( 'GOKD', 0x0001140c, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea4m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((9 > 31) ? ( ::fBio2 & (1<<(9&31)) ) : ( ::fBio1 & (1<<(9&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (9 & 31); If (9 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 9; ::fBioCtrl = 0; CreateChildGob( 0x00011700, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011406 CHUNK( 'GOKD', 0x00011406, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea3m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((10 > 31) ? ( ::fBio2 & (1<<(10&31)) ) : ( ::fBio1 & (1<<(10&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (10 & 31); If (10 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 10; ::fBioCtrl = 0; CreateChildGob( 0x00011600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011407 CHUNK( 'GOKD', 0x00011407, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea3m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((11 > 31) ? ( ::fBio2 & (1<<(11&31)) ) : ( ::fBio1 & (1<<(11&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (11 & 31); If (11 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 11; ::fBioCtrl = 0; CreateChildGob( 0x00011600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011408 CHUNK( 'GOKD', 0x00011408, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea3m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((12 > 31) ? ( ::fBio2 & (1<<(12&31)) ) : ( ::fBio1 & (1<<(12&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (12 & 31); If (12 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 12; ::fBioCtrl = 0; CreateChildGob( 0x00011600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011405 CHUNK( 'GOKD', 0x00011405, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((13 > 31) ? ( ::fBio2 & (1<<(13&31)) ) : ( ::fBio1 & (1<<(13&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (13 & 31); If (13 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 13; ::fBioCtrl = 0; CreateChildGob( 0x00011500, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 69 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - - - - - - - - -CHUNK( 'WAVE', 0x00018113, ) FILE "building\sound\studio\tvpop.wav" ENDCHUNK -SET _curgok = 0x00011801 CHUNK( 'GOKD', 0x00011801, ) SHORT BO OSK LONG 0 LONG 0 0 0 120 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\st1tbx.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - cnt = 0x00000040; - Cell( cnt++, 0,0, 6 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018113, 0, 0x00010000, 1, 0, 998); - CreateChildGob( 0x00011800, 0x00011804, 0x00011804 ); - While (cnt <= 0x00000045); - Cell(cnt++, 0,0, 6); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\studioBx.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\studio\box1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\studio\box2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\studio\box3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\studio\box4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\studio\box5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\studio\box6.pbm" ENDCHUNK -#line 30 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - -SET _curgok = 0x00011804 CHUNK( 'GOKD', 0x00011804, ) SHORT BO OSK LONG 0 LONG 0 0 0 810 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt = 0x00000040; - SetNoSlipThis( 1 ); - While (cnt <= 0x00000055); - Cell(cnt++, 0,0, 6); - End; - SetNoSlipThis( 0 ); - Cell( cnt, 0,0, 6 ); - ChangeStateGob( 0x00011802, 0x0004 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\studioTv.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\studio\tv1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\studio\tv2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\studio\tv3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\studio\tv4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\studio\tv5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\studio\tv6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\studio\tv7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\studio\tv8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\studio\tv9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\studio\tv10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\studio\tv11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\studio\tv12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\studio\tv13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\studio\tv14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\studio\tv15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\studio\tv16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\studio\tv17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\studio\tv18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\studio\tv19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\studio\tv20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\studio\tv21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\studio\tv22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\studio\tv23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\studio\tv24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\studio\tv25.pbm" ENDCHUNK -#line 44 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - - - - - -CHUNK( 'WAVE', 0x00018103, ) FILE "building\sound\studio\Std1A.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018104, ) FILE "building\sound\studio\VO97A.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018105, ) FILE "building\sound\studio\VO97B.wav" ENDCHUNK - -CHUNK( 'WAVE', 0x0001803a, ) FILE "building\sound\studio\Std1B.wav" ENDCHUNK - - -CHUNK( 'WAVE', 0x0001810e, ) FILE "building\sound\studio\STD4.wav" ENDCHUNK - - -SET _curgok = 0x00011803 CHUNK( 'GOKD', 0x00011803, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "tools1.avi" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - - StopThis(); - ENDCHUNK - - - -SET _curgok = 0x00011802 CHUNK( 'GOKD', 0x00011802, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(0x00000084, 0, 0, 120); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - While (1); - - iAnimRnd = Rnd(3); - If (iAnimRnd == 0); - kcellStart = 0x00000040; - kcellEnd = 0x00000082; - Elif (iAnimRnd == 1); - kcellStart = 0x00000063; - kcellEnd = 0x00000082; - Else; - kcellStart = 0x00000040; - kcellEnd = 0x00000069; - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018103 + iAnimRnd, 0, 0x00010000, 1, 0, 998); - - i = kcellStart; - Cell(i++, 0, 0, 6); - SetNoSlipThis( 1 ); - While (i < kcellEnd); - Cell(i, 0, 0, 6); - i++; - End; - SetNoSlipThis( 0 ); - Cell( kcellEnd, 0,0, 6 ); - - - i=0x00000202; - While (i <= 0x00000245); - Cell(i, 0, 0, 6); - i++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001803a, 0, 0x00010000, 1, 0, 998); - i = 0x00000084; - While (i <= 0x000000c9); - Cell(i, 0,0, 6); - i++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - 0x00010000->fHelpOn = (0); - DestroyGob(0x00016007); - ChangeStateThis(0x0002); - ENDCHUNK - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0,0, 1 ); - DestroyGob( 0x00011804 ); - DestroyGob( 0x00011801 ); - ChangeStateGob( 0x00011800, 0x0002 ); - - If( ::fStdIntro ); - - - ChangeStateGob( 0x00011802, 0x0005 ); - Exit(); - End; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ::fStdIntro = 1; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - CreateChildGob( GidParThis(), 0x00011803, 0x00011803 ); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st,0,0, 100 ); - While( PlayingGob( 0x00011803 )); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 10 ); - End; - 0x00010000->fStudioPS = (0); - ChangeStateThis( 0x0005 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - DestroyThis(); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - - SetProp(0x23502, GetProp(0x23502) | 1); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If (!(0x00010000->fHelpOn)); - 0x00010000->fHelpOn = (1); - CreateHelpGob(0x00011800, 0x0001855a); - ChangeStateThis(0x0003); - Else; - DestroyGob(0x00016007); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - 0x00010000->fHelpOn = (0); - ChangeStateThis(0x0002); - End; - ENDCHUNK -#line 1 "H:\\BUILD\\SOC\\src\\building\\mzstudio.seq" - - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\studio\mczee1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\studio\mczee2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\studio\mczee3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\studio\mczee4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\studio\mczee5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\studio\mczee6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\studio\mczee7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\studio\mczee8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\studio\mczee9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\studio\mczee10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\studio\mczee11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\studio\mczee12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\studio\mczee13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\studio\mczee14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\studio\mczee15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\studio\mczee16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\studio\mczee17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\studio\mczee18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\studio\mczee19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\studio\mczee20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\studio\mczee21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\studio\mczee22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\studio\mczee23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\studio\mczee24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\studio\mczee25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\studio\mczee26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\studio\mczee27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\studio\mczee28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\studio\mczee29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\studio\mczee30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\studio\mczee31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\studio\mczee32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\studio\mczee33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\studio\mczee34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\studio\mczee35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\studio\mczee36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\studio\mczee37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\studio\mczee38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\studio\mczee39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\studio\mczee40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\studio\mczee41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\studio\mczee42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\studio\mczee43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\studio\mczee44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\studio\mczee45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\studio\mczee46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\studio\mczee47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\studio\mczee48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\studio\mczee49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\studio\mczee50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\studio\mczee51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\studio\mczee52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\studio\mczee53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\studio\mczee54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\studio\mczee55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\studio\mczee56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\studio\mczee57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\studio\mczee58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\studio\mczee59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\studio\mczee60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\studio\mczee61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\studio\mczee62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\studio\mczee63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\studio\mczee64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\studio\mczee65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\studio\mczee66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\studio\mczee67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\studio\mczee68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\studio\mczee69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\studio\mczee70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\studio\mczee71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\studio\mczee72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\studio\mczee73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\studio\mczee74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\studio\mczee75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\studio\mczee76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\studio\mczee77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\studio\mczee78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\studio\mczee79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\studio\mczee80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\studio\mczee81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\studio\mczee82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\studio\mczee83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\studio\mczee84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\studio\mczee85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\studio\mczee86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\studio\mczee87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\studio\mczee88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\studio\mczee89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\studio\mczee90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\studio\mczee91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\studio\mczee92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\studio\mczee93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\studio\mczee94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\studio\mczee95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\studio\mczee96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\studio\mczee97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\studio\mczee98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\studio\mczee99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\studio\mczee100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\studio\mczee101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\studio\mczee102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\studio\mczee103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\studio\mczee104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\studio\mczee105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\studio\mczee106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\studio\mczee107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\studio\mczee108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\studio\mczee109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\studio\mczee110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\studio\mczee111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\studio\mczee112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\studio\mczee113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\studio\mczee114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\studio\mczee115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\studio\mczee116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\studio\mczee117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\studio\mczee118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\studio\mczee119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\studio\mczee120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\studio\mczee121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\studio\mczee122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\studio\mczee123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\studio\mczee124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\studio\mczee125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\studio\mczee126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\studio\mczee127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\studio\mczee128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\studio\mczee129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\studio\mczee130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\studio\mczee131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\studio\mczee132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\studio\mczee133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\studio\mczee134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\studio\mczee135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\studio\mczee136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\studio\mczee137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\studio\mczee138.pbm" ENDCHUNK - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000202 ) PACKEDFILE "building\pbm\studio\cyc1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000203 ) PACKEDFILE "building\pbm\studio\cyc2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000204 ) PACKEDFILE "building\pbm\studio\cyc3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000205 ) PACKEDFILE "building\pbm\studio\cyc4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000206 ) PACKEDFILE "building\pbm\studio\cyc5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000207 ) PACKEDFILE "building\pbm\studio\cyc6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000208 ) PACKEDFILE "building\pbm\studio\cyc7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000209 ) PACKEDFILE "building\pbm\studio\cyc8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020a ) PACKEDFILE "building\pbm\studio\cyc9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020b ) PACKEDFILE "building\pbm\studio\cyc10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020c ) PACKEDFILE "building\pbm\studio\cyc11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020d ) PACKEDFILE "building\pbm\studio\cyc12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020e ) PACKEDFILE "building\pbm\studio\cyc13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020f ) PACKEDFILE "building\pbm\studio\cyc14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000210 ) PACKEDFILE "building\pbm\studio\cyc15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000211 ) PACKEDFILE "building\pbm\studio\cyc16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000212 ) PACKEDFILE "building\pbm\studio\cyc17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000213 ) PACKEDFILE "building\pbm\studio\cyc18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000214 ) PACKEDFILE "building\pbm\studio\cyc19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000215 ) PACKEDFILE "building\pbm\studio\cyc20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000216 ) PACKEDFILE "building\pbm\studio\cyc21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000217 ) PACKEDFILE "building\pbm\studio\cyc22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000218 ) PACKEDFILE "building\pbm\studio\cyc23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000219 ) PACKEDFILE "building\pbm\studio\cyc24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021a ) PACKEDFILE "building\pbm\studio\cyc25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021b ) PACKEDFILE "building\pbm\studio\cyc26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021c ) PACKEDFILE "building\pbm\studio\cyc27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021d ) PACKEDFILE "building\pbm\studio\cyc28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021e ) PACKEDFILE "building\pbm\studio\cyc29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021f ) PACKEDFILE "building\pbm\studio\cyc30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000220 ) PACKEDFILE "building\pbm\studio\cyc31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000221 ) PACKEDFILE "building\pbm\studio\cyc32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000222 ) PACKEDFILE "building\pbm\studio\cyc33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000223 ) PACKEDFILE "building\pbm\studio\cyc34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000224 ) PACKEDFILE "building\pbm\studio\cyc35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000225 ) PACKEDFILE "building\pbm\studio\cyc36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000226 ) PACKEDFILE "building\pbm\studio\cyc37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000227 ) PACKEDFILE "building\pbm\studio\cyc38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000228 ) PACKEDFILE "building\pbm\studio\cyc39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000229 ) PACKEDFILE "building\pbm\studio\cyc40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022a ) PACKEDFILE "building\pbm\studio\cyc41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022b ) PACKEDFILE "building\pbm\studio\cyc42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022c ) PACKEDFILE "building\pbm\studio\cyc43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022d ) PACKEDFILE "building\pbm\studio\cyc44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022e ) PACKEDFILE "building\pbm\studio\cyc45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022f ) PACKEDFILE "building\pbm\studio\cyc46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000230 ) PACKEDFILE "building\pbm\studio\cyc47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000231 ) PACKEDFILE "building\pbm\studio\cyc48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000232 ) PACKEDFILE "building\pbm\studio\cyc49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000233 ) PACKEDFILE "building\pbm\studio\cyc50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000234 ) PACKEDFILE "building\pbm\studio\cyc51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000235 ) PACKEDFILE "building\pbm\studio\cyc52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000236 ) PACKEDFILE "building\pbm\studio\cyc53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000237 ) PACKEDFILE "building\pbm\studio\cyc54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000238 ) PACKEDFILE "building\pbm\studio\cyc55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000239 ) PACKEDFILE "building\pbm\studio\cyc56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023a ) PACKEDFILE "building\pbm\studio\cyc57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023b ) PACKEDFILE "building\pbm\studio\cyc58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023c ) PACKEDFILE "building\pbm\studio\cyc59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023d ) PACKEDFILE "building\pbm\studio\cyc60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023e ) PACKEDFILE "building\pbm\studio\cyc61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023f ) PACKEDFILE "building\pbm\studio\cyc62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000240 ) PACKEDFILE "building\pbm\studio\cyc63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000241 ) PACKEDFILE "building\pbm\studio\cyc64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000242 ) PACKEDFILE "building\pbm\studio\cyc65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000243 ) PACKEDFILE "building\pbm\studio\cyc66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000244 ) PACKEDFILE "building\pbm\studio\cyc67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000245 ) PACKEDFILE "building\pbm\studio\cyc68.pbm" ENDCHUNK -#line 187 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - -SET _curgok = 0x00011901 CHUNK( 'GOKD', 0x00011901, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\st2doors.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); -ENDCHUNK - -SET _curgok = 0x00011903 CHUNK( 'GOKD', 0x00011903, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\st2map.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); -ENDCHUNK - -SET _curgok = 0x00011902 CHUNK( 'GOKD', 0x00011902, ) SHORT BO OSK LONG 0 LONG 0 0 0 45 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "building\bitmaps\studio\st2exit.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; -ENDCHUNK - -SET _curgok = 0x00011904 CHUNK( 'GOKD', 0x00011904, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\st2exit.pbm" ENDCHUNK - - - - - -SET _curgok = 0x00011805 CHUNK( 'GOKD', 0x00011805, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((38 > 31) ? ( ::fBio2 & (1<<(38&31)) ) : ( ::fBio1 & (1<<(38&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (38 & 31); If (38 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 38; ::fBioCtrl = 0; CreateChildGob( 0x00011800, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - -SET _curgok = 0x00011905 CHUNK( 'GOKD', 0x00011905, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((14 > 31) ? ( ::fBio2 & (1<<(14&31)) ) : ( ::fBio1 & (1<<(14&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (14 & 31); If (14 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 14; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011906 CHUNK( 'GOKD', 0x00011906, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((15 > 31) ? ( ::fBio2 & (1<<(15&31)) ) : ( ::fBio1 & (1<<(15&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (15 & 31); If (15 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 15; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011907 CHUNK( 'GOKD', 0x00011907, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((16 > 31) ? ( ::fBio2 & (1<<(16&31)) ) : ( ::fBio1 & (1<<(16&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (16 & 31); If (16 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 16; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011908 CHUNK( 'GOKD', 0x00011908, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m4.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((17 > 31) ? ( ::fBio2 & (1<<(17&31)) ) : ( ::fBio1 & (1<<(17&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (17 & 31); If (17 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 17; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011909 CHUNK( 'GOKD', 0x00011909, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo3m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((18 > 31) ? ( ::fBio2 & (1<<(18&31)) ) : ( ::fBio1 & (1<<(18&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (18 & 31); If (18 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 18; ::fBioCtrl = 0; CreateChildGob( 0x00011a00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190a CHUNK( 'GOKD', 0x0001190a, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo3m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((19 > 31) ? ( ::fBio2 & (1<<(19&31)) ) : ( ::fBio1 & (1<<(19&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (19 & 31); If (19 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 19; ::fBioCtrl = 0; CreateChildGob( 0x00011a00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190b CHUNK( 'GOKD', 0x0001190b, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo3m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((20 > 31) ? ( ::fBio2 & (1<<(20&31)) ) : ( ::fBio1 & (1<<(20&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (20 & 31); If (20 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 20; ::fBioCtrl = 0; CreateChildGob( 0x00011a00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190c CHUNK( 'GOKD', 0x0001190c, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((21 > 31) ? ( ::fBio2 & (1<<(21&31)) ) : ( ::fBio1 & (1<<(21&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (21 & 31); If (21 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 21; ::fBioCtrl = 0; CreateChildGob( 0x00011900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190d CHUNK( 'GOKD', 0x0001190d, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((22 > 31) ? ( ::fBio2 & (1<<(22&31)) ) : ( ::fBio1 & (1<<(22&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (22 & 31); If (22 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 22; ::fBioCtrl = 0; CreateChildGob( 0x00011900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190e CHUNK( 'GOKD', 0x0001190e, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo2m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((23 > 31) ? ( ::fBio2 & (1<<(23&31)) ) : ( ::fBio1 & (1<<(23&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (23 & 31); If (23 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 23; ::fBioCtrl = 0; CreateChildGob( 0x00011900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 70 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018109, ) FILE "building\sound\projects\Prjt1.wav" ENDCHUNK - -CHUNK( 'WAVE', 0x00018112, ) FILE "building\sound\projects\monitor.wav" ENDCHUNK - -SET _curgok = 0x00011b08 CHUNK( 'GOKD', 0x00011b08, ) SHORT BO OSK LONG 2 - LONG 0 64 140 999 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "projt2.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - FilterCmdsThis( 40042, 0, 0x0021 ); - FilterCmdsThis( 100, 0, 0x0021 ); - FilterCmdsThis( 101, 0, 0x0021 ); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - DestroyThis(); - Return( 0 ); - ENDCHUNK - - -SET _curgok = 0x00011b02 CHUNK( 'GOKD', 0x00011b02, ) SHORT BO OSK LONG 0 LONG 0 0 0 75 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\projects\prj1mon1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - PrintStr("Monitor1: animation"); - - DestroyGob( 0x00011c0d ); - - SetZThis( 2160 ); - If ( FGobExists(0x00016007)); - DestroyGob(0x00016007); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018112, 0, 0x00010000, 1, 0, 998); - cnt = 0x00000041; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x0000004f ); - Cell( cnt++, 0, 0, 6 ); - - End; - - CreateChildGob( 0x00011c00, 0x00011b05, 0x00011b05); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\PrjMon1.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\tvlan1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\projects\tvlan2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\projects\tvlan3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\projects\tvlan4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\projects\tvlan5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\projects\tvlan6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\projects\tvlan7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\projects\tvlan8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\projects\tvlan9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\projects\tvlan10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\projects\tvlan11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\projects\tvlan12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\projects\tvlan13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\projects\tvlan14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\projects\tvlan15.pbm" ENDCHUNK -#line 78 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - -SET _curgok = 0x00011c0d CHUNK( 'GOKD', 0x00011c0d, ) SHORT BO OSK LONG 2 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "building\bitmaps\projects\holder1.bmp" ENDCHUNK - - -SET _curgok = 0x00011b03 CHUNK( 'GOKD', 0x00011b03, ) SHORT BO OSK LONG 0 LONG 0 0 0 155 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\projects\prj1mon2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - PrintStr("Monitor2: animation"); - - DestroyGob( 0x00011c0e ); - - SetZThis( 2160 ); - - If ( FGobExists(0x00016007)); - DestroyGob(0x00016007); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018112, 0, 0x00010000, 1, 0, 998); - cnt = 0x00000041; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x0000004f ); - Cell( cnt++, 0, 0, 6 ); - End; - CreateChildGob(0x00011c00, 0x00011b06, 0x00011b06); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\PrjMon2.seq" - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\tvran1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\projects\tvran2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\projects\tvran3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\projects\tvran4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\tvran5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\projects\tvran6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\projects\tvran7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\projects\tvran8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\projects\tvran9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\projects\tvran10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\projects\tvran11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\projects\tvran12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\projects\tvran13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\projects\tvran14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\projects\tvran15.pbm" ENDCHUNK -#line 110 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - -SET _curgok = 0x00011c0e CHUNK( 'GOKD', 0x00011c0e, ) SHORT BO OSK LONG 2 LONG 0 0 0 155 LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "building\bitmaps\projects\holder2.bmp" ENDCHUNK - - - - -SET _curgok = 0x00011b01 CHUNK( 'GOKD', 0x00011b01, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\melproj1.seq" - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\projects\mel1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\mel2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\projects\mel3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\projects\mel4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\projects\mel5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\projects\mel6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\projects\mel7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\projects\mel8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\projects\mel9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\projects\mel10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\projects\mel11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\projects\mel12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\projects\mel13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\projects\mel14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\projects\mel15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\projects\mel16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\projects\mel17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\projects\mel18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\projects\mel19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\projects\mel20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\projects\mel21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\projects\mel22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\projects\mel23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\projects\mel24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\projects\mel25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\projects\mel26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\projects\mel27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\projects\mel28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\projects\mel29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\projects\mel30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\projects\mel31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\projects\mel32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\projects\mel33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\projects\mel34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\projects\mel35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\projects\mel36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\projects\mel37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\projects\mel38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\projects\mel39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\projects\mel40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\projects\mel41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\projects\mel42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\projects\mel43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\projects\mel44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\projects\mel45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\projects\mel46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\projects\mel47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\projects\mel48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\projects\mel49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\projects\mel50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\projects\mel51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\projects\mel52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\projects\mel53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\projects\mel54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\projects\mel55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\projects\mel56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\projects\mel57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\projects\mel58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\projects\mel59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\projects\mel60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\projects\mel61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\projects\mel62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\projects\mel63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\projects\mel64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\projects\mel65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\projects\mel66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\projects\mel67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\projects\mel68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\projects\mel69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\projects\mel70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\projects\mel71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\projects\mel72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\projects\mel73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\projects\mel74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\projects\mel75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\projects\mel76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\projects\mel77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\projects\mel78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\projects\mel79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\projects\mel80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\projects\mel81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\projects\mel82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\projects\mel83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\projects\mel84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\projects\mel85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\projects\mel86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\projects\mel87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\projects\mel88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\projects\mel89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\projects\mel90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\projects\mel91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\projects\mel92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\projects\mel93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\projects\mel94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\projects\mel95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\projects\mel96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\projects\mel97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\projects\mel98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\projects\mel99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\projects\mel100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\projects\mel101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\projects\mel102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\projects\mel103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\projects\mel104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\projects\mel105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\projects\mel106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\projects\mel107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\projects\mel108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\projects\mel109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\projects\mel110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\projects\mel111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\projects\mel112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\projects\mel113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\projects\mel114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\projects\mel115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\projects\mel116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\projects\mel117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\projects\mel118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\projects\mel119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\projects\mel120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\projects\mel121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\projects\mel122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\projects\mel123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\projects\mel124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\projects\mel125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\projects\mel126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\projects\mel127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\projects\mel128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\projects\mel129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\projects\mel130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\projects\mel131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\projects\mel132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\projects\mel133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\projects\mel134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\projects\mel135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\projects\mel136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\projects\mel137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\projects\mel138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\projects\mel139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\projects\mel140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\projects\mel141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\projects\mel142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\projects\mel143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\projects\mel144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\projects\mel145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\projects\mel146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\projects\mel147.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\projects\mel148.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\projects\mel149.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\projects\mel150.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\projects\mel151.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\projects\mel152.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\projects\mel153.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\projects\mel154.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\projects\mel155.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\projects\mel156.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\projects\mel157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\projects\mel158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\projects\mel159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\projects\mel160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\projects\mel161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\projects\mel162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\projects\mel163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\projects\mel164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\projects\mel165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\projects\mel166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\projects\mel167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\projects\mel168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\projects\mel169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e9 ) PACKEDFILE "building\pbm\projects\mel170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ea ) PACKEDFILE "building\pbm\projects\mel171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000eb ) PACKEDFILE "building\pbm\projects\mel172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ec ) PACKEDFILE "building\pbm\projects\mel173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ed ) PACKEDFILE "building\pbm\projects\mel174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ee ) PACKEDFILE "building\pbm\projects\mel175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ef ) PACKEDFILE "building\pbm\projects\mel176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f0 ) PACKEDFILE "building\pbm\projects\mel177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f1 ) PACKEDFILE "building\pbm\projects\mel178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f2 ) PACKEDFILE "building\pbm\projects\mel179.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f3 ) PACKEDFILE "building\pbm\projects\mel180.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\projects\mel181.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\projects\mel182.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\projects\mel183.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\projects\melcy1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\projects\melcy2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\projects\melcy3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\projects\melcy4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\projects\melcy5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\projects\melcy6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\projects\melcy7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\projects\melcy8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\projects\melcy9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\projects\melcy10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\projects\melcy11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\projects\melcy12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\projects\melcy13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\projects\melcy14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\projects\melcy15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\projects\melcy16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\projects\melcy17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\projects\melcy18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\projects\melcy19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\projects\melcy20.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\projects\mel301.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\projects\mel302.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\projects\mel303.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\projects\mel304.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\projects\mel305.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\projects\mel306.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\projects\mel307.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\projects\mel308.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\projects\mel309.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\projects\mel310.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\projects\mel311.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\projects\mel312.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\projects\mel313.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\projects\mel314.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\projects\mel315.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\projects\mel316.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\projects\mel317.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\projects\mel318.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\projects\mel319.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\projects\mel320.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\projects\mel321.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\projects\mel322.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\projects\mel323.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\projects\mel324.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\projects\mel325.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\projects\mel326.pbm" ENDCHUNK -#line 119 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - - - - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - PrintStr("Melanie state 2 rep."); - Cell(0x00000108, 0, 0, 0); - - - If ((0x00010000->fHelpOn)); - PrintStr("Help is on."); - CreateHelpGob(0x00011c00, 0x00018556); - End; - - While( 1 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018109, 0, 0x00010000, 1, 0, 998); - i = 0x00000108; - While (i <= 0x0000011c ); - Cell(i, 0, 0, 6); - i++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - PrintStr("Melanie state 3 rep."); - - - - CreateChildGob( 0x00011c00, 0x00011b08, 0x00011b08 ); - - - Cell( 0x00000040, 0,0, 100 ); - While( PlayingGob( 0x00011b08 )); - Cell( 0x00000040, 0, 0, 10 ); - End; - If( FGobExists( 0x00011b08 )); - DestroyGob( 0x00011b08 ); - End; - - - 0x00010000->fHelpOn = (1); - ChangeStateThis(0x0002); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - - If (StateThis() == 0x0003); - 0x00010000->fHelpOn = (1); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateThis(0x0002); - - Elif (!(0x00010000->fHelpOn)); - ChangeStateThis(0x0003); - Else; - 0x00010000->fHelpOn = (0); - DestroyGob(0x00016007); - End; - ENDCHUNK - -CHUNK( 'GLOP', 0x00018556, ) SCRIPT - If (_parm[0] == 0); - PrintStr("On Help tip create..."); - - Elif (_parm[0] == 1); - ChangeStateGob( 0x00011b02, 0x0002 ); - - Elif (_parm[0] == 2); - ChangeStateGob( 0x00011b03, 0x0002 ); - End; -ENDCHUNK - - -SET _curgok = 0x00011b05 CHUNK( 'GOKD', 0x00011b05, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - PrintStr("Creating FLYING LOGOS object."); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - SetProp(0x23502, GetProp(0x23502) & 0xfffffffe); - DestroyGob(0x00016007); - RunScriptGob(0x00010000, 0x0028, 0x00011c00, 0x0002, 0x0028);; - ENDCHUNK - -SET _curgok = 0x00011b06 CHUNK( 'GOKD', 0x00011b06, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - PrintStr("Creating MOVIE TECHNIQUES object."); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - SetProp(0x23502, GetProp(0x23502) & 0xfffffffe); - DestroyGob(0x00016007); - RunScriptGob(0x00010000, 0x0028, 0x00011c00, 0x0002, 0x0024);; - ENDCHUNK - - - - - - -SET _curgok = 0x00011c03 CHUNK( 'GOKD', 0x00011c03, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prj2map.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); -ENDCHUNK - -SET _curgok = 0x00011c02 CHUNK( 'GOKD', 0x00011c02, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prj2exit.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; -ENDCHUNK - -SET _curgok = 0x00011c01 CHUNK( 'GOKD', 0x00011c01, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prj2door.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); -ENDCHUNK - - - - - - -SET _curgok = 0x00011b07 CHUNK( 'GOKD', 0x00011b07, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\p1mask.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((37 > 31) ? ( ::fBio2 & (1<<(37&31)) ) : ( ::fBio1 & (1<<(37&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (37 & 31); If (37 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 37; ::fBioCtrl = 0; CreateChildGob( 0x00011c00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - - -SET _curgok = 0x00011c04 CHUNK( 'GOKD', 0x00011c04, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((34 > 31) ? ( ::fBio2 & (1<<(34&31)) ) : ( ::fBio1 & (1<<(34&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (34 & 31); If (34 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 34; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - - - -SET _curgok = 0x00011c05 CHUNK( 'GOKD', 0x00011c05, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((1 > 31) ? ( ::fBio2 & (1<<(1&31)) ) : ( ::fBio1 & (1<<(1&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (1 & 31); If (1 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 1; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c06 CHUNK( 'GOKD', 0x00011c06, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((2 > 31) ? ( ::fBio2 & (1<<(2&31)) ) : ( ::fBio1 & (1<<(2&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (2 & 31); If (2 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 2; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c07 CHUNK( 'GOKD', 0x00011c07, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m4.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((3 > 31) ? ( ::fBio2 & (1<<(3&31)) ) : ( ::fBio1 & (1<<(3&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (3 & 31); If (3 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 3; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c09 CHUNK( 'GOKD', 0x00011c09, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt4m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((4 > 31) ? ( ::fBio2 & (1<<(4&31)) ) : ( ::fBio1 & (1<<(4&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (4 & 31); If (4 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 4; ::fBioCtrl = 0; CreateChildGob( 0x00011f00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c0a CHUNK( 'GOKD', 0x00011c0a, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt4m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((5 > 31) ? ( ::fBio2 & (1<<(5&31)) ) : ( ::fBio1 & (1<<(5&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (5 & 31); If (5 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 5; ::fBioCtrl = 0; CreateChildGob( 0x00011f00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c0b CHUNK( 'GOKD', 0x00011c0b, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt4m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((6 > 31) ? ( ::fBio2 & (1<<(6&31)) ) : ( ::fBio1 & (1<<(6&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (6 & 31); If (6 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 6; ::fBioCtrl = 0; CreateChildGob( 0x00011f00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK -#line 71 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - diff --git a/OBJ/WIND/HELP.I b/OBJ/WIND/HELP.I deleted file mode 100644 index e75e05b7..00000000 --- a/OBJ/WIND/HELP.I +++ /dev/null @@ -1,162247 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\help\\help.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 7 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 8 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 9 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 10 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 11 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 12 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 13 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 14 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 16 "H:\\BUILD\\SOC\\src\\help\\help.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -SET _help_48544F50_0= 0x00017040 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075500 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x00 0xF6 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x98 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xDA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x31 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x31 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x98 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5E 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x92 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x92 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x61 0x6D - 0x65 0x72 0x61 0x20 0x41 0x6E 0x67 0x6C - 0x65 0x73 0x0D 0x0A 0x49 0x6D 0x61 0x67 - 0x69 0x6E 0x65 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x61 0x72 0x65 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x73 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x65 0x64 0x20 0x61 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x65 0x74 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x73 0x20 0x79 0x6F - 0x75 0x20 0x61 0x72 0x65 0x6E 0x27 0x74 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x97 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x65 - 0x77 0x20 0x6F 0x66 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x65 0x77 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 195 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1= 0x00017041 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 203 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075501 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017086 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017089 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20285 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017085 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x30 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x0F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC1 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x09 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x11 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x09 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x11 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2E 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 0x65 - 0x73 0x0D 0x0A 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6D - 0x61 0x6E 0x79 0x20 0x64 0x69 0x66 0x66 - 0x65 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x73 0x21 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 - 0x63 0x65 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x4E 0x65 0x77 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x73 0x20 0x61 0x72 - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x61 0x64 0x64 0x65 0x64 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A - 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 371 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2= 0x00017042 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 379 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075502 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0x200000B - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017085 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b9 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3C 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x81 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xDB 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x4F 0x72 0x67 0x61 0x6E - 0x69 0x7A 0x65 0x72 0x0D 0x0A 0x53 0x68 - 0x6F 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x66 0x69 0x72 0x73 - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x3A 0x0D 0x0A - 0x95 0x09 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 0x72 - 0x0D 0x0A 0x95 0x09 0x41 0x64 0x64 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x62 0x65 0x74 0x77 - 0x65 0x65 0x6E 0x20 0x73 0x63 0x65 0x6E - 0x65 0x73 0x0D 0x0A 0x95 0x09 0x47 0x65 - 0x74 0x20 0x72 0x69 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x65 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x95 0x09 0x41 0x74 0x74 0x61 - 0x63 0x68 0x20 0x6F 0x6E 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 - 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F - 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 - 0x97 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 550 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3= 0x00017043 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 558 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075503 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x29 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017091 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x26 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x84 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x85 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x86 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x84 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x01 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 - 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 - 0x72 0x6F 0x77 0x2E 0x0D 0x0A 0x2D 0x2D - 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x95 0x09 - 0x44 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 693 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4= 0x00017044 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 701 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075504 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20049 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708a - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x60 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x53 0x74 0x61 - 0x72 0x74 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x72 0x61 - 0x74 0x63 0x68 0x21 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x74 0x61 0x72 0x74 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 - 0x6F 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4E 0x65 0x77 0x2E - 0x0D 0x0A 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 804 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5= 0x00017045 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 812 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075505 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_54=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) -AG(4) - ITEM LONG 0x2000007 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027D - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001708c - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708b -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF5 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x33 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x4B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x24 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x35 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x0D 0x0A 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x63 0x68 - 0x61 0x72 0x61 0x63 0x74 0x65 0x72 0x73 - 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x6F 0x6F 0x73 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F - 0x72 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2E 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 0x0D 0x0A 0x01 - 0x20 0x4D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x6D 0x6F 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 973 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6= 0x00017046 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 981 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075506 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_62=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708d - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20296 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_62=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x54 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x66 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_62=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x57 0x61 0x74 - 0x63 0x68 0x20 0x6F 0x72 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x6F 0x6E 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x6F 0x70 0x65 0x6E 0x20 0x61 0x6E 0x20 - 0x65 0x78 0x69 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x0D - 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x70 0x6F 0x72 - 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x70 0x65 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x53 0x68 0x6F 0x72 0x74 0x63 - 0x75 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 1085 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7= 0x00017047 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 1093 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075507 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027E - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708b - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001708c -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x42 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x58 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0A 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x33 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x44 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x72 0x6F - 0x70 0x73 0x0D 0x0A 0x41 0x64 0x64 0x20 - 0x70 0x72 0x6F 0x70 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x74 0x72 0x65 - 0x61 0x73 0x75 0x72 0x65 0x20 0x63 0x68 - 0x65 0x73 0x74 0x20 0x6F 0x72 0x20 0x68 - 0x6F 0x74 0x2D 0x61 0x69 0x72 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x21 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x61 0x20 0x70 0x72 0x6F - 0x70 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x73 0x20 0x26 0x20 0x50 0x72 0x6F - 0x70 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x64 0x64 0x20 0x61 0x20 0x70 - 0x72 0x6F 0x70 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x6F 0x70 0x2E 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x4D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6D 0x6F - 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1251 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_8= 0x00017048 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1259 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075508 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001708c - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708b - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x26 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x21 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x12 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x12 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x23 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x33 0x44 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x43 - 0x72 0x65 0x61 0x74 0x65 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x70 0x69 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x21 0x20 0x20 - 0x54 0x68 0x65 0x73 0x65 0x20 0x61 0x72 - 0x65 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x69 0x74 0x6C 0x65 0x73 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x2E 0x0D 0x0A 0x01 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x6D 0x6F 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1417 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_9= 0x00017049 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 1425 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075509 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_71=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_63=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20018 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_71=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_71=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x73 - 0x74 0x75 0x6D 0x65 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x72 0x0D 0x0A 0x43 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x77 0x61 0x79 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x21 0x20 0x20 - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x20 0x63 0x6F - 0x73 0x74 0x75 0x6D 0x65 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x6F 0x73 0x74 0x75 0x6D 0x65 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x72 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1567 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_A= 0x0001704a - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1575 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20021 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCC 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x67 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x69 0x7A 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x0D 0x0A - 0x52 0x65 0x73 0x69 0x7A 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x20 0x74 0x6F 0x6F 0x6C - 0x73 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x73 0x20 0x26 0x20 0x50 0x72 0x6F - 0x70 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x73 0x69 0x7A 0x69 0x6E 0x67 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2D 0x2D 0x79 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x69 0x74 0x20 0x75 0x6E 0x64 0x65 0x72 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x75 0x73 0x65 0x3A 0x20 - 0x20 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 - 0x65 0x6E 0x6C 0x79 0x2C 0x20 0x53 0x71 - 0x75 0x61 0x73 0x68 0x20 0x26 0x20 0x53 - 0x74 0x72 0x65 0x74 0x63 0x68 0x2C 0x20 - 0x6F 0x72 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x42 0x61 0x63 0x6B 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x6D 0x6F 0x72 - 0x65 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x65 0x61 - 0x63 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E - 0x20 0x57 0x61 0x69 0x74 0x2E 0x2E 0x2E - 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x67 - 0x65 0x74 0x20 0x61 0x20 0x64 0x65 0x73 - 0x63 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 - 0x20 0x74 0x6F 0x6F 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1735 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_B= 0x0001704b - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1743 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20021 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x09 0x00 0x00 0xFE 0xED 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x50 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x50 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x76 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x76 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x69 0x7A - 0x65 0x20 0x45 0x76 0x65 0x6E 0x6C 0x79 - 0x0D 0x0A 0x45 0x76 0x65 0x6E 0x6C 0x79 - 0x20 0x67 0x72 0x6F 0x77 0x20 0x6F 0x72 - 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x67 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x73 0x68 0x72 0x69 0x6E 0x6B 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x73 0x69 0x7A - 0x69 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D - 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x69 0x7A 0x65 0x20 - 0x45 0x76 0x65 0x6E 0x6C 0x79 0x2E 0x0D - 0x0A 0x35 0x09 0x54 0x6F 0x20 0x67 0x72 - 0x6F 0x77 0x20 0x73 0x6F 0x6D 0x65 0x74 - 0x68 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x75 0x70 0x2E 0x20 0x54 - 0x6F 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 0x67 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 1921 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_C= 0x0001704c - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1929 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_45=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20020 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x04 - 0x09 0x00 0x00 0xFE 0x0C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x76 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9E 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9E 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x71 0x75 - 0x61 0x73 0x68 0x20 0x26 0x20 0x53 0x74 - 0x72 0x65 0x74 0x63 0x68 0x0D 0x0A 0x4D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x73 - 0x68 0x6F 0x72 0x74 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x69 0x64 0x65 0x72 - 0x20 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6C - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x69 0x6E 0x6E 0x65 0x72 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x73 0x71 0x75 0x61 - 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x73 0x69 0x7A 0x69 - 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x69 0x7A 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D 0x2D - 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x53 0x71 0x75 0x61 0x73 0x68 - 0x20 0x26 0x20 0x53 0x74 0x72 0x65 0x74 - 0x63 0x68 0x2E 0x0D 0x0A 0x35 0x09 0x54 - 0x6F 0x20 0x73 0x71 0x75 0x61 0x73 0x68 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 0x67 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x20 0x54 - 0x6F 0x20 0x73 0x74 0x72 0x65 0x74 0x63 - 0x68 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x75 0x70 0x2E 0x20 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 2109 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_D= 0x0001704d - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 2117 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001708e - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20019 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x04 - 0x09 0x00 0x00 0xFE 0xF5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x05 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x05 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x42 0x61 0x63 0x6B - 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x61 0x63 0x6B - 0x20 0x74 0x6F 0x20 0x69 0x74 0x73 0x20 - 0x6F 0x72 0x69 0x67 0x69 0x6E 0x61 0x6C - 0x20 0x73 0x69 0x7A 0x65 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x73 0x69 0x7A - 0x69 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x42 0x61 0x63 0x6B 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 0x69 - 0x7A 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2279 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_E= 0x0001704e - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 2287 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x49 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBF 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDD 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x0E 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x75 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0xDD 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xDD 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x66 0x61 0x63 0x65 0x73 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x74 0x61 0x74 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x73 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x75 0x73 - 0x65 0x3A 0x20 0x20 0x54 0x69 0x70 0x20 - 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 - 0x6F 0x72 0x20 0x42 0x61 0x63 0x6B 0x2C - 0x20 0x54 0x75 0x72 0x6E 0x20 0x4C 0x65 - 0x66 0x74 0x20 0x6F 0x72 0x20 0x52 0x69 - 0x67 0x68 0x74 0x2C 0x20 0x54 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x4F 0x6E 0x65 0x20 - 0x53 0x69 0x64 0x65 0x2C 0x20 0x6F 0x72 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x42 0x61 0x63 0x6B 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x6D 0x6F 0x72 0x65 0x2C - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x65 0x61 0x63 0x68 - 0x20 0x74 0x6F 0x6F 0x6C 0x2E 0x20 0x20 - 0x57 0x61 0x69 0x74 0x2E 0x2E 0x2E 0x79 - 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x67 0x65 - 0x74 0x20 0x61 0x20 0x64 0x65 0x73 0x63 - 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 0x20 - 0x74 0x6F 0x6F 0x6C 0x2E 0x0D 0x0A 0x01 - 0x09 0x4D 0x61 0x69 0x6E 0x74 0x61 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x74 0x61 0x74 0x69 0x6F - 0x6E 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2463 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_F= 0x0001704f - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 2471 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_49=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001D - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA3 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x00 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x64 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x00 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x64 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xD3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x17 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA2 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA2 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x75 0x72 - 0x6E 0x20 0x4C 0x65 0x66 0x74 0x20 0x6F - 0x72 0x20 0x52 0x69 0x67 0x68 0x74 0x0D - 0x0A 0x54 0x75 0x72 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F 0x72 - 0x20 0x72 0x69 0x67 0x68 0x74 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x74 0x75 0x72 0x6E - 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F 0x72 - 0x20 0x72 0x69 0x67 0x68 0x74 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x6F - 0x74 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x54 0x75 0x72 - 0x6E 0x20 0x4C 0x65 0x66 0x74 0x20 0x6F - 0x72 0x20 0x52 0x69 0x67 0x68 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x74 0x75 0x72 0x6E 0x2E 0x0D 0x0A - 0x36 0x09 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x66 0x61 0x63 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x01 0x09 0x4D 0x61 - 0x69 0x6E 0x74 0x61 0x69 0x6E 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x61 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2647 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_10= 0x00017050 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 2655 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00076010 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001C - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBF 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xDD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAC 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAC 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x69 0x70 - 0x20 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x42 0x61 0x63 0x6B - 0x0D 0x0A 0x54 0x69 0x70 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x74 0x69 - 0x70 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x54 0x69 0x70 0x20 0x46 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 - 0x42 0x61 0x63 0x6B 0x2E 0x0D 0x0A 0x35 - 0x09 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 - 0x70 0x2E 0x0D 0x0A 0x36 0x09 0x44 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x69 - 0x73 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x01 0x20 - 0x4D 0x61 0x69 0x6E 0x74 0x61 0x69 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x72 0x6F 0x74 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2831 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_11= 0x00017051 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 2839 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075511 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF8 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x57 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xCC 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9B 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x4F 0x6E 0x65 0x20 - 0x53 0x69 0x64 0x65 0x0D 0x0A 0x54 0x69 - 0x70 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x69 0x64 - 0x65 0x20 0x74 0x6F 0x20 0x73 0x69 0x64 - 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x74 - 0x69 0x70 0x20 0x74 0x6F 0x20 0x6F 0x6E - 0x65 0x20 0x73 0x69 0x64 0x65 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x6F - 0x74 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x54 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x4F 0x6E 0x65 0x20 - 0x53 0x69 0x64 0x65 0x0D 0x0A 0x35 0x09 - 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 - 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 0x70 - 0x2E 0x0D 0x0A 0x36 0x09 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x4D - 0x61 0x69 0x6E 0x74 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 3015 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_12= 0x00017052 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 3023 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075512 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20271 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x12 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x42 0x61 0x63 0x6B 0x0D - 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x77 - 0x61 0x79 0x20 0x69 0x74 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x72 0x6F 0x74 - 0x61 0x74 0x65 0x64 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x62 0x61 0x63 0x6B - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x42 0x61 - 0x63 0x6B 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3174 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_13= 0x00017053 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 3182 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075513 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_65=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x09 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_59=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001F - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017094 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017093 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_65=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB3 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC4 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x28 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x04 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1D 0x02 0x00 0x40 - 0x05 0x00 0x00 0x00 0x28 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x91 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_65=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x67 0x65 0x74 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x70 0x61 0x72 0x74 0x69 - 0x63 0x75 0x6C 0x61 0x72 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x73 0x79 0x6E 0x63 - 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x6F 0x6E 0x65 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x61 0x70 0x70 0x65 0x61 0x72 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x70 - 0x6F 0x74 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x69 - 0x73 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x73 - 0x70 0x6F 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x69 0x73 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x69 0x73 0x20 - 0x22 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x2E - 0x22 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 0x6F - 0x72 0x20 0x42 0x61 0x63 0x6B 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x74 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x73 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x69 0x6D 0x65 0x2E 0x0D 0x0A 0x36 - 0x09 0x54 0x6F 0x20 0x63 0x68 0x65 0x63 - 0x6B 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x73 0x2C 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3366 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_14= 0x00017054 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 3374 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075514 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017095 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170ba - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170bc -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6E 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x16 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x6A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x47 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x47 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x6C 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x93 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x73 0x20 0x70 - 0x61 0x74 0x68 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2E - 0x0D 0x0A 0x34 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x6F 0x6E - 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x70 0x61 0x74 0x68 -ENDCHUNK - - -ENDCHUNK -#line 3557 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_15= 0x00017055 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 3565 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075515 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x3A 0x20 0x20 - 0x53 0x65 0x6C 0x65 0x63 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3629 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_16= 0x00017056 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 3637 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075516 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x14 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDC 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x57 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDC 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x5B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDC 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x0D 0x0A 0x4D 0x61 - 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x21 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6D 0x6F 0x76 0x65 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x6D 0x6F - 0x76 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x2E 0x0D 0x0A 0x35 - 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2E 0x0D 0x0A 0x36 0x09 0x44 0x65 - 0x70 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x65 - 0x69 0x74 0x68 0x65 0x72 0x0D 0x0A 0x95 - 0x09 0x44 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x09 0x2D 0x2D 0x6F 0x72 0x2D 0x2D 0x0D - 0x0A 0x95 0x09 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3805 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_17= 0x00017057 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 3813 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075517 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017091 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x70 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x17 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x48 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x73 - 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x43 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x75 0x73 0x65 - 0x64 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x73 0x75 0x6D 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x72 - 0x65 0x63 0x6F 0x72 0x64 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x70 0x61 0x74 0x68 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x34 - 0x09 0x44 0x65 0x70 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x65 0x69 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3981 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_18= 0x00017058 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 3989 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075518 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x63 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001B - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001709b - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x33 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD3 0x01 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xF0 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x18 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x21 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x32 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x32 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x77 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF5 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x02 0x00 0x40 - 0x07 0x00 0x00 0x00 0x7D 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9A 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0xD3 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2A 0x02 0x00 0x80 - 0x00 0x00 0x03 0x00 0x6E 0x02 0x00 0x80 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xF0 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x6E 0x02 0x00 0xC0 - 0x09 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x20 0x52 0x65 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x50 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x50 0x61 0x74 0x68 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x72 0x65 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x27 0x73 0x20 0x70 0x61 - 0x74 0x68 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x6E 0x65 0x77 0x20 0x70 0x61 0x74 - 0x68 0x20 0x72 0x65 0x6A 0x6F 0x69 0x6E - 0x73 0x20 0x74 0x68 0x65 0x20 0x6F 0x6C - 0x64 0x20 0x70 0x61 0x74 0x68 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x73 0x74 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x2E 0x20 0x20 0x4F 0x74 - 0x68 0x65 0x72 0x77 0x69 0x73 0x65 0x2C - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x69 0x73 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x64 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x20 0x64 0x72 - 0x61 0x67 0x67 0x69 0x6E 0x67 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x2E 0x0D 0x0A - 0x33 0x09 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x52 0x65 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x50 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x50 0x61 - 0x74 0x68 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 0x74 - 0x68 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x69 0x73 0x20 0x70 0x75 0x73 - 0x68 0x65 0x64 0x20 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x67 0x68 0x74 0x20 0x69 0x73 0x20 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x53 0x61 - 0x6D 0x65 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x2D 0x01 0x0D 0x0A 0x35 0x09 0x44 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x73 0x74 0x6F - 0x70 0x20 0x64 0x72 0x61 0x67 0x67 0x69 - 0x6E 0x67 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6C 0x64 0x20 0x70 0x61 0x74 0x68 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x73 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x6F 0x66 0x66 0x2E 0x0D 0x0A - 0x01 0x20 0x20 0x53 0x68 0x6F 0x72 0x74 - 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 4205 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_19= 0x00017059 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 4213 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075519 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709a - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x37 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x67 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x92 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x68 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x96 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x97 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x86 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x67 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE3 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xE7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x31 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x95 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0xE1 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x95 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x67 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x92 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x46 0x61 0x6C - 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x69 0x73 0x20 0x69 0x73 0x20 0x22 - 0x6F 0x6E 0x2C 0x22 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x63 0x61 0x6E 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x68 0x65 0x20 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x73 0x75 0x72 0x66 - 0x61 0x63 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x66 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A - 0x33 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 - 0x73 0x20 0x70 0x61 0x74 0x68 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x70 0x61 0x74 - 0x68 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x33 - 0x09 0x54 0x75 0x72 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x46 0x61 0x6C - 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4418 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1A= 0x0001705a - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 4426 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x85 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_65=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001709e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x36 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x54 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x7F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA5 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1E 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x82 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA3 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x57 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x82 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x54 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x7F 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xDA 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x70 0x20 - 0x26 0x20 0x44 0x6F 0x77 0x6E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x75 0x70 0x20 0x61 0x6E - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x41 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 0x20 - 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x75 - 0x70 0x20 0x61 0x6E 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x2E 0x0D 0x0A 0x33 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x3A 0x0D 0x0A - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x73 0x20 0x70 - 0x61 0x74 0x68 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2D 0x01 0x0D - 0x0A 0x43 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x20 0x70 0x61 0x74 0x68 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x34 0x09 0x54 0x75 - 0x72 0x6E 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x26 0x20 0x44 - 0x6F 0x77 0x6E 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x35 0x09 0x44 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 - 0x6F 0x72 0x74 0x63 0x75 0x74 0x20 0x6B - 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 4629 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1B= 0x0001705b - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 4637 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_40=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20016 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x61 0x6C - 0x65 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B - 0x0D 0x0A 0x47 0x69 0x76 0x65 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x6F 0x6F 0x70 0x20 0x6F 0x6E - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x21 0x0D 0x0A 0x4E 0x6F 0x74 0x65 - 0x3A 0x20 0x20 0x59 0x6F 0x75 0x20 0x77 - 0x6F 0x6E 0x27 0x74 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x54 0x61 0x6C - 0x65 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x27 0x76 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x73 0x73 - 0x69 0x6E 0x67 0x20 0x70 0x61 0x67 0x65 - 0x73 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x54 0x61 0x6C 0x65 0x6E 0x74 0x20 0x42 - 0x6F 0x6F 0x6B 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 - 0x72 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x54 0x61 0x6C - 0x65 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B - 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4765 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1C= 0x0001705c - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 4773 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC0 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x20 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x4C 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 - 0x6F 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x79 0x6F 0x75 0x27 0x76 - 0x65 0x20 0x75 0x73 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x59 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x73 - 0x65 0x6C 0x65 0x63 0x74 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x77 - 0x68 0x6F 0x20 0x69 0x73 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x73 0x6F 0x6D - 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 0x65 - 0x6C 0x73 0x65 0x20 0x6F 0x72 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 - 0x65 0x77 0x2E 0x20 0x20 0x4F 0x72 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x61 0x6D 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x69 0x6E 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x6C 0x69 0x73 - 0x74 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 0x2C - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x76 0x69 0x65 0x77 0x2C 0x20 0x6F - 0x72 0x20 0x72 0x65 0x75 0x73 0x65 0x2E - 0x0D 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x72 0x65 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x20 0x6F 0x6E 0x2D 0x73 0x74 - 0x61 0x67 0x65 0x2E 0x20 0x20 0x54 0x6F - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4913 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1D= 0x0001705d - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 4921 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_47=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xE1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4A 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x6F 0x70 0x20 0x4C - 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x61 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x74 0x68 0x61 0x74 0x20 - 0x69 0x73 0x20 0x62 0x65 0x68 0x69 0x6E - 0x64 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x65 0x6C 0x73 0x65 - 0x20 0x6F 0x72 0x20 0x6F 0x75 0x74 0x20 - 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 0x2E - 0x20 0x20 0x4F 0x72 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x61 - 0x6D 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x69 0x6E 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x72 0x6F 0x70 0x20 0x6C 0x69 0x73 - 0x74 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x70 - 0x72 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 - 0x74 0x2C 0x20 0x62 0x72 0x69 0x6E 0x67 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x76 0x69 0x65 0x77 0x2C - 0x20 0x6F 0x72 0x20 0x72 0x65 0x75 0x73 - 0x65 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x69 0x73 0x20 0x6F 0x75 - 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 0x65 - 0x77 0x2C 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x72 0x65 - 0x61 0x70 0x70 0x65 0x61 0x72 0x73 0x20 - 0x6F 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 - 0x2E 0x20 0x20 0x54 0x6F 0x20 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5077 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1E= 0x0001705e - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 5085 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x85 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004A - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x53 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x21 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6F 0x72 0x74 0x66 - 0x6F 0x6C 0x69 0x6F 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x61 0x76 0x65 0x2E 0x0D 0x0A 0x01 0x20 - 0x53 0x68 0x6F 0x72 0x74 0x63 0x75 0x74 - 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 5187 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1F= 0x0001705f - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 5195 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_61=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x31 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_57=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a1 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170a0 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b8 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b7 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_61=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB3 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD5 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF1 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x0F 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x12 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xB3 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xD5 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xF1 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_61=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x0D 0x0A 0x41 0x64 0x64 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x73 0x20 0x74 0x6F - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x21 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x63 0x68 - 0x6F 0x6F 0x73 0x65 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x6C 0x69 0x73 0x74 0x2C 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x77 0x6E 0x2C 0x20 0x6F - 0x72 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x20 0x45 - 0x66 0x66 0x65 0x63 0x74 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x65 0x66 0x66 0x65 0x63 0x74 0x20 - 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 0x41 - 0x74 0x74 0x61 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x69 0x6E 0x69 0x6E - 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 0x65 - 0x72 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 -ENDCHUNK - - -ENDCHUNK -#line 5394 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_20= 0x00017060 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 5402 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075520 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x26 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a1 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b8 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b7 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170a3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x28 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xE9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA6 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xC0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xF4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x84 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA6 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC2 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x70 0x65 - 0x65 0x63 0x68 0x0D 0x0A 0x4D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6B 0x21 - 0x20 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 - 0x6E 0x20 0x76 0x6F 0x69 0x63 0x65 0x2C - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x6F 0x72 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x20 0x6C 0x69 0x73 0x74 0x20 0x6F - 0x66 0x20 0x6C 0x69 0x6E 0x65 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x65 0x64 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x61 0x6C 0x6B 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x70 0x65 0x65 0x63 0x68 0x2E 0x0D 0x0A - 0x34 0x09 0x52 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 - 0x6E 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 - 0x75 0x65 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x61 0x6C 0x6B 0x2E 0x0D 0x0A 0x01 0x20 - 0x41 0x74 0x74 0x61 0x63 0x68 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x01 0x20 0x43 0x68 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 - 0x65 0x72 0x0D 0x0A 0x01 0x20 0x50 0x61 - 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x64 0x6F 0x6E 0x65 0x20 0x74 - 0x61 0x6C 0x6B 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 5591 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_21= 0x00017061 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 5599 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075521 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b3 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b8 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5C 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x90 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x90 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x5C 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x7C 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x75 0x73 - 0x69 0x63 0x0D 0x0A 0x41 0x74 0x74 0x61 - 0x63 0x68 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x21 0x20 0x20 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x20 0x6C 0x69 0x73 0x74 0x20 0x6F 0x72 - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4D 0x75 0x73 0x69 0x63 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x6F - 0x75 0x73 0x6C 0x79 0x0D 0x0A 0x01 0x20 - 0x53 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 5770 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_22= 0x00017062 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 5778 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075522 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_73=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_62=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20026 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170b7 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b4 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170b3 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_73=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x29 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x8F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xA3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x54 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x70 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x91 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_73=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x4F 0x6E 0x63 0x65 0x0D 0x0A - 0x41 0x74 0x74 0x61 0x63 0x68 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x69 0x74 0x20 0x6F 0x6E 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x74 0x74 0x61 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 - 0x65 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2C 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x69 0x6E 0x69 0x6E 0x67 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x01 0x20 0x48 0x6F 0x77 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 - 0x49 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x3F 0x0D 0x0A 0x01 0x20 0x53 0x74 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 5958 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_23= 0x00017063 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 5966 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075523 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_69=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b4 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170b6 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA7 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x88 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8A 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAB 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xBD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x8A 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAB 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x6F 0x6F - 0x70 0x0D 0x0A 0x41 0x74 0x74 0x61 0x63 - 0x68 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x6E 0x64 0x20 0x70 0x6C - 0x61 0x79 0x20 0x69 0x74 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 - 0x6C 0x79 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 0x20 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4C 0x6F 0x6F 0x70 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2C 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x6C 0x6F 0x6F - 0x70 0x2E 0x0D 0x0A 0x01 0x20 0x48 0x6F - 0x77 0x20 0x6D 0x61 0x6E 0x79 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x63 0x61 - 0x6E 0x20 0x49 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x3F 0x0D 0x0A 0x01 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 6138 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_24= 0x00017064 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 6146 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075524 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x18 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_50=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b4 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170b6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x15 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x15 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x1D 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x13 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xFE 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 - 0x68 0x65 0x72 0x0D 0x0A 0x41 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x46 0x6F 0x72 - 0x20 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x72 0x75 0x6E 0x6E 0x69 0x6E - 0x67 0x20 0x6D 0x61 0x74 0x63 0x68 0x65 - 0x64 0x20 0x75 0x70 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x69 0x73 0x20 0x66 0x6F - 0x6F 0x74 0x73 0x74 0x65 0x70 0x73 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x20 0x4D - 0x61 0x74 0x63 0x68 0x65 0x72 0x2D 0x2D - 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E 0x0D 0x0A - 0x01 0x20 0x48 0x6F 0x77 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x63 0x61 0x6E 0x20 0x49 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 6326 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_25= 0x00017065 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 6334 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075525 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_74=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_71=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_74=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBC 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x94 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x35 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_74=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x69 0x73 - 0x74 0x65 0x6E 0x65 0x72 0x0D 0x0A 0x4C - 0x69 0x73 0x74 0x65 0x6E 0x20 0x74 0x6F - 0x2C 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x2C 0x20 0x6F 0x72 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x69 0x6E 0x64 0x69 0x76 0x69 - 0x64 0x75 0x61 0x6C 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x2E 0x20 0x0D 0x0A 0x54 - 0x6F 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x20 0x74 0x6F 0x6F 0x6C 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x73 0x2E 0x20 0x20 0x20 0x59 - 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x68 0x65 - 0x61 0x72 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x4C 0x69 0x73 0x74 - 0x65 0x6E 0x65 0x72 0x2E 0x0D 0x0A 0x34 - 0x09 0x54 0x6F 0x20 0x6C 0x69 0x73 0x74 - 0x65 0x6E 0x20 0x74 0x6F 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x2C 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x68 - 0x65 0x61 0x72 0x2E 0x0D 0x0A 0x2D 0x2D - 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x72 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x6F 0x72 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6507 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_26= 0x00017066 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 6515 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075526 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20297 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x53 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 - 0x6E 0x61 0x6D 0x65 0x2E 0x20 0x20 0x46 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x2C 0x20 0x79 0x6F 0x75 0x20 - 0x6D 0x61 0x79 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x73 0x61 0x76 0x65 - 0x20 0x61 0x20 0x63 0x6F 0x70 0x79 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x62 0x79 0x20 0x67 0x69 - 0x76 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 - 0x61 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x6E 0x61 0x6D 0x65 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x61 - 0x76 0x65 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 - 0x6F 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x61 0x76 0x65 - 0x20 0x41 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x54 0x79 0x70 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x77 0x20 0x6E 0x61 0x6D - 0x65 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6625 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_27= 0x00017067 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 6633 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075527 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_67=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_60=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20046 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017c2 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a5 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170a7 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_67=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x27 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBA 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xC8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xBA 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xCA 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_67=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x6F 0x72 - 0x64 0x20 0x42 0x6F 0x78 0x0D 0x0A 0x43 - 0x72 0x65 0x61 0x74 0x65 0x20 0x61 0x20 - 0x62 0x6F 0x78 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x74 0x79 0x70 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x74 0x6F 0x72 0x79 0x20 - 0x6F 0x72 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x57 0x6F 0x72 0x64 - 0x20 0x42 0x6F 0x78 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 - 0x43 0x72 0x65 0x64 0x69 0x74 0x73 0x2E - 0x20 0x20 0x53 0x74 0x6F 0x72 0x79 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x64 0x6F - 0x6E 0x27 0x74 0x20 0x6D 0x6F 0x76 0x65 - 0x2E 0x20 0x20 0x43 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x73 0x63 0x72 0x6F 0x6C - 0x6C 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x21 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x20 0x20 0x54 0x79 0x70 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x54 0x79 - 0x70 0x69 0x6E 0x67 0x20 0x68 0x69 0x6E - 0x74 0x73 0x09 0x20 0x01 0x20 0x4D 0x61 - 0x6B 0x69 0x6E 0x67 0x20 0x63 0x72 0x65 - 0x64 0x69 0x74 0x73 0x20 0x73 0x63 0x72 - 0x6F 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 6818 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_28= 0x00017068 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 6826 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075528 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) -AG(4) - ITEM LONG 0x2000007 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20030 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017091 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xEC 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE4 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE8 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE4 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB1 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2D 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x49 0x6E 0x73 - 0x65 0x72 0x74 0x69 0x6F 0x6E 0x20 0x50 - 0x6F 0x69 0x6E 0x74 0x0D 0x0A 0x4D 0x6F - 0x76 0x65 0x2C 0x20 0x72 0x65 0x73 0x69 - 0x7A 0x65 0x2C 0x20 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2E 0x20 0x20 0x54 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x63 0x6C 0x65 0x61 0x72 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x57 0x6F 0x72 0x64 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x65 0x72 0x65 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x49 0x6E 0x73 0x65 0x72 0x74 0x69 - 0x6F 0x6E 0x20 0x50 0x6F 0x69 0x6E 0x74 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x49 0x6E 0x73 - 0x65 0x72 0x74 0x69 0x6F 0x6E 0x20 0x50 - 0x6F 0x69 0x6E 0x74 0x2E 0x0D 0x0A 0x34 - 0x09 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2E 0x0D 0x0A 0x35 0x09 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 - 0x69 0x64 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x68 0x61 - 0x6E 0x64 0x2E 0x20 0x20 0x20 0x44 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x62 - 0x6F 0x78 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x36 - 0x09 0x54 0x6F 0x20 0x72 0x65 0x73 0x69 - 0x7A 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2C 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 - 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x68 0x61 0x6E - 0x64 0x6C 0x65 0x20 0x28 0x61 0x20 0x6C - 0x69 0x74 0x74 0x6C 0x65 0x20 0x73 0x71 - 0x75 0x61 0x72 0x65 0x29 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x72 0x72 0x6F 0x77 0x2E 0x20 0x20 - 0x44 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x68 0x61 0x6E 0x64 0x6C 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x78 0x20 0x69 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x69 0x7A - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7029 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_29= 0x00017069 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 7037 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075529 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x34 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x85 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE4 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F 0x6F - 0x6B 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x65 0x74 0x74 0x65 0x72 0x73 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x66 0x6F - 0x6E 0x74 0x20 0x79 0x6F 0x75 0x20 0x6C - 0x69 0x6B 0x65 0x2E 0x0D 0x0A 0x35 0x09 - 0x49 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2C 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x73 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x73 0x74 0x79 - 0x6C 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7183 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2A= 0x0001706a - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 7191 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_75=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002D - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_75=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_75=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x74 0x79 - 0x6C 0x65 0x73 0x0D 0x0A 0x4D 0x61 0x6B - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x74 0x61 0x6E 0x64 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x62 0x6F 0x6C 0x64 0x20 - 0x6F 0x72 0x20 0x69 0x74 0x61 0x6C 0x69 - 0x63 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x79 0x6C 0x65 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x35 0x09 0x49 0x6E - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7340 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2B= 0x0001706b - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 7348 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20032 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x15 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x15 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x53 0x69 0x7A 0x65 - 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x69 0x7A - 0x65 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x20 0x73 0x69 0x7A - 0x65 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x65 0x74 0x74 0x65 0x72 0x20 0x53 - 0x69 0x7A 0x65 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x49 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x77 0x68 0x6F 0x73 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7495 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2C= 0x0001706c - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 7503 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_66=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002E - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_66=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x11 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_66=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F 0x72 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A - 0x35 0x09 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7649 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2D= 0x0001706d - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 7657 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_64=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_64=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_64=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x43 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x43 - 0x6F 0x6C 0x6F 0x72 0x2D 0x2D 0x79 0x6F - 0x75 0x27 0x6C 0x6C 0x20 0x66 0x69 0x6E - 0x64 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x6C 0x69 - 0x6B 0x65 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7802 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2E= 0x0001706e - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 7810 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2016D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170a7 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x25 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x4E 0x6F 0x6E 0x2D 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x73 - 0x63 0x72 0x6F 0x6C 0x6C 0x20 0x6F 0x72 - 0x20 0x73 0x74 0x61 0x79 0x20 0x73 0x74 - 0x69 0x6C 0x6C 0x21 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F - 0x6E 0x2D 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x2D 0x2D 0x79 0x6F 0x75 - 0x27 0x6C 0x6C 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7968 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2F= 0x0001706f - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 7976 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_64=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2016D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170a7 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017c2 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x85 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x87 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xDB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xA8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0E 0x00 0x00 0x82 - 0x03 0x00 0x00 0x00 0x87 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x67 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x91 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x0D 0x0A - 0x4D 0x61 0x6B 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x2E - 0x20 0x20 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x61 0x72 0x65 0x20 0x67 0x72 - 0x65 0x61 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x63 0x72 0x65 0x64 0x69 0x74 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x6F 0x72 0x20 0x4E 0x6F 0x6E 0x2D 0x53 - 0x63 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 - 0x20 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C - 0x6C 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 - 0x74 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 - 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x2E 0x0D - 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x4D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x63 0x72 0x65 0x64 - 0x69 0x74 0x73 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 8141 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_30= 0x00017070 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 8149 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075530 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A0 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x12 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4E 0x6F 0x6E - 0x2D 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x0D 0x0A 0x4D 0x61 0x6B 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x73 0x74 0x61 - 0x79 0x20 0x73 0x74 0x69 0x6C 0x6C 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x74 0x61 0x79 0x20 0x73 0x74 0x69 - 0x6C 0x6C 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F - 0x6E 0x2D 0x73 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x2D 0x2D 0x79 0x6F - 0x75 0x27 0x6C 0x6C 0x20 0x66 0x69 0x6E - 0x64 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x6F 0x6E 0x2D 0x53 0x63 0x72 0x6F - 0x6C 0x6C 0x69 0x6E 0x67 0x2E 0x0D 0x0A - 0x35 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8292 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_31= 0x00017071 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 8300 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075531 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017091 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017c0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB3 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA5 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xAD 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAD 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xDA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xDA 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x01 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x66 0x6F 0x72 0x77 0x61 0x72 0x64 0x73 - 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B - 0x77 0x61 0x72 0x64 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x20 0x20 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x2E 0x0D 0x0A 0x2D - 0x2D 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x95 - 0x09 0x44 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x72 0x2E 0x0D 0x0A 0x01 0x20 0x41 0x64 - 0x64 0x69 0x6E 0x67 0x20 0x65 0x78 0x74 - 0x72 0x61 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 8443 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_32= 0x00017072 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 8451 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075532 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_76=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_67=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170a8 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_76=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF7 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xF7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x44 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_76=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x20 0x57 0x61 0x69 0x74 0x20 0x46 - 0x6F 0x72 0x20 0x43 0x6C 0x69 0x63 0x6B - 0x0D 0x0A 0x50 0x61 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x69 0x73 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x27 0x76 0x65 - 0x20 0x61 0x64 0x64 0x65 0x64 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x74 0x6F 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x6D 0x6F 0x72 0x65 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x74 0x6F - 0x20 0x72 0x65 0x61 0x64 0x20 0x74 0x68 - 0x65 0x6D 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x6E 0x65 - 0x63 0x65 0x73 0x73 0x61 0x72 0x79 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x43 0x6C - 0x69 0x63 0x6B 0x2E 0x0D 0x0A 0x01 0x20 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 8598 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_33= 0x00017073 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 8606 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075533 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_70=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017085 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001709a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x29 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB4 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x55 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x5A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x19 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x57 0x61 0x69 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E - 0x64 0x0D 0x0A 0x50 0x61 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x61 0x6C 0x6C 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x68 0x61 0x76 0x65 0x20 0x66 0x69 0x6E - 0x69 0x73 0x68 0x65 0x64 0x2E 0x20 0x20 - 0x55 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x68 - 0x61 0x73 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x74 0x61 0x6C 0x6B - 0x69 0x6E 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x70 0x61 0x75 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2E 0x0D 0x0A 0x33 0x09 0x54 0x75 0x72 - 0x6E 0x20 0x6F 0x6E 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 - 0x6E 0x64 0x2D 0x2D 0x79 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x69 0x74 0x20 0x75 0x6E 0x64 0x65 0x72 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8779 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_34= 0x00017074 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 8787 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075534 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x80 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x20 0x44 0x6F 0x6E 0x27 0x74 0x20 - 0x57 0x61 0x69 0x74 0x0D 0x0A 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x70 0x61 0x75 0x73 0x65 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x70 0x61 0x75 0x73 0x65 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x44 0x6F 0x6E 0x27 - 0x74 0x20 0x57 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8910 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_35= 0x00017075 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 8918 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075535 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20284 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x9E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB8 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD5 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE8 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x20 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB8 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xD5 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xE6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x12 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x03 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x01 0x20 0x20 - 0x50 0x6C 0x61 0x79 0x2F 0x53 0x74 0x6F - 0x70 0x20 0x0D 0x0A 0x52 0x65 0x77 0x69 - 0x6E 0x64 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x73 0x20 0x79 0x6F - 0x75 0x72 0x20 0x65 0x6E 0x74 0x69 0x72 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x76 0x65 0x72 0x79 0x20 0x65 0x6E - 0x64 0x2E 0x20 0x20 0x4F 0x74 0x68 0x65 - 0x72 0x77 0x69 0x73 0x65 0x2C 0x20 0x70 - 0x6C 0x61 0x79 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x61 0x72 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x74 0x6F 0x20 - 0x53 0x74 0x6F 0x70 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x53 0x74 0x6F 0x70 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x74 0x6F 0x20 0x50 0x6C 0x61 - 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9073 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_36= 0x00017076 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 9081 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075536 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170a9 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20286 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017091 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x96 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x13 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x56 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x43 0x6F 0x6E 0x74 - 0x72 0x6F 0x6C 0x0D 0x0A 0x41 0x64 0x6A - 0x75 0x73 0x74 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x61 0x6C 0x6C 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x69 0x6E 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x2D 0x2D - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x2C 0x20 0x74 0x6F - 0x6F 0x6C 0x73 0x2C 0x20 0x4D 0x63 0x5A - 0x65 0x65 0x27 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 - 0x27 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x73 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x56 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x43 0x6F 0x6E 0x74 - 0x72 0x6F 0x6C 0x20 0x73 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x0D 0x0A - 0x01 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x69 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 - 0x61 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 9213 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_37= 0x00017077 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 9221 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075537 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170aa - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x99 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x99 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x02 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xE2 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x01 0x0D 0x0A 0x55 - 0x6E 0x64 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x69 0x64 0x21 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x69 0x6E 0x64 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x72 0x65 - 0x64 0x6F 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x75 0x6E 0x64 0x69 - 0x64 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x75 - 0x6E 0x64 0x6F 0x20 0x61 0x20 0x6D 0x69 - 0x73 0x74 0x61 0x6B 0x65 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x55 - 0x6E 0x64 0x6F 0x2E 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x52 0x65 0x64 0x6F - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 - 0x64 0x6F 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x75 0x6E 0x64 0x69 - 0x64 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x64 0x6F 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x74 0x6F 0x20 0x55 0x6E 0x64 - 0x6F 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 - 0x6F 0x72 0x74 0x63 0x75 0x74 0x20 0x6B - 0x65 0x79 0x73 -ENDCHUNK - - -ENDCHUNK -#line 9353 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_38= 0x00017078 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 9361 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075538 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x07 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x75 0x74 - 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x0D 0x0A 0x47 0x65 - 0x74 0x20 0x72 0x69 0x64 0x20 0x6F 0x66 - 0x2C 0x20 0x63 0x6F 0x70 0x79 0x2C 0x20 - 0x70 0x61 0x73 0x74 0x65 0x2C 0x20 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x6F 0x6E 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x74 0x6F 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x2C 0x20 0x63 0x6F 0x70 0x79 0x2C 0x20 - 0x6F 0x72 0x20 0x70 0x61 0x73 0x74 0x65 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x6D 0x6F 0x72 - 0x65 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x65 0x61 - 0x63 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E - 0x20 0x20 0x57 0x61 0x69 0x74 0x2E 0x2E - 0x2E 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x67 0x65 0x74 0x20 0x61 0x20 0x64 0x65 - 0x73 0x63 0x72 0x69 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x65 0x61 0x63 - 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9492 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_39= 0x00017079 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 9500 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075539 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_56=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20298 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA0 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x64 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x9A 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9A 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x42 - 0x65 0x66 0x6F 0x72 0x65 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x65 0x76 - 0x65 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x66 0x69 0x72 0x73 - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 0x76 - 0x65 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x6B 0x73 0x70 - 0x61 0x63 0x65 0x2E 0x0D 0x0A 0x41 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x73 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x61 0x72 - 0x65 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x64 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 9665 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3A= 0x0001707a - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 9673 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20299 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x73 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x77 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5F 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x94 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x94 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x94 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x41 - 0x66 0x74 0x65 0x72 0x0D 0x0A 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 - 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x66 0x74 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x66 0x74 0x65 - 0x72 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 - 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x45 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x41 0x66 0x74 - 0x65 0x72 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x61 0x6E 0x79 - 0x77 0x68 0x65 0x72 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E 0x0D - 0x0A 0x41 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x61 0x66 0x74 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x61 0x72 0x65 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x64 0x2E 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 9840 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3B= 0x0001707b - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 9848 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029A - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170ac - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x11 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x10 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x52 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x4D 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2D 0x2D 0x69 0x6E 0x63 0x6C - 0x75 0x64 0x69 0x6E 0x67 0x20 0x61 0x6C - 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x73 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x73 0x6F 0x20 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x01 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10004 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3C= 0x0001707c - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 10012 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_78=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029B - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_78=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC4 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x08 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x20 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x08 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x20 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAE 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x77 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0xA8 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xA8 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_78=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x33 0x44 0x20 0x4F - 0x62 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x33 0x44 0x20 0x4F - 0x62 0x6A 0x65 0x63 0x74 0x2E 0x0D 0x0A - 0x35 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x2E 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x69 - 0x73 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x74 0x69 0x72 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10179 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3D= 0x0001707d - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 10187 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x81 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4B 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x7B 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x7B 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x20 0x42 0x6F 0x78 0x0D 0x0A 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x20 0x42 0x6F 0x78 - 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x2E 0x0D 0x0A 0x54 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x69 0x73 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x64 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10349 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3E= 0x0001707e - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 10357 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20053 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x26 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBA 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x82 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB4 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBA 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x39 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xB4 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x70 - 0x79 0x20 0x50 0x61 0x74 0x68 0x0D 0x0A - 0x43 0x6F 0x70 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x69 - 0x74 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x6F - 0x70 0x79 0x20 0x61 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x20 0x63 0x6F 0x70 0x79 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x6F 0x70 - 0x79 0x20 0x50 0x61 0x74 0x68 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x70 0x61 0x74 0x68 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 - 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x36 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x50 0x61 0x73 0x74 0x65 0x2E - 0x0D 0x0A 0x37 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x70 0x70 0x6C 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10532 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3F= 0x0001707f - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 10540 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20054 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170ae - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x60 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xE2 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x50 0x61 0x73 0x74 - 0x65 0x20 0x77 0x68 0x61 0x74 0x65 0x76 - 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x72 0x65 0x63 0x65 - 0x6E 0x74 0x6C 0x79 0x20 0x63 0x75 0x74 - 0x20 0x6F 0x72 0x20 0x63 0x6F 0x70 0x69 - 0x65 0x64 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x61 0x73 0x74 0x65 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x50 0x61 0x73 0x74 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x61 0x73 0x74 - 0x65 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 - 0x6F 0x72 0x74 0x63 0x75 0x74 0x20 0x6B - 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 10683 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_40= 0x00017080 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 10691 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075540 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_68=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x55 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20055 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170af - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_68=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xED 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xED 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB4 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xB4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x9E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCB 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xFD 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xCB 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xCB 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_68=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x70 - 0x79 0x0D 0x0A 0x43 0x6F 0x70 0x79 0x20 - 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x75 - 0x70 0x6C 0x69 0x63 0x61 0x74 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 0x74 - 0x65 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6C 0x6F 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x6F 0x70 0x79 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x43 0x6F 0x70 0x79 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x2E 0x0D 0x0A 0x2D - 0x2D 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x65 0x64 0x67 0x65 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F - 0x72 0x2D 0x2D 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x2C 0x20 0x64 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x70 0x79 0x2E 0x0D 0x0A 0x01 0x20 0x43 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 10879 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_41= 0x00017081 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 10887 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075541 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_58=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20056 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDD 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x64 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAF 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8B 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x8F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF6 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xBB 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC0 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xBB 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x75 0x74 - 0x0D 0x0A 0x43 0x75 0x74 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 - 0x72 0x69 0x64 0x20 0x6F 0x66 0x20 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x75 0x74 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x75 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x75 0x74 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x75 0x74 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x75 0x74 0x20 0x61 - 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x65 0x64 0x67 0x65 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x69 0x73 0x73 0x6F 0x72 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x2E 0x0D 0x0A 0x2D - 0x2D 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x75 0x74 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x69 0x6E - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x75 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x43 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 11066 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_42= 0x00017082 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 11074 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075542 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x75 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6F 0x72 - 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x6B 0x65 0x65 0x70 - 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x77 0x6F 0x72 - 0x6B 0x2E 0x20 0x59 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x61 0x6C 0x73 0x6F 0x20 - 0x73 0x74 0x61 0x72 0x74 0x20 0x61 0x20 - 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x6F 0x70 0x65 0x6E 0x20 - 0x61 0x6E 0x20 0x65 0x78 0x69 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x73 0x61 0x76 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x77 0x6F 0x72 - 0x6B 0x2C 0x20 0x6F 0x72 0x20 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6E 0x61 0x6D 0x65 0x20 0x28 0x53 - 0x61 0x76 0x65 0x20 0x41 0x73 0x29 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x6F 0x70 0x65 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x0D - 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x3A 0x20 0x20 0x4E 0x65 0x77 0x2C - 0x20 0x4F 0x70 0x65 0x6E 0x2C 0x20 0x53 - 0x61 0x76 0x65 0x2C 0x20 0x6F 0x72 0x20 - 0x53 0x61 0x76 0x65 0x20 0x41 0x73 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x6F 0x75 0x74 0x20 0x6D 0x6F - 0x72 0x65 0x2C 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x65 - 0x61 0x63 0x68 0x20 0x74 0x6F 0x6F 0x6C - 0x2E 0x20 0x57 0x61 0x69 0x74 0x2E 0x2E - 0x2E 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x67 0x65 0x74 0x20 0x61 0x20 0x64 0x65 - 0x73 0x63 0x72 0x69 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x65 0x61 0x63 - 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11218 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_43= 0x00017083 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 11226 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075543 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003D - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x83 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x51 0x75 0x69 - 0x74 0x20 0x77 0x6F 0x72 0x6B 0x69 0x6E - 0x67 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x71 - 0x75 0x69 0x74 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x45 0x78 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x65 0x69 - 0x74 0x68 0x65 0x72 0x20 0x72 0x65 0x74 - 0x75 0x72 0x6E 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x72 0x6F 0x6F 0x6D 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6F 0x72 - 0x20 0x71 0x75 0x69 0x74 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x2E 0x0D 0x0A 0x01 - 0x20 0x53 0x68 0x6F 0x72 0x74 0x63 0x75 - 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 11328 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_44= 0x00017084 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 11336 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x69 0x6E 0x67 0x20 0x26 0x20 0x72 - 0x65 0x64 0x6F 0x69 0x6E 0x67 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 11438 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_45= 0x00017085 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 11446 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x46 0x72 0x61 0x6D - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 - 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 - 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11564 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_46= 0x00017086 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 11572 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x49 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A - 0x54 0x68 0x65 0x72 0x65 0x20 0x61 0x72 - 0x65 0x20 0x6D 0x61 0x6E 0x79 0x20 0x70 - 0x6F 0x73 0x73 0x69 0x62 0x6C 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x73 0x20 0x66 0x6F - 0x72 0x20 0x65 0x61 0x63 0x68 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11675 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_47= 0x00017087 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 11683 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075547 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_66=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20034 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b2 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x71 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x48 0x65 0x6C 0x70 - 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 - 0x0D 0x0A 0x46 0x69 0x6E 0x64 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 - 0x6E 0x73 0x77 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2D 0x6D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x71 0x75 0x65 0x73 - 0x74 0x69 0x6F 0x6E 0x73 0x21 0x20 0x20 - 0x20 0x20 0x0D 0x0A 0x54 0x6F 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x48 0x65 0x6C 0x70 0x20 0x4D 0x61 0x63 - 0x68 0x69 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 -ENDCHUNK - - -ENDCHUNK -#line 11798 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_48= 0x00017088 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 11806 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075548 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20035 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017c1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x08 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x7D 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x61 0x70 - 0x0D 0x0A 0x51 0x75 0x69 0x63 0x6B 0x6C - 0x79 0x20 0x7A 0x69 0x70 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x72 0x6F 0x6F - 0x6D 0x20 0x6F 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x6F 0x66 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x68 0x6F - 0x69 0x63 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x6F 0x70 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x70 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x67 0x6F 0x2E 0x0D 0x0A 0x01 - 0x20 0x53 0x68 0x6F 0x72 0x74 0x63 0x75 - 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 11923 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_49= 0x00017089 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 11931 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 - 0x09 0x55 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A 0x01 - 0x0D 0x0A 0x4E 0x6F 0x74 0x65 0x3A 0x20 - 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x46 0x69 0x72 0x73 0x74 - 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 - 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 - 0x6F 0x72 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12052 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4A= 0x0001708a - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 12060 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_42=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x4E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12147 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4B= 0x0001708b - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 12155 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x46 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA2 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x74 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x61 0x6E - 0x64 0x20 0x69 0x74 0x73 0x20 0x70 0x61 - 0x74 0x68 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x09 0x09 0x09 0x09 0x09 0x09 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x75 0x70 - 0x09 0x09 0x09 0x74 0x68 0x65 0x20 0x55 - 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F 0x77 - 0x6E 0x0D 0x0A 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6E - 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 0x66 - 0x61 0x72 0x09 0x09 0x09 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x09 0x09 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x09 0x09 0x53 0x68 0x69 0x66 0x74 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12295 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4C= 0x0001708c - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 12303 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x09 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x4D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2D 0x01 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x69 0x6D 0x61 0x74 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E 0x0D - 0x0A 0x34 0x09 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D - 0x2D 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x69 0x6D - 0x61 0x74 0x65 0x20 0x69 0x6E 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x2C 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12437 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4D= 0x0001708d - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 12445 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x4F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12529 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4E= 0x0001708e - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 12537 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x41 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_44=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20021 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x0D 0x0A 0x01 0x20 - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12612 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4F= 0x0001708f - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 12620 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 12694 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_50= 0x00017090 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 12702 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_79=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_79=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_79=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12796 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_51= 0x00017091 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 12804 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12896 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_52= 0x00017092 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 12904 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_52=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13039 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_53= 0x00017093 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 13047 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x64 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_53=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x72 - 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x73 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x01 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x77 0x69 0x74 0x68 0x69 0x6E - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13149 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_54= 0x00017094 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 13157 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 13230 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_55= 0x00017095 - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 13238 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 0x6E - 0x67 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x70 0x61 0x74 0x68 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13339 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_56= 0x00017096 - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 13347 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x27 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x65 0x6C 0x65 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x54 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 - 0x74 0x20 0x61 0x6E 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x27 0x73 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x20 0x6F 0x72 - 0x20 0x50 0x72 0x6F 0x70 0x20 0x4C 0x69 - 0x73 0x74 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x65 0x64 0x20 0x6F 0x6E 0x20 0x65 0x69 - 0x74 0x68 0x65 0x72 0x20 0x73 0x69 0x64 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x61 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13445 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_57= 0x00017097 - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 13453 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x03 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA2 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x65 0x6C - 0x65 0x63 0x74 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x76 0x69 0x65 0x77 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x27 0x73 0x20 0x70 0x69 0x63 0x74 - 0x75 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x20 0x6F 0x72 0x20 0x50 0x72 0x6F 0x70 - 0x20 0x4C 0x69 0x73 0x74 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x65 0x64 0x20 0x6F 0x6E - 0x20 0x65 0x69 0x74 0x68 0x65 0x72 0x20 - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x67 - 0x65 0x2E 0x0D 0x0A 0x54 0x68 0x69 0x73 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x67 0x65 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13565 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_58= 0x00017098 - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 13573 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x16 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_41=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA2 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x65 0x74 - 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x61 0x72 0x74 0x69 0x6E - 0x67 0x20 0x70 0x6F 0x73 0x65 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x64 0x65 0x63 0x69 0x64 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x20 0x28 0x62 0x6F - 0x74 0x68 0x20 0x66 0x65 0x65 0x74 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 0x72 - 0x69 0x67 0x68 0x74 0x20 0x66 0x6F 0x6F - 0x74 0x20 0x75 0x70 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x29 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 - 0x6F 0x73 0x65 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2D 0x01 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x73 0x73 0x69 0x67 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6F - 0x66 0x20 0x53 0x65 0x74 0x20 0x53 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x50 - 0x6F 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13711 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_59= 0x00017099 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 13719 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x67 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x22 0x66 0x72 0x65 0x65 0x7A - 0x65 0x22 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x46 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x2C 0x20 0x69 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x61 0x69 0x72 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x64 0x72 - 0x61 0x67 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x22 0x66 0x6C 0x6F 0x61 - 0x74 0x69 0x6E 0x67 0x22 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13837 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5A= 0x0001709a - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 13845 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_72=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_72=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_72=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 - 0x75 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x61 0x20 0x72 0x65 - 0x64 0x20 0x6C 0x69 0x67 0x68 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x66 0x66 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x66 0x66 - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x6E - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x65 0x72 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x64 0x20 0x6C 0x69 0x67 - 0x68 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13940 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5B= 0x0001709b - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 13948 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_51=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x70 - 0x6C 0x61 0x63 0x69 0x6E 0x67 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A 0x95 - 0x09 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x2B 0x53 0x68 0x69 0x66 0x74 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14047 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5C= 0x00017c0 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 14055 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x48 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_79=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x77 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xFD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x64 0x64 0x69 - 0x6E 0x67 0x20 0x65 0x78 0x74 0x72 0x61 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x0D - 0x0A 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x31 0x09 0x55 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x77 0x68 0x69 0x63 0x68 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2D 0x01 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x31 - 0x09 0x55 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x74 0x6F - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x74 0x6F 0x20 0x77 0x68 0x69 0x63 - 0x68 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x4E 0x65 0x78 - 0x74 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14191 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5D= 0x00017bf - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 14199 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_48=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x61 0x69 - 0x6E 0x74 0x61 0x69 0x6E 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x72 0x6F 0x74 - 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x6D - 0x6F 0x76 0x65 0x73 0x0D 0x0A 0x54 0x6F - 0x20 0x6D 0x61 0x69 0x6E 0x74 0x61 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x61 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6D 0x6F 0x76 0x65 0x73 0x0D 0x0A 0x95 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x73 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 0x74 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x4E - 0x6F 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x6F 0x6E - 0x27 0x74 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x2C 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6C 0x61 0x73 - 0x74 0x73 0x20 0x66 0x6F 0x72 0x20 0x6F - 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14306 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5E= 0x0001709e - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 14314 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x46 0x39 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14397 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5F= 0x0001709f - - -CHUNK('HTOP', _help_48544F50_5F, "") -SUBFILE -#line 14405 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5F, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x4B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x53 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14490 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_60= 0x000170a0 - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 14498 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_75=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 0x0D - 0x0A 0x31 0x09 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4C 0x6F 0x6F 0x70 0x2D 0x01 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14607 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_61= 0x000170a1 - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 14615 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCD 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x74 0x74 0x61 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x61 - 0x74 0x74 0x61 0x63 0x68 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x20 0x4D - 0x61 0x74 0x63 0x68 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14740 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_62= 0x000170a2 - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 14748 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_60=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_60=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_60=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x33 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 0x6F - 0x74 0x74 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14857 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_63= 0x000170a3 - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 14865 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x30 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x20 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x01 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x1F 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x61 0x75 - 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 - 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 0x64 - 0x6F 0x6E 0x65 0x20 0x74 0x61 0x6C 0x6B - 0x69 0x6E 0x67 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 - 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 14986 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_64= 0x000170a4 - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 14994 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x55 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x50 0x61 0x75 0x73 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x79 0x6F - 0x75 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x61 0x64 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x79 0x6F - 0x75 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x61 0x64 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x6E 0x65 0x63 0x65 - 0x73 0x73 0x61 0x72 0x79 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x57 0x61 0x69 0x74 0x20 - 0x46 0x6F 0x72 0x20 0x43 0x6C 0x69 0x63 - 0x6B 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 15109 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_65= 0x000170a5 - - -CHUNK('HTOP', _help_48544F50_65, "") -SUBFILE -#line 15117 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_65, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x54 0x79 0x70 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x6E 0x74 0x73 - 0x0D 0x0A 0x95 0x09 0x54 0x68 0x65 0x20 - 0x62 0x6C 0x69 0x6E 0x6B 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 0x69 - 0x6F 0x6E 0x20 0x70 0x6F 0x69 0x6E 0x74 - 0x20 0x28 0x6C 0x29 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x73 0x68 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x67 0x6F 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x74 0x79 0x70 0x65 0x2E 0x0D 0x0A - 0x95 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x6D 0x69 0x73 0x74 0x61 0x6B 0x65 0x2C - 0x20 0x70 0x72 0x65 0x73 0x73 0x20 0x42 - 0x61 0x63 0x6B 0x73 0x70 0x61 0x63 0x65 - 0x2E 0x0D 0x0A 0x95 0x09 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x72 0x65 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x65 0x64 - 0x67 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x78 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x61 0x75 - 0x74 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 - 0x6C 0x6C 0x79 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x6C 0x69 0x6E - 0x65 0x2E 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 - 0x73 0x69 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15226 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_66= 0x000170a6 - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 15234 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2D 0x01 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x57 0x6F - 0x72 0x64 0x20 0x42 0x6F 0x78 0x2D 0x01 - 0x0D 0x0A 0x33 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x65 0x64 0x67 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x69 0x73 0x73 - 0x6F 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15348 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_67= 0x000170a7 - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 15356 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x73 0x63 0x72 0x6F 0x6C 0x6C - 0x0D 0x0A 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x72 0x6F 0x6C - 0x6C 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15430 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_68= 0x000170a8 - - -CHUNK('HTOP', _help_48544F50_68, "") -SUBFILE -#line 15438 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_68, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_70=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_68=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004D - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_70=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x22 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA5 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0F 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA5 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xA8 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x22 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_70=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x70 - 0x61 0x75 0x73 0x65 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x6E 0x65 0x63 0x65 0x73 - 0x73 0x61 0x72 0x79 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x75 0x73 0x65 0x2E 0x0D 0x0A 0x01 - 0x0D 0x0A 0x01 0x0D 0x0A 0x4E 0x6F 0x74 - 0x65 0x3A 0x20 0x20 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x44 0x6F 0x6E 0x27 0x74 0x20 0x57 - 0x61 0x69 0x74 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 15578 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_69= 0x000170a9 - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 15586 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x58 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15690 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6A= 0x000170aa - - -CHUNK('HTOP', _help_48544F50_6A, "") -SUBFILE -#line 15698 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x69 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x73 0x0D 0x0A 0x54 0x6F 0x20 0x75 - 0x6E 0x64 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x69 0x64 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x43 0x74 0x72 0x6C 0x2B 0x5A 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x79 0x6F 0x75 0x20 0x75 0x6E 0x64 0x69 - 0x64 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x59 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15798 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6B= 0x000170ab - - -CHUNK('HTOP', _help_48544F50_6B, "") -SUBFILE -#line 15806 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6B, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 15881 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6C= 0x000170ac - - -CHUNK('HTOP', _help_48544F50_6C, "") -SUBFILE -#line 15889 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xB3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x55 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x01 - 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 - 0x74 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 - 0x73 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6F 0x72 0x20 0x64 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16007 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6D= 0x000170ad - - -CHUNK('HTOP', _help_48544F50_6D, "") -SUBFILE -#line 16015 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x99 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFE 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x04 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC5 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xFB 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 0x69 - 0x74 0x68 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x55 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x01 - 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 - 0x74 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 - 0x73 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6F 0x72 0x20 0x64 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x95 0x09 0x55 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E 0x0D 0x0A 0x01 0x0D 0x0A - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x2C - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C - 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16160 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6E= 0x000170ae - - -CHUNK('HTOP', _help_48544F50_6E, "") -SUBFILE -#line 16168 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6E, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_69=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_61=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_69=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_69=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x2B 0x56 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16252 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6F= 0x000170af - - -CHUNK('HTOP', _help_48544F50_6F, "") -SUBFILE -#line 16260 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6F, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x73 - 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x53 - 0x68 0x69 0x66 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16355 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_70= 0x000170b0 - - -CHUNK('HTOP', _help_48544F50_70, "") -SUBFILE -#line 16363 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_70, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x75 0x74 - 0x74 0x69 0x6E 0x67 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x75 0x74 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x53 0x68 - 0x69 0x66 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16456 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_71= 0x000170b1 - - -CHUNK('HTOP', _help_48544F50_71, "") -SUBFILE -#line 16464 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_71, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x51 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16548 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_72= 0x000170b2 - - -CHUNK('HTOP', _help_48544F50_72, "") -SUBFILE -#line 16556 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_72, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_73=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x50 0x72 0x65 - 0x73 0x73 0x20 0x46 0x31 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16637 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_73= 0x000170b3 - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 16645 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x03 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_78=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x95 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA6 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xB0 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x74 0x6F 0x70 - 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x6F 0x70 0x3A 0x0D 0x0A 0x01 - 0x2D 0x53 0x6F 0x75 0x6E 0x64 0x20 0x45 - 0x66 0x66 0x65 0x63 0x74 0x73 0x0D 0x0A - 0x01 0x2D 0x53 0x70 0x65 0x65 0x63 0x68 - 0x0D 0x0A 0x01 0x2D 0x4D 0x75 0x73 0x69 - 0x63 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x53 0x74 0x6F 0x70 0x70 0x65 0x72 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16768 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_74= 0x000170b4 - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 16776 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_43=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x95 - 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x73 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x01 0x0D 0x0A - 0x95 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F - 0x20 0x61 0x64 0x64 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x01 -ENDCHUNK - - -ENDCHUNK -#line 16880 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_75= 0x000170b5 - - -CHUNK('HTOP', _help_48544F50_75, "") -SUBFILE -#line 16888 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_75, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x03 0x03 0x70 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 16961 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_76= 0x000170b6 - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 16969 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E - 0x20 0x49 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x3F 0x0D 0x0A 0x59 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x3A 0x0D 0x0A 0x95 0x09 0x54 - 0x77 0x6F 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x28 0x6F 0x6E 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x6E 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6F 0x6E 0x29 0x2E 0x0D 0x0A 0x95 - 0x09 0x54 0x77 0x6F 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x20 0x28 0x6F 0x6E 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x70 0x65 - 0x65 0x63 0x68 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x69 0x6E 0x67 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17068 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_77= 0x000170b7 - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 17076 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_76=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x69 0x6E 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x74 - 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x79 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 0x66 - 0x74 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x69 0x73 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x70 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x6C 0x79 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x2D 0x2D 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x27 0x74 0x20 0x69 0x6E - 0x73 0x65 0x72 0x74 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17198 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_78= 0x000170ba - - -CHUNK('HTOP', _help_48544F50_78, "") -SUBFILE -#line 17206 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_78, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_46=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x53 0x68 0x69 0x66 0x74 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17305 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_79= 0x000170b8 - - -CHUNK('HTOP', _help_48544F50_79, "") -SUBFILE -#line 17313 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_79, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_63=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_63=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_63=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x03 0x03 0x49 0x6D 0x70 0x6F 0x72 0x74 - 0x0D 0x0A 0x54 0x6F 0x20 0x75 0x73 0x65 - 0x20 0x61 0x20 0x66 0x69 0x6C 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x77 0x69 0x74 0x68 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17384 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7A= 0x000170b9 - - -CHUNK('HTOP', _help_48544F50_7A, "") -SUBFILE -#line 17392 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_72=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20291 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20292 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20293 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20294 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x03 0x03 0x74 0x72 0x61 0x6E 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x73 0x0D 0x0A 0x01 - 0x09 0x43 0x75 0x74 0x20 0x74 0x6F 0x20 - 0x62 0x6C 0x61 0x63 0x6B 0x0D 0x0A 0x01 - 0x09 0x44 0x69 0x73 0x73 0x6F 0x6C 0x76 - 0x65 0x0D 0x0A 0x01 0x09 0x44 0x69 0x73 - 0x73 0x6F 0x6C 0x76 0x65 0x20 0x77 0x69 - 0x74 0x68 0x20 0x62 0x6C 0x61 0x63 0x6B - 0x0D 0x0A 0x01 0x09 0x44 0x69 0x73 0x73 - 0x6F 0x6C 0x76 0x65 0x20 0x77 0x69 0x74 - 0x68 0x20 0x77 0x68 0x69 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 17491 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7B= 0x000170be - - -CHUNK('HTOP', _help_48544F50_7B, "") -SUBFILE -#line 17499 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075549 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_55=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x85 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x85 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x62 0x65 0x67 0x69 0x6E 0x73 0x2E - 0x20 0x20 0x20 0x59 0x6F 0x75 0x27 0x6C - 0x6C 0x20 0x68 0x65 0x61 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 - 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 - 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 17665 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7C= 0x00017c1 - - -CHUNK('HTOP', _help_48544F50_7C, "") -SUBFILE -#line 17673 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_77=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x4D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17760 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7D= 0x00017c2 - - -CHUNK('HTOP', _help_48544F50_7D, "") -SUBFILE -#line 17768 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_80=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x21 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_80=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x26 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFC 0x00 0x00 0x82 - 0xFB 0xFF 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_80=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x03 0x03 0x01 0x09 0x4D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x73 0x63 0x72 0x6F 0x6C - 0x6C 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x0D 0x0A - 0x31 0x09 0x54 0x79 0x70 0x65 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6C 0x6C 0x20 0x75 0x70 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x62 0x6F 0x78 0x2E 0x0D - 0x0A 0x32 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x63 0x6F 0x6D 0x70 0x6C - 0x65 0x74 0x65 0x6C 0x79 0x20 0x6F 0x66 - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x61 0x64 - 0x64 0x20 0x62 0x6C 0x61 0x6E 0x6B 0x20 - 0x6C 0x69 0x6E 0x65 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x65 - 0x64 0x69 0x74 0x73 0x20 0x62 0x6F 0x78 - 0x20 0x62 0x79 0x20 0x70 0x72 0x65 0x73 - 0x73 0x69 0x6E 0x67 0x20 0x45 0x6E 0x74 - 0x65 0x72 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x6F 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x20 0x73 - 0x65 0x65 0x20 0x61 0x6E 0x79 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 17887 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_83= 0x000170bc - - -CHUNK('HTOP', _help_48544F50_83, "") -SUBFILE -#line 17895 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_83, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F - 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A 0x95 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x55 - 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F 0x77 - 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 - 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17992 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_92= 0x000170bd - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 18000 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_74=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x88 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x92 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x8F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 0x72 - 0x66 0x61 0x63 0x65 0x0D 0x0A 0x31 0x09 - 0x22 0x54 0x75 0x72 0x6E 0x20 0x6F 0x6E - 0x22 0x20 0x74 0x68 0x65 0x20 0x46 0x61 - 0x6C 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 0x74 - 0x68 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x69 0x73 0x20 0x70 0x75 0x73 - 0x68 0x65 0x64 0x20 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x20 0x6C 0x69 - 0x67 0x68 0x74 0x73 0x20 0x75 0x70 0x2E - 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 18122 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -#line 18 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -SET _help_48544F50_0= 0x22334 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001602b 0x0 0x20005 0x000305F4 0x0 0x0 0x57415645 0x00076000 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 90 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1= 0x22340 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 98 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600d 0x0 0x20042 0x000305F4 0x0 0x0 0x57415645 0x00076001 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x43 0x68 0x6F 0x69 0x63 0x65 0x73 0x0D - 0x0A 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x6D 0x61 0x6E - 0x79 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 183 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2= 0x22318 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 191 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600d 0x0 0x20014 0x000305F4 0x0 0x0 0x57415645 0x00076002 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_40=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 0x0D - 0x0A 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x76 0x69 0x65 0x77 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 281 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3= 0x223B0 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 289 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600d 0x0 0x2008B 0x000305F4 0x0 0x0 0x57415645 0x00076003 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x4D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 374 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4= 0x22335 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 382 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001602b 0x0 0x20006 0x000305F4 0x0 0x0 0x57415645 0x00076004 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 440 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5= 0x22341 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 448 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600d 0x0 0x20075 0x000305F4 0x0 0x0 0x57415645 0x00076005 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x0D 0x0A 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x72 0x61 - 0x63 0x74 0x65 0x72 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 534 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_6= 0x22319 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 542 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600d 0x0 0x2003A 0x000305F4 0x0 0x0 0x57415645 0x00076006 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 - 0x72 0x20 0x61 0x6E 0x64 0x20 0x61 0x64 - 0x64 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 629 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_7= 0x22342 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 637 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600d 0x0 0x20076 0x000305F4 0x0 0x0 0x57415645 0x00076007 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x0D 0x0A 0x41 0x64 0x64 0x20 0x70 0x72 - 0x6F 0x70 0x73 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x66 0x75 0x72 0x6E 0x69 0x74 0x75 - 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x61 0x72 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 723 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_8= 0x22343 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 731 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001600d 0x0 0x20077 0x000305F4 0x0 0x0 0x57415645 0x00076008 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x70 0x69 - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 819 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_9= 0x22320 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 827 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001600d 0x0 0x20018 0x000305F4 0x0 0x0 0x57415645 0x00076009 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 916 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_A= 0x22326 - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 924 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001600d 0x0 0x20065 0x000305F4 0x0 0x0 0x57415645 0x0007600A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_44=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x0D 0x0A 0x52 0x65 - 0x73 0x69 0x7A 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1011 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_B= 0x22314 - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1019 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001602e 0x0 0x20021 0x000305F4 0x0 0x0 0x57415645 0x0007600B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x65 0x20 0x45 - 0x76 0x65 0x6E 0x6C 0x79 0x0D 0x0A 0x45 - 0x76 0x65 0x6E 0x6C 0x79 0x20 0x67 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x73 0x68 - 0x72 0x69 0x6E 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1105 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_C= 0x22313 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1113 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001602e 0x0 0x20020 0x000305F4 0x0 0x0 0x57415645 0x0007600C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x92 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x53 0x71 0x75 0x61 0x73 0x68 - 0x20 0x26 0x20 0x53 0x74 0x72 0x65 0x74 - 0x63 0x68 0x0D 0x0A 0x4D 0x61 0x6B 0x65 - 0x20 0x73 0x68 0x6F 0x72 0x74 0x65 0x72 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x69 0x64 - 0x65 0x72 0x20 0x6F 0x72 0x20 0x74 0x61 - 0x6C 0x6C 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x69 0x6E 0x6E 0x65 0x72 - 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1201 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_D= 0x22315 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1209 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001602e 0x0 0x2006C 0x000305F4 0x0 0x0 0x57415645 0x0007600D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x42 0x61 0x63 0x6B 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x69 0x74 0x73 0x20 0x6F 0x72 0x69 - 0x67 0x69 0x6E 0x61 0x6C 0x20 0x73 0x69 - 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1299 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_E= 0x22325 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1307 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001600d 0x0 0x20064 0x000305F4 0x0 0x0 0x57415645 0x0007600E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x0D 0x0A - 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x64 0x69 0x72 0x65 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x66 0x61 0x63 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1395 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_F= 0x22310 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1403 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001600d 0x0 0x2001D 0x000305F4 0x0 0x0 0x57415645 0x0007600F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x4C - 0x65 0x66 0x74 0x20 0x6F 0x72 0x20 0x52 - 0x69 0x67 0x68 0x74 0x0D 0x0A 0x54 0x75 - 0x72 0x6E 0x20 0x6C 0x65 0x66 0x74 0x20 - 0x6F 0x72 0x20 0x72 0x69 0x67 0x68 0x74 - 0x2E 0x0D 0x0A 0x50 0x2E 0x53 0x2E 0x20 - 0x20 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x69 0x74 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1491 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_10= 0x2230F - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1499 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001600d 0x0 0x2001C 0x000305F4 0x0 0x0 0x57415645 0x00076010 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x20 0x46 0x6F - 0x72 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 - 0x20 0x42 0x61 0x63 0x6B 0x0D 0x0A 0x54 - 0x69 0x70 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x2E 0x0D 0x0A 0x50 0x2E 0x53 - 0x2E 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x69 0x74 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x6C 0x6F 0x6E 0x67 0x65 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1588 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_11= 0x22311 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1596 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001600d 0x0 0x2001E 0x000305F4 0x0 0x0 0x57415645 0x00076011 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x20 0x74 0x6F - 0x20 0x4F 0x6E 0x65 0x20 0x53 0x69 0x64 - 0x65 0x0D 0x0A 0x54 0x69 0x70 0x20 0x73 - 0x69 0x64 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x69 0x64 0x65 0x2E 0x0D 0x0A 0x50 0x2E - 0x53 0x2E 0x20 0x20 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x69 0x74 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x6C 0x6F 0x6E 0x67 0x65 - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1687 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_12= 0x22312 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1695 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001600d 0x0 0x2006B 0x000305F4 0x0 0x0 0x57415645 0x00076012 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x42 0x61 0x63 0x6B 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x69 0x74 0x20 0x77 0x61 0x73 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x6F 0x74 0x61 0x74 - 0x65 0x64 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1786 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_13= 0x22324 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1794 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001600d 0x0 0x2001F 0x000305F4 0x0 0x0 0x57415645 0x00076013 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x53 0x79 0x6E 0x63 0x68 0x72 - 0x6F 0x6E 0x69 0x7A 0x65 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x67 0x65 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x69 0x63 0x75 0x6C - 0x61 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1868 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_14= 0x2231F - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1876 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001600d 0x0 0x20017 0x000305F4 0x0 0x0 0x57415645 0x00076014 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x73 0x20 0x70 0x61 0x74 0x68 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1965 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_15= 0x2231D - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1973 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001600d 0x0 0x20015 0x000305F4 0x0 0x0 0x57415645 0x00076015 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 2031 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_16= 0x22321 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2039 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001600d 0x0 0x2007B 0x000305F4 0x0 0x0 0x57415645 0x00076016 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x0D 0x0A 0x4D 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x6D 0x6F - 0x76 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 2126 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_17= 0x22322 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2134 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001600d 0x0 0x20063 0x000305F4 0x0 0x0 0x57415645 0x00076017 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x73 0x75 0x6D 0x65 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x75 0x73 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2223 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_18= 0x22323 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2231 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001600d 0x0 0x2001B 0x000305F4 0x0 0x0 0x57415645 0x00076018 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 2292 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_19= 0x22328 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2300 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001600d 0x0 0x20024 0x000305F4 0x0 0x0 0x57415645 0x00076019 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x46 0x61 0x6C 0x6C 0x20 0x54 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x47 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 0x73 - 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E 0x2C - 0x22 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x63 0x61 0x6E - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x73 0x75 0x72 0x66 0x61 0x63 0x65 - 0x2E 0x20 0x20 0x4F 0x74 0x68 0x65 0x72 - 0x77 0x69 0x73 0x65 0x2C 0x20 0x69 0x74 - 0x20 0x63 0x61 0x6E 0x27 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2399 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1A= 0x22327 - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2407 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001600d 0x0 0x20022 0x000305F4 0x0 0x0 0x57415645 0x0007601A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x55 0x70 0x20 0x26 0x20 0x44 - 0x6F 0x77 0x6E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x69 - 0x73 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x28 0x69 0x6E 0x73 - 0x74 0x65 0x61 0x64 0x20 0x6F 0x66 0x20 - 0x6E 0x65 0x61 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x61 0x72 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2505 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1B= 0x2231E - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2513 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001600d 0x0 0x20016 0x000305F4 0x0 0x0 0x57415645 0x0007601B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_41=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x42 0x6F 0x6F 0x6B 0x0D 0x0A 0x47 - 0x69 0x76 0x65 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x6F - 0x6F 0x70 0x20 0x6F 0x6E 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x20 0x75 0x73 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 2600 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1C= 0x2236C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2608 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001600d 0x0 0x21100 0x000305F4 0x0 0x0 0x57415645 0x0007601C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x4C 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 - 0x6F 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x79 0x6F 0x75 0x27 0x76 - 0x65 0x20 0x75 0x73 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2693 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1D= 0x2238C - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2701 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001600d 0x0 0x21110 0x000305F4 0x0 0x0 0x57415645 0x0007601D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x6F 0x70 0x20 0x4C - 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2791 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1E= 0x22336 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2799 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001602b 0x0 0x20007 0x000305F4 0x0 0x0 0x57415645 0x0007601E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 2857 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1F= 0x22344 - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2865 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001600d 0x0 0x20078 0x000305F4 0x0 0x0 0x57415645 0x0007601F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x45 0x66 0x66 0x65 0x63 0x74 0x73 0x0D - 0x0A 0x41 0x64 0x64 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x65 0x66 0x66 0x65 0x63 - 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2949 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_20= 0x22345 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2957 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001600d 0x0 0x22345 0x000305F4 0x0 0x0 0x57415645 0x00076020 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x65 0x65 0x63 0x68 - 0x0D 0x0A 0x4D 0x61 0x6B 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x61 0x6C 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 3040 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_21= 0x22346 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3048 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001600d 0x0 0x2007A 0x000305F4 0x0 0x0 0x57415645 0x00076021 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x69 0x63 0x0D - 0x0A 0x41 0x74 0x74 0x61 0x63 0x68 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x20 0x74 0x6F - 0x20 0x61 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3130 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_22= 0x22329 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3138 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001600d 0x0 0x20026 0x000305F4 0x0 0x0 0x57415645 0x00076022 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x4F - 0x6E 0x63 0x65 0x0D 0x0A 0x41 0x74 0x74 - 0x61 0x63 0x68 0x65 0x73 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x73 0x20 0x69 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x74 0x69 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3228 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_23= 0x2232B - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3236 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001600d 0x0 0x20029 0x000305F4 0x0 0x0 0x57415645 0x00076023 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4C 0x6F 0x6F 0x70 0x0D 0x0A - 0x41 0x74 0x74 0x61 0x63 0x68 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x6E - 0x64 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 - 0x69 0x74 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3323 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_24= 0x2232C - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3331 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001600d 0x0 0x2002A 0x000305F4 0x0 0x0 0x57415645 0x00076024 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 0x72 - 0x0D 0x0A 0x41 0x74 0x74 0x61 0x63 0x68 - 0x65 0x73 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3419 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_25= 0x2232A - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3427 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001600d 0x0 0x20027 0x000305F4 0x0 0x0 0x57415645 0x00076025 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x4C 0x69 0x73 0x74 - 0x65 0x6E 0x20 0x74 0x6F 0x2C 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2C 0x20 0x6F - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3519 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_26= 0x22337 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3527 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001602b 0x0 0x20008 0x000305F4 0x0 0x0 0x57415645 0x00076026 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 3585 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_27= 0x22347 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3593 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001600d 0x0 0x20046 0x000305F4 0x0 0x0 0x57415645 0x00076027 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x20 0x42 - 0x6F 0x78 0x0D 0x0A 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x62 0x6F 0x78 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x74 - 0x79 0x70 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 - 0x63 0x72 0x65 0x64 0x69 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3681 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_28= 0x22331 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3689 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001600d 0x0 0x20030 0x000305F4 0x0 0x0 0x57415645 0x00076028 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x73 0x65 0x72 0x74 - 0x69 0x6F 0x6E 0x20 0x50 0x6F 0x69 0x6E - 0x74 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x2C - 0x20 0x72 0x65 0x73 0x69 0x7A 0x65 0x2C - 0x20 0x6F 0x72 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3780 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_29= 0x22330 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3788 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001600d 0x0 0x2002F 0x000305F4 0x0 0x0 0x57415645 0x00076029 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_43=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x61 - 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x73 0x20 0x6C - 0x6F 0x6F 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 3871 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2A= 0x2232E - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3879 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001600d 0x0 0x2002D 0x000305F4 0x0 0x0 0x57415645 0x0007602A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x79 0x6C 0x65 0x73 - 0x0D 0x0A 0x4D 0x61 0x6B 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x73 0x74 0x61 - 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 0x77 - 0x69 0x74 0x68 0x20 0x73 0x74 0x79 0x6C - 0x65 0x73 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x62 0x6F 0x6C 0x64 0x20 0x6F 0x72 0x20 - 0x69 0x74 0x61 0x6C 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3966 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2B= 0x22332 - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3974 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001600d 0x0 0x20032 0x000305F4 0x0 0x0 0x57415645 0x0007602B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x20 0x53 0x69 0x7A 0x65 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4058 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2C= 0x2232F - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4066 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001600d 0x0 0x2002E 0x000305F4 0x0 0x0 0x57415645 0x0007602C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x20 0x43 0x6F 0x6C 0x6F 0x72 0x0D 0x0A - 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4150 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2D= 0x2232D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4158 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001600d 0x0 0x2002C 0x000305F4 0x0 0x0 0x57415645 0x0007602D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x43 0x6F 0x6C - 0x6F 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4245 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2E= 0x22333 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4253 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001600d 0x0 0x20069 0x000305F4 0x0 0x0 0x57415645 0x0007602E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E - 0x6F 0x6E 0x2D 0x53 0x63 0x72 0x6F 0x6C - 0x6C 0x69 0x6E 0x67 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x61 0x79 0x20 0x73 0x74 0x69 0x6C 0x6C - 0x21 -ENDCHUNK - - -ENDCHUNK -#line 4342 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2F= 0x22316 - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4350 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001602e 0x0 0x20031 0x000305F4 0x0 0x0 0x57415645 0x0007602F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x0D 0x0A 0x4D 0x61 0x6B - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 0x63 - 0x72 0x6F 0x6C 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4433 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_30= 0x22317 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4441 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001602e 0x0 0x20033 0x000305F4 0x0 0x0 0x57415645 0x00076030 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x6E 0x2D 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x0D - 0x0A 0x4D 0x61 0x6B 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x74 0x61 0x79 0x20 0x73 - 0x74 0x69 0x6C 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4525 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_31= 0x223B2 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4533 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001602e 0x0 0x20082 0x000305F4 0x0 0x0 0x57415645 0x00076031 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x4D 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 - 0x64 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4620 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_32= 0x2231A - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4628 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001600d 0x0 0x2004C 0x000305F4 0x0 0x0 0x57415645 0x00076032 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 4689 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_33= 0x2231C - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4697 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001600d 0x0 0x2004E 0x000305F4 0x0 0x0 0x57415645 0x00076033 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x57 0x61 0x69 0x74 0x20 0x46 - 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 0x0D - 0x0A 0x50 0x61 0x75 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 0x73 - 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4787 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_34= 0x2231B - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4795 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001600d 0x0 0x2004D 0x000305F4 0x0 0x0 0x57415645 0x00076034 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x85 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4853 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_35= 0x2233D - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4861 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001602e 0x0 0x20039 0x000305F4 0x0 0x0 0x57415645 0x00076035 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x2F 0x53 - 0x74 0x6F 0x70 0x20 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x53 0x74 0x6F 0x70 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4946 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_36= 0x2233C - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4954 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x0001602e 0x0 0x20038 0x000305F4 0x0 0x0 0x57415645 0x00076036 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F 0x6C - 0x0D 0x0A 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5041 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_37= 0x2233B - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5049 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001602e 0x0 0x20037 0x000305F4 0x0 0x0 0x57415645 0x00076037 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x55 0x6E 0x64 0x6F 0x2F 0x52 - 0x65 0x64 0x6F 0x0D 0x0A 0x55 0x6E 0x64 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x69 0x64 - 0x21 0x20 0x20 0x52 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x21 -ENDCHUNK - - -ENDCHUNK -#line 5138 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_38= 0x2233A - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5146 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001602e 0x0 0x20036 0x000305F4 0x0 0x0 0x57415645 0x00076038 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x0D 0x0A 0x47 0x65 0x74 0x20 - 0x72 0x69 0x64 0x20 0x6F 0x66 0x2C 0x20 - 0x63 0x6F 0x70 0x79 0x2C 0x20 0x70 0x61 - 0x73 0x74 0x65 0x2C 0x20 0x6F 0x72 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x6F 0x6E 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x6F 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5239 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_39= 0x22308 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5247 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001600d 0x0 0x20062 0x000305F4 0x0 0x0 0x57415645 0x00076039 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x42 0x65 0x66 0x6F - 0x72 0x65 0x0D 0x0A 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5339 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3A= 0x22307 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5347 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001600d 0x0 0x20050 0x000305F4 0x0 0x0 0x57415645 0x0007603A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x58 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x41 0x66 0x74 0x65 - 0x72 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x65 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5439 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3B= 0x22309 - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5447 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602e 0x0 0x20051 0x000305F4 0x0 0x0 0x57415645 0x0007603B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5531 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3C= 0x2230A - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5539 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001602e 0x0 0x20052 0x000305F4 0x0 0x0 0x57415645 0x0007603C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x33 0x44 0x20 0x4F 0x62 0x6A 0x65 - 0x63 0x74 0x0D 0x0A 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5628 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3D= 0x223B5 - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5636 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001602e 0x0 0x20052 0x000305F4 0x0 0x0 0x57415645 0x0007603D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x57 0x6F 0x72 0x64 0x20 0x42 0x6F - 0x78 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5724 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3E= 0x2230B - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5732 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001602e 0x0 0x20053 0x000305F4 0x0 0x0 0x57415645 0x0007603E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x20 0x50 - 0x61 0x74 0x68 0x0D 0x0A 0x43 0x6F 0x70 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5819 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3F= 0x2230C - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5827 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001602e 0x0 0x20054 0x000305F4 0x0 0x0 0x57415645 0x0007603F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x73 0x74 0x65 0x0D - 0x0A 0x50 0x61 0x73 0x74 0x65 0x20 0x77 - 0x68 0x61 0x74 0x65 0x76 0x65 0x72 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x73 0x74 - 0x20 0x72 0x65 0x63 0x65 0x6E 0x74 0x6C - 0x79 0x20 0x63 0x75 0x74 0x20 0x6F 0x72 - 0x20 0x63 0x6F 0x70 0x69 0x65 0x64 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5916 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_40= 0x2230D - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 5924 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x0001602e 0x0 0x20055 0x000305F4 0x0 0x0 0x57415645 0x00076040 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x0D 0x0A - 0x43 0x6F 0x70 0x79 0x20 0x77 0x68 0x61 - 0x74 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x70 0x61 0x73 0x74 - 0x65 0x20 0x69 0x74 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6017 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_41= 0x2230E - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 6025 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001602e 0x0 0x20056 0x000305F4 0x0 0x0 0x57415645 0x00076041 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x43 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x69 - 0x74 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6C 0x6F 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6119 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_42= 0x2233E - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 6127 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001602e 0x0 0x2003C 0x000305F4 0x0 0x0 0x57415645 0x00076042 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x50 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x0D 0x0A 0x53 0x74 0x61 - 0x72 0x74 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x6F 0x70 0x65 0x6E 0x20 0x61 0x6E 0x20 - 0x65 0x78 0x69 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x61 0x76 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 0x6F - 0x72 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6220 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_43= 0x22305 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 6228 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001602e 0x0 0x20049 0x000305F4 0x0 0x0 0x57415645 0x00076043 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x77 0x0D 0x0A 0x53 - 0x74 0x61 0x72 0x74 0x20 0x61 0x20 0x6E - 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x72 0x61 0x74 0x63 0x68 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6310 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_44= 0x22304 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 6318 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602e 0x0 0x20048 0x000305F4 0x0 0x0 0x57415645 0x00076044 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x4F 0x70 0x65 0x6E 0x0D 0x0A - 0x4F 0x70 0x65 0x6E 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x77 0x61 0x74 0x63 0x68 0x20 0x69 0x74 - 0x20 0x6F 0x72 0x20 0x77 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x69 0x74 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6404 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_45= 0x22306 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 6412 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602e 0x0 0x2004A 0x000305F4 0x0 0x0 0x57415645 0x00076045 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x63 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x53 0x61 0x76 0x65 0x0D 0x0A - 0x53 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x77 0x6F 0x72 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6493 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_46= 0x223B3 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 6501 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602e 0x0 0x20095 0x000305F4 0x0 0x0 0x57415645 0x00076046 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x53 0x61 0x76 0x65 0x20 0x41 - 0x73 0x0D 0x0A 0x53 0x61 0x76 0x65 0x20 - 0x61 0x20 0x63 0x6F 0x70 0x79 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x69 0x74 - 0x68 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 - 0x6E 0x61 0x6D 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6585 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_47= 0x22338 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 6593 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001602e 0x0 0x20034 0x000305F4 0x0 0x0 0x57415645 0x00076047 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6C 0x70 0x20 0x4D - 0x61 0x63 0x68 0x69 0x6E 0x65 0x0D 0x0A - 0x46 0x69 0x6E 0x64 0x20 0x61 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x20 0x61 0x6E 0x73 - 0x77 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2D 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x71 0x75 0x65 0x73 0x74 0x69 - 0x6F 0x6E 0x73 0x21 0x20 -ENDCHUNK - - -ENDCHUNK -#line 6681 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_48= 0x22339 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 6689 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001602e 0x0 0x20035 0x000305F4 0x0 0x0 0x57415645 0x00076048 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x70 0x0D 0x0A 0x51 - 0x75 0x69 0x63 0x6B 0x6C 0x79 0x20 0x7A - 0x69 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6F 0x6D 0x20 0x6F - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x68 0x6F 0x69 0x63 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6774 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_49= 0x2233F - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 6782 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602e 0x0 0x2003D 0x000305F4 0x0 0x0 0x57415645 0x00076049 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x69 0x74 0x0D 0x0A - 0x51 0x75 0x69 0x74 0x20 0x77 0x6F 0x72 - 0x6B 0x69 0x6E 0x67 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6848 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4A= 0x2236D - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 6856 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001600d 0x0 0x21100 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x30 -ENDCHUNK - - -ENDCHUNK -#line 6914 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4B= 0x2236E - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 6922 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001600d 0x0 0x21101 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x31 -ENDCHUNK - - -ENDCHUNK -#line 6980 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4C= 0x2236F - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 6988 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x0001600d 0x0 0x21102 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x32 -ENDCHUNK - - -ENDCHUNK -#line 7046 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4D= 0x22370 - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 7054 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001600d 0x0 0x21103 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x33 -ENDCHUNK - - -ENDCHUNK -#line 7112 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4E= 0x2238D - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 7120 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001600d 0x0 0x21110 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x36 -ENDCHUNK - - -ENDCHUNK -#line 7178 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4F= 0x2238E - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 7186 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001600d 0x0 0x21111 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x37 -ENDCHUNK - - -ENDCHUNK -#line 7244 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_50= 0x2238F - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 7252 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001600d 0x0 0x21112 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x38 -ENDCHUNK - - -ENDCHUNK -#line 7310 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_51= 0x22390 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 7318 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001600d 0x0 0x21113 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x39 -ENDCHUNK - - -ENDCHUNK -#line 7376 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_52= 0x223D7 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 7384 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602e 0x0 0x2002B 0x000305F4 0x0 0x0 0x57415645 0x0007604A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x62 - 0x79 0x20 0x63 0x6C 0x69 0x63 0x6B 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x65 0x64 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7458 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_53= 0x223D8 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 7466 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x0001602e 0x0 0x20088 0x000305F4 0x0 0x0 0x57415645 0x0007604B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x72 0x73 0x74 0x0D - 0x0A 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7535 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_54= 0x223D9 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 7543 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x0001602e 0x0 0x20087 0x000305F4 0x0 0x0 0x57415645 0x0007604C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x0D 0x0A 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7613 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_55= 0x223DA - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 7621 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x0001602e 0x0 0x20085 0x000305F4 0x0 0x0 0x57415645 0x0007604D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x0D 0x0A - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7690 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_56= 0x223DB - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 7698 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x0001602e 0x0 0x20086 0x000305F4 0x0 0x0 0x57415645 0x0007604E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x4C 0x61 0x73 0x74 0x0D 0x0A - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7767 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_57= 0x223DC - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 7775 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x0001602e 0x0 0x20091 0x000305F4 0x0 0x0 0x57415645 0x0007604F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x72 0x73 0x74 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7842 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_58= 0x223DD - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 7850 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x0001602e 0x0 0x20090 0x000305F4 0x0 0x0 0x57415645 0x00076050 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7918 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_59= 0x223DE - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 7926 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x0001602e 0x0 0x2008E 0x000305F4 0x0 0x0 0x57415645 0x00076051 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7993 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5A= 0x223DF - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 8001 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00076052 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x4C 0x61 0x73 0x74 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8068 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5B= 0x22349 - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 8076 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x0001602e 0x0 0x2009C 0x000305F4 0x0 0x0 0x57415645 0x00076053 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x61 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x74 0x69 0x6D - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8144 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5C= 0x22348 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 8152 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602e 0x0 0x2009B 0x000305F4 0x0 0x0 0x57415645 0x00076054 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x60 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x63 0x6B 0x0D 0x0A - 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 - 0x69 0x6D 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8220 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5D= 0x223E1 - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 8228 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x0001602e 0x0 0x20089 0x000305F4 0x0 0x0 0x57415645 0x00076055 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x0D 0x0A 0x44 0x72 0x61 0x67 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x77 - 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8295 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5E= 0x223E0 - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 8303 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x0001602e 0x0 0x20092 0x000305F4 0x0 0x0 0x57415645 0x00076056 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x0D 0x0A 0x44 0x72 0x61 0x67 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8371 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -#line 19 "H:\\BUILD\\SOC\\src\\help\\help.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -SET _help_48544F50_0= 0x20000108 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030002 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030003 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030007 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030010 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030008 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003000E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030009 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x43 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x99 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x00 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFF 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x1B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x99 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xD2 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xFF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x1B 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x43 0x68 - 0x6F 0x6F 0x73 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x97 0x63 0x6C 0x6F 0x73 - 0x65 0x20 0x75 0x70 0x2C 0x20 0x6C 0x6F - 0x6E 0x67 0x20 0x73 0x68 0x6F 0x74 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x73 0x6F 0x20 - 0x6F 0x6E 0x0D 0x0A 0x45 0x64 0x69 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x41 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x0D 0x0A 0x01 0x09 0x41 0x64 0x64 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x74 0x72 - 0x61 0x6E 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x62 0x65 0x74 0x77 0x65 0x65 0x6E - 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 0x97 - 0x63 0x75 0x74 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x69 0x73 0x73 0x6F 0x6C 0x76 - 0x65 0x73 0x0D 0x0A 0x01 0x09 0x41 0x74 - 0x74 0x61 0x63 0x68 0x69 0x6E 0x67 0x20 - 0x6F 0x6E 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 - 0x64 0x65 0x72 0x0D 0x0A 0x01 0x09 0x4D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 225 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_2= 0x20000109 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 233 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000007 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003000B - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003000C - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003000D - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003000F - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003000A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x30 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0x01 - 0x01 0x00 0x01 0x00 0xEE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xD5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xEE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA1 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xD7 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A - 0x01 0x09 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x01 0x09 0x52 0x65 0x6D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x69 0x6E 0x63 0x6C - 0x75 0x64 0x69 0x6E 0x67 0x20 0x61 0x6C - 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 0x6F - 0x70 0x73 0x0D 0x0A 0x01 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x01 0x09 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x73 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x01 0x09 0x55 0x6E 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 0x72 - 0x65 0x64 0x6F 0x69 0x6E 0x67 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 396 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_5= 0x2000010a - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 404 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030061 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030062 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030064 - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030063 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030060 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030065 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x0D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xAA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x20 0x09 0x43 - 0x68 0x6F 0x6F 0x73 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x6F 0x6F - 0x73 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 - 0x72 0x6F 0x70 0x0D 0x0A 0x01 0x09 0x43 - 0x72 0x65 0x61 0x74 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x01 0x09 0x55 0x73 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x61 0x6D 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x55 0x73 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x41 0x6E 0x69 0x6D 0x61 0x74 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x4D 0x61 - 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x6D 0x6F 0x76 0x65 0x97 0x61 0x73 0x73 - 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x63 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x73 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 568 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_6= 0x2000010b - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 576 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003006C - FREE - FREE - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003006A - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030068 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003006B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030066 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030067 - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x0003007A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA7 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x2C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x2E 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x98 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xCA 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x69 0x6D 0x61 0x74 - 0x69 0x6E 0x67 0x20 0x63 0x6F 0x6E 0x74 - 0x69 0x6E 0x75 0x65 0x64 0x2E 0x2E 0x2E - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 - 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x75 0x73 0x65 0x64 - 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x70 0x79 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x97 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 0x20 - 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x0D 0x0A 0x01 0x09 0x4D 0x61 - 0x6B 0x69 0x6E 0x67 0x20 0x74 0x77 0x6F - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x6D 0x65 0x65 0x74 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x73 0x70 0x6F 0x74 0x0D 0x0A 0x01 - 0x09 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 - 0x73 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x6F - 0x6B 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x79 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x97 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x73 0x2C 0x20 0x70 0x61 - 0x74 0x74 0x65 0x72 0x6E 0x73 0x2C 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x73 - 0x2C 0x20 0x6F 0x72 0x20 0x61 0x63 0x63 - 0x65 0x73 0x73 0x6F 0x72 0x69 0x65 0x73 - 0x21 -ENDCHUNK - - -ENDCHUNK -#line 750 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_7= 0x2000010c - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 758 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003006D - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003006E - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003006F - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030070 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030071 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030072 - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x00030073 - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x03 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xF4 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xA9 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xC4 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xDD 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xF4 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x26 0x20 0x70 - 0x61 0x73 0x74 0x69 0x6E 0x67 0x97 0x64 - 0x75 0x70 0x6C 0x69 0x63 0x61 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 - 0x09 0x43 0x75 0x74 0x74 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x70 0x61 0x73 0x74 0x69 - 0x6E 0x67 0x97 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 0x09 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x52 0x6F 0x74 0x61 0x74 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x09 0x54 0x69 0x70 - 0x70 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x0D 0x0A 0x01 0x09 - 0x54 0x75 0x72 0x6E 0x69 0x6E 0x67 0x20 - 0x6C 0x65 0x66 0x74 0x20 0x6F 0x72 0x20 - 0x72 0x69 0x67 0x68 0x74 0x0D 0x0A 0x01 - 0x09 0x54 0x69 0x70 0x70 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x73 0x69 0x64 0x65 0x0D 0x0A 0x01 0x09 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x62 0x61 0x63 0x6B -ENDCHUNK - - -ENDCHUNK -#line 906 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_8= 0x2000010d - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 914 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030076 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030077 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030078 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030079 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003000F - FREE - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030075 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE5 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xE5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x96 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xA7 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xC1 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xE5 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x53 - 0x65 0x6C 0x65 0x63 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x77 0x68 0x69 0x63 0x68 0x20 - 0x69 0x73 0x20 0x62 0x65 0x68 0x69 0x6E - 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6F 0x72 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 - 0x0D 0x0A 0x01 0x09 0x53 0x65 0x6C 0x65 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x69 0x63 0x68 0x20 0x69 0x73 - 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x6F 0x72 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A - 0x53 0x69 0x7A 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x09 0x53 0x69 0x7A 0x69 0x6E 0x67 - 0x20 0x65 0x76 0x65 0x6E 0x6C 0x79 0x0D - 0x0A 0x01 0x09 0x53 0x71 0x75 0x61 0x73 - 0x68 0x69 0x6E 0x67 0x20 0x26 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x62 0x61 - 0x63 0x6B 0x0D 0x0A 0x55 0x6E 0x64 0x6F - 0x69 0x6E 0x67 0x20 0x26 0x20 0x52 0x65 - 0x64 0x6F 0x69 0x6E 0x67 0x0D 0x0A 0x01 - 0x09 0x55 0x6E 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x72 0x65 0x64 0x6F 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1059 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_D= 0x2000010e - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1067 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030066 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003006A - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030068 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003006B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030065 - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003006C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x21 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0x23 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x69 0x6D 0x61 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x97 0x61 0x73 - 0x73 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x63 0x68 0x6F 0x6F 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x73 - 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x77 0x68 0x65 0x6E - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x67 0x65 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 - 0x61 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 - 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x75 0x73 0x65 - 0x64 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 - 0x61 0x74 0x68 0x97 0x6D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 - 0x20 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x77 - 0x6F 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x6D 0x65 0x65 0x74 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x73 0x70 0x6F 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1220 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_11= 0x2000010f - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1228 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030021 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030022 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030023 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030024 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030020 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030025 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xEE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3A 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xEC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 - 0x63 0x74 0x73 0x97 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x20 0x6C 0x69 0x73 0x74 0x2C 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6F 0x77 0x6E 0x2C - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x0D - 0x0A 0x01 0x09 0x53 0x70 0x65 0x65 0x63 - 0x68 0x97 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x6C 0x69 0x73 0x74 0x2C 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x77 0x6E 0x2C 0x20 0x69 - 0x6D 0x70 0x6F 0x72 0x74 0x0D 0x0A 0x01 - 0x09 0x4D 0x75 0x73 0x69 0x63 0x97 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x20 0x6C 0x69 0x73 - 0x74 0x2C 0x20 0x69 0x6D 0x70 0x6F 0x72 - 0x74 0x0D 0x0A 0x41 0x74 0x74 0x61 0x63 - 0x68 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x6F 0x6E 0x63 0x65 0x0D 0x0A 0x01 0x09 - 0x4C 0x6F 0x6F 0x70 0x69 0x6E 0x67 0x97 - 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x6F - 0x75 0x73 0x6C 0x79 0x0D 0x0A 0x01 0x09 - 0x41 0x74 0x74 0x61 0x63 0x68 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x97 0x6D - 0x61 0x74 0x63 0x68 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x70 0x6F 0x73 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 1391 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_12= 0x20000110 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1399 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030029 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030027 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030026 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030027 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003002B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x28 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x62 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2A 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x62 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x41 0x74 0x74 0x61 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x63 0x6F 0x6E 0x74 - 0x69 0x6E 0x75 0x65 0x64 0x2E 0x2E 0x2E - 0x0D 0x0A 0x01 0x09 0x41 0x74 0x74 0x61 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x61 0x6E - 0x64 0x20 0x63 0x68 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x69 0x74 0x20 0x74 0x6F - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x79 0x20 0x70 0x6C - 0x61 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x45 0x64 0x69 0x74 0x69 0x6E 0x67 0x0D - 0x0A 0x01 0x09 0x41 0x64 0x6A 0x75 0x73 - 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x61 0x6C 0x6C 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x69 - 0x6E 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x97 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 0x74 - 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x27 0x73 0x20 0x61 0x6E - 0x64 0x20 0x4D 0x65 0x6C 0x61 0x6E 0x69 - 0x65 0x27 0x73 0x20 0x76 0x6F 0x69 0x63 - 0x65 0x73 0x0D 0x0A 0x01 0x09 0x41 0x64 - 0x6A 0x75 0x73 0x74 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x73 0x61 0x6D 0x65 0x20 0x74 0x69 - 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x61 0x6C 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x61 0x20 0x73 0x70 0x65 0x63 - 0x69 0x66 0x69 0x63 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1564 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_13= 0x20000111 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1572 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003000F - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003002A - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030005 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030028 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xCA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A - 0x01 0x20 0x09 0x53 0x74 0x6F 0x70 0x70 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x97 0x63 0x75 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x66 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x20 0x6F - 0x72 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x69 - 0x74 0x20 0x68 0x61 0x73 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x65 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x09 0x54 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x4D 0x63 0x5A 0x65 0x65 0x92 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x66 0x66 0x0D 0x0A 0x01 0x09 0x57 0x61 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 0x66 - 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 0x0D - 0x0A 0x55 0x6E 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x72 0x65 0x64 0x6F 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x55 0x6E - 0x64 0x6F 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x72 0x65 0x64 0x6F 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1702 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_15= 0x20000112 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1710 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003004B - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003004C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003004D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030040 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003004A - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030049 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x14 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0xEE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x0D 0x0A 0x01 0x09 0x43 0x72 0x65 0x61 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x97 - 0x74 0x79 0x70 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x73 0x74 0x6F 0x72 0x79 0x20 - 0x6F 0x72 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x0D 0x0A 0x45 0x64 0x69 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x54 - 0x79 0x70 0x69 0x6E 0x67 0x20 0x68 0x69 - 0x6E 0x74 0x73 0x97 0x77 0x68 0x61 0x74 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x6D 0x69 0x73 - 0x74 0x61 0x6B 0x65 0x0D 0x0A 0x01 0x09 - 0x43 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 - 0x26 0x20 0x70 0x61 0x73 0x74 0x69 0x6E - 0x67 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x09 0x43 0x6F 0x70 0x79 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x70 0x61 0x73 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x09 0x43 0x75 0x74 0x74 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x70 0x61 0x73 0x74 0x69 - 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x01 0x09 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 1856 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_16= 0x20000113 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1864 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030043 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030041 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030044 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003004E - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030042 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0xB7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A - 0x01 0x09 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x73 0x20 0x6C 0x6F 0x6F 0x6B - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x79 0x6C 0x65 0x97 0x62 - 0x6F 0x6C 0x64 0x2C 0x20 0x69 0x74 0x61 - 0x6C 0x69 0x63 0x0D 0x0A 0x01 0x09 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x73 0x69 0x7A 0x65 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1997 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_17= 0x20000114 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2005 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030048 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030045 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030046 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030047 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003000F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0xAF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A - 0x01 0x09 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x52 - 0x65 0x73 0x69 0x7A 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x20 0x6F - 0x72 0x20 0x73 0x74 0x61 0x79 0x20 0x73 - 0x74 0x69 0x6C 0x6C 0x0D 0x0A 0x55 0x6E - 0x64 0x6F 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x72 0x65 0x64 0x6F 0x69 0x6E 0x67 0x0D - 0x0A 0x01 0x09 0x55 0x6E 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x26 0x20 0x72 0x65 0x64 - 0x6F 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 2140 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_19= 0x20000115 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2148 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030010 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003000F - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030009 - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003000A - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003000E - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030007 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x30 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xEF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x64 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x01 0x09 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x01 0x09 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x55 0x6E 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x26 0x20 0x72 0x65 0x64 - 0x6F 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 - 0x55 0x6E 0x64 0x6F 0x69 0x6E 0x67 0x20 - 0x26 0x20 0x72 0x65 0x64 0x6F 0x69 0x6E - 0x67 0x0D 0x0A 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x0D 0x0A 0x01 0x09 0x41 0x64 0x64 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x74 0x72 - 0x61 0x6E 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x6E 0x69 0x6E - 0x67 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x41 0x64 0x64 0x69 0x6E - 0x67 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x73 0x20 0x62 0x65 - 0x74 0x77 0x65 0x65 0x6E 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x73 0x97 0x63 0x75 0x74 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x69 - 0x73 0x73 0x6F 0x6C 0x76 0x65 0x73 0x0D - 0x0A 0x01 0x09 0x41 0x74 0x74 0x61 0x63 - 0x68 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x64 0x20 0x6F 0x66 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2318 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_1A= 0x20000116 - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2326 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003006E - FREE - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003006D - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003000C - FREE - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x0003006F - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003000D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030008 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003000B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x37 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x86 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x2C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x86 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x65 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xA3 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xF2 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2E 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x65 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A 0x01 - 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 - 0x72 0x0D 0x0A 0x01 0x09 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x63 0x6C 0x75 0x64 0x69 0x6E 0x67 0x20 - 0x61 0x6C 0x6C 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x72 0x6F 0x70 0x73 0x0D 0x0A 0x01 0x09 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x0D 0x0A 0x01 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x2C 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x70 0x79 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 0x97 - 0x64 0x75 0x70 0x6C 0x69 0x63 0x61 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x01 0x09 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x97 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 - 0x09 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2518 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_1B= 0x20000117 - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2526 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003002B - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003002A - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030028 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030026 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030027 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xB9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x05 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x80 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x07 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5E 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x01 0x09 0x41 0x64 0x6A 0x75 - 0x73 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x66 0x6F 0x72 0x20 0x61 0x6C 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x97 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 - 0x74 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x27 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x4D 0x65 0x6C 0x61 0x6E - 0x69 0x65 0x27 0x73 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x73 0x0D 0x0A 0x01 0x09 0x41 - 0x64 0x6A 0x75 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x4C - 0x69 0x73 0x74 0x65 0x6E 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x61 0x6C 0x6C 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x61 - 0x74 0x74 0x61 0x63 0x68 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x73 0x70 0x65 - 0x63 0x69 0x66 0x69 0x63 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x01 0x09 0x53 0x74 0x6F 0x70 0x70 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x97 0x63 0x75 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x66 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x20 0x6F - 0x72 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x69 - 0x74 0x20 0x68 0x61 0x73 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x65 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x09 0x54 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x4D 0x63 0x5A 0x65 0x65 0x92 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x66 0x66 -ENDCHUNK - - -ENDCHUNK -#line 2689 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_1C= 0x20000118 - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2697 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x0003004E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030005 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003004B - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003004D - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030049 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003004A - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003004C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x14 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x40 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x14 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x14 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A 0x01 - 0x09 0x57 0x61 0x69 0x74 0x69 0x6E 0x67 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 - 0x73 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x65 0x64 0x0D 0x0A 0x57 0x6F 0x72 0x64 - 0x73 0x0D 0x0A 0x01 0x09 0x54 0x79 0x70 - 0x69 0x6E 0x67 0x20 0x68 0x69 0x6E 0x74 - 0x73 0x97 0x77 0x68 0x61 0x74 0x20 0x74 - 0x6F 0x20 0x64 0x6F 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x6D 0x69 0x73 0x74 0x61 - 0x6B 0x65 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x70 0x79 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x69 0x6E - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x43 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x26 - 0x20 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x65 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x43 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x26 - 0x20 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 - 0x43 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 - 0x26 0x20 0x70 0x61 0x73 0x74 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2856 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -#line 21 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -SET _help_48544F50_0= 0x2000012a - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x04 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x50 0x72 0x65 0x73 0x73 0x0D 0x0A - 0x4F 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x48 0x65 0x6C 0x70 0x20 0x4D 0x61 - 0x63 0x68 0x69 0x6E 0x65 0x09 0x09 0x09 - 0x09 0x09 0x09 0x46 0x31 0x09 0x0D 0x0A - 0x4F 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x61 0x70 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x43 0x74 0x72 - 0x6C 0x2B 0x4D 0x09 0x09 0x09 0x09 0x09 - 0x0D 0x0A 0x4F 0x70 0x65 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x43 - 0x74 0x72 0x6C 0x2B 0x4F 0x09 0x09 0x09 - 0x09 0x0D 0x0A 0x53 0x74 0x61 0x72 0x74 - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x43 0x74 0x72 0x6C - 0x2B 0x4E 0x09 0x09 0x09 0x0D 0x0A 0x53 - 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x43 0x74 - 0x72 0x6C 0x2B 0x53 0x09 0x09 0x09 0x0D - 0x0A 0x51 0x75 0x69 0x74 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x09 0x09 0x09 0x09 - 0x09 0x09 0x43 0x74 0x72 0x6C 0x2B 0x51 - 0x0D 0x0A 0x55 0x6E 0x64 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 0x6F - 0x75 0x20 0x64 0x69 0x64 0x20 0x09 0x09 - 0x09 0x09 0x43 0x74 0x72 0x6C 0x2B 0x5A - 0x0D 0x0A 0x52 0x65 0x64 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 0x6F - 0x75 0x20 0x75 0x6E 0x64 0x69 0x64 0x09 - 0x09 0x09 0x09 0x43 0x74 0x72 0x6C 0x2B - 0x59 0x0D 0x0A 0x44 0x69 0x73 0x70 0x6C - 0x61 0x79 0x20 0x74 0x68 0x65 0x20 0x54 - 0x61 0x73 0x6B 0x62 0x61 0x72 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x43 0x74 0x72 - 0x6C 0x2B 0x45 0x73 0x63 0x0D 0x0A 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 - 0x74 0x20 0x61 0x70 0x70 0x6C 0x69 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x09 0x09 0x09 - 0x09 0x41 0x6C 0x74 0x2B 0x54 0x61 0x62 -ENDCHUNK - - -ENDCHUNK -#line 166 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_2= 0x2000012b - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 174 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20055 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20056 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xCE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x57 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x97 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x47 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x16 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x01 0x00 0x82 - 0xF6 0xFF 0x00 0x00 0x8C 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x57 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x20 0x68 0x69 0x67 0x68 - 0x6C 0x69 0x67 0x68 0x74 0x65 0x64 0x20 - 0x69 0x74 0x65 0x6D 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x69 0x74 0x73 0x20 0x70 - 0x61 0x74 0x68 0x0D 0x0A 0x95 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x43 0x74 0x72 0x6C 0x2B 0x43 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x6F 0x70 0x79 - 0x20 0x61 0x20 0x68 0x69 0x67 0x68 0x6C - 0x69 0x67 0x68 0x74 0x65 0x64 0x20 0x69 - 0x74 0x65 0x6D 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x09 0x09 0x09 0x09 0x0D - 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x43 0x6F 0x70 0x79 0x2D 0x01 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x69 0x74 0x65 0x6D 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E 0x09 - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x20 0x68 0x69 0x67 0x68 0x6C - 0x69 0x67 0x68 0x74 0x65 0x64 0x20 0x69 - 0x74 0x65 0x6D 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x69 0x74 0x73 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x43 0x74 0x72 0x6C 0x2B 0x58 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x75 0x74 0x20 0x61 - 0x20 0x68 0x69 0x67 0x68 0x6C 0x69 0x67 - 0x68 0x74 0x65 0x64 0x20 0x69 0x74 0x65 - 0x6D 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x09 0x09 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x75 0x74 - 0x2D 0x01 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x53 0x68 0x69 0x66 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x69 0x74 0x65 0x6D - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x75 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 332 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_4= 0x2000012c - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 340 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x99 0x00 0x00 0x01 - 0x01 0xE7 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x47 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x9B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC1 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xF7 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x77 0x68 0x61 0x74 0x65 - 0x76 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 - 0x6D 0x6F 0x73 0x74 0x20 0x72 0x65 0x63 - 0x65 0x6E 0x74 0x6C 0x79 0x20 0x63 0x75 - 0x74 0x20 0x6F 0x72 0x20 0x63 0x6F 0x70 - 0x69 0x65 0x64 0x0D 0x0A 0x95 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x43 0x74 0x72 0x6C 0x2B 0x56 0x0D - 0x0A 0x54 0x6F 0x09 0x72 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2D 0x01 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 0x72 - 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F 0x09 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x66 0x6F 0x72 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x20 0x61 0x73 0x20 0x79 0x6F - 0x75 0x20 0x64 0x72 0x61 0x67 0x2E 0x0D - 0x0A 0x54 0x6F 0x09 0x72 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x6F 0x66 0x20 0x69 0x74 - 0x73 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x53 0x68 0x69 0x66 0x74 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 484 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_6= 0x2000012d - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 492 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x93 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x0E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x52 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5C 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBC 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x52 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xBC 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x52 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAD 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2D - 0x01 0x2C 0x20 0x74 0x75 0x72 0x6E 0x20 - 0x22 0x6F 0x6E 0x22 0x20 0x55 0x70 0x20 - 0x26 0x20 0x44 0x6F 0x77 0x6E 0x2D 0x01 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 - 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x09 0x72 0x65 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x73 0x75 - 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x01 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 - 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x09 0x72 0x65 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x70 0x61 0x74 0x68 0x97 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 - 0x70 0x61 0x74 0x68 0x20 0x72 0x65 0x6A - 0x6F 0x69 0x6E 0x73 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6C 0x64 0x20 0x70 0x61 0x74 - 0x68 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x73 0x74 - 0x20 0x70 0x6F 0x69 0x6E 0x74 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 0x4C - 0x61 0x73 0x74 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x2B - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x2E 0x0D 0x0A 0x54 0x6F 0x09 0x66 - 0x72 0x65 0x65 0x7A 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x61 0x20 - 0x70 0x61 0x74 0x68 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x53 0x68 0x69 0x66 0x74 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 663 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_8= 0x2000012e - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 671 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xBC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAC 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x71 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0xAE 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x71 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x73 0x75 - 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x01 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x55 0x70 0x20 - 0x6F 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A - 0x54 0x6F 0x09 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x73 0x74 0x61 - 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 0x4C - 0x61 0x73 0x74 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x20 0x20 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x66 0x6F - 0x72 0x74 0x68 0x20 0x62 0x65 0x74 0x77 - 0x65 0x65 0x6E 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x0D 0x0A - 0x95 0x09 0x50 0x72 0x65 0x73 0x73 0x20 - 0x46 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 827 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_A= 0x2000012f - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 835 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x67 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x84 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x03 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x83 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x86 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x06 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x86 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x06 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x03 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x83 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x6E 0x69 0x6E 0x67 - 0x20 0x6F 0x72 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x43 0x74 0x72 0x6C 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2D 0x01 - 0x20 0x6F 0x72 0x20 0x4E 0x65 0x78 0x74 - 0x2D 0x01 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 - 0x6C 0x65 0x20 0x28 0x74 0x68 0x65 0x72 - 0x65 0x20 0x61 0x72 0x65 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x73 0x20 0x66 0x6F 0x72 0x20 0x65 - 0x61 0x63 0x68 0x20 0x73 0x63 0x65 0x6E - 0x65 0x29 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x43 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 0x6E - 0x67 0x6C 0x65 0x73 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 0x74 - 0x72 0x61 0x6E 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x73 0x20 0x62 0x65 0x74 0x77 0x65 - 0x65 0x6E 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x73 0x20 0x6C 0x69 0x6B 0x65 0x20 0x63 - 0x75 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x69 0x73 0x73 0x6F 0x6C 0x76 0x65 - 0x73 0x0D 0x0A 0x20 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x4F 0x72 0x67 0x61 0x6E - 0x69 0x7A 0x65 0x72 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 990 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_10= 0x20000130 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 998 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0xE7 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xFE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x19 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD3 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD5 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x19 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1B 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD5 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x19 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xFE 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 - 0x64 0x65 0x72 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x4F 0x72 0x67 0x61 - 0x6E 0x69 0x7A 0x65 0x72 0x2D 0x01 0x0D - 0x0A 0x54 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x28 0x66 0x6F 0x72 0x20 0x65 0x78 - 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x74 0x68 0x65 0x20 0x73 - 0x61 0x6D 0x65 0x20 0x63 0x72 0x65 0x64 - 0x69 0x74 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x65 0x61 0x63 0x68 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x29 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6F - 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x2D - 0x01 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F - 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x6C 0x65 0x63 0x74 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x69 0x73 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x6F - 0x72 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x73 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x50 0x72 0x6F 0x70 0x20 - 0x4C 0x69 0x73 0x74 0x97 0x6C 0x6F 0x63 - 0x61 0x74 0x65 0x64 0x20 0x6F 0x6E 0x20 - 0x65 0x69 0x74 0x68 0x65 0x72 0x20 0x73 - 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x6B 0x73 - 0x70 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1152 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_12= 0x20000131 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1160 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9F 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x25 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x66 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x2B 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x01 0x00 0x82 - 0xF6 0xFF 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x9B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9E 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x61 0x6E 0x69 0x6D - 0x61 0x74 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x0D 0x0A 0x31 0x09 0x54 0x6F - 0x20 0x63 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E - 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x54 0x6F - 0x20 0x61 0x6E 0x69 0x6D 0x61 0x74 0x65 - 0x20 0x61 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2C 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2D 0x01 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x2E 0x20 - 0x20 0x44 0x65 0x70 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x75 0x70 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2C 0x20 0x65 0x69 0x74 - 0x68 0x65 0x72 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F 0x20 - 0x67 0x6F 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x73 0x65 0x64 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x73 - 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2D - 0x01 0x2E 0x20 0x20 0x4D 0x6F 0x76 0x65 - 0x20 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x2E 0x20 0x20 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x73 0x20 0x79 0x6F - 0x75 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1327 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_14= 0x20000132 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1335 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20018 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x28 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x02 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x39 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x7E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB2 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xE9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x81 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3B 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xA3 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD9 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3B 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x81 0x01 0x00 0x82 - 0xF6 0xFF 0x00 0x00 0x68 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x02 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB2 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x27 0x73 0x20 0x63 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 0x6F - 0x72 0x20 0x65 0x76 0x65 0x6E 0x20 0x61 - 0x64 0x64 0x20 0x61 0x63 0x63 0x65 0x73 - 0x73 0x6F 0x72 0x69 0x65 0x73 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x2D 0x01 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x6E - 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 0x66 - 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 0x75 - 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 - 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x2D 0x01 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x70 0x61 0x74 0x68 - 0x3F 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x2D 0x01 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1507 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_18= 0x20000133 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 1515 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20053 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xCC 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xCC 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x66 0x6F 0x6C - 0x6C 0x6F 0x77 0x20 0x65 0x61 0x63 0x68 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2D 0x01 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x43 - 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 0x68 - 0x2D 0x01 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x70 0x79 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x20 0x6F 0x66 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x74 0x68 0x20 0x6F 0x6E 0x74 - 0x6F 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6F 0x70 0x79 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x2C 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6F 0x70 0x79 0x20 0x6F 0x6E 0x6C - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x2D 0x2D 0x6E 0x6F 0x74 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x74 0x6F 0x20 0x77 - 0x61 0x6C 0x6B 0x20 0x73 0x69 0x64 0x65 - 0x2D 0x62 0x79 0x2D 0x73 0x69 0x64 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x67 0x69 - 0x76 0x65 0x20 0x62 0x6F 0x74 0x68 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x57 0x61 0x6C 0x6B - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x4E 0x6F 0x74 0x65 0x3A 0x20 - 0x20 0x42 0x69 0x67 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x74 0x65 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x77 0x61 0x6C 0x6B - 0x20 0x66 0x61 0x73 0x74 0x65 0x72 0x20 - 0x74 0x68 0x61 0x6E 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x2E 0x20 0x20 0x54 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x66 0x66 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 - 0x6E 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x67 0x69 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x69 0x67 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x57 - 0x61 0x6C 0x6B 0x20 0x53 0x6C 0x6F 0x77 - 0x6C 0x79 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x69 0x74 0x74 0x6C 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x57 0x61 0x6C 0x6B 0x20 - 0x46 0x61 0x73 0x74 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1672 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_1A= 0x20000134 - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 1680 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x88 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0x13 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x77 0x68 0x65 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 - 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A 0x32 - 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x2D 0x01 0x2E 0x20 0x20 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x65 0x65 0x7A 0x65 0x20 0x69 - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x61 0x72 0x72 0x69 0x76 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x69 0x6F 0x6E 0x20 0x6C - 0x61 0x74 0x65 0x72 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 - 0x69 0x6E 0x20 0x74 0x69 0x6D 0x65 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x6F 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x20 0x65 0x61 0x72 0x6C 0x69 0x65 - 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x42 0x61 0x63 - 0x6B 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x77 0x61 - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x69 0x6D 0x65 0x2E 0x20 0x20 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x61 0x6E 0x79 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x6F 0x20 - 0x22 0x75 0x6E 0x66 0x72 0x65 0x65 0x7A - 0x65 0x22 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1828 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_1C= 0x20000135 - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 1836 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20020 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB6 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x40 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x65 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x14 0x00 0x00 0x00 0xB6 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x95 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x53 0x71 0x75 0x61 - 0x73 0x68 0x20 0x26 0x20 0x53 0x74 0x72 - 0x65 0x74 0x63 0x68 0x2D 0x01 0x0D 0x0A - 0x95 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x77 0x61 0x74 0x63 0x68 0x20 0x61 - 0x73 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x73 0x20 0x6F 0x72 0x20 - 0x73 0x74 0x72 0x65 0x74 0x63 0x68 0x65 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x76 0x65 - 0x72 0x79 0x20 0x65 0x79 0x65 0x73 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 0x20 - 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2D 0x01 0x2E 0x20 0x20 0x43 0x68 - 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x47 0x72 0x6F 0x77 0x20 0x6F 0x72 - 0x20 0x53 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1964 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_1E= 0x20000136 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 1972 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20295 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x6A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x84 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x13 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0x4B 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x84 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x13 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x0D 0x0A 0x31 0x09 0x43 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x74 0x79 0x70 0x65 0x20 0x6F - 0x66 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x3A 0x0D 0x0A 0x01 0x2D 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 - 0x65 0x63 0x74 0x73 0x20 0x6F 0x72 0x20 - 0x09 0x01 0x2D 0x53 0x70 0x65 0x65 0x63 - 0x68 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2D 0x01 0x0D 0x0A 0x54 0x6F - 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x73 0x74 0x20 0x71 - 0x75 0x61 0x6C 0x69 0x74 0x79 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x63 0x72 0x6F 0x70 - 0x68 0x6F 0x6E 0x65 0x20 0x66 0x6F 0x75 - 0x6E 0x64 0x20 0x69 0x6E 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 - 0x63 0x74 0x73 0x20 0x72 0x61 0x74 0x68 - 0x65 0x72 0x20 0x74 0x68 0x61 0x6E 0x20 - 0x53 0x70 0x65 0x65 0x63 0x68 0x20 0x28 - 0x74 0x68 0x69 0x73 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x74 0x61 0x6B 0x65 0x20 0x75 - 0x70 0x20 0x6D 0x6F 0x72 0x65 0x20 0x64 - 0x69 0x73 0x6B 0x20 0x73 0x70 0x61 0x63 - 0x65 0x29 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x66 0x61 0x76 0x6F 0x72 0x69 0x74 - 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x45 0x66 0x66 0x65 0x63 0x74 0x73 - 0x20 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 - 0x6F 0x6E 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x62 0x6F 0x6F 0x6D 0x20 0x62 0x6F - 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2117 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_20= 0x20000137 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2125 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xD1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xFC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD1 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFE 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x60 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x8E 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xD1 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x60 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0xD1 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x45 0x76 0x65 0x72 0x79 0x74 - 0x69 0x6D 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 0x6F - 0x72 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x69 0x74 0x20 0x69 0x73 0x20 - 0x61 0x64 0x64 0x65 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x20 0x6F 0x72 0x20 0x53 0x70 - 0x65 0x65 0x63 0x68 0x20 0x63 0x68 0x6F - 0x69 0x63 0x65 0x73 0x2E 0x20 0x20 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x68 0x61 0x76 - 0x65 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 - 0x65 0x64 0x20 0x6F 0x72 0x20 0x69 0x6D - 0x70 0x6F 0x72 0x74 0x65 0x64 0x0D 0x0A - 0x95 0x09 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x70 0x72 0x65 0x73 - 0x73 0x20 0x74 0x68 0x65 0x20 0x44 0x65 - 0x6C 0x65 0x74 0x65 0x20 0x6B 0x65 0x79 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x74 0x77 0x6F 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x70 0x6C - 0x61 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x95 0x09 0x41 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x43 0x74 0x72 0x6C 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x63 0x6F 0x6E 0x64 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x69 0x73 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x65 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 - 0x6E 0x64 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2271 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_22= 0x20000138 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2279 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xEF 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x77 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3A 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xC7 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEF 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3A 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x69 0x6E 0x64 0x69 0x76 0x69 - 0x64 0x75 0x61 0x6C 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x73 - 0x74 0x61 0x72 0x74 0x73 0x2E 0x0D 0x0A - 0x32 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4C 0x69 0x73 0x74 0x65 0x6E 0x65 0x72 - 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x64 0x6A 0x75 0x73 0x74 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x75 0x74 0x2C - 0x20 0x63 0x6F 0x70 0x79 0x2C 0x20 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x77 0x68 0x6F 0x6C 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x95 0x09 0x4D 0x61 0x6B 0x65 0x20 - 0x73 0x75 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x20 0x65 0x64 0x67 0x65 0x73 - 0x2C 0x20 0x4E 0x4F 0x54 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x73 0x69 0x64 0x65 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x6E 0x73 0x69 0x64 0x65 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2419 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -#line 22 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -SET _help_48544F50_0= 0x20000105 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x20000105 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD6 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x82 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x05 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x05 - 0x02 0x00 0x00 0x00 0x7B 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x05 - 0x01 0x00 0x00 0x00 0xF5 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x05 - 0x02 0x00 0x00 0x00 0x82 0x01 0x00 0x05 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x82 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x6F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xEA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x78 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xEA 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x78 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x42 0x61 0x73 0x69 - 0x63 0x73 0x2E 0x2E 0x2E 0x0D 0x0A 0x46 - 0x69 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x61 0x72 0x74 0x20 0x61 0x20 0x6E - 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x6F 0x70 0x65 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x73 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x77 0x6F 0x72 0x6B 0x2C 0x20 - 0x67 0x65 0x74 0x20 0x68 0x65 0x6C 0x70 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x71 0x75 0x69 0x74 0x2E 0x0D - 0x0A 0x01 0x09 0x20 0x48 0x6F 0x77 0x20 - 0x54 0x6F 0x2E 0x2E 0x2E 0x0D 0x0A 0x43 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x63 0x61 0x74 0x65 0x67 0x6F 0x72 0x79 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x74 0x61 0x73 0x6B 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x77 0x69 0x74 - 0x68 0x2E 0x20 0x20 0x49 0x27 0x6C 0x6C - 0x20 0x67 0x75 0x69 0x64 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x65 0x61 0x63 0x68 0x20 - 0x74 0x61 0x73 0x6B 0x20 0x73 0x74 0x65 - 0x70 0x2D 0x62 0x79 0x2D 0x73 0x74 0x65 - 0x70 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x2E 0x2E 0x0D - 0x0A 0x53 0x68 0x6F 0x77 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x75 0x73 0x65 0x20 0x74 0x6F 0x20 - 0x63 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x54 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x6D 0x6F 0x72 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x20 0x20 0x54 0x69 0x70 - 0x73 0x2E 0x2E 0x2E 0x0D 0x0A 0x46 0x65 - 0x61 0x74 0x75 0x72 0x69 0x6E 0x67 0x20 - 0x6D 0x79 0x20 0x70 0x65 0x72 0x73 0x6F - 0x6E 0x61 0x6C 0x20 0x66 0x61 0x76 0x6F - 0x72 0x69 0x74 0x65 0x73 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x65 0x65 0x20 - 0x61 0x20 0x6C 0x69 0x73 0x74 0x20 0x6F - 0x66 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x68 0x6F 0x72 0x74 0x63 - 0x75 0x74 0x20 0x6B 0x65 0x79 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 225 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - -SET _help_48544F50_2= 0x20000106 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 233 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030522 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030523 - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030524 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030525 - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x00030526 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030520 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030521 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x3C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x93 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8D 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x12 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x47 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x5B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x93 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x9F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xAF 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x50 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x20 0x62 0x61 0x73 0x69 - 0x63 0x73 0x0D 0x0A 0x01 0x09 0x53 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x01 0x09 0x4F 0x70 - 0x65 0x6E 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x65 0x78 0x69 0x73 0x74 0x69 0x6E - 0x67 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x53 0x61 0x76 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x0D 0x0A 0x01 0x09 0x43 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x61 0x76 0x69 0x6E - 0x67 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6E 0x61 0x6D 0x65 0x0D 0x0A 0x48 - 0x65 0x6C 0x70 0x0D 0x0A 0x01 0x09 0x54 - 0x6F 0x6F 0x6C 0x74 0x69 0x70 0x73 0x0D - 0x0A 0x01 0x09 0x47 0x65 0x74 0x74 0x69 - 0x6E 0x67 0x20 0x68 0x65 0x6C 0x70 0x0D - 0x0A 0x01 0x09 0x54 0x75 0x72 0x6E 0x69 - 0x6E 0x67 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x27 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x20 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F - 0x66 0x66 -ENDCHUNK - - -ENDCHUNK -#line 407 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - -SET _help_48544F50_3= 0x20000107 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 415 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030527 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030528 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x47 0x65 0x74 0x74 0x69 0x6E - 0x67 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x65 - 0x61 0x74 0x65 0x72 0x0D 0x0A 0x01 0x09 - 0x55 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x70 0x0D 0x0A 0x47 - 0x65 0x74 0x74 0x69 0x6E 0x67 0x20 0x61 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x74 0x68 0x65 0x61 0x74 0x65 - 0x72 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 - 0x74 0x74 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 528 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -#line 23 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -SET _help_48544F50_0= 0x20000119 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000014 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017040 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017041 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017042 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20285 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20298 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20299 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017079 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001707a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x4B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x01 0x00 0x01 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD6 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0x33 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x72 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x35 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xC2 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xFC 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x35 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 - 0x65 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x63 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x64 - 0x69 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 - 0x20 0x63 0x61 0x74 0x65 0x67 0x6F 0x72 - 0x69 0x65 0x73 0x09 0x0D 0x0A 0x01 0x09 - 0x09 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x41 0x6E 0x67 0x6C 0x65 0x73 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x76 0x69 0x65 0x77 0x73 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x01 0x09 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 0x76 - 0x65 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x01 0x09 - 0x09 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x45 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x41 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x01 - 0x09 0x09 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6F - 0x72 0x64 0x65 0x72 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x73 0x2C 0x20 0x61 0x64 0x64 - 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x73 -ENDCHUNK - - -ENDCHUNK -#line 244 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_4= 0x2000011a - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 252 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000011 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027D - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017045 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017047 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017054 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017048 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00017056 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x4A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x01 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x25 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x76 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x95 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAC 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB3 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x6A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x01 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xB8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x6C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x8D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xD7 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x1F 0x01 0x00 0xC0 - 0x0D 0x00 0x00 0x00 0x6C 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x72 0x61 - 0x63 0x74 0x65 0x72 0x73 0x0D 0x0A 0x01 - 0x09 0x09 0x50 0x72 0x6F 0x70 0x73 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x66 0x75 0x72 0x6E 0x69 0x74 0x75 - 0x72 0x65 0x2C 0x20 0x63 0x61 0x72 0x73 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 0x6F - 0x20 0x6F 0x6E 0x09 0x09 0x09 0x09 0x0D - 0x0A 0x01 0x09 0x09 0x33 0x44 0x20 0x57 - 0x6F 0x72 0x64 0x73 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x70 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6D 0x6F 0x76 0x65 0x0D - 0x0A 0x01 0x09 0x09 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 0x09 - 0x09 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F - 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 474 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_5= 0x2000011b - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 482 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001704e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017049 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017057 - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001704f - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20018 - FREE - FREE - ITEM LONG 0xC0000002 - VAR LONG 'MBMP' 0x2001D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x35 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x82 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x90 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA8 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xA8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0xAA 0x00 0x00 0xC0 - 0x0B 0x00 0x00 0x00 0x06 0x01 0x00 0xC0 - 0x0E 0x00 0x00 0x00 0x6D 0x01 0x00 0xC0 - 0x0E 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x52 0x65 0x73 - 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x20 0x20 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 0x73 - 0x65 0x64 0x0D 0x0A 0x01 0x09 0x09 0x43 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x72 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x0D 0x0A - 0x01 0x09 0x09 0x52 0x6F 0x74 0x61 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x20 0x20 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x66 0x61 0x63 0x65 0x73 0x0D 0x0A 0x01 - 0x09 0x09 0x54 0x75 0x72 0x6E 0x20 0x4C - 0x65 0x66 0x74 0x20 0x6F 0x72 0x20 0x52 - 0x69 0x67 0x68 0x74 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x74 0x75 0x72 0x6E - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x6F 0x72 0x20 0x72 0x69 0x67 - 0x68 0x74 -ENDCHUNK - - -ENDCHUNK -#line 679 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_6= 0x2000011c - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 687 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0x2000010 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017050 - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20019 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001C - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001E - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017051 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017052 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001705a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x40 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAA 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x84 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xCF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x40 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x40 - 0x0D 0x00 0x00 0x00 0xAA 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x84 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xD1 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x42 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x54 0x69 0x70 - 0x20 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x42 0x61 0x63 0x6B - 0x2E 0x2E 0x2E 0x2E 0x2E 0x74 0x69 0x70 - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x0D 0x0A 0x01 0x09 - 0x09 0x54 0x69 0x70 0x20 0x74 0x6F 0x20 - 0x4F 0x6E 0x65 0x20 0x53 0x69 0x64 0x65 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x74 0x69 - 0x70 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x69 0x64 - 0x65 0x20 0x74 0x6F 0x20 0x73 0x69 0x64 - 0x65 0x0D 0x0A 0x01 0x09 0x09 0x43 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x42 0x61 0x63 - 0x6B 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x69 0x74 0x20 0x77 0x61 0x73 0x20 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x20 0x20 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x6F 0x74 0x61 0x74 0x65 0x64 0x20 - 0x69 0x74 0x0D 0x0A 0x01 0x09 0x09 0x55 - 0x70 0x20 0x26 0x20 0x44 0x6F 0x77 0x6E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E - 0x22 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x77 0x6E -ENDCHUNK - - -ENDCHUNK -#line 895 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_7= 0x2000011d - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 903 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x2000011 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017059 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001704a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001704b - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001704c - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0xC0000002 - VAR LONG 'MBMP' 0x20021 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20020 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x46 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x04 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x73 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7B 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x86 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBE 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC6 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC7 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD9 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x01 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6B 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x86 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xFF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x66 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xD9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x68 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xB8 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x68 0x01 0x00 0xC0 - 0x09 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x46 0x61 0x6C - 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E 0x64 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x77 0x68 - 0x65 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x69 0x73 0x20 0x22 0x6F 0x6E 0x22 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x20 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x73 0x75 0x72 0x66 0x61 0x63 0x65 - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x72 0x65 0x73 0x69 0x7A 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x01 0x09 0x09 0x53 0x69 - 0x7A 0x65 0x20 0x45 0x76 0x65 0x6E 0x6C - 0x79 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x65 0x76 0x65 0x6E 0x6C 0x79 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x20 0x6F - 0x72 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x71 0x75 - 0x61 0x73 0x68 0x20 0x26 0x20 0x53 0x74 - 0x72 0x65 0x74 0x63 0x68 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x73 - 0x68 0x6F 0x72 0x74 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x20 0x20 0x20 - 0x77 0x69 0x64 0x65 0x72 0x20 0x6F 0x72 - 0x20 0x74 0x61 0x6C 0x6C 0x65 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x69 0x6E - 0x6E 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1118 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_8= 0x2000011e - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1126 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0x200000B - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017053 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20271 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001F - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001705b - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20016 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001704d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x31 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC7 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x88 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA5 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAF 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF3 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCE 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xAF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xCE 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x3F 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x42 0x61 0x63 0x6B - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x69 0x74 0x20 0x77 - 0x61 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x64 0x20 0x69 0x74 - 0x73 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x01 0x09 0x09 0x53 0x79 0x6E 0x63 0x68 - 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x70 0x61 0x74 0x68 0x20 - 0x74 0x69 0x6D 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F 0x0D - 0x0A 0x01 0x09 0x09 0x54 0x61 0x6C 0x65 - 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x67 0x69 0x76 - 0x65 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x6F 0x6F 0x70 - 0x20 0x6F 0x6E 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x79 0x6F 0x75 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1313 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_B= 0x2000011f - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1321 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001705f - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017060 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017061 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20026 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017062 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00017063 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x31 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xDE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDE 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x1B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xA9 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xDE 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x1B 0x01 0x00 0xC0 - 0x0B 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x61 0x64 0x64 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x73 0x09 0x0D 0x0A 0x01 - 0x09 0x09 0x53 0x70 0x65 0x65 0x63 0x68 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x61 0x6C - 0x6B 0x0D 0x0A 0x01 0x09 0x09 0x4D 0x75 - 0x73 0x69 0x63 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x61 0x64 0x64 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D 0x0A - 0x01 0x09 0x09 0x50 0x6C 0x61 0x79 0x20 - 0x4F 0x6E 0x63 0x65 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x6F 0x6E 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x09 - 0x4C 0x6F 0x6F 0x70 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 - 0x6C 0x79 -ENDCHUNK - - -ENDCHUNK -#line 1506 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_C= 0x20000120 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1514 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017073 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017065 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017064 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x99 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x41 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xC6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x88 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xC6 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x4C 0x69 0x73 - 0x74 0x65 0x6E 0x65 0x72 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x6C 0x69 0x73 0x74 - 0x65 0x6E 0x20 0x74 0x6F 0x2C 0x20 0x61 - 0x64 0x6A 0x75 0x73 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x01 0x09 0x09 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 - 0x68 0x65 0x72 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 0x74 0x63 - 0x68 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x01 0x09 0x09 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x09 0x09 0x09 0x74 0x6F - 0x20 0x45 0x6E 0x64 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x70 - 0x61 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1682 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_E= 0x20000121 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1690 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001706a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017069 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20030 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20046 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017068 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017067 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xCB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x0C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x50 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xC8 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x0E 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x73 0x97 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x09 0x09 0x57 0x6F 0x72 0x64 - 0x20 0x42 0x6F 0x78 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x61 0x64 0x64 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x63 - 0x72 0x65 0x64 0x69 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 0x09 - 0x09 0x49 0x6E 0x73 0x65 0x72 0x74 0x69 - 0x6F 0x6E 0x20 0x50 0x6F 0x69 0x6E 0x74 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x6F 0x76 - 0x65 0x2C 0x20 0x72 0x65 0x73 0x69 0x7A - 0x65 0x2C 0x20 0x6F 0x72 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x0D 0x0A 0x01 0x09 0x09 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x77 0x61 0x79 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x0D 0x0A - 0x01 0x09 0x09 0x53 0x74 0x79 0x6C 0x65 - 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x20 0x62 0x6F 0x6C 0x64 - 0x20 0x6F 0x72 0x20 0x69 0x74 0x61 0x6C - 0x69 0x63 -ENDCHUNK - - -ENDCHUNK -#line 1870 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_F= 0x20000122 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1878 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x200000C - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001706c - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20032 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001706d - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001706e - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001706b - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2016D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x42 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x99 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB1 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x5B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xB1 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x04 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x73 0x97 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x09 0x09 0x4C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x53 0x69 0x7A 0x65 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x0D 0x0A 0x01 0x09 0x09 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x0D 0x0A 0x01 0x09 0x09 0x42 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x43 0x6F 0x6C 0x6F 0x72 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 - 0x09 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F - 0x6E 0x2D 0x09 0x09 0x09 0x09 0x0D 0x0A - 0x09 0x09 0x09 0x53 0x63 0x72 0x6F 0x6C - 0x6C 0x69 0x6E 0x67 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x20 - 0x6F 0x72 0x20 0x73 0x74 0x61 0x79 0x20 - 0x73 0x74 0x69 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 2075 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_10= 0x20000123 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 2083 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A0 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001706f - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029F - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017070 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xAF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x73 0x97 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x09 0x09 0x53 0x63 0x72 0x6F - 0x6C 0x6C 0x69 0x6E 0x67 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x72 - 0x6F 0x6C 0x6C 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x20 0x20 0x20 0x20 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x09 0x4E 0x6F 0x6E 0x2D - 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 0x6E - 0x67 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x6D 0x61 0x6B 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x74 0x61 0x79 0x20 0x73 - 0x74 0x69 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 2221 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_12= 0x20000124 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 2229 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017071 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017043 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017075 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x35 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xA2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xA2 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xF4 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x0D 0x0A 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x09 0x09 0x0D 0x0A 0x01 0x0D 0x0A 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x0D 0x0A 0x01 0x09 - 0x50 0x6C 0x61 0x79 0x2F 0x53 0x74 0x6F - 0x70 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x74 0x6F 0x70 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2386 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_13= 0x20000125 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 2394 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x200000A - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017081 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017076 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017077 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017076 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20286 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20056 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017078 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x38 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x02 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x29 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x68 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xEE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x36 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x34 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x36 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x36 0x01 0x00 0x82 - 0x08 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x0A 0x00 0x00 0x00 0x82 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xEE 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x36 0x01 0x00 0xC0 - 0x0B 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x56 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F - 0x6C 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x61 0x64 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x61 0x6C 0x6C 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x0D 0x0A 0x01 0x09 0x09 0x55 - 0x6E 0x64 0x6F 0x2F 0x52 0x65 0x64 0x6F - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x75 0x6E 0x64 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x69 0x64 0x2C 0x20 0x6F 0x72 - 0x20 0x72 0x65 0x64 0x6F 0x20 0x77 0x68 - 0x61 0x74 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x20 0x20 0x20 - 0x20 0x09 0x20 0x20 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x01 0x09 0x09 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x67 - 0x65 0x74 0x20 0x72 0x69 0x64 0x20 0x6F - 0x66 0x2C 0x20 0x63 0x6F 0x70 0x79 0x2C - 0x20 0x70 0x61 0x73 0x74 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x0D 0x0A - 0x01 0x09 0x09 0x43 0x75 0x74 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x75 - 0x74 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x65 0x6C 0x73 - 0x65 0x77 0x68 0x65 0x72 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2590 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_14= 0x20000126 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 2598 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x200000E - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001707e - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029A - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20054 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20053 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20055 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017080 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001707f - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001707b -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x44 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x69 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x87 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x96 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9D 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBD 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC7 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD1 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x72 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x8F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x05 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x40 - 0x0D 0x00 0x00 0x00 0x6F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x40 - 0x0E 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x71 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x0B 0x00 0x00 0x00 0x91 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x07 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x71 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x43 0x6F 0x70 0x79 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x63 0x6F 0x70 0x79 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x69 0x74 0x20 - 0x65 0x6C 0x73 0x65 0x77 0x68 0x65 0x72 - 0x65 0x0D 0x0A 0x01 0x09 0x09 0x43 0x6F - 0x70 0x79 0x20 0x50 0x61 0x74 0x68 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x20 0x70 0x61 0x74 0x68 0x20 0x61 0x6E - 0x64 0x20 0x70 0x61 0x73 0x74 0x65 0x20 - 0x69 0x74 0x20 0x6F 0x6E 0x74 0x6F 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x20 0x20 0x20 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D - 0x0A 0x01 0x09 0x09 0x50 0x61 0x73 0x74 - 0x65 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x70 0x61 0x73 0x74 - 0x65 0x20 0x77 0x68 0x61 0x74 0x65 0x76 - 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x72 0x65 0x63 0x65 - 0x6E 0x74 0x6C 0x79 0x20 0x63 0x75 0x74 - 0x20 0x6F 0x72 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x20 - 0x20 0x20 0x20 0x63 0x6F 0x70 0x69 0x65 - 0x64 0x0D 0x0A 0x01 0x09 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x45 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x63 0x6C 0x75 0x64 0x69 0x6E 0x67 0x20 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x20 0x20 0x20 0x61 - 0x6C 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 - 0x6F 0x70 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2816 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_15= 0x20000127 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2824 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x200000A - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001707d - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017082 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029B - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001707c - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170be -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x37 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x36 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x99 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA6 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCD 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0xA2 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x19 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x5F 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x33 0x44 0x20 0x4F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x20 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x01 0x09 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x20 0x20 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x01 0x09 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x20 0x42 0x6F 0x78 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x01 0x09 0x09 0x50 0x6F 0x72 0x74 - 0x66 0x6F 0x6C 0x69 0x6F 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x73 0x74 0x61 0x72 0x74 0x20 - 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x6F 0x70 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x6F 0x6C 0x64 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x77 0x6F 0x72 0x6B -ENDCHUNK - - -ENDCHUNK -#line 3026 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_16= 0x20000128 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 3034 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001705e - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017066 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017044 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20296 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20297 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017046 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20049 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xDC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x0A 0x00 0x00 0x00 0x72 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xAB 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xDC 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x73 0x74 0x61 0x72 0x74 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x01 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x6F 0x70 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x65 0x78 0x69 - 0x73 0x74 0x69 0x6E 0x67 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x01 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x77 0x6F 0x72 0x6B 0x0D 0x0A 0x01 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x73 - 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x77 0x6F 0x72 0x6B 0x20 0x75 0x6E - 0x64 0x65 0x72 0x20 0x61 0x20 0x20 0x6E - 0x65 0x77 0x20 0x6E 0x61 0x6D 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3183 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_17= 0x20000129 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 3191 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017088 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017083 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20035 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003D - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20034 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017087 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xEA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x9C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xEA 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x09 0x48 0x65 0x6C 0x70 - 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x61 0x6E 0x73 0x77 0x65 0x72 0x73 - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2D 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x71 0x75 0x65 0x73 0x74 - 0x69 0x6F 0x6E 0x73 0x0D 0x0A 0x01 0x09 - 0x09 0x09 0x4D 0x61 0x70 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x71 0x75 0x69 0x63 - 0x6B 0x6C 0x79 0x20 0x7A 0x69 0x70 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x6F 0x6D 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x68 0x6F 0x69 - 0x63 0x65 0x0D 0x0A 0x01 0x09 0x09 0x45 - 0x78 0x69 0x74 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x71 0x75 0x69 0x74 0x20 0x77 - 0x6F 0x72 0x6B 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 3329 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -#line 24 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -SET _help_48544F50_A= 0x000121aa - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00003027 0x00003027 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x48 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x20 0x7E 0x31 0x20 0x6F 0x66 - 0x20 0x7E 0x32 -ENDCHUNK - - -ENDCHUNK -#line 94 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_C= 0x000121a0 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 102 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x61 0x62 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x43 0x6F 0x6E 0x74 0x65 - 0x6E 0x74 0x73 -ENDCHUNK - - -ENDCHUNK -#line 180 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_D= 0x000121a1 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 188 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x73 0x69 0x63 0x73 -ENDCHUNK - - -ENDCHUNK -#line 264 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_E= 0x000121a2 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 272 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x53 0x63 0x65 0x6E 0x65 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 350 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_F= 0x000121a3 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 358 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 438 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_10= 0x000121a4 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 446 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 524 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_11= 0x000121a5 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 532 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x53 0x6F 0x75 0x6E 0x64 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 610 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_12= 0x000121a6 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 618 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x57 0x6F 0x72 0x64 0x73 -ENDCHUNK - - -ENDCHUNK -#line 695 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_13= 0x000121a7 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 703 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x45 0x64 0x69 0x74 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 781 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_14= 0x000121a8 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 789 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x6F 0x6C 0x73 -ENDCHUNK - - -ENDCHUNK -#line 866 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_15= 0x000121a9 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 874 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x73 -ENDCHUNK - - -ENDCHUNK -#line 950 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_16= 0x0001703b - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 958 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001602e 0x0 0x00003015 0x000305F0 0x0 0x0 0x57415645 0x00076057 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x6F 0x73 0x65 0x0D - 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x48 0x65 0x6C 0x70 - 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1026 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_17= 0x0001703c - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1034 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001602e 0x0 0x00003013 0x000305F0 0x0 0x0 0x57415645 0x00076058 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x20 0x53 - 0x63 0x72 0x65 0x65 0x6E 0x0D 0x0A 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1102 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_18= 0x0001703d - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 1110 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001602e 0x0 0x00003014 0x000305F0 0x0 0x0 0x57415645 0x00076059 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x53 0x63 0x72 0x65 0x65 - 0x6E 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1193 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_19= 0x0001703e - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 1201 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001602e 0x0 0x00003011 0x000305F0 0x0 0x0 0x57415645 0x0007605A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F 0x6C - 0x0D 0x0A 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x65 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1287 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_1A= 0x0001703f - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 1295 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001602e 0x0 0x00003012 0x000305F0 0x0 0x0 0x57415645 0x0007605B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x62 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x56 0x6F 0x69 0x63 0x65 0x0D - 0x0A 0x54 0x75 0x72 0x6E 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x27 0x73 0x20 0x76 0x6F - 0x69 0x63 0x65 0x20 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6F 0x66 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1381 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_1B= 0x1B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 1389 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0xFFFFFFFF 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x88 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x89 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x79 0x3F 0x20 0x20 - 0x45 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x4F 0x4B 0x3F 0x0D 0x0A - 0x54 0x6F 0x20 0x67 0x65 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x61 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x48 0x65 - 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 - 0x6E 0x65 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x20 0x74 0x6F 0x70 0x69 0x63 0x2E - 0x20 0x20 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x68 - 0x65 0x6C 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1483 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_1C= 0x1C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 1491 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0xFFFFFFFF 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x69 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x65 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 - 0x69 0x6E 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1562 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -#line 25 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -SET _help_48544F50_0= 0x200056E0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075480 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x74 0x61 - 0x72 0x74 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 99 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_1= 0x200056E1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 107 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016018 0x00030601 0x20049 0x000305F0 0x0 0x0 0x57415645 0x00075481 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x41 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x65 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 170 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_2= 0x200056E2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 178 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075482 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6F 0x70 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x65 0x78 0x69 - 0x73 0x74 0x69 0x6E 0x67 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 246 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_3= 0x200056E3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 254 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016018 0x00030601 0x20048 0x000305F0 0x0 0x0 0x57415645 0x00075483 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x70 0x65 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 317 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_4= 0x200056E4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 325 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075484 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 392 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_5= 0x200056E5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 400 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016018 0x00030601 0x2004A 0x000305F0 0x0 0x0 0x57415645 0x00075485 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x61 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 463 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_6= 0x200056E6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 471 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075486 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 - 0x76 0x65 0x20 0x69 0x74 0x20 0x75 0x6E - 0x64 0x65 0x72 0x20 0x61 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x6E 0x61 0x6D 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 - 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 542 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_7= 0x200056E7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 550 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016018 0x00030601 0x20095 0x000305F0 0x0 0x0 0x57415645 0x00075487 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x61 0x76 0x65 0x20 0x41 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 615 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_8= 0x200056E8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 623 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x00075488 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056E9 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x61 0x20 0x74 0x6F 0x6F 0x6C 0x20 - 0x74 0x69 0x70 0x2C 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x6F 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x68 0x65 0x6C 0x70 0x20 0x6F - 0x6E 0x2E 0x20 0x20 0x57 0x61 0x69 0x74 - 0x2E 0x2E 0x2E 0x61 0x20 0x62 0x72 0x69 - 0x65 0x66 0x20 0x64 0x65 0x73 0x63 0x72 - 0x69 0x70 0x74 0x69 0x6F 0x6E 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x6F 0x6C 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x2E 0x0D 0x0A 0x01 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 716 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_9= 0x200056E9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 724 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075489 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 0x0D 0x0A - 0x54 0x6F 0x20 0x67 0x65 0x74 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 0x65 - 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 - 0x6E 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x6F 0x75 0x74 - 0x20 0x6D 0x6F 0x72 0x65 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x63 0x68 0x69 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 817 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_A= 0x200056EA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 825 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601a 0x00030601 0x20034 0x000305F0 0x0 0x0 0x57415645 0x0007548A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056EB -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x67 0x65 0x74 - 0x20 0x68 0x65 0x6C 0x70 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x48 0x65 0x6C 0x70 0x20 0x4D 0x61 - 0x63 0x68 0x69 0x6E 0x65 0x2E 0x0D 0x0A - 0x01 0x20 0x54 0x6F 0x6F 0x6C 0x74 0x69 - 0x70 0x73 -ENDCHUNK - - -ENDCHUNK -#line 909 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_B= 0x200056EB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 917 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007548B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x6C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x6F 0x6F - 0x6C 0x74 0x69 0x70 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x61 0x20 - 0x62 0x72 0x69 0x65 0x66 0x20 0x64 0x65 - 0x73 0x63 0x72 0x69 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x61 0x20 0x74 - 0x6F 0x6F 0x6C 0x0D 0x0A 0x95 0x09 0x4D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 - 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x6F 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 0x61 - 0x69 0x74 0x2E 0x2E 0x2E 0x61 0x20 0x62 - 0x72 0x69 0x65 0x66 0x20 0x64 0x65 0x73 - 0x63 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x61 0x70 0x70 - 0x65 0x61 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1013 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_C= 0x200056EC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1021 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601a 0x00030601 0x20034 0x000305F0 0x0 0x0 0x57415645 0x0007548C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F 0x66 - 0x66 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x48 0x65 0x6C - 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1091 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_D= 0x200056ED - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1099 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001601b 0x00030601 0x00003012 0x000305F0 0x0 0x0 0x57415645 0x0007548D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x66 0x66 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x69 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x20 - 0x20 0x54 0x6F 0x20 0x74 0x75 0x72 0x6E - 0x20 0x68 0x69 0x73 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x20 0x6F 0x6E 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1172 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_E= 0x200056EE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1180 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601a 0x00030601 0x20035 0x000305F0 0x0 0x0 0x57415645 0x0007548E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x71 0x75 0x69 - 0x63 0x6B 0x6C 0x79 0x20 0x7A 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x6F 0x6F 0x6D 0x20 0x6F 0x72 0x20 - 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x63 0x68 0x6F 0x69 0x63 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x4D 0x61 0x70 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x67 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1255 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_F= 0x200056EF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1263 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601a 0x00030601 0x2003D 0x000305F0 0x0 0x0 0x57415645 0x0007548F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x71 0x75 0x69 - 0x74 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x20 0x45 0x78 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1330 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_10= 0x200056F0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1338 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030601 0x00003015 0x000305F0 0x0 0x0 0x57415645 0x00075490 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x48 - 0x65 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 - 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x6C 0x6F 0x73 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1406 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -#line 26 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -SET _help_48544F50_0= 0x20005215 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030601 0x20005 0x000305F0 0x0 0x0 0x57415645 0x00075030 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1= 0x20005216 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 103 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016016 0x00030601 0x20042 0x000305F0 0x0 0x0 0x57415645 0x00075031 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x94 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x74 0x69 0x6D 0x65 0x0D - 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x43 - 0x68 0x6F 0x69 0x63 0x65 0x73 0x2E 0x0D - 0x0A 0x49 0x66 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x61 0x64 0x64 0x65 0x64 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x64 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x77 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 222 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2= 0x20005217 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 230 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xAA 0x0 0x57415645 0x00075032 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 293 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_3= 0x20005218 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 301 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075033 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x87 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x75 0x73 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 390 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_4= 0x20005219 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 398 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075034 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005256 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005249 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005241 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005242 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x09 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x20 0x65 0x78 0x74 0x72 0x61 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 - 0x72 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 520 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_5= 0x2000521A - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 528 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x20014 0x000305F0 0x0 0x0 0x57415645 0x00075035 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 632 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_6= 0x2000521B - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 640 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075036 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x65 0x77 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 703 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_7= 0x2000521C - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 711 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075037 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 805 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_8= 0x2000521D - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 813 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016017 0x00030601 0x2004C 0x000305F0 0x0 0x0 0x57415645 0x00075038 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 874 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_9= 0x2000521E - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 882 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075039 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 946 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_A= 0x2000521F - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 954 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016017 0x00030601 0x2004E 0x000305F0 0x0 0x0 0x57415645 0x0007503A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005248 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x60 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x94 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x61 0x6C 0x6C 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x66 - 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x57 0x61 - 0x69 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x45 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1072 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_B= 0x20005220 - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1080 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007503B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005244 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x57 0x61 0x69 0x74 0x69 0x6E - 0x67 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x69 0x73 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1184 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_C= 0x20005221 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1192 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00016017 0x00030601 0x2004D 0x000305F0 0x0 0x0 0x57415645 0x0007503C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1258 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_D= 0x20005222 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1266 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x0007503D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x62 0x65 - 0x74 0x77 0x65 0x65 0x6E 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x73 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 - 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1339 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_E= 0x20005223 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1347 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601c 0x00030601 0x0 0x000305F0 0xD2 0x6E 0x57415645 0x0007503F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000523C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x65 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x25 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x34 0x20 0x74 0x72 0x61 - 0x6E 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x63 0x68 0x6F 0x69 0x63 0x65 0x73 0x20 - 0x6C 0x69 0x73 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x6F 0x66 0x20 0x65 - 0x61 0x63 0x68 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x64 0x6F 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1436 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_F= 0x20005224 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1444 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075040 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x73 0x20 0x62 0x65 0x74 - 0x77 0x65 0x65 0x6E 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x73 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1533 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_10= 0x20005225 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1541 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x00075041 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 - 0x64 0x65 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 0x67 - 0x61 0x6E 0x69 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1613 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_11= 0x20005226 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1621 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075042 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x27 0x72 0x65 0x20 0x64 0x6F - 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1705 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_12= 0x20005227 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1713 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075043 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 - 0x65 0x72 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1801 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_13= 0x20005228 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1809 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030601 0x2008B 0x000305F0 0x12 0x5 0x57415645 0x00075044 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x76 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x20 0x74 - 0x68 0x65 0x20 0x46 0x69 0x72 0x73 0x74 - 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 - 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1928 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_14= 0x20005229 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1936 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075045 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2025 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_15= 0x2000522A - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2033 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030601 0x20082 0x000305F0 0x1A 0x5 0x57415645 0x00075046 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x87 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x87 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x46 0x72 - 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x2C - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C - 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x72 0x72 0x6F 0x77 0x2E 0x0D - 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D 0x0D - 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2154 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_16= 0x2000522B - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2162 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075047 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005246 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2250 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_17= 0x2000522C - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2258 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075048 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x83 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2356 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_18= 0x2000522D - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2364 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x00075049 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2430 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_19= 0x2000522E - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2438 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007504A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2531 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1A= 0x2000522F - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2539 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016017 0x00030601 0x20062 0x000305F0 0x0 0x0 0x57415645 0x0007504B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x25 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x40 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x45 0x76 0x65 - 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x42 0x65 0x66 0x6F 0x72 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2643 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1B= 0x20005230 - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2651 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20062 0x000305F0 0x0 0x0 0x57415645 0x0007504C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x63 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2715 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1C= 0x20005231 - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2723 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007504D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x22 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x6E 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x2E 0x0D 0x0A 0x41 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x61 0x72 0x65 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2802 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1D= 0x20005232 - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2810 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007504E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2905 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1E= 0x20000233 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2913 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016017 0x00030601 0x20050 0x000305F0 0x0 0x0 0x57415645 0x0007504F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x45 0x76 0x65 0x72 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x41 0x66 - 0x74 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3017 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1F= 0x20005234 - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3025 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20050 0x000305F0 0x0 0x0 0x57415645 0x00075050 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3089 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_20= 0x20005235 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3097 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075051 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x22 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x6E 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x2E 0x0D 0x0A 0x41 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x73 0x20 0x61 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x61 0x72 0x65 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3176 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_21= 0x20005236 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3184 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075052 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x35 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x61 0x66 0x74 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3281 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_22= 0x20005237 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3289 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x00075053 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x6F 0x6E 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x20 0x6F 0x66 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 0x67 - 0x61 0x6E 0x69 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3361 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_23= 0x20005238 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3369 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030601 0x200B1 0x000305F0 0x0 0x0 0x57415645 0x00075054 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6F 0x72 0x74 - 0x66 0x6F 0x6C 0x69 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3437 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_24= 0x20005239 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3445 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601a 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075055 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2D 0x2D 0x67 - 0x6F 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 - 0x6E 0x64 0x61 0x72 0x64 0x20 0x69 0x6D - 0x70 0x6F 0x72 0x74 0x20 0x61 0x75 0x64 - 0x69 0x6F -ENDCHUNK - - -ENDCHUNK -#line 3512 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_25= 0x2000523A - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3520 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075056 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x69 0x73 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x54 - 0x6F 0x20 0x72 0x65 0x74 0x75 0x72 0x6E - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3593 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_26= 0x2000523B - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3601 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601b 0x00030601 0x20037 0x000305F0 0x0 0x0 0x57415645 0x00075057 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x75 0x6E 0x64 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x69 0x64 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x55 0x6E 0x64 0x6F 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D - 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x64 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3683 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_27= 0x2000523C - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3691 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075058 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20291 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20292 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20293 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20294 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x30 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x47 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x49 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x32 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x34 0x20 0x74 0x72 0x61 0x6E - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x63 - 0x68 0x6F 0x69 0x63 0x65 0x73 0x0D 0x0A - 0x01 0x09 0x43 0x75 0x74 0x20 0x74 0x6F - 0x20 0x62 0x6C 0x61 0x63 0x6B 0x0D 0x0A - 0x01 0x09 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 0x0D 0x0A 0x01 0x09 0x44 0x69 - 0x73 0x73 0x6F 0x6C 0x76 0x65 0x20 0x77 - 0x69 0x74 0x68 0x20 0x62 0x6C 0x61 0x63 - 0x6B 0x0D 0x0A 0x01 0x09 0x44 0x69 0x73 - 0x73 0x6F 0x6C 0x76 0x65 0x20 0x77 0x69 - 0x74 0x68 0x20 0x77 0x68 0x69 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3791 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_28= 0x2000523D - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3799 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075059 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3863 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_29= 0x2000523E - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3871 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007505A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x41 0x74 0x74 0x61 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x20 0x6F 0x66 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x2D 0x2D 0x20 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3968 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2A= 0x2000523F - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3976 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007505B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x55 0x6E 0x64 0x6F 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 - 0x64 0x6F 0x69 0x6E 0x67 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 4062 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2B= 0x20005240 - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 4070 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4205 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2C= 0x20005241 - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4213 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x34 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x6F 0x72 0x64 0x65 0x72 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 0x72 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x20 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A - 0x65 0x72 0x2D 0x01 0x0D 0x0A 0x33 0x09 - 0x44 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4316 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2D= 0x20005242 - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4324 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4426 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2E= 0x20005243 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4434 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x04 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x31 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x50 0x6C 0x61 - 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x75 0x74 - 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 0x6C - 0x6C 0x79 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4573 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2F= 0x20005244 - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4581 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075060 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - FREE - FREE - FREE - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x97 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x60 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x61 0x75 0x73 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x70 0x61 0x75 0x73 0x65 - 0x0D 0x0A 0x95 0x09 0x54 0x75 0x72 0x6E - 0x20 0x6F 0x66 0x66 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 - 0x6E 0x64 0x20 0x62 0x79 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x69 0x6E 0x67 0x20 0x69 - 0x74 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x6F 0x66 0x66 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x6F 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x72 - 0x65 0x64 0x20 0x6C 0x69 0x67 0x68 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4688 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_30= 0x20005245 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4696 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075061 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 4756 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_31= 0x20005246 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4764 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075062 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xB9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x55 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x0D 0x0A 0x01 0x20 - 0x20 0x4E 0x6F 0x74 0x65 0x3A 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x2C - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C - 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4885 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_32= 0x2000524C - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4893 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016017 0x00030601 0x20014 0x000305F0 0x0 0x0 0x57415645 0x00075068 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4957 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_33= 0x2000524D - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4965 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x73 0x0D - 0x0A 0x54 0x68 0x65 0x72 0x65 0x20 0x61 - 0x72 0x65 0x20 0x6D 0x61 0x6E 0x79 0x20 - 0x64 0x69 0x66 0x66 0x65 0x72 0x65 0x6E - 0x74 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x65 0x61 0x63 0x68 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x20 0x63 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x61 0x72 0x65 - 0x6E 0x27 0x74 0x20 0x63 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2D 0x2D - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x6A - 0x75 0x73 0x74 0x20 0x63 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x69 0x65 0x77 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5049 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_34= 0x2000524E - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 5057 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016016 0x00030601 0x20005 0x000305F0 0x0 0x0 0x57415645 0x00075069 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5131 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_35= 0x2000524F - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 5139 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016018 0x00030601 0x0 0x000305F0 0x168 0x18B 0x57415645 0x0007506A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x31 0x09 0x49 0x66 0x20 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x4E 0x65 0x78 0x74 - 0x20 0x61 0x72 0x72 0x6F 0x77 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x6C 0x61 0x63 0x6B 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6C 0x61 0x63 0x6B 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5218 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_36= 0x20005250 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 5226 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x0007506B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x4F 0x72 0x67 0x61 0x6E 0x69 - 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5294 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_37= 0x20005251 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5302 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601c 0x00030601 0x0 0x000305F0 0x82 0x0 0x57415645 0x0007506C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000523C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x53 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x31 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x62 0x6C 0x61 - 0x63 0x6B 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x69 0x73 0x20 0x73 0x6C - 0x6F 0x74 0x2E 0x20 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x34 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x63 0x68 - 0x6F 0x69 0x63 0x65 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6C 0x61 0x63 0x6B 0x20 - 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5394 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_38= 0x20005252 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5402 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x0007506D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5462 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_39= 0x20005253 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5470 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030601 0x200B5 0x000305F0 0x0 0x0 0x57415645 0x0007506E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5532 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_3A= 0x20005254 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5540 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007506F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 5634 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_3B= 0x20005255 - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5642 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075070 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x61 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5708 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_44= 0x20005247 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 5716 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075063 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5819 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_45= 0x20005248 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 5827 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075064 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 - 0x64 0x73 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x55 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x46 0x72 0x61 - 0x6D 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 - 0x72 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x4E - 0x6F 0x74 0x65 0x3A 0x20 0x20 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x20 0x74 0x68 0x65 - 0x20 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 - 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 - 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 - 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5947 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_46= 0x20005249 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 5955 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075065 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x54 - 0x68 0x65 0x72 0x65 0x20 0x61 0x72 0x65 - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x70 0x6F - 0x73 0x73 0x69 0x62 0x6C 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x65 0x61 0x63 0x68 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x20 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6058 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_49= 0x2000524A - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 6066 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075066 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x99 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 - 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x77 0x69 0x74 0x68 0x69 0x6E - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x46 0x72 0x61 0x6D - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x0D 0x0A 0x01 0x0D 0x0A 0x4E 0x6F 0x74 - 0x65 0x3A 0x20 0x20 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6184 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_51= 0x2000524B - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 6192 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075067 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 6286 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_5C= 0x20005256 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 6294 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x83 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x0D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x01 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x11 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xDD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x7F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x0D 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x64 0x64 0x69 - 0x6E 0x67 0x20 0x65 0x78 0x74 0x72 0x61 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x20 0x28 - 0x6C 0x6F 0x63 0x61 0x74 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x77 0x65 0x72 0x2D 0x6C 0x65 0x66 - 0x74 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 - 0x29 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x4E 0x65 0x78 0x74 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D 0x01 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6421 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -#line 27 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -SET _help_48544F50_0= 0x20005200 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F2 0x140 0xF0 0x57415645 0x00075000 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x69 0x73 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x20 0x6C - 0x6F 0x67 0x6F 0x97 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x66 0x6C 0x79 0x20 0x6F 0x6E - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x21 - 0x0D 0x0A 0x46 0x6F 0x72 0x20 0x65 0x78 - 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x63 0x6F 0x6D 0x70 0x61 - 0x6E 0x79 0x20 0x6E 0x61 0x6D 0x65 0x20 - 0x6F 0x72 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x33 0x44 0x20 0x74 - 0x69 0x74 0x6C 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 136 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_1= 0x20005201 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 144 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016017 0x00030603 0x20014 0x000305F2 0x0 0x0 0x57415645 0x00075001 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 208 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_2= 0x20005202 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 216 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016016 0x00030603 0x20042 0x000305F2 0x0 0x0 0x57415645 0x00075002 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x63 0x68 0x6F 0x69 - 0x63 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 283 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_3= 0x20005203 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 291 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0xAA 0x0 0x57415645 0x00075004 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 354 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_4= 0x20005204 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 362 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x00075005 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 427 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_5= 0x20005205 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 435 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F2 0x0 0x0 0x57415645 0x00075006 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C 0x6F - 0x67 0x6F 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 506 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_6= 0x20005206 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 514 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016017 0x00030603 0x20077 0x000305F2 0x0 0x0 0x57415645 0x00075007 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x2E 0x2E 0x2E 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 581 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_7= 0x20005207 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 589 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x00075008 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x68 0x65 0x72 0x65 0x2E 0x20 - 0x20 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x6D - 0x69 0x73 0x74 0x61 0x6B 0x65 0x2C 0x20 - 0x70 0x72 0x65 0x73 0x73 0x20 0x42 0x61 - 0x63 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 660 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_8= 0x20005208 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 668 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016017 0x00030603 0x20077 0x000305F2 0x0 0x0 0x57415645 0x00075009 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x61 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x69 0x73 0x20 0x70 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x2E 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x33 0x44 - 0x20 0x57 0x6F 0x72 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 738 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_9= 0x20005209 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 746 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C 0x6F - 0x67 0x6F 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x61 0x70 0x70 0x65 - 0x61 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x67 - 0x6F 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 827 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_A= 0x2000520a - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 835 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F2 0x0 0x0 0x57415645 0x0007500B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C - 0x6F 0x67 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 905 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_B= 0x2000520b - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 913 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x6F 0x67 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 975 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_C= 0x2000520c - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 983 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1054 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_11= 0x2000520f - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1062 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005211 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x6F 0x67 0x6F 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x20 0x74 0x6F 0x20 0x67 0x6F 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1160 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_12= 0x20005210 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1168 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F2 0x140 0xF0 0x57415645 0x0007500F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x82 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x47 0x72 0x65 0x61 0x74 0x21 - 0x20 0x20 0x59 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x64 0x6F 0x6E 0x65 0x21 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x79 0x6F 0x75 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 0x64 - 0x6F 0x20 0x6E 0x6F 0x77 0x3F 0x0D 0x0A - 0x01 0x09 0x57 0x6F 0x72 0x6B 0x20 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F - 0x77 0x6E 0x3F 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6C 0x6F 0x67 0x6F - 0x3F 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x52 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x51 0x75 - 0x69 0x74 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1290 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_5C= 0x20005211 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 1298 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x46 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x67 - 0x6F 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x0D 0x0A 0x95 0x09 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x55 0x70 - 0x20 0x6F 0x72 0x20 0x44 0x6F 0x77 0x6E - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B - 0x65 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1394 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -#line 28 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -SET _help_48544F50_0= 0x20005270 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000750B0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x77 0x61 0x73 0x6E - 0x27 0x74 0x20 0x65 0x78 0x70 0x65 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x20 0x74 0x6F 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x72 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x3F 0x0D 0x0A 0x01 0x09 - 0x57 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 0x6E - 0x3F 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x72 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x51 0x75 - 0x69 0x74 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 - 0x68 0x69 0x73 0x20 0x70 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x77 0x69 0x74 0x68 - 0x20 0x6D 0x79 0x20 0x68 0x65 0x6C 0x70 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 165 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_1= 0x20005271 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 173 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000750B1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x52 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x51 0x75 - 0x69 0x74 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x77 - 0x6F 0x72 0x6B 0x69 0x6E 0x67 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 287 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_2= 0x20005272 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 295 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602d 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000750B2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x68 0x65 - 0x6C 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 0x65 - 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 - 0x6E 0x65 0x20 0x6F 0x72 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x70 0x6F 0x69 - 0x6E 0x74 0x65 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x6F 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x6F 0x6E 0x21 -ENDCHUNK - - -ENDCHUNK -#line 369 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_3= 0x20005273 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 377 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601e 0x00030603 0x20160 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750B3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x6D - 0x79 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 446 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_4= 0x20005274 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 454 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030604 0x0 0x20005274 0x140 0xF0 0x57415645 0x000750B4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x3F 0x0D 0x0A 0x01 0x09 - 0x57 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 0x6E - 0x3F 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x72 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 - 0x68 0x69 0x73 0x20 0x70 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x77 0x69 0x74 0x68 - 0x20 0x6D 0x79 0x20 0x68 0x65 0x6C 0x70 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 570 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_5= 0x20005275 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 578 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601e 0x00030604 0x0 0x20005275 0x140 0xF0 0x57415645 0x000750B5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x53 0x65 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x01 0x09 0x43 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x20 0x77 0x6F 0x72 0x6B 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x69 0x73 0x20 0x70 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 679 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -#line 29 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -SET _help_48544F50_0= 0x20005280 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601f 0x00030603 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750C8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x41 0x75 0x64 0x69 0x6F 0x20 - 0x6F 0x6E 0x6C 0x79 0x2D 0x2D 0x2D 0x0D - 0x0A 0x48 0x69 0x21 0x20 0x20 0x57 0x65 - 0x6C 0x63 0x6F 0x6D 0x65 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x73 0x20 0x52 0x6F - 0x6F 0x6D 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x6D 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x6F 0x77 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x61 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x20 0x6C - 0x6F 0x67 0x6F 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x66 - 0x74 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x27 0x64 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x63 0x6F - 0x6F 0x6C 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2D 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x65 0x63 0x68 0x6E 0x69 0x71 0x75 - 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 118 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - -SET _help_48544F50_1= 0x20005281 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 126 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601f 0x00030603 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750C9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x75 0x6C 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x3A 0x0D 0x0A 0x01 0x09 - 0x4D 0x61 0x6B 0x65 0x20 0x61 0x20 0x66 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x6C 0x6F - 0x67 0x6F 0x3F 0x0D 0x0A 0x01 0x09 0x4C - 0x65 0x61 0x72 0x6E 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x74 0x65 0x63 - 0x68 0x6E 0x69 0x71 0x75 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 209 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - -SET _help_48544F50_2= 0x20005282 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 217 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601f 0x00030603 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750CA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x41 0x75 0x64 0x69 0x6F 0x20 - 0x6F 0x6E 0x6C 0x79 0x2E 0x2E 0x2E 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x20 0x73 0x68 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x39 0x20 - 0x64 0x69 0x66 0x66 0x65 0x72 0x65 0x6E - 0x74 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2D - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 - 0x65 0x63 0x68 0x6E 0x69 0x71 0x75 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 285 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - -SET _help_48544F50_3= 0x20005283 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 293 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x00003047 0x140 0xF0 0x57415645 0x000750CB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x96 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x4D 0x79 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x68 0x65 0x6C 0x70 0x20 0x79 0x6F - 0x75 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x36 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x73 0x74 0x65 0x70 0x2D 0x62 - 0x79 0x2D 0x73 0x74 0x65 0x70 0x2E 0x20 - 0x20 0x49 0x27 0x76 0x65 0x20 0x6D 0x61 - 0x64 0x65 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x2E 0x20 0x20 - 0x55 0x73 0x65 0x20 0x6D 0x79 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x20 0x74 0x6F - 0x20 0x68 0x65 0x6C 0x70 0x20 0x79 0x6F - 0x75 0x20 0x64 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x73 0x74 0x21 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 391 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -#line 30 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -SET _help_48544F50_0= 0x00017033 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001602e 0x0 0x00003034 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075550 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F 0x6C - 0x0D 0x0A 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x65 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 116 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_1= 0x00017034 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 124 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001602e 0x0 0x00003037 0xFFFFFFFF 0xB9 0x14 0x57415645 0x00075551 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 205 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_2= 0x00017035 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 213 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602e 0x0 0x00003039 0xFFFFFFFF 0xC9 0x14 0x57415645 0x00075552 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x0D 0x0A 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 295 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_3= 0x00017036 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 303 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600d 0x0 0x00003033 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075553 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x42 - 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 384 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_4= 0x00017037 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 392 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600d 0x0 0x0000303D 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075554 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x87 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x42 0x75 - 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x65 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 473 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_5= 0x00017038 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 481 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600d 0x0 0x00003036 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075555 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x6F 0x73 0x65 0x20 - 0x42 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 564 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_6= 0x00017039 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 572 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600d 0x0 0x00003035 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075556 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6C 0x61 0x6E 0x69 - 0x65 0x27 0x73 0x20 0x56 0x6F 0x69 0x63 - 0x65 0x0D 0x0A 0x54 0x75 0x72 0x6E 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F 0x66 - 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 655 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_7= 0x0001703a - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 663 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600d 0x0 0x0000303E 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075557 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x0D 0x0A 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x6C 0x65 0x61 0x72 0x6E 0x20 0x6D 0x6F - 0x72 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 743 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -#line 31 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -SET _help_48544F50_0= 0x20005430 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075270 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 100 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1= 0x20005431 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 108 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075271 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005462 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x20 0x4D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6B -ENDCHUNK - - -ENDCHUNK -#line 197 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2= 0x20005432 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 205 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075272 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x64 0x20 0x79 0x6F - 0x75 0x20 0x65 0x76 0x65 0x72 0x20 0x77 - 0x6F 0x6E 0x64 0x65 0x72 0x20 0x68 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6D 0x61 0x74 - 0x63 0x68 0x20 0x77 0x68 0x61 0x74 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 0x73 - 0x61 0x79 0x20 0x74 0x6F 0x20 0x77 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x79 0x20 - 0x64 0x6F 0x3F 0x20 0x20 0x49 0x74 0x27 - 0x73 0x20 0x6E 0x6F 0x74 0x20 0x61 0x73 - 0x20 0x65 0x61 0x73 0x79 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x6C 0x6F 0x6F 0x6B - 0x73 0x2E 0x20 0x20 0x57 0x61 0x74 0x63 - 0x68 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x2E 0x20 0x20 0x4E 0x6F 0x74 0x69 - 0x63 0x65 0x20 0x68 0x6F 0x77 0x20 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x27 0x73 0x20 0x61 0x72 0x6D - 0x73 0x20 0x73 0x74 0x61 0x72 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x74 0x68 - 0x65 0x79 0x20 0x73 0x74 0x61 0x72 0x74 - 0x20 0x73 0x70 0x65 0x61 0x6B 0x69 0x6E - 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 292 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_3= 0x20005433 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 300 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075273 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x6A 0x75 0x73 0x74 0x20 0x73 - 0x61 0x69 0x64 0x2C 0x20 0x93 0x49 0x92 - 0x6C 0x6C 0x20 0x74 0x72 0x61 0x64 0x65 - 0x20 0x61 0x20 0x6D 0x61 0x67 0x69 0x63 - 0x20 0x74 0x72 0x69 0x63 0x6B 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x76 0x61 0x73 - 0x65 0x2E 0x94 0x0D 0x0A 0x4E 0x6F 0x77 - 0x20 0x69 0x74 0x92 0x73 0x20 0x79 0x6F - 0x75 0x72 0x20 0x74 0x75 0x72 0x6E 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x92 0x73 - 0x20 0x54 0x61 0x6C 0x6B 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 400 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_4= 0x20005434 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 408 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075274 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x54 0x61 - 0x6C 0x6B 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 475 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_5= 0x20005435 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 483 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075275 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 544 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_6= 0x20005436 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 552 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075276 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x54 0x61 0x6C 0x6B - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 614 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_7= 0x20005437 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 622 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x00075277 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 683 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_8= 0x20005438 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 691 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075278 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x73 - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x62 0x79 0x20 0x68 - 0x65 0x72 0x20 0x73 0x69 0x64 0x65 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 777 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_9= 0x20005439 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 785 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075279 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x43 0x6C 0x61 - 0x75 0x64 0x69 0x61 0x20 0x73 0x74 0x61 - 0x72 0x74 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x68 0x65 0x72 0x20 - 0x68 0x61 0x6E 0x64 0x73 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x92 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 881 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_A= 0x2000543A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 889 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x0007527A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 960 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_B= 0x2000543B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 968 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007527B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x92 0x73 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1038 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_C= 0x2000543C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1046 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007527C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x27 0x73 0x20 0x54 0x61 0x6C 0x6B - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x70 0x75 0x6C 0x6C 0x73 0x20 0x79 0x6F - 0x75 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x6F 0x63 0x75 0x73 0x65 0x73 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x61 0x74 - 0x74 0x65 0x6E 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x6E 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x2E 0x20 0x20 0x4E 0x6F 0x77 - 0x20 0x77 0x65 0x20 0x6E 0x65 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x6E 0x65 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1121 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_D= 0x2000543D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1129 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007527D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1195 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_E= 0x2000543E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1203 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016017 0x00030603 0x20079 0x000305F1 0x0 0x0 0x57415645 0x0007527E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x70 0x65 0x65 0x63 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1269 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_F= 0x2000543F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1277 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007527F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x4F 0x68 0x2C 0x20 0x49 0x20 0x64 - 0x6F 0x6E 0x92 0x74 0x20 0x6B 0x6E 0x6F - 0x77 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1342 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_10= 0x20005440 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1350 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075280 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1411 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_11= 0x20005441 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1419 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601a 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075281 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x20 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1498 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_12= 0x20005442 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1506 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075282 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1576 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_13= 0x20005443 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1584 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075283 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x76 0x65 0x72 - 0x73 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 - 0x61 0x72 0x65 0x20 0x66 0x69 0x6C 0x6D - 0x65 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x93 0x6F 0x76 0x65 0x72 0x2D 0x74 0x68 - 0x65 0x2D 0x73 0x68 0x6F 0x75 0x6C 0x64 - 0x65 0x72 0x94 0x20 0x73 0x68 0x6F 0x74 - 0x73 0x2E 0x20 0x20 0x50 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x73 0x2C 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x61 0x75 0x64 0x69 0x65 0x6E 0x63 0x65 - 0x20 0x69 0x73 0x20 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x73 0x68 0x6F - 0x75 0x6C 0x64 0x65 0x72 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x77 0x68 0x6F 0x20 0x69 - 0x73 0x20 0x6C 0x69 0x73 0x74 0x65 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x63 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x77 0x68 0x6F 0x20 0x69 - 0x73 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1673 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_14= 0x20005444 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1681 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00016016 0x00030603 0x20005 0x000305F1 0x0 0x0 0x57415645 0x00075284 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005445 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x20 0x63 - 0x68 0x6F 0x69 0x63 0x65 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x73 0x2E 0x0D 0x0A 0x01 - 0x20 0x20 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 1769 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_15= 0x20005445 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1777 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075285 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x73 0x0D 0x0A 0x41 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6F 0x76 - 0x65 0x72 0x61 0x6C 0x6C 0x20 0x65 0x6E - 0x76 0x69 0x72 0x6F 0x6E 0x6D 0x65 0x6E - 0x74 0x20 0x69 0x6E 0x20 0x77 0x68 0x69 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x73 0x20 0x61 0x72 0x65 - 0x20 0x73 0x68 0x6F 0x74 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x76 0x61 0x73 0x65 - 0x20 0x62 0x6F 0x6F 0x74 0x68 0x20 0x69 - 0x73 0x20 0x61 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x61 0x72 0x6B 0x65 - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1872 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_16= 0x20005446 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1880 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016017 0x00030603 0x20014 0x000305F1 0x0 0x0 0x57415645 0x00075286 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1945 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_17= 0x20005447 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1953 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x43 0x0 0x57415645 0x00075287 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 - 0x92 0x73 0x20 0x66 0x61 0x63 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x69 0x73 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2019 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_18= 0x20005448 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2027 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x00075288 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x92 0x73 0x20 - 0x54 0x61 0x6C 0x6B 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2099 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_19= 0x20005449 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2107 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016017 0x00030603 0x20063 0x000305F1 0x0 0x0 0x57415645 0x00075289 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000544A - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 0x4C - 0x61 0x73 0x74 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x73 0x75 0x6D 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 2192 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1A= 0x2000544A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2200 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007528A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x73 0x75 - 0x6D 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x75 0x73 0x65 - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2294 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1B= 0x2000544B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2302 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007528B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x78 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x73 - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x27 0x73 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x62 0x79 0x20 0x68 - 0x69 0x73 0x20 0x73 0x69 0x64 0x65 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2388 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1C= 0x2000544C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2396 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x0007528C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x20 0x73 0x74 0x61 0x72 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x68 0x69 0x73 0x20 0x68 - 0x61 0x6E 0x64 0x73 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2492 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1D= 0x2000544D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2500 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007528D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x92 0x73 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2570 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1E= 0x2000544E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2578 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007528E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x27 0x73 0x20 0x70 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x73 0x65 0x6E - 0x74 0x65 0x6E 0x63 0x65 0x20 0x77 0x61 - 0x73 0x20 0x73 0x68 0x6F 0x72 0x74 0x20 - 0x73 0x6F 0x20 0x77 0x65 0x20 0x6B 0x65 - 0x70 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x6F 0x6E - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x61 0x20 0x73 0x65 - 0x6E 0x74 0x65 0x6E 0x63 0x65 0x20 0x69 - 0x73 0x20 0x6C 0x6F 0x6E 0x67 0x2C 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x27 0x73 0x20 0x6E - 0x65 0x78 0x74 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x20 0x6E 0x65 0x61 0x72 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x65 - 0x6E 0x74 0x65 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2660 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1F= 0x2000544F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2668 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007528F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2734 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_20= 0x20005450 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2742 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x00075290 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2863 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_21= 0x20005451 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2871 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075291 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x72 - 0x72 0x6F 0x77 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2963 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_22= 0x20005452 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2971 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075292 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005451 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 3060 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_23= 0x20005453 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3068 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075293 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x49 0x92 0x6C 0x6C 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x79 0x6F 0x75 0x2E 0x2E - 0x2E 0x22 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3133 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_24= 0x20005454 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3141 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075294 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3203 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_25= 0x20005455 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3211 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075295 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3278 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_26= 0x20005456 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3286 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075296 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x67 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x38 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x6D 0x6F 0x73 0x74 0x20 0x66 0x69 0x6E - 0x69 0x73 0x68 0x65 0x64 0x20 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x68 0x69 0x73 - 0x20 0x68 0x61 0x6E 0x64 0x73 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x72 0x65 0x61 - 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 - 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3381 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_27= 0x20005457 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3389 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075297 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3459 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_28= 0x20005458 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3467 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075298 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x61 0x73 0x74 0x20 0x6E - 0x6F 0x74 0x69 0x63 0x65 0x61 0x62 0x6C - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x2E - 0x20 0x20 0x49 0x74 0x92 0x73 0x20 0x61 - 0x20 0x6D 0x61 0x74 0x74 0x65 0x72 0x20 - 0x6F 0x66 0x20 0x74 0x69 0x6D 0x69 0x6E - 0x67 0x3A 0x20 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x20 0x6F 0x6E 0x20 0x61 - 0x20 0x6B 0x65 0x79 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x61 0x6E 0x20 0x69 0x64 - 0x65 0x61 0x20 0x6F 0x72 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x61 0x20 0x68 0x61 0x6E - 0x64 0x20 0x67 0x65 0x73 0x74 0x75 0x72 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3546 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_29= 0x20005459 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3554 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x43 0x0 0x57415645 0x00075299 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x92 0x73 0x20 0x66 0x61 0x63 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x69 0x73 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3620 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2A= 0x2000545A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3628 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007529A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3693 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2B= 0x2000545B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3701 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x0007529B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x92 0x73 0x20 - 0x54 0x61 0x6C 0x6B 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3771 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2C= 0x2000545C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3779 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007529C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x78 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x73 - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x27 0x73 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x62 0x79 0x20 0x68 - 0x65 0x72 0x20 0x73 0x69 0x64 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x20 0x73 0x6F 0x20 0x66 0x61 0x72 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3864 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2D= 0x2000545D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3872 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007529D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x92 0x73 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3942 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2E= 0x2000545E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3950 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007529E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x68 0x61 0x73 - 0x20 0x61 0x64 0x76 0x61 0x6E 0x63 0x65 - 0x64 0x3A 0x20 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x69 0x73 0x20 0x77 - 0x69 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x6E 0x65 0x67 0x6F 0x74 0x69 - 0x61 0x74 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 - 0x2E 0x20 0x20 0x44 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x65 0x20 0x6F 0x72 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x3F 0x20 - 0x20 0x49 0x74 0x92 0x73 0x20 0x75 0x70 - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x21 - 0x20 0x20 0x46 0x69 0x72 0x73 0x74 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x61 0x64 0x64 0x20 0x6D 0x6F 0x72 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x6F 0x72 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4032 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2F= 0x2000545F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4040 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007529F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x4F 0x4B 0x2C 0x20 0x79 0x6F 0x75 - 0x92 0x76 0x65 0x20 0x67 0x6F 0x74 0x2E - 0x2E 0x2E 0x94 0x20 0x0D 0x0A 0x54 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4105 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_30= 0x20005460 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4113 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752AA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4180 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_31= 0x20005461 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4188 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752AB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x43 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x6E - 0x65 0x78 0x74 0x20 0x73 0x74 0x65 0x70 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x47 0x61 0x64 0x67 - 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4270 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_32= 0x20005462 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4278 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x61 0x6C - 0x6B 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6B - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x61 0x64 - 0x64 0x20 0x73 0x70 0x65 0x65 0x63 0x68 - 0x2E 0x0D 0x0A 0x31 0x09 0x4D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x54 0x61 0x6C 0x6B 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x32 0x09 0x52 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x73 - 0x74 0x61 0x72 0x74 0x73 0x20 0x74 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x41 0x74 0x74 0x61 0x63 0x68 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4393 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_33= 0x20005463 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4401 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xB8 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x74 0x6F 0x6F 0x20 0x66 - 0x61 0x72 0x2E 0x2E 0x2E 0x0D 0x0A 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x74 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x20 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x67 - 0x6F 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x4E 0x65 0x78 0x74 0x2D - 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 - 0x67 0x6F 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4513 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -#line 32 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -SET _help_48544F50_0= 0x20005470 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x000752B0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000549D - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 121 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_1= 0x20005471 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 129 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752B1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 199 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_2= 0x20005472 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 207 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752B2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4D 0x69 0x6D 0x69 0x27 0x73 - 0x20 0x72 0x75 0x6E 0x20 0x69 0x73 0x20 - 0x73 0x6C 0x6F 0x77 0x65 0x72 0x20 0x74 - 0x68 0x61 0x6E 0x20 0x43 0x68 0x61 0x72 - 0x6C 0x69 0x65 0x27 0x73 0x20 0x72 0x75 - 0x6E 0x2C 0x20 0x73 0x6F 0x20 0x69 0x66 - 0x20 0x74 0x68 0x65 0x79 0x20 0x73 0x74 - 0x61 0x72 0x74 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x43 0x68 0x61 - 0x72 0x6C 0x69 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x61 0x72 0x72 0x69 0x76 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x2E 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x79 0x6E 0x63 0x68 0x72 0x6F - 0x6E 0x69 0x7A 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x4D 0x69 - 0x6D 0x69 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 290 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_3= 0x20005473 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 298 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000752B3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x59 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x4D 0x69 0x6D 0x69 0x20 0x72 - 0x75 0x6E 0x73 0x20 0x74 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x74 0x6F 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x92 0x73 0x20 - 0x73 0x75 0x72 0x70 0x72 0x69 0x73 0x65 - 0x20 0x70 0x61 0x72 0x74 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x2E 0x20 0x20 - 0x4D 0x69 0x6D 0x69 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x6B 0x6E 0x6F - 0x77 0x20 0x69 0x74 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 - 0x65 0x20 0x69 0x73 0x20 0x68 0x69 0x64 - 0x69 0x6E 0x67 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x61 0x20 0x67 0x72 0x61 - 0x76 0x65 0x73 0x74 0x6F 0x6E 0x65 0x2E - 0x20 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 - 0x65 0x20 0x6A 0x75 0x6D 0x70 0x73 0x20 - 0x75 0x70 0x2C 0x20 0x72 0x61 0x63 0x65 - 0x73 0x20 0x4D 0x69 0x6D 0x69 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x72 0x72 0x69 - 0x76 0x65 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x70 0x61 0x72 0x74 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x73 0x68 0x65 0x20 0x64 0x6F 0x65 0x73 - 0x2E 0x0D 0x0A 0x4E 0x6F 0x77 0x20 0x69 - 0x74 0x92 0x73 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x74 0x75 0x72 0x6E 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x4D 0x69 0x6D 0x69 0x92 0x73 0x20 0x61 - 0x72 0x72 0x69 0x76 0x61 0x6C 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x73 0x68 0x65 0x20 - 0x67 0x65 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x72 0x74 - 0x79 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x21 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 420 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_4= 0x20005474 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 428 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752B4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x42 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x77 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 502 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_5= 0x20005475 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 510 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601c 0x00030603 0x20096 0x000305F1 0x2E 0x8B 0x57415645 0x000752B5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054A1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x4D 0x69 0x6D 0x69 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x68 0x65 - 0x72 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C - 0x69 0x73 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x6C 0x6F 0x6F 0x6B 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 0x20 - 0x79 0x65 0x6C 0x6C 0x6F 0x77 0x20 0x6F - 0x75 0x74 0x6C 0x69 0x6E 0x65 0x20 0x69 - 0x6E 0x73 0x69 0x64 0x65 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x61 0x76 0x65 0x20 - 0x63 0x68 0x61 0x6D 0x62 0x65 0x72 0x2E - 0x0D 0x0A 0x01 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 603 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_6= 0x20005476 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 611 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016017 0x00030603 0x2001F 0x000305F1 0x0 0x0 0x57415645 0x000752B6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005477 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x4D 0x69 0x6D 0x69 0x20 0x61 - 0x72 0x72 0x69 0x76 0x65 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x43 0x68 0x61 - 0x72 0x6C 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x79 0x6E 0x63 - 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x2E - 0x0D 0x0A 0x01 0x20 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 -ENDCHUNK - - -ENDCHUNK -#line 697 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_7= 0x20005477 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 705 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752B7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x79 0x6E 0x63 - 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x6C 0x65 - 0x74 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x67 0x65 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x69 0x63 0x75 0x6C - 0x61 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 791 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_8= 0x20005478 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 799 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752B8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005479 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x6E 0x73 0x69 0x64 0x65 0x20 0x4D - 0x69 0x6D 0x69 0x27 0x73 0x20 0x79 0x65 - 0x6C 0x6C 0x6F 0x77 0x20 0x6F 0x75 0x74 - 0x6C 0x69 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x22 0x66 0x72 0x65 0x65 0x7A 0x65 0x22 - 0x20 0x68 0x65 0x72 0x20 0x69 0x6E 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x2E 0x0D 0x0A - 0x01 0x20 0x57 0x68 0x69 0x63 0x68 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x74 0x6F - 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 888 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_9= 0x20005479 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 896 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752B9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x69 - 0x63 0x68 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x66 0x72 0x65 0x65 - 0x7A 0x65 0x3F 0x0D 0x0A 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x6F 0x6E 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x72 0x72 - 0x65 0x63 0x74 0x20 0x73 0x70 0x6F 0x74 - 0x2E 0x20 0x20 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x79 0x6E 0x63 0x68 - 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x20 0x74 - 0x6F 0x6F 0x6C 0x20 0x74 0x6F 0x20 0x22 - 0x66 0x72 0x65 0x65 0x7A 0x65 0x22 0x20 - 0x74 0x68 0x61 0x74 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x69 0x6E 0x20 0x70 0x6C - 0x61 0x63 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x42 0x61 0x63 - 0x6B 0x20 0x6F 0x72 0x20 0x46 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x73 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x77 0x69 0x6E 0x64 0x20 0x6F 0x72 - 0x20 0x61 0x64 0x76 0x61 0x6E 0x63 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x20 0x20 0x4B 0x65 0x65 - 0x70 0x20 0x63 0x6C 0x69 0x63 0x6B 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x72 0x72 0x6F 0x77 0x73 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x63 0x6F 0x6E 0x64 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x2C 0x20 - 0x61 0x68 0x65 0x61 0x64 0x20 0x6F 0x66 - 0x2C 0x20 0x6F 0x72 0x20 0x6D 0x65 0x65 - 0x74 0x73 0x20 0x74 0x68 0x65 0x20 0x22 - 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x22 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1009 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_A= 0x2000547A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1017 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016019 0x00030603 0x2009B 0x000305F1 0xFFFFFFDC 0x10 0x57415645 0x000752BA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x42 0x61 0x63 0x6B - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x31 - 0x32 0x20 0x74 0x69 0x6D 0x65 0x73 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x20 0x61 0x70 - 0x70 0x65 0x61 0x72 0x73 0x20 0x6F 0x75 - 0x74 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x67 0x72 0x61 - 0x76 0x65 0x20 0x63 0x68 0x61 0x6D 0x62 - 0x65 0x72 0x20 0x65 0x6E 0x74 0x72 0x61 - 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1088 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_B= 0x2000547B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1096 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x20088 0x000305F1 0x0 0x0 0x57415645 0x000752BB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x4F 0x6E 0x63 0x65 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x69 - 0x73 0x20 0x6F 0x75 0x74 0x73 0x69 0x64 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x67 0x72 0x61 0x76 0x65 0x20 0x63 - 0x68 0x61 0x6D 0x62 0x65 0x72 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D 0x01 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x31 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1182 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_C= 0x2000547C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1190 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752BC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6E 0x65 - 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1257 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_D= 0x2000547D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1265 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001601b 0x00030603 0x20088 0x000305F1 0x0 0x0 0x57415645 0x000752BD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x61 0x67 0x61 0x69 0x6E 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x31 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1342 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_E= 0x2000547E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1350 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030603 0x20085 0x000305F1 0x0 0x0 0x57415645 0x000752BE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000547F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4E 0x65 0x78 0x74 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x64 0x76 0x61 0x6E 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x74 0x69 0x74 0x6C 0x65 0x2C - 0x20 0x93 0x53 0x75 0x72 0x70 0x72 0x69 - 0x73 0x65 0x94 0x20 0x66 0x69 0x72 0x73 - 0x74 0x20 0x61 0x70 0x70 0x65 0x61 0x72 - 0x73 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x57 0x61 - 0x74 0x63 0x68 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x6E 0x6F 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1458 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_F= 0x2000547F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1466 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752BF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x57 0x61 0x74 0x63 - 0x68 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x6E 0x6F 0x74 0x65 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x6E 0x6F 0x74 0x65 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x46 0x72 0x61 0x6D - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x69 0x73 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x77 0x61 0x79 0x20 - 0x74 0x6F 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x72 0x69 0x67 0x69 0x6E - 0x61 0x6C 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x49 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x63 0x61 - 0x73 0x65 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x20 0x6E 0x6F - 0x74 0x65 0x20 0x69 0x6E 0x64 0x69 0x63 - 0x61 0x74 0x65 0x73 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x69 0x73 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x69 0x73 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1563 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_10= 0x20005480 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1571 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x000752C0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1642 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_11= 0x20005481 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1650 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752C1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x65 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x74 0x69 - 0x74 0x6C 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1724 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_12= 0x20005482 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1732 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752C2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x74 0x72 0x61 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x62 0x65 0x20 0x75 0x73 0x65 - 0x66 0x75 0x6C 0x2C 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x70 0x6C 0x61 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x61 - 0x74 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x2E 0x20 0x20 0x46 0x6F 0x72 0x20 0x65 - 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x69 0x67 0x68 - 0x74 0x20 0x77 0x61 0x6E 0x74 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x6F 0x63 0x63 0x75 - 0x72 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x74 0x69 0x74 - 0x6C 0x65 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x20 0x74 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x20 0x63 - 0x65 0x72 0x74 0x61 0x69 0x6E 0x20 0x6D - 0x6F 0x6F 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1816 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_13= 0x20005483 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1824 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016016 0x00030603 0x20005 0x000305F1 0x0 0x0 0x57415645 0x000752C3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1893 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_14= 0x20005484 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1901 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00016017 0x00030603 0x20062 0x000305F1 0x0 0x0 0x57415645 0x000752C4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 - 0x76 0x65 0x72 0x79 0x74 0x68 0x69 0x6E - 0x67 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1968 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_15= 0x20005485 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1976 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752C5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2038 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_16= 0x20005486 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2046 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752C6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x31 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 0x68 - 0x6F 0x6C 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 - 0x65 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 - 0x74 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2127 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_2B= 0x2000549B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 2135 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x000752DB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2257 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_2D= 0x2000549D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 2265 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752DD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x72 - 0x72 0x6F 0x77 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2357 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_30= 0x200054A0 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 2365 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752E0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2445 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_31= 0x200054A1 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 2453 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 0x20 - 0x6B 0x65 0x65 0x70 0x73 0x20 0x74 0x72 - 0x61 0x63 0x6B 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x49 0x66 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x73 0x20 0x6F 0x75 0x74 - 0x2D 0x6F 0x66 0x2D 0x76 0x69 0x65 0x77 - 0x20 0x6F 0x72 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x4C 0x69 0x73 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x72 0x65 - 0x61 0x70 0x70 0x65 0x61 0x72 0x20 0x6F - 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2552 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -#line 33 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -SET _help_48544F50_0= 0x20005400 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075250 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000541F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 122 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1= 0x20005401 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 130 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075251 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 200 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_2= 0x20005402 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 208 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075252 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x65 0x6E 0x20 0x4E - 0x61 0x6B 0x69 0x74 0x61 0x20 0x73 0x65 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x72 - 0x61 0x74 0x2C 0x20 0x68 0x65 0x72 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x73 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x52 0x75 0x6E 0x20 - 0x28 0x72 0x75 0x6E 0x6E 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x65 - 0x72 0x20 0x61 0x72 0x6D 0x73 0x20 0x62 - 0x79 0x20 0x68 0x65 0x72 0x20 0x73 0x69 - 0x64 0x65 0x29 0x20 0x74 0x6F 0x20 0x52 - 0x75 0x6E 0x20 0x53 0x63 0x61 0x72 0x65 - 0x64 0x20 0x28 0x72 0x75 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 0x20 - 0x68 0x65 0x72 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x69 0x6E 0x20 - 0x66 0x72 0x6F 0x6E 0x74 0x20 0x6F 0x66 - 0x20 0x68 0x65 0x72 0x29 0x2E 0x20 0x20 - 0x57 0x61 0x74 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x20 0x74 0x6F - 0x20 0x73 0x65 0x65 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x64 0x69 0x66 0x66 0x65 0x72 0x65 - 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 294 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_3= 0x20005403 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 302 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075253 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x10 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x41 0x20 0x72 0x61 0x74 0x20 - 0x6A 0x75 0x73 0x74 0x20 0x63 0x72 0x6F - 0x73 0x73 0x65 0x64 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x70 0x61 - 0x74 0x68 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x74 0x61 0x72 0x74 0x6C 0x65 0x64 0x20 - 0x68 0x65 0x72 0x2E 0x20 0x20 0x49 0x20 - 0x61 0x64 0x64 0x65 0x64 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x27 0x73 0x20 0x72 - 0x75 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x77 0x68 0x69 0x63 0x68 - 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x0D 0x0A 0x4E 0x6F 0x77 0x20 - 0x69 0x74 0x92 0x73 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x74 0x75 0x72 0x6E 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x27 - 0x73 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x52 0x75 - 0x6E 0x2A 0x20 0x74 0x6F 0x20 0x52 0x75 - 0x6E 0x20 0x53 0x63 0x61 0x72 0x65 0x64 - 0x2A 0x2C 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x52 0x75 0x6E 0x20 - 0x53 0x63 0x61 0x72 0x65 0x64 0x2A 0x20 - 0x74 0x6F 0x20 0x59 0x65 0x6C 0x6C 0x2E - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 414 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_4= 0x20005404 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 422 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075254 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x4E 0x61 0x6B 0x69 - 0x74 0x61 0x27 0x73 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 492 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_5= 0x20005405 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 500 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075255 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 561 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_6= 0x20005406 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 569 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075256 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005424 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x16 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x52 0x75 0x6E 0x20 0x53 0x63 0x61 - 0x72 0x65 0x64 0x2A 0x2E 0x94 0x0D 0x0A - 0x01 0x20 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x2A 0x20 0x6D 0x65 - 0x61 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 651 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_7= 0x20005407 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 659 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x00075257 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 720 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_8= 0x20005408 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 728 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075258 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x73 0x74 0x6F - 0x21 0x20 0x20 0x54 0x68 0x65 0x20 0x6E - 0x65 0x77 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x69 0x73 0x20 0x61 0x70 0x70 - 0x6C 0x69 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x69 0x73 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x6E 0x2E 0x20 0x20 0x54 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x77 0x20 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 806 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_9= 0x20005409 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 814 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075259 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005423 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x03 - 0xF0 0x00 0x00 0xFD 0xC7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x61 0x72 - 0x6D 0x73 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x68 0x65 0x72 - 0x20 0x73 0x69 0x64 0x65 0x20 0x74 0x6F - 0x20 0x6F 0x75 0x74 0x20 0x69 0x6E 0x20 - 0x66 0x72 0x6F 0x6E 0x74 0x20 0x6F 0x66 - 0x20 0x68 0x65 0x72 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E 0x0D 0x0A 0x01 - 0x20 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x6F 0x6F 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 931 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_A= 0x2000540A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 939 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007525A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x92 0x73 0x20 0x6C - 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1009 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_B= 0x2000540B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1017 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007525B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7E 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA0 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x70 0x65 0x61 - 0x6B 0x0D 0x0A 0x31 0x09 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A - 0x32 0x20 0x20 0x52 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x73 - 0x74 0x61 0x72 0x74 0x73 0x20 0x74 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A - 0x33 0x20 0x20 0x41 0x74 0x74 0x61 0x63 - 0x68 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 - 0x75 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x2E - 0x0D 0x0A 0x34 0x20 0x20 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1106 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_C= 0x2000540C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1114 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007525C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1182 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_D= 0x2000540D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1190 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007525D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B9 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0xFB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x2F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFB 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2F 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x79 - 0x3F 0x0D 0x0A 0x54 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x61 0x6C 0x6C 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x73 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x73 0x20 0x77 0x69 0x74 - 0x68 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x20 0x20 0x54 0x6F - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 - 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 - 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 - 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x73 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x72 0x2E 0x0D 0x0A 0x95 0x09 0x54 - 0x6F 0x20 0x67 0x6F 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x4E 0x65 0x78 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x2D 0x01 0x0D 0x0A - 0x95 0x09 0x54 0x6F 0x20 0x67 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1312 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_E= 0x2000540E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1320 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007525E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 - 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1386 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_F= 0x2000540F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1394 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016017 0x00030603 0x20079 0x000305F1 0x0 0x0 0x57415645 0x0007525F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x70 0x65 0x65 0x63 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1458 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_10= 0x20005410 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1466 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075260 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x4F 0x68 0x20 0x6E 0x6F 0x21 0x20 - 0x20 0x41 0x20 0x72 0x61 0x74 0x21 0x94 - 0x20 0x54 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1530 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_11= 0x20005411 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1538 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075261 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 1596 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_12= 0x20005412 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1604 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075262 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4E 0x61 0x6B 0x69 - 0x74 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1666 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_13= 0x20005413 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1674 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075263 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1743 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_14= 0x20005414 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1751 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075264 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x59 0x65 - 0x6C 0x6C 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x27 0x73 - 0x20 0x61 0x72 0x6D 0x73 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x75 0x70 0x20 0x74 0x6F - 0x20 0x68 0x65 0x72 0x20 0x6D 0x6F 0x75 - 0x74 0x68 0x20 0x61 0x73 0x20 0x69 0x66 - 0x20 0x73 0x68 0x65 0x20 0x69 0x73 0x20 - 0x79 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x48 0x65 0x72 0x20 0x61 0x72 - 0x6D 0x20 0x6D 0x6F 0x76 0x65 0x6D 0x65 - 0x6E 0x74 0x20 0x61 0x64 0x64 0x73 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x77 0x65 - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2C - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x73 0x20 0x6D 0x61 0x64 - 0x65 0x20 0x62 0x79 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x61 0x72 - 0x6D 0x20 0x6D 0x6F 0x76 0x65 0x6D 0x65 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1841 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_15= 0x20005415 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1849 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075265 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x61 0x72 - 0x6D 0x73 0x20 0x73 0x74 0x61 0x72 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x75 0x70 0x20 0x74 0x6F 0x20 0x68 - 0x65 0x72 0x20 0x6D 0x6F 0x75 0x74 0x68 - 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x72 - 0x65 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 - 0x74 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1946 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_16= 0x20005416 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1954 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x00075266 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2024 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_17= 0x20005417 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2032 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075267 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2098 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_18= 0x20005418 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2106 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075268 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x22 0x59 0x65 0x6C - 0x6C 0x22 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2169 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_19= 0x20005419 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2177 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075269 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x6E 0x2C 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 - 0x69 0x74 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x27 - 0x73 0x20 0x61 0x72 0x6D 0x73 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x75 0x70 0x20 0x74 - 0x6F 0x20 0x68 0x65 0x72 0x20 0x6D 0x6F - 0x75 0x74 0x68 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x6F 0x20 0x68 0x65 0x72 0x20 0x73 0x69 - 0x64 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x6F 0x20 0x66 0x61 0x72 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2263 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1A= 0x2000541A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2271 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007526A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x92 0x73 0x20 0x6C - 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2341 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1B= 0x2000541B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2349 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007526B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x21 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x6D 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x73 0x20 0x6E - 0x65 0x65 0x64 0x20 0x64 0x69 0x61 0x6C - 0x6F 0x67 0x75 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x75 0x6C 0x6C 0x79 0x20 0x63 0x6F - 0x6D 0x6D 0x75 0x6E 0x69 0x63 0x61 0x74 - 0x65 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 - 0x61 0x2E 0x20 0x20 0x46 0x6F 0x72 0x20 - 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x20 0x79 0x65 0x6C - 0x6C 0x73 0x2C 0x20 0x69 0x74 0x20 0x73 - 0x65 0x74 0x73 0x20 0x75 0x70 0x20 0x74 - 0x68 0x65 0x20 0x73 0x69 0x74 0x75 0x61 - 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x77 0x65 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 - 0x27 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x22 0x57 - 0x61 0x69 0x74 0x20 0x75 0x70 0x2C 0x20 - 0x57 0x61 0x6E 0x64 0x61 0x22 0x20 0x74 - 0x6F 0x20 0x75 0x6E 0x64 0x65 0x72 0x73 - 0x74 0x61 0x6E 0x64 0x20 0x77 0x68 0x61 - 0x74 0x27 0x73 0x20 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x73 0x68 0x61 0x72 0x65 0x20 0x69 0x6E - 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x69 0x73 0x20 0x61 0x20 0x73 - 0x75 0x63 0x63 0x65 0x73 0x73 0x66 0x75 - 0x6C 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2443 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1C= 0x2000541C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2451 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x0007526C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x54 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x4E - 0x61 0x6B 0x69 0x74 0x61 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x79 0x65 0x6C 0x6C 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x62 - 0x65 0x6C 0x6F 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2522 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1D= 0x2000541D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2530 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007526D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x20 0x57 0x61 0x69 0x74 0x20 0x75 - 0x70 0x2C 0x20 0x57 0x61 0x6E 0x64 0x61 - 0x21 0x94 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2595 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1E= 0x20005424 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2603 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 0x2A - 0x20 0x6D 0x65 0x61 0x6E 0x3F 0x0D 0x0A - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x20 - 0x6D 0x61 0x72 0x6B 0x65 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x6E 0x20 0x61 - 0x73 0x74 0x65 0x72 0x69 0x73 0x6B 0x20 - 0x28 0x2A 0x29 0x20 0x6D 0x65 0x61 0x6E - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x73 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x77 0x6F 0x72 0x6B - 0x20 0x62 0x65 0x73 0x74 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2696 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1F= 0x2000541E - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2704 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x0007526F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2826 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_20= 0x2000541F - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2834 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752A0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x72 - 0x72 0x6F 0x77 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2925 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_21= 0x20005420 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2933 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752A1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3003 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_22= 0x20005421 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3011 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x000752A2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x74 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x6E - 0x65 0x78 0x74 0x20 0x73 0x74 0x65 0x70 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3080 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_23= 0x20005422 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3088 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752A3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3157 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_24= 0x20005423 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3165 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xB8 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x74 0x6F 0x6F 0x20 0x66 - 0x61 0x72 0x2E 0x2E 0x2E 0x0D 0x0A 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x74 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x20 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x67 - 0x6F 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x4E 0x65 0x78 0x74 0x2D - 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 - 0x67 0x6F 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3277 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -#line 34 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -SET _help_48544F50_0= 0x200054B0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x000752F0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054D5 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 121 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1= 0x200054B1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 129 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752F1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 199 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2= 0x200054B2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 207 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752F2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x52 0x6F - 0x74 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x20 0x61 0x6C 0x6C 0x6F 0x77 - 0x20 0x79 0x6F 0x75 0x20 0x74 0x6F 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x77 0x69 0x74 - 0x68 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x70 - 0x6C 0x61 0x79 0x65 0x64 0x2C 0x20 0x74 - 0x68 0x65 0x79 0x20 0x6C 0x6F 0x6F 0x6B - 0x20 0x62 0x65 0x6C 0x69 0x65 0x76 0x61 - 0x62 0x6C 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x27 0x74 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x74 0x6F - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x63 0x6F - 0x6D 0x70 0x6C 0x65 0x74 0x65 0x6C 0x79 - 0x20 0x72 0x65 0x61 0x6C 0x69 0x73 0x74 - 0x69 0x63 0x2E 0x20 0x20 0x4F 0x75 0x72 - 0x20 0x6D 0x69 0x6E 0x64 0x73 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x66 0x69 0x6C 0x6C - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x67 0x61 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 289 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3= 0x200054B3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 297 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000752F3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x69 0x73 0x20 0x74 0x69 0x72 - 0x65 0x64 0x20 0x6F 0x66 0x20 0x77 0x61 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x66 0x6F - 0x72 0x20 0x68 0x69 0x73 0x20 0x70 0x61 - 0x72 0x65 0x6E 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x63 0x72 0x61 0x77 0x6C 0x73 - 0x20 0x6F 0x66 0x66 0x20 0x74 0x6F 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x72 0x65 0x2E - 0x20 0x20 0x48 0x65 0x20 0x6D 0x61 0x6B - 0x65 0x73 0x20 0x69 0x74 0x20 0x61 0x73 - 0x20 0x66 0x61 0x72 0x20 0x61 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x62 0x69 0x67 0x20 0x68 - 0x6F 0x6C 0x65 0x2E 0x0D 0x0A 0x4E 0x6F - 0x77 0x20 0x69 0x74 0x92 0x73 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x74 0x75 0x72 0x6E - 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x47 0x61 0x62 0x72 0x69 0x65 0x6C 0x92 - 0x73 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 406 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_4= 0x200054B4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 414 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030603 0x20064 0x000305F1 0x0 0x0 0x57415645 0x000752F4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x73 0x6F 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x68 0x65 0x20 - 0x69 0x73 0x20 0x66 0x61 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x68 - 0x6F 0x6C 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x52 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 489 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_5= 0x200054B5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 497 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601d 0x00030603 0x2001C 0x000305F1 0x0 0x0 0x57415645 0x000752F5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x69 0x70 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 564 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_6= 0x200054B6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 572 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752F6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x9F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x27 0x73 - 0x20 0x68 0x65 0x61 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x73 0x6F 0x20 0x69 0x74 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x68 0x65 0x20 0x69 - 0x73 0x20 0x73 0x74 0x61 0x72 0x74 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x66 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x68 - 0x6F 0x6C 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 670 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_7= 0x200054B7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 678 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x000752F7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 750 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_8= 0x200054B8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 758 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752F8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 828 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_9= 0x200054B9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 836 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752F9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x92 0x73 0x20 0x66 0x61 0x6C 0x6C - 0x20 0x69 0x73 0x20 0x63 0x6F 0x6D 0x62 - 0x69 0x6E 0x65 0x64 0x20 0x77 0x69 0x74 - 0x68 0x20 0x74 0x77 0x6F 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x65 0x6C 0x65 0x6D - 0x65 0x6E 0x74 0x73 0x97 0x74 0x68 0x65 - 0x20 0x6C 0x6F 0x75 0x64 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x72 0x75 0x73 0x68 0x69 - 0x6E 0x67 0x20 0x77 0x61 0x74 0x65 0x72 - 0x20 0x62 0x65 0x6C 0x6F 0x77 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x75 0x73 0x65 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x92 0x73 0x20 0x66 0x61 0x6C - 0x6C 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x63 0x6F 0x6D 0x62 0x69 0x6E 0x61 0x74 - 0x69 0x6F 0x6E 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x72 0x65 0x65 - 0x20 0x65 0x6C 0x65 0x6D 0x65 0x6E 0x74 - 0x73 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x73 0x20 0x61 0x6E 0x74 0x69 0x63 0x69 - 0x70 0x61 0x74 0x69 0x6F 0x6E 0x20 0x6F - 0x66 0x20 0x77 0x68 0x61 0x74 0x92 0x73 - 0x20 0x74 0x6F 0x20 0x66 0x6F 0x6C 0x6C - 0x6F 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 922 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_A= 0x200054BA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 930 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x000752FA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x66 0x61 0x6C 0x6C 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 996 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_B= 0x200054BB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1004 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752FB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x47 0x61 0x62 0x72 0x69 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1065 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_C= 0x200054BC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1073 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x000752FC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x48 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x46 0x6C 0x79 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 1135 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_D= 0x200054BD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1143 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030603 0x20024 0x000305F1 0x0 0x0 0x57415645 0x000752FD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x39 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1206 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_E= 0x200054BE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1214 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752FE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1274 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_F= 0x200054BF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1282 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016017 0x00030603 0x20022 0x000305F1 0x0 0x0 0x57415645 0x000752FF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EB - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054C0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x07 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x07 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x64 0x72 0x61 - 0x67 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x64 0x6F 0x77 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x55 0x70 - 0x20 0x26 0x20 0x44 0x6F 0x77 0x6E 0x2E - 0x0D 0x0A 0x01 0x20 0x55 0x70 0x20 0x26 - 0x20 0x44 0x6F 0x77 0x6E -ENDCHUNK - - -ENDCHUNK -#line 1373 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_10= 0x200054C0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1381 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075300 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x70 0x20 - 0x26 0x20 0x44 0x6F 0x77 0x6E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x69 0x73 0x20 0x93 0x6F 0x6E 0x2C - 0x94 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x20 0x20 - 0x4F 0x74 0x68 0x65 0x72 0x77 0x69 0x73 - 0x65 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x61 0x6E - 0x64 0x20 0x66 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1474 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_11= 0x200054C1 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1482 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075301 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x66 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x27 0x72 0x65 0x20 0x72 0x65 0x61 - 0x64 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1571 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_12= 0x200054C2 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1579 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x20085 0x000305F1 0x0 0x0 0x57415645 0x00075302 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054C3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x61 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAE 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x65 0x78 0x74 0x72 0x61 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x68 0x6F 0x74 0x20 0x61 0x69 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E - 0x20 0x61 0x70 0x70 0x65 0x61 0x72 0x73 - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x4E - 0x65 0x78 0x74 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x20 0x31 0x30 0x20 - 0x74 0x69 0x6D 0x65 0x73 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E 0x0D 0x0A - 0x01 0x20 0x4E 0x65 0x78 0x74 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 1686 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_13= 0x200054C3 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1694 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075303 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x4E 0x65 0x78 0x74 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x70 0x61 - 0x75 0x73 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x64 0x72 0x61 0x6D 0x61 - 0x74 0x69 0x63 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x4E 0x65 0x78 0x74 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x65 0x78 0x74 0x72 - 0x61 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x73 0x68 0x6F - 0x72 0x74 0x20 0x70 0x61 0x75 0x73 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x20 0x66 0x65 0x77 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x2E 0x20 - 0x20 0x54 0x6F 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x6C 0x6F 0x6E - 0x67 0x65 0x72 0x20 0x70 0x61 0x75 0x73 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x6D 0x61 0x6E 0x79 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1799 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_14= 0x200054C4 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1807 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075304 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1876 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_15= 0x200054C5 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1884 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075305 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x74 0x72 0x6F 0x64 - 0x75 0x63 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x73 0x75 - 0x63 0x68 0x20 0x61 0x73 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x74 0x2D 0x61 0x69 - 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x2C 0x20 0x69 0x73 0x20 0x75 0x6E - 0x65 0x78 0x70 0x65 0x63 0x74 0x65 0x64 - 0x20 0x62 0x75 0x74 0x20 0x61 0x64 0x64 - 0x73 0x20 0x68 0x75 0x6D 0x6F 0x72 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x45 - 0x76 0x65 0x6E 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x20 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x6C 0x61 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x68 0x6F 0x74 0x20 - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x20 0x6D 0x69 0x67 0x68 - 0x74 0x20 0x62 0x65 0x20 0x66 0x61 0x72 - 0x66 0x65 0x74 0x63 0x68 0x65 0x64 0x2C - 0x20 0x49 0x92 0x6D 0x20 0x72 0x65 0x6C - 0x69 0x65 0x76 0x65 0x64 0x2E 0x20 0x20 - 0x41 0x72 0x65 0x6E 0x27 0x74 0x20 0x79 - 0x6F 0x75 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1968 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_16= 0x200054C6 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1976 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016017 0x00030603 0x20076 0x000305F1 0x0 0x0 0x57415645 0x00075306 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x45 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2039 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_17= 0x200054C7 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2047 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x25 0x0 0x57415645 0x00075307 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x92 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2110 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_18= 0x200054C8 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2118 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075308 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x65 0x66 0x74 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x72 0x69 0x64 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2184 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_19= 0x200054C9 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2192 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016017 0x00030603 0x20022 0x000305F1 0x0 0x0 0x57415645 0x00075309 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x6F 0x20 0x69 0x74 - 0x73 0x20 0x73 0x74 0x61 0x72 0x74 0x69 - 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x55 0x70 0x20 0x26 0x20 - 0x44 0x6F 0x77 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2262 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1A= 0x200054CA - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2270 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007530A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x74 0x74 0x6F 0x6D - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 0x77 - 0x69 0x74 0x68 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x65 0x64 0x67 0x65 0x20 0x73 0x68 - 0x6F 0x77 0x69 0x6E 0x67 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x92 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2365 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1B= 0x200054CB - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2373 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007530B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2442 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1C= 0x200054CC - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2450 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007530C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x20 0x76 0x61 - 0x72 0x69 0x65 0x74 0x79 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x62 0x79 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x70 0x61 0x63 0x65 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D 0x61 - 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x73 0x70 0x69 0x6E 0x73 - 0x2C 0x20 0x69 0x74 0x20 0x61 0x64 0x64 - 0x73 0x20 0x61 0x20 0x73 0x65 0x6E 0x73 - 0x65 0x20 0x6F 0x66 0x20 0x63 0x61 0x6C - 0x6D 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2524 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1D= 0x200054CD - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2532 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007530D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x74 0x2D 0x61 0x69 0x72 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x20 0x73 0x70 - 0x69 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2600 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1E= 0x200054CE - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2608 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007530E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2671 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1F= 0x200054CF - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2679 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007530F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x70 0x69 0x6E 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 2740 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_20= 0x200054D0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2748 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x00075310 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2809 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_21= 0x200054D1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2817 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075311 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D 0x61 - 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x73 0x74 0x72 0x61 0x69 - 0x67 0x68 0x74 0x20 0x75 0x70 0x20 0x61 - 0x6E 0x64 0x20 0x6F 0x66 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F - 0x20 0x66 0x61 0x72 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2908 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_22= 0x200054D2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2916 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075312 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xDA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x69 0x6E - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x27 0x73 0x20 0x62 0x61 - 0x73 0x6B 0x65 0x74 0x20 0x61 0x73 0x20 - 0x69 0x74 0x20 0x66 0x6C 0x6F 0x61 0x74 - 0x73 0x20 0x75 0x70 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x72 0x61 - 0x76 0x69 0x6E 0x65 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3018 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_23= 0x200054D3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3026 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075313 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x27 0x73 0x20 0x63 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 0x6F - 0x77 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3097 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_24= 0x200054D4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3105 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075314 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x27 0x73 0x20 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x20 0x73 0x61 0x79 0x73 - 0x20 0x69 0x74 0x20 0x61 0x6C 0x6C 0x21 - 0x20 0x20 0x48 0x65 0x27 0x73 0x20 0x79 - 0x6F 0x75 0x6E 0x67 0x2C 0x20 0x69 0x6E - 0x76 0x69 0x6E 0x63 0x69 0x62 0x6C 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6F - 0x6C 0x2E 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x74 0x65 0x6C 0x6C - 0x20 0x61 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x64 0x6F - 0x6E 0x27 0x74 0x20 0x66 0x6F 0x72 0x67 - 0x65 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x2C 0x20 0x73 - 0x75 0x63 0x68 0x20 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6C 0x6F 0x74 0x68 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 - 0x77 0x65 0x61 0x72 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3188 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_25= 0x200054D5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3196 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075315 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x69 - 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3292 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_26= 0x200054D6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3300 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075316 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3361 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_27= 0x200054D7 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3369 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601c 0x00030603 0x20096 0x000305F1 0x2E 0x8B 0x57415645 0x00075317 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054D8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x68 0x69 - 0x73 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C - 0x69 0x73 0x74 0x2E 0x0D 0x0A 0x01 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C 0x69 - 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3458 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_28= 0x200054D8 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3466 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075318 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 0x20 0x6B - 0x65 0x65 0x70 0x73 0x20 0x74 0x72 0x61 - 0x63 0x6B 0x20 0x6F 0x66 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x69 0x73 0x20 0x6F 0x75 0x74 0x2D - 0x6F 0x66 0x2D 0x76 0x69 0x65 0x77 0x20 - 0x6F 0x72 0x20 0x62 0x65 0x68 0x69 0x6E - 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C - 0x69 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x77 0x69 0x6C 0x6C 0x20 0x72 - 0x65 0x61 0x70 0x70 0x65 0x61 0x72 0x20 - 0x6F 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 - 0x2C 0x20 0x77 0x69 0x74 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C - 0x20 0x72 0x6F 0x74 0x61 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x69 0x74 0x20 - 0x6C 0x65 0x66 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3573 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_29= 0x200054D9 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3581 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075319 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x20 0x77 0x69 0x74 0x68 0x20 0x68 - 0x69 0x73 0x20 0x68 0x65 0x61 0x64 0x20 - 0x66 0x61 0x63 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3649 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2A= 0x200054DA - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3657 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016017 0x00030603 0x20018 0x000305F1 0x0 0x0 0x57415645 0x0007531A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x92 0x73 0x20 0x63 0x6F - 0x73 0x74 0x75 0x6D 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x6F 0x73 0x74 0x75 0x6D 0x65 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3726 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2B= 0x200054DB - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3734 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x0 0x57415645 0x0007531B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 - 0x20 0x63 0x68 0x6F 0x69 0x63 0x65 0x73 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x73 0x74 0x75 0x6D 0x65 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x47 0x61 0x62 - 0x72 0x69 0x65 0x6C 0x27 0x73 0x20 0x73 - 0x68 0x69 0x72 0x74 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x65 0x65 0x20 0x61 0x63 - 0x63 0x65 0x73 0x73 0x6F 0x72 0x79 0x20 - 0x63 0x68 0x6F 0x69 0x63 0x65 0x73 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 - 0x63 0x63 0x65 0x73 0x73 0x6F 0x72 0x69 - 0x65 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x27 0x73 - 0x20 0x68 0x65 0x61 0x64 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3817 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2C= 0x200054DC - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3825 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007531C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3897 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2D= 0x200054DD - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3905 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007531D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x61 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x75 0x64 0x69 - 0x65 0x6E 0x63 0x65 0x20 0x77 0x6F 0x6E - 0x64 0x65 0x72 0x69 0x6E 0x67 0x20 0x77 - 0x68 0x61 0x74 0x92 0x73 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x66 0x6F 0x72 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x2E 0x20 - 0x20 0x43 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x6E 0x20 0x65 0x6E 0x64 0x69 0x6E - 0x67 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x63 0x61 0x72 0x72 - 0x79 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x69 0x6D 0x61 0x67 0x69 0x6E 0x61 0x74 - 0x69 0x6F 0x6E 0x73 0x20 0x62 0x65 0x79 - 0x6F 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3982 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2E= 0x200054DE - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3990 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007531E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x92 0x73 0x20 0x73 0x70 0x69 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4057 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2F= 0x200054DF - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4065 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x0 0x0 0x57415645 0x0007531F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x72 0x72 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x70 0x61 - 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4130 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_30= 0x200054E0 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4138 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075320 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x70 0x69 0x6E 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 4199 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_31= 0x200054E1 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4207 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075321 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x74 0x20 0x61 0x69 - 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x28 0x73 0x6F 0x20 0x47 0x61 - 0x62 0x72 0x69 0x65 0x6C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x20 0x63 0x61 - 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 0x29 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4284 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_32= 0x200054E2 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4292 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030603 0x20053 0x000305F1 0x0 0x0 0x57415645 0x00075322 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 - 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4359 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_33= 0x200054E3 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4367 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075323 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4438 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_34= 0x200054E4 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4446 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001601b 0x00030603 0x20054 0x000305F1 0x0 0x0 0x57415645 0x00075324 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4512 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_35= 0x200054E5 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4520 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016017 0x00030603 0x20022 0x000305F1 0x0 0x0 0x57415645 0x00075325 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x64 0x6F 0x77 0x6E 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x74 0x2D 0x61 0x69 0x72 0x20 - 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x55 - 0x70 0x20 0x26 0x20 0x44 0x6F 0x77 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4591 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_36= 0x200054E6 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4599 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016017 0x00030603 0x20017 0x000305F1 0x0 0x0 0x57415645 0x00075326 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4665 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_37= 0x200054E7 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 4673 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075327 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x27 - 0x73 0x20 0x62 0x61 0x73 0x6B 0x65 0x74 - 0x2E 0x20 0x20 0x49 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x63 0x6F 0x76 0x65 0x72 0x73 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x2C 0x20 0x70 0x72 0x65 0x73 0x73 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 0x61 - 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4774 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_38= 0x200054E8 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 4782 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075328 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4850 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_39= 0x200054E9 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4858 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075329 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4938 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3A= 0x200054EA - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 4946 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007532A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 5040 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3B= 0x200054EB - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5048 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007532B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 5142 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3C= 0x200054EC - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5150 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x0007532C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 5272 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3D= 0x200054ED - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5280 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00016017 0x00030603 0x20017 0x000305F1 0x0 0x0 0x57415645 0x0007532D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5346 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3E= 0x200054EE - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5354 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601c 0x00030603 0x20096 0x000305F1 0x2E 0x8B 0x57415645 0x0007532E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x68 0x69 0x73 0x20 0x70 - 0x69 0x63 0x74 0x75 0x72 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5423 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3F= 0x200054EF - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5431 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007532F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5493 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -#line 35 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -SET _help_48544F50_0= 0x200054F0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016017 0x00030603 0x20075 0x000305F1 0x0 0x0 0x57415645 0x00075330 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1= 0x200054F1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 105 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075331 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054F3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 194 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2= 0x200054F2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 202 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075332 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 272 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3= 0x200054F3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 280 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075333 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x69 - 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 374 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4= 0x200054F4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 382 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075334 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x20 0x53 0x71 - 0x75 0x61 0x73 0x68 0x2C 0x20 0x53 0x74 - 0x72 0x65 0x74 0x63 0x68 0x2C 0x20 0x53 - 0x68 0x72 0x69 0x6E 0x6B 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x47 0x72 0x6F 0x77 0x20 - 0x61 0x72 0x65 0x20 0x64 0x69 0x66 0x66 - 0x65 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x53 - 0x69 0x7A 0x65 0x20 0x74 0x6F 0x6F 0x6C - 0x73 0x2E 0x20 0x20 0x54 0x68 0x65 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x20 0x6E 0x6F 0x74 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x73 0x68 0x61 0x70 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x69 0x7A 0x65 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x6F 0x72 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x74 0x68 0x65 - 0x79 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6F 0x72 0x20 0x70 0x72 - 0x6F 0x70 0x27 0x73 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x62 0x79 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x76 0x61 0x72 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x63 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 - 0x6D 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x69 0x74 0x68 0x20 0x74 0x68 0x65 0x20 - 0x74 0x77 0x6F 0x20 0x73 0x70 0x65 0x65 - 0x64 0x73 0x3A 0x20 0x20 0x53 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x61 0x6E 0x64 0x20 - 0x53 0x68 0x72 0x69 0x6E 0x6B 0x20 0x46 - 0x61 0x73 0x74 0x2C 0x20 0x47 0x72 0x6F - 0x77 0x20 0x61 0x6E 0x64 0x20 0x47 0x72 - 0x6F 0x77 0x20 0x46 0x61 0x73 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 482 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_5= 0x200054F5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 490 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075335 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x01 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x20 - 0x77 0x61 0x6E 0x74 0x73 0x20 0x61 0x20 - 0x6E 0x65 0x77 0x20 0x69 0x64 0x65 0x6E - 0x74 0x69 0x74 0x79 0x2E 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x74 0x68 0x65 - 0x20 0x61 0x62 0x73 0x65 0x6E 0x74 0x2D - 0x6D 0x69 0x6E 0x64 0x65 0x64 0x20 0x70 - 0x72 0x6F 0x66 0x65 0x73 0x73 0x6F 0x72 - 0x20 0x68 0x61 0x73 0x20 0x61 0x67 0x72 - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x65 0x6C 0x70 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x65 0x78 0x70 0x65 0x72 0x69 - 0x6D 0x65 0x6E 0x74 0x20 0x73 0x74 0x61 - 0x72 0x74 0x65 0x64 0x20 0x77 0x69 0x74 - 0x68 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x3A 0x20 0x20 - 0x53 0x71 0x75 0x61 0x73 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x53 0x74 0x72 0x65 0x74 - 0x63 0x68 0x2E 0x0D 0x0A 0x4E 0x6F 0x77 - 0x20 0x69 0x74 0x92 0x73 0x20 0x79 0x6F - 0x75 0x72 0x20 0x74 0x75 0x72 0x6E 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x53 - 0x71 0x75 0x61 0x73 0x68 0x2C 0x20 0x53 - 0x74 0x72 0x65 0x74 0x63 0x68 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x53 0x68 0x72 0x69 - 0x6E 0x6B 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 600 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_6= 0x200054F6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 608 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075336 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x92 0x73 - 0x20 0x53 0x71 0x75 0x61 0x73 0x68 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 676 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_7= 0x200054F7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 684 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075337 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x47 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 746 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_8= 0x200054F8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 754 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x0 0x0 0x57415645 0x00075338 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 814 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_9= 0x200054F9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 822 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075339 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x57 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x53 0x71 0x75 0x61 0x73 0x68 0x2E - 0x94 -ENDCHUNK - - -ENDCHUNK -#line 884 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_A= 0x200054FA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 892 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x0007533A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 953 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_B= 0x200054FB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 961 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007533B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x9B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x92 0x73 0x20 0x68 - 0x65 0x61 0x64 0x20 0x69 0x73 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x65 0x64 0x20 - 0x62 0x65 0x6C 0x6F 0x77 0x20 0x74 0x68 - 0x65 0x20 0x74 0x61 0x62 0x6C 0x65 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1045 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_C= 0x200054FC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1053 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007533C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x92 0x73 - 0x20 0x53 0x74 0x72 0x65 0x74 0x63 0x68 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 - 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1120 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_D= 0x200054FD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1128 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007533D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x62 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x53 0x74 0x72 0x65 0x74 0x63 0x68 - 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 1190 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_E= 0x200054FE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1198 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007533E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x92 0x73 0x20 0x68 - 0x65 0x61 0x64 0x20 0x69 0x73 0x20 0x6F - 0x75 0x74 0x2D 0x6F 0x66 0x2D 0x76 0x69 - 0x65 0x77 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x77 0x68 0x61 0x74 - 0x20 0x79 0x6F 0x75 0x92 0x76 0x65 0x20 - 0x64 0x6F 0x6E 0x65 0x20 0x73 0x6F 0x20 - 0x66 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1280 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_F= 0x200054FF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1288 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007533F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x73 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x20 0x68 0x61 0x72 - 0x64 0x6C 0x79 0x20 0x73 0x65 0x65 0x20 - 0x68 0x69 0x6D 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1358 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_10= 0x20005500 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1366 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075340 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x53 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x46 0x61 0x73 0x74 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 1428 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_11= 0x20005501 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1436 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075341 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x20 0x69 0x73 0x20 - 0x76 0x65 0x72 0x79 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x73 0x6F 0x20 0x66 0x61 0x72 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1519 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_12= 0x20005502 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1527 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075342 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x42 0x6F 0x6E - 0x67 0x6F 0x20 0x69 0x73 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x92 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1623 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_13= 0x20005503 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1631 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x00075343 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1702 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_14= 0x20005504 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1710 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075344 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1780 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_15= 0x20005505 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1788 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075345 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x73 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x61 0x73 0x74 0x20 0x6E 0x6F 0x74 0x69 - 0x63 0x65 0x61 0x62 0x6C 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x2D 0x2D 0x69 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x63 0x61 - 0x73 0x65 0x2C 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x20 - 0x20 0x52 0x65 0x63 0x6F 0x72 0x64 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x69 0x6E 0x20 0x66 0x75 - 0x6C 0x6C 0x2C 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x92 0x64 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x63 0x75 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1873 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_16= 0x20005506 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1881 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016016 0x00030603 0x20042 0x000305F1 0x0 0x0 0x57415645 0x00075346 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 - 0x6C 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1948 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_17= 0x20005507 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1956 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016017 0x00030603 0x20014 0x000305F1 0x0 0x0 0x57415645 0x00075347 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2023 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_18= 0x20005508 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2031 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x43 0x0 0x57415645 0x00075348 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x69 0x73 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2094 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_19= 0x20005509 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2102 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075349 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 - 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2183 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1A= 0x2000550A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2191 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007534A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2261 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1B= 0x2000550B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2269 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007534B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x45 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x20 0x70 0x72 0x6F 0x70 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x65 0x61 - 0x76 0x65 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x69 0x6E 0x20 0x61 0x77 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 2334 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1C= 0x2000550C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2342 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x0007534C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x6F 0x70 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2409 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1D= 0x2000550D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2417 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016017 0x00030603 0x20076 0x000305F1 0x0 0x0 0x57415645 0x0007534D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x43 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2483 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1E= 0x2000550E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2491 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x25 0x0 0x57415645 0x0007534E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2553 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1F= 0x2000550F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2561 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007534F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x74 0x68 0x65 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 0x6F - 0x6E 0x20 0x69 0x6E 0x20 0x66 0x72 0x6F - 0x6E 0x74 0x20 0x6F 0x66 0x20 0x42 0x6F - 0x6E 0x67 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2626 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_20= 0x20005510 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2634 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016017 0x00030603 0x20065 0x000305F1 0x0 0x0 0x57415645 0x00075350 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x64 - 0x75 0x63 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x69 0x7A 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2703 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_21= 0x20005511 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2711 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00016019 0x00030603 0x20021 0x000305F1 0x0 0xFFFFFFEC 0x57415645 0x00075351 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2776 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_22= 0x20005512 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2784 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075352 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x72 0x61 0x67 0x20 0x69 0x6E 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x69 0x73 0x20 0x74 0x68 - 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x20 0x61 0x73 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2868 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_23= 0x20005513 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 2876 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075353 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2935 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_24= 0x20005514 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 2943 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075354 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3012 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_25= 0x20005515 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3020 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075355 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x69 0x73 0x20 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x20 0x63 0x6F 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x6C 0x69 0x66 0x65 0x20 - 0x62 0x79 0x20 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x69 0x74 0x20 0x67 0x72 0x6F - 0x77 0x20 0x66 0x61 0x73 0x74 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x66 0x61 0x73 - 0x74 0x65 0x72 0x20 0x73 0x70 0x65 0x65 - 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x47 0x72 0x6F 0x77 0x20 0x46 0x61 - 0x73 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2D 0x2D 0x63 0x6F 0x6D 0x70 0x61 - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x47 0x72 0x6F 0x77 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x2D - 0x6D 0x61 0x6B 0x65 0x73 0x20 0x74 0x68 - 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x20 0x62 0x65 0x6C 0x69 - 0x65 0x76 0x61 0x62 0x6C 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x6D 0x6F 0x72 0x65 0x20 - 0x64 0x72 0x61 0x6D 0x61 0x74 0x69 0x63 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3104 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_26= 0x20005516 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3112 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075356 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x74 0x68 0x65 0x20 0x47 0x72 0x6F - 0x77 0x20 0x46 0x61 0x73 0x74 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3179 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_27= 0x20005517 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3187 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075357 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x76 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3249 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_28= 0x20005518 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3257 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075358 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x47 0x72 0x6F 0x77 0x20 0x46 0x61 - 0x73 0x74 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 3319 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_29= 0x20005519 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3327 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075359 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x73 0x69 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x62 - 0x69 0x67 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3410 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2A= 0x2000551A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3418 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x0007535A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x62 0x65 0x6C 0x6F 0x77 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x73 0x69 0x6F 0x6E 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x6E - 0x65 0x78 0x74 0x20 0x73 0x74 0x65 0x70 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x47 0x61 0x64 0x67 - 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3502 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2B= 0x2000551B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3510 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007535B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3580 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2C= 0x2000551C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3588 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007535C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x73 0x2C - 0x20 0x73 0x75 0x63 0x68 0x20 0x61 0x73 - 0x20 0x93 0x45 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x20 0x42 0x69 0x67 0x2C - 0x94 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x73 0x69 0x6F 0x6E 0x20 0x69 0x6D 0x70 - 0x6F 0x72 0x74 0x61 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x61 0x64 0x64 0x20 0x73 - 0x75 0x73 0x70 0x65 0x6E 0x73 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x69 0x73 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x70 - 0x61 0x63 0x6B 0x65 0x64 0x20 0x73 0x65 - 0x71 0x75 0x65 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3662 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2D= 0x2000551D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3670 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007535D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x65 0x66 0x66 0x65 0x63 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3737 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2E= 0x2000551E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3745 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016017 0x00030603 0x20078 0x000305F1 0x0 0x0 0x57415645 0x0007535E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 - 0x66 0x65 0x63 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3812 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2F= 0x2000551F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 3820 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007535F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x62 0x69 0x67 0x2E 0x94 - 0x20 0x54 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3884 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_30= 0x20005520 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 3892 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075360 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3961 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_31= 0x20005521 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 3969 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075361 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x72 0x6F 0x6F 0x6D 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x2C - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x65 0x78 - 0x70 0x6C 0x6F 0x73 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4043 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_32= 0x20005522 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4051 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030603 0x20056 0x000305F1 0x0 0x0 0x57415645 0x00075362 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x39 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4114 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_33= 0x20005523 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4122 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075363 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4193 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_34= 0x20005524 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4201 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075364 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4270 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_35= 0x20005525 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4278 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075365 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x73 0x74 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x72 0x66 0x65 0x63 0x74 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6C 0x69 0x6D - 0x61 0x78 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x62 0x69 0x67 0x20 0x63 - 0x68 0x61 0x6C 0x6C 0x65 0x6E 0x67 0x65 - 0x21 0x20 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x61 0x72 0x65 0x20 0x74 0x77 - 0x6F 0x20 0x65 0x78 0x74 0x72 0x65 0x6D - 0x65 0x73 0x2E 0x20 0x20 0x43 0x6F 0x6D - 0x65 0x64 0x79 0x20 0x74 0x68 0x72 0x69 - 0x76 0x65 0x73 0x20 0x6F 0x6E 0x20 0x63 - 0x6F 0x6D 0x70 0x61 0x72 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x72 0x61 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x6F 0x70 0x70 0x6F 0x73 0x69 0x74 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4359 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_36= 0x20005526 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4367 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x00075366 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x87 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4433 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_37= 0x20005527 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 4441 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x25 0x0 0x57415645 0x00075367 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4504 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_38= 0x20005528 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 4512 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075368 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x58 0x2C 0x20 0x66 0x61 0x63 - 0x69 0x6E 0x67 0x20 0x57 0x69 0x6C 0x6C - 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4579 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_39= 0x20005529 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4587 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016017 0x00030603 0x20065 0x000305F1 0x0 0x0 0x57415645 0x00075369 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x64 - 0x75 0x63 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x69 0x7A 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4657 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3A= 0x2000552A - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 4665 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007536A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 4759 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3B= 0x2000552B - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 4767 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007536B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 4861 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3C= 0x2000552C - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 4869 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00016019 0x00030603 0x20021 0x000305F1 0x0 0xFFFFFFEC 0x57415645 0x0007536C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4936 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3D= 0x2000552D - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 4944 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007536D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x69 0x6E 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E - 0x20 0x69 0x73 0x20 0x76 0x65 0x72 0x79 - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x72 0x65 0x61 - 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 - 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5026 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3E= 0x2000552E - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5034 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007536E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5103 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3F= 0x2000552F - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5111 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007536F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x47 0x72 - 0x6F 0x77 0x20 0x46 0x61 0x73 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x75 0x64 - 0x69 0x65 0x6E 0x63 0x65 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 - 0x6C 0x65 0x74 0x6F 0x6E 0x20 0x69 0x73 - 0x20 0x93 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x94 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x65 0x78 - 0x70 0x6C 0x6F 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5183 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_40= 0x20005530 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 5191 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075370 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x74 0x68 0x65 0x20 0x47 0x72 0x6F - 0x77 0x20 0x46 0x61 0x73 0x74 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5258 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_41= 0x20005531 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 5266 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075381 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x47 0x72 0x6F 0x77 0x20 0x46 0x61 - 0x73 0x74 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 5328 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_42= 0x20005532 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 5336 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075382 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 - 0x6F 0x6E 0x20 0x69 0x73 0x20 0x68 0x69 - 0x73 0x20 0x6F 0x72 0x69 0x67 0x69 0x6E - 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x92 0x76 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5418 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_43= 0x20005533 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 5426 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075383 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5495 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_44= 0x20005534 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 5503 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075384 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x92 0x73 - 0x20 0x57 0x61 0x6C 0x6B 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x69 0x73 0x20 0x65 0x78 0x69 - 0x74 0x20 0x6F 0x66 0x66 0x2D 0x73 0x74 - 0x61 0x67 0x65 0x20 0x61 0x72 0x65 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x20 0x77 - 0x61 0x79 0x73 0x20 0x74 0x6F 0x20 0x69 - 0x6E 0x64 0x69 0x63 0x61 0x74 0x65 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x6F - 0x72 0x2C 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x69 0x73 0x20 0x63 0x61 0x73 0x65 0x2C - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5579 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_45= 0x20005535 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 5587 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075385 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 - 0x6C 0x65 0x74 0x6F 0x6E 0x92 0x73 0x20 - 0x57 0x61 0x6C 0x6B 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5656 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_46= 0x20005536 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 5664 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075386 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x53 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x57 0x61 0x6C 0x6B 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 5725 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_47= 0x20005537 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 5733 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075387 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000552A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C 0x65 - 0x74 0x6F 0x6E 0x20 0x6C 0x65 0x66 0x74 - 0x2C 0x20 0x6F 0x66 0x66 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x74 0x66 0x6F - 0x72 0x6D 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x75 0x74 0x2D 0x6F 0x66 0x2D 0x76 - 0x69 0x65 0x77 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5826 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_48= 0x20005538 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 5834 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075388 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x73 0x74 0x61 0x72 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x77 0x61 0x6C 0x6B - 0x20 0x62 0x75 0x74 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x73 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5931 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_49= 0x20005539 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 5939 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075389 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x72 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 - 0x6F 0x6E 0x20 0x77 0x61 0x6C 0x6B 0x20 - 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 0x74 - 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 0x6D - 0x65 0x64 0x20 0x73 0x69 0x7A 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6012 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4A= 0x2000553A - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 6020 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007538A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x03 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 0x6E - 0x20 0x68 0x69 0x73 0x20 0x74 0x72 0x61 - 0x6E 0x73 0x66 0x6F 0x72 0x6D 0x65 0x64 - 0x20 0x73 0x74 0x61 0x74 0x65 0x2C 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x6F 0x66 0x20 0x68 0x69 0x73 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x69 0x7A 0x65 0x20 0x74 - 0x6F 0x6F 0x6C 0x73 0x20 0x74 0x6F 0x20 - 0x67 0x72 0x6F 0x77 0x2C 0x20 0x72 0x65 - 0x64 0x75 0x63 0x65 0x2C 0x20 0x73 0x71 - 0x75 0x61 0x73 0x68 0x20 0x6F 0x72 0x20 - 0x73 0x74 0x72 0x65 0x74 0x63 0x68 0x20 - 0x68 0x69 0x6D 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x73 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x65 0x64 0x20 0x73 - 0x69 0x7A 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6105 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4B= 0x2000553B - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 6113 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x00016017 0x00030603 0x20065 0x000305F1 0x0 0x0 0x57415645 0x0007538B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x20 0x74 - 0x61 0x6C 0x6C 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x69 0x7A 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6181 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4C= 0x2000553C - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 6189 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x00016019 0x00030603 0x20021 0x000305F1 0x0 0xFFFFFFEC 0x57415645 0x0007538C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6254 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4D= 0x2000553D - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 6262 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007538D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x65 0x6E 0x6C 0x61 0x72 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x20 0x74 - 0x6F 0x20 0x68 0x69 0x73 0x20 0x6F 0x72 - 0x69 0x67 0x69 0x6E 0x61 0x6C 0x20 0x73 - 0x69 0x7A 0x65 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x65 - 0x6E 0x64 0x69 0x6E 0x67 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6347 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4E= 0x2000553E - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 6355 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007538E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 - 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6436 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4F= 0x2000553F - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 6444 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007538F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6524 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_50= 0x20005540 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 6532 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x00075390 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 6654 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_51= 0x20005541 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 6662 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075391 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6724 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -#line 36 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -SET _help_48544F50_0= 0x200056A0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075440 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 100 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1= 0x200056A1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 108 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075441 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056A3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x20 0x41 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 200 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2= 0x200056A2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 208 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075442 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 278 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_3= 0x200056A3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 286 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075443 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x69 - 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 381 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_4= 0x200056A4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 389 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075444 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x68 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x6D 0x62 0x69 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x20 0x6F 0x66 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x69 0x74 0x20 0x62 - 0x75 0x69 0x6C 0x64 0x73 0x20 0x73 0x75 - 0x73 0x70 0x65 0x6E 0x73 0x65 0x20 0x73 - 0x6C 0x6F 0x77 0x6C 0x79 0x2E 0x20 0x20 - 0x41 0x66 0x74 0x65 0x72 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x20 0x74 0x68 0x69 0x73 0x20 0x70 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x2C 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x72 0x79 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x63 - 0x6F 0x6D 0x62 0x69 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x73 0x2E 0x20 0x20 0x44 0x69 - 0x73 0x63 0x6F 0x76 0x65 0x72 0x20 0x68 - 0x6F 0x77 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x6F 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 478 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_5= 0x200056A5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 486 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075445 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x30 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x42 0x65 0x6E 0x65 0x64 0x69 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x75 0x6D 0x6D 0x79 0x2C 0x20 0x68 - 0x61 0x73 0x20 0x72 0x65 0x74 0x75 0x72 - 0x6E 0x65 0x64 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x20 0x6A 0x6F 0x67 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6C 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x6D 0x75 0x73 0x65 0x75 0x6D 0x2E - 0x20 0x20 0x48 0x65 0x20 0x6D 0x75 0x73 - 0x74 0x20 0x67 0x65 0x74 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x66 0x66 0x69 0x6E 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x67 0x6F 0x6E 0x65 0x2E 0x0D 0x0A - 0x4E 0x6F 0x77 0x20 0x69 0x74 0x92 0x73 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x75 0x63 0x68 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x75 0x73 0x69 0x63 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x74 0x65 0x6E 0x73 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x73 0x75 - 0x73 0x70 0x65 0x6E 0x73 0x65 0x2E 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 603 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_6= 0x200056A6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 611 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075446 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056CF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x42 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x77 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 0x61 - 0x72 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x49 0x6E 0x64 - 0x69 0x63 0x61 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 702 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_7= 0x200056A7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 710 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x20088 0x000305F1 0x0 0x0 0x57415645 0x00075447 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x77 0x69 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x31 0x2E -ENDCHUNK - - -ENDCHUNK -#line 788 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_8= 0x200056A8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 796 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016017 0x00030603 0x2007A 0x000305F1 0x0 0x0 0x57415645 0x00075448 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x69 0x65 0x63 0x65 0x20 0x6F - 0x66 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x63 - 0x68 0x61 0x69 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4D 0x75 0x73 0x69 - 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 866 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_9= 0x200056A9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 874 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075449 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x72 0x75 0x6E 0x20 0x61 0x77 0x61 - 0x79 0x20 0x31 0x2E 0x22 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 938 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_A= 0x200056AA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 946 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x0 0x0 0x57415645 0x0007544A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1008 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_B= 0x200056AB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1016 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007544B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056AC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x61 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x69 0x73 - 0x20 0x70 0x69 0x65 0x63 0x65 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x73 - 0x65 0x71 0x75 0x65 0x6E 0x63 0x65 0x2C - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x01 0x43 0x68 0x61 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x4D 0x75 0x73 - 0x69 0x63 -ENDCHUNK - - -ENDCHUNK -#line 1107 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_C= 0x200056AC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1115 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007544C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x43 0x74 0x72 0x6C - 0x20 0x6B 0x65 0x79 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x61 0x72 0x65 0x20 0x63 0x68 - 0x61 0x69 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x6E 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x6E 0x65 0x77 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x70 0x6C 0x61 0x79 - 0x73 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x68 0x61 0x69 - 0x6E 0x2D 0x2D 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x27 0x74 0x20 0x69 0x6E 0x73 - 0x65 0x72 0x74 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 - 0x65 0x72 0x2C 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x64 0x6F 0x20 0x69 0x74 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x77 0x61 0x73 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x65 0x64 0x20 0x28 0x69 - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x63 - 0x61 0x73 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x31 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1227 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_D= 0x200056AD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1235 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030603 0x2007A 0x000305F1 0x0 0x0 0x57415645 0x0007544D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x70 0x69 0x65 0x63 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4D 0x75 0x73 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1301 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_E= 0x200056AE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1309 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007544E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x77 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x72 0x75 0x6E 0x20 0x61 0x77 0x61 - 0x79 0x20 0x32 0x2E 0x22 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1373 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_F= 0x200056AF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1381 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007544F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1447 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_10= 0x200056B0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1455 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075450 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x61 0x74 0x74 0x61 0x63 0x6B 0x2E - 0x22 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1519 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_11= 0x200056B1 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1527 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00016017 0x00030603 0x2007A 0x000305F1 0x0 0x0 0x57415645 0x00075451 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x70 0x69 0x65 0x63 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4D 0x75 0x73 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1594 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_12= 0x200056B2 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1602 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075452 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x65 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x6D 0x6F 0x6E 0x73 0x74 0x65 0x72 - 0x2E 0x22 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1666 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_13= 0x200056B3 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1674 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075453 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1742 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_14= 0x200056B4 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1750 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075454 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x47 0x75 0x73 - 0x74 0x61 0x76 0x65 0x20 0x68 0x61 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x63 0x6F - 0x6D 0x65 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x72 0x6F 0x6F - 0x6D 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1848 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_15= 0x200056B5 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1856 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x00075455 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1927 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_16= 0x200056B6 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1935 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075456 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2006 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_17= 0x200056B7 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2014 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075457 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x4D 0x61 0x74 - 0x63 0x68 0x65 0x72 0x20 0x69 0x73 0x20 - 0x61 0x20 0x75 0x73 0x65 0x66 0x75 0x6C - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x65 - 0x6D 0x70 0x68 0x61 0x73 0x69 0x7A 0x65 - 0x20 0x61 0x20 0x73 0x70 0x65 0x63 0x69 - 0x66 0x69 0x63 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x42 0x79 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x27 0x73 0x20 0x66 0x6F - 0x6F 0x74 0x73 0x74 0x65 0x70 0x2C 0x20 - 0x49 0x27 0x6D 0x20 0x64 0x72 0x61 0x77 - 0x69 0x6E 0x67 0x20 0x61 0x74 0x74 0x65 - 0x6E 0x74 0x69 0x6F 0x6E 0x20 0x74 0x6F - 0x20 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 - 0x65 0x6D 0x65 0x6E 0x74 0x20 0x61 0x6E - 0x64 0x20 0x77 0x68 0x61 0x74 0x27 0x73 - 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x68 0x61 0x70 0x70 0x65 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x47 0x75 - 0x73 0x74 0x61 0x76 0x65 0x20 0x72 0x65 - 0x74 0x75 0x72 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2100 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_18= 0x200056B8 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2108 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016017 0x00030603 0x20078 0x000305F1 0x0 0x0 0x57415645 0x00075458 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x61 0x20 0x66 0x6F 0x6F 0x74 - 0x73 0x74 0x65 0x70 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x45 0x66 0x66 0x65 0x63 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2175 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_19= 0x200056B9 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2183 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075459 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x73 0x74 0x65 0x70 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x20 0x72 0x69 0x67 0x68 - 0x74 0x2E 0x94 0x0D 0x0A 0x54 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2248 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1A= 0x200056BA - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2256 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016017 0x00030603 0x2002A 0x000305F1 0x0 0x0 0x57415645 0x0007545A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 0x68 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2322 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1B= 0x200056BB - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2330 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007545B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2391 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1C= 0x200056BC - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2399 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20085 0x000305F1 0x0 0x0 0x57415645 0x0007545C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x4E 0x65 0x78 0x74 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x01 0x20 0x32 0x20 0x74 0x6F 0x20 0x33 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x67 0x65 0x74 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x27 - 0x73 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x66 0x6F 0x6F 0x74 0x20 0x68 0x69 0x74 - 0x73 0x20 0x74 0x68 0x65 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2497 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1D= 0x200056BD - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2505 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007545D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2576 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1E= 0x200056BE - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2584 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007545E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x92 0x73 0x20 0x66 0x6F 0x6F 0x74 - 0x73 0x74 0x65 0x70 0x73 0x20 0x61 0x72 - 0x65 0x20 0x6D 0x65 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x64 0x72 0x61 0x77 0x20 - 0x61 0x74 0x74 0x65 0x6E 0x74 0x69 0x6F - 0x6E 0x20 0x74 0x6F 0x20 0x68 0x69 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x61 0x62 - 0x6F 0x75 0x74 0x73 0x2C 0x20 0x77 0x68 - 0x79 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x42 0x65 0x6E 0x65 0x64 0x69 - 0x63 0x74 0x20 0x68 0x61 0x76 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F - 0x6E 0x6E 0x65 0x63 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 0x66 - 0x6F 0x6F 0x74 0x73 0x74 0x65 0x70 0x73 - 0x3F 0x20 0x20 0x42 0x65 0x6E 0x65 0x64 - 0x69 0x63 0x74 0x20 0x69 0x73 0x20 0x74 - 0x72 0x79 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x71 0x75 0x69 0x65 - 0x74 0x2E 0x20 0x20 0x49 0x6E 0x20 0x63 - 0x6F 0x6E 0x74 0x72 0x61 0x73 0x74 0x2C - 0x20 0x68 0x69 0x73 0x20 0x66 0x6F 0x6F - 0x74 0x73 0x74 0x65 0x70 0x73 0x20 0x61 - 0x72 0x65 0x20 0x73 0x69 0x6C 0x65 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2671 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1F= 0x200056BF - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2679 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007545F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x73 0x74 0x65 0x70 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x20 0x6C 0x65 0x66 0x74 - 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2744 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_20= 0x200056C0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2752 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075460 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2833 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_21= 0x200056C1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2841 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075461 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x20 0x66 0x6F 0x72 0x20 0x70 0x61 - 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2915 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_22= 0x200056C2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2923 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075462 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x57 0x61 0x69 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 0x20 - 0x61 0x6C 0x6C 0x6F 0x77 0x73 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x69 0x74 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 0x73 - 0x20 0x69 0x6E 0x73 0x74 0x65 0x61 0x64 - 0x20 0x6F 0x66 0x20 0x63 0x75 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 0x6F - 0x66 0x66 0x2E 0x20 0x20 0x54 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x75 0x73 0x65 - 0x66 0x75 0x6C 0x20 0x65 0x73 0x70 0x65 - 0x63 0x69 0x61 0x6C 0x6C 0x79 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x27 0x76 0x65 - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x65 - 0x64 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3005 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_23= 0x200056C3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3013 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016017 0x00030603 0x20005 0x000305F1 0x0 0x0 0x57415645 0x00075463 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 3073 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_24= 0x200056C4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3081 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x00016017 0x00030603 0x2004E 0x000305F1 0x0 0x0 0x57415645 0x00075464 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056CE -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x6E 0x20 0x57 0x61 - 0x69 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x45 0x6E 0x64 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3175 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_25= 0x200056C5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3183 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075465 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x69 0x66 0x20 0x69 0x74 0x20 0x77 - 0x6F 0x72 0x6B 0x65 0x64 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3262 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_26= 0x200056C6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3270 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075466 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3339 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_27= 0x200056C7 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3347 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075467 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x68 0x61 - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x65 0x73 0x74 0x20 - 0x69 0x6D 0x70 0x61 0x63 0x74 0x20 0x61 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x65 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x65 0x6C 0x6C 0x20 0x75 0x73 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x6E 0x65 0x77 0x2E 0x20 - 0x20 0x4D 0x79 0x20 0x6C 0x69 0x6E 0x65 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x65 0x6C 0x6C 0x73 0x20 0x75 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x69 0x73 0x20 0x6F - 0x76 0x65 0x72 0x2C 0x20 0x77 0x68 0x69 - 0x63 0x68 0x20 0x69 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x77 0x65 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x6B 0x6E 0x6F 0x77 0x2E - 0x20 0x20 0x4C 0x65 0x74 0x27 0x73 0x20 - 0x67 0x65 0x74 0x20 0x72 0x69 0x64 0x20 - 0x6F 0x66 0x20 0x69 0x74 0x21 -ENDCHUNK - - -ENDCHUNK -#line 3431 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_28= 0x200056C8 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3439 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075468 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3507 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_29= 0x200056C9 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3515 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x20052 0x000305F1 0x0 0x0 0x57415645 0x00075469 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3579 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2A= 0x200056CA - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3587 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007546A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x66 0x66 - 0x69 0x6E 0x2D 0x2D 0x49 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x6D - 0x79 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x69 0x73 0x20 - 0x70 0x72 0x6F 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3654 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2B= 0x200056CB - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3662 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x0 0x57415645 0x0007546B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x67 0x65 0x74 - 0x20 0x72 0x69 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6F 0x74 0x74 0x6F 0x6D 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3734 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2C= 0x200056CC - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3742 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007546C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x68 0x6F - 0x6C 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x20 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3821 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2D= 0x200056CD - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3829 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x0007546D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 3951 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2E= 0x200056CF - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3959 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x14 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x49 0x6E 0x64 0x69 0x63 - 0x61 0x74 0x6F 0x72 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x61 0x74 0x20 0x61 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x68 - 0x61 0x76 0x65 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x65 0x64 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2C 0x20 0x79 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x73 0x65 0x65 0x20 0x61 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x6E - 0x6F 0x74 0x65 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x69 - 0x6E 0x67 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x2C 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4060 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_4F= 0x200056CE - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 4068 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007546E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x95 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x95 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 - 0x75 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x69 - 0x73 0x20 0x70 0x75 0x73 0x68 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x67 0x68 - 0x74 0x20 0x69 0x73 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x66 0x66 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x66 0x66 - 0x2C 0x22 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x70 0x6F - 0x70 0x73 0x20 0x6F 0x75 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x67 0x68 0x74 0x20 0x69 0x73 0x20 - 0x6F 0x66 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4167 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -#line 37 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -SET _help_48544F50_0= 0x20005700 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x63 0x6F 0x6E 0x76 0x65 - 0x72 0x73 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_1= 0x20005701 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 104 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 168 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_2= 0x20005702 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 176 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 240 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_3= 0x20005703 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 248 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 312 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_4= 0x20005704 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 320 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 384 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_5= 0x20005705 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 392 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x35 - 0x3A 0x20 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 456 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_6= 0x20005706 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 464 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x36 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 528 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_7= 0x20005707 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 536 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x63 0x6F 0x6E 0x76 0x65 - 0x72 0x73 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 600 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -#line 38 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -SET _help_48544F50_0= 0x2000570E - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x27 0x73 0x20 0x61 0x72 0x72 0x69 - 0x76 0x61 0x6C 0x20 0x74 0x69 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 98 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - -SET _help_48544F50_1= 0x2000570F - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 106 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x53 0x79 0x6E 0x63 0x68 - 0x72 0x6F 0x6E 0x69 0x7A 0x65 -ENDCHUNK - - -ENDCHUNK -#line 170 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - -SET _help_48544F50_2= 0x20005710 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 178 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x45 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x42 0x65 0x66 - 0x6F 0x72 0x65 -ENDCHUNK - - -ENDCHUNK -#line 244 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - -SET _help_48544F50_3= 0x20005711 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 252 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x27 0x73 0x20 0x61 0x72 0x72 0x69 - 0x76 0x61 0x6C 0x20 0x74 0x69 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 318 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -#line 39 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -SET _help_48544F50_0= 0x20005708 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x77 0x69 0x74 0x68 0x6F - 0x75 0x74 0x20 0x64 0x72 0x61 0x67 0x67 - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 98 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_1= 0x20005709 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 106 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 170 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_2= 0x2000570A - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 178 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 242 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_3= 0x2000570B - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 250 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 314 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_4= 0x2000570C - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 322 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 386 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_5= 0x2000570D - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 394 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x77 0x69 0x74 0x68 0x6F - 0x75 0x74 0x20 0x64 0x72 0x61 0x67 0x67 - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 460 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -#line 40 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -SET _help_48544F50_0= 0x20005724 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x6F 0x67 0x65 0x74 - 0x68 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_1= 0x20005725 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 105 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 169 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_2= 0x20005726 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 177 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x50 0x72 0x6F 0x70 -ENDCHUNK - - -ENDCHUNK -#line 240 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_3= 0x20005727 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 248 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 312 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_4= 0x20005728 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 320 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x43 0x6F 0x70 0x79 0x20 - 0x50 0x61 0x74 0x68 -ENDCHUNK - - -ENDCHUNK -#line 384 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_7= 0x20005729 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 392 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x6F 0x67 0x65 0x74 - 0x68 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 457 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -#line 41 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -SET _help_48544F50_0= 0x20005719 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_1= 0x2000571A - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 104 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 168 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_2= 0x2000571B - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 176 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 240 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_3= 0x2000571C - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 248 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x50 0x72 0x6F 0x70 -ENDCHUNK - - -ENDCHUNK -#line 311 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_4= 0x2000571D - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 319 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 383 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_5= 0x2000571E - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 391 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x35 - 0x3A 0x20 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x45 0x66 0x66 0x65 0x63 0x74 0x73 -ENDCHUNK - - -ENDCHUNK -#line 455 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_6= 0x2000571F - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 463 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x36 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 526 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_7= 0x20005720 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 534 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x37 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 598 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_8= 0x20005721 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 606 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x38 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 670 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_9= 0x20005722 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 678 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x39 - 0x3A 0x20 0x20 0x53 0x69 0x7A 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 -ENDCHUNK - - -ENDCHUNK -#line 742 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_A= 0x20005723 - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 750 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 814 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -#line 42 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -SET _help_48544F50_0= 0x20005712 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x65 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x74 0x65 - 0x6E 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_1= 0x20005713 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 105 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x4D 0x75 0x73 0x69 0x63 -ENDCHUNK - - -ENDCHUNK -#line 168 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_2= 0x20005714 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 176 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 241 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_3= 0x20005715 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 249 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 313 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_4= 0x20005716 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 321 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x0D 0x0A 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 386 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_5= 0x20005717 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 394 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x35 - 0x3A 0x20 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x53 0x6F 0x75 0x6E - 0x64 -ENDCHUNK - - -ENDCHUNK -#line 459 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_6= 0x20005718 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 467 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x65 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x74 0x65 - 0x6E 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 532 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -#line 43 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -SET _help_48544F50_0= 0x20005600 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075400 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - FREE - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000562F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x65 0x61 0x63 0x68 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x20 0x20 0x54 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x6F 0x72 0x64 0x65 0x72 0x2C 0x20 - 0x64 0x72 0x61 0x67 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 135 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1= 0x20005601 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 143 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075401 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 202 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2= 0x2235B - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 210 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075402 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x20 0x74 0x6F - 0x20 0x42 0x6C 0x61 0x63 0x6B -ENDCHUNK - - -ENDCHUNK -#line 273 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3= 0x2235C - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 281 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075403 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 344 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_4= 0x2235D - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 352 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075404 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x71 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x42 0x6C 0x61 0x63 0x6B -ENDCHUNK - - -ENDCHUNK -#line 416 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_5= 0x2235E - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 424 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075405 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x75 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x57 0x68 0x69 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 488 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_6= 0x22363 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 496 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075406 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x72 0x0D - 0x0A 0x44 0x72 0x61 0x67 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x6C - 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 579 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_7= 0x22364 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 587 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075407 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 674 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_8= 0x22365 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 682 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075408 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x46 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 753 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_9= 0x223D6 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 761 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075409 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x43 0x6C 0x6F 0x73 0x65 0x20 - 0x77 0x69 0x74 0x68 0x6F 0x75 0x74 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 829 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_A= 0x223D5 - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 837 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x43 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x6C 0x6C - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 904 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_B= 0x2000560B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 912 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x0007540B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x54 0x79 0x70 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x69 0x73 0x74 - 0x61 0x6B 0x65 0x2C 0x20 0x70 0x72 0x65 - 0x73 0x73 0x20 0x42 0x61 0x63 0x6B 0x73 - 0x70 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 987 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_C= 0x2000560C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 995 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007540C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x15 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 0x0D 0x0A - 0x54 0x6F 0x20 0x67 0x65 0x74 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 - 0x0D 0x0A 0x95 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x68 0x65 0x6C 0x70 0x20 0x6F - 0x6E 0x2E 0x20 0x20 0x57 0x61 0x69 0x74 - 0x2E 0x2E 0x2E 0x61 0x20 0x64 0x65 0x73 - 0x63 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x70 0x70 0x65 0x61 0x72 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1089 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_D= 0x22352 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1097 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x61 - 0x79 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1179 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_E= 0x2234D - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1187 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x53 0x68 0x61 0x70 0x65 0x0D - 0x0A 0x57 0x61 0x72 0x70 0x20 0x79 0x6F - 0x75 0x72 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x68 0x61 0x70 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1270 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_F= 0x2234C - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1278 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x74 0x74 0x65 0x72 - 0x6E 0x73 0x20 0x26 0x20 0x43 0x6F 0x6C - 0x6F 0x72 0x73 -ENDCHUNK - - -ENDCHUNK -#line 1343 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_10= 0x2234B - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1351 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075410 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x40 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6F 0x6C 0x20 0x49 - 0x64 0x65 0x61 0x73 -ENDCHUNK - - -ENDCHUNK -#line 1414 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_11= 0x2234E - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1422 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075411 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x65 - 0x77 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x72 0x65 0x70 0x65 0x61 0x74 0x65 - 0x64 0x6C 0x79 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x6C 0x6F - 0x6F 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1494 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_12= 0x20005612 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1502 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075412 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x85 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x46 - 0x69 0x6E 0x64 0x20 0x50 0x61 0x74 0x74 - 0x65 0x72 0x6E 0x73 0x20 0x26 0x20 0x43 - 0x6F 0x6C 0x6F 0x72 0x73 0x0D 0x0A 0x46 - 0x69 0x6E 0x64 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x61 0x74 0x74 0x65 0x72 - 0x6E 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x70 0x70 0x6C 0x79 0x20 0x74 0x6F 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x46 0x69 0x6E 0x65 - 0x20 0x41 0x72 0x74 0x69 0x73 0x74 0x20 - 0x70 0x69 0x63 0x74 0x75 0x72 0x65 0x73 - 0x2C 0x20 0x2E 0x62 0x6D 0x70 0x20 0x61 - 0x6E 0x64 0x20 0x2E 0x77 0x6D 0x66 0x20 - 0x66 0x69 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1589 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_13= 0x20005613 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1597 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x140 0x154 0x57415645 0x00075413 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000563B - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x65 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x65 0x64 0x2E - 0x20 0x20 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1703 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_14= 0x223B6 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1711 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075414 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x6C 0x69 0x64 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1773 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_15= 0x20005615 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1781 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075415 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 0x63 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x22 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x22 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1861 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_16= 0x22356 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1869 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075416 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x63 0x65 0x73 0x73 - 0x6F 0x72 0x69 0x65 0x73 0x0D 0x0A 0x41 - 0x64 0x64 0x20 0x61 0x63 0x63 0x65 0x73 - 0x73 0x6F 0x72 0x69 0x65 0x73 0x97 0x68 - 0x61 0x74 0x73 0x2C 0x20 0x67 0x6C 0x61 - 0x73 0x73 0x65 0x73 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x97 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1943 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_17= 0x22355 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1951 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075417 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x65 - 0x77 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x72 0x65 0x70 0x65 0x61 0x74 0x65 - 0x64 0x6C 0x79 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x77 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x6C 0x6C 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2024 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_18= 0x22354 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2032 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075418 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x63 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x73 0x20 0x62 0x79 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x6F 0x72 0x20 0x70 0x72 0x6F - 0x70 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x61 0x20 0x63 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x79 0x6F 0x75 0x20 0x6C 0x69 - 0x6B 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2106 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_19= 0x20005619 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2114 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xF1 0x0 0x57415645 0x00075419 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6E 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2187 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1A= 0x2236A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2195 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x59 0x6F 0x75 0x72 0x20 0x4F 0x77 - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 2259 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1B= 0x2236B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2267 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 - 0x65 0x63 0x74 0x73 0x0D 0x0A 0x46 0x69 - 0x6E 0x64 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 - 0x66 0x66 0x65 0x63 0x74 0x73 0x2E 0x20 - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x57 0x61 0x76 0x65 0x20 0x6F 0x72 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x20 0x66 0x69 0x6C - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2342 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1C= 0x2000561C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2350 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2416 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1D= 0x2000561D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2424 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2490 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1E= 0x2000561E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2498 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x0007541E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2D 0x01 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x53 0x74 0x6F 0x70 - 0x2E 0x0D 0x0A 0x32 0x09 0x54 0x6F 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x69 0x6E 0x67 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x6F 0x70 0x2E 0x0D 0x0A 0x33 0x09 0x54 - 0x79 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2599 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1F= 0x223CD - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2607 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007541F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4D 0x69 0x63 0x72 0x6F 0x70 - 0x68 0x6F 0x6E 0x65 0x0D 0x0A 0x52 0x65 - 0x63 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x28 0x75 0x70 0x20 - 0x74 0x6F 0x20 0x31 0x30 0x20 0x73 0x65 - 0x63 0x6F 0x6E 0x64 0x73 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2676 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_20= 0x223CE - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2684 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075420 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x0D 0x0A - 0x50 0x6C 0x61 0x79 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x77 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2751 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_21= 0x20005621 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2759 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075421 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x4E 0x61 0x6D 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 0x79 - 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 0x6D - 0x65 0x20 0x66 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x72 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x6D 0x69 0x73 0x74 0x61 0x6B 0x65 - 0x2C 0x20 0x70 0x72 0x65 0x73 0x73 0x20 - 0x42 0x61 0x63 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2832 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_22= 0x20005622 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2840 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075422 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2906 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_23= 0x20005623 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 2914 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075423 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2980 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_24= 0x20005624 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 2988 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xF1 0x0 0x57415645 0x00075424 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x6E 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x20 0x20 0x4F 0x72 0x2C 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F - 0x77 0x6E 0x20 0x64 0x69 0x61 0x6C 0x6F - 0x67 0x75 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F 0x6E - 0x65 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x64 0x6F 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3063 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_25= 0x223E2 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3071 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075425 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x44 - 0x69 0x61 0x6C 0x6F 0x67 0x75 0x65 0x0D - 0x0A 0x46 0x69 0x6E 0x64 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x64 0x69 0x61 0x6C - 0x6F 0x67 0x75 0x65 0x2E 0x20 0x20 0x59 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x69 - 0x6D 0x70 0x6F 0x72 0x74 0x20 0x57 0x61 - 0x76 0x65 0x20 0x6F 0x72 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3145 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_26= 0x20005626 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3153 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075426 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3219 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_27= 0x20005627 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3227 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075427 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3293 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_28= 0x20005628 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3301 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075428 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x59 0x6F 0x75 0x72 0x20 0x4F 0x77 - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 3365 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_29= 0x20005629 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3373 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xF1 0x0 0x57415645 0x00075429 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 - 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x65 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3445 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2A= 0x223E3 - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3453 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007542A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x4D - 0x75 0x73 0x69 0x63 0x0D 0x0A 0x46 0x69 - 0x6E 0x64 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x2E 0x20 - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x4D 0x49 - 0x44 0x49 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3524 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2B= 0x2000562B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3532 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007542B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3598 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2C= 0x2000562C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3606 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007542C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3672 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2D= 0x2000562D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3680 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x0007542D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005695 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16104 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x01 0x09 0x57 0x68 - 0x61 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x2A 0x20 0x6D 0x65 - 0x61 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 3768 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2E= 0x2000562E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3776 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007542E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x39 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x69 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x66 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 - 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 - 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3892 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2F= 0x2000562F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 3900 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007542F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3994 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_30= 0x20005630 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4002 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075430 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x27 0x73 0x20 0x6F - 0x72 0x20 0x70 0x72 0x6F 0x70 0x27 0x73 - 0x20 0x6E 0x61 0x6D 0x65 0x2C 0x20 0x74 - 0x79 0x70 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x77 0x20 0x6E 0x61 0x6D 0x65 - 0x20 0x68 0x65 0x72 0x65 0x2E 0x20 0x20 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x6D 0x69 - 0x73 0x74 0x61 0x6B 0x65 0x2C 0x20 0x70 - 0x72 0x65 0x73 0x73 0x20 0x42 0x61 0x63 - 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4074 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_31= 0x20005631 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4082 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075431 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x65 0x64 0x20 0x6F 0x72 0x20 0x69 - 0x6D 0x70 0x6F 0x72 0x74 0x65 0x64 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x69 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4156 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_32= 0x20005632 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4164 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000562F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x65 0x61 0x63 0x68 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x20 0x20 0x54 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x6F 0x72 0x64 0x65 0x72 0x2C 0x20 - 0x64 0x72 0x61 0x67 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E 0x20 - 0x20 0x01 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4273 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_33= 0x20005633 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4281 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x54 0x79 0x70 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x69 0x73 0x74 - 0x61 0x6B 0x65 0x2C 0x20 0x70 0x72 0x65 - 0x73 0x73 0x20 0x42 0x61 0x63 0x6B 0x73 - 0x70 0x61 0x63 0x65 0x2E 0x0D 0x0A 0x01 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x68 0x65 - 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4372 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_34= 0x20005634 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4380 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x186 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000560C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x65 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x65 0x64 0x2E - 0x20 0x20 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2E 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4487 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_35= 0x20005635 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4495 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 0x63 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x22 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x22 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x2E 0x20 0x01 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x68 0x65 - 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4592 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_36= 0x20005636 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4600 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6E 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E - 0x20 0x20 0x01 0x20 0x4D 0x6F 0x72 0x65 - 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4688 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_37= 0x20005637 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 4696 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2D 0x01 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x53 0x74 0x6F 0x70 - 0x2E 0x0D 0x0A 0x32 0x09 0x54 0x6F 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x69 0x6E 0x67 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x6F 0x70 0x2E 0x0D 0x0A 0x33 0x09 0x54 - 0x79 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4F 0x4B 0x2E 0x0D 0x0A - 0x01 0x20 0x4D 0x6F 0x72 0x65 0x20 0x68 - 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4805 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_38= 0x20005638 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 4813 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x64 0x69 0x61 - 0x6C 0x6F 0x67 0x75 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 - 0x6F 0x6E 0x65 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x64 0x6F 0x6E 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E 0x20 0x20 0x01 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4899 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_39= 0x20005639 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4907 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 - 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x65 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E 0x20 0x20 0x01 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4993 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3A= 0x2000563A - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5001 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16104 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000560C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005695 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x01 0x09 0x57 0x68 - 0x61 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x2A 0x20 0x6D 0x65 - 0x61 0x6E 0x3F 0x0D 0x0A 0x01 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 5099 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3B= 0x2000563B - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5107 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x15 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x30 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5196 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3C= 0x2000563F - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5204 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x43 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x6C 0x6C - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5271 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3D= 0x2000563E - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5279 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x43 0x6C 0x6F 0x73 0x65 0x20 - 0x77 0x69 0x74 0x68 0x6F 0x75 0x74 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5347 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3E= 0x223BB - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5355 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075432 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5422 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3F= 0x20005695 - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5430 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 0x74 - 0x68 0x65 0x20 0x2A 0x20 0x6D 0x65 0x61 - 0x6E 0x3F 0x0D 0x0A 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x66 0x6F 0x6C 0x6C - 0x6F 0x77 0x65 0x64 0x20 0x62 0x79 0x20 - 0x61 0x6E 0x20 0x61 0x73 0x74 0x65 0x72 - 0x69 0x73 0x6B 0x20 0x28 0x2A 0x29 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x62 0x65 0x73 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x64 0x72 0x61 0x67 0x2E 0x20 - 0x20 0x4F 0x74 0x68 0x65 0x72 0x77 0x69 - 0x73 0x65 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x61 0x6E 0x69 0x6D 0x61 0x74 - 0x65 0x73 0x20 0x69 0x6E 0x20 0x70 0x6C - 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5531 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -#line 44 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -SET _help_48544F50_0= 0x20005800 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x66 - 0x72 0x65 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 - 0x61 0x6D 0x73 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x2A 0x20 0x20 0x4F 0x72 0x2C 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x72 0x20 0x74 0x77 - 0x6F 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 145 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_1= 0x20005801 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 153 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x86 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC4 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x66 - 0x72 0x65 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 - 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x4F 0x72 0x2C 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x72 0x20 0x74 0x77 0x6F - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 266 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2= 0x20005802 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 274 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x86 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC4 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x66 - 0x72 0x65 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x4F 0x72 0x2C 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x72 0x20 0x74 0x77 0x6F - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 387 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3= 0x20005857 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 395 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x74 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4A 0x75 0x73 0x74 0x20 0x73 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x6B 0x6E - 0x6F 0x77 0x2E 0x2E 0x2E 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x70 0x61 0x73 0x74 0x65 0x64 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x6E 0x6F 0x74 0x20 - 0x68 0x61 0x76 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x77 0x65 0x72 - 0x65 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x69 - 0x74 0x73 0x20 0x6F 0x72 0x69 0x67 0x69 - 0x6E 0x61 0x6C 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 489 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4= 0x20005803 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 497 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xFA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x71 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF8 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x71 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x73 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x20 0x57 0x65 0x20 0x68 0x61 0x64 0x20 - 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 0x20 - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x69 0x73 0x20 0x66 0x69 0x6C 0x65 0x2E - 0x0D 0x0A 0x0D 0x0A 0x42 0x65 0x66 0x6F - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x72 0x79 0x20 0x61 0x67 0x61 0x69 0x6E - 0x2C 0x20 0x63 0x68 0x65 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x73 0x65 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x0D 0x0A 0x2A 0x20 0x20 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 - 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x66 0x6C 0x6F 0x70 0x70 0x79 0x20 - 0x64 0x69 0x73 0x6B 0x2C 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x73 0x75 0x72 0x65 0x20 - 0x69 0x74 0x20 0x69 0x73 0x20 0x63 0x6F - 0x72 0x72 0x65 0x63 0x74 0x6C 0x79 0x20 - 0x69 0x6E 0x73 0x65 0x72 0x74 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x64 0x72 0x69 0x76 0x65 0x2E 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x4D 0x61 0x6B - 0x65 0x20 0x73 0x75 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x20 0x43 0x44 0x20 0x69 0x73 0x20 - 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 0x6C - 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x72 0x69 0x76 0x65 0x2E - 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x68 0x61 0x72 0x64 0x20 0x64 0x72 0x69 - 0x76 0x65 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6C 0x6C 0x2E 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E - 0x6E 0x65 0x63 0x65 0x73 0x73 0x61 0x72 - 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 636 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_5= 0x20005810 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 644 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xE8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x81 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x84 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x35 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x83 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x6F 0x70 0x65 0x6E 0x20 0x74 0x68 - 0x69 0x73 0x20 0x66 0x69 0x6C 0x65 0x2E - 0x0D 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 - 0x74 0x68 0x65 0x20 0x66 0x6F 0x6C 0x6C - 0x6F 0x77 0x69 0x6E 0x67 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x0D 0x0A 0x2A 0x20 0x20 0x4D - 0x61 0x6B 0x65 0x20 0x73 0x75 0x72 0x65 - 0x20 0x61 0x6E 0x79 0x20 0x64 0x69 0x73 - 0x6B 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 - 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 0x69 - 0x73 0x20 0x63 0x6F 0x72 0x72 0x65 0x63 - 0x74 0x6C 0x79 0x20 0x69 0x6E 0x73 0x65 - 0x72 0x74 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x69 0x74 0x73 0x20 0x64 0x72 0x69 0x76 - 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x75 0x6E 0x6E 0x63 0x65 - 0x73 0x73 0x61 0x72 0x79 0x20 0x66 0x69 - 0x6C 0x65 0x73 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x4F 0x74 0x68 0x65 0x72 0x77 0x69 - 0x73 0x65 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x6C 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x63 0x6F 0x72 0x72 - 0x75 0x70 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x69 0x74 0x20 0x69 0x73 0x20 0x6E 0x6F - 0x74 0x20 0x61 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x66 0x69 0x6C 0x65 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 788 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_6= 0x20005812 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 796 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEA 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xEC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x39 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA6 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x39 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x3B 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x48 0x75 0x6D 0x6D 0x2E 0x20 - 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x73 0x65 0x65 0x6D 0x20 0x74 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x74 0x68 - 0x69 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x54 0x72 0x79 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x6C 0x6C 0x6F 0x77 0x69 0x6E - 0x67 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x74 0x72 0x79 0x20 - 0x73 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x6C 0x65 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A - 0x2A 0x20 0x20 0x4D 0x61 0x6B 0x65 0x20 - 0x73 0x75 0x72 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x64 0x69 0x73 0x6B 0x20 0x79 0x6F - 0x75 0x27 0x72 0x65 0x20 0x75 0x73 0x69 - 0x6E 0x67 0x20 0x69 0x73 0x20 0x63 0x6F - 0x72 0x72 0x65 0x63 0x74 0x6C 0x79 0x20 - 0x69 0x6E 0x73 0x65 0x72 0x74 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x69 0x74 0x73 0x20 - 0x64 0x72 0x69 0x76 0x65 0x2E 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 - 0x6E 0x6E 0x63 0x65 0x73 0x73 0x61 0x72 - 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 928 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_7= 0x20005814 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 936 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB4 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x1D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x92 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x95 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB4 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x92 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x94 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x57 0x65 0x20 0x61 0x72 0x65 0x20 0x68 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 0x72 - 0x6F 0x75 0x62 0x6C 0x65 0x20 0x67 0x65 - 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x69 0x6E 0x66 0x6F 0x72 0x6D - 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 0x65 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x20 0x66 0x69 0x6C - 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x72 - 0x79 0x20 0x74 0x68 0x65 0x20 0x66 0x6F - 0x6C 0x6C 0x6F 0x77 0x69 0x6E 0x67 0x20 - 0x73 0x75 0x67 0x67 0x65 0x73 0x74 0x69 - 0x6F 0x6E 0x73 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x4D 0x61 0x6B 0x65 0x20 0x73 0x75 - 0x72 0x65 0x20 0x61 0x6E 0x79 0x20 0x64 - 0x69 0x73 0x6B 0x20 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x75 0x73 0x69 0x6E 0x67 - 0x20 0x69 0x73 0x20 0x63 0x6F 0x72 0x72 - 0x65 0x63 0x74 0x6C 0x79 0x20 0x69 0x6E - 0x73 0x65 0x72 0x74 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x69 0x74 0x73 0x20 0x64 0x72 - 0x69 0x76 0x65 0x2E 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x27 0x73 0x20 0x6D 0x65 0x6D 0x6F 0x72 - 0x79 0x20 0x6D 0x61 0x79 0x20 0x62 0x65 - 0x20 0x6C 0x6F 0x77 0x2E 0x20 0x53 0x77 - 0x69 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 - 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 - 0x28 0x70 0x72 0x65 0x73 0x73 0x20 0x43 - 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x2A - 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 - 0x73 0x20 0x68 0x61 0x72 0x64 0x20 0x64 - 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x66 0x75 0x6C 0x6C - 0x2E 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x6F 0x72 - 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 - 0x75 0x6E 0x6E 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1079 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_8= 0x20005858 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1087 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x96 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x0D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x0D 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x57 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x6E 0x27 0x74 0x20 0x63 0x6F - 0x70 0x79 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x0D - 0x0A 0x2A 0x20 0x20 0x59 0x6F 0x75 0x72 - 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 - 0x72 0x27 0x73 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x6C 0x6F 0x77 0x2E 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x27 0x73 0x20 0x68 0x61 0x72 0x64 0x20 - 0x64 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 - 0x79 0x20 0x62 0x65 0x20 0x66 0x75 0x6C - 0x6C 0x2E 0x20 0x53 0x77 0x69 0x74 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E - 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 - 0x65 0x73 0x73 0x20 0x43 0x54 0x52 0x4C - 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 0x6E - 0x64 0x20 0x6D 0x6F 0x76 0x65 0x20 0x6F - 0x72 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 - 0x20 0x75 0x6E 0x6E 0x63 0x65 0x73 0x73 - 0x61 0x72 0x79 0x20 0x66 0x69 0x6C 0x65 - 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1208 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_D= 0x2000580D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1216 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x85 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xBA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x69 0x6C 0x65 - 0x6E 0x61 0x6D 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x67 0x61 0x76 0x65 0x20 0x62 0x65 - 0x6C 0x6F 0x6E 0x67 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x73 0x70 0x65 0x63 0x69 - 0x61 0x6C 0x20 0x66 0x69 0x6C 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x6E 0x65 0x65 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x77 0x6F 0x72 0x6B - 0x20 0x70 0x72 0x6F 0x70 0x65 0x72 0x6C - 0x79 0x2E 0x20 0x49 0x74 0x20 0x69 0x73 - 0x20 0x75 0x73 0x65 0x64 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x62 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 0x74 - 0x65 0x72 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 - 0x72 0x79 0x20 0x74 0x79 0x70 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x61 0x67 0x61 0x69 0x6E - 0x2C 0x20 0x6F 0x72 0x20 0x74 0x79 0x70 - 0x65 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6E 0x61 0x6D 0x65 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1323 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_17= 0x20005817 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1331 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x83 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x72 - 0x65 0x65 0x20 0x73 0x6F 0x6D 0x65 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x3A 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 - 0x4F 0x72 0x2C 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x6F 0x6E 0x65 0x20 0x6F - 0x72 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x6F 0x72 0x20 - 0x70 0x72 0x6F 0x70 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1444 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_1E= 0x2000581E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 1452 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x83 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x72 - 0x65 0x65 0x20 0x73 0x6F 0x6D 0x65 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x3A 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 - 0x4F 0x72 0x2C 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x6F 0x6E 0x65 0x20 0x6F - 0x72 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x6F 0x72 0x20 - 0x70 0x72 0x6F 0x70 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1565 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_1F= 0x2000581F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 1573 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0xB3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x01 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0x1A 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x01 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0x91 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x01 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0xDD 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDE 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xDD 0x01 0x00 0x80 - 0x00 0x00 0x02 0x02 0xDE 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x73 0x61 0x76 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x72 0x69 0x67 0x68 0x74 0x20 - 0x6E 0x6F 0x77 0x2E 0x0D 0x0A 0x0D 0x0A - 0x54 0x72 0x79 0x20 0x74 0x68 0x65 0x73 - 0x65 0x20 0x73 0x75 0x67 0x67 0x65 0x73 - 0x74 0x69 0x6F 0x6E 0x73 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x74 0x72 0x79 0x20 0x73 0x61 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x67 0x61 0x69 0x6E - 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x42 - 0x65 0x20 0x73 0x75 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x61 0x76 0x65 0x20 - 0x61 0x74 0x20 0x6C 0x65 0x61 0x73 0x74 - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x20 0x6D - 0x61 0x79 0x20 0x62 0x65 0x20 0x6C 0x6F - 0x77 0x2E 0x20 0x53 0x77 0x69 0x74 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E - 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 - 0x65 0x73 0x73 0x20 0x43 0x54 0x52 0x4C - 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x68 0x61 0x72 0x64 0x20 0x64 0x72 0x69 - 0x76 0x65 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6C 0x6C 0x2E 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E - 0x6E 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x0D - 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x73 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x61 0x20 0x66 0x6C 0x6F 0x70 - 0x70 0x79 0x20 0x64 0x69 0x73 0x6B 0x2C - 0x20 0x62 0x65 0x20 0x73 0x75 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x64 0x69 0x73 - 0x6B 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x72 0x69 0x76 - 0x65 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x20 - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1723 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_25= 0x20005825 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 1731 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x98 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE3 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2D 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0xE3 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE3 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6E - 0x6F 0x77 0x2E 0x20 0x54 0x68 0x69 0x73 - 0x20 0x6D 0x61 0x79 0x20 0x6D 0x65 0x61 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x64 0x6F - 0x6E 0x27 0x74 0x20 0x68 0x61 0x76 0x65 - 0x20 0x70 0x65 0x72 0x6D 0x69 0x73 0x73 - 0x69 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x6F 0x72 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x69 0x73 0x6E 0x27 0x74 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 0x73 - 0x70 0x61 0x63 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x61 0x76 0x65 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 - 0x74 0x68 0x65 0x73 0x65 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 - 0x49 0x66 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x69 0x73 0x20 - 0x22 0x52 0x65 0x61 0x64 0x20 0x4F 0x6E - 0x6C 0x79 0x2C 0x22 0x20 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x50 0x6F 0x72 0x74 - 0x66 0x6F 0x6C 0x69 0x6F 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x61 0x76 - 0x65 0x20 0x41 0x73 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 0x74 - 0x79 0x70 0x65 0x20 0x61 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x6E 0x61 0x6D 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x20 0x41 - 0x6C 0x73 0x6F 0x2C 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C - 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E 0x65 - 0x63 0x65 0x73 0x73 0x61 0x72 0x79 0x20 - 0x66 0x69 0x6C 0x65 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x73 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x61 0x20 0x66 0x6C 0x6F 0x70 0x70 - 0x79 0x20 0x64 0x69 0x73 0x6B 0x2C 0x20 - 0x62 0x65 0x20 0x73 0x75 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x64 0x69 0x73 0x6B - 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x72 0x69 0x76 0x65 - 0x2E 0x20 0x20 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1878 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_27= 0x20005827 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 1886 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2D 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x89 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x73 0x77 0x69 0x74 0x63 0x68 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D - 0x0A 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F - 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 0x73 - 0x20 0x68 0x61 0x72 0x64 0x20 0x64 0x72 - 0x69 0x76 0x65 0x20 0x69 0x73 0x20 0x66 - 0x75 0x6C 0x6C 0x2E 0x20 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 - 0x75 0x6E 0x6E 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x20 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F - 0x20 0x66 0x6C 0x6F 0x70 0x70 0x79 0x20 - 0x64 0x69 0x73 0x6B 0x2E 0x20 0x20 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x6D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x54 0x61 - 0x73 0x6B 0x20 0x42 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x72 0x79 0x20 0x73 - 0x77 0x69 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2024 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_28= 0x20005828 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 2032 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x17 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x73 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x72 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x63 0x68 0x6F 0x70 0x20 0x74 0x68 - 0x69 0x73 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6E - 0x6F 0x77 0x2E 0x0D 0x0A 0x0D 0x0A 0x4D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x27 0x73 0x20 0x68 0x61 0x72 - 0x64 0x20 0x64 0x72 0x69 0x76 0x65 0x20 - 0x69 0x73 0x20 0x66 0x75 0x6C 0x6C 0x2E - 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 - 0x69 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 - 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 - 0x28 0x70 0x72 0x65 0x73 0x73 0x20 0x43 - 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 - 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C - 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E 0x65 - 0x63 0x65 0x73 0x73 0x61 0x72 0x79 0x20 - 0x66 0x69 0x6C 0x65 0x73 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x6D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x54 0x61 - 0x73 0x6B 0x20 0x42 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x72 0x79 0x20 0x63 - 0x68 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2167 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_29= 0x20005829 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 2175 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xD1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x74 0x72 0x69 0x65 - 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 0x77 - 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 - 0x69 0x6C 0x65 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x49 0x74 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x6C 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x6F 0x73 0x65 0x20 0x69 0x73 0x20 - 0x62 0x72 0x6F 0x6B 0x65 0x6E 0x2C 0x20 - 0x6F 0x72 0x20 0x69 0x73 0x20 0x6E 0x6F - 0x74 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x66 0x69 0x6C 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x69 0x74 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x27 0x74 0x20 0x68 0x61 - 0x76 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x77 0x65 0x20 0x63 0x61 0x6E - 0x20 0x63 0x6F 0x70 0x79 0x2E 0x0D 0x0A - 0x0D 0x0A 0x54 0x72 0x79 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x66 0x69 0x6C 0x65 0x20 0x69 - 0x6E 0x73 0x74 0x65 0x61 0x64 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2284 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2A= 0x2000582A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 2292 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x57 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x21 0x20 0x20 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 0x65 - 0x78 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x74 0x65 0x78 0x74 0x20 0x62 0x6F 0x78 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x68 0x61 - 0x76 0x65 0x20 0x74 0x6F 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x66 - 0x69 0x72 0x73 0x74 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2382 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2B= 0x2000582B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 2390 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x44 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x64 0x6F 0x20 - 0x74 0x68 0x69 0x73 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x66 0x69 0x72 0x73 0x74 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2477 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2C= 0x2000582C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 2485 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x56 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x95 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xFE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x01 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xFE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x53 0x68 0x65 0x77 0x21 0x20 - 0x20 0x53 0x69 0x6E 0x63 0x65 0x20 0x73 - 0x70 0x61 0x63 0x65 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x68 0x65 0x72 0x65 - 0x20 0x69 0x73 0x20 0x67 0x65 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x69 0x67 0x68 - 0x74 0x2C 0x20 0x77 0x65 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x6E 0x6F 0x74 0x20 0x62 - 0x65 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 - 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 0x74 - 0x68 0x69 0x73 0x2E 0x0D 0x0A 0x0D 0x0A - 0x4A 0x75 0x73 0x74 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x73 0x61 0x66 0x65 0x2C - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x6E 0x6F 0x77 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x2B 0x53 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 - 0x68 0x65 0x6E 0x20 0x66 0x72 0x65 0x65 - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x73 0x70 - 0x61 0x63 0x65 0x20 0x6F 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2613 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2D= 0x2000582D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 2621 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x93 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x91 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x93 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x64 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x61 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x0D 0x0A 0x31 0x20 0x20 - 0x49 0x6E 0x20 0x74 0x68 0x65 0x20 0x53 - 0x74 0x75 0x64 0x69 0x6F 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 - 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2723 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2E= 0x2000582E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 2731 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xBE 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x57 0x65 0x20 0x74 0x72 0x69 - 0x65 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x77 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x6E 0x27 0x74 0x20 0x6F 0x70 0x65 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x49 0x74 0x20 - 0x77 0x61 0x73 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x65 0x72 0x20 0x76 - 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 0x6F - 0x66 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x69 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x20 0x76 0x65 0x72 0x73 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x20 0x69 0x6E 0x20 0x77 - 0x68 0x69 0x63 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x61 0x73 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x64 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2838 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2F= 0x2000582F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 2846 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xBF 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x72 0x65 0x27 0x73 0x20 - 0x6E 0x6F 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 - 0x2E 0x2E 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 - 0x72 0x79 0x20 0x67 0x6F 0x69 0x6E 0x67 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x61 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F 0x72 - 0x20 0x73 0x6F 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x54 0x68 0x65 0x6E 0x20 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x43 - 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 0x68 - 0x20 0x54 0x6F 0x6F 0x6C 0x20 0x28 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x29 0x20 0x74 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6F 0x72 0x20 0x77 0x6F - 0x72 0x64 0x2E 0x20 0x20 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2955 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_30= 0x20005830 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 2963 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x62 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xB5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x74 0x68 0x65 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x73 0x68 0x6F 0x77 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x61 0x6C 0x20 0x6C 0x65 - 0x6E 0x67 0x74 0x68 0x20 0x6F 0x66 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x6D 0x65 0x6D 0x6F 0x72 - 0x79 0x20 0x69 0x73 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x6F 0x77 0x21 - 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 - 0x72 0x65 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3069 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_31= 0x20005831 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 3077 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x30 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x17 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x66 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x69 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x66 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x68 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x61 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x6E 0x6F 0x77 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x59 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 - 0x73 0x20 0x68 0x61 0x72 0x64 0x20 0x64 - 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x66 0x75 0x6C 0x6C - 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 - 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x6D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x54 0x68 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x54 0x61 0x73 0x6B 0x20 - 0x42 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x72 0x79 0x20 0x67 0x6F 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3213 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_32= 0x20005832 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 3221 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x9A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x08 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x57 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x98 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x06 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x57 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x59 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 - 0x20 0x74 0x68 0x61 0x74 0x2E 0x0D 0x0A - 0x0D 0x0A 0x59 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 - 0x73 0x20 0x68 0x61 0x72 0x64 0x20 0x64 - 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x66 0x75 0x6C 0x6C - 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 - 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 - 0x6D 0x61 0x79 0x62 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 - 0x74 0x65 0x72 0x20 0x69 0x73 0x20 0x6C - 0x6F 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 - 0x6D 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x54 - 0x61 0x73 0x6B 0x20 0x42 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x72 0x79 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3355 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_33= 0x20005833 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 3363 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE5 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xE7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE7 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xE7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xB7 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xE7 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x69 0x73 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x64 0x6F 0x65 0x73 0x6E - 0x27 0x74 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 0x64 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x2E 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x74 0x68 0x69 0x73 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x6B 0x6E 0x6F 0x77 - 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 - 0x64 0x6F 0x0D 0x0A 0x31 0x20 0x20 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E 0x20 0x0D 0x0A - 0x32 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2E 0x0D 0x0A 0x33 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 0x0D - 0x0A 0x34 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3480 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_34= 0x20005834 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 3488 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x39 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x62 0x75 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x69 - 0x73 0x20 0x68 0x65 0x72 0x65 0x2D 0x2D - 0x69 0x74 0x20 0x77 0x6F 0x6E 0x27 0x74 - 0x20 0x73 0x74 0x69 0x63 0x6B 0x2E 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x70 - 0x61 0x73 0x74 0x69 0x6E 0x67 0x20 0x69 - 0x74 0x20 0x6F 0x6E 0x20 0x73 0x6F 0x6D - 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x61 0x74 0x20 0x69 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 - 0x6F 0x75 0x27 0x72 0x65 0x20 0x70 0x61 - 0x73 0x74 0x69 0x6E 0x67 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x46 0x6F 0x72 0x20 0x65 - 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x70 0x61 0x73 0x74 0x65 0x20 0x74 0x65 - 0x78 0x74 0x20 0x69 0x6E 0x20 0x77 0x69 - 0x74 0x68 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x74 0x65 0x78 0x74 0x2E 0x20 0x42 - 0x75 0x74 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x27 0x74 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x74 0x65 0x78 0x74 0x20 - 0x6F 0x6E 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 3602 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_35= 0x20005835 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 3610 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x39 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x59 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x59 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x53 0x6F 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x69 0x73 0x20 0x33 0x44 0x20 0x66 - 0x6F 0x6E 0x74 0x20 0x61 0x72 0x65 0x20 - 0x6D 0x69 0x73 0x73 0x69 0x6E 0x67 0x0D - 0x0A 0x0D 0x0A 0x50 0x6C 0x65 0x61 0x73 - 0x65 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x66 0x6F 0x6E 0x74 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3704 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_36= 0x20005836 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 3712 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x41 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x69 0x73 0x20 0x6E - 0x61 0x6D 0x65 0x20 0x69 0x73 0x20 0x74 - 0x6F 0x6F 0x6F 0x6F 0x6F 0x20 0x6C 0x6F - 0x6F 0x6F 0x6F 0x6F 0x6E 0x67 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x50 0x6C 0x65 0x61 - 0x73 0x65 0x20 0x74 0x79 0x70 0x65 0x20 - 0x61 0x20 0x73 0x68 0x6F 0x72 0x74 0x65 - 0x72 0x20 0x6E 0x61 0x6D 0x65 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3803 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_37= 0x20005837 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 3811 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x1E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x65 0x78 0x74 0x20 0x62 - 0x6F 0x78 0x20 0x69 0x73 0x20 0x74 0x6F - 0x6F 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x0D - 0x0A 0x0D 0x0A 0x43 0x55 0x54 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3892 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_38= 0x20005838 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 3900 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x53 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xDE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x6F 0x70 0x73 - 0x2E 0x20 0x53 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x27 0x73 0x20 0x6D 0x69 - 0x73 0x73 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x72 0x65 0x2E 0x20 0x53 0x6F 0x6D 0x65 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x20 0x77 - 0x65 0x20 0x6E 0x65 0x65 0x64 0x20 0x61 - 0x72 0x65 0x20 0x6D 0x69 0x73 0x73 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x61 0x72 - 0x65 0x20 0x62 0x72 0x6F 0x6B 0x65 0x6E - 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x66 0x69 0x78 0x20 0x74 0x68 0x69 0x73 - 0x20 0x70 0x72 0x6F 0x62 0x6C 0x65 0x6D - 0x2C 0x20 0x70 0x6C 0x65 0x61 0x73 0x65 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x45 - 0x78 0x69 0x74 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x72 0x75 - 0x6E 0x20 0x4D 0x69 0x63 0x72 0x6F 0x73 - 0x6F 0x66 0x74 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x53 0x65 0x74 0x75 0x70 - 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E 0x20 - 0x28 0x53 0x65 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6A 0x65 0x77 0x65 0x6C 0x63 - 0x61 0x73 0x65 0x20 0x62 0x6F 0x6F 0x6B - 0x6C 0x65 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x69 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E 0x29 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4011 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_39= 0x20005839 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4019 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x3F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x62 0x65 0x20 0x35 - 0x30 0x20 0x63 0x68 0x61 0x72 0x61 0x63 - 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F 0x6E - 0x67 0x0D 0x0A 0x4E 0x4F 0x20 0x4C 0x4F - 0x4E 0x47 0x45 0x52 0x20 0x41 0x50 0x50 - 0x4C 0x49 0x43 0x41 0x42 0x4C 0x45 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4104 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3A= 0x2000583A - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 4112 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x69 0x73 0x20 0x33 0x44 0x20 - 0x66 0x6F 0x6E 0x74 0x20 0x69 0x73 0x20 - 0x62 0x72 0x6F 0x6B 0x65 0x6E 0x2E 0x0D - 0x0A 0x0D 0x0A 0x50 0x6C 0x65 0x61 0x73 - 0x65 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x66 0x6F 0x6E 0x74 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4203 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3B= 0x2000583B - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 4211 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x79 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xF9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xF9 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x27 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x77 0x69 0x74 0x68 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x2C 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x77 0x69 0x74 - 0x68 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x73 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x73 0x20 - 0x6F 0x72 0x20 0x73 0x70 0x65 0x65 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x74 0x68 0x69 - 0x73 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x53 0x70 0x65 0x65 0x63 0x68 - 0x20 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x45 0x66 0x66 0x65 0x63 0x74 - 0x73 0x20 0x54 0x6F 0x6F 0x6C 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4327 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3C= 0x2000583C - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 4335 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xC0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x41 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x6F 0x6E 0x64 0x65 0x72 0x69 0x6E - 0x67 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x74 0x68 0x6F 0x73 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x61 0x72 0x65 0x3F 0x0D 0x0A 0x0D - 0x0A 0x43 0x68 0x61 0x6E 0x63 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x77 0x61 0x73 0x20 0x6C - 0x6F 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 - 0x6D 0x6F 0x72 0x79 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x77 0x65 0x20 0x62 0x72 0x6F - 0x75 0x67 0x68 0x74 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x54 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x68 0x6F 0x77 0x20 0x75 0x70 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x72 0x65 0x73 0x74 0x61 0x72 - 0x74 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4443 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3D= 0x2000583D - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 4451 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x61 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xFC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x61 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xFC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x48 0x75 0x6D 0x6D 0x6D 0x2E - 0x20 0x41 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x6F 0x6E 0x64 0x65 0x72 0x69 - 0x6E 0x67 0x20 0x77 0x68 0x79 0x20 0x74 - 0x68 0x65 0x73 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x61 0x72 0x65 0x20 - 0x73 0x74 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x6F 0x77 0x69 0x6E 0x67 0x20 0x75 0x70 - 0x20 0x61 0x66 0x74 0x65 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x65 0x6C 0x65 0x74 - 0x65 0x64 0x20 0x74 0x68 0x65 0x69 0x72 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x3F 0x0D - 0x0A 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x63 - 0x65 0x73 0x20 0x61 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x20 0x77 0x61 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x65 0x64 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x20 0x44 0x6F 0x6E 0x27 0x74 0x20 0x77 - 0x6F 0x72 0x72 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x6D 0x61 0x79 0x20 0x73 0x74 0x69 0x6C - 0x6C 0x20 0x61 0x70 0x70 0x65 0x61 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x74 0x68 - 0x65 0x79 0x20 0x77 0x6F 0x6E 0x27 0x74 - 0x20 0x62 0x65 0x20 0x75 0x73 0x65 0x64 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4567 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3E= 0x2000583E - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 4575 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x84 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC3 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0xD6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1A 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x1C 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x2C - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x73 0x6F 0x72 0x74 0x65 - 0x72 0x20 0x64 0x69 0x64 0x6E 0x27 0x74 - 0x20 0x77 0x6F 0x72 0x6B 0x20 0x63 0x6F - 0x72 0x72 0x65 0x63 0x74 0x6C 0x79 0x2E - 0x0D 0x0A 0x0D 0x0A 0x54 0x68 0x69 0x73 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x62 0x65 0x63 0x61 0x75 0x73 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x20 - 0x69 0x73 0x20 0x6C 0x6F 0x77 0x20 0x6F - 0x6E 0x20 0x6D 0x65 0x6D 0x6F 0x72 0x79 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x53 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D - 0x0A 0x31 0x20 0x20 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x2B 0x53 0x20 0x74 0x6F 0x20 - 0x73 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x0D 0x0A 0x32 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x20 0x2B 0x45 0x53 0x43 0x29 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x73 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4703 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3F= 0x2000583F - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 4711 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x72 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x0A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0xC4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x08 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x0A 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x73 0x6F 0x72 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x53 0x61 0x76 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x31 - 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x2B 0x53 0x20 0x74 0x6F 0x20 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x0D 0x0A - 0x32 0x20 0x20 0x53 0x77 0x69 0x74 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E - 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 - 0x65 0x73 0x73 0x20 0x43 0x54 0x52 0x4C - 0x20 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4838 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_40= 0x20005840 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 4846 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x43 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xAC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xEA 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0xFD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x43 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0xAC 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x73 0x74 0x61 0x72 0x74 0x20 - 0x74 0x68 0x65 0x20 0x53 0x70 0x6C 0x6F - 0x74 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E - 0x65 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x62 0x65 - 0x20 0x73 0x75 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x43 0x44 0x20 0x69 0x73 0x20 - 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 0x6C - 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x72 0x69 0x76 0x65 0x2E - 0x20 0x49 0x66 0x20 0x69 0x74 0x20 0x69 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x69 0x74 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x20 0x69 0x73 0x20 - 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 0x6D - 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x73 0x0D 0x0A - 0x31 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x2B 0x53 0x20 0x74 0x6F 0x20 0x73 - 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x0D - 0x0A 0x32 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x20 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x49 0x66 0x20 - 0x74 0x68 0x69 0x73 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x27 0x74 0x20 0x77 0x6F 0x72 - 0x6B 0x2C 0x20 0x74 0x72 0x79 0x20 0x72 - 0x65 0x69 0x6E 0x73 0x74 0x61 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x28 0x73 0x65 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6A 0x65 0x77 - 0x65 0x6C 0x63 0x61 0x73 0x65 0x20 0x62 - 0x6F 0x6F 0x6B 0x6C 0x65 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x69 0x6E 0x73 0x74 0x72 - 0x75 0x63 0x74 0x69 0x6F 0x6E 0x73 0x29 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4996 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_41= 0x20005841 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 5004 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x7B 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x7D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x6C 0x6C 0x20 - 0x79 0x6F 0x75 0x20 0x67 0x6F 0x74 0x20 - 0x77 0x61 0x73 0x20 0x73 0x69 0x6C 0x65 - 0x6E 0x63 0x65 0x3F 0x20 0x0D 0x0A 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x2C 0x20 0x79 0x6F 0x75 0x20 0x6E - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x69 - 0x6E 0x73 0x74 0x61 0x6C 0x6C 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 - 0x61 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5102 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_43= 0x20005843 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 5110 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x11 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x87 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x87 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x88 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0F 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x87 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x87 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x6F 0x70 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6F 0x72 0x74 0x66 - 0x6F 0x6C 0x69 0x6F 0x2E 0x0D 0x0A 0x0D - 0x0A 0x43 0x68 0x61 0x6E 0x63 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2C 0x20 0x6F 0x72 0x20 - 0x79 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x69 0x6E - 0x73 0x74 0x61 0x6C 0x6C 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A - 0x2A 0x20 0x20 0x46 0x6F 0x72 0x20 0x69 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x6F 0x6E 0x20 0x72 - 0x65 0x69 0x6E 0x73 0x74 0x61 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x2C 0x20 0x73 0x65 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6A 0x65 0x77 - 0x65 0x6C 0x63 0x61 0x73 0x65 0x20 0x62 - 0x6F 0x6F 0x6B 0x6C 0x65 0x74 0x2E 0x0D - 0x0A 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E 0x69 - 0x73 0x68 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x54 0x61 0x73 0x6B 0x20 0x42 0x61 0x72 - 0x2C 0x20 0x6F 0x72 0x20 0x72 0x65 0x73 - 0x74 0x61 0x72 0x74 0x20 0x74 0x68 0x65 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6F 0x72 - 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5245 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_44= 0x20005844 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 5253 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xF2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x35 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x8F 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x91 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x33 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x91 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x53 0x74 0x75 0x64 - 0x69 0x6F 0x2E 0x0D 0x0A 0x0D 0x0A 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x62 0x65 - 0x20 0x73 0x75 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x43 0x44 0x20 0x69 0x73 0x20 - 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 0x6C - 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x72 0x69 0x76 0x65 0x2E - 0x20 0x49 0x66 0x20 0x69 0x74 0x20 0x69 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x69 0x74 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x27 0x73 0x20 0x68 - 0x61 0x72 0x64 0x20 0x64 0x72 0x69 0x76 - 0x65 0x20 0x69 0x73 0x20 0x66 0x75 0x6C - 0x6C 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E - 0x6E 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x0D 0x0A 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x54 0x61 0x73 0x6B - 0x20 0x42 0x61 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x72 0x79 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x53 0x74 0x75 0x64 0x69 0x6F - 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5395 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_45= 0x20005845 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 5403 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA0 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xA2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 0x6D - 0x69 0x67 0x68 0x74 0x20 0x62 0x65 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5507 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_46= 0x20005846 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 5515 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xA2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 0x6D - 0x69 0x67 0x68 0x74 0x20 0x62 0x65 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5618 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_47= 0x20005848 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 5626 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x21 0x20 0x20 0x50 - 0x6C 0x65 0x61 0x73 0x65 0x20 0x74 0x79 - 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 0x6D - 0x65 0x20 0x66 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x72 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5712 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_48= 0x20005849 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 5720 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA3 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xA5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xA5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x73 0x79 0x20 0x73 - 0x69 0x67 0x6E 0x61 0x6C 0x21 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x61 0x72 0x64 0x20 - 0x69 0x73 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x62 0x65 0x69 0x6E 0x67 - 0x20 0x75 0x73 0x65 0x64 0x20 0x62 0x79 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x77 0x69 0x74 0x68 0x20 0x33 - 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 - 0x4D 0x61 0x6B 0x65 0x72 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x61 0x77 0x61 0x79 - 0x2C 0x20 0x73 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5823 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_49= 0x2000584E - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 5831 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xCE 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xD0 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6D 0x6F 0x74 - 0x69 0x6F 0x6E 0x2D 0x6D 0x61 0x74 0x63 - 0x68 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x4D 0x6F 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x20 0x54 - 0x6F 0x6F 0x6C 0x2C 0x20 0x66 0x69 0x72 - 0x73 0x74 0x2C 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x28 - 0x69 0x6E 0x73 0x74 0x65 0x61 0x64 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x29 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x74 0x63 0x68 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5940 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4A= 0x20005851 - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 5948 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x37 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x37 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x37 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x57 0x65 0x27 0x72 0x65 0x20 - 0x68 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 - 0x72 0x6F 0x75 0x62 0x6C 0x65 0x20 0x63 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x69 0x6E 0x66 0x6F - 0x72 0x6D 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x43 0x44 0x2D 0x52 0x4F 0x4D 0x20 - 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x54 0x68 - 0x69 0x73 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x62 0x65 0x63 0x61 0x75 0x73 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x43 - 0x44 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 - 0x20 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 - 0x6C 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 - 0x74 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x72 0x69 0x76 0x65 - 0x2C 0x20 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x43 0x44 0x2D 0x52 0x4F 0x4D 0x20 - 0x68 0x61 0x73 0x20 0x64 0x75 0x73 0x74 - 0x20 0x6F 0x6E 0x20 0x69 0x74 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x68 0x61 0x72 0x64 0x20 0x64 0x72 0x69 - 0x76 0x65 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6C 0x6C 0x2E 0x20 - 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x75 0x6E 0x6E 0x63 0x65 - 0x73 0x73 0x61 0x72 0x79 0x20 0x66 0x69 - 0x6C 0x65 0x73 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6072 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4B= 0x20005852 - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 6080 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x5E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x7F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x7F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x79 0x70 0x65 0x64 0x20 0x77 0x6F 0x6E - 0x27 0x74 0x20 0x77 0x6F 0x72 0x6B 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x69 0x74 0x20 0x69 0x73 0x20 0x74 0x6F - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x68 0x61 0x73 0x20 0x63 0x68 - 0x61 0x72 0x61 0x63 0x74 0x65 0x72 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x63 0x61 - 0x6E 0x27 0x74 0x20 0x62 0x65 0x20 0x75 - 0x73 0x65 0x64 0x2E 0x0D 0x0A 0x0D 0x0A - 0x50 0x6C 0x65 0x61 0x73 0x65 0x20 0x74 - 0x79 0x70 0x65 0x20 0x61 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x6E 0x61 0x6D 0x65 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6178 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4D= 0x20005850 - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 6186 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xE4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE4 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x4F 0x6E 0x65 0x20 0x6F 0x72 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x66 0x6F 0x6E 0x74 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x20 0x6E 0x65 0x65 - 0x64 0x73 0x20 0x61 0x72 0x65 0x20 0x6D - 0x69 0x73 0x73 0x69 0x6E 0x67 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x72 - 0x65 0x70 0x6C 0x61 0x63 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x73 0x73 0x69 - 0x6E 0x67 0x20 0x66 0x6F 0x6E 0x74 0x73 - 0x2C 0x20 0x64 0x65 0x2D 0x69 0x6E 0x73 - 0x74 0x61 0x6C 0x6C 0x20 0x4D 0x69 0x63 - 0x72 0x6F 0x73 0x6F 0x66 0x74 0x20 0x33 - 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 - 0x4D 0x61 0x6B 0x65 0x72 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x72 0x75 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x53 0x65 0x74 0x75 0x70 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x20 0x28 0x73 0x65 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6A 0x65 - 0x77 0x65 0x6C 0x63 0x61 0x73 0x65 0x20 - 0x62 0x6F 0x6F 0x6B 0x6C 0x65 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x69 0x6E 0x73 0x74 - 0x72 0x75 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x29 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6296 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4E= 0x2000584D - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 6304 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x87 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x86 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x27 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x62 0x72 0x6F - 0x6B 0x65 0x6E 0x2E 0x0D 0x0A 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x62 - 0x72 0x6F 0x6B 0x65 0x6E 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x73 0x2C 0x20 0x72 0x75 - 0x6E 0x20 0x53 0x65 0x74 0x75 0x70 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x20 0x28 0x73 - 0x65 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6A 0x65 0x77 0x65 0x6C 0x63 0x61 0x73 - 0x65 0x20 0x62 0x6F 0x6F 0x6B 0x6C 0x65 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x69 0x6E - 0x73 0x74 0x72 0x75 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x29 0x2E 0x0D 0x0A 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6404 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4F= 0x2000584F - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 6412 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x71 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x73 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x61 0x74 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x66 0x69 0x6C 0x65 0x2E 0x0D 0x0A - 0x0D 0x0A 0x54 0x72 0x79 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x66 0x69 0x6C 0x65 0x20 0x6F - 0x72 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x2E - 0x0D 0x0A 0x20 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6509 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_50= 0x2000584C - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 6517 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7E 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x80 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7E 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x80 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x27 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x6D 0x69 0x73 - 0x73 0x69 0x6E 0x67 0x2E 0x0D 0x0A 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x20 0x68 0x65 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2C 0x20 - 0x72 0x75 0x6E 0x20 0x53 0x65 0x74 0x75 - 0x70 0x20 0x61 0x67 0x61 0x69 0x6E 0x20 - 0x28 0x73 0x65 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6A 0x65 0x77 0x65 0x6C 0x63 - 0x61 0x73 0x65 0x20 0x62 0x6F 0x6F 0x6B - 0x6C 0x65 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x69 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x29 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6617 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_51= 0x2000584A - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 6625 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x98 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x74 0x72 0x69 0x65 - 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x6E 0x27 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x77 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x75 0x73 0x65 0x2E 0x0D 0x0A 0x0D - 0x0A 0x54 0x72 0x79 0x20 0x75 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x66 0x69 0x6C 0x65 0x2C 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x66 - 0x69 0x6C 0x65 0x2C 0x20 0x6F 0x72 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x33 - 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 - 0x4D 0x61 0x6B 0x65 0x72 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6727 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_52= 0x20005853 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 6735 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x94 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x96 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x27 0x74 0x20 0x67 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x53 0x74 0x75 - 0x64 0x69 0x6F 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x68 0x65 0x72 0x65 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x65 0x74 0x68 0x6F 0x64 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x53 0x74 0x75 0x64 0x69 0x6F - 0x2C 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x6F 0x20 0x65 0x69 0x74 0x68 - 0x65 0x72 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x6F 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6837 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_53= 0x20005854 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 6845 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x6A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x27 0x74 0x20 0x67 0x65 0x74 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x4D 0x61 - 0x70 0x20 0x66 0x72 0x6F 0x6D 0x20 0x68 - 0x65 0x72 0x65 0x2E 0x20 0x20 0x20 0x0D - 0x0A 0x0D 0x0A 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x72 0x6F 0x6F 0x6D - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x62 0x75 0x69 0x6C 0x64 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x64 0x20 0x74 0x72 - 0x79 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6942 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_54= 0x20005855 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 6950 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xFF 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x01 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x01 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x73 0x79 0x20 0x73 - 0x69 0x67 0x6E 0x61 0x6C 0x21 0x20 0x41 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x20 0x69 - 0x73 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 - 0x4D 0x49 0x44 0x49 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x6E 0x6F 0x77 0x2C 0x20 - 0x6F 0x72 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 0x61 - 0x72 0x64 0x20 0x6D 0x61 0x79 0x20 0x6E - 0x6F 0x74 0x20 0x62 0x65 0x20 0x73 0x65 - 0x74 0x20 0x75 0x70 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x4D 0x49 0x44 - 0x49 0x2E 0x0D 0x0A 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x63 0x61 0x72 0x64 - 0x20 0x69 0x73 0x20 0x73 0x65 0x74 0x20 - 0x75 0x70 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x4D 0x49 0x44 0x49 0x20 - 0x61 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x4D 0x49 0x44 0x49 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x61 - 0x77 0x61 0x79 0x2C 0x20 0x73 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x69 0x74 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 7065 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_55= 0x20005856 - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 7073 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x23 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x20 0x69 0x6E 0x74 - 0x65 0x72 0x6E 0x61 0x6C 0x20 0x65 0x72 - 0x72 0x6F 0x72 0x20 0x6F 0x63 0x63 0x75 - 0x72 0x72 0x65 0x64 0x3A 0x20 0x7E 0x31 - 0x33 0x32 0x31 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 7153 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -#line 45 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -SET _help_48544F50_0= 0x20005290 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030605 0x20042 0x000305F3 0x0 0x0 0x57415645 0x00075090 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016105 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x43 0x68 0x6F - 0x69 0x63 0x65 0x73 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 121 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_1= 0x20005291 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 129 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0xAA 0x32 0x57415645 0x00075091 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 192 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_2= 0x20005292 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 200 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x32 0x57415645 0x00075092 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x73 0x65 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 269 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_3= 0x20005294 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 277 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016017 0x00030605 0x20006 0x000305F3 0x0 0x0 0x57415645 0x00075093 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 348 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_4= 0x20005293 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 356 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030605 0x20075 0x000305F3 0x0 0x0 0x57415645 0x00075094 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 421 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_5= 0x20005295 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 429 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0xAA 0x32 0x57415645 0x00075095 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 492 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_6= 0x20005296 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 500 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x6E 0x57415645 0x00075096 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 579 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_7= 0x20005297 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 587 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016017 0x00030605 0x2007B 0x000305F3 0x0 0x0 0x57415645 0x00075097 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x20 0x6D 0x6F 0x76 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 655 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_8= 0x20005298 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 663 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x6E 0x57415645 0x00075098 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 725 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_9= 0x20005299 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 733 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x32 0x57415645 0x00075099 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000529D - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x53 - 0x65 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 0x65 -ENDCHUNK - - -ENDCHUNK -#line 823 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_A= 0x2000529A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 831 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x6E 0x57415645 0x0007509A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200052A3 - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000529E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x31 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x81 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D - 0x2D 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x2E 0x0D 0x0A 0x01 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F - 0x72 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 939 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_B= 0x2000529B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 947 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030605 0x20039 0x000305F3 0x0 0x0 0x57415645 0x0007509B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1017 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_C= 0x2000529C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1025 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030605 0x0 0x000305F3 0x140 0xF0 0x57415645 0x0007509C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x2B 0x53 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1099 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_D= 0x2000529D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1107 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x65 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x65 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x64 0x65 0x63 0x69 0x64 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x20 0x28 0x62 0x6F 0x74 - 0x68 0x20 0x66 0x65 0x65 0x74 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x2C 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x66 0x6F 0x6F 0x74 - 0x20 0x75 0x70 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x29 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x61 - 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F - 0x73 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x72 0x72 0x6F 0x77 0x73 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x6F 0x66 0x20 0x53 - 0x65 0x74 0x20 0x53 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x50 0x6F 0x73 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x72 - 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1219 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_E= 0x2000529E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1227 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 1321 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_F= 0x2000529F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1329 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x31 0x09 0x4D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x73 0x74 0x61 0x72 0x74 0x69 0x6E - 0x67 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1441 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_10= 0x200052A5 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1449 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016017 0x00030605 0x20014 0x000305F3 0x0 0x0 0x57415645 0x000750A3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200052A6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1530 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_11= 0x200052A6 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1538 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A - 0x45 0x61 0x63 0x68 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x68 0x61 0x73 0x20 0x6D - 0x61 0x6E 0x79 0x20 0x64 0x69 0x66 0x66 - 0x65 0x72 0x65 0x6E 0x74 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 - 0x6C 0x65 0x73 0x2E 0x20 0x20 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x61 0x72 0x65 0x6E 0x27 0x74 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x97 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x65 - 0x77 0x20 0x6F 0x66 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1622 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_59= 0x200052A0 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 1630 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x67 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x22 0x66 0x72 0x65 0x65 0x7A - 0x65 0x22 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x46 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x2C 0x20 0x69 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x61 0x69 0x72 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x64 0x72 - 0x61 0x67 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x22 0x66 0x6C 0x6F 0x61 - 0x74 0x69 0x6E 0x67 0x22 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1748 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_5C= 0x200052A3 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 1756 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x46 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1858 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_92= 0x200052A4 - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 1866 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 1928 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -#line 46 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -SET _help_48544F50_0= 0x200052C0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016017 0x00030601 0x20006 0x000305F0 0x0 0x0 0x57415645 0x000750D0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1= 0x200052C1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 104 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016017 0x00030601 0x20075 0x000305F0 0x0 0x0 0x57415645 0x000750D1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x61 - 0x72 0x61 0x63 0x74 0x65 0x72 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 213 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2= 0x200052C2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 221 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x000750D2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 284 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3= 0x200052C3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 292 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750D3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 371 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4= 0x200052C4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 379 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750D4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x41 0x73 0x73 0x69 - 0x67 0x6E 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 486 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5= 0x200052C5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 494 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x20076 0x000305F0 0x0 0x0 0x57415645 0x000750D5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x70 0x72 0x6F - 0x70 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x63 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 - 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 602 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6= 0x200052C6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 610 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x000750D6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_91=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_91=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_91=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 673 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7= 0x200052C7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 681 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750D7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x29 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 - 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 759 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8= 0x200052C8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 767 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750D8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x70 0x72 0x6F - 0x70 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x41 0x73 0x73 0x69 0x67 0x6E 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 873 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_9= 0x200052C9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 881 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016017 0x00030601 0x20077 0x000305F0 0x0 0x0 0x57415645 0x000750D9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x61 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x33 0x44 0x20 0x57 - 0x6F 0x72 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 985 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_A= 0x200052CA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 993 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750DA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x33 0x44 0x20 - 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1058 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_B= 0x200052CB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1066 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750DB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1145 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_C= 0x200052CC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1153 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750DC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x41 0x73 0x73 0x69 - 0x67 0x6E 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1259 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_D= 0x200052CD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1267 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x20018 0x000305F0 0x0 0x0 0x57415645 0x000750DD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_55=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x76 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x20 0x43 0x68 0x61 0x6E - 0x67 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1374 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_E= 0x200052CE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1382 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750DE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x33 0x44 0x20 - 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1447 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_F= 0x200052CF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1455 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750DF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x20 0x65 0x61 0x73 0x65 0x6C - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1521 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_10= 0x200052D0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1529 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750E0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x50 0x72 0x6F - 0x70 0x20 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1594 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_11= 0x200052D1 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1602 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750E1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_49=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 1687 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_12= 0x200052D2 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1695 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601c 0x00030601 0x20096 0x000305F0 0x2E 0x8B 0x57415645 0x000750E2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_68=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_68=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x46 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x89 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_68=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x69 0x6E 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x64 0x64 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x27 0x73 0x20 0x70 - 0x69 0x63 0x74 0x75 0x72 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1798 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_13= 0x200052D3 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1806 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750E3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1885 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_14= 0x200052D4 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1893 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750E4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_46=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x42 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x4E 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x41 0x73 - 0x73 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x0D 0x0A 0x01 0x20 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1999 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_15= 0x200052D5 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2007 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601a 0x00030601 0x20097 0x000305F0 0x24E 0x82 0x57415645 0x000750E5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x50 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x27 0x76 0x65 0x20 - 0x75 0x73 0x65 0x64 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x6F 0x70 0x20 0x4C 0x69 - 0x73 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2114 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_16= 0x200052D6 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2122 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750E6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2203 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_17= 0x200052D7 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2211 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750E7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x41 0x73 0x73 0x69 0x67 0x6E 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 0x6E - 0x67 -ENDCHUNK - - -ENDCHUNK -#line 2319 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_18= 0x200052D8 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2327 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016016 0x00030601 0x2007B 0x000305F0 0x0 0x0 0x57415645 0x000750E8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x81 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F 0x76 - 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2434 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_19= 0x200052D9 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2442 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750E9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_74=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_74=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_74=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x6E 0x69 0x6D 0x61 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2509 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1A= 0x200052DA - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2517 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750EA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x73 0x74 0x61 - 0x6E 0x64 0x61 0x72 0x64 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x42 0x72 0x6F - 0x77 0x73 0x65 0x72 0x20 0x62 0x61 0x6C - 0x6C 0x6F 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2582 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1B= 0x200052DB - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2590 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750EB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_71=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x17 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_45=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000533E - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533D - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_71=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x35 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x58 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xD9 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_71=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x70 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x6C 0x65 0x63 0x74 0x65 0x64 0x2C 0x20 - 0x65 0x69 0x74 0x68 0x65 0x72 0x3A 0x0D - 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x95 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x69 0x74 0x2E 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2729 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1C= 0x200052DC - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2737 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x000750EC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005341 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005349 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x6D 0x6F 0x76 0x65 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x0D 0x0A 0x01 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 2852 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1D= 0x200052DD - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2860 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016016 0x00030601 0x2007B 0x000305F0 0x0 0x0 0x57415645 0x000750ED -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x97 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x52 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x87 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x61 0x73 0x73 0x69 0x67 - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2970 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1E= 0x200052DE - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2978 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750EE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_95=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_95=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_95=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3047 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1F= 0x200052DF - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3055 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750EF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_93=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005341 - FREE - FREE - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000533E - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x2000533C - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_93=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x97 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xAD 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_93=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x64 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x2E 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 3184 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_20= 0x200052E0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3192 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016016 0x00030601 0x20017 0x000305F0 0x0 0x0 0x57415645 0x000750F0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_73=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_73=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x99 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA3 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x48 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_73=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x74 0x73 0x20 0x70 0x61 0x74 0x68 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x73 0x20 0x70 0x61 0x74 0x68 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3303 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_21= 0x200052E1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3311 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750F1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005345 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005343 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005344 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDE 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC3 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xDE 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x68 0x61 - 0x76 0x65 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x64 0x20 0x61 0x20 0x70 0x61 0x74 - 0x68 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x20 0x6D 0x6F - 0x76 0x65 0x73 0x20 0x77 0x69 0x74 0x68 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 - 0x66 0x61 0x72 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x70 0x61 0x74 0x68 -ENDCHUNK - - -ENDCHUNK -#line 3444 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_22= 0x200052E2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3452 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750F2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3547 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_23= 0x200052E3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3555 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016017 0x00030601 0x20063 0x000305F0 0x0 0x0 0x57415645 0x000750F3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x58 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x94 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x75 0x73 0x65 0x64 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3668 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_24= 0x200052E4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3676 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750F4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000533E - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005352 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533D - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x27 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xDF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xCB 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xE1 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x70 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x65 0x69 0x74 0x68 0x65 0x72 - 0x3A 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 - 0x2D 0x2D 0x0D 0x0A 0x95 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x2E 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x61 0x72 0x74 0x69 - 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x01 0x20 0x46 - 0x72 0x65 0x65 0x7A 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x26 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 3813 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_25= 0x200052E5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3821 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750F5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_80=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_80=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x30 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_80=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x61 0x6D 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3915 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_26= 0x200052E6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3923 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 3983 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_27= 0x200052E7 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3991 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4051 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_28= 0x200052E8 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 4059 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_88=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_88=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_88=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4123 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_29= 0x200052E9 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 4131 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B 0x0D - 0x0A -ENDCHUNK - - -ENDCHUNK -#line 4197 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2A= 0x200052EA - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 4205 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016017 0x00030601 0x2001B 0x000305F0 0x0 0x0 0x57415645 0x000750FA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005346 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x7F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x97 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x27 0x73 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x2E 0x0D 0x0A - 0x32 0x09 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x20 0x52 0x65 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x50 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x50 0x61 0x74 0x68 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x69 - 0x73 0x20 0x70 0x75 0x73 0x68 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x20 0x6C 0x69 0x67 0x68 0x74 - 0x73 0x20 0x75 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4328 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2B= 0x200052EB - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 4336 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x24E 0xF0 0x57415645 0x000750FB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005349 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005352 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x2000533F - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6D 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x90 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xCD 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x55 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x6D 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x55 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x6D 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x90 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xA7 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xCD 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x44 - 0x65 0x70 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x65 0x69 0x74 0x68 0x65 0x72 0x3A - 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D - 0x2D 0x0D 0x0A 0x95 0x09 0x4D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 0x2E - 0x0D 0x0A 0x4E 0x6F 0x74 0x65 0x3A 0x20 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x22 0x57 - 0x61 0x6C 0x6B 0x22 0x20 0x61 0x6E 0x64 - 0x20 0x22 0x52 0x75 0x6E 0x22 0x20 0x77 - 0x6F 0x72 0x6B 0x20 0x62 0x65 0x73 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x64 0x72 0x61 0x67 0x2E 0x20 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x22 0x47 - 0x72 0x65 0x65 0x74 0x2C 0x22 0x20 0x22 - 0x54 0x61 0x6C 0x6B 0x2C 0x22 0x20 0x61 - 0x6E 0x64 0x20 0x22 0x4C 0x61 0x79 0x20 - 0x44 0x6F 0x77 0x6E 0x22 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x62 0x65 0x73 0x74 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x69 0x74 0x2E 0x0D 0x0A 0x01 - 0x20 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x01 - 0x20 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x01 0x20 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x20 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A 0x01 - 0x20 0x20 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x26 0x20 0x6E 0x65 - 0x61 0x72 0x20 0x6F 0x72 0x20 0x66 0x61 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4510 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2C= 0x200052EC - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4518 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750FC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005338 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005342 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005341 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xDE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFE 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x0D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xE0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFE 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x52 - 0x65 0x70 0x6C 0x61 0x63 0x69 0x6E 0x67 - 0x20 0x50 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x50 0x61 0x74 - 0x68 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x4E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x70 - 0x61 0x74 0x68 0x20 0x72 0x65 0x6A 0x6F - 0x69 0x6E 0x73 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6C 0x64 0x20 0x70 0x61 0x74 0x68 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x73 0x74 0x20 - 0x70 0x6F 0x69 0x6E 0x74 0x2E 0x20 0x0D - 0x0A 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x72 0x65 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x61 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 - 0x65 0x20 0x70 0x61 0x74 0x68 0x2C 0x20 - 0x74 0x75 0x72 0x6E 0x20 0x6F 0x66 0x66 - 0x20 0x74 0x68 0x65 0x20 0x52 0x65 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x50 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x50 0x61 0x74 - 0x68 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x62 0x79 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A - 0x20 0x01 0x20 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 4654 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2D= 0x200052ED - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4662 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750FD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_67=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_67=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_67=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 4726 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2E= 0x200052EE - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4734 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750FE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_89=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_89=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_89=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4794 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2F= 0x200052EF - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4802 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750FF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4866 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_30= 0x200052F0 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4874 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00016018 0x00030601 0x2001F 0x000305F0 0x0 0x0 0x57415645 0x00075100 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x77 0x68 0x65 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 - 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x61 0x70 - 0x70 0x65 0x61 0x72 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x73 0x70 0x6F 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x53 0x79 0x6E 0x63 0x68 0x72 - 0x6F 0x6E 0x69 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4985 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_31= 0x200052F1 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4993 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075101 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x69 0x73 0x20 0x22 - 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 5061 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_32= 0x200052F2 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 5069 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075102 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x20 0x41 0x72 0x72 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x69 0x6D - 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x65 0x63 0x6B 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x2C 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5150 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_33= 0x200052F3 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 5158 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075103 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x67 0x65 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 0x72 - 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 0x20 - 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x4D 0x6F 0x76 - 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 5260 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_34= 0x200052F4 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 5268 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016018 0x00030601 0x2001F 0x000305F0 0x0 0x0 0x57415645 0x00075104 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x54 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD4 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x74 0x69 0x6D 0x69 0x6E 0x67 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x77 0x6F 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x20 0x6D 0x65 0x65 0x74 - 0x20 0x75 0x70 0x20 0x77 0x69 0x74 0x68 - 0x20 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x2E 0x20 0x20 0x4E 0x6F 0x74 - 0x65 0x3A 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x73 0x20 0x6D - 0x75 0x73 0x74 0x20 0x61 0x6C 0x72 0x65 - 0x61 0x64 0x79 0x20 0x62 0x65 0x20 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x65 - 0x64 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x79 - 0x6E 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5388 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_35= 0x200052F5 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 5396 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075105 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_79=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_79=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_79=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x73 0x70 0x6F 0x74 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x69 0x73 0x20 - 0x22 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x2E - 0x22 -ENDCHUNK - - -ENDCHUNK -#line 5468 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_36= 0x200052F6 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 5476 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075106 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x20 0x41 0x72 0x72 0x6F - 0x77 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x69 0x73 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x65 0x63 0x6B 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2C 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5556 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_37= 0x200052F7 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5564 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075107 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x6D 0x65 0x65 0x74 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x4D 0x6F 0x76 - 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 5660 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_38= 0x200052F8 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5668 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075108 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC3 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x65 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x20 0x6F 0x66 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x69 0x74 0x20 0x6F 0x6E - 0x74 0x6F 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x20 0x63 0x6F - 0x70 0x79 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x74 0x68 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x43 0x75 0x74 - 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 - 0x26 0x20 0x50 0x61 0x73 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5783 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_39= 0x200052F9 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5791 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030601 0x20053 0x000305F0 0x0 0x0 0x57415645 0x00075109 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x64 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 - 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5856 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3A= 0x200052FA - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5864 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007510A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x70 0x61 0x74 0x68 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5934 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3B= 0x200052FB - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5942 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007510B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_44=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x74 0x68 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6039 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3C= 0x200052FC - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 6047 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x0007510C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x46 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6113 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3D= 0x200052FD - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 6121 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007510D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x70 0x70 0x6C 0x79 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x74 0x68 0x20 0x74 - 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6191 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3E= 0x200052FE - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 6199 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007510E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005349 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x24 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x74 0x68 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 6293 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3F= 0x200052FF - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 6301 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007510F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_42=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x97 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x98 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6415 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_40= 0x20005300 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 6423 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x0001601b 0x00030601 0x20055 0x000305F0 0x0 0x0 0x57415645 0x00075110 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x43 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6488 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_41= 0x20005301 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 6496 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075111 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6565 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_42= 0x20005302 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 6573 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075112 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x77 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x20 0x70 0x61 - 0x73 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6681 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_43= 0x20005303 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 6689 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x00075113 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6755 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_44= 0x20005304 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 6763 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075114 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_83=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_83=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_83=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6846 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_45= 0x20005305 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 6854 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075115 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 6940 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_46= 0x20005306 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 6948 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075116 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x75 0x74 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7059 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_47= 0x20005307 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 7067 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001601b 0x00030601 0x20056 0x000305F0 0x0 0x0 0x57415645 0x00075117 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7131 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_48= 0x20005308 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 7139 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075118 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7208 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_49= 0x20005309 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 7216 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075119 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x77 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x20 0x70 0x61 - 0x73 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7323 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4A= 0x2000530A - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 7331 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x0007511A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7396 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4B= 0x2000530B - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 7404 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007511B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_77=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_77=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_77=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7487 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4C= 0x2000530C - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 7495 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007511C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 7581 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4D= 0x2000530D - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 7589 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007511D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA8 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7703 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4E= 0x2000530E - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 7711 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x0007511E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x92 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x33 - 0x44 0x20 0x4F 0x62 0x6A 0x65 0x63 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7777 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4F= 0x2000530F - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 7785 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007511F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7857 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_50= 0x20005310 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 7865 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075120 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_69=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_69=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_69=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 7953 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_51= 0x20005311 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 7961 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x00075121 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x44 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x69 0x70 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 - 0x69 0x70 0x20 0x74 0x68 0x65 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x52 - 0x6F 0x74 0x61 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8072 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_52= 0x20005312 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 8080 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001601d 0x00030601 0x2001C 0x000305F0 0x0 0x2 0x57415645 0x00075122 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_66=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_66=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_66=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x69 0x70 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8148 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_53= 0x20005313 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 8156 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075123 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_72=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_59=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_72=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_72=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 0x70 - 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8252 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_54= 0x20005314 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 8260 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075124 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x25 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x70 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 8354 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_55= 0x20005315 - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 8362 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x00075125 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x43 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x77 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x6F 0x72 0x20 0x72 0x69 0x67 - 0x68 0x74 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x52 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8473 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_56= 0x20005316 - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 8481 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x0001601d 0x00030601 0x2001D 0x000305F0 0x0 0x2 0x57415645 0x00075126 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x75 0x72 0x6E 0x20 0x4C 0x65 0x66 - 0x74 0x20 0x6F 0x72 0x20 0x52 0x69 0x67 - 0x68 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8549 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_57= 0x20005317 - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 8557 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075127 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8650 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_58= 0x20005318 - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 8658 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075128 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F - 0x72 0x20 0x72 0x69 0x67 0x68 0x74 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 8753 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_59= 0x20005319 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 8761 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x00075129 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x40 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x69 0x70 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x74 0x6F 0x20 0x6F - 0x6E 0x65 0x20 0x73 0x69 0x64 0x65 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x74 0x69 0x70 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8871 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5A= 0x2000531A - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 8879 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x0001601d 0x00030601 0x2001E 0x000305F0 0x0 0x2 0x57415645 0x0007512A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x69 0x70 0x20 0x74 0x6F 0x20 0x4F - 0x6E 0x65 0x20 0x53 0x69 0x64 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8946 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5B= 0x2000531B - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 8954 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007512B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_62=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_40=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_62=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_62=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 0x70 - 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9048 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5C= 0x2000531C - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 9056 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x0007512C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x70 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x6F 0x6E 0x65 - 0x20 0x73 0x69 0x64 0x65 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 9151 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5D= 0x2000531D - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 9159 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x0007512D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_61=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x01 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_61=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x93 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x64 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x93 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_61=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x77 0x61 0x79 0x20 0x69 - 0x74 0x20 0x77 0x61 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x72 0x6F 0x74 0x61 0x74 0x65 0x64 - 0x20 0x69 0x74 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9273 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5E= 0x2000531E - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 9281 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x0001601d 0x00030601 0x2006B 0x000305F0 0x0 0x2 0x57415645 0x0007512E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x42 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9348 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5F= 0x2000531F - - -CHUNK('HTOP', _help_48544F50_5F, "") -SUBFILE -#line 9356 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007512F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9425 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_60= 0x20005320 - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 9433 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075130 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_60=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_60=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_60=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 9527 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_61= 0x20005321 - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 9535 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x00016017 0x00030601 0x20015 0x000305F0 0x0 0x0 0x57415645 0x00075131 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x6C 0x65 0x63 0x74 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x65 0x6C 0x65 - 0x63 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9646 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_62= 0x20005322 - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 9654 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x24E 0xF0 0x57415645 0x00075132 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_82=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_82=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_82=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x6C 0x65 0x63 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9721 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_63= 0x20005323 - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 9729 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075133 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_63=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_48=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000534D - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000534E - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_63=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_63=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x4E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x53 0x65 0x6C 0x65 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x62 - 0x65 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A 0x01 - 0x20 0x53 0x65 0x6C 0x65 0x63 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 -ENDCHUNK - - -ENDCHUNK -#line 9827 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_64= 0x20005324 - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 9835 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x0001601c 0x00030601 0x20096 0x000305F0 0x2E 0x6E 0x57415645 0x00075134 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x68 0x61 - 0x74 0x20 0x69 0x73 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 - 0x65 0x77 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 0x65 - 0x6C 0x65 0x63 0x74 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x27 0x73 0x20 0x70 0x69 0x63 - 0x74 0x75 0x72 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9948 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_65= 0x20005325 - - -CHUNK('HTOP', _help_48544F50_65, "") -SUBFILE -#line 9956 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_65, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075135 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_43=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 - 0x65 0x77 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x4E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x49 0x66 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x76 0x69 0x65 0x77 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x72 0x65 0x61 0x70 0x70 0x65 0x61 0x72 - 0x73 0x20 0x6F 0x6E 0x2D 0x73 0x74 0x61 - 0x67 0x65 0x2E 0x20 0x20 0x4D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x70 0x75 0x74 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x2E 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10063 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_66= 0x20005326 - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 10071 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x0001601a 0x00030601 0x20097 0x000305F0 0x24E 0x85 0x57415645 0x00075136 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x54 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x61 0x20 0x70 0x72 - 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x74 0x68 - 0x61 0x74 0x20 0x69 0x73 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 - 0x69 0x65 0x77 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x6C 0x65 0x63 0x74 0x20 0x74 0x68 - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x73 0x20 - 0x70 0x69 0x63 0x74 0x75 0x72 0x65 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x70 0x20 0x4C 0x69 0x73 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10186 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_67= 0x20005327 - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 10194 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075137 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 0x72 - 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 - 0x69 0x65 0x77 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 0x20 - 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x61 0x73 0x20 0x6F 0x75 0x74 0x20 - 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 0x2C - 0x20 0x74 0x68 0x65 0x20 0x70 0x72 0x6F - 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x72 0x65 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x6F - 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 0x2E - 0x20 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x75 0x74 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10307 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_68= 0x20005328 - - -CHUNK('HTOP', _help_48544F50_68, "") -SUBFILE -#line 10315 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_68, "") - BO OSK LONG 0x00016018 0x00030601 0x20065 0x000305F0 0x0 0x0 0x57415645 0x00075138 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_65=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_65=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x46 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_65=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x65 0x76 0x65 - 0x6E 0x6C 0x79 0x20 0x67 0x72 0x6F 0x77 - 0x20 0x6F 0x72 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x73 0x69 0x7A 0x69 0x6E 0x67 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10426 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_69= 0x20005329 - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 10434 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x00016019 0x00030601 0x20021 0x000305F0 0x0 0xFFFFFFEC 0x57415645 0x00075139 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10499 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6A= 0x2000532A - - -CHUNK('HTOP', _help_48544F50_6A, "") -SUBFILE -#line 10507 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007513A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_78=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_78=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x53 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_78=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x69 0x7A 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x67 0x72 0x6F 0x77 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x75 0x70 - 0x2E 0x20 0x54 0x6F 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x73 0x6F 0x6D 0x65 - 0x74 0x68 0x69 0x6E 0x67 0x2C 0x20 0x64 - 0x72 0x61 0x67 0x20 0x64 0x6F 0x77 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10599 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6B= 0x2000532B - - -CHUNK('HTOP', _help_48544F50_6B, "") -SUBFILE -#line 10607 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6B, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007513B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000534F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x69 0x6E 0x67 - 0x20 0x65 0x76 0x65 0x6E 0x6C 0x79 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x53 0x68 0x72 - 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x69 0x6D 0x65 -ENDCHUNK - - -ENDCHUNK -#line 10702 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6C= 0x2000532C - - -CHUNK('HTOP', _help_48544F50_6C, "") -SUBFILE -#line 10710 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6C, "") - BO OSK LONG 0x00016018 0x00030601 0x20065 0x000305F0 0x0 0x0 0x57415645 0x0007513C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x96 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x68 0x6F - 0x72 0x74 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x69 0x64 0x65 0x72 0x20 0x6F - 0x72 0x20 0x74 0x61 0x6C 0x6C 0x65 0x72 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x69 - 0x6E 0x6E 0x65 0x72 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x73 - 0x69 0x7A 0x69 0x6E 0x67 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x2E 0x0D 0x0A - 0x20 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10823 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6D= 0x2000532D - - -CHUNK('HTOP', _help_48544F50_6D, "") -SUBFILE -#line 10831 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6D, "") - BO OSK LONG 0x00016019 0x00030601 0x20020 0x000305F0 0x0 0xFFFFFFEC 0x57415645 0x0007513D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x71 0x75 0x61 0x73 0x68 0x20 0x26 - 0x20 0x53 0x74 0x72 0x65 0x74 0x63 0x68 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10897 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6E= 0x2000532E - - -CHUNK('HTOP', _help_48544F50_6E, "") -SUBFILE -#line 10905 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007513E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_75=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_52=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00075164 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_75=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x57 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_75=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x73 0x71 0x75 0x61 0x73 - 0x68 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x20 - 0x54 0x6F 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x20 0x73 0x6F 0x6D 0x65 0x74 - 0x68 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x75 0x70 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10999 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6F= 0x2000532F - - -CHUNK('HTOP', _help_48544F50_6F, "") -SUBFILE -#line 11007 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007513F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_92=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_53=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005350 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_92=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_92=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x03 0x03 0x53 0x71 0x75 0x61 0x73 0x68 - 0x69 0x6E 0x67 0x20 0x26 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x53 0x71 - 0x75 0x61 0x73 0x68 0x69 0x6E 0x67 0x20 - 0x6F 0x72 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x69 0x6D 0x65 -ENDCHUNK - - -ENDCHUNK -#line 11103 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_70= 0x20005330 - - -CHUNK('HTOP', _help_48544F50_70, "") -SUBFILE -#line 11111 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_70, "") - BO OSK LONG 0x00016018 0x00030601 0x20065 0x000305F0 0x0 0x0 0x57415645 0x00075140 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x52 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x69 - 0x74 0x73 0x20 0x6F 0x72 0x69 0x67 0x69 - 0x6E 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 - 0x0D 0x0A 0x20 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x73 0x69 0x7A 0x69 - 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11224 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_71= 0x20005331 - - -CHUNK('HTOP', _help_48544F50_71, "") -SUBFILE -#line 11232 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_71, "") - BO OSK LONG 0x00016019 0x00030601 0x2006C 0x000305F0 0x0 0xFFFFFFEC 0x57415645 0x00075141 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_87=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_87=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_87=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x42 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11299 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_72= 0x20005332 - - -CHUNK('HTOP', _help_48544F50_72, "") -SUBFILE -#line 11307 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_72, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075142 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11376 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_73= 0x20005333 - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 11384 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075143 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 11477 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_74= 0x20005334 - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 11485 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x00016017 0x00030601 0x20018 0x000305F0 0x0 0x0 0x57415645 0x00075144 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_70=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x31 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_70=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x75 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_70=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11598 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_75= 0x20005335 - - -CHUNK('HTOP', _help_48544F50_75, "") -SUBFILE -#line 11606 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_75, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075145 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11673 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_76= 0x20005336 - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 11681 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075146 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_76=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_76=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_76=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x0D - 0x0A 0x20 0x49 0x66 0x20 0x74 0x68 0x65 - 0x79 0x20 0x63 0x6C 0x69 0x63 0x6B 0x65 - 0x64 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6F 0x72 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x64 0x69 0x73 0x70 - 0x6C 0x61 0x79 0x20 0x73 0x74 0x61 0x6E - 0x64 0x61 0x72 0x64 0x20 0x43 0x6F 0x73 - 0x74 0x75 0x6D 0x65 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x72 0x20 0x62 0x61 0x6C - 0x6C 0x6F 0x6F 0x6E 0x2E 0x0D 0x0A 0x0D - 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 0x79 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x65 0x64 - 0x20 0x61 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2C 0x20 0x64 0x69 0x73 0x70 - 0x6C 0x61 0x79 0x20 0x73 0x74 0x61 0x6E - 0x64 0x61 0x72 0x64 0x20 0x33 0x44 0x20 - 0x57 0x6F 0x72 0x64 0x20 0x45 0x61 0x73 - 0x65 0x6C 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11761 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_77= 0x20005337 - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 11769 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075147 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 11855 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_78= 0x20005338 - - -CHUNK('HTOP', _help_48544F50_78, "") -SUBFILE -#line 11863 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_78, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075148 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_94=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_47=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_94=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_94=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 11965 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_79= 0x20005339 - - -CHUNK('HTOP', _help_48544F50_79, "") -SUBFILE -#line 11973 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_79, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075149 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x27 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_41=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x41 0x73 - 0x73 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x73 - 0x73 0x69 0x67 0x6E 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2D 0x01 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x73 0x73 0x69 0x67 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12076 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7A= 0x2000533A - - -CHUNK('HTOP', _help_48544F50_7A, "") -SUBFILE -#line 12084 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7A, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC3 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC3 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x66 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x73 0x20 0x70 0x61 0x74 0x68 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2D - 0x01 0x0D 0x0A 0x32 0x09 0x22 0x54 0x75 - 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 0x74 - 0x68 0x65 0x20 0x55 0x70 0x20 0x26 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x6E 0x2C - 0x22 0x20 0x74 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x70 0x75 0x73 0x68 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x6C 0x69 0x67 0x68 0x74 0x73 0x20 - 0x75 0x70 0x2E 0x0D 0x0A 0x33 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 - 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12208 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7B= 0x2000533B - - -CHUNK('HTOP', _help_48544F50_7B, "") -SUBFILE -#line 12216 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_54=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 - 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 - 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x33 0x44 0x20 0x4F 0x62 - 0x6A 0x65 0x63 0x74 0x2D 0x01 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x72 0x69 - 0x64 0x20 0x6F 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12331 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7C= 0x2000533C - - -CHUNK('HTOP', _help_48544F50_7C, "") -SUBFILE -#line 12339 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x61 0x6E - 0x64 0x20 0x69 0x74 0x73 0x20 0x70 0x61 - 0x74 0x68 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x0D 0x0A 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x75 - 0x70 0x09 0x09 0x09 0x09 0x74 0x68 0x65 - 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 - 0x6F 0x77 0x6E 0x0D 0x0A 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x09 0x09 0x09 0x09 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x09 0x09 0x09 0x43 0x74 0x72 0x6C - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x70 0x61 0x74 - 0x68 0x09 0x09 0x09 0x53 0x68 0x69 0x66 - 0x74 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12482 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7D= 0x2000533D - - -CHUNK('HTOP', _help_48544F50_7D, "") -SUBFILE -#line 12490 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7D, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_51=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x01 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x03 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x46 0x72 - 0x65 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x67 - 0x65 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x22 0x66 0x72 0x65 0x65 - 0x7A 0x65 0x22 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 - 0x46 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D - 0x70 0x6C 0x65 0x2C 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x75 0x70 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x61 0x69 - 0x72 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x66 0x72 0x65 0x65 0x7A - 0x65 0x20 0x74 0x68 0x65 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x64 - 0x72 0x61 0x67 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x22 0x66 0x6C 0x6F - 0x61 0x74 0x69 0x6E 0x67 0x22 0x20 0x65 - 0x66 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x66 0x72 0x65 0x65 0x7A - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x53 0x68 0x69 0x66 0x74 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12609 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7E= 0x2000533E - - -CHUNK('HTOP', _help_48544F50_7E, "") -SUBFILE -#line 12617 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 - 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x73 0x74 0x61 0x72 - 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12728 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7F= 0x2000533F - - -CHUNK('HTOP', _help_48544F50_7F, "") -SUBFILE -#line 12736 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_50=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12837 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_80= 0x20005340 - - -CHUNK('HTOP', _help_48544F50_80, "") -SUBFILE -#line 12845 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_80, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075150 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x42 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF7 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x07 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x01 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x76 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8E 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x8E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x91 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x07 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x61 0x73 - 0x73 0x69 0x67 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E 0x20 0x0D 0x0A - 0x01 0x0D 0x0A 0x01 0x0D 0x0A 0x54 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x77 0x69 - 0x74 0x68 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x46 0x72 - 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12989 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_81= 0x20005341 - - -CHUNK('HTOP', _help_48544F50_81, "") -SUBFILE -#line 12997 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_81, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075151 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x04 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x31 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x50 0x6C 0x61 - 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x75 0x74 - 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 0x6C - 0x6C 0x79 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13136 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_82= 0x20005342 - - -CHUNK('HTOP', _help_48544F50_82, "") -SUBFILE -#line 13144 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_82, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075152 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x50 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 13203 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_83= 0x20005343 - - -CHUNK('HTOP', _help_48544F50_83, "") -SUBFILE -#line 13211 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_83, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075153 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13309 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_84= 0x20005344 - - -CHUNK('HTOP', _help_48544F50_84, "") -SUBFILE -#line 13317 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_84, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075154 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_84=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_56=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_84=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_84=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x6F 0x6E 0x6C - 0x79 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x27 0x73 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13407 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_85= 0x20005345 - - -CHUNK('HTOP', _help_48544F50_85, "") -SUBFILE -#line 13415 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_85, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075155 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 0x70 - 0x61 0x74 0x68 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13504 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_86= 0x20005346 - - -CHUNK('HTOP', _help_48544F50_86, "") -SUBFILE -#line 13512 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_86, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075156 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 - 0x75 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x61 0x20 0x72 0x65 - 0x64 0x20 0x6C 0x69 0x67 0x68 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x66 0x66 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x66 0x66 - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x6E - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x65 0x72 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x64 0x20 0x6C 0x69 0x67 - 0x68 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13607 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_87= 0x20005347 - - -CHUNK('HTOP', _help_48544F50_87, "") -SUBFILE -#line 13615 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_87, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075157 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x46 0x39 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13699 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_88= 0x20005348 - - -CHUNK('HTOP', _help_48544F50_88, "") -SUBFILE -#line 13707 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_88, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075158 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_86=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_58=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_86=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_86=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 - 0x66 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x44 0x6F 0x77 0x6E - 0x20 0x6F 0x72 0x20 0x55 0x70 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13802 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_89= 0x20005349 - - -CHUNK('HTOP', _help_48544F50_89, "") -SUBFILE -#line 13810 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_89, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075159 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xDC 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x73 0x73 0x69 0x67 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2D - 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x69 0x73 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x64 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13930 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8A= 0x2000534A - - -CHUNK('HTOP', _help_48544F50_8A, "") -SUBFILE -#line 13938 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8A, "") - BO OSK LONG 0x00016015 0x00030602 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007515A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x65 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 13996 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8B= 0x2000534B - - -CHUNK('HTOP', _help_48544F50_8B, "") -SUBFILE -#line 14004 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x77 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x72 - 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x73 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x01 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x77 0x69 0x74 0x68 0x69 0x6E - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14106 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8C= 0x2000534C - - -CHUNK('HTOP', _help_48544F50_8C, "") -SUBFILE -#line 14114 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_57=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 14187 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8D= 0x2000534D - - -CHUNK('HTOP', _help_48544F50_8D, "") -SUBFILE -#line 14195 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8D, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x23 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x53 0x65 - 0x6C 0x65 0x63 0x74 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x61 0x6E 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x27 0x73 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x50 0x72 0x6F 0x70 0x20 - 0x4C 0x69 0x73 0x74 0x2D 0x2D 0x6C 0x6F - 0x63 0x61 0x74 0x65 0x64 0x20 0x6F 0x6E - 0x20 0x65 0x69 0x74 0x68 0x65 0x72 0x20 - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x67 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14295 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8E= 0x2000534E - - -CHUNK('HTOP', _help_48544F50_8E, "") -SUBFILE -#line 14303 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x49 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA4 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x53 0x65 - 0x6C 0x65 0x63 0x74 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A - 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x27 0x73 0x20 0x70 0x69 0x63 - 0x74 0x75 0x72 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x6F 0x72 0x20 0x50 0x72 0x6F - 0x70 0x20 0x4C 0x69 0x73 0x74 0x2D 0x2D - 0x6C 0x6F 0x63 0x61 0x74 0x65 0x64 0x20 - 0x6F 0x6E 0x20 0x65 0x69 0x74 0x68 0x65 - 0x72 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x61 0x67 0x65 0x2E 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x72 0x65 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x20 0x6F 0x6E 0x2D 0x73 0x74 - 0x61 0x67 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x54 0x6F 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14424 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8F= 0x2000534F - - -CHUNK('HTOP', _help_48544F50_8F, "") -SUBFILE -#line 14432 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_81=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_81=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_81=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x72 - 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x69 0x6D 0x65 0x0D 0x0A 0x54 0x6F 0x20 - 0x73 0x68 0x72 0x69 0x6E 0x6B 0x20 0x6F - 0x72 0x20 0x67 0x72 0x6F 0x77 0x20 0x61 - 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x69 - 0x6D 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 0x68 - 0x72 0x69 0x6E 0x6B 0x20 0x6F 0x72 0x20 - 0x67 0x72 0x6F 0x77 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x6F 0x72 0x20 0x67 - 0x72 0x6F 0x77 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x69 0x6D 0x65 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x68 0x72 0x69 0x6E 0x6B 0x22 - 0x20 0x6F 0x72 0x20 0x22 0x47 0x72 0x6F - 0x77 0x2C 0x22 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14567 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_90= 0x20005350 - - -CHUNK('HTOP', _help_48544F50_90, "") -SUBFILE -#line 14575 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_90, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075160 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_90, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x53 0x71 - 0x75 0x61 0x73 0x68 0x69 0x6E 0x67 0x20 - 0x6F 0x72 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x69 0x6D 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x73 0x71 0x75 0x61 - 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x20 0x61 0x6E - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x69 0x6D - 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x2D 0x01 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x20 0x6F 0x72 - 0x20 0x73 0x74 0x72 0x65 0x74 0x63 0x68 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x69 - 0x6D 0x65 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x22 0x53 0x71 - 0x75 0x61 0x73 0x68 0x22 0x20 0x6F 0x72 - 0x20 0x22 0x53 0x74 0x72 0x65 0x74 0x63 - 0x68 0x2C 0x22 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14712 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_91= 0x20005351 - - -CHUNK('HTOP', _help_48544F50_91, "") -SUBFILE -#line 14720 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_91, "") - BO OSK LONG 0x00016017 0x00030601 0x20063 0x000305F0 0x0 0x0 0x57415645 0x00075161 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14787 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_92= 0x20005352 - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 14795 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075162 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_85=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_85=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x90 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x93 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_85=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 - 0x75 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A 0x31 - 0x09 0x22 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x22 0x20 0x74 0x68 0x65 0x20 0x46 - 0x61 0x6C 0x6C 0x20 0x54 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x47 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2D 0x01 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x69 0x73 0x20 0x70 0x75 - 0x73 0x68 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x69 0x74 0x20 0x6C - 0x69 0x67 0x68 0x74 0x73 0x20 0x75 0x70 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x44 0x6F 0x77 0x6E 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 - 0x75 0x72 0x66 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14915 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_93= 0x20005353 - - -CHUNK('HTOP', _help_48544F50_93, "") -SUBFILE -#line 14923 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_93, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075163 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15058 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_94= 0x20005354 - - -CHUNK('HTOP', _help_48544F50_94, "") -SUBFILE -#line 15066 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_94, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075164 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_64=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_64=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_64=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 15160 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -#line 47 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -SET _help_48544F50_0= 0x20005288 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000750C0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20285 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x64 0x6F 0x20 0x61 0x6E 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x65 0x6C 0x73 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x43 0x68 - 0x6F 0x69 0x63 0x65 0x73 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 130 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - -SET _help_48544F50_1= 0x20005289 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 138 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000750C1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027D - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xD3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB1 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xD3 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xE9 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x6F 0x6C 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x54 0x6F 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x0D 0x0A 0x41 0x64 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x09 - 0x09 0x09 0x09 0x01 0x0D 0x0A 0x41 0x64 - 0x64 0x20 0x61 0x20 0x70 0x72 0x6F 0x70 - 0x09 0x09 0x09 0x09 0x09 0x01 0x0D 0x0A - 0x43 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x09 0x09 0x09 0x01 -ENDCHUNK - - -ENDCHUNK -#line 263 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - -SET _help_48544F50_2= 0x2000528A - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 271 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000750C2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20046 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x6F 0x6C 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2E 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 0x20 - 0x42 0x6F 0x78 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 368 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - -SET _help_48544F50_3= 0x2000528B - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 376 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x21 - 0x20 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x27 0x74 0x20 0x75 0x73 0x65 0x20 - 0x55 0x6E 0x64 0x6F 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x6E 0x6F 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 443 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -#line 48 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -SET _help_48544F50_0= 0x20005380 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016017 0x00030601 0x20007 0x000305F0 0x0 0x0 0x57415645 0x00075200 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1= 0x20005381 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 103 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016017 0x00030601 0x20078 0x000305F0 0x0 0x0 0x57415645 0x00075201 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x12 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x65 0x66 0x66 0x65 0x63 - 0x74 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x63 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 - 0x65 0x63 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 213 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2= 0x20005382 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 221 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075202 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x20 0x62 0x72 0x6F 0x77 0x73 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 288 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_3= 0x20005383 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 296 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075203 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B3 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AB - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x79 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x95 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x20 0x74 0x6F 0x2E 0x0D - 0x0A 0x01 0x20 0x41 0x74 0x74 0x61 0x63 - 0x68 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x6F 0x75 0x73 0x6C 0x79 -ENDCHUNK - - -ENDCHUNK -#line 406 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_4= 0x20005384 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 414 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075204 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x4F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x73 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D - 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x01 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 527 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_5= 0x20005385 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 535 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x20079 0x000305F0 0x0 0x0 0x57415645 0x00075205 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x22 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x70 0x65 0x65 - 0x63 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 641 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_6= 0x20005386 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 649 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075206 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x53 0x70 0x65 - 0x65 0x63 0x68 0x20 0x62 0x72 0x6F 0x77 - 0x73 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 715 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_7= 0x20005387 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 723 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075207 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B3 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 0x61 - 0x6C 0x6B 0x2E 0x0D 0x0A 0x01 0x20 0x41 - 0x74 0x74 0x61 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x69 0x6E 0x69 0x6E - 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 818 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_8= 0x20005388 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 826 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075208 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053AD - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x14 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x65 0x65 0x63 0x68 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x01 0x20 0x50 0x61 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 - 0x64 0x6F 0x6E 0x65 0x20 0x74 0x61 0x6C - 0x6B 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 944 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_9= 0x20005389 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 952 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016017 0x00030601 0x2007A 0x000305F0 0x0 0x0 0x57415645 0x00075209 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x75 - 0x73 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1056 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_A= 0x2000538A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1064 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007520A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x4D 0x75 0x73 - 0x69 0x63 0x20 0x42 0x72 0x6F 0x77 0x73 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1130 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_B= 0x2000538B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1138 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007520B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AB -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x74 0x6F 0x2E 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 -ENDCHUNK - - -ENDCHUNK -#line 1226 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_C= 0x2000538C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1234 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007520C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x09 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x13 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x47 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x5B 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x69 0x63 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D - 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x01 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1348 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_D= 0x2000538D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1356 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x0007520D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x7F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x69 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x74 0x69 0x6D 0x65 - 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1460 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_E= 0x2000538E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1468 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007520E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B2 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x0D 0x0A 0x01 0x20 - 0x48 0x6F 0x77 0x20 0x6D 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x63 0x61 0x6E 0x20 0x49 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1569 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_F= 0x2000538F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1577 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007520F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x56 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x6A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x6F 0x6E 0x63 0x65 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 - 0x69 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x01 0x20 0x53 0x74 - 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1693 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_10= 0x20005390 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1701 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075210 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x83 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x69 0x74 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x6F - 0x75 0x73 0x6C 0x79 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1805 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_11= 0x20005391 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1813 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075211 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053B2 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E - 0x0D 0x0A 0x01 0x20 0x48 0x6F 0x77 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 - 0x49 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1904 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_12= 0x20005392 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1912 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075212 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x200053B0 - FREE - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053A7 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053AD -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x69 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xC7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x73 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x9F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xB5 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xC9 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x6F 0x75 0x73 0x6C 0x79 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x4E 0x6F 0x74 0x65 - 0x3A 0x20 0x20 0x59 0x6F 0x75 0x20 0x77 - 0x6F 0x6E 0x27 0x74 0x20 0x68 0x65 0x61 - 0x72 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x6C 0x6F 0x6F 0x70 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x01 0x20 0x53 0x74 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 2048 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_13= 0x20005393 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 2056 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075213 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x31 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2174 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_14= 0x20005394 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 2182 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075214 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053B2 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x48 0x6F 0x77 0x20 0x6D 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x63 0x61 0x6E 0x20 0x49 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2272 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_15= 0x20005395 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2280 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075215 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x14 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x60 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x74 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x41 0x74 0x74 0x61 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x01 0x20 - 0x53 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 2396 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_16= 0x20005396 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2404 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601b 0x00030601 0x20038 0x000305F0 0x0 0x0 0x57415645 0x00075216 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x6C 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x69 0x6E - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x56 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F - 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2481 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_17= 0x20005397 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2489 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030601 0x20038 0x000305F0 0x0 0x0 0x57415645 0x00075217 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A9 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x56 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F - 0x6C 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2571 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_18= 0x20005398 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2579 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075218 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x22 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x31 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x6C 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2674 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_19= 0x20005399 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2682 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016017 0x00030601 0x20027 0x000305F0 0x0 0x0 0x57415645 0x00075219 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - FREE - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x52 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6C 0x69 0x73 - 0x74 0x65 0x6E 0x20 0x74 0x6F 0x2C 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x69 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 - 0x61 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x62 0x65 0x67 0x69 0x6E - 0x73 0x2E 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x68 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x61 0x73 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x4C 0x69 0x73 0x74 0x65 0x6E 0x65 - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2799 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1A= 0x2000539A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2807 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007521A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6C 0x69 0x73 - 0x74 0x65 0x6E 0x20 0x74 0x6F 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 - 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x61 0x72 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F - 0x72 0x2D 0x2D 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x6F 0x72 0x20 0x72 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x6F - 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x6F 0x72 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2899 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1B= 0x2000539B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2907 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x0007521B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x4C 0x69 0x73 0x74 0x65 0x6E 0x65 - 0x72 0x20 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2973 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1C= 0x2000539C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2981 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007521C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x2C 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x2C 0x20 0x6F 0x72 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F -ENDCHUNK - - -ENDCHUNK -#line 3076 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1D= 0x2000539D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 3084 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601a 0x00030601 0x20034 0x000305F0 0x0 0x0 0x57415645 0x0007521D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F 0x66 - 0x66 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x48 0x65 0x6C - 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3156 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1E= 0x2000539E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 3164 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601a 0x00030601 0x00003012 0x000305F0 0x0 0x0 0x57415645 0x0007521E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x65 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x69 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3226 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1F= 0x2000539F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3234 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601a 0x00030601 0x00003015 0x000305F0 0x0 0x0 0x57415645 0x0007521F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x6F 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3295 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_20= 0x200053A0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3303 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075220 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x79 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x6F 0x6E - 0x65 0x20 0x61 0x66 0x74 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3410 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_21= 0x200053A1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3418 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00016017 0x00030601 0x20026 0x000305F0 0x0 0x0 0x57415645 0x00075221 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3483 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_22= 0x200053A2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3491 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075222 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x09 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 0x63 - 0x68 0x61 0x69 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x70 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x6C 0x79 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x6E 0x65 0x77 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x68 0x61 0x69 0x6E 0x2D 0x2D 0x79 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x69 0x6E 0x73 0x65 0x72 0x74 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3587 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_23= 0x200053A3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3595 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075223 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x13 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x22 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x74 0x6F - 0x70 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x74 0x6F - 0x70 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x74 0x6F - 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3697 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_24= 0x200053A4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3705 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x2002B 0x000305F0 0x140 0x0 0x57415645 0x00075224 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x6F 0x75 0x6E 0x64 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x65 0x72 0x2C 0x22 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3770 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_25= 0x200053A5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3778 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075225 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053A7 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x6F 0x70 0x70 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3876 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_26= 0x200053A6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3884 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075226 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053A7 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3982 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_27= 0x200053B4 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3990 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075234 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x24 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x73 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x27 0x6C 0x6C 0x20 0x68 0x65 0x61 - 0x72 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4097 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_28= 0x200053B5 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 4105 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x00075235 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4171 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_29= 0x200053B6 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 4179 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075236 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4248 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2A= 0x200053B7 - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 4256 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075237 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A7 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 4346 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2C= 0x200053B8 - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4354 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00016017 0x00030601 0x20029 0x000305F0 0x0 0x0 0x57415645 0x00075238 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x6F 0x6F 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4438 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2D= 0x200053B9 - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4446 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016017 0x00030601 0x2002A 0x000305F0 0x0 0x0 0x57415645 0x00075239 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 0x68 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4533 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2E= 0x200053A7 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4541 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075227 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x58 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x04 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x31 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x50 0x6C 0x61 - 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x75 0x74 - 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 0x6C - 0x6C 0x79 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4680 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_44= 0x200053A8 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 4688 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075228 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4789 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_51= 0x200053A9 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 4797 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075229 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 4891 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_52= 0x200053AA - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 4899 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x41 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5034 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_60= 0x200053AB - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 5042 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 0x0D - 0x0A 0x31 0x09 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4C 0x6F 0x6F 0x70 0x2D 0x01 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5150 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_61= 0x200053AC - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 5158 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE4 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x74 0x74 - 0x61 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x54 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 0x72 - 0x2D 0x01 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5284 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_62= 0x200053AD - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 5292 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x65 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x2D 0x01 - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x34 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 0x6F - 0x74 0x74 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5411 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_63= 0x200053AE - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 5419 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xDF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x61 0x75 - 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 - 0x20 0x64 0x6F 0x6E 0x65 0x20 0x74 0x61 - 0x6C 0x6B 0x69 0x6E 0x67 0x0D 0x0A 0x54 - 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x69 0x73 0x20 0x64 0x6F 0x6E 0x65 - 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E 0x67 - 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x61 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 - 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5533 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_69= 0x200053AF - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 5541 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x58 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5645 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_73= 0x200053B0 - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 5653 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075230 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x01 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xBA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA7 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xB1 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x74 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x6E 0x64 0x20 0x6F 0x66 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x3A 0x0D 0x0A - 0x01 0x2D 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x45 0x66 0x66 0x65 0x63 0x74 0x73 0x0D - 0x0A 0x01 0x2D 0x53 0x70 0x65 0x65 0x63 - 0x68 0x0D 0x0A 0x01 0x2D 0x4D 0x75 0x73 - 0x69 0x63 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x53 0x74 0x6F 0x70 0x70 0x65 - 0x72 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5775 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_74= 0x200053B1 - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 5783 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075231 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x95 - 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x73 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x01 0x0D 0x0A - 0x95 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F - 0x20 0x61 0x64 0x64 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x01 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 5888 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_76= 0x200053B2 - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 5896 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075232 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x48 0x6F 0x77 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 - 0x49 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x3F 0x0D 0x0A 0x59 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x3A 0x0D 0x0A 0x95 0x09 0x54 0x77 - 0x6F 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x28 0x6F 0x6E 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x6E 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 0x69 - 0x6F 0x6E 0x29 0x2E 0x0D 0x0A 0x95 0x09 - 0x54 0x77 0x6F 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x20 0x28 0x6F 0x6E 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x6E 0x65 0x20 0x73 0x70 0x65 0x65 - 0x63 0x68 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x69 0x6E 0x67 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5995 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_77= 0x200053B3 - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 6003 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075233 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x69 0x6E 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x74 - 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x79 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 0x66 - 0x74 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x69 0x73 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x70 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x6C 0x79 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x2D 0x2D 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x27 0x74 0x20 0x69 0x6E - 0x73 0x65 0x72 0x74 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6125 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -#line 49 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -SET _help_48544F50_0= 0x20005640 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016018 0x00030601 0x20008 0x000305F0 0x0 0x0 0x57415645 0x00075170 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1= 0x20005641 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 103 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016018 0x00030601 0x20046 0x000305F0 0x0 0x0 0x57415645 0x00075171 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x50 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x20 0x74 0x79 0x70 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 - 0x63 0x72 0x65 0x64 0x69 0x74 0x73 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 0x20 - 0x42 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 212 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2= 0x20005642 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 220 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075172 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x44 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 - 0x20 0x43 0x72 0x65 0x64 0x69 0x74 0x73 - 0x2E 0x0D 0x0A 0x95 0x09 0x53 0x74 0x6F - 0x72 0x79 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x64 0x6F 0x6E 0x27 0x74 0x20 0x6D - 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x95 0x09 - 0x43 0x72 0x65 0x64 0x69 0x74 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x20 0x74 - 0x6F 0x77 0x61 0x72 0x64 0x73 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x70 0x6C - 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 318 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3= 0x20005643 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 326 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075173 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005691 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x43 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x6D 0x69 0x73 0x74 0x61 0x6B - 0x65 0x2C 0x20 0x70 0x72 0x65 0x73 0x73 - 0x20 0x42 0x61 0x63 0x6B 0x73 0x70 0x61 - 0x63 0x65 0x2E 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x63 0x72 - 0x65 0x64 0x69 0x74 0x73 0x20 0x73 0x63 - 0x72 0x6F 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 413 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_4= 0x20005644 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 421 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075174 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000568E - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005682 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005684 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A 0x01 - 0x4D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x0D 0x0A 0x01 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 532 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_5= 0x20005645 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 540 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x2002F 0x000305F0 0x0 0x0 0x57415645 0x00075175 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x36 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x67 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x6C 0x6F 0x6F 0x6B 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 647 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_6= 0x20005646 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 655 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x14E 0xD3 0x57415645 0x00075176 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 721 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_7= 0x20005647 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 729 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075177 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 814 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_8= 0x20005648 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 822 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075178 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x11 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005689 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x77 - 0x61 0x79 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 -ENDCHUNK - - -ENDCHUNK -#line 933 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_9= 0x20005649 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 941 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016017 0x00030601 0x2002D 0x000305F0 0x0 0x0 0x57415645 0x00075179 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x03 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x42 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x79 0x6C 0x65 0x2C 0x20 0x66 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x20 0x62 0x6F 0x6C 0x64 0x20 - 0x6F 0x72 0x20 0x69 0x74 0x61 0x6C 0x69 - 0x63 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 0x79 - 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1045 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_A= 0x2000564A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1053 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x19C 0x91 0x57415645 0x0007517A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x79 0x6C - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1118 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_B= 0x2000564B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1126 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007517B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1213 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_C= 0x2000564C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1221 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007517C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005685 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005688 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A - 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 1332 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_D= 0x2000564D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1340 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x20032 0x000305F0 0x0 0x0 0x57415645 0x0007517D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 0x73 - 0x69 0x7A 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4C - 0x65 0x74 0x74 0x65 0x72 0x20 0x53 0x69 - 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1437 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_E= 0x2000564E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1445 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x11D 0xDB 0x57415645 0x0007517E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1510 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_F= 0x2000564F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1518 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007517F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1605 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_10= 0x20005650 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1613 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075180 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005685 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005688 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x79 0x6C 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 1725 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_11= 0x20005651 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1733 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00016017 0x00030601 0x2002E 0x000305F0 0x0 0x0 0x57415645 0x00075181 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x65 0x74 0x74 0x65 0x72 0x20 0x43 - 0x6F 0x6C 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1829 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_12= 0x20005652 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1837 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x157 0xBC 0x57415645 0x00075182 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1902 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_13= 0x20005653 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1910 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075183 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1997 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_14= 0x20005654 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 2005 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075184 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005689 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005688 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x7B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x79 0x6C 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 2126 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_15= 0x20005655 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2134 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00016017 0x00030601 0x2002C 0x000305F0 0x0 0x0 0x57415645 0x00075185 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x43 0x6F 0x6C - 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2234 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_16= 0x20005656 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2242 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x1A2 0xBD 0x57415645 0x00075186 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2307 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_17= 0x20005657 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2315 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075187 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2385 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_18= 0x20005658 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2393 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075188 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005685 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005688 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x7B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x79 0x6C 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 2516 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_19= 0x20005659 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2524 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075189 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x87 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x25 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAC 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x0D 0x0A 0x32 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x69 0x64 0x65 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x73 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x68 0x61 0x6E 0x64 0x2E 0x0D 0x0A - 0x33 0x09 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x62 0x6F 0x78 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2637 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1A= 0x2000565A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2645 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007518A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005682 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x69 0x7A 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2740 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1B= 0x2000565B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2748 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007518B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x27 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x73 - 0x69 0x7A 0x65 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x73 0x69 0x7A 0x65 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2E 0x0D 0x0A 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x68 0x61 0x6E 0x64 - 0x6C 0x65 0x20 0x28 0x61 0x20 0x6C 0x69 - 0x74 0x74 0x6C 0x65 0x20 0x73 0x71 0x75 - 0x61 0x72 0x65 0x29 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x72 0x72 0x6F 0x77 0x2E 0x20 0x0D - 0x0A 0x32 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x68 0x61 0x6E 0x64 - 0x6C 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x62 0x6F 0x78 - 0x20 0x69 0x73 0x20 0x74 0x68 0x65 0x20 - 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2868 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1C= 0x2000565C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2876 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007518C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005684 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x73 0x69 0x7A 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 2971 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1D= 0x2000565D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2979 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016018 0x00030601 0x20069 0x000305F0 0x0 0x0 0x57415645 0x0007518D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x43 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x29 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x73 0x63 0x72 - 0x6F 0x6C 0x6C 0x20 0x6F 0x72 0x20 0x73 - 0x74 0x61 0x79 0x20 0x73 0x74 0x69 0x6C - 0x6C 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x4E 0x6F 0x6E 0x2D 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3090 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1E= 0x2000565E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 3098 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x1E0 0x90 0x57415645 0x0007518E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F 0x6E - 0x2D 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3166 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1F= 0x2000565F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3174 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007518F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3242 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_20= 0x20005660 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3250 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075190 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005691 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x5D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x61 0x79 0x20 0x73 0x74 0x69 0x6C 0x6C - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x09 - 0x4D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x63 - 0x72 0x65 0x64 0x69 0x74 0x73 0x20 0x73 - 0x63 0x72 0x6F 0x6C 0x6C 0x0D 0x0A 0x01 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 3352 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_21= 0x20005661 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3360 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075191 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6E 0x74 0x73 0x0D 0x0A - 0x95 0x09 0x54 0x68 0x65 0x20 0x62 0x6C - 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x73 0x65 0x72 0x74 0x69 0x6F 0x6E - 0x20 0x70 0x6F 0x69 0x6E 0x74 0x20 0x28 - 0x6C 0x29 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x20 0x73 0x68 0x6F 0x77 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x67 0x6F 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x79 0x70 0x65 0x2E 0x0D 0x0A 0x95 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x6D 0x69 - 0x73 0x74 0x61 0x6B 0x65 0x2C 0x20 0x70 - 0x72 0x65 0x73 0x73 0x20 0x42 0x61 0x63 - 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E 0x0D - 0x0A 0x95 0x09 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x61 0x63 - 0x68 0x20 0x74 0x68 0x65 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x65 0x64 0x67 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6F 0x78 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x61 - 0x75 0x74 0x6F 0x6D 0x61 0x74 0x69 0x63 - 0x61 0x6C 0x6C 0x79 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x6C 0x69 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3454 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_22= 0x20005662 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3462 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x00075192 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005682 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005684 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000568E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6E 0x74 0x73 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x73 0x69 0x7A 0x65 - 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 3574 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_23= 0x20005663 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3582 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075193 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x38 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x81 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x81 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3694 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_24= 0x20005664 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3702 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x20055 0x000305F0 0x0 0x0 0x57415645 0x00075194 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x40 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3765 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_25= 0x20005665 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3773 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075195 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3856 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_26= 0x20005666 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3864 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075196 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x29 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x2C 0x20 0x67 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3968 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_27= 0x20005667 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3976 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x00075197 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4043 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_28= 0x20005668 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 4051 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075198 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4116 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_29= 0x20005669 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 4124 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075199 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4194 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2A= 0x2000566A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 4202 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007519A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x75 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x25 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 4289 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2B= 0x2000566B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 4297 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007519B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 - 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 - 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4407 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2C= 0x2000566C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4415 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601b 0x00030601 0x20055 0x000305F0 0x0 0x0 0x57415645 0x0007519C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4478 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2D= 0x2000566D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4486 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007519D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4554 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2E= 0x2000566E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4562 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007519E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4668 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2F= 0x2000566F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4676 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x0007519F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4742 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_30= 0x20005690 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4750 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751A0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005684 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x69 0x73 0x20 0x70 0x61 0x73 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x4D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 4850 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_31= 0x20005670 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4858 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751A1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x87 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x75 0x74 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4967 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_32= 0x20005671 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4975 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030601 0x20056 0x000305F0 0x0 0x0 0x57415645 0x000751A2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5040 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_33= 0x20005672 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 5048 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751A3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5131 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_34= 0x20005673 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 5139 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751A4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x20 0x70 0x61 - 0x73 0x74 0x65 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 - 0x61 0x72 0x79 0x2C 0x20 0x67 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x43 0x75 0x74 - 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 - 0x26 0x20 0x50 0x61 0x73 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5243 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_35= 0x20005674 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 5251 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x000751A5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x46 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5316 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_36= 0x20005675 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 5324 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751A6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5394 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_37= 0x20005676 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5402 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751A7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 5491 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_38= 0x20005677 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5499 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751A8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x36 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x61 0x6E 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x75 0x74 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5608 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_39= 0x20005678 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5616 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030601 0x20056 0x000305F0 0x0 0x0 0x57415645 0x000751A9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5679 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3A= 0x20005679 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5687 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751AA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5755 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3B= 0x2000567A - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5763 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751AB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5868 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3C= 0x2000567B - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5876 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x000751AC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5942 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3D= 0x2000567C - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5950 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751AD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005684 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x59 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x69 0x73 0x20 0x70 0x61 0x73 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 6050 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3E= 0x2000567D - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 6058 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751AE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x46 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6169 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3F= 0x2000567E - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 6177 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x000751AF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x57 - 0x6F 0x72 0x64 0x20 0x42 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6241 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_40= 0x2000567F - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 6249 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751B0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x67 0x65 0x74 0x20 0x72 0x69 0x64 - 0x20 0x6F 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6314 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_41= 0x20005680 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 6322 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751B1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x69 - 0x73 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F -ENDCHUNK - - -ENDCHUNK -#line 6418 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_42= 0x20005681 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 6426 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000751B2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x4B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x56 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6510 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_43= 0x20005682 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 6518 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x84 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xA5 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x69 - 0x7A 0x65 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x0D 0x0A 0x31 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x68 0x61 0x6E 0x64 0x6C 0x65 - 0x20 0x28 0x61 0x20 0x6C 0x69 0x74 0x74 - 0x6C 0x65 0x20 0x73 0x71 0x75 0x61 0x72 - 0x65 0x29 0x2E 0x20 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x72 0x72 0x6F 0x77 0x2E 0x0D 0x0A 0x32 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x68 0x61 0x6E 0x64 0x6C 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x78 0x20 0x69 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x69 0x7A - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6627 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_44= 0x20005683 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 6635 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6736 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_45= 0x20005684 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 6744 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x78 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x78 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x0D 0x0A 0x31 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x73 0x69 0x64 0x65 - 0x2E 0x0D 0x0A 0x54 0x68 0x65 0x20 0x63 - 0x75 0x72 0x73 0x6F 0x72 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x68 0x61 0x6E 0x64 0x2E - 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x62 0x6F 0x78 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6847 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_46= 0x20005685 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 6855 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 0x2E - 0x0D 0x0A 0x33 0x09 0x49 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6965 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_47= 0x20005686 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 6973 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20032 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x48 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x20 0x73 0x69 0x7A - 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4C 0x65 0x74 0x74 0x65 - 0x72 0x20 0x53 0x69 0x7A 0x65 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x73 0x69 - 0x7A 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E 0x0D 0x0A 0x33 0x09 - 0x49 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2C 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7084 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_48= 0x20005687 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 7092 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x79 0x6C 0x65 0x73 0x2D 0x01 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x79 0x6C - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E 0x0D 0x0A 0x33 0x09 0x49 - 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7199 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_49= 0x20005688 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 7207 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x79 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F - 0x6F 0x6B 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x79 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F - 0x6F 0x6B 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4C 0x65 0x74 0x74 - 0x65 0x72 0x73 0x2D 0x01 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x66 0x6F 0x6E 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x33 0x09 0x49 0x6E 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7316 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_4A= 0x20005689 - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 7324 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x57 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x90 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4D 0x6F 0x72 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7431 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_4B= 0x20005691 - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 7439 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x21 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x26 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFC 0x00 0x00 0x82 - 0xFB 0xFF 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x01 0x09 0x4D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x73 0x63 0x72 0x6F 0x6C - 0x6C 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x0D 0x0A - 0x31 0x09 0x54 0x79 0x70 0x65 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6C 0x6C 0x20 0x75 0x70 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x62 0x6F 0x78 0x2E 0x0D - 0x0A 0x32 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x63 0x6F 0x6D 0x70 0x6C - 0x65 0x74 0x65 0x6C 0x79 0x20 0x6F 0x66 - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x61 0x64 - 0x64 0x20 0x62 0x6C 0x61 0x6E 0x6B 0x20 - 0x6C 0x69 0x6E 0x65 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x65 - 0x64 0x69 0x74 0x73 0x20 0x62 0x6F 0x78 - 0x20 0x62 0x79 0x20 0x70 0x72 0x65 0x73 - 0x73 0x69 0x6E 0x67 0x20 0x45 0x6E 0x74 - 0x65 0x72 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x6F 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x20 0x73 - 0x65 0x65 0x20 0x61 0x6E 0x79 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 7558 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_50= 0x2000568A - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 7566 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 7660 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_51= 0x2000568B - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 7668 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 7762 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_52= 0x2000568C - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 7770 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7905 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_64= 0x2000568D - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 7913 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x58 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xEE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xEF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x50 - 0x61 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x73 0x6F 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x69 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x72 0x65 0x61 - 0x64 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x73 0x6F 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x69 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x72 0x65 0x61 - 0x64 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 - 0x61 0x72 0x79 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x57 0x61 0x69 0x74 0x20 0x46 0x6F - 0x72 0x20 0x43 0x6C 0x69 0x63 0x6B 0x2D - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 8030 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_66= 0x2000568E - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 8038 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2D 0x01 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x57 0x6F - 0x72 0x64 0x20 0x42 0x6F 0x78 0x2D 0x01 - 0x0D 0x0A 0x33 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x65 0x64 0x67 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x69 0x73 0x73 - 0x6F 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8153 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_67= 0x2000568F - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 8161 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751C0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x73 0x63 0x72 0x6F 0x6C 0x6C - 0x0D 0x0A 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x72 0x6F 0x6C - 0x6C 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8235 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -#line 50 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -SET _help_48544F50_0= 0x20000160 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001602a 0x20000161 0x0 0x20000160 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x20 0x53 0x61 0x76 - 0x65 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x7E 0x31 0x33 - 0x31 0x37 0x3F 0x0D 0x0A 0x01 0x20 0x47 - 0x65 0x74 0x20 0x72 0x69 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 131 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_1= 0x20000162 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 139 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001602a 0x20000163 0x0 0x20000160 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x60 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x20 0x53 0x61 0x76 - 0x65 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x7E 0x31 0x33 - 0x31 0x37 0x3F 0x0D 0x0A 0x01 0x20 0x47 - 0x65 0x74 0x20 0x72 0x69 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x3F 0x0D 0x0A - 0x01 0x20 0x4B 0x65 0x65 0x70 0x20 0x77 - 0x6F 0x72 0x6B 0x69 0x6E 0x67 0x97 0x73 - 0x61 0x76 0x65 0x20 0x6C 0x61 0x74 0x65 - 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 250 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_2= 0x20000168 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 258 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602a 0x20000169 0x0 0x20000168 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x2E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x35 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x72 0x69 0x64 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x69 0x73 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x3F 0x0D 0x0A - 0x7E 0x31 0x33 0x31 0x39 0x0D 0x0A 0x01 - 0x20 0x59 0x65 0x73 0x0D 0x0A 0x01 0x20 - 0x4E 0x6F -ENDCHUNK - - -ENDCHUNK -#line 356 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_3= 0x20000164 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 364 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602a 0x20000165 0x0 0x20000164 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x57 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x59 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x71 0x75 0x69 0x74 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x3F 0x0D 0x0A 0x01 0x20 - 0x59 0x65 0x73 0x2E 0x0D 0x0A 0x01 0x20 - 0x4E 0x6F 0x20 0x77 0x61 0x79 0x21 0x20 - 0x20 0x49 0x27 0x6D 0x20 0x68 0x61 0x76 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x6F 0x20 - 0x6D 0x75 0x63 0x68 0x20 0x66 0x75 0x6E - 0x21 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 467 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_4= 0x2000016E - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 475 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001602a 0x2000016F 0x0 0x2000016C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x13 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x65 0x64 0x20 0x6F - 0x72 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x65 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x6E 0x27 - 0x74 0x20 0x75 0x73 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x44 0x6F - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x3A 0x0D 0x0A 0x01 - 0x20 0x20 0x47 0x65 0x74 0x20 0x72 0x69 - 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x63 0x6C 0x6F 0x73 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x01 0x20 0x20 - 0x4C 0x65 0x61 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x75 0x6E 0x75 0x73 0x65 0x64 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x66 - 0x69 0x6C 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 585 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_5= 0x2000016A - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 593 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001602a 0x2000016B 0x0 0x2000016A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x60 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x79 0x21 0x20 0x20 - 0x49 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x69 - 0x73 0x20 0x43 0x44 0x21 0x0D 0x0A 0x7E - 0x31 0x33 0x31 0x38 0x0D 0x0A 0x44 0x6F - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x6C 0x6F 0x6F 0x6B 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x3F 0x0D 0x0A 0x01 0x20 0x59 - 0x65 0x73 0x20 0x70 0x6C 0x65 0x61 0x73 - 0x65 0x2C 0x20 0x69 0x74 0x27 0x73 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x6E 0x6F - 0x77 0x2E 0x0D 0x0A 0x01 0x20 0x4E 0x6F - 0x20 0x74 0x68 0x61 0x6E 0x6B 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 697 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_6= 0x2000016C - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 705 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001602a 0x2000016D 0x0 0x2000016C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x29 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x7E 0x31 0x33 0x32 - 0x30 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x65 0x78 0x69 0x73 0x74 0x73 - 0x2E 0x0D 0x0A 0x44 0x6F 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x3A 0x0D 0x0A 0x01 0x20 0x20 0x52 - 0x65 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x74 - 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x3F 0x0D 0x0A 0x01 0x20 0x20 0x47 - 0x69 0x76 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x6E - 0x61 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 810 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_7= 0x20000166 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 818 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001602a 0x20000167 0x0 0x20000166 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x68 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x6F - 0x3F 0x0D 0x0A 0x01 0x20 0x20 0x47 0x6F - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x62 0x75 0x69 - 0x6C 0x64 0x69 0x6E 0x67 0x3F 0x0D 0x0A - 0x01 0x20 0x20 0x51 0x75 0x69 0x74 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F 0x0D - 0x0A 0x01 0x20 0x20 0x43 0x6F 0x6E 0x74 - 0x69 0x6E 0x75 0x65 0x20 0x77 0x6F 0x72 - 0x6B 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 - 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 929 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -#line 51 "H:\\BUILD\\SOC\\src\\help\\help.cht" - - -#line 1 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -SET _help_48544F50_0= 0x00018553 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016008 0x00016008 0x0 0x00018553 0x17C 0xB4 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x05 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x89 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x5A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x72 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 - 0x6B 0x20 0x6F 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F - 0x0D 0x0A 0x01 0x09 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F 0x0D - 0x0A 0x01 0x09 0x57 0x61 0x74 0x63 0x68 - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x3F 0x0D 0x0A 0x01 0x09 0x57 0x61 - 0x74 0x63 0x68 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x3F 0x0D 0x0A 0x01 0x09 0x53 0x74 - 0x6F 0x70 0x20 0x77 0x61 0x74 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 163 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_1= 0x00018552 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 171 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016008 0x00016008 0x0 0x00018552 0x140 0x96 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x75 0x6C 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F - 0x0D 0x0A 0x01 0x09 0x59 0x65 0x73 0x0D - 0x0A 0x01 0x09 0x4E 0x6F -ENDCHUNK - - -ENDCHUNK -#line 267 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_2= 0x00018559 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 275 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016019 0x00016019 0x0 0x00018559 0x1D7 0x1C2 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x68 0x65 0x72 0x65 0x20 0x74 0x6F 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2C 0x20 0x6F 0x72 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x61 0x6E - 0x63 0x65 0x6C 0x20 0x74 0x6F 0x20 0x67 - 0x6F 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 345 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_3= 0x00018555 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 353 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x00018555 0x142 0x90 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x6F - 0x3F 0x0D 0x0A 0x01 0x09 0x4D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x69 0x74 0x68 0x20 0x4D - 0x65 0x6C 0x61 0x6E 0x69 0x65 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x65 0x74 0x20 0x61 - 0x6E 0x20 0x69 0x64 0x65 0x61 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x01 0x09 0x43 - 0x72 0x65 0x61 0x74 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6F 0x77 0x6E 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 465 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_4= 0x00018556 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 473 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x00018556 0x1AA 0x140 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x39 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x66 0x6C 0x79 - 0x69 0x6E 0x67 0x20 0x6C 0x6F 0x67 0x6F - 0x3F 0x0D 0x0A 0x01 0x09 0x4C 0x65 0x61 - 0x72 0x6E 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2D 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x65 0x63 0x68 0x6E 0x69 0x71 0x75 - 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 577 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_5= 0x00018557 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 585 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016008 0x00016008 0x0 0x00018557 0x168 0x50 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x16 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x47 0x65 0x74 - 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x53 0x70 0x6C 0x6F 0x74 0x20 - 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 0x3F - 0x0D 0x0A 0x01 0x09 0x52 0x65 0x61 0x64 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x72 - 0xE9 0x73 0x75 0x6D 0xE9 0x73 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x54 0x61 0x6C 0x65 0x6E 0x74 0x20 0x42 - 0x6F 0x6F 0x6B 0x3F -ENDCHUNK - - -ENDCHUNK -#line 688 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_6= 0x0001855a - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 696 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x0001855a 0x1AA 0x78 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x79 0x21 0x20 0x59 - 0x6F 0x75 0x20 0x6D 0x61 0x64 0x65 0x20 - 0x69 0x74 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x53 0x74 0x75 0x64 0x69 0x6F - 0x21 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x72 - 0x65 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 - 0x63 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x62 0x6F - 0x78 0x21 -ENDCHUNK - - -ENDCHUNK -#line 772 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_7= 0x00018558 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 780 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016019 0x00016019 0x0 0x00018558 0x244 0xEB 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x67 0x65 0x74 - 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x69 0x73 0x20 0x6C 0x65 0x76 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 845 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16042= 0x00018542 - - -CHUNK('HTOP', _help_48544F50_16042, "") -SUBFILE -#line 853 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16042, "") - BO OSK LONG 0x00016003 0x00016003 0x0 0x00018542 0x28 0x8C 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16042, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x200000B - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x06 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x05 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x07 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x45 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x10 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x0C 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x08 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x0C 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x0C 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0x0C 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x0C 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xDC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x03 - 0x22 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x05 - 0x05 0x00 0x00 0x00 0x41 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x05 - 0x02 0x00 0x00 0x00 0x72 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x05 - 0x03 0x00 0x00 0x00 0x93 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x05 - 0x04 0x00 0x00 0x00 0xB2 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x05 - 0x05 0x00 0x00 0x00 0xB7 0x00 0x00 0x05 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x05 - 0x05 0x00 0x00 0x00 0xD8 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xB2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xD8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x80 - 0x12 0x00 0x00 0x00 0xDE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x62 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x0D 0x0A 0x0D 0x0A 0x09 0x20 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x6F - 0x20 0x74 0x6F 0x64 0x61 0x79 0x3F 0x0D - 0x0A 0x0D 0x0A 0x09 0x09 0x09 0x01 0x09 - 0x43 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x09 0x09 0x09 - 0x01 0x09 0x57 0x6F 0x72 0x6B 0x20 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x6F 0x6C 0x64 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F 0x0D - 0x0A 0x09 0x09 0x09 0x01 0x09 0x57 0x61 - 0x74 0x63 0x68 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x3F 0x0D 0x0A 0x09 0x09 - 0x09 0x01 0x09 0x4D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x69 0x74 0x68 0x20 0x4D 0x65 0x6C - 0x61 0x6E 0x69 0x65 0x3F 0x0D 0x0A 0x09 - 0x09 0x09 0x01 0x09 0x47 0x65 0x74 0x20 - 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 0x20 - 0x66 0x6F 0x72 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x3F 0x0D 0x0A 0x09 0x09 - 0x09 0x01 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x49 0x6D 0x61 0x67 0x69 0x6E 0x6F - 0x70 0x6F 0x6C 0x69 0x73 0x3F 0x0D 0x0A - 0x09 0x09 0x09 0x01 0x09 0x51 0x75 0x69 - 0x74 0x3F 0x0D 0x0A 0x0D 0x0A 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 1056 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16047= 0x00018547 - - -CHUNK('HTOP', _help_48544F50_16047, "") -SUBFILE -#line 1064 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16047, "") - BO OSK LONG 0x00012003 0x00012003 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16047, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x20 0x61 0x72 - 0x65 0x20 0x68 0x65 0x72 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1144 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16048= 0x00018548 - - -CHUNK('HTOP', _help_48544F50_16048, "") -SUBFILE -#line 1152 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16048, "") - BO OSK LONG 0x00016007 0x00016007 0x00010583 0x00018548 0x190 0x64 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16048, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x20 0x20 0x4D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x01 0x20 0x20 - 0x57 0x61 0x74 0x63 0x68 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1250 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16051= 0x00018551 - - -CHUNK('HTOP', _help_48544F50_16051, "") -SUBFILE -#line 1258 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16051, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x00018551 0x17C 0xB4 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16051, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x75 0x6C 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x3A 0x0D 0x0A 0x01 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x74 0x68 0x65 0x61 0x74 0x65 - 0x72 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x68 - 0x65 0x63 0x6B 0x20 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6E 0x61 0x63 - 0x6B 0x20 0x62 0x61 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1357 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -#line 54 "H:\\BUILD\\SOC\\src\\help\\help.cht" - - - -#line 1 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -SET _help_48544F50_0= 0x00015201 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_86=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_86=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x10 0x00 0x16 0x00 0x00 0x01 - 0x03 0x00 0x0A 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x01 0x00 0x36 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x03 - 0x24 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xCF 0x00 0x00 0x02 0x16 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x02 0x38 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_86=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x03 0x03 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x54 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x42 0x6F 0x6F 0x6B 0x20 0x0D 0x0A - 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 0x4D - 0x69 0x73 0x73 0x69 0x6F 0x6E 0x3A 0x20 - 0x20 0x46 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x67 0x65 0x73 0x21 - 0x0D 0x0A 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x27 0x20 0x72 0xE9 0x73 0x75 0x6D 0xE9 - 0x73 0x20 0x61 0x72 0x65 0x20 0x73 0x63 - 0x61 0x74 0x74 0x65 0x72 0x65 0x64 0x20 - 0x74 0x68 0x72 0x6F 0x75 0x67 0x68 0x6F - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x69 0x6C 0x64 0x69 0x6E 0x67 0x21 - 0x20 0x20 0x48 0x65 0x6C 0x70 0x20 0x6D - 0x65 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6D 0x21 0x0D 0x0A 0x0D 0x0A - 0x54 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x67 0x65 - 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x69 0x6C 0x64 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x4F 0x6E 0x63 0x65 0x20 0x79 - 0x6F 0x75 0x27 0x76 0x65 0x20 0x72 0x65 - 0x61 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x67 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x64 0x20 0x69 - 0x74 0x2C 0x20 0x49 0x27 0x6C 0x6C 0x20 - 0x70 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x67 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x54 0x61 0x6C 0x65 - 0x6E 0x74 0x20 0x62 0x6F 0x6F 0x6B 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x54 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x62 0x6F 0x6F 0x6B 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x49 0x64 0x65 - 0x61 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 142 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1= 0x00015202 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 150 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015302 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015303 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015305 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015304 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x03 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x85 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x18 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x41 0x4C 0x45 0x58 0x41 0x4E - 0x44 0x45 0x52 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x0D 0x0A 0x41 0x6C 0x65 0x78 0x61 0x6E - 0x64 0x65 0x72 0x20 0x77 0x61 0x73 0x20 - 0x61 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x48 0x6F 0x6C 0x6C 0x61 - 0x6E 0x64 0x2C 0x20 0x6B 0x6E 0x6F 0x77 - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x6D 0x61 0x6B 0x65 - 0x73 0x20 0x6F 0x66 0x20 0x56 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x20 0x50 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x74 0x75 0x6E 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x66 0x61 - 0x6E 0x63 0x79 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x20 0x73 0x74 0x65 0x70 0x73 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x66 0x74 0x65 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x65 0x6C 0x65 0x76 0x69 - 0x73 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x6F 0x6E 0x20 0x73 0x65 0x76 - 0x65 0x72 0x61 0x6C 0x20 0x45 0x75 0x72 - 0x6F 0x70 0x65 0x61 0x6E 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x63 0x6F 0x6D 0x70 - 0x65 0x74 0x69 0x74 0x69 0x6F 0x6E 0x73 - 0x2C 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6D 0x20 0x61 0x20 0x6D - 0x75 0x73 0x69 0x63 0x20 0x68 0x65 0x72 - 0x6F 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x63 0x6F 0x75 0x6E 0x74 0x72 0x79 - 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x4C 0x69 0x62 0x72 0x61 0x72 0x69 0x61 - 0x6E 0x3B 0x20 0x46 0x6F 0x6F 0x64 0x20 - 0x43 0x72 0x69 0x74 0x69 0x63 0x3B 0x20 - 0x45 0x78 0x70 0x6C 0x6F 0x72 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 295 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2= 0x00015203 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 303 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015307 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015308 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015309 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015306 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC8 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD4 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD4 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xDF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF2 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF4 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x09 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC8 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x09 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D2, 0x0) - BYTE - 0x03 0x03 0x41 0x55 0x47 0x55 0x53 0x54 - 0x49 0x4E 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x0D - 0x0A 0x41 0x75 0x67 0x75 0x73 0x74 0x69 - 0x6E 0x20 0x65 0x6D 0x65 0x72 0x67 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x20 0x64 0x75 0x73 0x74 0x79 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x63 0x61 0x70 0x73 - 0x75 0x6C 0x65 0x20 0x34 0x32 0x20 0x79 - 0x65 0x61 0x72 0x73 0x20 0x61 0x67 0x6F - 0x2E 0x20 0x48 0x65 0x27 0x73 0x20 0x6F - 0x72 0x69 0x67 0x69 0x6E 0x61 0x6C 0x6C - 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x6E 0x63 0x69 0x65 0x6E 0x74 0x20 0x52 - 0x6F 0x6D 0x65 0x2C 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x68 0x65 0x20 0x73 0x61 - 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x65 0x6D 0x70 0x65 0x72 - 0x6F 0x72 0x73 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x77 0x61 - 0x72 0x20 0x73 0x74 0x61 0x72 0x74 0x65 - 0x64 0x2C 0x20 0x73 0x6F 0x20 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6B 0x20 0x64 0x65 - 0x65 0x70 0x20 0x62 0x72 0x65 0x61 0x74 - 0x68 0x73 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x68 0x65 0x20 0x73 0x68 0x72 0x75 - 0x6E 0x6B 0x20 0x73 0x6F 0x20 0x73 0x6D - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x63 0x72 0x61 0x77 0x6C 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 0x6A - 0x61 0x72 0x2E 0x20 0x0D 0x0A 0x43 0x65 - 0x6E 0x74 0x75 0x72 0x69 0x65 0x73 0x20 - 0x6C 0x61 0x74 0x65 0x72 0x2C 0x20 0x61 - 0x20 0x6C 0x69 0x74 0x74 0x6C 0x65 0x20 - 0x49 0x74 0x61 0x6C 0x69 0x61 0x6E 0x20 - 0x6B 0x69 0x64 0x20 0x61 0x63 0x63 0x69 - 0x64 0x65 0x6E 0x74 0x61 0x6C 0x6C 0x79 - 0x20 0x64 0x75 0x67 0x20 0x75 0x70 0x20 - 0x74 0x68 0x65 0x20 0x6A 0x61 0x72 0x2E - 0x20 0x20 0x49 0x74 0x20 0x74 0x6F 0x6F - 0x6B 0x20 0x41 0x75 0x67 0x75 0x73 0x74 - 0x69 0x6E 0x20 0x61 0x77 0x68 0x69 0x6C - 0x65 0x20 0x74 0x6F 0x20 0x61 0x64 0x6A - 0x75 0x73 0x74 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x64 0x65 0x72 - 0x6E 0x20 0x77 0x6F 0x72 0x6C 0x64 0x2D - 0x2D 0x65 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x6C 0x79 0x20 0x54 0x56 0x2E 0x20 - 0x20 0x45 0x76 0x65 0x6E 0x74 0x75 0x61 - 0x6C 0x6C 0x79 0x20 0x41 0x75 0x67 0x75 - 0x73 0x74 0x69 0x6E 0x20 0x67 0x6F 0x74 - 0x20 0x61 0x20 0x6A 0x6F 0x62 0x20 0x64 - 0x65 0x6C 0x69 0x76 0x65 0x72 0x69 0x6E - 0x67 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x65 0x6C 0x65 0x67 0x72 - 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x4F 0x70 0x65 0x72 0x61 - 0x20 0x53 0x69 0x6E 0x67 0x65 0x72 0x3B - 0x20 0x43 0x6F 0x70 0x3B 0x20 0x48 0x6F - 0x6D 0x65 0x20 0x53 0x61 0x66 0x65 0x74 - 0x79 0x20 0x49 0x6E 0x73 0x70 0x65 0x63 - 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 478 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3= 0x00015204 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 486 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AE=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_AE, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001530a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001530b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001530c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001530d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AE=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAB 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB6 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xDE 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE0 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC7 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xDE 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE0 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0xAB 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AE=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AE, 0x0) - BYTE - 0x03 0x03 0x42 0x45 0x4C 0x4C 0x41 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x42 0x65 0x6C - 0x6C 0x61 0x20 0x69 0x73 0x20 0x61 0x20 - 0x6D 0x61 0x74 0x68 0x20 0x74 0x65 0x61 - 0x63 0x68 0x65 0x72 0x2E 0x20 0x41 0x74 - 0x20 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x2C - 0x20 0x73 0x68 0x65 0x20 0x69 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x6A - 0x75 0x73 0x74 0x20 0x73 0x6F 0x97 0x73 - 0x68 0x65 0x20 0x73 0x6D 0x69 0x6C 0x65 - 0x73 0x20 0x70 0x6F 0x6C 0x69 0x74 0x65 - 0x6C 0x79 0x2C 0x20 0x73 0x70 0x65 0x61 - 0x6B 0x73 0x20 0x70 0x6F 0x6C 0x69 0x74 - 0x65 0x6C 0x79 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x65 0x61 0x63 0x68 0x65 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 0x68 - 0x65 0x20 0x72 0x69 0x67 0x68 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 0x69 - 0x6E 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 - 0x68 0x65 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x77 0x61 0x79 0x2E 0x20 0x42 0x75 - 0x74 0x20 0x61 0x77 0x61 0x79 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x2C 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x69 0x73 0x20 0x64 0x69 0x66 - 0x66 0x65 0x72 0x65 0x6E 0x74 0x2E 0x20 - 0x53 0x68 0x65 0x20 0x64 0x6F 0x65 0x73 - 0x20 0x77 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x2C - 0x20 0x77 0x68 0x69 0x63 0x68 0x20 0x69 - 0x73 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x2E 0x20 - 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x2C 0x20 - 0x6E 0x6F 0x74 0x20 0x65 0x76 0x65 0x6E - 0x20 0x68 0x65 0x72 0x20 0x70 0x61 0x72 - 0x65 0x6E 0x74 0x73 0x2C 0x20 0x6B 0x6E - 0x6F 0x77 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x61 0x20 0x63 0x6F - 0x6D 0x65 0x64 0x79 0x20 0x61 0x63 0x74 - 0x20 0x74 0x68 0x72 0x65 0x65 0x20 0x6E - 0x69 0x67 0x68 0x74 0x73 0x20 0x61 0x20 - 0x77 0x65 0x65 0x6B 0x20 0x61 0x74 0x20 - 0x61 0x20 0x6C 0x6F 0x63 0x61 0x6C 0x20 - 0x4D 0x65 0x78 0x69 0x63 0x61 0x6E 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x2E 0x20 0x4E 0x6F 0x20 0x77 - 0x6F 0x6E 0x64 0x65 0x72 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 - 0x73 0x6F 0x20 0x74 0x69 0x72 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x63 0x6C 0x61 0x73 - 0x73 0x21 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x4D 0x61 0x64 0x61 0x6D 0x65 - 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x3B - 0x20 0x53 0x74 0x72 0x65 0x65 0x74 0x20 - 0x46 0x61 0x69 0x72 0x20 0x45 0x6E 0x74 - 0x65 0x72 0x74 0x61 0x69 0x6E 0x65 0x72 - 0x3B 0x20 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 -ENDCHUNK - - -ENDCHUNK -#line 649 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4= 0x00015205 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 657 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001530e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001530f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015310 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015311 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x73 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x75 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x83 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x92 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x73 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x75 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x83 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x61 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x42 0x45 0x4E 0x45 0x44 0x49 - 0x43 0x54 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x42 0x65 0x6E 0x65 0x64 0x69 0x63 0x74 - 0x20 0x69 0x73 0x20 0x33 0x31 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x20 0x69 0x73 - 0x20 0x61 0x20 0x6D 0x69 0x72 0x61 0x63 - 0x6C 0x65 0x2E 0x20 0x46 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x74 0x69 0x6D - 0x65 0x20 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x6B 0x69 0x64 0x2C 0x20 - 0x68 0x65 0x20 0x6C 0x6F 0x76 0x65 0x64 - 0x20 0x63 0x68 0x65 0x6D 0x69 0x73 0x74 - 0x72 0x79 0x2E 0x20 0x48 0x69 0x73 0x20 - 0x63 0x6F 0x6E 0x63 0x6F 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x62 0x75 0x62 0x62 - 0x6C 0x65 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x70 0x65 0x77 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x62 0x6C 0x75 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x67 0x72 0x65 0x65 - 0x6E 0x73 0x2E 0x20 0x54 0x68 0x65 0x6E - 0x2C 0x20 0x69 0x6E 0x20 0x61 0x20 0x68 - 0x69 0x67 0x68 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x20 0x63 0x68 0x65 0x6D 0x69 - 0x73 0x74 0x72 0x79 0x20 0x6C 0x61 0x62 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x62 0x6C - 0x75 0x65 0x2D 0x67 0x72 0x65 0x65 0x6E - 0x20 0x68 0x61 0x7A 0x65 0x20 0x74 0x75 - 0x72 0x6E 0x65 0x64 0x20 0x62 0x6C 0x61 - 0x63 0x6B 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x77 0x61 0x73 0x20 0x61 - 0x6E 0x20 0x61 0x77 0x65 0x73 0x6F 0x6D - 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x2E 0x20 0x42 0x65 0x6E - 0x65 0x64 0x69 0x63 0x74 0x27 0x73 0x20 - 0x62 0x75 0x72 0x6E 0x73 0x20 0x61 0x72 - 0x65 0x20 0x73 0x74 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x61 0x6C 0x69 0x6E 0x67 0x2C - 0x20 0x62 0x75 0x74 0x20 0x68 0x65 0x92 - 0x73 0x20 0x67 0x6C 0x61 0x64 0x20 0x68 - 0x65 0x20 0x73 0x75 0x72 0x76 0x69 0x76 - 0x65 0x64 0x2E 0x20 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x2D - 0x74 0x6F 0x2D 0x4C 0x69 0x66 0x65 0x20 - 0x4D 0x75 0x6D 0x6D 0x79 0x3B 0x20 0x49 - 0x6E 0x6A 0x75 0x72 0x65 0x64 0x20 0x56 - 0x69 0x63 0x74 0x69 0x6D 0x3B 0x20 0x41 - 0x6E 0x63 0x69 0x65 0x6E 0x74 0x20 0x4D - 0x75 0x6D 0x6D 0x79 -ENDCHUNK - - -ENDCHUNK -#line 809 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5= 0x00015206 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 817 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015312 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015313 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015314 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015315 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA7 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x99 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB0 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB2 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCE 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x99 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB2 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCE 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x42 0x49 0x4C 0x4C 0x59 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x42 0x69 0x6C - 0x6C 0x79 0x20 0x69 0x73 0x20 0x61 0x20 - 0x63 0x6F 0x6F 0x6B 0x20 0x61 0x74 0x20 - 0x61 0x20 0x73 0x65 0x61 0x66 0x6F 0x6F - 0x64 0x20 0x72 0x65 0x73 0x74 0x61 0x75 - 0x72 0x61 0x6E 0x74 0x20 0x69 0x6E 0x20 - 0x54 0x6F 0x72 0x6F 0x6E 0x74 0x6F 0x2E - 0x20 0x48 0x65 0x20 0x6C 0x69 0x76 0x65 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x62 0x69 0x67 0x20 0x63 0x69 0x74 - 0x79 0x20 0x6E 0x6F 0x77 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x68 0x65 0x20 0x63 0x6F - 0x6D 0x65 0x73 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x20 0x66 0x69 0x73 0x68 0x65 - 0x72 0x6D 0x61 0x6E 0x27 0x73 0x20 0x66 - 0x61 0x6D 0x69 0x6C 0x79 0x20 0x69 0x6E - 0x20 0x61 0x20 0x74 0x69 0x6E 0x79 0x20 - 0x74 0x6F 0x77 0x6E 0x20 0x69 0x6E 0x20 - 0x4E 0x6F 0x76 0x61 0x20 0x53 0x63 0x6F - 0x74 0x69 0x61 0x2E 0x20 0x41 0x74 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x73 0x74 - 0x61 0x75 0x72 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x70 0x72 0x65 0x70 0x61 - 0x72 0x65 0x20 0x66 0x69 0x73 0x68 0x2C - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x69 0x74 0x20 0x72 0x65 0x6D 0x69 - 0x6E 0x64 0x73 0x20 0x68 0x69 0x6D 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x64 - 0x61 0x79 0x73 0x20 0x66 0x69 0x73 0x68 - 0x69 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x73 0x20 0x66 0x61 0x6D - 0x69 0x6C 0x79 0x2E 0x20 0x48 0x69 0x73 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x6F 0x66 - 0x20 0x66 0x69 0x73 0x68 0x20 0x69 0x73 - 0x20 0x73 0x65 0x63 0x6F 0x6E 0x64 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x74 0x6F 0x20 - 0x68 0x69 0x73 0x20 0x74 0x72 0x75 0x65 - 0x20 0x70 0x61 0x73 0x73 0x69 0x6F 0x6E - 0x2C 0x20 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x2E 0x20 0x42 0x69 0x6C 0x6C 0x79 - 0x27 0x73 0x20 0x73 0x75 0x63 0x68 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x72 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x79 0x20 - 0x73 0x61 0x79 0x20 0x68 0x65 0x20 0x63 - 0x61 0x6E 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x68 0x69 0x73 - 0x20 0x66 0x69 0x73 0x68 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x47 0x65 0x6E 0x65 0x72 - 0x61 0x6C 0x3B 0x20 0x46 0x6F 0x72 0x65 - 0x6D 0x61 0x6E 0x3B 0x20 0x46 0x6C 0x65 - 0x61 0x20 0x4D 0x61 0x72 0x6B 0x65 0x74 - 0x20 0x4D 0x61 0x6E 0x61 0x67 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 977 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6= 0x00015207 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 985 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015317 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015318 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015319 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015316 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x43 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x7D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x91 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0D 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x19 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x42 0x49 0x4E 0x4F 0x20 0x42 - 0x65 0x47 0x4F 0x4F 0x44 0x0D 0x0A 0x42 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x42 0x69 0x6E 0x6F 0x20 - 0x69 0x73 0x20 0x32 0x34 0x20 0x79 0x65 - 0x61 0x72 0x73 0x20 0x6F 0x6C 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6D 0x65 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x6E 0x20 0x49 0x62 0x6F 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x69 0x6E 0x20 - 0x4E 0x69 0x67 0x65 0x72 0x69 0x61 0x2E - 0x20 0x57 0x68 0x69 0x6C 0x65 0x20 0x64 - 0x61 0x62 0x62 0x6C 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x20 0x61 0x6D 0x61 0x74 0x65 - 0x75 0x72 0x20 0x74 0x68 0x65 0x61 0x74 - 0x65 0x72 0x20 0x70 0x72 0x6F 0x64 0x75 - 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2C 0x20 - 0x68 0x65 0x20 0x6D 0x61 0x64 0x65 0x20 - 0x68 0x69 0x73 0x20 0x72 0x65 0x61 0x6C - 0x20 0x6C 0x69 0x76 0x69 0x6E 0x67 0x20 - 0x73 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x6F 0x74 0x68 0x70 0x61 0x73 - 0x74 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x68 0x69 0x73 0x20 0x66 0x61 0x6D 0x69 - 0x6C 0x79 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x72 0x6B 0x65 0x74 - 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 0x6F - 0x66 0x20 0x68 0x69 0x73 0x20 0x68 0x6F - 0x6D 0x65 0x74 0x6F 0x77 0x6E 0x2E 0x20 - 0x4F 0x6E 0x63 0x65 0x20 0x68 0x65 0x20 - 0x73 0x61 0x76 0x65 0x64 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x20 0x6D 0x6F 0x6E - 0x65 0x79 0x2C 0x20 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x55 0x6E 0x69 0x74 - 0x65 0x64 0x20 0x53 0x74 0x61 0x74 0x65 - 0x73 0x97 0x4E 0x65 0x77 0x20 0x59 0x6F - 0x72 0x6B 0x20 0x43 0x69 0x74 0x79 0x21 - 0x97 0x68 0x6F 0x70 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x65 0x61 0x74 - 0x65 0x72 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x6C 0x61 0x6E 0x64 0x65 0x64 0x20 0x61 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x69 0x6E - 0x20 0x61 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x66 0x69 0x6C 0x6D 0x20 0x69 0x6E - 0x73 0x74 0x65 0x61 0x64 0x21 0x20 0x0D - 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 - 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x54 0x75 - 0x74 0x6F 0x72 0x3B 0x20 0x53 0x74 0x72 - 0x65 0x65 0x74 0x20 0x45 0x6E 0x74 0x65 - 0x72 0x74 0x61 0x69 0x6E 0x65 0x72 0x3B - 0x20 0x4D 0x75 0x73 0x69 0x63 0x20 0x4D - 0x61 0x73 0x74 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1143 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7= 0x00015208 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 1151 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_81=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001531b - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001531a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001531c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001531d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_81=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x74 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x7F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x91 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x04 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_81=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x03 0x03 0x42 0x4F 0x0D 0x0A 0x42 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x42 0x6F 0x20 0x69 0x73 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x41 0x66 0x72 - 0x69 0x63 0x61 0x2E 0x20 0x45 0x76 0x65 - 0x6E 0x20 0x61 0x73 0x20 0x61 0x20 0x62 - 0x61 0x62 0x79 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x6C 0x69 0x74 0x74 0x6C 0x65 0x2E - 0x20 0x48 0x65 0x20 0x61 0x74 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6E 0x61 0x74 - 0x75 0x72 0x61 0x6C 0x20 0x66 0x6F 0x6F - 0x64 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x77 0x72 0x65 0x73 0x74 0x6C 0x65 0x20 - 0x77 0x69 0x74 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x62 - 0x6F 0x79 0x73 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x74 0x6F 0x77 0x6E 0x2E - 0x20 0x42 0x6F 0x20 0x77 0x61 0x73 0x20 - 0x73 0x6F 0x20 0x67 0x6F 0x6F 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x67 0x72 0x65 0x77 - 0x20 0x73 0x6F 0x20 0x73 0x74 0x72 0x6F - 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 0x20 - 0x68 0x65 0x20 0x62 0x65 0x63 0x61 0x6D - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x61 0x6D 0x70 0x69 0x6F 0x6E 0x20 0x6B - 0x69 0x63 0x6B 0x20 0x62 0x6F 0x78 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x77 0x6E 0x2E 0x20 0x42 - 0x75 0x74 0x20 0x42 0x6F 0x20 0x77 0x61 - 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x2C 0x20 0x6E 0x6F 0x74 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x61 0x73 0x20 0x61 0x20 - 0x6B 0x69 0x63 0x6B 0x20 0x62 0x6F 0x78 - 0x65 0x72 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x61 0x73 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x74 0x61 0x72 0x2E - 0x20 0x42 0x75 0x74 0x20 0x68 0x6F 0x77 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x68 - 0x65 0x20 0x62 0x65 0x20 0x64 0x69 0x73 - 0x63 0x6F 0x76 0x65 0x72 0x65 0x64 0x3F - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x44 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x3B 0x20 - 0x41 0x73 0x74 0x72 0x6F 0x6E 0x61 0x75 - 0x74 0x3B 0x20 0x54 0x6F 0x75 0x72 0x20 - 0x43 0x6F 0x6F 0x72 0x64 0x69 0x6E 0x61 - 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1305 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8= 0x00015209 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1313 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015320 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015321 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001531e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA8 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB3 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE2 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x20 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA6 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC3 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD3 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x42 0x4F 0x4E 0x47 0x4F 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x42 0x6F 0x6E - 0x67 0x6F 0x20 0x63 0x61 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x55 - 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 0x74 - 0x61 0x74 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x47 0x65 0x72 0x6D 0x61 0x6E - 0x79 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6C 0x6C 0x65 - 0x67 0x65 0x2E 0x20 0x20 0x42 0x65 0x63 - 0x61 0x75 0x73 0x65 0x20 0x68 0x69 0x73 - 0x20 0x72 0x65 0x61 0x6C 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x77 0x61 0x73 0x20 0x73 - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x61 0x72 0x64 0x20 - 0x74 0x6F 0x20 0x70 0x72 0x6F 0x6E 0x6F - 0x75 0x6E 0x63 0x65 0x2C 0x20 0x66 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x6E 0x69 - 0x63 0x6B 0x6E 0x61 0x6D 0x65 0x64 0x20 - 0x68 0x69 0x6D 0x20 0x42 0x2E 0x4F 0x2E - 0x4E 0x2E 0x47 0x2E 0x4F 0x2E 0x20 0x20 - 0x20 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x64 - 0x61 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x20 0x74 0x6F 0x20 0x76 0x69 - 0x73 0x69 0x74 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x27 0x73 0x20 0x64 0x72 0x61 0x6D 0x61 - 0x20 0x63 0x6C 0x61 0x73 0x73 0x65 0x73 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x20 0x74 0x68 - 0x61 0x74 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x68 0x61 0x64 0x20 0x72 0x65 0x61 - 0x6C 0x20 0x74 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x64 0x65 0x63 - 0x69 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x66 0x65 0x61 0x74 0x75 0x72 0x65 0x20 - 0x68 0x69 0x6D 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x77 0x61 - 0x73 0x20 0x74 0x68 0x72 0x69 0x6C 0x6C - 0x65 0x64 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x27 0x73 0x20 0x61 0x75 - 0x74 0x6F 0x67 0x72 0x61 0x70 0x68 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x69 0x73 0x20 - 0x66 0x61 0x6D 0x69 0x6C 0x79 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x54 - 0x77 0x69 0x6E 0x20 0x42 0x72 0x6F 0x74 - 0x68 0x65 0x72 0x3B 0x20 0x50 0x6F 0x6C - 0x69 0x63 0x65 0x20 0x4F 0x66 0x66 0x69 - 0x63 0x65 0x72 0x3B 0x20 0x50 0x72 0x69 - 0x76 0x61 0x74 0x65 0x20 0x43 0x61 0x72 - 0x72 0x69 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1475 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9= 0x0001520a - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 1483 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015323 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015324 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015325 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015322 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x90 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x66 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x66 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x03 0x03 0x20 0x20 0x43 0x48 0x41 0x52 - 0x4C 0x49 0x45 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x69 0x6E 0x20 0x48 0x61 0x72 - 0x6C 0x65 0x6D 0x2C 0x20 0x4E 0x65 0x77 - 0x20 0x59 0x6F 0x72 0x6B 0x20 0x43 0x69 - 0x74 0x79 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x6D 0x61 0x6B 0x65 0x73 0x20 0x73 0x74 - 0x72 0x61 0x69 0x67 0x68 0x74 0x20 0x41 - 0x92 0x73 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x73 0x20 0x73 0x75 0x63 0x68 0x20 0x61 - 0x6E 0x20 0x65 0x78 0x63 0x65 0x70 0x74 - 0x69 0x6F 0x6E 0x61 0x6C 0x20 0x61 0x74 - 0x68 0x6C 0x65 0x74 0x65 0x2C 0x20 0x68 - 0x65 0x20 0x68 0x61 0x73 0x20 0x61 0x20 - 0x62 0x61 0x73 0x6B 0x65 0x74 0x62 0x61 - 0x6C 0x6C 0x20 0x20 0x73 0x63 0x68 0x6F - 0x6C 0x61 0x72 0x73 0x68 0x69 0x70 0x20 - 0x74 0x6F 0x20 0x53 0x79 0x72 0x61 0x63 - 0x75 0x73 0x65 0x20 0x55 0x6E 0x69 0x76 - 0x65 0x72 0x73 0x69 0x74 0x79 0x2E 0x20 - 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x20 0x69 0x73 0x20 0x67 0x6F 0x6F 0x64 - 0x20 0x61 0x74 0x20 0x74 0x68 0x72 0x6F - 0x77 0x69 0x6E 0x67 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x68 0x65 0x92 0x73 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x61 0x74 0x20 0x6A 0x75 - 0x6D 0x70 0x69 0x6E 0x67 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 0x6A - 0x75 0x6D 0x70 0x20 0x73 0x6F 0x20 0x68 - 0x69 0x67 0x68 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x6F 0x75 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x63 0x65 0x69 0x6C 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x20 0x61 0x6E 0x79 - 0x20 0x62 0x75 0x69 0x6C 0x64 0x69 0x6E - 0x67 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 - 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D - 0x0A 0x53 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x3B 0x20 0x4C 0x61 0x76 0x61 0x20 - 0x4C 0x61 0x6D 0x70 0x20 0x53 0x61 0x6C - 0x65 0x73 0x70 0x65 0x72 0x73 0x6F 0x6E - 0x3B 0x20 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1633 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A= 0x0001520b - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1641 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015327 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015328 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015329 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015326 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x51 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFA 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x00 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x02 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0C 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x17 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFA 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x00 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x02 0x02 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0C 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x02 0x00 0x40 - 0x03 0x00 0x00 0x00 0x17 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0C 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x18 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x20 0x43 0x48 0x52 0x49 0x53 - 0x54 0x49 0x4E 0x41 0x0D 0x0A 0x42 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x68 0x61 0x73 0x20 - 0x73 0x70 0x65 0x6E 0x74 0x20 0x33 0x20 - 0x6F 0x66 0x20 0x68 0x65 0x72 0x20 0x32 - 0x33 0x20 0x79 0x65 0x61 0x72 0x73 0x20 - 0x61 0x73 0x20 0x61 0x20 0x6D 0x75 0x73 - 0x65 0x75 0x6D 0x20 0x63 0x75 0x72 0x61 - 0x74 0x6F 0x72 0x20 0x20 0x69 0x6E 0x20 - 0x4E 0x65 0x77 0x20 0x59 0x6F 0x72 0x6B - 0x20 0x43 0x69 0x74 0x79 0x2E 0x20 0x20 - 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x77 0x68 0x69 0x6C 0x65 0x20 0x43 0x68 - 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 - 0x77 0x61 0x73 0x20 0x61 0x64 0x6D 0x69 - 0x72 0x69 0x6E 0x67 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x50 0x69 0x63 0x61 0x73 0x73 - 0x6F 0x73 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x62 0x75 0x6D 0x70 0x65 0x64 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x73 0x6F 0x6D 0x65 - 0x6F 0x6E 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x61 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x75 0x73 0x65 0x75 - 0x6D 0x20 0x66 0x69 0x6C 0x6D 0x69 0x6E - 0x67 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x20 0x49 0x74 0x20 0x77 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x66 - 0x61 0x6D 0x6F 0x75 0x73 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x4D 0x65 0x6C 0x61 0x6E - 0x69 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x79 0x20 0x73 0x74 0x61 0x72 0x74 0x65 - 0x64 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x61 0x72 0x74 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x65 0x6E 0x64 0x65 0x64 0x20 0x75 - 0x70 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 - 0x20 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 - 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x69 - 0x6E 0x61 0x20 0x68 0x61 0x64 0x20 0x61 - 0x20 0x6C 0x6F 0x74 0x20 0x6F 0x66 0x20 - 0x67 0x72 0x65 0x61 0x74 0x20 0x69 0x64 - 0x65 0x61 0x73 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x2E 0x20 - 0x4E 0x6F 0x77 0x20 0x43 0x68 0x72 0x69 - 0x73 0x74 0x69 0x6E 0x61 0x20 0x6C 0x69 - 0x76 0x65 0x73 0x20 0x69 0x6E 0x20 0x49 - 0x6D 0x61 0x67 0x69 0x6E 0x6F 0x70 0x6F - 0x6C 0x69 0x73 0x2C 0x20 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x73 0x68 - 0x65 0x20 0x64 0x69 0x64 0x20 0x69 0x6E - 0x20 0x72 0x65 0x61 0x6C 0x20 0x6C 0x69 - 0x66 0x65 0x97 0x6F 0x6E 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x21 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x53 0x69 0x6E 0x67 - 0x65 0x72 0x3B 0x20 0x48 0x6F 0x6D 0x65 - 0x20 0x4F 0x77 0x6E 0x65 0x72 0x3B 0x20 - 0x44 0x65 0x74 0x65 0x63 0x74 0x69 0x76 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1813 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B= 0x0001520c - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1821 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001532b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001532c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001532d - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001532a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x74 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x79 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x80 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x79 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x80 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x4C 0x41 0x55 0x44 0x49 - 0x41 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 0x77 - 0x61 0x73 0x20 0x62 0x6F 0x72 0x6E 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x2C 0x20 0x6F 0x75 0x74 0x2D - 0x6F 0x66 0x2D 0x74 0x68 0x65 0x2D 0x77 - 0x61 0x79 0x20 0x76 0x69 0x6C 0x6C 0x61 - 0x67 0x65 0x20 0x69 0x6E 0x20 0x49 0x6E - 0x64 0x69 0x61 0x20 0x33 0x33 0x20 0x79 - 0x65 0x61 0x72 0x73 0x20 0x61 0x67 0x6F - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x20 0x6C 0x6F 0x6E 0x67 - 0x20 0x6C 0x69 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x73 0x74 0x6F 0x72 0x79 0x2D 0x74 - 0x65 0x6C 0x6C 0x65 0x72 0x73 0x2E 0x20 - 0x20 0x49 0x6E 0x20 0x66 0x61 0x63 0x74 - 0x2C 0x20 0x68 0x65 0x72 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x73 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x20 0x68 0x6F 0x6C 0x64 0x69 0x6E - 0x67 0x20 0x73 0x74 0x6F 0x72 0x79 0x2D - 0x74 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x62 0x61 0x7A 0x61 0x61 0x72 0x73 0x2E - 0x20 0x20 0x45 0x76 0x65 0x6E 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x20 0x6C 0x6F - 0x76 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x6F 0x72 0x69 0x65 0x73 0x20 - 0x73 0x68 0x65 0x20 0x67 0x72 0x65 0x77 - 0x20 0x75 0x70 0x20 0x77 0x69 0x74 0x68 - 0x2C 0x20 0x73 0x68 0x65 0x20 0x77 0x61 - 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 0x6C - 0x69 0x76 0x65 0x20 0x64 0x61 0x6E 0x67 - 0x65 0x72 0x6F 0x75 0x73 0x6C 0x79 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x92 0x6C - 0x6C 0x20 0x68 0x61 0x76 0x65 0x20 0x77 - 0x69 0x6C 0x64 0x20 0x73 0x74 0x6F 0x72 - 0x69 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x68 0x65 0x72 0x20 - 0x63 0x68 0x69 0x6C 0x64 0x72 0x65 0x6E - 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x48 0x69 0x70 0x70 0x69 0x65 0x3B 0x20 - 0x43 0x6F 0x70 0x3B 0x20 0x50 0x69 0x6C - 0x6F 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1976 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C= 0x0001520d - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1984 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001532f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015330 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015331 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001532e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x16 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x52 0x41 0x53 0x48 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x43 0x72 0x61 - 0x73 0x68 0x20 0x77 0x6F 0x6B 0x65 0x20 - 0x75 0x70 0x20 0x33 0x33 0x20 0x79 0x65 - 0x61 0x72 0x73 0x20 0x61 0x67 0x6F 0x20 - 0x6F 0x6E 0x20 0x61 0x20 0x64 0x65 0x73 - 0x65 0x72 0x74 0x65 0x64 0x20 0x74 0x72 - 0x6F 0x70 0x69 0x63 0x61 0x6C 0x20 0x69 - 0x73 0x6C 0x61 0x6E 0x64 0x2E 0x20 0x48 - 0x65 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x6B 0x6E 0x6F 0x77 0x20 0x68 - 0x6F 0x77 0x20 0x68 0x65 0x20 0x67 0x6F - 0x74 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x6F 0x72 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x2E 0x20 0x48 - 0x65 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x20 0x61 0x20 0x66 0x61 0x6D 0x6F - 0x75 0x73 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x61 0x79 0x62 0x65 0x20 0x68 - 0x69 0x73 0x20 0x69 0x6E 0x76 0x65 0x6E - 0x74 0x6F 0x72 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x65 0x65 0x20 0x68 0x69 0x6D - 0x20 0x61 0x6E 0x64 0x20 0x63 0x61 0x6C - 0x6C 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x57 0x69 0x6C 0x6C 0x79 0x27 - 0x73 0x20 0x49 0x6E 0x76 0x65 0x6E 0x74 - 0x69 0x6F 0x6E 0x3B 0x20 0x52 0x6F 0x62 - 0x6F 0x74 0x20 0x43 0x6F 0x70 0x3B 0x20 - 0x46 0x6C 0x69 0x67 0x68 0x74 0x20 0x41 - 0x74 0x74 0x65 0x6E 0x64 0x61 0x6E 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2125 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_D= 0x0001520e - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 2133 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CF=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_CF, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015332 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015334 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015335 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015333 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CF=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xE9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE3 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CF=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CF, 0x0) - BYTE - 0x03 0x03 0x45 0x4C 0x49 0x5A 0x41 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x6C 0x69 0x76 0x65 0x73 - 0x20 0x69 0x6E 0x20 0x43 0x61 0x6E 0x63 - 0x75 0x6E 0x2C 0x20 0x4D 0x65 0x78 0x69 - 0x63 0x6F 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x74 0x75 - 0x72 0x71 0x75 0x6F 0x69 0x73 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x65 0x61 - 0x72 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x69 0x73 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6C 0x64 0x65 0x73 0x74 0x20 0x6F 0x66 - 0x20 0x6E 0x69 0x6E 0x65 0x20 0x63 0x68 - 0x69 0x6C 0x64 0x72 0x65 0x6E 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x69 0x73 0x6E 0x92 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x69 0x6E 0x67 0x20 - 0x68 0x65 0x72 0x20 0x6D 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x73 0x74 0x6F 0x72 - 0x65 0x2C 0x20 0x73 0x68 0x65 0x20 0x70 - 0x72 0x61 0x63 0x74 0x69 0x63 0x65 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x64 0x61 0x6E - 0x63 0x69 0x6E 0x67 0x2E 0x20 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x48 0x69 0x70 - 0x70 0x69 0x65 0x3B 0x20 0x4E 0x75 0x72 - 0x73 0x65 0x3B 0x20 0x45 0x78 0x70 0x6C - 0x6F 0x72 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2269 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_E= 0x0001520f - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 2277 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015336 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015338 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015339 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015337 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDD 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDD 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA8 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEA 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF4 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF6 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFD 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFF 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x09 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEA 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF6 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFF 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x09 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x46 0x52 0x41 0x4E 0x4B 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x46 0x72 0x61 - 0x6E 0x6B 0x20 0x6C 0x6F 0x6F 0x6B 0x73 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 0x20 - 0x6B 0x69 0x64 0x97 0x68 0x65 0x92 0x73 - 0x20 0x73 0x68 0x6F 0x72 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x65 0x20 0x77 0x65 - 0x61 0x72 0x73 0x20 0x68 0x69 0x73 0x20 - 0x68 0x61 0x69 0x72 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x74 0x65 - 0x73 0x74 0x20 0x63 0x75 0x74 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x68 0x65 0x27 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x34 0x32 0x2E 0x20 0x46 0x72 0x61 - 0x6E 0x6B 0x20 0x61 0x6C 0x73 0x6F 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x73 0x61 - 0x64 0x2C 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x92 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x6D 0x69 0x73 - 0x75 0x6E 0x64 0x65 0x72 0x73 0x74 0x6F - 0x6F 0x64 0x20 0x61 0x6C 0x6C 0x20 0x68 - 0x69 0x73 0x20 0x6C 0x69 0x66 0x65 0x2E - 0x20 0x20 0x45 0x76 0x65 0x6E 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x20 0x68 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x20 0x74 0x6F - 0x75 0x67 0x68 0x20 0x67 0x75 0x79 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x65 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x6C - 0x6F 0x6F 0x6B 0x20 0x76 0x65 0x72 0x79 - 0x20 0x73 0x6D 0x61 0x72 0x74 0x2C 0x20 - 0x68 0x65 0x92 0x73 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x61 0x20 0x73 0x65 - 0x6E 0x73 0x69 0x74 0x69 0x76 0x65 0x2C - 0x20 0x67 0x65 0x6E 0x74 0x6C 0x65 0x20 - 0x67 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x6E 0x6F 0x74 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x73 0x6D 0x61 0x72 - 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x65 0x63 0x72 - 0x65 0x74 0x6C 0x79 0x20 0x77 0x72 0x69 - 0x74 0x65 0x73 0x20 0x73 0x6F 0x6E 0x67 - 0x73 0x20 0x97 0x20 0x75 0x73 0x75 0x61 - 0x6C 0x6C 0x79 0x20 0x73 0x61 0x64 0x20 - 0x73 0x6F 0x6E 0x67 0x73 0x2E 0x20 0x48 - 0x65 0x92 0x64 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x73 0x20 0x73 0x6F 0x6E - 0x67 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x6F 0x73 0x65 - 0x20 0x61 0x6C 0x6D 0x6F 0x73 0x74 0x20 - 0x63 0x6F 0x76 0x65 0x72 0x73 0x20 0x68 - 0x69 0x73 0x20 0x75 0x70 0x70 0x65 0x72 - 0x20 0x6C 0x69 0x70 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x63 0x6F 0x6D 0x65 0x20 0x6F 0x75 0x74 - 0x20 0x61 0x6C 0x6C 0x20 0x77 0x72 0x6F - 0x6E 0x67 0x2E 0x20 0x20 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x47 0x75 0x69 0x6E - 0x65 0x61 0x20 0x50 0x69 0x67 0x3B 0x20 - 0x56 0x69 0x6C 0x6C 0x69 0x61 0x6E 0x3B - 0x20 0x4A 0x75 0x6E 0x67 0x6C 0x65 0x20 - 0x4D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 2447 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_F= 0x00015210 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 2455 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001533a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001533c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001533d - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001533b -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x43 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x49 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x57 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x43 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x49 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x15 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x47 0x41 0x42 0x52 0x49 0x45 - 0x4C 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x69 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x56 - 0x65 0x6E 0x69 0x63 0x65 0x20 0x42 0x65 - 0x61 0x63 0x68 0x2C 0x20 0x43 0x61 0x6C - 0x69 0x66 0x6F 0x72 0x6E 0x69 0x61 0x2E - 0x20 0x20 0x41 0x74 0x20 0x61 0x67 0x65 - 0x20 0x6F 0x6E 0x65 0x2C 0x20 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x63 0x6C 0x65 - 0x61 0x72 0x6C 0x79 0x20 0x73 0x61 0x79 - 0x2C 0x20 0x93 0x57 0x61 0x79 0x20 0x63 - 0x6F 0x6F 0x6C 0x2C 0x20 0x64 0x75 0x64 - 0x65 0x21 0x94 0x20 0x0D 0x0A 0x48 0x69 - 0x73 0x20 0x70 0x61 0x72 0x65 0x6E 0x74 - 0x73 0x20 0x67 0x61 0x76 0x65 0x20 0x75 - 0x70 0x20 0x74 0x72 0x79 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x6B 0x65 0x65 0x70 - 0x20 0x61 0x6E 0x20 0x65 0x79 0x65 0x20 - 0x6F 0x6E 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x36 - 0x20 0x6D 0x6F 0x6E 0x74 0x68 0x73 0x20 - 0x6F 0x6C 0x64 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x63 0x72 0x61 0x77 0x6C - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x79 0x20 0x6F - 0x6E 0x20 0x6E 0x65 0x77 0x20 0x6E 0x65 - 0x6F 0x6E 0x20 0x74 0x2D 0x73 0x68 0x69 - 0x72 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x64 0x69 0x61 0x70 0x65 0x72 0x73 - 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x27 0x73 - 0x20 0x59 0x6F 0x75 0x6E 0x67 0x65 0x73 - 0x74 0x20 0x53 0x6F 0x6E 0x3B 0x20 0x53 - 0x74 0x61 0x72 0x3B 0x20 0x59 0x6F 0x75 - 0x6E 0x67 0x20 0x4E 0x61 0x74 0x69 0x76 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2605 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_10= 0x00015211 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 2613 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001533e - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015340 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015341 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001533f -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3C 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x39 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x51 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x60 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x39 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x51 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x49 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x47 0x52 0x45 0x47 0x4F 0x52 - 0x59 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x69 - 0x73 0x20 0x61 0x20 0x74 0x79 0x70 0x69 - 0x63 0x61 0x6C 0x20 0x31 0x34 0x2D 0x79 - 0x65 0x61 0x72 0x2D 0x6F 0x6C 0x64 0x20 - 0x63 0x6C 0x61 0x73 0x73 0x20 0x63 0x6C - 0x6F 0x77 0x6E 0x2E 0x20 0x48 0x65 0x20 - 0x6B 0x65 0x65 0x70 0x73 0x20 0x68 0x69 - 0x73 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x74 0x65 - 0x61 0x63 0x68 0x65 0x72 0x73 0x20 0x6C - 0x61 0x75 0x67 0x68 0x69 0x6E 0x67 0x20 - 0x77 0x69 0x74 0x68 0x20 0x68 0x69 0x73 - 0x20 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x6D 0x69 0x74 0x61 - 0x74 0x69 0x6F 0x6E 0x73 0x2E 0x20 0x48 - 0x65 0x20 0x61 0x6C 0x73 0x6F 0x20 0x6C - 0x69 0x6B 0x65 0x73 0x20 0x70 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x77 0x69 0x74 - 0x68 0x20 0x72 0x61 0x64 0x69 0x6F 0x2D - 0x63 0x6F 0x6E 0x74 0x72 0x6F 0x6C 0x6C - 0x65 0x64 0x20 0x63 0x61 0x72 0x73 0x2C - 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x62 0x61 0x73 0x65 - 0x62 0x61 0x6C 0x6C 0x20 0x63 0x61 0x72 - 0x64 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x62 0x61 0x73 0x6B 0x65 0x74 0x62 0x61 - 0x6C 0x6C 0x2E 0x20 0x48 0x69 0x73 0x20 - 0x66 0x61 0x76 0x6F 0x72 0x69 0x74 0x65 - 0x20 0x73 0x75 0x62 0x6A 0x65 0x63 0x74 - 0x73 0x20 0x69 0x6E 0x20 0x73 0x63 0x68 - 0x6F 0x6F 0x6C 0x20 0x61 0x72 0x65 0x20 - 0x73 0x6F 0x63 0x69 0x61 0x6C 0x20 0x73 - 0x74 0x75 0x64 0x69 0x65 0x73 0x2C 0x20 - 0x67 0x65 0x6F 0x67 0x72 0x61 0x70 0x68 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x6D 0x61 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x4D 0x61 0x67 0x69 0x63 - 0x69 0x61 0x6E 0x3B 0x20 0x4E 0x65 0x77 - 0x73 0x70 0x61 0x70 0x65 0x72 0x20 0x42 - 0x6F 0x79 0x3B 0x20 0x42 0x6F 0x79 0x20 - 0x53 0x63 0x6F 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2763 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_11= 0x00015212 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 2771 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015342 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015345 - ITEM LONG 0x40000001 - VAR BYTE 66 LONG 0x00015343 - ITEM LONG 0x40000001 - VAR BYTE 67 LONG 0x00015344 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0B 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x11 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x13 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1E 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x20 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x28 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x02 0x00 0x40 - 0x04 0x00 0x00 0x00 0x11 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x13 0x02 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1E 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x20 0x02 0x00 0x40 - 0x03 0x00 0x00 0x00 0x28 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x47 0x55 0x53 0x54 0x41 0x56 - 0x45 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x20 0x69 - 0x73 0x20 0x61 0x20 0x66 0x75 0x6E 0x2D - 0x6C 0x6F 0x76 0x69 0x6E 0x67 0x20 0x49 - 0x74 0x61 0x6C 0x69 0x61 0x6E 0x2E 0x20 - 0x20 0x41 0x73 0x20 0x61 0x20 0x73 0x68 - 0x6F 0x65 0x20 0x73 0x61 0x6C 0x65 0x73 - 0x6D 0x61 0x6E 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6D 0x61 0x6C 0x6C - 0x20 0x74 0x6F 0x77 0x6E 0x20 0x6F 0x66 - 0x20 0x50 0x6F 0x72 0x74 0x6F 0x66 0x69 - 0x6E 0x6F 0x2C 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x20 0x73 0x6F 0x6C 0x64 - 0x20 0x74 0x68 0x69 0x63 0x6B 0x2D 0x73 - 0x6F 0x6C 0x65 0x64 0x2C 0x20 0x69 0x6E - 0x64 0x75 0x73 0x74 0x72 0x69 0x61 0x6C - 0x2D 0x71 0x75 0x61 0x6C 0x69 0x74 0x79 - 0x20 0x73 0x68 0x6F 0x65 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x61 0x6C 0x77 0x61 - 0x79 0x73 0x20 0x77 0x61 0x6E 0x74 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x62 0x72 0x65 - 0x61 0x6B 0x20 0x6C 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x68 0x61 0x76 - 0x65 0x20 0x46 0x55 0x4E 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x68 0x65 0x20 0x68 0x61 - 0x64 0x20 0x68 0x69 0x73 0x20 0x72 0x65 - 0x70 0x75 0x74 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x75 0x70 0x68 0x6F - 0x6C 0x64 0x2E 0x0D 0x0A 0x4F 0x6E 0x65 - 0x20 0x64 0x61 0x79 0x2C 0x20 0x47 0x75 - 0x73 0x74 0x61 0x76 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x20 0x70 0x61 - 0x69 0x72 0x20 0x6F 0x66 0x20 0x73 0x68 - 0x6F 0x65 0x73 0x20 0x77 0x69 0x74 0x68 - 0x20 0x70 0x6F 0x69 0x6E 0x74 0x79 0x20 - 0x74 0x6F 0x65 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x6E 0x64 0x73 0x6F 0x6D - 0x65 0x20 0x6C 0x65 0x61 0x74 0x68 0x65 - 0x72 0x20 0x73 0x6F 0x6C 0x65 0x73 0x2E - 0x20 0x48 0x65 0x20 0x74 0x72 0x69 0x65 - 0x64 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x73 0x68 0x6F 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x75 0x64 0x64 0x65 - 0x6E 0x6C 0x79 0x20 0x62 0x65 0x67 0x61 - 0x6E 0x20 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x97 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x61 0x69 - 0x73 0x6C 0x65 0x73 0x2C 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6E 0x74 0x65 0x72 0x20 0x74 0x6F 0x70 - 0x73 0x97 0x68 0x65 0x20 0x65 0x76 0x65 - 0x6E 0x20 0x64 0x61 0x6E 0x63 0x65 0x64 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x20 0x6C 0x61 0x64 - 0x79 0x2E 0x20 0x47 0x75 0x73 0x74 0x61 - 0x76 0x65 0x20 0x6B 0x65 0x70 0x74 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x6F 0x75 0x74 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x72 - 0x65 0x65 0x74 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x68 0x65 0x20 0x67 0x6F 0x74 - 0x20 0x68 0x6F 0x6D 0x65 0x2E 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x42 0x75 0x74 - 0x6C 0x65 0x72 0x3B 0x20 0x43 0x61 0x66 - 0x65 0x20 0x57 0x61 0x69 0x74 0x65 0x72 - 0x3B 0x20 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2943 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_12= 0x00015213 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 2951 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001534a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001534b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001534c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001534d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x32 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x85 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x32 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x48 0x49 0x52 0x4F 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x48 0x69 0x72 0x6F - 0x20 0x67 0x72 0x65 0x77 0x20 0x75 0x70 - 0x20 0x69 0x6E 0x20 0x61 0x6E 0x20 0x6F - 0x72 0x70 0x68 0x61 0x6E 0x61 0x67 0x65 - 0x20 0x69 0x6E 0x20 0x53 0x65 0x6E 0x64 - 0x61 0x69 0x2C 0x20 0x4A 0x61 0x70 0x61 - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6E - 0x65 0x76 0x65 0x72 0x20 0x6B 0x6E 0x65 - 0x77 0x20 0x68 0x69 0x73 0x20 0x70 0x61 - 0x72 0x65 0x6E 0x74 0x73 0x2E 0x20 0x20 - 0x4E 0x6F 0x74 0x20 0x6F 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x64 0x77 0x65 0x6C 0x6C - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x67 0x61 0x74 0x69 0x76 0x65 - 0x20 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 - 0x20 0x6C 0x69 0x66 0x65 0x2C 0x20 0x68 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x74 0x65 0x6C 0x6C 0x20 0x6A 0x6F 0x6B - 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x75 0x74 0x20 0x6F 0x6E 0x20 0x70 0x6C - 0x61 0x79 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x72 0x70 0x68 0x61 - 0x6E 0x61 0x67 0x65 0x20 0x74 0x6F 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6B 0x65 0x65 - 0x70 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6B 0x69 0x64 0x73 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x65 0x64 0x2E 0x20 0x20 0x48 - 0x69 0x73 0x20 0x64 0x72 0x65 0x61 0x6D - 0x20 0x77 0x61 0x73 0x20 0x74 0x6F 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x65 0x6E 0x74 - 0x65 0x72 0x74 0x61 0x69 0x6E 0x20 0x6B - 0x69 0x64 0x73 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x46 0x6F 0x6F 0x64 0x20 - 0x54 0x65 0x73 0x74 0x65 0x72 0x3B 0x20 - 0x4D 0x65 0x6D 0x62 0x65 0x72 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x4B 0x69 - 0x64 0x73 0x27 0x20 0x4D 0x79 0x73 0x74 - 0x65 0x72 0x79 0x20 0x43 0x6C 0x75 0x62 - 0x3B 0x20 0x48 0x6F 0x74 0x2D 0x61 0x69 - 0x72 0x20 0x42 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x50 0x69 0x6C 0x6F 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3104 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_13= 0x00015214 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 3112 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001534e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001534f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015350 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015351 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x19 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC0 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC2 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x08 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x4A 0x45 0x52 0x45 0x4D 0x59 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4A 0x65 - 0x72 0x65 0x6D 0x79 0x20 0x77 0x61 0x73 - 0x20 0x62 0x6F 0x72 0x6E 0x20 0x69 0x6E - 0x20 0x43 0x6F 0x6E 0x6E 0x65 0x63 0x74 - 0x69 0x63 0x75 0x74 0x2C 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x55 0x6E 0x69 - 0x74 0x65 0x64 0x20 0x53 0x74 0x61 0x74 - 0x65 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x68 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x65 0x78 0x65 0x72 - 0x63 0x69 0x73 0x65 0x2E 0x20 0x20 0x41 - 0x74 0x20 0x32 0x39 0x2C 0x20 0x68 0x65 - 0x92 0x73 0x20 0x61 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x61 0x74 0x68 0x6C 0x65 - 0x74 0x65 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x61 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 - 0x69 0x6E 0x74 0x65 0x72 0x76 0x69 0x65 - 0x77 0x65 0x64 0x20 0x6F 0x6E 0x20 0x73 - 0x70 0x6F 0x72 0x74 0x73 0x20 0x74 0x65 - 0x6C 0x65 0x76 0x69 0x73 0x69 0x6F 0x6E - 0x20 0x73 0x68 0x6F 0x77 0x73 0x20 0x73 - 0x65 0x76 0x65 0x72 0x61 0x6C 0x20 0x74 - 0x69 0x6D 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x77 0x69 0x6E 0x6E 0x69 0x6E 0x67 - 0x20 0x72 0x61 0x63 0x65 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x63 0x74 0x20 - 0x69 0x6E 0x20 0x63 0x6F 0x6D 0x6D 0x65 - 0x72 0x63 0x69 0x61 0x6C 0x73 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x65 0x6E 0x6E 0x69 - 0x73 0x20 0x73 0x68 0x6F 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x72 0x75 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x63 0x6C 0x6F 0x74 - 0x68 0x65 0x73 0x2C 0x20 0x61 0x20 0x66 - 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x70 0x72 0x6F 0x64 0x75 0x63 0x65 - 0x72 0x73 0x20 0x74 0x68 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x92 0x64 0x20 - 0x62 0x65 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x70 0x61 0x72 0x74 0x73 0x20 0x69 0x6E - 0x20 0x66 0x69 0x6C 0x6D 0x73 0x2C 0x20 - 0x74 0x68 0x61 0x6E 0x6B 0x73 0x20 0x74 - 0x6F 0x20 0x68 0x69 0x73 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x61 0x6C 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x62 0x69 - 0x6C 0x69 0x74 0x79 0x2E 0x20 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x43 0x6F 0x6F - 0x6B 0x3B 0x20 0x53 0x74 0x72 0x65 0x65 - 0x74 0x20 0x46 0x61 0x69 0x72 0x20 0x50 - 0x61 0x72 0x74 0x69 0x63 0x69 0x70 0x61 - 0x6E 0x74 0x3B 0x20 0x50 0x72 0x65 0x68 - 0x69 0x73 0x74 0x6F 0x72 0x69 0x63 0x20 - 0x4D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 3275 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_14= 0x00015215 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 3283 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015352 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015353 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015354 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015355 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x4A 0x45 0x52 0x5A 0x59 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x4A 0x65 0x72 - 0x7A 0x79 0x20 0x69 0x73 0x20 0x61 0x20 - 0x70 0x6F 0x74 0x61 0x74 0x6F 0x20 0x66 - 0x61 0x72 0x6D 0x65 0x72 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x63 0x65 0x6E 0x74 0x72 - 0x61 0x6C 0x20 0x50 0x6F 0x6C 0x61 0x6E - 0x64 0x2E 0x20 0x20 0x48 0x65 0x20 0x68 - 0x61 0x73 0x20 0x65 0x61 0x74 0x65 0x6E - 0x20 0x6D 0x75 0x63 0x68 0x20 0x6F 0x66 - 0x20 0x77 0x68 0x61 0x74 0x20 0x68 0x65 - 0x92 0x73 0x20 0x67 0x72 0x6F 0x77 0x6E - 0x2C 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6E 0x6F 0x77 0x20 0x68 0x65 - 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 - 0x73 0x61 0x79 0x73 0x2C 0x20 0x93 0x4F - 0x6F 0x6D 0x70 0x68 0x94 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x6B 0x6E - 0x65 0x65 0x6C 0x73 0x20 0x74 0x6F 0x20 - 0x64 0x69 0x67 0x20 0x70 0x6F 0x74 0x61 - 0x74 0x6F 0x65 0x73 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x65 0x6C 0x6C 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 0x6E - 0x64 0x20 0x64 0x61 0x6E 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x6F 0x6C 0x64 0x20 0x50 - 0x6F 0x6C 0x69 0x73 0x68 0x20 0x66 0x6F - 0x6C 0x6B 0x20 0x73 0x6F 0x6E 0x67 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x69 - 0x73 0x20 0x6E 0x65 0x69 0x67 0x68 0x62 - 0x6F 0x72 0x73 0x2C 0x20 0x61 0x20 0x77 - 0x6F 0x6D 0x61 0x6E 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x54 0x65 0x78 0x61 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x20 0x6D 0x61 - 0x6E 0x20 0x66 0x72 0x6F 0x6D 0x20 0x49 - 0x72 0x65 0x6C 0x61 0x6E 0x64 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x62 - 0x6F 0x79 0x2C 0x20 0x68 0x65 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x65 0x64 0x20 0x6F - 0x66 0x20 0x62 0x65 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x66 0x61 0x6D - 0x6F 0x75 0x73 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x74 0x61 0x72 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x74 0x68 0x61 0x74 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6C - 0x6F 0x6E 0x67 0x20 0x74 0x69 0x6D 0x65 - 0x20 0x61 0x67 0x6F 0x2E 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x47 0x61 0x72 0x64 - 0x65 0x6E 0x65 0x72 0x3B 0x20 0x54 0x61 - 0x78 0x69 0x20 0x44 0x72 0x69 0x76 0x65 - 0x72 0x3B 0x20 0x41 0x72 0x63 0x68 0x65 - 0x6F 0x6C 0x6F 0x67 0x69 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3444 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_15= 0x00015216 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 3452 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015357 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015358 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015359 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015356 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x56 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x48 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x63 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x79 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x86 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3D 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x48 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x77 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x79 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x86 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x58 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x03 0x03 0x4A 0x4F 0x53 0x45 0x50 0x48 - 0x49 0x4E 0x45 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x4A 0x6F 0x73 0x65 0x70 0x68 0x69 - 0x6E 0x65 0x20 0x69 0x73 0x20 0x32 0x37 - 0x20 0x79 0x65 0x61 0x72 0x73 0x20 0x6F - 0x6C 0x64 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x42 0x61 0x6E 0x67 0x61 0x6C - 0x6F 0x72 0x65 0x2C 0x20 0x49 0x6E 0x64 - 0x69 0x61 0x2E 0x20 0x42 0x61 0x6E 0x67 - 0x61 0x6C 0x6F 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x76 0x65 0x72 0x79 0x20 - 0x70 0x72 0x6F 0x67 0x72 0x65 0x73 0x73 - 0x69 0x76 0x65 0x20 0x63 0x69 0x74 0x79 - 0x20 0x69 0x6E 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x20 0x61 0x6E 0x64 0x20 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x20 - 0x68 0x61 0x73 0x20 0x74 0x72 0x69 0x65 - 0x64 0x20 0x6D 0x61 0x6E 0x79 0x20 0x64 - 0x69 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 - 0x20 0x63 0x61 0x72 0x65 0x65 0x72 0x73 - 0x20 0x74 0x68 0x65 0x72 0x65 0x3A 0x20 - 0x6D 0x6F 0x64 0x65 0x6C 0x69 0x6E 0x67 - 0x2C 0x20 0x73 0x61 0x6C 0x65 0x73 0x2C - 0x20 0x77 0x72 0x69 0x74 0x69 0x6E 0x67 - 0x2C 0x20 0x61 0x63 0x74 0x69 0x6E 0x67 - 0x2E 0x2E 0x2E 0x20 0x62 0x75 0x74 0x20 - 0x75 0x70 0x6F 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x68 - 0x65 0x72 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x70 - 0x61 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x66 0x69 0x6C 0x6D 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x6B 0x6E 0x65 0x77 0x20 - 0x73 0x68 0x65 0x20 0x68 0x61 0x64 0x20 - 0x66 0x6F 0x75 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x20 0x74 0x72 0x75 0x65 0x20 0x64 - 0x65 0x73 0x74 0x69 0x6E 0x79 0x97 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x73 0x74 0x61 - 0x72 0x21 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x50 0x61 0x6C 0x6D 0x20 0x52 - 0x65 0x61 0x64 0x65 0x72 0x3B 0x20 0x49 - 0x6D 0x70 0x6F 0x72 0x74 0x20 0x53 0x61 - 0x6C 0x65 0x73 0x70 0x65 0x72 0x73 0x6F - 0x6E 0x3B 0x20 0x41 0x72 0x74 0x20 0x43 - 0x6F 0x6C 0x6C 0x65 0x63 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 3604 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_16= 0x00015217 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 3612 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001535a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001535b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001535c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001535d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE8 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x0A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0C 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x05 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x4B 0x49 0x4D 0x0D 0x0A 0x42 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x4B 0x69 0x6D 0x20 0x69 - 0x73 0x20 0x73 0x75 0x70 0x70 0x6F 0x73 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x61 0x20 0x71 0x75 0x69 0x65 0x74 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x65 0x72 - 0x2C 0x20 0x31 0x32 0x2D 0x79 0x65 0x61 - 0x72 0x2D 0x6F 0x6C 0x64 0x20 0x4A 0x61 - 0x70 0x61 0x6E 0x65 0x73 0x65 0x20 0x67 - 0x69 0x72 0x6C 0x20 0x77 0x68 0x6F 0x20 - 0x62 0x65 0x68 0x61 0x76 0x65 0x73 0x20 - 0x68 0x65 0x72 0x73 0x65 0x6C 0x66 0x2E - 0x20 0x20 0x57 0x72 0x6F 0x6E 0x67 0x2E - 0x20 0x4B 0x69 0x6D 0x20 0x77 0x69 0x67 - 0x67 0x6C 0x65 0x73 0x20 0x63 0x6F 0x6E - 0x73 0x74 0x61 0x6E 0x74 0x6C 0x79 0x2C - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x74 0x72 - 0x79 0x20 0x61 0x6E 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x63 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x20 0x6B 0x69 0x64 0x20 0x73 0x74 - 0x75 0x6E 0x74 0x20 0x61 0x63 0x74 0x72 - 0x65 0x73 0x73 0x2E 0x20 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x46 0x6F 0x72 0x74 - 0x75 0x6E 0x65 0x20 0x54 0x65 0x6C 0x6C - 0x65 0x72 0x3B 0x20 0x4D 0x65 0x6D 0x62 - 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x4B 0x69 0x64 0x73 0x27 0x20 - 0x4D 0x79 0x73 0x74 0x65 0x72 0x79 0x20 - 0x43 0x6C 0x75 0x62 0x3B 0x20 0x50 0x72 - 0x65 0x68 0x69 0x73 0x74 0x6F 0x72 0x69 - 0x63 0x20 0x47 0x69 0x72 0x6C -ENDCHUNK - - -ENDCHUNK -#line 3750 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_17= 0x00015218 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 3758 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001535e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001535f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015360 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015361 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x56 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x61 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x80 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x56 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x80 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x08 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B2, 0x0) - BYTE - 0x03 0x03 0x4D 0x41 0x52 0x54 0x48 0x41 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4D 0x61 - 0x72 0x74 0x68 0x61 0x20 0x77 0x61 0x73 - 0x20 0x62 0x6F 0x72 0x6E 0x20 0x69 0x6E - 0x20 0x50 0x61 0x64 0x75 0x63 0x61 0x68 - 0x2C 0x20 0x54 0x65 0x78 0x61 0x73 0x2C - 0x20 0x61 0x20 0x6C 0x69 0x74 0x74 0x6C - 0x65 0x20 0x74 0x6F 0x77 0x6E 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x6E 0x6F 0x77 0x68 0x65 0x72 0x65 0x2E - 0x20 0x42 0x65 0x69 0x6E 0x67 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x6F 0x77 0x6E - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6D - 0x69 0x73 0x74 0x61 0x6B 0x65 0x2E 0x20 - 0x4D 0x6F 0x73 0x74 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x77 0x65 0x72 0x65 0x20 0x71 - 0x75 0x69 0x65 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x64 0x20 0x93 0x67 0x6F - 0x6F 0x64 0x20 0x73 0x65 0x6E 0x73 0x65 - 0x2E 0x94 0x20 0x4E 0x6F 0x74 0x20 0x4D - 0x61 0x72 0x74 0x68 0x61 0x97 0x73 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x77 0x61 - 0x63 0x6B 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x72 0x65 0x61 0x74 0x69 0x76 0x65 - 0x2C 0x20 0x77 0x69 0x6C 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x75 0x6E 0x70 0x72 0x65 - 0x64 0x69 0x63 0x74 0x61 0x62 0x6C 0x65 - 0x2E 0x20 0x54 0x68 0x65 0x20 0x66 0x6F - 0x6C 0x6B 0x73 0x20 0x69 0x6E 0x20 0x54 - 0x65 0x78 0x61 0x73 0x20 0x73 0x74 0x69 - 0x6C 0x6C 0x20 0x72 0x65 0x6D 0x65 0x6D - 0x62 0x65 0x72 0x20 0x68 0x65 0x72 0x20 - 0x61 0x73 0x20 0x93 0x74 0x68 0x61 0x74 - 0x20 0x77 0x69 0x6C 0x64 0x20 0x74 0x68 - 0x69 0x6E 0x67 0x2E 0x94 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x41 0x20 0x43 0x72 - 0x65 0x65 0x70 0x79 0x2C 0x20 0x53 0x63 - 0x61 0x72 0x79 0x20 0x41 0x75 0x6E 0x74 - 0x3B 0x20 0x4D 0x61 0x6E 0x6E 0x65 0x71 - 0x75 0x69 0x6E 0x3B 0x20 0x48 0x69 0x67 - 0x68 0x2D 0x46 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x4D 0x61 0x72 0x6B 0x65 0x74 0x69 - 0x6E 0x67 0x20 0x4D 0x61 0x6E 0x61 0x67 - 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 3909 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_18= 0x00015219 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 3917 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015362 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015363 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015364 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015365 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x29 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x32 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x47 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x32 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x47 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x29 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x4D 0x49 0x43 0x48 0x41 0x45 - 0x4C 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x6A - 0x75 0x73 0x74 0x20 0x67 0x72 0x61 0x64 - 0x75 0x61 0x74 0x65 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x68 0x69 0x67 0x68 0x20 - 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x20 0x69 - 0x6E 0x20 0x43 0x68 0x69 0x63 0x61 0x67 - 0x6F 0x20 0x61 0x6E 0x64 0x20 0x69 0x73 - 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x67 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x6C 0x6C 0x2E 0x20 0x20 - 0x42 0x75 0x74 0x20 0x74 0x68 0x69 0x73 - 0x20 0x73 0x75 0x6D 0x6D 0x65 0x72 0x2C - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x20 0x69 0x73 0x20 0x63 0x6F 0x6E 0x63 - 0x65 0x6E 0x74 0x72 0x61 0x74 0x69 0x6E - 0x67 0x20 0x6F 0x6E 0x20 0x77 0x72 0x69 - 0x74 0x69 0x6E 0x67 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x2E 0x20 0x20 0x4D 0x61 0x69 - 0x6E 0x6C 0x79 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6C 0x75 0x65 0x73 0x2E 0x20 0x20 - 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 - 0x73 0x68 0x6F 0x75 0x6C 0x64 0x20 0x68 - 0x61 0x76 0x65 0x20 0x62 0x65 0x65 0x6E - 0x20 0x62 0x6F 0x72 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x4D 0x69 0x73 - 0x73 0x69 0x73 0x73 0x69 0x70 0x70 0x69 - 0x20 0x44 0x65 0x6C 0x74 0x61 0x97 0x74 - 0x68 0x61 0x74 0x92 0x73 0x20 0x68 0x6F - 0x77 0x20 0x67 0x6F 0x6F 0x64 0x20 0x68 - 0x69 0x73 0x20 0x62 0x6C 0x75 0x65 0x73 - 0x20 0x74 0x75 0x6E 0x65 0x73 0x20 0x61 - 0x72 0x65 0x2E 0x20 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x53 0x6F 0x75 0x73 0x2D - 0x43 0x68 0x65 0x66 0x3B 0x20 0x4D 0x65 - 0x73 0x73 0x65 0x6E 0x67 0x65 0x72 0x3B - 0x20 0x45 0x78 0x70 0x6C 0x6F 0x72 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4066 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_19= 0x0001521a - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 4074 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015366 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015367 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015368 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015369 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x24 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x26 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x4D 0x49 0x4D 0x49 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x4D 0x69 0x6D 0x69 - 0x20 0x69 0x73 0x20 0x61 0x20 0x74 0x72 - 0x61 0x63 0x6B 0x20 0x73 0x74 0x61 0x72 - 0x20 0x61 0x74 0x20 0x68 0x65 0x72 0x20 - 0x68 0x69 0x67 0x68 0x20 0x73 0x63 0x68 - 0x6F 0x6F 0x6C 0x20 0x69 0x6E 0x20 0x50 - 0x6F 0x75 0x67 0x68 0x6B 0x65 0x65 0x70 - 0x73 0x69 0x65 0x2C 0x20 0x4E 0x65 0x77 - 0x20 0x59 0x6F 0x72 0x6B 0x2E 0x20 0x53 - 0x6F 0x6D 0x65 0x74 0x69 0x6D 0x65 0x73 - 0x20 0x73 0x68 0x65 0x20 0x72 0x75 0x6E - 0x73 0x20 0x73 0x6F 0x20 0x66 0x61 0x73 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x69 - 0x74 0x20 0x74 0x61 0x6B 0x65 0x73 0x20 - 0x68 0x65 0x72 0x20 0x61 0x20 0x63 0x6F - 0x75 0x70 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x63 0x69 0x74 0x79 0x20 0x62 0x6C 0x6F - 0x63 0x6B 0x73 0x20 0x74 0x6F 0x20 0x73 - 0x6C 0x6F 0x77 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 0x6F - 0x70 0x2E 0x20 0x53 0x6F 0x6D 0x65 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x20 0x63 - 0x6C 0x61 0x69 0x6D 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x68 0x65 0x92 0x73 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x73 0x74 - 0x65 0x73 0x74 0x20 0x68 0x75 0x6D 0x61 - 0x6E 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6C 0x64 0x2E 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x54 0x72 0x69 0x63 - 0x6B 0x2D 0x6F 0x72 0x2D 0x54 0x72 0x65 - 0x61 0x74 0x65 0x72 0x20 0x44 0x72 0x65 - 0x73 0x73 0x65 0x64 0x20 0x61 0x73 0x20 - 0x50 0x69 0x72 0x61 0x74 0x65 0x3B 0x20 - 0x54 0x6F 0x75 0x72 0x69 0x73 0x74 0x3B - 0x20 0x54 0x72 0x61 0x63 0x6B 0x20 0x43 - 0x6F 0x61 0x63 0x68 -ENDCHUNK - - -ENDCHUNK -#line 4216 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1A= 0x0001521b - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 4224 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_91=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001536a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001536b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001536c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001536d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_91=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB0 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCB 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD4 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD6 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE0 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB0 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCB 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD6 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB0 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_91=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x03 0x03 0x4D 0x41 0x52 0x49 0x42 0x45 - 0x4C 0x4C 0x41 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x4D 0x61 0x72 0x69 0x62 0x65 0x6C - 0x6C 0x61 0x20 0x77 0x61 0x73 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x31 0x34 0x20 0x79 - 0x65 0x61 0x72 0x73 0x20 0x61 0x67 0x6F - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x67 0x20 0x6F 0x66 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x4C 0x6F - 0x6E 0x64 0x6F 0x6E 0x92 0x73 0x20 0x69 - 0x6E 0x6E 0x65 0x72 0x20 0x62 0x6F 0x72 - 0x6F 0x75 0x67 0x68 0x73 0x2E 0x20 0x4D - 0x61 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 - 0x20 0x69 0x73 0x20 0x62 0x72 0x69 0x67 - 0x68 0x74 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x75 0x6E 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x73 0x68 0x65 0x20 0x68 0x61 0x73 0x20 - 0x6F 0x6E 0x65 0x20 0x70 0x72 0x6F 0x62 - 0x6C 0x65 0x6D 0x97 0x73 0x68 0x65 0x20 - 0x6C 0x6F 0x76 0x65 0x73 0x20 0x74 0x6F - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x77 0x68 - 0x65 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x65 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x2E 0x20 0x20 0x46 0x6F 0x72 - 0x20 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 - 0x2C 0x20 0x6C 0x61 0x73 0x74 0x20 0x41 - 0x75 0x67 0x75 0x73 0x74 0x20 0x73 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x75 0x72 0x20 - 0x6F 0x66 0x20 0x42 0x75 0x63 0x6B 0x69 - 0x6E 0x67 0x68 0x61 0x6D 0x20 0x50 0x61 - 0x6C 0x61 0x63 0x65 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x74 - 0x68 0x72 0x6F 0x77 0x6E 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x67 0x75 0x61 0x72 0x64 0x20 0x63 - 0x61 0x75 0x67 0x68 0x74 0x20 0x68 0x65 - 0x72 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6C 0x6F 0x73 0x65 0x74 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x70 0x72 0x69 0x76 - 0x61 0x74 0x65 0x20 0x72 0x6F 0x6F 0x6D - 0x2E 0x20 0x41 0x6E 0x64 0x20 0x6E 0x6F - 0x74 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 - 0x6E 0x79 0x20 0x72 0x6F 0x6F 0x6D 0x2E - 0x20 0x20 0x49 0x74 0x20 0x77 0x61 0x73 - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x64 - 0x72 0x6F 0x6F 0x6D 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x71 0x75 0x65 0x65 - 0x6E 0x21 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x44 0x61 0x75 0x67 0x68 0x74 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x20 0x46 0x61 0x6D - 0x69 0x6C 0x79 0x3B 0x20 0x4D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x3B 0x20 - 0x47 0x69 0x72 0x6C 0x20 0x53 0x63 0x6F - 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 4388 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1B= 0x0001521c - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 4396 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001536e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001536f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015370 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015371 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x25 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x66 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x66 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x08 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x25 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x03 0x03 0x4E 0x41 0x4B 0x49 0x54 0x41 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x20 0x67 0x72 0x65 - 0x77 0x20 0x75 0x70 0x20 0x77 0x69 0x74 - 0x68 0x20 0x65 0x69 0x67 0x68 0x74 0x20 - 0x6F 0x6C 0x64 0x65 0x72 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x73 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x72 0x74 0x20 0x63 0x69 0x74 0x79 0x20 - 0x6F 0x66 0x20 0x53 0x74 0x2E 0x20 0x50 - 0x65 0x74 0x65 0x72 0x73 0x62 0x75 0x72 - 0x67 0x2C 0x20 0x52 0x75 0x73 0x73 0x69 - 0x61 0x20 0x61 0x6E 0x64 0x20 0x6C 0x65 - 0x61 0x72 0x6E 0x65 0x64 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x76 0x65 0x72 0x79 - 0x20 0x74 0x6F 0x75 0x67 0x68 0x2E 0x20 - 0x20 0x54 0x6F 0x20 0x6B 0x65 0x65 0x70 - 0x20 0x68 0x65 0x72 0x20 0x62 0x72 0x6F - 0x74 0x68 0x65 0x72 0x73 0x20 0x69 0x6E - 0x20 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x65 0x76 0x65 0x6E 0x74 - 0x75 0x61 0x6C 0x6C 0x79 0x20 0x74 0x6F - 0x6F 0x6B 0x20 0x75 0x70 0x20 0x6B 0x61 - 0x72 0x61 0x74 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 - 0x74 0x68 0x65 0x20 0x79 0x6F 0x75 0x6E - 0x67 0x65 0x73 0x74 0x20 0x52 0x75 0x73 - 0x73 0x69 0x61 0x6E 0x20 0x6B 0x61 0x72 - 0x61 0x74 0x65 0x20 0x63 0x68 0x61 0x6D - 0x70 0x69 0x6F 0x6E 0x20 0x65 0x76 0x65 - 0x72 0x21 0x20 0x20 0x4E 0x6F 0x77 0x20 - 0x6E 0x6F 0x62 0x6F 0x64 0x79 0x20 0x70 - 0x69 0x63 0x6B 0x73 0x20 0x6F 0x6E 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x50 - 0x72 0x69 0x76 0x61 0x74 0x65 0x20 0x41 - 0x65 0x72 0x6F 0x62 0x69 0x63 0x20 0x49 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x6F - 0x72 0x3B 0x20 0x56 0x65 0x6C 0x63 0x72 - 0x6F 0x20 0x57 0x6F 0x6D 0x61 0x6E 0x3B - 0x20 0x53 0x63 0x75 0x62 0x61 0x20 0x44 - 0x69 0x76 0x69 0x6E 0x67 0x20 0x49 0x6E - 0x73 0x74 0x72 0x75 0x63 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4543 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1C= 0x0001521d - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 4551 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015372 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015374 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015375 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015373 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCE 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x81 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE6 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFF 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xE6 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF7 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xFF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x50 0x41 0x54 0x52 0x49 0x43 - 0x4B 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x50 - 0x61 0x74 0x72 0x69 0x63 0x6B 0x20 0x77 - 0x61 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x74 0x68 0x65 0x20 0x63 0x65 - 0x6E 0x74 0x65 0x72 0x20 0x6F 0x66 0x20 - 0x61 0x74 0x74 0x65 0x6E 0x74 0x69 0x6F - 0x6E 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x68 - 0x6F 0x6D 0x65 0x74 0x6F 0x77 0x6E 0x20 - 0x6F 0x66 0x20 0x44 0x75 0x6E 0x6D 0x6F - 0x72 0x65 0x2C 0x20 0x49 0x72 0x65 0x6C - 0x61 0x6E 0x64 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x6F 0x76 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 - 0x61 0x69 0x6E 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x77 0x68 - 0x69 0x6C 0x65 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6B 0x65 0x64 0x20 0x61 0x73 - 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 0x67 - 0x75 0x69 0x64 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x6C 0x6F 0x63 0x61 0x6C - 0x20 0x67 0x6C 0x61 0x73 0x73 0x20 0x66 - 0x61 0x63 0x74 0x6F 0x72 0x79 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x66 0x61 0x63 - 0x74 0x6F 0x72 0x79 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x6D 0x61 0x6A 0x6F 0x72 - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x20 0x61 0x74 0x74 0x72 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 - 0x73 0x68 0x6F 0x72 0x74 0x20 0x66 0x69 - 0x6C 0x6D 0x20 0x77 0x61 0x73 0x20 0x6D - 0x61 0x64 0x65 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x69 0x74 0x2C 0x20 0x50 0x61 - 0x74 0x72 0x69 0x63 0x6B 0x20 0x73 0x74 - 0x6F 0x6C 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x68 0x6F 0x77 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x72 0x65 0x61 0x6C 0x69 0x7A - 0x65 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x6E 0x27 0x74 0x20 0x6C - 0x69 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 - 0x20 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 - 0x66 0x75 0x6C 0x6C 0x20 0x70 0x6F 0x74 - 0x65 0x6E 0x74 0x69 0x61 0x6C 0x20 0x69 - 0x6E 0x20 0x44 0x75 0x6E 0x6D 0x6F 0x72 - 0x65 0x2C 0x20 0x73 0x6F 0x20 0x68 0x65 - 0x20 0x64 0x65 0x63 0x69 0x64 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x55 0x6E - 0x69 0x74 0x65 0x64 0x20 0x53 0x74 0x61 - 0x74 0x65 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x69 0x74 0x20 0x69 - 0x6E 0x20 0x48 0x6F 0x6C 0x6C 0x79 0x77 - 0x6F 0x6F 0x64 0x2E 0x20 0x20 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x52 0x69 0x63 - 0x68 0x20 0x43 0x6F 0x75 0x73 0x69 0x6E - 0x3B 0x20 0x4B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x45 0x78 0x70 0x65 0x72 0x74 0x3B - 0x20 0x45 0x78 0x70 0x6C 0x6F 0x72 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4719 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1D= 0x0001521e - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 4727 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015376 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015377 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015378 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015379 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6A 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x76 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x81 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5C 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x81 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x52 0x41 0x4D 0x55 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x52 0x61 0x6D 0x75 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6C - 0x65 0x61 0x64 0x69 0x6E 0x67 0x20 0x64 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x69 - 0x6E 0x20 0x4A 0x61 0x69 0x70 0x75 0x72 - 0x2C 0x20 0x49 0x6E 0x64 0x69 0x61 0x20 - 0x66 0x6F 0x72 0x20 0x73 0x65 0x76 0x65 - 0x72 0x61 0x6C 0x20 0x79 0x65 0x61 0x72 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x65 - 0x76 0x65 0x6C 0x6F 0x70 0x65 0x64 0x20 - 0x61 0x6E 0x20 0x69 0x6E 0x74 0x65 0x72 - 0x6E 0x61 0x74 0x69 0x6F 0x6E 0x61 0x6C - 0x20 0x72 0x65 0x70 0x75 0x74 0x61 0x74 - 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x42 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x77 0x20 0x69 0x74 0x2C - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x63 0x74 0x72 - 0x65 0x73 0x73 0x65 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x48 0x6F 0x6C 0x6C 0x79 - 0x77 0x6F 0x6F 0x64 0x20 0x77 0x65 0x72 - 0x65 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x66 0x6C 0x69 - 0x67 0x68 0x74 0x20 0x74 0x6F 0x20 0x49 - 0x6E 0x64 0x69 0x61 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x65 - 0x72 0x66 0x65 0x63 0x74 0x20 0x22 0x52 - 0x61 0x6D 0x75 0x20 0x73 0x6D 0x69 0x6C - 0x65 0x2E 0x22 0x20 0x20 0x42 0x75 0x73 - 0x69 0x6E 0x65 0x73 0x73 0x20 0x77 0x61 - 0x73 0x20 0x73 0x6F 0x20 0x67 0x6F 0x6F - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x52 - 0x61 0x6D 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x48 0x6F 0x6C - 0x6C 0x79 0x77 0x6F 0x6F 0x64 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x68 0x65 0x20 - 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 0x93 - 0x44 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x53 - 0x74 0x61 0x72 0x73 0x2E 0x94 0x20 0x0D - 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 - 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x4E 0x6F - 0x69 0x73 0x79 0x20 0x54 0x65 0x6E 0x61 - 0x6E 0x74 0x3B 0x20 0x43 0x61 0x72 0x20 - 0x53 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E - 0x3B 0x20 0x53 0x6B 0x79 0x20 0x44 0x69 - 0x76 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4880 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1E= 0x0001521f - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 4888 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001537a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001537b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001537c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001537d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xEE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF0 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x12 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x52 0x41 0x4E 0x44 0x4F 0x4C - 0x50 0x48 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x52 0x61 0x6E 0x64 0x6F 0x6C 0x70 0x68 - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x34 0x37 0x20 0x79 0x65 0x61 - 0x72 0x73 0x20 0x61 0x67 0x6F 0x20 0x69 - 0x6E 0x20 0x42 0x72 0x69 0x73 0x74 0x6F - 0x6C 0x2C 0x20 0x45 0x6E 0x67 0x6C 0x61 - 0x6E 0x64 0x2E 0x20 0x20 0x46 0x72 0x6F - 0x6D 0x20 0x61 0x20 0x79 0x6F 0x75 0x6E - 0x67 0x20 0x61 0x67 0x65 0x2C 0x20 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x66 0x61 - 0x73 0x63 0x69 0x6E 0x61 0x74 0x65 0x64 - 0x20 0x62 0x79 0x20 0x74 0x68 0x65 0x20 - 0x77 0x65 0x61 0x74 0x68 0x65 0x72 0x2C - 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 0x64 - 0x65 0x63 0x69 0x64 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x70 0x75 0x72 0x73 0x75 0x65 - 0x20 0x61 0x20 0x63 0x61 0x72 0x65 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x6D 0x65 0x74 - 0x65 0x6F 0x72 0x6F 0x6C 0x6F 0x67 0x79 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x62 0x65 - 0x63 0x61 0x6D 0x65 0x20 0x61 0x20 0x77 - 0x65 0x61 0x74 0x68 0x65 0x72 0x20 0x6D - 0x61 0x6E 0x2E 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x4D 0x72 0x2E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x46 0x61 0x74 0x68 0x65 0x72 - 0x3B 0x20 0x42 0x6F 0x64 0x79 0x67 0x75 - 0x61 0x72 0x64 0x3B 0x20 0x4C 0x69 0x66 - 0x65 0x20 0x49 0x6E 0x73 0x75 0x72 0x61 - 0x6E 0x63 0x65 0x20 0x53 0x61 0x6C 0x65 - 0x73 0x6D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 5027 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1F= 0x00015220 - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 5035 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001537e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001537f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015380 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015381 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x15 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x25 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x15 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x52 0x4F 0x58 0x41 0x4E 0x4E - 0x45 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x69 - 0x73 0x20 0x32 0x32 0x20 0x61 0x6E 0x64 - 0x20 0x67 0x72 0x65 0x77 0x20 0x75 0x70 - 0x20 0x69 0x6E 0x20 0x42 0x65 0x69 0x6A - 0x69 0x6E 0x67 0x2C 0x20 0x43 0x68 0x69 - 0x6E 0x61 0x2E 0x20 0x20 0x48 0x65 0x72 - 0x20 0x6D 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 0x20 - 0x52 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 - 0x68 0x61 0x64 0x20 0x6D 0x6F 0x72 0x65 - 0x20 0x79 0x61 0x6E 0x67 0x20 0x74 0x68 - 0x61 0x6E 0x20 0x79 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x66 0x65 0x64 0x20 0x68 - 0x65 0x72 0x20 0x63 0x75 0x63 0x75 0x6D - 0x62 0x65 0x72 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x72 0x75 0x69 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x72 0x72 0x65 0x63 - 0x74 0x20 0x74 0x68 0x69 0x73 0x20 0x69 - 0x6D 0x62 0x61 0x6C 0x61 0x6E 0x63 0x65 - 0x2E 0x20 0x20 0x49 0x74 0x20 0x64 0x69 - 0x64 0x6E 0x92 0x74 0x20 0x77 0x6F 0x72 - 0x6B 0x2E 0x20 0x52 0x6F 0x78 0x61 0x6E - 0x6E 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x20 0x61 0x6E 0x64 0x20 0x62 - 0x65 0x63 0x61 0x6D 0x65 0x20 0x61 0x20 - 0x73 0x65 0x6C 0x66 0x2D 0x64 0x65 0x66 - 0x65 0x6E 0x73 0x65 0x20 0x65 0x78 0x70 - 0x65 0x72 0x74 0x2E 0x20 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x48 0x61 0x69 0x72 - 0x64 0x72 0x65 0x73 0x73 0x65 0x72 0x3B - 0x20 0x55 0x6E 0x64 0x65 0x72 0x63 0x6F - 0x76 0x65 0x72 0x20 0x43 0x6F 0x70 0x3B - 0x20 0x43 0x6F 0x63 0x6B 0x61 0x74 0x6F - 0x6F 0x20 0x57 0x61 0x74 0x63 0x68 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 5177 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_20= 0x00015221 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 5185 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_76=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015382 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015383 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015384 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015385 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_76=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x40 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x61 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x83 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x94 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x30 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x83 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_76=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x03 0x03 0x53 0x41 0x4C 0x56 0x41 0x44 - 0x4F 0x52 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x31 0x34 0x20 0x79 0x65 0x61 - 0x72 0x73 0x20 0x61 0x67 0x6F 0x20 0x69 - 0x6E 0x20 0x4D 0x61 0x64 0x72 0x69 0x64 - 0x2E 0x20 0x48 0x65 0x20 0x68 0x61 0x73 - 0x20 0x73 0x70 0x65 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x66 0x69 0x76 0x65 0x20 0x79 0x65 0x61 - 0x72 0x73 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x61 0x20 0x76 0x65 - 0x72 0x79 0x20 0x63 0x6F 0x6F 0x6C 0x20 - 0x74 0x65 0x65 0x6E 0x61 0x67 0x65 0x72 - 0x2E 0x20 0x48 0x65 0x20 0x69 0x73 0x20 - 0x73 0x65 0x72 0x69 0x6F 0x75 0x73 0x6C - 0x79 0x20 0x67 0x6F 0x6F 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x20 0x67 0x61 0x6D 0x65 0x73 0x2C 0x20 - 0x68 0x65 0x20 0x68 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x74 0x65 0x73 - 0x74 0x20 0x68 0x61 0x69 0x72 0x63 0x75 - 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x67 - 0x69 0x72 0x6C 0x73 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x73 0x70 0x65 0x63 0x69 0x61 0x6C 0x2E - 0x20 0x42 0x75 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x64 0x6F 0x6E 0x92 0x74 0x20 - 0x6B 0x6E 0x6F 0x77 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x73 0x70 - 0x65 0x63 0x69 0x61 0x6C 0x20 0x53 0x61 - 0x6C 0x76 0x61 0x64 0x6F 0x72 0x20 0x69 - 0x73 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x5A 0x6F - 0x72 0x72 0x6F 0x3B 0x20 0x4D 0x65 0x6D - 0x62 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x4B 0x69 0x64 0x73 0x27 - 0x20 0x4D 0x79 0x73 0x74 0x65 0x72 0x79 - 0x20 0x43 0x6C 0x75 0x62 0x3B 0x20 0x50 - 0x72 0x65 0x68 0x69 0x73 0x74 0x6F 0x72 - 0x69 0x63 0x20 0x42 0x6F 0x79 -ENDCHUNK - - -ENDCHUNK -#line 5340 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_21= 0x00015222 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 5348 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015386 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015387 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015388 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015389 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x20 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x20 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x53 0x45 0x42 0x41 0x53 0x54 - 0x49 0x41 0x4E 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x69 0x73 0x20 0x31 0x35 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x6F 0x76 - 0x65 0x73 0x20 0x62 0x61 0x73 0x65 0x62 - 0x61 0x6C 0x6C 0x20 0x6D 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x61 0x6E 0x20 0x61 0x6E - 0x79 0x74 0x68 0x69 0x6E 0x67 0x2E 0x20 - 0x4D 0x6F 0x73 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x74 0x69 0x6D 0x65 - 0x20 0x68 0x65 0x20 0x70 0x6C 0x61 0x79 - 0x73 0x20 0x73 0x61 0x6E 0x64 0x2D 0x6C - 0x6F 0x74 0x20 0x67 0x61 0x6D 0x65 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x66 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x73 0x63 0x68 0x6F 0x6F - 0x6C 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 - 0x65 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x20 0x6F 0x66 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 - 0x72 0x6F 0x66 0x65 0x73 0x73 0x69 0x6F - 0x6E 0x61 0x6C 0x20 0x62 0x61 0x73 0x65 - 0x62 0x61 0x6C 0x6C 0x20 0x70 0x6C 0x61 - 0x79 0x65 0x72 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x66 0x65 0x77 0x20 0x79 0x65 0x61 - 0x72 0x73 0x2E 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x61 0x6E - 0x20 0x41 0x6C 0x69 0x65 0x6E 0x3B 0x20 - 0x50 0x69 0x7A 0x7A 0x61 0x20 0x44 0x65 - 0x6C 0x69 0x76 0x65 0x72 0x79 0x20 0x42 - 0x6F 0x79 0x3B 0x20 0x42 0x6F 0x79 0x20 - 0x53 0x63 0x6F 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 5492 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_22= 0x00015223 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 5500 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BE=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_BE, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001538e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001538f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015390 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015391 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BE=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA5 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD6 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB5 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC5 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD6 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA7 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BE=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BE, 0x0) - BYTE - 0x03 0x03 0x53 0x4C 0x41 0x4D 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x53 0x6C 0x61 0x6D - 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 0x75 - 0x72 0x6E 0x65 0x64 0x20 0x31 0x38 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x61 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x63 0x6F 0x75 0x70 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x47 0x65 0x72 0x6D - 0x61 0x6E 0x2D 0x6D 0x61 0x64 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6B - 0x69 0x64 0x20 0x68 0x65 0x20 0x61 0x74 - 0x74 0x65 0x6E 0x64 0x65 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x72 0x74 0x73 0x20 0x61 - 0x63 0x61 0x64 0x65 0x6D 0x79 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x72 0x65 0x63 0x65 - 0x6E 0x74 0x6C 0x79 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x73 0x70 0x6F 0x74 - 0x74 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x74 0x61 0x6C 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x20 0x61 0x74 - 0x20 0x61 0x20 0x66 0x61 0x73 0x74 0x2D - 0x66 0x6F 0x6F 0x64 0x20 0x72 0x65 0x73 - 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 0x20 - 0x69 0x6E 0x20 0x42 0x65 0x72 0x6C 0x69 - 0x6E 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x64 0x72 0x65 0x77 - 0x20 0x68 0x75 0x67 0x65 0x20 0x63 0x72 - 0x6F 0x77 0x64 0x73 0x20 0x6F 0x66 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x20 0x61 - 0x73 0x20 0x68 0x65 0x20 0x66 0x6C 0x69 - 0x70 0x70 0x65 0x64 0x20 0x74 0x68 0x65 - 0x20 0x62 0x75 0x72 0x67 0x65 0x72 0x73 - 0x20 0x69 0x6E 0x20 0x66 0x61 0x6E 0x63 - 0x79 0x20 0x74 0x72 0x69 0x70 0x6C 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x71 0x75 0x61 - 0x64 0x72 0x75 0x70 0x6C 0x65 0x20 0x66 - 0x6C 0x69 0x70 0x73 0x2E 0x20 0x0D 0x0A - 0x53 0x6F 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x73 0x20 0x68 0x65 0x27 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x69 0x6E 0x20 - 0x61 0x72 0x65 0x20 0x93 0x52 0x75 0x6E - 0x2C 0x20 0x42 0x75 0x72 0x67 0x65 0x72 - 0x6D 0x61 0x6E 0x2C 0x20 0x52 0x75 0x6E - 0x94 0x20 0x61 0x6E 0x64 0x20 0x93 0x48 - 0x69 0x67 0x68 0x20 0x53 0x63 0x68 0x6F - 0x6F 0x6C 0x20 0x46 0x6C 0x69 0x70 0x70 - 0x69 0x6E 0x92 0x20 0x46 0x6F 0x6F 0x6C - 0x2E 0x94 0x0D 0x0A 0x44 0x72 0x65 0x61 - 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D - 0x0A 0x45 0x78 0x74 0x65 0x72 0x6D 0x69 - 0x6E 0x61 0x74 0x6F 0x72 0x3B 0x20 0x42 - 0x75 0x72 0x67 0x65 0x72 0x20 0x46 0x6C - 0x69 0x70 0x70 0x65 0x72 0x3B 0x20 0x43 - 0x72 0x6F 0x63 0x6F 0x64 0x69 0x6C 0x65 - 0x20 0x54 0x72 0x61 0x69 0x6E 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 5665 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_23= 0x00015224 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 5673 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BA=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_BA, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015392 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015393 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015394 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015395 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BA=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCA 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD5 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD7 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE5 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xF9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD7 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BA=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BA, 0x0) - BYTE - 0x03 0x03 0x54 0x49 0x4D 0x4F 0x54 0x48 - 0x59 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 0x69 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x41 - 0x74 0x68 0x65 0x6E 0x73 0x2C 0x20 0x47 - 0x72 0x65 0x65 0x63 0x65 0x2E 0x20 0x48 - 0x69 0x73 0x20 0x66 0x61 0x6D 0x69 0x6C - 0x79 0x20 0x6F 0x77 0x6E 0x73 0x20 0x6D - 0x69 0x6C 0x6C 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6D 0x61 0x6B 0x65 0x20 0x6D - 0x61 0x74 0x65 0x72 0x69 0x61 0x6C 0x20 - 0x66 0x6F 0x72 0x20 0x63 0x6C 0x6F 0x74 - 0x68 0x65 0x73 0x2E 0x20 0x20 0x54 0x69 - 0x6D 0x6F 0x74 0x68 0x79 0x20 0x6D 0x61 - 0x6E 0x61 0x67 0x65 0x73 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x6C 0x6C 0x73 0x2E 0x20 - 0x20 0x47 0x72 0x6F 0x77 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 0x41 - 0x74 0x68 0x65 0x6E 0x73 0x2C 0x20 0x54 - 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 0x73 - 0x61 0x77 0x20 0x6D 0x61 0x6E 0x79 0x20 - 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 0x61 - 0x72 0x2D 0x61 0x77 0x61 0x79 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x4B 0x61 0x6E 0x73 0x61 - 0x73 0x2C 0x20 0x4C 0x6F 0x73 0x20 0x41 - 0x6E 0x67 0x65 0x6C 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x41 0x72 0x6B 0x61 - 0x6E 0x73 0x61 0x73 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x6C 0x69 0x6B 0x65 0x64 0x20 - 0x74 0x68 0x65 0x69 0x72 0x20 0x62 0x72 - 0x69 0x67 0x68 0x74 0x20 0x63 0x6C 0x6F - 0x74 0x68 0x65 0x73 0x20 0x62 0x75 0x74 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x27 - 0x74 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x79 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x69 0x6E 0x20 - 0x41 0x74 0x68 0x65 0x6E 0x73 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x64 0x65 - 0x63 0x69 0x64 0x65 0x64 0x20 0x74 0x6F - 0x20 0x63 0x72 0x65 0x61 0x74 0x65 0x20 - 0x68 0x69 0x73 0x20 0x6F 0x77 0x6E 0x20 - 0x66 0x61 0x62 0x72 0x69 0x63 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x61 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6D 0x20 0x74 0x61 - 0x69 0x6C 0x6F 0x72 0x65 0x64 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x73 0x75 0x69 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x6D 0x61 0x74 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 0x73 - 0x20 0x77 0x6F 0x72 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x61 0x20 0x63 0x68 0x69 0x6C - 0x64 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 - 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D - 0x0A 0x53 0x70 0x6F 0x6F 0x6B 0x20 0x53 - 0x6C 0x65 0x75 0x74 0x68 0x3B 0x20 0x52 - 0x65 0x70 0x6F 0x72 0x74 0x65 0x72 0x3B - 0x20 0x4E 0x61 0x74 0x75 0x72 0x61 0x6C - 0x69 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 5839 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_24= 0x00015225 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 5847 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015396 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015397 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015398 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015399 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xED 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC3 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x56 0x41 0x4C 0x45 0x4E 0x54 - 0x49 0x4E 0x45 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 - 0x6E 0x65 0x20 0x77 0x61 0x73 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x69 0x6E 0x20 0x4D - 0x61 0x72 0x73 0x65 0x69 0x6C 0x6C 0x65 - 0x73 0x2C 0x20 0x46 0x72 0x61 0x6E 0x63 - 0x65 0x20 0x73 0x6F 0x6D 0x65 0x20 0x33 - 0x30 0x20 0x79 0x65 0x61 0x72 0x73 0x20 - 0x61 0x67 0x6F 0x2E 0x20 0x48 0x65 0x20 - 0x6C 0x65 0x66 0x74 0x20 0x4D 0x61 0x72 - 0x73 0x65 0x69 0x6C 0x6C 0x65 0x73 0x20 - 0x6F 0x6E 0x20 0x68 0x69 0x73 0x20 0x32 - 0x30 0x74 0x68 0x20 0x62 0x69 0x72 0x74 - 0x68 0x64 0x61 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x43 0x61 0x6E 0x6E 0x65 0x73 - 0x2C 0x20 0x46 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x68 0x6F 0x70 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x69 0x73 0x20 - 0x62 0x69 0x67 0x20 0x66 0x69 0x6C 0x6D - 0x20 0x64 0x65 0x62 0x75 0x74 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x41 - 0x6E 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 - 0x4E 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 - 0x3B 0x20 0x44 0x65 0x74 0x65 0x63 0x74 - 0x69 0x76 0x65 0x3B 0x20 0x56 0x6F 0x6F - 0x64 0x6F 0x6F 0x20 0x4D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 5979 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_25= 0x00015226 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 5987 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B0, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001539a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001539b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001539c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001539d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE9 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xEF 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x06 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x08 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0F 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE9 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF1 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x06 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x08 0x02 0x00 0x40 - 0x04 0x00 0x00 0x00 0x0F 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B0, 0x0) - BYTE - 0x03 0x03 0x56 0x45 0x4E 0x49 0x45 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x56 0x65 0x6E - 0x69 0x65 0x20 0x77 0x61 0x73 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x69 0x6E 0x20 0x4E - 0x61 0x70 0x6C 0x65 0x73 0x2C 0x20 0x49 - 0x74 0x61 0x6C 0x79 0x2E 0x20 0x20 0x41 - 0x73 0x20 0x61 0x20 0x63 0x68 0x69 0x6C - 0x64 0x20 0x68 0x65 0x20 0x77 0x61 0x74 - 0x63 0x68 0x65 0x64 0x20 0x63 0x6F 0x75 - 0x6E 0x74 0x6C 0x65 0x73 0x73 0x20 0x44 - 0x72 0x61 0x63 0x75 0x6C 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x56 0x65 0x6E - 0x69 0x65 0x20 0x77 0x61 0x73 0x20 0x69 - 0x6E 0x20 0x68 0x69 0x73 0x20 0x65 0x61 - 0x72 0x6C 0x79 0x20 0x32 0x30 0x73 0x2C - 0x20 0x68 0x65 0x20 0x64 0x65 0x63 0x69 - 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x68 0x69 0x73 0x20 - 0x66 0x72 0x6F 0x6E 0x74 0x20 0x74 0x65 - 0x65 0x74 0x68 0x20 0x63 0x61 0x70 0x70 - 0x65 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x76 0x61 0x6D 0x70 0x69 0x72 0x65 0x20 - 0x66 0x61 0x6E 0x67 0x73 0x2E 0x20 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x66 0x61 0x6E 0x63 0x69 - 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x61 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x6F 0x70 0x65 0x72 0x61 - 0x20 0x73 0x69 0x6E 0x67 0x65 0x72 0x2E - 0x20 0x20 0x55 0x6E 0x66 0x6F 0x72 0x74 - 0x75 0x6E 0x61 0x74 0x65 0x6C 0x79 0x2C - 0x20 0x56 0x69 0x6E 0x6E 0x69 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x6C - 0x79 0x20 0x56 0x65 0x6E 0x69 0x65 0x2C - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 - 0x68 0x65 0x20 0x73 0x69 0x6E 0x67 0x73 - 0x20 0x77 0x65 0x6C 0x6C 0x2E 0x20 0x20 - 0x49 0x6E 0x20 0x66 0x61 0x63 0x74 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x73 0x69 0x6E 0x67 - 0x73 0x2C 0x20 0x64 0x6F 0x67 0x73 0x20 - 0x68 0x6F 0x77 0x6C 0x20 0x69 0x6E 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x73 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x73 0x68 0x72 0x69 0x65 - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x72 0x75 - 0x6E 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x20 0x65 0x61 - 0x72 0x20 0x70 0x6C 0x75 0x67 0x73 0x2E - 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 - 0x68 0x61 0x73 0x20 0x61 0x20 0x76 0x69 - 0x73 0x69 0x6F 0x6E 0x20 0x6F 0x66 0x20 - 0x73 0x6F 0x6D 0x65 0x64 0x61 0x79 0x20 - 0x64 0x6F 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x61 0x6C 0x20 - 0x76 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 - 0x6F 0x66 0x20 0x44 0x72 0x61 0x63 0x75 - 0x6C 0x61 0x2E 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x44 0x72 0x61 0x63 0x75 0x6C - 0x61 0x3B 0x20 0x53 0x74 0x72 0x65 0x65 - 0x74 0x20 0x46 0x61 0x69 0x72 0x20 0x50 - 0x65 0x72 0x66 0x6F 0x72 0x6D 0x65 0x72 - 0x3B 0x20 0x53 0x74 0x75 0x64 0x65 0x6E - 0x74 -ENDCHUNK - - -ENDCHUNK -#line 6158 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_26= 0x00015227 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 6166 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001539e - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000153a0 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000153a1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001539f -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBF 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCA 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCC 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD2 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB1 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xBF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xCA 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCC 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x57 0x41 0x4E 0x44 0x41 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x57 0x61 0x6E - 0x64 0x61 0x20 0x69 0x73 0x20 0x61 0x20 - 0x66 0x65 0x6D 0x61 0x6C 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x20 0x69 0x6E 0x76 - 0x65 0x6E 0x74 0x65 0x64 0x20 0x62 0x79 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x67 0x72 0x65 0x65 - 0x6E 0x20 0x67 0x65 0x6E 0x69 0x75 0x73 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x73 0x68 0x65 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x68 0x75 - 0x6D 0x61 0x6E 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x64 0x6F - 0x20 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 - 0x68 0x75 0x6D 0x61 0x6E 0x73 0x20 0x63 - 0x61 0x6E 0x92 0x74 0x20 0x64 0x6F 0x2C - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x68 0x69 0x67 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 0x20 - 0x61 0x6C 0x6C 0x20 0x73 0x71 0x75 0x61 - 0x73 0x68 0x65 0x64 0x20 0x75 0x70 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x68 0x61 0x73 0x20 0x70 - 0x6F 0x77 0x65 0x72 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x57 0x69 0x6C 0x6C 0x79 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x6B 0x6E 0x6F 0x77 0x20 0x73 0x68 - 0x65 0x20 0x68 0x61 0x73 0x2E 0x20 0x0D - 0x0A 0x57 0x61 0x6E 0x64 0x61 0x20 0x69 - 0x73 0x20 0x67 0x72 0x61 0x74 0x65 0x66 - 0x75 0x6C 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x66 0x6F 0x72 0x20 - 0x70 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x73 0x68 0x65 0x27 0x73 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x74 0x6F - 0x20 0x73 0x74 0x72 0x69 0x6B 0x65 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x6E 0x20 0x68 - 0x65 0x72 0x20 0x6F 0x77 0x6E 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x61 0x6E 0x20 0x61 0x70 - 0x61 0x72 0x74 0x6D 0x65 0x6E 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x74 0x61 0x72 - 0x74 0x20 0x68 0x65 0x72 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x63 0x61 0x72 - 0x65 0x65 0x72 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x4D 0x65 0x63 0x68 0x61 - 0x6E 0x69 0x63 0x61 0x6C 0x20 0x54 0x6F - 0x79 0x3B 0x20 0x52 0x6F 0x62 0x6F 0x74 - 0x20 0x43 0x6F 0x70 0x3B 0x20 0x44 0x61 - 0x6E 0x63 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 6330 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_27= 0x00015228 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 6338 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000153a2 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000153a3 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000153a4 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000153a5 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x83 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x63 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x92 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x57 0x49 0x4C 0x4C 0x59 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x79 0x20 0x69 0x73 0x20 0x61 0x20 - 0x67 0x65 0x6E 0x69 0x75 0x73 0x2C 0x20 - 0x6E 0x6F 0x20 0x71 0x75 0x65 0x73 0x74 - 0x69 0x6F 0x6E 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x69 0x74 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x65 0x76 0x65 0x72 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x20 0x61 0x62 0x6F - 0x75 0x74 0x20 0x68 0x6F 0x77 0x20 0x73 - 0x74 0x72 0x61 0x6E 0x67 0x65 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x2E - 0x20 0x20 0x48 0x65 0x20 0x68 0x61 0x73 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x61 0x6E 0x74 0x20 0x74 0x68 0x69 0x6E - 0x67 0x73 0x2C 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x69 0x66 0x20 0x77 0x68 0x69 0x74 - 0x65 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 - 0x20 0x61 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x69 - 0x73 0x20 0x62 0x6C 0x61 0x63 0x6B 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x73 0x20 0x70 - 0x75 0x74 0x20 0x74 0x6F 0x67 0x65 0x74 - 0x68 0x65 0x72 0x3F 0x20 0x20 0x48 0x65 - 0x20 0x65 0x76 0x65 0x6E 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x73 0x6C 0x65 0x65 - 0x70 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x79 0x20 - 0x62 0x72 0x61 0x69 0x6E 0x2D 0x63 0x79 - 0x63 0x6C 0x65 0x73 0x2E 0x20 0x20 0x55 - 0x6E 0x66 0x6F 0x72 0x74 0x75 0x6E 0x61 - 0x74 0x65 0x6C 0x79 0x2C 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x69 0x73 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 - 0x6D 0x61 0x64 0x65 0x20 0x68 0x69 0x73 - 0x20 0x6E 0x6F 0x73 0x65 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x68 0x61 0x72 0x70 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x4D - 0x61 0x64 0x20 0x53 0x63 0x69 0x65 0x6E - 0x74 0x69 0x73 0x74 0x3B 0x20 0x50 0x61 - 0x72 0x6B 0x69 0x6E 0x67 0x20 0x56 0x61 - 0x6C 0x65 0x74 0x3B 0x20 0x4E 0x61 0x74 - 0x69 0x76 0x65 0x20 0x53 0x74 0x75 0x64 - 0x65 0x6E 0x74 -ENDCHUNK - - -ENDCHUNK -#line 6498 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_28= 0x0001522d - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 6506 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00015106 0x0001522d 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x42 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x20 0x7E 0x31 0x30 0x30 0x20 - 0x2F 0x20 0x34 0x30 -ENDCHUNK - - -ENDCHUNK -#line 6567 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_29= 0x00015229 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 6575 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000153a7 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000153a8 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000153a9 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000153a6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xDA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x5A 0x41 0x43 0x4B 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x5A 0x61 0x63 0x6B - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x72 0x61 - 0x69 0x73 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x4D 0x61 0x64 0x72 0x69 0x64 0x2C 0x20 - 0x53 0x70 0x61 0x69 0x6E 0x2E 0x20 0x4E - 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x6B 0x6E - 0x6F 0x77 0x73 0x20 0x68 0x69 0x73 0x20 - 0x72 0x65 0x61 0x6C 0x20 0x61 0x67 0x65 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x92 0x73 0x20 0x67 0x6F 0x74 0x74 0x61 - 0x20 0x62 0x65 0x20 0x61 0x74 0x20 0x6C - 0x65 0x61 0x73 0x74 0x20 0x34 0x30 0x2E - 0x20 0x48 0x65 0x20 0x63 0x6F 0x6D 0x65 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x20 0x66 0x61 0x6D 0x69 0x6C 0x79 0x20 - 0x6F 0x66 0x20 0x6F 0x75 0x74 0x73 0x74 - 0x61 0x6E 0x64 0x69 0x6E 0x67 0x20 0x6D - 0x61 0x74 0x61 0x64 0x6F 0x72 0x73 0x2E - 0x20 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x50 0x68 0x61 0x6E 0x74 0x6F 0x6D 0x3B - 0x20 0x56 0x69 0x6C 0x6C 0x69 0x61 0x6E - 0x3B 0x20 0x43 0x61 0x6D 0x6F 0x75 0x66 - 0x6C 0x61 0x67 0x65 0x64 0x20 0x48 0x75 - 0x6E 0x74 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 6708 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2A= 0x00015302 - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 6716 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x66 0x61 0x6E 0x63 0x79 0x20 - 0x64 0x61 0x6E 0x63 0x65 0x20 0x73 0x74 - 0x65 0x70 0x73 0x0D 0x0A 0x49 0x74 0x20 - 0x77 0x61 0x73 0x20 0x41 0x6C 0x65 0x78 - 0x61 0x6E 0x64 0x65 0x72 0x92 0x73 0x20 - 0x66 0x61 0x6E 0x63 0x79 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x73 0x74 0x65 0x70 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x67 - 0x6F 0x74 0x20 0x68 0x69 0x6D 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x62 0x75 - 0x73 0x69 0x6E 0x65 0x73 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x77 0x61 0x73 0x20 - 0x72 0x65 0x63 0x72 0x75 0x69 0x74 0x65 - 0x64 0x20 0x61 0x73 0x20 0x61 0x20 0x63 - 0x68 0x6F 0x72 0x65 0x6F 0x67 0x72 0x61 - 0x70 0x68 0x65 0x72 0x20 0x66 0x6F 0x72 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x76 - 0x69 0x64 0x65 0x6F 0x73 0x20 0x62 0x75 - 0x74 0x20 0x61 0x74 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x77 0x61 0x73 0x6E 0x92 - 0x74 0x20 0x63 0x6F 0x6E 0x73 0x69 0x64 - 0x65 0x72 0x65 0x64 0x20 0x67 0x6F 0x6F - 0x64 0x2D 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x6F 0x20 0x61 0x63 0x74 0x75 - 0x61 0x6C 0x6C 0x79 0x20 0x70 0x65 0x72 - 0x66 0x6F 0x72 0x6D 0x20 0x6F 0x6E 0x20 - 0x66 0x69 0x6C 0x6D 0x2E 0x20 0x20 0x44 - 0x75 0x72 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x66 0x69 0x6C 0x6D 0x69 0x6E - 0x67 0x20 0x6F 0x66 0x20 0x6F 0x6E 0x65 - 0x20 0x76 0x69 0x64 0x65 0x6F 0x2C 0x20 - 0x68 0x6F 0x77 0x65 0x76 0x65 0x72 0x2C - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x61 - 0x72 0x20 0x64 0x61 0x6E 0x63 0x65 0x72 - 0x20 0x63 0x61 0x75 0x67 0x68 0x74 0x20 - 0x6F 0x6E 0x20 0x66 0x69 0x72 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x65 0x72 0x73 0x6F - 0x6E 0x20 0x77 0x68 0x6F 0x20 0x6B 0x6E - 0x65 0x77 0x20 0x74 0x68 0x65 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x77 0x61 0x73 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x41 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x64 - 0x65 0x6F 0x20 0x77 0x61 0x73 0x20 0x73 - 0x68 0x6F 0x77 0x6E 0x20 0x6F 0x6E 0x20 - 0x54 0x56 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x65 0x6C 0x65 0x76 0x69 0x73 0x69 - 0x6F 0x6E 0x20 0x73 0x74 0x61 0x74 0x69 - 0x6F 0x6E 0x20 0x77 0x61 0x73 0x20 0x66 - 0x6C 0x6F 0x6F 0x64 0x65 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x66 0x61 0x6E 0x20 - 0x6D 0x61 0x69 0x6C 0x20 0x66 0x6F 0x72 - 0x20 0x41 0x6C 0x65 0x78 0x61 0x6E 0x64 - 0x65 0x72 0x21 0x20 0x20 0x48 0x65 0x20 - 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 0x61 - 0x6E 0x20 0x69 0x6E 0x73 0x74 0x61 0x6E - 0x74 0x20 0x73 0x74 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x73 0x20 0x73 - 0x6F 0x6F 0x6E 0x20 0x6D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6844 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2B= 0x00015303 - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 6852 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x62 0x72 0x61 0x72 - 0x69 0x61 0x6E 0x0D 0x0A 0x41 0x6C 0x65 - 0x78 0x61 0x6E 0x64 0x65 0x72 0x20 0x77 - 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x69 0x62 0x72 0x61 0x72 0x69 - 0x61 0x6E 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x6C 0x61 0x72 0x67 0x65 0x2C 0x20 0x63 - 0x72 0x65 0x65 0x70 0x79 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x41 0x73 0x20 - 0x68 0x65 0x20 0x73 0x69 0x74 0x73 0x20 - 0x61 0x74 0x20 0x68 0x69 0x73 0x20 0x64 - 0x65 0x73 0x6B 0x2C 0x20 0x61 0x20 0x67 - 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x75 0x6D 0x6D - 0x79 0x20 0x77 0x61 0x6C 0x6B 0x73 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x6C 0x6C 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x74 0x61 0x6E 0x64 - 0x73 0x20 0x62 0x65 0x73 0x69 0x64 0x65 - 0x20 0x68 0x69 0x6D 0x21 0x20 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x69 0x73 0x20 0x73 0x74 0x75 0x6E - 0x6E 0x65 0x64 0x20 0x61 0x73 0x20 0x68 - 0x65 0x20 0x6C 0x69 0x73 0x74 0x65 0x6E - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x92 0x73 - 0x20 0x77 0x61 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x6C 0x65 0x61 0x76 - 0x65 0x20 0x68 0x69 0x73 0x20 0x6A 0x6F - 0x62 0x20 0x61 0x73 0x20 0x61 0x20 0x6C - 0x69 0x62 0x72 0x61 0x72 0x69 0x61 0x6E - 0x20 0x6F 0x72 0x20 0x66 0x61 0x63 0x65 - 0x20 0x68 0x6F 0x72 0x72 0x69 0x62 0x6C - 0x65 0x20 0x64 0x69 0x73 0x61 0x73 0x74 - 0x65 0x72 0x2E 0x20 0x0D 0x0A 0x57 0x68 - 0x79 0x20 0x6D 0x75 0x73 0x74 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x6C 0x65 0x61 0x76 0x65 0x20 0x68 - 0x69 0x73 0x20 0x6A 0x6F 0x62 0x3F 0x20 - 0x20 0x49 0x73 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x78 0x63 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x6E 0x65 0x65 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x71 0x75 0x69 - 0x74 0x20 0x68 0x69 0x73 0x20 0x6A 0x6F - 0x62 0x20 0x61 0x6E 0x64 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x20 0x6C 0x69 0x76 0x69 0x6E 0x67 - 0x3F 0x20 0x20 0x57 0x68 0x79 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x4D 0x75 0x6D 0x6D 0x79 0x20 0x63 0x61 - 0x72 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 6971 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2C= 0x00015304 - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 6979 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x89 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x6F 0x64 0x20 0x43 - 0x72 0x69 0x74 0x69 0x63 0x0D 0x0A 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x61 0x20 0x66 0x6F - 0x6F 0x64 0x20 0x63 0x72 0x69 0x74 0x69 - 0x63 0x20 0x77 0x68 0x6F 0x20 0x77 0x61 - 0x6C 0x6B 0x73 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x72 - 0x65 0x73 0x74 0x61 0x75 0x72 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 0x76 - 0x69 0x65 0x77 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x6F 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x68 0x69 0x73 0x20 0x64 0x61 0x69 - 0x6C 0x79 0x20 0x6E 0x65 0x77 0x73 0x70 - 0x61 0x70 0x65 0x72 0x20 0x63 0x6F 0x6C - 0x75 0x6D 0x6E 0x2E 0x20 0x20 0x4E 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x65 0x65 - 0x6D 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x77 0x61 - 0x6C 0x6B 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6E 0x74 - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x61 0x6B 0x65 0x73 0x20 0x61 0x20 0x73 - 0x65 0x61 0x74 0x2E 0x20 0x20 0x41 0x20 - 0x77 0x61 0x69 0x74 0x65 0x72 0x20 0x65 - 0x76 0x65 0x6E 0x74 0x75 0x61 0x6C 0x6C - 0x79 0x20 0x63 0x6F 0x6D 0x65 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x63 0x68 - 0x65 0x6E 0x20 0x74 0x6F 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x68 0x69 0x73 0x20 0x6F - 0x72 0x64 0x65 0x72 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x73 0x74 0x6F 0x70 0x73 0x20 - 0x69 0x6E 0x20 0x73 0x68 0x6F 0x63 0x6B - 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x73 0x65 0x65 0x73 0x20 0x41 0x6C - 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 0x2E - 0x20 0x20 0x41 0x6C 0x65 0x78 0x61 0x6E - 0x64 0x65 0x72 0x20 0x69 0x73 0x20 0x65 - 0x71 0x75 0x61 0x6C 0x6C 0x79 0x20 0x73 - 0x74 0x75 0x6E 0x6E 0x65 0x64 0x3B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x69 0x74 - 0x65 0x72 0x20 0x6C 0x6F 0x6F 0x6B 0x73 - 0x20 0x65 0x78 0x61 0x63 0x74 0x6C 0x79 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x41 0x6C - 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 0x21 - 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x63 - 0x61 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x62 0x65 0x3F 0x20 0x20 0x57 0x68 0x6F - 0x20 0x69 0x73 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6C 0x6F 0x6F 0x6B 0x2D 0x61 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x6F 0x6F 0x6B - 0x65 0x64 0x20 0x75 0x70 0x20 0x74 0x68 - 0x69 0x73 0x20 0x73 0x69 0x6E 0x69 0x73 - 0x74 0x65 0x72 0x20 0x70 0x6C 0x6F 0x74 - 0x3F 0x0D 0x0A 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 7105 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2D= 0x00015305 - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 7113 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x41 0x6C 0x65 0x78 - 0x61 0x6E 0x64 0x65 0x72 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x6E 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x72 0x65 0x72 0x20 0x73 0x65 0x61 - 0x72 0x63 0x68 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x63 0x61 0x74 - 0x20 0x77 0x68 0x69 0x63 0x68 0x2C 0x20 - 0x6C 0x65 0x67 0x65 0x6E 0x64 0x20 0x68 - 0x61 0x73 0x20 0x69 0x74 0x2C 0x20 0x63 - 0x61 0x6E 0x20 0x74 0x65 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x75 0x74 0x75 - 0x72 0x65 0x21 0x20 0x20 0x41 0x6C 0x65 - 0x78 0x61 0x6E 0x64 0x65 0x72 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x68 0x65 0x20 0x68 0x61 - 0x73 0x20 0x66 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x6C 0x6C - 0x61 0x67 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x74 0x20 0x77 0x61 0x73 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x73 0x70 0x6F 0x74 0x74 - 0x65 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x68 0x69 0x73 0x20 0x72 0x69 0x76 0x61 - 0x6C 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x20 0x69 0x73 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x68 0x6F 0x74 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x61 0x69 0x6C 0x2E 0x20 0x0D 0x0A 0x44 - 0x6F 0x65 0x73 0x20 0x73 0x75 0x63 0x68 - 0x20 0x61 0x20 0x63 0x61 0x74 0x20 0x61 - 0x63 0x74 0x75 0x61 0x6C 0x6C 0x79 0x20 - 0x65 0x78 0x69 0x73 0x74 0x20 0x61 0x6E - 0x64 0x20 0x77 0x69 0x6C 0x6C 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7216 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2E= 0x00015306 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 7224 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x37 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x74 0x65 0x6C 0x65 0x67 0x72 - 0x61 0x6D 0x0D 0x0A 0x4F 0x6B 0x61 0x79 - 0x2C 0x20 0x73 0x6F 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x72 0x6F 0x63 0x6B - 0x20 0x73 0x74 0x61 0x72 0x20 0x69 0x6E - 0x20 0x49 0x74 0x61 0x6C 0x79 0x2C 0x20 - 0x6F 0x72 0x20 0x62 0x65 0x74 0x74 0x65 - 0x72 0x20 0x79 0x65 0x74 0x2C 0x20 0x61 - 0x20 0x62 0x69 0x67 0x67 0x65 0x72 0x2D - 0x74 0x68 0x61 0x6E 0x2D 0x6C 0x69 0x66 - 0x65 0x20 0x73 0x74 0x61 0x72 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x61 0x6C 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 - 0x20 0x68 0x69 0x73 0x20 0x61 0x67 0x65 - 0x20 0x6D 0x69 0x67 0x68 0x74 0x20 0x62 - 0x65 0x20 0x61 0x20 0x70 0x72 0x6F 0x62 - 0x6C 0x65 0x6D 0x2C 0x20 0x74 0x68 0x6F - 0x75 0x67 0x68 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x2C 0x20 0x65 0x69 0x74 0x68 0x65 0x72 - 0x20 0x73 0x6C 0x6F 0x77 0x6C 0x79 0x20 - 0x6F 0x72 0x20 0x71 0x75 0x69 0x63 0x6B - 0x6C 0x79 0x2C 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x69 0x6E - 0x67 0x20 0x73 0x74 0x75 0x64 0x69 0x6F - 0x73 0x20 0x61 0x6E 0x64 0x20 0x6C 0x69 - 0x73 0x74 0x65 0x6E 0x20 0x74 0x6F 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 0x69 - 0x6E 0x67 0x65 0x72 0x73 0x20 0x66 0x6F - 0x72 0x20 0x69 0x6E 0x73 0x70 0x69 0x72 - 0x61 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x20 0x68 0x65 0x20 0x73 0x68 0x72 0x75 - 0x6E 0x6B 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x76 0x65 0x72 0x79 0x20 - 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x61 0x6E - 0x64 0x20 0x63 0x72 0x61 0x77 0x6C 0x65 - 0x64 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x65 0x74 0x2E 0x20 0x20 0x4A 0x75 0x73 - 0x74 0x20 0x61 0x73 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x67 0x72 0x6F 0x77 - 0x69 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B - 0x2C 0x20 0x61 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x73 0x70 0x6F - 0x74 0x74 0x65 0x64 0x20 0x68 0x69 0x6D - 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 0x69 - 0x64 0x2C 0x20 0x93 0x57 0x65 0x20 0x67 - 0x6F 0x74 0x74 0x61 0x20 0x68 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x64 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x21 0x94 0x20 -ENDCHUNK - - -ENDCHUNK -#line 7347 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2F= 0x00015307 - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 7355 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x4F 0x70 0x65 0x72 0x61 0x20 - 0x53 0x69 0x6E 0x67 0x65 0x72 0x0D 0x0A - 0x53 0x69 0x6E 0x63 0x65 0x20 0x6F 0x70 - 0x65 0x72 0x61 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x61 0x20 0x73 0x74 0x6F 0x72 - 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x69 0x6E 0x63 0x65 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x68 0x61 - 0x73 0x20 0x6C 0x6F 0x74 0x73 0x20 0x6F - 0x66 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x6F 0x6C 0x64 0x20 0x73 0x63 0x61 - 0x72 0x79 0x20 0x73 0x74 0x6F 0x72 0x69 - 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 0x65 - 0x6C 0x6C 0x2C 0x20 0x68 0x65 0x92 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x73 0x74 0x61 0x72 0x20 0x61 0x73 - 0x20 0x61 0x6E 0x20 0x6F 0x70 0x65 0x72 - 0x61 0x20 0x73 0x69 0x6E 0x67 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x67 0x72 - 0x61 0x76 0x65 0x79 0x61 0x72 0x64 0x2E - 0x20 0x20 0x48 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x6B 0x6E 0x65 0x65 0x6C - 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 - 0x61 0x20 0x67 0x72 0x61 0x76 0x65 0x73 - 0x74 0x6F 0x6E 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x63 0x69 0x65 0x6E 0x74 0x20 0x6F 0x70 - 0x65 0x72 0x61 0x73 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6C 0x6F 0x77 0x2C 0x20 0x63 - 0x72 0x65 0x65 0x70 0x79 0x20 0x76 0x6F - 0x69 0x63 0x65 0x20 0x61 0x73 0x20 0x6B - 0x69 0x64 0x73 0x20 0x77 0x61 0x6C 0x6B - 0x65 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x61 0x76 0x65 0x79 0x61 0x72 0x64 - 0x20 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 - 0x74 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 0x73 - 0x20 0x68 0x65 0x20 0x67 0x65 0x74 0x73 - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x2C 0x20 0x68 0x65 0x20 0x68 0x65 0x61 - 0x72 0x73 0x20 0x61 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x20 0x73 0x69 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x73 0x6F - 0x6E 0x67 0x20 0x73 0x65 0x65 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x63 0x6F 0x6D 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x6E 0x65 0x61 0x72 0x62 0x79 0x20 0x67 - 0x72 0x61 0x76 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x73 0x69 0x6E 0x67 0x73 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x76 0x65 0x72 0x73 0x65 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x76 - 0x6F 0x69 0x63 0x65 0x20 0x73 0x69 0x6E - 0x67 0x73 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x77 0x69 0x74 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x76 0x65 - 0x72 0x73 0x65 0x2E 0x20 0x0D 0x0A 0x49 - 0x73 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x61 0x6E 0x63 0x69 0x65 0x6E 0x74 0x20 - 0x70 0x65 0x72 0x73 0x6F 0x6E 0x20 0x74 - 0x72 0x61 0x70 0x70 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x67 0x72 - 0x61 0x76 0x65 0x79 0x61 0x72 0x64 0x3F - 0x20 0x57 0x68 0x6F 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x69 0x74 0x20 0x62 0x65 - 0x3F 0x20 0x49 0x66 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x73 0x68 - 0x72 0x69 0x6E 0x6B 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x74 0x69 0x6E 0x79 0x20 - 0x73 0x69 0x7A 0x65 0x2C 0x20 0x63 0x61 - 0x6E 0x20 0x68 0x65 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x69 0x63 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x6C 0x65 0x61 0x73 0x65 0x20 - 0x69 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_30= 0x00015308 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 7503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x14 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x0D 0x0A 0x41 - 0x75 0x67 0x75 0x73 0x74 0x69 0x6E 0x20 - 0x73 0x65 0x65 0x73 0x20 0x68 0x69 0x6D - 0x73 0x65 0x6C 0x66 0x20 0x70 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x53 0x75 0x70 0x65 0x72 0x20 0x53 - 0x68 0x72 0x69 0x6E 0x6B 0x69 0x6E 0x67 - 0x20 0x43 0x6F 0x70 0x97 0x61 0x20 0x63 - 0x6F 0x70 0x20 0x77 0x68 0x6F 0x20 0x63 - 0x61 0x6E 0x20 0x73 0x68 0x72 0x69 0x6E - 0x6B 0x20 0x73 0x6F 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x61 0x74 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6E 0x79 0x77 - 0x68 0x65 0x72 0x65 0x2C 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x68 0x69 0x64 0x65 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x68 0x6F 0x75 0x6C 0x64 0x65 0x72 0x73 - 0x20 0x6F 0x66 0x20 0x63 0x72 0x69 0x6D - 0x69 0x6E 0x61 0x6C 0x73 0x20 0x74 0x6F - 0x20 0x6F 0x76 0x65 0x72 0x68 0x65 0x61 - 0x72 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x70 0x6C 0x61 0x6E 0x73 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x67 0x65 - 0x74 0x73 0x20 0x74 0x68 0x65 0x20 0x64 - 0x65 0x74 0x61 0x69 0x6C 0x73 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x6E 0x97 0x70 0x6F 0x6F 0x66 0x21 - 0x97 0x68 0x65 0x20 0x67 0x72 0x6F 0x77 - 0x73 0x20 0x71 0x75 0x69 0x63 0x6B 0x6C - 0x79 0x20 0x74 0x6F 0x20 0x6E 0x6F 0x72 - 0x6D 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 0x6F - 0x70 0x73 0x20 0x74 0x68 0x65 0x20 0x63 - 0x72 0x69 0x6D 0x69 0x6E 0x61 0x6C 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x74 0x72 0x61 0x63 0x6B 0x73 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x41 0x75 - 0x67 0x75 0x73 0x74 0x69 0x6E 0x20 0x69 - 0x73 0x20 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x6F 0x75 0x74 0x20 0x73 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 - 0x63 0x72 0x69 0x6D 0x69 0x6E 0x61 0x6C - 0x73 0x2C 0x20 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x64 0x20 0x63 0x61 0x6E 0x92 0x74 0x20 - 0x73 0x74 0x6F 0x70 0x2E 0x20 0x20 0x48 - 0x69 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x20 0x69 0x73 0x20 0x73 0x6D 0x61 0x6C - 0x6C 0x2C 0x20 0x62 0x75 0x74 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x69 0x6D 0x69 - 0x6E 0x61 0x6C 0x73 0x20 0x68 0x65 0x61 - 0x72 0x20 0x69 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x74 0x61 0x72 0x74 0x20 0x6C - 0x6F 0x6F 0x6B 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x20 0x20 0x41 - 0x75 0x67 0x75 0x73 0x74 0x69 0x6E 0x20 - 0x66 0x61 0x6C 0x6C 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x68 0x69 0x73 0x20 0x68 - 0x69 0x64 0x69 0x6E 0x67 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x6F 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x66 0x6C 0x6F - 0x6F 0x72 0x2E 0x20 0x20 0x41 0x20 0x63 - 0x72 0x69 0x6D 0x69 0x6E 0x61 0x6C 0x20 - 0x77 0x69 0x74 0x68 0x20 0x68 0x75 0x67 - 0x65 0x20 0x66 0x65 0x65 0x74 0x20 0x77 - 0x61 0x6C 0x6B 0x73 0x20 0x73 0x6C 0x6F - 0x77 0x6C 0x79 0x20 0x74 0x6F 0x77 0x61 - 0x72 0x64 0x20 0x41 0x75 0x67 0x75 0x73 - 0x74 0x69 0x6E 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x69 0x73 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x65 0x70 0x20 0x6F - 0x6E 0x20 0x68 0x69 0x6D 0x2E 0x20 0x0D - 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x41 0x75 0x67 0x75 0x73 0x74 - 0x69 0x6E 0x20 0x67 0x65 0x74 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x69 0x73 0x20 0x66 0x69 0x78 0x20 0x77 - 0x69 0x74 0x68 0x6F 0x75 0x74 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x66 0x6F 0x75 - 0x6E 0x64 0x20 0x6F 0x75 0x74 0x3F 0x20 - 0x20 0x49 0x66 0x20 0x68 0x65 0x20 0x73 - 0x75 0x64 0x64 0x65 0x6E 0x6C 0x79 0x20 - 0x67 0x72 0x6F 0x77 0x73 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x6E 0x6F - 0x72 0x6D 0x61 0x6C 0x20 0x73 0x69 0x7A - 0x65 0x2C 0x20 0x68 0x65 0x92 0x6C 0x6C - 0x20 0x62 0x6C 0x6F 0x77 0x20 0x68 0x69 - 0x73 0x20 0x64 0x69 0x73 0x67 0x75 0x69 - 0x73 0x65 0x2E 0x20 0x57 0x68 0x61 0x74 - 0x20 0x57 0x49 0x4C 0x4C 0x20 0x68 0x65 - 0x20 0x64 0x6F 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7663 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_31= 0x00015309 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 7671 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_82=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_82=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_82=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6D 0x65 0x20 0x53 - 0x61 0x66 0x65 0x74 0x79 0x20 0x49 0x6E - 0x73 0x70 0x65 0x63 0x74 0x6F 0x72 0x0D - 0x0A 0x41 0x75 0x67 0x75 0x73 0x74 0x69 - 0x6E 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x72 0x6F - 0x6C 0x65 0x20 0x69 0x6E 0x20 0x77 0x68 - 0x69 0x63 0x68 0x20 0x68 0x65 0x20 0x69 - 0x73 0x20 0x64 0x69 0x73 0x67 0x75 0x69 - 0x73 0x65 0x64 0x20 0x61 0x73 0x20 0x73 - 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x69 0x6E 0x73 0x70 0x65 - 0x63 0x74 0x73 0x20 0x68 0x6F 0x6D 0x65 - 0x73 0x20 0x66 0x6F 0x72 0x20 0x73 0x61 - 0x66 0x65 0x74 0x79 0x20 0x76 0x69 0x6F - 0x6C 0x61 0x74 0x69 0x6F 0x6E 0x73 0x2E - 0x20 0x20 0x48 0x65 0x27 0x64 0x20 0x67 - 0x65 0x74 0x20 0x74 0x6F 0x20 0x69 0x6E - 0x73 0x70 0x65 0x63 0x74 0x20 0x61 0x6C - 0x6C 0x20 0x6B 0x69 0x6E 0x64 0x73 0x20 - 0x6F 0x66 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x73 0x2C 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x68 0x75 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x62 0x69 - 0x67 0x2C 0x20 0x63 0x72 0x65 0x65 0x70 - 0x79 0x20 0x68 0x6F 0x75 0x73 0x65 0x73 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x68 - 0x69 0x73 0x20 0x72 0x6F 0x6C 0x65 0x20 - 0x61 0x73 0x20 0x69 0x6E 0x73 0x70 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x70 0x72 0x6F - 0x76 0x69 0x64 0x65 0x73 0x20 0x68 0x69 - 0x6D 0x20 0x77 0x69 0x74 0x68 0x20 0x61 - 0x20 0x64 0x69 0x73 0x67 0x75 0x69 0x73 - 0x65 0x20 0x66 0x6F 0x72 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x20 0x6D - 0x69 0x73 0x73 0x69 0x6F 0x6E 0x2C 0x20 - 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x61 0x20 0x6C 0x6F 0x73 0x74 0x20 0x63 - 0x61 0x74 0x2E 0x20 0x20 0x4E 0x6F 0x74 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 0x6E - 0x79 0x20 0x6C 0x6F 0x73 0x74 0x20 0x63 - 0x61 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x63 0x68 - 0x20 0x63 0x61 0x74 0x20 0x77 0x68 0x6F - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x61 0x20 0x66 0x61 0x6D 0x6F 0x75 - 0x73 0x20 0x63 0x68 0x61 0x69 0x6E 0x20 - 0x6F 0x66 0x20 0x6B 0x69 0x74 0x74 0x79 - 0x20 0x66 0x61 0x73 0x74 0x20 0x66 0x6F - 0x6F 0x64 0x20 0x63 0x61 0x66 0xE9 0x73 - 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x73 0x74 0x20 0x63 0x61 0x74 0x3F - 0x20 0x20 0x41 0x6E 0x64 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x69 0x6E 0x73 0x70 0x65 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x68 0x6F - 0x6D 0x65 0x73 0x20 0x67 0x69 0x76 0x65 - 0x20 0x41 0x75 0x67 0x75 0x73 0x74 0x69 - 0x6E 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x63 0x65 0x20 0x74 0x6F 0x20 0x66 0x75 - 0x6C 0x66 0x69 0x6C 0x6C 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x64 0x72 - 0x65 0x61 0x6D 0x97 0x68 0x69 0x73 0x20 - 0x64 0x65 0x73 0x69 0x72 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x61 0x6E 0x20 - 0x69 0x6E 0x74 0x65 0x72 0x69 0x6F 0x72 - 0x20 0x64 0x65 0x73 0x69 0x67 0x6E 0x65 - 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7802 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_32= 0x0001530a - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 7810 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x63 0x6F 0x6D 0x65 0x64 0x79 - 0x0D 0x0A 0x42 0x65 0x6C 0x6C 0x61 0x27 - 0x73 0x20 0x61 0x63 0x74 0x20 0x69 0x73 - 0x20 0x61 0x74 0x20 0x61 0x20 0x4D 0x65 - 0x78 0x69 0x63 0x61 0x6E 0x20 0x72 0x65 - 0x73 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x65 0x6C 0x73 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x69 0x72 0x65 0x20 - 0x61 0x20 0x74 0x65 0x61 0x63 0x68 0x65 - 0x72 0x20 0x77 0x68 0x6F 0x20 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x20 0x73 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x61 0x20 0x63 0x6F 0x6D - 0x65 0x64 0x69 0x61 0x6E 0x2E 0x20 0x20 - 0x41 0x74 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x73 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x73 0x63 0x61 0x72 0x65 0x64 0x20 - 0x6F 0x6E 0x20 0x73 0x74 0x61 0x67 0x65 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x66 0x69 0x67 0x75 - 0x72 0x65 0x64 0x20 0x73 0x68 0x65 0x20 - 0x68 0x61 0x64 0x20 0x6E 0x6F 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x63 - 0x75 0x74 0x20 0x6C 0x6F 0x6F 0x73 0x65 - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x65 0x20 0x6A 0x6F 0x6B 0x65 0x73 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x73 0x61 - 0x69 0x64 0x20 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x73 0x20 0x73 0x68 0x65 0x92 0x64 0x20 - 0x6E 0x65 0x76 0x65 0x72 0x20 0x73 0x61 - 0x69 0x64 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x66 0x75 0x6E 0x6E - 0x79 0x20 0x77 0x61 0x79 0x2E 0x20 0x20 - 0x41 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x68 0x65 - 0x72 0x20 0x61 0x63 0x74 0x2C 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x73 0x20 0x62 0x6F 0x6C 0x64 - 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x61 0x79 0x73 0x2C 0x20 0x93 0x54 0x68 - 0x61 0x6E 0x6B 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x6C 0x6C 0x20 0x76 0x65 0x72 0x79 - 0x2C 0x20 0x76 0x65 0x72 0x79 0x20 0x6D - 0x75 0x63 0x68 0x21 0x22 0x20 0x50 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x6C 0x6F 0x76 - 0x65 0x20 0x68 0x65 0x72 0x2E 0x0D 0x0A - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x2C - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x92 0x73 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x73 0x2C - 0x20 0x73 0x61 0x77 0x20 0x68 0x65 0x72 - 0x20 0x61 0x63 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x61 0x72 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x63 0x6F 0x6D 0x65 0x64 0x79 0x2E 0x20 - 0x4E 0x6F 0x77 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 - 0x61 0x76 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x68 0x65 0x72 0x20 - 0x70 0x61 0x72 0x65 0x6E 0x74 0x73 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x68 0x65 - 0x72 0x20 0x73 0x65 0x63 0x72 0x65 0x74 - 0x20 0x63 0x61 0x72 0x65 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7943 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_33= 0x0001530b - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 7951 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x64 0x61 0x6D 0x65 - 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x0D - 0x0A 0x57 0x69 0x74 0x68 0x20 0x68 0x65 - 0x72 0x20 0x77 0x69 0x74 0x63 0x68 0x20 - 0x6C 0x61 0x75 0x67 0x68 0x2C 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x66 0x69 0x6E 0x65 0x20 0x68 - 0x6F 0x73 0x74 0x65 0x73 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x61 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x73 0x65 0x65 0x20 0x69 0x74 - 0x20 0x61 0x6C 0x6C 0x20 0x6E 0x6F 0x77 - 0x97 0x73 0x68 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x61 0x76 0x65 0x20 - 0x66 0x61 0x6E 0x67 0x73 0x20 0x61 0x6E - 0x64 0x20 0x67 0x72 0x65 0x65 0x74 0x20 - 0x65 0x61 0x63 0x68 0x20 0x6B 0x69 0x64 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x6F 0x72 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x65 0x72 0x20 0x73 0x70 - 0x6F 0x6F 0x6B 0x79 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x2E 0x20 0x20 0x54 0x65 0x6C - 0x6C 0x69 0x6E 0x67 0x20 0x61 0x77 0x66 - 0x75 0x6C 0x20 0x6A 0x6F 0x6B 0x65 0x73 - 0x2C 0x20 0x73 0x68 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x65 0x61 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x74 0x63 0x68 0x65 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x63 - 0x75 0x70 0x20 0x6F 0x66 0x20 0x68 0x65 - 0x72 0x20 0x68 0x6F 0x74 0x2C 0x20 0x73 - 0x75 0x67 0x61 0x72 0x79 0x2C 0x20 0x6C - 0x65 0x6D 0x6F 0x6E 0x61 0x64 0x65 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x72 0x61 0x74 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x64 0x72 0x6F 0x70 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x62 0x6F 0x76 0x65 0x2C - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x74 0x20 0x70 0x6F 0x74 0x20 - 0x6F 0x66 0x20 0x6C 0x65 0x6D 0x6F 0x6E - 0x61 0x64 0x65 0x2E 0x20 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x68 0x6F 0x77 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x73 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x74 0x68 0x65 - 0x20 0x72 0x61 0x74 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x74 0x3F 0x20 0x20 0x57 0x6F - 0x75 0x6C 0x64 0x20 0x74 0x68 0x65 0x79 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x74 0x6F - 0x20 0x68 0x61 0x76 0x65 0x20 0x61 0x20 - 0x63 0x65 0x72 0x65 0x6D 0x6F 0x6E 0x79 - 0x20 0x6F 0x66 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x6F 0x6E 0x67 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x76 0x65 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6F 0x64 - 0x6F 0x6F 0x20 0x6D 0x61 0x6E 0x20 0x70 - 0x65 0x72 0x66 0x6F 0x72 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x72 0x69 0x74 0x75 0x61 - 0x6C 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8078 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_34= 0x0001530c - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 8086 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCD 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x46 0x61 0x69 0x72 0x20 0x45 0x6E - 0x74 0x65 0x72 0x74 0x61 0x69 0x6E 0x65 - 0x72 0x0D 0x0A 0x4A 0x75 0x73 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x66 0x75 0x6E 0x2C - 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 - 0x72 0x20 0x61 0x73 0x20 0x61 0x20 0x73 - 0x74 0x72 0x65 0x65 0x74 0x20 0x66 0x61 - 0x69 0x72 0x20 0x65 0x6E 0x74 0x65 0x72 - 0x74 0x61 0x69 0x6E 0x65 0x72 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x27 0x64 0x20 0x68 - 0x61 0x76 0x65 0x20 0x68 0x65 0x72 0x20 - 0x6F 0x77 0x6E 0x20 0x73 0x70 0x6F 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x62 0x69 0x67 0x20 0x63 - 0x6C 0x6F 0x63 0x6B 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x69 0x6E 0x74 0x65 - 0x72 0x73 0x65 0x63 0x74 0x69 0x6F 0x6E - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6F 0x6B - 0x65 0x20 0x66 0x75 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x73 0x68 0x65 0x20 - 0x73 0x65 0x65 0x73 0x20 0x70 0x61 0x73 - 0x73 0x69 0x6E 0x67 0x20 0x62 0x79 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x6F 0x6E - 0x65 0x20 0x73 0x6D 0x69 0x6C 0x65 0x2C - 0x20 0x65 0x76 0x65 0x6E 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x77 0x68 0x6F - 0x20 0x61 0x72 0x65 0x20 0x61 0x6E 0x67 - 0x72 0x79 0x20 0x6F 0x72 0x20 0x74 0x6F - 0x6F 0x20 0x62 0x75 0x73 0x79 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x68 0x61 0x70 - 0x70 0x79 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x68 0x61 0x76 0x65 0x20 - 0x73 0x70 0x65 0x63 0x69 0x61 0x6C 0x20 - 0x70 0x6F 0x77 0x65 0x72 0x73 0x97 0x73 - 0x6F 0x6D 0x65 0x74 0x69 0x6D 0x65 0x73 - 0x20 0x73 0x68 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x73 0x65 0x65 0x20 0x70 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x63 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x72 0x65 - 0x73 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 - 0x20 0x61 0x66 0x74 0x65 0x72 0x20 0x65 - 0x61 0x74 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x6F 0x20 0x6D 0x75 0x63 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x69 0x6E 0x67 0x2C 0x20 0x93 0x74 0x68 - 0x65 0x72 0x65 0x20 0x69 0x73 0x20 0x6E - 0x6F 0x20 0x77 0x61 0x79 0x20 0x49 0x20 - 0x63 0x61 0x6E 0x20 0x77 0x61 0x6C 0x6B - 0x20 0x62 0x61 0x63 0x6B 0x20 0x68 0x6F - 0x6D 0x65 0x2E 0x2E 0x2E 0x49 0x20 0x77 - 0x69 0x73 0x68 0x20 0x49 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x67 0x65 0x74 0x20 0x61 0x20 0x63 - 0x61 0x62 0x20 0x61 0x6E 0x64 0x20 0x67 - 0x65 0x74 0x20 0x68 0x6F 0x6D 0x65 0x2E - 0x2E 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 - 0x69 0x72 0x20 0x77 0x69 0x73 0x68 0x65 - 0x73 0x20 0x63 0x6F 0x6D 0x65 0x20 0x74 - 0x72 0x75 0x65 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 - 0x74 0x68 0x65 0x79 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x61 0x20 0x63 0x61 0x62 0x2E - 0x20 0x20 0x45 0x76 0x65 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x73 0x74 0x20 0x63 0x72 0x6F 0x77 0x64 - 0x65 0x64 0x20 0x73 0x74 0x72 0x65 0x65 - 0x74 0x73 0x2C 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x69 0x73 0x20 0x61 0x62 0x6C - 0x65 0x20 0x74 0x6F 0x20 0x68 0x61 0x69 - 0x6C 0x20 0x61 0x20 0x74 0x61 0x78 0x69 - 0x97 0x6A 0x75 0x73 0x74 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x74 0x68 0x61 0x74 0x21 - 0x20 0x20 0x42 0x75 0x74 0x20 0x77 0x68 - 0x61 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 - 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x6E 0x65 0x65 0x64 0x73 0x20 0x61 0x20 - 0x63 0x61 0x62 0x3F 0x20 0x20 0x43 0x61 - 0x6E 0x20 0x73 0x68 0x65 0x20 0x67 0x65 - 0x74 0x20 0x6F 0x6E 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 8237 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_35= 0x0001530d - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 8245 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x0D 0x0A 0x42 0x65 0x6C 0x6C 0x61 - 0x20 0x6C 0x69 0x6B 0x65 0x73 0x20 0x68 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 0x77 - 0x6F 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x6C 0x69 0x76 0x65 - 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 0x74 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6E 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 - 0x64 0x6F 0x75 0x62 0x6C 0x65 0x20 0x6C - 0x69 0x66 0x65 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 0x6E - 0x20 0x6F 0x72 0x64 0x69 0x6E 0x61 0x72 - 0x79 0x20 0x74 0x65 0x61 0x63 0x68 0x65 - 0x72 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 - 0x6F 0x6E 0x20 0x76 0x61 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x20 0x77 0x69 0x74 0x68 - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x74 0x65 0x61 0x63 - 0x68 0x65 0x72 0x73 0x2E 0x20 0x20 0x4F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x69 0x70 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x6E 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x73 0x20 0x74 0x6F 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x20 0x61 0x6E - 0x64 0x20 0x65 0x76 0x65 0x72 0x79 0x6F - 0x6E 0x65 0x20 0x70 0x61 0x6E 0x69 0x63 - 0x73 0x2E 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x74 - 0x65 0x61 0x63 0x68 0x65 0x72 0x73 0x20 - 0x66 0x61 0x69 0x6E 0x74 0x73 0x97 0x62 - 0x75 0x74 0x20 0x6E 0x6F 0x74 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 - 0x73 0x65 0x63 0x6F 0x6E 0x64 0x2C 0x20 - 0x72 0x75 0x6E 0x73 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x6F 0x6E - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x75 0x64 0x64 - 0x65 0x6E 0x6C 0x79 0x20 0x73 0x74 0x61 - 0x72 0x74 0x73 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x69 0x6E 0x67 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x73 0x20 0x65 0x6E 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x61 0x74 0x20 - 0x73 0x68 0x65 0x20 0x64 0x69 0x73 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x2C 0x20 - 0x63 0x72 0x61 0x77 0x6C 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x67 0x69 0x6E 0x65 0x2C 0x20 - 0x66 0x69 0x78 0x65 0x73 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x74 0x6F 0x70 0x73 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x63 - 0x72 0x61 0x73 0x68 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x74 0x68 - 0x65 0x6E 0x2C 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x73 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x69 0x73 0x20 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C - 0x20 0x69 0x74 0x20 0x68 0x69 0x74 0x73 - 0x20 0x61 0x6E 0x20 0x61 0x69 0x72 0x20 - 0x70 0x6F 0x63 0x6B 0x65 0x74 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x77 0x68 0x6F 0x6C 0x65 0x20 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x6A 0x75 0x6D 0x70 - 0x73 0x2E 0x20 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x73 0x74 0x6F 0x70 0x73 0x20 - 0x67 0x72 0x6F 0x77 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x64 0x20 0x69 0x73 0x20 0x73 - 0x74 0x75 0x63 0x6B 0x2E 0x20 0x20 0x48 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x42 0x65 0x6C 0x6C 0x61 0x20 0x67 0x65 - 0x74 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C - 0x20 0x73 0x69 0x7A 0x65 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8392 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_36= 0x0001530e - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 8400 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x63 0x68 0x65 0x6D 0x69 0x73 - 0x74 0x72 0x79 0x0D 0x0A 0x45 0x76 0x65 - 0x6E 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 - 0x20 0x42 0x65 0x6E 0x6E 0x79 0x20 0x77 - 0x61 0x73 0x20 0x69 0x6E 0x6A 0x75 0x72 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x2C 0x20 0x68 0x65 0x20 - 0x73 0x74 0x69 0x6C 0x6C 0x20 0x6C 0x6F - 0x76 0x65 0x64 0x20 0x63 0x68 0x65 0x6D - 0x69 0x73 0x74 0x72 0x79 0x2E 0x20 0x20 - 0x42 0x75 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x6F 0x6C 0x64 0x65 0x72 0x2C 0x20 0x68 - 0x65 0x20 0x68 0x61 0x64 0x20 0x74 0x6F - 0x20 0x65 0x61 0x72 0x6E 0x20 0x61 0x20 - 0x6C 0x69 0x76 0x69 0x6E 0x67 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x65 0x64 0x20 0x6D 0x69 - 0x78 0x69 0x6E 0x67 0x20 0x70 0x65 0x72 - 0x66 0x75 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x62 0x61 0x73 0x65 - 0x6D 0x65 0x6E 0x74 0x20 0x6C 0x61 0x62 - 0x6F 0x72 0x61 0x74 0x6F 0x72 0x79 0x2E - 0x20 0x20 0x48 0x69 0x73 0x20 0x70 0x65 - 0x72 0x66 0x75 0x6D 0x65 0x20 0x77 0x61 - 0x73 0x20 0x61 0x20 0x68 0x69 0x74 0x2E - 0x20 0x20 0x41 0x20 0x66 0x61 0x6D 0x6F - 0x75 0x73 0x20 0x61 0x63 0x74 0x72 0x65 - 0x73 0x73 0x20 0x63 0x61 0x6C 0x6C 0x65 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x68 0x69 0x6D 0x20 - 0x74 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x70 0x65 0x72 0x66 - 0x75 0x6D 0x65 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 - 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x6D 0x65 0x74 0x20 - 0x42 0x65 0x6E 0x6E 0x79 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x74 0x68 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x68 0x69 0x73 0x20 0x75 - 0x6E 0x69 0x71 0x75 0x65 0x20 0x6C 0x6F - 0x6F 0x6B 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x70 0x65 0x72 0x66 - 0x65 0x63 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x68 0x65 0x72 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 - 0x20 0x42 0x65 0x6E 0x6E 0x79 0x20 0x77 - 0x61 0x73 0x6E 0x27 0x74 0x20 0x73 0x75 - 0x72 0x65 0x20 0x74 0x68 0x61 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6E 0x67 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x6D 0x6F 0x72 0x65 0x20 0x66 0x75 0x6E - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x69 0x6E 0x67 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x20 0x73 0x61 0x69 0x64 0x20 0x68 0x65 - 0x27 0x64 0x20 0x74 0x72 0x79 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8521 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_37= 0x0001530f - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 8529 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x14 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x63 0x6B 0x2D 0x74 - 0x6F 0x2D 0x4C 0x69 0x66 0x65 0x20 0x4D - 0x75 0x6D 0x6D 0x79 0x0D 0x0A 0x42 0x65 - 0x6E 0x6E 0x79 0x20 0x62 0x65 0x6C 0x69 - 0x65 0x76 0x65 0x73 0x20 0x6E 0x6F 0x20 - 0x6F 0x6E 0x65 0x20 0x77 0x61 0x73 0x20 - 0x62 0x65 0x74 0x74 0x65 0x72 0x20 0x61 - 0x74 0x20 0x63 0x68 0x65 0x6D 0x69 0x73 - 0x74 0x72 0x79 0x20 0x74 0x68 0x61 0x6E - 0x20 0x74 0x68 0x65 0x20 0x61 0x6E 0x63 - 0x69 0x65 0x6E 0x74 0x20 0x45 0x67 0x79 - 0x70 0x74 0x69 0x61 0x6E 0x73 0x2E 0x20 - 0x20 0x49 0x74 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x61 0x20 0x6C - 0x6F 0x74 0x20 0x6F 0x66 0x20 0x66 0x75 - 0x6E 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 - 0x72 0x20 0x61 0x73 0x20 0x61 0x20 0x70 - 0x72 0x65 0x73 0x65 0x72 0x76 0x65 0x64 - 0x20 0x45 0x67 0x79 0x70 0x74 0x69 0x61 - 0x6E 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x6C 0x69 0x66 0x65 0x2E 0x20 0x20 - 0x48 0x65 0x27 0x73 0x20 0x61 0x6C 0x72 - 0x65 0x61 0x64 0x79 0x20 0x64 0x72 0x65 - 0x73 0x73 0x65 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x70 0x61 0x72 - 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x65 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x65 0x73 0x20 0x64 0x6F 0x77 0x6E - 0x2E 0x20 0x20 0x48 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x77 0x61 0x6C 0x6B 0x20 0x73 - 0x6C 0x6F 0x77 0x6C 0x79 0x2C 0x20 0x66 - 0x61 0x69 0x6E 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x66 0x61 0x6C 0x6C 0x20 0x64 - 0x6F 0x77 0x6E 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x6F 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x66 0x61 0x6C 0x6C 0x73 0x20 0x64 - 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x75 0x70 0x20 0x71 0x75 0x69 - 0x63 0x6B 0x6C 0x79 0x20 0x74 0x6F 0x20 - 0x73 0x63 0x61 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x6B - 0x69 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8638 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_38= 0x00015310 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 8646 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x6A 0x75 0x72 0x65 - 0x64 0x20 0x56 0x69 0x63 0x74 0x69 0x6D - 0x0D 0x0A 0x41 0x20 0x63 0x68 0x65 0x6D - 0x69 0x73 0x74 0x72 0x79 0x20 0x74 0x65 - 0x61 0x63 0x68 0x65 0x72 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x65 0x64 0x20 - 0x42 0x65 0x6E 0x6E 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x70 - 0x65 0x72 0x73 0x6F 0x6E 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6C 0x6C 0x20 0x69 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x20 0x77 0x65 - 0x6E 0x74 0x20 0x62 0x61 0x64 0x6C 0x79 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x66 - 0x69 0x72 0x73 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x73 0x68 0x6F 0x77 0x20 0x61 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x64 0x6F 0x69 0x6E - 0x67 0x20 0x61 0x20 0x64 0x61 0x72 0x69 - 0x6E 0x67 0x20 0x66 0x61 0x6C 0x6C 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 0x70 - 0x6C 0x61 0x6E 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x73 0x65 - 0x63 0x6F 0x6E 0x64 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x68 0x61 0x76 0x65 0x20 0x42 0x65 - 0x6E 0x6E 0x79 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x62 0x61 0x6E 0x64 0x61 - 0x67 0x65 0x73 0x2C 0x20 0x77 0x61 0x6C - 0x6B 0x69 0x6E 0x67 0x20 0x73 0x6C 0x6F - 0x77 0x6C 0x79 0x2C 0x20 0x6F 0x62 0x76 - 0x69 0x6F 0x75 0x73 0x6C 0x79 0x20 0x69 - 0x6E 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x70 0x61 0x69 0x6E 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x65 0x74 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x6A 0x75 0x69 0x63 0x69 0x65 0x72 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x6E 0x6F 0x62 - 0x6F 0x64 0x79 0x20 0x72 0x65 0x61 0x6C - 0x69 0x7A 0x65 0x64 0x20 0x74 0x68 0x61 - 0x74 0x20 0x42 0x65 0x6E 0x6E 0x79 0x20 - 0x77 0x61 0x73 0x20 0x6E 0x6F 0x74 0x20 - 0x74 0x68 0x65 0x20 0x69 0x6E 0x6A 0x75 - 0x72 0x65 0x64 0x20 0x73 0x74 0x75 0x6E - 0x74 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x61 0x74 0x20 0x61 0x6C 0x6C 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x6E 0x20 0x69 - 0x6E 0x6E 0x6F 0x63 0x65 0x6E 0x74 0x20 - 0x62 0x79 0x73 0x74 0x61 0x6E 0x64 0x65 - 0x72 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 - 0x62 0x61 0x6E 0x64 0x61 0x67 0x65 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x6F 0x6E 0x65 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x20 0x68 0x65 0x20 0x69 0x73 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x63 0x6F - 0x76 0x65 0x72 0x69 0x6E 0x67 0x20 0x64 - 0x61 0x72 0x65 0x64 0x65 0x76 0x69 0x6C - 0x20 0x73 0x74 0x75 0x6E 0x74 0x20 0x6D - 0x61 0x6E 0x21 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x74 0x68 0x65 0x6E 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x69 0x73 0x20 - 0x74 0x68 0x65 0x20 0x69 0x6E 0x6A 0x75 - 0x72 0x65 0x64 0x20 0x64 0x61 0x72 0x65 - 0x64 0x65 0x76 0x69 0x6C 0x3F 0x20 0x20 - 0x43 0x61 0x6E 0x20 0x42 0x65 0x6E 0x6E - 0x79 0x20 0x75 0x73 0x65 0x20 0x68 0x69 - 0x73 0x20 0x73 0x6B 0x69 0x6C 0x6C 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x69 0x78 0x20 - 0x61 0x20 0x74 0x72 0x75 0x74 0x68 0x20 - 0x73 0x65 0x72 0x75 0x6D 0x20 0x74 0x68 - 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x68 0x69 0x6D - 0x20 0x72 0x65 0x76 0x65 0x61 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x61 0x6C - 0x20 0x76 0x69 0x63 0x74 0x69 0x6D 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 8787 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_39= 0x00015311 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 8795 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x63 0x69 0x65 0x6E - 0x74 0x20 0x4D 0x75 0x6D 0x6D 0x79 0x0D - 0x0A 0x49 0x74 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x6F 0x74 - 0x61 0x6C 0x6C 0x79 0x20 0x66 0x75 0x6E - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x6D 0x75 0x6D 0x6D 0x79 - 0x97 0x69 0x6E 0x20 0x61 0x6E 0x63 0x69 - 0x65 0x6E 0x74 0x20 0x45 0x67 0x79 0x70 - 0x74 0x21 0x20 0x20 0x42 0x65 0x6E 0x6E - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x65 0x73 0x20 0x64 0x6F 0x77 0x6E - 0x2C 0x20 0x68 0x65 0x20 0x63 0x61 0x6E - 0x20 0x66 0x61 0x69 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x66 0x61 0x6C 0x6C 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x68 0x65 0x20 0x63 0x61 0x6E - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x6E 0x20 0x45 - 0x67 0x79 0x70 0x74 0x69 0x61 0x6E 0x2E - 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x69 0x66 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x6F 0x73 0x65 0x20 0x45 0x67 0x79 0x70 - 0x74 0x69 0x61 0x6E 0x20 0x67 0x72 0x61 - 0x76 0x65 0x20 0x72 0x6F 0x62 0x62 0x65 - 0x72 0x73 0x20 0x73 0x70 0x6F 0x74 0x74 - 0x65 0x64 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x6F 0x6F 0x6B 0x20 - 0x68 0x69 0x6D 0x20 0x62 0x61 0x63 0x6B - 0x20 0x74 0x6F 0x20 0x45 0x67 0x79 0x70 - 0x74 0x3F 0x20 0x20 0x48 0x6F 0x77 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x42 0x65 - 0x6E 0x6E 0x79 0x20 0x67 0x65 0x74 0x20 - 0x61 0x77 0x61 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8892 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3A= 0x00015312 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 8900 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x64 0x61 0x6E 0x63 0x65 0x0D - 0x0A 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x62 0x65 0x63 0x6F 0x6D 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x63 0x6F 0x6F 0x6B 0x2C - 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 0x66 - 0x6F 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x20 - 0x66 0x61 0x6D 0x69 0x6C 0x79 0x20 0x74 - 0x72 0x61 0x64 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x77 0x6F 0x72 - 0x6B 0x65 0x64 0x20 0x61 0x73 0x20 0x61 - 0x20 0x66 0x69 0x73 0x68 0x65 0x72 0x6D - 0x61 0x6E 0x2E 0x20 0x20 0x48 0x65 0x27 - 0x73 0x20 0x73 0x74 0x72 0x6F 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x6D 0x75 0x73 - 0x63 0x75 0x6C 0x61 0x72 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x68 0x61 0x75 0x6C 0x20 0x69 0x6E - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x62 0x69 - 0x67 0x20 0x63 0x61 0x74 0x63 0x68 0x65 - 0x73 0x2E 0x20 0x4F 0x6E 0x65 0x20 0x64 - 0x61 0x79 0x20 0x42 0x69 0x6C 0x6C 0x79 - 0x20 0x77 0x61 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x65 0x63 0x6B - 0x2C 0x20 0x77 0x68 0x69 0x63 0x68 0x20 - 0x68 0x61 0x70 0x70 0x65 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 0x75 - 0x6E 0x75 0x73 0x75 0x61 0x6C 0x6C 0x79 - 0x20 0x73 0x6C 0x69 0x70 0x70 0x65 0x72 - 0x79 0x2E 0x20 0x48 0x65 0x20 0x6C 0x6F - 0x73 0x74 0x20 0x63 0x6F 0x6E 0x74 0x72 - 0x6F 0x6C 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x73 0x20 0x6C 0x65 0x67 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x68 0x69 0x6C - 0x65 0x20 0x68 0x65 0x20 0x74 0x72 0x69 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x63 0x61 - 0x74 0x63 0x68 0x20 0x68 0x69 0x73 0x20 - 0x62 0x61 0x6C 0x61 0x6E 0x63 0x65 0x2C - 0x20 0x68 0x69 0x73 0x20 0x66 0x61 0x6D - 0x69 0x6C 0x79 0x20 0x73 0x74 0x6F 0x70 - 0x70 0x65 0x64 0x20 0x74 0x6F 0x20 0x77 - 0x61 0x74 0x63 0x68 0x20 0x68 0x69 0x6D - 0x2E 0x20 0x20 0x4F 0x74 0x68 0x65 0x72 - 0x20 0x66 0x69 0x73 0x68 0x65 0x72 0x6D - 0x65 0x6E 0x20 0x64 0x72 0x69 0x66 0x74 - 0x69 0x6E 0x67 0x20 0x62 0x79 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x74 0x6F 0x70 - 0x70 0x65 0x64 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x61 0x72 0x65 0x2E 0x20 0x20 0x49 - 0x74 0x20 0x77 0x61 0x73 0x20 0x61 0x20 - 0x6D 0x61 0x67 0x6E 0x69 0x66 0x69 0x63 - 0x65 0x6E 0x74 0x20 0x22 0x64 0x61 0x6E - 0x63 0x65 0x21 0x22 0x20 0x41 0x66 0x74 - 0x65 0x72 0x20 0x61 0x20 0x67 0x72 0x61 - 0x6E 0x64 0x20 0x66 0x69 0x6E 0x61 0x6C - 0x65 0x2C 0x20 0x42 0x69 0x6C 0x6C 0x79 - 0x27 0x73 0x20 0x66 0x61 0x74 0x68 0x65 - 0x72 0x20 0x73 0x61 0x69 0x64 0x20 0x22 - 0x53 0x6F 0x6E 0x2C 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x6E 0x6F 0x20 0x66 - 0x69 0x73 0x68 0x65 0x72 0x6D 0x61 0x6E - 0x97 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x61 0x20 0x64 0x61 0x6E 0x63 0x65 0x72 - 0x2E 0x22 0x20 0x0D 0x0A 0x42 0x69 0x6C - 0x6C 0x79 0x20 0x64 0x65 0x63 0x69 0x64 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x6F 0x20 0x54 0x6F - 0x72 0x6F 0x6E 0x74 0x6F 0x20 0x74 0x6F - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x20 0x73 0x63 0x68 - 0x6F 0x6F 0x6C 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x64 0x69 0x73 0x63 0x6F 0x76 0x65 - 0x72 0x65 0x64 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 0x66 - 0x6C 0x6F 0x6F 0x72 0x20 0x77 0x61 0x73 - 0x20 0x75 0x6E 0x75 0x73 0x75 0x61 0x6C - 0x6C 0x79 0x20 0x73 0x6C 0x69 0x70 0x70 - 0x65 0x72 0x79 0x20 0x6F 0x6E 0x65 0x20 - 0x65 0x76 0x65 0x6E 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 0x73 - 0x20 0x68 0x61 0x76 0x69 0x6E 0x67 0x20 - 0x64 0x69 0x6E 0x6E 0x65 0x72 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x74 0x63 - 0x68 0x65 0x64 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x20 0x70 0x72 0x65 0x70 0x61 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x73 0x68 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x6F 0x20 0x68 0x69 0x73 0x20 0x22 0x64 - 0x61 0x6E 0x63 0x65 0x2E 0x22 0x20 0x20 - 0x4E 0x6F 0x77 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x27 0x73 0x20 0x61 0x20 0x73 0x74 - 0x61 0x72 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9057 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3B= 0x00015313 - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 9065 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x47 0x65 0x6E 0x65 0x72 0x61 - 0x6C 0x0D 0x0A 0x42 0x69 0x6C 0x6C 0x79 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 - 0x68 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x77 0x65 0x73 0x6F 0x6D 0x65 0x20 0x22 - 0x67 0x65 0x6E 0x65 0x72 0x61 0x6C 0x20 - 0x77 0x69 0x74 0x68 0x20 0x61 0x6E 0x20 - 0x61 0x74 0x74 0x69 0x74 0x75 0x64 0x65 - 0x22 0x20 0x69 0x6E 0x20 0x61 0x20 0x74 - 0x68 0x72 0x69 0x6C 0x6C 0x65 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 - 0x53 0x68 0x6F 0x72 0x74 0x20 0x61 0x6E - 0x64 0x20 0x73 0x74 0x72 0x6F 0x6E 0x67 - 0x20 0x61 0x73 0x20 0x61 0x20 0x74 0x61 - 0x6E 0x6B 0x2C 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x77 0x61 0x6C 0x6B 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x73 0x6C 0x6F 0x77 - 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x74 0x66 0x75 - 0x6C 0x6C 0x79 0x20 0x77 0x68 0x69 0x6C - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x61 - 0x74 0x74 0x61 0x63 0x6B 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x68 0x69 0x73 0x20 0x74 0x72 0x6F 0x6F - 0x70 0x73 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x77 0x69 0x6E 0x20 0x61 0x6E 0x20 - 0x69 0x6D 0x70 0x6F 0x72 0x74 0x61 0x6E - 0x74 0x20 0x62 0x61 0x74 0x74 0x6C 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x66 0x61 - 0x72 0x20 0x61 0x77 0x61 0x79 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x4E 0x6F 0x72 0x74 0x68 0x20 - 0x41 0x66 0x72 0x69 0x63 0x61 0x2E 0x20 - 0x20 0x4F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x72 0x63 0x68 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x4E 0x6F 0x72 0x74 0x68 - 0x20 0x41 0x66 0x72 0x69 0x63 0x61 0x6E - 0x20 0x76 0x69 0x6C 0x6C 0x61 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x66 0x61 0x63 0x65 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x65 - 0x6D 0x79 0x92 0x73 0x20 0x6C 0x65 0x61 - 0x64 0x65 0x72 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x64 0x65 0x72 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x64 0x6F 0x65 0x73 0x6E - 0x92 0x74 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x27 0x73 0x20 - 0x77 0x65 0x61 0x70 0x6F 0x6E 0x97 0x74 - 0x68 0x61 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x73 0x2C 0x20 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x70 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x66 0x6F 0x72 0x67 0x65 0x74 - 0x20 0x77 0x68 0x79 0x20 0x74 0x68 0x65 - 0x79 0x20 0x77 0x65 0x72 0x65 0x20 0x66 - 0x69 0x67 0x68 0x74 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x66 - 0x69 0x72 0x73 0x74 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x2E 0x0D 0x0A 0x42 0x69 0x6C - 0x6C 0x79 0x20 0x63 0x61 0x6E 0x20 0x61 - 0x76 0x6F 0x69 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x61 0x64 0x65 0x72 0x27 - 0x73 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x6B 0x69 0x63 0x6B 0x73 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x68 0x6F 0x77 0x20 - 0x63 0x61 0x6E 0x20 0x68 0x65 0x20 0x66 - 0x69 0x6E 0x61 0x6C 0x6C 0x79 0x20 0x6F - 0x75 0x74 0x77 0x69 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x64 0x65 0x72 - 0x20 0x74 0x6F 0x20 0x77 0x69 0x6E 0x20 - 0x74 0x6F 0x74 0x61 0x6C 0x20 0x76 0x69 - 0x63 0x74 0x6F 0x72 0x79 0x3F 0x20 0x20 - 0x44 0x6F 0x65 0x73 0x20 0x42 0x69 0x6C - 0x6C 0x79 0x92 0x73 0x20 0x75 0x6E 0x69 - 0x66 0x6F 0x72 0x6D 0x20 0x67 0x69 0x76 - 0x65 0x20 0x68 0x69 0x6D 0x20 0x73 0x70 - 0x65 0x63 0x69 0x61 0x6C 0x20 0x70 0x6F - 0x77 0x65 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 9211 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3C= 0x00015314 - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 9219 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x72 0x65 0x6D 0x61 - 0x6E 0x0D 0x0A 0x42 0x69 0x6C 0x6C 0x79 - 0x27 0x73 0x20 0x75 0x6E 0x63 0x6C 0x65 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x63 - 0x6F 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x77 0x6F 0x72 0x6B - 0x65 0x72 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x68 0x61 - 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x66 0x6F 0x6C 0x6C 0x6F - 0x77 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x75 0x6E 0x63 0x6C 0x65 0x27 0x73 - 0x20 0x66 0x6F 0x6F 0x74 0x73 0x74 0x65 - 0x70 0x73 0x97 0x61 0x74 0x20 0x6C 0x65 - 0x61 0x73 0x74 0x20 0x6F 0x6E 0x20 0x66 - 0x69 0x6C 0x6D 0x2E 0x20 0x20 0x48 0x65 - 0x27 0x64 0x20 0x6C 0x6F 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x61 0x72 0x20 - 0x61 0x73 0x20 0x61 0x20 0x63 0x6F 0x6E - 0x73 0x74 0x72 0x75 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x77 0x6F 0x72 0x6B 0x65 0x72 - 0x20 0x77 0x68 0x6F 0x20 0x62 0x75 0x69 - 0x6C 0x64 0x73 0x20 0x61 0x20 0x63 0x6F - 0x7A 0x79 0x20 0x63 0x61 0x62 0x69 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x6C - 0x6F 0x63 0x61 0x6C 0x20 0x6D 0x69 0x6C - 0x6C 0x69 0x6F 0x6E 0x61 0x69 0x72 0x65 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x6C 0x6C 0x69 0x6F 0x6E 0x61 - 0x69 0x72 0x65 0x20 0x64 0x69 0x73 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x67 0x65 - 0x74 0x73 0x20 0x67 0x65 0x74 0x73 0x20 - 0x74 0x61 0x6E 0x67 0x6C 0x65 0x64 0x20 - 0x75 0x70 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x69 0x6F 0x75 0x73 0x20 0x64 0x69 0x73 - 0x61 0x70 0x70 0x65 0x61 0x72 0x61 0x6E - 0x63 0x65 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x73 0x65 0x61 0x72 0x63 0x68 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E - 0x92 0x73 0x20 0x63 0x61 0x62 0x69 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x63 0x6C 0x75 - 0x65 0x73 0x2E 0x20 0x20 0x4F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x6C 0x6C - 0x20 0x69 0x73 0x20 0x61 0x20 0x6D 0x61 - 0x73 0x6B 0x20 0x77 0x68 0x6F 0x73 0x65 - 0x20 0x65 0x79 0x65 0x73 0x20 0x73 0x65 - 0x65 0x6D 0x20 0x74 0x6F 0x20 0x66 0x6F - 0x6C 0x6C 0x6F 0x77 0x20 0x68 0x69 0x73 - 0x20 0x65 0x76 0x65 0x72 0x79 0x20 0x6D - 0x6F 0x76 0x65 0x2E 0x20 0x4F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x74 0x61 0x62 0x6C - 0x65 0x20 0x69 0x73 0x20 0x61 0x20 0x6D - 0x61 0x70 0x2E 0x20 0x0D 0x0A 0x48 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6F 0x77 - 0x6E 0x65 0x72 0x20 0x62 0x65 0x65 0x6E - 0x20 0x6B 0x69 0x64 0x6E 0x61 0x70 0x70 - 0x65 0x64 0x2C 0x20 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x68 0x65 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x69 0x6E 0x20 0x4D 0x69 0x61 - 0x6D 0x69 0x20 0x6F 0x6E 0x20 0x61 0x20 - 0x62 0x75 0x73 0x69 0x6E 0x65 0x73 0x73 - 0x20 0x74 0x72 0x69 0x70 0x3F 0x20 0x20 - 0x43 0x61 0x6E 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x92 0x73 0x20 0x20 0x64 0x61 0x6E - 0x63 0x69 0x6E 0x67 0x20 0x73 0x6B 0x69 - 0x6C 0x6C 0x73 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x68 0x69 0x6D 0x20 0x73 0x61 0x76 - 0x65 0x20 0x68 0x69 0x73 0x20 0x62 0x6F - 0x73 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9353 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3D= 0x00015315 - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 9361 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB0 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x46 0x6C 0x65 0x61 0x20 0x4D - 0x61 0x72 0x6B 0x65 0x74 0x20 0x4D 0x61 - 0x6E 0x61 0x67 0x65 0x72 0x0D 0x0A 0x41 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 - 0x6E 0x61 0x67 0x65 0x72 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x66 0x6C 0x65 0x61 0x20 - 0x6D 0x61 0x72 0x6B 0x65 0x74 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x73 0x68 0x6F 0x77 - 0x20 0x6F 0x66 0x66 0x20 0x68 0x69 0x73 - 0x20 0x72 0x65 0x61 0x6C 0x20 0x74 0x61 - 0x6C 0x65 0x6E 0x74 0x2E 0x20 0x20 0x42 - 0x69 0x6C 0x6C 0x79 0x20 0x64 0x72 0x65 - 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 0x68 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x63 0x6F 0x6F 0x6C 0x20 0x63 0x61 0x72 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x73 0x2C - 0x20 0x74 0x72 0x69 0x6E 0x6B 0x65 0x74 - 0x73 0x2C 0x20 0x70 0x6F 0x70 0x63 0x6F - 0x72 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x77 0x65 0x65 0x74 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x65 0x72 0x20 0x6C - 0x61 0x64 0x79 0x20 0x77 0x69 0x74 0x68 - 0x20 0x61 0x20 0x63 0x61 0x74 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x74 0x6F 0x20 - 0x62 0x75 0x79 0x20 0x73 0x6F 0x6D 0x65 - 0x20 0x63 0x6F 0x74 0x74 0x6F 0x6E 0x20 - 0x63 0x61 0x6E 0x64 0x79 0x2C 0x20 0x68 - 0x65 0x72 0x20 0x63 0x61 0x74 0x20 0x72 - 0x75 0x6E 0x73 0x20 0x61 0x77 0x61 0x79 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x79 - 0x65 0x6C 0x6C 0x73 0x2C 0x20 0x93 0x63 - 0x61 0x74 0x63 0x68 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x63 0x61 0x74 0x63 0x68 0x20 - 0x68 0x69 0x6D 0x2C 0x20 0x61 0x6C 0x6C - 0x20 0x6D 0x79 0x20 0x6D 0x6F 0x6E 0x65 - 0x79 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x63 0x6F 0x6C 0x6C - 0x61 0x72 0x21 0x94 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x61 0x74 0x20 0x72 0x75 - 0x6E 0x73 0x20 0x73 0x63 0x61 0x72 0x65 - 0x64 0x2C 0x20 0x6A 0x75 0x6D 0x70 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x62 0x65 0x6E 0x63 0x68 0x20 0x74 0x6F - 0x20 0x62 0x65 0x6E 0x63 0x68 0x2C 0x20 - 0x63 0x72 0x61 0x77 0x6C 0x69 0x6E 0x67 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x42 - 0x69 0x6C 0x6C 0x79 0x92 0x73 0x20 0x63 - 0x61 0x72 0x74 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 0x61 - 0x73 0x68 0x69 0x6E 0x67 0x20 0x6F 0x66 - 0x66 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x57 0x69 0x6C 0x6C 0x20 0x42 - 0x69 0x6C 0x6C 0x79 0x92 0x73 0x20 0x64 - 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 0x74 - 0x61 0x6C 0x65 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x68 0x69 0x6D 0x20 0x64 - 0x69 0x73 0x74 0x72 0x61 0x63 0x74 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x72 0x65 0x63 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x6D 0x61 0x6E 0x92 0x73 0x20 - 0x6D 0x6F 0x6E 0x65 0x79 0x3F 0x20 0x20 - 0x41 0x6E 0x64 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x68 0x65 0x20 0x6F 0x66 0x66 - 0x65 0x72 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x20 0x72 0x65 0x77 0x61 0x72 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 9491 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3E= 0x00015316 - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 9499 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x49 0x62 0x6F 0x0D 0x0A 0x42 - 0x69 0x6E 0x6F 0x92 0x73 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x69 0x73 0x20 - 0x76 0x65 0x72 0x79 0x20 0x6C 0x61 0x72 - 0x67 0x65 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x79 0x20 0x61 0x6C 0x6C 0x20 - 0x68 0x61 0x76 0x65 0x20 0x62 0x65 0x61 - 0x75 0x74 0x69 0x66 0x75 0x6C 0x20 0x77 - 0x68 0x69 0x74 0x65 0x20 0x74 0x65 0x65 - 0x74 0x68 0x2C 0x20 0x77 0x68 0x69 0x63 - 0x68 0x20 0x69 0x73 0x20 0x61 0x20 0x67 - 0x6F 0x6F 0x64 0x20 0x73 0x65 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x69 0x6E - 0x74 0x20 0x69 0x66 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x6F 0x74 0x68 - 0x70 0x61 0x73 0x74 0x65 0x20 0x62 0x75 - 0x73 0x69 0x6E 0x65 0x73 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x67 0x72 0x6F - 0x77 0x69 0x6E 0x67 0x20 0x75 0x70 0x2C - 0x20 0x74 0x68 0x65 0x72 0x65 0x20 0x77 - 0x61 0x73 0x20 0x61 0x20 0x62 0x69 0x67 - 0x20 0x6C 0x69 0x6E 0x65 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x74 0x68 0x72 0x6F 0x6F 0x6D 0x20 0x65 - 0x61 0x63 0x68 0x20 0x6D 0x6F 0x72 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x65 0x61 0x63 0x68 0x20 0x6E 0x69 0x67 - 0x68 0x74 0x20 0x77 0x68 0x69 0x6C 0x65 - 0x20 0x42 0x69 0x6E 0x6F 0x20 0x77 0x61 - 0x69 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x62 0x72 0x75 0x73 0x68 0x20 0x68 0x69 - 0x73 0x20 0x74 0x65 0x65 0x74 0x68 0x2E - 0x20 0x20 0x48 0x69 0x73 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x74 0x6F 0x6F - 0x6B 0x20 0x74 0x68 0x61 0x74 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x61 0x70 0x20 0x6F 0x75 - 0x74 0x20 0x63 0x6F 0x6D 0x70 0x6C 0x65 - 0x78 0x20 0x72 0x68 0x79 0x74 0x68 0x6D - 0x73 0x2E 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x42 0x69 0x6E 0x6F 0x20 0x61 0x6E - 0x64 0x20 0x68 0x69 0x73 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x73 0x20 0x73 - 0x61 0x6E 0x67 0x20 0x74 0x68 0x65 0x73 - 0x65 0x20 0x73 0x6F 0x6E 0x67 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x61 0x72 0x6B 0x65 0x74 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x77 0x68 0x69 0x6C 0x65 - 0x20 0x68 0x69 0x73 0x20 0x66 0x61 0x74 - 0x68 0x65 0x72 0x20 0x73 0x6F 0x6C 0x64 - 0x20 0x74 0x6F 0x6F 0x74 0x68 0x70 0x61 - 0x73 0x74 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x79 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x67 0x61 0x74 0x68 0x65 0x72 - 0x65 0x64 0x20 0x71 0x75 0x69 0x74 0x65 - 0x20 0x61 0x20 0x63 0x72 0x6F 0x77 0x64 - 0x2E 0x20 0x20 0x42 0x69 0x6E 0x6F 0x20 - 0x6C 0x6F 0x76 0x65 0x64 0x20 0x74 0x68 - 0x65 0x20 0x61 0x74 0x74 0x65 0x6E 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x65 0x63 0x69 0x64 0x65 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x61 0x20 - 0x6C 0x69 0x66 0x65 0x20 0x61 0x73 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x61 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x68 0x69 0x6D 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9630 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3F= 0x00015317 - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 9638 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x26 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDB 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x74 0x6F 0x72 0x0D - 0x0A 0x42 0x69 0x6E 0x6F 0x20 0x74 0x75 - 0x74 0x6F 0x72 0x65 0x64 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x79 0x6F 0x75 0x6E 0x67 - 0x65 0x72 0x20 0x62 0x72 0x6F 0x74 0x68 - 0x65 0x72 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x75 0x73 0x69 0x6E 0x73 0x20 - 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 0x66 - 0x61 0x6D 0x69 0x6C 0x79 0x20 0x77 0x68 - 0x69 0x6C 0x65 0x20 0x74 0x68 0x65 0x79 - 0x20 0x77 0x65 0x72 0x65 0x20 0x69 0x6E - 0x20 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x74 0x75 - 0x74 0x6F 0x72 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x62 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x74 0x65 0x61 0x63 0x68 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x61 0x6E 0x63 0x69 - 0x65 0x6E 0x74 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x73 0x20 0x62 0x79 - 0x20 0x61 0x63 0x74 0x75 0x61 0x6C 0x6C - 0x79 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x72 0x65 0x2C 0x20 0x6F - 0x6E 0x20 0x61 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x21 0x20 0x20 0x4B 0x69 0x64 0x73 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x42 0x69 0x6E 0x6F - 0x20 0x61 0x73 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x74 0x75 0x74 0x6F 0x72 0x97 - 0x77 0x69 0x74 0x68 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x6C 0x65 0x61 0x72 0x6E 0x69 - 0x6E 0x67 0x20 0x69 0x73 0x20 0x61 0x6E - 0x20 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 - 0x72 0x65 0x2E 0x20 0x0D 0x0A 0x42 0x69 - 0x6E 0x6F 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x76 0x69 0x73 0x69 0x74 0x20 0x74 - 0x68 0x65 0x20 0x53 0x70 0x6F 0x6F 0x6B - 0x79 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x74 0x75 0x74 0x6F - 0x72 0x2E 0x20 0x20 0x46 0x69 0x72 0x73 - 0x74 0x20 0x74 0x68 0x65 0x79 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x70 0x72 0x65 0x68 0x69 0x73 0x74 - 0x6F 0x72 0x69 0x63 0x20 0x63 0x61 0x76 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x61 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x74 0x68 0x65 0x6D 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x63 0x61 0x76 - 0x65 0x20 0x70 0x61 0x69 0x6E 0x74 0x69 - 0x6E 0x67 0x73 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x69 0x73 0x20 0x61 0x20 0x62 0x69 0x67 - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x79 0x20 0x68 0x61 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x72 0x75 0x6E 0x20 - 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x2E 0x20 0x0D 0x0A 0x4E 0x65 0x78 0x74 - 0x20 0x74 0x68 0x65 0x79 0x20 0x6C 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x61 0x20 0x74 0x72 0x6F 0x70 0x69 0x63 - 0x61 0x6C 0x20 0x68 0x75 0x74 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x72 0x65 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x61 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x20 0x63 - 0x68 0x65 0x73 0x74 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x62 0x79 0x20 0x61 0x6E 0x63 - 0x69 0x65 0x6E 0x74 0x20 0x65 0x78 0x70 - 0x6C 0x6F 0x72 0x65 0x72 0x73 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x61 0x20 0x63 0x68 - 0x61 0x74 0x74 0x65 0x72 0x69 0x6E 0x67 - 0x20 0x73 0x6B 0x75 0x6C 0x6C 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x74 0x68 0x65 0x6D 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x6F 0x75 - 0x74 0x21 0x20 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x20 0x42 0x69 0x6E 0x6F 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x73 - 0x74 0x75 0x64 0x65 0x6E 0x74 0x73 0x20 - 0x73 0x74 0x61 0x79 0x20 0x74 0x6F 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x74 0x72 0x65 0x61 0x73 0x75 0x72 - 0x65 0x20 0x63 0x68 0x65 0x73 0x74 0x20 - 0x6F 0x72 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x79 0x20 0x67 0x6F 0x20 - 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x6C - 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9804 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_40= 0x00015318 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 9812 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x45 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x65 0x72 0x0D 0x0A 0x0A 0x42 - 0x61 0x73 0x65 0x64 0x20 0x6F 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x65 0x78 0x70 0x65 - 0x72 0x69 0x65 0x6E 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 - 0x72 0x6B 0x65 0x74 0x70 0x6C 0x61 0x63 - 0x65 0x73 0x20 0x6F 0x66 0x20 0x49 0x62 - 0x6F 0x6C 0x61 0x6E 0x64 0x2C 0x20 0x42 - 0x69 0x6E 0x6F 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x61 0x6E 0x20 - 0x65 0x78 0x63 0x65 0x6C 0x6C 0x65 0x6E - 0x74 0x20 0x73 0x74 0x72 0x65 0x65 0x74 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x65 0x72 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x43 0x72 0x6F 0x77 0x64 0x73 - 0x20 0x67 0x61 0x74 0x68 0x65 0x72 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x72 0x79 0x20 0x74 0x6F 0x20 0x69 0x6D - 0x69 0x74 0x61 0x74 0x65 0x20 0x68 0x69 - 0x73 0x20 0x64 0x61 0x6E 0x63 0x65 0x20 - 0x6D 0x6F 0x76 0x65 0x73 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x6C 0x69 - 0x65 0x6E 0x20 0x73 0x70 0x61 0x63 0x65 - 0x73 0x68 0x69 0x70 0x20 0x6C 0x61 0x6E - 0x64 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x72 0x65 0x65 0x74 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x77 0x6F 0x20 - 0x61 0x6C 0x69 0x65 0x6E 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x73 0x20 0x77 0x61 0x6E - 0x74 0x20 0x42 0x69 0x6E 0x6F 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x6D 0x65 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x70 0x6C 0x61 0x6E 0x65 0x74 0x20 0x74 - 0x6F 0x20 0x74 0x65 0x61 0x63 0x68 0x20 - 0x65 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 - 0x20 0x74 0x68 0x65 0x72 0x65 0x20 0x68 - 0x6F 0x77 0x20 0x74 0x6F 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x2C 0x20 0x63 0x61 0x6E - 0x20 0x68 0x65 0x20 0x72 0x75 0x6E 0x20 - 0x74 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x65 0x73 0x63 - 0x61 0x70 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9923 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_41= 0x00015319 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 9931 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x69 0x63 0x20 - 0x4D 0x61 0x73 0x74 0x65 0x72 0x0D 0x0A - 0x42 0x69 0x6E 0x6F 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x69 0x61 0x6E 0x20 0x77 0x68 - 0x6F 0x20 0x67 0x65 0x74 0x73 0x20 0x66 - 0x6F 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x20 - 0x62 0x79 0x20 0x66 0x61 0x6E 0x73 0x20 - 0x65 0x76 0x65 0x72 0x79 0x77 0x68 0x65 - 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x68 - 0x61 0x76 0x65 0x20 0x61 0x20 0x6D 0x6F - 0x6D 0x65 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x64 0x61 0x6E 0x63 0x65 0x72 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x68 - 0x69 0x73 0x20 0x62 0x61 0x6E 0x64 0x20 - 0x67 0x65 0x74 0x73 0x20 0x73 0x69 0x63 - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x42 0x69 - 0x6E 0x6F 0x20 0x6D 0x75 0x73 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x61 0x20 0x72 - 0x65 0x70 0x6C 0x61 0x63 0x65 0x6D 0x65 - 0x6E 0x74 0x2C 0x20 0x68 0x65 0x20 0x66 - 0x6C 0x69 0x65 0x73 0x20 0x61 0x6C 0x6C - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x6C 0x64 0x20 - 0x74 0x6F 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x74 0x72 0x79 0x6F 0x75 0x74 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x6C 0x69 - 0x6E 0x65 0x20 0x75 0x70 0x20 0x66 0x6F - 0x72 0x20 0x6D 0x69 0x6C 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x69 0x6C 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x64 0x61 0x6E - 0x63 0x65 0x20 0x69 0x6E 0x20 0x66 0x72 - 0x6F 0x6E 0x74 0x20 0x6F 0x66 0x20 0x42 - 0x69 0x6E 0x6F 0x2E 0x20 0x57 0x68 0x6F - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10039 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_42= 0x0001531a - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 10047 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x64 0x69 0x73 0x63 0x6F 0x76 - 0x65 0x72 0x65 0x64 0x0D 0x0A 0x4C 0x61 - 0x74 0x65 0x20 0x61 0x74 0x20 0x6E 0x69 - 0x67 0x68 0x74 0x2C 0x20 0x42 0x6F 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x77 0x72 - 0x69 0x74 0x65 0x20 0x73 0x74 0x6F 0x72 - 0x69 0x65 0x73 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x41 0x66 0x72 0x69 0x63 0x61 - 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 0x73 - 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 0x2E - 0x20 0x20 0x48 0x65 0x92 0x64 0x20 0x73 - 0x65 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x6F 0x72 0x69 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x4E 0x65 0x77 0x20 0x59 - 0x6F 0x72 0x6B 0x20 0x61 0x6E 0x64 0x20 - 0x43 0x61 0x6C 0x69 0x66 0x6F 0x72 0x6E - 0x69 0x61 0x20 0x74 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x69 0x66 0x20 0x61 0x6E 0x79 - 0x6F 0x6E 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x70 0x75 0x62 0x6C 0x69 0x73 - 0x68 0x20 0x74 0x68 0x65 0x6D 0x20 0x6F - 0x72 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x0D 0x0A 0x4F 0x6E 0x65 0x20 - 0x64 0x61 0x79 0x2C 0x20 0x68 0x65 0x20 - 0x67 0x6F 0x74 0x20 0x61 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x20 0x62 0x6F 0x6F 0x6B - 0x20 0x63 0x6F 0x6D 0x70 0x61 0x6E 0x79 - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x61 - 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 - 0x73 0x74 0x6F 0x72 0x69 0x65 0x73 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 0x62 - 0x6F 0x6F 0x6B 0x2E 0x20 0x20 0x42 0x6F - 0x20 0x66 0x6C 0x65 0x77 0x20 0x74 0x6F - 0x20 0x4E 0x65 0x77 0x20 0x59 0x6F 0x72 - 0x6B 0x2C 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x54 0x69 0x6D 0x65 0x73 0x20 - 0x53 0x71 0x75 0x61 0x72 0x65 0x20 0x68 - 0x65 0x20 0x6D 0x65 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x72 0x6F 0x64 0x75 0x63 0x65 0x72 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x2C 0x20 0x77 - 0x68 0x6F 0x20 0x77 0x61 0x6E 0x74 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x42 0x6F 0x27 0x73 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x74 0x6F 0x6F 0x2E 0x20 - 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 0x74 - 0x6F 0x6F 0x6B 0x20 0x6F 0x6E 0x65 0x20 - 0x6C 0x6F 0x6F 0x6B 0x20 0x61 0x74 0x20 - 0x68 0x69 0x6D 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x61 0x6C 0x69 0x7A 0x65 0x64 - 0x20 0x42 0x6F 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x61 0x6C 0x73 0x6F 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x72 0x66 0x65 0x63 0x74 0x20 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x61 0x72 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x97 0x61 0x73 0x20 0x68 0x69 0x6D - 0x73 0x65 0x6C 0x66 -ENDCHUNK - - -ENDCHUNK -#line 10175 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_43= 0x0001531b - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 10183 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFF 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x0D 0x0A 0x42 0x6F 0x20 0x69 0x6D - 0x61 0x67 0x69 0x6E 0x65 0x73 0x20 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x64 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x61 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x41 0x66 0x74 0x65 0x72 0x20 - 0x6B 0x69 0x64 0x73 0x20 0x68 0x61 0x64 - 0x20 0x67 0x6F 0x6E 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x61 0x20 - 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x20 0x61 0x6E - 0x64 0x20 0x65 0x61 0x74 0x65 0x6E 0x20 - 0x6C 0x6F 0x74 0x73 0x20 0x6F 0x66 0x20 - 0x63 0x61 0x6E 0x64 0x79 0x2C 0x20 0x68 - 0x65 0x27 0x64 0x20 0x67 0x72 0x65 0x65 - 0x74 0x20 0x74 0x68 0x65 0x6D 0x20 0x62 - 0x79 0x20 0x73 0x61 0x79 0x69 0x6E 0x67 - 0x2C 0x20 0x93 0x59 0x6F 0x2C 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x77 0x69 0x64 0x65 - 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x75 - 0x70 0x20 0x61 0x74 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x92 0x73 0x20 0x6D 0x6F - 0x75 0x74 0x68 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x73 0x20 0x62 0x6F 0x78 - 0x69 0x6E 0x67 0x20 0x67 0x6C 0x6F 0x76 - 0x65 0x73 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 0x73 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x6B 0x69 0x64 0x20 0x73 - 0x74 0x65 0x70 0x73 0x20 0x75 0x70 0x20 - 0x74 0x6F 0x20 0x42 0x6F 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x76 0x69 0x6C 0x20 - 0x74 0x6F 0x6F 0x74 0x68 0x20 0x66 0x61 - 0x69 0x72 0x79 0x2C 0x20 0x64 0x72 0x65 - 0x73 0x73 0x65 0x64 0x20 0x61 0x73 0x20 - 0x61 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x77 - 0x6F 0x6D 0x61 0x6E 0x20 0x6E 0x61 0x6D - 0x65 0x64 0x20 0x4D 0x61 0x72 0x74 0x68 - 0x61 0x2C 0x20 0x64 0x61 0x6E 0x63 0x65 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 0x20 - 0x6B 0x69 0x63 0x6B 0x73 0x20 0x42 0x6F - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x2E - 0x20 0x20 0x42 0x6F 0x20 0x66 0x61 0x69 - 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E 0x20 0x20 0x4D 0x61 0x72 0x74 - 0x68 0x61 0x20 0x77 0x61 0x6C 0x6B 0x73 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x2C 0x20 0x70 0x6C - 0x61 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x70 0x75 0x6C 0x6C 0x20 0x61 - 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6B 0x69 0x64 0x92 0x73 0x20 - 0x74 0x65 0x65 0x74 0x68 0x2E 0x20 0x0D - 0x0A 0x57 0x68 0x6F 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 - 0x68 0x65 0x20 0x77 0x69 0x63 0x6B 0x65 - 0x64 0x20 0x74 0x6F 0x6F 0x74 0x68 0x20 - 0x66 0x61 0x69 0x72 0x79 0x3F 0x20 0x20 - 0x49 0x73 0x20 0x42 0x6F 0x20 0x74 0x6F - 0x6F 0x20 0x62 0x69 0x67 0x20 0x74 0x6F - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x75 0x70 - 0x20 0x61 0x6E 0x64 0x20 0x67 0x65 0x74 - 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x77 0x61 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 10320 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_44= 0x0001531c - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 10328 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_93=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_93=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_93=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x03 0x03 0x41 0x73 0x74 0x72 0x6F 0x6E - 0x61 0x75 0x74 0x0D 0x0A 0x45 0x76 0x65 - 0x6E 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 - 0x20 0x68 0x65 0x20 0x64 0x6F 0x65 0x73 - 0x6E 0x92 0x74 0x20 0x6C 0x6F 0x6F 0x6B - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x2C 0x20 0x42 0x6F 0x20 0x69 0x73 - 0x20 0x70 0x72 0x65 0x74 0x74 0x79 0x20 - 0x67 0x6F 0x6F 0x64 0x20 0x61 0x74 0x20 - 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x48 0x65 0x20 0x6C 0x65 0x61 - 0x72 0x6E 0x65 0x64 0x20 0x69 0x74 0x20 - 0x6B 0x69 0x63 0x6B 0x20 0x62 0x6F 0x78 - 0x69 0x6E 0x67 0x2E 0x20 0x20 0x53 0x6F - 0x20 0x69 0x74 0x20 0x73 0x65 0x65 0x6D - 0x73 0x20 0x6E 0x61 0x74 0x75 0x72 0x61 - 0x6C 0x20 0x66 0x6F 0x72 0x20 0x42 0x6F - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x6E 0x20 0x61 0x73 0x74 0x72 - 0x6F 0x6E 0x61 0x75 0x74 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x6F 0x75 0x6E - 0x63 0x65 0x20 0x61 0x6C 0x6F 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x6E - 0x64 0x73 0x63 0x61 0x70 0x65 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x20 0x62 0x69 - 0x67 0x20 0x72 0x75 0x62 0x62 0x65 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x61 0x20 0x66 - 0x75 0x6E 0x6E 0x79 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x6D 0x69 0x67 0x68 0x74 - 0x20 0x68 0x61 0x70 0x70 0x65 0x6E 0x2E - 0x20 0x42 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x69 0x73 0x20 0x77 - 0x65 0x69 0x67 0x68 0x74 0x6C 0x65 0x73 - 0x73 0x2C 0x20 0x42 0x6F 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x73 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x72 0x65 0x74 0x63 0x68 0x20 - 0x77 0x69 0x74 0x68 0x20 0x65 0x76 0x65 - 0x72 0x79 0x20 0x62 0x6F 0x75 0x6E 0x63 - 0x65 0x2E 0x20 0x20 0x49 0x66 0x20 0x68 - 0x65 0x20 0x6B 0x65 0x65 0x70 0x73 0x20 - 0x74 0x68 0x69 0x73 0x20 0x75 0x70 0x2C - 0x20 0x68 0x65 0x20 0x77 0x6F 0x6E 0x92 - 0x74 0x20 0x66 0x69 0x74 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x63 0x6B 0x65 0x74 0x20 0x66 0x6F - 0x72 0x20 0x68 0x69 0x73 0x20 0x72 0x69 - 0x64 0x65 0x20 0x68 0x6F 0x6D 0x65 0x2E - 0x20 0x20 0x43 0x61 0x6E 0x20 0x42 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x62 0x6F - 0x75 0x6E 0x63 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x68 0x72 0x69 0x6E - 0x6B 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x6F 0x20 0x66 0x69 0x74 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10449 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_45= 0x0001531d - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 10457 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x20 0x43 - 0x6F 0x6F 0x72 0x64 0x69 0x6E 0x61 0x74 - 0x6F 0x72 0x0D 0x0A 0x42 0x6F 0x20 0x77 - 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 0x20 - 0x67 0x75 0x69 0x64 0x65 0x2E 0x20 0x48 - 0x65 0x20 0x69 0x6D 0x61 0x67 0x69 0x6E - 0x65 0x73 0x20 0x68 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x6F 0x6F 0x6B - 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x53 - 0x6F 0x75 0x74 0x68 0x20 0x6F 0x66 0x20 - 0x46 0x72 0x61 0x6E 0x63 0x65 0x20 0x74 - 0x6F 0x20 0x76 0x69 0x65 0x77 0x20 0x63 - 0x61 0x76 0x65 0x20 0x64 0x72 0x61 0x77 - 0x69 0x6E 0x67 0x73 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x74 0x68 0x65 0x72 0x65 - 0x20 0x69 0x73 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x20 0x6C 0x75 0x72 0x6B - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x76 0x65 0x2E - 0x20 0x20 0x53 0x6F 0x6D 0x65 0x20 0x74 - 0x68 0x69 0x65 0x76 0x65 0x73 0x20 0x68 - 0x61 0x76 0x65 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x73 0x74 0x6F 0x6C 0x65 0x6E 0x20 - 0x61 0x20 0x53 0x70 0x61 0x6E 0x69 0x73 - 0x68 0x20 0x41 0x72 0x6D 0x61 0x64 0x61 - 0x20 0x74 0x72 0x65 0x61 0x73 0x75 0x72 - 0x65 0x20 0x63 0x68 0x65 0x73 0x74 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 0x6E - 0x65 0x61 0x72 0x62 0x79 0x20 0x6D 0x75 - 0x73 0x65 0x75 0x6D 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x61 0x72 0x65 0x20 0x68 0x69 - 0x64 0x69 0x6E 0x67 0x20 0x6F 0x75 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x76 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x42 0x6F 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x67 - 0x72 0x6F 0x75 0x70 0x20 0x61 0x72 0x72 - 0x69 0x76 0x65 0x2C 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x72 0x65 0x20 0x69 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x62 - 0x69 0x67 0x20 0x73 0x75 0x72 0x70 0x72 - 0x69 0x73 0x65 0x2E 0x20 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x42 0x6F 0x2C 0x20 0x77 - 0x69 0x74 0x68 0x20 0x68 0x69 0x73 0x20 - 0x63 0x72 0x65 0x61 0x74 0x69 0x76 0x65 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x64 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x61 0x6C 0x20 0x6B 0x69 - 0x63 0x6B 0x20 0x62 0x6F 0x78 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x73 0x74 0x69 0x6E - 0x63 0x74 0x2C 0x20 0x73 0x61 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x75 - 0x72 0x69 0x73 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x3F 0x20 - 0x20 0x57 0x68 0x61 0x74 0x20 0x68 0x61 - 0x70 0x70 0x65 0x6E 0x73 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x42 0x6F 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x75 0x72 0x69 0x73 0x74 0x73 0x20 0x65 - 0x6D 0x65 0x72 0x67 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x76 0x65 0x3F 0x20 0x20 0x54 0x68 - 0x65 0x79 0x20 0x61 0x72 0x65 0x6E 0x27 - 0x74 0x20 0x69 0x6E 0x20 0x46 0x72 0x61 - 0x6E 0x63 0x65 0x20 0x61 0x6E 0x79 0x20 - 0x6D 0x6F 0x72 0x65 0x2E 0x2E 0x2E 0x62 - 0x75 0x74 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x61 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x3F 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x79 0x20 0x67 0x65 0x74 - 0x20 0x68 0x6F 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 10595 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_46= 0x0001531e - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 10603 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x74 0x61 0x6C 0x65 0x6E 0x74 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x20 0x69 - 0x6E 0x20 0x47 0x65 0x72 0x6D 0x61 0x6E - 0x79 0x2C 0x20 0x42 0x65 0x6E 0x6A 0x61 - 0x6D 0x69 0x6E 0x20 0x4F 0x6C 0x69 0x76 - 0x65 0x72 0x20 0x4E 0x65 0x77 0x6D 0x61 - 0x6E 0x20 0x47 0x65 0x6F 0x72 0x67 0x65 - 0x20 0x4F 0x6C 0x64 0x68 0x61 0x75 0x73 - 0x20 0x77 0x61 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x6E 0x20 0x6F 0x66 0x20 - 0x74 0x77 0x6F 0x20 0x63 0x69 0x72 0x63 - 0x75 0x73 0x20 0x70 0x65 0x72 0x66 0x6F - 0x72 0x6D 0x65 0x72 0x73 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 0x6E - 0x2C 0x20 0x68 0x69 0x73 0x20 0x70 0x61 - 0x72 0x65 0x6E 0x74 0x73 0x20 0x28 0x61 - 0x20 0x74 0x72 0x61 0x70 0x65 0x7A 0x65 - 0x20 0x61 0x72 0x74 0x69 0x73 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x20 0x66 0x69 - 0x72 0x65 0x20 0x73 0x77 0x61 0x6C 0x6C - 0x6F 0x77 0x65 0x72 0x29 0x20 0x75 0x73 - 0x65 0x64 0x20 0x74 0x68 0x65 0x20 0x6E - 0x61 0x6D 0x65 0x73 0x20 0x6F 0x66 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x20 0x66 0x6F 0x72 0x20 0x42 0x6F - 0x6E 0x67 0x6F 0x20 0x61 0x6E 0x64 0x20 - 0x68 0x61 0x64 0x20 0x6E 0x6F 0x6E 0x65 - 0x20 0x6C 0x65 0x66 0x74 0x20 0x66 0x6F - 0x72 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x92 - 0x73 0x20 0x74 0x77 0x69 0x6E 0x20 0x62 - 0x72 0x6F 0x74 0x68 0x65 0x72 0x2C 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x65 0x79 0x20 - 0x6E 0x61 0x6D 0x65 0x64 0x20 0x68 0x69 - 0x6D 0x20 0x45 0x64 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x68 0x6F 0x72 0x74 0x65 - 0x73 0x74 0x20 0x6E 0x61 0x6D 0x65 0x20 - 0x74 0x68 0x65 0x79 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x20 0x6F 0x66 0x2E 0x20 0x20 0x20 0x0D - 0x0A 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x61 - 0x6E 0x64 0x20 0x45 0x64 0x20 0x77 0x65 - 0x72 0x65 0x20 0x76 0x65 0x72 0x79 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x45 0x64 0x20 0x77 0x61 - 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x67 0x65 0x74 0x74 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 0x72 - 0x6F 0x75 0x62 0x6C 0x65 0x20 0x61 0x6E - 0x64 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x20 - 0x77 0x61 0x73 0x20 0x6D 0x75 0x63 0x68 - 0x20 0x73 0x6D 0x61 0x72 0x74 0x65 0x72 - 0x2E 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x20 - 0x6F 0x66 0x74 0x65 0x6E 0x20 0x70 0x72 - 0x65 0x74 0x65 0x6E 0x64 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x45 0x64 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x67 0x65 0x74 0x20 0x45 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x20 0x68 0x6F 0x6D - 0x65 0x20 0x6C 0x61 0x74 0x65 0x2E 0x20 - 0x20 0x54 0x68 0x61 0x74 0x92 0x73 0x20 - 0x68 0x6F 0x77 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x64 0x65 0x76 0x65 0x6C 0x6F - 0x70 0x65 0x64 0x20 0x73 0x75 0x63 0x68 - 0x20 0x61 0x20 0x74 0x61 0x6C 0x65 0x6E - 0x74 0x20 0x66 0x6F 0x72 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x97 0x62 0x79 0x20 - 0x69 0x6D 0x69 0x74 0x61 0x74 0x69 0x6E - 0x67 0x20 0x68 0x69 0x73 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x70 0x6F - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10741 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_47= 0x0001531f - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 10749 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x54 0x77 0x69 0x6E 0x20 0x42 - 0x72 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x73 0x20 0x62 0x72 0x6F - 0x74 0x68 0x65 0x72 0x2C 0x20 0x45 0x64 - 0x2E 0x20 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x74 0x77 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x45 0x64 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x74 0x68 0x65 0x20 0x65 0x76 0x69 0x6C - 0x20 0x74 0x77 0x69 0x6E 0x2E 0x20 0x20 - 0x54 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 - 0x20 0x74 0x68 0x65 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x74 0x72 0x79 0x20 - 0x74 0x6F 0x20 0x6F 0x75 0x74 0x73 0x6D - 0x61 0x72 0x74 0x20 0x65 0x61 0x63 0x68 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x67 0x65 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x69 0x72 0x20 0x77 - 0x61 0x79 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x61 0x20 0x68 0x61 0x75 0x6E - 0x74 0x65 0x64 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x20 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x61 0x70 0x61 0x72 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x72 0x65 0x27 0x73 0x20 0x74 0x72 - 0x6F 0x75 0x62 0x6C 0x65 0x3F 0x20 0x20 - 0x54 0x68 0x61 0x74 0x27 0x73 0x20 0x45 - 0x64 0x2C 0x20 0x72 0x69 0x67 0x68 0x74 - 0x3F 0x20 0x20 0x4F 0x72 0x20 0x69 0x73 - 0x20 0x69 0x74 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10853 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_48= 0x00015320 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 10861 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x88 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x50 0x6F 0x6C 0x69 0x63 0x65 - 0x20 0x4F 0x66 0x66 0x69 0x63 0x65 0x72 - 0x0D 0x0A 0x42 0x65 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x2D 0x6E - 0x61 0x74 0x75 0x72 0x65 0x64 0x20 0x6B - 0x69 0x6E 0x64 0x20 0x6F 0x66 0x20 0x67 - 0x75 0x79 0x2C 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x6C 0x79 0x20 0x70 0x6F 0x6C 0x69 - 0x63 0x65 0x20 0x6F 0x66 0x66 0x69 0x63 - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x6F 0x6C 0x76 0x65 0x20 0x6D 0x79 0x73 - 0x74 0x65 0x72 0x69 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 - 0x72 0x65 0x27 0x73 0x20 0x61 0x20 0x74 - 0x68 0x65 0x66 0x74 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x63 0x72 0x69 0x6D 0x69 0x6E 0x61 - 0x6C 0x20 0x65 0x73 0x63 0x61 0x70 0x65 - 0x73 0x20 0x6F 0x6E 0x20 0x61 0x20 0x70 - 0x6C 0x61 0x6E 0x65 0x2C 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x63 0x61 0x74 0x63 0x68 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x6F 0x6F - 0x6B 0x3F 0x20 0x20 0x57 0x6F 0x75 0x6C - 0x64 0x20 0x68 0x65 0x20 0x68 0x61 0x76 - 0x65 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x63 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 0x6F - 0x6C 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x79 0x73 0x74 0x65 0x72 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 10958 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_49= 0x00015321 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 10966 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x69 0x76 0x61 0x74 - 0x65 0x20 0x43 0x61 0x72 0x72 0x69 0x65 - 0x72 0x0D 0x0A 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x66 0x65 0x65 0x6C 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x61 0x73 0x20 0x61 - 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x70 0x72 0x69 - 0x76 0x61 0x74 0x65 0x20 0x61 0x69 0x72 - 0x6C 0x69 0x6E 0x65 0x20 0x63 0x61 0x72 - 0x72 0x69 0x65 0x72 0x2C 0x20 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x6F 0x66 0x66 0x20 0x68 - 0x69 0x73 0x20 0x61 0x62 0x69 0x6C 0x69 - 0x74 0x79 0x20 0x74 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x64 0x76 - 0x65 0x6E 0x74 0x75 0x72 0x65 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x66 0x6C 0x79 0x20 0x74 0x6F - 0x20 0x65 0x78 0x6F 0x74 0x69 0x63 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x69 0x63 0x6B 0x20 - 0x75 0x70 0x20 0x68 0x69 0x73 0x20 0x70 - 0x61 0x73 0x73 0x65 0x6E 0x67 0x65 0x72 - 0x73 0x97 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x20 0x73 0x70 0x6F 0x72 0x74 0x73 0x20 - 0x66 0x69 0x67 0x75 0x72 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x61 0x79 0x62 - 0x65 0x20 0x65 0x76 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x65 0x73 0x69 - 0x64 0x65 0x6E 0x74 0x21 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x69 0x66 0x20 0x68 0x65 0x20 0x67 0x65 - 0x74 0x73 0x20 0x6C 0x6F 0x73 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x74 0x69 0x6D - 0x65 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x6D 0x65 0x65 0x74 0x73 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x70 0x72 0x65 0x68 0x69 0x73 0x74 - 0x6F 0x72 0x69 0x63 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x61 0x72 0x67 0x75 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6C 0x61 0x6E 0x67 0x75 0x61 0x67 - 0x65 0x20 0x68 0x65 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x73 0x74 0x61 0x6E 0x64 0x3F - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x79 0x20 0x74 0x61 0x6B 0x65 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C - 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x68 0x65 0x20 0x67 0x65 0x74 - 0x20 0x68 0x6F 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 11082 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4A= 0x00015322 - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 11090 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x62 0x61 0x73 0x6B 0x65 0x74 - 0x62 0x61 0x6C 0x6C 0x0D 0x0A 0x0D 0x0A - 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 - 0x66 0x69 0x6C 0x6D 0x20 0x64 0x69 0x72 - 0x65 0x63 0x74 0x6F 0x72 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x77 0x61 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x68 0x6F 0x6F 0x6C 0x20 0x67 0x79 - 0x6D 0x20 0x73 0x68 0x6F 0x6F 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x62 0x61 0x73 - 0x6B 0x65 0x74 0x62 0x61 0x6C 0x6C 0x20 - 0x64 0x6F 0x63 0x75 0x6D 0x65 0x6E 0x74 - 0x61 0x72 0x79 0x2C 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x69 0x67 0x68 0x74 0x73 0x20 0x69 - 0x6E 0x20 0x63 0x65 0x6E 0x74 0x65 0x72 - 0x20 0x63 0x6F 0x75 0x72 0x74 0x20 0x62 - 0x75 0x72 0x6E 0x65 0x64 0x20 0x6F 0x75 - 0x74 0x2E 0x20 0x20 0x4E 0x6F 0x20 0x6F - 0x6E 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x72 0x65 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x69 0x67 0x68 0x74 - 0x20 0x65 0x78 0x63 0x65 0x70 0x74 0x20 - 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x68 - 0x61 0x64 0x20 0x61 0x6E 0x20 0x69 0x64 - 0x65 0x61 0x21 0x20 0x20 0x57 0x69 0x74 - 0x68 0x20 0x61 0x20 0x6C 0x69 0x67 0x68 - 0x74 0x20 0x62 0x75 0x6C 0x62 0x20 0x69 - 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x68 0x61 - 0x6E 0x64 0x2C 0x20 0x43 0x68 0x61 0x72 - 0x6C 0x69 0x65 0x20 0x6C 0x65 0x61 0x70 - 0x74 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x61 0x69 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x75 0x74 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x62 0x75 - 0x6C 0x62 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x63 0x6B 0x65 0x74 - 0x2E 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x20 0x6A 0x75 0x6D 0x70 0x65 0x64 - 0x20 0x61 0x67 0x61 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x70 0x75 0x6E 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x75 0x72 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x75 0x6C 0x62 0x2E - 0x20 0x48 0x65 0x20 0x6B 0x65 0x70 0x74 - 0x20 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x73 0x70 0x69 - 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x6C 0x62 0x20 0x77 0x61 0x73 - 0x20 0x63 0x6F 0x6D 0x70 0x6C 0x65 0x74 - 0x65 0x6C 0x79 0x20 0x73 0x63 0x72 0x65 - 0x77 0x65 0x64 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x63 - 0x6B 0x65 0x74 0x2E 0x20 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x73 0x61 0x69 0x64 - 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x2C 0x20 0x93 0x54 0x68 - 0x69 0x73 0x20 0x6B 0x69 0x64 0x20 0x69 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x21 0x94 0x20 0x61 0x6E 0x64 - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x66 0x69 0x6C 0x6D - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11220 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4B= 0x00015323 - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 11228 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x53 0x6B 0x65 0x6C 0x65 0x74 - 0x6F 0x6E 0x0D 0x0A 0x43 0x68 0x61 0x72 - 0x6C 0x69 0x65 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x70 0x6C - 0x61 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E - 0x20 0x6E 0x61 0x6D 0x65 0x64 0x20 0x93 - 0x42 0x6F 0x6E 0x65 0x73 0x94 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x61 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x49 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x61 0x20 0x6B 0x6E 0x69 0x67 0x68 0x74 - 0x20 0x6F 0x77 0x6E 0x73 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x2C 0x20 0x63 0x72 - 0x65 0x65 0x70 0x79 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x6B 0x6E 0x69 0x67 0x68 0x74 0x20 - 0x68 0x61 0x73 0x20 0x6E 0x6F 0x74 0x20 - 0x73 0x6C 0x65 0x70 0x74 0x20 0x69 0x6E - 0x20 0x79 0x65 0x61 0x72 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x6E 0x64 0x65 - 0x72 0x73 0x20 0x61 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x69 0x67 0x68 0x62 0x6F 0x72 0x68 0x6F - 0x6F 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x69 0x67 0x68 0x74 0x2E 0x20 0x20 - 0x48 0x69 0x73 0x20 0x6C 0x6F 0x75 0x64 - 0x20 0x63 0x6C 0x61 0x6E 0x6B 0x69 0x6E - 0x67 0x20 0x6B 0x65 0x65 0x70 0x73 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x65 0x6E 0x61 0x6E 0x74 0x73 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x68 - 0x6F 0x75 0x73 0x65 0x20 0x61 0x77 0x61 - 0x6B 0x65 0x2E 0x20 0x20 0x42 0x6F 0x6E - 0x65 0x73 0x20 0x69 0x73 0x20 0x64 0x65 - 0x74 0x65 0x72 0x6D 0x69 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x6E 0x69 - 0x67 0x68 0x74 0x20 0x74 0x69 0x72 0x65 - 0x64 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x6F 0x20 0x73 0x6C 0x65 0x65 - 0x70 0x2E 0x20 0x20 0x42 0x6F 0x6E 0x65 - 0x73 0x20 0x73 0x6E 0x65 0x61 0x6B 0x73 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x6E 0x69 - 0x67 0x68 0x74 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x20 0x61 0x20 0x74 0x68 0x69 0x65 - 0x66 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6B 0x6E 0x69 0x67 0x68 0x74 0x20 0x63 - 0x68 0x61 0x73 0x65 0x73 0x20 0x42 0x6F - 0x6E 0x65 0x73 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x72 0x79 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x63 0x61 0x74 - 0x63 0x68 0x20 0x68 0x69 0x6D 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x42 0x6F 0x6E 0x65 - 0x73 0x20 0x73 0x69 0x6D 0x70 0x6C 0x79 - 0x20 0x6A 0x75 0x6D 0x70 0x73 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x6E 0x69 0x67 0x68 0x74 0x2E 0x20 - 0x20 0x57 0x69 0x6C 0x6C 0x20 0x42 0x6F - 0x6E 0x65 0x73 0x20 0x77 0x65 0x61 0x72 - 0x20 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x6E 0x69 0x67 0x68 0x74 0x3F - 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x69 0x67 0x68 - 0x62 0x6F 0x72 0x68 0x6F 0x6F 0x64 0x20 - 0x73 0x6C 0x65 0x65 0x70 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 11364 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4C= 0x00015324 - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 11372 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x4C 0x61 0x76 0x61 0x20 0x4C - 0x61 0x6D 0x70 0x20 0x53 0x61 0x6C 0x65 - 0x73 0x70 0x65 0x72 0x73 0x6F 0x6E 0x0D - 0x0A 0x41 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x69 0x73 0x20 0x61 0x20 0x6C 0x61 - 0x76 0x61 0x20 0x6C 0x61 0x6D 0x70 0x20 - 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E - 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 0x63 - 0x6F 0x6D 0x70 0x61 0x6E 0x79 0x20 0x73 - 0x65 0x6E 0x64 0x73 0x20 0x68 0x69 0x6D - 0x20 0x74 0x6F 0x20 0x4A 0x61 0x6D 0x61 - 0x69 0x63 0x61 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x6C 0x6C 0x20 0x6C 0x61 0x76 0x61 - 0x20 0x6C 0x61 0x6D 0x70 0x73 0x2E 0x20 - 0x20 0x50 0x72 0x65 0x74 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x73 0x61 0x6C 0x65 - 0x73 0x6D 0x61 0x6E 0x20 0x69 0x73 0x20 - 0x61 0x20 0x70 0x65 0x72 0x66 0x65 0x63 - 0x74 0x20 0x72 0x6F 0x6C 0x65 0x20 0x62 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x77 0x61 - 0x6E 0x74 0x73 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x79 0x73 - 0x74 0x65 0x72 0x69 0x6F 0x75 0x73 0x20 - 0x4A 0x61 0x6D 0x61 0x69 0x63 0x61 0x6E - 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E 0x67 - 0x20 0x73 0x6B 0x75 0x6C 0x6C 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x73 0x6B 0x75 - 0x6C 0x6C 0x20 0x69 0x73 0x20 0x76 0x65 - 0x72 0x79 0x20 0x6F 0x6C 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x6B 0x6E 0x6F 0x77 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x65 0x63 - 0x72 0x65 0x74 0x20 0x69 0x6E 0x67 0x72 - 0x65 0x64 0x69 0x65 0x6E 0x74 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x62 0x61 0x6E 0x61 - 0x6E 0x61 0x2D 0x73 0x74 0x72 0x61 0x77 - 0x62 0x65 0x72 0x72 0x79 0x2D 0x70 0x69 - 0x6E 0x65 0x61 0x70 0x70 0x6C 0x65 0x20 - 0x70 0x65 0x61 0x6E 0x75 0x74 0x20 0x62 - 0x75 0x74 0x74 0x65 0x72 0x2E 0x20 0x20 - 0x49 0x66 0x20 0x43 0x68 0x61 0x72 0x6C - 0x69 0x65 0x20 0x67 0x65 0x74 0x73 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x63 0x69 - 0x70 0x65 0x2C 0x20 0x68 0x65 0x92 0x6C - 0x6C 0x20 0x73 0x65 0x6C 0x6C 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x77 0x65 - 0x73 0x6F 0x6D 0x65 0x20 0x70 0x65 0x61 - 0x6E 0x75 0x74 0x20 0x62 0x75 0x74 0x74 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x65 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x61 - 0x74 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x67 - 0x65 0x2E 0x20 0x20 0x41 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x6F 0x63 0x61 0x6C - 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x67 - 0x65 0x74 0x73 0x20 0x61 0x20 0x74 0x61 - 0x78 0x69 0x20 0x61 0x6E 0x64 0x20 0x67 - 0x6F 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x73 0x65 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x6D 0x6F 0x75 - 0x6E 0x74 0x61 0x69 0x6E 0x20 0x74 0x6F - 0x20 0x73 0x65 0x61 0x72 0x63 0x68 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6B 0x75 0x6C 0x6C 0x2E 0x20 0x20 - 0x53 0x6F 0x6F 0x6E 0x20 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x20 0x77 0x6F 0x6F - 0x64 0x65 0x6E 0x20 0x62 0x72 0x69 0x64 - 0x67 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x61 0x20 0x63 0x61 0x76 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x65 0x6E 0x64 0x2E - 0x20 0x20 0x48 0x65 0x92 0x73 0x20 0x61 - 0x66 0x72 0x61 0x69 0x64 0x20 0x74 0x68 - 0x65 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 0x20 - 0x73 0x74 0x72 0x6F 0x6E 0x67 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x74 0x6F - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x68 0x69 - 0x6D 0x2C 0x20 0x62 0x75 0x74 0x20 0x6D - 0x75 0x73 0x74 0x20 0x67 0x65 0x74 0x20 - 0x61 0x63 0x72 0x6F 0x73 0x73 0x2E 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x43 0x68 0x61 - 0x72 0x6C 0x69 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 - 0x69 0x64 0x65 0x3F 0x20 0x41 0x6E 0x64 - 0x2C 0x20 0x69 0x66 0x20 0x68 0x65 0x20 - 0x6D 0x61 0x6B 0x65 0x73 0x20 0x69 0x74 - 0x2C 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 - 0x65 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x74 0x61 0x6C 0x6B 0x69 - 0x6E 0x67 0x20 0x73 0x6B 0x75 0x6C 0x6C - 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x76 0x65 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 11536 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4D= 0x00015325 - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 11544 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x0D 0x0A 0x43 0x68 0x61 0x72 0x6C - 0x69 0x65 0x20 0x61 0x6C 0x73 0x6F 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F - 0x66 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 - 0x69 0x73 0x74 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x76 0x61 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x75 0x72 0x6E 0x73 - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 - 0x68 0x75 0x67 0x65 0x20 0x61 0x64 0x76 - 0x65 0x6E 0x74 0x75 0x72 0x65 0x21 0x20 - 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x20 0x69 0x73 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x61 0x69 0x72 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x77 0x68 0x65 0x6E - 0x20 0x73 0x75 0x64 0x64 0x65 0x6E 0x6C - 0x79 0x20 0x74 0x68 0x65 0x79 0x20 0x66 - 0x6C 0x79 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x61 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x69 0x6F 0x75 0x73 0x2C 0x20 0x68 0x65 - 0x61 0x76 0x79 0x20 0x66 0x6F 0x67 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x66 0x6F - 0x67 0x20 0x67 0x6F 0x65 0x73 0x20 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6F 0x6E - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x79 0x20 0x72 0x75 0x6E 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x67 - 0x61 0x73 0x20 0x61 0x6E 0x64 0x20 0x61 - 0x72 0x65 0x20 0x66 0x6F 0x72 0x63 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x6C 0x61 0x6E - 0x64 0x2E 0x20 0x20 0x42 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x67 0x20 0x62 0x6C 0x6F 0x63 - 0x6B 0x65 0x64 0x20 0x6E 0x61 0x76 0x69 - 0x67 0x61 0x74 0x69 0x6F 0x6E 0x20 0x73 - 0x69 0x67 0x6E 0x61 0x6C 0x73 0x2C 0x20 - 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x74 0x68 0x65 0x79 0x20 - 0x61 0x72 0x65 0x2E 0x20 0x20 0x45 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x20 0x74 0x6F 0x20 - 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 - 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x68 0x6F 0x6D 0x65 - 0x20 0x73 0x61 0x66 0x65 0x6C 0x79 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x6E 0x6F 0x20 0x73 - 0x69 0x67 0x6E 0x73 0x20 0x6F 0x66 0x20 - 0x6C 0x69 0x66 0x65 0x20 0x61 0x6E 0x79 - 0x77 0x68 0x65 0x72 0x65 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x2C 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x6E 0x6F 0x77 0x68 0x65 - 0x72 0x65 0x2C 0x20 0x61 0x6E 0x20 0x61 - 0x6C 0x69 0x65 0x6E 0x20 0x73 0x70 0x61 - 0x63 0x65 0x73 0x68 0x69 0x70 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x73 0x69 0x67 0x68 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x73 0x20 0x63 0x69 0x72 0x63 0x6C - 0x69 0x6E 0x67 0x20 0x73 0x6C 0x6F 0x77 - 0x6C 0x79 0x20 0x61 0x62 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6D 0x2E 0x20 0x48 - 0x61 0x76 0x65 0x20 0x74 0x68 0x65 0x79 - 0x20 0x6C 0x61 0x6E 0x64 0x65 0x64 0x20 - 0x6F 0x6E 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x74 0x3F 0x20 0x43 0x61 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x70 0x61 0x63 0x65 - 0x73 0x68 0x69 0x70 0x20 0x68 0x65 0x6C - 0x70 0x20 0x73 0x61 0x76 0x65 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x69 0x74 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x74 0x6F 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x68 0x6F 0x73 0x74 0x61 0x67 0x65 0x3F - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x43 0x68 0x61 0x72 0x6C - 0x69 0x65 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x70 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x65 0x61 0x72 0x74 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 11689 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4E= 0x00015326 - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 11697 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_75=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x22 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_75=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAF 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_75=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x65 0x75 0x6D - 0x20 0x43 0x75 0x72 0x61 0x74 0x6F 0x72 - 0x0D 0x0A 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x69 0x73 0x20 0x64 - 0x65 0x76 0x6F 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x69 0x6E - 0x67 0x20 0x20 0x69 0x6D 0x61 0x67 0x69 - 0x6E 0x61 0x74 0x69 0x76 0x65 0x2C 0x20 - 0x6F 0x66 0x66 0x62 0x65 0x61 0x74 0x2C - 0x20 0x65 0x63 0x6C 0x65 0x63 0x74 0x69 - 0x63 0x20 0x61 0x72 0x74 0x97 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x20 0x63 0x68 0x65 0x73 - 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 0x61 - 0x72 0x6D 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x74 0x6F 0x74 0x65 0x6D 0x20 0x70 0x6F - 0x6C 0x65 0x73 0x2E 0x20 0x20 0x46 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x73 0x61 - 0x79 0x20 0x73 0x68 0x65 0x27 0x73 0x20 - 0x71 0x75 0x69 0x65 0x74 0x2C 0x20 0x74 - 0x61 0x6C 0x65 0x6E 0x74 0x65 0x64 0x2C - 0x20 0x63 0x75 0x72 0x69 0x6F 0x75 0x73 - 0x2C 0x20 0x67 0x6C 0x69 0x74 0x7A 0x79 - 0x2C 0x20 0x67 0x6C 0x61 0x6D 0x6F 0x72 - 0x6F 0x75 0x73 0x2C 0x20 0x61 0x77 0x65 - 0x73 0x6F 0x6D 0x65 0x2C 0x20 0x77 0x69 - 0x6C 0x64 0x2C 0x20 0x61 0x6E 0x64 0x2C - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x69 0x6D - 0x65 0x73 0x2C 0x20 0x93 0x6E 0x6F 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x69 0x73 - 0x20 0x77 0x6F 0x72 0x6C 0x64 0x2E 0x94 - 0x20 0x20 0x48 0x6F 0x77 0x20 0x63 0x61 - 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x20 0x62 0x65 0x20 - 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x73 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x3F 0x20 0x20 0x57 0x65 - 0x6C 0x6C 0x2C 0x20 0x43 0x68 0x72 0x69 - 0x73 0x74 0x69 0x6E 0x61 0x20 0x68 0x61 - 0x73 0x20 0x61 0x20 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x20 0x74 0x61 0x6C 0x65 - 0x6E 0x74 0x2E 0x20 0x20 0x41 0x6C 0x6C - 0x20 0x73 0x68 0x65 0x20 0x68 0x61 0x73 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x69 - 0x73 0x20 0x66 0x6F 0x63 0x75 0x73 0x20 - 0x6F 0x6E 0x20 0x61 0x20 0x70 0x69 0x65 - 0x63 0x65 0x20 0x6F 0x66 0x20 0x61 0x72 - 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x68 0x65 0x20 0x61 0x63 0x74 0x75 0x61 - 0x6C 0x6C 0x79 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x73 0x68 - 0x65 0x27 0x73 0x20 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x61 0x74 0x2E 0x0D - 0x0A 0x49 0x66 0x20 0x73 0x68 0x65 0x20 - 0x66 0x6F 0x63 0x75 0x73 0x65 0x73 0x20 - 0x6F 0x6E 0x20 0x61 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x2C 0x20 0x66 0x6F 0x72 0x20 - 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C - 0x20 0x73 0x75 0x64 0x64 0x65 0x6E 0x6C - 0x79 0x20 0x73 0x68 0x65 0x20 0x62 0x65 - 0x63 0x6F 0x6D 0x65 0x73 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x21 - 0x20 0x20 0x53 0x68 0x65 0x92 0x6C 0x6C - 0x20 0x20 0x74 0x61 0x6C 0x6B 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x20 0x6D 0x75 - 0x6D 0x6D 0x79 0x2C 0x20 0x77 0x61 0x6C - 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 - 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x2C 0x20 - 0x65 0x76 0x65 0x6E 0x20 0x6C 0x6F 0x6F - 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 - 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x2E 0x20 - 0x20 0x4F 0x72 0x20 0x73 0x68 0x65 0x92 - 0x6C 0x6C 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x20 0x61 0x20 0x74 0x6F 0x74 0x65 - 0x6D 0x20 0x70 0x6F 0x6C 0x65 0x2E 0x20 - 0x20 0x4F 0x72 0x20 0x61 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x21 0x20 - 0x20 0x53 0x6F 0x6D 0x65 0x74 0x69 0x6D - 0x65 0x73 0x20 0x68 0x65 0x72 0x20 0x74 - 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 0x6D - 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 0x68 - 0x61 0x70 0x70 0x65 0x6E 0x20 0x77 0x69 - 0x74 0x68 0x20 0x61 0x20 0x6C 0x6F 0x75 - 0x64 0x20 0x4B 0x41 0x42 0x4F 0x4F 0x4D - 0x2C 0x20 0x77 0x68 0x69 0x63 0x68 0x20 - 0x69 0x73 0x20 0x65 0x6D 0x62 0x61 0x72 - 0x72 0x61 0x73 0x73 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x46 0x75 0x6E 0x6E 0x79 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x69 0x73 - 0x2C 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 - 0x20 0x65 0x6C 0x73 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 - 0x65 0x75 0x6D 0x20 0x73 0x65 0x65 0x6D - 0x73 0x20 0x74 0x6F 0x20 0x6E 0x6F 0x74 - 0x69 0x63 0x65 0x21 0x20 0x20 0x46 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x69 0x74 0x92 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x68 0x65 - 0x72 0x20 0x76 0x69 0x76 0x69 0x64 0x20 - 0x69 0x6D 0x61 0x67 0x69 0x6E 0x61 0x74 - 0x69 0x6F 0x6E 0x2E 0x20 0x4F 0x6E 0x6C - 0x79 0x20 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x6B 0x6E 0x6F 0x77 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x75 0x74 0x68 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11864 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4F= 0x00015327 - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 11872 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x6E 0x67 0x65 0x72 - 0x0D 0x0A 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x68 0x61 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x77 - 0x61 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x61 0x20 0x73 0x69 - 0x6E 0x67 0x65 0x72 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x92 0x73 0x20 0x63 0x6F 0x6E - 0x73 0x69 0x64 0x65 0x72 0x65 0x64 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x6A 0x61 0x7A 0x7A 0x20 0x73 0x69 0x6E - 0x67 0x65 0x72 0x20 0x6F 0x6E 0x20 0x61 - 0x20 0x93 0x63 0x72 0x75 0x69 0x73 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2E 0x94 - 0x20 0x20 0x45 0x76 0x65 0x72 0x20 0x68 - 0x65 0x61 0x72 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x63 0x72 0x75 0x69 0x73 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x3F 0x20 - 0x20 0x49 0x74 0x92 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x72 0x75 - 0x69 0x73 0x65 0x20 0x73 0x68 0x69 0x70 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x69 0x72 0x70 - 0x6C 0x61 0x6E 0x65 0x2E 0x20 0x20 0x20 - 0x43 0x68 0x72 0x69 0x73 0x74 0x69 0x6E - 0x61 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 - 0x20 0x61 0x69 0x72 0x6C 0x69 0x6E 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 0x20 - 0x61 0x72 0x65 0x20 0x66 0x69 0x6E 0x65 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x6D 0x65 0x6E 0x74 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x6C 0x69 0x76 0x65 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x61 0x74 - 0x65 0x72 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x62 0x65 0x73 0x74 0x21 0x20 0x20 0x43 - 0x68 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x93 0x72 0x65 0x64 - 0x20 0x65 0x79 0x65 0x94 0x20 0x66 0x6C - 0x69 0x67 0x68 0x74 0x73 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x92 0x64 0x20 0x74 0x69 - 0x74 0x6C 0x65 0x20 0x68 0x65 0x72 0x20 - 0x67 0x69 0x67 0x20 0x93 0x4C 0x61 0x74 - 0x65 0x20 0x4E 0x69 0x67 0x68 0x74 0x20 - 0x77 0x69 0x74 0x68 0x20 0x43 0x68 0x72 - 0x69 0x73 0x74 0x69 0x6E 0x61 0x94 0x97 - 0x73 0x69 0x74 0x20 0x62 0x61 0x63 0x6B - 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 0x6C - 0x61 0x78 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x70 0x61 0x72 0x65 0x6E 0x74 0x73 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x20 0x69 0x74 0x97 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x62 0x69 0x65 0x73 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x73 0x6C 0x65 0x65 0x70 0x20 0x69 0x6E - 0x20 0x6D 0x69 0x6E 0x75 0x74 0x65 0x73 - 0x2E 0x20 0x20 0x49 0x74 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x62 - 0x65 0x74 0x74 0x65 0x72 0x20 0x74 0x68 - 0x61 0x6E 0x20 0x61 0x20 0x6C 0x75 0x6C - 0x6C 0x61 0x62 0x79 0x21 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x61 0x70 - 0x70 0x65 0x6E 0x20 0x77 0x68 0x65 0x6E - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x69 - 0x6E 0x61 0x20 0x64 0x69 0x73 0x63 0x6F - 0x76 0x65 0x72 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x68 0x65 0x92 0x73 0x20 - 0x61 0x66 0x72 0x61 0x69 0x64 0x20 0x6F - 0x66 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x73 0x68 0x65 - 0x20 0x66 0x61 0x69 0x6E 0x74 0x73 0x3F - 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x72 0x65 0x20 0x62 0x65 0x20 - 0x61 0x6E 0x79 0x6F 0x6E 0x65 0x20 0x65 - 0x6C 0x73 0x65 0x20 0x6F 0x6E 0x20 0x62 - 0x6F 0x61 0x72 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x61 0x6B 0x65 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x68 0x65 0x72 0x20 0x61 0x63 - 0x74 0x3F 0x20 0x20 0x4D 0x61 0x79 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x62 0x61 0x62 0x79 0x20 0x74 - 0x68 0x61 0x74 0x20 0x69 0x73 0x6E 0x92 - 0x74 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x61 0x73 0x6C 0x65 0x65 0x70 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12023 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_50= 0x00015328 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 12031 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDE 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6D 0x65 0x20 0x4F - 0x77 0x6E 0x65 0x72 0x0D 0x0A 0x43 0x68 - 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 - 0x68 0x61 0x73 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x65 0x64 0x20 0x6F 0x66 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x61 0x20 0x68 - 0x6F 0x6D 0x65 0x20 0x6F 0x77 0x6E 0x65 - 0x72 0x2E 0x20 0x20 0x41 0x20 0x73 0x6D - 0x61 0x6C 0x6C 0x20 0x4E 0x65 0x77 0x20 - 0x59 0x6F 0x72 0x6B 0x20 0x61 0x70 0x61 - 0x72 0x74 0x6D 0x65 0x6E 0x74 0x20 0x69 - 0x73 0x20 0x61 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x61 0x66 - 0x66 0x6F 0x72 0x64 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x61 0x20 0x62 0x69 0x67 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x2C 0x20 0x6F - 0x6E 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x69 0x73 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x20 0x6F 0x6E 0x65 - 0x20 0x72 0x6F 0x6F 0x66 0x97 0x61 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x74 0x6F - 0x20 0x72 0x65 0x61 0x64 0x2C 0x20 0x63 - 0x6F 0x6F 0x6B 0x2C 0x20 0x68 0x6F 0x73 - 0x74 0x20 0x63 0x6F 0x6E 0x63 0x65 0x72 - 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x69 0x6C 0x64 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x65 0x74 0x20 0x75 0x70 0x20 0x61 - 0x20 0x63 0x6F 0x6E 0x73 0x65 0x72 0x76 - 0x61 0x74 0x69 0x6F 0x6E 0x20 0x6C 0x61 - 0x62 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6C 0x61 0x62 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x74 0x75 0x72 0x72 - 0x65 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 0x2C - 0x20 0x73 0x6F 0x20 0x73 0x68 0x65 0x27 - 0x64 0x20 0x68 0x61 0x76 0x65 0x20 0x61 - 0x20 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 - 0x4D 0x6F 0x73 0x74 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x61 0x20 0x76 0x69 0x65 0x77 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x6E 0x74 0x61 0x69 0x6E 0x73 - 0x20 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x74 0x65 0x72 0x3B 0x20 0x43 - 0x68 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x61 - 0x20 0x76 0x69 0x65 0x77 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x67 0x72 0x61 0x76 0x65 - 0x79 0x61 0x72 0x64 0x2E 0x20 0x20 0x57 - 0x69 0x74 0x68 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x6F 0x73 0x65 0x20 0x73 0x70 - 0x69 0x72 0x69 0x74 0x73 0x2C 0x20 0x73 - 0x68 0x65 0x92 0x64 0x20 0x6E 0x65 0x76 - 0x65 0x72 0x20 0x67 0x65 0x74 0x20 0x6C - 0x6F 0x6E 0x65 0x6C 0x79 0x2E 0x0D 0x0A - 0x42 0x75 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x69 - 0x6E 0x61 0x92 0x73 0x20 0x64 0x72 0x65 - 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x68 0x61 0x70 0x70 0x79 0x20 0x68 - 0x6F 0x6D 0x65 0x20 0x74 0x75 0x72 0x6E - 0x20 0x73 0x63 0x61 0x72 0x79 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x69 0x7A 0x65 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x68 0x65 - 0x72 0x20 0x6E 0x65 0x69 0x67 0x68 0x62 - 0x6F 0x72 0x73 0x20 0x61 0x72 0x65 0x20 - 0x61 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x2C - 0x20 0x61 0x20 0x70 0x72 0x65 0x68 0x69 - 0x73 0x74 0x6F 0x72 0x69 0x63 0x20 0x6D - 0x61 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x61 0x20 0x62 0x61 0x62 0x79 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x6E 0x20 0x61 - 0x74 0x74 0x69 0x74 0x75 0x64 0x65 0x3F - 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 0x43 - 0x68 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 - 0x20 0x64 0x65 0x63 0x69 0x64 0x65 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x4E 0x65 0x77 0x20 0x59 0x6F 0x72 0x6B - 0x2C 0x20 0x6F 0x72 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x73 0x68 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x77 0x20 0x61 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x70 0x61 0x72 0x74 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x68 0x65 - 0x72 0x20 0x6E 0x65 0x77 0x20 0x6E 0x65 - 0x69 0x67 0x68 0x62 0x6F 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12184 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_51= 0x00015329 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 12192 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF4 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x74 0x65 0x63 0x74 - 0x69 0x76 0x65 0x0D 0x0A 0x43 0x68 0x72 - 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 0x68 - 0x61 0x73 0x20 0x61 0x6E 0x20 0x65 0x79 - 0x65 0x20 0x66 0x6F 0x72 0x20 0x64 0x65 - 0x74 0x61 0x69 0x6C 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x64 0x65 0x74 0x65 0x63 - 0x74 0x69 0x76 0x65 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x72 - 0x6F 0x6C 0x65 0x2C 0x20 0x43 0x68 0x72 - 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 0x66 - 0x69 0x6E 0x64 0x73 0x20 0x4E 0x65 0x77 - 0x20 0x59 0x6F 0x72 0x6B 0x92 0x73 0x20 - 0x6C 0x6F 0x6E 0x67 0x20 0x6C 0x6F 0x73 - 0x74 0x20 0x74 0x72 0x65 0x61 0x73 0x75 - 0x72 0x65 0x20 0x63 0x68 0x65 0x73 0x74 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x72 0x61 - 0x6D 0x62 0x6C 0x69 0x6E 0x67 0x20 0x67 - 0x72 0x61 0x76 0x65 0x79 0x61 0x72 0x64 - 0x20 0x6E 0x6F 0x72 0x74 0x68 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x69 - 0x74 0x79 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x61 0x72 0x65 0x61 0x20 0x77 0x61 - 0x73 0x20 0x6F 0x6E 0x63 0x65 0x20 0x61 - 0x20 0x73 0x74 0x6F 0x6D 0x70 0x69 0x6E - 0x67 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x66 0x6F 0x72 0x20 0x49 0x6E 0x64 - 0x69 0x61 0x6E 0x20 0x63 0x61 0x76 0x65 - 0x20 0x64 0x77 0x65 0x6C 0x6C 0x65 0x72 - 0x73 0x2E 0x20 0x20 0x43 0x68 0x72 0x69 - 0x73 0x74 0x69 0x6E 0x61 0x20 0x68 0x61 - 0x70 0x70 0x65 0x6E 0x73 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x61 0x76 0x65 - 0x79 0x61 0x72 0x64 0x20 0x6F 0x6E 0x65 - 0x20 0x64 0x61 0x79 0x20 0x73 0x74 0x75 - 0x64 0x79 0x69 0x6E 0x67 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x92 0x73 0x20 0x67 0x72 - 0x61 0x76 0x65 0x73 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x73 0x74 0x75 0x6D 0x62 - 0x6C 0x65 0x73 0x20 0x75 0x70 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x6F 0x6C 0x64 0x20 - 0x63 0x61 0x76 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x69 0x74 0x74 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 - 0x20 0x69 0x73 0x20 0x61 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x20 0x63 - 0x68 0x65 0x73 0x74 0x20 0x6F 0x66 0x20 - 0x67 0x6F 0x6C 0x64 0x21 0x20 0x20 0x48 - 0x65 0x72 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x61 0x74 0x69 0x6F - 0x6E 0x61 0x6C 0x20 0x6E 0x65 0x77 0x73 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 0x68 - 0x65 0x20 0x67 0x65 0x74 0x73 0x20 0x63 - 0x61 0x6C 0x6C 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 - 0x20 0x63 0x68 0x69 0x65 0x66 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x68 0x65 0x72 - 0x69 0x66 0x66 0x73 0x20 0x65 0x76 0x65 - 0x72 0x79 0x77 0x68 0x65 0x72 0x65 0x20 - 0x62 0x65 0x67 0x67 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 0x20 - 0x73 0x6C 0x65 0x75 0x74 0x68 0x69 0x6E - 0x67 0x20 0x73 0x6B 0x69 0x6C 0x6C 0x73 - 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x43 0x68 0x72 0x69 0x73 0x74 0x69 0x6E - 0x61 0x20 0x6E 0x65 0x65 0x64 0x73 0x20 - 0x74 0x6F 0x20 0x75 0x6E 0x63 0x6F 0x76 - 0x65 0x72 0x20 0x61 0x20 0x72 0x69 0x6E - 0x67 0x20 0x6F 0x66 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x20 0x73 0x6D 0x75 0x67 0x67 - 0x6C 0x65 0x72 0x73 0x2C 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 0x75 - 0x73 0x65 0x20 0x68 0x65 0x72 0x20 0x73 - 0x6B 0x69 0x6C 0x6C 0x20 0x61 0x74 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 - 0x6D 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 - 0x73 0x65 0x6C 0x66 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x61 0x72 0x74 0x3F 0x20 0x20 - 0x49 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6D 0x75 0x67 0x67 0x6C 0x65 0x72 0x73 - 0x20 0x64 0x6F 0x6E 0x92 0x74 0x20 0x72 - 0x65 0x61 0x6C 0x69 0x7A 0x65 0x20 0x74 - 0x68 0x61 0x74 0x20 0x73 0x68 0x65 0x20 - 0x69 0x73 0x6E 0x92 0x74 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x61 0x20 0x6D - 0x75 0x6D 0x6D 0x79 0x2C 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 - 0x74 0x72 0x79 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x65 0x61 0x6C 0x20 0x68 0x65 0x72 - 0x2C 0x20 0x74 0x6F 0x6F 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12348 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_52= 0x0001532a - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 12356 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x6C 0x69 0x76 0x65 0x20 0x64 - 0x61 0x6E 0x67 0x65 0x72 0x6F 0x75 0x73 - 0x6C 0x79 0x0D 0x0A 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x68 0x61 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x62 - 0x65 0x65 0x6E 0x20 0x61 0x20 0x76 0x65 - 0x72 0x79 0x20 0x6D 0x6F 0x64 0x65 0x72 - 0x6E 0x20 0x49 0x6E 0x64 0x69 0x61 0x6E - 0x20 0x6C 0x61 0x64 0x79 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x73 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x65 0x78 0x63 - 0x69 0x74 0x65 0x64 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x73 0x68 0x65 0x20 0x67 0x6F - 0x74 0x20 0x61 0x20 0x73 0x63 0x68 0x6F - 0x6C 0x61 0x72 0x73 0x68 0x69 0x70 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x75 0x64 0x79 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 - 0x74 0x61 0x74 0x65 0x73 0x2E 0x20 0x20 - 0x54 0x68 0x61 0x74 0x92 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x73 - 0x74 0x61 0x72 0x74 0x65 0x64 0x20 0x6C - 0x69 0x76 0x69 0x6E 0x67 0x20 0x64 0x61 - 0x6E 0x67 0x65 0x72 0x6F 0x75 0x73 0x6C - 0x79 0x2E 0x20 0x20 0x53 0x68 0x65 0x92 - 0x73 0x20 0x74 0x72 0x69 0x65 0x64 0x20 - 0x77 0x61 0x6C 0x6B 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x74 0x69 0x67 0x68 0x74 0x2D - 0x72 0x6F 0x70 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x63 0x69 0x72 0x63 0x75 0x73 - 0x2C 0x20 0x70 0x61 0x72 0x61 0x63 0x68 - 0x75 0x74 0x69 0x6E 0x67 0x20 0x6F 0x75 - 0x74 0x20 0x6F 0x66 0x20 0x61 0x69 0x72 - 0x70 0x6C 0x61 0x6E 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x74 0x75 0x6E - 0x74 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x69 0x72 0x20 0x73 - 0x68 0x6F 0x77 0x73 0x2E 0x20 0x0D 0x0A - 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x73 0x68 0x65 0x20 0x64 0x65 0x63 0x69 - 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x72 0x79 0x20 0x70 0x61 0x72 0x61 0x63 - 0x68 0x75 0x74 0x69 0x6E 0x67 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x61 0x20 0x68 0x6F - 0x74 0x20 0x61 0x69 0x72 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x66 0x61 0x6C 0x6C 0x20 - 0x77 0x65 0x6E 0x74 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x66 0x69 0x6E 0x65 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x6C 0x61 0x6E 0x64 - 0x65 0x64 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x65 0x74 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x68 0x61 0x64 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x69 0x70 0x74 0x20 0x72 0x65 0x77 0x72 - 0x69 0x74 0x74 0x65 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x70 0x6F - 0x74 0x20 0x74 0x6F 0x20 0x69 0x6E 0x63 - 0x6C 0x75 0x64 0x65 0x20 0x43 0x6C 0x61 - 0x75 0x64 0x69 0x61 0x92 0x73 0x20 0x73 - 0x74 0x75 0x6E 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x61 0x74 0x92 0x73 0x20 0x68 0x6F - 0x77 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x20 0x66 0x65 0x6C 0x6C 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x63 0x74 0x69 - 0x6E 0x67 0x2E 0x20 0x41 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x27 0x73 0x20 0x62 0x65 - 0x65 0x6E 0x20 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x69 0x74 0x20 0x65 0x76 0x65 0x72 - 0x20 0x73 0x69 0x6E 0x63 0x65 0x2E 0x20 - 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 12495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_53= 0x0001532b - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 12503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xED 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x48 0x69 0x70 0x70 0x69 0x65 - 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x72 0x6F 0x6C - 0x65 0x73 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x69 0x73 - 0x20 0x61 0x20 0x68 0x69 0x70 0x70 0x69 - 0x65 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 - 0x65 0x72 0x20 0x68 0x69 0x70 0x70 0x69 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x63 0x6F 0x76 0x65 0x72 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 0x20 - 0x72 0x65 0x61 0x6C 0x20 0x6D 0x69 0x73 - 0x73 0x69 0x6F 0x6E 0x97 0x74 0x6F 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x68 0x69 0x70 - 0x70 0x69 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x64 0x69 0x73 0x61 0x70 0x70 0x65 0x61 - 0x72 0x65 0x64 0x20 0x62 0x61 0x63 0x6B - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x36 0x30 0x73 0x20 0x69 0x6E 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x73 0x6F 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x66 0x75 0x6E 0x6B - 0x79 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 - 0x64 0x20 0x68 0x6F 0x75 0x73 0x65 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x68 0x69 - 0x70 0x70 0x69 0x65 0x92 0x73 0x20 0x6E - 0x61 0x6D 0x65 0x20 0x77 0x61 0x73 0x20 - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x6E 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x2D 0x74 0x65 0x6C 0x6C 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x20 0x6D 0x65 0x74 - 0x20 0x68 0x69 0x6D 0x20 0x72 0x65 0x6D - 0x65 0x6D 0x62 0x65 0x72 0x20 0x68 0x6F - 0x77 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x73 0x6D 0x65 0x6C 0x6C - 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 - 0x92 0x73 0x20 0x66 0x75 0x74 0x75 0x72 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x69 0x72 0x20 0x68 0x61 0x69 0x72 0x2E - 0x20 0x20 0x53 0x6F 0x2C 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x67 0x72 0x6F 0x6F 0x76 - 0x79 0x2C 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x68 0x61 0x75 0x6E 0x74 - 0x65 0x64 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x65 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x6F 0x77 - 0x6E 0x65 0x72 0x20 0x74 0x68 0x61 0x74 - 0x20 0x73 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x6C 0x61 0x74 0x65 0x2D - 0x62 0x6C 0x6F 0x6F 0x6D 0x69 0x6E 0x67 - 0x20 0x62 0x75 0x74 0x20 0x68 0x6F 0x6D - 0x65 0x6C 0x65 0x73 0x73 0x20 0x68 0x69 - 0x70 0x70 0x69 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x61 0x73 0x6B 0x20 0x69 0x66 - 0x20 0x73 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x73 0x70 0x65 0x6E 0x64 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x6F 0x6E - 0x65 0x20 0x6E 0x69 0x67 0x68 0x74 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x65 0x76 - 0x69 0x6C 0x20 0x6F 0x77 0x6E 0x65 0x72 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x6C 0x61 0x64 0x6C 0x79 0x20 0x69 0x6E - 0x76 0x69 0x74 0x65 0x20 0x68 0x65 0x72 - 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 0x2C - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x69 0x6E - 0x67 0x20 0x68 0x65 0x20 0x68 0x61 0x64 - 0x20 0x63 0x61 0x70 0x74 0x75 0x72 0x65 - 0x64 0x20 0x79 0x65 0x74 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6F - 0x77 0x6E 0x65 0x72 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6E 0x6F 0x74 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x74 0x68 0x61 0x74 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x71 0x75 0x61 0x73 0x68 0x20 0x73 - 0x6F 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x61 0x74 0x20 0x73 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x61 0x6C 0x6D 0x6F 0x73 - 0x74 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 - 0x72 0x65 0x20 0x77 0x69 0x74 0x68 0x6F - 0x75 0x74 0x20 0x61 0x6E 0x79 0x6F 0x6E - 0x65 0x20 0x73 0x65 0x65 0x69 0x6E 0x67 - 0x20 0x68 0x65 0x72 0x2E 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x74 0x69 0x6E 0x79 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x62 0x65 0x20 0x73 0x6E 0x69 0x66 - 0x66 0x65 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x62 0x79 0x20 0x74 0x68 0x65 0x20 0x6F - 0x77 0x6E 0x65 0x72 0x73 0x20 0x64 0x69 - 0x72 0x74 0x79 0x20 0x72 0x61 0x74 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x62 0x65 0x63 - 0x6F 0x6D 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x64 0x69 0x6E 0x6E 0x65 0x72 - 0x3F 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 - 0x67 0x65 0x74 0x20 0x66 0x72 0x65 0x65 - 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x73 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x4A 0x65 0x72 0x65 0x6D 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12677 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_54= 0x0001532c - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 12685 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x0D 0x0A 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 0x6C - 0x6F 0x76 0x65 0x73 0x20 0x64 0x61 0x6E - 0x67 0x65 0x72 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x73 0x68 0x65 0x20 0x68 0x61 0x74 - 0x65 0x73 0x20 0x76 0x69 0x6F 0x6C 0x65 - 0x6E 0x63 0x65 0x2E 0x20 0x20 0x53 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x68 0x65 0x72 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x20 0x72 0x6F 0x6C 0x65 0x73 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x63 0x6F 0x70 0x20 0x77 - 0x68 0x6F 0x20 0x68 0x61 0x73 0x20 0x61 - 0x20 0x73 0x70 0x65 0x63 0x69 0x61 0x6C - 0x20 0x74 0x69 0x65 0x20 0x74 0x68 0x61 - 0x74 0x20 0x70 0x75 0x74 0x73 0x20 0x62 - 0x61 0x64 0x20 0x67 0x75 0x79 0x73 0x20 - 0x73 0x68 0x65 0x20 0x63 0x61 0x74 0x63 - 0x68 0x65 0x73 0x20 0x74 0x6F 0x20 0x73 - 0x6C 0x65 0x65 0x70 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x65 0x6C 0x73 0x20 0x62 - 0x65 0x73 0x69 0x64 0x65 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x61 0x6E 0x64 0x20 0x72 - 0x65 0x63 0x69 0x74 0x65 0x73 0x20 0x61 - 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x73 0x74 - 0x6F 0x72 0x79 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x49 0x6E 0x64 0x69 0x61 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x68 0x65 0x79 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6C 0x64 0x20 0x69 0x6E 0x73 - 0x74 0x65 0x61 0x64 0x20 0x6F 0x66 0x20 - 0x68 0x75 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x69 0x74 0x2E 0x20 0x20 0x57 0x68 0x65 - 0x6E 0x20 0x74 0x68 0x65 0x79 0x20 0x77 - 0x61 0x6B 0x65 0x20 0x75 0x70 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x69 0x6D - 0x69 0x6E 0x61 0x6C 0x73 0x20 0x61 0x72 - 0x65 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x65 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x73 0x20 0x74 0x6F 0x20 0x67 - 0x6F 0x6F 0x64 0x20 0x67 0x75 0x79 0x73 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x73 0x20 0x63 0x61 0x74 0x63 - 0x68 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x68 - 0x65 0x72 0x20 0x74 0x72 0x69 0x63 0x6B - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x72 - 0x65 0x61 0x74 0x65 0x6E 0x20 0x74 0x6F - 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x20 0x63 - 0x61 0x6E 0x92 0x74 0x20 0x74 0x72 0x61 - 0x6E 0x73 0x66 0x6F 0x72 0x6D 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x74 0x6F 0x6F 0x2E - 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x73 0x74 0x6F 0x70 - 0x20 0x74 0x68 0x65 0x69 0x72 0x20 0x70 - 0x6C 0x61 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x20 - 0x68 0x65 0x72 0x20 0x70 0x6F 0x77 0x65 - 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12814 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_55= 0x0001532d - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 12822 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x50 0x69 0x6C 0x6F 0x74 0x0D - 0x0A 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x69 0x6D 0x61 0x67 0x69 0x6E 0x65 - 0x73 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x70 0x61 0x63 - 0x65 0x20 0x63 0x6F 0x70 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x79 0x65 0x61 - 0x72 0x20 0x32 0x30 0x38 0x30 0x2E 0x20 - 0x20 0x42 0x79 0x20 0x74 0x68 0x65 0x6E - 0x2C 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x70 0x73 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x64 0x72 0x69 0x76 - 0x65 0x20 0x73 0x70 0x61 0x63 0x65 0x20 - 0x72 0x6F 0x63 0x6B 0x65 0x74 0x73 0x20 - 0x69 0x6E 0x73 0x74 0x65 0x61 0x64 0x20 - 0x6F 0x66 0x20 0x70 0x61 0x74 0x72 0x6F - 0x6C 0x20 0x63 0x61 0x72 0x73 0x2E 0x20 - 0x20 0x49 0x6E 0x20 0x74 0x68 0x69 0x73 - 0x20 0x72 0x6F 0x6C 0x65 0x2C 0x20 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 0x70 - 0x74 0x75 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x71 0x75 0x61 0x73 0x68 0x65 - 0x72 0x2C 0x20 0x74 0x68 0x65 0x20 0x77 - 0x65 0x69 0x72 0x64 0x20 0x67 0x75 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x92 0x74 0x20 0x73 0x74 0x61 0x6E 0x64 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x61 0x6E - 0x64 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x73 0x20 0x65 0x76 0x65 - 0x72 0x79 0x20 0x6B 0x69 0x64 0x20 0x68 - 0x65 0x20 0x73 0x65 0x65 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x20 0x73 0x71 - 0x75 0x61 0x73 0x68 0x65 0x64 0x20 0x6D - 0x65 0x73 0x73 0x2E 0x20 0x0D 0x0A 0x53 - 0x68 0x65 0x20 0x73 0x70 0x6F 0x74 0x73 - 0x20 0x53 0x71 0x75 0x61 0x73 0x68 0x65 - 0x72 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x73 0x20 0x6A 0x65 0x74 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x6F 0x66 0x66 0x20 0x69 0x6E - 0x20 0x68 0x65 0x72 0x20 0x72 0x6F 0x63 - 0x6B 0x65 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x61 0x74 0x63 0x68 0x20 0x68 0x69 0x6D - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x6E 0x2C 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x61 0x73 0x20 0x73 0x68 0x65 - 0x20 0x6C 0x61 0x6E 0x64 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x68 0x75 0x67 0x65 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 0x6F - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x53 0x71 0x75 0x61 0x73 - 0x68 0x65 0x72 0x20 0x69 0x73 0x20 0x6E - 0x6F 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x73 0x65 0x65 - 0x6E 0x2E 0x20 0x0D 0x0A 0x48 0x61 0x73 - 0x20 0x74 0x68 0x65 0x20 0x53 0x71 0x75 - 0x61 0x73 0x68 0x65 0x72 0x20 0x67 0x6F - 0x74 0x74 0x65 0x6E 0x20 0x61 0x77 0x61 - 0x79 0x20 0x61 0x67 0x61 0x69 0x6E 0x3F - 0x20 0x20 0x44 0x69 0x64 0x20 0x68 0x65 - 0x20 0x70 0x61 0x72 0x61 0x63 0x68 0x75 - 0x74 0x65 0x20 0x74 0x6F 0x20 0x73 0x61 - 0x66 0x65 0x74 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 0x6F - 0x6E 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x63 0x61 0x6E 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x61 0x6E 0x64 - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x68 - 0x69 0x6D 0x20 0x69 0x6E 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12957 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_56= 0x0001532e - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 12965 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x0D 0x0A 0x43 0x72 0x61 0x73 0x68 0x20 - 0x69 0x73 0x20 0x6D 0x61 0x64 0x65 0x20 - 0x6F 0x66 0x20 0x6D 0x65 0x74 0x61 0x6C - 0x2C 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x92 0x74 - 0x20 0x73 0x77 0x69 0x6D 0x20 0x6F 0x66 - 0x66 0x20 0x74 0x68 0x65 0x20 0x69 0x73 - 0x6C 0x61 0x6E 0x64 0x2E 0x20 0x20 0x49 - 0x6E 0x73 0x74 0x65 0x61 0x64 0x20 0x68 - 0x65 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x65 0x64 0x20 0x72 0x75 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x4D 0x61 0x79 0x62 0x65 0x20 - 0x77 0x69 0x74 0x68 0x20 0x68 0x69 0x73 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x20 0x6C - 0x65 0x67 0x73 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x69 0x73 - 0x6C 0x61 0x6E 0x64 0x21 0x20 0x0D 0x0A - 0x48 0x65 0x20 0x6A 0x75 0x6D 0x70 0x65 - 0x64 0x20 0x66 0x61 0x72 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x2C 0x20 0x61 0x6C - 0x6C 0x20 0x72 0x69 0x67 0x68 0x74 0x97 - 0x61 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 - 0x65 0x64 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x6F 0x72 0x20 0x6F - 0x66 0x20 0x61 0x20 0x66 0x61 0x6D 0x6F - 0x75 0x73 0x20 0x43 0x68 0x69 0x6E 0x65 - 0x73 0x65 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x61 0x20 0x67 0x72 - 0x6F 0x75 0x70 0x20 0x6F 0x66 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x73 0x74 0x61 - 0x72 0x73 0x20 0x77 0x65 0x72 0x65 0x20 - 0x65 0x61 0x74 0x69 0x6E 0x67 0x2E 0x20 - 0x20 0x45 0x76 0x65 0x72 0x79 0x6F 0x6E - 0x65 0x20 0x63 0x72 0x6F 0x77 0x64 0x65 - 0x64 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x77 0x69 0x74 - 0x68 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x63 0x68 0x6F 0x70 0x73 0x74 0x69 0x63 - 0x6B 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x73 0x6E 0x65 0x61 0x6B 0x65 - 0x64 0x20 0x75 0x70 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x43 0x72 0x61 0x73 - 0x68 0x20 0x61 0x6E 0x64 0x20 0x77 0x68 - 0x69 0x73 0x6B 0x65 0x64 0x20 0x68 0x69 - 0x6D 0x20 0x61 0x77 0x61 0x79 0x20 0x74 - 0x6F 0x20 0x73 0x65 0x65 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 - 0x64 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13083 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_57= 0x0001532f - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 13091 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x77 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x57 0x69 0x6C 0x6C 0x79 0x92 - 0x73 0x20 0x49 0x6E 0x76 0x65 0x6E 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x4D 0x6F 0x73 - 0x74 0x6C 0x79 0x2C 0x20 0x43 0x72 0x61 - 0x73 0x68 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x61 0x20 0x66 0x61 0x74 0x68 0x65 - 0x72 0x20 0x66 0x69 0x67 0x75 0x72 0x65 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 0x72 - 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x68 - 0x65 0x92 0x64 0x20 0x62 0x65 0x20 0x69 - 0x6E 0x76 0x65 0x6E 0x74 0x65 0x64 0x20 - 0x62 0x79 0x20 0x61 0x20 0x73 0x63 0x69 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x6E - 0x61 0x6D 0x65 0x64 0x20 0x57 0x69 0x6C - 0x6C 0x79 0x2C 0x20 0x61 0x20 0x67 0x72 - 0x65 0x65 0x6E 0x20 0x73 0x63 0x69 0x65 - 0x6E 0x74 0x69 0x73 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x43 0x72 0x61 0x73 0x68 0x20 0x74 0x6F - 0x20 0x68 0x65 0x6C 0x70 0x20 0x68 0x69 - 0x6D 0x20 0x67 0x75 0x61 0x72 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 0x6F - 0x72 0x61 0x74 0x6F 0x72 0x79 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x73 0x74 0x20 0x61 - 0x20 0x67 0x69 0x61 0x6E 0x74 0x20 0x72 - 0x61 0x74 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x72 0x61 0x74 0x20 0x68 0x61 0x73 - 0x20 0x67 0x72 0x6F 0x77 0x6E 0x20 0x73 - 0x6F 0x20 0x6C 0x61 0x72 0x67 0x65 0x20 - 0x62 0x79 0x20 0x64 0x72 0x69 0x6E 0x6B - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x57 0x69 0x6C 0x6C 0x79 - 0x92 0x73 0x20 0x73 0x63 0x69 0x65 0x6E - 0x63 0x65 0x20 0x65 0x78 0x70 0x65 0x72 - 0x69 0x6D 0x65 0x6E 0x74 0x73 0x2E 0x20 - 0x42 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x74 0x20 0x69 0x73 0x20 0x74 - 0x77 0x69 0x63 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x6F 0x66 - 0x20 0x43 0x72 0x61 0x73 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x6D 0x69 0x67 0x68 0x74 - 0x20 0x67 0x65 0x74 0x20 0x65 0x76 0x65 - 0x6E 0x20 0x62 0x69 0x67 0x67 0x65 0x72 - 0x97 0x66 0x61 0x73 0x74 0x2E 0x20 0x0D - 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x43 0x72 0x61 0x73 0x68 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x20 - 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x69 0x6E 0x76 0x65 0x6E 0x74 0x6F 0x72 - 0x20 0x66 0x61 0x74 0x68 0x65 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x72 0x61 0x74 0x20 0x61 0x74 0x74 - 0x61 0x63 0x6B 0x3F 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x68 0x69 0x73 0x20 0x6A - 0x75 0x6D 0x70 0x69 0x6E 0x67 0x20 0x73 - 0x6B 0x69 0x6C 0x6C 0x73 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x68 0x69 0x6D 0x20 0x6F - 0x75 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13214 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_58= 0x00015330 - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 13222 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x62 0x6F 0x74 0x20 - 0x43 0x6F 0x70 0x0D 0x0A 0x43 0x72 0x61 - 0x73 0x68 0x20 0x73 0x65 0x65 0x73 0x20 - 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 0x20 - 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x66 0x61 0x72 0x2D 0x6F 0x75 - 0x74 0x20 0x63 0x6F 0x70 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x79 0x65 0x61 - 0x72 0x20 0x32 0x30 0x32 0x30 0x97 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x63 0x6F 0x70 0x20 0x77 - 0x68 0x6F 0x20 0x63 0x61 0x6E 0x20 0x77 - 0x61 0x6C 0x6B 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x77 0x61 0x6C 0x6C - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x6F 0x70 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x66 - 0x6C 0x6F 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x63 0x61 0x74 0x63 0x68 0x20 0x62 0x61 - 0x64 0x20 0x67 0x75 0x79 0x73 0x2E 0x20 - 0x20 0x48 0x69 0x73 0x20 0x70 0x61 0x72 - 0x74 0x6E 0x65 0x72 0x20 0x68 0x61 0x73 - 0x20 0x62 0x65 0x65 0x6E 0x20 0x63 0x61 - 0x70 0x74 0x75 0x72 0x65 0x64 0x20 0x62 - 0x79 0x20 0x63 0x72 0x6F 0x6F 0x6B 0x73 - 0x20 0x77 0x68 0x6F 0x20 0x77 0x61 0x6E - 0x74 0x20 0x24 0x31 0x20 0x6D 0x69 0x6C - 0x6C 0x69 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x66 0x72 0x65 0x65 0x2E 0x20 0x20 0x43 - 0x72 0x61 0x73 0x68 0x20 0x70 0x6C 0x61 - 0x6E 0x73 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6C 0x6F 0x63 0x6B 0x20 0x74 0x6F 0x77 - 0x65 0x72 0x20 0x61 0x74 0x20 0x6D 0x69 - 0x64 0x6E 0x69 0x67 0x68 0x74 0x2C 0x20 - 0x61 0x6C 0x6F 0x6E 0x65 0x2C 0x20 0x77 - 0x69 0x74 0x68 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x6E 0x65 0x79 0x2E 0x20 0x20 - 0x41 0x74 0x20 0x6D 0x69 0x64 0x6E 0x69 - 0x67 0x68 0x74 0x2C 0x20 0x43 0x72 0x61 - 0x73 0x68 0x20 0x69 0x73 0x20 0x73 0x75 - 0x72 0x72 0x6F 0x75 0x6E 0x64 0x65 0x64 - 0x20 0x62 0x79 0x20 0x33 0x20 0x6D 0x65 - 0x61 0x6E 0x2D 0x6C 0x6F 0x6F 0x6B 0x69 - 0x6E 0x67 0x20 0x67 0x75 0x79 0x73 0x2E - 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x43 0x72 0x61 0x73 - 0x68 0x20 0x64 0x65 0x66 0x65 0x6E 0x64 - 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 - 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x74 0x6F 0x20 0x62 - 0x6C 0x61 0x62 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x74 0x68 0x65 0x79 0x92 0x76 0x65 0x20 - 0x68 0x69 0x64 0x64 0x65 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x70 0x61 0x72 0x74 0x6E - 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13344 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_59= 0x00015331 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 13352 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x46 0x6C 0x69 0x67 0x68 0x74 - 0x20 0x41 0x74 0x74 0x65 0x6E 0x64 0x61 - 0x6E 0x74 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x66 0x6C 0x61 - 0x77 0x20 0x69 0x6E 0x20 0x43 0x72 0x61 - 0x73 0x68 0x92 0x73 0x20 0x72 0x6F 0x62 - 0x6F 0x74 0x20 0x64 0x65 0x73 0x69 0x67 - 0x6E 0x20 0x69 0x73 0x20 0x68 0x69 0x73 - 0x20 0x62 0x61 0x74 0x74 0x65 0x72 0x79 - 0x2E 0x20 0x20 0x49 0x66 0x20 0x68 0x65 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x73 0x74 0x61 0x79 0x20 0x63 0x68 - 0x61 0x72 0x67 0x65 0x64 0x2C 0x20 0x68 - 0x65 0x20 0x66 0x61 0x69 0x6E 0x74 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x66 0x61 0x6C - 0x6C 0x73 0x20 0x6F 0x76 0x65 0x72 0x2E - 0x20 0x20 0x43 0x72 0x61 0x73 0x68 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F - 0x66 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x66 0x6C 0x69 0x67 - 0x68 0x74 0x20 0x61 0x74 0x74 0x65 0x6E - 0x64 0x61 0x6E 0x74 0x20 0x6F 0x6E 0x20 - 0x61 0x20 0x70 0x6C 0x61 0x6E 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6F 0x2D 0x70 - 0x69 0x6C 0x6F 0x74 0x20 0x61 0x72 0x65 - 0x20 0x62 0x61 0x74 0x74 0x65 0x72 0x79 - 0x2D 0x70 0x6F 0x77 0x65 0x72 0x65 0x64 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x73 0x2C - 0x20 0x74 0x6F 0x6F 0x2E 0x20 0x20 0x43 - 0x72 0x61 0x73 0x68 0x92 0x73 0x20 0x6A - 0x6F 0x62 0x20 0x69 0x73 0x20 0x74 0x6F - 0x20 0x67 0x72 0x65 0x65 0x74 0x20 0x70 - 0x61 0x73 0x73 0x65 0x6E 0x67 0x65 0x72 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 - 0x74 0x63 0x68 0x20 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x77 0x69 0x6E 0x64 - 0x6F 0x77 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x69 - 0x6F 0x75 0x73 0x20 0x74 0x72 0x6F 0x70 - 0x69 0x63 0x61 0x6C 0x20 0x69 0x73 0x6C - 0x61 0x6E 0x64 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x73 0x20 0x61 0x20 0x63 - 0x61 0x76 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x61 0x20 0x6D 0x61 0x67 0x69 0x63 - 0x20 0x70 0x6F 0x77 0x65 0x72 0x20 0x62 - 0x6F 0x78 0x20 0x69 0x6E 0x73 0x69 0x64 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x72 0x65 0x63 0x68 - 0x61 0x72 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x6C 0x69 0x66 0x65 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x79 0x20 0x6F 0x6E 0x6C 0x79 - 0x20 0x68 0x61 0x76 0x65 0x20 0x61 0x20 - 0x66 0x65 0x77 0x20 0x68 0x6F 0x75 0x72 - 0x73 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x62 0x61 0x74 0x74 0x65 0x72 0x69 0x65 - 0x73 0x2E 0x20 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x69 0x73 0x6C 0x61 0x6E 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x76 0x65 0x20 0x62 0x65 0x66 0x6F - 0x72 0x65 0x20 0x74 0x68 0x65 0x79 0x20 - 0x72 0x75 0x6E 0x20 0x6F 0x75 0x74 0x20 - 0x6F 0x66 0x20 0x70 0x2D 0x6F 0x2D 0x77 - 0x2D 0x65 0x2D 0x72 0x2E 0x2E 0x2E 0x3F - 0x20 0x20 0x57 0x69 0x74 0x68 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x73 0x65 0x63 0x6F - 0x6E 0x64 0x73 0x20 0x6C 0x65 0x66 0x74 - 0x2C 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x73 0x20 0x67 0x65 - 0x74 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x77 0x69 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x62 0x72 - 0x69 0x64 0x67 0x65 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x76 0x65 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13496 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5A= 0x00015332 - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 13504 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B6, 0x0) - BYTE - 0x03 0x03 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x0D 0x0A 0x48 0x65 0x72 0x20 0x6D - 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 0x61 - 0x79 0x73 0x20 0x69 0x74 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x68 0x61 0x70 0x70 0x65 0x6E 0x2C - 0x20 0x62 0x75 0x74 0x20 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x64 0x72 0x65 0x61 0x6D - 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 0x63 - 0x6F 0x6D 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x72 0x65 0x73 0x73 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x20 0x74 0x61 0x6B 0x65 0x20 0x6F 0x6E - 0x20 0x61 0x6E 0x79 0x20 0x70 0x61 0x72 - 0x74 0x2E 0x20 0x20 0x45 0x76 0x65 0x72 - 0x79 0x20 0x64 0x61 0x79 0x20 0x73 0x68 - 0x65 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x65 0x73 0x20 0x73 0x68 - 0x65 0x20 0x6D 0x69 0x67 0x68 0x74 0x20 - 0x6E 0x65 0x65 0x64 0x2C 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x66 0x61 0x69 0x6E 0x74 - 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x69 0x6E 0x67 0x2C 0x20 0x66 - 0x61 0x6C 0x6C 0x69 0x6E 0x67 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x6B 0x61 0x72 0x61 - 0x74 0x65 0x20 0x6B 0x69 0x63 0x6B 0x69 - 0x6E 0x67 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x73 0x68 0x65 0x20 0x73 0x70 - 0x65 0x6E 0x64 0x73 0x20 0x6D 0x6F 0x73 - 0x74 0x20 0x6F 0x66 0x20 0x68 0x65 0x72 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x70 0x72 - 0x61 0x63 0x74 0x69 0x63 0x69 0x6E 0x67 - 0x20 0x68 0x65 0x72 0x20 0x64 0x61 0x6E - 0x63 0x69 0x6E 0x67 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x27 0x73 0x20 0x73 0x6F 0x20 - 0x74 0x61 0x6C 0x65 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x74 0x6F 0x20 0x64 - 0x6F 0x20 0x61 0x20 0x73 0x6F 0x6C 0x6F - 0x20 0x64 0x61 0x6E 0x63 0x65 0x20 0x72 - 0x6F 0x75 0x74 0x69 0x6E 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x4D 0x65 0x78 - 0x69 0x63 0x61 0x6E 0x20 0x74 0x68 0x65 - 0x61 0x74 0x65 0x72 0x20 0x67 0x72 0x6F - 0x75 0x70 0x20 0x74 0x68 0x61 0x74 0x20 - 0x77 0x61 0x73 0x20 0x74 0x6F 0x75 0x72 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x55 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 - 0x74 0x61 0x74 0x65 0x73 0x2E 0x20 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x2C - 0x20 0x77 0x68 0x6F 0x20 0x69 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x6C - 0x6F 0x6F 0x6B 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x6E 0x65 0x77 0x20 0x74 - 0x61 0x6C 0x65 0x6E 0x74 0x2C 0x20 0x73 - 0x61 0x77 0x20 0x45 0x6C 0x69 0x7A 0x61 - 0x92 0x73 0x20 0x73 0x6F 0x6C 0x6F 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x73 0x6B 0x65 - 0x64 0x20 0x68 0x65 0x72 0x20 0x74 0x6F - 0x20 0x61 0x75 0x64 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13630 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5B= 0x00015333 - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 13638 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x48 0x69 0x70 0x70 0x69 0x65 - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x36 0x30 0x73 0x20 0x68 0x69 0x70 0x70 - 0x69 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x70 0x65 0x72 0x66 - 0x65 0x63 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x45 0x6C 0x69 0x7A 0x61 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x73 0x2E 0x20 0x53 0x68 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x6F 0x76 0x79 0x20 0x63 0x6C - 0x6F 0x74 0x68 0x65 0x73 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x73 0x65 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x74 0x20 0x68 - 0x65 0x72 0x20 0x61 0x75 0x6E 0x74 0x20 - 0x4D 0x61 0x72 0x74 0x68 0x61 0x92 0x73 - 0x20 0x6F 0x6C 0x64 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x2E 0x20 0x0D 0x0A 0x4C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x74 0x72 0x75 - 0x65 0x20 0x68 0x69 0x70 0x70 0x69 0x65 - 0x2C 0x20 0x45 0x6C 0x69 0x7A 0x61 0x20 - 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 0x75 - 0x6E 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x74 0x68 0x65 0x20 0x75 0x6E 0x69 0x76 - 0x65 0x72 0x73 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x73 0x65 0x6E 0x73 0x65 0x73 0x20 0x65 - 0x76 0x69 0x6C 0x20 0x66 0x6F 0x72 0x63 - 0x65 0x73 0x20 0x61 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 0x2C - 0x20 0x73 0x68 0x65 0x20 0x6B 0x6E 0x65 - 0x65 0x6C 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x65 0x64 0x69 0x74 0x61 0x74 0x65 0x20 - 0x61 0x77 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x65 0x76 0x69 0x6C 0x2E 0x20 0x20 - 0x4A 0x75 0x73 0x74 0x20 0x74 0x68 0x65 - 0x6E 0x2C 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x69 0x62 0x72 0x61 0x72 0x79 0x2C - 0x20 0x74 0x68 0x65 0x20 0x6C 0x69 0x64 - 0x20 0x6F 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x6F 0x64 0x65 0x6E 0x20 0x63 0x6F 0x66 - 0x66 0x69 0x6E 0x20 0x63 0x72 0x65 0x61 - 0x6B 0x73 0x20 0x6F 0x70 0x65 0x6E 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6F 0x75 0x74 - 0x20 0x63 0x6F 0x6D 0x65 0x73 0x20 0x61 - 0x20 0x67 0x68 0x6F 0x73 0x74 0x2D 0x77 - 0x68 0x69 0x74 0x65 0x20 0x67 0x75 0x79 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x20 - 0x62 0x61 0x67 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x68 0x69 0x73 0x20 0x68 0x65 0x61 - 0x64 0x2E 0x20 0x20 0x49 0x73 0x20 0x74 - 0x68 0x69 0x73 0x20 0x61 0x20 0x70 0x68 - 0x61 0x6E 0x74 0x6F 0x6D 0x3F 0x20 0x20 - 0x53 0x68 0x65 0x20 0x6C 0x6F 0x6F 0x6B - 0x73 0x20 0x61 0x67 0x61 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x73 0x20 0x77 0x61 0x6C 0x6B 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x2E 0x20 0x54 0x68 0x65 - 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F 0x6D - 0x20 0x77 0x61 0x6C 0x6B 0x73 0x20 0x74 - 0x6F 0x77 0x61 0x72 0x64 0x20 0x68 0x65 - 0x72 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x45 0x6C - 0x69 0x7A 0x61 0x20 0x64 0x65 0x61 0x6C - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x69 0x73 0x20 0x62 0x61 0x67 0x2D 0x68 - 0x65 0x61 0x64 0x3F 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x68 0x65 0x72 0x20 0x70 - 0x65 0x61 0x63 0x65 0x20 0x6E 0x65 0x63 - 0x6B 0x6C 0x61 0x63 0x65 0x20 0x70 0x72 - 0x6F 0x74 0x65 0x63 0x74 0x20 0x68 0x65 - 0x72 0x2C 0x20 0x6F 0x72 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 0x6E - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x75 - 0x73 0x65 0x20 0x6B 0x61 0x72 0x61 0x74 - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x61 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x61 0x72 0x79 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13785 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5C= 0x00015334 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 13793 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x4E 0x75 0x72 0x73 0x65 0x0D - 0x0A 0x45 0x6C 0x69 0x7A 0x61 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 - 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x75 0x70 0x65 0x72 - 0x20 0x6E 0x75 0x72 0x73 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x63 0x61 0x6E 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x20 0x6F 0x72 - 0x20 0x67 0x72 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x68 0x65 0x6C 0x70 0x20 0x67 0x65 - 0x74 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x63 0x63 0x69 0x64 0x65 0x6E 0x74 - 0x73 0x2C 0x20 0x6F 0x72 0x20 0x66 0x65 - 0x65 0x6C 0x20 0x62 0x65 0x74 0x74 0x65 - 0x72 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x79 0x27 0x72 0x65 0x20 0x68 - 0x75 0x72 0x74 0x2E 0x20 0x20 0x49 0x6E - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x45 0x6C 0x69 0x7A - 0x61 0x20 0x67 0x65 0x74 0x73 0x20 0x61 - 0x20 0x63 0x61 0x6C 0x6C 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x77 0x62 0x6F 0x79 0x20 0x63 0x61 - 0x66 0xE9 0x2E 0x20 0x41 0x20 0x6D 0x61 - 0x6E 0x20 0x69 0x73 0x20 0x63 0x68 0x6F - 0x6B 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 - 0x61 0x20 0x54 0x2D 0x62 0x6F 0x6E 0x65 - 0x21 0x20 0x20 0x53 0x68 0x65 0x20 0x6A - 0x75 0x6D 0x70 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x61 0x6D 0x62 0x75 - 0x6C 0x61 0x6E 0x63 0x65 0x20 0x77 0x69 - 0x74 0x68 0x6F 0x75 0x74 0x20 0x77 0x61 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x64 0x72 - 0x69 0x76 0x65 0x72 0x2E 0x20 0x0D 0x0A - 0x41 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x66 0xE9 0x2C 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x61 0x72 0x65 0x20 - 0x63 0x72 0x6F 0x77 0x64 0x65 0x64 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x67 0x75 0x79 0x20 0x6C - 0x79 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x66 0x6C 0x6F 0x6F - 0x72 0x2E 0x20 0x45 0x6C 0x69 0x7A 0x61 - 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B 0x73 - 0x20 0x66 0x61 0x73 0x74 0x2C 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x73 0x20 0x62 0x65 - 0x74 0x77 0x65 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x67 0x73 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x72 - 0x6F 0x77 0x64 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x67 0x72 - 0x6F 0x77 0x73 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x2E 0x20 0x20 0x4A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x72 0x65 0x61 0x6C 0x69 0x7A - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x93 - 0x67 0x75 0x79 0x94 0x20 0x69 0x73 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x61 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x21 0x20 - 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 0x73 - 0x61 0x76 0x65 0x20 0x61 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x3F 0x20 0x20 0x4F 0x72 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x70 0x75 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x69 0x6E 0x2D 0x6D 0x61 - 0x6E 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x61 0x6D 0x62 0x75 0x6C 0x61 0x6E - 0x63 0x65 0x20 0x61 0x6E 0x64 0x20 0x71 - 0x75 0x69 0x63 0x6B 0x6C 0x79 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x69 0x6E 0x76 0x65 0x6E 0x74 0x6F 0x72 - 0x2C 0x20 0x61 0x20 0x67 0x65 0x6E 0x69 - 0x75 0x73 0x20 0x67 0x72 0x65 0x65 0x6E - 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 - 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13933 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5D= 0x00015335 - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 13941 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_68=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_68=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_68=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x43 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x4D 0x65 0x78 0x69 0x63 0x61 0x6E 0x20 - 0x76 0x69 0x6C 0x6C 0x61 0x67 0x65 0x2C - 0x20 0x45 0x6C 0x69 0x7A 0x61 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 - 0x20 0x73 0x74 0x61 0x72 0x72 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x20 0x61 0x64 0x76 - 0x65 0x6E 0x74 0x75 0x72 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x61 0x6B 0x65 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 0x66 - 0x61 0x72 0x2D 0x61 0x77 0x61 0x79 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 0x77 - 0x69 0x74 0x68 0x20 0x68 0x65 0x72 0x20 - 0x62 0x65 0x73 0x74 0x20 0x66 0x72 0x69 - 0x65 0x6E 0x64 0x2C 0x20 0x61 0x20 0x63 - 0x61 0x74 0x20 0x77 0x68 0x6F 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x73 0x65 0x63 - 0x72 0x65 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x75 0x6E 0x6C 0x6F 0x63 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x6C 0x6C 0x20 0x6B 0x69 - 0x6E 0x64 0x73 0x20 0x6F 0x66 0x20 0x74 - 0x72 0x65 0x61 0x73 0x75 0x72 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x45 0x6C 0x69 0x7A - 0x61 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x20 0x63 0x61 0x74 0x20 0x66 0x6C - 0x79 0x20 0x6F 0x66 0x66 0x20 0x74 0x6F - 0x20 0x61 0x20 0x64 0x69 0x73 0x74 0x61 - 0x6E 0x74 0x20 0x6D 0x6F 0x75 0x6E 0x74 - 0x61 0x69 0x6E 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x69 0x73 0x20 0x73 0x61 0x69 0x64 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x61 0x20 - 0x63 0x61 0x62 0x69 0x6E 0x20 0x77 0x69 - 0x74 0x68 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x20 0x69 0x6E 0x73 0x69 - 0x64 0x65 0x2E 0x20 0x20 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x65 0x6E 0x74 0x65 0x72 - 0x73 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x62 0x69 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x65 0x61 0x72 0x63 0x68 0x65 0x73 - 0x20 0x65 0x76 0x65 0x72 0x79 0x77 0x68 - 0x65 0x72 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x74 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x65 0x73 0x20 0x74 0x6F 0x77 - 0x61 0x72 0x64 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x64 0x64 0x65 0x72 0x2E 0x20 - 0x20 0x45 0x6C 0x69 0x7A 0x61 0x20 0x77 - 0x61 0x6C 0x6B 0x73 0x20 0x73 0x6C 0x6F - 0x77 0x6C 0x79 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x64 0x64 0x65 - 0x72 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x61 0x72 0x73 0x20 0x74 0x65 0x72 0x72 - 0x69 0x62 0x6C 0x65 0x20 0x6E 0x6F 0x69 - 0x73 0x65 0x73 0x2E 0x20 0x20 0x41 0x20 - 0x6D 0x61 0x73 0x6B 0x20 0x69 0x73 0x20 - 0x67 0x75 0x61 0x72 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x74 0x72 0x65 - 0x61 0x73 0x75 0x72 0x65 0x20 0x63 0x68 - 0x65 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x72 0x6E 0x69 0x6E 0x67 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x61 0x79 0x20 0x61 0x77 0x61 0x79 - 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x67 0x65 0x74 0x20 0x70 - 0x61 0x73 0x74 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x73 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x3F 0x20 0x20 0x41 - 0x6E 0x64 0x20 0x68 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 - 0x70 0x65 0x72 0x73 0x75 0x61 0x64 0x65 - 0x20 0x68 0x65 0x72 0x20 0x74 0x65 0x72 - 0x72 0x69 0x66 0x69 0x65 0x64 0x20 0x63 - 0x61 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x6D 0x65 0x20 0x6F 0x75 0x74 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x74 0x65 0x6D 0x20 0x70 0x6F 0x6C - 0x65 0x20 0x61 0x6E 0x64 0x20 0x6F 0x70 - 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 0x74 - 0x72 0x65 0x61 0x73 0x75 0x72 0x65 0x20 - 0x63 0x68 0x65 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14090 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5E= 0x00015336 - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 14098 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x6D 0x69 0x73 0x75 0x6E 0x64 - 0x65 0x72 0x73 0x74 0x6F 0x6F 0x64 0x0D - 0x0A 0x50 0x65 0x6F 0x70 0x6C 0x65 0x20 - 0x64 0x6F 0x6E 0x92 0x74 0x20 0x75 0x6E - 0x64 0x65 0x72 0x73 0x74 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x46 0x72 - 0x61 0x6E 0x6B 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x69 0x73 0x6E 0x92 0x74 - 0x20 0x61 0x20 0x74 0x6F 0x75 0x67 0x68 - 0x20 0x67 0x75 0x79 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x46 0x72 0x61 0x6E 0x6B - 0x20 0x68 0x61 0x73 0x20 0x75 0x73 0x65 - 0x64 0x20 0x74 0x68 0x69 0x73 0x20 0x6D - 0x69 0x73 0x75 0x6E 0x64 0x65 0x72 0x73 - 0x74 0x61 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x6C 0x6F 0x74 0x73 0x20 0x6F 0x66 0x20 - 0x6D 0x6F 0x6E 0x65 0x79 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x32 0x30 0x2C 0x20 0x68 - 0x65 0x20 0x74 0x72 0x69 0x65 0x64 0x20 - 0x6F 0x75 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x70 0x61 - 0x72 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x65 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 - 0x20 0x73 0x61 0x69 0x64 0x20 0x68 0x6F - 0x77 0x20 0x6D 0x75 0x63 0x68 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x65 0x64 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 0x20 - 0x62 0x6F 0x64 0x79 0x20 0x67 0x75 0x61 - 0x72 0x64 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x67 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 - 0x20 0x53 0x69 0x6E 0x63 0x65 0x20 0x74 - 0x68 0x65 0x6E 0x2C 0x20 0x68 0x65 0x92 - 0x73 0x20 0x70 0x6C 0x61 0x79 0x65 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x64 0x6F 0x7A 0x65 0x6E 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x73 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x6E 0x6F 0x77 0x20 0x69 0x74 - 0x27 0x73 0x20 0x74 0x6F 0x6F 0x20 0x65 - 0x61 0x73 0x79 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x70 - 0x61 0x72 0x74 0x73 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x64 0x6F 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x93 0x72 0x65 0x61 0x6C 0x94 - 0x20 0x61 0x63 0x74 0x69 0x6E 0x67 0x2E - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 14210 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5F= 0x00015337 - - -CHUNK('HTOP', _help_48544F50_5F, "") -SUBFILE -#line 14218 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x47 0x75 0x69 0x6E 0x65 0x61 - 0x20 0x50 0x69 0x67 0x0D 0x0A 0x4A 0x75 - 0x73 0x74 0x20 0x66 0x6F 0x72 0x20 0x66 - 0x75 0x6E 0x2C 0x20 0x46 0x72 0x61 0x6E - 0x6B 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x74 0x68 - 0x65 0x20 0x67 0x75 0x79 0x20 0x77 0x68 - 0x6F 0x20 0x69 0x73 0x20 0x61 0x6C 0x77 - 0x61 0x79 0x73 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x74 0x6F - 0x20 0x74 0x72 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x74 0x65 0x73 0x74 0x20 - 0x62 0x75 0x62 0x62 0x6C 0x69 0x6E 0x67 - 0x20 0x64 0x72 0x69 0x6E 0x6B 0x20 0x63 - 0x6F 0x6F 0x6B 0x65 0x64 0x20 0x75 0x70 - 0x20 0x62 0x79 0x20 0x74 0x68 0x65 0x20 - 0x77 0x69 0x66 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x65 0x76 0x69 0x6C - 0x20 0x6F 0x77 0x6E 0x65 0x72 0x20 0x6F - 0x66 0x20 0x61 0x20 0x68 0x61 0x75 0x6E - 0x74 0x65 0x64 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x73 0x74 0x61 0x72 - 0x74 0x20 0x6F 0x75 0x74 0x20 0x77 0x69 - 0x74 0x68 0x20 0x46 0x72 0x61 0x6E 0x6B - 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E 0x67 - 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x27 0x64 0x20 0x67 0x65 0x74 0x20 - 0x61 0x20 0x77 0x68 0x69 0x66 0x66 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x64 - 0x72 0x69 0x6E 0x6B 0x2C 0x20 0x61 0x6E - 0x64 0x97 0x62 0x61 0x6D 0x21 0x97 0x74 - 0x75 0x72 0x6E 0x20 0x67 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x66 0x61 0x69 0x6E 0x74 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x66 0x61 - 0x6C 0x6C 0x20 0x66 0x6C 0x61 0x74 0x20 - 0x6F 0x6E 0x20 0x68 0x69 0x73 0x20 0x66 - 0x61 0x63 0x65 0x2E 0x20 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x62 0x6C - 0x65 0x6D 0x20 0x69 0x73 0x2C 0x20 0x46 - 0x72 0x61 0x6E 0x6B 0x20 0x68 0x61 0x73 - 0x6E 0x92 0x74 0x20 0x66 0x69 0x67 0x75 - 0x72 0x65 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x68 0x6F 0x77 0x20 0x68 0x65 0x92 0x64 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x6F 0x72 0x6D - 0x61 0x6C 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x2E 0x20 0x20 0x57 0x6F 0x75 0x6C 0x64 - 0x20 0x68 0x65 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x73 0x65 0x65 0x73 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 0x3F - 0x20 0x20 0x4F 0x72 0x20 0x6D 0x61 0x79 - 0x62 0x65 0x20 0x61 0x20 0x67 0x69 0x72 - 0x6C 0x66 0x72 0x69 0x65 0x6E 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14339 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_60= 0x00015338 - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 14347 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_61=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_61=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xED 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_61=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x03 0x03 0x56 0x69 0x6C 0x6C 0x61 0x69 - 0x6E 0x0D 0x0A 0x46 0x72 0x61 0x6E 0x6B - 0x73 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x73 0x74 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x20 0x65 0x76 0x65 0x72 0x2E - 0x20 0x48 0x65 0x92 0x73 0x20 0x73 0x68 - 0x6F 0x72 0x74 0x2C 0x20 0x73 0x6F 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x62 - 0x65 0x20 0x76 0x65 0x72 0x79 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x79 0x20 0x61 0x6E - 0x64 0x20 0x71 0x75 0x69 0x63 0x6B 0x2C - 0x20 0x65 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x77 0x65 0x61 0x72 - 0x73 0x20 0x68 0x69 0x73 0x20 0x76 0x69 - 0x6C 0x6C 0x61 0x69 0x6E 0x92 0x73 0x20 - 0x76 0x65 0x73 0x74 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x68 0x65 0x27 0x64 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x62 0x65 0x20 - 0x61 0x20 0x62 0x61 0x64 0x20 0x67 0x75 - 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x64 0x20 0x67 0x75 0x79 - 0x73 0x2C 0x20 0x73 0x69 0x6E 0x63 0x65 - 0x20 0x68 0x65 0x92 0x64 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x62 0x65 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x69 - 0x6E 0x67 0x20 0x6B 0x69 0x64 0x73 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x73 0x74 0x20 - 0x62 0x75 0x6C 0x6C 0x69 0x65 0x73 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x77 0x65 0x61 0x72 0x20 - 0x68 0x69 0x73 0x20 0x76 0x65 0x73 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x68 0x61 0x6E - 0x67 0x20 0x6F 0x75 0x74 0x20 0x61 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 0x73 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x70 0x75 0x6E 0x6B 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x20 0x65 0x76 0x65 0x72 0x20 0x77 - 0x65 0x6E 0x74 0x20 0x69 0x6E 0x73 0x69 - 0x64 0x65 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x69 - 0x66 0x20 0x61 0x20 0x62 0x75 0x6E 0x63 - 0x68 0x20 0x6F 0x66 0x20 0x74 0x68 0x75 - 0x67 0x73 0x20 0x73 0x68 0x6F 0x77 0x65 - 0x64 0x20 0x75 0x70 0x3F 0x20 0x20 0x57 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 0x73 - 0x20 0x76 0x65 0x73 0x74 0x20 0x67 0x69 - 0x76 0x65 0x20 0x68 0x69 0x6D 0x20 0x73 - 0x70 0x65 0x63 0x69 0x61 0x6C 0x20 0x70 - 0x6F 0x77 0x65 0x72 0x73 0x20 0x74 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 - 0x65 0x6D 0x3F 0x20 0x41 0x6E 0x64 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 - 0x73 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x68 0x65 0x6C 0x70 0x20 0x68 - 0x69 0x6D 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x61 0x20 0x74 0x69 0x67 0x68 - 0x74 0x20 0x73 0x70 0x6F 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14470 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_61= 0x00015339 - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 14478 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_60=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_60=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x80 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_60=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x03 0x03 0x4A 0x75 0x6E 0x67 0x6C 0x65 - 0x20 0x4D 0x61 0x6E 0x0D 0x0A 0x57 0x68 - 0x61 0x74 0x20 0x69 0x66 0x20 0x46 0x72 - 0x61 0x6E 0x6B 0x20 0x77 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x6F - 0x6C 0x65 0x73 0x74 0x20 0x6A 0x75 0x6E - 0x67 0x6C 0x65 0x20 0x6D 0x61 0x6E 0x20 - 0x69 0x6E 0x20 0x5A 0x61 0x6D 0x62 0x69 - 0x61 0x2C 0x20 0x41 0x66 0x72 0x69 0x63 - 0x61 0x3F 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x64 0x61 0x79 0x2C 0x20 0x68 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x64 0x6F 0x67 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x67 0x65 0x74 0x20 0x75 0x70 - 0x20 0x65 0x61 0x72 0x6C 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x72 0x65 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x76 0x69 0x6C 0x6C 0x61 - 0x67 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x79 0x27 0x64 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x20 0x77 0x6F 0x6F 0x64 0x65 - 0x6E 0x20 0x67 0x61 0x74 0x65 0x77 0x61 - 0x79 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x72 0x61 0x6E 0x63 0x65 0x20 0x74 0x6F - 0x20 0x61 0x20 0x63 0x61 0x62 0x69 0x6E - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x63 - 0x61 0x62 0x69 0x6E 0x20 0x6D 0x69 0x67 - 0x68 0x74 0x20 0x62 0x65 0x20 0x65 0x6D - 0x70 0x74 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x69 0x6C 0x65 0x6E 0x74 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x6F 0x6E 0x20 0x61 - 0x20 0x74 0x61 0x62 0x6C 0x65 0x2C 0x20 - 0x61 0x20 0x63 0x61 0x6E 0x64 0x6C 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x62 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x6E 0x65 0x78 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x20 0x6D 0x61 0x70 0x2E - 0x20 0x20 0x54 0x68 0x65 0x72 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x62 0x69 0x67 0x2C 0x20 - 0x72 0x65 0x64 0x20 0x58 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x70 - 0x2C 0x20 0x6E 0x65 0x61 0x72 0x20 0x74 - 0x68 0x65 0x20 0x43 0x68 0x61 0x6D 0x62 - 0x65 0x7A 0x69 0x20 0x72 0x69 0x76 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x6F 0x72 0x74 0x68 0x2E 0x20 - 0x0D 0x0A 0x57 0x68 0x79 0x20 0x77 0x61 - 0x73 0x20 0x74 0x68 0x69 0x73 0x20 0x73 - 0x70 0x6F 0x74 0x20 0x6D 0x61 0x72 0x6B - 0x65 0x64 0x3F 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x68 0x61 0x70 0x70 0x65 0x6E - 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x65 0x72 0x73 0x6F 0x6E - 0x20 0x77 0x68 0x6F 0x20 0x6C 0x69 0x76 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x62 0x69 0x6E 0x3F - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x46 0x72 0x61 0x6E - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x68 0x69 - 0x73 0x20 0x64 0x6F 0x67 0x20 0x73 0x6E - 0x69 0x66 0x66 0x20 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x73 0x65 0x20 0x6D 0x79 - 0x73 0x74 0x65 0x72 0x69 0x65 0x73 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 14605 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_62= 0x0001533a - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 14613 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x63 0x72 0x61 0x77 0x6C 0x69 - 0x6E 0x67 0x0D 0x0A 0x53 0x6F 0x20 0x6A - 0x75 0x73 0x74 0x20 0x68 0x6F 0x77 0x20 - 0x64 0x6F 0x65 0x73 0x20 0x47 0x61 0x62 - 0x72 0x69 0x65 0x6C 0x20 0x6B 0x65 0x65 - 0x70 0x20 0x66 0x72 0x6F 0x6D 0x20 0x67 - 0x65 0x74 0x74 0x69 0x6E 0x67 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x64 - 0x20 0x6F 0x72 0x20 0x6D 0x75 0x67 0x67 - 0x65 0x64 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x92 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x6F 0x72 0x20 0x62 0x65 0x61 0x63 - 0x68 0x3F 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x77 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x6E 0x67 0x65 0x72 0x2C - 0x20 0x68 0x65 0x20 0x6C 0x65 0x61 0x72 - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x73 - 0x70 0x69 0x6E 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x73 0x6F 0x20 0x66 0x61 - 0x73 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x74 0x6F 0x75 - 0x63 0x68 0x20 0x68 0x69 0x6D 0x2E 0x20 - 0x20 0x41 0x66 0x74 0x65 0x72 0x20 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x72 0x6E 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x77 0x61 0x6C - 0x6B 0x2C 0x20 0x68 0x65 0x20 0x73 0x74 - 0x69 0x6C 0x6C 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x70 0x69 0x6E 0x20 0x66 - 0x61 0x73 0x74 0x20 0x69 0x66 0x20 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x69 0x6E - 0x20 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 0x69 - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x61 0x63 0x68 0x20 0x6F 0x6E 0x65 0x20 - 0x61 0x66 0x74 0x65 0x72 0x6E 0x6F 0x6F - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x70 0x72 0x61 0x79 0x65 0x64 0x20 0x73 - 0x61 0x6E 0x64 0x20 0x61 0x6C 0x6C 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x4D 0x63 0x5A - 0x65 0x65 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x2E 0x20 - 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 0x72 - 0x65 0x61 0x6C 0x69 0x7A 0x65 0x64 0x20 - 0x74 0x68 0x69 0x73 0x20 0x77 0x61 0x73 - 0x20 0x72 0x61 0x77 0x2C 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x74 0x61 0x6C 0x65 - 0x6E 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x76 0x69 0x6E 0x63 0x65 - 0x64 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x92 0x73 0x20 0x70 0x61 0x72 0x65 - 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 0x6C - 0x65 0x74 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x62 0x65 0x20 0x69 0x6E - 0x20 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14733 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_63= 0x0001533b - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 14741 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_63=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_63=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_63=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x6F 0x6F 0x6B 0x79 - 0x92 0x73 0x20 0x59 0x6F 0x75 0x6E 0x67 - 0x65 0x73 0x74 0x20 0x53 0x6F 0x6E 0x0D - 0x0A 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x65 0x72 - 0x69 0x6F 0x75 0x73 0x6C 0x79 0x20 0x63 - 0x6F 0x6F 0x6C 0x20 0x44 0x61 0x64 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x64 0x72 0x65 0x61 0x6D - 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x79 - 0x6F 0x75 0x6E 0x67 0x65 0x73 0x74 0x20 - 0x73 0x6F 0x6E 0x2E 0x20 0x20 0x47 0x61 - 0x62 0x72 0x69 0x65 0x6C 0x20 0x73 0x65 - 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x74 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x6C 0x6C 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x69 0x6D 0x20 0x61 0x6E - 0x64 0x20 0x68 0x61 0x76 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6D 0x20 0x74 0x72 0x79 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x74 0x74 0x65 0x73 0x74 0x20 - 0x62 0x61 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x73 0x75 0x69 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x73 0x68 0x6F 0x72 0x74 0x73 - 0x2E 0x20 0x20 0x57 0x68 0x69 0x6C 0x65 - 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x20 - 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x6F 0x72 0x65 0x2C - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x20 0x77 0x61 0x6E 0x64 0x65 0x72 0x73 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x6F 0x75 0x74 0x73 0x69 0x64 0x65 0x2E - 0x20 0x20 0x53 0x75 0x64 0x64 0x65 0x6E - 0x6C 0x79 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x68 0x65 0x61 0x72 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x6F - 0x72 0x65 0x20 0x63 0x6C 0x65 0x72 0x6B - 0x20 0x79 0x65 0x6C 0x6C 0x2C 0x20 0x93 - 0x53 0x74 0x6F 0x70 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x69 0x65 0x66 0x21 - 0x94 0x20 0x0D 0x0A 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x73 0x70 0x6F 0x74 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x68 - 0x69 0x65 0x66 0x20 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x77 - 0x61 0x79 0x2E 0x20 0x20 0x43 0x61 0x6E - 0x20 0x68 0x65 0x20 0x73 0x74 0x6F 0x70 - 0x20 0x61 0x20 0x67 0x72 0x6F 0x77 0x6E - 0x20 0x6D 0x61 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14857 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_64= 0x0001533c - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 14865 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_67=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_67=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_67=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x61 0x72 0x0D 0x0A - 0x57 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x6C 0x64 0x20 0x6E - 0x65 0x65 0x64 0x73 0x20 0x69 0x73 0x20 - 0x61 0x6E 0x20 0x69 0x6E 0x66 0x61 0x6E - 0x74 0x20 0x73 0x74 0x61 0x72 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x73 0x74 0x61 0x72 0x2E 0x20 0x20 - 0x4E 0x6F 0x74 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x6E 0x79 0x20 0x63 0x72 0x61 - 0x6E 0x6B 0x79 0x20 0x62 0x61 0x62 0x79 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x20 0x62 0x61 - 0x62 0x79 0x21 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x69 0x6D 0x61 0x67 - 0x69 0x6E 0x65 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x68 0x69 0x73 0x20 0x64 0x69 - 0x61 0x70 0x65 0x72 0x73 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x70 0x72 0x6F 0x74 - 0x65 0x63 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x6C 0x6C - 0x20 0x66 0x61 0x6C 0x6C 0x73 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x6F 0x75 0x74 0x20 0x61 0x20 0x77 - 0x69 0x6E 0x64 0x6F 0x77 0x2C 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x20 0x75 0x70 - 0x2C 0x20 0x72 0x65 0x74 0x75 0x72 0x6E - 0x20 0x74 0x6F 0x20 0x6E 0x6F 0x72 0x6D - 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x72 0x75 0x6E - 0x20 0x61 0x77 0x61 0x79 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x77 0x68 0x61 - 0x74 0x20 0x69 0x66 0x20 0x68 0x65 0x20 - 0x6A 0x75 0x6D 0x70 0x65 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 0x65 - 0x64 0x20 0x72 0x69 0x67 0x68 0x74 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x74 0x61 0x78 0x69 0x20 0x63 0x61 - 0x62 0x20 0x61 0x73 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x72 0x65 0x74 0x75 - 0x72 0x6E 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C 0x20 - 0x73 0x69 0x7A 0x65 0x3F 0x20 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x63 - 0x61 0x6E 0x20 0x73 0x71 0x75 0x61 0x73 - 0x68 0x20 0x61 0x6E 0x64 0x20 0x67 0x72 - 0x6F 0x77 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x63 0x61 0x6E 0x20 0x68 0x65 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14981 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_65= 0x0001533d - - -CHUNK('HTOP', _help_48544F50_65, "") -SUBFILE -#line 14989 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_65, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_65=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_65=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_65=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x6E 0x67 0x20 - 0x4E 0x61 0x74 0x69 0x76 0x65 0x0D 0x0A - 0x41 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x20 0x47 0x61 - 0x62 0x72 0x69 0x65 0x6C 0x20 0x68 0x61 - 0x73 0x20 0x69 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x62 0x61 0x62 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x68 0x61 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x72 0x61 0x69 - 0x73 0x65 0x64 0x20 0x62 0x79 0x20 0x77 - 0x69 0x6C 0x64 0x20 0x61 0x6E 0x69 0x6D - 0x61 0x6C 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6A 0x75 0x6E 0x67 0x6C - 0x65 0x2E 0x20 0x20 0x48 0x65 0x20 0x73 - 0x65 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x6A 0x75 0x6D 0x70 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x72 0x65 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x71 0x75 0x61 0x73 - 0x68 0x69 0x6E 0x67 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x6C 0x61 0x6E - 0x64 0x73 0x2C 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x61 0x20 0x6D 0x6F 0x6E 0x6B 0x65 - 0x79 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x68 0x65 0x20 0x69 0x73 0x20 0x61 0x62 - 0x64 0x75 0x63 0x74 0x65 0x64 0x20 0x62 - 0x79 0x20 0x6E 0x61 0x74 0x69 0x76 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x74 0x61 - 0x6B 0x65 0x6E 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x69 0x72 0x20 0x76 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x6F 0x76 0x65 0x72 0x68 0x65 - 0x61 0x72 0x73 0x20 0x74 0x68 0x65 0x20 - 0x76 0x69 0x6C 0x6C 0x61 0x67 0x65 0x72 - 0x73 0x20 0x70 0x6C 0x61 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x63 0x61 - 0x70 0x74 0x75 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x77 0x69 0x6C 0x64 0x20 0x61 - 0x6E 0x69 0x6D 0x61 0x6C 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x65 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x6D 0x2E 0x20 0x0D 0x0A - 0x43 0x61 0x6E 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x20 0x77 0x61 0x79 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 - 0x68 0x65 0x6D 0x3F 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x68 0x69 0x73 0x20 0x70 - 0x61 0x63 0x69 0x66 0x69 0x65 0x72 0x20 - 0x67 0x69 0x76 0x65 0x20 0x68 0x69 0x6D - 0x20 0x73 0x70 0x65 0x63 0x69 0x61 0x6C - 0x20 0x70 0x6F 0x77 0x65 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15104 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_66= 0x0001533e - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 15112 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_64=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_64=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_64=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x6D 0x61 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x20 0x69 0x6E 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x27 0x73 0x20 0x64 0x72 - 0x61 0x6D 0x61 0x20 0x63 0x6C 0x61 0x73 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x20 0x66 0x69 0x6C - 0x6D 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6C 0x61 0x73 0x73 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x68 0x6F - 0x77 0x20 0x68 0x65 0x20 0x6D 0x61 0x6B - 0x65 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x2E 0x20 0x20 0x41 0x66 0x74 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x63 0x74 0x75 0x72 0x65 0x2C 0x20 0x73 - 0x65 0x76 0x65 0x72 0x61 0x6C 0x20 0x73 - 0x74 0x75 0x64 0x65 0x6E 0x74 0x73 0x20 - 0x64 0x69 0x64 0x20 0x61 0x20 0x73 0x6B - 0x69 0x74 0x20 0x74 0x68 0x65 0x79 0x27 - 0x64 0x20 0x77 0x72 0x69 0x74 0x74 0x65 - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x2E 0x20 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x20 0x77 0x61 - 0x73 0x20 0x61 0x20 0x62 0x75 0x6D 0x62 - 0x6C 0x69 0x6E 0x67 0x20 0x64 0x65 0x74 - 0x65 0x63 0x74 0x69 0x76 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x66 0x61 0x6C 0x6C 0x73 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x20 - 0x6C 0x6F 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x68 0x61 0x73 0x20 0x61 0x20 0x6B 0x6E - 0x61 0x63 0x6B 0x20 0x66 0x6F 0x72 0x20 - 0x66 0x69 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 0x2E - 0x20 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x6C 0x6F 0x76 0x65 0x64 0x20 0x69 0x74 - 0x2E 0x20 0x48 0x65 0x20 0x61 0x73 0x6B - 0x65 0x64 0x20 0x47 0x72 0x65 0x67 0x6F - 0x72 0x79 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x66 0x69 0x6C - 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15217 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_67= 0x0001533f - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 15225 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_66=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_66=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_66=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x67 0x69 0x63 0x69 - 0x61 0x6E 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x75 0x6C 0x74 0x69 0x6D 0x61 0x74 0x65 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x66 0x6F - 0x72 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x6D 0x61 0x67 - 0x69 0x63 0x69 0x61 0x6E 0x2E 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6C 0x65 0x2C 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x20 0x6C 0x69 0x76 0x65 - 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 0x64 - 0x6F 0x6F 0x72 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x6F - 0x77 0x6E 0x65 0x64 0x20 0x62 0x79 0x20 - 0x61 0x20 0x63 0x72 0x65 0x65 0x70 0x79 - 0x20 0x6D 0x61 0x6E 0x2E 0x20 0x20 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x66 - 0x72 0x69 0x65 0x6E 0x64 0x73 0x20 0x64 - 0x65 0x63 0x69 0x64 0x65 0x20 0x74 0x6F - 0x20 0x69 0x6E 0x76 0x65 0x73 0x74 0x69 - 0x67 0x61 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x6F - 0x6E 0x65 0x20 0x61 0x66 0x74 0x65 0x72 - 0x6E 0x6F 0x6F 0x6E 0x2E 0x20 0x20 0x4F - 0x6E 0x63 0x65 0x20 0x69 0x6E 0x73 0x69 - 0x64 0x65 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x62 0x72 0x61 0x72 0x79 0x2C 0x20 - 0x73 0x74 0x72 0x61 0x6E 0x67 0x65 0x20 - 0x67 0x72 0x6F 0x61 0x6E 0x73 0x20 0x63 - 0x6F 0x6D 0x65 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x62 0x6F 0x6F 0x6B 0x73 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 0x68 - 0x65 0x6C 0x76 0x65 0x73 0x2E 0x20 0x0D - 0x0A 0x43 0x61 0x6E 0x20 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x20 0x75 0x73 0x65 - 0x20 0x68 0x69 0x73 0x20 0x6D 0x61 0x67 - 0x69 0x63 0x61 0x6C 0x20 0x70 0x6F 0x77 - 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x20 0x6F 0x72 - 0x20 0x67 0x72 0x6F 0x77 0x20 0x68 0x69 - 0x6D 0x73 0x65 0x6C 0x66 0x20 0x61 0x6E - 0x64 0x20 0x67 0x65 0x74 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x2E 0x2E 0x61 0x6C - 0x69 0x76 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15338 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_68= 0x00015340 - - -CHUNK('HTOP', _help_48544F50_68, "") -SUBFILE -#line 15346 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_68, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_69=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_69=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_69=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x77 0x73 0x70 0x61 - 0x70 0x65 0x72 0x20 0x42 0x6F 0x79 0x0D - 0x0A 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 - 0x69 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x63 0x6F 0x6F 0x6C - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x6E 0x65 0x77 0x73 0x70 - 0x61 0x70 0x65 0x72 0x20 0x62 0x6F 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x77 0x69 0x74 - 0x6E 0x65 0x73 0x73 0x65 0x73 0x20 0x61 - 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 0x79 - 0x2E 0x20 0x20 0x42 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x62 0x62 0x65 0x72 0x20 0x6A 0x75 0x6D - 0x70 0x73 0x20 0x6F 0x75 0x74 0x20 0x61 - 0x20 0x77 0x69 0x6E 0x64 0x6F 0x77 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x68 0x69 0x73 0x20 0x65 0x73 0x63 0x61 - 0x70 0x65 0x2C 0x20 0x68 0x65 0x20 0x63 - 0x61 0x74 0x63 0x68 0x65 0x73 0x20 0x61 - 0x20 0x67 0x6C 0x69 0x6D 0x70 0x73 0x65 - 0x20 0x6F 0x66 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x73 - 0x61 0x77 0x20 0x68 0x69 0x6D 0x2E 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x62 0x79 0x73 - 0x74 0x61 0x6E 0x64 0x65 0x72 0x73 0x20 - 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x73 0x61 0x77 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x63 0x72 0x69 0x6D 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6E 0x6F 0x77 - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x70 - 0x73 0x20 0x74 0x68 0x69 0x6E 0x6B 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 - 0x64 0x69 0x64 0x20 0x69 0x74 0x2E 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 - 0x68 0x61 0x73 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x64 0x65 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x70 0x6F 0x6C - 0x69 0x63 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x61 0x6C - 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 0x20 - 0x77 0x68 0x69 0x6C 0x65 0x20 0x68 0x65 - 0x20 0x66 0x69 0x67 0x75 0x72 0x65 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x6F 0x20 0x70 0x72 0x6F 0x76 - 0x65 0x20 0x77 0x68 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 - 0x20 0x69 0x73 0x2E 0x20 0x0D 0x0A 0x57 - 0x69 0x6C 0x6C 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x20 0x62 0x65 0x20 0x61 - 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x6F 0x76 0x65 0x20 0x68 0x69 0x73 - 0x20 0x69 0x6E 0x6E 0x6F 0x63 0x65 0x6E - 0x63 0x65 0x3F 0x20 0x20 0x43 0x61 0x6E - 0x20 0x68 0x65 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x6C 0x65 0x61 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x20 0x72 0x6F 0x62 - 0x62 0x65 0x72 0x20 0x77 0x69 0x74 0x68 - 0x6F 0x75 0x74 0x20 0x62 0x65 0x69 0x6E - 0x67 0x20 0x61 0x72 0x72 0x65 0x73 0x74 - 0x65 0x64 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x2C 0x20 0x6F 0x72 0x20 0x77 - 0x6F 0x72 0x73 0x65 0x2C 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x20 0x66 0x6F 0x75 0x6E - 0x64 0x20 0x62 0x79 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15483 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_69= 0x00015341 - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 15491 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_73=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_73=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x87 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_73=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x03 0x03 0x42 0x6F 0x79 0x20 0x53 0x63 - 0x6F 0x75 0x74 0x0D 0x0A 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x20 0x69 0x6D 0x61 - 0x67 0x69 0x6E 0x65 0x73 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x69 0x6E - 0x20 0x77 0x68 0x69 0x63 0x68 0x20 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 - 0x61 0x20 0x62 0x6F 0x79 0x20 0x73 0x63 - 0x6F 0x75 0x74 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x74 0x72 0x6F 0x6F 0x70 0x20 - 0x74 0x72 0x61 0x76 0x65 0x6C 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x69 - 0x73 0x6C 0x61 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x46 0x69 0x6A 0x69 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x74 0x72 0x6F 0x6F - 0x70 0x20 0x76 0x69 0x73 0x69 0x74 0x73 - 0x20 0x61 0x20 0x74 0x72 0x69 0x62 0x61 - 0x6C 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x6E 0x63 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x62 0x79 0x20 0x69 0x73 0x6C - 0x61 0x6E 0x64 0x20 0x63 0x68 0x69 0x65 - 0x66 0x73 0x2E 0x20 0x20 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x20 0x62 0x75 0x6D - 0x70 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x61 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x2C 0x20 0x77 0x68 - 0x69 0x63 0x68 0x20 0x74 0x61 0x6C 0x6B - 0x73 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D - 0x21 0x20 0x20 0x54 0x68 0x65 0x20 0x70 - 0x6F 0x6C 0x65 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x6F 0x66 0x20 0x61 0x20 0x62 - 0x75 0x72 0x69 0x65 0x64 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x20 0x63 - 0x68 0x65 0x73 0x74 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x61 0x73 0x20 0x73 0x74 - 0x6F 0x6C 0x65 0x6E 0x20 0x6C 0x6F 0x6E - 0x67 0x20 0x61 0x67 0x6F 0x2E 0x20 0x20 - 0x49 0x74 0x20 0x61 0x73 0x6B 0x73 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 - 0x74 0x6F 0x20 0x62 0x72 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x65 - 0x73 0x74 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x76 - 0x69 0x6C 0x6C 0x61 0x67 0x65 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x77 0x61 0x72 0x6E - 0x73 0x2C 0x20 0x22 0x54 0x68 0x65 0x72 - 0x65 0x20 0x69 0x73 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x64 0x61 0x6E 0x67 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6A 0x6F 0x75 0x72 0x6E 0x65 - 0x79 0x2E 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x6D 0x75 0x73 0x74 0x20 0x63 0x72 0x6F - 0x73 0x73 0x20 0x61 0x6E 0x20 0x6F 0x6C - 0x64 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x66 0x69 - 0x67 0x68 0x74 0x20 0x61 0x20 0x62 0x69 - 0x67 0x20 0x6D 0x61 0x6E 0x2E 0x20 0x20 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x66 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x72 0x69 0x64 0x67 0x65 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x76 0x65 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x75 0x73 0x74 0x20 0x6C 0x61 0x75 0x67 - 0x68 0x20 0x74 0x77 0x69 0x63 0x65 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x2E - 0x20 0x20 0x4F 0x6E 0x6C 0x79 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x62 0x65 0x20 - 0x61 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x74 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x2E 0x22 0x20 0x0D - 0x0A 0x57 0x69 0x6C 0x6C 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x20 0x68 0x65 - 0x65 0x64 0x20 0x74 0x68 0x69 0x73 0x20 - 0x61 0x64 0x76 0x69 0x63 0x65 0x3F 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x68 0x65 0x20 - 0x6D 0x61 0x6E 0x61 0x67 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x20 0x63 0x68 0x65 - 0x73 0x74 0x20 0x73 0x61 0x66 0x65 0x6C - 0x79 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x76 0x69 - 0x6C 0x6C 0x61 0x67 0x65 0x3F 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x68 0x69 0x73 - 0x20 0x73 0x63 0x6F 0x75 0x74 0x20 0x6D - 0x6F 0x74 0x74 0x6F 0x20 0x22 0x42 0x65 - 0x20 0x70 0x72 0x65 0x70 0x61 0x72 0x65 - 0x64 0x22 0x20 0x62 0x65 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15652 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6A= 0x00015342 - - -CHUNK('HTOP', _help_48544F50_6A, "") -SUBFILE -#line 15660 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF6 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x03 0x03 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x0D 0x0A 0x41 0x73 0x20 0x61 0x20 - 0x63 0x68 0x69 0x6C 0x64 0x2C 0x20 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x20 0x6D - 0x65 0x6D 0x6F 0x72 0x69 0x7A 0x65 0x64 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x64 0x61 0x6E 0x63 0x65 0x73 0x20 - 0x69 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 0x20 - 0x41 0x6E 0x64 0x20 0x61 0x73 0x20 0x68 - 0x65 0x20 0x67 0x6F 0x74 0x20 0x6F 0x6C - 0x64 0x65 0x72 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x61 0x74 0x63 0x68 0x65 0x64 0x20 - 0x64 0x61 0x6E 0x63 0x65 0x72 0x73 0x20 - 0x69 0x6E 0x20 0x41 0x6D 0x65 0x72 0x69 - 0x63 0x61 0x6E 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x76 0x69 0x64 0x65 0x6F 0x73 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 0x65 - 0x66 0x69 0x6E 0x69 0x74 0x65 0x6C 0x79 - 0x20 0x6B 0x6E 0x65 0x77 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x65 0x73 0x2E - 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x6D 0x6F - 0x72 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x2C 0x20 - 0x6E 0x6F 0x77 0x20 0x6A 0x6F 0x62 0x6C - 0x65 0x73 0x73 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x77 0x65 0x61 0x72 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x73 0x68 0x6F 0x65 0x73 0x2C 0x20 0x74 - 0x77 0x6F 0x2D 0x73 0x74 0x65 0x70 0x70 - 0x65 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x72 0x65 0x65 0x74 0x73 0x20 0x6F - 0x66 0x20 0x50 0x6F 0x72 0x74 0x6F 0x66 - 0x69 0x6E 0x6F 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x69 0x72 0x65 0x63 0x74 0x6C 0x79 - 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x73 0x65 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x97 0x72 0x69 0x67 - 0x68 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x6C 0x6F - 0x76 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x20 0x20 0x45 0x76 0x65 0x72 0x79 - 0x6F 0x6E 0x65 0x20 0x79 0x65 0x6C 0x6C - 0x65 0x64 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x6D 0x20 0x74 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x69 0x74 0x2E 0x20 0x20 - 0x45 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 - 0x20 0x65 0x78 0x63 0x65 0x70 0x74 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x2C - 0x20 0x61 0x20 0x79 0x6F 0x75 0x6E 0x67 - 0x20 0x64 0x69 0x72 0x65 0x63 0x74 0x6F - 0x72 0x20 0x77 0x68 0x6F 0x20 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x20 0x47 0x75 - 0x73 0x74 0x61 0x76 0x65 0x20 0x77 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x68 0x69 - 0x70 0x70 0x65 0x73 0x74 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x72 0x20 0x73 0x68 0x65 - 0x92 0x64 0x20 0x65 0x76 0x65 0x72 0x20 - 0x73 0x65 0x65 0x6E 0x2E 0x20 0x0D 0x0A - 0x4F 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x70 0x6F 0x74 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x73 0x69 0x67 0x6E 0x65 0x64 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x61 0x72 0x20 - 0x69 0x6E 0x20 0x68 0x65 0x72 0x20 0x6E - 0x65 0x78 0x74 0x20 0x72 0x6F 0x63 0x6B - 0x20 0x76 0x69 0x64 0x65 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15792 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6B= 0x00015343 - - -CHUNK('HTOP', _help_48544F50_6B, "") -SUBFILE -#line 15800 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x74 0x6C 0x65 0x72 - 0x0D 0x0A 0x41 0x6E 0x20 0x69 0x64 0x65 - 0x61 0x6C 0x20 0x72 0x6F 0x6C 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x75 0x74 0x6C 0x65 0x72 0x20 - 0x61 0x74 0x20 0x61 0x20 0x68 0x61 0x75 - 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x2E 0x20 0x49 0x6E 0x20 0x74 - 0x68 0x69 0x73 0x20 0x72 0x6F 0x6C 0x65 - 0x2C 0x20 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x61 0x20 0x62 0x75 0x74 0x6C 0x65 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 0x20 - 0x73 0x65 0x63 0x72 0x65 0x74 0x20 0x61 - 0x67 0x65 0x6E 0x74 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x62 0x75 0x74 0x6C 0x65 0x72 - 0x20 0x64 0x69 0x73 0x67 0x75 0x69 0x73 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x20 0x69 0x73 - 0x20 0x6F 0x77 0x6E 0x65 0x64 0x20 0x62 - 0x79 0x20 0x61 0x6E 0x20 0x65 0x76 0x69 - 0x6C 0x20 0x6D 0x61 0x6E 0x20 0x77 0x68 - 0x6F 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x6C 0x69 0x6B 0x65 0x20 0x63 - 0x68 0x69 0x6C 0x64 0x72 0x65 0x6E 0x2E - 0x20 0x20 0x48 0x65 0x20 0x68 0x61 0x73 - 0x20 0x61 0x20 0x74 0x65 0x72 0x72 0x69 - 0x62 0x6C 0x65 0x20 0x70 0x6C 0x6F 0x74 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x61 - 0x77 0x61 0x79 0x20 0x77 0x69 0x74 0x68 - 0x20 0x63 0x68 0x6F 0x63 0x6F 0x6C 0x61 - 0x74 0x65 0x20 0x61 0x6E 0x64 0x20 0x48 - 0x61 0x6C 0x6C 0x6F 0x77 0x65 0x65 0x6E - 0x20 0x63 0x61 0x6E 0x64 0x79 0x20 0x66 - 0x6F 0x72 0x65 0x76 0x65 0x72 0x2E 0x20 - 0x0D 0x0A 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x20 0x6D 0x75 0x73 0x74 0x20 0x73 - 0x74 0x6F 0x70 0x20 0x68 0x69 0x6D 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x68 0x6F - 0x77 0x3F 0x20 0x20 0x4F 0x72 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x65 0x76 0x69 0x6C 0x20 0x6F 0x77 0x6E - 0x65 0x72 0x20 0x67 0x65 0x74 0x20 0x68 - 0x69 0x73 0x20 0x77 0x61 0x79 0x3F 0x20 - 0x20 0x57 0x69 0x6C 0x6C 0x20 0x61 0x6E - 0x79 0x6F 0x6E 0x65 0x20 0x65 0x6C 0x73 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15916 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6C= 0x00015344 - - -CHUNK('HTOP', _help_48544F50_6C, "") -SUBFILE -#line 15924 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x66 0x65 0x20 0x57 - 0x61 0x69 0x74 0x65 0x72 0x0D 0x0A 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 - 0x20 0x73 0x6F 0x6C 0x76 0x69 0x6E 0x67 - 0x20 0x63 0x72 0x69 0x6D 0x65 0x73 0x20 - 0x77 0x68 0x69 0x6C 0x65 0x20 0x68 0x65 - 0x20 0x70 0x72 0x65 0x74 0x65 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E - 0x67 0x2F 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x20 0x77 0x61 0x69 0x74 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x63 0x61 - 0x66 0x65 0x2E 0x20 0x20 0x4D 0x61 0x79 - 0x62 0x65 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x74 0x65 0x65 - 0x6E 0x61 0x67 0x65 0x72 0x20 0x77 0x68 - 0x6F 0x20 0x64 0x69 0x73 0x61 0x70 0x70 - 0x65 0x61 0x72 0x65 0x64 0x20 0x61 0x20 - 0x66 0x65 0x77 0x20 0x77 0x65 0x65 0x6B - 0x73 0x20 0x61 0x67 0x6F 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x20 0x6E 0x65 0x61 - 0x72 0x62 0x79 0x20 0x46 0x72 0x65 0x6E - 0x63 0x68 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x2E 0x20 0x20 - 0x43 0x75 0x73 0x74 0x6F 0x6D 0x65 0x72 - 0x73 0x20 0x6B 0x65 0x65 0x70 0x20 0x68 - 0x65 0x61 0x72 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x77 0x65 0x61 0x6B 0x20 0x63 0x72 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x68 0x65 - 0x6C 0x70 0x2E 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x68 0x61 0x76 0x65 0x20 0x68 0x61 0x70 - 0x70 0x65 0x6E 0x65 0x64 0x97 0x77 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x62 0x6F - 0x79 0x20 0x63 0x61 0x70 0x74 0x75 0x72 - 0x65 0x64 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x68 0x72 0x75 0x6E 0x6B 0x3F 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x47 0x75 0x73 - 0x74 0x61 0x76 0x65 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x68 0x65 0x6C 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x61 0x20 0x73 0x6E - 0x69 0x66 0x66 0x69 0x6E 0x67 0x20 0x64 - 0x6F 0x67 0x20 0x77 0x68 0x6F 0x20 0x6C - 0x6F 0x76 0x65 0x73 0x20 0x46 0x72 0x65 - 0x6E 0x63 0x68 0x20 0x66 0x6F 0x6F 0x64 - 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x20 0x73 0x6E 0x65 0x61 0x6B - 0x20 0x61 0x20 0x64 0x6F 0x67 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 16039 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6D= 0x00015345 - - -CHUNK('HTOP', _help_48544F50_6D, "") -SUBFILE -#line 16047 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x6D 0x6F 0x73 0x74 0x20 0x66 0x75 0x6E - 0x2C 0x20 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 - 0x2C 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x6E 0x20 0x65 0x78 - 0x70 0x6C 0x6F 0x72 0x65 0x72 0x2E 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 0x6F - 0x20 0x73 0x6F 0x6D 0x65 0x77 0x68 0x65 - 0x72 0x65 0x20 0x6D 0x79 0x73 0x74 0x65 - 0x72 0x69 0x6F 0x75 0x73 0x2C 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x4D 0x65 0x78 0x69 - 0x63 0x6F 0x20 0x43 0x69 0x74 0x79 0x2C - 0x20 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x68 0x69 0x73 0x20 0x6C 0x6F 0x73 - 0x74 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x2C 0x20 0x42 0x65 0x6E 0x65 0x64 0x69 - 0x63 0x74 0x2E 0x20 0x20 0x42 0x65 0x6E - 0x65 0x64 0x69 0x63 0x74 0x20 0x68 0x61 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x6D - 0x69 0x73 0x73 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x32 0x20 0x6D 0x6F 0x6E - 0x74 0x68 0x73 0x2C 0x20 0x61 0x62 0x64 - 0x75 0x63 0x74 0x65 0x64 0x20 0x62 0x79 - 0x20 0x67 0x61 0x6E 0x67 0x73 0x74 0x65 - 0x72 0x73 0x2E 0x20 0x50 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x69 0x6E 0x20 0x4D 0x65 - 0x78 0x69 0x63 0x6F 0x20 0x43 0x69 0x74 - 0x79 0x20 0x73 0x61 0x79 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x41 - 0x6D 0x65 0x72 0x69 0x63 0x61 0x6E 0x20 - 0x69 0x73 0x20 0x62 0x65 0x69 0x6E 0x67 - 0x20 0x68 0x65 0x6C 0x64 0x20 0x69 0x6E - 0x20 0x61 0x6E 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x6E 0x20 0x68 0x75 0x74 0x20 0x67 - 0x75 0x61 0x72 0x64 0x65 0x64 0x20 0x62 - 0x79 0x20 0x61 0x6E 0x63 0x69 0x65 0x6E - 0x74 0x20 0x74 0x75 0x73 0x6B 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x61 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x77 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x20 0x69 0x6E - 0x74 0x72 0x75 0x64 0x65 0x72 0x73 0x2E - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x47 0x75 0x73 0x74 0x61 - 0x76 0x65 0x20 0x66 0x72 0x65 0x65 0x20 - 0x68 0x69 0x73 0x20 0x66 0x72 0x69 0x65 - 0x6E 0x64 0x3F 0x20 0x20 0x57 0x69 0x6C - 0x6C 0x20 0x68 0x69 0x73 0x20 0x65 0x79 - 0x65 0x2D 0x70 0x61 0x74 0x63 0x68 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x74 0x75 0x73 - 0x6B 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 16165 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6E= 0x00015346 - - -CHUNK('HTOP', _help_48544F50_6E, "") -SUBFILE -#line 16173 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D1, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x48 0x65 0x6E 0x72 0x79 0x2D 0x2D 0x70 - 0x6F 0x70 0x75 0x70 0x31 -ENDCHUNK - - -ENDCHUNK -#line 16236 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6F= 0x00015347 - - -CHUNK('HTOP', _help_48544F50_6F, "") -SUBFILE -#line 16244 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6E 0x72 0x79 0x2D - 0x2D 0x70 0x6F 0x70 0x75 0x70 0x32 -ENDCHUNK - - -ENDCHUNK -#line 16306 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_70= 0x00015348 - - -CHUNK('HTOP', _help_48544F50_70, "") -SUBFILE -#line 16314 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_70, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_70=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_70=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_70=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6E 0x72 0x79 0x2D - 0x2D 0x70 0x6F 0x70 0x75 0x70 0x33 -ENDCHUNK - - -ENDCHUNK -#line 16376 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_71= 0x00015349 - - -CHUNK('HTOP', _help_48544F50_71, "") -SUBFILE -#line 16384 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_71, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_71=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_71=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_71=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6E 0x72 0x79 0x2D - 0x2D 0x70 0x6F 0x70 0x75 0x70 0x34 -ENDCHUNK - - -ENDCHUNK -#line 16446 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_72= 0x0001534a - - -CHUNK('HTOP', _help_48544F50_72, "") -SUBFILE -#line 16454 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_72, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x6A 0x6F 0x6B 0x65 0x73 0x0D - 0x0A 0x48 0x69 0x72 0x6F 0x92 0x73 0x20 - 0x61 0x62 0x69 0x6C 0x69 0x74 0x79 0x20 - 0x74 0x6F 0x20 0x74 0x65 0x6C 0x6C 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 0x6E - 0x64 0x20 0x77 0x72 0x69 0x74 0x65 0x20 - 0x66 0x75 0x6E 0x6E 0x79 0x20 0x70 0x6C - 0x61 0x79 0x73 0x20 0x6D 0x61 0x64 0x65 - 0x20 0x68 0x69 0x6D 0x20 0x70 0x6F 0x70 - 0x75 0x6C 0x61 0x72 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 - 0x68 0x6F 0x6F 0x64 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x72 0x65 0x20 0x77 0x65 0x72 - 0x65 0x20 0x61 0x20 0x6C 0x6F 0x74 0x20 - 0x6F 0x66 0x20 0x67 0x61 0x6E 0x67 0x73 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x61 0x72 0x65 0x61 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x6B 0x65 0x65 - 0x70 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x61 0x63 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 - 0x73 0x74 0x20 0x74 0x68 0x65 0x20 0x67 - 0x61 0x6E 0x67 0x20 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x70 0x6C 0x61 0x79 0x73 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x73 0x65 - 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 0x62 - 0x65 0x63 0x61 0x6D 0x65 0x20 0x73 0x6F - 0x20 0x70 0x6F 0x70 0x75 0x6C 0x61 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x4A 0x61 0x70 0x61 0x6E - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x73 0x68 0x6F 0x77 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6F 0x6F 0x72 0x20 - 0x6E 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 - 0x68 0x6F 0x6F 0x64 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x48 0x69 0x72 0x6F 0x92 0x73 0x20 - 0x6D 0x61 0x73 0x74 0x65 0x72 0x66 0x75 - 0x6C 0x20 0x63 0x6F 0x6D 0x65 0x64 0x69 - 0x65 0x73 0x2E 0x20 0x0D 0x0A 0x4D 0x65 - 0x6C 0x61 0x6E 0x69 0x65 0x20 0x77 0x61 - 0x73 0x20 0x76 0x69 0x73 0x69 0x74 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x73 0x20 0x69 0x6E 0x20 0x4A 0x61 - 0x70 0x61 0x6E 0x20 0x77 0x68 0x65 0x6E - 0x20 0x73 0x68 0x65 0x20 0x68 0x65 0x61 - 0x72 0x64 0x20 0x6F 0x66 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x48 0x69 0x72 0x6F - 0x20 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 - 0x20 0x70 0x6C 0x61 0x79 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x73 0x61 0x77 0x20 0x68 0x69 - 0x73 0x20 0x77 0x6F 0x72 0x6B 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x65 0x61 0x72 0x64 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x6E 0x65 0x69 0x67 - 0x68 0x62 0x6F 0x72 0x68 0x6F 0x6F 0x64 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x69 0x6E - 0x67 0x2C 0x20 0x73 0x68 0x65 0x20 0x6B - 0x6E 0x65 0x77 0x20 0x74 0x68 0x61 0x74 - 0x20 0x48 0x69 0x72 0x6F 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x20 0x74 0x6F 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x77 0x69 0x74 - 0x68 0x20 0x6F 0x6E 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x48 - 0x69 0x72 0x6F 0x20 0x77 0x61 0x73 0x20 - 0x74 0x68 0x72 0x69 0x6C 0x6C 0x65 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x61 0x67 0x72 - 0x65 0x65 0x64 0x20 0x69 0x6D 0x6D 0x65 - 0x64 0x69 0x61 0x74 0x65 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16591 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_73= 0x0001534b - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 16599 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AD=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AD=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AD=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AD, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x6F 0x64 0x20 0x54 - 0x65 0x73 0x74 0x65 0x72 0x0D 0x0A 0x48 - 0x69 0x72 0x6F 0x20 0x6C 0x6F 0x76 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x65 0x61 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x73 0x20 0x69 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x63 0x6F 0x6F 0x6C 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x66 - 0x6F 0x6F 0x64 0x20 0x74 0x65 0x73 0x74 - 0x65 0x72 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x77 0x6E 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x70 - 0x72 0x6F 0x62 0x6C 0x65 0x6D 0x20 0x69 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x48 - 0x69 0x72 0x6F 0x20 0x69 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x65 0x73 - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x72 - 0x65 0x65 0x20 0x66 0x6F 0x6F 0x64 0x20 - 0x74 0x65 0x73 0x74 0x65 0x72 0x73 0x20 - 0x77 0x68 0x6F 0x20 0x68 0x61 0x76 0x65 - 0x20 0x62 0x65 0x65 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x74 - 0x68 0x72 0x65 0x65 0x20 0x64 0x61 0x79 - 0x73 0x2E 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x66 0x6F 0x6F - 0x64 0x20 0x74 0x65 0x73 0x74 0x65 0x72 - 0x73 0x20 0x6C 0x65 0x66 0x74 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x77 0x6F - 0x20 0x64 0x61 0x79 0x73 0x20 0x77 0x69 - 0x74 0x68 0x20 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x6C 0x6C 0x61 0x72 0x20 0x70 0x75 - 0x6C 0x6C 0x65 0x64 0x20 0x75 0x70 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x6F 0x73 0x65 0x2E - 0x20 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x74 0x65 0x73 0x74 0x65 0x72 - 0x20 0x6C 0x65 0x66 0x74 0x20 0x61 0x66 - 0x74 0x65 0x72 0x20 0x6F 0x6E 0x6C 0x79 - 0x20 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x77 0x72 0x61 - 0x70 0x70 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x62 0x61 0x6E 0x64 0x61 0x67 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x57 0x68 0x61 0x74 - 0x20 0x69 0x73 0x20 0x69 0x74 0x20 0x77 - 0x69 0x74 0x68 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6F 0x6B 0x20 0x74 0x68 0x61 - 0x74 0x27 0x73 0x20 0x63 0x61 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x61 0x6C 0x6C 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x74 - 0x65 0x73 0x74 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x20 0x22 0x53 - 0x65 0x65 0x20 0x79 0x61 0x21 0x22 0x3F - 0x20 0x20 0x57 0x68 0x79 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x92 0x74 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x77 0x6E 0x65 0x72 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2C 0x20 0x74 0x72 0x75 - 0x73 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x6F 0x6B 0x20 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x73 0x2D - 0x63 0x68 0x65 0x66 0x3F 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x48 0x69 0x72 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x92 0x73 - 0x20 0x73 0x70 0x6F 0x69 0x6C 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x70 0x2C 0x20 0x6F 0x72 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x48 0x69 0x72 0x6F - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x74 0x6F 0x20 - 0x67 0x6F 0x3F -ENDCHUNK - - -ENDCHUNK -#line 16740 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_74= 0x0001534c - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 16748 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_74=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_74=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDE 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_74=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6D 0x62 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x4B 0x69 0x64 0x73 0x27 0x20 0x4D 0x79 - 0x73 0x74 0x65 0x72 0x79 0x20 0x43 0x6C - 0x75 0x62 0x0D 0x0A 0x48 0x69 0x72 0x6F - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x61 0x20 0x6D 0x65 - 0x6D 0x62 0x65 0x72 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x4B 0x69 0x64 0x73 - 0x27 0x20 0x4D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x20 0x43 0x6C 0x75 0x62 0x2C 0x20 - 0x61 0x20 0x67 0x72 0x6F 0x75 0x70 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x6E 0x67 - 0x20 0x64 0x65 0x74 0x65 0x63 0x74 0x69 - 0x76 0x65 0x73 0x20 0x77 0x68 0x6F 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x6F 0x6C 0x76 0x65 0x20 0x6D 0x79 - 0x73 0x74 0x65 0x72 0x69 0x65 0x73 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x68 0x65 - 0x69 0x72 0x20 0x74 0x6F 0x20 0x61 0x20 - 0x73 0x6F 0x66 0x74 0x20 0x64 0x72 0x69 - 0x6E 0x6B 0x20 0x66 0x6F 0x72 0x74 0x75 - 0x6E 0x65 0x20 0x68 0x61 0x73 0x20 0x62 - 0x65 0x65 0x6E 0x20 0x6B 0x69 0x64 0x6E - 0x61 0x70 0x70 0x65 0x64 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x4B 0x69 - 0x64 0x73 0x20 0x4D 0x79 0x73 0x74 0x65 - 0x72 0x79 0x20 0x43 0x6C 0x75 0x62 0x20 - 0x69 0x73 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x53 0x69 0x6E - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x64 0x61 0x20 0x6B 0x69 0x6E 0x67 - 0x20 0x77 0x61 0x73 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x73 0x70 0x6F 0x74 0x74 0x65 - 0x64 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x6B 0x20 0x6E 0x65 - 0x61 0x72 0x20 0x74 0x68 0x65 0x20 0x77 - 0x61 0x74 0x65 0x72 0x66 0x72 0x6F 0x6E - 0x74 0x2C 0x20 0x48 0x69 0x72 0x6F 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x20 0x61 0x73 - 0x6B 0x69 0x6E 0x67 0x20 0x71 0x75 0x65 - 0x73 0x74 0x69 0x6F 0x6E 0x73 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x72 0x65 0x61 0x2E 0x20 0x0D 0x0A 0x55 - 0x6E 0x66 0x6F 0x72 0x74 0x75 0x6E 0x61 - 0x74 0x65 0x6C 0x79 0x2C 0x20 0x6E 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x65 0x65 - 0x6D 0x73 0x20 0x74 0x6F 0x20 0x6B 0x6E - 0x6F 0x77 0x20 0x61 0x6E 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 - 0x64 0x6E 0x61 0x70 0x70 0x69 0x6E 0x67 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x43 - 0x6C 0x75 0x62 0x20 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x73 0x20 0x73 0x70 0x65 0x6E - 0x64 0x20 0x68 0x6F 0x75 0x72 0x73 0x20 - 0x61 0x73 0x6B 0x69 0x6E 0x67 0x20 0x71 - 0x75 0x65 0x73 0x74 0x69 0x6F 0x6E 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x6F 0x6F - 0x6B 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 - 0x20 0x63 0x6C 0x75 0x65 0x73 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6E 0x6F 0x74 0x68 0x69 0x6E 0x67 - 0x2E 0x20 0x4A 0x75 0x73 0x74 0x20 0x61 - 0x73 0x20 0x74 0x68 0x65 0x79 0x20 0x61 - 0x72 0x65 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x64 0x69 0x73 0x63 - 0x6F 0x75 0x72 0x61 0x67 0x65 0x64 0x2C - 0x20 0x74 0x68 0x65 0x79 0x20 0x68 0x65 - 0x61 0x72 0x20 0x61 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x20 0x63 0x61 0x6C 0x6C 0x20 0x6F 0x75 - 0x74 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x6D 0x2E 0x20 0x20 0x54 0x68 0x65 0x79 - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x6F 0x77 0x61 0x72 - 0x64 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x66 0x65 0x65 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x69 0x6E 0x64 0x2C 0x20 0x6D - 0x75 0x63 0x68 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x69 0x72 0x20 0x61 0x73 0x74 - 0x6F 0x6E 0x69 0x73 0x68 0x6D 0x65 0x6E - 0x74 0x2C 0x20 0x61 0x20 0x6D 0x69 0x6E - 0x69 0x61 0x74 0x75 0x72 0x65 0x20 0x77 - 0x6F 0x6D 0x61 0x6E 0x2C 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x61 0x20 0x66 0x65 0x77 - 0x20 0x69 0x6E 0x63 0x68 0x65 0x73 0x20 - 0x74 0x61 0x6C 0x6C 0x21 0x20 0x0D 0x0A - 0x57 0x68 0x6F 0x20 0x69 0x73 0x20 0x74 - 0x68 0x69 0x73 0x20 0x77 0x6F 0x6D 0x61 - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x73 0x20 0x73 0x68 0x65 0x20 0x63 0x6F - 0x6E 0x6E 0x65 0x63 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x73 0x61 0x70 0x70 0x65 0x61 0x72 - 0x61 0x6E 0x63 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x66 0x74 - 0x20 0x64 0x72 0x69 0x6E 0x6B 0x20 0x68 - 0x65 0x69 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 16912 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_75= 0x0001534d - - -CHUNK('HTOP', _help_48544F50_75, "") -SUBFILE -#line 16920 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_75, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x03 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x74 0x2D 0x41 0x69 - 0x72 0x20 0x42 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x50 0x69 0x6C 0x6F 0x74 0x0D - 0x0A 0x48 0x69 0x72 0x6F 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x68 0x6F 0x74 0x2D 0x61 0x69 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E - 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 0x77 - 0x68 0x6F 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x63 0x72 0x61 0x73 0x68 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x65 0x65 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x72 0x65 0x67 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x63 0x6F - 0x6E 0x73 0x63 0x69 0x6F 0x75 0x73 0x6E - 0x65 0x73 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x72 0x79 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x69 0x73 0x2C 0x20 - 0x68 0x6F 0x77 0x20 0x68 0x65 0x20 0x61 - 0x72 0x72 0x69 0x76 0x65 0x64 0x20 0x68 - 0x65 0x72 0x65 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x68 - 0x69 0x73 0x20 0x68 0x6F 0x74 0x2D 0x61 - 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x69 0x73 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x20 0x72 0x65 0x6D 0x65 0x6D 0x62 0x65 - 0x72 0x73 0x20 0x69 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x67 0x68 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x61 0x69 0x72 - 0x20 0x61 0x62 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6A 0x75 0x6E 0x67 0x6C - 0x65 0x2E 0x20 0x20 0x48 0x65 0x20 0x73 - 0x69 0x6D 0x70 0x6C 0x79 0x20 0x63 0x61 - 0x6E 0x92 0x74 0x20 0x72 0x65 0x6D 0x65 - 0x6D 0x62 0x65 0x72 0x20 0x77 0x68 0x61 - 0x74 0x20 0x68 0x61 0x70 0x70 0x65 0x6E - 0x65 0x64 0x20 0x61 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x6F 0x72 - 0x20 0x68 0x6F 0x77 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x75 0x6E 0x63 0x6F 0x6E - 0x73 0x63 0x69 0x6F 0x75 0x73 0x2E 0x20 - 0x20 0x48 0x69 0x72 0x6F 0x20 0x73 0x65 - 0x65 0x73 0x20 0x61 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x76 0x69 0x6C 0x6C 0x61 - 0x67 0x65 0x20 0x6E 0x65 0x61 0x72 0x62 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x64 0x65 - 0x63 0x69 0x64 0x65 0x73 0x20 0x74 0x6F - 0x20 0x73 0x65 0x65 0x20 0x69 0x66 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x73 0x6F 0x6D 0x65 - 0x6F 0x6E 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x68 0x69 - 0x73 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x2E 0x20 0x20 0x57 0x69 0x74 0x68 - 0x6F 0x75 0x74 0x20 0x69 0x74 0x2C 0x20 - 0x48 0x69 0x72 0x6F 0x20 0x77 0x6F 0x6E - 0x64 0x65 0x72 0x73 0x20 0x68 0x6F 0x77 - 0x20 0x68 0x65 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x65 0x76 0x65 0x72 0x20 0x67 0x65 - 0x74 0x20 0x68 0x6F 0x6D 0x65 0x2E 0x0D - 0x0A 0x41 0x73 0x20 0x68 0x65 0x20 0x65 - 0x6E 0x74 0x65 0x72 0x73 0x20 0x74 0x68 - 0x65 0x20 0x76 0x69 0x6C 0x6C 0x61 0x67 - 0x65 0x2C 0x20 0x48 0x69 0x72 0x6F 0x20 - 0x73 0x65 0x65 0x73 0x20 0x73 0x65 0x76 - 0x65 0x72 0x61 0x6C 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x2C 0x20 0x61 0x6C 0x6C - 0x20 0x75 0x6E 0x63 0x6F 0x6E 0x73 0x63 - 0x69 0x6F 0x75 0x73 0x2C 0x20 0x6C 0x79 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E 0x20 0x20 0x48 0x69 0x72 0x6F - 0x20 0x63 0x61 0x6E 0x20 0x74 0x65 0x6C - 0x6C 0x20 0x74 0x68 0x61 0x74 0x20 0x74 - 0x68 0x65 0x72 0x65 0x20 0x69 0x73 0x20 - 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E - 0x67 0x20 0x76 0x65 0x72 0x79 0x20 0x77 - 0x72 0x6F 0x6E 0x67 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x68 0x65 0x61 0x72 0x73 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x74 0x65 - 0x72 0x20 0x63 0x6F 0x6D 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x68 0x75 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x64 0x65 0x63 0x69 0x64 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x6F 0x20 0x69 0x74 0x20 - 0x69 0x73 0x2E 0x20 0x0D 0x0A 0x57 0x68 - 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x48 0x69 0x72 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x68 0x61 - 0x74 0x20 0x68 0x61 0x73 0x20 0x68 0x61 - 0x70 0x70 0x65 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x6C 0x6C - 0x61 0x67 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 17095 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_76= 0x0001534e - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 17103 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x72 0x75 0x6E 0x6E 0x69 0x6E - 0x67 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 0x69 - 0x73 0x20 0x69 0x6E 0x74 0x65 0x72 0x76 - 0x69 0x65 0x77 0x65 0x64 0x2C 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x69 0x6B 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x20 0x74 0x68 - 0x61 0x74 0x20 0x68 0x65 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x93 0x77 0x69 - 0x6E 0x73 0x20 0x62 0x79 0x20 0x61 0x20 - 0x6E 0x6F 0x73 0x65 0x94 0x20 0x6F 0x72 - 0x20 0x93 0x77 0x68 0x65 0x6E 0x20 0x49 - 0x20 0x72 0x75 0x6E 0x2C 0x20 0x6D 0x79 - 0x20 0x6E 0x6F 0x73 0x65 0x20 0x69 0x73 - 0x20 0x72 0x75 0x6E 0x6E 0x69 0x6E 0x67 - 0x2C 0x20 0x74 0x6F 0x6F 0x2E 0x94 0x20 - 0x20 0x4F 0x72 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x68 0x61 - 0x64 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x6F 0x73 0x65 - 0x20 0x93 0x6B 0x65 0x65 0x70 0x73 0x20 - 0x6D 0x79 0x20 0x6C 0x6F 0x77 0x65 0x72 - 0x20 0x62 0x6F 0x64 0x79 0x20 0x63 0x6F - 0x6F 0x6C 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x49 0x20 0x77 0x6F 0x72 0x6B 0x20 0x6F - 0x75 0x74 0x2E 0x94 0x20 0x20 0x48 0x69 - 0x73 0x20 0x6E 0x6F 0x73 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x75 0x72 0x6E 0x65 - 0x64 0x20 0x6F 0x75 0x74 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x61 0x20 0x67 0x72 - 0x65 0x61 0x74 0x20 0x61 0x73 0x73 0x65 - 0x74 0x2C 0x20 0x73 0x65 0x74 0x74 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x70 0x61 0x72 0x74 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 0x62 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x69 - 0x74 0x20 0x69 0x73 0x20 0x75 0x6E 0x69 - 0x71 0x75 0x65 0x97 0x61 0x6E 0x64 0x20 - 0x67 0x65 0x74 0x73 0x20 0x68 0x69 0x6D - 0x20 0x6E 0x6F 0x74 0x69 0x63 0x65 0x64 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17211 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_77= 0x0001534f - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 17219 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6F 0x6B 0x0D 0x0A - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 0x6E - 0x20 0x65 0x78 0x63 0x65 0x6C 0x6C 0x65 - 0x6E 0x74 0x20 0x63 0x6F 0x6F 0x6B 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6E 0x6F 0x20 - 0x77 0x6F 0x6E 0x64 0x65 0x72 0x20 0x77 - 0x69 0x74 0x68 0x20 0x73 0x75 0x63 0x68 - 0x20 0x61 0x20 0x66 0x69 0x6E 0x65 0x20 - 0x6E 0x6F 0x73 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x73 0x6D 0x65 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x61 0x72 0x6F 0x6D 0x61 0x73 - 0x21 0x20 0x20 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x68 0x61 0x70 0x70 - 0x65 0x6E 0x73 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x6D 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x20 0x69 0x73 0x20 0x68 0x69 - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x63 - 0x6F 0x6F 0x6B 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x53 0x70 0x6F 0x6F - 0x6B 0x79 0x20 0x66 0x61 0x6D 0x69 0x6C - 0x79 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x73 0x20 0x61 0x20 - 0x63 0x6F 0x6C 0x64 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x61 0x6E 0x92 0x74 0x20 0x73 - 0x6D 0x65 0x6C 0x6C 0x3F 0x20 0x20 0x57 - 0x68 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x79 0x20 0x64 0x6F - 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D 0x20 - 0x61 0x66 0x74 0x65 0x72 0x20 0x74 0x68 - 0x65 0x79 0x20 0x77 0x61 0x69 0x74 0x20 - 0x61 0x6E 0x20 0x68 0x6F 0x75 0x72 0x20 - 0x66 0x6F 0x72 0x20 0x64 0x69 0x6E 0x6E - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x68 0x69 0x64 - 0x69 0x6E 0x67 0x20 0x73 0x6F 0x6D 0x65 - 0x77 0x68 0x65 0x72 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 17321 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_78= 0x00015350 - - -CHUNK('HTOP', _help_48544F50_78, "") -SUBFILE -#line 17329 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_78, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_77=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_77=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_77=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x46 0x61 0x69 0x72 0x20 0x50 0x61 - 0x72 0x74 0x69 0x63 0x69 0x70 0x61 0x6E - 0x74 0x0D 0x0A 0x4A 0x65 0x72 0x65 0x6D - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x66 0x6F 0x72 0x74 0x75 0x6E - 0x65 0x20 0x74 0x65 0x6C 0x6C 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 0x74 - 0x72 0x65 0x65 0x74 0x20 0x66 0x61 0x69 - 0x72 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 - 0x67 0x69 0x66 0x74 0x20 0x69 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6E 0x20 0x73 0x6D 0x65 0x6C - 0x6C 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x92 0x73 0x20 0x66 0x75 0x74 0x75 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x68 0x61 0x69 0x72 - 0x2E 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x68 0x61 0x70 0x70 - 0x65 0x6E 0x73 0x20 0x77 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x6D 0x65 0x65 0x74 - 0x73 0x20 0x74 0x68 0x65 0x20 0x67 0x69 - 0x72 0x6C 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x73 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x97 0x68 0x6F 0x77 0x20 0x64 0x6F 0x65 - 0x73 0x20 0x68 0x65 0x20 0x63 0x6F 0x6E - 0x76 0x69 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x72 0x20 0x74 0x68 0x61 0x74 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6F - 0x6E 0x65 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x65 0x72 0x20 0x61 0x66 0x74 0x65 0x72 - 0x20 0x68 0x65 0x20 0x73 0x6D 0x65 0x6C - 0x6C 0x73 0x20 0x68 0x65 0x72 0x20 0x68 - 0x61 0x69 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x20 0x72 0x75 0x6E 0x73 - 0x20 0x61 0x77 0x61 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 17431 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_79= 0x00015351 - - -CHUNK('HTOP', _help_48544F50_79, "") -SUBFILE -#line 17439 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_79, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_78=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_78=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_78=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x4D 0x61 - 0x6E 0x0D 0x0A 0x4A 0x65 0x72 0x65 0x6D - 0x79 0x20 0x75 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x77 0x61 0x74 0x63 0x68 0x20 - 0x61 0x20 0x6C 0x6F 0x74 0x20 0x6F 0x66 - 0x20 0x63 0x61 0x76 0x65 0x6D 0x61 0x6E - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x72 0x61 0x63 - 0x74 0x69 0x63 0x65 0x20 0x70 0x72 0x65 - 0x68 0x69 0x73 0x74 0x6F 0x72 0x69 0x63 - 0x20 0x74 0x61 0x6C 0x6B 0x2C 0x20 0x6D - 0x6F 0x73 0x74 0x6C 0x79 0x20 0x67 0x72 - 0x75 0x6E 0x74 0x69 0x6E 0x67 0x2E 0x20 - 0x20 0x48 0x65 0x92 0x64 0x20 0x62 0x65 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x67 0x6F 0x6F 0x64 0x20 0x61 0x73 0x20 - 0x61 0x20 0x70 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x6D 0x61 - 0x6E 0x20 0x77 0x68 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x61 0x20 0x6D 0x75 - 0x6D 0x6D 0x79 0x2E 0x20 0x20 0x48 0x65 - 0x92 0x73 0x20 0x76 0x65 0x72 0x79 0x20 - 0x65 0x78 0x63 0x69 0x74 0x65 0x64 0x2C - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x68 - 0x65 0x20 0x64 0x69 0x73 0x63 0x6F 0x76 - 0x65 0x72 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x20 0x63 0x6F 0x6D 0x65 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x20 - 0x63 0x75 0x72 0x73 0x65 0x97 0x74 0x68 - 0x65 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x20 - 0x66 0x6F 0x6C 0x6C 0x6F 0x77 0x73 0x20 - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 0x65 - 0x76 0x65 0x72 0x79 0x77 0x68 0x65 0x72 - 0x65 0x20 0x68 0x65 0x20 0x67 0x6F 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x69 0x6D - 0x69 0x74 0x61 0x74 0x65 0x73 0x20 0x68 - 0x69 0x73 0x20 0x65 0x76 0x65 0x72 0x79 - 0x20 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A - 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 - 0x65 0x78 0x70 0x6C 0x61 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x6D 0x6D - 0x79 0x20 0x74 0x6F 0x20 0x68 0x69 0x73 - 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x62 0x72 - 0x65 0x61 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x73 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 17548 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7A= 0x00015352 - - -CHUNK('HTOP', _help_48544F50_7A, "") -SUBFILE -#line 17556 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC0 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x6A 0x6F 0x6B 0x65 0x73 0x0D - 0x0A 0x4A 0x65 0x72 0x7A 0x79 0x20 0x68 - 0x61 0x73 0x20 0x77 0x6F 0x72 0x6B 0x65 - 0x64 0x20 0x76 0x65 0x72 0x79 0x20 0x68 - 0x61 0x72 0x64 0x20 0x66 0x6F 0x72 0x20 - 0x35 0x34 0x20 0x79 0x65 0x61 0x72 0x73 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 0x6C - 0x69 0x66 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x68 - 0x61 0x73 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x73 0x69 0x6C 0x6C 0x79 0x20 0x6A - 0x6F 0x6B 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 0x75 - 0x70 0x20 0x6E 0x65 0x77 0x20 0x6A 0x6F - 0x6B 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x72 0x61 0x63 0x74 0x69 0x63 0x65 - 0x73 0x20 0x68 0x69 0x73 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x73 0x74 0x65 0x70 - 0x73 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x92 0x73 0x20 0x61 0x6C 0x6F 0x6E - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x65 0x6C 0x64 0x2E 0x20 - 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x6D 0x6F - 0x72 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x77 0x6F 0x72 0x6B 0x69 - 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x66 0x69 0x65 0x6C 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x64 0x61 0x6E 0x63 - 0x69 0x6E 0x67 0x2C 0x20 0x68 0x65 0x20 - 0x73 0x65 0x6E 0x73 0x65 0x64 0x20 0x73 - 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x73 - 0x74 0x61 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x49 0x74 0x20 - 0x77 0x61 0x73 0x20 0x61 0x20 0x67 0x6F - 0x6F 0x66 0x79 0x2D 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 0x65 - 0x69 0x67 0x6E 0x65 0x72 0x20 0x6E 0x61 - 0x6D 0x65 0x64 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x2E 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x6C 0x6D 0x20 0x64 0x69 0x72 0x65 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x73 0x63 0x6F - 0x75 0x74 0x69 0x6E 0x67 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x61 0x20 0x6E 0x65 - 0x77 0x20 0x66 0x69 0x6C 0x6D 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x72 0x61 0x6E 0x20 0x61 0x63 0x72 - 0x6F 0x73 0x73 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x2C 0x20 0x68 0x65 0x20 0x6B 0x6E - 0x65 0x77 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x68 0x61 0x64 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x66 0x61 - 0x63 0x65 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x77 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 17678 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7B= 0x00015353 - - -CHUNK('HTOP', _help_48544F50_7B, "") -SUBFILE -#line 17686 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_79=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_79=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_79=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x03 0x03 0x47 0x61 0x72 0x64 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x4E 0x6F 0x77 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x92 - 0x73 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x20 0x6F 0x66 0x20 0x62 0x65 0x69 0x6E - 0x67 0x20 0x61 0x20 0x67 0x61 0x72 0x64 - 0x65 0x6E 0x65 0x72 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 - 0x61 0x72 0x79 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x67 0x61 0x72 0x64 0x65 0x6E 0x65 0x72 - 0x20 0x69 0x73 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x61 0x20 0x73 0x75 0x70 - 0x65 0x72 0x2D 0x61 0x67 0x65 0x6E 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x6E - 0x61 0x74 0x69 0x6F 0x6E 0x61 0x6C 0x20 - 0x73 0x65 0x63 0x75 0x72 0x69 0x74 0x79 - 0x20 0x61 0x67 0x65 0x6E 0x63 0x79 0x2E - 0x20 0x20 0x52 0x75 0x6D 0x6F 0x72 0x20 - 0x68 0x61 0x73 0x20 0x69 0x74 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x65 0x76 0x69 0x6C 0x20 0x6F 0x77 0x6E - 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x68 0x61 0x73 0x20 0x62 0x75 0x72 0x69 - 0x65 0x64 0x20 0x61 0x20 0x74 0x61 0x6C - 0x6B 0x69 0x6E 0x67 0x20 0x73 0x6B 0x75 - 0x6C 0x6C 0x20 0x74 0x68 0x61 0x74 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x77 0x68 - 0x6F 0x20 0x73 0x74 0x6F 0x6C 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x64 0x6F 0x75 0x67 - 0x68 0x6E 0x75 0x74 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x64 - 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 0x20 - 0x73 0x74 0x6F 0x72 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C - 0x6C 0x2E 0x20 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x20 0x6D 0x75 0x73 0x74 0x20 0x75 - 0x6E 0x63 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6B 0x75 0x6C 0x6C - 0x2E 0x20 0x0D 0x0A 0x48 0x65 0x20 0x6B - 0x6E 0x65 0x65 0x6C 0x73 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x6F 0x20 0x64 0x69 - 0x67 0x2C 0x20 0x62 0x75 0x74 0x20 0x66 - 0x69 0x6E 0x64 0x73 0x20 0x74 0x68 0x65 - 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x69 0x73 0x20 0x74 0x6F 0x6F 0x20 0x68 - 0x61 0x72 0x64 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x68 0x65 0x61 0x72 0x73 0x20 0x74 - 0x68 0x65 0x20 0x63 0x68 0x61 0x74 0x74 - 0x65 0x72 0x69 0x6E 0x67 0x20 0x6F 0x66 - 0x20 0x74 0x65 0x65 0x74 0x68 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6B 0x6E 0x6F - 0x77 0x73 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6B 0x75 0x6C 0x6C 0x20 0x69 0x73 0x20 - 0x6E 0x65 0x61 0x72 0x62 0x79 0x2E 0x20 - 0x20 0x49 0x73 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x61 0x6E 0x79 0x20 0x77 0x61 - 0x79 0x20 0x68 0x65 0x20 0x63 0x61 0x6E - 0x20 0x67 0x65 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x69 - 0x74 0x68 0x6F 0x75 0x74 0x20 0x64 0x69 - 0x67 0x67 0x69 0x6E 0x67 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 17817 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7C= 0x00015354 - - -CHUNK('HTOP', _help_48544F50_7C, "") -SUBFILE -#line 17825 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x03 0x03 0x54 0x61 0x78 0x69 0x20 0x44 - 0x72 0x69 0x76 0x65 0x72 0x0D 0x0A 0x42 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x4A - 0x65 0x72 0x7A 0x79 0x20 0x6E 0x65 0x76 - 0x65 0x72 0x20 0x6C 0x65 0x61 0x72 0x6E - 0x65 0x64 0x20 0x74 0x6F 0x20 0x64 0x72 - 0x69 0x76 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x68 - 0x65 0x27 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x74 - 0x61 0x78 0x69 0x20 0x64 0x72 0x69 0x76 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x6E 0x92 0x74 0x20 0x68 0x61 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x6F 0x62 0x65 0x79 - 0x20 0x61 0x6E 0x79 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x72 0x75 0x6C 0x65 - 0x73 0x20 0x62 0x65 0x63 0x61 0x75 0x73 - 0x65 0x20 0x68 0x65 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x6B 0x6E 0x6F - 0x77 0x20 0x74 0x68 0x65 0x6D 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x70 0x69 0x63 0x6B 0x20 0x75 - 0x70 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x2C 0x20 0x67 0x72 0x65 0x65 - 0x74 0x20 0x74 0x68 0x65 0x6D 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x20 0x6C 0x69 - 0x74 0x74 0x6C 0x65 0x20 0x50 0x6F 0x6C - 0x69 0x73 0x68 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x76 0x65 0x72 0x68 0x65 0x61 0x72 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 0x74 - 0x68 0x65 0x79 0x20 0x74 0x65 0x6C 0x6C - 0x20 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x73 0x65 0x61 0x74 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x6F 0x6E 0x65 0x20 0x65 - 0x76 0x65 0x6E 0x69 0x6E 0x67 0x2C 0x20 - 0x68 0x65 0x20 0x6F 0x76 0x65 0x72 0x68 - 0x65 0x61 0x72 0x73 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x62 0x75 0x72 0x67 0x6C 0x61 - 0x72 0x73 0x20 0x70 0x6C 0x61 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x65 0x61 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x77 0x62 0x6F 0x79 0x20 - 0x63 0x61 0x66 0xE9 0x20 0x73 0x61 0x66 - 0x65 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x6F 0x70 0x20 0x69 0x74 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x6C 0x63 0x6F 0x6E 0x79 0x20 0x62 - 0x65 0x68 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x72 0x65 0x73 0x74 0x61 0x75 - 0x72 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x20 0x77 0x61 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x61 0x72 0x20 0x62 0x65 - 0x6C 0x6F 0x77 0x2E 0x20 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 - 0x65 0x6D 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 17950 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7D= 0x00015355 - - -CHUNK('HTOP', _help_48544F50_7D, "") -SUBFILE -#line 17958 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_83=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_83=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x65 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_83=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x03 0x03 0x41 0x72 0x63 0x68 0x65 0x6F - 0x6C 0x6F 0x67 0x69 0x73 0x74 0x0D 0x0A - 0x41 0x73 0x20 0x61 0x20 0x79 0x6F 0x75 - 0x6E 0x67 0x20 0x62 0x6F 0x79 0x2C 0x20 - 0x4A 0x65 0x72 0x7A 0x79 0x20 0x77 0x6F - 0x72 0x6B 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6F 0x6C 0x69 - 0x73 0x68 0x20 0x63 0x6F 0x61 0x6C 0x20 - 0x6D 0x69 0x6E 0x65 0x73 0x2C 0x20 0x73 - 0x6F 0x20 0x68 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x73 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x6E 0x61 0x74 0x75 0x72 0x61 - 0x6C 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x72 0x63 0x68 0x65 0x6F - 0x6C 0x6F 0x67 0x69 0x73 0x74 0x2E 0x20 - 0x20 0x4A 0x65 0x72 0x7A 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x70 - 0x61 0x72 0x74 0x6E 0x65 0x72 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x2C 0x20 0x73 - 0x65 0x74 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x6E 0x63 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F - 0x73 0x74 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x73 0x20 0x6F 0x66 0x20 - 0x52 0x6F 0x6D 0x65 0x2E 0x20 0x20 0x4A - 0x65 0x72 0x7A 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 0x74 - 0x72 0x79 0x20 0x74 0x6F 0x20 0x73 0x68 - 0x61 0x72 0x65 0x20 0x61 0x20 0x73 0x69 - 0x6E 0x67 0x6C 0x65 0x20 0x74 0x65 0x6E - 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 0x74 - 0x68 0x65 0x79 0x20 0x61 0x72 0x65 0x20 - 0x62 0x6F 0x74 0x68 0x20 0x74 0x6F 0x6F - 0x20 0x62 0x69 0x67 0x2E 0x20 0x20 0x53 - 0x6F 0x20 0x4A 0x65 0x72 0x7A 0x79 0x20 - 0x73 0x6C 0x65 0x65 0x70 0x73 0x20 0x6F - 0x75 0x74 0x73 0x69 0x64 0x65 0x20 0x74 - 0x68 0x65 0x20 0x72 0x75 0x69 0x6E 0x73 - 0x20 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 - 0x74 0x2E 0x20 0x20 0x41 0x73 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x6C 0x79 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x6F 0x6E 0x65 0x20 0x65 0x76 0x65 - 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x68 0x65 - 0x20 0x68 0x65 0x61 0x72 0x73 0x20 0x61 - 0x20 0x6C 0x6F 0x75 0x64 0x20 0x73 0x77 - 0x6F 0x6F 0x73 0x68 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x61 0x74 0x63 0x68 0x65 0x73 - 0x20 0x61 0x20 0x73 0x70 0x61 0x63 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 - 0x6C 0x61 0x6E 0x64 0x20 0x62 0x65 0x73 - 0x69 0x64 0x65 0x20 0x68 0x69 0x6D 0x2E - 0x20 0x20 0x4F 0x75 0x74 0x20 0x63 0x6F - 0x6D 0x65 0x73 0x20 0x61 0x20 0x67 0x6F - 0x6F 0x66 0x79 0x20 0x67 0x75 0x79 0x20 - 0x77 0x69 0x74 0x68 0x20 0x61 0x20 0x70 - 0x61 0x70 0x65 0x72 0x20 0x73 0x61 0x63 - 0x6B 0x20 0x6F 0x76 0x65 0x72 0x20 0x68 - 0x69 0x73 0x20 0x68 0x65 0x61 0x64 0x2E - 0x20 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 - 0x77 0x61 0x6B 0x65 0x73 0x20 0x75 0x70 - 0x2C 0x20 0x73 0x65 0x65 0x73 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x67 0x2D 0x67 - 0x75 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x75 0x6E 0x73 0x20 0x61 0x77 0x61 - 0x79 0x20 0x73 0x63 0x72 0x65 0x61 0x6D - 0x69 0x6E 0x67 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x6E 0x6F 0x74 0x20 0x4A 0x65 0x72 - 0x7A 0x79 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x62 0x61 0x67 0x2D 0x68 0x65 0x61 - 0x64 0x20 0x67 0x75 0x79 0x20 0x74 0x65 - 0x6C 0x6C 0x73 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x20 0x74 0x68 0x61 0x74 0x20 0x74 - 0x68 0x65 0x79 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x66 0x69 0x6E 0x64 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x74 0x68 0x61 0x6E - 0x20 0x6C 0x6F 0x73 0x74 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x73 0x20 - 0x69 0x66 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x63 0x61 0x6D 0x65 0x20 0x77 0x69 - 0x74 0x68 0x20 0x68 0x69 0x6D 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x63 0x6B 0x65 0x74 0x2E 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x74 0x72 0x75 0x73 0x74 0x20 0x61 0x20 - 0x67 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x65 0x61 0x72 0x73 0x20 0x68 0x69 - 0x73 0x20 0x6C 0x75 0x6E 0x63 0x68 0x20 - 0x62 0x61 0x67 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x68 0x69 0x73 0x20 0x68 0x65 0x61 - 0x64 0x3F 0x20 0x20 0x49 0x66 0x20 0x4A - 0x65 0x72 0x7A 0x79 0x20 0x67 0x6F 0x65 - 0x73 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x79 0x20 0x6C 0x61 0x6E 0x64 0x3F - 0x20 0x20 0x4F 0x72 0x20 0x63 0x61 0x6E - 0x20 0x74 0x68 0x65 0x79 0x20 0x66 0x6C - 0x79 0x20 0x66 0x61 0x73 0x74 0x65 0x72 - 0x20 0x74 0x68 0x61 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x69 0x74 0x73 0x65 0x6C - 0x66 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E - 0x64 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x61 0x6E - 0x64 0x20 0x74 0x69 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 18127 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7E= 0x00015356 - - -CHUNK('HTOP', _help_48544F50_7E, "") -SUBFILE -#line 18135 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_95=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_95=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_95=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x03 0x03 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x73 0x74 0x61 0x72 0x0D 0x0A 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6E 0x74 0x65 0x65 - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x66 0x69 0x6C 0x6D 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6C 0x6F 0x63 0x61 - 0x74 0x69 0x6F 0x6E 0x20 0x6E 0x65 0x61 - 0x72 0x20 0x68 0x65 0x72 0x20 0x6A 0x6F - 0x62 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x61 0x6C 0x6C 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6C 0x6C 0x20 0x69 0x6E 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x72 0x65 0x73 0x73 0x20 0x77 0x68 - 0x6F 0x20 0x68 0x61 0x64 0x20 0x71 0x75 - 0x69 0x74 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x62 0x6F 0x6C 0x64 0x6C 0x79 0x20 0x74 - 0x6F 0x6F 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x67 0x65 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x73 0x20 0x73 0x75 - 0x72 0x70 0x72 0x69 0x73 0x65 0x64 0x20 - 0x61 0x74 0x20 0x68 0x6F 0x77 0x20 0x65 - 0x61 0x73 0x69 0x6C 0x79 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x63 0x61 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x68 0x65 0x72 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x6C - 0x6F 0x76 0x65 0x64 0x20 0x74 0x68 0x65 - 0x20 0x61 0x74 0x74 0x65 0x6E 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 0x72 - 0x61 0x73 0x20 0x61 0x6E 0x64 0x20 0x6C - 0x69 0x67 0x68 0x74 0x73 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x6B 0x65 0x70 0x74 - 0x20 0x74 0x72 0x79 0x69 0x6E 0x67 0x20 - 0x6F 0x75 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x62 0x69 0x67 0x67 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x62 0x69 0x67 0x67 0x65 - 0x72 0x20 0x70 0x61 0x72 0x74 0x73 0x20 - 0x69 0x6E 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x73 0x68 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x61 0x20 0x6C 0x65 0x61 0x64 0x69 0x6E - 0x67 0x20 0x72 0x6F 0x6C 0x65 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x20 0x66 0x69 0x6C 0x6D 0x21 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18250 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7F= 0x00015357 - - -CHUNK('HTOP', _help_48544F50_7F, "") -SUBFILE -#line 18258 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x6C 0x6D 0x20 0x52 - 0x65 0x61 0x64 0x65 0x72 0x0D 0x0A 0x4A - 0x6F 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x61 0x6D 0x61 0x7A - 0x69 0x6E 0x67 0x20 0x73 0x74 0x6F 0x72 - 0x69 0x65 0x73 0x20 0x70 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x70 0x61 0x6C 0x6D 0x20 0x72 - 0x65 0x61 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x50 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x69 0x6E 0x65 0x20 0x75 0x70 0x20 - 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x69 0x72 0x20 0x66 0x75 - 0x74 0x75 0x72 0x65 0x73 0x20 0x70 0x72 - 0x65 0x64 0x69 0x63 0x74 0x65 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x28 0x61 - 0x6C 0x6D 0x6F 0x73 0x74 0x29 0x20 0x61 - 0x6C 0x77 0x61 0x79 0x73 0x20 0x74 0x65 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x77 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 - 0x2E 0x20 0x20 0x4F 0x6E 0x65 0x20 0x64 - 0x61 0x79 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x6D 0x65 0x65 0x74 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x64 0x65 0x73 0x74 - 0x69 0x6E 0x79 0x20 0x63 0x6F 0x6C 0x6C - 0x69 0x64 0x65 0x73 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x65 0x72 0x20 0x6F 0x77 - 0x6E 0x2E 0x20 0x20 0x57 0x68 0x61 0x74 - 0x20 0x73 0x68 0x65 0x20 0x73 0x65 0x65 - 0x73 0x20 0x69 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x6F 0x6D 0x65 0x77 0x68 - 0x65 0x72 0x65 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x69 0x73 0x20 0x61 0x20 0x62 - 0x61 0x62 0x79 0x20 0x63 0x72 0x61 0x77 - 0x6C 0x69 0x6E 0x67 0x20 0x61 0x63 0x72 - 0x6F 0x73 0x73 0x20 0x61 0x20 0x72 0x6F - 0x61 0x64 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x20 0x74 0x68 - 0x65 0x79 0x20 0x6D 0x75 0x73 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x63 0x68 0x69 0x6C 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x61 0x76 0x65 0x20 - 0x69 0x74 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x6E 0x20 0x61 0x6D 0x62 0x75 0x6C - 0x61 0x6E 0x63 0x65 0x20 0x7A 0x6F 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x72 0x2E 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x79 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x62 0x79 0x20 - 0x69 0x6E 0x20 0x74 0x69 0x6D 0x65 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18381 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_80= 0x00015358 - - -CHUNK('HTOP', _help_48544F50_80, "") -SUBFILE -#line 18389 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_80, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x03 0x03 0x49 0x6D 0x70 0x6F 0x72 0x74 - 0x20 0x53 0x61 0x6C 0x65 0x73 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x0D 0x0A 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x20 - 0x68 0x61 0x73 0x20 0x77 0x6F 0x72 0x6B - 0x65 0x64 0x20 0x69 0x6E 0x20 0x73 0x61 - 0x6C 0x65 0x73 0x20 0x62 0x65 0x66 0x6F - 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x65 0x78 0x63 0x65 0x6C 0x6C 0x65 0x6E - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x69 0x6D 0x70 0x6F - 0x72 0x74 0x20 0x73 0x61 0x6C 0x65 0x73 - 0x70 0x65 0x72 0x73 0x6F 0x6E 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x73 0x65 0x6C - 0x6C 0x73 0x20 0x61 0x6E 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x6F 0x76 0x65 0x73 0x3A 0x20 - 0x20 0x63 0x61 0x72 0x73 0x2C 0x20 0x74 - 0x61 0x78 0x69 0x73 0x2C 0x20 0x73 0x70 - 0x61 0x63 0x65 0x73 0x68 0x69 0x70 0x73 - 0x2C 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 - 0x73 0x2C 0x20 0x61 0x6D 0x62 0x75 0x6C - 0x61 0x6E 0x63 0x65 0x73 0x2C 0x20 0x68 - 0x6F 0x74 0x2D 0x61 0x69 0x72 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x73 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6A 0x65 0x74 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x73 0x2E - 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x72 0x20 - 0x70 0x6F 0x74 0x65 0x6E 0x74 0x69 0x61 - 0x6C 0x20 0x63 0x75 0x73 0x74 0x6F 0x6D - 0x65 0x72 0x73 0x20 0x72 0x65 0x61 0x6C - 0x69 0x7A 0x65 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x73 0x65 0x20 0x76 - 0x65 0x68 0x69 0x63 0x6C 0x65 0x73 0x20 - 0x61 0x72 0x65 0x20 0x6E 0x6F 0x74 0x20 - 0x68 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x6C 0x6C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x69 0x73 0x20 0x61 0x20 0x73 - 0x63 0x61 0x6D 0x20 0x61 0x72 0x74 0x69 - 0x73 0x74 0x2C 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x67 0x65 0x74 0x20 - 0x61 0x77 0x61 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x6C 0x69 0x63 0x65 0x20 0x61 - 0x72 0x72 0x65 0x73 0x74 0x20 0x68 0x65 - 0x72 0x3F 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18500 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_81= 0x00015359 - - -CHUNK('HTOP', _help_48544F50_81, "") -SUBFILE -#line 18508 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_81, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_80=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_80=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_80=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x03 0x03 0x41 0x72 0x74 0x20 0x43 0x6F - 0x6C 0x6C 0x65 0x63 0x74 0x6F 0x72 0x0D - 0x0A 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x61 0x6E 0x20 - 0x61 0x72 0x74 0x20 0x63 0x6F 0x6C 0x6C - 0x65 0x63 0x74 0x6F 0x72 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x71 - 0x75 0x69 0x74 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 - 0x65 0x20 0x66 0x6F 0x72 0x20 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x21 - 0x20 0x53 0x68 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x61 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x61 0x76 0x65 - 0x6C 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x74 0x72 0x6F 0x70 0x69 0x63 0x73 - 0x2C 0x20 0x73 0x74 0x61 0x79 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x68 0x75 0x74 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x77 0x6F 0x72 - 0x6B 0x20 0x77 0x69 0x74 0x68 0x20 0x61 - 0x20 0x67 0x75 0x69 0x64 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x65 0x61 0x64 0x20 0x68 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x61 0x20 0x73 - 0x65 0x74 0x20 0x6F 0x66 0x20 0x70 0x72 - 0x69 0x63 0x65 0x6C 0x65 0x73 0x73 0x20 - 0x74 0x6F 0x74 0x65 0x6D 0x20 0x70 0x6F - 0x6C 0x65 0x73 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x73 - 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x73 0x20 0x68 0x61 - 0x76 0x65 0x20 0x61 0x20 0x63 0x75 0x72 - 0x73 0x65 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x6D 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x73 0x6B 0x65 - 0x6C 0x65 0x74 0x6F 0x6E 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x68 0x61 0x74 0x74 - 0x65 0x72 0x69 0x6E 0x67 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x73 0x20 0x73 0x74 0x61 - 0x72 0x74 0x20 0x70 0x6F 0x70 0x70 0x69 - 0x6E 0x67 0x20 0x75 0x70 0x20 0x65 0x76 - 0x65 0x72 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x65 0x6C 0x6C - 0x20 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x6F 0x75 0x74 0x2C - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x73 0x74 0x69 0x63 0x6B 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x3F 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x72 0x20 0x67 0x75 0x69 0x64 0x65 0x20 - 0x64 0x69 0x73 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x2C 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 0x6C - 0x70 0x20 0x68 0x65 0x72 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x68 0x69 0x6D 0x3F 0x20 - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18628 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_82= 0x0001535a - - -CHUNK('HTOP', _help_48544F50_82, "") -SUBFILE -#line 18636 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_82, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x03 0x03 0x73 0x74 0x75 0x6E 0x74 0x20 - 0x61 0x63 0x74 0x72 0x65 0x73 0x73 0x0D - 0x0A 0x4B 0x69 0x6D 0x20 0x74 0x72 0x69 - 0x65 0x64 0x20 0x68 0x65 0x72 0x20 0x66 - 0x69 0x72 0x73 0x74 0x20 0x73 0x74 0x75 - 0x6E 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x77 0x61 0x73 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x35 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x6C 0x6F 0x76 - 0x65 0x64 0x20 0x66 0x6C 0x79 0x69 0x6E - 0x67 0x20 0x6B 0x69 0x74 0x65 0x73 0x2C - 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x77 0x69 0x6E 0x64 0x79 0x20 0x64 0x61 - 0x79 0x2C 0x20 0x73 0x68 0x65 0x20 0x74 - 0x69 0x65 0x64 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x20 0x61 0x6C 0x6C - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x74 0x65 0x73 0x20 0x69 0x6E - 0x20 0x68 0x65 0x72 0x20 0x63 0x6F 0x6C - 0x6C 0x65 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 - 0x68 0x65 0x20 0x72 0x61 0x6E 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x66 0x6C 0x79 0x69 0x6E - 0x67 0x2C 0x20 0x61 0x20 0x67 0x75 0x73 - 0x74 0x20 0x6F 0x66 0x20 0x77 0x69 0x6E - 0x64 0x20 0x74 0x6F 0x6F 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x65 0x73 - 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x6F 0x6F 0x6B 0x20 0x4B 0x69 0x6D - 0x20 0x75 0x70 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x61 0x6C 0x6F 0x6E 0x67 0x20 - 0x77 0x69 0x74 0x68 0x20 0x74 0x68 0x65 - 0x6D 0x2C 0x20 0x68 0x65 0x72 0x20 0x63 - 0x65 0x72 0x65 0x6D 0x6F 0x6E 0x69 0x61 - 0x6C 0x20 0x6B 0x69 0x6D 0x6F 0x6E 0x6F - 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x68 - 0x65 0x72 0x20 0x6B 0x6E 0x65 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x41 0x20 0x6E 0x65 - 0x77 0x73 0x20 0x63 0x72 0x65 0x77 0x20 - 0x63 0x61 0x75 0x67 0x68 0x74 0x20 0x4B - 0x69 0x6D 0x20 0x69 0x6E 0x20 0x66 0x6C - 0x69 0x67 0x68 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x6D 0x61 0x6E 0x79 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x63 0x6F 0x6D - 0x70 0x61 0x6E 0x69 0x65 0x73 0x20 0x63 - 0x61 0x6C 0x6C 0x65 0x64 0x20 0x68 0x65 - 0x72 0x20 0x68 0x6F 0x75 0x73 0x65 0x2C - 0x20 0x77 0x61 0x6E 0x74 0x69 0x6E 0x67 - 0x20 0x4B 0x69 0x6D 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x61 0x20 0x73 0x74 0x61 - 0x72 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x68 0x65 0x72 0x20 0x70 0x61 0x72 0x65 - 0x6E 0x74 0x73 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x6E 0x92 0x74 0x20 0x6C 0x65 0x74 - 0x20 0x68 0x65 0x72 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x73 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x61 - 0x74 0x20 0x6C 0x65 0x61 0x73 0x74 0x20 - 0x31 0x32 0x2E 0x20 0x20 0x57 0x65 0x6C - 0x6C 0x2C 0x20 0x6E 0x6F 0x77 0x20 0x73 - 0x68 0x65 0x27 0x73 0x20 0x31 0x32 0x20 - 0x61 0x6E 0x64 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x20 0x73 0x74 0x61 0x72 0x21 -ENDCHUNK - - -ENDCHUNK -#line 18764 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_83= 0x0001535b - - -CHUNK('HTOP', _help_48544F50_83, "") -SUBFILE -#line 18772 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_83, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_85=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_85=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_85=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x72 0x74 0x75 0x6E - 0x65 0x20 0x54 0x65 0x6C 0x6C 0x65 0x72 - 0x0D 0x0A 0x49 0x66 0x20 0x4B 0x69 0x6D - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x2C 0x20 0x73 0x68 - 0x65 0x92 0x64 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x56 0x69 0x72 0x74 0x75 - 0x61 0x6C 0x20 0x52 0x65 0x61 0x6C 0x69 - 0x74 0x79 0x20 0x46 0x6F 0x72 0x74 0x75 - 0x6E 0x65 0x20 0x54 0x65 0x6C 0x6C 0x65 - 0x72 0x2E 0x20 0x20 0x54 0x68 0x61 0x74 - 0x20 0x77 0x61 0x79 0x20 0x73 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 - 0x61 0x6B 0x65 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x66 0x75 0x74 0x75 - 0x72 0x65 0x73 0x2E 0x20 0x20 0x53 0x68 - 0x65 0x20 0x69 0x6D 0x61 0x67 0x69 0x6E - 0x65 0x73 0x20 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x72 0x65 0x61 0x64 0x69 - 0x6E 0x67 0x20 0x66 0x6F 0x72 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x65 0x65 0x6E 0x20 - 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x2E 0x20 0x20 0x54 0x68 0x65 0x79 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x75 0x74 0x75 0x72 0x65 0x2C - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x69 0x6E 0x76 0x65 0x6E - 0x74 0x20 0x61 0x20 0x72 0x6F 0x63 0x6B - 0x65 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x70 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x6F 0x6E 0x20 0x76 0x61 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 0x74 - 0x6F 0x20 0x4D 0x61 0x72 0x73 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x74 0x65 0x73 0x74 - 0x20 0x66 0x6C 0x69 0x67 0x68 0x74 0x2E - 0x20 0x42 0x75 0x74 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x74 0x68 0x65 0x79 0x20 - 0x74 0x61 0x6B 0x65 0x20 0x6F 0x66 0x66 - 0x2C 0x20 0x74 0x68 0x65 0x79 0x20 0x62 - 0x6F 0x74 0x68 0x20 0x72 0x65 0x61 0x6C - 0x69 0x7A 0x65 0x20 0x74 0x68 0x61 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x66 0x75 0x74 0x75 0x72 0x65 0x20 0x61 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x73 0x74 0x2C 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x66 0x6F 0x72 - 0x67 0x6F 0x74 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x67 0x75 0x72 0x65 0x20 0x6F 0x75 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x72 0x65 0x63 0x68 0x61 0x72 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x63 0x6B 0x65 0x74 0x20 0x62 0x6F 0x6F - 0x73 0x74 0x65 0x72 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x67 0x65 0x74 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 - 0x74 0x6F 0x20 0x66 0x6C 0x79 0x20 0x68 - 0x6F 0x6D 0x65 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4B 0x69 - 0x6D 0x20 0x61 0x6E 0x64 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x67 0x65 0x74 0x20 - 0x68 0x6F 0x6D 0x65 0x3F 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x4B 0x69 0x6D 0x20 0x6E - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x72 0x79 0x20 0x73 0x6F 0x6D 0x65 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x68 0x65 0x6C 0x70 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x67 0x65 0x74 0x20 - 0x62 0x61 0x63 0x6B 0x3F -ENDCHUNK - - -ENDCHUNK -#line 18913 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_84= 0x0001535c - - -CHUNK('HTOP', _help_48544F50_84, "") -SUBFILE -#line 18921 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_84, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_84=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_84=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_84=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6D 0x62 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x4B 0x69 0x64 0x73 - 0x92 0x20 0x4D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x20 0x43 0x6C 0x75 0x62 0x0D 0x0A - 0x4B 0x69 0x6D 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x70 0x6C - 0x61 0x79 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x64 0x20 0x70 - 0x61 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x4B 0x69 0x64 0x73 0x92 0x20 0x4D - 0x79 0x73 0x74 0x65 0x72 0x79 0x20 0x43 - 0x6C 0x75 0x62 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x63 0x61 0x6E 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x6F 0x72 - 0x79 0x20 0x6E 0x6F 0x77 0x2E 0x20 0x20 - 0x42 0x6F 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x62 0x69 0x67 0x20 0x67 0x75 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x67 0x75 0x61 0x72 - 0x64 0x73 0x20 0x74 0x68 0x65 0x20 0x63 - 0x72 0x65 0x65 0x70 0x79 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x72 - 0x65 0x65 0x74 0x2C 0x20 0x6B 0x65 0x65 - 0x70 0x73 0x20 0x74 0x65 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x65 0x76 0x65 0x72 0x79 - 0x6F 0x6E 0x65 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x73 0x61 0x77 0x20 - 0x61 0x20 0x55 0x46 0x4F 0x20 0x66 0x6C - 0x79 0x69 0x6E 0x67 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x63 0x72 0x65 0x65 0x70 0x79 0x20 0x68 - 0x6F 0x75 0x73 0x65 0x20 0x61 0x74 0x20 - 0x6E 0x69 0x67 0x68 0x74 0x2E 0x20 0x20 - 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x62 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x64 0x73 0x20 0x62 0x65 0x6C 0x69 - 0x65 0x76 0x65 0x20 0x68 0x69 0x6D 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x4B 0x69 0x6D - 0x20 0x69 0x73 0x20 0x64 0x65 0x74 0x65 - 0x72 0x6D 0x69 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x70 0x72 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x92 - 0x73 0x20 0x74 0x65 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x75 0x74 0x68 0x2E 0x20 0x20 0x53 0x6F - 0x2C 0x20 0x6F 0x6E 0x65 0x20 0x6E 0x69 - 0x67 0x68 0x74 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x73 0x20 0x6B 0x6E 0x65 - 0x65 0x6C 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6F 0x66 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x69 0x74 0x2E 0x20 0x0D 0x0A - 0x41 0x72 0x6F 0x75 0x6E 0x64 0x20 0x6D - 0x69 0x64 0x6E 0x69 0x67 0x68 0x74 0x2C - 0x20 0x74 0x68 0x65 0x79 0x20 0x73 0x65 - 0x65 0x20 0x74 0x69 0x6E 0x79 0x20 0x6C - 0x69 0x67 0x68 0x74 0x73 0x20 0x66 0x6C - 0x61 0x73 0x68 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x73 0x74 0x61 0x6E 0x63 0x65 0x2E 0x20 - 0x57 0x68 0x61 0x74 0x20 0x69 0x73 0x20 - 0x69 0x74 0x3F 0x20 0x20 0x49 0x66 0x20 - 0x69 0x74 0x92 0x73 0x20 0x61 0x20 0x55 - 0x46 0x4F 0x2C 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x62 0x65 0x20 0x6B 0x69 0x64 - 0x6E 0x61 0x70 0x70 0x65 0x64 0x3F 0x20 - 0x20 0x4F 0x72 0x20 0x69 0x73 0x20 0x69 - 0x74 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x65 0x65 0x6E - 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 - 0x73 0x74 0x2C 0x20 0x57 0x69 0x6C 0x6C - 0x79 0x2C 0x20 0x77 0x6F 0x72 0x6B 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x61 0x20 - 0x6E 0x65 0x77 0x20 0x65 0x78 0x70 0x65 - 0x72 0x69 0x6D 0x65 0x6E 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 19060 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_85= 0x0001535d - - -CHUNK('HTOP', _help_48544F50_85, "") -SUBFILE -#line 19068 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_85, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x47 0x69 - 0x72 0x6C 0x0D 0x0A 0x4B 0x69 0x6D 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 - 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x61 0x20 0x74 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x66 0x75 0x6E 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x20 0x70 0x61 0x72 0x74 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x68 0x69 0x73 0x74 0x6F 0x72 0x79 0x20 - 0x67 0x65 0x74 0x73 0x20 0x61 0x6C 0x6C - 0x20 0x6D 0x69 0x78 0x65 0x64 0x20 0x75 - 0x70 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x70 0x72 0x65 0x68 0x69 - 0x73 0x74 0x6F 0x72 0x69 0x63 0x20 0x67 - 0x69 0x72 0x6C 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x66 0x61 0x74 0x68 0x65 0x72 - 0x20 0x68 0x61 0x73 0x20 0x61 0x20 0x77 - 0x65 0x69 0x72 0x64 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x20 0x66 0x6F 0x6C 0x6C 0x6F - 0x77 0x69 0x6E 0x67 0x20 0x68 0x69 0x6D - 0x20 0x65 0x76 0x65 0x72 0x79 0x77 0x68 - 0x65 0x72 0x65 0x2E 0x20 0x20 0x4B 0x69 - 0x6D 0x92 0x73 0x20 0x6A 0x6F 0x62 0x20 - 0x69 0x73 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x61 0x20 0x77 0x61 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x74 0x6F 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x64 0x69 0x66 0x66 0x65 0x72 0x65 - 0x6E 0x74 0x20 0x74 0x69 0x6D 0x65 0x2E - 0x20 0x20 0x4F 0x6E 0x65 0x20 0x6D 0x6F - 0x72 0x6E 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x72 0x20 0x64 0x6F 0x67 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x62 0x61 0x72 - 0x6B 0x69 0x6E 0x67 0x2C 0x20 0x73 0x6F - 0x20 0x73 0x68 0x65 0x20 0x66 0x6F 0x6C - 0x6C 0x6F 0x77 0x73 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x62 0x61 0x6E 0x64 0x6F - 0x6E 0x65 0x64 0x20 0x74 0x61 0x78 0x69 - 0x20 0x63 0x61 0x62 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x6E 0x6F - 0x77 0x68 0x65 0x72 0x65 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x74 0x68 0x65 - 0x20 0x74 0x61 0x78 0x69 0x2E 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x67 0x65 0x74 0x73 0x20 0x68 0x65 0x72 - 0x20 0x66 0x61 0x74 0x68 0x65 0x72 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x79 0x20 0x74 0x61 0x6B 0x65 0x20 0x6F - 0x66 0x66 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x2C 0x20 0x69 - 0x6E 0x20 0x68 0x65 0x72 0x20 0x72 0x65 - 0x61 0x72 0x2D 0x76 0x69 0x65 0x77 0x20 - 0x6D 0x69 0x72 0x72 0x6F 0x72 0x2C 0x20 - 0x73 0x68 0x65 0x20 0x73 0x65 0x65 0x73 - 0x20 0x61 0x20 0x67 0x75 0x79 0x20 0x69 - 0x6E 0x20 0x62 0x61 0x6E 0x64 0x61 0x67 - 0x65 0x73 0x20 0x66 0x6F 0x6C 0x6C 0x6F - 0x77 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x69 0x6E 0x20 0x61 0x6E 0x20 - 0x61 0x6D 0x62 0x75 0x6C 0x61 0x6E 0x63 - 0x65 0x2E 0x20 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x65 - 0x76 0x65 0x72 0x20 0x67 0x65 0x74 0x20 - 0x61 0x77 0x61 0x79 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x68 0x69 0x6D 0x3F 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x4B 0x69 0x6D - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x74 0x68 0x69 0x6E - 0x67 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x63 0x61 0x6E 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x74 0x68 0x65 0x6D 0x20 0x65 0x73 - 0x63 0x61 0x70 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 19212 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_86= 0x0001535e - - -CHUNK('HTOP', _help_48544F50_86, "") -SUBFILE -#line 19220 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_86, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x58 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE9 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x03 0x03 0x77 0x69 0x6C 0x64 0x0D 0x0A - 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 0x77 - 0x61 0x6E 0x64 0x65 0x72 0x65 0x64 0x20 - 0x74 0x68 0x65 0x20 0x67 0x6C 0x6F 0x62 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x20 0x22 0x73 - 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x6C 0x64 0x2E 0x22 0x20 - 0x20 0x53 0x68 0x65 0x20 0x73 0x6F 0x6F - 0x6E 0x20 0x66 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x64 0x6F 0x20 0x62 0x65 0x73 0x74 - 0x20 0x77 0x61 0x73 0x20 0x6A 0x75 0x6D - 0x70 0x2E 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x20 0x6E 0x6F 0x74 0x69 - 0x63 0x65 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x66 0x61 0x72 - 0x74 0x68 0x65 0x72 0x20 0x73 0x68 0x65 - 0x20 0x6A 0x75 0x6D 0x70 0x65 0x64 0x2C - 0x20 0x74 0x68 0x65 0x20 0x62 0x69 0x67 - 0x67 0x65 0x72 0x20 0x73 0x68 0x65 0x20 - 0x67 0x6F 0x74 0x2E 0x20 0x20 0x53 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x74 0x77 - 0x69 0x63 0x65 0x20 0x61 0x73 0x20 0x62 - 0x69 0x67 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x69 0x72 0x20 0x61 0x73 - 0x20 0x73 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E 0x0D - 0x0A 0x53 0x6F 0x20 0x4D 0x61 0x72 0x74 - 0x68 0x61 0x20 0x6A 0x75 0x6D 0x70 0x65 - 0x64 0x20 0x65 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x97 0x74 0x65 0x6E - 0x74 0x73 0x2C 0x20 0x63 0x61 0x72 0x73 - 0x2C 0x20 0x65 0x76 0x65 0x6E 0x20 0x61 - 0x69 0x72 0x70 0x6C 0x61 0x6E 0x65 0x73 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x67 0x65 0x74 0x74 0x69 - 0x6E 0x67 0x20 0x6F 0x6C 0x64 0x65 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x4D 0x61 - 0x72 0x74 0x68 0x61 0x20 0x73 0x74 0x69 - 0x6C 0x6C 0x20 0x77 0x6F 0x6E 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x6A 0x75 0x6D - 0x70 0x69 0x6E 0x67 0x20 0x63 0x6F 0x6E - 0x74 0x65 0x73 0x74 0x20 0x73 0x68 0x65 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x65 0x64 - 0x2E 0x20 0x57 0x69 0x74 0x68 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x6E 0x65 0x79 0x20 0x4D 0x61 0x72 - 0x74 0x68 0x61 0x20 0x77 0x6F 0x6E 0x20 - 0x69 0x6E 0x20 0x6A 0x75 0x6D 0x70 0x69 - 0x6E 0x67 0x20 0x63 0x6F 0x6E 0x74 0x65 - 0x73 0x74 0x73 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x6F 0x70 0x65 0x6E 0x65 0x64 0x20 - 0x75 0x70 0x20 0x61 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x20 0x6F 0x66 0x20 0x72 0x65 - 0x73 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 - 0x73 0x2E 0x20 0x20 0x4F 0x66 0x20 0x63 - 0x6F 0x75 0x72 0x73 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x6F 0x6E 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x54 0x65 0x78 0x2D 0x4D - 0x65 0x78 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x64 0x6F - 0x6E 0x65 0x20 0x61 0x6C 0x6C 0x20 0x69 - 0x6E 0x20 0x63 0x6F 0x77 0x68 0x69 0x64 - 0x65 0x2E 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x20 0x62 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x72 0x73 0x65 - 0x6C 0x66 0x20 0x61 0x20 0x66 0x61 0x6E - 0x63 0x79 0x20 0x63 0x61 0x72 0x20 0x77 - 0x69 0x74 0x68 0x20 0x6C 0x6F 0x6E 0x67 - 0x20 0x68 0x6F 0x72 0x6E 0x73 0x20 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x6F 0x64 0x20 0x6F 0x72 0x6E 0x61 0x6D - 0x65 0x6E 0x74 0x2E 0x20 0x20 0x41 0x74 - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x6D - 0x61 0x73 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x68 0x61 0x6E 0x67 0x73 0x20 0x61 0x20 - 0x67 0x72 0x65 0x65 0x6E 0x20 0x77 0x72 - 0x65 0x61 0x74 0x68 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x72 0x6E 0x73 0x2E 0x20 0x0D 0x0A 0x4F - 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 0x61 - 0x20 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x54 - 0x56 0x20 0x73 0x74 0x61 0x74 0x69 0x6F - 0x6E 0x20 0x73 0x70 0x6F 0x74 0x74 0x65 - 0x64 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x75 0x74 - 0x20 0x68 0x65 0x72 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x73 - 0x21 0x0D 0x0A 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x61 0x20 0x62 0x69 0x67 0x20 0x73 - 0x75 0x72 0x70 0x72 0x69 0x73 0x65 0x97 - 0x62 0x69 0x67 0x2D 0x6E 0x61 0x6D 0x65 - 0x20 0x64 0x69 0x72 0x65 0x63 0x74 0x6F - 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x63 0x61 0x6C 0x6C 0x65 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x61 0x73 0x6B 0x65 0x64 - 0x20 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 - 0x6A 0x75 0x6D 0x70 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x65 0x77 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x22 0x4A - 0x75 0x6D 0x70 0x69 0x6E 0x27 0x20 0x66 - 0x6F 0x72 0x20 0x4A 0x6F 0x79 0x2E 0x22 - 0x20 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x20 0x77 0x61 0x73 0x20 0x6F 0x66 0x66 - 0x20 0x6F 0x6E 0x20 0x68 0x65 0x72 0x20 - 0x77 0x69 0x6C 0x64 0x65 0x73 0x74 0x20 - 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 - 0x65 0x20 0x79 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 19395 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_87= 0x0001535f - - -CHUNK('HTOP', _help_48544F50_87, "") -SUBFILE -#line 19403 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_87, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_87=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_87=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_87=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x65 0x70 0x79 - 0x2C 0x20 0x53 0x63 0x61 0x72 0x79 0x20 - 0x41 0x75 0x6E 0x74 0x0D 0x0A 0x4F 0x6E - 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x63 0x6F - 0x6F 0x6C 0x97 0x65 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x6C 0x79 0x20 0x61 0x74 - 0x20 0x68 0x65 0x72 0x20 0x61 0x67 0x65 - 0x97 0x69 0x73 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x61 0x72 0x79 0x20 - 0x61 0x75 0x6E 0x74 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 - 0x64 0x20 0x68 0x6F 0x75 0x73 0x65 0x2E - 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x62 0x69 0x67 0x20 0x6B 0x69 - 0x64 0x73 0x20 0x74 0x72 0x69 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x61 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6C 0x69 - 0x74 0x74 0x6C 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x2C 0x20 0x73 0x68 0x65 0x27 0x64 - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x6F 0x75 - 0x74 0x20 0x6F 0x66 0x20 0x64 0x61 0x72 - 0x6B 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 - 0x73 0x2C 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x64 0x20 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x20 0x77 0x69 0x6C 0x64 0x6C 0x79 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x74 0x65 0x61 - 0x63 0x68 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x68 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x73 0x6F 0x20 0x68 0x69 0x67 - 0x68 0x20 0x74 0x68 0x65 0x79 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x66 0x6C 0x79 - 0x2E 0x0D 0x0A 0x42 0x75 0x74 0x20 0x68 - 0x6F 0x77 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x73 0x68 0x65 0x20 0x73 0x63 0x61 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x6C 0x6C 0x69 0x65 0x73 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x77 0x69 0x74 0x68 - 0x6F 0x75 0x74 0x20 0x73 0x63 0x61 0x72 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x6B 0x69 - 0x64 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 19515 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_88= 0x00015360 - - -CHUNK('HTOP', _help_48544F50_88, "") -SUBFILE -#line 19523 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_88, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_88=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_88=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_88=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6E 0x6E 0x65 0x71 - 0x75 0x69 0x6E 0x0D 0x0A 0x42 0x65 0x73 - 0x69 0x64 0x65 0x73 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x20 0x6E 0x65 0x61 0x72 0x6C - 0x79 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x73 0x74 0x20 0x6A 0x75 0x6D 0x70 0x65 - 0x72 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x27 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 - 0x74 0x20 0x73 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x71 0x75 0x69 0x74 0x65 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x73 0x68 - 0x69 0x6F 0x6E 0x20 0x70 0x6C 0x61 0x74 - 0x65 0x2E 0x20 0x20 0x48 0x65 0x72 0x20 - 0x73 0x65 0x63 0x72 0x65 0x74 0x20 0x64 - 0x65 0x73 0x69 0x72 0x65 0x20 0x69 0x73 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x66 0x61 0x73 0x68 0x69 - 0x6F 0x6E 0x20 0x6D 0x61 0x6E 0x6E 0x65 - 0x71 0x75 0x69 0x6E 0x2E 0x20 0x20 0x4E - 0x6F 0x74 0x20 0x61 0x6E 0x20 0x6F 0x72 - 0x64 0x69 0x6E 0x61 0x72 0x79 0x2C 0x20 - 0x64 0x6F 0x2D 0x6E 0x6F 0x74 0x68 0x69 - 0x6E 0x67 0x2C 0x20 0x64 0x65 0x70 0x61 - 0x72 0x74 0x6D 0x65 0x6E 0x74 0x20 0x73 - 0x74 0x6F 0x72 0x65 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x20 0x6D 0x61 - 0x6E 0x6E 0x65 0x71 0x75 0x69 0x6E 0x20 - 0x77 0x68 0x6F 0x20 0x73 0x65 0x65 0x73 - 0x20 0x65 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x74 0x6F 0x70 0x20 0x73 - 0x68 0x6F 0x70 0x6C 0x69 0x66 0x74 0x65 - 0x72 0x73 0x20 0x77 0x69 0x74 0x68 0x20 - 0x61 0x20 0x73 0x69 0x6E 0x67 0x6C 0x65 - 0x20 0x73 0x77 0x69 0x66 0x74 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x20 0x6B 0x69 - 0x63 0x6B 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x73 0x68 0x65 0x20 - 0x6D 0x61 0x69 0x6E 0x74 0x61 0x69 0x6E - 0x20 0x68 0x65 0x72 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x20 0x64 - 0x69 0x73 0x67 0x75 0x69 0x73 0x65 0x20 - 0x65 0x76 0x65 0x72 0x79 0x20 0x64 0x61 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x6D 0x61 0x6E 0x6E 0x65 - 0x71 0x75 0x69 0x6E 0x2D 0x64 0x65 0x74 - 0x65 0x63 0x74 0x69 0x76 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x73 0x61 - 0x6D 0x65 0x20 0x74 0x69 0x6D 0x65 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 19639 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_89= 0x00015361 - - -CHUNK('HTOP', _help_48544F50_89, "") -SUBFILE -#line 19647 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_89, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_89=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_89=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x65 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF6 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_89=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x03 0x03 0x48 0x69 0x67 0x68 0x2D 0x46 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x4D 0x61 - 0x72 0x6B 0x65 0x74 0x69 0x6E 0x67 0x20 - 0x4D 0x61 0x6E 0x61 0x67 0x65 0x72 0x0D - 0x0A 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x63 0x68 0x61 0x6E 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x20 0x6D 0x61 0x72 0x6B 0x65 0x74 - 0x69 0x6E 0x67 0x20 0x6D 0x61 0x6E 0x61 - 0x67 0x65 0x72 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x6E 0x20 0x61 0x64 0x76 0x65 0x6E - 0x74 0x75 0x72 0x65 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x20 0x63 0x6F 0x6D 0x70 - 0x61 0x6E 0x79 0x2E 0x20 0x20 0x53 0x68 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6C 0x61 0x6E 0x20 0x65 0x78 0x63 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x65 0x73 - 0x63 0x61 0x70 0x61 0x64 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 - 0x65 0x73 0x74 0x2C 0x20 0x66 0x61 0x72 - 0x2D 0x61 0x77 0x61 0x79 0x20 0x70 0x6C - 0x61 0x63 0x65 0x73 0x97 0x6C 0x69 0x6B - 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x73 0x20 0x77 0x69 0x74 0x68 0x20 0x72 - 0x69 0x63 0x6B 0x65 0x74 0x79 0x20 0x62 - 0x72 0x69 0x64 0x67 0x65 0x73 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x65 0x64 - 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 - 0x64 0x65 0x65 0x70 0x20 0x63 0x61 0x6E - 0x79 0x6F 0x6E 0x73 0x2C 0x20 0x6D 0x79 - 0x73 0x74 0x65 0x72 0x69 0x6F 0x75 0x73 - 0x20 0x63 0x61 0x76 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x64 0x64 - 0x65 0x6E 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x73 0x20 0x77 0x72 0x69 - 0x74 0x74 0x65 0x6E 0x20 0x61 0x62 0x6F - 0x75 0x74 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x73 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x63 0x69 0x65 0x6E 0x74 - 0x20 0x63 0x69 0x76 0x69 0x6C 0x69 0x7A - 0x61 0x74 0x69 0x6F 0x6E 0x73 0x2E 0x20 - 0x0D 0x0A 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x73 0x61 0x66 0x65 0x6C 0x79 0x20 - 0x67 0x65 0x74 0x20 0x68 0x65 0x72 0x20 - 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 - 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E - 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x74 0x68 0x65 0x79 0x20 0x62 0x72 - 0x69 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x74 0x72 0x65 - 0x61 0x73 0x75 0x72 0x65 0x20 0x74 0x68 - 0x61 0x74 0x20 0x69 0x73 0x20 0x66 0x69 - 0x65 0x72 0x63 0x65 0x6C 0x79 0x20 0x67 - 0x75 0x61 0x72 0x64 0x65 0x64 0x20 0x62 - 0x79 0x20 0x72 0x61 0x74 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 19773 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8A= 0x00015362 - - -CHUNK('HTOP', _help_48544F50_8A, "") -SUBFILE -#line 19781 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x75 0x65 0x73 0x0D - 0x0A 0x54 0x6F 0x20 0x65 0x61 0x72 0x6E - 0x20 0x6D 0x6F 0x6E 0x65 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x63 0x6F 0x6C 0x6C 0x65 - 0x67 0x65 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x61 0x62 0x6C - 0x65 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x6C 0x6F 0x76 0x65 0x73 0x2C 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x73 - 0x69 0x6E 0x67 0x73 0x20 0x74 0x68 0x65 - 0x20 0x62 0x6C 0x75 0x65 0x73 0x20 0x69 - 0x6E 0x20 0x43 0x68 0x69 0x63 0x61 0x67 - 0x6F 0x27 0x73 0x20 0x77 0x61 0x74 0x65 - 0x72 0x66 0x72 0x6F 0x6E 0x74 0x20 0x70 - 0x61 0x72 0x6B 0x73 0x2E 0x20 0x20 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x61 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x63 0x69 0x74 0x79 0x20 0x67 - 0x61 0x74 0x68 0x65 0x72 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x73 0x69 - 0x6E 0x67 0x73 0x2E 0x20 0x20 0x45 0x76 - 0x65 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x68 0x65 - 0x61 0x72 0x64 0x20 0x4D 0x69 0x63 0x68 - 0x61 0x65 0x6C 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x70 0x70 0x65 0x61 0x72 - 0x61 0x6E 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x72 0x20 0x74 - 0x77 0x6F 0x20 0x75 0x70 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x66 0x69 0x6C 0x6D - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 19880 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8B= 0x00015363 - - -CHUNK('HTOP', _help_48544F50_8B, "") -SUBFILE -#line 19888 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x73 0x2D 0x43 - 0x68 0x65 0x66 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x64 0x72 0x65 - 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x74 0x61 0x72 0x2C 0x20 0x4D 0x69 0x63 - 0x68 0x61 0x65 0x6C 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x73 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x68 0x65 0x92 0x64 0x20 - 0x62 0x65 0x20 0x61 0x74 0x20 0x70 0x6C - 0x61 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x73 0x2D 0x63 0x68 0x65 - 0x66 0x2E 0x20 0x20 0x41 0x73 0x20 0x61 - 0x20 0x73 0x74 0x75 0x64 0x65 0x6E 0x74 - 0x20 0x63 0x68 0x65 0x66 0x2C 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x74 0x68 - 0x65 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x63 0x68 - 0x65 0x6E 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x67 0x75 0x72 0x65 0x20 0x6F 0x75 0x74 - 0x20 0x77 0x68 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x77 0x68 - 0x6F 0x20 0x63 0x6F 0x6D 0x65 0x20 0x74 - 0x72 0x69 0x63 0x6B 0x2D 0x6F 0x72 0x2D - 0x74 0x72 0x65 0x61 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 - 0x6C 0x69 0x65 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6C 0x6F 0x6F 0x72 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6C 0x65 0x65 0x70 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x6F 0x75 0x72 - 0x73 0x20 0x61 0x66 0x74 0x65 0x72 0x20 - 0x64 0x72 0x69 0x6E 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 - 0x20 0x6C 0x65 0x6D 0x6F 0x6E 0x61 0x64 - 0x65 0x20 0x63 0x6F 0x6F 0x6B 0x65 0x64 - 0x20 0x62 0x79 0x20 0x4D 0x61 0x64 0x61 - 0x6D 0x65 0x20 0x53 0x70 0x6F 0x6F 0x6B - 0x79 0x2E 0x20 0x0D 0x0A 0x57 0x68 0x61 - 0x74 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x73 0x68 0x65 0x20 0x62 0x65 0x20 0x70 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x64 0x72 - 0x69 0x6E 0x6B 0x73 0x3F 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x4D 0x69 0x63 0x68 - 0x61 0x65 0x6C 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x65 0x20 0x61 0x20 0x73 0x6C 0x65 - 0x65 0x70 0x69 0x6E 0x67 0x20 0x76 0x69 - 0x63 0x74 0x69 0x6D 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20001 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8C= 0x00015364 - - -CHUNK('HTOP', _help_48544F50_8C, "") -SUBFILE -#line 20009 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x12 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x73 0x73 0x65 0x6E - 0x67 0x65 0x72 0x0D 0x0A 0x4D 0x69 0x63 - 0x68 0x61 0x65 0x6C 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x73 0x74 - 0x61 0x72 0x20 0x61 0x73 0x20 0x61 0x20 - 0x64 0x65 0x6C 0x69 0x76 0x65 0x72 0x79 - 0x20 0x62 0x6F 0x79 0x2E 0x20 0x48 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x74 0x61 0x72 0x74 0x20 0x6F 0x75 0x74 - 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 0x72 - 0x69 0x6E 0x67 0x20 0x62 0x6F 0x72 0x69 - 0x6E 0x67 0x20 0x6D 0x65 0x73 0x73 0x61 - 0x67 0x65 0x73 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 - 0x20 0x62 0x65 0x20 0x70 0x72 0x6F 0x6D - 0x6F 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x43 0x68 0x69 0x63 0x61 0x67 0x6F 0x20 - 0x50 0x69 0x7A 0x7A 0x61 0x20 0x44 0x65 - 0x6C 0x69 0x76 0x65 0x72 0x79 0x20 0x4D - 0x61 0x6E 0x2E 0x20 0x20 0x4D 0x69 0x63 - 0x68 0x61 0x65 0x6C 0x20 0x68 0x61 0x73 - 0x20 0x68 0x69 0x73 0x20 0x6F 0x77 0x6E - 0x20 0x74 0x61 0x78 0x69 0x20 0x63 0x61 - 0x62 0x20 0x66 0x6F 0x72 0x20 0x64 0x65 - 0x6C 0x69 0x76 0x65 0x72 0x69 0x65 0x73 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x68 0x69 0x6D 0x20 0x6D 0x6F - 0x72 0x65 0x20 0x74 0x68 0x61 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x70 0x69 0x7A 0x7A - 0x61 0x2C 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x20 0x75 0x73 - 0x75 0x61 0x6C 0x6C 0x79 0x20 0x66 0x6F - 0x72 0x67 0x65 0x74 0x73 0x20 0x74 0x6F - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x7A 0x7A 0x61 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x69 - 0x6D 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 - 0x61 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 - 0x72 0x79 0x21 0x20 0x0D 0x0A 0x45 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x67 0x61 0x6E 0x67 0x73 0x74 - 0x65 0x72 0x73 0x20 0x6C 0x6F 0x76 0x65 - 0x20 0x70 0x69 0x7A 0x7A 0x61 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x68 0x65 0x6E - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x20 0x72 0x65 0x63 0x65 0x69 0x76 0x65 - 0x73 0x20 0x61 0x20 0x70 0x69 0x7A 0x7A - 0x61 0x20 0x6F 0x72 0x64 0x65 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x65 0x61 0x6E 0x65 0x73 0x74 0x20 - 0x67 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 - 0x73 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x69 0x74 0x27 0x73 0x20 0x68 - 0x69 0x73 0x20 0x63 0x68 0x61 0x6E 0x63 - 0x65 0x20 0x74 0x6F 0x20 0x63 0x61 0x74 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x77 0x68 0x6F 0x6C - 0x65 0x20 0x63 0x69 0x74 0x79 0x20 0x69 - 0x73 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x62 0x6F 0x75 0x74 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x69 0x66 - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x27 0x73 0x20 0x74 0x61 0x78 0x69 0x20 - 0x77 0x6F 0x6E 0x27 0x74 0x20 0x73 0x74 - 0x61 0x72 0x74 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x6E 0x27 0x74 0x20 0x62 0x65 - 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x62 0x75 0x73 0x74 0x20 0x74 0x68 - 0x65 0x20 0x67 0x61 0x6E 0x67 0x73 0x74 - 0x65 0x72 0x2E 0x0D 0x0A 0x43 0x61 0x6E - 0x20 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x6E 0x79 0x6F 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x69 0x78 0x20 - 0x68 0x69 0x73 0x20 0x63 0x61 0x72 0x3F - 0x20 0x20 0x4F 0x72 0x20 0x63 0x61 0x6E - 0x20 0x68 0x65 0x20 0x62 0x6F 0x72 0x72 - 0x6F 0x77 0x20 0x74 0x68 0x65 0x20 0x43 - 0x61 0x64 0x69 0x6C 0x6C 0x61 0x63 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x68 0x69 0x73 - 0x20 0x41 0x75 0x6E 0x74 0x20 0x4D 0x61 - 0x72 0x74 0x68 0x61 0x20 0x77 0x68 0x6F - 0x27 0x73 0x20 0x69 0x6E 0x20 0x74 0x6F - 0x77 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x20 0x76 0x69 0x73 0x69 0x74 0x3F 0x20 - 0x20 0x57 0x68 0x61 0x74 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x67 - 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 0x20 - 0x64 0x6F 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 - 0x73 0x68 0x6F 0x77 0x73 0x20 0x75 0x70 - 0x20 0x77 0x69 0x74 0x68 0x6F 0x75 0x74 - 0x20 0x74 0x68 0x65 0x20 0x70 0x69 0x7A - 0x7A 0x61 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20169 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8D= 0x00015365 - - -CHUNK('HTOP', _help_48544F50_8D, "") -SUBFILE -#line 20177 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_92=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_92=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFC 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_92=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x49 0x66 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x6E 0x20 0x65 0x78 0x70 - 0x6C 0x6F 0x72 0x65 0x72 0x2C 0x20 0x68 - 0x69 0x73 0x20 0x64 0x72 0x65 0x61 0x6D - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x63 - 0x6F 0x6D 0x65 0x20 0x74 0x72 0x75 0x65 - 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x20 0x69 0x73 0x20 - 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x74 0x61 0x6C 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x74 0x65 - 0x6D 0x20 0x70 0x6F 0x6C 0x65 0x20 0x72 - 0x75 0x6D 0x6F 0x72 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x66 0x6F 0x75 - 0x6E 0x64 0x20 0x6F 0x6E 0x20 0x61 0x20 - 0x6C 0x6F 0x73 0x74 0x20 0x69 0x73 0x6C - 0x61 0x6E 0x64 0x20 0x72 0x65 0x73 0x6F - 0x72 0x74 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 0x70 - 0x6F 0x6C 0x65 0x20 0x6B 0x6E 0x6F 0x77 - 0x73 0x20 0x74 0x68 0x65 0x20 0x73 0x65 - 0x63 0x72 0x65 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x6C 0x64 - 0x92 0x73 0x20 0x62 0x65 0x73 0x74 0x20 - 0x54 0x65 0x78 0x61 0x73 0x20 0x73 0x61 - 0x6C 0x73 0x61 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x68 0x65 0x20 0x73 0x65 0x63 0x72 0x65 - 0x74 0x2E 0x20 0x20 0x48 0x65 0x92 0x73 - 0x20 0x61 0x20 0x70 0x6F 0x6F 0x72 0x20 - 0x73 0x74 0x75 0x64 0x65 0x6E 0x74 0x2C - 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 0x70 - 0x65 0x72 0x73 0x75 0x61 0x64 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x63 - 0x61 0x6C 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x63 0x6C - 0x75 0x62 0x20 0x74 0x6F 0x20 0x6C 0x65 - 0x74 0x20 0x68 0x69 0x6D 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x68 0x6F 0x74 - 0x2D 0x61 0x69 0x72 0x20 0x62 0x61 0x6C - 0x6C 0x6F 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x73 0x6F - 0x72 0x74 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x6C 0x61 0x6E 0x64 0x73 0x2C 0x20 - 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 0x73 - 0x20 0x61 0x20 0x67 0x72 0x69 0x6D 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x20 0x67 0x75 - 0x61 0x72 0x64 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D - 0x20 0x70 0x6F 0x6C 0x65 0x2E 0x20 0x20 - 0x41 0x73 0x20 0x6C 0x6F 0x6E 0x67 0x20 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x20 0x69 0x73 0x20 - 0x74 0x68 0x65 0x72 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D - 0x20 0x70 0x6F 0x6C 0x65 0x20 0x63 0x61 - 0x6E 0x6E 0x6F 0x74 0x20 0x73 0x70 0x65 - 0x61 0x6B 0x2E 0x20 0x0D 0x0A 0x48 0x6F - 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x67 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x20 0x74 0x6F 0x20 - 0x6C 0x65 0x61 0x76 0x65 0x3F 0x20 0x20 - 0x43 0x61 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x69 0x6C 0x69 0x74 0x79 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x68 0x69 0x6D - 0x3F 0x20 0x20 0x43 0x61 0x6E 0x20 0x68 - 0x65 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x72 0x6F 0x62 0x6F - 0x74 0x92 0x73 0x20 0x73 0x69 0x67 0x68 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20317 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8E= 0x00015366 - - -CHUNK('HTOP', _help_48544F50_8E, "") -SUBFILE -#line 20325 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x03 0x03 0x74 0x72 0x61 0x63 0x6B 0x20 - 0x73 0x74 0x61 0x72 0x0D 0x0A 0x4F 0x6E - 0x65 0x20 0x64 0x61 0x79 0x20 0x61 0x74 - 0x20 0x61 0x20 0x74 0x72 0x61 0x63 0x6B - 0x20 0x6D 0x65 0x65 0x74 0x2C 0x20 0x4D - 0x69 0x6D 0x69 0x20 0x77 0x61 0x73 0x20 - 0x72 0x75 0x6E 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x38 0x38 0x30 0x2D 0x6D - 0x65 0x74 0x65 0x72 0x20 0x73 0x70 0x72 - 0x69 0x6E 0x74 0x20 0x61 0x6E 0x64 0x2C - 0x20 0x61 0x73 0x20 0x75 0x73 0x75 0x61 - 0x6C 0x2C 0x20 0x73 0x68 0x65 0x20 0x62 - 0x6C 0x65 0x77 0x20 0x70 0x61 0x73 0x74 - 0x20 0x68 0x65 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x65 0x74 0x69 0x74 0x69 0x6F 0x6E - 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x63 0x72 0x6F 0x73 - 0x73 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x20 0x6C - 0x69 0x6E 0x65 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x92 - 0x74 0x20 0x73 0x74 0x6F 0x70 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x72 0x61 0x6E - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x64 - 0x69 0x75 0x6D 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x65 0x74 0x20 0x6F 0x66 0x20 0x66 0x69 - 0x6C 0x6D 0x20 0x64 0x69 0x72 0x65 0x63 - 0x74 0x6F 0x72 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x92 0x73 0x20 0x6C 0x61 0x74 0x65 - 0x73 0x74 0x20 0x70 0x72 0x6F 0x64 0x75 - 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x68 0x61 - 0x64 0x20 0x6E 0x65 0x76 0x65 0x72 0x20 - 0x73 0x65 0x65 0x6E 0x20 0x73 0x75 0x63 - 0x68 0x20 0x73 0x70 0x65 0x65 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x6B 0x6E 0x65 0x77 - 0x20 0x74 0x68 0x61 0x74 0x20 0x4D 0x69 - 0x6D 0x69 0x20 0x68 0x61 0x64 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x66 0x69 0x6C 0x6D - 0x73 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x61 0x73 0x6B 0x20 0x68 0x65 0x72 - 0x2C 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x68 0x61 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x69 0x6C 0x20 0x61 0x20 0x74 0x61 - 0x78 0x69 0x20 0x74 0x6F 0x20 0x63 0x61 - 0x74 0x63 0x68 0x20 0x75 0x70 0x20 0x77 - 0x69 0x74 0x68 0x20 0x4D 0x69 0x6D 0x69 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x77 - 0x61 0x73 0x6E 0x27 0x74 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x62 0x72 0x65 0x61 0x74 0x68 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x61 0x63 0x63 0x65 0x70 0x74 - 0x65 0x64 0x20 0x68 0x69 0x73 0x20 0x6F - 0x66 0x66 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 20447 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8F= 0x00015367 - - -CHUNK('HTOP', _help_48544F50_8F, "") -SUBFILE -#line 20455 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x50 0x69 - 0x72 0x61 0x74 0x65 0x0D 0x0A 0x57 0x68 - 0x61 0x74 0x20 0x61 0x20 0x72 0x6F 0x6C - 0x65 0x21 0x20 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x70 0x69 0x72 0x61 0x74 0x65 0x20 - 0x74 0x72 0x69 0x63 0x6B 0x2D 0x6F 0x72 - 0x2D 0x74 0x72 0x65 0x61 0x74 0x65 0x72 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x72 0x65 0x92 0x73 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x6F 0x6E 0x65 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x69 - 0x67 0x68 0x62 0x6F 0x72 0x68 0x6F 0x6F - 0x64 0x2C 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x73 0x61 - 0x79 0x20 0x69 0x74 0x92 0x73 0x20 0x68 - 0x61 0x75 0x6E 0x74 0x65 0x64 0x2E 0x20 - 0x20 0x44 0x65 0x74 0x65 0x72 0x6D 0x69 - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x68 0x65 0x72 0x20 0x73 - 0x68 0x61 0x72 0x65 0x20 0x6F 0x66 0x20 - 0x63 0x61 0x6E 0x64 0x79 0x2C 0x20 0x4D - 0x69 0x6D 0x69 0x20 0x6B 0x6E 0x6F 0x63 - 0x6B 0x73 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x6F 0x72 0x2E 0x20 - 0x20 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x61 0x6E 0x73 0x77 0x65 0x72 0x73 0x2C - 0x20 0x62 0x75 0x74 0x20 0x74 0x68 0x65 - 0x20 0x64 0x6F 0x6F 0x72 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x63 0x72 0x65 - 0x61 0x6B 0x73 0x20 0x6F 0x70 0x65 0x6E - 0x2E 0x20 0x20 0x4D 0x69 0x6D 0x69 0x20 - 0x73 0x6C 0x6F 0x77 0x6C 0x79 0x20 0x77 - 0x61 0x6C 0x6B 0x73 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x79 0x65 0x6C 0x6C - 0x73 0x2C 0x20 0x93 0x74 0x72 0x69 0x63 - 0x6B 0x20 0x6F 0x72 0x20 0x74 0x72 0x65 - 0x61 0x74 0x3F 0x94 0x20 0x20 0x53 0x68 - 0x65 0x20 0x77 0x61 0x6E 0x64 0x65 0x72 - 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x63 0x68 - 0x65 0x6E 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x65 0x65 0x73 0x20 0x61 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x6C 0x61 - 0x72 0x67 0x65 0x20 0x62 0x75 0x74 0x63 - 0x68 0x65 0x72 0x20 0x6B 0x6E 0x69 0x66 - 0x65 0x20 0x6F 0x6E 0x20 0x61 0x20 0x63 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 - 0x61 0x62 0x6C 0x65 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x73 0x6B 0x75 0x6C 0x6C - 0x20 0x61 0x73 0x6B 0x73 0x2C 0x20 0x93 - 0x57 0x69 0x6C 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x68 0x65 0x6C 0x70 0x20 0x6D 0x65 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6D 0x79 - 0x20 0x62 0x6F 0x64 0x79 0x3F 0x94 0x20 - 0x20 0x4D 0x69 0x6D 0x69 0x20 0x74 0x75 - 0x72 0x6E 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x75 0x6E 0x73 0x20 0x66 0x61 0x73 - 0x74 0x65 0x72 0x20 0x74 0x68 0x61 0x6E - 0x20 0x61 0x20 0x62 0x75 0x6C 0x6C 0x65 - 0x74 0x20 0x74 0x72 0x61 0x69 0x6E 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x2E 0x20 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x73 0x6B 0x75 0x6C 0x6C 0x20 0x75 0x73 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x72 0x69 - 0x67 0x69 0x6E 0x61 0x6C 0x20 0x6F 0x77 - 0x6E 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x75 0x65 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6B 0x75 0x6C 0x6C 0x20 - 0x68 0x75 0x6D 0x61 0x6E 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x20 0x61 0x72 0x65 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x62 0x72 0x61 0x72 0x79 0x2E 0x20 - 0x49 0x66 0x20 0x74 0x68 0x69 0x73 0x20 - 0x70 0x75 0x7A 0x7A 0x6C 0x65 0x20 0x69 - 0x73 0x20 0x73 0x6F 0x6C 0x76 0x65 0x64 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x75 0x72 0x6E 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x65 0x72 0x73 - 0x6F 0x6E 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x68 0x65 0x20 0x77 0x61 0x73 0x20 - 0x74 0x75 0x72 0x6E 0x65 0x64 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x2E 0x20 0x20 0x48 0x6F - 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4D - 0x69 0x6D 0x69 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x77 0x68 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E - 0x20 0x75 0x73 0x65 0x64 0x20 0x74 0x6F - 0x20 0x62 0x65 0x3F 0x20 0x20 0x41 0x6E - 0x64 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x66 0x6F - 0x72 0x20 0x63 0x6C 0x75 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20624 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_90= 0x00015368 - - -CHUNK('HTOP', _help_48544F50_90, "") -SUBFILE -#line 20632 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_90, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_90=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_90, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_90=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_90, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_90=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_90, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x0D 0x0A 0x41 0x66 0x74 0x65 0x72 - 0x20 0x61 0x20 0x6C 0x6F 0x6E 0x67 0x20 - 0x74 0x72 0x61 0x63 0x6B 0x20 0x73 0x65 - 0x61 0x73 0x6F 0x6E 0x2C 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x4D 0x69 0x6D - 0x69 0x27 0x73 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x69 0x73 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 - 0x65 0x20 0x72 0x65 0x6C 0x61 0x78 0x69 - 0x6E 0x67 0x20 0x72 0x6F 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x74 0x6F 0x75 - 0x72 0x69 0x73 0x74 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x64 0x65 0x63 0x69 0x64 - 0x65 0x73 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x20 0x74 0x6F 0x20 0x42 0x65 0x72 0x6D - 0x75 0x64 0x61 0x2C 0x20 0x66 0x6C 0x79 - 0x69 0x6E 0x67 0x20 0x61 0x63 0x72 0x6F - 0x73 0x73 0x20 0x74 0x68 0x65 0x20 0x6D - 0x79 0x73 0x74 0x65 0x72 0x69 0x6F 0x75 - 0x73 0x20 0x42 0x65 0x72 0x6D 0x75 0x64 - 0x61 0x20 0x54 0x72 0x69 0x61 0x6E 0x67 - 0x6C 0x65 0x2E 0x20 0x20 0x4F 0x6E 0x65 - 0x20 0x6D 0x6F 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x20 0x66 0x6C 0x69 0x65 0x73 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x72 0x74 0x79 0x61 0x72 - 0x64 0x20 0x6F 0x66 0x20 0x4D 0x69 0x6D - 0x69 0x92 0x73 0x20 0x6D 0x6F 0x74 0x65 - 0x6C 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x64 0x69 0x73 0x61 0x70 - 0x70 0x65 0x61 0x72 0x73 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x69 0x72 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 0x20 - 0x77 0x61 0x73 0x20 0x72 0x75 0x6D 0x6F - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x61 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x74 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x65 0x72 0x20 - 0x70 0x68 0x6F 0x74 0x6F 0x67 0x72 0x61 - 0x70 0x68 0x65 0x72 0x20 0x68 0x75 0x73 - 0x62 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x20 - 0x62 0x6F 0x61 0x72 0x64 0x2E 0x20 0x20 - 0x53 0x6F 0x6D 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x6E 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x68 0x61 0x76 0x65 0x20 0x63 0x72 - 0x61 0x73 0x68 0x65 0x64 0x20 0x6F 0x6E - 0x20 0x61 0x20 0x72 0x65 0x6D 0x6F 0x74 - 0x65 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x69 0x73 - 0x6C 0x61 0x6E 0x64 0x2E 0x20 0x20 0x4E - 0x6F 0x20 0x72 0x6F 0x61 0x64 0x73 0x20 - 0x6C 0x65 0x61 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x69 0x73 0x20 0x73 0x69 0x64 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 0x2C - 0x20 0x73 0x6F 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x69 0x73 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6F 0x6E 0x65 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x20 0x67 0x65 0x74 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x61 0x73 - 0x68 0x20 0x73 0x69 0x74 0x65 0x20 0x71 - 0x75 0x69 0x63 0x6B 0x6C 0x79 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x64 0x69 0x64 - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x6E 0x65 0x20 0x63 0x72 0x61 0x73 0x68 - 0x3F 0x20 0x20 0x4F 0x72 0x20 0x64 0x69 - 0x64 0x20 0x69 0x74 0x20 0x73 0x69 0x6D - 0x70 0x6C 0x79 0x2E 0x2E 0x2E 0x64 0x69 - 0x73 0x61 0x70 0x70 0x65 0x61 0x72 0x3F - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x72 0x65 0x6D - 0x6F 0x74 0x65 0x20 0x73 0x69 0x64 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x69 0x73 0x6C 0x61 0x6E 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20775 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_91= 0x00015369 - - -CHUNK('HTOP', _help_48544F50_91, "") -SUBFILE -#line 20783 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_91, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A2, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x61 0x63 0x6B 0x20 - 0x43 0x6F 0x61 0x63 0x68 0x0D 0x0A 0x4D - 0x69 0x6D 0x69 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x67 0x75 0x69 0x64 0x65 0x20 0x77 0x68 - 0x6F 0x20 0x69 0x73 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x61 0x20 0x72 0x65 0x2D 0x63 - 0x72 0x65 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6F - 0x72 0x69 0x67 0x69 0x6E 0x61 0x6C 0x20 - 0x4F 0x6C 0x79 0x6D 0x70 0x69 0x63 0x20 - 0x47 0x61 0x6D 0x65 0x73 0x20 0x69 0x6E - 0x20 0x41 0x74 0x68 0x65 0x6E 0x73 0x2C - 0x20 0x47 0x72 0x65 0x65 0x63 0x65 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 - 0x68 0x65 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x65 0x6E 0x61 0x2C - 0x20 0x73 0x68 0x65 0x92 0x73 0x20 0x74 - 0x6F 0x6C 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x72 - 0x20 0x6D 0x61 0x72 0x61 0x74 0x68 0x6F - 0x6E 0x20 0x72 0x75 0x6E 0x6E 0x65 0x72 - 0x73 0x20 0x69 0x73 0x20 0x74 0x6F 0x6F - 0x20 0x73 0x69 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x72 0x75 0x6E 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x4F 0x6C 0x79 0x6D 0x70 - 0x69 0x63 0x20 0x43 0x6F 0x6D 0x6D 0x69 - 0x74 0x74 0x65 0x65 0x20 0x69 0x73 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x70 0x61 0x6E - 0x69 0x63 0x2E 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x79 0x20 0x72 0x65 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x61 0x72 0x20 0x61 0x74 0x74 0x72 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x3F 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x6D 0x6D 0x69 0x74 - 0x74 0x65 0x65 0x20 0x6C 0x65 0x61 0x72 - 0x6E 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x61 0x20 0x55 0x2E 0x53 0x2E 0x20 0x74 - 0x72 0x61 0x63 0x6B 0x20 0x73 0x74 0x61 - 0x72 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x47 0x72 0x65 0x65 0x63 0x65 0x2C 0x20 - 0x74 0x68 0x65 0x79 0x20 0x61 0x73 0x6B - 0x20 0x4D 0x69 0x6D 0x69 0x20 0x69 0x66 - 0x20 0x73 0x68 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x72 0x75 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x72 0x61 0x74 0x68 - 0x6F 0x6E 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x74 0x68 0x65 0x72 0x65 0x92 0x73 - 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 - 0x20 0x77 0x68 0x6F 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x77 0x61 0x6E - 0x74 0x20 0x4D 0x69 0x6D 0x69 0x20 0x74 - 0x6F 0x20 0x72 0x75 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x72 0x61 0x74 0x68 - 0x6F 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x69 0x73 0x20 0x73 0x6F 0x6D - 0x65 0x6F 0x6E 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x64 0x6F 0x20 0x61 0x6E 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x73 0x74 - 0x6F 0x70 0x20 0x68 0x65 0x72 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x72 0x75 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x63 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x6F 0x92 0x73 0x20 0x74 0x72 0x79 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x6F 0x70 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x68 0x79 - 0x3F 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 - 0x4D 0x69 0x6D 0x69 0x20 0x77 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x72 - 0x61 0x74 0x68 0x6F 0x6E 0x20 0x72 0x61 - 0x63 0x65 0x3F 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 20923 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_92= 0x0001536a - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 20931 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_96=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_96=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_96, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_96=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_96, 0x0) - BYTE - 0x03 0x03 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x0D 0x0A 0x4D 0x61 0x72 0x69 0x62 - 0x65 0x6C 0x6C 0x61 0x20 0x63 0x61 0x6E - 0x92 0x74 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x77 0x61 0x6E 0x74 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 0x77 - 0x68 0x61 0x74 0x92 0x73 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x64 0x20 0x64 0x6F 0x6F 0x72 - 0x73 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x61 0x6C - 0x6C 0x20 0x6B 0x69 0x6E 0x64 0x73 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x73 0x20 0x62 0x79 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6E 0x6F 0x6F 0x70 0x69 - 0x6E 0x67 0x2E 0x20 0x20 0x57 0x68 0x65 - 0x6E 0x20 0x73 0x68 0x65 0x20 0x73 0x6E - 0x6F 0x6F 0x70 0x65 0x64 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x68 0x65 - 0x72 0x20 0x67 0x72 0x61 0x6E 0x64 0x2D - 0x20 0x66 0x61 0x74 0x68 0x65 0x72 0x92 - 0x73 0x20 0x75 0x6E 0x64 0x65 0x72 0x77 - 0x65 0x61 0x72 0x20 0x64 0x72 0x61 0x77 - 0x65 0x72 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x66 0x6F 0x75 0x6E 0x64 0x20 0x68 0x69 - 0x73 0x20 0x73 0x6F 0x63 0x6B 0x20 0x67 - 0x61 0x72 0x74 0x65 0x72 0x73 0x2C 0x20 - 0x77 0x68 0x69 0x63 0x68 0x20 0x65 0x78 - 0x70 0x6C 0x61 0x69 0x6E 0x65 0x64 0x20 - 0x77 0x68 0x79 0x20 0x68 0x69 0x73 0x20 - 0x73 0x6F 0x63 0x6B 0x73 0x20 0x6E 0x65 - 0x76 0x65 0x72 0x20 0x73 0x61 0x67 0x67 - 0x65 0x64 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x68 0x65 0x72 0x20 0x62 0x69 - 0x67 0x67 0x65 0x73 0x74 0x20 0x73 0x6E - 0x6F 0x6F 0x70 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x77 0x61 0x73 0x20 0x6F - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x4A - 0x75 0x73 0x74 0x20 0x61 0x73 0x20 0x73 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 0x73 - 0x74 0x61 0x72 0x92 0x73 0x20 0x64 0x72 - 0x65 0x73 0x73 0x69 0x6E 0x67 0x20 0x72 - 0x6F 0x6F 0x6D 0x2C 0x20 0x4D 0x65 0x6C - 0x61 0x6E 0x69 0x65 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x63 0x61 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x72 0x2E 0x20 - 0x20 0x53 0x69 0x6E 0x63 0x65 0x20 0x4D - 0x61 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 - 0x20 0x77 0x61 0x73 0x20 0x73 0x6F 0x20 - 0x67 0x6F 0x6F 0x64 0x20 0x61 0x74 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x63 0x75 - 0x72 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4D - 0x65 0x6C 0x61 0x6E 0x69 0x65 0x20 0x64 - 0x65 0x63 0x69 0x64 0x65 0x64 0x20 0x73 - 0x68 0x65 0x27 0x64 0x20 0x62 0x65 0x20 - 0x67 0x72 0x65 0x61 0x74 0x20 0x61 0x73 - 0x20 0x61 0x20 0x64 0x65 0x74 0x65 0x63 - 0x74 0x69 0x76 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21060 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_93= 0x0001536b - - -CHUNK('HTOP', _help_48544F50_93, "") -SUBFILE -#line 21068 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_93, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x44 0x61 0x75 0x67 0x68 0x74 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x20 0x46 0x61 0x6D - 0x69 0x6C 0x79 0x0D 0x0A 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 0x74 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x73 0x6F 0x6F 0x6F 0x20 0x66 - 0x75 0x6E 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x74 0x68 0x65 0x20 0x64 - 0x61 0x75 0x67 0x68 0x74 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x66 0x61 0x6D - 0x69 0x6C 0x79 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6C 0x69 0x76 0x65 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x70 0x6F 0x73 0x73 - 0x65 0x73 0x73 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x72 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x6F 0x6E - 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x2C 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x69 0x6E 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x6F 0x6F 0x64 0x65 0x6E - 0x20 0x63 0x6F 0x66 0x66 0x69 0x6E 0x3F - 0x20 0x20 0x57 0x68 0x61 0x74 0x27 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x73 0x61 0x66 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x62 0x72 - 0x61 0x72 0x79 0x3F 0x20 0x20 0x41 0x6E - 0x64 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x61 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x20 0x63 0x68 0x65 - 0x73 0x74 0x20 0x68 0x69 0x64 0x64 0x65 - 0x6E 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x61 0x76 0x65 - 0x73 0x74 0x6F 0x6E 0x65 0x73 0x20 0x6F - 0x75 0x74 0x73 0x69 0x64 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21172 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_94= 0x0001536c - - -CHUNK('HTOP', _help_48544F50_94, "") -SUBFILE -#line 21180 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_94, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_62=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_62=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_62=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6E 0x6E 0x65 0x71 - 0x75 0x69 0x6E 0x0D 0x0A 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x77 - 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x6D 0x61 0x6E 0x6E 0x65 - 0x71 0x75 0x69 0x6E 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x69 0x74 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x74 - 0x68 0x65 0x20 0x70 0x65 0x72 0x66 0x65 - 0x63 0x74 0x20 0x64 0x69 0x73 0x67 0x75 - 0x69 0x73 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x6F 0x6C 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x79 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x64 0x69 0x73 0x61 0x70 0x70 0x65 0x61 - 0x72 0x69 0x6E 0x67 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x73 0x2E - 0x20 0x20 0x46 0x6F 0x72 0x20 0x77 0x65 - 0x65 0x6B 0x73 0x20 0x74 0x65 0x65 0x6E - 0x61 0x67 0x65 0x20 0x6D 0x61 0x6E 0x6E - 0x65 0x71 0x75 0x69 0x6E 0x73 0x20 0x68 - 0x61 0x76 0x65 0x20 0x62 0x65 0x65 0x6E - 0x97 0x70 0x6F 0x6F 0x66 0x21 0x97 0x64 - 0x69 0x73 0x61 0x70 0x70 0x65 0x61 0x72 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x6F - 0x6C 0x20 0x73 0x74 0x6F 0x72 0x65 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x73 0x68 - 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 0x63 - 0x6F 0x6D 0x70 0x6C 0x65 0x78 0x2E 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x6E 0x6F 0x6F 0x70 0x20 0x68 - 0x65 0x72 0x20 0x77 0x61 0x79 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x74 0x68 - 0x69 0x65 0x66 0x3F 0x20 0x20 0x4F 0x72 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4D 0x61 - 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 0x2C - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x2C 0x20 - 0x62 0x65 0x20 0x73 0x74 0x6F 0x6C 0x65 - 0x6E 0x20 0x68 0x65 0x72 0x73 0x65 0x6C - 0x66 0x3F -ENDCHUNK - - -ENDCHUNK -#line 21289 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_95= 0x0001536d - - -CHUNK('HTOP', _help_48544F50_95, "") -SUBFILE -#line 21297 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_95, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_95, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x47 0x69 0x72 0x6C 0x20 0x53 - 0x63 0x6F 0x75 0x74 0x0D 0x0A 0x4D 0x61 - 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x67 0x69 0x72 0x6C 0x20 0x73 0x63 - 0x6F 0x75 0x74 0x20 0x65 0x61 0x72 0x6E - 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 0x20 - 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 0x66 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x62 0x61 - 0x64 0x67 0x65 0x2E 0x20 0x20 0x49 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x65 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x6F 0x75 0x74 0x20 - 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x61 0x6B 0x65 0x20 - 0x6F 0x66 0x66 0x20 0x74 0x6F 0x20 0x65 - 0x78 0x70 0x6C 0x6F 0x72 0x65 0x20 0x61 - 0x6E 0x79 0x74 0x68 0x69 0x6E 0x67 0x2C - 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 0x72 - 0x65 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x72 - 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x2C 0x20 - 0x4B 0x69 0x6D 0x2C 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x65 0x72 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x43 0x61 0x76 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x4C 0x6F - 0x73 0x74 0x20 0x44 0x6F 0x75 0x67 0x68 - 0x6E 0x75 0x74 0x2E 0x20 0x20 0x52 0x75 - 0x6D 0x6F 0x72 0x20 0x68 0x61 0x73 0x20 - 0x69 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x61 0x20 0x63 0x72 0x61 0x7A 0x79 0x20 - 0x63 0x6F 0x6F 0x6B 0x20 0x62 0x6C 0x65 - 0x77 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x76 0x65 - 0x20 0x77 0x68 0x69 0x6C 0x65 0x20 0x69 - 0x6E 0x76 0x65 0x6E 0x74 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6C 0x64 0x92 0x73 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x64 0x6F 0x75 0x67 0x68 - 0x6E 0x75 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x6F 0x6F 0x6B 0x20 0x68 - 0x61 0x73 0x6E 0x92 0x74 0x20 0x62 0x65 - 0x65 0x6E 0x20 0x73 0x65 0x65 0x6E 0x20 - 0x73 0x69 0x6E 0x63 0x65 0x2E 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x61 - 0x6E 0x64 0x20 0x4B 0x69 0x6D 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x76 0x65 0x3F 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 0x79 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x73 0x73 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6F 0x6B 0x3F 0x20 - 0x20 0x41 0x6E 0x64 0x2C 0x20 0x6D 0x6F - 0x73 0x74 0x20 0x69 0x6D 0x70 0x6F 0x72 - 0x74 0x61 0x6E 0x74 0x2C 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x72 0x65 - 0x20 0x62 0x65 0x20 0x61 0x6E 0x79 0x20 - 0x64 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 - 0x73 0x20 0x6C 0x65 0x66 0x74 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21425 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_96= 0x0001536e - - -CHUNK('HTOP', _help_48544F50_96, "") -SUBFILE -#line 21433 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_96, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_96, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x0D 0x0A 0x45 0x76 0x65 0x6E 0x74 0x75 - 0x61 0x6C 0x6C 0x79 0x2C 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x20 0x65 0x6E 0x74 - 0x65 0x72 0x65 0x64 0x20 0x74 0x68 0x65 - 0x20 0x52 0x75 0x73 0x73 0x69 0x61 0x6E - 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 0x20 - 0x63 0x68 0x61 0x6D 0x70 0x69 0x6F 0x6E - 0x73 0x68 0x69 0x70 0x73 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x6A 0x75 0x64 0x67 0x65 - 0x73 0x20 0x6E 0x6F 0x74 0x69 0x63 0x65 - 0x64 0x20 0x74 0x68 0x65 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x67 0x69 0x72 0x6C - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x65 0x20 0x61 0x6D 0x61 0x7A 0x69 0x6E - 0x67 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x6B 0x69 0x63 0x6B 0x2E 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6A 0x75 0x64 0x67 0x65 0x73 0x20 - 0x64 0x69 0x64 0x6E 0x27 0x74 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x77 0x61 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x20 0x77 0x61 0x73 0x20 - 0x61 0x6C 0x73 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x73 0x70 0x69 0x72 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x65 0x74 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 - 0x20 0x77 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x6E 0x61 0x6C 0x20 0x72 - 0x6F 0x75 0x6E 0x64 0x2C 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x61 0x75 0x67 0x68 0x65 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 - 0x63 0x69 0x74 0x65 0x64 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x68 0x65 0x72 - 0x20 0x70 0x6F 0x65 0x6D 0x73 0x2E 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x75 0x64 0x69 0x65 0x6E - 0x63 0x65 0x20 0x77 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x66 0x61 0x6D 0x6F 0x75 - 0x73 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x2C 0x20 0x77 0x68 0x6F 0x20 0x77 0x61 - 0x73 0x20 0x73 0x6F 0x20 0x69 0x6D 0x70 - 0x72 0x65 0x73 0x73 0x65 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x4E 0x61 0x6B 0x69 - 0x74 0x61 0x27 0x73 0x20 0x63 0x6F 0x6D - 0x62 0x69 0x6E 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x62 0x72 0x75 0x74 - 0x65 0x20 0x73 0x74 0x72 0x65 0x6E 0x67 - 0x74 0x68 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x6F 0x65 0x74 0x69 0x63 0x20 0x67 0x65 - 0x6E 0x69 0x75 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x68 0x65 0x20 0x61 0x73 0x6B - 0x65 0x64 0x20 0x68 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x21 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x74 0x68 0x61 - 0x74 0x92 0x73 0x20 0x68 0x6F 0x77 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 0x73 - 0x74 0x61 0x72 0x74 0x65 0x64 0x20 0x6F - 0x75 0x74 0x20 0x69 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 21559 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_97= 0x0001536f - - -CHUNK('HTOP', _help_48544F50_97, "") -SUBFILE -#line 21567 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_97, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_97=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_97, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_97=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_97, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_97=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_97, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x69 0x76 0x61 0x74 - 0x65 0x20 0x41 0x65 0x72 0x6F 0x62 0x69 - 0x63 0x20 0x49 0x6E 0x73 0x74 0x72 0x75 - 0x63 0x74 0x6F 0x72 0x0D 0x0A 0x53 0x6F - 0x6D 0x65 0x64 0x61 0x79 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x70 0x72 0x69 0x76 0x61 0x74 0x65 - 0x20 0x61 0x65 0x72 0x6F 0x62 0x69 0x63 - 0x20 0x69 0x6E 0x73 0x74 0x72 0x75 0x63 - 0x74 0x6F 0x72 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x73 0x75 0x6D 0x6D 0x6F - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x73 0x70 0x65 - 0x63 0x69 0x61 0x6C 0x20 0x63 0x6C 0x69 - 0x65 0x6E 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x69 0x73 0x20 0x63 0x6C 0x69 0x65 0x6E - 0x74 0x20 0x74 0x75 0x72 0x6E 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x67 0x69 0x61 0x6E - 0x74 0x20 0x72 0x61 0x74 0x21 0x20 0x0D - 0x0A 0x53 0x75 0x72 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x72 0x61 0x74 0x20 0x6E - 0x65 0x65 0x64 0x73 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x69 0x6E 0x20 0x73 - 0x68 0x61 0x70 0x65 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x6B - 0x69 0x6E 0x64 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x69 0x73 0x20 0x72 0x61 0x74 - 0x20 0x68 0x61 0x76 0x65 0x20 0x69 0x6E - 0x20 0x6D 0x69 0x6E 0x64 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x68 0x79 0x20 0x69 - 0x73 0x6E 0x27 0x74 0x20 0x61 0x6E 0x79 - 0x6F 0x6E 0x65 0x20 0x65 0x6C 0x73 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 21669 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_98= 0x00015370 - - -CHUNK('HTOP', _help_48544F50_98, "") -SUBFILE -#line 21677 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_98, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_98=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_98, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_98=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_98, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_98=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_98, 0x0) - BYTE - 0x03 0x03 0x56 0x65 0x6C 0x63 0x72 0x6F - 0x20 0x57 0x6F 0x6D 0x61 0x6E 0x0D 0x0A - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 0x68 - 0x61 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x64 0x72 0x65 0x61 0x6D 0x65 - 0x64 0x20 0x6F 0x66 0x20 0x70 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x56 0x65 0x6C - 0x63 0x72 0x6F 0x20 0x57 0x6F 0x6D 0x61 - 0x6E 0x2C 0x20 0x61 0x20 0x66 0x61 0x6D - 0x6F 0x75 0x73 0x20 0x74 0x68 0x69 0x65 - 0x66 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x6E 0x61 0x6D 0x65 0x20 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x63 0x74 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x67 0x65 0x74 0x73 0x20 0x73 0x74 - 0x75 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 - 0x6F 0x75 0x67 0x68 0x20 0x73 0x69 0x74 - 0x75 0x61 0x74 0x69 0x6F 0x6E 0x73 0x2E - 0x20 0x0D 0x0A 0x49 0x6E 0x20 0x6F 0x6E - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 - 0x69 0x73 0x20 0x62 0x65 0x69 0x6E 0x67 - 0x20 0x63 0x68 0x61 0x73 0x65 0x64 0x20 - 0x62 0x79 0x20 0x61 0x20 0x70 0x6F 0x6C - 0x69 0x63 0x65 0x6D 0x61 0x6E 0x20 0x74 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x72 0x65 0x65 - 0x74 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x63 0x69 0x74 0x79 0x2E 0x20 - 0x20 0x41 0x66 0x74 0x65 0x72 0x20 0x61 - 0x20 0x66 0x75 0x72 0x69 0x6F 0x75 0x73 - 0x20 0x63 0x68 0x61 0x73 0x65 0x2C 0x20 - 0x73 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x73 0x20 0x68 0x65 0x72 0x73 0x65 0x6C - 0x66 0x20 0x74 0x72 0x61 0x70 0x70 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x61 0x20 0x64 - 0x65 0x61 0x64 0x2D 0x65 0x6E 0x64 0x20 - 0x61 0x6C 0x6C 0x65 0x79 0x2E 0x20 0x0D - 0x0A 0x57 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x73 0x75 0x72 0x72 0x65 0x6E - 0x64 0x65 0x72 0x2C 0x20 0x6F 0x72 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 - 0x20 0x75 0x73 0x65 0x20 0x68 0x65 0x72 - 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 0x20 - 0x73 0x6B 0x69 0x6C 0x6C 0x73 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x67 0x68 0x74 0x20 - 0x68 0x65 0x72 0x20 0x77 0x61 0x79 0x20 - 0x6F 0x75 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 21789 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_99= 0x00015371 - - -CHUNK('HTOP', _help_48544F50_99, "") -SUBFILE -#line 21797 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_99, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_99, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9A, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x75 0x62 0x61 0x20 - 0x44 0x69 0x76 0x69 0x6E 0x67 0x20 0x49 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x6F - 0x72 0x0D 0x0A 0x4E 0x61 0x6B 0x69 0x74 - 0x61 0x20 0x63 0x6F 0x6D 0x65 0x73 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 0x63 - 0x69 0x74 0x79 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x77 0x61 0x74 0x65 0x72 - 0x2C 0x20 0x73 0x6F 0x20 0x6E 0x61 0x74 - 0x75 0x72 0x61 0x6C 0x6C 0x79 0x20 0x73 - 0x68 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 - 0x73 0x63 0x75 0x62 0x61 0x20 0x64 0x69 - 0x76 0x69 0x6E 0x67 0x20 0x69 0x6E 0x73 - 0x74 0x72 0x75 0x63 0x74 0x6F 0x72 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x6F 0x6D 0x65 - 0x73 0x20 0x75 0x70 0x6F 0x6E 0x20 0x61 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x69 - 0x6F 0x75 0x73 0x20 0x63 0x61 0x76 0x65 - 0x2E 0x20 0x20 0x54 0x68 0x69 0x6E 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x73 0x68 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 0x20 - 0x73 0x74 0x72 0x65 0x61 0x6D 0x20 0x74 - 0x6F 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x2C 0x20 0x73 0x68 0x65 0x20 0x65 - 0x6E 0x74 0x65 0x72 0x73 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x76 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x6C 0x6F 0x6F 0x6B 0x73 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x2E - 0x20 0x49 0x6E 0x73 0x74 0x65 0x61 0x64 - 0x2C 0x20 0x73 0x68 0x65 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x68 0x75 0x6D 0x61 - 0x6E 0x20 0x62 0x6F 0x6E 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x62 0x6F 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E 0x92 - 0x74 0x20 0x73 0x74 0x6F 0x70 0x20 0x6C - 0x61 0x75 0x67 0x68 0x69 0x6E 0x67 0x2E - 0x20 0x57 0x68 0x61 0x74 0x20 0x69 0x73 - 0x20 0x69 0x74 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x73 0x20 0x73 0x6F 0x20 0x66 0x75 0x6E - 0x6E 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x62 0x6F - 0x6E 0x65 0x73 0x20 0x61 0x72 0x65 0x20 - 0x74 0x68 0x65 0x73 0x65 0x2C 0x20 0x61 - 0x6E 0x79 0x77 0x61 0x79 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21907 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9A= 0x00015372 - - -CHUNK('HTOP', _help_48544F50_9A, "") -SUBFILE -#line 21915 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9E, 0x0) - BYTE - 0x03 0x03 0x65 0x6E 0x74 0x65 0x72 0x74 - 0x61 0x69 0x6E 0x0D 0x0A 0x50 0x61 0x74 - 0x72 0x69 0x63 0x6B 0x20 0x6C 0x6F 0x76 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x65 0x6E - 0x74 0x65 0x72 0x74 0x61 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x66 0x61 0x6D 0x69 - 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x72 0x69 0x65 0x6E 0x64 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x72 0x65 0x76 0x65 - 0x72 0x20 0x68 0x65 0x20 0x77 0x65 0x6E - 0x74 0x20 0x68 0x65 0x20 0x6D 0x61 0x64 - 0x65 0x20 0x61 0x20 0x73 0x70 0x65 0x63 - 0x74 0x61 0x63 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x70 0x72 0x61 0x63 - 0x74 0x69 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6D 0x69 0x72 0x72 0x6F 0x72 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x72 0x6F 0x6F 0x6D 0x20 0x74 0x72 0x79 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x73 0x74 0x20 0x64 - 0x61 0x7A 0x7A 0x6C 0x69 0x6E 0x67 0x20 - 0x73 0x6D 0x69 0x6C 0x65 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x77 0x65 0x6E 0x74 0x20 0x63 0x6C 0x6F - 0x74 0x68 0x65 0x73 0x20 0x73 0x68 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x74 0x61 0x79 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x72 0x65 0x73 0x73 - 0x69 0x6E 0x67 0x20 0x72 0x6F 0x6F 0x6D - 0x20 0x66 0x6F 0x72 0x20 0x68 0x6F 0x75 - 0x72 0x73 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x72 0x72 0x6F 0x72 - 0x2E 0x20 0x20 0x48 0x65 0x27 0x64 0x20 - 0x70 0x72 0x61 0x63 0x74 0x69 0x63 0x65 - 0x20 0x68 0x69 0x73 0x20 0x64 0x61 0x6E - 0x63 0x65 0x20 0x6D 0x6F 0x76 0x65 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x67 0x6F 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x72 0x62 0x6C 0x65 0x20 0x66 - 0x6C 0x6F 0x6F 0x72 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x64 0x61 0x6E - 0x63 0x65 0x2E 0x20 0x20 0x41 0x6D 0x61 - 0x7A 0x69 0x6E 0x67 0x6C 0x79 0x2C 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x64 0x61 0x6E - 0x63 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x68 0x69 0x6D 0x21 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x6D 0x61 0x6C 0x6C 0x20 - 0x73 0x65 0x63 0x75 0x72 0x69 0x74 0x79 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x70 - 0x6F 0x6C 0x69 0x74 0x65 0x6C 0x79 0x20 - 0x61 0x73 0x6B 0x20 0x68 0x69 0x6D 0x20 - 0x74 0x6F 0x20 0x6C 0x65 0x61 0x76 0x65 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x69 0x6D 0x65 0x73 0x20 - 0x68 0x65 0x27 0x64 0x20 0x63 0x6F 0x6E - 0x76 0x69 0x6E 0x63 0x65 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x74 0x6F 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x6D 0x2C 0x20 0x74 0x6F - 0x6F 0x21 0x20 -ENDCHUNK - - -ENDCHUNK -#line 22044 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9B= 0x00015373 - - -CHUNK('HTOP', _help_48544F50_9B, "") -SUBFILE -#line 22052 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9B, 0x0) - BYTE - 0x03 0x03 0x52 0x69 0x63 0x68 0x20 0x43 - 0x6F 0x75 0x73 0x69 0x6E 0x0D 0x0A 0x4F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x50 0x61 0x74 - 0x72 0x69 0x63 0x6B 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x69 0x73 0x20 0x61 0x20 0x72 0x69 0x63 - 0x68 0x20 0x63 0x6F 0x75 0x73 0x69 0x6E - 0x20 0x74 0x6F 0x20 0x73 0x6F 0x6D 0x65 - 0x20 0x76 0x65 0x72 0x79 0x20 0x64 0x69 - 0x73 0x74 0x61 0x6E 0x74 0x2C 0x20 0x76 - 0x65 0x72 0x79 0x20 0x77 0x65 0x69 0x72 - 0x64 0x20 0x72 0x65 0x6C 0x61 0x74 0x69 - 0x76 0x65 0x73 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x79 0x27 0x72 0x65 0x20 0x6A 0x65 - 0x61 0x6C 0x6F 0x75 0x73 0x20 0x62 0x65 - 0x63 0x61 0x75 0x73 0x65 0x20 0x68 0x65 - 0x27 0x73 0x20 0x73 0x75 0x63 0x68 0x20 - 0x61 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x64 0x61 0x6E 0x63 0x65 0x72 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x61 0x76 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x73 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x68 - 0x69 0x6D 0x20 0x64 0x69 0x73 0x61 0x70 - 0x70 0x65 0x61 0x72 0x20 0x66 0x6F 0x72 - 0x65 0x76 0x65 0x72 0x21 0x20 0x20 0x54 - 0x68 0x65 0x79 0x20 0x68 0x61 0x76 0x65 - 0x20 0x69 0x6E 0x76 0x69 0x74 0x65 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 - 0x76 0x61 0x63 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x62 0x75 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x74 0x72 0x79 0x20 0x74 0x6F - 0x20 0x67 0x65 0x74 0x20 0x68 0x69 0x6D - 0x20 0x6C 0x6F 0x73 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x76 0x65 0x72 0x20 0x68 - 0x65 0x20 0x67 0x6F 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x68 0x65 0x20 0x65 0x73 - 0x63 0x61 0x70 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x61 0x6E 0x64 0x6F 0x6E 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x61 0x72 0x79 0x20 0x63 0x61 0x76 - 0x65 0x3F 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 22160 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9C= 0x00015374 - - -CHUNK('HTOP', _help_48544F50_9C, "") -SUBFILE -#line 22168 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9D, 0x0) - BYTE - 0x03 0x03 0x4B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x45 0x78 0x70 0x65 0x72 0x74 0x0D - 0x0A 0x41 0x66 0x74 0x65 0x72 0x20 0x61 - 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x61 0x74 0x20 0x70 0x72 0x61 0x63 0x74 - 0x69 0x63 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x72 0x72 0x6F - 0x72 0x2C 0x20 0x50 0x61 0x74 0x72 0x69 - 0x63 0x6B 0x20 0x68 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x65 0x73 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x61 0x20 0x6B 0x61 - 0x72 0x61 0x74 0x65 0x20 0x65 0x78 0x70 - 0x65 0x72 0x74 0x2E 0x20 0x20 0x57 0x68 - 0x65 0x6E 0x65 0x76 0x65 0x72 0x20 0x64 - 0x61 0x6E 0x67 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6E 0x65 0x61 0x72 0x2C 0x20 0x68 - 0x65 0x20 0x64 0x6F 0x65 0x73 0x20 0x61 - 0x20 0x71 0x75 0x69 0x63 0x6B 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x20 0x72 0x6F - 0x62 0x65 0x20 0x61 0x6E 0x64 0x20 0x6B - 0x69 0x63 0x6B 0x73 0x20 0x68 0x69 0x73 - 0x20 0x77 0x61 0x79 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 0x64 - 0x6F 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x6F 0x70 0x70 0x6F 0x6E - 0x65 0x6E 0x74 0x20 0x69 0x73 0x20 0x61 - 0x20 0x62 0x6F 0x78 0x65 0x72 0x3F 0x20 - 0x20 0x4F 0x72 0x20 0x61 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x3F 0x20 0x20 0x4F 0x72 - 0x20 0x61 0x20 0x62 0x61 0x62 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22265 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9D= 0x00015375 - - -CHUNK('HTOP', _help_48544F50_9D, "") -SUBFILE -#line 22273 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9C, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x41 0x73 0x20 0x68 - 0x65 0x20 0x67 0x75 0x69 0x64 0x65 0x64 - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x73 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x67 0x6C - 0x61 0x73 0x73 0x20 0x66 0x61 0x63 0x74 - 0x6F 0x72 0x79 0x2C 0x20 0x50 0x61 0x74 - 0x72 0x69 0x63 0x6B 0x20 0x73 0x6F 0x6D - 0x65 0x74 0x69 0x6D 0x65 0x73 0x20 0x69 - 0x6D 0x61 0x67 0x69 0x6E 0x65 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x61 0x6E 0x20 0x65 - 0x78 0x70 0x6C 0x6F 0x72 0x65 0x72 0x20 - 0x6C 0x65 0x61 0x64 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x74 0x65 0x61 0x6D 0x20 0x6F - 0x66 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x73 0x20 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x64 0x76 0x65 0x6E - 0x74 0x75 0x72 0x65 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x20 0x61 0x20 0x74 - 0x72 0x6F 0x70 0x69 0x63 0x61 0x6C 0x20 - 0x76 0x69 0x6C 0x6C 0x61 0x67 0x65 0x2E - 0x0D 0x0A 0x49 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x72 0x6F 0x6C 0x65 0x2C 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x74 0x68 - 0x65 0x20 0x76 0x69 0x6C 0x6C 0x61 0x67 - 0x65 0x20 0x63 0x6F 0x6D 0x70 0x6C 0x65 - 0x74 0x65 0x6C 0x79 0x20 0x64 0x65 0x73 - 0x65 0x72 0x74 0x65 0x64 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x69 0x65 0x6E - 0x74 0x69 0x73 0x74 0x73 0x20 0x64 0x69 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 - 0x6F 0x6F 0x64 0x20 0x70 0x6F 0x69 0x73 - 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x20 0x72 0x65 0x73 - 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 0x2C - 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x68 0x65 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x6C 0x70 0x72 0x69 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22378 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9E= 0x00015376 - - -CHUNK('HTOP', _help_48544F50_9E, "") -SUBFILE -#line 22386 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B9, 0x0) - BYTE - 0x03 0x03 0x61 0x63 0x74 0x72 0x65 0x73 - 0x73 0x65 0x73 0x20 0x0D 0x0A 0x52 0x61 - 0x6D 0x75 0x92 0x73 0x20 0x66 0x72 0x69 - 0x65 0x6E 0x64 0x6C 0x79 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x65 0x6E 0x73 0x65 0x20 0x6F - 0x66 0x20 0x68 0x75 0x6D 0x6F 0x72 0x20 - 0x6D 0x61 0x64 0x65 0x20 0x68 0x69 0x6D - 0x20 0x74 0x68 0x65 0x20 0x66 0x61 0x76 - 0x6F 0x72 0x69 0x74 0x65 0x20 0x6F 0x66 - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x6C 0x65 - 0x61 0x64 0x69 0x6E 0x67 0x20 0x61 0x63 - 0x74 0x72 0x65 0x73 0x73 0x65 0x73 0x2E - 0x20 0x20 0x53 0x65 0x76 0x65 0x72 0x61 - 0x6C 0x20 0x73 0x74 0x61 0x72 0x6C 0x65 - 0x74 0x73 0x20 0x62 0x65 0x67 0x61 0x6E - 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x61 0x70 0x70 0x6F 0x69 0x6E 0x74 0x6D - 0x65 0x6E 0x74 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x77 0x65 0x65 0x6B 0x6C 0x79 0x20 - 0x63 0x68 0x65 0x63 0x6B 0x75 0x70 0x73 - 0x21 0x20 0x20 0x48 0x6F 0x6C 0x6C 0x79 - 0x77 0x6F 0x6F 0x64 0x20 0x77 0x61 0x73 - 0x20 0x73 0x6F 0x6F 0x6E 0x20 0x62 0x75 - 0x7A 0x7A 0x69 0x6E 0x67 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x67 0x65 0x6E 0x74 0x6C 0x65 0x6D 0x61 - 0x6E 0x20 0x64 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x20 0x77 0x68 0x6F 0x6D 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x6C 0x65 0x61 - 0x64 0x69 0x6E 0x67 0x20 0x6C 0x61 0x64 - 0x79 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x6B 0x69 0x73 0x73 - 0x2E 0x20 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x65 0x78 0x65 0x63 0x75 0x74 0x69 - 0x76 0x65 0x73 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x74 0x20 0x74 0x68 0x61 0x74 - 0x20 0x52 0x61 0x6D 0x75 0x20 0x6D 0x75 - 0x73 0x74 0x20 0x68 0x61 0x76 0x65 0x20 - 0x73 0x6F 0x6D 0x65 0x20 0x76 0x65 0x72 - 0x79 0x20 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x20 0x71 0x75 0x61 0x6C 0x69 0x74 - 0x69 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x76 0x69 0x6E 0x63 0x65 - 0x64 0x20 0x68 0x69 0x6D 0x20 0x74 0x6F - 0x20 0x67 0x69 0x76 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x20 0x74 - 0x72 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 22495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9F= 0x00015377 - - -CHUNK('HTOP', _help_48544F50_9F, "") -SUBFILE -#line 22503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9F, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x69 0x73 0x79 0x20 - 0x54 0x65 0x6E 0x61 0x6E 0x74 0x0D 0x0A - 0x49 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x20 0x72 0x6F - 0x6C 0x65 0x2C 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x68 0x61 0x73 0x20 - 0x62 0x65 0x63 0x6F 0x6D 0x65 0x20 0x61 - 0x20 0x62 0x6F 0x61 0x72 0x64 0x69 0x6E - 0x67 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x74 - 0x65 0x6E 0x61 0x6E 0x74 0x73 0x20 0x69 - 0x73 0x20 0x70 0x61 0x72 0x74 0x69 0x63 - 0x75 0x6C 0x61 0x72 0x6C 0x79 0x20 0x6E - 0x6F 0x69 0x73 0x79 0x3B 0x20 0x69 0x74 - 0x92 0x73 0x20 0x52 0x61 0x6D 0x75 0x20 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x67 - 0x68 0x6F 0x73 0x74 0x20 0x74 0x65 0x6E - 0x61 0x6E 0x74 0x21 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6A - 0x75 0x73 0x74 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x61 0x6E 0x20 0x6F 0x72 0x64 0x69 - 0x6E 0x61 0x72 0x79 0x20 0x70 0x65 0x72 - 0x73 0x6F 0x6E 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x20 0x66 0x6C 0x6F - 0x6F 0x72 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x77 0x68 - 0x61 0x74 0x20 0x70 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x61 0x72 0x65 0x20 0x64 0x6F - 0x69 0x6E 0x67 0x20 0x65 0x76 0x65 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x79 0x27 0x72 0x65 0x20 0x6E 0x6F - 0x74 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x2E 0x20 0x20 0x48 0x65 0x92 0x73 0x20 - 0x64 0x65 0x63 0x69 0x64 0x65 0x64 0x20 - 0x68 0x65 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x74 0x68 0x65 0x20 0x77 0x68 0x6F - 0x6C 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x65 0x74 0x73 0x20 0x6F 0x75 0x74 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x61 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x73 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x6C 0x65 0x61 0x76 0x69 0x6E - 0x67 0x2E 0x20 0x20 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x74 - 0x65 0x6E 0x61 0x6E 0x74 0x73 0x20 0x72 - 0x65 0x61 0x63 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x52 0x61 0x6D 0x75 0x20 0x6D - 0x65 0x65 0x74 0x73 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x73 0x79 - 0x63 0x68 0x69 0x63 0x20 0x67 0x68 0x6F - 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x61 0x6C 0x6C 0x73 0x20 0x6D 0x61 0x64 - 0x6C 0x79 0x20 0x69 0x6E 0x20 0x6C 0x6F - 0x76 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22625 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A0= 0x00015378 - - -CHUNK('HTOP', _help_48544F50_A0, "") -SUBFILE -#line 22633 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A0, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x72 0x20 0x53 0x61 - 0x6C 0x65 0x73 0x6D 0x61 0x6E 0x0D 0x0A - 0x52 0x61 0x6D 0x75 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x67 0x72 0x65 0x61 - 0x74 0x65 0x73 0x74 0x20 0x63 0x61 0x72 - 0x20 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 - 0x6E 0x20 0x6F 0x6E 0x20 0x65 0x61 0x72 - 0x74 0x68 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x69 0x73 0x20 0x73 0x75 0x63 0x68 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x20 0x73 - 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E 0x2C - 0x20 0x74 0x68 0x65 0x20 0x66 0x61 0x63 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x68 - 0x65 0x20 0x68 0x61 0x73 0x20 0x6E 0x6F - 0x20 0x63 0x61 0x72 0x73 0x20 0x6E 0x65 - 0x76 0x65 0x72 0x20 0x73 0x74 0x6F 0x70 - 0x73 0x20 0x68 0x69 0x6D 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x61 0x6C 0x65 - 0x21 0x20 0x20 0x48 0x65 0x20 0x73 0x74 - 0x61 0x6E 0x64 0x73 0x20 0x6F 0x6E 0x20 - 0x61 0x20 0x73 0x74 0x72 0x65 0x65 0x74 - 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x65 0x6C 0x6C - 0x73 0x20 0x63 0x61 0x72 0x73 0x2C 0x20 - 0x70 0x6F 0x74 0x74 0x65 0x72 0x79 0x2C - 0x20 0x6C 0x61 0x6D 0x70 0x70 0x6F 0x73 - 0x74 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x61 0x6E 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x65 0x6C 0x73 0x65 0x20 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x20 0x6F 0x66 0x20 0x74 0x6F - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x73 0x20 0x61 0x73 0x20 0x74 0x68 0x65 - 0x79 0x20 0x77 0x61 0x6C 0x6B 0x20 0x62 - 0x79 0x2E 0x20 0x20 0x57 0x69 0x6C 0x6C - 0x20 0x68 0x65 0x20 0x62 0x65 0x20 0x61 - 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x72 0x6D 0x20 0x68 0x69 0x73 - 0x20 0x77 0x61 0x79 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x67 0x6F 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x6A 0x61 0x69 - 0x6C 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 0x6D - 0x61 0x6E 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x73 0x75 0x73 0x70 0x69 - 0x63 0x69 0x6F 0x75 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22743 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A1= 0x00015379 - - -CHUNK('HTOP', _help_48544F50_A1, "") -SUBFILE -#line 22751 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A1, 0x0) - BYTE - 0x03 0x03 0x53 0x6B 0x79 0x20 0x44 0x69 - 0x76 0x65 0x72 0x0D 0x0A 0x52 0x61 0x6D - 0x75 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x6B 0x79 0x64 0x69 0x76 - 0x65 0x72 0x2E 0x20 0x20 0x41 0x73 0x20 - 0x61 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x72 0x65 0x72 - 0x2C 0x20 0x68 0x65 0x20 0x73 0x6B 0x79 - 0x20 0x64 0x69 0x76 0x65 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x20 0x72 0x65 - 0x6D 0x6F 0x74 0x65 0x20 0x6A 0x75 0x6E - 0x67 0x6C 0x65 0x20 0x69 0x6E 0x20 0x73 - 0x65 0x61 0x72 0x63 0x68 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x6C 0x6F 0x73 0x74 0x20 - 0x61 0x6E 0x74 0x68 0x72 0x6F 0x70 0x6F - 0x6C 0x6F 0x67 0x69 0x73 0x74 0x2E 0x20 - 0x20 0x55 0x6E 0x66 0x6F 0x72 0x74 0x75 - 0x6E 0x61 0x74 0x65 0x6C 0x79 0x2C 0x20 - 0x68 0x69 0x73 0x20 0x70 0x61 0x72 0x61 - 0x63 0x68 0x75 0x74 0x65 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x92 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x65 0x20 0x6C 0x61 0x6E 0x64 0x73 0x20 - 0x66 0x6C 0x61 0x74 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6A 0x75 0x6E 0x67 - 0x6C 0x65 0x20 0x66 0x6C 0x6F 0x6F 0x72 - 0x21 0x20 0x20 0x53 0x70 0x6C 0x61 0x74 - 0x21 0x20 0x20 0x4C 0x75 0x63 0x6B 0x69 - 0x6C 0x79 0x2C 0x20 0x6E 0x6F 0x20 0x62 - 0x6F 0x6E 0x65 0x73 0x20 0x61 0x72 0x65 - 0x20 0x62 0x72 0x6F 0x6B 0x65 0x6E 0x2C - 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x73 0x20 0x68 0x69 - 0x73 0x20 0x73 0x65 0x61 0x72 0x63 0x68 - 0x2E 0x20 0x20 0x41 0x73 0x20 0x68 0x65 - 0x20 0x61 0x70 0x70 0x72 0x6F 0x61 0x63 - 0x68 0x65 0x73 0x20 0x61 0x20 0x77 0x6F - 0x6F 0x64 0x65 0x6E 0x20 0x62 0x72 0x69 - 0x64 0x67 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x68 0x65 0x61 0x72 0x73 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x6F 0x6D 0x65 0x77 0x68 0x65 0x72 - 0x65 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 - 0x69 0x64 0x65 0x2E 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x70 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x68 0x65 - 0x20 0x66 0x69 0x6E 0x64 0x73 0x20 0x74 - 0x68 0x65 0x72 0x65 0x20 0x62 0x65 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x6C 0x79 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x61 0x6E 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x61 0x62 0x6F - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x73 0x74 0x20 0x61 0x6E 0x74 0x68 - 0x72 0x6F 0x70 0x6F 0x6C 0x6F 0x67 0x69 - 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22875 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A2= 0x0001537a - - -CHUNK('HTOP', _help_48544F50_A2, "") -SUBFILE -#line 22883 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A2, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A4, 0x0) - BYTE - 0x03 0x03 0x6D 0x65 0x74 0x65 0x6F 0x72 - 0x6F 0x6C 0x6F 0x67 0x79 0x0D 0x0A 0x52 - 0x61 0x6E 0x64 0x6F 0x6C 0x70 0x68 0x20 - 0x6D 0x6F 0x76 0x65 0x64 0x20 0x74 0x6F - 0x20 0x4C 0x6F 0x6E 0x64 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x63 0x61 - 0x6D 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x70 0x6F 0x70 0x75 - 0x6C 0x61 0x72 0x20 0x77 0x65 0x61 0x74 - 0x68 0x65 0x72 0x20 0x6D 0x61 0x6E 0x20 - 0x69 0x6E 0x20 0x45 0x6E 0x67 0x6C 0x61 - 0x6E 0x64 0x2E 0x20 0x20 0x48 0x69 0x73 - 0x20 0x66 0x69 0x76 0x65 0x2D 0x64 0x61 - 0x79 0x20 0x66 0x6F 0x72 0x65 0x63 0x61 - 0x73 0x74 0x73 0x20 0x77 0x65 0x72 0x65 - 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 - 0x72 0x69 0x67 0x68 0x74 0x2E 0x20 0x53 - 0x6F 0x6F 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x70 0x6F 0x70 0x75 0x6C 0x61 0x72 0x69 - 0x74 0x79 0x20 0x62 0x65 0x63 0x61 0x6D - 0x65 0x20 0x75 0x6E 0x62 0x65 0x61 0x72 - 0x61 0x62 0x6C 0x65 0x2E 0x20 0x20 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x6F 0x75 0x74 - 0x20 0x45 0x75 0x72 0x6F 0x70 0x65 0x20 - 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6B 0x6E 0x6F 0x77 0x20 0x77 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x77 0x65 0x61 0x74 0x68 0x65 0x72 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x69 0x6E - 0x20 0x74 0x77 0x6F 0x20 0x77 0x65 0x65 - 0x6B 0x73 0x2C 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x6E 0x74 0x68 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x65 0x76 0x65 0x6E - 0x20 0x69 0x6E 0x20 0x61 0x20 0x79 0x65 - 0x61 0x72 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x70 0x72 0x65 0x73 0x73 0x75 0x72 - 0x65 0x20 0x77 0x61 0x73 0x20 0x74 0x6F - 0x6F 0x20 0x6D 0x75 0x63 0x68 0x20 0x66 - 0x6F 0x72 0x20 0x52 0x61 0x6E 0x64 0x6F - 0x6C 0x70 0x68 0x2E 0x20 0x48 0x65 0x20 - 0x6C 0x65 0x66 0x74 0x20 0x4C 0x6F 0x6E - 0x64 0x6F 0x6E 0x2C 0x20 0x45 0x6E 0x67 - 0x6C 0x61 0x6E 0x64 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x4E 0x65 0x77 0x20 0x4C 0x6F - 0x6E 0x64 0x6F 0x6E 0x2C 0x20 0x43 0x6F - 0x6E 0x6E 0x65 0x63 0x74 0x69 0x63 0x75 - 0x74 0x2E 0x20 0x0D 0x0A 0x41 0x66 0x72 - 0x61 0x69 0x64 0x20 0x6F 0x66 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x72 0x65 0x63 - 0x6F 0x67 0x6E 0x69 0x7A 0x65 0x64 0x20 - 0x62 0x79 0x20 0x68 0x69 0x73 0x20 0x61 - 0x64 0x6D 0x69 0x72 0x65 0x72 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x55 - 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 0x74 - 0x61 0x74 0x65 0x73 0x2C 0x20 0x65 0x61 - 0x63 0x68 0x20 0x64 0x61 0x79 0x20 0x68 - 0x65 0x20 0x70 0x72 0x65 0x74 0x65 0x6E - 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x6F 0x76 0x65 0x64 0x20 0x70 - 0x72 0x65 0x74 0x65 0x6E 0x64 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 - 0x65 0x6C 0x73 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x6F 0x6E 0x20 0x72 - 0x65 0x61 0x6C 0x69 0x7A 0x65 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x63 0x61 0x72 0x65 0x65 0x72 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x69 0x74 0x21 0x20 0x20 0x54 0x68 0x61 - 0x74 0x92 0x73 0x20 0x68 0x6F 0x77 0x20 - 0x52 0x61 0x6E 0x64 0x6F 0x6C 0x70 0x68 - 0x20 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 - 0x61 0x20 0x70 0x72 0x6F 0x66 0x65 0x73 - 0x73 0x69 0x6F 0x6E 0x61 0x6C 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 23027 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A3= 0x0001537b - - -CHUNK('HTOP', _help_48544F50_A3, "") -SUBFILE -#line 23035 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A3, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_94=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_94=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_94=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x03 0x03 0x4D 0x72 0x2E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x46 0x61 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x52 0x61 0x6E 0x64 0x6F 0x6C - 0x70 0x68 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x66 0x61 0x74 0x68 - 0x65 0x72 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x6F - 0x6C 0x65 0x73 0x74 0x20 0x64 0x61 0x64 - 0x97 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x68 0x61 0x76 0x65 - 0x20 0x68 0x69 0x6D 0x20 0x61 0x73 0x20 - 0x74 0x68 0x65 0x69 0x72 0x20 0x66 0x61 - 0x74 0x68 0x65 0x72 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x61 0x20 0x66 0x61 0x74 - 0x68 0x65 0x72 0x20 0x77 0x69 0x74 0x68 - 0x20 0x75 0x6E 0x62 0x65 0x6C 0x69 0x65 - 0x76 0x61 0x62 0x6C 0x65 0x20 0x6B 0x6E - 0x6F 0x77 0x6C 0x65 0x64 0x67 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x67 0x72 0x65 0x61 - 0x74 0x20 0x73 0x74 0x6F 0x72 0x69 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x65 0x6C - 0x6C 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x68 0x69 0x73 0x20 0x74 0x72 0x69 0x70 - 0x73 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6C 0x64 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x66 0x61 0x74 0x68 0x65 - 0x72 0x20 0x77 0x68 0x6F 0x20 0x69 0x73 - 0x20 0x75 0x70 0x2D 0x74 0x6F 0x2D 0x64 - 0x61 0x74 0x65 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x6F 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x64 0x6F 0x6E 0x92 0x74 - 0x73 0x20 0x6F 0x66 0x20 0x66 0x61 0x73 - 0x68 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x4D - 0x6F 0x73 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x2C 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x66 0x61 0x74 0x68 0x65 0x72 - 0x20 0x77 0x68 0x6F 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x65 0x6D 0x62 - 0x61 0x72 0x72 0x61 0x73 0x73 0x20 0x68 - 0x69 0x73 0x20 0x6B 0x69 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x66 0x72 0x6F 0x6E 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x2E 0x20 0x0D 0x0A 0x49 0x73 0x20 - 0x74 0x68 0x69 0x73 0x20 0x61 0x73 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x6F 0x20 - 0x6D 0x75 0x63 0x68 0x3F 0x20 0x43 0x6F - 0x75 0x6C 0x64 0x20 0x52 0x61 0x6E 0x64 - 0x6F 0x6C 0x70 0x68 0x20 0x6C 0x6F 0x73 - 0x65 0x20 0x68 0x69 0x73 0x20 0x93 0x63 - 0x6F 0x6F 0x6C 0x20 0x64 0x75 0x64 0x65 - 0x94 0x20 0x72 0x65 0x70 0x75 0x74 0x61 - 0x74 0x69 0x6F 0x6E 0x20 0x62 0x79 0x20 - 0x73 0x75 0x72 0x70 0x72 0x69 0x73 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x6B - 0x69 0x64 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23164 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A4= 0x0001537c - - -CHUNK('HTOP', _help_48544F50_A4, "") -SUBFILE -#line 23172 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A4, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A5, 0x0) - BYTE - 0x03 0x03 0x42 0x6F 0x64 0x79 0x67 0x75 - 0x61 0x72 0x64 0x0D 0x0A 0x52 0x61 0x6E - 0x64 0x6F 0x6C 0x70 0x68 0x92 0x73 0x20 - 0x64 0x65 0x73 0x69 0x72 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x63 0x6F 0x6D 0x65 - 0x20 0x61 0x20 0x62 0x6F 0x64 0x79 0x67 - 0x75 0x61 0x72 0x64 0x20 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x68 0x69 0x73 0x20 0x64 0x61 0x79 0x73 - 0x20 0x61 0x73 0x20 0x61 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x77 0x65 0x61 - 0x74 0x68 0x65 0x72 0x20 0x6D 0x61 0x6E - 0x20 0x62 0x61 0x63 0x6B 0x20 0x69 0x6E - 0x20 0x4C 0x6F 0x6E 0x64 0x6F 0x6E 0x2C - 0x20 0x45 0x6E 0x67 0x6C 0x61 0x6E 0x64 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x77 0x69 - 0x73 0x68 0x65 0x73 0x20 0x68 0x65 0x92 - 0x64 0x20 0x68 0x61 0x64 0x20 0x73 0x6F - 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 - 0x20 0x68 0x69 0x6D 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x6F 0x73 0x65 0x20 0x61 - 0x6E 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 - 0x77 0x65 0x61 0x74 0x68 0x65 0x72 0x20 - 0x66 0x61 0x6E 0x73 0x2E 0x20 0x20 0x49 - 0x6D 0x61 0x67 0x69 0x6E 0x65 0x21 0x20 - 0x20 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x75 0x73 0x68 0x20 - 0x79 0x6F 0x75 0x2C 0x20 0x73 0x74 0x65 - 0x70 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x74 0x6F 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x61 0x75 0x74 0x6F 0x67 0x72 0x61 - 0x70 0x68 0x2E 0x20 0x20 0x52 0x61 0x6E - 0x64 0x6F 0x6C 0x70 0x68 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x74 0x68 0x65 - 0x20 0x70 0x65 0x72 0x66 0x65 0x63 0x74 - 0x20 0x62 0x6F 0x64 0x79 0x67 0x75 0x61 - 0x72 0x64 0x20 0x73 0x68 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x6B 0x6E 0x6F - 0x77 0x6C 0x65 0x64 0x67 0x65 0x61 0x62 - 0x6C 0x65 0x97 0x68 0x65 0x20 0x73 0x68 - 0x6F 0x75 0x6C 0x64 0x20 0x6B 0x6E 0x6F - 0x77 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x61 0x76 0x6F 0x69 0x64 0x20 - 0x62 0x69 0x67 0x20 0x63 0x72 0x6F 0x77 - 0x64 0x73 0x2E 0x20 0x20 0x41 0x20 0x62 - 0x6F 0x64 0x79 0x67 0x75 0x61 0x72 0x64 - 0x20 0x73 0x68 0x6F 0x75 0x6C 0x64 0x20 - 0x61 0x6C 0x73 0x6F 0x20 0x62 0x65 0x20 - 0x77 0x69 0x73 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x62 0x72 0x61 0x76 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x68 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 0x62 - 0x6C 0x65 0x20 0x74 0x6F 0x20 0x73 0x74 - 0x61 0x79 0x20 0x61 0x6C 0x65 0x72 0x74 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x74 0x69 0x6D 0x65 0x3A 0x20 0x6E - 0x6F 0x20 0x6E 0x61 0x70 0x73 0x20 0x61 - 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x2E 0x20 - 0x20 0x4F 0x6E 0x65 0x20 0x6D 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 0x3A - 0x20 0x6E 0x6F 0x20 0x67 0x6F 0x6F 0x64 - 0x20 0x62 0x6F 0x64 0x79 0x67 0x75 0x61 - 0x72 0x64 0x20 0x73 0x68 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x61 0x66 0x72 - 0x61 0x69 0x64 0x20 0x6F 0x66 0x20 0x68 - 0x65 0x69 0x67 0x68 0x74 0x73 0x2E 0x20 - 0x20 0x54 0x68 0x61 0x74 0x20 0x69 0x6E - 0x63 0x6C 0x75 0x64 0x65 0x73 0x20 0x64 - 0x75 0x72 0x69 0x6E 0x67 0x20 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x74 0x72 0x69 0x70 - 0x73 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x52 0x61 0x6E 0x64 0x6F 0x6C 0x70 - 0x68 0x20 0x66 0x6F 0x72 0x67 0x6F 0x74 - 0x20 0x74 0x68 0x61 0x74 0x20 0x61 0x20 - 0x70 0x65 0x72 0x66 0x65 0x63 0x74 0x20 - 0x62 0x6F 0x64 0x79 0x67 0x75 0x61 0x72 - 0x64 0x20 0x63 0x61 0x6E 0x92 0x74 0x20 - 0x6C 0x61 0x75 0x67 0x68 0x2E 0x20 0x20 - 0x43 0x6F 0x75 0x6C 0x64 0x20 0x74 0x68 - 0x69 0x73 0x20 0x70 0x75 0x74 0x20 0x73 - 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x92 0x73 - 0x20 0x6C 0x69 0x66 0x65 0x20 0x69 0x6E - 0x20 0x64 0x61 0x6E 0x67 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23322 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A5= 0x0001537d - - -CHUNK('HTOP', _help_48544F50_A5, "") -SUBFILE -#line 23330 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A5, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x82 0x02 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x82 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A6, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x66 0x65 0x20 0x49 - 0x6E 0x73 0x75 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x53 0x61 0x6C 0x65 0x73 0x6D 0x61 - 0x6E 0x0D 0x0A 0x52 0x61 0x6E 0x64 0x6F - 0x6C 0x70 0x68 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x64 0x61 0x79 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x20 0x73 0x75 0x70 0x65 0x72 0x68 - 0x65 0x72 0x6F 0x2E 0x20 0x20 0x57 0x68 - 0x61 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x61 0x20 0x6C 0x69 0x66 0x65 0x20 0x69 - 0x6E 0x73 0x75 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 - 0x6E 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x64 0x6F 0x20 0x77 0x69 0x74 - 0x68 0x20 0x73 0x75 0x70 0x65 0x72 0x68 - 0x65 0x72 0x6F 0x65 0x73 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 0x61 - 0x73 0x6B 0x3F 0x20 0x20 0x57 0x65 0x27 - 0x72 0x65 0x20 0x6E 0x6F 0x74 0x20 0x74 - 0x61 0x6C 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x72 0x64 0x69 0x6E 0x61 - 0x72 0x79 0x20 0x64 0x6F 0x6F 0x72 0x2D - 0x74 0x6F 0x2D 0x64 0x6F 0x6F 0x72 0x20 - 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E - 0x2E 0x20 0x20 0x57 0x65 0x27 0x72 0x65 - 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E 0x67 - 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 0x73 - 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x73 0x75 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x79 0x6F - 0x6E 0x65 0x2C 0x20 0x61 0x6E 0x79 0x77 - 0x68 0x65 0x72 0x65 0x2C 0x20 0x61 0x6E - 0x79 0x74 0x69 0x6D 0x65 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x73 0x6C 0x69 - 0x70 0x70 0x69 0x6E 0x67 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x66 0x6C 0x6F - 0x6F 0x72 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 - 0x70 0x61 0x73 0x73 0x69 0x6E 0x67 0x20 - 0x6F 0x75 0x74 0x20 0x61 0x66 0x74 0x65 - 0x72 0x20 0x61 0x20 0x6D 0x65 0x61 0x6C - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x64 0x69 - 0x6E 0x65 0x72 0x2C 0x20 0x6F 0x72 0x20 - 0x66 0x61 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x6F 0x66 0x66 0x20 0x61 0x20 0x62 0x72 - 0x69 0x64 0x67 0x65 0x2E 0x20 0x20 0x44 - 0x6F 0x6E 0x92 0x74 0x20 0x77 0x6F 0x72 - 0x72 0x79 0x21 0x20 0x20 0x52 0x61 0x6E - 0x64 0x6F 0x6C 0x70 0x68 0x2C 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6C 0x69 0x66 0x65 - 0x20 0x69 0x6E 0x73 0x75 0x72 0x61 0x6E - 0x63 0x65 0x20 0x73 0x61 0x6C 0x65 0x73 - 0x6D 0x61 0x6E 0x2C 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x69 0x6E 0x74 0x65 0x72 0x72 - 0x75 0x70 0x74 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x66 0x61 0x6C 0x6C 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x69 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x74 0x6F 0x20 0x6F 0x66 - 0x66 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x62 0x65 0x73 0x74 - 0x20 0x63 0x6F 0x6D 0x62 0x6F 0x20 0x6C - 0x69 0x66 0x65 0x20 0x69 0x6E 0x73 0x75 - 0x72 0x61 0x6E 0x63 0x65 0x20 0x70 0x61 - 0x63 0x6B 0x61 0x67 0x65 0x2E 0x20 0x20 - 0x57 0x68 0x69 0x63 0x68 0x20 0x69 0x73 - 0x2C 0x20 0x62 0x79 0x20 0x74 0x68 0x65 - 0x20 0x77 0x61 0x79 0x2C 0x20 0x61 0x6C - 0x6D 0x6F 0x73 0x74 0x20 0x70 0x65 0x72 - 0x66 0x65 0x63 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x72 0x65 0x92 0x73 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x6F 0x6E 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x61 0x74 0x20 0x69 0x73 0x6E 0x92 0x74 - 0x20 0x63 0x6F 0x76 0x65 0x72 0x65 0x64 - 0x2E 0x20 0x0D 0x0A 0x49 0x73 0x20 0x69 - 0x74 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x63 0x72 0x61 0x73 - 0x68 0x20 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x69 0x6E - 0x67 0x20 0x61 0x74 0x74 0x61 0x63 0x6B - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23480 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A6= 0x0001537e - - -CHUNK('HTOP', _help_48544F50_A6, "") -SUBFILE -#line 23488 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A6, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x00 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A7, 0x0) - BYTE - 0x03 0x03 0x73 0x65 0x6C 0x66 0x2D 0x64 - 0x65 0x66 0x65 0x6E 0x73 0x65 0x20 0x65 - 0x78 0x70 0x65 0x72 0x74 0x0D 0x0A 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x64 - 0x69 0x64 0x6E 0x92 0x74 0x20 0x70 0x6C - 0x61 0x6E 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x61 0x20 0x6B 0x61 0x72 0x61 0x74 - 0x65 0x20 0x74 0x65 0x61 0x63 0x68 0x65 - 0x72 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x67 0x6F 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x6E 0x20 0x65 0x6E 0x67 0x69 0x6E - 0x65 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x65 0x73 0x69 0x67 0x6E 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x77 0x61 0x6C - 0x6C 0x20 0x6F 0x66 0x20 0x43 0x68 0x69 - 0x6E 0x61 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 - 0x20 0x6D 0x65 0x74 0x20 0x74 0x68 0x69 - 0x73 0x20 0x67 0x75 0x79 0x20 0x69 0x6E - 0x20 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x20 - 0x77 0x68 0x6F 0x20 0x74 0x61 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x72 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x2E 0x20 0x20 - 0x50 0x72 0x65 0x74 0x74 0x79 0x20 0x73 - 0x6F 0x6F 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x61 0x74 0x20 0x68 0x69 0x6D 0x2C 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x74 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x20 0x6D 0x75 - 0x73 0x74 0x20 0x62 0x65 0x20 0x68 0x65 - 0x72 0x20 0x64 0x65 0x73 0x74 0x69 0x6E - 0x79 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x73 0x68 0x65 0x20 0x68 0x61 0x73 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x74 0x61 0x6C 0x65 0x6E - 0x74 0x73 0x2E 0x0D 0x0A 0x52 0x6F 0x78 - 0x61 0x6E 0x6E 0x65 0x20 0x6C 0x65 0x61 - 0x72 0x6E 0x65 0x64 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x6D 0x65 0x64 0x69 0x63 0x69 0x6E - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x68 - 0x65 0x72 0x20 0x67 0x72 0x61 0x6E 0x64 - 0x66 0x61 0x74 0x68 0x65 0x72 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x6B 0x6E 0x6F - 0x77 0x73 0x20 0x68 0x6F 0x77 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x72 0x61 0x70 0x65 - 0x20 0x72 0x68 0x69 0x6E 0x6F 0x63 0x65 - 0x72 0x6F 0x73 0x20 0x68 0x6F 0x72 0x6E - 0x73 0x20 0x66 0x6F 0x72 0x20 0x66 0x65 - 0x76 0x65 0x72 0x20 0x6D 0x65 0x64 0x69 - 0x63 0x69 0x6E 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 0x69 - 0x67 0x65 0x72 0x2D 0x62 0x6F 0x6E 0x65 - 0x20 0x77 0x69 0x6E 0x65 0x20 0x66 0x6F - 0x72 0x20 0x61 0x63 0x68 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x61 0x69 0x6E - 0x73 0x2E 0x20 0x20 0x53 0x6F 0x6D 0x65 - 0x74 0x69 0x6D 0x65 0x73 0x20 0x73 0x68 - 0x65 0x20 0x75 0x73 0x65 0x73 0x20 0x74 - 0x68 0x69 0x73 0x20 0x73 0x74 0x75 0x66 - 0x66 0x20 0x6F 0x6E 0x20 0x68 0x65 0x72 - 0x20 0x68 0x61 0x69 0x72 0x2E 0x20 0x0D - 0x0A 0x53 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x73 0x63 0x72 0x61 0x70 0x69 0x6E - 0x67 0x20 0x61 0x20 0x72 0x68 0x69 0x6E - 0x6F 0x20 0x68 0x6F 0x72 0x6E 0x20 0x6F - 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 0x6C - 0x6B 0x65 0x64 0x20 0x75 0x70 0x20 0x62 - 0x65 0x68 0x69 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x20 0x76 0x65 0x72 0x79 0x20 0x71 - 0x75 0x69 0x65 0x74 0x6C 0x79 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x65 0x64 0x2C 0x20 0x74 0x68 0x72 - 0x65 0x77 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x77 - 0x68 0x6F 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x2E 0x20 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x20 0x68 0x69 0x72 0x65 0x64 0x20 - 0x68 0x65 0x72 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x70 0x6F 0x74 0x2C - 0x20 0x77 0x68 0x69 0x63 0x68 0x2C 0x20 - 0x61 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x6D 0x6F 0x6D 0x65 0x6E 0x74 0x2C 0x20 - 0x68 0x61 0x70 0x70 0x65 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 23646 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A7= 0x0001537f - - -CHUNK('HTOP', _help_48544F50_A7, "") -SUBFILE -#line 23654 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A7, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A8, 0x0) - BYTE - 0x03 0x03 0x48 0x61 0x69 0x72 0x64 0x72 - 0x65 0x73 0x73 0x65 0x72 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x77 0x61 0x79 0x20 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x66 - 0x69 0x67 0x75 0x72 0x65 0x73 0x20 0x69 - 0x74 0x2C 0x20 0x73 0x68 0x65 0x92 0x64 - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6F 0x6C 0x65 0x73 0x74 0x20 - 0x73 0x70 0x6F 0x6F 0x6B 0x79 0x20 0x68 - 0x61 0x69 0x72 0x64 0x72 0x65 0x73 0x73 - 0x65 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x68 0x61 0x73 0x20 0x65 0x76 0x65 - 0x72 0x20 0x73 0x65 0x65 0x6E 0x2E 0x20 - 0x20 0x49 0x6E 0x20 0x74 0x68 0x69 0x73 - 0x20 0x72 0x6F 0x6C 0x65 0x2C 0x20 0x73 - 0x68 0x65 0x27 0x64 0x20 0x61 0x70 0x70 - 0x65 0x61 0x72 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x68 0x61 0x69 0x72 - 0x64 0x72 0x65 0x73 0x73 0x65 0x72 0x20 - 0x62 0x75 0x74 0x20 0x73 0x68 0x65 0x92 - 0x64 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6A 0x6F 0x62 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x76 0x69 0x6C 0x20 0x6F 0x77 0x6E 0x65 - 0x72 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x70 0x6F 0x6F 0x6B 0x20 0x68 - 0x6F 0x75 0x73 0x65 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x73 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x68 - 0x69 0x73 0x20 0x68 0x61 0x69 0x72 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x6F 0x75 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x61 0x74 0x20 - 0x63 0x72 0x61 0x7A 0x79 0x20 0x70 0x68 - 0x61 0x6E 0x74 0x6F 0x6D 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x2E 0x20 0x20 0x57 0x68 - 0x6F 0x20 0x65 0x76 0x65 0x72 0x20 0x68 - 0x65 0x61 0x72 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x2C 0x20 0x61 0x6E 0x79 0x77 0x61 - 0x79 0x3F 0x20 0x20 0x53 0x68 0x65 0x92 - 0x64 0x20 0x70 0x72 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x61 0x6E 0x20 0x6F 0x72 0x64 0x69 0x6E - 0x61 0x72 0x79 0x20 0x67 0x75 0x79 0x2E - 0x20 0x53 0x6F 0x20 0x77 0x68 0x61 0x74 - 0x20 0x69 0x66 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x64 - 0x72 0x6F 0x70 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6C 0x6F 0x6F 0x72 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x6C 0x6B 0x20 0x74 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x77 - 0x61 0x6C 0x6C 0x73 0x3F 0x20 0x20 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x61 0x79 - 0x20 0x68 0x69 0x6D 0x20 0x6F 0x75 0x74 - 0x20 0x77 0x69 0x74 0x68 0x20 0x6F 0x6E - 0x65 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x6B 0x69 0x63 0x6B 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x70 0x75 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x68 0x69 0x73 0x20 0x73 0x74 0x75 - 0x6E 0x74 0x73 0x2E 0x20 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x52 0x6F - 0x78 0x61 0x6E 0x6E 0x65 0x20 0x64 0x69 - 0x64 0x6E 0x92 0x74 0x20 0x63 0x6F 0x75 - 0x6E 0x74 0x20 0x6F 0x6E 0x20 0x69 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x5A 0x61 - 0x63 0x6B 0x20 0x68 0x61 0x73 0x20 0x6C - 0x65 0x61 0x72 0x6E 0x65 0x64 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x74 0x72 0x69 - 0x63 0x6B 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x63 0x61 0x6E 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x2E 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x52 0x6F - 0x78 0x61 0x6E 0x6E 0x65 0x20 0x66 0x69 - 0x67 0x68 0x74 0x20 0x61 0x20 0x6D 0x69 - 0x64 0x67 0x65 0x74 0x20 0x77 0x68 0x6F - 0x20 0x63 0x61 0x6E 0x20 0x66 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x3F 0x20 0x20 0x43 0x61 - 0x6E 0x20 0x74 0x68 0x61 0x74 0x20 0x73 - 0x74 0x75 0x66 0x66 0x20 0x73 0x68 0x65 - 0x20 0x70 0x75 0x74 0x73 0x20 0x6F 0x6E - 0x20 0x68 0x65 0x72 0x20 0x68 0x61 0x69 - 0x72 0x20 0x68 0x65 0x6C 0x70 0x20 0x68 - 0x65 0x72 0x20 0x6F 0x75 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23816 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A8= 0x00015380 - - -CHUNK('HTOP', _help_48544F50_A8, "") -SUBFILE -#line 23824 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A8, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_99=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_99=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_99, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_99=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_99, 0x0) - BYTE - 0x03 0x03 0x55 0x6E 0x64 0x65 0x72 0x63 - 0x6F 0x76 0x65 0x72 0x20 0x43 0x6F 0x70 - 0x0D 0x0A 0x49 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x72 0x6F 0x6C - 0x65 0x20 0x52 0x6F 0x78 0x61 0x6E 0x6E - 0x65 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2C - 0x20 0x73 0x68 0x65 0x92 0x64 0x20 0x62 - 0x65 0x20 0x61 0x6E 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x63 0x6F 0x76 0x65 0x72 0x20 - 0x63 0x6F 0x70 0x20 0x61 0x63 0x74 0x69 - 0x6E 0x67 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x61 0x20 0x77 0x61 0x69 0x74 0x72 0x65 - 0x73 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x77 0x62 0x6F 0x79 - 0x20 0x63 0x61 0x66 0xE9 0x2E 0x20 0x20 - 0x48 0x65 0x72 0x20 0x6D 0x69 0x73 0x73 - 0x69 0x6F 0x6E 0x20 0x69 0x73 0x20 0x74 - 0x6F 0x20 0x63 0x61 0x74 0x63 0x68 0x20 - 0x5A 0x61 0x63 0x6B 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x70 0x70 0x65 - 0x72 0x79 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 0x73 - 0x74 0x6F 0x6C 0x65 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x74 0x20 - 0x65 0x61 0x72 0x74 0x68 0x20 0x61 0x6E - 0x64 0x20 0x69 0x73 0x20 0x6B 0x65 0x65 - 0x70 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x74 0x65 0x6E - 0x74 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x43 0x68 0x69 - 0x6E 0x65 0x73 0x65 0x20 0x72 0x65 0x73 - 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 0x2E - 0x20 0x20 0x57 0x69 0x74 0x68 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x64 0x61 0x79 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x61 0x72 0x74 0x68 0x20 - 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x74 0x65 0x6E 0x74 0x2C 0x20 - 0x69 0x74 0x20 0x73 0x68 0x72 0x69 0x6E - 0x6B 0x73 0x20 0x61 0x20 0x6C 0x69 0x74 - 0x74 0x6C 0x65 0x20 0x6D 0x6F 0x72 0x65 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x65 0x6E 0x74 - 0x20 0x69 0x73 0x20 0x67 0x75 0x61 0x72 - 0x64 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x68 0x69 0x73 0x73 0x69 0x6E 0x67 - 0x20 0x63 0x61 0x74 0x20 0x74 0x68 0x61 - 0x74 0x20 0x67 0x72 0x6F 0x77 0x73 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x68 0x75 0x67 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x20 0x77 - 0x68 0x65 0x6E 0x65 0x76 0x65 0x72 0x20 - 0x69 0x74 0x20 0x73 0x65 0x65 0x73 0x20 - 0x61 0x20 0x63 0x6F 0x70 0x2C 0x20 0x65 - 0x73 0x70 0x65 0x63 0x69 0x61 0x6C 0x6C - 0x79 0x20 0x61 0x20 0x43 0x68 0x69 0x6E - 0x65 0x73 0x65 0x20 0x66 0x65 0x6D 0x61 - 0x6C 0x65 0x20 0x63 0x6F 0x70 0x2E 0x20 - 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x52 0x6F 0x78 0x61 0x6E 0x6E - 0x65 0x20 0x63 0x61 0x70 0x74 0x75 0x72 - 0x65 0x20 0x5A 0x61 0x63 0x6B 0x3F 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x73 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x70 0x61 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x74 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x65 - 0x61 0x72 0x74 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23953 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A9= 0x00015381 - - -CHUNK('HTOP', _help_48544F50_A9, "") -SUBFILE -#line 23961 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A9, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AF=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AF=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8B 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AF=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AF, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x63 0x6B 0x61 0x74 - 0x6F 0x6F 0x20 0x57 0x61 0x74 0x63 0x68 - 0x65 0x72 0x0D 0x0A 0x54 0x68 0x61 0x6E - 0x6B 0x73 0x20 0x74 0x6F 0x20 0x6B 0x61 - 0x72 0x61 0x74 0x65 0x2C 0x20 0x52 0x6F - 0x78 0x61 0x6E 0x6E 0x65 0x20 0x69 0x73 - 0x20 0x69 0x6E 0x20 0x67 0x72 0x65 0x61 - 0x74 0x20 0x73 0x68 0x61 0x70 0x65 0x2E - 0x20 0x20 0x53 0x68 0x65 0x27 0x64 0x20 - 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x73 0x73 0x20 0x61 0x6C 0x6F - 0x6E 0x67 0x20 0x68 0x65 0x72 0x20 0x68 - 0x65 0x61 0x6C 0x74 0x68 0x79 0x20 0x68 - 0x61 0x62 0x69 0x74 0x73 0x20 0x74 0x6F - 0x20 0x61 0x75 0x64 0x69 0x65 0x6E 0x63 - 0x65 0x73 0x20 0x65 0x76 0x65 0x72 0x79 - 0x77 0x68 0x65 0x72 0x65 0x20 0x62 0x79 - 0x20 0x73 0x74 0x61 0x72 0x72 0x69 0x6E - 0x67 0x20 0x61 0x73 0x20 0x61 0x20 0x6D - 0x61 0x6C 0x6C 0x20 0x77 0x61 0x6C 0x6B - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6F 0x63 0x6B 0x61 0x74 0x6F 0x6F 0x20 - 0x77 0x61 0x74 0x63 0x68 0x65 0x72 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x6D 0x61 - 0x6C 0x6C 0x20 0x69 0x73 0x20 0x64 0x65 - 0x73 0x65 0x72 0x74 0x65 0x64 0x2C 0x20 - 0x73 0x6F 0x20 0x65 0x76 0x65 0x72 0x79 - 0x20 0x6D 0x6F 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x52 0x6F 0x78 0x61 0x6E 0x6E 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x70 0x65 0x65 0x64 0x2D 0x77 0x61 0x6C - 0x6B 0x20 0x70 0x61 0x73 0x74 0x20 0x74 - 0x68 0x65 0x20 0x73 0x68 0x6F 0x70 0x73 - 0x2C 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x65 0x20 0x6B 0x61 0x72 0x61 0x74 - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x72 0x65 0x74 0x65 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x77 0x61 0x74 0x63 0x68 0x20 - 0x63 0x6F 0x63 0x6B 0x61 0x74 0x6F 0x6F - 0x73 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x6C - 0x61 0x74 0x65 0x73 0x74 0x20 0x61 0x6E - 0x64 0x20 0x67 0x72 0x65 0x61 0x74 0x65 - 0x73 0x74 0x20 0x72 0x6F 0x63 0x6B 0x65 - 0x74 0x20 0x69 0x73 0x20 0x6F 0x6E 0x20 - 0x64 0x69 0x73 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x6D - 0x61 0x6C 0x6C 0x2E 0x20 0x52 0x6F 0x78 - 0x61 0x6E 0x6E 0x65 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x62 0x6F - 0x72 0x72 0x6F 0x77 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 - 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x68 0x65 0x72 0x20 0x68 0x69 0x70 0x70 - 0x69 0x65 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x20 0x4A 0x65 0x72 0x65 0x6D 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x72 0x61 - 0x73 0x68 0x65 0x64 0x20 0x68 0x69 0x73 - 0x20 0x68 0x6F 0x74 0x2D 0x61 0x69 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E - 0x20 0x73 0x6F 0x6D 0x65 0x77 0x68 0x65 - 0x72 0x65 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x61 0x20 0x64 0x65 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x63 0x61 0x62 0x69 0x6E - 0x20 0x69 0x6E 0x20 0x61 0x20 0x72 0x65 - 0x6D 0x6F 0x74 0x65 0x20 0x6D 0x6F 0x75 - 0x6E 0x74 0x61 0x69 0x6E 0x20 0x6A 0x75 - 0x6E 0x67 0x6C 0x65 0x2E 0x20 0x20 0x4A - 0x65 0x72 0x65 0x6D 0x79 0x20 0x68 0x61 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x73 - 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 0x6F - 0x75 0x74 0x20 0x72 0x61 0x64 0x69 0x6F - 0x20 0x73 0x69 0x67 0x6E 0x61 0x6C 0x73 - 0x20 0x66 0x6F 0x72 0x20 0x77 0x65 0x65 - 0x6B 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x68 - 0x61 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 - 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x61 0x72 0x65 - 0x61 0x2E 0x20 0x0D 0x0A 0x52 0x6F 0x78 - 0x61 0x6E 0x6E 0x65 0x20 0x69 0x73 0x20 - 0x61 0x6C 0x72 0x65 0x61 0x64 0x79 0x20 - 0x61 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x63 0x68 0x61 0x6D 0x70 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x66 0x65 0x73 0x73 0x69 - 0x6F 0x6E 0x61 0x6C 0x20 0x6D 0x61 0x6C - 0x6C 0x20 0x77 0x61 0x6C 0x6B 0x65 0x72 - 0x97 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x62 0x65 0x63 0x6F 0x6D 0x65 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x66 0x65 0x6D 0x61 0x6C - 0x65 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 - 0x20 0x72 0x65 0x73 0x63 0x75 0x65 0x20 - 0x70 0x65 0x72 0x73 0x6F 0x6E 0x3F 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x68 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x72 0x6F 0x63 0x6B 0x65 - 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 0x6A - 0x75 0x6E 0x67 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x4A 0x65 - 0x72 0x65 0x6D 0x79 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 24127 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AA= 0x00015382 - - -CHUNK('HTOP', _help_48544F50_AA, "") -SUBFILE -#line 24135 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AA, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A9, 0x0) - BYTE - 0x03 0x03 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x0D 0x0A 0x53 0x61 0x6C 0x76 0x61 - 0x64 0x6F 0x72 0x20 0x68 0x61 0x73 0x20 - 0x61 0x20 0x73 0x65 0x63 0x72 0x65 0x74 - 0x2E 0x20 0x48 0x65 0x20 0x63 0x61 0x6E - 0x20 0x66 0x6C 0x79 0x2E 0x20 0x4E 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x73 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x20 0x6B 0x6E 0x6F 0x77 0x2E 0x20 - 0x48 0x65 0x20 0x64 0x69 0x64 0x6E 0x92 - 0x74 0x20 0x65 0x76 0x65 0x6E 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 0x31 - 0x30 0x20 0x61 0x6E 0x64 0x20 0x66 0x65 - 0x6C 0x6C 0x20 0x6F 0x66 0x66 0x20 0x61 - 0x20 0x62 0x75 0x6E 0x6B 0x20 0x62 0x65 - 0x64 0x2E 0x20 0x48 0x65 0x20 0x77 0x61 - 0x73 0x20 0x73 0x6F 0x20 0x61 0x66 0x72 - 0x61 0x69 0x64 0x20 0x6F 0x66 0x20 0x68 - 0x69 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x66 0x6C 0x6F 0x6F 0x72 - 0x2C 0x20 0x68 0x65 0x20 0x93 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x94 0x20 0x68 - 0x69 0x6D 0x73 0x65 0x6C 0x66 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x66 0x6C 0x79 0x69 - 0x6E 0x67 0x2E 0x20 0x54 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x70 0x72 0x6F - 0x62 0x6C 0x65 0x6D 0x20 0x69 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x53 0x61 0x6C - 0x76 0x61 0x64 0x6F 0x72 0x20 0x63 0x61 - 0x6E 0x92 0x74 0x20 0x66 0x6C 0x79 0x20 - 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 0x74 - 0x97 0x73 0x6F 0x20 0x68 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x6F 0x20 0x70 0x72 - 0x61 0x63 0x74 0x69 0x63 0x65 0x20 0x64 - 0x75 0x72 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x64 0x61 0x79 0x2E 0x20 0x4F - 0x6E 0x65 0x20 0x6D 0x6F 0x72 0x6E 0x69 - 0x6E 0x67 0x2C 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x70 0x72 0x61 0x63 0x74 - 0x69 0x63 0x69 0x6E 0x67 0x20 0x68 0x69 - 0x73 0x20 0x73 0x6C 0x6F 0x77 0x20 0x66 - 0x6C 0x69 0x67 0x68 0x74 0x20 0x70 0x61 - 0x74 0x74 0x65 0x72 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x66 0x6C 0x65 0x77 0x20 0x6F - 0x76 0x65 0x72 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x65 0x74 0x2E - 0x20 0x54 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x73 0x20 0x63 0x61 0x75 - 0x67 0x68 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x64 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 - 0x20 0x6D 0x6F 0x74 0x69 0x6F 0x6E 0x65 - 0x64 0x20 0x68 0x69 0x6D 0x20 0x64 0x6F - 0x77 0x6E 0x2E 0x20 0x0D 0x0A 0x4E 0x65 - 0x65 0x64 0x6C 0x65 0x73 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x2C 0x20 0x53 - 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 0x20 - 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 0x53 - 0x70 0x61 0x69 0x6E 0x92 0x73 0x20 0x6E - 0x65 0x77 0x65 0x73 0x74 0x20 0x6B 0x69 - 0x64 0x20 0x73 0x74 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 24260 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AB= 0x00015383 - - -CHUNK('HTOP', _help_48544F50_AB, "") -SUBFILE -#line 24268 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AB, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x5A 0x6F - 0x72 0x72 0x6F 0x0D 0x0A 0x53 0x61 0x6C - 0x76 0x61 0x64 0x6F 0x72 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x68 0x65 0x92 - 0x64 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x5A - 0x6F 0x72 0x72 0x6F 0x20 0x54 0x72 0x69 - 0x63 0x6B 0x2D 0x6F 0x72 0x2D 0x54 0x72 - 0x65 0x61 0x74 0x65 0x72 0x2E 0x20 0x48 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x6F 0x6F 0x6B 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x61 0x6E 0x79 0x20 0x6F 0x72 - 0x64 0x69 0x6E 0x61 0x72 0x79 0x20 0x74 - 0x65 0x65 0x6E 0x61 0x67 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x5A 0x6F 0x72 - 0x72 0x6F 0x20 0x63 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x2C 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x77 0x61 0x73 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x2E 0x20 0x54 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x92 0x64 0x20 0x66 - 0x6C 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x72 0x65 0x73 0x63 0x75 0x65 - 0x2E 0x20 0x42 0x75 0x74 0x20 0x77 0x68 - 0x61 0x74 0x20 0x53 0x61 0x6C 0x76 0x61 - 0x64 0x6F 0x72 0x20 0x68 0x61 0x73 0x6E - 0x92 0x74 0x20 0x74 0x68 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 - 0x20 0x69 0x73 0x20 0x74 0x68 0x65 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x64 0x61 0x79 0x2E 0x20 0x53 0x6F 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x67 0x65 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x65 0x65 - 0x70 0x79 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x72 0x65 0x65 0x74 - 0x2C 0x20 0x6E 0x69 0x67 0x68 0x74 0x20 - 0x69 0x73 0x20 0x62 0x65 0x67 0x69 0x6E - 0x6E 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x61 0x73 0x20 - 0x68 0x65 0x20 0x68 0x65 0x61 0x72 0x73 - 0x20 0x63 0x72 0x69 0x65 0x73 0x20 0x63 - 0x6F 0x6D 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x6F 0x66 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x2E 0x20 0x4A 0x75 0x73 0x74 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x6F 0x72 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x72 0x65 0x61 0x6B 0x73 - 0x20 0x6F 0x70 0x65 0x6E 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x61 0x20 0x72 0x61 0x74 - 0x20 0x72 0x75 0x6E 0x73 0x20 0x74 0x6F - 0x77 0x61 0x72 0x64 0x20 0x68 0x69 0x6D - 0x2E 0x20 0x0D 0x0A 0x57 0x69 0x6C 0x6C - 0x20 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F - 0x72 0x20 0x66 0x69 0x67 0x68 0x74 0x20 - 0x6F 0x66 0x66 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x74 0x20 0x77 0x69 0x74 0x68 - 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x74 0x6F 0x20 0x73 0x61 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x69 0x6C 0x64 0x72 0x65 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6F 0x66 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x64 0x61 0x72 0x6B 0x3F 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 - 0x73 0x6F 0x6D 0x65 0x68 0x6F 0x77 0x20 - 0x6F 0x76 0x65 0x72 0x63 0x6F 0x6D 0x65 - 0x20 0x68 0x69 0x73 0x20 0x70 0x72 0x6F - 0x62 0x6C 0x65 0x6D 0x20 0x77 0x69 0x74 - 0x68 0x20 0x6E 0x69 0x67 0x68 0x74 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x3F -ENDCHUNK - - -ENDCHUNK -#line 24408 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AC= 0x00015384 - - -CHUNK('HTOP', _help_48544F50_AC, "") -SUBFILE -#line 24416 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AC, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AB=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AB=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AB=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AB, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6D 0x62 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x4B 0x69 0x64 0x73 0x92 0x20 0x4D 0x79 - 0x73 0x74 0x65 0x72 0x79 0x20 0x43 0x6C - 0x75 0x62 0x0D 0x0A 0x53 0x61 0x6C 0x76 - 0x61 0x64 0x6F 0x72 0x20 0x68 0x61 0x73 - 0x20 0x73 0x65 0x65 0x6E 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x4D 0x79 - 0x73 0x74 0x65 0x72 0x79 0x20 0x43 0x6C - 0x75 0x62 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 - 0x73 0x74 0x61 0x72 0x72 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x20 0x6F 0x6E 0x65 0x2E - 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x6C 0x65 0x61 0x64 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6C 0x75 0x62 0x20 - 0x69 0x6E 0x20 0x66 0x69 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x70 - 0x65 0x72 0x73 0x6F 0x6E 0x20 0x77 0x68 - 0x6F 0x20 0x6B 0x6E 0x65 0x65 0x6C 0x73 - 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6C 0x6F 0x63 - 0x6B 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x73 0x71 0x75 0x61 0x72 0x65 0x20 - 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x6A 0x75 0x6D - 0x70 0x73 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x61 0x72 0x65 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x2E 0x20 - 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 - 0x20 0x73 0x65 0x65 0x73 0x20 0x68 0x69 - 0x6D 0x73 0x65 0x6C 0x66 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 - 0x64 0x73 0x20 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x77 0x61 0x69 0x74 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x65 0x6C 0x69 0x6E 0x67 - 0x20 0x70 0x65 0x72 0x73 0x6F 0x6E 0x20 - 0x74 0x6F 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x2E 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x61 0x20 0x67 0x75 0x79 0x20 0x69 0x6E - 0x20 0x62 0x61 0x6E 0x64 0x61 0x67 0x65 - 0x73 0x20 0x73 0x6E 0x65 0x61 0x6B 0x73 - 0x20 0x75 0x70 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6C 0x6F 0x63 0x6B - 0x2E 0x20 0x54 0x68 0x65 0x20 0x6B 0x69 - 0x64 0x73 0x20 0x6A 0x75 0x6D 0x70 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x69 0x72 - 0x20 0x66 0x65 0x65 0x74 0x20 0x61 0x6E - 0x64 0x20 0x72 0x75 0x6E 0x20 0x74 0x6F - 0x20 0x63 0x61 0x70 0x74 0x75 0x72 0x65 - 0x20 0x68 0x69 0x6D 0x2E 0x20 0x42 0x75 - 0x74 0x20 0x73 0x75 0x64 0x64 0x65 0x6E - 0x6C 0x79 0x20 0x74 0x68 0x65 0x20 0x67 - 0x75 0x79 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x73 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x61 0x20 0x62 0x61 0x72 - 0x6B 0x69 0x6E 0x67 0x20 0x64 0x6F 0x67 - 0x20 0x74 0x68 0x61 0x74 0x20 0x72 0x75 - 0x6E 0x73 0x20 0x61 0x77 0x61 0x79 0x20 - 0x73 0x63 0x61 0x72 0x65 0x64 0x2E 0x20 - 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 - 0x65 0x76 0x65 0x72 0x20 0x74 0x72 0x61 - 0x70 0x20 0x74 0x68 0x65 0x20 0x64 0x6F - 0x67 0x20 0x61 0x6E 0x64 0x20 0x74 0x72 - 0x61 0x6E 0x73 0x66 0x6F 0x72 0x6D 0x20 - 0x68 0x69 0x6D 0x20 0x62 0x61 0x63 0x6B - 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 24549 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AD= 0x00015385 - - -CHUNK('HTOP', _help_48544F50_AD, "") -SUBFILE -#line 24557 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AD, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AC=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AC=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AC=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AC, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x42 0x6F - 0x79 0x0D 0x0A 0x53 0x61 0x6C 0x76 0x61 - 0x64 0x6F 0x72 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x69 0x6E 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x63 - 0x61 0x76 0x65 0x2D 0x62 0x6F 0x79 0x2C - 0x20 0x62 0x75 0x74 0x20 0x61 0x20 0x63 - 0x61 0x76 0x65 0x20 0x62 0x6F 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x6B 0x6E 0x6F 0x77 - 0x73 0x20 0x65 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x53 0x61 0x6C - 0x76 0x61 0x64 0x6F 0x72 0x20 0x6B 0x6E - 0x6F 0x77 0x73 0x20 0x74 0x6F 0x64 0x61 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x75 0x73 - 0x65 0x73 0x20 0x69 0x74 0x20 0x74 0x6F - 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F - 0x72 0x6D 0x20 0x68 0x69 0x73 0x74 0x6F - 0x72 0x79 0x2E 0x20 0x49 0x66 0x20 0x74 - 0x68 0x65 0x79 0x20 0x6B 0x6E 0x65 0x77 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x77 0x68 - 0x61 0x74 0x20 0x77 0x65 0x20 0x6B 0x6E - 0x6F 0x77 0x20 0x6E 0x6F 0x77 0x2C 0x20 - 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x2C - 0x20 0x77 0x65 0x92 0x64 0x20 0x62 0x65 - 0x20 0x6D 0x75 0x63 0x68 0x20 0x66 0x75 - 0x72 0x74 0x68 0x65 0x72 0x20 0x61 0x6C - 0x6F 0x6E 0x67 0x20 0x69 0x6E 0x20 0x6C - 0x69 0x66 0x65 0x2E 0x20 0x46 0x6F 0x72 - 0x20 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 - 0x2C 0x20 0x53 0x61 0x6C 0x76 0x61 0x64 - 0x6F 0x72 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x69 0x6E 0x74 0x72 0x6F 0x64 0x75 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x72 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x6C 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x74 0x68 0x65 0x79 - 0x20 0x68 0x61 0x64 0x6E 0x92 0x74 0x20 - 0x65 0x76 0x65 0x6E 0x20 0x69 0x6E 0x76 - 0x65 0x6E 0x74 0x65 0x64 0x20 0x74 0x68 - 0x65 0x20 0x77 0x68 0x65 0x65 0x6C 0x20 - 0x79 0x65 0x74 0x2E 0x20 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x73 0x20 0x67 0x6F 0x20 0x77 0x72 0x6F - 0x6E 0x67 0x2E 0x20 0x49 0x6E 0x73 0x74 - 0x65 0x61 0x64 0x20 0x6F 0x66 0x20 0x65 - 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x68 0x61 - 0x70 0x70 0x79 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x6E 0x6F 0x77 0x6C 0x65 0x64 0x67 - 0x65 0x20 0x53 0x61 0x6C 0x76 0x61 0x64 - 0x6F 0x72 0x20 0x62 0x72 0x69 0x6E 0x67 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x79 0x20 - 0x61 0x72 0x65 0x20 0x73 0x63 0x61 0x72 - 0x65 0x64 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x6D 0x2E 0x20 0x54 0x68 0x65 0x79 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x20 0x68 0x65 - 0x20 0x69 0x73 0x20 0x65 0x76 0x69 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x70 0x6C 0x6F - 0x74 0x20 0x74 0x6F 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x20 0x68 0x69 0x6D 0x2E - 0x20 0x0D 0x0A 0x54 0x68 0x65 0x20 0x63 - 0x72 0x6F 0x77 0x64 0x20 0x63 0x69 0x72 - 0x63 0x6C 0x65 0x73 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x53 0x61 0x6C 0x76 - 0x61 0x64 0x6F 0x72 0x97 0x68 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x66 0x72 0x65 - 0x65 0x3F 0x20 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x6E 0x76 0x69 0x6E 0x63 0x65 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F 0x20 - 0x61 0x63 0x63 0x65 0x70 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x6F 0x20 0x6F 0x66 - 0x66 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 24698 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AE= 0x00015386 - - -CHUNK('HTOP', _help_48544F50_AE, "") -SUBFILE -#line 24706 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AE, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC9 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C4, 0x0) - BYTE - 0x03 0x03 0x70 0x72 0x6F 0x66 0x65 0x73 - 0x73 0x69 0x6F 0x6E 0x61 0x6C 0x0D 0x0A - 0x53 0x65 0x62 0x61 0x73 0x74 0x69 0x61 - 0x6E 0x20 0x69 0x73 0x20 0x70 0x72 0x65 - 0x74 0x74 0x79 0x20 0x73 0x75 0x72 0x65 - 0x20 0x68 0x65 0x92 0x6C 0x6C 0x20 0x62 - 0x65 0x63 0x6F 0x6D 0x65 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x66 0x65 0x73 0x73 0x69 - 0x6F 0x6E 0x61 0x6C 0x20 0x62 0x61 0x73 - 0x65 0x62 0x61 0x6C 0x6C 0x20 0x73 0x74 - 0x61 0x72 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x20 0x68 0x61 - 0x73 0x20 0x61 0x20 0x73 0x65 0x63 0x72 - 0x65 0x74 0x2E 0x20 0x20 0x57 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x74 0x75 0x72 - 0x6E 0x73 0x20 0x68 0x69 0x73 0x20 0x68 - 0x61 0x74 0x20 0x73 0x69 0x64 0x65 0x77 - 0x61 0x79 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x67 0x72 0x69 0x74 0x73 0x20 0x68 0x65 - 0x20 0x74 0x65 0x65 0x74 0x68 0x20 0x6A - 0x75 0x73 0x74 0x20 0x73 0x6F 0x2C 0x20 - 0x68 0x65 0x20 0x68 0x69 0x74 0x73 0x20 - 0x61 0x20 0x68 0x6F 0x6D 0x65 0x20 0x72 - 0x75 0x6E 0x20 0x39 0x20 0x74 0x69 0x6D - 0x65 0x73 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x31 0x30 0x2E 0x20 0x20 0x41 - 0x6E 0x64 0x2C 0x20 0x61 0x73 0x20 0x61 - 0x6E 0x20 0x6F 0x75 0x74 0x66 0x69 0x65 - 0x6C 0x64 0x65 0x72 0x2C 0x20 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x70 0x69 - 0x6E 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x66 0x61 0x73 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 0x6A - 0x75 0x6D 0x70 0x20 0x73 0x6F 0x20 0x68 - 0x69 0x67 0x68 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6E 0x6F 0x20 0x68 0x69 0x67 0x68 - 0x20 0x66 0x6C 0x79 0x20 0x62 0x61 0x6C - 0x6C 0x20 0x69 0x73 0x20 0x6F 0x75 0x74 - 0x73 0x69 0x64 0x65 0x20 0x68 0x69 0x73 - 0x20 0x67 0x72 0x61 0x73 0x70 0x2E 0x20 - 0x20 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x67 0x75 - 0x79 0x73 0x20 0x77 0x65 0x72 0x65 0x20 - 0x62 0x61 0x74 0x74 0x69 0x6E 0x67 0x20 - 0x62 0x61 0x6C 0x6C 0x73 0x20 0x61 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x68 0x69 0x74 0x20 0x61 - 0x20 0x62 0x61 0x6C 0x6C 0x20 0x63 0x6C - 0x65 0x61 0x6E 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x77 0x69 0x6E 0x64 0x6F 0x77 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x74 0x68 - 0x65 0x61 0x74 0x65 0x72 0x20 0x61 0x63 - 0x72 0x6F 0x73 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x72 0x65 0x65 0x74 0x2E - 0x20 0x0D 0x0A 0x49 0x6E 0x73 0x74 0x65 - 0x61 0x64 0x20 0x6F 0x66 0x20 0x72 0x75 - 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x61 0x77 - 0x61 0x79 0x2C 0x20 0x53 0x65 0x62 0x61 - 0x73 0x74 0x69 0x61 0x6E 0x20 0x77 0x61 - 0x6C 0x6B 0x65 0x64 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x75 0x70 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x65 - 0x61 0x74 0x65 0x72 0x20 0x6D 0x61 0x6E - 0x61 0x67 0x65 0x72 0x2C 0x20 0x61 0x70 - 0x6F 0x6C 0x6F 0x67 0x69 0x7A 0x65 0x64 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6F 0x66 - 0x66 0x65 0x72 0x65 0x64 0x20 0x74 0x6F - 0x20 0x70 0x61 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x64 0x61 0x6D - 0x61 0x67 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x61 0x6E 0x67 0x72 0x79 0x20 - 0x6D 0x61 0x6E 0x61 0x67 0x65 0x72 0x20 - 0x63 0x61 0x6C 0x6D 0x65 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x61 0x20 0x77 0x65 0x69 0x72 0x64 - 0x2D 0x6C 0x6F 0x6F 0x6B 0x69 0x6E 0x67 - 0x20 0x67 0x75 0x79 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x68 0x69 0x6D 0x20 - 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x61 0x6C 0x6B 0x20 0x74 - 0x6F 0x20 0x53 0x65 0x62 0x61 0x73 0x74 - 0x69 0x61 0x6E 0x2E 0x20 0x54 0x75 0x72 - 0x6E 0x73 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 - 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x93 - 0x42 0x69 0x67 0x20 0x4C 0x65 0x61 0x67 - 0x75 0x65 0x2E 0x94 0x20 0x20 0x48 0x65 - 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x67 0x72 0x65 0x61 - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 24871 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AF= 0x00015387 - - -CHUNK('HTOP', _help_48544F50_AF, "") -SUBFILE -#line 24879 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AF, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x61 0x6E - 0x20 0x41 0x6C 0x69 0x65 0x6E 0x0D 0x0A - 0x53 0x65 0x62 0x61 0x73 0x74 0x69 0x61 - 0x6E 0x20 0x68 0x61 0x73 0x20 0x77 0x61 - 0x74 0x63 0x68 0x65 0x64 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x53 0x74 - 0x61 0x72 0x20 0x54 0x72 0x65 0x6B 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x20 0x6C 0x69 0x6B 0x65 0x20 0x53 - 0x70 0x6F 0x63 0x6B 0x2E 0x20 0x48 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x68 - 0x61 0x76 0x65 0x20 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x20 0x70 0x6F 0x77 0x65 - 0x72 0x73 0x2C 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 0x61 - 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x61 0x6D 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 - 0x20 0x65 0x6C 0x73 0x65 0x27 0x73 0x20 - 0x62 0x6F 0x64 0x79 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x77 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x20 0x68 0x69 - 0x6D 0x73 0x65 0x6C 0x66 0x20 0x73 0x6F - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x73 0x70 0x79 - 0x20 0x6F 0x6E 0x20 0x65 0x6E 0x65 0x6D - 0x79 0x20 0x61 0x6C 0x69 0x65 0x6E 0x73 - 0x2E 0x20 0x0D 0x0A 0x53 0x65 0x62 0x61 - 0x73 0x74 0x69 0x61 0x6E 0x20 0x73 0x65 - 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x70 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x70 0x61 - 0x63 0x65 0x20 0x61 0x6C 0x69 0x65 0x6E - 0x20 0x77 0x68 0x6F 0x20 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x74 0x6F 0x20 0x65 0x61 - 0x72 0x74 0x68 0x2E 0x20 0x48 0x65 0x27 - 0x73 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 - 0x61 0x6E 0x20 0x65 0x76 0x69 0x6C 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x20 0x73 0x65 - 0x6E 0x74 0x20 0x62 0x79 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x65 0x6D 0x79 0x20 - 0x74 0x6F 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x79 0x20 0x73 0x74 0x6F - 0x72 0x65 0x73 0x20 0x6F 0x6E 0x20 0x65 - 0x61 0x72 0x74 0x68 0x2E 0x20 0x54 0x68 - 0x65 0x20 0x72 0x6F 0x62 0x6F 0x74 0x20 - 0x77 0x61 0x6C 0x6B 0x73 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 - 0x6C 0x6F 0x6F 0x6B 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x6F 0x79 0x20 - 0x73 0x74 0x6F 0x72 0x65 0x73 0x2E 0x20 - 0x49 0x74 0x20 0x73 0x70 0x6F 0x74 0x73 - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x69 0x6E 0x20 0x68 0x69 - 0x73 0x20 0x61 0x6C 0x69 0x65 0x6E 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6B 0x6E 0x6F - 0x77 0x73 0x20 0x68 0x65 0x92 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x6F 0x70 0x20 0x69 0x74 0x2E 0x20 - 0x0D 0x0A 0x53 0x65 0x62 0x61 0x73 0x74 - 0x69 0x61 0x6E 0x20 0x68 0x61 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x20 0x68 0x69 0x6D - 0x73 0x65 0x6C 0x66 0x20 0x71 0x75 0x69 - 0x63 0x6B 0x6C 0x79 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x77 0x68 0x6F 0x20 0x73 0x68 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x65 0x20 - 0x62 0x65 0x63 0x6F 0x6D 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x64 0x65 0x73 0x74 - 0x72 0x6F 0x79 0x69 0x6E 0x67 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x79 0x20 0x73 0x74 0x6F 0x72 0x65 - 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 25032 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B0= 0x00015388 - - -CHUNK('HTOP', _help_48544F50_B0, "") -SUBFILE -#line 25040 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AA=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AA=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AA=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AA, 0x0) - BYTE - 0x03 0x03 0x50 0x69 0x7A 0x7A 0x61 0x20 - 0x44 0x65 0x6C 0x69 0x76 0x65 0x72 0x79 - 0x20 0x42 0x6F 0x79 0x0D 0x0A 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 - 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x70 0x69 0x7A 0x7A 0x61 - 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 0x72 - 0x79 0x20 0x62 0x6F 0x79 0x20 0x77 0x68 - 0x6F 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 - 0x72 0x73 0x20 0x70 0x69 0x7A 0x7A 0x61 - 0x20 0x66 0x6F 0x72 0x20 0x64 0x69 0x6E - 0x6E 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 - 0x73 0x20 0x66 0x6F 0x72 0x20 0x64 0x65 - 0x73 0x73 0x65 0x72 0x74 0x2E 0x20 0x20 - 0x48 0x65 0x27 0x64 0x20 0x68 0x61 0x76 - 0x65 0x20 0x74 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x6F 0x6C 0x20 0x54 0x65 0x78 0x61 - 0x73 0x20 0x43 0x61 0x64 0x69 0x6C 0x6C - 0x61 0x63 0x20 0x77 0x69 0x74 0x68 0x20 - 0x6C 0x6F 0x6E 0x67 0x68 0x6F 0x72 0x6E - 0x73 0x2C 0x20 0x73 0x6F 0x20 0x69 0x66 - 0x20 0x68 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x73 0x74 0x75 0x63 0x6B 0x20 0x69 0x6E - 0x20 0x74 0x72 0x61 0x66 0x66 0x69 0x63 - 0x2C 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x68 0x6F 0x72 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x77 0x61 0x79 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x2E 0x20 0x0D 0x0A - 0x42 0x75 0x74 0x20 0x77 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x69 - 0x73 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 - 0x72 0x20 0x70 0x69 0x7A 0x7A 0x61 0x20 - 0x61 0x6E 0x64 0x20 0x64 0x6F 0x75 0x67 - 0x68 0x6E 0x75 0x74 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 - 0x6F 0x72 0x61 0x74 0x6F 0x72 0x79 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x61 0x74 0x20 - 0x73 0x69 0x6C 0x6C 0x79 0x20 0x67 0x72 - 0x65 0x65 0x6E 0x20 0x73 0x63 0x69 0x65 - 0x6E 0x74 0x69 0x73 0x74 0x2C 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x2E 0x20 0x20 0x45 - 0x76 0x65 0x6E 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x6C - 0x61 0x62 0x20 0x69 0x73 0x20 0x67 0x75 - 0x61 0x72 0x64 0x65 0x64 0x20 0x62 0x79 - 0x20 0x66 0x69 0x6C 0x74 0x68 0x79 0x20 - 0x72 0x61 0x74 0x73 0x2C 0x20 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x67 0x69 - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x64 - 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x74 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x67 0x65 0x74 0x20 0x70 0x61 0x73 - 0x74 0x20 0x74 0x68 0x65 0x6D 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x66 0x69 0x6E - 0x64 0x20 0x57 0x69 0x6C 0x6C 0x79 0x92 - 0x73 0x20 0x70 0x6F 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x68 0x61 0x74 0x20 0x69 0x73 - 0x20 0x74 0x75 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x77 0x6F 0x6F 0x64 0x65 - 0x6E 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x73 0x2E 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x66 - 0x69 0x6E 0x64 0x73 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6F 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x74 0x72 0x69 0x63 0x6B 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x65 0x6C 0x6C 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6D 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x6F 0x20 0x74 0x75 0x72 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x62 0x61 0x63 0x6B 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x6B 0x69 0x64 0x73 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x68 0x61 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x68 0x69 0x64 0x64 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D - 0x2D 0x70 0x6F 0x6C 0x65 0x20 0x6B 0x69 - 0x64 0x73 0x3F 0x20 0x20 0x41 0x6E 0x64 - 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x53 0x65 0x62 0x61 0x73 0x74 - 0x69 0x61 0x6E 0x20 0x67 0x65 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x65 0x63 0x72 - 0x65 0x74 0x20 0x72 0x65 0x6D 0x65 0x64 - 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 25201 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B1= 0x00015389 - - -CHUNK('HTOP', _help_48544F50_B1, "") -SUBFILE -#line 25209 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B1, 0x0) - BYTE - 0x03 0x03 0x42 0x6F 0x79 0x20 0x53 0x63 - 0x6F 0x75 0x74 0x0D 0x0A 0x53 0x65 0x62 - 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x20 0x62 0x6F 0x79 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x2E 0x20 0x20 - 0x4E 0x6F 0x74 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x6E 0x79 0x20 0x62 0x6F 0x79 - 0x20 0x73 0x63 0x6F 0x75 0x74 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x20 0x73 0x75 - 0x70 0x65 0x72 0x20 0x62 0x6F 0x79 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x75 0x73 0x65 0x73 0x20 0x68 - 0x69 0x73 0x20 0x73 0x70 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 0x20 - 0x73 0x6B 0x69 0x6C 0x6C 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x73 0x63 0x75 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 - 0x63 0x6F 0x75 0x74 0x73 0x2E 0x20 0x20 - 0x49 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x20 0x70 0x61 - 0x63 0x6B 0x20 0x61 0x72 0x65 0x20 0x6F - 0x75 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x6E 0x74 0x61 - 0x69 0x6E 0x73 0x20 0x6A 0x75 0x6D 0x70 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x6E 0x20 0x61 0x69 0x72 0x70 - 0x6C 0x61 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x70 0x61 0x72 0x61 0x63 0x68 - 0x75 0x74 0x69 0x6E 0x67 0x20 0x62 0x61 - 0x64 0x67 0x65 0x73 0x2E 0x20 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x6C 0x61 0x6E 0x64 0x73 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x74 0x63 0x68 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x73 0x20 0x63 0x6F 0x6D 0x65 0x20 - 0x64 0x6F 0x77 0x6E 0x2E 0x20 0x42 0x75 - 0x74 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 - 0x6C 0x20 0x6A 0x75 0x73 0x74 0x20 0x73 - 0x74 0x6F 0x70 0x73 0x20 0x69 0x6E 0x20 - 0x6D 0x69 0x64 0x2D 0x61 0x69 0x72 0x21 - 0x20 0x0D 0x0A 0x43 0x61 0x6E 0x20 0x53 - 0x65 0x62 0x61 0x73 0x74 0x69 0x61 0x6E - 0x20 0x73 0x70 0x69 0x6E 0x20 0x66 0x61 - 0x73 0x74 0x20 0x65 0x6E 0x6F 0x75 0x67 - 0x68 0x20 0x61 0x6E 0x64 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x68 0x69 0x67 0x68 0x20 - 0x65 0x6E 0x6F 0x75 0x67 0x68 0x20 0x74 - 0x6F 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 - 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x65 0x61 0x72 0x74 0x68 0x3F 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x69 0x66 0x20 - 0x74 0x68 0x65 0x79 0x20 0x62 0x6F 0x74 - 0x68 0x20 0x67 0x65 0x74 0x20 0x73 0x74 - 0x75 0x63 0x6B 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 25335 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B2= 0x0001538a - - -CHUNK('HTOP', _help_48544F50_B2, "") -SUBFILE -#line 25343 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B2, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_72=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_72=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_72=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x31 -ENDCHUNK - - -ENDCHUNK -#line 25406 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B3= 0x0001538b - - -CHUNK('HTOP', _help_48544F50_B3, "") -SUBFILE -#line 25414 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B3, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B3, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x32 -ENDCHUNK - - -ENDCHUNK -#line 25477 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B4= 0x0001538c - - -CHUNK('HTOP', _help_48544F50_B4, "") -SUBFILE -#line 25485 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B4, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B4, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x33 -ENDCHUNK - - -ENDCHUNK -#line 25548 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B5= 0x0001538d - - -CHUNK('HTOP', _help_48544F50_B5, "") -SUBFILE -#line 25556 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B5, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B5, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x34 -ENDCHUNK - - -ENDCHUNK -#line 25619 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B6= 0x0001538e - - -CHUNK('HTOP', _help_48544F50_B6, "") -SUBFILE -#line 25627 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B6, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x62 0x75 0x72 0x67 0x65 0x72 - 0x73 0x0D 0x0A 0x49 0x74 0x20 0x61 0x6C - 0x6C 0x20 0x73 0x74 0x61 0x72 0x74 0x65 - 0x64 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x6B 0x65 0x64 0x20 - 0x66 0x6F 0x72 0x20 0x73 0x74 0x61 0x72 - 0x74 0x65 0x64 0x20 0x6C 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x62 0x75 0x73 0x69 0x6E - 0x65 0x73 0x73 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x61 0x20 0x70 0x69 - 0x7A 0x7A 0x61 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x6D 0x6F 0x76 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x61 0x63 0x72 0x6F 0x73 - 0x73 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x72 0x65 0x65 0x74 0x2E 0x20 0x20 0x43 - 0x72 0x6F 0x77 0x64 0x73 0x20 0x77 0x65 - 0x72 0x65 0x20 0x67 0x61 0x74 0x68 0x65 - 0x72 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x69 0x7A 0x7A 0x61 0x20 0x6D 0x61 - 0x6B 0x65 0x72 0x73 0x20 0x74 0x6F 0x73 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x73 0x70 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 - 0x69 0x7A 0x7A 0x61 0x20 0x64 0x6F 0x75 - 0x67 0x68 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x53 0x6C 0x61 0x6D 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x6E 0x92 0x74 0x20 0x6C - 0x6F 0x73 0x65 0x20 0x68 0x69 0x73 0x20 - 0x6A 0x6F 0x62 0x3B 0x20 0x69 0x74 0x20 - 0x77 0x61 0x73 0x20 0x68 0x65 0x6C 0x70 - 0x69 0x6E 0x67 0x20 0x68 0x69 0x6D 0x20 - 0x70 0x61 0x79 0x20 0x68 0x69 0x73 0x20 - 0x77 0x61 0x79 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x21 0x20 0x0D 0x0A 0x53 0x6F - 0x20 0x68 0x65 0x20 0x74 0x6F 0x6F 0x6B - 0x20 0x68 0x69 0x73 0x20 0x73 0x70 0x61 - 0x74 0x75 0x6C 0x61 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x70 0x72 0x61 0x63 - 0x74 0x69 0x63 0x65 0x20 0x66 0x6C 0x69 - 0x70 0x70 0x69 0x6E 0x67 0x20 0x62 0x75 - 0x72 0x67 0x65 0x72 0x73 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x64 0x69 0x64 0x20 0x73 - 0x69 0x6E 0x67 0x6C 0x65 0x20 0x66 0x6C - 0x69 0x70 0x73 0x2C 0x20 0x64 0x6F 0x75 - 0x62 0x6C 0x65 0x20 0x66 0x6C 0x69 0x70 - 0x73 0x2C 0x20 0x74 0x72 0x69 0x70 0x6C - 0x65 0x20 0x66 0x6C 0x69 0x70 0x73 0x2C - 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 0x2D - 0x74 0x68 0x65 0x2D 0x73 0x68 0x6F 0x75 - 0x6C 0x64 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x69 0x6E 0x74 0x6F 0x2D 0x74 0x68 - 0x65 0x2D 0x6F 0x74 0x68 0x65 0x72 0x2D - 0x68 0x61 0x6E 0x64 0x20 0x66 0x6C 0x69 - 0x70 0x73 0x2C 0x20 0x62 0x65 0x74 0x77 - 0x65 0x65 0x6E 0x2D 0x74 0x68 0x65 0x2D - 0x6C 0x65 0x67 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x70 0x69 0x72 0x61 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x73 0x70 0x69 0x6E - 0x20 0x66 0x6C 0x69 0x70 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x77 0x61 0x73 0x20 - 0x61 0x6E 0x20 0x69 0x6E 0x73 0x74 0x61 - 0x6E 0x74 0x20 0x73 0x75 0x63 0x63 0x65 - 0x73 0x73 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x77 0x61 0x73 0x20 0x66 0x65 0x61 0x74 - 0x75 0x72 0x65 0x64 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x6F 0x63 0x61 - 0x6C 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x61 0x6C 0x2C 0x20 0x6E 0x65 - 0x77 0x73 0x20 0x61 0x73 0x20 0x61 0x6E - 0x20 0x61 0x74 0x74 0x72 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x6E 0x6F 0x74 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x6D 0x69 - 0x73 0x73 0x65 0x64 0x2E 0x20 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x77 0x61 0x73 0x20 - 0x70 0x72 0x61 0x63 0x74 0x69 0x63 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x6F 0x72 0x6C - 0x64 0x2D 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x20 0x65 0x76 0x65 0x72 0x20 - 0x67 0x6F 0x74 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x66 0x69 0x6C 0x6D 0x21 -ENDCHUNK - - -ENDCHUNK -#line 25775 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B7= 0x0001538f - - -CHUNK('HTOP', _help_48544F50_B7, "") -SUBFILE -#line 25783 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B7, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3D 0x02 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B7, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x74 0x65 0x72 0x6D - 0x69 0x6E 0x61 0x74 0x6F 0x72 0x0D 0x0A - 0x53 0x6C 0x61 0x6D 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x69 0x6B 0x65 - 0x73 0x20 0x62 0x75 0x67 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x68 0x61 0x73 0x20 - 0x61 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x67 0x73 - 0x20 0x68 0x65 0x20 0x66 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x73 0x74 0x61 0x75 0x72 - 0x61 0x6E 0x74 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6B 0x65 0x64 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x65 0x65 0x6C 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x69 - 0x73 0x20 0x70 0x65 0x72 0x66 0x65 0x63 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x61 0x6E 0x20 0x65 0x78 0x74 - 0x65 0x72 0x6D 0x69 0x6E 0x61 0x74 0x6F - 0x72 0x2E 0x20 0x20 0x49 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x66 0x75 0x6E 0x20 0x69 0x66 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x77 0x65 0x72 0x65 - 0x20 0x61 0x6E 0x20 0x65 0x78 0x74 0x65 - 0x72 0x6D 0x69 0x6E 0x61 0x74 0x6F 0x72 - 0x20 0x77 0x68 0x6F 0x20 0x69 0x73 0x20 - 0x61 0x73 0x6B 0x65 0x64 0x20 0x62 0x79 - 0x20 0x74 0x68 0x65 0x20 0x70 0x6F 0x6C - 0x69 0x63 0x65 0x20 0x74 0x6F 0x20 0x67 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x6F - 0x66 0x20 0x61 0x6E 0x20 0x65 0x76 0x69 - 0x6C 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x64 0x65 0x76 0x65 0x6C - 0x6F 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x66 0x6F 0x72 0x6D 0x75 0x6C 0x61 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x62 0x75 - 0x67 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x67 0x69 0x61 0x6E 0x74 0x20 0x62 0x75 - 0x67 0x73 0x21 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x76 0x69 0x6C 0x20 - 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x20 0x69 0x73 0x20 0x6F 0x66 0x66 - 0x20 0x69 0x6E 0x20 0x73 0x65 0x61 0x72 - 0x63 0x68 0x20 0x6F 0x66 0x20 0x70 0x6F - 0x69 0x73 0x6F 0x6E 0x6F 0x75 0x73 0x20 - 0x69 0x6E 0x73 0x65 0x63 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x65 0x73 0x74 0x20 - 0x68 0x69 0x73 0x20 0x66 0x6F 0x72 0x6D - 0x75 0x6C 0x61 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x6C 0x61 0x6D 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x68 0x61 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x61 0x76 0x65 - 0x6C 0x20 0x74 0x6F 0x20 0x61 0x20 0x66 - 0x61 0x72 0x61 0x77 0x61 0x79 0x20 0x76 - 0x69 0x6C 0x6C 0x61 0x67 0x65 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x20 0x20 0x0D - 0x0A 0x4F 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x2C 0x20 0x68 0x6F - 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x66 0x6F 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x6E 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x3F 0x20 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 25923 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B8= 0x00015390 - - -CHUNK('HTOP', _help_48544F50_B8, "") -SUBFILE -#line 25931 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B8, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x72 0x67 0x65 0x72 - 0x20 0x46 0x6C 0x69 0x70 0x70 0x65 0x72 - 0x0D 0x0A 0x48 0x65 0x72 0x65 0x20 0x69 - 0x73 0x20 0x61 0x20 0x70 0x61 0x72 0x74 - 0x20 0x74 0x68 0x61 0x74 0x20 0x53 0x6C - 0x61 0x6D 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x73 0x69 0x6E 0x6B 0x20 0x68 0x69 0x73 - 0x20 0x74 0x65 0x65 0x74 0x68 0x20 0x69 - 0x6E 0x74 0x6F 0x2C 0x20 0x62 0x65 0x63 - 0x61 0x75 0x73 0x65 0x20 0x68 0x65 0x20 - 0x68 0x61 0x73 0x20 0x73 0x75 0x63 0x68 - 0x20 0x74 0x61 0x6C 0x65 0x6E 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x66 0x6C 0x69 0x70 - 0x70 0x69 0x6E 0x67 0x20 0x62 0x75 0x72 - 0x67 0x65 0x72 0x73 0x2E 0x20 0x20 0x41 - 0x6E 0x64 0x20 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x75 0x73 0x65 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x20 0x6C - 0x69 0x66 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x69 0x6E 0x73 0x70 0x69 0x72 0x61 0x74 - 0x69 0x6F 0x6E 0x21 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x68 - 0x61 0x70 0x70 0x65 0x6E 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6F 0x6B 0x73 0x20 0x61 0x63 - 0x72 0x6F 0x73 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x72 0x65 0x65 0x74 0x20 - 0x67 0x65 0x74 0x20 0x6A 0x65 0x61 0x6C - 0x6F 0x75 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x6D 0x65 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x68 0x69 0x6D 0x3F 0x20 - 0x20 0x57 0x69 0x6C 0x6C 0x20 0x68 0x65 - 0x20 0x68 0x61 0x76 0x65 0x20 0x74 0x6F - 0x20 0x68 0x69 0x64 0x65 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x68 - 0x69 0x73 0x20 0x61 0x75 0x6E 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x68 0x75 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x74 0x72 0x6F 0x70 0x69 0x63 0x73 0x3F - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x61 - 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 0x65 - 0x73 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6B 0x73 0x20 0x69 0x6E 0x20 - 0x68 0x65 0x72 0x20 0x72 0x65 0x73 0x74 - 0x61 0x75 0x72 0x61 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x68 0x65 0x20 0x74 - 0x65 0x6C 0x6C 0x73 0x20 0x68 0x69 0x6D - 0x20 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 - 0x73 0x65 0x63 0x72 0x65 0x74 0x20 0x69 - 0x6E 0x67 0x72 0x65 0x64 0x69 0x65 0x6E - 0x74 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x63 0x61 0x76 0x65 0x20 0x6E 0x65 0x61 - 0x72 0x62 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 26048 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B9= 0x00015391 - - -CHUNK('HTOP', _help_48544F50_B9, "") -SUBFILE -#line 26056 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B9, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC3 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B8, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x6F 0x63 0x6F 0x64 - 0x69 0x6C 0x65 0x20 0x54 0x72 0x61 0x69 - 0x6E 0x65 0x72 0x0D 0x0A 0x53 0x6C 0x61 - 0x6D 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x69 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 - 0x72 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x70 0x6C 0x61 0x79 - 0x73 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x63 0x72 0x6F 0x63 0x6F 0x64 0x69 0x6C - 0x65 0x20 0x74 0x72 0x61 0x69 0x6E 0x65 - 0x72 0x2E 0x20 0x20 0x48 0x65 0x92 0x73 - 0x20 0x62 0x65 0x65 0x6E 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x66 0x65 0x6C 0x6C 0x6F 0x77 0x20 - 0x61 0x6E 0x69 0x6D 0x61 0x6C 0x20 0x74 - 0x72 0x61 0x69 0x6E 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x69 0x74 0x79 - 0x20 0x61 0x6E 0x64 0x20 0x67 0x69 0x76 - 0x65 0x20 0x61 0x20 0x6C 0x65 0x63 0x74 - 0x75 0x72 0x65 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x65 0x61 0x76 0x65 0x73 0x20 - 0x68 0x69 0x73 0x20 0x68 0x75 0x74 0x2C - 0x20 0x67 0x65 0x74 0x73 0x20 0x6F 0x6E - 0x20 0x61 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x61 0x72 - 0x72 0x69 0x76 0x65 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x63 0x69 0x74 - 0x79 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x73 0x65 0x65 0x73 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x6F 0x74 - 0x61 0x6C 0x6C 0x79 0x20 0x61 0x6D 0x61 - 0x7A 0x65 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x6C 0x69 0x76 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x72 0x6F 0x70 0x69 - 0x63 0x73 0x20 0x66 0x6F 0x72 0x20 0x73 - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x2E 0x20 - 0x20 0x41 0x66 0x74 0x65 0x72 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x61 0x6C 0x6D - 0x6F 0x73 0x74 0x20 0x72 0x75 0x6E 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x62 0x79 0x20 - 0x61 0x20 0x72 0x6F 0x61 0x64 0x20 0x72 - 0x61 0x63 0x65 0x2C 0x20 0x74 0x77 0x6F - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x69 0x63 - 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 0x6D - 0x65 0x6E 0x20 0x61 0x72 0x72 0x65 0x73 - 0x74 0x20 0x68 0x69 0x6D 0x20 0x66 0x6F - 0x72 0x20 0x6F 0x62 0x73 0x74 0x72 0x75 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x74 0x72 - 0x61 0x66 0x66 0x69 0x63 0x20 0x61 0x6E - 0x64 0x20 0x74 0x65 0x6C 0x6C 0x20 0x68 - 0x69 0x6D 0x20 0x74 0x6F 0x20 0x77 0x61 - 0x69 0x74 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x20 0x73 0x71 0x75 0x61 - 0x64 0x20 0x63 0x61 0x72 0x2E 0x20 0x20 - 0x0D 0x0A 0x57 0x68 0x69 0x6C 0x65 0x20 - 0x53 0x6C 0x61 0x6D 0x20 0x69 0x73 0x20 - 0x77 0x61 0x69 0x74 0x69 0x6E 0x67 0x2C - 0x20 0x61 0x20 0x6D 0x61 0x6E 0x20 0x77 - 0x69 0x74 0x68 0x20 0x64 0x79 0x6E 0x61 - 0x6D 0x69 0x74 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x70 0x6F 0x63 0x6B - 0x65 0x74 0x20 0x72 0x75 0x6E 0x73 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x72 0x21 0x20 - 0x0D 0x0A 0x53 0x6C 0x61 0x6D 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x69 0x66 0x20 0x68 - 0x65 0x20 0x73 0x68 0x6F 0x75 0x6C 0x64 - 0x20 0x72 0x75 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x61 0x63 0x65 0x20 0x66 0x75 - 0x72 0x74 0x68 0x65 0x72 0x20 0x70 0x6F - 0x6C 0x69 0x63 0x65 0x20 0x63 0x68 0x61 - 0x72 0x67 0x65 0x73 0x20 0x6F 0x72 0x20 - 0x73 0x74 0x61 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x72 0x69 0x73 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x63 0x68 0x61 0x6E 0x63 0x65 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x79 0x6E 0x61 0x6D 0x69 - 0x74 0x65 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x64 0x65 0x21 - 0x20 0x20 0x20 0x57 0x68 0x61 0x74 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 - 0x64 0x6F 0x3F 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 26206 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BA= 0x00015392 - - -CHUNK('HTOP', _help_48544F50_BA, "") -SUBFILE -#line 26214 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BA, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x74 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x73 0x0D 0x0A 0x41 0x66 0x74 0x65 - 0x72 0x20 0x73 0x65 0x65 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x73 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x61 0x6C 0x6C 0x79 0x20 0x65 0x76 - 0x65 0x72 0x79 0x20 0x64 0x61 0x79 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x6C - 0x69 0x66 0x65 0x2C 0x20 0x54 0x69 0x6D - 0x6F 0x74 0x68 0x79 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x76 - 0x69 0x73 0x69 0x74 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 - 0x74 0x68 0x65 0x79 0x20 0x63 0x61 0x6D - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x27 0x74 - 0x20 0x67 0x6F 0x20 0x65 0x76 0x65 0x72 - 0x79 0x77 0x68 0x65 0x72 0x65 0x20 0x61 - 0x74 0x20 0x6F 0x6E 0x63 0x65 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x65 0x64 0x20 0x77 0x61 - 0x74 0x63 0x68 0x69 0x6E 0x67 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x20 0x74 0x6F - 0x20 0x6C 0x65 0x61 0x72 0x6E 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x61 0x72 0x74 0x73 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6C 0x64 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x77 0x61 0x74 0x63 0x68 - 0x65 0x64 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x20 0x64 0x61 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x31 0x30 0x20 0x79 0x65 0x61 0x72 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 0x72 - 0x6F 0x77 0x2E 0x20 0x20 0x54 0x68 0x61 - 0x74 0x27 0x73 0x20 0x61 0x20 0x6C 0x6F - 0x74 0x20 0x6F 0x66 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x73 0x2E 0x0D 0x0A 0x48 0x65 - 0x20 0x65 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x6F 0x76 0x65 - 0x64 0x20 0x6D 0x69 0x6D 0x69 0x63 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x73 0x6F 0x20 0x67 0x6F 0x6F 0x64 0x20 - 0x61 0x74 0x20 0x74 0x68 0x69 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x6F 0x6E 0x63 - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x77 - 0x61 0x72 0x64 0x2D 0x77 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x4D 0x63 0x5A - 0x65 0x65 0x20 0x6D 0x69 0x73 0x74 0x6F - 0x6F 0x6B 0x20 0x68 0x69 0x6D 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x70 0x6F 0x70 - 0x75 0x6C 0x61 0x72 0x20 0x47 0x72 0x65 - 0x65 0x6B 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x54 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 - 0x77 0x61 0x73 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x70 0x72 0x65 0x74 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x2C 0x20 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x77 0x20 0x74 0x68 0x61 - 0x74 0x20 0x54 0x69 0x6D 0x6F 0x74 0x68 - 0x79 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x70 0x65 0x72 0x66 0x65 - 0x63 0x74 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x66 0x69 0x6C 0x6D 0x2C 0x20 0x93 0x47 - 0x72 0x65 0x65 0x6B 0x20 0x54 0x6F 0x75 - 0x72 0x69 0x73 0x74 0x20 0x54 0x72 0x61 - 0x70 0x70 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x4B 0x61 0x6E 0x73 0x61 0x73 0x2E 0x94 - 0x20 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 26351 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BB= 0x00015393 - - -CHUNK('HTOP', _help_48544F50_BB, "") -SUBFILE -#line 26359 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BB, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BB=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BB=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BB=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BB, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x6F 0x6F 0x6B 0x20 - 0x53 0x6C 0x65 0x75 0x74 0x68 0x0D 0x0A - 0x54 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x67 0x68 0x6F 0x73 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x97 0x65 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x69 0x74 0x2C - 0x20 0x62 0x75 0x74 0x20 0x6E 0x6F 0x20 - 0x6F 0x6E 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x70 0x72 0x6F 0x76 0x65 0x20 0x69 0x74 - 0x2E 0x20 0x20 0x41 0x74 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x74 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 0x70 - 0x74 0x75 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x67 0x68 0x6F 0x73 0x74 0x20 0x6F - 0x6E 0x20 0x66 0x69 0x6C 0x6D 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x74 0x72 0x69 - 0x65 0x64 0x2C 0x20 0x68 0x65 0x20 0x66 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 0x61 - 0x74 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x20 0x67 0x68 0x6F 0x73 - 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x6E 0x27 0x74 0x20 - 0x73 0x65 0x65 0x20 0x69 0x74 0x2E 0x20 - 0x20 0x49 0x74 0x20 0x77 0x61 0x73 0x20 - 0x69 0x6E 0x76 0x69 0x73 0x69 0x62 0x6C - 0x65 0x21 0x0D 0x0A 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x67 0x68 0x6F 0x73 - 0x74 0x20 0x66 0x6C 0x6F 0x61 0x74 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x6C 0x63 0x6F 0x6E 0x79 0x20 - 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x61 0x76 0x65 - 0x79 0x61 0x72 0x64 0x20 0x62 0x65 0x6C - 0x6F 0x77 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x67 0x68 - 0x6F 0x73 0x74 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x68 0x69 0x6D 0x20 - 0x69 0x74 0x73 0x20 0x6E 0x61 0x6D 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x61 0x72 0x20 0x74 0x68 0x65 0x20 0x67 - 0x68 0x6F 0x73 0x74 0x27 0x73 0x20 0x63 - 0x68 0x69 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x6C 0x61 0x75 0x67 0x68 0x2C 0x20 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x72 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x67 0x68 0x6F 0x73 0x74 0x20 - 0x69 0x73 0x6E 0x27 0x74 0x20 0x61 0x20 - 0x66 0x69 0x67 0x6D 0x65 0x6E 0x74 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x69 - 0x6D 0x61 0x67 0x69 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x54 0x69 0x6D 0x6F 0x74 - 0x68 0x79 0x20 0x6C 0x65 0x61 0x72 0x6E - 0x20 0x74 0x68 0x65 0x20 0x67 0x68 0x6F - 0x73 0x74 0x27 0x73 0x20 0x6E 0x61 0x6D - 0x65 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 - 0x6F 0x76 0x65 0x20 0x6F 0x6E 0x63 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x67 0x68 - 0x6F 0x73 0x74 0x20 0x69 0x73 0x20 0x72 - 0x65 0x61 0x6C 0x3F 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 26495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BC= 0x00015394 - - -CHUNK('HTOP', _help_48544F50_BC, "") -SUBFILE -#line 26503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BC, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BC=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BC=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BC=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BC, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x70 0x6F 0x72 0x74 - 0x65 0x72 0x0D 0x0A 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x69 0x6D 0x61 0x67 - 0x69 0x6E 0x65 0x73 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x63 0x6F 0x6F 0x6C 0x20 0x54 - 0x56 0x20 0x6E 0x65 0x77 0x73 0x20 0x72 - 0x65 0x70 0x6F 0x72 0x74 0x65 0x72 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x74 0x68 0x69 0x65 - 0x76 0x65 0x73 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x65 0x72 0x65 0x20 0x73 0x74 0x65 - 0x61 0x6C 0x69 0x6E 0x67 0x20 0x70 0x75 - 0x72 0x73 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x63 0x75 0x73 0x74 0x6F 0x6D - 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x73 0x74 0x20 0x64 - 0x6F 0x77 0x6E 0x74 0x6F 0x77 0x6E 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x73 0x2E 0x20 0x20 0x41 0x6E - 0x64 0x20 0x68 0x65 0x27 0x64 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x74 0x20 0x6E - 0x69 0x67 0x68 0x74 0x2C 0x20 0x68 0x69 - 0x64 0x69 0x6E 0x67 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x64 0x75 0x6D 0x70 0x73 0x74 0x65 0x72 - 0x20 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x69 - 0x65 0x76 0x65 0x73 0x20 0x70 0x6C 0x61 - 0x6E 0x6E 0x69 0x6E 0x67 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x69 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x54 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 - 0x64 0x69 0x64 0x6E 0x92 0x74 0x20 0x70 - 0x6C 0x61 0x6E 0x20 0x66 0x6F 0x72 0x2E - 0x20 0x20 0x4A 0x75 0x73 0x74 0x20 0x61 - 0x73 0x20 0x68 0x65 0x20 0x69 0x73 0x20 - 0x6C 0x69 0x73 0x74 0x65 0x6E 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x74 0x68 0x69 0x65 0x76 0x65 0x73 - 0x20 0x74 0x61 0x6C 0x6B 0x2C 0x20 0x61 - 0x20 0x72 0x61 0x74 0x20 0x6C 0x69 0x76 - 0x69 0x6E 0x67 0x20 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x75 0x6D 0x70 - 0x73 0x74 0x65 0x72 0x20 0x61 0x74 0x74 - 0x61 0x63 0x6B 0x73 0x20 0x54 0x69 0x6D - 0x6F 0x74 0x68 0x79 0x2E 0x20 0x20 0x48 - 0x6F 0x77 0x20 0x63 0x61 0x6E 0x20 0x54 - 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 0x6B - 0x65 0x65 0x70 0x20 0x71 0x75 0x69 0x65 - 0x74 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 - 0x69 0x6C 0x6C 0x20 0x64 0x65 0x66 0x65 - 0x6E 0x64 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x61 0x67 0x61 0x69 0x6E - 0x73 0x74 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x72 0x74 0x79 0x20 0x72 0x61 0x74 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 26626 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BD= 0x00015395 - - -CHUNK('HTOP', _help_48544F50_BD, "") -SUBFILE -#line 26634 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BD, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BD=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BD=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BD=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BD, 0x0) - BYTE - 0x03 0x03 0x4E 0x61 0x74 0x75 0x72 0x61 - 0x6C 0x69 0x73 0x74 0x0D 0x0A 0x54 0x69 - 0x6D 0x6F 0x74 0x68 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x73 0x20 0x61 - 0x20 0x6E 0x61 0x74 0x75 0x72 0x61 0x6C - 0x69 0x73 0x74 0x2C 0x20 0x73 0x6F 0x6D - 0x65 0x6F 0x6E 0x65 0x20 0x77 0x68 0x6F - 0x20 0x73 0x74 0x75 0x64 0x69 0x65 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 0x6F - 0x74 0x65 0x63 0x74 0x73 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x61 0x74 0x20 0x69 0x66 0x20 0x68 - 0x65 0x20 0x73 0x74 0x75 0x6D 0x62 0x6C - 0x65 0x64 0x20 0x75 0x70 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x70 0x65 0x6E - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x20 0x61 - 0x6E 0x20 0x6F 0x6C 0x64 0x2C 0x20 0x6C - 0x6F 0x73 0x74 0x20 0x63 0x61 0x76 0x65 - 0x3F 0x20 0x20 0x42 0x75 0x74 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x76 0x65 0x2C 0x20 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x62 0x75 0x6D 0x70 - 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 0x61 - 0x20 0x63 0x6C 0x61 0x79 0x20 0x77 0x61 - 0x74 0x65 0x72 0x20 0x6A 0x75 0x67 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x61 0x20 0x62 - 0x6C 0x75 0x65 0x20 0x73 0x6D 0x6F 0x6B - 0x65 0x20 0x65 0x6E 0x67 0x75 0x6C 0x66 - 0x73 0x20 0x68 0x69 0x6D 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x73 0x6D 0x6F 0x6B - 0x65 0x20 0x68 0x61 0x73 0x20 0x73 0x70 - 0x65 0x63 0x69 0x61 0x6C 0x2C 0x20 0x73 - 0x65 0x63 0x72 0x65 0x74 0x20 0x70 0x6F - 0x77 0x65 0x72 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x65 0x6E 0x61 0x62 0x6C 0x65 - 0x20 0x54 0x69 0x6D 0x6F 0x74 0x68 0x79 - 0x20 0x74 0x6F 0x20 0x66 0x6C 0x79 0x2E - 0x0D 0x0A 0x42 0x75 0x74 0x2C 0x20 0x6A - 0x75 0x73 0x74 0x20 0x74 0x68 0x65 0x6E - 0x2C 0x20 0x54 0x69 0x6D 0x6F 0x74 0x68 - 0x79 0x20 0x68 0x65 0x61 0x72 0x73 0x20 - 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 - 0x63 0x72 0x79 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x73 0x74 0x61 0x6E 0x63 0x65 0x2E - 0x20 0x20 0x49 0x74 0x92 0x73 0x20 0x63 - 0x6F 0x6D 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6C 0x64 0x20 0x77 0x6F 0x6F 0x64 0x65 - 0x6E 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x2E 0x20 0x20 0x53 0x6F 0x6D 0x65 0x6F - 0x6E 0x65 0x20 0x73 0x65 0x74 0x20 0x66 - 0x69 0x72 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x20 0x77 0x68 0x69 0x6C 0x65 0x20 - 0x61 0x20 0x63 0x68 0x69 0x6C 0x64 0x20 - 0x77 0x61 0x73 0x20 0x63 0x72 0x6F 0x73 - 0x73 0x69 0x6E 0x67 0x2E 0x20 0x20 0x43 - 0x61 0x6E 0x20 0x54 0x69 0x6D 0x6F 0x74 - 0x68 0x79 0x20 0x75 0x73 0x65 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x77 0x20 0x70 - 0x6F 0x77 0x65 0x72 0x73 0x20 0x74 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x68 0x69 0x6C 0x64 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x20 0x66 0x61 0x6C 0x6C 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 26766 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BE= 0x00015396 - - -CHUNK('HTOP', _help_48544F50_BE, "") -SUBFILE -#line 26774 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BE, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA8 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C3, 0x0) - BYTE - 0x03 0x03 0x66 0x69 0x6C 0x6D 0x0D 0x0A - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x68 0x65 0x61 0x72 0x64 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x77 0x61 0x79 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x69 0x74 0x20 0x69 0x6E 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x62 0x69 0x7A 0x20 0x77 - 0x61 0x73 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x72 - 0x69 0x67 0x68 0x74 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x2E 0x20 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x64 0x65 0x63 0x69 0x64 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 0x61 - 0x20 0x6A 0x6F 0x62 0x20 0x61 0x73 0x20 - 0x61 0x20 0x76 0x61 0x6C 0x65 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x70 0x61 0x72 - 0x6B 0x69 0x6E 0x67 0x20 0x6C 0x6F 0x74 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x43 0x61 0x6E 0x6E 0x65 0x73 0x20 0x46 - 0x69 0x6C 0x6D 0x20 0x46 0x65 0x73 0x74 - 0x69 0x76 0x61 0x6C 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x6E - 0x92 0x74 0x20 0x62 0x65 0x6C 0x69 0x65 - 0x76 0x65 0x20 0x69 0x74 0x97 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x73 0x65 0x20 - 0x73 0x74 0x61 0x72 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x6C 0x64 0x21 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x72 0x65 - 0x6D 0x65 0x6D 0x62 0x65 0x72 0x65 0x64 - 0x3A 0x20 0x22 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x77 0x61 0x79 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x69 0x74 0x20 0x69 0x6E 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x62 0x69 0x7A 0x2E 0x2E - 0x2E 0x22 0x20 0x20 0x44 0x69 0x6E 0x67 - 0x21 0x20 0x20 0x56 0x61 0x6C 0x65 0x6E - 0x74 0x69 0x6E 0x65 0x20 0x67 0x6F 0x74 - 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 0x72 - 0x65 0x66 0x75 0x6C 0x6C 0x79 0x20 0x70 - 0x61 0x72 0x6B 0x20 0x73 0x6F 0x6D 0x65 - 0x20 0x73 0x74 0x61 0x72 0x92 0x73 0x20 - 0x63 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x68 0x65 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x73 0x65 0x65 0x20 0x69 0x66 0x20 - 0x74 0x68 0x65 0x79 0x20 0x68 0x61 0x64 - 0x20 0x61 0x6E 0x79 0x20 0x6C 0x75 0x67 - 0x67 0x61 0x67 0x65 0x2E 0x20 0x20 0x49 - 0x66 0x20 0x74 0x68 0x65 0x79 0x20 0x64 - 0x69 0x64 0x2C 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 0x64 - 0x65 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x75 0x69 0x74 0x63 0x61 0x73 0x65 0x2E - 0x20 0x54 0x68 0x65 0x20 0x73 0x74 0x61 - 0x72 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x65 0x76 0x65 0x6E 0x74 0x75 0x61 0x6C - 0x6C 0x79 0x20 0x67 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x68 0x6F 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x6F 0x70 0x65 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x75 0x69 - 0x74 0x63 0x61 0x73 0x65 0x2E 0x20 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6F 0x70 0x20 0x6F 0x75 0x74 0x2C - 0x20 0x69 0x6E 0x74 0x72 0x6F 0x64 0x75 - 0x63 0x65 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x42 0x69 0x6E 0x67 0x6F 0x21 0x20 0x68 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6B 0x6E 0x6F 0x77 0x20 0x73 0x6F 0x6D - 0x65 0x6F 0x6E 0x65 0x20 0x69 0x6E 0x20 - 0x73 0x68 0x6F 0x77 0x20 0x62 0x69 0x7A - 0x2E 0x20 0x20 0x53 0x6F 0x6F 0x6E 0x20 - 0x68 0x65 0x92 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x73 0x74 0x61 0x72 0x21 0x20 - 0x0D 0x0A 0x57 0x65 0x6C 0x6C 0x2C 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 0x64 - 0x69 0x64 0x6E 0x92 0x74 0x20 0x71 0x75 - 0x69 0x74 0x65 0x20 0x67 0x6F 0x20 0x61 - 0x63 0x63 0x6F 0x72 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x6E - 0x2E 0x20 0x20 0x56 0x61 0x6C 0x65 0x6E - 0x74 0x69 0x6E 0x65 0x20 0x65 0x6E 0x64 - 0x65 0x64 0x20 0x75 0x70 0x20 0x61 0x74 - 0x20 0x61 0x20 0x73 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x69 0x72 0x70 0x6F 0x72 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x6F 0x73 0x74 0x20 - 0x6C 0x75 0x67 0x67 0x61 0x67 0x65 0x20 - 0x63 0x6F 0x75 0x6E 0x74 0x65 0x72 0x2E - 0x20 0x20 0x53 0x6F 0x6D 0x65 0x62 0x6F - 0x64 0x79 0x20 0x68 0x65 0x61 0x72 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x73 0x63 0x72 - 0x65 0x61 0x6D 0x69 0x6E 0x67 0x20 0x68 - 0x69 0x73 0x20 0x6C 0x75 0x6E 0x67 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x75 0x69 - 0x74 0x63 0x61 0x73 0x65 0x2E 0x20 0x20 - 0x42 0x79 0x20 0x63 0x6F 0x69 0x6E 0x63 - 0x69 0x64 0x65 0x6E 0x63 0x65 0x2C 0x20 - 0x74 0x68 0x61 0x74 0x20 0x93 0x73 0x6F - 0x6D 0x65 0x62 0x6F 0x64 0x79 0x94 0x20 - 0x77 0x61 0x73 0x20 0x61 0x20 0x68 0x6F - 0x74 0x20 0x66 0x69 0x6C 0x6D 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 - 0x62 0x79 0x20 0x74 0x68 0x65 0x20 0x6E - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 26954 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BF= 0x00015397 - - -CHUNK('HTOP', _help_48544F50_BF, "") -SUBFILE -#line 26962 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BF, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BF=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BF=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x15 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BF=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BF, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x6E 0x6F 0x79 0x69 - 0x6E 0x67 0x20 0x4E 0x65 0x69 0x67 0x68 - 0x62 0x6F 0x72 0x0D 0x0A 0x56 0x61 0x6C - 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x6F 0x76 - 0x65 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 0x6E - 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 0x6E - 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x20 0x6B 0x6E - 0x6F 0x77 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x79 0x70 0x65 0x20 0x77 0x68 0x6F - 0x20 0x73 0x68 0x6F 0x77 0x73 0x20 0x75 - 0x70 0x20 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x64 0x6F 0x6F 0x72 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x2E 0x20 0x20 0x57 0x68 - 0x6F 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x65 0x76 - 0x65 0x72 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x67 0x6F 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x69 0x74 0x79 0x2E 0x20 0x20 0x57 0x68 - 0x6F 0x20 0x65 0x61 0x74 0x73 0x20 0x64 - 0x69 0x6E 0x6E 0x65 0x72 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x6F 0x2E 0x20 - 0x20 0x54 0x68 0x61 0x74 0x92 0x73 0x20 - 0x69 0x74 0x21 0x20 0x59 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x66 0x65 0x64 0x20 0x75 - 0x70 0x21 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x6E 0x65 0x65 0x64 0x20 0x61 0x20 0x76 - 0x61 0x63 0x61 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x48 0x6F 0x77 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x72 0x65 0x6E 0x69 0x74 0x79 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6A 0x75 0x6E 0x67 0x6C 0x65 0x3F 0x20 - 0x20 0x4C 0x65 0x61 0x6E 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x61 0x6E 0x64 0x20 0x72 - 0x65 0x6C 0x61 0x78 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x2C 0x20 0x73 0x6F 0x6F 0x6E 0x20 - 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x73 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x62 0x65 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x20 0x6C 0x6F - 0x6F 0x6B 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x77 - 0x69 0x6E 0x64 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x61 0x64 0x6D 0x69 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x73 0x73 - 0x69 0x6E 0x67 0x20 0x73 0x63 0x65 0x6E - 0x65 0x72 0x79 0x2E 0x20 0x20 0x4F 0x68 - 0x20 0x6E 0x6F 0x21 0x20 0x20 0x49 0x73 - 0x20 0x74 0x68 0x69 0x73 0x20 0x70 0x6F - 0x73 0x73 0x69 0x62 0x6C 0x65 0x3F 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x6E - 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 0x6E - 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 0x20 - 0x63 0x61 0x6E 0x20 0x65 0x76 0x65 0x6E - 0x20 0x66 0x6C 0x79 0x21 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x63 0x61 0x6E 0x20 0x68 - 0x65 0x20 0x6C 0x61 0x6E 0x64 0x2E 0x2E - 0x2E 0x3F 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 27093 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C0= 0x00015398 - - -CHUNK('HTOP', _help_48544F50_C0, "") -SUBFILE -#line 27101 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C0, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x74 0x65 0x63 0x74 - 0x69 0x76 0x65 0x0D 0x0A 0x56 0x61 0x6C - 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 0x63 - 0x61 0x6E 0x92 0x74 0x20 0x77 0x61 0x69 - 0x74 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x20 0x64 0x65 0x74 0x65 - 0x63 0x74 0x69 0x76 0x65 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x64 0x65 0x74 0x65 - 0x63 0x74 0x69 0x76 0x65 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x69 0x73 - 0x20 0x73 0x70 0x65 0x63 0x69 0x61 0x6C - 0x2E 0x20 0x4E 0x6F 0x74 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x69 0x73 0x20 0x68 0x65 - 0x20 0x77 0x69 0x73 0x65 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x65 0x76 0x65 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x20 0x61 0x6C 0x73 0x6F 0x20 0x68 0x61 - 0x73 0x20 0x61 0x6E 0x20 0x69 0x6E 0x63 - 0x72 0x65 0x64 0x69 0x62 0x6C 0x65 0x20 - 0x70 0x6F 0x77 0x65 0x72 0x2E 0x20 0x20 - 0x4F 0x6E 0x63 0x65 0x20 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x61 0x20 - 0x63 0x6C 0x75 0x65 0x20 0x74 0x6F 0x20 - 0x61 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x2C 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F - 0x72 0x6D 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x68 0x75 0x6D 0x61 0x6E 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x2C 0x20 0x61 0x6E 0x20 - 0x61 0x6E 0x69 0x6D 0x61 0x6C 0x2C 0x20 - 0x6F 0x72 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2E 0x20 0x20 0x20 0x42 0x75 0x74 - 0x20 0x6F 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x69 0x73 0x20 0x74 0x72 0x61 0x6E - 0x73 0x66 0x6F 0x72 0x6D 0x65 0x64 0x2C - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x63 0x6F 0x6D - 0x65 0x20 0x62 0x61 0x63 0x6B 0x20 0x61 - 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C - 0x66 0x20 0x69 0x66 0x20 0x68 0x65 0x20 - 0x66 0x69 0x67 0x75 0x72 0x65 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x67 0x75 0x69 0x6C 0x74 - 0x79 0x2E 0x0D 0x0A 0x43 0x61 0x6E 0x20 - 0x68 0x65 0x20 0x73 0x6F 0x6C 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x69 - 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27215 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C1= 0x00015399 - - -CHUNK('HTOP', _help_48544F50_C1, "") -SUBFILE -#line 27223 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C1, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6F 0x64 0x6F 0x6F - 0x20 0x4D 0x61 0x6E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x61 0x72 0x65 - 0x20 0x74 0x69 0x72 0x65 0x64 0x20 0x6F - 0x66 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x74 0x72 0x65 0x61 0x74 0x65 0x64 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x61 0x20 0x6B - 0x69 0x64 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x63 0x6F 0x6D 0x65 0x20 0x61 0x20 - 0x67 0x72 0x6F 0x77 0x6E 0x2D 0x75 0x70 - 0x2C 0x20 0x73 0x65 0x65 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x74 0x68 0x65 0x20 0x56 0x6F 0x6F 0x64 - 0x6F 0x6F 0x20 0x4D 0x61 0x6E 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 - 0x6D 0x20 0x79 0x6F 0x75 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x6F 0x6C 0x65 0x73 0x74 0x20 0x70 - 0x65 0x72 0x73 0x6F 0x6E 0x20 0x6F 0x6E - 0x20 0x65 0x61 0x72 0x74 0x68 0x2E 0x20 - 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x67 0x72 0x6F 0x77 0x6E 0x2D - 0x75 0x70 0x73 0x3F 0x20 0x20 0x44 0x6F - 0x20 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 - 0x6E 0x65 0x92 0x73 0x20 0x70 0x6F 0x77 - 0x65 0x72 0x73 0x20 0x61 0x6C 0x73 0x6F - 0x20 0x61 0x66 0x66 0x65 0x63 0x74 0x20 - 0x74 0x68 0x65 0x6D 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27315 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C2= 0x0001539a - - -CHUNK('HTOP', _help_48544F50_C2, "") -SUBFILE -#line 27323 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C2, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x6F 0x70 0x65 0x72 0x61 0x20 - 0x73 0x69 0x6E 0x67 0x65 0x72 0x0D 0x0A - 0x56 0x65 0x6E 0x69 0x65 0x20 0x68 0x61 - 0x73 0x20 0x79 0x65 0x74 0x20 0x74 0x6F - 0x20 0x6C 0x61 0x6E 0x64 0x20 0x61 0x20 - 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x6A 0x6F 0x62 0x20 0x61 0x74 0x20 0x61 - 0x6E 0x20 0x6F 0x70 0x65 0x72 0x61 0x2E - 0x20 0x20 0x49 0x6E 0x73 0x74 0x65 0x61 - 0x64 0x2C 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x77 0x61 0x69 0x74 0x65 - 0x72 0x20 0x61 0x74 0x20 0x61 0x20 0x6C - 0x6F 0x63 0x61 0x6C 0x20 0x63 0x61 0x66 - 0x65 0x2E 0x20 0x20 0x56 0x65 0x6E 0x69 - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x73 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x66 0x65 0x2E 0x20 0x20 0x41 0x6E 0x64 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x73 0x69 0x6E 0x67 - 0x73 0x2C 0x20 0x63 0x75 0x73 0x74 0x6F - 0x6D 0x65 0x72 0x73 0x20 0x65 0x61 0x74 - 0x20 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x63 - 0x61 0x66 0x65 0x92 0x73 0x20 0x64 0x65 - 0x61 0x66 0x20 0x6F 0x77 0x6E 0x65 0x72 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x73 0x74 - 0x61 0x6E 0x64 0x20 0x77 0x68 0x79 0x20 - 0x67 0x75 0x65 0x73 0x74 0x73 0x20 0x6C - 0x65 0x61 0x76 0x65 0x20 0x73 0x6F 0x20 - 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 0x2E - 0x20 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x65 0x61 0x74 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x66 0x65 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x67 - 0x65 0x74 0x20 0x61 0x20 0x74 0x61 0x62 - 0x6C 0x65 0x2E 0x20 0x0D 0x0A 0x41 0x74 - 0x20 0x6C 0x75 0x6E 0x63 0x68 0x20 0x6F - 0x6E 0x65 0x20 0x64 0x61 0x79 0x2C 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x20 0x6F 0x75 0x74 0x20 0x73 - 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x67 0x72 0x65 0x65 0x74 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x2E 0x20 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x92 0x73 0x20 - 0x66 0x6C 0x69 0x6E 0x63 0x68 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x70 0x61 0x69 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 0x69 - 0x64 0x2C 0x20 0x93 0x59 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x73 0x74 0x20 0x73 0x69 0x6E - 0x67 0x65 0x72 0x20 0x49 0x92 0x76 0x65 - 0x20 0x65 0x76 0x65 0x72 0x20 0x68 0x65 - 0x61 0x72 0x64 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x6C 0x6F 0x6F - 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 - 0x20 0x76 0x61 0x6D 0x70 0x69 0x72 0x65 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x79 0x6F - 0x75 0x92 0x64 0x20 0x62 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x20 0x69 0x6E 0x20 - 0x6D 0x79 0x20 0x68 0x6F 0x72 0x72 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x2E 0x94 0x20 0x20 0x56 0x65 0x6E 0x69 - 0x65 0x20 0x66 0x69 0x6E 0x61 0x6C 0x6C - 0x79 0x20 0x68 0x61 0x64 0x20 0x61 0x20 - 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x63 0x61 0x72 0x65 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 27454 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C3= 0x0001539b - - -CHUNK('HTOP', _help_48544F50_C3, "") -SUBFILE -#line 27462 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C3, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C2, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x63 0x75 0x6C - 0x61 0x0D 0x0A 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x44 0x72 0x61 0x63 0x75 0x6C 0x61 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x69 0x76 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x66 0x6C 0x79 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x73 0x69 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x93 0x49 0x20 0x57 0x61 - 0x6E 0x74 0x20 0x54 0x6F 0x20 0x44 0x72 - 0x69 0x6E 0x6B 0x20 0x59 0x6F 0x75 0x72 - 0x20 0x42 0x6C 0x6F 0x6F 0x64 0x94 0x20 - 0x61 0x6E 0x64 0x20 0x93 0x53 0x75 0x6E - 0x73 0x68 0x69 0x6E 0x65 0x20 0x4F 0x6E - 0x20 0x4D 0x79 0x20 0x53 0x68 0x6F 0x75 - 0x6C 0x64 0x65 0x72 0x20 0x4D 0x61 0x6B - 0x65 0x73 0x20 0x4D 0x65 0x20 0x42 0x75 - 0x72 0x73 0x74 0x20 0x49 0x6E 0x74 0x6F - 0x20 0x46 0x6C 0x61 0x6D 0x65 0x73 0x2E - 0x94 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x69 0x73 0x20 0x6C 0x61 0x74 0x65 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x65 0x27 0x73 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x6B 0x69 0x63 0x6B - 0x65 0x64 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x54 0x6F - 0x20 0x72 0x61 0x69 0x73 0x65 0x20 0x6D - 0x6F 0x6E 0x65 0x79 0x2C 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x64 0x65 0x63 0x69 - 0x64 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x72 0x6F 0x77 0x20 0x61 0x20 0x63 - 0x68 0x61 0x72 0x69 0x74 0x79 0x20 0x6F - 0x70 0x65 0x72 0x61 0x20 0x63 0x6F 0x6E - 0x63 0x65 0x72 0x74 0x2C 0x20 0x73 0x74 - 0x61 0x72 0x72 0x69 0x6E 0x67 0x20 0x68 - 0x69 0x6D 0x73 0x65 0x6C 0x66 0x2C 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x65 0x6D 0x65 0x74 0x65 0x72 0x79 0x20 - 0x74 0x6F 0x20 0x72 0x61 0x69 0x73 0x65 - 0x20 0x6D 0x6F 0x6E 0x65 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x68 0x69 0x73 0x20 0x72 - 0x65 0x6E 0x74 0x2E 0x20 0x0D 0x0A 0x57 - 0x69 0x6C 0x6C 0x20 0x61 0x6E 0x79 0x6F - 0x6E 0x65 0x20 0x73 0x68 0x6F 0x77 0x20 - 0x75 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x6E 0x63 0x65 0x72 - 0x74 0x3F 0x20 0x20 0x57 0x69 0x6C 0x6C - 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 0x72 - 0x61 0x69 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x64 0x65 0x61 0x64 0x3F 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 0x62 - 0x65 0x20 0x65 0x76 0x69 0x63 0x74 0x65 - 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27584 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C4= 0x0001539c - - -CHUNK('HTOP', _help_48544F50_C4, "") -SUBFILE -#line 27592 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C4, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x93 0x02 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA5 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x46 0x61 0x69 0x72 0x20 0x50 0x65 - 0x72 0x66 0x6F 0x72 0x6D 0x65 0x72 0x0D - 0x0A 0x41 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x64 0x72 0x65 0x61 0x6D 0x20 0x72 - 0x6F 0x6C 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x2C 0x20 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x20 0x70 0x65 0x72 0x66 0x6F 0x72 - 0x6D 0x65 0x72 0x20 0x61 0x74 0x20 0x61 - 0x20 0x73 0x74 0x72 0x65 0x65 0x74 0x20 - 0x66 0x61 0x69 0x72 0x20 0x69 0x6E 0x20 - 0x50 0x72 0x61 0x67 0x75 0x65 0x2C 0x20 - 0x43 0x7A 0x65 0x63 0x68 0x20 0x52 0x65 - 0x70 0x75 0x62 0x6C 0x69 0x63 0x2E 0x20 - 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x68 0x69 0x73 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x44 0x72 0x61 0x63 0x75 0x6C 0x61 0x20 - 0x72 0x6F 0x75 0x74 0x69 0x6E 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x69 0x6E 0x67 - 0x73 0x20 0x61 0x20 0x73 0x6F 0x6E 0x67 - 0x20 0x68 0x65 0x20 0x77 0x72 0x6F 0x74 - 0x65 0x20 0x63 0x61 0x6C 0x6C 0x65 0x64 - 0x20 0x93 0x54 0x61 0x70 0x2D 0x44 0x61 - 0x6E 0x63 0x69 0x6E 0x67 0x20 0x42 0x61 - 0x74 0x73 0x94 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x72 0x6F 0x77 0x64 0x20 - 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 0x20 - 0x62 0x61 0x63 0x6B 0x73 0x20 0x61 0x77 - 0x61 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x92 0x73 0x20 - 0x61 0x77 0x66 0x75 0x6C 0x20 0x73 0x69 - 0x6E 0x67 0x69 0x6E 0x67 0x2E 0x20 0x20 - 0x53 0x75 0x64 0x64 0x65 0x6E 0x6C 0x79 - 0x20 0x61 0x20 0x64 0x6F 0x67 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x72 - 0x6F 0x77 0x64 0x20 0x64 0x69 0x73 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x6F 0x77 0x6E - 0x65 0x72 0x2C 0x20 0x61 0x20 0x74 0x65 - 0x65 0x6E 0x61 0x67 0x65 0x20 0x67 0x69 - 0x72 0x6C 0x2C 0x20 0x63 0x72 0x69 0x65 - 0x73 0x3A 0x20 0x93 0x57 0x68 0x65 0x72 - 0x65 0x92 0x73 0x20 0x6D 0x79 0x20 0x70 - 0x75 0x70 0x70 0x79 0x3F 0x3F 0x94 0x20 - 0x20 0x50 0x65 0x6F 0x70 0x6C 0x65 0x20 - 0x73 0x65 0x61 0x72 0x63 0x68 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x67 0x20 0x63 0x61 0x6E 0x6E - 0x6F 0x74 0x20 0x62 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x2E 0x20 0x20 0x49 0x74 - 0x92 0x73 0x20 0x6C 0x65 0x61 0x72 0x6E - 0x65 0x64 0x20 0x6C 0x61 0x74 0x65 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x67 0x20 0x68 0x61 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x69 0x73 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x6B 0x65 - 0x70 0x74 0x20 0x73 0x6F 0x6D 0x65 0x77 - 0x68 0x65 0x72 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x69 0x74 0x79 - 0x2E 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x69 0x73 0x20 0x63 0x61 0x6C 0x6C - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x6F - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x6F - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x72 - 0x73 0x20 0x77 0x69 0x74 0x68 0x20 0x68 - 0x69 0x73 0x20 0x73 0x69 0x6E 0x67 0x69 - 0x6E 0x67 0x2E 0x20 0x0D 0x0A 0x57 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x72 - 0x73 0x20 0x72 0x65 0x6C 0x65 0x61 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x64 0x6F - 0x67 0x20 0x69 0x6E 0x20 0x72 0x65 0x74 - 0x75 0x72 0x6E 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x20 0x70 0x72 0x6F 0x6D 0x69 0x73 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x56 - 0x65 0x6E 0x69 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x73 0x74 0x6F 0x70 0x20 0x73 - 0x69 0x6E 0x67 0x69 0x6E 0x67 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27740 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C5= 0x0001539d - - -CHUNK('HTOP', _help_48544F50_C5, "") -SUBFILE -#line 27748 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C5, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C7, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x75 0x64 0x65 0x6E - 0x74 0x0D 0x0A 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x68 0x61 0x73 0x20 0x61 0x6C 0x73 - 0x6F 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 0x61 - 0x20 0x74 0x68 0x65 0x61 0x74 0x65 0x72 - 0x20 0x73 0x74 0x75 0x64 0x65 0x6E 0x74 - 0x20 0x61 0x74 0x20 0x4E 0x65 0x77 0x20 - 0x59 0x6F 0x72 0x6B 0x20 0x55 0x6E 0x69 - 0x76 0x65 0x72 0x73 0x69 0x74 0x79 0x2E - 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 0x92 - 0x73 0x20 0x74 0x68 0x65 0x61 0x74 0x65 - 0x72 0x20 0x67 0x72 0x6F 0x75 0x70 0x20 - 0x69 0x73 0x20 0x73 0x65 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x54 0x61 0x68 0x69 0x74 - 0x69 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 - 0x61 0x20 0x6D 0x75 0x73 0x69 0x63 0x61 - 0x6C 0x20 0x76 0x65 0x72 0x73 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x93 0x47 0x75 - 0x6C 0x6C 0x69 0x76 0x65 0x72 0x92 0x73 - 0x20 0x54 0x72 0x61 0x76 0x65 0x6C 0x73 - 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x64 0x6F 0x6E - 0x92 0x74 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x65 0x72 0x66 - 0x6F 0x72 0x6D 0x61 0x6E 0x63 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x68 0x61 0x73 - 0x65 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x74 0x72 0x6F 0x75 0x70 0x65 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x69 0x6C 0x6C 0x73 0x2E 0x20 0x56 - 0x65 0x6E 0x69 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x73 0x74 0x75 0x64 0x65 - 0x6E 0x74 0x73 0x20 0x68 0x69 0x64 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x63 0x61 - 0x76 0x65 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x2C 0x20 0x73 0x74 0x72 0x61 0x6E 0x67 - 0x65 0x6C 0x79 0x2C 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x69 0x73 0x20 0x61 0x20 - 0x63 0x6F 0x66 0x66 0x69 0x6E 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x76 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x66 0x66 - 0x69 0x6E 0x20 0x64 0x6F 0x6F 0x72 0x20 - 0x6F 0x70 0x65 0x6E 0x73 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x73 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x6D - 0x6F 0x62 0x20 0x6F 0x66 0x20 0x6C 0x6F - 0x63 0x61 0x6C 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x69 0x73 0x20 0x67 0x65 - 0x74 0x74 0x69 0x6E 0x67 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x72 0x2E 0x20 0x41 0x20 - 0x76 0x6F 0x69 0x63 0x65 0x20 0x63 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 0x6F - 0x66 0x66 0x69 0x6E 0x20 0x73 0x61 0x79 - 0x73 0x3A 0x20 0x93 0x53 0x69 0x6E 0x67 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x79 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x67 0x6F 0x20 0x61 0x77 0x61 0x79 0x2E - 0x94 0x20 0x0D 0x0A 0x57 0x69 0x6C 0x6C - 0x20 0x56 0x65 0x6E 0x69 0x65 0x92 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x62 0x65 0x20 0x65 0x6E 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x73 0x65 0x20 0x61 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x62 - 0x2C 0x20 0x6F 0x72 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x65 0x20 0x61 0x6E 0x67 0x72 0x69 - 0x65 0x72 0x3F 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x67 0x65 0x74 0x20 - 0x68 0x69 0x73 0x20 0x67 0x72 0x6F 0x75 - 0x70 0x20 0x6F 0x66 0x66 0x20 0x74 0x68 - 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x20 0x73 0x61 0x66 0x65 0x6C 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27890 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C6= 0x0001539e - - -CHUNK('HTOP', _help_48544F50_C6, "") -SUBFILE -#line 27898 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C6, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C5, 0x0) - BYTE - 0x03 0x03 0x70 0x6F 0x77 0x65 0x72 0x73 - 0x0D 0x0A 0x41 0x6C 0x6C 0x20 0x69 0x74 - 0x20 0x74 0x61 0x6B 0x65 0x73 0x20 0x69 - 0x73 0x20 0x61 0x20 0x6C 0x69 0x74 0x74 - 0x6C 0x65 0x20 0x6F 0x69 0x6C 0x20 0x68 - 0x65 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x6F 0x6E - 0x20 0x61 0x20 0x72 0x65 0x67 0x75 0x6C - 0x61 0x72 0x20 0x73 0x63 0x68 0x65 0x64 - 0x75 0x6C 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x57 0x61 0x6E 0x64 0x61 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x69 0x70 0x2D 0x74 0x6F 0x70 0x20 0x6A - 0x75 0x6D 0x70 0x69 0x6E 0x67 0x20 0x73 - 0x68 0x61 0x70 0x65 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x57 0x61 0x6E 0x64 0x61 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x69 0x66 0x20 0x73 - 0x68 0x65 0x20 0x6B 0x65 0x65 0x70 0x73 - 0x20 0x70 0x72 0x61 0x63 0x74 0x69 0x63 - 0x69 0x6E 0x67 0x2C 0x20 0x73 0x68 0x65 - 0x92 0x6C 0x6C 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x73 0x6F 0x20 0x68 0x69 0x67 0x68 - 0x20 0x73 0x68 0x65 0x92 0x6C 0x6C 0x20 - 0x62 0x65 0x20 0x61 0x62 0x6C 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x6C 0x79 0x2E 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x73 0x75 0x72 - 0x65 0x6C 0x79 0x20 0x69 0x66 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x66 0x6C 0x79 0x2C 0x20 0x73 0x6F - 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x2E 0x20 0x20 0x41 0x66 0x74 0x65 0x72 - 0x20 0x61 0x6C 0x6C 0x2C 0x20 0x68 0x6F - 0x77 0x20 0x6D 0x61 0x6E 0x79 0x20 0x66 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x73 0x20 0x61 0x72 0x65 - 0x20 0x74 0x68 0x65 0x72 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x6C 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28002 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C7= 0x0001539f - - -CHUNK('HTOP', _help_48544F50_C7, "") -SUBFILE -#line 28010 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C7, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CB=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CB=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CB=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CB, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x63 0x68 0x61 0x6E - 0x69 0x63 0x61 0x6C 0x20 0x54 0x6F 0x79 - 0x20 0x0D 0x0A 0x57 0x61 0x6E 0x64 0x61 - 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 0x73 - 0x63 0x61 0x72 0x79 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x73 - 0x68 0x65 0x92 0x64 0x20 0x62 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x61 - 0x77 0x65 0x73 0x6F 0x6D 0x65 0x20 0x70 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x2E 0x20 - 0x20 0x4D 0x61 0x79 0x62 0x65 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x61 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x20 0x77 0x68 0x6F 0x92 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x6D 0x65 - 0x64 0x20 0x62 0x79 0x20 0x61 0x6E 0x20 - 0x65 0x76 0x69 0x6C 0x20 0x73 0x63 0x69 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x65 0x61 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x6F 0x72 0x6D - 0x75 0x6C 0x61 0x20 0x66 0x6F 0x72 0x20 - 0x67 0x72 0x61 0x70 0x65 0x20 0x73 0x6C - 0x75 0x72 0x70 0x65 0x65 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x6B 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x64 0x72 0x69 0x6E 0x6B 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x75 0x6D 0x6D 0x65 0x72 0x20 0x74 0x69 - 0x6D 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x65 0x76 0x69 0x6C 0x20 0x73 0x63 - 0x69 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 - 0x77 0x61 0x6E 0x74 0x73 0x20 0x68 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x53 0x6C 0x75 0x72 - 0x70 0x65 0x65 0x20 0x4C 0x61 0x62 0x6F - 0x72 0x61 0x74 0x6F 0x72 0x79 0x2C 0x20 - 0x73 0x74 0x65 0x61 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x66 0x6F 0x72 0x6D 0x75 0x6C - 0x61 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x62 0x72 0x69 0x6E - 0x67 0x20 0x69 0x74 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x68 0x61 0x76 0x65 0x20 0x67 0x72 - 0x61 0x70 0x65 0x20 0x73 0x6C 0x75 0x72 - 0x70 0x65 0x65 0x73 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x2E 0x20 0x20 0x53 0x68 0x65 - 0x20 0x73 0x6E 0x65 0x61 0x6B 0x73 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x62 0x6F 0x72 0x61 0x74 - 0x6F 0x72 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x65 0x73 0x20 0x68 0x65 - 0x72 0x73 0x65 0x6C 0x66 0x20 0x74 0x6F - 0x20 0x68 0x61 0x6C 0x66 0x20 0x68 0x65 - 0x72 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C - 0x20 0x73 0x69 0x7A 0x65 0x20 0x73 0x6F - 0x20 0x73 0x68 0x65 0x20 0x77 0x6F 0x6E - 0x27 0x74 0x20 0x62 0x65 0x20 0x73 0x65 - 0x65 0x6E 0x2E 0x20 0x20 0x41 0x20 0x67 - 0x75 0x61 0x72 0x64 0x20 0x6E 0x6F 0x74 - 0x69 0x63 0x65 0x73 0x20 0x68 0x65 0x72 - 0x20 0x61 0x6E 0x64 0x20 0x72 0x75 0x6E - 0x73 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x20 0x68 0x65 0x72 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x69 0x73 0x20 0x73 0x6F - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x63 - 0x61 0x6E 0x20 0x73 0x74 0x65 0x70 0x20 - 0x6F 0x6E 0x20 0x68 0x65 0x72 0x2E 0x20 - 0x20 0x57 0x61 0x6E 0x64 0x61 0x20 0x69 - 0x73 0x20 0x74 0x72 0x61 0x70 0x70 0x65 - 0x64 0x2E 0x20 0x20 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x61 0x77 0x61 - 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x67 0x75 0x61 0x72 0x64 - 0x3F 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 - 0x65 0x76 0x65 0x72 0x20 0x63 0x6F 0x6E - 0x76 0x69 0x6E 0x63 0x65 0x20 0x61 0x6E - 0x79 0x6F 0x6E 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 0x6F - 0x72 0x61 0x74 0x6F 0x72 0x79 0x20 0x74 - 0x68 0x61 0x74 0x20 0x73 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x69 - 0x73 0x6E 0x92 0x74 0x20 0x62 0x61 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 0x65 - 0x20 0x65 0x76 0x69 0x6C 0x20 0x73 0x63 - 0x69 0x65 0x6E 0x74 0x69 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28171 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C8= 0x000153a0 - - -CHUNK('HTOP', _help_48544F50_C8, "") -SUBFILE -#line 28179 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C8, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C8, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x62 0x6F 0x74 0x20 - 0x43 0x6F 0x70 0x0D 0x0A 0x49 0x6E 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2C 0x20 - 0x57 0x61 0x6E 0x64 0x61 0x20 0x68 0x61 - 0x73 0x20 0x6E 0x65 0x76 0x65 0x72 0x20 - 0x73 0x65 0x65 0x6E 0x20 0x61 0x20 0x67 - 0x69 0x72 0x6C 0x20 0x72 0x6F 0x62 0x6F - 0x74 0x20 0x63 0x6F 0x70 0x2E 0x20 0x20 - 0x42 0x75 0x74 0x20 0x57 0x61 0x6E 0x64 - 0x61 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x61 - 0x74 0x20 0x70 0x61 0x72 0x74 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x92 0x73 0x20 0x70 - 0x72 0x61 0x63 0x74 0x69 0x63 0x65 0x64 - 0x20 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 - 0x20 0x73 0x6F 0x20 0x6D 0x75 0x63 0x68 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x66 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x61 0x74 0x72 0x6F 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x63 0x69 0x74 0x79 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x73 0x65 0x65 0x20 0x63 0x72 - 0x69 0x6D 0x65 0x73 0x20 0x61 0x73 0x20 - 0x74 0x68 0x65 0x79 0x20 0x68 0x61 0x70 - 0x70 0x65 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x6C 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x69 0x6D 0x69 - 0x6E 0x61 0x6C 0x73 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x69 0x66 0x20 0x57 0x61 0x6E 0x64 0x61 - 0x20 0x66 0x6C 0x69 0x65 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x6E 0x20 0x65 - 0x76 0x69 0x6C 0x20 0x62 0x6F 0x79 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x20 0x63 0x6F - 0x70 0x3F 0x20 0x20 0x57 0x68 0x61 0x74 - 0x20 0x69 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6F 0x79 0x20 0x72 0x6F 0x62 0x6F - 0x74 0x20 0x68 0x61 0x73 0x20 0x70 0x6F - 0x77 0x65 0x72 0x73 0x20 0x73 0x68 0x65 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x68 0x61 0x76 0x65 0x3F 0x20 0x20 - 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x68 0x65 0x20 0x73 0x74 0x6F - 0x70 0x20 0x63 0x72 0x69 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x72 0x6F 0x74 - 0x65 0x63 0x74 0x20 0x68 0x65 0x72 0x73 - 0x65 0x6C 0x66 0x97 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x63 0x69 0x74 0x79 - 0x97 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x73 0x61 0x6D 0x65 0x20 0x74 0x69 0x6D - 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 28294 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C9= 0x000153a1 - - -CHUNK('HTOP', _help_48544F50_C9, "") -SUBFILE -#line 28302 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C9, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C9, 0x0) - BYTE - 0x03 0x03 0x44 0x61 0x6E 0x63 0x65 0x72 - 0x0D 0x0A 0x57 0x61 0x6E 0x64 0x61 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 - 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x66 0x75 0x6E 0x20 0x74 0x6F - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x61 0x6E 0x64 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x72 0x6F 0x62 0x6F 0x74 - 0x20 0x61 0x6C 0x69 0x76 0x65 0x2E 0x20 - 0x20 0x4E 0x6F 0x74 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x72 0x6F 0x62 0x6F 0x74 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x2E 0x20 0x20 - 0x48 0x65 0x72 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x65 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x68 - 0x61 0x70 0x70 0x79 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x66 0x61 0x63 0x74 0x2C 0x20 - 0x73 0x68 0x65 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x73 0x68 0x65 0x92 0x64 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x69 0x6E 0x20 0x74 0x69 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 - 0x75 0x6C 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x6E 0x20 0x65 0x76 0x69 0x6C 0x20 0x6B - 0x69 0x6E 0x67 0x20 0x77 0x68 0x6F 0x20 - 0x68 0x6F 0x6C 0x64 0x73 0x20 0x61 0x20 - 0x77 0x68 0x6F 0x6C 0x65 0x20 0x63 0x69 - 0x74 0x79 0x20 0x6F 0x66 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x68 0x6F 0x73 - 0x74 0x61 0x67 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x72 0x20 0x64 0x61 0x6E 0x63 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x70 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x6C 0x65 0x65 0x70 0x20 0x73 0x6F 0x20 - 0x74 0x68 0x61 0x74 0x20 0x65 0x76 0x65 - 0x72 0x79 0x6F 0x6E 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x65 0x73 0x63 0x61 - 0x70 0x65 0x2C 0x20 0x64 0x61 0x6E 0x63 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x77 0x61 0x79 0x20 0x74 0x6F - 0x20 0x66 0x72 0x65 0x65 0x64 0x6F 0x6D - 0x2E 0x20 0x42 0x75 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x74 0x68 0x65 0x79 0x20 0x67 - 0x6F 0x3F 0x20 0x20 0x57 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x68 0x65 0x20 0x62 0x65 - 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x20 0x69 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x74 0x6F 0x20 0x74 0x6F - 0x64 0x61 0x79 0x3F 0x20 0x20 0x57 0x68 - 0x61 0x74 0x20 0x69 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6B 0x69 0x6E 0x67 0x20 0x69 - 0x73 0x6E 0x27 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x6F 0x6E - 0x65 0x20 0x77 0x68 0x6F 0x20 0x66 0x61 - 0x6C 0x6C 0x73 0x20 0x61 0x73 0x6C 0x65 - 0x65 0x70 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28433 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CA= 0x000153a2 - - -CHUNK('HTOP', _help_48544F50_CA, "") -SUBFILE -#line 28441 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CA, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CA=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CA=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CA=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CA, 0x0) - BYTE - 0x03 0x03 0x6E 0x6F 0x73 0x65 0x0D 0x0A - 0x49 0x74 0x20 0x69 0x73 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x92 0x73 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x65 0x64 0x20 0x6E 0x6F - 0x73 0x65 0x20 0x74 0x68 0x61 0x74 0x20 - 0x67 0x6F 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x20 0x77 0x69 0x74 - 0x68 0x2E 0x20 0x20 0x48 0x65 0x20 0x61 - 0x6C 0x77 0x61 0x79 0x73 0x20 0x73 0x74 - 0x69 0x63 0x6B 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6E 0x6F 0x73 0x65 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x65 0x76 0x65 0x72 - 0x79 0x6F 0x6E 0x65 0x20 0x65 0x6C 0x73 - 0x65 0x92 0x73 0x20 0x62 0x75 0x73 0x69 - 0x6E 0x65 0x73 0x73 0x2E 0x20 0x48 0x65 - 0x20 0x73 0x61 0x77 0x20 0x61 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x6F 0x6E 0x63 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x71 0x75 0x69 0x63 - 0x6B 0x6C 0x79 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x74 0x20 0x75 0x70 0x20 0x61 - 0x20 0x64 0x6F 0x7A 0x65 0x6E 0x20 0x77 - 0x61 0x79 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x69 0x74 0x20 0x62 - 0x65 0x74 0x74 0x65 0x72 0x2E 0x20 0x20 - 0x46 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D - 0x70 0x6C 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6C 0x6C 0x65 0x64 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x6F 0x6C 0x64 0x20 0x68 0x69 - 0x6D 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6C 0x6F 0x75 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x6F 0x6E 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x67 0x72 - 0x65 0x65 0x6E 0x2E 0x20 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x6C 0x6F 0x76 0x65 - 0x64 0x20 0x69 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x6C 0x65 0x77 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x74 0x6F 0x20 0x4C - 0x6F 0x73 0x20 0x41 0x6E 0x67 0x65 0x6C - 0x65 0x73 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x68 0x69 0x6D 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x73 0x2E 0x20 0x20 0x57 - 0x65 0x6C 0x6C 0x2C 0x20 0x57 0x69 0x6C - 0x6C 0x79 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x70 0x61 0x69 0x64 0x20 0x61 0x74 - 0x74 0x65 0x6E 0x74 0x69 0x6F 0x6E 0x20 - 0x74 0x6F 0x20 0x77 0x68 0x65 0x74 0x68 - 0x65 0x72 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x6F 0x72 0x20 0x69 - 0x6E 0x20 0x66 0x72 0x6F 0x6E 0x74 0x20 - 0x6F 0x66 0x20 0x69 0x74 0x2C 0x20 0x73 - 0x6F 0x20 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x65 0x64 0x20 0x75 0x70 0x20 0x68 0x61 - 0x76 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x63 0x69 0x64 0x65 0x6E 0x74 - 0x61 0x6C 0x20 0x70 0x61 0x72 0x74 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x92 0x73 0x20 0x62 0x65 0x65 0x6E - 0x20 0x61 0x63 0x63 0x69 0x64 0x65 0x6E - 0x74 0x61 0x6C 0x6C 0x79 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x65 0x76 0x65 - 0x72 0x20 0x73 0x69 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 28572 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CB= 0x000153a3 - - -CHUNK('HTOP', _help_48544F50_CB, "") -SUBFILE -#line 28580 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CB, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CD=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CD=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7A 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CD=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CD, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x64 0x20 0x53 0x63 - 0x69 0x65 0x6E 0x74 0x69 0x73 0x74 0x0D - 0x0A 0x46 0x6F 0x72 0x20 0x57 0x69 0x6C - 0x6C 0x79 0x2C 0x20 0x70 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x6D 0x61 - 0x64 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x20 0x69 0x73 0x20 0x61 - 0x73 0x20 0x65 0x61 0x73 0x79 0x20 0x61 - 0x73 0x20 0x73 0x70 0x72 0x65 0x61 0x64 - 0x69 0x6E 0x67 0x20 0x6A 0x65 0x6C 0x6C - 0x79 0x20 0x6F 0x6E 0x20 0x70 0x65 0x61 - 0x6E 0x75 0x74 0x20 0x62 0x75 0x74 0x74 - 0x65 0x72 0x2E 0x20 0x20 0x48 0x65 0x92 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6C 0x61 0x62 0x20 - 0x73 0x69 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x66 0x69 0x76 - 0x65 0x2C 0x20 0x66 0x69 0x64 0x64 0x6C - 0x69 0x6E 0x67 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x63 0x68 0x65 0x6D 0x69 0x63 0x61 0x6C - 0x73 0x2C 0x20 0x69 0x6E 0x76 0x65 0x6E - 0x74 0x69 0x6E 0x67 0x20 0x67 0x61 0x64 - 0x67 0x65 0x74 0x73 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x67 0x65 0x6E 0x65 0x72 0x61 - 0x6C 0x6C 0x79 0x20 0x6D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x6D 0x65 0x73 - 0x73 0x2E 0x20 0x20 0x53 0x6F 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x70 0x75 - 0x74 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x6C 0x61 0x62 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x69 0x73 0x20 0x73 - 0x75 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6F 0x6B 0x20 - 0x75 0x70 0x20 0x6D 0x69 0x78 0x74 0x75 - 0x72 0x65 0x73 0x20 0x6F 0x66 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x74 0x6F 0x20 0x73 0x63 - 0x61 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x73 0x2E 0x20 0x20 0x49 - 0x6E 0x73 0x74 0x65 0x61 0x64 0x2C 0x20 - 0x57 0x69 0x6C 0x6C 0x79 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x61 0x20 0x64 0x6F - 0x6F 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x66 0x6C 0x6F 0x6F 0x72 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6C - 0x61 0x62 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x72 0x65 0x27 0x73 0x20 0x61 0x20 0x68 - 0x75 0x67 0x65 0x20 0x72 0x65 0x64 0x20 - 0x58 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x64 0x6F 0x6F 0x72 0x2E 0x20 0x20 - 0x49 0x73 0x20 0x69 0x74 0x20 0x61 0x20 - 0x74 0x72 0x61 0x70 0x20 0x64 0x6F 0x6F - 0x72 0x3F 0x20 0x20 0x57 0x69 0x6C 0x6C - 0x79 0x20 0x6B 0x6E 0x65 0x65 0x6C 0x73 - 0x20 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x63 0x72 0x61 0x77 0x6C 0x73 0x20 0x61 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x6F 0x72 0x2E 0x20 - 0x20 0x49 0x66 0x20 0x68 0x65 0x20 0x73 - 0x74 0x61 0x6E 0x64 0x73 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x64 0x6F 0x6F - 0x72 0x2C 0x20 0x69 0x74 0x20 0x6D 0x69 - 0x67 0x68 0x74 0x20 0x62 0x65 0x20 0x61 - 0x20 0x74 0x72 0x61 0x70 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 0x68 - 0x65 0x61 0x72 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x6E 0x65 0x61 - 0x74 0x68 0x97 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x6C 0x69 0x6B 0x65 0x20 0x63 - 0x68 0x69 0x6C 0x64 0x72 0x65 0x6E 0x20 - 0x63 0x61 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x6C 0x70 - 0x2E 0x20 0x0D 0x0A 0x43 0x61 0x6E 0x20 - 0x57 0x69 0x6C 0x6C 0x79 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x64 0x6F - 0x6F 0x72 0x20 0x6F 0x70 0x65 0x6E 0x3F - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x68 0x65 0x20 0x72 0x65 - 0x73 0x63 0x75 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x64 0x73 0x3F 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x69 0x66 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x6D 0x6F 0x72 0x65 0x20 0x75 0x6E - 0x64 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x6F 0x72 0x2C 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x61 0x76 - 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28735 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CC= 0x000153a4 - - -CHUNK('HTOP', _help_48544F50_CC, "") -SUBFILE -#line 28743 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CC, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CC=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CC=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CC=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CC, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x72 0x6B 0x69 0x6E - 0x67 0x20 0x56 0x61 0x6C 0x65 0x74 0x0D - 0x0A 0x57 0x69 0x6C 0x6C 0x79 0x20 0x69 - 0x73 0x20 0x73 0x6F 0x20 0x73 0x6D 0x61 - 0x72 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x65 0x61 0x73 0x79 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x20 0x73 0x65 0x65 0x6D - 0x20 0x68 0x61 0x72 0x64 0x2E 0x20 0x20 - 0x49 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x61 0x20 - 0x70 0x61 0x72 0x6B 0x69 0x6E 0x67 0x20 - 0x76 0x61 0x6C 0x65 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x69 0x73 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x6F 0x75 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x73 0x74 0x6F 0x6C - 0x65 0x6E 0x20 0x63 0x61 0x72 0x73 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x69 0x6E - 0x73 0x74 0x65 0x61 0x64 0x20 0x6F 0x66 - 0x20 0x64 0x72 0x69 0x76 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x72 - 0x20 0x74 0x6F 0x20 0x69 0x74 0x73 0x20 - 0x70 0x61 0x72 0x6B 0x69 0x6E 0x67 0x20 - 0x73 0x70 0x61 0x63 0x65 0x2C 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6C - 0x6B 0x73 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x2C 0x20 0x70 0x75 0x73 - 0x68 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x72 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x6B 0x69 0x6E 0x67 0x20 0x73 0x70 - 0x61 0x63 0x65 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x20 0x74 0x75 0x72 0x6E 0x73 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x72 0x20 - 0x69 0x73 0x20 0x67 0x6F 0x6E 0x65 0x2E - 0x20 0x20 0x53 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x20 0x73 0x74 0x6F 0x6C 0x65 0x20 - 0x69 0x74 0x2E 0x20 0x49 0x74 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x74 - 0x61 0x6B 0x65 0x20 0x61 0x20 0x67 0x65 - 0x6E 0x69 0x75 0x73 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x61 0x74 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x77 0x68 0x6F 0x20 0x73 0x74 0x6F 0x6C - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x72 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x27 0x73 - 0x20 0x62 0x61 0x63 0x6B 0x3F 0x20 0x20 - 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x69 0x74 0x3F 0x20 0x20 0x49 0x73 - 0x20 0x74 0x68 0x69 0x73 0x20 0x68 0x6F - 0x77 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x63 0x61 0x72 0x73 0x20 0x64 0x69 0x73 - 0x61 0x70 0x70 0x65 0x61 0x72 0x65 0x64 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28866 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CD= 0x000153a5 - - -CHUNK('HTOP', _help_48544F50_CD, "") -SUBFILE -#line 28874 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CD, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CE=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CE=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CE=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CE, 0x0) - BYTE - 0x03 0x03 0x4E 0x61 0x74 0x69 0x76 0x65 - 0x20 0x53 0x74 0x75 0x64 0x65 0x6E 0x74 - 0x0D 0x0A 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x69 0x73 0x20 0x61 0x20 0x6E 0x61 0x74 - 0x75 0x72 0x61 0x6C 0x20 0x73 0x74 0x75 - 0x64 0x65 0x6E 0x74 0x2C 0x20 0x73 0x6F - 0x20 0x68 0x65 0x20 0x6A 0x75 0x6D 0x70 - 0x65 0x64 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x73 0x74 0x75 0x64 - 0x65 0x6E 0x74 0x20 0x69 0x6E 0x20 0x4D - 0x6F 0x72 0x6F 0x63 0x63 0x6F 0x20 0x6C - 0x65 0x61 0x72 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x41 0x72 - 0x61 0x62 0x69 0x63 0x20 0x63 0x75 0x6C - 0x74 0x75 0x72 0x65 0x2E 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x92 0x73 0x20 0x74 - 0x65 0x61 0x63 0x68 0x65 0x72 0x2C 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x2C 0x20 0x74 0x61 0x6B 0x65 0x73 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x61 0x6E - 0x63 0x69 0x65 0x6E 0x74 0x20 0x72 0x75 - 0x69 0x6E 0x73 0x20 0x69 0x6E 0x20 0x56 - 0x6F 0x6C 0x75 0x62 0x69 0x6C 0x69 0x73 - 0x2E 0x20 0x20 0x57 0x68 0x61 0x74 0x20 - 0x57 0x69 0x6C 0x6C 0x79 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x92 0x74 0x20 0x6B 0x6E - 0x6F 0x77 0x20 0x69 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x56 0x61 0x6C 0x65 0x6E - 0x74 0x69 0x6E 0x65 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x74 0x6F 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x6E 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x75 0x6E 0x6E 0x65 0x6C 0x20 0x74 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x6E 0x74 - 0x61 0x69 0x6E 0x2E 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x61 0x72 0x72 0x69 0x76 0x65 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x72 0x75 0x69 0x6E 0x73 0x20 0x61 0x6E - 0x64 0x20 0x56 0x61 0x6C 0x65 0x6E 0x74 - 0x69 0x6E 0x65 0x20 0x73 0x68 0x6F 0x77 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x61 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x64 0x6F 0x6F 0x72 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x61 0x20 0x6C 0x61 0x72 0x67 - 0x65 0x20 0x73 0x74 0x6F 0x6E 0x65 0x20 - 0x62 0x75 0x69 0x6C 0x64 0x69 0x6E 0x67 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x48 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x66 0x20 0x48 - 0x65 0x72 0x63 0x75 0x6C 0x65 0x73 0x2E - 0x20 0x20 0x54 0x68 0x65 0x79 0x20 0x63 - 0x72 0x61 0x77 0x6C 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 0x20 - 0x64 0x61 0x72 0x6B 0x2C 0x20 0x73 0x6D - 0x65 0x6C 0x6C 0x79 0x20 0x72 0x6F 0x6F - 0x6D 0x20 0x77 0x69 0x74 0x68 0x20 0x74 - 0x68 0x65 0x20 0x62 0x6F 0x6E 0x65 0x73 - 0x20 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 - 0x6E 0x69 0x6D 0x61 0x6C 0x20 0x74 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x69 0x64 - 0x65 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x69 0x73 0x74 - 0x61 0x6E 0x63 0x65 0x2C 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x65 0x65 0x20 0x61 0x20 0x73 0x6D - 0x61 0x6C 0x6C 0x20 0x77 0x6F 0x6F 0x64 - 0x65 0x6E 0x20 0x64 0x6F 0x6F 0x72 0x77 - 0x61 0x79 0x2E 0x20 0x0D 0x0A 0x49 0x73 - 0x20 0x74 0x68 0x69 0x73 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x6F 0x73 0x74 0x20 0x65 - 0x6E 0x74 0x72 0x61 0x6E 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x70 0x61 0x73 0x73 0x61 - 0x67 0x65 0x3F 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x73 0x71 0x75 0x65 0x65 0x7A - 0x65 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x69 0x74 0x3F 0x20 0x20 0x57 - 0x68 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x79 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x6E - 0x74 0x61 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29032 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CE= 0x000153a6 - - -CHUNK('HTOP', _help_48544F50_CE, "") -SUBFILE -#line 29040 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CE, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x6D 0x61 0x74 0x61 0x64 0x6F - 0x72 0x73 0x0D 0x0A 0x5A 0x61 0x63 0x6B - 0x92 0x73 0x20 0x66 0x61 0x6D 0x69 0x6C - 0x79 0x20 0x68 0x61 0x73 0x20 0x62 0x65 - 0x65 0x6E 0x20 0x69 0x6E 0x20 0x62 0x75 - 0x6C 0x6C 0x66 0x69 0x67 0x68 0x74 0x69 - 0x6E 0x67 0x20 0x66 0x6F 0x72 0x20 0x67 - 0x65 0x6E 0x65 0x72 0x61 0x74 0x69 0x6F - 0x6E 0x73 0x2E 0x20 0x20 0x46 0x72 0x6F - 0x6D 0x20 0x61 0x6E 0x20 0x65 0x61 0x72 - 0x6C 0x79 0x20 0x61 0x67 0x65 0x2C 0x20 - 0x5A 0x61 0x63 0x6B 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x69 0x73 0x20 0x31 0x31 0x20 - 0x6F 0x6C 0x64 0x65 0x72 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x73 0x20 0x67 - 0x6F 0x74 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x65 0x20 0x62 0x75 0x6C 0x6C 0x73 0x20 - 0x74 0x6F 0x20 0x6B 0x65 0x65 0x70 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x6D 0x69 - 0x6C 0x79 0x20 0x74 0x72 0x61 0x64 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x2E 0x20 0x20 0x49 0x74 0x20 - 0x64 0x69 0x64 0x6E 0x92 0x74 0x20 0x74 - 0x61 0x6B 0x65 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x72 0x65 0x61 0x6C 0x69 0x7A 0x65 - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x65 - 0x73 0x65 0x20 0x62 0x75 0x6C 0x6C 0x73 - 0x20 0x77 0x65 0x72 0x65 0x20 0x77 0x61 - 0x79 0x20 0x73 0x65 0x72 0x69 0x6F 0x75 - 0x73 0x2E 0x20 0x48 0x65 0x20 0x77 0x61 - 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x73 0x61 0x79 0x2C 0x20 0x93 0x54 0x68 - 0x61 0x6E 0x6B 0x73 0x2C 0x20 0x67 0x75 - 0x79 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x74 0x68 0x69 0x73 0x20 0x69 0x73 0x20 - 0x4E 0x4F 0x54 0x20 0x66 0x6F 0x72 0x20 - 0x6D 0x65 0x2E 0x94 0x20 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x6E 0x92 0x74 0x20 0x64 - 0x69 0x73 0x61 0x70 0x70 0x6F 0x69 0x6E - 0x74 0x20 0x68 0x69 0x73 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x2E 0x20 0x20 0x53 - 0x6F 0x20 0x68 0x65 0x20 0x67 0x72 0x61 - 0x62 0x62 0x65 0x64 0x20 0x61 0x20 0x70 - 0x61 0x70 0x65 0x72 0x20 0x6C 0x75 0x6E - 0x63 0x68 0x20 0x62 0x61 0x67 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x75 0x74 0x20 0x69 - 0x74 0x20 0x6F 0x76 0x65 0x72 0x20 0x68 - 0x69 0x73 0x20 0x68 0x65 0x61 0x64 0x2E - 0x20 0x20 0x49 0x6E 0x73 0x74 0x61 0x6E - 0x74 0x6C 0x79 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x66 0x69 0x6C 0x6C - 0x65 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x63 0x6F 0x75 0x72 0x61 0x67 0x65 0x2E - 0x20 0x20 0x4E 0x6F 0x74 0x68 0x69 0x6E - 0x67 0x2C 0x20 0x6E 0x6F 0x74 0x20 0x65 - 0x76 0x65 0x6E 0x20 0x61 0x20 0x68 0x61 - 0x69 0x72 0x79 0x20 0x62 0x75 0x6C 0x6C - 0x2C 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x68 0x69 0x6D - 0x20 0x6E 0x6F 0x77 0x2E 0x20 0x20 0x46 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x6F 0x6D 0x65 0x6E 0x74 0x2C - 0x20 0x68 0x65 0x20 0x62 0x65 0x63 0x61 - 0x6D 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x73 0x75 0x63 0x63 - 0x65 0x73 0x73 0x66 0x75 0x6C 0x20 0x6D - 0x61 0x74 0x61 0x64 0x6F 0x72 0x20 0x69 - 0x6E 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 - 0x20 0x53 0x70 0x61 0x69 0x6E 0x2E 0x20 - 0x20 0x45 0x76 0x65 0x6E 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x2C 0x20 0x6E - 0x6F 0x74 0x69 0x63 0x65 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x53 0x6F 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C 0x69 - 0x66 0x65 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x20 0x6F 0x66 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x6D 0x61 0x64 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x69 0x67 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2E 0x20 0x57 0x69 - 0x74 0x68 0x20 0x74 0x68 0x65 0x20 0x61 - 0x70 0x70 0x72 0x6F 0x76 0x61 0x6C 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x66 - 0x61 0x6D 0x69 0x6C 0x79 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x42 0x75 - 0x6C 0x6C 0x73 0x92 0x20 0x41 0x73 0x73 - 0x6F 0x63 0x69 0x61 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x5A 0x61 0x63 0x6B 0x20 0x6C - 0x65 0x66 0x74 0x20 0x6D 0x61 0x74 0x61 - 0x64 0x6F 0x72 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 - 0x20 0x68 0x69 0x73 0x20 0x6E 0x65 0x77 - 0x20 0x6C 0x6F 0x76 0x65 0x2C 0x20 0x61 - 0x63 0x74 0x69 0x6E 0x67 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 29200 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CF= 0x000153a7 - - -CHUNK('HTOP', _help_48544F50_CF, "") -SUBFILE -#line 29208 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CF, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C6, 0x0) - BYTE - 0x03 0x03 0x50 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x0D 0x0A 0x57 0x69 0x74 0x68 0x20 - 0x68 0x69 0x73 0x20 0x70 0x61 0x70 0x65 - 0x72 0x20 0x62 0x61 0x67 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x74 0x65 0x72 0x72 0x69 0x66 0x69 - 0x63 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x21 0x20 0x20 0x48 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 0x64 - 0x65 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 - 0x72 0x65 0x2C 0x20 0x61 0x70 0x70 0x65 - 0x61 0x72 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x6E 0x6F 0x77 0x68 0x65 0x72 0x65 0x2C - 0x20 0x77 0x61 0x6C 0x6B 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x77 0x61 - 0x6C 0x6C 0x73 0x2C 0x20 0x64 0x72 0x6F - 0x70 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x65 0x76 - 0x65 0x72 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x77 0x68 0x6F 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x2E 0x20 0x0D 0x0A 0x54 0x68 - 0x65 0x6E 0x2C 0x20 0x6F 0x6E 0x65 0x20 - 0x64 0x61 0x79 0x2C 0x20 0x5A 0x61 0x63 - 0x6B 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x70 0x72 0x61 0x63 0x74 - 0x69 0x63 0x69 0x6E 0x67 0x20 0x68 0x69 - 0x73 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x20 0x61 0x63 0x74 0x20 0x6F 0x75 - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x67 0x72 0x61 0x76 0x65 0x79 0x61 - 0x72 0x64 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x20 0x73 0x65 0x65 0x73 0x20 - 0x61 0x6E 0x20 0x61 0x6C 0x69 0x65 0x6E - 0x20 0x73 0x70 0x61 0x63 0x65 0x73 0x68 - 0x69 0x70 0x20 0x68 0x65 0x61 0x64 0x65 - 0x64 0x20 0x68 0x69 0x73 0x20 0x77 0x61 - 0x79 0x2E 0x20 0x20 0x4F 0x68 0x2C 0x20 - 0x6E 0x6F 0x2C 0x20 0x6E 0x6F 0x74 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x73 0x2E 0x20 0x20 0x5A 0x61 0x63 - 0x6B 0x20 0x68 0x61 0x73 0x20 0x6D 0x65 - 0x74 0x20 0x61 0x6C 0x69 0x65 0x6E 0x73 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 0x20 - 0x64 0x69 0x64 0x6E 0x92 0x74 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x68 0x65 0x6D - 0x2E 0x20 0x20 0x54 0x68 0x65 0x79 0x20 - 0x68 0x61 0x64 0x20 0x6E 0x6F 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x63 - 0x6F 0x6D 0x6D 0x6F 0x6E 0x2C 0x20 0x74 - 0x68 0x65 0x79 0x20 0x68 0x61 0x74 0x65 - 0x64 0x20 0x62 0x75 0x6C 0x6C 0x73 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x6D 0x61 0x64 0x65 0x20 0x66 0x75 - 0x6E 0x20 0x6F 0x66 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x5A - 0x61 0x63 0x6B 0x20 0x6E 0x65 0x65 0x64 - 0x73 0x20 0x61 0x20 0x67 0x6F 0x6F 0x64 - 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F - 0x72 0x6D 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x71 0x75 0x69 0x63 0x6B 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x77 0x68 0x6F 0x20 0x6F - 0x72 0x20 0x77 0x68 0x61 0x74 0x20 0x63 - 0x61 0x6E 0x20 0x68 0x65 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x6F 0x20 0x61 0x76 0x6F 0x69 0x64 - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x65 - 0x65 0x70 0x79 0x20 0x6C 0x69 0x74 0x74 - 0x6C 0x65 0x20 0x61 0x6C 0x69 0x65 0x6E - 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29347 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_D0= 0x000153a8 - - -CHUNK('HTOP', _help_48544F50_D0, "") -SUBFILE -#line 29355 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_D0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D0, 0x0) - BYTE - 0x03 0x03 0x56 0x69 0x6C 0x6C 0x61 0x69 - 0x6E 0x0D 0x0A 0x41 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x67 0x6F 0x6F 0x64 0x20 0x67 0x75 - 0x79 0x73 0x2E 0x20 0x20 0x4E 0x6F 0x74 - 0x20 0x5A 0x61 0x63 0x6B 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x64 0x72 0x65 0x61 0x6D - 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6D - 0x65 0x61 0x6E 0x65 0x73 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x72 0x6F 0x6F 0x6B - 0x65 0x64 0x65 0x73 0x74 0x20 0x62 0x61 - 0x64 0x20 0x67 0x75 0x79 0x20 0x65 0x76 - 0x65 0x72 0x2E 0x20 0x20 0x48 0x65 0x92 - 0x64 0x20 0x62 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x64 0x20 0x67 0x75 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x70 0x75 0x6C 0x6C 0x20 - 0x6F 0x66 0x66 0x20 0x72 0x6F 0x62 0x62 - 0x65 0x72 0x69 0x65 0x73 0x2C 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x70 0x72 0x61 0x6E - 0x6B 0x73 0x2C 0x20 0x73 0x63 0x61 0x72 - 0x65 0x20 0x61 0x6E 0x79 0x6F 0x6E 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6E 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x65 0x76 0x65 0x72 0x20 - 0x63 0x61 0x74 0x63 0x68 0x20 0x68 0x69 - 0x6D 0x20 0x6F 0x72 0x20 0x66 0x69 0x6E - 0x64 0x20 0x6F 0x75 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x68 0x65 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x69 0x73 0x2E 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x67 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x62 0x65 0x74 0x74 0x65 - 0x72 0x20 0x74 0x68 0x61 0x6E 0x20 0x61 - 0x20 0x73 0x6B 0x69 0x20 0x6D 0x61 0x73 - 0x6B 0x21 0x20 0x48 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x79 - 0x20 0x6D 0x61 0x6E 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x63 0x61 0x74 - 0x63 0x68 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x69 - 0x66 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x20 0x62 0x65 0x63 0x61 0x6D - 0x65 0x20 0x61 0x20 0x62 0x61 0x67 0x2D - 0x66 0x61 0x63 0x65 0x3F 0x20 0x20 0x41 - 0x6E 0x64 0x20 0x77 0x68 0x61 0x74 0x20 - 0x69 0x66 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x63 0x61 0x6E 0x20 0x6D 0x61 0x74 - 0x63 0x68 0x20 0x61 0x6C 0x6C 0x20 0x6F - 0x66 0x20 0x5A 0x61 0x63 0x6B 0x92 0x73 - 0x20 0x73 0x6C 0x79 0x20 0x74 0x72 0x69 - 0x63 0x6B 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x6D 0x6F 0x72 0x65 0x3F 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x5A 0x61 0x63 0x6B 0x20 - 0x62 0x65 0x20 0x64 0x6F 0x6E 0x65 0x20 - 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29487 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_D1= 0x000153a9 - - -CHUNK('HTOP', _help_48544F50_D1, "") -SUBFILE -#line 29495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_D1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x6F 0x75 0x66 - 0x6C 0x61 0x67 0x65 0x64 0x20 0x48 0x75 - 0x6E 0x74 0x65 0x72 0x0D 0x0A 0x57 0x69 - 0x74 0x68 0x20 0x61 0x6C 0x6C 0x20 0x68 - 0x69 0x73 0x20 0x63 0x6F 0x75 0x72 0x61 - 0x67 0x65 0x2C 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x63 0x61 0x6E 0x20 0x73 0x65 0x65 - 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 - 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x61 0x77 0x65 0x73 - 0x6F 0x6D 0x65 0x20 0x68 0x75 0x6E 0x74 - 0x65 0x72 0x20 0x64 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x63 0x61 - 0x6D 0x6F 0x75 0x66 0x6C 0x61 0x67 0x65 - 0x2C 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x74 0x6F 0x20 0x77 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x6C 0x64 - 0x20 0x66 0x6F 0x72 0x20 0x66 0x72 0x65 - 0x65 0x64 0x6F 0x6D 0x2E 0x20 0x20 0x48 - 0x65 0x92 0x64 0x20 0x70 0x61 0x72 0x61 - 0x63 0x68 0x75 0x74 0x65 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x65 0x6D 0x79 0x92 0x73 0x20 0x66 - 0x6F 0x72 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x61 0x6B 0x65 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x62 0x79 - 0x20 0x73 0x74 0x6F 0x72 0x6D 0x2E 0x20 - 0x20 0x5A 0x61 0x63 0x6B 0x20 0x70 0x75 - 0x74 0x73 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x61 0x63 0x68 - 0x75 0x74 0x65 0x2C 0x20 0x6A 0x75 0x6D - 0x70 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6C - 0x61 0x6E 0x64 0x73 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x73 0x6F 0x6D 0x65 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x67 0x6F 0x65 - 0x73 0x20 0x74 0x65 0x72 0x72 0x69 0x62 - 0x6C 0x79 0x20 0x77 0x72 0x6F 0x6E 0x67 - 0x2E 0x20 0x20 0x49 0x6E 0x73 0x74 0x65 - 0x61 0x64 0x20 0x6F 0x66 0x20 0x65 0x6E - 0x65 0x6D 0x79 0x20 0x74 0x65 0x72 0x72 - 0x69 0x74 0x6F 0x72 0x79 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x20 0x6C 0x61 0x6E 0x64 - 0x73 0x20 0x6F 0x6E 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x73 0x68 - 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 0x6D - 0x61 0x6C 0x6C 0x20 0x73 0x6E 0x61 0x63 - 0x6B 0x20 0x66 0x6F 0x6F 0x64 0x20 0x63 - 0x61 0x72 0x74 0x21 0x20 0x0D 0x0A 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x20 0x67 0x61 0x74 0x68 - 0x65 0x72 0x69 0x6E 0x67 0x20 0x61 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x77 0x65 0x69 0x72 0x64 0x20 0x62 - 0x61 0x67 0x2D 0x68 0x65 0x61 0x64 0x20 - 0x64 0x72 0x65 0x73 0x73 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x61 0x72 0x6D 0x79 0x20 - 0x63 0x61 0x6D 0x6F 0x75 0x66 0x6C 0x61 - 0x67 0x65 0x2E 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x65 0x6D 0x62 0x61 0x72 0x72 0x61 - 0x73 0x73 0x69 0x6E 0x67 0x2E 0x20 0x48 - 0x65 0x20 0x6D 0x75 0x73 0x74 0x20 0x73 - 0x61 0x76 0x65 0x20 0x68 0x69 0x73 0x20 - 0x72 0x65 0x70 0x75 0x74 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x48 0x65 0x20 0x6E - 0x65 0x65 0x64 0x73 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x6C 0x61 - 0x6E 0x2C 0x20 0x71 0x75 0x69 0x63 0x6B - 0x21 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x5A 0x61 0x63 0x6B 0x20 - 0x73 0x61 0x76 0x65 0x20 0x66 0x61 0x63 - 0x65 0x20 0x6E 0x6F 0x77 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29629 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -#line 58 "H:\\BUILD\\SOC\\src\\help\\help.cht" diff --git a/OBJ/WIND/HELPAUD.I b/OBJ/WIND/HELPAUD.I deleted file mode 100644 index c4bbfede..00000000 --- a/OBJ/WIND/HELPAUD.I +++ /dev/null @@ -1,7174 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 7 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 8 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 9 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 10 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 11 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 12 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" - - - -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wctooltp.cht" - -CHUNK( 'WAVE', 0x00076000, ) FILE "helpaud\sound\tooltips\VZR001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076001, ) FILE "helpaud\sound\tooltips\VZR005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076002, ) FILE "helpaud\sound\tooltips\VZR014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076003, ) FILE "helpaud\sound\tooltips\VZR044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076004, ) FILE "helpaud\sound\tooltips\VZR002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076005, ) FILE "helpaud\sound\tooltips\VZR006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076006, ) FILE "helpaud\sound\tooltips\VZR013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076007, ) FILE "helpaud\sound\tooltips\VZR007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076008, ) FILE "helpaud\sound\tooltips\VZR008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076009, ) FILE "helpaud\sound\tooltips\VZR019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600A, ) FILE "helpaud\sound\tooltips\VZR020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600B, ) FILE "helpaud\sound\tooltips\VZR053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600C, ) FILE "helpaud\sound\tooltips\VZR054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600D, ) FILE "helpaud\sound\tooltips\VZR055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600E, ) FILE "helpaud\sound\tooltips\VZR021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600F, ) FILE "helpaud\sound\tooltips\VZR056.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076010, ) FILE "helpaud\sound\tooltips\VZR057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076011, ) FILE "helpaud\sound\tooltips\VZR058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076012, ) FILE "helpaud\sound\tooltips\VZR059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076013, ) FILE "helpaud\sound\tooltips\VZR022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076014, ) FILE "helpaud\sound\tooltips\VZR023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076016, ) FILE "helpaud\sound\tooltips\VZR024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076017, ) FILE "helpaud\sound\tooltips\VZR025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076019, ) FILE "helpaud\sound\tooltips\VZR027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601A, ) FILE "helpaud\sound\tooltips\VZR028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601B, ) FILE "helpaud\sound\tooltips\VZR029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601C, ) FILE "helpaud\sound\tooltips\VZR041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601D, ) FILE "helpaud\sound\tooltips\VZR042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601E, ) FILE "helpaud\sound\tooltips\VZR003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601F, ) FILE "helpaud\sound\tooltips\VZR009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076020, ) FILE "helpaud\sound\tooltips\VZR010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076021, ) FILE "helpaud\sound\tooltips\VZR011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076022, ) FILE "helpaud\sound\tooltips\VZR030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076023, ) FILE "helpaud\sound\tooltips\VZR031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076024, ) FILE "helpaud\sound\tooltips\VZR032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076025, ) FILE "helpaud\sound\tooltips\VZR033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076026, ) FILE "helpaud\sound\tooltips\VZR004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076027, ) FILE "helpaud\sound\tooltips\VZR012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076028, ) FILE "helpaud\sound\tooltips\VZR034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076029, ) FILE "helpaud\sound\tooltips\VZR035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602A, ) FILE "helpaud\sound\tooltips\VZR036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602B, ) FILE "helpaud\sound\tooltips\VZR037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602C, ) FILE "helpaud\sound\tooltips\VZR038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602D, ) FILE "helpaud\sound\tooltips\VZR039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602E, ) FILE "helpaud\sound\tooltips\VZR040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602F, ) FILE "helpaud\sound\tooltips\VZR114.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076030, ) FILE "helpaud\sound\tooltips\VZR115.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076031, ) FILE "helpaud\sound\tooltips\VZR043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076033, ) FILE "helpaud\sound\tooltips\VZR016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076035, ) FILE "helpaud\sound\tooltips\VZR045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076036, ) FILE "helpaud\sound\tooltips\VZR046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076037, ) FILE "helpaud\sound\tooltips\VZR047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076038, ) FILE "helpaud\sound\tooltips\VZR048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076039, ) FILE "helpaud\sound\tooltips\VZR060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603A, ) FILE "helpaud\sound\tooltips\VZR061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603B, ) FILE "helpaud\sound\tooltips\VZR062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603C, ) FILE "helpaud\sound\tooltips\VZR063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603D, ) FILE "helpaud\sound\tooltips\VZR064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603E, ) FILE "helpaud\sound\tooltips\VZR066.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603F, ) FILE "helpaud\sound\tooltips\VZR065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076040, ) FILE "helpaud\sound\tooltips\VZR067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076041, ) FILE "helpaud\sound\tooltips\VZR068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076042, ) FILE "helpaud\sound\tooltips\VZR049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076043, ) FILE "helpaud\sound\tooltips\VZR069.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076044, ) FILE "helpaud\sound\tooltips\VZR070.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076045, ) FILE "helpaud\sound\tooltips\VZR071.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076046, ) FILE "helpaud\sound\tooltips\VZR072.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076047, ) FILE "helpaud\sound\tooltips\VZR050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076048, ) FILE "helpaud\sound\tooltips\VZR051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076049, ) FILE "helpaud\sound\tooltips\VZR052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604A, ) FILE "helpaud\sound\tooltips\VZR116.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604B, ) FILE "helpaud\sound\tooltips\VZR117.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604C, ) FILE "helpaud\sound\tooltips\VZR118.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604D, ) FILE "helpaud\sound\tooltips\VZR119.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604E, ) FILE "helpaud\sound\tooltips\VZR120.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604F, ) FILE "helpaud\sound\tooltips\VZR121.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076050, ) FILE "helpaud\sound\tooltips\VZR122.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076051, ) FILE "helpaud\sound\tooltips\VZR123.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076052, ) FILE "helpaud\sound\tooltips\VZR124.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076053, ) FILE "helpaud\sound\tooltips\VZR125.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076054, ) FILE "helpaud\sound\tooltips\VZR126.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076055, ) FILE "helpaud\sound\tooltips\VZR127.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076056, ) FILE "helpaud\sound\tooltips\VZR128.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075550, ) FILE "helpaud\sound\tooltips\VMR001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075551, ) FILE "helpaud\sound\tooltips\VMR002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075552, ) FILE "helpaud\sound\tooltips\VMR003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075553, ) FILE "helpaud\sound\tooltips\VMR004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075554, ) FILE "helpaud\sound\tooltips\VMR005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075555, ) FILE "helpaud\sound\tooltips\VMR006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075556, ) FILE "helpaud\sound\tooltips\VMR007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075557, ) FILE "helpaud\sound\tooltips\VMR008.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x00075400, ) FILE "helpaud\sound\tooltips\VZR073.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075402, ) FILE "helpaud\sound\tooltips\VZR074.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075403, ) FILE "helpaud\sound\tooltips\VZR075.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075404, ) FILE "helpaud\sound\tooltips\VZR076.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075405, ) FILE "helpaud\sound\tooltips\VZR077.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075406, ) FILE "helpaud\sound\tooltips\VZR078.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075407, ) FILE "helpaud\sound\tooltips\VZR079.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075408, ) FILE "helpaud\sound\tooltips\VZR080.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075409, ) FILE "helpaud\sound\tooltips\VZR081.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540A, ) FILE "helpaud\sound\tooltips\VZR082.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540B, ) FILE "helpaud\sound\tooltips\VZR083.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540D, ) FILE "helpaud\sound\tooltips\VZR084.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540E, ) FILE "helpaud\sound\tooltips\VZR085.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540F, ) FILE "helpaud\sound\tooltips\VZR086.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075410, ) FILE "helpaud\sound\tooltips\VZR087.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075411, ) FILE "helpaud\sound\tooltips\VZR088.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075412, ) FILE "helpaud\sound\tooltips\VZR089.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075413, ) FILE "helpaud\sound\tooltips\VZR090.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075414, ) FILE "helpaud\sound\tooltips\VZR091.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075415, ) FILE "helpaud\sound\tooltips\VZR092.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075416, ) FILE "helpaud\sound\tooltips\VZR093.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075417, ) FILE "helpaud\sound\tooltips\VZR094.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075418, ) FILE "helpaud\sound\tooltips\VZR095.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075419, ) FILE "helpaud\sound\tooltips\VZR096.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541A, ) FILE "helpaud\sound\tooltips\VZR097.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541B, ) FILE "helpaud\sound\tooltips\VZR104.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541E, ) FILE "helpaud\sound\tooltips\VZR099.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541F, ) FILE "helpaud\sound\tooltips\VZR100.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075420, ) FILE "helpaud\sound\tooltips\VZR101.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075421, ) FILE "helpaud\sound\tooltips\VZR102.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075424, ) FILE "helpaud\sound\tooltips\VZR103.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075425, ) FILE "helpaud\sound\tooltips\VZR098.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075428, ) FILE "helpaud\sound\tooltips\VZR105.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075429, ) FILE "helpaud\sound\tooltips\VZR106.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007542A, ) FILE "helpaud\sound\tooltips\VZR107.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007542D, ) FILE "helpaud\sound\tooltips\VZR108.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075430, ) FILE "helpaud\sound\tooltips\VZR109.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x00076057, ) FILE "helpaud\sound\tooltips\VZR112.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076058, ) FILE "helpaud\sound\tooltips\VZR110.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076059, ) FILE "helpaud\sound\tooltips\VZR111.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007605A, ) FILE "helpaud\sound\tooltips\VZR046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007605B, ) FILE "helpaud\sound\tooltips\VZR113.WAV" ENDCHUNK -#line 16 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wcbasics.cht" - -CHUNK( 'WAVE', 0x00075480, ) FILE "helpaud\sound\basics\VZH1001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075481, ) FILE "helpaud\sound\basics\VZH1002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075482, ) FILE "helpaud\sound\basics\VZH1003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075483, ) FILE "helpaud\sound\basics\VZH1004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075484, ) FILE "helpaud\sound\basics\VZH1005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075485, ) FILE "helpaud\sound\basics\VZH1006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075486, ) FILE "helpaud\sound\basics\VZH1007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075487, ) FILE "helpaud\sound\basics\VZH1008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075488, ) FILE "helpaud\sound\basics\VZH1009.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x0007548A, ) FILE "helpaud\sound\basics\VZH1010.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x0007548C, ) FILE "helpaud\sound\basics\VZH1011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007548D, ) FILE "helpaud\sound\basics\VZH1012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007548E, ) FILE "helpaud\sound\basics\VZH1014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007548F, ) FILE "helpaud\sound\basics\VZH1015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075490, ) FILE "helpaud\sound\basics\VZH1013.WAV" ENDCHUNK -#line 17 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wctoolhp.cht" - -CHUNK( 'WAVE', 0x00075500, ) FILE "helpaud\sound\toolhelp\VZH3001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075501, ) FILE "helpaud\sound\toolhelp\VZH3002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075502, ) FILE "helpaud\sound\toolhelp\VZH3003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075503, ) FILE "helpaud\sound\toolhelp\VZH3004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075504, ) FILE "helpaud\sound\toolhelp\VZH3005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075505, ) FILE "helpaud\sound\toolhelp\VZH3006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075506, ) FILE "helpaud\sound\toolhelp\VZH3007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075507, ) FILE "helpaud\sound\toolhelp\VZH3008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075508, ) FILE "helpaud\sound\toolhelp\VZH3009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075509, ) FILE "helpaud\sound\toolhelp\VZH3010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550A, ) FILE "helpaud\sound\toolhelp\VZH3011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550B, ) FILE "helpaud\sound\toolhelp\VZH3012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550C, ) FILE "helpaud\sound\toolhelp\VZH3013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550D, ) FILE "helpaud\sound\toolhelp\VZH3014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550E, ) FILE "helpaud\sound\toolhelp\VZH3015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550F, ) FILE "helpaud\sound\toolhelp\VZH3016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075510, ) FILE "helpaud\sound\tooltips\VZR057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075511, ) FILE "helpaud\sound\toolhelp\VZH3018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075512, ) FILE "helpaud\sound\toolhelp\VZH3019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075513, ) FILE "helpaud\sound\toolhelp\VZH3020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075514, ) FILE "helpaud\sound\toolhelp\VZH3021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075515, ) FILE "helpaud\sound\toolhelp\VZH3022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075516, ) FILE "helpaud\sound\toolhelp\VZH3023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075517, ) FILE "helpaud\sound\toolhelp\VZH3024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075518, ) FILE "helpaud\sound\toolhelp\VZH3025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075519, ) FILE "helpaud\sound\toolhelp\VZH3026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551A, ) FILE "helpaud\sound\toolhelp\VZH3027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551B, ) FILE "helpaud\sound\toolhelp\VZH3028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551C, ) FILE "helpaud\sound\toolhelp\VZH3029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551D, ) FILE "helpaud\sound\toolhelp\VZH3030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551E, ) FILE "helpaud\sound\toolhelp\VZH3031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551F, ) FILE "helpaud\sound\toolhelp\VZH3032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075520, ) FILE "helpaud\sound\toolhelp\VZH3033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075521, ) FILE "helpaud\sound\toolhelp\VZH3034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075522, ) FILE "helpaud\sound\toolhelp\VZH3035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075523, ) FILE "helpaud\sound\toolhelp\VZH3036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075524, ) FILE "helpaud\sound\toolhelp\VZH3037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075525, ) FILE "helpaud\sound\toolhelp\VZH3038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075526, ) FILE "helpaud\sound\toolhelp\VZH3039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075527, ) FILE "helpaud\sound\toolhelp\VZH3040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075528, ) FILE "helpaud\sound\toolhelp\VZH3041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075529, ) FILE "helpaud\sound\toolhelp\VZH3042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552A, ) FILE "helpaud\sound\toolhelp\VZH3043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552B, ) FILE "helpaud\sound\toolhelp\VZH3044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552C, ) FILE "helpaud\sound\toolhelp\VZH3045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552D, ) FILE "helpaud\sound\toolhelp\VZH3046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552E, ) FILE "helpaud\sound\toolhelp\VZH3047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552F, ) FILE "helpaud\sound\toolhelp\VZH3048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075530, ) FILE "helpaud\sound\toolhelp\VZH3049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075531, ) FILE "helpaud\sound\toolhelp\VZH3050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075532, ) FILE "helpaud\sound\toolhelp\VZH3051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075533, ) FILE "helpaud\sound\toolhelp\VZH3052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075534, ) FILE "helpaud\sound\toolhelp\VZH3053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075535, ) FILE "helpaud\sound\toolhelp\VZH3054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075536, ) FILE "helpaud\sound\toolhelp\VZH3055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075537, ) FILE "helpaud\sound\toolhelp\VZH3056.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075538, ) FILE "helpaud\sound\toolhelp\VZH3057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075539, ) FILE "helpaud\sound\toolhelp\VZH3058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553A, ) FILE "helpaud\sound\toolhelp\VZH3059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553B, ) FILE "helpaud\sound\toolhelp\VZH3060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553C, ) FILE "helpaud\sound\toolhelp\VZH3061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553D, ) FILE "helpaud\sound\toolhelp\VZH3062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553E, ) FILE "helpaud\sound\toolhelp\VZH3063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553F, ) FILE "helpaud\sound\toolhelp\VZH3064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075540, ) FILE "helpaud\sound\toolhelp\VZH3065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075541, ) FILE "helpaud\sound\toolhelp\VZH3066.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075542, ) FILE "helpaud\sound\toolhelp\VZH3067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075543, ) FILE "helpaud\sound\toolhelp\VZH3068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075547, ) FILE "helpaud\sound\toolhelp\VZH3069.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075548, ) FILE "helpaud\sound\toolhelp\VZH3070.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075549, ) FILE "helpaud\sound\toolhelp\VZH3075.WAV" ENDCHUNK - -#line 18 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wcgdelgo.cht" - -CHUNK( 'WAVE', 0x00075000, ) FILE "helpaud\sound\logo\VMP0001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075001, ) FILE "helpaud\sound\logo\VMP0001A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075002, ) FILE "helpaud\sound\logo\VMP0002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075004, ) FILE "helpaud\sound\logo\VMP0003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075005, ) FILE "helpaud\sound\logo\VMP0004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075006, ) FILE "helpaud\sound\logo\VMP0005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075007, ) FILE "helpaud\sound\logo\VMP0006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075008, ) FILE "helpaud\sound\logo\VMP0007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075009, ) FILE "helpaud\sound\logo\VMP0008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500A, ) FILE "helpaud\sound\logo\VMP0009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500B, ) FILE "helpaud\sound\logo\VMP0010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500C, ) FILE "helpaud\sound\logo\VMP0011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500D, ) FILE "helpaud\sound\logo\VMP0012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500E, ) FILE "helpaud\sound\logo\VMP0013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500F, ) FILE "helpaud\sound\logo\VMP0014.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075090, ) FILE "helpaud\sound\guidhelp\VZG001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075091, ) FILE "helpaud\sound\guidhelp\VZG002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075092, ) FILE "helpaud\sound\guidhelp\VZG003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075093, ) FILE "helpaud\sound\guidhelp\VZG004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075094, ) FILE "helpaud\sound\guidhelp\VZG005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075095, ) FILE "helpaud\sound\guidhelp\VZG006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075096, ) FILE "helpaud\sound\guidhelp\VZG007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075097, ) FILE "helpaud\sound\guidhelp\VZG008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075098, ) FILE "helpaud\sound\guidhelp\VZG009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075099, ) FILE "helpaud\sound\guidhelp\VZG010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007509A, ) FILE "helpaud\sound\guidhelp\VZG011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007509B, ) FILE "helpaud\sound\guidhelp\VZG012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007509C, ) FILE "helpaud\sound\guidhelp\VZG013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750A3, ) FILE "helpaud\sound\guidhelp\VZG014.WAV" ENDCHUNK -#line 19 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wcproj.cht" - - -CHUNK( 'WAVE', 0x00075271, ) FILE "helpaud\sound\projects\Vmp1003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075273, ) FILE "helpaud\sound\projects\VMP1004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075274, ) FILE "helpaud\sound\projects\VMP1005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075275, ) FILE "helpaud\sound\projects\VMP1006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075276, ) FILE "helpaud\sound\projects\VMP1007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075277, ) FILE "helpaud\sound\projects\VMP1008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075278, ) FILE "helpaud\sound\projects\VMP1009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075279, ) FILE "helpaud\sound\projects\VMP1010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527A, ) FILE "helpaud\sound\projects\VMP1011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527B, ) FILE "helpaud\sound\projects\VMP1012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527D, ) FILE "helpaud\sound\projects\VMP1013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527E, ) FILE "helpaud\sound\projects\VMP1014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527F, ) FILE "helpaud\sound\projects\VMP1015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075280, ) FILE "helpaud\sound\projects\VMP1016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075281, ) FILE "helpaud\sound\projects\VMP1017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075282, ) FILE "helpaud\sound\projects\VMP1018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075284, ) FILE "helpaud\sound\projects\VMP1019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075286, ) FILE "helpaud\sound\projects\VMP1020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075287, ) FILE "helpaud\sound\projects\VMP1021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075288, ) FILE "helpaud\sound\projects\VMP1022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075289, ) FILE "helpaud\sound\projects\VMP1023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528B, ) FILE "helpaud\sound\projects\VMP1024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528C, ) FILE "helpaud\sound\projects\VMP1025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528D, ) FILE "helpaud\sound\projects\VMP1026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528F, ) FILE "helpaud\sound\projects\VMP1027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075290, ) FILE "helpaud\sound\projects\VMP1041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075292, ) FILE "helpaud\sound\projects\VMP1002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075293, ) FILE "helpaud\sound\projects\VMP1028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075294, ) FILE "helpaud\sound\projects\VMP1029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075295, ) FILE "helpaud\sound\projects\VMP1030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075296, ) FILE "helpaud\sound\projects\VMP1031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075297, ) FILE "helpaud\sound\projects\VMP1032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075299, ) FILE "helpaud\sound\projects\VMP1033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529A, ) FILE "helpaud\sound\projects\VMP1034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529B, ) FILE "helpaud\sound\projects\VMP1035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529C, ) FILE "helpaud\sound\projects\VMP1036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529D, ) FILE "helpaud\sound\projects\VMP1037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529F, ) FILE "helpaud\sound\projects\VMP1038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752AA, ) FILE "helpaud\sound\projects\VMP1039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752AB, ) FILE "helpaud\sound\projects\VMP1040.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000752B0, ) FILE "helpaud\sound\projects\Vmp3002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B1, ) FILE "helpaud\sound\projects\Vmp3003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B3, ) FILE "helpaud\sound\projects\Vmp3004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B4, ) FILE "helpaud\sound\projects\Vmp3005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B5, ) FILE "helpaud\sound\projects\Vmp3006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B6, ) FILE "helpaud\sound\projects\Vmp3007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B8, ) FILE "helpaud\sound\projects\Vmp3008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BA, ) FILE "helpaud\sound\projects\Vmp3009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BB, ) FILE "helpaud\sound\projects\Vmp3010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BC, ) FILE "helpaud\sound\projects\Vmp3011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BD, ) FILE "helpaud\sound\projects\Vmp3012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BE, ) FILE "helpaud\sound\projects\Vmp3013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C0, ) FILE "helpaud\sound\projects\Vmp3014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C1, ) FILE "helpaud\sound\projects\Vmp3015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C3, ) FILE "helpaud\sound\projects\Vmp3016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C4, ) FILE "helpaud\sound\projects\Vmp3017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C5, ) FILE "helpaud\sound\projects\Vmp3018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C6, ) FILE "helpaud\sound\projects\Vmp3019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752DB, ) FILE "helpaud\sound\projects\Vmp3020.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075250, ) FILE "helpaud\sound\projects\Vmp2002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075251, ) FILE "helpaud\sound\projects\Vmp2003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075253, ) FILE "helpaud\sound\projects\Vmp2004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075254, ) FILE "helpaud\sound\projects\Vmp2005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075255, ) FILE "helpaud\sound\projects\Vmp2006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075256, ) FILE "helpaud\sound\projects\Vmp2007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075257, ) FILE "helpaud\sound\projects\Vmp2008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075258, ) FILE "helpaud\sound\projects\Vmp2009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075259, ) FILE "helpaud\sound\projects\Vmp2011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525A, ) FILE "helpaud\sound\projects\Vmp2014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525C, ) FILE "helpaud\sound\projects\Vmp2019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525E, ) FILE "helpaud\sound\projects\Vmp2015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525F, ) FILE "helpaud\sound\projects\Vmp2016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075260, ) FILE "helpaud\sound\projects\Vmp2017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075262, ) FILE "helpaud\sound\projects\Vmp2018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075263, ) FILE "helpaud\sound\projects\Vmp2020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075265, ) FILE "helpaud\sound\projects\Vmp2025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075266, ) FILE "helpaud\sound\projects\Vmp2021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075267, ) FILE "helpaud\sound\projects\Vmp2022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075268, ) FILE "helpaud\sound\projects\Vmp2023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075269, ) FILE "helpaud\sound\projects\Vmp2024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007526A, ) FILE "helpaud\sound\projects\Vmp2026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007526D, ) FILE "helpaud\sound\projects\Vmp2027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007526F, ) FILE "helpaud\sound\projects\Vmp2029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752A1, ) FILE "helpaud\sound\projects\Vmp2010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752A2, ) FILE "helpaud\sound\projects\Vmp2013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752A3, ) FILE "helpaud\sound\projects\Vmp2028.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000752F0, ) FILE "helpaud\sound\projects\Vmp6002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752F1, ) FILE "helpaud\sound\projects\Vmp6003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752F3, ) FILE "helpaud\sound\projects\Vmp6005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752F7, ) FILE "helpaud\sound\projects\Vmp6009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FA, ) FILE "helpaud\sound\projects\Vmp6011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FB, ) FILE "helpaud\sound\projects\Vmp6012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FC, ) FILE "helpaud\sound\projects\Vmp6013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FF, ) FILE "helpaud\sound\projects\Vmp6015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075301, ) FILE "helpaud\sound\projects\Vmp6016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075302, ) FILE "helpaud\sound\projects\Vmp6017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075304, ) FILE "helpaud\sound\projects\Vmp6018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075306, ) FILE "helpaud\sound\projects\Vmp6019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075307, ) FILE "helpaud\sound\projects\Vmp6020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075308, ) FILE "helpaud\sound\projects\Vmp6021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075309, ) FILE "helpaud\sound\projects\Vmp6022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530A, ) FILE "helpaud\sound\projects\Vmp6023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530B, ) FILE "helpaud\sound\projects\Vmp6024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530D, ) FILE "helpaud\sound\projects\Vmp6025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530E, ) FILE "helpaud\sound\projects\Vmp6026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530F, ) FILE "helpaud\sound\projects\Vmp6027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075310, ) FILE "helpaud\sound\projects\Vmp6028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075311, ) FILE "helpaud\sound\projects\Vmp6029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075312, ) FILE "helpaud\sound\projects\Vmp6030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075317, ) FILE "helpaud\sound\projects\Vmp6032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075319, ) FILE "helpaud\sound\projects\Vmp6033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007531C, ) FILE "helpaud\sound\projects\Vmp6036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007531E, ) FILE "helpaud\sound\projects\Vmp6037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075320, ) FILE "helpaud\sound\projects\Vmp6039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075321, ) FILE "helpaud\sound\projects\Vmp6040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075322, ) FILE "helpaud\sound\projects\Vmp6041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075323, ) FILE "helpaud\sound\projects\Vmp6042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075324, ) FILE "helpaud\sound\projects\Vmp6043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075325, ) FILE "helpaud\sound\projects\Vmp6044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075327, ) FILE "helpaud\sound\projects\Vmp6046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075329, ) FILE "helpaud\sound\projects\Vmp6048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007532C, ) FILE "helpaud\sound\projects\Vmp6049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007532E, ) FILE "helpaud\sound\projects\Vmp6043A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007532F, ) FILE "helpaud\sound\projects\Vmp6043b.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075330, ) FILE "helpaud\sound\projects\Vmp5047a.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075331, ) FILE "helpaud\sound\projects\Vmp5002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075332, ) FILE "helpaud\sound\projects\Vmp5003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075335, ) FILE "helpaud\sound\projects\Vmp5004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075336, ) FILE "helpaud\sound\projects\Vmp5005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075337, ) FILE "helpaud\sound\projects\Vmp5006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075339, ) FILE "helpaud\sound\projects\Vmp5008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533A, ) FILE "helpaud\sound\projects\Vmp5009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533B, ) FILE "helpaud\sound\projects\Vmp5010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533C, ) FILE "helpaud\sound\projects\Vmp5011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533D, ) FILE "helpaud\sound\projects\Vmp5012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533E, ) FILE "helpaud\sound\projects\Vmp5013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533F, ) FILE "helpaud\sound\projects\Vmp5014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075340, ) FILE "helpaud\sound\projects\Vmp5015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075341, ) FILE "helpaud\sound\projects\Vmp5016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075342, ) FILE "helpaud\sound\projects\Vmp5017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075343, ) FILE "helpaud\sound\projects\Vmp5018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075344, ) FILE "helpaud\sound\projects\Vmp5019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075346, ) FILE "helpaud\sound\projects\Vmp5020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075347, ) FILE "helpaud\sound\projects\Vmp5021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075348, ) FILE "helpaud\sound\projects\Vmp5022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075349, ) FILE "helpaud\sound\projects\Vmp5023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534A, ) FILE "helpaud\sound\projects\Vmp5024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534C, ) FILE "helpaud\sound\projects\Vmp5025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534D, ) FILE "helpaud\sound\projects\Vmp5026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534E, ) FILE "helpaud\sound\projects\Vmp5027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534F, ) FILE "helpaud\sound\projects\Vmp5028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075350, ) FILE "helpaud\sound\projects\Vmp5029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075351, ) FILE "helpaud\sound\projects\Vmp5030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075352, ) FILE "helpaud\sound\projects\Vmp5031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075354, ) FILE "helpaud\sound\projects\Vmp5032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075356, ) FILE "helpaud\sound\projects\Vmp5033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075357, ) FILE "helpaud\sound\projects\Vmp5034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075358, ) FILE "helpaud\sound\projects\Vmp5035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075359, ) FILE "helpaud\sound\projects\Vmp5036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535A, ) FILE "helpaud\sound\projects\Vmp5037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535B, ) FILE "helpaud\sound\projects\Vmp5038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535D, ) FILE "helpaud\sound\projects\Vmp5039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535E, ) FILE "helpaud\sound\projects\Vmp5040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535F, ) FILE "helpaud\sound\projects\Vmp5041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075360, ) FILE "helpaud\sound\projects\Vmp5042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075361, ) FILE "helpaud\sound\projects\Vmp5043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075362, ) FILE "helpaud\sound\projects\Vmp5044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075363, ) FILE "helpaud\sound\projects\Vmp5045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075364, ) FILE "helpaud\sound\projects\Vmp5046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075366, ) FILE "helpaud\sound\projects\Vmp5047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075367, ) FILE "helpaud\sound\projects\Vmp5048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075368, ) FILE "helpaud\sound\projects\Vmp5049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075369, ) FILE "helpaud\sound\projects\Vmp5050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007536C, ) FILE "helpaud\sound\projects\Vmp5051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007536D, ) FILE "helpaud\sound\projects\Vmp5052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007536E, ) FILE "helpaud\sound\projects\Vmp5053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075370, ) FILE "helpaud\sound\projects\Vmp5054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075381, ) FILE "helpaud\sound\projects\Vmp5055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075382, ) FILE "helpaud\sound\projects\Vmp5056.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075383, ) FILE "helpaud\sound\projects\Vmp5057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075385, ) FILE "helpaud\sound\projects\Vmp5058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075386, ) FILE "helpaud\sound\projects\Vmp5059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075387, ) FILE "helpaud\sound\projects\Vmp5060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075388, ) FILE "helpaud\sound\projects\Vmp5061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075389, ) FILE "helpaud\sound\projects\Vmp5062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538B, ) FILE "helpaud\sound\projects\Vmp5063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538C, ) FILE "helpaud\sound\projects\Vmp5064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538D, ) FILE "helpaud\sound\projects\Vmp5065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538F, ) FILE "helpaud\sound\projects\Vmp5067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075390, ) FILE "helpaud\sound\projects\Vmp5068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075391, ) FILE "helpaud\sound\projects\Vmp5048.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075441, ) FILE "helpaud\sound\projects\Vmp4002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075442, ) FILE "helpaud\sound\projects\Vmp4003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075445, ) FILE "helpaud\sound\projects\Vmp4004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075446, ) FILE "helpaud\sound\projects\Vmp4005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075447, ) FILE "helpaud\sound\projects\Vmp4006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075448, ) FILE "helpaud\sound\projects\Vmp4007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075449, ) FILE "helpaud\sound\projects\Vmp4008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544B, ) FILE "helpaud\sound\projects\Vmp4010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544D, ) FILE "helpaud\sound\projects\Vmp4011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544E, ) FILE "helpaud\sound\projects\Vmp4012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544F, ) FILE "helpaud\sound\projects\Vmp4013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075450, ) FILE "helpaud\sound\projects\Vmp4014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075451, ) FILE "helpaud\sound\projects\Vmp4015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075452, ) FILE "helpaud\sound\projects\Vmp4016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075453, ) FILE "helpaud\sound\projects\Vmp4017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075454, ) FILE "helpaud\sound\projects\Vmp4018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075455, ) FILE "helpaud\sound\projects\Vmp4019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075456, ) FILE "helpaud\sound\projects\Vmp4020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075458, ) FILE "helpaud\sound\projects\Vmp4021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075459, ) FILE "helpaud\sound\projects\Vmp4022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545A, ) FILE "helpaud\sound\projects\Vmp4023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545B, ) FILE "helpaud\sound\projects\Vmp4024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545C, ) FILE "helpaud\sound\projects\Vmp4025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545D, ) FILE "helpaud\sound\projects\Vmp4026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545F, ) FILE "helpaud\sound\projects\Vmp4027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075460, ) FILE "helpaud\sound\projects\Vmp4028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075461, ) FILE "helpaud\sound\projects\Vmp4029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075464, ) FILE "helpaud\sound\projects\Vmp4030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075465, ) FILE "helpaud\sound\projects\Vmp4031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075466, ) FILE "helpaud\sound\projects\Vmp4032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075468, ) FILE "helpaud\sound\projects\Vmp4033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075469, ) FILE "helpaud\sound\projects\Vmp4034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546A, ) FILE "helpaud\sound\projects\Vmp4037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546B, ) FILE "helpaud\sound\projects\Vmp4038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546C, ) FILE "helpaud\sound\projects\Vmp4039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546D, ) FILE "helpaud\sound\projects\Vmp4040.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000750B0, ) FILE "helpaud\sound\projects\VMPA001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750B1, ) FILE "helpaud\sound\projects\VMPA002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750B2, ) FILE "helpaud\sound\projects\VZA001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750B4, ) FILE "helpaud\sound\projects\VMPA002.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000750CB, ) FILE "helpaud\sound\projects\VMK010.WAV" ENDCHUNK -#line 20 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wchowto.cht" - - -CHUNK( 'WAVE', 0x00075030, ) FILE "helpaud\sound\howto\VZH2001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075031, ) FILE "helpaud\sound\howto\VZH2002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075032, ) FILE "helpaud\sound\howto\VZH2003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075033, ) FILE "helpaud\sound\howto\VZH2004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075034, ) FILE "helpaud\sound\howto\VZH2005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075035, ) FILE "helpaud\sound\howto\VZH2006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075036, ) FILE "helpaud\sound\howto\VZH2007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075037, ) FILE "helpaud\sound\howto\VZH2008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075038, ) FILE "helpaud\sound\howto\VZH2009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075039, ) FILE "helpaud\sound\howto\VZH2010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503A, ) FILE "helpaud\sound\howto\VZH2011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503B, ) FILE "helpaud\sound\howto\VZH2012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503C, ) FILE "helpaud\sound\howto\VZH2013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503D, ) FILE "helpaud\sound\howto\VZH2014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503F, ) FILE "helpaud\sound\howto\VZH2015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075040, ) FILE "helpaud\sound\howto\VZH2016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075041, ) FILE "helpaud\sound\howto\VZH2017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075042, ) FILE "helpaud\sound\howto\VZH2018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075043, ) FILE "helpaud\sound\howto\VZH2019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075044, ) FILE "helpaud\sound\howto\VZH2020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075045, ) FILE "helpaud\sound\howto\VZH2021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075046, ) FILE "helpaud\sound\howto\VZH2022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075047, ) FILE "helpaud\sound\howto\VZH2023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075048, ) FILE "helpaud\sound\howto\VZH2024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075049, ) FILE "helpaud\sound\howto\VZH2025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504A, ) FILE "helpaud\sound\howto\VZH2026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504B, ) FILE "helpaud\sound\howto\VZH2027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504C, ) FILE "helpaud\sound\howto\VZH2028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504D, ) FILE "helpaud\sound\howto\VZH2029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504E, ) FILE "helpaud\sound\howto\VZH2030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504F, ) FILE "helpaud\sound\howto\VZH2031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075050, ) FILE "helpaud\sound\howto\VZH2032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075051, ) FILE "helpaud\sound\howto\VZH2033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075052, ) FILE "helpaud\sound\howto\VZH2034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075053, ) FILE "helpaud\sound\howto\VZH2035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075054, ) FILE "helpaud\sound\howto\VZH2036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075055, ) FILE "helpaud\sound\howto\VZH2037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075056, ) FILE "helpaud\sound\howto\VZH2038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075057, ) FILE "helpaud\sound\howto\VZH2039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075059, ) FILE "helpaud\sound\howto\VZH2040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007505A, ) FILE "helpaud\sound\howto\VZH2041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007505B, ) FILE "helpaud\sound\howto\VZH2042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075068, ) FILE "helpaud\sound\howto\VZH2003A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075069, ) FILE "helpaud\sound\howto\VZH2252.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506A, ) FILE "helpaud\sound\howto\VZH2253.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506B, ) FILE "helpaud\sound\howto\VZH2254.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506C, ) FILE "helpaud\sound\howto\VZH2255.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506D, ) FILE "helpaud\sound\howto\VZH2256.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506E, ) FILE "helpaud\sound\howto\VZH2257.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506F, ) FILE "helpaud\sound\howto\VZH2258.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075070, ) FILE "helpaud\sound\howto\VZH2004A.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000750D0, ) FILE "helpaud\sound\howto\VZH2043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D1, ) FILE "helpaud\sound\howto\VZH2044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D2, ) FILE "helpaud\sound\howto\VZH2045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D3, ) FILE "helpaud\sound\howto\VZH2046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D4, ) FILE "helpaud\sound\howto\VZH2047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D5, ) FILE "helpaud\sound\howto\VZH2048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D6, ) FILE "helpaud\sound\howto\VZH2049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D7, ) FILE "helpaud\sound\howto\VZH2050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D8, ) FILE "helpaud\sound\howto\VZH2051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D9, ) FILE "helpaud\sound\howto\VZH2052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750DB, ) FILE "helpaud\sound\howto\VZH2053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750DC, ) FILE "helpaud\sound\howto\VZH2054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750DD, ) FILE "helpaud\sound\howto\VZH2055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E1, ) FILE "helpaud\sound\howto\VZH2057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E2, ) FILE "helpaud\sound\howto\VZH2058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E3, ) FILE "helpaud\sound\howto\VZH2059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E4, ) FILE "helpaud\sound\howto\VZH2060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E5, ) FILE "helpaud\sound\howto\VZH2061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E6, ) FILE "helpaud\sound\howto\VZH2062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E7, ) FILE "helpaud\sound\howto\VZH2063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E8, ) FILE "helpaud\sound\howto\VZH2064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E9, ) FILE "helpaud\sound\howto\VZH2065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EB, ) FILE "helpaud\sound\howto\VZH2075.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EC, ) FILE "helpaud\sound\howto\VZH2067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750ED, ) FILE "helpaud\sound\howto\VZH2068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EE, ) FILE "helpaud\sound\howto\VZH2069.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EF, ) FILE "helpaud\sound\howto\VZH2070.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F0, ) FILE "helpaud\sound\howto\VZH2071.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F1, ) FILE "helpaud\sound\howto\VZH2072.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F2, ) FILE "helpaud\sound\howto\VZH2073.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F3, ) FILE "helpaud\sound\howto\VZH2074.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F4, ) FILE "helpaud\sound\howto\VZH2075.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F5, ) FILE "helpaud\sound\howto\VZH2076.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750FA, ) FILE "helpaud\sound\howto\VZH2077.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750FB, ) FILE "helpaud\sound\howto\VZH2079.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750FC, ) FILE "helpaud\sound\howto\VZH2080.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075100, ) FILE "helpaud\sound\howto\VZH2081.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075101, ) FILE "helpaud\sound\howto\VZH2082.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075102, ) FILE "helpaud\sound\howto\VZH2083.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075103, ) FILE "helpaud\sound\howto\VZH2084.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075104, ) FILE "helpaud\sound\howto\VZH2085.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075105, ) FILE "helpaud\sound\howto\VZH2086.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075106, ) FILE "helpaud\sound\howto\VZH2087.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075107, ) FILE "helpaud\sound\howto\VZH2088.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075108, ) FILE "helpaud\sound\howto\VZH2089.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075109, ) FILE "helpaud\sound\howto\VZH2090.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510A, ) FILE "helpaud\sound\howto\VZH2091.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510B, ) FILE "helpaud\sound\howto\VZH2092.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510C, ) FILE "helpaud\sound\howto\VZH2093.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510D, ) FILE "helpaud\sound\howto\VZH2094.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510E, ) FILE "helpaud\sound\howto\VZH2095.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510F, ) FILE "helpaud\sound\howto\VZH2096.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075110, ) FILE "helpaud\sound\howto\VZH2097.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075111, ) FILE "helpaud\sound\howto\VZH2098.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075112, ) FILE "helpaud\sound\howto\VZH2099.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075113, ) FILE "helpaud\sound\howto\VZH2100.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075114, ) FILE "helpaud\sound\howto\VZH2101.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075115, ) FILE "helpaud\sound\howto\VZH2102.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075116, ) FILE "helpaud\sound\howto\VZH2103.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075117, ) FILE "helpaud\sound\howto\VZH2104.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075118, ) FILE "helpaud\sound\howto\VZH2105.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075119, ) FILE "helpaud\sound\howto\VZH2106.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511A, ) FILE "helpaud\sound\howto\VZH2107.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511B, ) FILE "helpaud\sound\howto\VZH2108.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511C, ) FILE "helpaud\sound\howto\VZH2109.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511D, ) FILE "helpaud\sound\howto\VZH2110.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511E, ) FILE "helpaud\sound\howto\VZH2111.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511F, ) FILE "helpaud\sound\howto\VZH2112.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075120, ) FILE "helpaud\sound\howto\VZH2113.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075121, ) FILE "helpaud\sound\howto\VZH2114.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075122, ) FILE "helpaud\sound\howto\VZH2115.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075123, ) FILE "helpaud\sound\howto\VZH2116.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075124, ) FILE "helpaud\sound\howto\VZH2117.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075125, ) FILE "helpaud\sound\howto\VZH2118.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075126, ) FILE "helpaud\sound\howto\VZH2119.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075127, ) FILE "helpaud\sound\howto\VZH2120.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075128, ) FILE "helpaud\sound\howto\VZH2121.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075129, ) FILE "helpaud\sound\howto\VZH2122.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512A, ) FILE "helpaud\sound\howto\VZH2123.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512B, ) FILE "helpaud\sound\howto\VZH2124.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512C, ) FILE "helpaud\sound\howto\VZH2125.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512D, ) FILE "helpaud\sound\howto\VZH2126.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512E, ) FILE "helpaud\sound\howto\VZH2127.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512F, ) FILE "helpaud\sound\howto\VZH2128.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075130, ) FILE "helpaud\sound\howto\VZH2129.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075131, ) FILE "helpaud\sound\howto\VZH2130.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075132, ) FILE "helpaud\sound\howto\VZH2131.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075133, ) FILE "helpaud\sound\howto\VZH2132.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075134, ) FILE "helpaud\sound\howto\VZH2133.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075135, ) FILE "helpaud\sound\howto\VZH2134.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075136, ) FILE "helpaud\sound\howto\VZH2135.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075137, ) FILE "helpaud\sound\howto\VZH2136.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075138, ) FILE "helpaud\sound\howto\VZH2137.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075139, ) FILE "helpaud\sound\howto\VZH2138.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513A, ) FILE "helpaud\sound\howto\VZH2139.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513B, ) FILE "helpaud\sound\howto\VZH2140.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513C, ) FILE "helpaud\sound\howto\VZH2141.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513D, ) FILE "helpaud\sound\howto\VZH2142.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513E, ) FILE "helpaud\sound\howto\VZH2143.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513F, ) FILE "helpaud\sound\howto\VZH2144.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075140, ) FILE "helpaud\sound\howto\VZH2145.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075141, ) FILE "helpaud\sound\howto\VZH2146.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075142, ) FILE "helpaud\sound\howto\VZH2147.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075143, ) FILE "helpaud\sound\howto\VZH2148.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075144, ) FILE "helpaud\sound\howto\VZH2149.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075145, ) FILE "helpaud\sound\howto\VZH2150.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075147, ) FILE "helpaud\sound\howto\VZH2151.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075161, ) FILE "helpaud\sound\howto\VZH2078.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075200, ) FILE "helpaud\sound\howto\VZH2152.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075201, ) FILE "helpaud\sound\howto\VZH2153.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075203, ) FILE "helpaud\sound\howto\VZH2154.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075204, ) FILE "helpaud\sound\howto\VZH2155.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075205, ) FILE "helpaud\sound\howto\VZH2156.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075207, ) FILE "helpaud\sound\howto\VZH2157.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075208, ) FILE "helpaud\sound\howto\VZH2158.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075209, ) FILE "helpaud\sound\howto\VZH2159.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520B, ) FILE "helpaud\sound\howto\VZH2160.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520C, ) FILE "helpaud\sound\howto\VZH2161.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520D, ) FILE "helpaud\sound\howto\VZH2162.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520E, ) FILE "helpaud\sound\howto\VZH2163.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520F, ) FILE "helpaud\sound\howto\VZH2164.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075210, ) FILE "helpaud\sound\howto\VZH2165.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075211, ) FILE "helpaud\sound\howto\VZH2166.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075212, ) FILE "helpaud\sound\howto\VZH2167.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075213, ) FILE "helpaud\sound\howto\VZH2168.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075214, ) FILE "helpaud\sound\howto\VZH2169.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075215, ) FILE "helpaud\sound\howto\VZH2170.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075216, ) FILE "helpaud\sound\howto\VZH2171.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075217, ) FILE "helpaud\sound\howto\VZH2172.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075218, ) FILE "helpaud\sound\howto\VZH2173.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075219, ) FILE "helpaud\sound\howto\VZH2174.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521A, ) FILE "helpaud\sound\howto\VZH2175.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521C, ) FILE "helpaud\sound\howto\VZH2176.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521D, ) FILE "helpaud\sound\howto\VZH2177.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521E, ) FILE "helpaud\sound\howto\VZH2178.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521F, ) FILE "helpaud\sound\howto\VZH2179.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075220, ) FILE "helpaud\sound\howto\VZH2180.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075221, ) FILE "helpaud\sound\howto\VZH2181.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075222, ) FILE "helpaud\sound\howto\VZH2182.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075223, ) FILE "helpaud\sound\howto\VZH2183.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075224, ) FILE "helpaud\sound\howto\VZH2184.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075225, ) FILE "helpaud\sound\howto\VZH2185.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075226, ) FILE "helpaud\sound\howto\VZH2186.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075234, ) FILE "helpaud\sound\howto\VZH2259.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075235, ) FILE "helpaud\sound\howto\VZH2260.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075236, ) FILE "helpaud\sound\howto\VZH2261.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075237, ) FILE "helpaud\sound\howto\VZH2262.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075238, ) FILE "helpaud\sound\howto\VZH2165a.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075239, ) FILE "helpaud\sound\howto\VZH2168a.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075170, ) FILE "helpaud\sound\howto\VZH2187.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075171, ) FILE "helpaud\sound\howto\VZH2188.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075172, ) FILE "helpaud\sound\howto\VZH2189.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075173, ) FILE "helpaud\sound\howto\VZH2190.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075174, ) FILE "helpaud\sound\howto\VZH2191.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075175, ) FILE "helpaud\sound\howto\VZH2192.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075176, ) FILE "helpaud\sound\howto\VZH2193.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075177, ) FILE "helpaud\sound\howto\VZH2194.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075178, ) FILE "helpaud\sound\howto\VZH2195.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075179, ) FILE "helpaud\sound\howto\VZH2196.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517A, ) FILE "helpaud\sound\howto\VZH2197.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517B, ) FILE "helpaud\sound\howto\VZH2198.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517C, ) FILE "helpaud\sound\howto\VZH2199.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517D, ) FILE "helpaud\sound\howto\VZH2200.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517E, ) FILE "helpaud\sound\howto\VZH2201.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517F, ) FILE "helpaud\sound\howto\VZH2202.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075180, ) FILE "helpaud\sound\howto\VZH2203.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075181, ) FILE "helpaud\sound\howto\VZH2204.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075182, ) FILE "helpaud\sound\howto\VZH2205.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075183, ) FILE "helpaud\sound\howto\VZH2206.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075184, ) FILE "helpaud\sound\howto\VZH2207.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075185, ) FILE "helpaud\sound\howto\VZH2208.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075186, ) FILE "helpaud\sound\howto\VZH2209.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075187, ) FILE "helpaud\sound\howto\VZH2210.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075188, ) FILE "helpaud\sound\howto\VZH2211.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075189, ) FILE "helpaud\sound\howto\VZH2212.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518A, ) FILE "helpaud\sound\howto\VZH2213.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518B, ) FILE "helpaud\sound\howto\VZH2214.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518C, ) FILE "helpaud\sound\howto\VZH2215.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518D, ) FILE "helpaud\sound\howto\VZH2216.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518E, ) FILE "helpaud\sound\howto\VZH2217.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518F, ) FILE "helpaud\sound\howto\VZH2218.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075190, ) FILE "helpaud\sound\howto\VZH2219.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075191, ) FILE "helpaud\sound\howto\VZH2220.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075192, ) FILE "helpaud\sound\howto\VZH2221.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075193, ) FILE "helpaud\sound\howto\VZH2222.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075194, ) FILE "helpaud\sound\howto\VZH2223.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075195, ) FILE "helpaud\sound\howto\VZH2224.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075196, ) FILE "helpaud\sound\howto\VZH2225.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075197, ) FILE "helpaud\sound\howto\VZH2226.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075198, ) FILE "helpaud\sound\howto\VZH2233A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075199, ) FILE "helpaud\sound\howto\VZH2227.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519A, ) FILE "helpaud\sound\howto\VZH2228.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519B, ) FILE "helpaud\sound\howto\VZH2229.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519C, ) FILE "helpaud\sound\howto\VZH2230.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519D, ) FILE "helpaud\sound\howto\VZH2231.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519E, ) FILE "helpaud\sound\howto\VZH2232.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519F, ) FILE "helpaud\sound\howto\VZH2233.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A0, ) FILE "helpaud\sound\howto\VZH2234.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A1, ) FILE "helpaud\sound\howto\VZH2235.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A2, ) FILE "helpaud\sound\howto\VZH2236.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A3, ) FILE "helpaud\sound\howto\VZH2237.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A4, ) FILE "helpaud\sound\howto\VZH2238.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A5, ) FILE "helpaud\sound\howto\VZH2239.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A6, ) FILE "helpaud\sound\howto\VZH2240.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A7, ) FILE "helpaud\sound\howto\VZH2241.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A8, ) FILE "helpaud\sound\howto\VZH2242.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A9, ) FILE "helpaud\sound\howto\VZH2243.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AA, ) FILE "helpaud\sound\howto\VZH2244.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AB, ) FILE "helpaud\sound\howto\VZH2245.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AC, ) FILE "helpaud\sound\howto\VZH2246.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AD, ) FILE "helpaud\sound\howto\VZH2247.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AE, ) FILE "helpaud\sound\howto\VZH2248.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AF, ) FILE "helpaud\sound\howto\VZH2249.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751B0, ) FILE "helpaud\sound\howto\VZH2250.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751B1, ) FILE "helpaud\sound\howto\VZH2251.WAV" ENDCHUNK -#line 21 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" - - diff --git a/OBJ/WIND/MKTMAP.MAP b/OBJ/WIND/MKTMAP.MAP deleted file mode 100644 index 2abcee25..00000000 --- a/OBJ/WIND/MKTMAP.MAP +++ /dev/null @@ -1,1103 +0,0 @@ - mktmap - - Timestamp is 3078f6e7 (Mon Oct 09 03:18:15 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0001d9a2H .text CODE - 0002:00000000 00001ae0H .bss DATA - 0003:00000000 000003a9H .rdata DATA - 0004:00000000 00002260H .data DATA - 0004:00002260 00000004H .CRT$XCA DATA - 0004:00002264 0000005cH .CRT$XCU DATA - 0004:000022c0 00000004H .CRT$XCZ DATA - 0004:000022c4 00000004H .CRT$XIA DATA - 0004:000022c8 00000004H .CRT$XIC DATA - 0004:000022cc 00000004H .CRT$XIZ DATA - 0004:000022d0 00000004H .CRT$XPA DATA - 0004:000022d4 00000004H .CRT$XPX DATA - 0004:000022d8 00000004H .CRT$XPZ DATA - 0004:000022dc 00000004H .CRT$XTA DATA - 0004:000022e0 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000b4H .idata$4 DATA - 0005:00000118 000000b4H .idata$5 DATA - 0005:000001cc 000002f2H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000430H .debug$F DATA - 0007:00000730 00000000H .debug$G DATA - 0007:00000730 00000031H .debug$H DATA - 0007:fffd7000 00000000H .debug$P DATA - 0007:fffd7000 00000000H .debug$S DATA - 0007:fffd7000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 _main 00401000 f mktmap.obj - 0001:00000370 ?WarnProc@@YGXPADJ0@Z 00401370 f mktmap.obj - 0001:000003f0 ?FAssertProc@@YGHPADJ0PAXJ@Z 004013f0 f mktmap.obj - 0001:000005b0 ??4FNI@@QAEAAV0@AAV0@@Z 004015b0 f mktmap.obj - 0001:00000620 ??1FNI@@UAE@XZ 00401620 f mktmap.obj - 0001:00000650 ??1BASE@@UAE@XZ 00401650 f mktmap.obj - 0001:000006a0 ??_EBASE@@UAEPAXI@Z 004016a0 f mktmap.obj - 0001:000006a0 ??_GBASE@@UAEPAXI@Z 004016a0 f mktmap.obj - 0001:000006e0 ??1MSSIO@@UAE@XZ 004016e0 f mktmap.obj - 0001:00000710 ??4BASE@@QAEAAV0@ABV0@@Z 00401710 f mktmap.obj - 0001:00000750 ??1MSNK@@UAE@XZ 00401750 f mktmap.obj - 0001:00000780 ??0STN@@QAE@XZ 00401780 f mktmap.obj - 0001:000008f0 ??0ACR@@QAE@EEE@Z 004018f0 f mktmap.obj - 0001:00000930 ?LwFromBytes@@YGJEEEE@Z 00401930 f mktmap.obj - 0001:00000970 ??0ACR@@QAE@HH@Z 00401970 f mktmap.obj - 0001:000009c0 ?FWouldBe@USAC@@SGHJ@Z 004019c0 f utilglob.obj - 0001:00000a00 ?FIs@USAC@@UAEHJ@Z 00401a00 f utilglob.obj - 0001:00000a30 ?Cls@USAC@@UAEJXZ 00401a30 f utilglob.obj - 0001:00000b70 ??1RND@@UAE@XZ 00401b70 f utilglob.obj - 0001:00000ba0 ??1KCDC@@UAE@XZ 00401ba0 f utilglob.obj - 0001:00000bd0 ??0KCDC@@QAE@XZ 00401bd0 f utilglob.obj - 0001:00000c10 ??1USAC@@UAE@XZ 00401c10 f utilglob.obj - 0001:00000c60 ??1CODC@@UAE@XZ 00401c60 f utilglob.obj - 0001:00000c90 ??_EKCDC@@UAEPAXI@Z 00401c90 f utilglob.obj - 0001:00000c90 ??_GKCDC@@UAEPAXI@Z 00401c90 f utilglob.obj - 0001:00000cd0 ??0CODC@@QAE@XZ 00401cd0 f utilglob.obj - 0001:00000d10 ??_ECODC@@UAEPAXI@Z 00401d10 f utilglob.obj - 0001:00000d10 ??_GCODC@@UAEPAXI@Z 00401d10 f utilglob.obj - 0001:00000d50 ??0MUTX@@QAE@XZ 00401d50 f utilglob.obj - 0001:00000d80 ??1MUTX@@QAE@XZ 00401d80 f utilglob.obj - 0001:00000db0 ?FCanDo@KCDC@@UAEHHJ@Z 00401db0 f utilglob.obj - 0001:00000e40 ?PfilNext@FIL@@QAEPAV1@XZ 00401e40 f util.obj - 0001:00000e70 ?PbllNext@BLL@@QAEPAV1@XZ 00401e70 f util.obj - 0001:00000ea0 ?FWouldBe@BLL@@SGHJ@Z 00401ea0 f base.obj - 0001:00000ee0 ?FIs@BLL@@UAEHJ@Z 00401ee0 f base.obj - 0001:00000f10 ?Cls@BLL@@UAEJXZ 00401f10 f base.obj - 0001:00000f40 ?Cls@BASE@@UAEJXZ 00401f40 f base.obj - 0001:00000f70 ?FIs@BASE@@UAEHJ@Z 00401f70 f base.obj - 0001:00000fb0 ?FWouldBe@BASE@@SGHJ@Z 00401fb0 f base.obj - 0001:00000fe0 ??0BASE@@QAE@XZ 00401fe0 f base.obj - 0001:000010c0 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 004020c0 f base.obj - 0001:000010e0 ?_Enter@@YGXXZ 004020e0 f base.obj - 0001:00001100 ?_Leave@@YGXXZ 00402100 f base.obj - 0001:00001120 ?AddRef@BASE@@UAEXXZ 00402120 f base.obj - 0001:000011b0 ?Release@BASE@@UAEXXZ 004021b0 f base.obj - 0001:00001260 ??2BASE@@SGPAXIPADJ@Z 00402260 f base.obj - 0001:00001430 ?Debugger@@YGXXZ 00402430 f base.obj - 0001:00001450 ??3BASE@@SGXPAX@Z 00402450 f base.obj - 0001:000014d0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 004024d0 f base.obj - 0001:000014f0 ?AssertValid@BASE@@QAEXK@Z 004024f0 f base.obj - 0001:00001620 ?MarkMemStub@BASE@@QAEXXZ 00402620 f base.obj - 0001:00001700 ?MarkMem@BASE@@UAEXXZ 00402700 f base.obj - 0001:00001750 ?_AssertDoi@@YGXPAUDOI@@H@Z 00402750 f base.obj - 0001:00001940 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402940 f base.obj - 0001:000019c0 ?_UnlinkDoi@@YGXPAUDOI@@@Z 004029c0 f base.obj - 0001:00001a40 ??0BLL@@QAE@XZ 00402a40 f base.obj - 0001:00001a90 ??1BLL@@UAE@XZ 00402a90 f base.obj - 0001:00001ae0 ?_Attach@BLL@@IAEXPAX@Z 00402ae0 f base.obj - 0001:00001c80 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402c80 f base.obj - 0001:00001cb0 ?AssertValid@BLL@@QAEXK@Z 00402cb0 f base.obj - 0001:00001db0 ??_EBLL@@UAEPAXI@Z 00402db0 f base.obj - 0001:00001db0 ??_GBLL@@UAEPAXI@Z 00402db0 f base.obj - 0001:00001df0 ?PvAddBv@@YGPAXPAXJ@Z 00402df0 f base.obj - 0001:00001e10 ?PvSubBv@@YGPAXPAXJ@Z 00402e10 f base.obj - 0001:00001e30 ?Enter@MUTX@@QAEXXZ 00402e30 f base.obj - 0001:00001e60 ?Leave@MUTX@@QAEXXZ 00402e60 f base.obj - 0001:00001e90 ?LwThreadCur@@YGJXZ 00402e90 f base.obj - 0001:00001eb0 ?FillPb@@YGXPAXJE@Z 00402eb0 f utilcopy.obj - 0001:00001f10 ?ClearPb@@YGXPAXJ@Z 00402f10 f utilcopy.obj - 0001:00001f80 ?FEqualRgb@@YGHPAX0J@Z 00402f80 f utilcopy.obj - 0001:00002000 ?CbEqualRgb@@YGJPAX0J@Z 00403000 f utilcopy.obj - 0001:00002090 ?CopyPb@@YGXPAX0J@Z 00403090 f utilcopy.obj - 0001:00002130 ?BltPb@@YGXPAX0J@Z 00403130 f utilcopy.obj - 0001:00002210 ?FWouldBe@ERS@@SGHJ@Z 00403210 f utilerro.obj - 0001:00002250 ?FIs@ERS@@UAEHJ@Z 00403250 f utilerro.obj - 0001:00002280 ?Cls@ERS@@UAEJXZ 00403280 f utilerro.obj - 0001:000022b0 ??0ERS@@QAE@XZ 004032b0 f utilerro.obj - 0001:00002300 ?Push@ERS@@UAEXJPADJ@Z 00403300 f utilerro.obj - 0001:000024c0 ?FPop@ERS@@UAEHPAJ@Z 004034c0 f utilerro.obj - 0001:000025c0 ?Clear@ERS@@UAEXXZ 004035c0 f utilerro.obj - 0001:00002630 ?Cerc@ERS@@UAEJXZ 00403630 f utilerro.obj - 0001:00002680 ?FIn@ERS@@UAEHJ@Z 00403680 f utilerro.obj - 0001:00002750 ?ErcGet@ERS@@UAEJJ@Z 00403750 f utilerro.obj - 0001:000027f0 ?Flush@ERS@@UAEXJ@Z 004037f0 f utilerro.obj - 0001:000028e0 ?FIn@@YGHJJJ@Z 004038e0 f utilerro.obj - 0001:00002920 ?AssertValid@ERS@@QAEXK@Z 00403920 f utilerro.obj - 0001:000029c0 ??1ERS@@UAE@XZ 004039c0 f utilerro.obj - 0001:000029f0 ??_GERS@@UAEPAXI@Z 004039f0 f utilerro.obj - 0001:000029f0 ??_EERS@@UAEPAXI@Z 004039f0 f utilerro.obj - 0001:00002a50 ?LwRoundAway@@YGJJJ@Z 00403a50 f utilint.obj - 0001:00002ae0 ?LwMul@@YGJJJ@Z 00403ae0 f utilint.obj - 0001:00002b50 ?AssertIn@@YGXJJJ@Z 00403b50 f utilint.obj - 0001:00002bd0 ?SwapBytesBom@@YGXPAXK@Z 00403bd0 f utilint.obj - 0001:00002cb0 ?LwMin@@YGJJJ@Z 00403cb0 f utilint.obj - 0001:00002ce0 ?LwAbs@@YGJJ@Z 00403ce0 f utilint.obj - 0001:00002d10 ?SwapBytesRglw@@YGXPAXJ@Z 00403d10 f utilint.obj - 0001:00002dc0 ?LwMax@@YGJJJ@Z 00403dc0 f utilint.obj - 0001:00002df0 ?FEmpty@RC@@QAEHXZ 00403df0 f utilint.obj - 0001:00002e50 ?LwBound@@YGJJJJ@Z 00403e50 f utilint.obj - 0001:00002e90 ??0USAC@@QAE@XZ 00403e90 f utilint.obj - 0001:00002f10 ??_EUSAC@@UAEPAXI@Z 00403f10 f utilint.obj - 0001:00002f10 ??_GUSAC@@UAEPAXI@Z 00403f10 f utilint.obj - 0001:00002f50 ?TsCurrentSystem@@YGKXZ 00403f50 f utilint.obj - 0001:00002f70 ?FFail@DMAGL@@QAEHXZ 00403f70 f utilmem.obj - 0001:00002fe0 ?Allocate@DMAGL@@QAEXJ@Z 00403fe0 f utilmem.obj - 0001:00003070 ?Resize@DMAGL@@QAEXJ@Z 00404070 f utilmem.obj - 0001:000030d0 ?Free@DMAGL@@QAEXJ@Z 004040d0 f utilmem.obj - 0001:00003110 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00404110 f utilmem.obj - 0001:00003460 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00404460 f utilmem.obj - 0001:00003870 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00404870 f utilmem.obj - 0001:00003910 ?_LinkMbh@@YGXPAUMBH@@@Z 00404910 f utilmem.obj - 0001:000039b0 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 004049b0 f utilmem.obj - 0001:00003b50 ?_AssertMbh@@YGXPAUMBH@@@Z 00404b50 f utilmem.obj - 0001:00003d90 ?AssertPvAlloced@@YGXPAXJ@Z 00404d90 f utilmem.obj - 0001:00003e50 ?MarkPv@@YGXPAX@Z 00404e50 f utilmem.obj - 0001:00003ec0 ?FWouldBe@RND@@SGHJ@Z 00404ec0 f utilrnd.obj - 0001:00003f00 ?FIs@RND@@UAEHJ@Z 00404f00 f utilrnd.obj - 0001:00003f30 ?Cls@RND@@UAEJXZ 00404f30 f utilrnd.obj - 0001:00003f60 ?FWouldBe@SFL@@SGHJ@Z 00404f60 f utilrnd.obj - 0001:00003fa0 ?FIs@SFL@@UAEHJ@Z 00404fa0 f utilrnd.obj - 0001:00003fd0 ?Cls@SFL@@UAEJXZ 00404fd0 f utilrnd.obj - 0001:00004000 ??0RND@@QAE@K@Z 00405000 f utilrnd.obj - 0001:00004090 ?LwNext@RND@@UAEJJ@Z 00405090 f utilrnd.obj - 0001:00004160 ??0SFL@@QAE@K@Z 00405160 f utilrnd.obj - 0001:000041f0 ??1SFL@@UAE@XZ 004051f0 f utilrnd.obj - 0001:00004260 ?AssertValid@SFL@@QAEXK@Z 00405260 f utilrnd.obj - 0001:00004330 ?MarkMem@SFL@@UAEXXZ 00405330 f utilrnd.obj - 0001:00004390 ?Shuffle@SFL@@QAEXJ@Z 00405390 f utilrnd.obj - 0001:000044a0 ?_ShuffleCore@SFL@@IAEXXZ 004054a0 f utilrnd.obj - 0001:00004590 ?_FEnsureHq@SFL@@IAEHJ@Z 00405590 f utilrnd.obj - 0001:00004710 ?LwNext@SFL@@UAEJJ@Z 00405710 f utilrnd.obj - 0001:00004870 ??_GRND@@UAEPAXI@Z 00405870 f utilrnd.obj - 0001:00004870 ??_ERND@@UAEPAXI@Z 00405870 f utilrnd.obj - 0001:000048b0 ??_ESFL@@UAEPAXI@Z 004058b0 f utilrnd.obj - 0001:000048b0 ??_GSFL@@UAEPAXI@Z 004058b0 f utilrnd.obj - 0001:000048f0 ??4STN@@QAEAAV0@AAV0@@Z 004058f0 f utilstr.obj - 0001:000049e0 ?SetRgch@STN@@QAEXPADJ@Z 004059e0 f utilstr.obj - 0001:00004ac0 ?SetSzs@STN@@QAEXPAD@Z 00405ac0 f utilstr.obj - 0001:00004b20 ?Delete@STN@@QAEXJJ@Z 00405b20 f utilstr.obj - 0001:00004c80 ?FAppendRgch@STN@@QAEHPADJ@Z 00405c80 f utilstr.obj - 0001:00004d80 ?FInsertRgch@STN@@QAEHJPADJ@Z 00405d80 f utilstr.obj - 0001:00004f30 ?FEqualRgch@STN@@QAEHPADJ@Z 00405f30 f utilstr.obj - 0001:00004fd0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00405fd0 f utilstr.obj - 0001:00005060 ?GetSzs@STN@@QAEXPAD@Z 00406060 f utilstr.obj - 0001:000050d0 ?FFormatSz@STN@@QAAHPADZZ 004060d0 f utilstr.obj - 0001:00005130 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00406130 f utilstr.obj - 0001:00005990 ?Prgch@STN@@QAEPADXZ 00406990 f utilstr.obj - 0001:000059e0 ?Psz@STN@@QAEPADXZ 004069e0 f utilstr.obj - 0001:00005a30 ?Cch@STN@@QAEJXZ 00406a30 f utilstr.obj - 0001:00005a80 ?SetNil@STN@@QAEXXZ 00406a80 f utilstr.obj - 0001:00005ae0 ?SetSz@STN@@QAEXPAD@Z 00406ae0 f utilstr.obj - 0001:00005b20 ?AssertValid@STN@@QAEXK@Z 00406b20 f utilstr.obj - 0001:00005c10 ?CchSz@@YGJPAD@Z 00406c10 f utilstr.obj - 0001:00005cb0 ?FEqualUserRgch@@YGHPADJ0JK@Z 00406cb0 f utilstr.obj - 0001:00005e20 ?UpperRgchs@@YGXPADJ@Z 00406e20 f utilstr.obj - 0001:00005ee0 ?AssertOsk@@YGXF@Z 00406ee0 f utilstr.obj - 0001:00005f90 ?AssertSz@@YGXPAD@Z 00406f90 f utilstr.obj - 0001:00005fe0 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00406fe0 f memwin.obj - 0001:000060c0 ?FResizePhq@@YGHPAPAXJKJ@Z 004070c0 f memwin.obj - 0001:000061f0 ?FreePhq@@YGXPAPAX@Z 004071f0 f memwin.obj - 0001:000062a0 ?CbOfHq@@YGJPAX@Z 004072a0 f memwin.obj - 0001:000062e0 ?QvFromHq@@YGPAXPAX@Z 004072e0 f memwin.obj - 0001:00006300 ?PvLockHq@@YGPAXPAX@Z 00407300 f memwin.obj - 0001:00006380 ?UnlockHq@@YGXPAX@Z 00407380 f memwin.obj - 0001:00006400 ?AssertHq@@YGXPAX@Z 00407400 f memwin.obj - 0001:000064f0 ?MarkHq@@YGXPAX@Z 004074f0 f memwin.obj - 0001:00006530 ?AssertPvCb@@YGXPAXJ@Z 00407530 f memwin.obj - 0001:000065c0 ?FWouldBe@CGE@@SGHJ@Z 004075c0 f chunk.obj - 0001:00006600 ?FIs@CGE@@UAEHJ@Z 00407600 f chunk.obj - 0001:00006630 ?Cls@CGE@@UAEJXZ 00407630 f chunk.obj - 0001:00006680 ?Grfcrp@CRPSM@@QAEKK@Z 00407680 f chunk.obj - 0001:000066b0 ?ClearGrfcrp@CRPSM@@QAEXK@Z 004076b0 f chunk.obj - 0001:000066e0 ?SetGrfcrp@CRPSM@@QAEXK@Z 004076e0 f chunk.obj - 0001:00006710 ?AssertValid@CFL@@QAEXK@Z 00407710 f chunk.obj - 0001:000074e0 ?CbRgch@CRPSM@@QAEJJ@Z 004084e0 f chunk.obj - 0001:00007510 ?BvRgch@CRPSM@@QAEJXZ 00408510 f chunk.obj - 0001:00007540 ?Cb@CRPSM@@QAEJXZ 00408540 f chunk.obj - 0001:00007570 ?SuspendAssertValid@@YGXXZ 00408570 f chunk.obj - 0001:000075c0 ?ResumeAssertValid@@YGXXZ 004085c0 f chunk.obj - 0001:000075f0 ?ElError@FIL@@QAEJXZ 004085f0 f chunk.obj - 0001:00007620 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 00408620 f chunk.obj - 0001:00007680 ?IvMac@GRPB@@QAEJXZ 00408680 f chunk.obj - 0001:000076b0 ?FPush@GL@@QAEHPAX@Z 004086b0 f chunk.obj - 0001:000076f0 ?_TValidIndex@CFL@@AAEHXZ 004086f0 f chunk.obj - 0001:00007c20 ?Lock@GRPB@@QAEXXZ 00408c20 f chunk.obj - 0001:00007c60 ?Unlock@GRPB@@QAEXXZ 00408c60 f chunk.obj - 0001:00007ca0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00408ca0 f chunk.obj - 0001:00007e40 ?FWrite@FLO@@QAEHPAX@Z 00408e40 f chunk.obj - 0001:00007e80 ?Ckid@CFL@@QAEJKK@Z 00408e80 f chunk.obj - 0001:00007f40 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00408f40 f chunk.obj - 0001:00008120 ??0CGE@@QAE@XZ 00409120 f chunk.obj - 0001:000081a0 ??1CGE@@UAE@XZ 004091a0 f chunk.obj - 0001:00008230 ?AssertValid@CGE@@QAEXK@Z 00409230 f chunk.obj - 0001:00008360 ?MarkMem@CGE@@UAEXXZ 00409360 f chunk.obj - 0001:000083d0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 004093d0 f chunk.obj - 0001:00008520 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00409520 f chunk.obj - 0001:00008960 ??_ECGE@@UAEPAXI@Z 00409960 f chunk.obj - 0001:00008960 ??_GCGE@@UAEPAXI@Z 00409960 f chunk.obj - 0001:000089a0 ?FWouldBe@CODM@@SGHJ@Z 004099a0 f codec.obj - 0001:000089e0 ?FIs@CODM@@UAEHJ@Z 004099e0 f codec.obj - 0001:00008a10 ?Cls@CODM@@UAEJXZ 00409a10 f codec.obj - 0001:00008a40 ?FWouldBe@CODC@@SGHJ@Z 00409a40 f codec.obj - 0001:00008a80 ?FIs@CODC@@UAEHJ@Z 00409a80 f codec.obj - 0001:00008ab0 ?Cls@CODC@@UAEJXZ 00409ab0 f codec.obj - 0001:00008ae0 ??0CODM@@QAE@PAVCODC@@J@Z 00409ae0 f codec.obj - 0001:00008be0 ??1CODM@@UAE@XZ 00409be0 f codec.obj - 0001:00008d00 ?AssertValid@CODM@@QAEXK@Z 00409d00 f codec.obj - 0001:00008dd0 ?MarkMem@CODM@@UAEXXZ 00409dd0 f codec.obj - 0001:00008ec0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00409ec0 f codec.obj - 0001:00008fd0 ?FCanDo@CODM@@UAEHJH@Z 00409fd0 f codec.obj - 0001:00009040 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 0040a040 f codec.obj - 0001:00009170 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 0040a170 f codec.obj - 0001:000092b0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 0040a2b0 f codec.obj - 0001:000094a0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0040a4a0 f codec.obj - 0001:000097b0 ?B0Lw@@YGEJ@Z 0040a7b0 f codec.obj - 0001:000097d0 ?B1Lw@@YGEJ@Z 0040a7d0 f codec.obj - 0001:000097f0 ?B2Lw@@YGEJ@Z 0040a7f0 f codec.obj - 0001:00009810 ?B3Lw@@YGEJ@Z 0040a810 f codec.obj - 0001:00009850 ??_GCODM@@UAEPAXI@Z 0040a850 f codec.obj - 0001:00009850 ??_ECODM@@UAEPAXI@Z 0040a850 f codec.obj - 0001:00009890 ?FWouldBe@KCDC@@SGHJ@Z 0040a890 f codkauai.obj - 0001:000098d0 ?FIs@KCDC@@UAEHJ@Z 0040a8d0 f codkauai.obj - 0001:00009900 ?Cls@KCDC@@UAEJXZ 0040a900 f codkauai.obj - 0001:00009930 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0040a930 f codkauai.obj - 0001:00009a90 ?Set@BITA@@QAEXPAXJ@Z 0040aa90 f codkauai.obj - 0001:00009af0 ?FWriteBits@BITA@@QAEHKJ@Z 0040aaf0 f codkauai.obj - 0001:00009c90 ?FWriteLogEncoded@BITA@@QAEHK@Z 0040ac90 f codkauai.obj - 0001:00009d80 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0040ad80 f codkauai.obj - 0001:0000a540 ?Ibit@BITA@@QAEJXZ 0040b540 f codkauai.obj - 0001:0000a570 ?Ib@BITA@@QAEJXZ 0040b570 f codkauai.obj - 0001:0000a5a0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0040b5a0 f codkauai.obj - 0001:0000e280 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040f280 f codkauai.obj - 0001:0000eba0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040fba0 f codkauai.obj - 0001:00011390 ?FWouldBe@BACO@@SGHJ@Z 00412390 f crf.obj - 0001:000113d0 ?FIs@BACO@@UAEHJ@Z 004123d0 f crf.obj - 0001:00011400 ?Cls@BACO@@UAEJXZ 00412400 f crf.obj - 0001:00011430 ??0BACO@@IAE@XZ 00412430 f crf.obj - 0001:000114b0 ??1BACO@@MAE@XZ 004124b0 f crf.obj - 0001:00011580 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00412580 f crf.obj - 0001:00011670 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00412670 f crf.obj - 0001:000116e0 ?CbOnFile@BACO@@UAEJXZ 004126e0 f crf.obj - 0001:00011750 ?AssertValid@BACO@@QAEXK@Z 00412750 f crf.obj - 0001:000117e0 ?MarkMem@BACO@@UAEXXZ 004127e0 f crf.obj - 0001:00011850 ?Release@BACO@@UAEXXZ 00412850 f crf.obj - 0001:000119b0 ?Detach@BACO@@UAEXXZ 004129b0 f crf.obj - 0001:00011ae0 ?SetCrep@BACO@@UAEXJ@Z 00412ae0 f crf.obj - 0001:00011b60 ?CactRef@BASE@@QAEJXZ 00412b60 f crf.obj - 0001:00011b90 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00412b90 f crf.obj - 0001:00011d50 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00412d50 f crf.obj - 0001:00011f40 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00412f40 f crf.obj - 0001:000122c0 ?AssertValid@CRF@@QAEXK@Z 004132c0 f crf.obj - 0001:00012410 ??_EBACO@@MAEPAXI@Z 00413410 f crf.obj - 0001:00012410 ??_GBACO@@MAEPAXI@Z 00413410 f crf.obj - 0001:00012470 ?FWouldBe@FIL@@SGHJ@Z 00413470 f file.obj - 0001:000124b0 ?FIs@FIL@@UAEHJ@Z 004134b0 f file.obj - 0001:000124e0 ?Cls@FIL@@UAEJXZ 004134e0 f file.obj - 0001:00012510 ?FWouldBe@BLCK@@SGHJ@Z 00413510 f file.obj - 0001:00012550 ?FIs@BLCK@@UAEHJ@Z 00413550 f file.obj - 0001:00012580 ?Cls@BLCK@@UAEJXZ 00413580 f file.obj - 0001:000125b0 ??0FIL@@IAE@PAVFNI@@K@Z 004135b0 f file.obj - 0001:000126a0 ??1FIL@@MAE@XZ 004136a0 f file.obj - 0001:00012710 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00413710 f file.obj - 0001:00012930 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00413930 f file.obj - 0001:00012b00 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00413b00 f file.obj - 0001:00012c20 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00413c20 f file.obj - 0001:00012d70 ?FSetGrffil@FIL@@QAEHKK@Z 00413d70 f file.obj - 0001:00012e80 ?Release@FIL@@UAEXXZ 00413e80 f file.obj - 0001:00012f60 ?SetTemp@FIL@@QAEXH@Z 00413f60 f file.obj - 0001:00012fe0 ?ShutDown@FIL@@SGXXZ 00413fe0 f file.obj - 0001:000130a0 ?AssertValid@FIL@@QAEXK@Z 004140a0 f file.obj - 0001:000131d0 ?_FRangeIn@@YGHJJJ@Z 004141d0 f file.obj - 0001:00013230 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00414230 f file.obj - 0001:00013300 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00414300 f file.obj - 0001:000133d0 ?FCopy@FLO@@QAEHPAU1@@Z 004143d0 f file.obj - 0001:00013650 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00414650 f file.obj - 0001:00013760 ?AssertValid@FLO@@QAEXK@Z 00414760 f file.obj - 0001:00013860 ??0BLCK@@QAE@PAUFLO@@H@Z 00414860 f file.obj - 0001:000139a0 ??0BLCK@@QAE@XZ 004149a0 f file.obj - 0001:00013a40 ??1BLCK@@UAE@XZ 00414a40 f file.obj - 0001:00013aa0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00414aa0 f file.obj - 0001:00013bd0 ?SetHq@BLCK@@QAEXPAPAXH@Z 00414bd0 f file.obj - 0001:00013cb0 ?Free@BLCK@@QAEXXZ 00414cb0 f file.obj - 0001:00013d60 ?HqFree@BLCK@@QAEPAXH@Z 00414d60 f file.obj - 0001:00013f10 ?Cb@BLCK@@QAEJH@Z 00414f10 f file.obj - 0001:00013fa0 ?FSetTemp@BLCK@@QAEHJH@Z 00414fa0 f file.obj - 0001:000140a0 ?FReadHq@FLO@@QAEHPAPAX@Z 004150a0 f file.obj - 0001:000140e0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 004150e0 f file.obj - 0001:00014280 ?FWouldBe@MSNK@@SGHJ@Z 00415280 f file.obj - 0001:000142c0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 004152c0 f file.obj - 0001:00014460 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00415460 f file.obj - 0001:00014600 ?FPackData@BLCK@@QAEHJ@Z 00415600 f file.obj - 0001:00014840 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 00415840 f file.obj - 0001:00014890 ?AssertValid@BLCK@@QAEXK@Z 00415890 f file.obj - 0001:00014ac0 ?MarkMem@BLCK@@UAEXXZ 00415ac0 f file.obj - 0001:00014b60 ??_EFIL@@MAEPAXI@Z 00415b60 f file.obj - 0001:00014b60 ??_GFIL@@MAEPAXI@Z 00415b60 f file.obj - 0001:00014ba0 ??_EBLCK@@UAEPAXI@Z 00415ba0 f file.obj - 0001:00014ba0 ??_GBLCK@@UAEPAXI@Z 00415ba0 f file.obj - 0001:00014be0 ??0MSNK@@QAE@XZ 00415be0 f file.obj - 0001:00014c20 ?FIs@MSNK@@UAEHJ@Z 00415c20 f file.obj - 0001:00014c50 ?Cls@MSNK@@UAEJXZ 00415c50 f file.obj - 0001:00014c80 ??_GMSNK@@UAEPAXI@Z 00415c80 f file.obj - 0001:00014c80 ??_EMSNK@@UAEPAXI@Z 00415c80 f file.obj - 0001:00014cc0 ?_HfileOpen@@YGPAXPADHK@Z 00415cc0 f filewin.obj - 0001:00014d40 ?_FOpen@FIL@@IAEHHK@Z 00415d40 f filewin.obj - 0001:00014f80 ?_Close@FIL@@IAEXH@Z 00415f80 f filewin.obj - 0001:000150a0 ?Flush@FIL@@QAEXXZ 004160a0 f filewin.obj - 0001:00015130 ?_SetFpPos@FIL@@IAEXJ@Z 00416130 f filewin.obj - 0001:00015230 ?FpMac@FIL@@QAEJXZ 00416230 f filewin.obj - 0001:00015340 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00416340 f filewin.obj - 0001:00015500 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00416500 f filewin.obj - 0001:00015710 ?FWouldBe@FNI@@SGHJ@Z 00416710 f fniwin.obj - 0001:00015750 ?FIs@FNI@@UAEHJ@Z 00416750 f fniwin.obj - 0001:00015780 ?Cls@FNI@@UAEJXZ 00416780 f fniwin.obj - 0001:000157b0 ?SetNil@FNI@@QAEXXZ 004167b0 f fniwin.obj - 0001:00015810 ??0FNI@@QAE@XZ 00416810 f fniwin.obj - 0001:00015860 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00416860 f fniwin.obj - 0001:00015bb0 ?FGetUnique@FNI@@QAEHJ@Z 00416bb0 f fniwin.obj - 0001:00015d60 ?FGetTemp@FNI@@QAEHXZ 00416d60 f fniwin.obj - 0001:00015ea0 ?Ftg@FNI@@QAEJXZ 00416ea0 f fniwin.obj - 0001:00015ef0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00416ef0 f fniwin.obj - 0001:000160b0 ?FChangeFtg@FNI@@QAEHJ@Z 004170b0 f fniwin.obj - 0001:00016220 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00417220 f fniwin.obj - 0001:00016360 ?TExists@FNI@@QAEHXZ 00417360 f fniwin.obj - 0001:000165a0 ?FEqual@FNI@@QAEHPAV1@@Z 004175a0 f fniwin.obj - 0001:00016660 ?AssertValid@FNI@@QAEXK@Z 00417660 f fniwin.obj - 0001:000169a0 ?_CchExt@FNI@@AAEJXZ 004179a0 f fniwin.obj - 0001:00016aa0 ?_SetFtgFromName@FNI@@AAEXXZ 00417aa0 f fniwin.obj - 0001:00016c10 ?ChsUpper@@YGDD@Z 00417c10 f fniwin.obj - 0001:00016c30 ??4STN@@QAEAAV0@PAD@Z 00417c30 f fniwin.obj - 0001:00016c60 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00417c60 f fniwin.obj - 0001:00016e40 ?FAppendCh@STN@@QAEHD@Z 00417e40 f fniwin.obj - 0001:00016e70 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00417e70 f fniwin.obj - 0001:00016fa0 ?FAppendStn@STN@@QAEHPAV1@@Z 00417fa0 f fniwin.obj - 0001:00016fe0 ?FInsertCh@STN@@QAEHJD@Z 00417fe0 f fniwin.obj - 0001:00017020 ?FEqual@STN@@QAEHPAV1@@Z 00418020 f fniwin.obj - 0001:00017060 ?FEqualUser@STN@@QAEHPAV1@K@Z 00418060 f fniwin.obj - 0001:00017100 ??_EFNI@@UAEPAXI@Z 00418100 f fniwin.obj - 0001:00017100 ??_GFNI@@UAEPAXI@Z 00418100 f fniwin.obj - 0001:00017140 ?FWouldBe@GRPB@@SGHJ@Z 00418140 f groups.obj - 0001:00017180 ?FIs@GRPB@@UAEHJ@Z 00418180 f groups.obj - 0001:000171b0 ?Cls@GRPB@@UAEJXZ 004181b0 f groups.obj - 0001:000171e0 ?FWouldBe@GLB@@SGHJ@Z 004181e0 f groups.obj - 0001:00017220 ?FIs@GLB@@UAEHJ@Z 00418220 f groups.obj - 0001:00017250 ?Cls@GLB@@UAEJXZ 00418250 f groups.obj - 0001:00017280 ?FWouldBe@GL@@SGHJ@Z 00418280 f groups.obj - 0001:000172c0 ?FIs@GL@@UAEHJ@Z 004182c0 f groups.obj - 0001:000172f0 ?Cls@GL@@UAEJXZ 004182f0 f groups.obj - 0001:00017320 ??1GRPB@@UAE@XZ 00418320 f groups.obj - 0001:00017390 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00418390 f groups.obj - 0001:00017590 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00418590 f groups.obj - 0001:00017750 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00418750 f groups.obj - 0001:000177b0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 004187b0 f groups.obj - 0001:00017980 ?AssertValid@GRPB@@QAEXK@Z 00418980 f groups.obj - 0001:00017b10 ?MarkMem@GRPB@@UAEXXZ 00418b10 f groups.obj - 0001:00017b80 ??0GLB@@IAE@J@Z 00418b80 f groups.obj - 0001:00017c10 ?QvGet@GLB@@QAEPAXJ@Z 00418c10 f groups.obj - 0001:00017ca0 ?Get@GLB@@QAEXJPAX@Z 00418ca0 f groups.obj - 0001:00017d30 ?Put@GLB@@QAEXJPAX@Z 00418d30 f groups.obj - 0001:00017de0 ?PvLock@GLB@@QAEPAXJ@Z 00418de0 f groups.obj - 0001:00017e20 ?CbRoundToLong@@YGJJ@Z 00418e20 f groups.obj - 0001:00017e40 ?AssertValid@GLB@@QAEXK@Z 00418e40 f groups.obj - 0001:00017ee0 ?PglNew@GL@@SGPAV1@JJ@Z 00418ee0 f groups.obj - 0001:00018010 ??0GL@@IAE@J@Z 00419010 f groups.obj - 0001:00018070 ?FFree@GL@@UAEHJ@Z 00419070 f groups.obj - 0001:000180e0 ?CbOnFile@GL@@UAEJXZ 004190e0 f groups.obj - 0001:00018140 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00419140 f groups.obj - 0001:00018310 ?FInsert@GL@@QAEHJPAXJ@Z 00419310 f groups.obj - 0001:00018490 ?Delete@GL@@UAEXJ@Z 00419490 f groups.obj - 0001:000184f0 ?Delete@GL@@QAEXJJ@Z 004194f0 f groups.obj - 0001:00018660 ?FAdd@GL@@UAEHPAXPAJ@Z 00419660 f groups.obj - 0001:00018710 ?FPop@GL@@QAEHPAX@Z 00419710 f groups.obj - 0001:00018820 ?FSetIvMac@GL@@QAEHJ@Z 00419820 f groups.obj - 0001:00018a30 ?FEnsureSpace@GL@@QAEHJK@Z 00419a30 f groups.obj - 0001:00018b00 ?_Qb1@GRPB@@IAEPAEJ@Z 00419b00 f groups.obj - 0001:00018b30 ?_Qb2@GRPB@@IAEPAEJ@Z 00419b30 f groups.obj - 0001:00018b60 ?_Cb1@GRPB@@IAEJXZ 00419b60 f groups.obj - 0001:00018b90 ??0GRPB@@IAE@XZ 00419b90 f groups.obj - 0001:00018bd0 ?_Cb2@GRPB@@IAEJXZ 00419bd0 f groups.obj - 0001:00018c00 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 00419c00 f groups.obj - 0001:00018c40 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00419c40 f groups.obj - 0001:00018d50 ?GetFixed@GGB@@QAEXJPAX@Z 00419d50 f groups.obj - 0001:00018e60 ?Cb@GGB@@QAEJJ@Z 00419e60 f groups.obj - 0001:00018f10 ?GetRgb@GGB@@QAEXJJJPAX@Z 00419f10 f groups.obj - 0001:00019020 ?AssertValid@GGB@@QAEXK@Z 0041a020 f groups.obj - 0001:00019380 ?AssertValid@GG@@QAEXK@Z 0041a380 f groups.obj - 0001:00019410 ??_GGRPB@@UAEPAXI@Z 0041a410 f groups.obj - 0001:00019410 ??_EGRPB@@UAEPAXI@Z 0041a410 f groups.obj - 0001:00019450 ??_EGLB@@UAEPAXI@Z 0041a450 f groups.obj - 0001:00019450 ??_GGLB@@UAEPAXI@Z 0041a450 f groups.obj - 0001:00019490 ??_GGL@@UAEPAXI@Z 0041a490 f groups.obj - 0001:00019490 ??_EGL@@UAEPAXI@Z 0041a490 f groups.obj - 0001:000194d0 ??1GLB@@UAE@XZ 0041a4d0 f groups.obj - 0001:00019500 ??1GL@@UAE@XZ 0041a500 f groups.obj - 0001:00019590 ??0RC@@QAE@XZ 0041a590 f mbmp.obj - 0001:000195b0 ?Set@RC@@QAEXJJJJ@Z 0041a5b0 f mbmp.obj - 0001:00019600 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0041a600 f mbmp.obj - 0001:0001a110 ??0MSSIO@@QAE@PAU_iobuf@@@Z 0041b110 f mssio.obj - 0001:0001a160 ?ReportLine@MSSIO@@UAEXPAD@Z 0041b160 f mssio.obj - 0001:0001a1e0 ?Report@MSSIO@@UAEXPAD@Z 0041b1e0 f mssio.obj - 0001:0001a260 ?FError@MSSIO@@UAEHXZ 0041b260 f mssio.obj - 0001:0001a2d0 ??_EMSSIO@@UAEPAXI@Z 0041b2d0 f mssio.obj - 0001:0001a2d0 ??_GMSSIO@@UAEPAXI@Z 0041b2d0 f mssio.obj - 0001:0001a32a _timeGetTime@0 0041b32a winmm:WINMM.dll - 0001:0001a330 ?FWouldBe@TMAP@@SGHJ@Z 0041b330 f bren:tmap.obj - 0001:0001a370 ?FIs@TMAP@@UAEHJ@Z 0041b370 f bren:tmap.obj - 0001:0001a3a0 ?Cls@TMAP@@UAEJXZ 0041b3a0 f bren:tmap.obj - 0001:0001a3f0 ??1TMAP@@UAE@XZ 0041b3f0 f bren:tmap.obj - 0001:0001a450 ?FWrite@TMAP@@UAEHPAVBLCK@@@Z 0041b450 f bren:tmap.obj - 0001:0001a540 ?PtmapReadNative@TMAP@@SGPAV1@PAVFNI@@PAVGL@@@Z 0041b540 f bren:tmap.obj - 0001:0001a900 ?PtmapNew@TMAP@@SGPAV1@PAEJJ@Z 0041b900 f bren:tmap.obj - 0001:0001aab0 ?FWriteTmapChkFile@TMAP@@QAEHPAVFNI@@HPAVMSNK@@@Z 0041bab0 f bren:tmap.obj - 0001:0001ad70 ?AssertValid@TMAP@@QAEXK@Z 0041bd70 f bren:tmap.obj - 0001:0001add0 ?MarkMem@TMAP@@UAEXXZ 0041bdd0 f bren:tmap.obj - 0001:0001ae60 ??_GTMAP@@UAEPAXI@Z 0041be60 f bren:tmap.obj - 0001:0001ae60 ??_ETMAP@@UAEPAXI@Z 0041be60 f bren:tmap.obj - 0001:0001afb0 ??0TMAP@@IAE@XZ 0041bfb0 f bren:tmap.obj - 0001:0001aff0 ?CbOnFile@TMAP@@UAEJXZ 0041bff0 f bren:tmap.obj - 0001:0001b027 _fprintf 0041c027 f LIBC:fprintf.obj - 0001:0001b060 __alloca_probe 0041c060 LIBC:chkstk.obj - 0001:0001b060 __chkstk 0041c060 LIBC:chkstk.obj - 0001:0001b08d _printf 0041c08d f LIBC:printf.obj - 0001:0001b0c9 __onexit 0041c0c9 f LIBC:onexit.obj - 0001:0001b13f _atexit 0041c13f f LIBC:onexit.obj - 0001:0001b151 ___onexitinit 0041c151 f LIBC:onexit.obj - 0001:0001b187 __purecall 0041c187 f LIBC:purevirt.obj - 0001:0001b192 _mainCRTStartup 0041c192 f LIBC:crt0.obj - 0001:0001b28b __amsg_exit 0041c28b f LIBC:crt0.obj - 0001:0001b2ab __stbuf 0041c2ab f LIBC:_sftbuf.obj - 0001:0001b32c __ftbuf 0041c32c f LIBC:_sftbuf.obj - 0001:0001b372 __output 0041c372 f LIBC:output.obj - 0001:0001bc98 __cinit 0041cc98 f LIBC:crt0dat.obj - 0001:0001bcc8 _exit 0041ccc8 f LIBC:crt0dat.obj - 0001:0001bcd9 __exit 0041ccd9 f LIBC:crt0dat.obj - 0001:0001bd89 _realloc 0041cd89 f LIBC:realloc.obj - 0001:0001bedb __msize 0041cedb f LIBC:msize.obj - 0001:0001beec _malloc 0041ceec f LIBC:malloc.obj - 0001:0001beff __nh_malloc 0041ceff f LIBC:malloc.obj - 0001:0001bfbe __heap_split_block 0041cfbe f LIBC:malloc.obj - 0001:0001c004 __global_unwind2 0041d004 f LIBC:exsup.obj - 0001:0001c046 __local_unwind2 0041d046 f LIBC:exsup.obj - 0001:0001c0a0 __abnormal_termination 0041d0a0 f LIBC:exsup.obj - 0001:0001c0c3 __XcptFilter 0041d0c3 f LIBC:winxfltr.obj - 0001:0001c24e __setenvp 0041d24e f LIBC:stdenvp.obj - 0001:0001c319 __setargv 0041d319 f LIBC:stdargv.obj - 0001:0001c617 __setmbcp 0041d617 f LIBC:mbctype.obj - 0001:0001c7a5 ___initmbctable 0041d7a5 f LIBC:mbctype.obj - 0001:0001c7b0 __ioinit 0041d7b0 f LIBC:ioinit.obj - 0001:0001c89e __heap_init 0041d89e f LIBC:heapinit.obj - 0001:0001c91b ___getempty 0041d91b f LIBC:heapinit.obj - 0001:0001c948 __except_handler3 0041d948 f LIBC:exsup3.obj - 0001:0001c9f6 __seh_longjmp_unwind@4 0041d9f6 f LIBC:exsup3.obj - 0001:0001ca11 __FF_MSGBANNER 0041da11 f LIBC:crt0msg.obj - 0001:0001ca37 __NMSG_WRITE 0041da37 f LIBC:crt0msg.obj - 0001:0001ca8f _fflush 0041da8f f LIBC:fflush.obj - 0001:0001cadb __flush 0041dadb f LIBC:fflush.obj - 0001:0001cb3d __flushall 0041db3d f LIBC:fflush.obj - 0001:0001cbb2 ___endstdio 0041dbb2 f LIBC:fflush.obj - 0001:0001cbc6 __isatty 0041dbc6 f LIBC:isatty.obj - 0001:0001cbe0 _wctomb 0041dbe0 f LIBC:wctomb.obj - 0001:0001cc58 __aulldiv 0041dc58 f LIBC:ulldiv.obj - 0001:0001ccb8 __aullrem 0041dcb8 f LIBC:ullrem.obj - 0001:0001cd22 __flsbuf 0041dd22 f LIBC:_flsbuf.obj - 0001:0001ce2e _free 0041de2e f LIBC:free.obj - 0001:0001ce96 __heap_abort 0041de96 f LIBC:hpabort.obj - 0001:0001cea1 __heap_grow 0041dea1 f LIBC:heapgrow.obj - 0001:0001cf8a __heap_grow_region 0041df8a f LIBC:heapgrow.obj - 0001:0001d037 __heap_free_region 0041e037 f LIBC:heapgrow.obj - 0001:0001d071 __heap_search 0041e071 f LIBC:heapsrch.obj - 0001:0001d161 __commit 0041e161 f LIBC:commit.obj - 0001:0001d1ae __write 0041e1ae f LIBC:write.obj - 0001:0001d347 __fcloseall 0041e347 f LIBC:closeall.obj - 0001:0001d378 __fptrap 0041e378 f LIBC:crt0fp.obj - 0001:0001d383 __lseek 0041e383 f LIBC:lseek.obj - 0001:0001d3f8 __getbuf 0041e3f8 f LIBC:_getbuf.obj - 0001:0001d443 __heap_addblock 0041e443 f LIBC:heapadd.obj - 0001:0001d6fa __free_osfhnd 0041e6fa f LIBC:osfinfo.obj - 0001:0001d767 __get_osfhandle 0041e767 f LIBC:osfinfo.obj - 0001:0001d79f __dosmaperr 0041e79f f LIBC:dosmap.obj - 0001:0001d808 _fclose 0041e808 f LIBC:fclose.obj - 0001:0001d864 __heap_findaddr 0041e864 f LIBC:findaddr.obj - 0001:0001d8ce __close 0041e8ce f LIBC:close.obj - 0001:0001d964 __freebuf 0041e964 f LIBC:_freebuf.obj - 0001:0001d99c _RtlUnwind@16 0041e99c kernel32:KERNEL32.dll - 0002:00000040 ?vcodmUtil@@3VCODM@@A 0041f040 utilglob.obj - 0002:00000058 ?vmutxMem@@3VMUTX@@A 0041f058 utilglob.obj - 0002:00000070 ?vkcdcUtil@@3VKCDC@@A 0041f070 utilglob.obj - 0002:00000080 ?_usac@@3VUSAC@@A 0041f080 utilglob.obj - 0002:00000098 ?vmutxBase@@3VMUTX@@A 0041f098 utilglob.obj - 0002:000000b0 ?vdmglob@@3UDMGLOB@@A 0041f0b0 utilglob.obj - 0002:00000108 ?vsflUtil@@3VSFL@@A 0041f108 utilglob.obj - 0002:00000128 ?vrndUtil@@3VRND@@A 0041f128 utilglob.obj - 0002:00000148 ?_pdoiFirst@@3PAUDOI@@A 0041f148 base.obj - 0002:0000014c ?_pdoiFirstRaw@@3PAUDOI@@A 0041f14c base.obj - 0002:00000160 ?_ers@@3VERS@@A 0041f160 utilerro.obj - 0002:00000288 ?_pmbhFirst@@3PAUMBH@@A 0041f288 utilmem.obj - 0002:000002a0 ?_mpchschsLower@@3QADA 0041f2a0 utilstr.obj - 0002:000003a8 ?_mpchschsUpper@@3QADA 0041f3a8 utilstr.obj - 0002:000004b8 ?_pcflFirst@CFL@@0PAV1@A 0041f4b8 chunk.obj - 0002:000004e0 ?_pfilFirst@FIL@@1PAV1@A 0041f4e0 file.obj - 0002:000004e8 ?_mutxList@FIL@@1VMUTX@@A 0041f4e8 file.obj - 0002:00000510 ?_fniTemp@@3VFNI@@A 0041f510 fniwin.obj - 0002:000007c4 __heap_descpages 0041f7c4 - 0002:000007d0 __heap_regions 0041f7d0 - 0002:00000ad0 ___onexitend 0041fad0 - 0002:00000ad4 __FPinit 0041fad4 - 0002:00000ad8 ___onexitbegin 0041fad8 - 0002:00000adc __acmdln 0041fadc - 0002:00000ae0 __bufin 0041fae0 - 0003:00000058 ??_7BASE@@6B@ 00421058 mktmap.obj - 0003:00000070 ??_7KCDC@@6B@ 00421070 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 00421090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004210b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004210c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 00421100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 00421118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 00421138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 00421158 utilstr.obj - 0003:00000170 ??_7CGE@@6B@ 00421170 chunk.obj - 0003:00000188 ??_7CODM@@6B@ 00421188 codec.obj - 0003:000001b8 ??_7BACO@@6B@ 004211b8 crf.obj - 0003:000001e8 ??_7FIL@@6B@ 004211e8 file.obj - 0003:00000200 ??_7BLCK@@6B@ 00421200 file.obj - 0003:00000218 ??_7MSNK@@6B@ 00421218 file.obj - 0003:00000240 ??_7FNI@@6B@ 00421240 fniwin.obj - 0003:00000258 ??_7GRPB@@6B@ 00421258 groups.obj - 0003:00000288 ??_7GLB@@6B@ 00421288 groups.obj - 0003:000002b8 ??_7GL@@6B@ 004212b8 groups.obj - 0003:000002e8 ??_7MSSIO@@6B@ 004212e8 mssio.obj - 0003:00000310 ??_7TMAP@@6B@ 00421310 bren:tmap.obj - 0003:00000350 ___lookuptable 00421350 LIBC:output.obj - 0004:00000020 ?_fEnableWarnings@@3HA 00422020 mktmap.obj - 0004:00000024 ??_C@_02DILL@?$CFs?$AA@ 00422024 mktmap.obj - 0004:00000028 ??_C@_0DE@KMOI@Usage?3?5?5mktmap?5?$FL?9c?$FN?5?$DMsrcBitmapFi@ 00422028 mktmap.obj - 0004:0000005c ??_C@_0BN@DLMH@reading?5texture?5map?5failed?6?6?$AA@ 0042205c mktmap.obj - 0004:0000007c ??_C@_0BN@DEOC@Wrong?5number?5of?5file?5names?6?6?$AA@ 0042207c mktmap.obj - 0004:0000009c ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 0042209c mktmap.obj - 0004:000000ac ??_C@_0BG@JNKG@Too?5many?5file?5names?6?6?$AA@ 004220ac mktmap.obj - 0004:000000c4 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 004220c4 mktmap.obj - 0004:00000100 ??_C@_0EA@ELHN@?6Microsoft?5?$CIR?$CJ?5Make?5Tmap?5Utility@ 00422100 mktmap.obj - 0004:00000140 ??_C@_01BJG@?6?$AA@ 00422140 mktmap.obj - 0004:00000144 ??_C@_04OFDJ@?3?5?$CFs?$AA@ 00422144 mktmap.obj - 0004:0000014c ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 0042214c mktmap.obj - 0004:00000160 ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 00422160 mktmap.obj - 0004:00000170 ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 00422170 mktmap.obj - 0004:00000180 ??_C@_05LCJC@?$CF08lx?$AA@ 00422180 mktmap.obj - 0004:00000188 ??_C@_04JGFO@?$CF04x?$AA@ 00422188 mktmap.obj - 0004:00000190 ??_C@_04OBKB@?$CF02x?$AA@ 00422190 mktmap.obj - 0004:00000198 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 00422198 mktmap.obj - 0004:000001a4 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 004221a4 mktmap.obj - 0004:000001b4 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 004221b4 mktmap.obj - 0004:000001c4 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 004221c4 mktmap.obj - 0004:00000200 ?vpcodmUtil@@3PAVCODM@@A 00422200 utilglob.obj - 0004:00000204 ?vpusac@@3PAVUSAC@@A 00422204 utilglob.obj - 0004:00000244 ?vcactSuspendAssertValid@@3JA 00422244 base.obj - 0004:00000248 ?vcactAVSave@@3JA 00422248 base.obj - 0004:0000024c ?vcactAV@@3JA 0042224c base.obj - 0004:00000250 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 00422250 base.obj - 0004:00000268 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 00422268 base.obj - 0004:00000280 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 00422280 base.obj - 0004:00000290 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 00422290 base.obj - 0004:000002a4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004222a4 base.obj - 0004:000002c0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004222c0 base.obj - 0004:000002d4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004222d4 base.obj - 0004:000002ec ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 004222ec base.obj - 0004:00000300 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 00422300 base.obj - 0004:0000031c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0042231c base.obj - 0004:0000033c ??_C@_03GOHA@nil?$AA@ 0042233c base.obj - 0004:00000340 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 00422340 base.obj - 0004:00000350 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00422350 base.obj - 0004:00000360 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00422360 base.obj - 0004:00000390 ??_C@_0P@NKO@blocks?5overlap?$AA@ 00422390 utilcopy.obj - 0004:000003c0 ?vpers@@3PAVERS@@A 004223c0 utilerro.obj - 0004:000003c4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004223c4 utilerro.obj - 0004:000003ec ??_C@_08GEE@Error?5?$CFd?$AA@ 004223ec utilerro.obj - 0004:00000418 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 00422418 utilint.obj - 0004:00000428 ??_C@_084overflow?$AA@ 00422428 utilint.obj - 0004:00000434 ??_C@_0N@INPL@long?5too?5big?$AA@ 00422434 utilint.obj - 0004:00000444 ??_C@_0P@DFPA@long?5too?5small?$AA@ 00422444 utilint.obj - 0004:00000478 ?vpfnlib@@3P6GJJJ@ZA 00422478 utilmem.obj - 0004:0000047c ?_fInLiberator@@3HA 0042247c utilmem.obj - 0004:00000480 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 00422480 utilmem.obj - 0004:000004a4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004224a4 utilmem.obj - 0004:000004bc ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 004224bc utilmem.obj - 0004:000004e4 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 004224e4 utilmem.obj - 0004:00000508 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 00422508 utilmem.obj - 0004:00000528 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00422528 utilmem.obj - 0004:0000053c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 0042253c utilmem.obj - 0004:00000550 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 00422550 utilmem.obj - 0004:00000564 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 00422564 utilmem.obj - 0004:00000578 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 00422578 utilmem.obj - 0004:00000590 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 00422590 utilmem.obj - 0004:000005a4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004225a4 utilmem.obj - 0004:000005b4 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 004225b4 utilmem.obj - 0004:000005c8 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004225c8 utilmem.obj - 0004:000005e4 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 004225e4 utilmem.obj - 0004:000005f8 ??_C@_08ECDH@wrong?5cb?$AA@ 004225f8 utilmem.obj - 0004:00000604 ??_C@_06BHIL@nil?5pv?$AA@ 00422604 utilmem.obj - 0004:00000630 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 00422630 utilrnd.obj - 0004:0000064c ??_C@_0L@LEMP@_clw?5wrong?$AA@ 0042264c utilrnd.obj - 0004:00000658 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 00422658 utilrnd.obj - 0004:00000668 ??_C@_0L@DINP@wrong?5_clw?$AA@ 00422668 utilrnd.obj - 0004:00000798 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 00422798 utilstr.obj - 0004:000007c0 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 004227c0 utilstr.obj - 0004:000007e8 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 004227e8 utilstr.obj - 0004:000007f8 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 004227f8 utilstr.obj - 0004:0000080c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 0042280c utilstr.obj - 0004:00000828 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 00422828 utilstr.obj - 0004:00000844 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 00422844 utilstr.obj - 0004:00000850 ??_C@_07NPFI@bad?5osk?$AA@ 00422850 utilstr.obj - 0004:00000878 ?vcactSuspendCheckPointers@@3JA 00422878 memwin.obj - 0004:0000087c ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 0042287c memwin.obj - 0004:00000890 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 00422890 memwin.obj - 0004:000008a4 ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 004228a4 memwin.obj - 0004:000008bc ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004228bc memwin.obj - 0004:000008cc ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004228cc memwin.obj - 0004:000008f0 ??_C@_09BABB@hq?5is?5nil?$AA@ 004228f0 memwin.obj - 0004:000008fc ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004228fc memwin.obj - 0004:00000938 ?_rtiLast@CFL@@0JA 00422938 chunk.obj - 0004:0000093c ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 0042293c chunk.obj - 0004:00000958 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 00422958 chunk.obj - 0004:00000978 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 00422978 chunk.obj - 0004:0000099c ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 0042299c chunk.obj - 0004:000009b0 ??_C@_08EHFM@Bad?5RTIE?$AA@ 004229b0 chunk.obj - 0004:000009bc ??_C@_09HBDJ@bad?5index?$AA@ 004229bc chunk.obj - 0004:000009c8 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 004229c8 chunk.obj - 0004:000009e8 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 004229e8 chunk.obj - 0004:000009fc ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 004229fc chunk.obj - 0004:00000a0c ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 00422a0c chunk.obj - 0004:00000a1c ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 00422a1c chunk.obj - 0004:00000a38 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 00422a38 chunk.obj - 0004:00000a54 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 00422a54 chunk.obj - 0004:00000a6c ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 00422a6c chunk.obj - 0004:00000a90 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 00422a90 chunk.obj - 0004:00000aac ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 00422aac chunk.obj - 0004:00000ac0 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 00422ac0 chunk.obj - 0004:00000ad4 ??_C@_06CFJE@bad?5fp?$AA@ 00422ad4 chunk.obj - 0004:00000adc ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 00422adc chunk.obj - 0004:00000af0 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 00422af0 chunk.obj - 0004:00000b00 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 00422b00 chunk.obj - 0004:00000b0c ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 00422b0c chunk.obj - 0004:00000b30 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 00422b30 chunk.obj - 0004:00000b48 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 00422b48 chunk.obj - 0004:00000b58 ??_C@_06JFMK@bad?5cb?$AA@ 00422b58 chunk.obj - 0004:00000b60 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 00422b60 chunk.obj - 0004:00000b70 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 00422b70 chunk.obj - 0004:00000ba0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 00422ba0 codec.obj - 0004:00000bc0 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 00422bc0 codec.obj - 0004:00000bd8 ??_C@_08DJLA@nil?5cfmt?$AA@ 00422bd8 codec.obj - 0004:00000be4 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 00422be4 codec.obj - 0004:00000c04 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 00422c04 codec.obj - 0004:00000c40 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00422c40 codkauai.obj - 0004:00000c64 ??_C@_07DEPO@bad?5len?$AA@ 00422c64 codkauai.obj - 0004:00000c6c ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 00422c6c codkauai.obj - 0004:00000c7c ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 00422c7c codkauai.obj - 0004:00000ca0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 00422ca0 codkauai.obj - 0004:00000cb4 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 00422cb4 codkauai.obj - 0004:00000cc8 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 00422cc8 codkauai.obj - 0004:00000ce4 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 00422ce4 codkauai.obj - 0004:00000d14 ??_C@_0P@KAFA@still?5attached?$AA@ 00422d14 crf.obj - 0004:00000d24 ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 00422d24 crf.obj - 0004:00000d38 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 00422d38 crf.obj - 0004:00000d54 ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 00422d54 crf.obj - 0004:00000d74 ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 00422d74 crf.obj - 0004:00000d90 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 00422d90 crf.obj - 0004:00000dac ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 00422dac crf.obj - 0004:00000de4 ?vftgCreator@FIL@@2JA 00422de4 file.obj - 0004:00000de8 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00422de8 file.obj - 0004:00000dfc ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 00422dfc file.obj - 0004:00000e10 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 00422e10 file.obj - 0004:00000e24 ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 00422e24 file.obj - 0004:00000e3c ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 00422e3c file.obj - 0004:00000e54 ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 00422e54 file.obj - 0004:00000e6c ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 00422e6c file.obj - 0004:00000e84 ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 00422e84 file.obj - 0004:00000e98 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 00422e98 file.obj - 0004:00000eb0 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 00422eb0 file.obj - 0004:00000ec4 ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 00422ec4 file.obj - 0004:00000ed8 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 00422ed8 file.obj - 0004:00000eec ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 00422eec file.obj - 0004:00000f08 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 00422f08 file.obj - 0004:00000f20 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 00422f20 file.obj - 0004:00000f3c ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 00422f3c file.obj - 0004:00000f5c ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 00422f5c file.obj - 0004:00000fa0 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 00422fa0 filewin.obj - 0004:00000fbc ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 00422fbc filewin.obj - 0004:00000fd8 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 00422fd8 filewin.obj - 0004:00000ff8 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 00422ff8 filewin.obj - 0004:00001028 ?vftgTemp@@3JA 00423028 fniwin.obj - 0004:00001030 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00423030 fniwin.obj - 0004:0000103c ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 0042303c fniwin.obj - 0004:00001054 ??_C@_07JFJJ@Bad?5FTG?$AA@ 00423054 fniwin.obj - 0004:0000105c ??_C@_07NLCI@bad?5fni?$AA@ 0042305c fniwin.obj - 0004:00001064 ??_C@_0BC@IKJG@expected?5filename?$AA@ 00423064 fniwin.obj - 0004:00001078 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 00423078 fniwin.obj - 0004:00001088 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 00423088 fniwin.obj - 0004:0000109c ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 0042309c fniwin.obj - 0004:000010b4 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 004230b4 fniwin.obj - 0004:000010c4 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 004230c4 fniwin.obj - 0004:000010d4 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 004230d4 fniwin.obj - 0004:00001108 ??_C@_0P@JECG@negative?5sizes?$AA@ 00423108 groups.obj - 0004:00001118 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00423118 groups.obj - 0004:00001128 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00423128 groups.obj - 0004:0000113c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 0042313c groups.obj - 0004:00001150 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00423150 groups.obj - 0004:0000116c ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 0042316c groups.obj - 0004:00001188 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 00423188 groups.obj - 0004:000011a0 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 004231a0 groups.obj - 0004:000011c8 ??_C@_08OO@wrong?5bo?$AA@ 004231c8 groups.obj - 0004:000011d4 ??_C@_06NHBD@bad?5bo?$AA@ 004231d4 groups.obj - 0004:000011dc ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 004231dc groups.obj - 0004:00001208 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 00423208 groups.obj - 0004:00001218 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 00423218 groups.obj - 0004:00001228 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 00423228 groups.obj - 0004:0000123c ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 0042323c groups.obj - 0004:00001254 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 00423254 groups.obj - 0004:0000127c ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 0042327c groups.obj - 0004:00001290 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 00423290 groups.obj - 0004:000012a4 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 004232a4 groups.obj - 0004:000012b8 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 004232b8 groups.obj - 0004:000012d0 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 004232d0 groups.obj - 0004:000012e8 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 004232e8 groups.obj - 0004:0000133c ??_C@_0BJ@GIGP@compressed?5bitmap?5is?5bad?$AA@ 0042333c mbmp.obj - 0004:00001358 ??_C@_0BG@EIAF@palette?5is?5wrong?5size?$AA@ 00423358 mbmp.obj - 0004:00001370 ??_C@_0BH@FEMH@Bitmap?5data?5wrong?5size?$AA@ 00423370 mbmp.obj - 0004:00001388 ??_C@_0BH@DGGF@Empty?5bitmap?5rectangle?$AA@ 00423388 mbmp.obj - 0004:000013a0 ??_C@_0DE@EEJE@bad?5compression?5type?5or?5bitmap?5f@ 004233a0 mbmp.obj - 0004:000013d4 ??_C@_0BE@GKKF@not?5an?58?9bit?5bitmap?$AA@ 004233d4 mbmp.obj - 0004:000013e8 ??_C@_0BA@NOIG@bad?5bitmap?5file?$AA@ 004233e8 mbmp.obj - 0004:00001418 ??_C@_03HHKO@?$CFs?6?$AA@ 00423418 mssio.obj - 0004:0000143c ??_C@_0BE@FBBG@Ensured?5by?5creation?$AA@ 0042343c bren:tmap.obj - 0004:00001450 ??_C@_0BA@KAAN@bitmap?5too?5high?$AA@ 00423450 bren:tmap.obj - 0004:00001460 ??_C@_0BA@EKIO@bitmap?5too?5wide?$AA@ 00423460 bren:tmap.obj - 0004:00001470 ??_C@_0CE@DJE@writing?5to?5destination?5file?5fail@ 00423470 bren:tmap.obj - 0004:00001494 ??_C@_0BE@PBHM@allocation?5failure?6?$AA@ 00423494 bren:tmap.obj - 0004:000014a8 ??_C@_0CC@LHEJ@Couldn?8t?5create?5destination?5file@ 004234a8 bren:tmap.obj - 0004:000014d0 __iob 004234d0 LIBC:_file.obj - 0004:00001750 __lastiob 00423750 LIBC:_file.obj - 0004:00001754 __aenvptr 00423754 LIBC:crt0.obj - 0004:00001758 __wenvptr 00423758 LIBC:crt0.obj - 0004:0000175c __aexit_rtn 0042375c LIBC:crt0.obj - 0004:00001760 __stdbuf 00423760 LIBC:_sftbuf.obj - 0004:00001770 ___nullstring 00423770 LIBC:output.obj - 0004:00001784 ___wnullstring 00423784 LIBC:output.obj - 0004:00001788 _errno 00423788 LIBC:crt0dat.obj - 0004:0000178c __doserrno 0042378c LIBC:crt0dat.obj - 0004:00001790 __umaskval 00423790 LIBC:crt0dat.obj - 0004:00001794 __osver 00423794 LIBC:crt0dat.obj - 0004:00001798 __winver 00423798 LIBC:crt0dat.obj - 0004:0000179c __winmajor 0042379c LIBC:crt0dat.obj - 0004:000017a0 __winminor 004237a0 LIBC:crt0dat.obj - 0004:000017a4 ___argc 004237a4 LIBC:crt0dat.obj - 0004:000017a8 ___argv 004237a8 LIBC:crt0dat.obj - 0004:000017ac ___wargv 004237ac LIBC:crt0dat.obj - 0004:000017b0 __environ 004237b0 LIBC:crt0dat.obj - 0004:000017b4 ___initenv 004237b4 LIBC:crt0dat.obj - 0004:000017b8 __wenviron 004237b8 LIBC:crt0dat.obj - 0004:000017bc ___winitenv 004237bc LIBC:crt0dat.obj - 0004:000017c0 __pgmptr 004237c0 LIBC:crt0dat.obj - 0004:000017c4 __wpgmptr 004237c4 LIBC:crt0dat.obj - 0004:000017c8 __exitflag 004237c8 LIBC:crt0dat.obj - 0004:000017cc __C_Termination_Done 004237cc LIBC:crt0dat.obj - 0004:000017d0 __pnhHeap 004237d0 LIBC:malloc.obj - 0004:000017d8 __XcptActTab 004237d8 LIBC:winxfltr.obj - 0004:00001850 __First_FPE_Indx 00423850 LIBC:winxfltr.obj - 0004:00001854 __Num_FPE 00423854 LIBC:winxfltr.obj - 0004:00001858 __XcptActTabCount 00423858 LIBC:winxfltr.obj - 0004:0000185c __fpecode 0042385c LIBC:winxfltr.obj - 0004:00001860 __pxcptinfoptrs 00423860 LIBC:winxfltr.obj - 0004:00001868 __mbctype 00423868 LIBC:mbctype.obj - 0004:0000196c ___mbcodepage 0042396c LIBC:mbctype.obj - 0004:00001970 ___mblcid 00423970 LIBC:mbctype.obj - 0004:00001978 ___mbulinfo 00423978 LIBC:mbctype.obj - 0004:00001a80 __nhandle 00423a80 LIBC:ioinit.obj - 0004:00001a88 __osfile 00423a88 LIBC:ioinit.obj - 0004:00001ac8 __osfhnd 00423ac8 LIBC:ioinit.obj - 0004:00001bc8 __pipech 00423bc8 LIBC:ioinit.obj - 0004:00001c08 __heap_desc 00423c08 LIBC:heapinit.obj - 0004:00001c1c __heap_resetsize 00423c1c LIBC:heapinit.obj - 0004:00001c20 __amblksiz 00423c20 LIBC:heapinit.obj - 0004:00001c24 __heap_regionsize 00423c24 LIBC:heapinit.obj - 0004:00001c28 __heap_maxregsize 00423c28 LIBC:heapinit.obj - 0004:00001e98 __adbgmsg 00423e98 LIBC:crt0msg.obj - 0004:00001e9c __cflush 00423e9c LIBC:fflush.obj - 0004:00001ea0 __cfltcvt_tab 00423ea0 LIBC:cmiscdat.obj - 0004:00001eb8 __pctype 00423eb8 LIBC:ctype.obj - 0004:00001ebc __pwctype 00423ebc LIBC:ctype.obj - 0004:00001ec0 __ctype 00423ec0 LIBC:ctype.obj - 0004:000020c4 __newmode 004240c4 LIBC:_newmode.obj - 0004:000020c8 ___lc_handle 004240c8 LIBC:nlsdata2.obj - 0004:000020e0 ___lc_codepage 004240e0 LIBC:nlsdata2.obj - 0004:000020e4 ___mb_cur_max 004240e4 LIBC:nlsdata1.obj - 0004:000020ec ___decimal_point 004240ec LIBC:nlsdata1.obj - 0004:000020f0 ___decimal_point_length 004240f0 LIBC:nlsdata1.obj - 0004:00002260 ___xc_a 00424260 LIBC:crt0init.obj - 0004:000022c0 ___xc_z 004242c0 LIBC:crt0init.obj - 0004:000022c4 ___xi_a 004242c4 LIBC:crt0init.obj - 0004:000022cc ___xi_z 004242cc LIBC:crt0init.obj - 0004:000022d0 ___xp_a 004242d0 LIBC:crt0init.obj - 0004:000022d8 ___xp_z 004242d8 LIBC:crt0init.obj - 0004:000022dc ___xt_a 004242dc LIBC:crt0init.obj - 0004:000022e0 ___xt_z 004242e0 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00425000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00425014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00425028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0042503c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00425050 kernel32:KERNEL32.dll - 0005:00000118 __imp__DeleteCriticalSection@4 00425118 kernel32:KERNEL32.dll - 0005:0000011c __imp__IsBadReadPtr@8 0042511c kernel32:KERNEL32.dll - 0005:00000120 __imp__GlobalAlloc@8 00425120 kernel32:KERNEL32.dll - 0005:00000124 __imp__GlobalFree@4 00425124 kernel32:KERNEL32.dll - 0005:00000128 __imp__EnterCriticalSection@4 00425128 kernel32:KERNEL32.dll - 0005:0000012c __imp__LeaveCriticalSection@4 0042512c kernel32:KERNEL32.dll - 0005:00000130 __imp__GetCurrentThreadId@0 00425130 kernel32:KERNEL32.dll - 0005:00000134 __imp__GlobalReAlloc@12 00425134 kernel32:KERNEL32.dll - 0005:00000138 __imp__GlobalSize@4 00425138 kernel32:KERNEL32.dll - 0005:0000013c __imp__WideCharToMultiByte@32 0042513c kernel32:KERNEL32.dll - 0005:00000140 __imp__IsBadWritePtr@8 00425140 kernel32:KERNEL32.dll - 0005:00000144 __imp__CreateFileA@28 00425144 kernel32:KERNEL32.dll - 0005:00000148 __imp__CloseHandle@4 00425148 kernel32:KERNEL32.dll - 0005:0000014c __imp__DeleteFileA@4 0042514c kernel32:KERNEL32.dll - 0005:00000150 __imp__FlushFileBuffers@4 00425150 kernel32:KERNEL32.dll - 0005:00000154 __imp__SetFilePointer@16 00425154 kernel32:KERNEL32.dll - 0005:00000158 __imp__ReadFile@20 00425158 kernel32:KERNEL32.dll - 0005:0000015c __imp__WriteFile@20 0042515c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetFullPathNameA@16 00425160 kernel32:KERNEL32.dll - 0005:00000164 __imp__GetTempPathA@8 00425164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetLastError@0 00425168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetFileAttributesA@4 0042516c kernel32:KERNEL32.dll - 0005:00000170 __imp__InitializeCriticalSection@4 00425170 kernel32:KERNEL32.dll - 0005:00000174 __imp__ExitProcess@4 00425174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetVersion@0 00425178 kernel32:KERNEL32.dll - 0005:0000017c __imp__SetStdHandle@8 0042517c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetCommandLineA@0 00425180 kernel32:KERNEL32.dll - 0005:00000184 __imp__VirtualAlloc@16 00425184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetStdHandle@4 00425188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetCPInfo@8 0042518c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetOEMCP@0 00425190 kernel32:KERNEL32.dll - 0005:00000194 __imp__GetStartupInfoA@4 00425194 kernel32:KERNEL32.dll - 0005:00000198 __imp__GetFileType@4 00425198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetEnvironmentStrings@0 0042519c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetModuleFileNameA@12 004251a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__GetACP@0 004251a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__VirtualFree@12 004251a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__RtlUnwind@16 004251ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__UnhandledExceptionFilter@4 004251b0 kernel32:KERNEL32.dll - 0005:000001b4 \177KERNEL32_NULL_THUNK_DATA 004251b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__CharUpperBuffA@8 004251b8 user32:USER32.dll - 0005:000001bc \177USER32_NULL_THUNK_DATA 004251bc user32:USER32.dll - 0005:000001c0 __imp__timeGetTime@0 004251c0 winmm:WINMM.dll - 0005:000001c4 \177WINMM_NULL_THUNK_DATA 004251c4 winmm:WINMM.dll - 0005:000001c8 \177comdlg32_NULL_THUNK_DATA 004251c8 comdlg32:comdlg32.dll - - entry point at 0001:0001b192 - - Static symbols - - 0001:0001a2b0 _$$8000 0041b2b0 f mssio.obj - 0001:0001a310 _$$1000 0041b310 f mssio.obj - 0001:00019570 _$$1000 0041a570 f mbmp.obj - 0001:00019fe0 _$$a200 0041afe0 f mbmp.obj - 0001:0001a000 _$$8000 0041b000 f mbmp.obj - 0001:00019530 _$$1000 0041a530 f groups2.obj - 0001:00019550 _$$8000 0041a550 f groups2.obj - 0001:00017570 _$$1000 00418570 f groups.obj - 0001:000193f0 _$$8000 0041a3f0 f groups.obj - 0001:000156f0 _$$8000 004166f0 f fniwin.obj - 0001:00015b90 _$$1000 00416b90 f fniwin.obj - 0001:000170a0 _$$9000 004180a0 f fniwin.obj - 0001:000170c0 _$$a000 004180c0 f fniwin.obj - 0001:000170e0 _$$b000 004180e0 f fniwin.obj - 0001:00015210 _$$1000 00416210 f filewin.obj - 0001:000156d0 _$$8000 004166d0 f filewin.obj - 0001:00012450 _$$8000 00413450 f file.obj - 0001:00012910 _$$1000 00413910 f file.obj - 0001:00014b00 _$$9000 00415b00 f file.obj - 0001:00014b20 _$$a000 00415b20 f file.obj - 0001:00014b40 _$$b000 00415b40 f file.obj - 0001:00011650 _$$1000 00412650 f crf.obj - 0001:000123f0 _$$8000 004133f0 f crf.obj - 0001:00009d60 _$$1000 0040ad60 f codkauai.obj - 0001:00011370 _$$8000 00412370 f codkauai.obj - 0001:00008ea0 _$$1000 00409ea0 f codec.obj - 0001:00009830 _$$8000 0040a830 f codec.obj - 0001:00006660 _$$1000 00407660 f chunk.obj - 0001:00008940 _$$8000 00409940 f chunk.obj - 0001:000064d0 _$$1000 004074d0 f memwin.obj - 0001:000065a0 _$$8000 004075a0 f memwin.obj - 0001:00004c60 _$$1000 00405c60 f utilstr.obj - 0001:00005fc0 _$$8000 00406fc0 f utilstr.obj - 0001:00004370 _$$1000 00405370 f utilrnd.obj - 0001:00004850 _$$8000 00405850 f utilrnd.obj - 0001:00003440 _$$1000 00404440 f utilmem.obj - 0001:00003ea0 _$$8000 00404ea0 f utilmem.obj - 0001:00002a30 _$$1000 00403a30 f utilint.obj - 0001:00002ef0 _$$8000 00403ef0 f utilint.obj - 0001:000021f0 _$$8000 004031f0 f utilerro.obj - 0001:00002730 _$$1000 00403730 f utilerro.obj - 0001:00002960 _$$9000 00403960 f utilerro.obj - 0001:00002980 _$$a000 00403980 f utilerro.obj - 0001:000029a0 _$$b000 004039a0 f utilerro.obj - 0001:00001f60 _$$1000 00402f60 f utilcopy.obj - 0001:000021d0 _$$8000 004031d0 f utilcopy.obj - 0001:00001410 _$$1000 00402410 f base.obj - 0001:00001d90 _$$8000 00402d90 f base.obj - 0001:00000e00 _$$8000 00401e00 f util.obj - 0001:00000e20 _$$1000 00401e20 f util.obj - 0001:00000a60 _$$8000 00401a60 f utilglob.obj - 0001:00000ad0 _$$9000 00401ad0 f utilglob.obj - 0001:00000b30 _$$a000 00401b30 f utilglob.obj - 0001:00000b50 _$$b000 00401b50 f utilglob.obj - 0001:00000c40 _$$1000 00401c40 f utilglob.obj - 0001:00000590 _$$f200 00401590 f mktmap.obj - 0001:00000600 _$$1000 00401600 f mktmap.obj - 0001:000007e0 _$$8000 004017e0 f mktmap.obj - 0001:0001a3d0 _$$1000 0041b3d0 f bren:tmap.obj - 0001:0001ae40 _$$f200 0041be40 f bren:tmap.obj - 0001:0001aea0 _$$8000 0041bea0 f bren:tmap.obj - 0001:0001d691 __before 0041e691 f LIBC:heapadd.obj - 0001:0001cf06 __heap_new_region 0041df06 f LIBC:heapgrow.obj - 0001:0001cb48 _flsall 0041db48 f LIBC:fflush.obj - 0001:0001c8c5 __heap_grow_emptylist 0041d8c5 f LIBC:heapinit.obj - 0001:0001c579 _getSystemCP 0041d579 f LIBC:mbctype.obj - 0001:0001c5b4 _CPtoLCID 0041d5b4 f LIBC:mbctype.obj - 0001:0001c5f3 _setSBCS 0041d5f3 f LIBC:mbctype.obj - 0001:0001c3af _parse_cmdline 0041d3af f LIBC:stdargv.obj - 0001:0001c221 _xcptlookup 0041d221 f LIBC:winxfltr.obj - 0001:0001c024 __unwind_handler 0041d024 f LIBC:exsup.obj - 0001:0001be7f __heap_expand_block 0041ce7f f LIBC:realloc.obj - 0001:0001bcea _doexit 0041ccea f LIBC:crt0dat.obj - 0001:0001bd69 __initterm 0041cd69 f LIBC:crt0dat.obj - 0001:0001bbbd _write_char 0041cbbd f LIBC:output.obj - 0001:0001bbfd _write_multi_char 0041cbfd f LIBC:output.obj - 0001:0001bc2e _write_string 0041cc2e f LIBC:output.obj - 0001:0001bc65 _get_int_arg 0041cc65 f LIBC:output.obj - 0001:0001bc74 _get_int64_arg 0041cc74 f LIBC:output.obj - 0001:0001bc88 _get_short_arg 0041cc88 f LIBC:output.obj - -FIXUPS: 1c0d0 1e 12 44 13 13 ffffff2b 18 10 ffffff73 14 c 7b4 11 ab 17 -FIXUPS: 1c9d6 96 14 1c 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 fffffe85 -FIXUPS: 1c1fa 5 10 10 5 1c 9 15 f 1f 9 fffffef5 d9a f e c 3d 55 fffffdbe -FIXUPS: 1cdb3 33 1f d 23 23 fffffe56 12 11 11 5d 12 fffff725 4c 9b 1d 6d -FIXUPS: 1c5f7 6b 4f 24 6b 6a 30 14 12ad b 21 42 37 2f 19 2b e fffffe56 -FIXUPS: 1da2f ffffff70 d 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 -FIXUPS: 1d37a 19 fffffef2 15 2a 11 fffffdf5 ffffff4e fffffedf 1579 10 18 -FIXUPS: 1e539 3e 24 d 41 34 fffffdec ffffffaf 26 ffffff9d ffffffdf fffffead -FIXUPS: 1e2fa fffffe7e fffffd70 c 75 d 96 d c 32 fffffe42 ffffffae ffffff49 -FIXUPS: 1dd9d 2b 1a 1f ffffe04b 1d e 13 28 10 10 19 19 13 13 13 16 16 16 -FIXUPS: 1bf8d e 1e e 32 1d 2962 ffffff8c c d 20 d fffffed6 b b 1b fffffc0f -FIXUPS: 1b98b 15 c0 23 d 29 23 35 23 d 2c 24 45 e 33 f 25 13 16 1c d 1c -FIXUPS: 1bd31 48 13 24 d 1c 23 13 19 1f fffff6b7 10 3b 38 23 d 24 27 d -FIXUPS: 1b635 23 d 1e 6 8 8 2b 3a d 4b 33 25 19 87 c 22 64 29 28 d 2a d -FIXUPS: 16e9 13 1d 40 13 1d 35 34 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 1912 67 199d9 27 f 21 50 36 d 1d 83 fffe5df5 23 35 15 b b 46 24 -FIXUPS: 13d4 25 16 24 24 20 4c 27 21 30 1a 1a 28 5 1d 12 1e 40 13 1d 2c -FIXUPS: 16a9 e 13 59f 13 1d e 13 1f e 32 e 13 1f 30 30 fffff250 e b b 32 -FIXUPS: 1072 16 c0 23 17 1b 2c 2b 1b 26 2d 44 15 b b91 22 fffffb69 27 f -FIXUPS: 1a39 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 18 13 1d 13 1d e -FIXUPS: 1c19 13 e02 1b e 42 26 d 1d 23 1c 36 d 4f d 7b d 4a 20 12 1b 2d -FIXUPS: 2d20 20 29 d 21 22 e 13 5f 30 ffffef9e 42 8c0 10 19 25 b 13 10 -FIXUPS: 27b0 d 31 d 34 d 2c d 13 2e d 20 35 d a 18 b b 19 35 5 17 b 38 -FIXUPS: 2a29 fffff8d4 3a 1e 9 90 5 66 c c 14 1f 39 1c 11 13 32 d 32 d 10 -FIXUPS: 25d2 d a 9 e 5 24 23 48 d 1e 17 a86 7b ffffeceb 27 f 21 30 30 70 -FIXUPS: 2019 29 14 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f e 5 a d 28 -FIXUPS: 3939 10 23 20 1b 5 5 18 16 8 12 e 13 fffff4a8 d 53 d 5a 13 d d -FIXUPS: 3009 13 d d 6c d d 36 d 43 d 2c3 6b 20 2c 23 16 b 27 10 37 1d 31 -FIXUPS: 35ec 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 90 67 403 -FIXUPS: 3d37 a 10 a8 11 8f e 14 5 37 22 e 13 1d fffff2a5 36 27 f 21 30 -FIXUPS: 32c7 b 37 29 16 15 15 14 e 5b 9 18d4 2a d 17 15 2c d f 22 37 d -FIXUPS: 4ded c 33 d 20 18 b 2b ffffebcd d 9e d 4a d 29 d 20 13 24 58 b1 -FIXUPS: 491d a 49 d 23 1d 1f d f 33 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a -FIXUPS: 4c01 d 14 1b 2a d 2b d fffff8de d 35 d 2a 6 3f 2d 1e 14 42 d 17 -FIXUPS: 4762 6 28 6 30 6 19 f 2b a 12 f 2f e 1e c d 11 14 fffff87b d 17 -FIXUPS: 419e 18 a 24 d 42 2d 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 f d -FIXUPS: 44bf 27 d 2b 36 d 1112 14 27 2f 3c 23 1b 32 23 47 1f 1b 2a 22 e -FIXUPS: 589a 1f e 13 ffffe69f 17 3c 1d 10 58 28 10 31 1f 40 e 10 1142 19 -FIXUPS: 529e 10 1d d 2c d 28 10 8 c 3c 23 1b c 3e d 11 44 26 23 2d d 11 -FIXUPS: 553d 5c 23 1b 46 d 3c 1883 2e d 75 c 22 ffffdf1b 27 f 21 49 27 -FIXUPS: 4fb8 21 30 e 18 e 26 36 23 1b 58 d 2d 12 4e 30 2c 17 d 20 17d0 -FIXUPS: 6a5c 2d 23 3d f d 24 14 1a 2b d 51 d 2c e 4a d 16 25 13 d 10 d -FIXUPS: 6d1d 44 1d 17 42 52 13 d fffff274 32 14 d d 1c 29 1b d b 2cd a -FIXUPS: 64e1 23 d d e 14 15 14e d 98 d6 2e d 71 d 55 6d 23 2d 23 fffff2c8 -FIXUPS: 5ce3 45 36 2b 23 1b d f 13 7d d 3a 15 36 34 23 1b d 8 1b 32 23 -FIXUPS: 6017 d 14 9 6 22 23 19 8 14d9 21 ffffe352 23 32 20 d d 11 1d 33 -FIXUPS: 5a0c 1b d 30 3c 29 23 16 c 1b 23 1b 8 12 29 d 53 36 49 23 1b 1540 -FIXUPS: 7223 d 2e d 17 27 c b 2b 1e c b 2e d 2e c b 28 d 34 25 d 15 2d -FIXUPS: 748a 1d 12 4c b 6 63 2035 6d 42 46 ab 1e 25 b9 1f 1f 5a 30 35 22 -FIXUPS: 9977 13 ffffd65f e 10 29 61 38 e b 10 14 25 d 4d 2c 23 25 1f3e -FIXUPS: 914b 31 2d 2c 45 1f 10 10 10 35 23 d 32 35 d 27 23 13 18 22 23 -FIXUPS: 942e 23 d 76 22 33 23 16 b b fffff797 23 d 10 56 a4 1b 25 23 1f -FIXUPS: 8eeb d 1d 34 23 16 10 14 20 d 1f 1d 18 22 1d 10 19 20 d 3a d 26 -FIXUPS: 8987 14 20 d f 18 30 46 1d 1e 15 33 d 15 1c d 1e 18 30 d 22 15 -FIXUPS: 8bef a 15 1b 1f 21 1f 21 23 16 fffff897 80 30 11 16 39 30 1b 25 -FIXUPS: 870a 1b 2c 21 17 1e 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c 17 -FIXUPS: 8960 15 fffff784 43 d 2f 41 34 d 4a d 46 d 1a 20 d 23 16 23 2d -FIXUPS: 8394 d 5c 2d 20 d 53 d f 23 11 1f 17 19 fffff765 10 1c 2c d 31 -FIXUPS: 7d51 1d 6 8 4b d 50 13 17 22 d 35 d 6f d 50 d 2f d 32 d 2f 32 30 -FIXUPS: 80b1 3b fffff812 23 d 3e d 2f d 48 23 d 48 23 d 2f d 38 22 15 32 -FIXUPS: 7b94 f 18 10 a 20 d 2f 30 d 1a 18 6 2946 f f f f f 46 24 33 ac -FIXUPS: a78d aa 22 e 13 ffffcd68 27 f 21 50 30 30 30 19 a7 d 38 23 d 38 -FIXUPS: 78a9 d 298b 29 4f 23 16 b b e 30 2c 1a 14 24 b 13 10 21 d e 1a -FIXUPS: a465 d e 29 16 d 10 d b cc f e fffff7d5 27 10 8 18 1d 29 12 22 -FIXUPS: 9ec9 23 32 23 d 1b 70 23 4d 23 32 23 d 10 1a f 22 24 2c 23 16 22 -FIXUPS: a1e1 5a89 58 d 3e d 2629 d 27 ffff764b 27 f 21 49 27 f 21 30 e -FIXUPS: 9b27 2a d 5c 2f 2c 50 29 60 1b 10 22 d 32 5aa4 d 39 3c 49 23 ab -FIXUPS: f9c4 2d 22 d 11 22 1f 15 10 1d d 2f e 1f 17 1c 59 23 1b d 10 d -FIXUPS: fc1c 1a 27 fffff687 d b 2e 3d a 2b a 1c 1b a 90 10 c 1d d 68 d -FIXUPS: f576 7a d 50 36 d 1d 94 d 2a 1e 1a 2b 26 ffffbc2b 15 10 1d d 2f -FIXUPS: b4b8 1f 17 1c 3f 30 30 23 1b d 10 d b 1a 27 d 58 d 3e d 3b41 d -FIXUPS: f289 23 1b d ffffbb9d 2b a 1c 1b a 90 10 c 1d d 50 d 44 7a d 50 -FIXUPS: b16b d 1d 94 d 24 2e 27 c2 d 2d 22 d 15 1e fffff4fc 30 23 1b d -FIXUPS: a994 d b 38 21 2b 21 48 13 4d 28 b6 d b5 32 d 47 22 48 23 1b d -FIXUPS: ade4 d b 2e 3d 8137 23 d 2c d 10 1f 15 57 23 d 129 7e 2b 25 13 -FIXUPS: 13309 23 d 32 23 d 18 13 13 1e 22 e 13 ffff7478 27 f 8281 30 23 -FIXUPS: 12bee 23 d 2c d 3b d 1a 20 d 1d 20 36 23 32 23 d 2c d 2b 20 d 1a -FIXUPS: 12ea9 d 1d 22 54 23 fffff730 20 d 20 23 20 d 20 13 40 d 13 1d 10 -FIXUPS: 12801 36 22 23 39 d 94 23 d 14 1f 23 56 23 d 2f 58 23 307e 1f e -FIXUPS: 15bca 1f e 32 f 21 30 e 13 ffffc708 27 f 21 30 e 29 49 2f 3e d -FIXUPS: 12572 17 23 32 20 d 13 1a 41 31a7 29 50 10 41 23 d 2a d 31 d 43 -FIXUPS: 159df 11 c 16 18 2f d 34 d 22 10 8 c 1f 20 1b 5 5 18 e fffff8f2 -FIXUPS: 1548c 32 23 d 34 d 16 24 d 28 25 6 9 f 28 23 3e 22 11 1d 20 2a -FIXUPS: 1571d 16 11 19 21 d 1b 25 28 fffff86f 47 1b 25 23 18 2f d 1e 6 -FIXUPS: 151a4 d 30 26 11 33 d 4a 27 23 18 2f d 1e 6 20 d 30 22 15 33 d -FIXUPS: 14b3b 6c 32 23 16 b 8 2a 46 24 23 44 27 22 23 3a d 28 48 23 19 -FIXUPS: 14e9f 1d d 22 2e 2b 65 23 3d 1b 11 fffff6fe 13 23 31 23 d 18 13 -FIXUPS: 147ff d 1c 28 19 e 26 32 23 d 79 31 e 26 46 26 2c 13 d 14 23 32 -FIXUPS: 14b21 d fffff70b 23 1f 20 d 3c 25 23 1f 20 d 3c 25 29 32 23 d 3c -FIXUPS: 144ad 58 a9 37 48 2c 23 16 14 20 d 27 22 9 fffff6be 81 25 23 30 -FIXUPS: 13ee9 80 23 16 2e 19 d 15 2a 23 d f f 26 13 b 2f 23 d 10 a 15 2d -FIXUPS: 141a6 d 2f 1b fffff7f4 1d 31 77 20 d 26 2d 16 19 8 c 22 39 19 11 -FIXUPS: 13c29 2d 23 d f 15 2a 23 d 10 f e 1e 2a 23 23 fffff8a8 d a 2b 19 -FIXUPS: 136cc a a 10 b 8 16 2d 20 d 24 d e 1b 33 1d 31 77 20 d 47 2d 20 -FIXUPS: 13993 e 22 d 2a87 d 7c 29 23 1b 10 d 26 28 d 3a c a6 2c ffffcd85 -FIXUPS: 13492 27 f 21 49 27 f 21 30 e b b 33 20 d 14 2812 51 6 98 37 23 -FIXUPS: 15fc2 29 6d 20 b 26 23 16 3c 1b 23 40 9d 23 16 35 7e 24 23 1b 10 -FIXUPS: 163a4 26 35 8 12 1ab2 82 2d 2f e 9 9 20 18 28 e 9 9 20 12 9 9 1f -FIXUPS: 180cc 1b 5 5 18 e 13 ffffdb9f 80 23 1d 5e d 69 1c6f 16 1d d 10 -FIXUPS: 17b29 46 11 34 3a 2f 1c 12 1e 26 32 16 e 64 d 23 1c 34 1d d d 20 -FIXUPS: 17e49 14 1c e 27 fffff786 19 1c 16 32 23 d 4b d 13 20 d 2b 38 16 -FIXUPS: 17812 d 3f d 4b d 2a d 2c d 48 d 21 23 16 e b9 fffff6d0 d 10 2f -FIXUPS: 171dc 18 15 20 23 32 23 d 10 e 64 d 12 1a 2c 16 34 14 1e 1f 29 -FIXUPS: 17466 1d 8 11e 26 35 23 fffff68f 15 23 13 22 46 29 6d 39 23 d 15 -FIXUPS: 16e8e 1b 23 2d 26 32 16 12 57 d 11 38 32 1d 44 2c 3d d 10 10 fffff6ca -FIXUPS: 16827 b 11 26 29 32 23 d 1a e 8e 59 d 1a 1b 11 39 2f 25 b 1c 13 -FIXUPS: 16b66 53 2c 16 b b 16 17 c 367e d 37 d 43 d 20 12 2a d 25 22 e -FIXUPS: 1a43a 1f e 13 1f e 13 1f 13 1d 13 ffffc1e0 36 27 f 21 30 1b 20 -FIXUPS: 19f88 d 12 15 1f 13 17 6 1e 12 13 13 8 24 d d 10 20 d 56 d 18 40 -FIXUPS: 1a1dc d 27 d 25 12 2c d e fffff97f 9 26 23 1e 12 2f d 10 c 3e c -FIXUPS: 19d59 23 1e 12 2f d 15 c 26 17 6 1d 23 1d 2f d 11 23 23 1d fffff973 -FIXUPS: 198d7 19 22 9 23 14 9 6 29 9 23 11 9 6 2b 38 23 1b 33 d 28 9 21 -FIXUPS: 19b1b 1e 12 1e 30 e 32 30 fffff972 9 19 15 b 13 9 1d 14 9 6 22 -FIXUPS: 19669 23 16 2a 22 2b 23 1b 2c 2a 19 9 27 9 6 24 23 1b 3c d fffff957 -FIXUPS: 19214 e 3d 28 d 2d d 1a 13 1e 23 1e 10 10 a 16 13 13 b 19 1b 2c -FIXUPS: 19446 26 2d 23 19 24 23 1d 16 fffff8b4 46 12 13 13 13 a 20 d 1e -FIXUPS: 18efc 10 11 19 38 57 23 d 24 12 26 28 23 1d 30 23 1e 1f 23 32 23 -FIXUPS: 191ce fffff8f0 24 d 2a 23 13 c c 22 e 19 3a 2f 23 1e 24 9 22 23 -FIXUPS: 18ce9 10 17 6 23 23 1d 10 13 a 1d 26 e fffff962 14 22 2a 2d 23 -FIXUPS: 18816 15 d 13 13 1a 20 d 20 2f 9 f 34 9 f 31 17 13 13 36 d 3b d -FIXUPS: 18a6f 24 d fffff829 f 21 30 2c 17 c d 14 23 34 d 25 32 1f 32 39 -FIXUPS: 1851d 2c 50 11 10 b 12 29 17 25 30 45 d 2c 3a 269c 28 1a 7f 1f -FIXUPS: 1aebf 52 d6 5 26 10 10 19 19 13 13 13 16 16 16 e e fffff45c ffffdc0b -FIXUPS: 18189 f 21 49 27 f 21 49 24de 50 2f 55 13 11 9 f 1c 49 3f 16 2a -FIXUPS: 1a991 d 15 d 9 d 3b 27 26 2c cd 5c 35 83 2c 64 6c 14 1c 382 e 42 -FIXUPS: 1b18c 14 15 34 23 14 15 34 23 2b 22 e 13 fffff29f 20 11 3f 2d 23 -FIXUPS: 1a666 10 b b b b 8 38 1c 1f diff --git a/OBJ/WIND/SHARECD.I b/OBJ/WIND/SHARECD.I deleted file mode 100644 index 5b26059a..00000000 --- a/OBJ/WIND/SHARECD.I +++ /dev/null @@ -1,4571 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 26 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -SET _dfmbmp = 10 SET _dfscr = 10 SET _dfanm = 10 SET _dffill = 10 SET _curgok = 10 SET _dfmask = 10 SET _dftile = 10 SET _dfwave = 10 SET _dfmidi = 10 SET _dfvid = 10 - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 30 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 31 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 32 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 33 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 34 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 35 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 38 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" - - - - - -SET _curgok = 0x00015102 CHUNK( 'GOKD', 0x00015102, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 1 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "shared\pbm\page01.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "shared\pbm\page02.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "shared\pbm\page03.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "shared\pbm\page04.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "shared\pbm\page05.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "shared\pbm\page06.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "shared\pbm\page07.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "shared\pbm\page08.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "shared\pbm\page09.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "shared\pbm\page10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "shared\pbm\page11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "shared\pbm\page12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "shared\pbm\page13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "shared\pbm\page14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "shared\pbm\page15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "shared\pbm\page16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "shared\pbm\page17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "shared\pbm\page18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "shared\pbm\page19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "shared\pbm\page20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "shared\pbm\page21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "shared\pbm\page22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "shared\pbm\page23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "shared\pbm\page24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "shared\pbm\page25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "shared\pbm\page26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "shared\pbm\page27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "shared\pbm\page28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "shared\pbm\page29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "shared\pbm\page30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "shared\pbm\page31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "shared\pbm\page32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "shared\pbm\page33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "shared\pbm\page34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "shared\pbm\page35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "shared\pbm\page36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "shared\pbm\page37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "shared\pbm\page38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "shared\pbm\page39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "shared\pbm\page40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "shared\pbm\page41.pbm" ENDCHUNK - - diff --git a/OBJ/WIND/SHARED.I b/OBJ/WIND/SHARED.I deleted file mode 100644 index d08dd21a..00000000 --- a/OBJ/WIND/SHARED.I +++ /dev/null @@ -1,10018 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 26 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -SET _dfmbmp = 10 SET _dfscr = 10 SET _dfanm = 10 SET _dffill = 10 SET _curgok = 10 SET _dfmask = 10 SET _dftile = 10 SET _dfwave = 10 SET _dfmidi = 10 SET _dfvid = 10 - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 30 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 31 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 32 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 33 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 34 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 35 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 38 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 39 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\util.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 46 "H:\\BUILD\\SOC\\src\\shared\\util.cht" - - - - - -CHUNK( 'GLOP', 0x00050001, ) SCRIPT - PrintStr("Running shared init script"); - CreateChildThis(0x00010000, 0x00010000); - RunScriptGob(0x00010000, 0x0020); -ENDCHUNK - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00010010, ) FILE "shared\sound\util\splot.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010004, ) FILE "shared\sound\util\ding.wav" ENDCHUNK - - - - - -SET _curgok = 0x00010000 CHUNK( 'GOKD', 0x00010000, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - - - - - 0x00010000->cnoMidi = (0xFFFFFFFF); - 0x00010000->fHelpOn = (1); - 0x00010000->fMovie = (0); - 0x00010000->cnoPal = (0xFFFFFFFF); - - SetProp(0x23302, 0x0001); - - - - ::siiVoice = 0; - - - ::fTransition = 0; - - - - 0x00010000->fLobby1PS = (1); - 0x00010000->fBackstagePS = (1); - 0x00010000->fIdeasPS = (1); - 0x00010000->fTicketPS = (1); - 0x00010000->fStudioPS = (1); - - - - - 0x00010000->fLob1stHelp = (1); - 0x00010000->fTic1stHelp = (1); - 0x00010000->fBkstg1stHelp = (1); - - - ::fBio1 = GetProp( 0x23500 )|1; ::fBio2 = GetProp( 0x23501 ); SetProp( 0x23500, ::fBio1 );; - - - ::fStdIntro = 0; - If( GetProp( 0x23503 ) & 0x01 ); - - ::fStdIntro = 1; - End; - - - ::fHelpOn = 0; - ::NextProject = 1; - - - ::volume = 50; - ::kgobCurrentPlace = 0; - ::fInStudio = 1; - - - 0x00010000->fTrans = (0); - - - 0x00010000->cDisable = 0; - - - - - - - - FilterCmdsThis( 40042, 0, 0x0026 ); - - ENDCHUNK - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!(_parm[0] != 0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\shared\\util.cht", ", line ", NumToStr(161,"")); End; - If (!(_parm[1] >= 0x0001)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\shared\\util.cht", ", line ", NumToStr(162,"")); End; - PrintStr("Moving to ", NumToStr(_parm[0], ""), " with state = ", NumToStr(_parm[1], "")); - If (_parm[0] != ::kgobCurrentPlace); - 0x00010000->kstEntry = (_parm[1]); - If (::kgobCurrentPlace != 0); - DestroyGob(::kgobCurrentPlace); - End; - ::kgobCurrentPlace = _parm[0]; - CreateChildGob(GidParThis(), _parm[0], _parm[0]); - End; - FlushUserEvents(0xFFFFFFFF); - ENDCHUNK - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - - If (_parm[2]); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - End; - ENDCHUNK - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - If( FGobExists( 0x0001010c ) == 0); - - CreateChildGob(::kgobCurrentPlace, 0x0001010c, 0x0001010c); - End; - 0x00010000->keys = (_parm[0]); - ENDCHUNK - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - If( _parm[0] != .cnoMidi ); - If( .cnoMidi != 0xFFFFFFFF ); - - - StopSound( .siiMidi ); - End; - If( _parm[0] != 0xFFFFFFFF ); - cnt = ( _parm[1] ) ? 0x00010000 : 1; - .siiMidi = PlaySoundGob( 0x00010000, 'MIDS', _parm[0], 1, 0x00010000, cnt, 4, 998 ); - End; - .cnoMidi = _parm[0]; - End; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0025 ) SCRIPT - - - CreateChildGob( GidParGob( 0x00010000 ), 0x0001010b, 0x0001010b ); - CreateHelpGob( 0x0001010b, 0x00016043 ); - .keysTmp = ((0x00010000->keys)); - 0x00010000->keys = (0x00000000); - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0026 ) SCRIPT - - - - - - - If (_parm[1] == 101 && (((0x00010000->keys) & 0x00000008) == 0x00000008)); - - EnqueueCid(50080, 0, 1, 0, 0, 0); - - FilterCmdsThis(50082, 0, 0x0022); - Elif (_parm[1] == 101 && !(((0x00010000->keys) & 0x00000008) == 0x00000008)); - ModalHelp(0x20005853, -1); - - - Elif (_parm[1] == 100 && (((0x00010000->keys) & 0x00000010) == 0x00000010)); - - EnqueueCid(50091, 0, 0, 0, 0, 0); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - Elif (_parm[1] == 100 && !(((0x00010000->keys) & 0x00000010) == 0x00000010)); - ModalHelp(0x20005853, -1); - - - Elif (_parm[1] == 40042 && (((0x00010000->keys) & 0x00000001) == 0x00000001)); - If (::fInStudio); - PrintStr("Bringing up map from studio"); - CreateChildGob(0x20002, 0x00012000, 0x00012000); - Else; - PrintStr("Bringing up map from building"); - CreateChildGob(::kgobCurrentPlace, 0x00012000, 0x00012000); - End; - Exit(); - Elif (_parm[1] == 40042 && !(((0x00010000->keys) & 0x00000001) == 0x00000001)); - ModalHelp(0x20005854, -1); - - - Elif (_parm[1] == 50110 && (((0x00010000->keys) & 0x00000020) == 0x00000020)); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - Elif (_parm[1] == 50110 && !(((0x00010000->keys) & 0x00000020) == 0x00000020)); - EnqueueCid(50091, 0, 0, 0, 0, 0); - ModalHelp(0x20005853, -1); - - End; - - ENDCHUNK - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0027 ) SCRIPT - ::fTransition = 0; - If ( (_parm[0] != (0x00010000->cnoPal)) && (0x00010000->fTrans) && (_parm[0] != 0xFFFFFFFF) ); - - Transition(3, 0, 60, 0xffffffff, _parm[0]); - ::fTransition = 1; - Else; - - - If( _parm[0] != 0xFFFFFFFF ); - SetColorTable(_parm[0]); - End; - End; - 0x00010000->cnoPal = (_parm[0]); - 0x00010000->fTrans = (1); - ENDCHUNK - - - - - - - - - - - - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0028 ) SCRIPT - If (!(_parm[0] != 0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\shared\\util.cht", ", line ", NumToStr(331,"")); End; - PrintStr("Util: Loading Studio"); - StartLongOp(); - - - FilterCmdsThis(101, 0, 0xFFFFFFFF); - FilterCmdsThis(100, 0, 0xFFFFFFFF); - FilterCmdsThis(50110, 0, 0xFFFFFFFF); - - - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - .kgobCurrentPlaceT = ::kgobCurrentPlace; - SetProp(0x23300, _parm[0]); - 0x00010000->cnoPal = (0xFFFFFFFF); - 0x00010000->kstEntry = (_parm[1]); - SetProp(0x23302, _parm[1]); - ::kgobCurrentPlace = 0; - - - FilterCmdsThis(50107, 0, 0x0029); - - - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - - EnqueueCid(50060, 0, .kgobCurrentPlaceT, _parm[2], 0, 0); - ::fInStudio = 1; - ENDCHUNK - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - PrintStr("Load Studio Failed handler"); - ::fInStudio = 0; - ::kgobCurrentPlace = .kgobCurrentPlaceT; - EnqueueCid(50091, 0, 0,0,0,0); - FilterCmdsThis(50107, 0, 0xFFFFFFFF); - FilterCmdsGob(0x00010000, 101, 0, 0x0026); - FilterCmdsGob(0x00010000, 100, 0, 0x0026); - EndLongOp(1); - ENDCHUNK - - -CHUNK( 'GLOP', 0x00016043, ) SCRIPT - - - If( _parm[0] == 2 ); - DestroyGob( 0x0001010b ); - 0x00010000->keys = (0x00010000->keysTmp); - DestroyGob( GidParThis() ); - Elif( _parm[0] == 1 ); - EnqueueCid( 106, 0,0,0,0,0 ); - End; -ENDCHUNK - - - - -SET _curgok = 0x0001010b CHUNK( 'GOKD', 0x0001010b, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 1000 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 15 0 0 0xfe LONG 0xffffffff - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ENDCHUNK - - - - -SET _curgok = 0x0001010c CHUNK( 'GOKD', 0x0001010c, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 975 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 15 0 0 0xfe LONG 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundThis( 'WAVE', 0x00010010, 1, 0x00010000, 1, 0, 789 ); - ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x0001604f, ) SCRIPT - If( _parm[0] != 0 ); - DestroyGob( GidParThis() ); - End; -ENDCHUNK -#line 40 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\cursors.cht" - - - - -CHUNK( 'GGCR', 0x00000001, ) PACK CURSOR "shared\cursors\hotspot.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000002, ) PACK CURSOR "shared\cursors\default.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000003, ) PACK CURSOR "shared\cursors\actions2.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000004, ) PACK CURSOR "shared\cursors\crs1018.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000005, ) PACK CURSOR "shared\cursors\turnleft.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000006, ) PACK CURSOR "shared\cursors\turnrigt.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000007, ) PACK CURSOR "shared\cursors\turnarnd.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000009, ) PACK CURSOR "shared\cursors\turnarnd.cur" ENDCHUNK - -#line 41 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\map.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 29 "H:\\BUILD\\SOC\\src\\shared\\map.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\map.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 95 "H:\\BUILD\\SOC\\src\\shared\\map.chh" -#line 30 "H:\\BUILD\\SOC\\src\\shared\\map.cht" - -CHUNK( 'WAVE', 0x00010008, ) FILE "shared\sound\mapobj.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010009, ) FILE "shared\sound\mapopen.wav" ENDCHUNK - - - - - - - - - - - - - - - - - -SET _curgok = 0x00012000 CHUNK( 'GOKD', 0x00012000, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 900 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "shared\pbm\map\mapback.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - PlaySoundGob(0x00010000, 'WAVE', 0x00010009, 1, 0x00010000, 1, 1,998); - - - - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - - FilterCmdsThis(100003, 0, 0x0029); - - - CreateChildThis( 0x00012050, 0x00012050 ); - CreateChildThis( 0x00012051, 0x00012051 ); - CreateChildThis( 0x00012058, 0x00012058 ); - CreateChildThis( 0x00012052, 0x00012052 ); - CreateChildThis( 0x00012054, 0x00012054 ); - CreateChildThis( 0x00012055, 0x00012055 ); - CreateChildThis( 0x00012056, 0x00012056); - CreateChildThis( 0x00012057, 0x00012057 ); - CreateChildThis( 0x0001205d, 0x0001205d); - CreateChildThis( 0x0001205b, 0x0001205b ); - CreateChildThis( 0x0001205c, 0x0001205c ); - CreateChildThis( 0x00012059, 0x00012059 ); - CreateChildThis( 0x0001205a, 0x0001205a ); - CreateChildThis( 0x00012062, 0x00012062 ); - CreateChildThis( 0x00012060, 0x00012060 ); -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - Cell( 0x00000040, 0, 0, 1 ); - - - CreateHelpThis( 0x00018547 ); -ENDCHUNK - - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - Return( 1 ); -ENDCHUNK - - - - - - - - - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - newplace = _parm[0]; - newstate = _parm[1]; - fTools = _parm[2]; - - - PlaySoundGob(0x00010000, 'WAVE', 0x00010008, 1, 0x00010000, 1, 1, - 998); - - - - If ( ::fInStudio ); - If( fTools ); - - PrintStr("Studio=>Studio via Map"); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyThis(); - Exit(); - End; - - - - PrintStr("Studio=>Building via Map"); - SetProp(0x23300, newplace ); - SetProp(0x23302, newstate); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - RunScriptGob(0x00010000, 0x0027, 0xFFFFFFFF); - - EnqueueCid(50061, 0, 0, 0, 0, 0); - DestroyThis(); - - Else; - If (GidParThis() == newplace); - - - - PrintStr("Building=>Same place in Building via Map"); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyThis(); - - If (newstate != Match( newplace, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001)); - PrintStr("Changing state to ", NumToStr(newstate, "")); - 0x00010000->kstEntry = (newstate); - - - - RunScriptGob(newplace, 0x0020); - End; - - Exit(); - End; - - - - - PrintStr("Building=>Building or Studio via Map"); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyThis(); - RunScriptGob(0x00010000, 0x0021, newplace, newstate); - End; -ENDCHUNK - - - -SET _curgok = 0x00012055 CHUNK( 'GOKD', 0x00012055, ) PACK SHORT BO OSK LONG 0 LONG 0 581 365 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\cancel.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\cancelc.bmp" ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "shared\sound\map\cancel.wav" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob( 0x00012000 ); - -ENDCHUNK - - -SET _curgok = 0x00012062 CHUNK( 'GOKD', 0x00012062, ) PACK SHORT BO OSK LONG 0 LONG 0 571 426 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\exit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\exits.bmp" ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "shared\sound\map\mapexit.wav" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob( 0x00012000 ); - EnqueueCid(106, 0, 0, 0, 0, 0);; -ENDCHUNK - - - - -SET _curgok = 0x00012003 CHUNK( 'GOKD', 0x00012003, ) PACK SHORT BO OSK LONG 6 LONG 0 0 0 555 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 6, 22 ) "shared\bmp\map\here.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 30 8 32 70 4 0 0 0 6 - SHORT 13 1 22 4 2 0 0 0 4 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - If (::fInStudio); - plc = GetProp(0x23300); - Else; - plc = ::kgobCurrentPlace; - End; - - - x= Match( plc, -1, - 0x00010500, 346, - 0x00010580, 346, - 0x00010600, 320, - 0x00010700, 320, - 0x00010800, 320, - 0x00010900, 320, - 0x00010c00, 320, - 0x00010d00, 320, - 0x00010e00, 320, - 0x00010f00, 320, - 0x00011000, 320, - 0x00011100, 320, - 0x00011400, 238, - 0x00011500, 238, - 0x00011600, 238, - 0x00011700, 238, - 0x00011800, 322, - 0x00011900, 322, - 0x00011a00, 322, - 0x00011b00, 322, - 0x00011c00, 372, - 0x00011d00, 372, - 0x00011e00, 372, - 0x00011f00, 372 - ); - - y= Match( plc, -1, - 0x00010500, 428, - 0x00010580, 428, - 0x00010600, 363, - 0x00010700, 363, - 0x00010800, 363, - 0x00010900, 363, - 0x00010c00, 256, - 0x00010d00, 256, - 0x00010e00, 256, - 0x00010f00, 256, - 0x00011000, 147, - 0x00011100, 147, - 0x00011400, 141, - 0x00011500, 141, - 0x00011600, 141, - 0x00011700, 141, - 0x00011800, 61, - 0x00011900, 61, - 0x00011a00, 61, - 0x00011b00, 61, - 0x00011c00, 134, - 0x00011d00, 134, - 0x00011e00, 134, - 0x00011f00, 134 - ); - - If (!(x != -1 && y != -1)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\shared\\map.cht", ", line ", NumToStr(263,"")); End; - MoveAbsThis( x, y ); - -ENDCHUNK - - - - -SET _curgok = 0x00012056 CHUNK( 'GOKD', 0x00012056, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\ideamsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob(0x00012000, 0x0021, 0x00011400, - Match( 0x00011400, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012057 CHUNK( 'GOKD', 0x00012057, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\studmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011800, - Match( 0x00011800, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012050 CHUNK( 'GOKD', 0x00012050, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\projmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011c00, - Match( 0x00011c00, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012051 CHUNK( 'GOKD', 0x00012051, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\bkstgmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011000, - Match( 0x00011000, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012058 CHUNK( 'GOKD', 0x00012058, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\theatmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00010c00, - Match( 0x00010c00, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - - -SET _curgok = 0x00012052 CHUNK( 'GOKD', 0x00012052, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\LOBBYMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00010600, Match( 0x00010600, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), - 0); -ENDCHUNK - - -SET _curgok = 0x00012054 CHUNK( 'GOKD', 0x00012054, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\TICKTMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00010580, - Match( 0x00010580, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - - -SET _curgok = 0x0001205a CHUNK( 'GOKD', 0x0001205a, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\biomsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011400, 0x0008 , 0 ); -ENDCHUNK - - -SET _curgok = 0x00012059 CHUNK( 'GOKD', 0x00012059, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\SPLOTMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011400, 0x0007 , 0 ); -ENDCHUNK - - -SET _curgok = 0x0001205d CHUNK( 'GOKD', 0x0001205d, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\TBOXMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011800, 0x0002, 1); -ENDCHUNK - - -SET _curgok = 0x0001205b CHUNK( 'GOKD', 0x0001205b, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\LOGOMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011c00, 0x0004 , 0 ); -ENDCHUNK - - -SET _curgok = 0x0001205c CHUNK( 'GOKD', 0x0001205c, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\GIZMOMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011c00, 0x0005 , 0 ); -ENDCHUNK - - - - - -SET _curgok = 0x0001205f CHUNK( 'GOKD', 0x0001205f, ) PACK SHORT BO OSK LONG 3 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\volthmb.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x00012060 CHUNK( 'GOKD', 0x00012060, ) PACK SHORT BO OSK LONG 0 LONG 0 22 294 500 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 48 104 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x0001205f, 0x0001205f ); - - y = 96 -(( GetMasterVolume() * 96 )/ (0x00010000*2)); - MoveAbsGob( 0x0001205f, 0, y ); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis('WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 998); - While( 1 ); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif( y > 96 ); - y =96; - End; - - - MoveAbsGob( 0x0001205f, 0, y ); - - - newvol = ( (0x00010000*2)* (96-y) ) / 96; - - - SetMasterVolume( newvol ); - - - Cell( 0 , 0,0, 10 ); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound( .siiLoop ); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) -#line 42 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\shared\\sharhelp.cht" - - - - - - - - - - - - - -SET _curgok = 0x00016050 CHUNK( 'GOKD', 0x00016050, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 115, 72 ) "shared\bmp\alert.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 14 14 24 183 8 0 0 0 24 - SHORT 14 14 24 95 8 0 0 0 24 -ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) FILE "shared\sound\alert2.wav" ENDCHUNK - - -CHUNK( 'GLOP', 0x00016051, ) SCRIPT - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x2000016A, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - - - - -SET _curgok = 0x00016001 CHUNK( 'GOKD', 0x00016001, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 500 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 93, 29 ) "shared\bmp\balln1b.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 7 8 7 22 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x0001600d CHUNK( 'GOKD', 0x0001600d, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 0 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - - - - -SET _curgok = 0x0001602e CHUNK( 'GOKD', 0x0001602e, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 168, 56 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - - - - -SET _curgok = 0x0001602b CHUNK( 'GOKD', 0x0001602b, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 500 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x0001600e CHUNK( 'GOKD', 0x0001600e, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 231, 143 ) "shared\bmp\toolhelp.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 14 14 24 183 8 0 0 0 24 - SHORT 14 14 24 95 8 0 0 0 24 -ENDCHUNK - - - - - -SET _curgok = 0x0001602a CHUNK( 'GOKD', 0x0001602a, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 0 0 0xffffffff 0x00000002 0x0001 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 120, 72 ) "shared\bmp\alert.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 14 14 24 191 8 0 0 0 24 - SHORT 14 14 24 95 8 0 0 0 24 -ENDCHUNK - - - - -SET _curgok = 0x0001600c CHUNK( 'GOKD', 0x0001600c, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 899 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x0001600f CHUNK( 'GOKD', 0x0001600f, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 899 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\balln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 0 0 0 32 1 0 0 0 0 - SHORT 0 0 0 32 1 0 0 0 0 -ENDCHUNK - - - - -SET _curgok = 0x00016010 CHUNK( 'GOKD', 0x00016010, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 899 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\balln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 0 0 0 32 1 0 0 0 0 - SHORT 0 0 0 32 1 0 0 0 0 -ENDCHUNK - - - - -SET _curgok = 0x00016003 CHUNK( 'GOKD', 0x00016003, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 899 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\balln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 0 0 0 32 1 0 0 0 0 - SHORT 0 0 0 32 1 0 0 0 0 -ENDCHUNK - - - - -SET _curgok = 0x00016002 CHUNK( 'GOKD', 0x00016002, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 40, 29 ) "shared\bmp\balln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 3 8 7 20 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x0001600a CHUNK( 'GOKD', 0x0001600a, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 40, 29 ) "shared\bmp\vo.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 3 8 7 20 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x00016004 CHUNK( 'GOKD', 0x00016004, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 30, 5 ) "shared\bmp\border1.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 11 20 31 40 1 0 0 0 8 - SHORT 25 8 25 32 1 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016011 CHUNK( 'GOKD', 0x00016011, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 168, 56 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); - - FilterCmdsThis(40040, 0, 0x0021); - FilterCmdsThis(40041, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0001602c CHUNK( 'GOKD', 0x0001602c, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0x0021 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 84, 28 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0001602d CHUNK( 'GOKD', 0x0001602d, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0x0021 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 84, 28 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); - - FilterCmdsThis(40040, 0, 0x0021); - FilterCmdsThis(40041, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00016015 CHUNK( 'GOKD', 0x00016015, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 61 ) "shared\bmp\coblln0.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 5 5 8 151 8 0 0 0 8 - SHORT 4 4 8 106 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016016 CHUNK( 'GOKD', 0x00016016, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\coblln1.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 29 8 36 146 8 0 0 0 8 - SHORT 28 8 32 103 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016017 CHUNK( 'GOKD', 0x00016017, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 1 ) "shared\bmp\coblln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 8 8 58 8 35 60 8 8 - SHORT 41 8 42 108 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016018 CHUNK( 'GOKD', 0x00016018, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 189, 2 ) "shared\bmp\coblln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 32 8 147 8 0 0 0 36 - SHORT 30 8 34 103 4 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016019 CHUNK( 'GOKD', 0x00016019, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 201, 65 ) "shared\bmp\coblln4.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 46 8 148 8 0 0 0 48 - SHORT 3 8 8 40 4 34 40 4 8 -ENDCHUNK - - - - -SET _curgok = 0x0001601a CHUNK( 'GOKD', 0x0001601a, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 189, 143 ) "shared\bmp\coblln5.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 32 8 148 8 0 0 0 36 - SHORT 3 32 8 102 8 0 0 0 36 -ENDCHUNK - - - - -SET _curgok = 0x0001601b CHUNK( 'GOKD', 0x0001601b, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 155 ) "shared\bmp\coblln6.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 8 8 60 8 33 60 8 8 - SHORT 3 38 8 105 8 0 0 0 44 -ENDCHUNK - - - - -SET _curgok = 0x0001601c CHUNK( 'GOKD', 0x0001601c, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 147 ) "shared\bmp\coblln7.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 30 8 34 149 8 0 0 0 8 - SHORT 3 28 8 101 8 0 0 0 38 -ENDCHUNK - - - - -SET _curgok = 0x0001601d CHUNK( 'GOKD', 0x0001601d, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 66 ) "shared\bmp\coblln8.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 32 8 42 150 8 0 0 0 8 - SHORT 3 8 8 40 4 34 32 4 8 -ENDCHUNK - - - - -SET _curgok = 0x0001601e CHUNK( 'GOKD', 0x0001601e, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 61 ) "shared\bmp\coblln0.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 5 5 8 151 8 0 0 0 8 - SHORT 4 4 8 106 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x0001601f CHUNK( 'GOKD', 0x0001601f, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 500 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x00016031 CHUNK( 'GOKD', 0x00016031, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 1 ) "shared\bmp\coblln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 8 8 58 8 35 60 8 8 - SHORT 41 8 42 108 8 0 0 0 8 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0001602f CHUNK( 'GOKD', 0x0001602f, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 201, 65 ) "shared\bmp\coblln4.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 8 46 8 148 8 0 0 0 48 - SHORT 8 8 8 40 4 34 40 4 8 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00016032 CHUNK( 'GOKD', 0x00016032, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 61 ) "shared\bmp\coblln0.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 5 5 8 151 8 0 0 0 8 - SHORT 4 4 8 106 8 0 0 0 8 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00016030 CHUNK( 'GOKD', 0x00016030, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 155 ) "shared\bmp\coblln6.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 8 8 8 60 8 33 60 8 8 - SHORT 8 38 8 105 8 0 0 0 44 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - - - - -CHUNK( 'GLOP', 0x000305F0, ) SCRIPT - If(_parm[0] == 0); - fMZAudio = GetProp( 0x23503 ) & 0x01; - If (._cnoSound != 0xFFFFFFFF && !fMZAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F1, ) SCRIPT - If(_parm[0] == 0); - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F2, ) SCRIPT - If(_parm[0] == 0); - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F3, ) SCRIPT - If(_parm[0] == 0); - fMZAudio = GetProp( 0x23503 ) & 0x01; - If (._cnoSound != 0xFFFFFFFF && !fMZAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F4, ) SCRIPT - If(_parm[0] == 0); - fMZAudio = GetProp( 0x23503 ) & 0x01; - If (._cnoSound != 0xFFFFFFFF && !fMZAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - - - - -SET _curgok = 0x00016009 CHUNK( 'GOKD', 0x00016009, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 800 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 93, 29 ) "shared\bmp\balln1a.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 7 7 133 4 0 0 0 7 - SHORT 7 7 7 89 4 0 0 0 7 -ENDCHUNK - - - - -SET _curgok = 0x00016008 CHUNK( 'GOKD', 0x00016008, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 800 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 170, 103 ) "shared\bmp\balln1e.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 32 7 131 4 0 0 0 32 - SHORT 7 7 7 70 4 0 0 0 26 -ENDCHUNK - - - - - -SET _curgok = 0x00016007 CHUNK( 'GOKD', 0x00016007, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 800 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 102 ) "shared\bmp\balln1d.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 32 7 32 131 4 0 0 0 7 - SHORT 7 7 7 68 4 0 0 0 26 -ENDCHUNK - - - - -SET _curgok = 0x00016006 CHUNK( 'GOKD', 0x00016006, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 40, 29 ) "shared\bmp\balln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 7 8 7 20 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x00016100 CHUNK( 'GOKD', 0x00016100, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\squishy1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\squishy3.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\squishy2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "shared\sound\ok.wav" ENDCHUNK -#line 47 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\shared\\biopage.cht" - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 14 "H:\\BUILD\\SOC\\src\\shared\\biopage.cht" - -CHUNK( 'WAVE', 0x00010044, ) FILE "shared\sound\biofound.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010045, ) FILE "shared\sound\bioalrdy.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010046, ) FILE "shared\sound\tbkopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018114, ) FILE "shared\sound\biocancl.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018115, ) FILE "shared\sound\biopop.wav" ENDCHUNK - -SET _curgok = 0x00015100 CHUNK( 'GOKD', 0x00015100, ) PACK SHORT BO OSK LONG 1 LONG 0 0 0 1000 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\biopage.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, 0x00000040 ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - .count = 0; - - - FilterCmdsThis(100003, 0, 0x0029); - - .snd = (::fBioCtrl ) ? 0x00010046 : 0x00010044; - - RunScriptThis( 0x0021 ); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!(::nBioPage >= 0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\shared\\biopage.cht", ", line ", NumToStr(37,"")); End; - PrintStr("Updating bio pages object"); - - If( ::nBioPage < 0 || ::nBioPage > 41 ); - AlertStr( "Invalid bio page start: default to 0 [toc]" ); - ::nBioPage = 0; - End; - - - - id = Select( ::nBioPage, 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20, 21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 ); - - If ( !FGobExists( 0x00015102 )); - CreateChildThis( 0x00015102, 0x00015102 ); - End; - SetRepGob( 0x00015102, 0x00000040 + id ); - NumToStr( id, 100 ); - - - If ( !FGobExists( 0x00015109 )); - CreateChildThis( 0x00015109, 0x00015109 ); - End; - - If ( !FGobExists( 0x0001510b )); - CreateChildThis( 0x0001510b, 0x0001510b ); - End; - - - CreateHelpGob( 0x00015109, 0x00015201 + id ); - - - If ( id != 0 ); - CreateHelpGob( 0x0001510b, 0x0001522d ); - Else; - DestroyGob( 0x0001510b ); - End; - - - If( ::fBioCtrl ); - - If( !FGobExists( 0x00015108)); - CreateChildThis( 0x00015108, 0x00015108 ); - End; - - If( !FGobExists( 0x00015104)); - CreateChildThis( 0x00015104, 0x00015104 ); - End; - - If( !FGobExists( 0x00015105 )); - CreateChildThis( 0x00015105, 0x00015105 ); - End; - End; - - - If( !FGobExists( 0x00015103 )); - CreateChildThis( 0x00015103,0x00015103 ); - End; - - - If( .snd != 0xFFFFFFFF ); - - PlaySoundThis('WAVE', .snd, 1, 0x00010000, 1, 1, 998); - .snd = 0xFFFFFFFF; - End; - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - - If ( _parm[2] == Select( .count, 's', 'o', 'c', 'r', 'a', 't', 'e', 's' )); - ++.count; - If( .count == 8 ); - CreateChildThis( 7777, 7777 ); - End; - Else; - .count = 0; - End; - Return( 1 ); -ENDCHUNK - -SET _curgok = 7777 CHUNK( 'GOKD', 7777, ) PACK SHORT BO OSK LONG 2 - LONG 0 160 120 999 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "bldgdata.chk" ENDCHUNK - - - - -SET _curgok = 0x00015108 CHUNK( 'GOKD', 0x00015108, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\biopanel.pbm" ENDCHUNK - - - -SET _curgok = 0x00015103 CHUNK( 'GOKD', 0x00015103, ) PACK SHORT BO OSK LONG 0 LONG 0 511 415 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\cancel.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) PACKEDFILE "shared\pbm\cancelc.pbm" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - - PlaySoundThis('WAVE', 0x00018114, 1, 0x00010000, 1, 4, 998); - If (FGobExists(0x20017)); - EnqueueCid(100008, 0x20017, 0, 0, 0, 0); - End; - DestroyGob( 0x00015100 ); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK - - - -SET _curgok = 0x00015104 CHUNK( 'GOKD', 0x00015104, ) PACK SHORT BO OSK LONG 0 LONG 0 339 410 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\fwd.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) PACKEDFILE "shared\pbm\fwdc.pbm" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - curr = ::nBioPage; - While( 1 ); - ++::nBioPage; - If ( ::nBioPage == 41 ); - ::nBioPage = curr; - Break; - End; - If( ((::nBioPage > 31) ? ( ::fBio2 & (1<<(::nBioPage&31)) ) : ( ::fBio1 & (1<<(::nBioPage&31)) ))); - wav = Rnd(2) + 0x00010042; - PlaySoundThis('WAVE', wav, 1, 0x00010000, 1, 4, 998); - Break; - End; - End; - - RunScriptGob( 0x00015100, 0x0021 ); -ENDCHUNK - - -SET _curgok = 0x00015105 CHUNK( 'GOKD', 0x00015105, ) PACK SHORT BO OSK LONG 0 LONG 0 229 410 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\back.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) PACKEDFILE "shared\pbm\backc.pbm" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - curr = ::nBioPage; - While( 1 ); - --::nBioPage; - If ( ::nBioPage < 0 ); - ::nBioPage = curr; - Break; - End; - - If( ((::nBioPage > 31) ? ( ::fBio2 & (1<<(::nBioPage&31)) ) : ( ::fBio1 & (1<<(::nBioPage&31)) ))); - wav = Rnd(2) + 0x00010040; - PlaySoundThis('WAVE', wav, 1, 0x00010000, 1, 4, 998); - Break; - End; - End; - - RunScriptGob( 0x00015100, 0x0021 ); -ENDCHUNK - - - - - -CHUNK( 'WAVE', 0x00010040, ) FILE "shared\sound\bio\TBPAGEB1.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00010041, ) FILE "shared\sound\bio\TBPAGEB2.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00010042, ) FILE "shared\sound\bio\TBPAGEF1.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00010043, ) FILE "shared\sound\bio\TBPAGEF2.WAV" ENDCHUNK - - - - - - -SET _curgok = 0x00015106 CHUNK( 'GOKD', 0x00015106, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 300 300 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - -SET _curgok = 0x00015109 CHUNK( 'GOKD', 0x00015109, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 3 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 215 58 422 407 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - -SET _curgok = 0x0001510b CHUNK( 'GOKD', 0x0001510b, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 282 424 344 451 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - - -SET _curgok = 0x00015107 CHUNK( 'GOKD', 0x00015107, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 84, 61 ) "shared\bmp\biotip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 15 15 24 120 8 0 0 0 24 - SHORT 12 12 24 74 8 0 0 0 24 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); - PlaySoundThis('WAVE', 0x00018115 , 1, 0x00010000, 1, 1, 998); - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyThis(); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x0001522e, ) SCRIPT - - If(_parm[0] != 0); - - If( _parm[4] != 0xFFFFFFFF ); - CreateHelpGob( 0x00015100, _parm[4] ); - End; - Return( 1 ); - End; -ENDCHUNK - - -#line 49 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\portbmp.cht" - - - -CHUNK( 'MBMP', 1, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portfolo.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 9, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portfols.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 2, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portok.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 3, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portokc.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 4, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portcan.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 5, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portcanc.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 7, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\porthm.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 8, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\porthmc.bmp" ENDCHUNK - - -CHUNK( 'WAVE', 0x00010006, ) FILE "shared\sound\util\vzh1016.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010005, ) FILE "shared\sound\util\vzh1017.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010007, ) FILE "shared\sound\util\vzh1018.wav" ENDCHUNK -#line 50 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" diff --git a/OBJ/WIND/SITOBREN.MAP b/OBJ/WIND/SITOBREN.MAP deleted file mode 100644 index 48d8cf63..00000000 --- a/OBJ/WIND/SITOBREN.MAP +++ /dev/null @@ -1,3502 +0,0 @@ - sitobren - - Timestamp is 3078f68a (Mon Oct 09 03:16:42 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 000575c9H .text CODE - 0002:00000000 00003770H .bss DATA - 0003:00000000 00001168H .rdata DATA - 0004:00000000 0000c2b8H .data DATA - 0004:0000c2b8 00000004H .CRT$XCA DATA - 0004:0000c2bc 00000070H .CRT$XCU DATA - 0004:0000c32c 00000004H .CRT$XCZ DATA - 0004:0000c330 00000004H .CRT$XIA DATA - 0004:0000c334 0000000cH .CRT$XIC DATA - 0004:0000c340 00000004H .CRT$XIZ DATA - 0004:0000c344 00000004H .CRT$XPA DATA - 0004:0000c348 00000004H .CRT$XPX DATA - 0004:0000c34c 00000004H .CRT$XPZ DATA - 0004:0000c350 00000004H .CRT$XTA DATA - 0004:0000c354 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000d8H .idata$4 DATA - 0005:0000013c 000000d8H .idata$5 DATA - 0005:00000214 00000396H .idata$6 DATA - 0006:00000000 00000258H CONST DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 00001040H .debug$F DATA - 0008:00001480 00000000H .debug$G DATA - 0008:00001480 00000033H .debug$H DATA - 0008:fff8a000 00000000H .debug$P DATA - 0008:fff8a000 00000000H .debug$S DATA - 0008:fff8a000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 _main 00401000 f sitobren.obj - 0001:00000d40 ?Debugger@@YGXXZ 00401d40 f sitobren.obj - 0001:00000d60 ?FWouldBe@S2B@@SGHJ@Z 00401d60 f sitobren.obj - 0001:00000da0 ?FIs@S2B@@UAEHJ@Z 00401da0 f sitobren.obj - 0001:00000dd0 ?Cls@S2B@@UAEJXZ 00401dd0 f sitobren.obj - 0001:00000e00 ?FWouldBe@S2BLX@@SGHJ@Z 00401e00 f sitobren.obj - 0001:00000e40 ?FIs@S2BLX@@UAEHJ@Z 00401e40 f sitobren.obj - 0001:00000e70 ?Cls@S2BLX@@UAEJXZ 00401e70 f sitobren.obj - 0001:00000ea0 ?AssertNilOrPvCb@@YGXPAXJ@Z 00401ea0 f sitobren.obj - 0001:00000ed0 ?AssertValid@S2BLX@@QAEXK@Z 00401ed0 f sitobren.obj - 0001:00000f00 ?MarkBmhr@S2B@@AAEXPAU_bmhr@@@Z 00401f00 f sitobren.obj - 0001:00000f70 ?MarkMem@S2B@@UAEXXZ 00401f70 f sitobren.obj - 0001:000011a0 ?MarkMem@S2BLX@@UAEXXZ 004021a0 f sitobren.obj - 0001:000011d0 ?Ps2bNew@S2B@@SGPAV1@PAVFIL@@HIHHPAD@Z 004021d0 f sitobren.obj - 0001:000012c0 ??0S2B@@IAE@HIHHPAD@Z 004022c0 f sitobren.obj - 0001:00001880 ??1S2B@@MAE@XZ 00402880 f sitobren.obj - 0001:00001c10 ??1BASE@@UAE@XZ 00402c10 f sitobren.obj - 0001:00001c60 ?_DumpHeader@S2B@@IAEXKKPAVSTN@@H@Z 00402c60 f sitobren.obj - 0001:00001e60 ??0STN@@QAE@XZ 00402e60 f sitobren.obj - 0001:00001ec0 ?Psz@STN@@QAEPADXZ 00402ec0 f sitobren.obj - 0001:00001f10 ?FConvertSI@S2B@@QAEHPAVMSNK@@0PAVFNI@@K@Z 00402f10 f sitobren.obj - 0001:00002470 ?Cch@STN@@QAEJXZ 00403470 f sitobren.obj - 0001:000024c0 ??4STN@@QAEAAV0@PAD@Z 004034c0 f sitobren.obj - 0001:000024f0 ?SetSz@STN@@QAEXPAD@Z 004034f0 f sitobren.obj - 0001:00002530 ?_FReadCmdline@S2B@@IAAHPADPAHQBU_scrp@@ZZ 00403530 f sitobren.obj - 0001:00002950 ?PfilFirst@FIL@@SGPAV1@XZ 00403950 f sitobren.obj - 0001:00002970 ?_FDoTtActor@S2B@@IAEHPAH@Z 00403970 f sitobren.obj - 0001:00002d00 ?IvMac@GRPB@@QAEJXZ 00403d00 f sitobren.obj - 0001:00002d30 ?_FDoTtActionS2B@S2B@@IAEHXZ 00403d30 f sitobren.obj - 0001:00003d10 ?FAppendStn@STN@@QAEHPAV1@@Z 00404d10 f sitobren.obj - 0001:00003d50 ?Prgch@STN@@QAEPADXZ 00404d50 f sitobren.obj - 0001:00003da0 ?LwLine@LEXB@@QAEJXZ 00404da0 f sitobren.obj - 0001:00003dd0 ?IchLine@LEXB@@QAEJXZ 00404dd0 f sitobren.obj - 0001:00003e00 ?DumpSz@CHSE@@QAEXPAD@Z 00404e00 f sitobren.obj - 0001:00003e60 ?_FInitGlpiCost@S2B@@IAEHH@Z 00404e60 f sitobren.obj - 0001:000040f0 ?_FDoTtBackgroundS2B@S2B@@IAEHXZ 004050f0 f sitobren.obj - 0001:000043d0 ?_FDoTtCostume@S2B@@IAEHXZ 004053d0 f sitobren.obj - 0001:00004ae0 ??0ACR@@QAE@EEE@Z 00405ae0 f sitobren.obj - 0001:00004b20 ?LwFromBytes@@YGJEEEE@Z 00405b20 f sitobren.obj - 0001:00004b60 ??0ACR@@QAE@HH@Z 00405b60 f sitobren.obj - 0001:00004bb0 ?_FDumpLites@S2B@@IAEHHPAVSTN@@@Z 00405bb0 f sitobren.obj - 0001:00004df0 ?_FDumpCameras@S2B@@IAEHHPAVSTN@@HH@Z 00405df0 f sitobren.obj - 0001:000054d0 ?_FZbmpFromZpic@S2B@@IAEHPAVSTN@@KHJJPAUCAM@@@Z 004064d0 f sitobren.obj - 0001:00005e40 ?LwMin@@YGJJJ@Z 00406e40 f sitobren.obj - 0001:00005e70 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 00406e70 f sitobren.obj - 0001:00005ed0 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 00406ed0 f sitobren.obj - 0001:00005f30 ?_FBvec3Read@S2B@@IAEHPAVS2BLX@@PAUbr_vector3@@PAU_s2btk@@@Z 00406f30 f sitobren.obj - 0001:00005fd0 ?_Bmat34FromVec3@S2B@@IAEXPAUbr_vector3@@PAUbr_matrix34@@@Z 00406fd0 f sitobren.obj - 0001:00006230 ?_ReadLite@S2B@@IAEXPAVSTN@@PAULITE@@@Z 00407230 f sitobren.obj - 0001:000065a0 ?_ReadCam@S2B@@IAEXPAVSTN@@PAUCAM@@PAPAVGL@@@Z 004075a0 f sitobren.obj - 0001:00006c00 ?_FProcessModel@S2B@@IAEHPAUDK_model@@Ubr_matrix34@@PAPAU_bmhr@@PAVSTN@@PAU4@H@Z 00407c00 f sitobren.obj - 0001:00007440 ?FEqualSz@STN@@QAEHPAD@Z 00408440 f sitobren.obj - 0001:00007480 ?_PbmhrFromModel@S2B@@IAEPAU_bmhr@@PAUDK_model@@PAUbr_matrix34@@PAPAU2@PAU2@HH@Z 00408480 f sitobren.obj - 0001:00007ce0 ?CchTotSz@@YGJPAD@Z 00408ce0 f sitobren.obj - 0001:00007d00 ?PvAddBv@@YGPAXPAXJ@Z 00408d00 f sitobren.obj - 0001:00007d70 ?BrsDiv@@YGJJJ@Z 00408d70 f sitobren.obj - 0001:00007ea0 ?LwAbs@@YGJJ@Z 00408ea0 f sitobren.obj - 0001:00007ed0 ?_TextureFileFromModel@S2B@@IAEXPAUDK_model@@PAU_bmhr@@H@Z 00408ed0 f sitobren.obj - 0001:000081a0 ?_FTmapFromBmp@S2B@@IAEHPAU_bmhr@@KPAVSTN@@@Z 004091a0 f sitobren.obj - 0001:000087f0 ?FAppendSz@STN@@QAEHPAD@Z 004097f0 f sitobren.obj - 0001:00008830 ?FEqual@STN@@QAEHPAV1@@Z 00409830 f sitobren.obj - 0001:00008870 ?Pbpmp@TMAP@@QAEPAUbr_pixelmap@@XZ 00409870 f sitobren.obj - 0001:000088a0 ?_FFlushTmaps@S2B@@IAEHXZ 004098a0 f sitobren.obj - 0001:00008b50 ?_BrsdwrFromModel@S2B@@IAEJPAUDK_model@@QAJ@Z 00409b50 f sitobren.obj - 0001:00008c20 ?_CopyVertices@S2B@@IAEXPAUDK_Vertex@@PAXJ@Z 00409c20 f sitobren.obj - 0001:00008ed0 ?_CopyFaces@S2B@@IAEXPAUDK_Polygon@@PAXJQAUbr_vertex@@J@Z 00409ed0 f sitobren.obj - 0001:00009060 ?_FDoBodyPart@S2B@@IAEHPAU_bmhr@@J@Z 0040a060 f sitobren.obj - 0001:000097b0 ?_ApplyBmdlXF@S2B@@IAEXPAU_bmhr@@@Z 0040a7b0 f sitobren.obj - 0001:00009820 ?_FProcessBmhr@S2B@@IAEHPAPAU_bmhr@@F@Z 0040a820 f sitobren.obj - 0001:00009bf0 ?_FEnsureOneRoot@S2B@@IAEHPAPAU_bmhr@@@Z 0040abf0 f sitobren.obj - 0001:00009dc0 ?_InitBmhr@S2B@@IAEXPAU_bmhr@@@Z 0040adc0 f sitobren.obj - 0001:00009f10 ?FModelFixWrapping@@YGHPAUbr_model@@PAH@Z 0040af10 f sitobren.obj - 0001:0000ab50 ?FIn@@YGHJJJ@Z 0040bb50 f sitobren.obj - 0001:0000ab90 ??0S2BLX@@QAE@PAVFIL@@H@Z 0040bb90 f sitobren.obj - 0001:0000abd0 ??1S2BLX@@UAE@XZ 0040bbd0 f sitobren.obj - 0001:0000ac00 ?GetFni@S2BLX@@QAEXPAVFNI@@@Z 0040bc00 f sitobren.obj - 0001:0000ac30 ?GetFni@FIL@@QAEXPAVFNI@@@Z 0040bc30 f sitobren.obj - 0001:0000ac60 ?FIsDigit@S2BLX@@QAEHD@Z 0040bc60 f sitobren.obj - 0001:0000aca0 ?_GrfctCh@LEXB@@IAEKD@Z 0040bca0 f sitobren.obj - 0001:0000acf0 ?_FBrsFromS2btk@S2B@@IAEHPAU_s2btk@@PAJ@Z 0040bcf0 f sitobren.obj - 0001:0000ad70 ?_FlushTmplKids@S2B@@IAEXXZ 0040bd70 f sitobren.obj - 0001:0000b770 ?_FModlfToBmdl@S2B@@IAEHPAUMODLF@@PAPAUbr_model@@@Z 0040c770 f sitobren.obj - 0001:0000b890 ?_FBmdlToModlf@S2B@@IAEHPAUbr_model@@PAPAUMODLF@@PAJ@Z 0040c890 f sitobren.obj - 0001:0000ba70 ?_FSetCps@S2B@@IAEHPAU_bmhr@@PAUCPS@@@Z 0040ca70 f sitobren.obj - 0001:0000bb90 ?_FChidFromModlf@S2B@@IAEHPAU_bmhr@@PAKPAPAU_bmdb@@@Z 0040cb90 f sitobren.obj - 0001:0000be40 ?_FAddBmdlParent@S2B@@IAEHPAU_bmdb@@PAUKID@@@Z 0040ce40 f sitobren.obj - 0001:0000bee0 ?_FInsertPhshdb@S2B@@IAEHPAU_hshdb@@PAVGL@@@Z 0040cee0 f sitobren.obj - 0001:0000bf80 ?_FIphshdbFromLuHash@S2B@@IAEHIPAJPAVGL@@@Z 0040cf80 f sitobren.obj - 0001:0000c060 ?_PbmdbFindModlf@S2B@@IAEPAU_bmdb@@PAUMODLF@@JPAI@Z 0040d060 f sitobren.obj - 0001:0000c130 ?_InitCrcTable@S2B@@IAEXXZ 0040d130 f sitobren.obj - 0001:0000c1a0 ?_LuHashBytesNoTable@S2B@@IAEIIPAXJ@Z 0040d1a0 f sitobren.obj - 0001:0000c240 ?_LuHashBytes@S2B@@IAEIIPAXJ@Z 0040d240 f sitobren.obj - 0001:0000c2e0 ?_FImat34GetBmat34@S2B@@IAEHPAUbr_matrix34@@PAJ@Z 0040d2e0 f sitobren.obj - 0001:0000c4f0 ?_DisposeBmhr@S2B@@IAEXPAPAU_bmhr@@@Z 0040d4f0 f sitobren.obj - 0001:0000c5b0 ?PglcrngFromPal@@YGPAVGL@@PAV1@@Z 0040d5b0 f sitobren.obj - 0001:0000c800 ?LwcrngNearestBrclr@@YGJKPAVGL@@0@Z 0040d800 f sitobren.obj - 0001:0000c9b0 ?_ReadNumTok@S2BLX@@MAEXPAUTOK@@DJJ@Z 0040d9b0 f sitobren.obj - 0001:0000cba0 ?_Advance@LEXB@@IAEXJ@Z 0040dba0 f sitobren.obj - 0001:0000cbe0 ?FGetS2btk@S2BLX@@QAEHPAU_s2btk@@@Z 0040dbe0 f sitobren.obj - 0001:0000cde0 ?FEqualUserSz@STN@@QAEHPADK@Z 0040dde0 f sitobren.obj - 0001:0000ce20 ?FGetTok@S2BLX@@UAEHPAUTOK@@@Z 0040de20 f sitobren.obj - 0001:0000ceb0 ?FTextFromTt@S2BLX@@UAEHJPAVSTN@@@Z 0040deb0 f sitobren.obj - 0001:0000cf90 ?FTextFromS2btk@S2BLX@@QAEHPAU_s2btk@@PAVSTN@@@Z 0040df90 f sitobren.obj - 0001:0000d1b0 ?SetNil@STN@@QAEXXZ 0040e1b0 f sitobren.obj - 0001:0000d210 ?FInsertCh@STN@@QAEHJD@Z 0040e210 f sitobren.obj - 0001:0000d250 ?WarnProc@@YGXPADJ0@Z 0040e250 f sitobren.obj - 0001:0000d2c0 ?FAssertProc@@YGHPADJ0PAXJ@Z 0040e2c0 f sitobren.obj - 0001:0000d480 ??_EBASE@@UAEPAXI@Z 0040e480 f sitobren.obj - 0001:0000d480 ??_GBASE@@UAEPAXI@Z 0040e480 f sitobren.obj - 0001:0000d4c0 ??4FNI@@QAEAAV0@AAV0@@Z 0040e4c0 f sitobren.obj - 0001:0000d510 ??1FNI@@UAE@XZ 0040e510 f sitobren.obj - 0001:0000d540 ??_ES2BLX@@UAEPAXI@Z 0040e540 f sitobren.obj - 0001:0000d540 ??_GS2BLX@@UAEPAXI@Z 0040e540 f sitobren.obj - 0001:0000d580 ??0_s2btk@@QAE@XZ 0040e580 f sitobren.obj - 0001:0000d5b0 ??_GS2B@@MAEPAXI@Z 0040e5b0 f sitobren.obj - 0001:0000d5b0 ??_ES2B@@MAEPAXI@Z 0040e5b0 f sitobren.obj - 0001:0000d5f0 ??4TOK@@QAEAAU0@AAU0@@Z 0040e5f0 f sitobren.obj - 0001:0000d640 ??4BASE@@QAEAAV0@ABV0@@Z 0040e640 f sitobren.obj - 0001:0000d680 ??0TOK@@QAE@XZ 0040e680 f sitobren.obj - 0001:0000d6ab _SI_swap2byte 0040e6ab f byteswap.obj - 0001:0000d6c6 _SI_swap4byte 0040e6c6 f byteswap.obj - 0001:0000d6f7 _SI_swap8byte 0040e6f7 f byteswap.obj - 0001:0000d755 _SI_fix_SI_FileChunk 0040e755 f byteswap.obj - 0001:0000d771 _SI_byteswap_fread 0040e771 f byteswap.obj - 0001:0000d7ee _SI_Vector_fread 0040e7ee f byteswap.obj - 0001:0000d83e _SI_3doubles_fread 0040e83e f byteswap.obj - 0001:0000d879 _SI_RGBA_fread 0040e879 f byteswap.obj - 0001:0000d8d5 _SI_RGB_fread 0040e8d5 f byteswap.obj - 0001:0000d925 _SI_Matrix_fread 0040e925 f byteswap.obj - 0001:0000d967 _SI_FileChunk_fread 0040e967 f byteswap.obj - 0001:0000d9a0 ?FWouldBe@USAC@@SGHJ@Z 0040e9a0 f utilglob.obj - 0001:0000d9e0 ?FIs@USAC@@UAEHJ@Z 0040e9e0 f utilglob.obj - 0001:0000da10 ?Cls@USAC@@UAEJXZ 0040ea10 f utilglob.obj - 0001:0000db50 ??1RND@@UAE@XZ 0040eb50 f utilglob.obj - 0001:0000db80 ??1KCDC@@UAE@XZ 0040eb80 f utilglob.obj - 0001:0000dbb0 ??0KCDC@@QAE@XZ 0040ebb0 f utilglob.obj - 0001:0000dbf0 ??1USAC@@UAE@XZ 0040ebf0 f utilglob.obj - 0001:0000dc40 ??1CODC@@UAE@XZ 0040ec40 f utilglob.obj - 0001:0000dc70 ??_GKCDC@@UAEPAXI@Z 0040ec70 f utilglob.obj - 0001:0000dc70 ??_EKCDC@@UAEPAXI@Z 0040ec70 f utilglob.obj - 0001:0000dcb0 ??0CODC@@QAE@XZ 0040ecb0 f utilglob.obj - 0001:0000dcf0 ??_ECODC@@UAEPAXI@Z 0040ecf0 f utilglob.obj - 0001:0000dcf0 ??_GCODC@@UAEPAXI@Z 0040ecf0 f utilglob.obj - 0001:0000dd30 ??0MUTX@@QAE@XZ 0040ed30 f utilglob.obj - 0001:0000dd60 ??1MUTX@@QAE@XZ 0040ed60 f utilglob.obj - 0001:0000dd90 ?FCanDo@KCDC@@UAEHHJ@Z 0040ed90 f utilglob.obj - 0001:0000dde0 ?MarkUtilMem@@YGXXZ 0040ede0 f util.obj - 0001:0000df30 ?PfilNext@FIL@@QAEPAV1@XZ 0040ef30 f util.obj - 0001:0000df60 ?PbllNext@BLL@@QAEPAV1@XZ 0040ef60 f util.obj - 0001:0000df90 ?PcflNext@CFL@@QAEPAV1@XZ 0040ef90 f util.obj - 0001:0000dfc0 ?PcflFirst@CFL@@SGPAV1@XZ 0040efc0 f util.obj - 0001:0000dfe0 ?FWouldBe@BLL@@SGHJ@Z 0040efe0 f base.obj - 0001:0000e020 ?FIs@BLL@@UAEHJ@Z 0040f020 f base.obj - 0001:0000e050 ?Cls@BLL@@UAEJXZ 0040f050 f base.obj - 0001:0000e080 ?Cls@BASE@@UAEJXZ 0040f080 f base.obj - 0001:0000e0b0 ?FIs@BASE@@UAEHJ@Z 0040f0b0 f base.obj - 0001:0000e0f0 ?FWouldBe@BASE@@SGHJ@Z 0040f0f0 f base.obj - 0001:0000e120 ??0BASE@@QAE@XZ 0040f120 f base.obj - 0001:0000e200 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 0040f200 f base.obj - 0001:0000e220 ?_Enter@@YGXXZ 0040f220 f base.obj - 0001:0000e240 ?_Leave@@YGXXZ 0040f240 f base.obj - 0001:0000e260 ?AddRef@BASE@@UAEXXZ 0040f260 f base.obj - 0001:0000e2f0 ?Release@BASE@@UAEXXZ 0040f2f0 f base.obj - 0001:0000e3a0 ??2BASE@@SGPAXIPADJ@Z 0040f3a0 f base.obj - 0001:0000e570 ??3BASE@@SGXPAX@Z 0040f570 f base.obj - 0001:0000e5f0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 0040f5f0 f base.obj - 0001:0000e610 ?AssertValid@BASE@@QAEXK@Z 0040f610 f base.obj - 0001:0000e740 ?MarkMemStub@BASE@@QAEXXZ 0040f740 f base.obj - 0001:0000e820 ?MarkMem@BASE@@UAEXXZ 0040f820 f base.obj - 0001:0000e870 ?_AssertDoi@@YGXPAUDOI@@H@Z 0040f870 f base.obj - 0001:0000ea60 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 0040fa60 f base.obj - 0001:0000eae0 ?_UnlinkDoi@@YGXPAUDOI@@@Z 0040fae0 f base.obj - 0001:0000eb60 ?AssertUnmarkedObjs@@YGXXZ 0040fb60 f base.obj - 0001:0000ee30 ?UnmarkAllObjs@@YGXXZ 0040fe30 f base.obj - 0001:0000ef40 ??0BLL@@QAE@XZ 0040ff40 f base.obj - 0001:0000ef90 ??1BLL@@UAE@XZ 0040ff90 f base.obj - 0001:0000efe0 ?_Attach@BLL@@IAEXPAX@Z 0040ffe0 f base.obj - 0001:0000f180 ?AssertValid@BLL@@QAEXK@Z 00410180 f base.obj - 0001:0000f280 ??_GBLL@@UAEPAXI@Z 00410280 f base.obj - 0001:0000f280 ??_EBLL@@UAEPAXI@Z 00410280 f base.obj - 0001:0000f2c0 ?PvSubBv@@YGPAXPAXJ@Z 004102c0 f base.obj - 0001:0000f2e0 ?Enter@MUTX@@QAEXXZ 004102e0 f base.obj - 0001:0000f310 ?Leave@MUTX@@QAEXXZ 00410310 f base.obj - 0001:0000f340 ?LwThreadCur@@YGJXZ 00410340 f base.obj - 0001:0000f360 ?FillPb@@YGXPAXJE@Z 00410360 f utilcopy.obj - 0001:0000f3c0 ?ClearPb@@YGXPAXJ@Z 004103c0 f utilcopy.obj - 0001:0000f410 ?ReversePb@@YGXPAXJ@Z 00410410 f utilcopy.obj - 0001:0000f470 ?SwapBlocks@@YGXPAXJJ@Z 00410470 f utilcopy.obj - 0001:0000f4f0 ?SwapPb@@YGXPAX0J@Z 004104f0 f utilcopy.obj - 0001:0000f590 ?FEqualRgb@@YGHPAX0J@Z 00410590 f utilcopy.obj - 0001:0000f610 ?CbEqualRgb@@YGJPAX0J@Z 00410610 f utilcopy.obj - 0001:0000f6a0 ?FcmpCompareRgb@@YGKPAX0J@Z 004106a0 f utilcopy.obj - 0001:0000f750 ?CopyPb@@YGXPAX0J@Z 00410750 f utilcopy.obj - 0001:0000f7f0 ?BltPb@@YGXPAX0J@Z 004107f0 f utilcopy.obj - 0001:0000f8d0 ?FWouldBe@ERS@@SGHJ@Z 004108d0 f utilerro.obj - 0001:0000f910 ?FIs@ERS@@UAEHJ@Z 00410910 f utilerro.obj - 0001:0000f940 ?Cls@ERS@@UAEJXZ 00410940 f utilerro.obj - 0001:0000f970 ??0ERS@@QAE@XZ 00410970 f utilerro.obj - 0001:0000f9c0 ?Push@ERS@@UAEXJPADJ@Z 004109c0 f utilerro.obj - 0001:0000fb80 ?FPop@ERS@@UAEHPAJ@Z 00410b80 f utilerro.obj - 0001:0000fc80 ?Clear@ERS@@UAEXXZ 00410c80 f utilerro.obj - 0001:0000fcf0 ?Cerc@ERS@@UAEJXZ 00410cf0 f utilerro.obj - 0001:0000fd40 ?FIn@ERS@@UAEHJ@Z 00410d40 f utilerro.obj - 0001:0000fe10 ?ErcGet@ERS@@UAEJJ@Z 00410e10 f utilerro.obj - 0001:0000feb0 ?Flush@ERS@@UAEXJ@Z 00410eb0 f utilerro.obj - 0001:0000ffa0 ?AssertValid@ERS@@QAEXK@Z 00410fa0 f utilerro.obj - 0001:00010040 ??1ERS@@UAE@XZ 00411040 f utilerro.obj - 0001:00010070 ??_GERS@@UAEPAXI@Z 00411070 f utilerro.obj - 0001:00010070 ??_EERS@@UAEPAXI@Z 00411070 f utilerro.obj - 0001:000100d0 ?LwRoundAway@@YGJJJ@Z 004110d0 f utilint.obj - 0001:00010160 ?LwRoundToward@@YGJJJ@Z 00411160 f utilint.obj - 0001:000101d0 ?LwMul@@YGJJJ@Z 004111d0 f utilint.obj - 0001:00010240 ?AssertIn@@YGXJJJ@Z 00411240 f utilint.obj - 0001:000102c0 ?SwapBytesBom@@YGXPAXK@Z 004112c0 f utilint.obj - 0001:000103a0 ?SwapBytesRglw@@YGXPAXJ@Z 004113a0 f utilint.obj - 0001:00010450 ?AssertBomRglw@@YGXKJ@Z 00411450 f utilint.obj - 0001:00010510 ?LwMulDiv@@YGJJJJ@Z 00411510 f utilint.obj - 0001:00010560 ?LwMax@@YGJJJ@Z 00411560 f utilint.obj - 0001:00010590 ?FEmpty@RC@@QAEHXZ 00411590 f utilint.obj - 0001:000105f0 ?LwBound@@YGJJJJ@Z 004115f0 f utilint.obj - 0001:00010630 ??0USAC@@QAE@XZ 00411630 f utilint.obj - 0001:00010690 ?FReadable@DVER@@QAEHFF@Z 00411690 f utilint.obj - 0001:00010750 ??_EUSAC@@UAEPAXI@Z 00411750 f utilint.obj - 0001:00010750 ??_GUSAC@@UAEPAXI@Z 00411750 f utilint.obj - 0001:00010790 ?TsCurrentSystem@@YGKXZ 00411790 f utilint.obj - 0001:000107b0 ?FFail@DMAGL@@QAEHXZ 004117b0 f utilmem.obj - 0001:00010820 ?Allocate@DMAGL@@QAEXJ@Z 00411820 f utilmem.obj - 0001:000108b0 ?Resize@DMAGL@@QAEXJ@Z 004118b0 f utilmem.obj - 0001:00010910 ?Free@DMAGL@@QAEXJ@Z 00411910 f utilmem.obj - 0001:00010950 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00411950 f utilmem.obj - 0001:00010ca0 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00411ca0 f utilmem.obj - 0001:000110b0 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 004120b0 f utilmem.obj - 0001:00011150 ?_LinkMbh@@YGXPAUMBH@@@Z 00412150 f utilmem.obj - 0001:000111f0 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 004121f0 f utilmem.obj - 0001:00011390 ?_AssertMbh@@YGXPAUMBH@@@Z 00412390 f utilmem.obj - 0001:000115d0 ?AssertPvAlloced@@YGXPAXJ@Z 004125d0 f utilmem.obj - 0001:00011690 ?AssertUnmarkedMem@@YGXXZ 00412690 f utilmem.obj - 0001:00011780 ?UnmarkAllMem@@YGXXZ 00412780 f utilmem.obj - 0001:00011800 ?MarkPv@@YGXPAX@Z 00412800 f utilmem.obj - 0001:00011870 ?FWouldBe@RND@@SGHJ@Z 00412870 f utilrnd.obj - 0001:000118b0 ?FIs@RND@@UAEHJ@Z 004128b0 f utilrnd.obj - 0001:000118e0 ?Cls@RND@@UAEJXZ 004128e0 f utilrnd.obj - 0001:00011910 ?FWouldBe@SFL@@SGHJ@Z 00412910 f utilrnd.obj - 0001:00011950 ?FIs@SFL@@UAEHJ@Z 00412950 f utilrnd.obj - 0001:00011980 ?Cls@SFL@@UAEJXZ 00412980 f utilrnd.obj - 0001:000119b0 ??0RND@@QAE@K@Z 004129b0 f utilrnd.obj - 0001:00011a40 ?LwNext@RND@@UAEJJ@Z 00412a40 f utilrnd.obj - 0001:00011b10 ??0SFL@@QAE@K@Z 00412b10 f utilrnd.obj - 0001:00011ba0 ??1SFL@@UAE@XZ 00412ba0 f utilrnd.obj - 0001:00011c10 ?AssertValid@SFL@@QAEXK@Z 00412c10 f utilrnd.obj - 0001:00011ce0 ?MarkMem@SFL@@UAEXXZ 00412ce0 f utilrnd.obj - 0001:00011d40 ?Shuffle@SFL@@QAEXJ@Z 00412d40 f utilrnd.obj - 0001:00011e50 ?_ShuffleCore@SFL@@IAEXXZ 00412e50 f utilrnd.obj - 0001:00011f40 ?_FEnsureHq@SFL@@IAEHJ@Z 00412f40 f utilrnd.obj - 0001:000120c0 ?LwNext@SFL@@UAEJJ@Z 004130c0 f utilrnd.obj - 0001:00012220 ??_ERND@@UAEPAXI@Z 00413220 f utilrnd.obj - 0001:00012220 ??_GRND@@UAEPAXI@Z 00413220 f utilrnd.obj - 0001:00012260 ??_ESFL@@UAEPAXI@Z 00413260 f utilrnd.obj - 0001:00012260 ??_GSFL@@UAEPAXI@Z 00413260 f utilrnd.obj - 0001:000122a0 ??4STN@@QAEAAV0@AAV0@@Z 004132a0 f utilstr.obj - 0001:00012390 ?SetRgch@STN@@QAEXPADJ@Z 00413390 f utilstr.obj - 0001:00012470 ?SetSzs@STN@@QAEXPAD@Z 00413470 f utilstr.obj - 0001:000124d0 ?Delete@STN@@QAEXJJ@Z 004134d0 f utilstr.obj - 0001:00012630 ?FAppendRgch@STN@@QAEHPADJ@Z 00413630 f utilstr.obj - 0001:00012730 ?FInsertRgch@STN@@QAEHJPADJ@Z 00413730 f utilstr.obj - 0001:000128e0 ?FEqualRgch@STN@@QAEHPADJ@Z 004138e0 f utilstr.obj - 0001:00012980 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00413980 f utilstr.obj - 0001:00012a10 ?CbData@STN@@QAEJXZ 00413a10 f utilstr.obj - 0001:00012a60 ?GetData@STN@@QAEXPAX@Z 00413a60 f utilstr.obj - 0001:00012af0 ?GetSzs@STN@@QAEXPAD@Z 00413af0 f utilstr.obj - 0001:00012b60 ?FFormatSz@STN@@QAAHPADZZ 00413b60 f utilstr.obj - 0001:00012bc0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00413bc0 f utilstr.obj - 0001:00013420 ?FExpandControls@STN@@QAEHXZ 00414420 f utilstr.obj - 0001:00013650 ?AssertValid@STN@@QAEXK@Z 00414650 f utilstr.obj - 0001:00013740 ?CchSz@@YGJPAD@Z 00414740 f utilstr.obj - 0001:000137e0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004147e0 f utilstr.obj - 0001:00013950 ?UpperRgchs@@YGXPADJ@Z 00414950 f utilstr.obj - 0001:00013a10 ?AssertOsk@@YGXF@Z 00414a10 f utilstr.obj - 0001:00013ac0 ?AssertSz@@YGXPAD@Z 00414ac0 f utilstr.obj - 0001:00013b10 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00414b10 f memwin.obj - 0001:00013bf0 ?FResizePhq@@YGHPAPAXJKJ@Z 00414bf0 f memwin.obj - 0001:00013d20 ?FreePhq@@YGXPAPAX@Z 00414d20 f memwin.obj - 0001:00013dd0 ?CbOfHq@@YGJPAX@Z 00414dd0 f memwin.obj - 0001:00013e10 ?QvFromHq@@YGPAXPAX@Z 00414e10 f memwin.obj - 0001:00013e30 ?PvLockHq@@YGPAXPAX@Z 00414e30 f memwin.obj - 0001:00013eb0 ?UnlockHq@@YGXPAX@Z 00414eb0 f memwin.obj - 0001:00013f30 ?AssertHq@@YGXPAX@Z 00414f30 f memwin.obj - 0001:00014020 ?MarkHq@@YGXPAX@Z 00415020 f memwin.obj - 0001:00014060 ?AssertPvCb@@YGXPAXJ@Z 00415060 f memwin.obj - 0001:000140f0 ?FWouldBe@CFL@@SGHJ@Z 004150f0 f chunk.obj - 0001:00014130 ?FIs@CFL@@UAEHJ@Z 00415130 f chunk.obj - 0001:00014160 ?Cls@CFL@@UAEJXZ 00415160 f chunk.obj - 0001:00014190 ?FWouldBe@CGE@@SGHJ@Z 00415190 f chunk.obj - 0001:000141d0 ?FIs@CGE@@UAEHJ@Z 004151d0 f chunk.obj - 0001:00014200 ?Cls@CGE@@UAEJXZ 00415200 f chunk.obj - 0001:00014230 ??0CFL@@AAE@XZ 00415230 f chunk.obj - 0001:000142a0 ??1CFL@@EAE@XZ 004152a0 f chunk.obj - 0001:00014430 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00415430 f chunk.obj - 0001:000146c0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 004156c0 f chunk.obj - 0001:00014710 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00415710 f chunk.obj - 0001:00014840 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 00415840 f chunk.obj - 0001:00014890 ?SetCb@CRPSM@@QAEXJ@Z 00415890 f chunk.obj - 0001:000148d0 ?Grfcrp@CRPSM@@QAEKK@Z 004158d0 f chunk.obj - 0001:00014900 ?ClearGrfcrp@CRPSM@@QAEXK@Z 00415900 f chunk.obj - 0001:00014930 ?SetGrfcrp@CRPSM@@QAEXK@Z 00415930 f chunk.obj - 0001:00014960 ?FSetGrfcfl@CFL@@QAEHKK@Z 00415960 f chunk.obj - 0001:00014ab0 ?Release@CFL@@UAEXXZ 00415ab0 f chunk.obj - 0001:00014b90 ?AssertValid@CFL@@QAEXK@Z 00415b90 f chunk.obj - 0001:00015960 ?CbRgch@CRPSM@@QAEJJ@Z 00416960 f chunk.obj - 0001:00015990 ?BvRgch@CRPSM@@QAEJXZ 00416990 f chunk.obj - 0001:000159c0 ?Cb@CRPSM@@QAEJXZ 004169c0 f chunk.obj - 0001:000159f0 ?SuspendAssertValid@@YGXXZ 004169f0 f chunk.obj - 0001:00015a40 ?ResumeAssertValid@@YGXXZ 00416a40 f chunk.obj - 0001:00015a70 ?ElError@FIL@@QAEJXZ 00416a70 f chunk.obj - 0001:00015aa0 ?GrffilCur@FIL@@QAEKXZ 00416aa0 f chunk.obj - 0001:00015ad0 ?FPush@GL@@QAEHPAX@Z 00416ad0 f chunk.obj - 0001:00015b10 ?MarkMem@CFL@@UAEXXZ 00416b10 f chunk.obj - 0001:00015be0 ?_TValidIndex@CFL@@AAEHXZ 00416be0 f chunk.obj - 0001:00016110 ?_FReadIndex@CFL@@AAEHXZ 00417110 f chunk.obj - 0001:00016e20 ?BvRgch@CRPBG@@QAEJXZ 00417e20 f chunk.obj - 0001:00016e50 ?CbRgch@CRPBG@@QAEJJ@Z 00417e50 f chunk.obj - 0001:00016e80 ?Grfcrp@CRPBG@@QAEKK@Z 00417e80 f chunk.obj - 0001:00016eb0 ?ClearGrfcrp@CRPBG@@QAEXK@Z 00417eb0 f chunk.obj - 0001:00016ee0 ?SetGrfcrp@CRPBG@@QAEXK@Z 00417ee0 f chunk.obj - 0001:00016f10 ?Cb@CRPBG@@QAEJXZ 00417f10 f chunk.obj - 0001:00016f40 ?Lock@GRPB@@QAEXXZ 00417f40 f chunk.obj - 0001:00016f80 ?Unlock@GRPB@@QAEXXZ 00417f80 f chunk.obj - 0001:00016fc0 ?CbFixed@GGB@@QAEJXZ 00417fc0 f chunk.obj - 0001:00016ff0 ?_ReadFreeMap@CFL@@AAEXXZ 00417ff0 f chunk.obj - 0001:000171e0 ?CbEntry@GLB@@QAEJXZ 004181e0 f chunk.obj - 0001:00017210 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00418210 f chunk.obj - 0001:00017390 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00418390 f chunk.obj - 0001:000174e0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 004184e0 f chunk.obj - 0001:000175c0 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 004185c0 f chunk.obj - 0001:00017690 ?_FCreateExtra@CFL@@AAEHXZ 00418690 f chunk.obj - 0001:00017770 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00418770 f chunk.obj - 0001:00017ab0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00418ab0 f chunk.obj - 0001:00017c50 ?FWrite@FLO@@QAEHPAX@Z 00418c50 f chunk.obj - 0001:00017c90 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00418c90 f chunk.obj - 0001:00018250 ?Ckid@CFL@@QAEJKK@Z 00419250 f chunk.obj - 0001:00018310 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00419310 f chunk.obj - 0001:000184f0 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 004194f0 f chunk.obj - 0001:000185a0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 004195a0 f chunk.obj - 0001:000187e0 ??0CGE@@QAE@XZ 004197e0 f chunk.obj - 0001:00018860 ??1CGE@@UAE@XZ 00419860 f chunk.obj - 0001:000188f0 ?AssertValid@CGE@@QAEXK@Z 004198f0 f chunk.obj - 0001:00018a20 ?MarkMem@CGE@@UAEXXZ 00419a20 f chunk.obj - 0001:00018a90 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00419a90 f chunk.obj - 0001:00018be0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00419be0 f chunk.obj - 0001:00019020 ??_ECFL@@EAEPAXI@Z 0041a020 f chunk.obj - 0001:00019020 ??_GCFL@@EAEPAXI@Z 0041a020 f chunk.obj - 0001:00019060 ??_GCGE@@UAEPAXI@Z 0041a060 f chunk.obj - 0001:00019060 ??_ECGE@@UAEPAXI@Z 0041a060 f chunk.obj - 0001:000190a0 ?FWouldBe@CODM@@SGHJ@Z 0041a0a0 f codec.obj - 0001:000190e0 ?FIs@CODM@@UAEHJ@Z 0041a0e0 f codec.obj - 0001:00019110 ?Cls@CODM@@UAEJXZ 0041a110 f codec.obj - 0001:00019140 ?FWouldBe@CODC@@SGHJ@Z 0041a140 f codec.obj - 0001:00019180 ?FIs@CODC@@UAEHJ@Z 0041a180 f codec.obj - 0001:000191b0 ?Cls@CODC@@UAEJXZ 0041a1b0 f codec.obj - 0001:000191e0 ??0CODM@@QAE@PAVCODC@@J@Z 0041a1e0 f codec.obj - 0001:000192e0 ??1CODM@@UAE@XZ 0041a2e0 f codec.obj - 0001:00019400 ?AssertValid@CODM@@QAEXK@Z 0041a400 f codec.obj - 0001:000194d0 ?MarkMem@CODM@@UAEXXZ 0041a4d0 f codec.obj - 0001:000195c0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 0041a5c0 f codec.obj - 0001:000196d0 ?FCanDo@CODM@@UAEHJH@Z 0041a6d0 f codec.obj - 0001:00019740 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 0041a740 f codec.obj - 0001:00019870 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 0041a870 f codec.obj - 0001:000199b0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 0041a9b0 f codec.obj - 0001:00019ba0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0041aba0 f codec.obj - 0001:00019eb0 ?B0Lw@@YGEJ@Z 0041aeb0 f codec.obj - 0001:00019ed0 ?B1Lw@@YGEJ@Z 0041aed0 f codec.obj - 0001:00019ef0 ?B2Lw@@YGEJ@Z 0041aef0 f codec.obj - 0001:00019f10 ?B3Lw@@YGEJ@Z 0041af10 f codec.obj - 0001:00019f50 ??_ECODM@@UAEPAXI@Z 0041af50 f codec.obj - 0001:00019f50 ??_GCODM@@UAEPAXI@Z 0041af50 f codec.obj - 0001:00019f90 ?FWouldBe@KCDC@@SGHJ@Z 0041af90 f codkauai.obj - 0001:00019fd0 ?FIs@KCDC@@UAEHJ@Z 0041afd0 f codkauai.obj - 0001:0001a000 ?Cls@KCDC@@UAEJXZ 0041b000 f codkauai.obj - 0001:0001a030 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0041b030 f codkauai.obj - 0001:0001a190 ?Set@BITA@@QAEXPAXJ@Z 0041b190 f codkauai.obj - 0001:0001a1f0 ?FWriteBits@BITA@@QAEHKJ@Z 0041b1f0 f codkauai.obj - 0001:0001a390 ?FWriteLogEncoded@BITA@@QAEHK@Z 0041b390 f codkauai.obj - 0001:0001a480 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0041b480 f codkauai.obj - 0001:0001ac40 ?Ibit@BITA@@QAEJXZ 0041bc40 f codkauai.obj - 0001:0001ac70 ?Ib@BITA@@QAEJXZ 0041bc70 f codkauai.obj - 0001:0001aca0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0041bca0 f codkauai.obj - 0001:0001e980 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0041f980 f codkauai.obj - 0001:0001f2a0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 004202a0 f codkauai.obj - 0001:00021a90 ?FWouldBe@BACO@@SGHJ@Z 00422a90 f crf.obj - 0001:00021ad0 ?FIs@BACO@@UAEHJ@Z 00422ad0 f crf.obj - 0001:00021b00 ?Cls@BACO@@UAEJXZ 00422b00 f crf.obj - 0001:00021b30 ??0BACO@@IAE@XZ 00422b30 f crf.obj - 0001:00021bb0 ??1BACO@@MAE@XZ 00422bb0 f crf.obj - 0001:00021c80 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00422c80 f crf.obj - 0001:00021d70 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00422d70 f crf.obj - 0001:00021de0 ?CbOnFile@BACO@@UAEJXZ 00422de0 f crf.obj - 0001:00021e50 ?AssertValid@BACO@@QAEXK@Z 00422e50 f crf.obj - 0001:00021ee0 ?MarkMem@BACO@@UAEXXZ 00422ee0 f crf.obj - 0001:00021f50 ?Release@BACO@@UAEXXZ 00422f50 f crf.obj - 0001:000220b0 ?Detach@BACO@@UAEXXZ 004230b0 f crf.obj - 0001:000221e0 ?SetCrep@BACO@@UAEXJ@Z 004231e0 f crf.obj - 0001:00022260 ?CactRef@BASE@@QAEJXZ 00423260 f crf.obj - 0001:00022290 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00423290 f crf.obj - 0001:00022450 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00423450 f crf.obj - 0001:00022640 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00423640 f crf.obj - 0001:000229c0 ?AssertValid@CRF@@QAEXK@Z 004239c0 f crf.obj - 0001:00022b10 ??_GBACO@@MAEPAXI@Z 00423b10 f crf.obj - 0001:00022b10 ??_EBACO@@MAEPAXI@Z 00423b10 f crf.obj - 0001:00022b70 ?FWouldBe@FIL@@SGHJ@Z 00423b70 f file.obj - 0001:00022bb0 ?FIs@FIL@@UAEHJ@Z 00423bb0 f file.obj - 0001:00022be0 ?Cls@FIL@@UAEJXZ 00423be0 f file.obj - 0001:00022c10 ?FWouldBe@BLCK@@SGHJ@Z 00423c10 f file.obj - 0001:00022c50 ?FIs@BLCK@@UAEHJ@Z 00423c50 f file.obj - 0001:00022c80 ?Cls@BLCK@@UAEJXZ 00423c80 f file.obj - 0001:00022cb0 ??0FIL@@IAE@PAVFNI@@K@Z 00423cb0 f file.obj - 0001:00022da0 ??1FIL@@MAE@XZ 00423da0 f file.obj - 0001:00022e10 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00423e10 f file.obj - 0001:00023030 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00424030 f file.obj - 0001:00023200 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00424200 f file.obj - 0001:00023320 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00424320 f file.obj - 0001:00023470 ?FSetGrffil@FIL@@QAEHKK@Z 00424470 f file.obj - 0001:00023580 ?Release@FIL@@UAEXXZ 00424580 f file.obj - 0001:00023660 ?GetStnPath@FIL@@QAEXPAVSTN@@@Z 00424660 f file.obj - 0001:000236d0 ?SetTemp@FIL@@QAEXH@Z 004246d0 f file.obj - 0001:00023750 ?AssertValid@FIL@@QAEXK@Z 00424750 f file.obj - 0001:00023880 ?_FRangeIn@@YGHJJJ@Z 00424880 f file.obj - 0001:000238e0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 004248e0 f file.obj - 0001:000239b0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 004249b0 f file.obj - 0001:00023a80 ?FCopy@FLO@@QAEHPAU1@@Z 00424a80 f file.obj - 0001:00023d00 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00424d00 f file.obj - 0001:00023e10 ?AssertValid@FLO@@QAEXK@Z 00424e10 f file.obj - 0001:00023f10 ??0BLCK@@QAE@PAUFLO@@H@Z 00424f10 f file.obj - 0001:00024050 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00425050 f file.obj - 0001:00024190 ??0BLCK@@QAE@XZ 00425190 f file.obj - 0001:00024230 ??1BLCK@@UAE@XZ 00425230 f file.obj - 0001:00024290 ?Set@BLCK@@QAEXPAUFLO@@H@Z 00425290 f file.obj - 0001:000243b0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 004253b0 f file.obj - 0001:000244e0 ?SetHq@BLCK@@QAEXPAPAXH@Z 004254e0 f file.obj - 0001:000245c0 ?Free@BLCK@@QAEXXZ 004255c0 f file.obj - 0001:00024670 ?HqFree@BLCK@@QAEPAXH@Z 00425670 f file.obj - 0001:00024820 ?Cb@BLCK@@QAEJH@Z 00425820 f file.obj - 0001:000248b0 ?FSetTemp@BLCK@@QAEHJH@Z 004258b0 f file.obj - 0001:000249b0 ?FReadHq@FLO@@QAEHPAPAX@Z 004259b0 f file.obj - 0001:000249f0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 004259f0 f file.obj - 0001:00024b90 ?FWouldBe@MSNK@@SGHJ@Z 00425b90 f file.obj - 0001:00024bd0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00425bd0 f file.obj - 0001:00024d70 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00425d70 f file.obj - 0001:00024f10 ?FPackData@BLCK@@QAEHJ@Z 00425f10 f file.obj - 0001:00025150 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 00426150 f file.obj - 0001:000251a0 ?FUnpackData@BLCK@@QAEHXZ 004261a0 f file.obj - 0001:000253d0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 004263d0 f file.obj - 0001:00025400 ?AssertValid@BLCK@@QAEXK@Z 00426400 f file.obj - 0001:00025630 ?MarkMem@BLCK@@UAEXXZ 00426630 f file.obj - 0001:000256d0 ??_GFIL@@MAEPAXI@Z 004266d0 f file.obj - 0001:000256d0 ??_EFIL@@MAEPAXI@Z 004266d0 f file.obj - 0001:00025710 ??_GBLCK@@UAEPAXI@Z 00426710 f file.obj - 0001:00025710 ??_EBLCK@@UAEPAXI@Z 00426710 f file.obj - 0001:00025750 ??0MSNK@@QAE@XZ 00426750 f file.obj - 0001:00025790 ?FIs@MSNK@@UAEHJ@Z 00426790 f file.obj - 0001:000257c0 ?Cls@MSNK@@UAEJXZ 004267c0 f file.obj - 0001:000257f0 ??1MSNK@@UAE@XZ 004267f0 f file.obj - 0001:00025820 ??_GMSNK@@UAEPAXI@Z 00426820 f file.obj - 0001:00025820 ??_EMSNK@@UAEPAXI@Z 00426820 f file.obj - 0001:00025860 ?_HfileOpen@@YGPAXPADHK@Z 00426860 f filewin.obj - 0001:000258e0 ?_FOpen@FIL@@IAEHHK@Z 004268e0 f filewin.obj - 0001:00025b20 ?_Close@FIL@@IAEXH@Z 00426b20 f filewin.obj - 0001:00025c40 ?Flush@FIL@@QAEXXZ 00426c40 f filewin.obj - 0001:00025cd0 ?_SetFpPos@FIL@@IAEXJ@Z 00426cd0 f filewin.obj - 0001:00025dd0 ?FSetFpMac@FIL@@QAEHJ@Z 00426dd0 f filewin.obj - 0001:00025f10 ?FpMac@FIL@@QAEJXZ 00426f10 f filewin.obj - 0001:00026020 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00427020 f filewin.obj - 0001:000261e0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 004271e0 f filewin.obj - 0001:000263f0 ?FWouldBe@FNI@@SGHJ@Z 004273f0 f fniwin.obj - 0001:00026430 ?FIs@FNI@@UAEHJ@Z 00427430 f fniwin.obj - 0001:00026460 ?Cls@FNI@@UAEJXZ 00427460 f fniwin.obj - 0001:00026490 ?SetNil@FNI@@QAEXXZ 00427490 f fniwin.obj - 0001:000264f0 ??0FNI@@QAE@XZ 004274f0 f fniwin.obj - 0001:00026540 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00427540 f fniwin.obj - 0001:00026890 ?FSearchInPath@FNI@@QAEHPAVSTN@@0@Z 00427890 f fniwin.obj - 0001:00026aa0 ?FGetUnique@FNI@@QAEHJ@Z 00427aa0 f fniwin.obj - 0001:00026c50 ?FGetTemp@FNI@@QAEHXZ 00427c50 f fniwin.obj - 0001:00026d90 ?Ftg@FNI@@QAEJXZ 00427d90 f fniwin.obj - 0001:00026de0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00427de0 f fniwin.obj - 0001:00026fa0 ?FChangeFtg@FNI@@QAEHJ@Z 00427fa0 f fniwin.obj - 0001:00027110 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00428110 f fniwin.obj - 0001:00027250 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00428250 f fniwin.obj - 0001:00027310 ?TExists@FNI@@QAEHXZ 00428310 f fniwin.obj - 0001:00027550 ?FEqual@FNI@@QAEHPAV1@@Z 00428550 f fniwin.obj - 0001:00027610 ?AssertValid@FNI@@QAEXK@Z 00428610 f fniwin.obj - 0001:00027950 ?_CchExt@FNI@@AAEJXZ 00428950 f fniwin.obj - 0001:00027a50 ?_SetFtgFromName@FNI@@AAEXXZ 00428a50 f fniwin.obj - 0001:00027bc0 ?ChsUpper@@YGDD@Z 00428bc0 f fniwin.obj - 0001:00027be0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00428be0 f fniwin.obj - 0001:00027dc0 ?FAppendCh@STN@@QAEHD@Z 00428dc0 f fniwin.obj - 0001:00027df0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00428df0 f fniwin.obj - 0001:00027f20 ?FEqualUser@STN@@QAEHPAV1@K@Z 00428f20 f fniwin.obj - 0001:00027fc0 ??_EFNI@@UAEPAXI@Z 00428fc0 f fniwin.obj - 0001:00027fc0 ??_GFNI@@UAEPAXI@Z 00428fc0 f fniwin.obj - 0001:00028000 ?FWouldBe@GRPB@@SGHJ@Z 00429000 f groups.obj - 0001:00028040 ?FIs@GRPB@@UAEHJ@Z 00429040 f groups.obj - 0001:00028070 ?Cls@GRPB@@UAEJXZ 00429070 f groups.obj - 0001:000280a0 ?FWouldBe@GLB@@SGHJ@Z 004290a0 f groups.obj - 0001:000280e0 ?FIs@GLB@@UAEHJ@Z 004290e0 f groups.obj - 0001:00028110 ?Cls@GLB@@UAEJXZ 00429110 f groups.obj - 0001:00028140 ?FWouldBe@GL@@SGHJ@Z 00429140 f groups.obj - 0001:00028180 ?FIs@GL@@UAEHJ@Z 00429180 f groups.obj - 0001:000281b0 ?Cls@GL@@UAEJXZ 004291b0 f groups.obj - 0001:000281e0 ?FWouldBe@GGB@@SGHJ@Z 004291e0 f groups.obj - 0001:00028220 ?FIs@GGB@@UAEHJ@Z 00429220 f groups.obj - 0001:00028250 ?Cls@GGB@@UAEJXZ 00429250 f groups.obj - 0001:00028280 ?FWouldBe@GG@@SGHJ@Z 00429280 f groups.obj - 0001:000282c0 ?FIs@GG@@UAEHJ@Z 004292c0 f groups.obj - 0001:000282f0 ?Cls@GG@@UAEJXZ 004292f0 f groups.obj - 0001:00028320 ??1GRPB@@UAE@XZ 00429320 f groups.obj - 0001:00028390 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00429390 f groups.obj - 0001:00028590 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00429590 f groups.obj - 0001:00028750 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00429750 f groups.obj - 0001:000287b0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 004297b0 f groups.obj - 0001:00028980 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 00429980 f groups.obj - 0001:00028b00 ?AssertValid@GRPB@@QAEXK@Z 00429b00 f groups.obj - 0001:00028c90 ?MarkMem@GRPB@@UAEXXZ 00429c90 f groups.obj - 0001:00028d00 ??0GLB@@IAE@J@Z 00429d00 f groups.obj - 0001:00028d90 ?QvGet@GLB@@QAEPAXJ@Z 00429d90 f groups.obj - 0001:00028e20 ?Get@GLB@@QAEXJPAX@Z 00429e20 f groups.obj - 0001:00028eb0 ?Put@GLB@@QAEXJPAX@Z 00429eb0 f groups.obj - 0001:00028f60 ?PvLock@GLB@@QAEPAXJ@Z 00429f60 f groups.obj - 0001:00028fa0 ?CbRoundToLong@@YGJJ@Z 00429fa0 f groups.obj - 0001:00028fc0 ?AssertValid@GLB@@QAEXK@Z 00429fc0 f groups.obj - 0001:00029060 ?PglNew@GL@@SGPAV1@JJ@Z 0042a060 f groups.obj - 0001:00029190 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0042a190 f groups.obj - 0001:00029350 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0042a350 f groups.obj - 0001:000293b0 ??0GL@@IAE@J@Z 0042a3b0 f groups.obj - 0001:00029410 ?FFree@GL@@UAEHJ@Z 0042a410 f groups.obj - 0001:00029480 ?CbOnFile@GL@@UAEJXZ 0042a480 f groups.obj - 0001:000294e0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0042a4e0 f groups.obj - 0001:000296b0 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0042a6b0 f groups.obj - 0001:00029900 ?FInsert@GL@@QAEHJPAXJ@Z 0042a900 f groups.obj - 0001:00029a80 ?Delete@GL@@UAEXJ@Z 0042aa80 f groups.obj - 0001:00029ae0 ?Delete@GL@@QAEXJJ@Z 0042aae0 f groups.obj - 0001:00029c50 ?FAdd@GL@@UAEHPAXPAJ@Z 0042ac50 f groups.obj - 0001:00029d00 ?FPop@GL@@QAEHPAX@Z 0042ad00 f groups.obj - 0001:00029e10 ?FSetIvMac@GL@@QAEHJ@Z 0042ae10 f groups.obj - 0001:0002a020 ?FEnsureSpace@GL@@QAEHJK@Z 0042b020 f groups.obj - 0001:0002a0f0 ?_Qb1@GRPB@@IAEPAEJ@Z 0042b0f0 f groups.obj - 0001:0002a120 ?_Qb2@GRPB@@IAEPAEJ@Z 0042b120 f groups.obj - 0001:0002a150 ?_Cb1@GRPB@@IAEJXZ 0042b150 f groups.obj - 0001:0002a180 ??0GRPB@@IAE@XZ 0042b180 f groups.obj - 0001:0002a1c0 ?_Cb2@GRPB@@IAEJXZ 0042b1c0 f groups.obj - 0001:0002a1f0 ??0GGB@@IAE@JH@Z 0042b1f0 f groups.obj - 0001:0002a2b0 ?CbOnFile@GGB@@UAEJXZ 0042b2b0 f groups.obj - 0001:0002a310 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0042b310 f groups.obj - 0001:0002a560 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0042b560 f groups.obj - 0001:0002a870 ?FFree@GGB@@UAEHJ@Z 0042b870 f groups.obj - 0001:0002a9b0 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 0042b9b0 f groups.obj - 0001:0002a9f0 ?FEnsureSpace@GGB@@QAEHJJK@Z 0042b9f0 f groups.obj - 0001:0002ab50 ?_RemoveRgb@GGB@@IAEXJJ@Z 0042bb50 f groups.obj - 0001:0002aca0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0042bca0 f groups.obj - 0001:0002ae10 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0042be10 f groups.obj - 0001:0002af20 ?PvFixedLock@GGB@@QAEPAXJPAJ@Z 0042bf20 f groups.obj - 0001:0002af80 ?GetFixed@GGB@@QAEXJPAX@Z 0042bf80 f groups.obj - 0001:0002b090 ?PutFixed@GGB@@QAEXJPAX@Z 0042c090 f groups.obj - 0001:0002b1d0 ?Cb@GGB@@QAEJJ@Z 0042c1d0 f groups.obj - 0001:0002b280 ?QvGet@GGB@@QAEPAXJPAJ@Z 0042c280 f groups.obj - 0001:0002b390 ?PvLock@GGB@@QAEPAXJPAJ@Z 0042c390 f groups.obj - 0001:0002b3f0 ?GetRgb@GGB@@QAEXJJJPAX@Z 0042c3f0 f groups.obj - 0001:0002b500 ?DeleteRgb@GGB@@QAEXJJJ@Z 0042c500 f groups.obj - 0001:0002b6f0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0042c6f0 f groups.obj - 0001:0002b9b0 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 0042c9b0 f groups.obj - 0001:0002be60 ?Merge@GGB@@QAEXJJ@Z 0042ce60 f groups.obj - 0001:0002c0e0 ?AssertValid@GGB@@QAEXK@Z 0042d0e0 f groups.obj - 0001:0002c440 ?PggNew@GG@@SGPAV1@JJJ@Z 0042d440 f groups.obj - 0001:0002c590 ??0GG@@IAE@J@Z 0042d590 f groups.obj - 0001:0002c5d0 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0042d5d0 f groups.obj - 0001:0002c7a0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0042d7a0 f groups.obj - 0001:0002c800 ?FInsert@GG@@QAEHJJPAX0@Z 0042d800 f groups.obj - 0001:0002cab0 ?FAdd@GG@@UAEHJPAJPAX1@Z 0042dab0 f groups.obj - 0001:0002cb70 ?Delete@GG@@UAEXJ@Z 0042db70 f groups.obj - 0001:0002ccb0 ?AssertValid@GG@@QAEXK@Z 0042dcb0 f groups.obj - 0001:0002cd40 ??_EGRPB@@UAEPAXI@Z 0042dd40 f groups.obj - 0001:0002cd40 ??_GGRPB@@UAEPAXI@Z 0042dd40 f groups.obj - 0001:0002cd80 ??_EGG@@UAEPAXI@Z 0042dd80 f groups.obj - 0001:0002cd80 ??_GGG@@UAEPAXI@Z 0042dd80 f groups.obj - 0001:0002cdc0 ??_GGLB@@UAEPAXI@Z 0042ddc0 f groups.obj - 0001:0002cdc0 ??_EGLB@@UAEPAXI@Z 0042ddc0 f groups.obj - 0001:0002ce00 ??_GGL@@UAEPAXI@Z 0042de00 f groups.obj - 0001:0002ce00 ??_EGL@@UAEPAXI@Z 0042de00 f groups.obj - 0001:0002ce40 ??1GLB@@UAE@XZ 0042de40 f groups.obj - 0001:0002ce70 ??_GGGB@@UAEPAXI@Z 0042de70 f groups.obj - 0001:0002ce70 ??_EGGB@@UAEPAXI@Z 0042de70 f groups.obj - 0001:0002ceb0 ??1GGB@@UAE@XZ 0042deb0 f groups.obj - 0001:0002cee0 ??1GG@@UAE@XZ 0042dee0 f groups.obj - 0001:0002cf10 ??1GL@@UAE@XZ 0042df10 f groups.obj - 0001:0002cf80 ?FWouldBe@CHSE@@SGHJ@Z 0042df80 f chse.obj - 0001:0002cfc0 ?FIs@CHSE@@UAEHJ@Z 0042dfc0 f chse.obj - 0001:0002cff0 ?Cls@CHSE@@UAEJXZ 0042dff0 f chse.obj - 0001:0002d020 ??0CHSE@@QAE@XZ 0042e020 f chse.obj - 0001:0002d0c0 ??1CHSE@@UAE@XZ 0042e0c0 f chse.obj - 0001:0002d110 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 0042e110 f chse.obj - 0001:0002d260 ?Uninit@CHSE@@QAEXXZ 0042e260 f chse.obj - 0001:0002d330 ?AssertValid@CHSE@@QAEXK@Z 0042e330 f chse.obj - 0001:0002d460 ?MarkMem@CHSE@@UAEXXZ 0042e460 f chse.obj - 0001:0002d4f0 ?DumpHeader@CHSE@@QAEXKKPAVSTN@@H@Z 0042e4f0 f chse.obj - 0001:0002d650 ?DumpRgb@CHSE@@QAEXPAXJJ@Z 0042e650 f chse.obj - 0001:0002d6f0 ?DumpParentCmd@CHSE@@QAEXKKK@Z 0042e6f0 f chse.obj - 0001:0002d790 ?DumpBitmapCmd@CHSE@@QAEXEJJPAVSTN@@@Z 0042e790 f chse.obj - 0001:0002d890 ?DumpFileCmd@CHSE@@QAEXPAVSTN@@H@Z 0042e890 f chse.obj - 0001:0002d9a0 ?_DumpBsf@CHSE@@IAEXJ@Z 0042e9a0 f chse.obj - 0001:0002dc40 ?DumpList@CHSE@@QAEXPAVGLB@@@Z 0042ec40 f chse.obj - 0001:0002de90 ?DumpGroup@CHSE@@QAEXPAVGGB@@@Z 0042ee90 f chse.obj - 0001:0002e160 ??_ECHSE@@UAEPAXI@Z 0042f160 f chse.obj - 0001:0002e160 ??_GCHSE@@UAEPAXI@Z 0042f160 f chse.obj - 0001:0002e1a0 ?IbMac@BSF@@QAEJXZ 0042f1a0 f chse.obj - 0001:0002e210 ?FWouldBe@LEXB@@SGHJ@Z 0042f210 f lex.obj - 0001:0002e250 ?FIs@LEXB@@UAEHJ@Z 0042f250 f lex.obj - 0001:0002e280 ?Cls@LEXB@@UAEJXZ 0042f280 f lex.obj - 0001:0002e2b0 ?_TtFromCh@@YGJD@Z 0042f2b0 f lex.obj - 0001:0002e2e0 ?_TtFromChCh@@YGJDD@Z 0042f2e0 f lex.obj - 0001:0002e3a0 ??0LEXB@@QAE@PAVFIL@@H@Z 0042f3a0 f lex.obj - 0001:0002e530 ??1LEXB@@UAE@XZ 0042f530 f lex.obj - 0001:0002e5c0 ?AssertValid@LEXB@@QAEXK@Z 0042f5c0 f lex.obj - 0001:0002e7c0 ?MarkMem@LEXB@@UAEXXZ 0042f7c0 f lex.obj - 0001:0002e830 ?_FFetchRgch@LEXB@@IAEHPADJ@Z 0042f830 f lex.obj - 0001:0002eb90 ?_FSkipWhiteSpace@LEXB@@IAEHXZ 0042fb90 f lex.obj - 0001:0002f2b0 ?FGetTok@LEXB@@UAEHPAUTOK@@@Z 004302b0 f lex.obj - 0001:0002f960 ?CbExtra@LEXB@@UAEJXZ 00430960 f lex.obj - 0001:0002f9b0 ?GetExtra@LEXB@@UAEXPAX@Z 004309b0 f lex.obj - 0001:0002fa30 ?_ReadNumber@LEXB@@MAEXPAJDJJ@Z 00430a30 f lex.obj - 0001:0002fb20 ?_FReadHex@LEXB@@IAEHPAJ@Z 00430b20 f lex.obj - 0001:0002fc90 ?_FReadControlCh@LEXB@@IAEHPAD@Z 00430c90 f lex.obj - 0001:0002feb0 ??_ELEXB@@UAEPAXI@Z 00430eb0 f lex.obj - 0001:0002feb0 ??_GLEXB@@UAEPAXI@Z 00430eb0 f lex.obj - 0001:0002fef0 ?_ReadNumTok@LEXB@@MAEXPAUTOK@@DJJ@Z 00430ef0 f lex.obj - 0001:0002ff30 ?FWouldBe@BSF@@SGHJ@Z 00430f30 f stream.obj - 0001:0002ff70 ?FIs@BSF@@UAEHJ@Z 00430f70 f stream.obj - 0001:0002ffa0 ?Cls@BSF@@UAEJXZ 00430fa0 f stream.obj - 0001:0002fff0 ??0BSF@@QAE@XZ 00430ff0 f stream.obj - 0001:00030060 ??1BSF@@UAE@XZ 00431060 f stream.obj - 0001:00030150 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00431150 f stream.obj - 0001:00030270 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00431270 f stream.obj - 0001:000304e0 ?_AttemptMerge@BSF@@IAEXJJ@Z 004314e0 f stream.obj - 0001:000306d0 ?FReplace@BSF@@QAEHPAXJJJ@Z 004316d0 f stream.obj - 0001:00030c90 ?FetchRgb@BSF@@QAEXJJPAX@Z 00431c90 f stream.obj - 0001:00030e90 ?AssertValid@BSF@@QAEXK@Z 00431e90 f stream.obj - 0001:00031110 ?MarkMem@BSF@@UAEXXZ 00432110 f stream.obj - 0001:000311a0 ??_EBSF@@UAEPAXI@Z 004321a0 f stream.obj - 0001:000311a0 ??_GBSF@@UAEPAXI@Z 004321a0 f stream.obj - 0001:00031260 ??0RC@@QAE@XZ 00432260 f mbmp.obj - 0001:00031280 ?Set@RC@@QAEXJJJJ@Z 00432280 f mbmp.obj - 0001:000312d0 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 004322d0 f mbmp.obj - 0001:00031de0 ??0MSSIO@@QAE@PAU_iobuf@@@Z 00432de0 f mssio.obj - 0001:00031e30 ?ReportLine@MSSIO@@UAEXPAD@Z 00432e30 f mssio.obj - 0001:00031eb0 ?Report@MSSIO@@UAEXPAD@Z 00432eb0 f mssio.obj - 0001:00031f30 ?FError@MSSIO@@UAEHXZ 00432f30 f mssio.obj - 0001:00031fa0 ??_GMSSIO@@UAEPAXI@Z 00432fa0 f mssio.obj - 0001:00031fa0 ??_EMSSIO@@UAEPAXI@Z 00432fa0 f mssio.obj - 0001:00032000 ??1MSSIO@@UAE@XZ 00433000 f mssio.obj - 0001:00032026 _timeGetTime@0 00433026 winmm:WINMM.dll - 0001:00032030 ?FWouldBe@TMAP@@SGHJ@Z 00433030 f bren:tmap.obj - 0001:00032070 ?FIs@TMAP@@UAEHJ@Z 00433070 f bren:tmap.obj - 0001:000320a0 ?Cls@TMAP@@UAEJXZ 004330a0 f bren:tmap.obj - 0001:000320f0 ??1TMAP@@UAE@XZ 004330f0 f bren:tmap.obj - 0001:00032150 ?FWrite@TMAP@@UAEHPAVBLCK@@@Z 00433150 f bren:tmap.obj - 0001:00032240 ?PtmapReadNative@TMAP@@SGPAV1@PAVFNI@@PAVGL@@@Z 00433240 f bren:tmap.obj - 0001:00032600 ?PtmapNew@TMAP@@SGPAV1@PAEJJ@Z 00433600 f bren:tmap.obj - 0001:000327b0 ?FWriteTmapChkFile@TMAP@@QAEHPAVFNI@@HPAVMSNK@@@Z 004337b0 f bren:tmap.obj - 0001:00032a70 ?AssertValid@TMAP@@QAEXK@Z 00433a70 f bren:tmap.obj - 0001:00032ad0 ?MarkMem@TMAP@@UAEXXZ 00433ad0 f bren:tmap.obj - 0001:00032b60 ??_GTMAP@@UAEPAXI@Z 00433b60 f bren:tmap.obj - 0001:00032b60 ??_ETMAP@@UAEPAXI@Z 00433b60 f bren:tmap.obj - 0001:00032cb0 ??0TMAP@@IAE@XZ 00433cb0 f bren:tmap.obj - 0001:00032cf0 ?CbOnFile@TMAP@@UAEJXZ 00433cf0 f bren:tmap.obj - 0001:00032d30 _BrBegin 00433d30 brfwmxr:fwsetup.obj - 0001:00032e34 _BrEnd 00433e34 brfwmxr:fwsetup.obj - 0001:00032e57 _BrDiagHandlerSet 00433e57 brfwmxr:fwsetup.obj - 0001:00032e76 _BrFilesystemSet 00433e76 brfwmxr:fwsetup.obj - 0001:00032e95 _BrAllocatorSet 00433e95 brfwmxr:fwsetup.obj - 0001:00032eb4 _BrFixedAbs 00433eb4 brfwmxr:fixed386.obj - 0001:00032ec4 _BrFixedMul 00433ec4 brfwmxr:fixed386.obj - 0001:00032ed5 _BrFixedMac2 00433ed5 brfwmxr:fixed386.obj - 0001:00032ef8 _BrFixedMac3 00433ef8 brfwmxr:fixed386.obj - 0001:00032f25 _BrFixedMac4 00433f25 brfwmxr:fixed386.obj - 0001:00032f5c _BrFixedLength2 00433f5c brfwmxr:fixed386.obj - 0001:00032f80 _BrFixedLength3 00433f80 brfwmxr:fixed386.obj - 0001:00032fad _BrFixedLength4 00433fad brfwmxr:fixed386.obj - 0001:00032fe3 _BrFixedRLength2 00433fe3 brfwmxr:fixed386.obj - 0001:00033007 _BrFixedRLength3 00434007 brfwmxr:fixed386.obj - 0001:00033034 _BrFixedRLength4 00434034 brfwmxr:fixed386.obj - 0001:0003306a _BrFixedDiv 0043406a brfwmxr:fixed386.obj - 0001:0003307f _BrFixedDivR 0043407f brfwmxr:fixed386.obj - 0001:00033095 _BrFixedDivF 00434095 brfwmxr:fixed386.obj - 0001:000330a8 _BrFixedMulDiv 004340a8 brfwmxr:fixed386.obj - 0001:000330b8 _BrFixedMac2Div 004340b8 brfwmxr:fixed386.obj - 0001:000330da _BrFixedMac3Div 004340da f brfwmxr:fixed386.obj - 0001:00033106 _BrFixedMac4Div 00434106 brfwmxr:fixed386.obj - 0001:0003313c _BrFixedFMac2 0043413c brfwmxr:fixed386.obj - 0001:00033161 _BrFixedFMac3 00434161 brfwmxr:fixed386.obj - 0001:00033191 _BrFixedFMac4 00434191 brfwmxr:fixed386.obj - 0001:000331cc _BrFixedRcp 004341cc brfwmxr:fixed386.obj - 0001:000331dd _BrFixedSqr 004341dd brfwmxr:fixed386.obj - 0001:000331ed _BrFixedSqr2 004341ed brfwmxr:fixed386.obj - 0001:0003320e _BrFixedSqr3 0043420e brfwmxr:fixed386.obj - 0001:00033238 _BrFixedSqr4 00434238 brfwmxr:fixed386.obj - 0001:0003326b _BrFixedSin 0043426b brfwmxr:fixed386.obj - 0001:0003329c _BrFixedCos 0043429c brfwmxr:fixed386.obj - 0001:000332cd _BrFixedASin 004342cd brfwmxr:fixed386.obj - 0001:00033301 _BrFixedACos 00434301 brfwmxr:fixed386.obj - 0001:00033335 _BrFixedATan2 00434335 brfwmxr:fixed386.obj - 0001:00033539 _BrFixedATan2Fast 00434539 brfwmxr:fixed386.obj - 0001:00033641 __Sqrt 00434641 brfwmxr:fixed386.obj - 0001:00033799 __Sqrt64 00434799 brfwmxr:fixed386.obj - 0001:00033a40 __FastSqrt 00434a40 brfwmxr:fixed386.obj - 0001:00033a6b __FastRSqrt 00434a6b brfwmxr:fixed386.obj - 0001:00033a94 __FastRSqrt64 00434a94 brfwmxr:fixed386.obj - 0001:00033ae0 _BrMatrix34Copy 00434ae0 brfwmxr:matrix34.obj - 0001:00033b34 _BrMatrix34Mul 00434b34 brfwmxr:matrix34.obj - 0001:00033e9f _BrMatrix34Identity 00434e9f brfwmxr:matrix34.obj - 0001:00033efb _BrMatrix34RotateX 00434efb brfwmxr:matrix34.obj - 0001:00033f72 _BrMatrix34RotateY 00434f72 brfwmxr:matrix34.obj - 0001:00033fe9 _BrMatrix34RotateZ 00434fe9 brfwmxr:matrix34.obj - 0001:00034060 _BrMatrix34Rotate 00435060 brfwmxr:matrix34.obj - 0001:000341a4 _BrMatrix34Translate 004351a4 brfwmxr:matrix34.obj - 0001:000341fc _BrMatrix34Scale 004351fc brfwmxr:matrix34.obj - 0001:00034254 _BrMatrix34ShearX 00435254 brfwmxr:matrix34.obj - 0001:000342af _BrMatrix34ShearY 004352af brfwmxr:matrix34.obj - 0001:0003430a _BrMatrix34ShearZ 0043530a brfwmxr:matrix34.obj - 0001:00034365 _BrMatrix34Inverse 00435365 brfwmxr:matrix34.obj - 0001:000347b1 _BrMatrix34LPInverse 004357b1 brfwmxr:matrix34.obj - 0001:000348ed _BrMatrix34LPNormalise 004358ed brfwmxr:matrix34.obj - 0001:00034a91 _BrMatrix34RollingBall 00435a91 brfwmxr:matrix34.obj - 0001:00034be9 _BrMatrix34Copy4 00435be9 brfwmxr:matrix34.obj - 0001:00034c3d BrMatrix34TApplyFV_ 00435c3d brfwmxr:matrix34.obj - 0001:00034d29 _BrMatrix34Apply 00435d29 brfwmxr:matrix34.obj - 0001:00034e09 _BrMatrix34ApplyP 00435e09 brfwmxr:matrix34.obj - 0001:00034ef5 _BrMatrix34ApplyV 00435ef5 brfwmxr:matrix34.obj - 0001:00034fd1 _BrMatrix34TApply 00435fd1 brfwmxr:matrix34.obj - 0001:00035104 _BrMatrix34TApplyP 00436104 brfwmxr:matrix34.obj - 0001:000351e0 _BrMatrix34TApplyV 004361e0 brfwmxr:matrix34.obj - 0001:000352bc _BrMatrix34Pre 004362bc brfwmxr:matrix34.obj - 0001:000352eb _BrMatrix34Post 004362eb brfwmxr:matrix34.obj - 0001:0003531a _BrMatrix34PreRotateX 0043631a brfwmxr:matrix34.obj - 0001:0003535e _BrMatrix34PostRotateX 0043635e brfwmxr:matrix34.obj - 0001:000353a2 _BrMatrix34PreRotateY 004363a2 brfwmxr:matrix34.obj - 0001:000353e6 _BrMatrix34PostRotateY 004363e6 brfwmxr:matrix34.obj - 0001:0003542a _BrMatrix34PreRotateZ 0043642a brfwmxr:matrix34.obj - 0001:0003546e _BrMatrix34PostRotateZ 0043646e brfwmxr:matrix34.obj - 0001:000354b2 _BrMatrix34PreRotate 004364b2 brfwmxr:matrix34.obj - 0001:000354fa _BrMatrix34PostRotate 004364fa brfwmxr:matrix34.obj - 0001:00035542 _BrMatrix34PreTranslate 00436542 brfwmxr:matrix34.obj - 0001:0003558d _BrMatrix34PostTranslate 0043658d brfwmxr:matrix34.obj - 0001:000355d8 _BrMatrix34PreScale 004365d8 brfwmxr:matrix34.obj - 0001:00035623 _BrMatrix34PostScale 00436623 brfwmxr:matrix34.obj - 0001:0003566e _BrMatrix34PreShearX 0043666e brfwmxr:matrix34.obj - 0001:000356b2 _BrMatrix34PostShearX 004366b2 brfwmxr:matrix34.obj - 0001:000356f6 _BrMatrix34PreShearY 004366f6 brfwmxr:matrix34.obj - 0001:0003573a _BrMatrix34PostShearY 0043673a brfwmxr:matrix34.obj - 0001:0003577e _BrMatrix34PreShearZ 0043677e brfwmxr:matrix34.obj - 0001:000357c2 _BrMatrix34PostShearZ 004367c2 brfwmxr:matrix34.obj - 0001:0003582c _BrTransformToMatrix34 0043682c brfwmxr:transfrm.obj - 0001:00035ab8 _BrMatrix34PreTransform 00436ab8 brfwmxr:transfrm.obj - 0001:00035aec _BrMatrix34PostTransform 00436aec brfwmxr:transfrm.obj - 0001:00035b20 _BrMatrix4PreTransform 00436b20 brfwmxr:transfrm.obj - 0001:00035b70 _BrMatrix34ToTransform 00436b70 brfwmxr:transfrm.obj - 0001:00035c60 _BrTransformToTransform 00436c60 brfwmxr:transfrm.obj - 0001:00035cd0 _BrMatrix23Copy 00436cd0 brfwmxr:matrix23.obj - 0001:00035d00 _BrMatrix23Mul 00436d00 brfwmxr:matrix23.obj - 0001:00035de0 _BrMatrix23Identity 00436de0 brfwmxr:matrix23.obj - 0001:00035e13 _BrMatrix23Rotate 00436e13 brfwmxr:matrix23.obj - 0001:00035e5f _BrMatrix23Translate 00436e5f brfwmxr:matrix23.obj - 0001:00035e8f _BrMatrix23Scale 00436e8f brfwmxr:matrix23.obj - 0001:00035ebf _BrMatrix23ShearX 00436ebf brfwmxr:matrix23.obj - 0001:00035eef _BrMatrix23ShearY 00436eef brfwmxr:matrix23.obj - 0001:00035f1f _BrMatrix23Inverse 00436f1f brfwmxr:matrix23.obj - 0001:00036067 _BrMatrix23LPInverse 00437067 brfwmxr:matrix23.obj - 0001:000360d7 _BrMatrix23LPNormalise 004370d7 brfwmxr:matrix23.obj - 0001:00036156 _BrMatrix23ApplyP 00437156 brfwmxr:matrix23.obj - 0001:000361b2 _BrMatrix23ApplyV 004371b2 brfwmxr:matrix23.obj - 0001:00036206 _BrMatrix23TApplyP 00437206 brfwmxr:matrix23.obj - 0001:0003625a _BrMatrix23TApplyV 0043725a brfwmxr:matrix23.obj - 0001:000362ae _BrMatrix23Pre 004372ae brfwmxr:matrix23.obj - 0001:000362dd _BrMatrix23Post 004372dd brfwmxr:matrix23.obj - 0001:0003630c _BrMatrix23PreRotate 0043730c brfwmxr:matrix23.obj - 0001:00036350 _BrMatrix23PostRotate 00437350 brfwmxr:matrix23.obj - 0001:00036394 _BrMatrix23PreTranslate 00437394 brfwmxr:matrix23.obj - 0001:000363d8 _BrMatrix23PostTranslate 004373d8 brfwmxr:matrix23.obj - 0001:000363f8 _BrMatrix23PreScale 004373f8 brfwmxr:matrix23.obj - 0001:0003643c _BrMatrix23PostScale 0043743c brfwmxr:matrix23.obj - 0001:00036480 _BrMatrix23PreShearX 00437480 brfwmxr:matrix23.obj - 0001:000364c0 _BrMatrix23PostShearX 004374c0 brfwmxr:matrix23.obj - 0001:00036500 _BrMatrix23 00437500 brfwmxr:matrix23.obj - 0001:00036540 _BrMatrix23PostShearY 00437540 brfwmxr:matrix23.obj - 0001:00036580 _BrFailure 00437580 brfwmxr:diag.obj - 0001:000365c0 _BrWarning 004375c0 brfwmxr:diag.obj - 0001:00036600 _BrFatal 00437600 brfwmxr:diag.obj - 0001:00036670 _BrResAllocate 00437670 brfwmxr:resource.obj - 0001:00036794 _BrResFree 00437794 brfwmxr:resource.obj - 0001:000367b3 _BrResAdd 004377b3 brfwmxr:resource.obj - 0001:00036803 _BrResRemove 00437803 brfwmxr:resource.obj - 0001:0003682b _BrResClass 0043782b brfwmxr:resource.obj - 0001:0003684b _BrResSize 0043784b brfwmxr:resource.obj - 0001:0003689f _BrResSizeTotal 0043789f brfwmxr:resource.obj - 0001:000368df _BrResChildEnum 004378df brfwmxr:resource.obj - 0001:0003692b _BrResCheck 0043792b brfwmxr:resource.obj - 0001:0003695f _BrResStrDup 0043795f brfwmxr:resource.obj - 0001:00037579 PrepareVertices_ 00438579 brfwmxr:prepmesh.obj - 0001:00037a81 PrepareVerticesFast_ 00438a81 brfwmxr:prepmesh.obj - 0001:00037db9 PrepareEdges_ 00438db9 brfwmxr:prepmesh.obj - 0001:00037f98 _BrModelUpdate 00438f98 brfwmxr:prepmesh.obj - 0001:000381d0 _BrModelAdd 004391d0 brfwmxr:regsupt.obj - 0001:00038204 _BrModelRemove 00439204 brfwmxr:regsupt.obj - 0001:0003821c _BrModelFind 0043921c brfwmxr:regsupt.obj - 0001:00038230 _BrModelFindHook 00439230 brfwmxr:regsupt.obj - 0001:00038244 _BrModelAddMany 00439244 brfwmxr:regsupt.obj - 0001:000382a0 _BrModelRemoveMany 004392a0 brfwmxr:regsupt.obj - 0001:000382e4 _BrModelFindMany 004392e4 brfwmxr:regsupt.obj - 0001:00038303 _BrModelCount 00439303 brfwmxr:regsupt.obj - 0001:00038317 _BrModelEnum 00439317 brfwmxr:regsupt.obj - 0001:00038336 _BrMaterialAdd 00439336 brfwmxr:regsupt.obj - 0001:00038366 _BrMaterialRemove 00439366 brfwmxr:regsupt.obj - 0001:0003837e _BrMaterialFind 0043937e brfwmxr:regsupt.obj - 0001:00038392 _BrMaterialFindHook 00439392 brfwmxr:regsupt.obj - 0001:000383a6 _BrMaterialAddMany 004393a6 brfwmxr:regsupt.obj - 0001:00038406 _BrMaterialRemoveMany 00439406 brfwmxr:regsupt.obj - 0001:0003844a _BrMaterialFindMany 0043944a brfwmxr:regsupt.obj - 0001:00038469 _BrMaterialCount 00439469 brfwmxr:regsupt.obj - 0001:0003847d _BrMaterialEnum 0043947d brfwmxr:regsupt.obj - 0001:0003849c _BrMapAdd 0043949c brfwmxr:regsupt.obj - 0001:000384b0 _BrMapRemove 004394b0 brfwmxr:regsupt.obj - 0001:000384c4 _BrMapFind 004394c4 brfwmxr:regsupt.obj - 0001:000384d8 _BrMapFindHook 004394d8 brfwmxr:regsupt.obj - 0001:000384ec _BrMapAddMany 004394ec brfwmxr:regsupt.obj - 0001:00038508 _BrMapRemoveMany 00439508 brfwmxr:regsupt.obj - 0001:00038524 _BrMapFindMany 00439524 brfwmxr:regsupt.obj - 0001:00038543 _BrMapCount 00439543 brfwmxr:regsupt.obj - 0001:00038557 _BrMapEnum 00439557 brfwmxr:regsupt.obj - 0001:00038576 _BrTableAdd 00439576 brfwmxr:regsupt.obj - 0001:0003858a _BrTableRemove 0043958a brfwmxr:regsupt.obj - 0001:0003859e _BrTableFind 0043959e brfwmxr:regsupt.obj - 0001:000385b2 _BrTableFindHook 004395b2 brfwmxr:regsupt.obj - 0001:000385c6 _BrTableAddMany 004395c6 brfwmxr:regsupt.obj - 0001:000385e2 _BrTableRemoveMany 004395e2 brfwmxr:regsupt.obj - 0001:000385fe _BrTableFindMany 004395fe brfwmxr:regsupt.obj - 0001:0003861d _BrTableCount 0043961d brfwmxr:regsupt.obj - 0001:00038631 _BrTableEnum 00439631 brfwmxr:regsupt.obj - 0001:00038650 _BrResClassAdd 00439650 brfwmxr:regsupt.obj - 0001:00038683 _BrResClassRemove 00439683 brfwmxr:regsupt.obj - 0001:000386b3 _BrResClassFind 004396b3 brfwmxr:regsupt.obj - 0001:000386c7 _BrResClassFindHook 004396c7 brfwmxr:regsupt.obj - 0001:000386db _BrResClassAddMany 004396db brfwmxr:regsupt.obj - 0001:0003872e _BrResClassRemoveMany 0043972e brfwmxr:regsupt.obj - 0001:00038786 _BrResClassFindMany 00439786 brfwmxr:regsupt.obj - 0001:000387a5 _BrResClassCount 004397a5 brfwmxr:regsupt.obj - 0001:000387b9 _BrResClassEnum 004397b9 brfwmxr:regsupt.obj - 0001:000387ec _BrModelApplyMap 004397ec brfwmxr:regsupt.obj - 0001:000389b8 _BrModelFitMap 004399b8 brfwmxr:regsupt.obj - 0001:00038b88 _BrModelFree 00439b88 brfwmxr:regsupt.obj - 0001:00038b9c _BrModelAllocate 00439b9c brfwmxr:regsupt.obj - 0001:00038c18 _BrMaterialAllocate 00439c18 brfwmxr:regsupt.obj - 0001:00038c6c _BrMaterialFree 00439c6c brfwmxr:regsupt.obj - 0001:00038c80 NamePatternMatch_ 00439c80 brfwmxr:register.obj - 0001:00038d53 RegistryNew_ 00439d53 brfwmxr:register.obj - 0001:00038d77 RegistryClear_ 00439d77 brfwmxr:register.obj - 0001:00038dab RegistryAdd_ 00439dab brfwmxr:register.obj - 0001:00038de7 RegistryAddMany_ 00439de7 brfwmxr:register.obj - 0001:00038e52 RegistryRemove_ 00439e52 brfwmxr:register.obj - 0001:00038e9a RegistryRemoveMany_ 00439e9a brfwmxr:register.obj - 0001:00038ede RegistryFind_ 00439ede brfwmxr:register.obj - 0001:00038f29 RegistryFindMany_ 00439f29 brfwmxr:register.obj - 0001:00038f79 RegistryCount_ 00439f79 brfwmxr:register.obj - 0001:00038fb4 RegistryEnum_ 00439fb4 brfwmxr:register.obj - 0001:00039680 _BrImageFind 0043a680 brfwmxr:loader.obj - 0001:000396b7 _BrImageReference 0043a6b7 brfwmxr:loader.obj - 0001:0003971a _BrImageLookupName 0043a71a brfwmxr:loader.obj - 0001:000397ca _BrImageLookupOrdinal 0043a7ca brfwmxr:loader.obj - 0001:000397f6 _BrImageDereference 0043a7f6 brfwmxr:loader.obj - 0001:00039826 _BrImageFree 0043a826 brfwmxr:loader.obj - 0001:00039871 __BrImageFree 0043a871 brfwmxr:loader.obj - 0001:000398a0 __BrPmMemFill 0043a8a0 brfwmxr:pmmemops.obj - 0001:0003996f __BrPmMemRectangleCopyTo 0043a96f brfwmxr:pmmemops.obj - 0001:00039a5f __BrPmMemRectangleCopyFrom 0043aa5f brfwmxr:pmmemops.obj - 0001:00039b3f __BrPmMemRectangleFill 0043ab3f brfwmxr:pmmemops.obj - 0001:00039bb3 __BrPmMemDirtyRectangleCopy 0043abb3 brfwmxr:pmmemops.obj - 0001:00039bf3 __BrPmMemDirtyRectangleFill 0043abf3 brfwmxr:pmmemops.obj - 0001:00039c2f __BrPmMemCopy 0043ac2f brfwmxr:pmmemops.obj - 0001:00039dba __BrPmMemPixelSet 0043adba brfwmxr:pmmemops.obj - 0001:00039e22 __BrPmMemPixelGet 0043ae22 brfwmxr:pmmemops.obj - 0001:00039e86 __BrPmMemLine 0043ae86 brfwmxr:pmmemops.obj - 0001:0003b55e __BrPmMemCopyBits 0043c55e brfwmxr:pmmemops.obj - 0001:0003b5e4 __MemCopyBits_A 0043c5e4 brfwmxr:memloops.obj - 0001:0003b9d4 __MemFill_A 0043c9d4 brfwmxr:memloops.obj - 0001:0003bab8 __MemRectFill_A 0043cab8 brfwmxr:memloops.obj - 0001:0003bbe1 __MemRectCopy_A 0043cbe1 brfwmxr:memloops.obj - 0001:0003bc39 __MemCopy_A 0043cc39 brfwmxr:memloops.obj - 0001:0003bc7e __MemPixelSet 0043cc7e brfwmxr:memloops.obj - 0001:0003bcdb __MemPixelGet 0043ccdb f brfwmxr:memloops.obj - 0001:0003bd37 __GetSysQual 0043cd37 brfwmxr:memloops.obj - 0001:0003bd40 __BrFileFree 0043cd40 brfwmxr:file.obj - 0001:0003bd5c _BrFileAttributes 0043cd5c brfwmxr:file.obj - 0001:0003bd6c _BrFileOpenRead 0043cd6c brfwmxr:file.obj - 0001:0003bdd8 _BrFileOpenWrite 0043cdd8 brfwmxr:file.obj - 0001:0003be38 _BrFileClose 0043ce38 brfwmxr:file.obj - 0001:0003be54 _BrFileEof 0043ce54 brfwmxr:file.obj - 0001:0003be70 _BrFileGetChar 0043ce70 brfwmxr:file.obj - 0001:0003be8c _BrFilePutChar 0043ce8c brfwmxr:file.obj - 0001:0003beac _BrFileRead 0043ceac brfwmxr:file.obj - 0001:0003bed8 _BrFileWrite 0043ced8 brfwmxr:file.obj - 0001:0003bf04 _BrFileGetLine 0043cf04 brfwmxr:file.obj - 0001:0003bf2b _BrFilePutLine 0043cf2b brfwmxr:file.obj - 0001:0003bf4b _BrFileAdvance 0043cf4b brfwmxr:file.obj - 0001:0003bf6b _BrFilePrintf 0043cf6b brfwmxr:file.obj - 0001:0003bfb0 _BrEulerToMatrix34 0043cfb0 brfwmxr:angles.obj - 0001:0003c2d4 _BrMatrix34ToEuler 0043d2d4 brfwmxr:angles.obj - 0001:0003c533 _BrEulerToMatrix4 0043d533 brfwmxr:angles.obj - 0001:0003c563 _BrMatrix4ToEuler 0043d563 brfwmxr:angles.obj - 0001:0003c592 _BrEulerToQuat 0043d592 brfwmxr:angles.obj - 0001:0003c816 _BrQuatToEuler 0043d816 brfwmxr:angles.obj - 0001:0003c850 _BrQuatMul 0043d850 brfwmxr:quat.obj - 0001:0003c970 _BrQuatNormalise 0043d970 brfwmxr:quat.obj - 0001:0003c9e8 _BrQuatInvert 0043d9e8 brfwmxr:quat.obj - 0001:0003ca18 _BrQuatSlerp 0043da18 brfwmxr:quat.obj - 0001:0003cbe8 _BrQuatToMatrix34 0043dbe8 brfwmxr:quat.obj - 0001:0003cd13 _BrMatrix34ToQuat 0043dd13 brfwmxr:quat.obj - 0001:0003cedf _BrQuatToMatrix4 0043dedf brfwmxr:quat.obj - 0001:0003cf0f _BrMatrix4ToQuat 0043df0f brfwmxr:quat.obj - 0001:0003cf40 _BrMatrix4Copy 0043df40 brfwmxr:matrix4.obj - 0001:0003cfac _BrMatrix4Mul 0043dfac brfwmxr:matrix4.obj - 0001:0003d3fc _BrMatrix4Identity 0043e3fc brfwmxr:matrix4.obj - 0001:0003d474 _BrMatrix4Scale 0043e474 brfwmxr:matrix4.obj - 0001:0003d4e8 _BrMatrix4Inverse 0043e4e8 brfwmxr:matrix4.obj - 0001:0003d617 _BrMatrix4Determinant 0043e617 brfwmxr:matrix4.obj - 0001:0003d767 _BrMatrix4Adjoint 0043e767 brfwmxr:matrix4.obj - 0001:0003daa3 _BrMatrix4Perspective 0043eaa3 brfwmxr:matrix4.obj - 0001:0003db86 _BrMatrix4Apply 0043eb86 brfwmxr:matrix4.obj - 0001:0003dca9 _BrMatrix4ApplyP 0043eca9 brfwmxr:matrix4.obj - 0001:0003ddf4 _BrMatrix4ApplyV 0043edf4 brfwmxr:matrix4.obj - 0001:0003df18 _BrMatrix4TApply 0043ef18 brfwmxr:matrix4.obj - 0001:0003e03b _BrMatrix4TApplyP 0043f03b brfwmxr:matrix4.obj - 0001:0003e186 _BrMatrix4TApplyV 0043f186 brfwmxr:matrix4.obj - 0001:0003e2aa _BrMatrix4Copy34 0043f2aa brfwmxr:matrix4.obj - 0001:0003e31a _BrMatrix4Pre34 0043f31a brfwmxr:matrix4.obj - 0001:0003e720 _BrNewList 0043f720 brfwmxr:brlists.obj - 0001:0003e738 _BrAddHead 0043f738 brfwmxr:brlists.obj - 0001:0003e753 _BrAddTail 0043f753 brfwmxr:brlists.obj - 0001:0003e772 _BrRemHead 0043f772 brfwmxr:brlists.obj - 0001:0003e78e _BrRemTail 0043f78e brfwmxr:brlists.obj - 0001:0003e7aa _BrInsert 0043f7aa brfwmxr:brlists.obj - 0001:0003e7c6 _BrRemove 0043f7c6 brfwmxr:brlists.obj - 0001:0003e7de _BrSimpleNewList 0043f7de brfwmxr:brlists.obj - 0001:0003e7ee _BrSimpleAddHead 0043f7ee brfwmxr:brlists.obj - 0001:0003e80e _BrSimpleRemHead 0043f80e brfwmxr:brlists.obj - 0001:0003e842 _BrSimpleInsert 0043f842 brfwmxr:brlists.obj - 0001:0003e862 _BrSimpleRemove 0043f862 brfwmxr:brlists.obj - 0001:0003e890 _BrMemAllocate 0043f890 brfwmxr:mem.obj - 0001:0003e8c3 _BrMemFree 0043f8c3 brfwmxr:mem.obj - 0001:0003e8db _BrMemInquire 0043f8db brfwmxr:mem.obj - 0001:0003e8f3 _BrMemCalloc 0043f8f3 brfwmxr:mem.obj - 0001:0003e92a _BrMemStrDup 0043f92a brfwmxr:mem.obj - 0001:0003e970 _BrScratchAllocate 0043f970 brfwmxr:scratch.obj - 0001:0003e9ec _BrScratchFree 0043f9ec brfwmxr:scratch.obj - 0001:0003e9fb _BrScratchFlush 0043f9fb brfwmxr:scratch.obj - 0001:0003ea3f _BrScratchInquire 0043fa3f brfwmxr:scratch.obj - 0001:0003ea50 _BrQsort 0043fa50 brfwmxr:brqsort.obj - 0001:0003ec60 _BrFixedSqrt 0043fc60 brfwmxr:fixed.obj - 0001:0003ec94 _BrFixedPow 0043fc94 brfwmxr:fixed.obj - 0001:0003ece0 __CHP 0043fce0 f brfwmxr:magicsym.obj - 0001:0003ed00 _BrMaterialUpdate 0043fd00 brfwmxr:prepmatl.obj - 0001:0003ed50 __BrGenericLine 0043fd50 brfwmxr:pmgenops.obj - 0001:0003fbcc __BrGenericDoubleBuffer 00440bcc brfwmxr:pmgenops.obj - 0001:0003fbe8 __BrGenericMatch 00440be8 brfwmxr:pmgenops.obj - 0001:0003fccc __BrGenericClone 00440ccc brfwmxr:pmgenops.obj - 0001:0003fd18 __BrGenericFree 00440d18 brfwmxr:pmgenops.obj - 0001:0003fd2c __BrGenericDirtyRectangleCopy 00440d2c brfwmxr:pmgenops.obj - 0001:0003fd68 __BrGenericDirtyRectangleFill 00440d68 brfwmxr:pmgenops.obj - 0001:0003fda0 __BrGenericRectangle 00440da0 brfwmxr:pmgenops.obj - 0001:0003fe40 __BrGenericRectangle2 00440e40 brfwmxr:pmgenops.obj - 0001:0003fed8 __BrGenericRectangleCopy 00440ed8 brfwmxr:pmgenops.obj - 0001:0003fedf __BrGenericCopy 00440edf brfwmxr:pmgenops.obj - 0001:0003fef0 _BrPixelmapAllocate 00440ef0 brfwmxr:pixelmap.obj - 0001:00040008 _BrPixelmapAllocateSub 00441008 brfwmxr:pixelmap.obj - 0001:000400d0 _BrPixelmapFileSize 004410d0 brfwmxr:pixelmap.obj - 0001:000400e7 _BrPixelmapPixelSize 004410e7 brfwmxr:pixelmap.obj - 0001:000400fe _BrPixelmapChannels 004410fe brfwmxr:pixelmap.obj - 0001:00040120 _BrPixelmapFree 00441120 brfwmxr:pmdsptch.obj - 0001:00040148 _BrPixelmapMatch 00441148 brfwmxr:pmdsptch.obj - 0001:00040177 _BrPixelmapClone 00441177 brfwmxr:pmdsptch.obj - 0001:0004019f _BrPixelmapFill 0044119f brfwmxr:pmdsptch.obj - 0001:000401cb _BrPixelmapRectangle 004411cb brfwmxr:pmdsptch.obj - 0001:00040223 _BrPixelmapRectangle2 00441223 brfwmxr:pmdsptch.obj - 0001:0004027b _BrPixelmapRectangleCopy 0044127b brfwmxr:pmdsptch.obj - 0001:000405d6 _BrPixelmapRectangleFill 004415d6 brfwmxr:pmdsptch.obj - 0001:0004070a _BrPixelmapDirtyRectangleCopy 0044170a brfwmxr:pmdsptch.obj - 0001:00040841 _BrPixelmapDirtyRectangleClear 00441841 brfwmxr:pmdsptch.obj - 0001:00040975 _BrPixelmapPixelSet 00441975 brfwmxr:pmdsptch.obj - 0001:000409ed _BrPixelmapPixelGet 004419ed brfwmxr:pmdsptch.obj - 0001:00040a70 _BrPixelmapCopy 00441a70 brfwmxr:pmdsptch.obj - 0001:00040af0 _BrPixelmapLine 00441af0 brfwmxr:pmdsptch.obj - 0001:00040dac _BrPixelmapDoubleBuffer 00441dac brfwmxr:pmdsptch.obj - 0001:00040dd8 _BrPixelmapText 00441dd8 brfwmxr:pmdsptch.obj - 0001:00041073 _BrPixelmapTextF 00442073 brfwmxr:pmdsptch.obj - 0001:000410bb _BrPixelmapTextWidth 004420bb brfwmxr:pmdsptch.obj - 0001:0004113b _BrPixelmapTextHeight 0044213b brfwmxr:pmdsptch.obj - 0001:00041163 _BrPixelmapCopyBits 00442163 brfwmxr:pmdsptch.obj - 0001:000412c9 _DK_modelAllocate 004422c9 f libdkit:tinyModel.obj - 0001:000414f5 _DK_modelDispose 004424f5 f libdkit:tinyModel.obj - 0001:00041949 _DK_modelReadFile 00442949 f libdkit:tinyModel.obj - 0001:00041aa2 _DK_fdmodelReadBinaryFile 00442aa2 f libdkit:tinyModel.obj - 0001:00041b5c _DK_modelReadBinaryNode 00442b5c f libdkit:tinyModel.obj - 0001:00042382 _DK_modelReadAsciiNode 00443382 f libdkit:tinyModel.obj - 0001:00042936 _DK_actFcurveArrayDispose 00443936 f libdkit:tinyFcurve.obj - 0001:00042962 _DK_fcurveArrayDispose 00443962 f libdkit:tinyFcurve.obj - 0001:0004298b _DK_fcurveDispose 0044398b f libdkit:tinyFcurve.obj - 0001:000429bd _DK_fcvkeyDispose 004439bd f libdkit:tinyFcurve.obj - 0001:000429dd _DK_constraintDispose 004439dd f libdkit:tinyConstr.obj - 0001:00042b09 _DK_invKinAllocate 00443b09 f libdkit:tinyActor.obj - 0001:00042b26 _DK_envelopDataAllocate 00443b26 f libdkit:tinyActor.obj - 0001:00042bf6 _DK_envelopListVertAllocate 00443bf6 f libdkit:tinyActor.obj - 0001:00042c12 _DK_envelopVertAllocate 00443c12 f libdkit:tinyActor.obj - 0001:00042c6f _DK_invKinDispose 00443c6f f libdkit:tinyActor.obj - 0001:00042c8f _DK_envelopDataDispose 00443c8f f libdkit:tinyActor.obj - 0001:00042d24 _DK_envelopVertDispose 00443d24 f libdkit:tinyActor.obj - 0001:00042f0c _DK_invKinReadBinaryChunk 00443f0c f libdkit:tinyActor.obj - 0001:0004318c _DK_envelopReadBinaryChunk 0044418c f libdkit:tinyActor.obj - 0001:00043e6d _DK_oEnvelopeReadBinaryChunk 00444e6d f libdkit:tinyActor.obj - 0001:00043f5a _DK_modelActorDataReadAscii 00444f5a f libdkit:tinyActor.obj - 0001:000440f5 _DK_dynaMatterInfoAllocate 004450f5 f libdkit:tinyDynamics.obj - 0001:00044132 _DK_dynaJntInfoAllocate 00445132 f libdkit:tinyDynamics.obj - 0001:00044150 _DK_dynaChnVarAllocate 00445150 f libdkit:tinyDynamics.obj - 0001:000441a9 _DK_dynaMatterInfoDispose 004451a9 f libdkit:tinyDynamics.obj - 0001:000441c9 _DK_dynaJntInfoDispose 004451c9 f libdkit:tinyDynamics.obj - 0001:000441e9 _DK_dynaConstrInfoDispose 004451e9 f libdkit:tinyDynamics.obj - 0001:0004422d _DK_dynaChnVarDispose 0044522d f libdkit:tinyDynamics.obj - 0001:00044318 _DK_dynamatterReadBinaryChunk 00445318 f libdkit:tinyDynamics.obj - 0001:00044494 _DK_dynamatterReadAscii 00445494 f libdkit:tinyDynamics.obj - 0001:000445fd _DK_dynajntpropReadBinaryChunk 004455fd f libdkit:tinyDynamics.obj - 0001:000446d8 _DK_dynajntpropReadAscii 004456d8 f libdkit:tinyDynamics.obj - 0001:00044788 _DK_odynamicReadBinaryChunk 00445788 f libdkit:tinyDynamics.obj - 0001:000447ce _DK_clusterDispose 004457ce f libdkit:tinyCluster.obj - 0001:00044814 _DK_clusterDataDispose 00445814 f libdkit:tinyCluster.obj - 0001:0004491d _DK_clusterKeyDispose 0044591d f libdkit:tinyCluster.obj - 0001:00044963 _DK_klusterAllocate 00445963 f libdkit:tinyCluster.obj - 0001:00044989 _DK_klusterDispose 00445989 f libdkit:tinyCluster.obj - 0001:00044a25 _DK_clustersReadBinaryChunk 00445a25 f libdkit:tinyCluster.obj - 0001:00044b93 _DK_clustersReadAscii 00445b93 f libdkit:tinyCluster.obj - 0001:00044d24 _DK_spl_fittingDispose 00445d24 f libdkit:tinyFitting.obj - 0001:00044d96 _DK_ptch_fittingDispose 00445d96 f libdkit:tinyFitting.obj - 0001:00044df5 _DK_latticeDispose 00445df5 f libdkit:tinyLattice.obj - 0001:00044e50 _DK_textureAllocate 00445e50 f libdkit:tinyTexture.obj - 0001:00044fe2 _DK_textureDispose 00445fe2 f libdkit:tinyTexture.obj - 0001:000450a1 _DK_textureReadAscii 004460a1 f libdkit:tinyTexture.obj - 0001:000456aa _DK_textureReadBinary 004466aa f libdkit:tinyTexture.obj - 0001:00045c27 _DK_texture3DAllocate 00446c27 f libdkit:tinyTexture.obj - 0001:00045d70 _DK_texture3DDispose 00446d70 f libdkit:tinyTexture.obj - 0001:00045e18 _DK_texture3DReadBinary 00446e18 f libdkit:tinyTexture.obj - 0001:00046282 _DK_texture3DReadAscii 00447282 f libdkit:tinyTexture.obj - 0001:00046968 _DK_materialAllocate 00447968 f libdkit:tinyMaterial.obj - 0001:00046a77 _DK_materialDispose 00447a77 f libdkit:tinyMaterial.obj - 0001:00046b5c _DK_materialReadBinary 00447b5c f libdkit:tinyMaterial.obj - 0001:00046f9c _DK_materialReadAscii 00447f9c f libdkit:tinyMaterial.obj - 0001:000473f0 _DK_splineAllocate 004483f0 f libdkit:tinySpline.obj - 0001:00047443 _DK_splineDispose 00448443 f libdkit:tinySpline.obj - 0001:0004749c _DK_splineKeyAllocate 0044849c f libdkit:tinySpline.obj - 0001:000474f9 _DK_splineReadBinary 004484f9 f libdkit:tinySpline.obj - 0001:00047849 _DK_splineGetTypeByName 00448849 f libdkit:tinySpline.obj - 0001:00047876 _DK_splineReadAscii 00448876 f libdkit:tinySpline.obj - 0001:00047e2d _DK_splineShrinkBezier 00448e2d f libdkit:tinySpline.obj - 0001:00047ef6 _DK_nurbsCrvAllocate 00448ef6 f libdkit:tinyNurbs.obj - 0001:00047f3c _DK_nurbsSrfAllocate 00448f3c f libdkit:tinyNurbs.obj - 0001:00048020 _DK_nurbsCrvDispose 00449020 f libdkit:tinyNurbs.obj - 0001:00048076 _DK_nurbsSrfDispose 00449076 f libdkit:tinyNurbs.obj - 0001:00048135 _DK_nurbsCompCrvDispose 00449135 f libdkit:tinyNurbs.obj - 0001:000481ba _DK_nurbsCrvBinaryRead 004491ba f libdkit:tinyNurbs.obj - 0001:00048399 _DK_nurbsSrfBinaryRead 00449399 f libdkit:tinyNurbs.obj - 0001:0004889e _DK_nurbsCrvAsciiRead 0044989e f libdkit:tinyNurbs.obj - 0001:00048b38 _DK_nurbsSrfAsciiRead 00449b38 f libdkit:tinyNurbs.obj - 0001:00049a85 _DK_metaballAllocate 0044aa85 f libdkit:tinyMetaball.obj - 0001:00049af3 _DK_metaballDispose 0044aaf3 f libdkit:tinyMetaball.obj - 0001:00049b0f _DK_metaballReadBinary 0044ab0f f libdkit:tinyMetaball.obj - 0001:00049c49 _DK_metaballReadAscii 0044ac49 f libdkit:tinyMetaball.obj - 0001:00049dad _DK_metaSystemAllocate 0044adad f libdkit:tinyMetaball.obj - 0001:00049dd7 _DK_metaSystemDispose 0044add7 f libdkit:tinyMetaball.obj - 0001:00049e38 _DK_metaSystemReadBinary 0044ae38 f libdkit:tinyMetaball.obj - 0001:0004a177 _DK_metaSystemReadAscii 0044b177 f libdkit:tinyMetaball.obj - 0001:0004a375 _DK_metaGroupAllocate 0044b375 f libdkit:tinyMetaball.obj - 0001:0004a3bb _DK_metaGroupDispose 0044b3bb f libdkit:tinyMetaball.obj - 0001:0004a433 _DK_metaGroupAddPrimitive 0044b433 f libdkit:tinyMetaball.obj - 0001:0004a493 _DK_metaGroupRemovePrimitive 0044b493 f libdkit:tinyMetaball.obj - 0001:0004a500 _DK_metaGroupsBlend 0044b500 f libdkit:tinyMetaball.obj - 0001:0004a5b2 _DK_metaGroupsUnblend 0044b5b2 f libdkit:tinyMetaball.obj - 0001:0004a66d _DK_meshAllocate 0044b66d f libdkit:tinyMesh.obj - 0001:0004a69c _DK_meshDispose 0044b69c f libdkit:tinyMesh.obj - 0001:0004a717 _DK_edgeAllocate 0044b717 f libdkit:tinyMesh.obj - 0001:0004a756 _DK_polygonAllocate 0044b756 f libdkit:tinyMesh.obj - 0001:0004a791 _DK_vertexAllocate 0044b791 f libdkit:tinyMesh.obj - 0001:0004a7c1 _DK_meshReadBinary 0044b7c1 f libdkit:tinyMesh.obj - 0001:0004ae2b _DK_meshReadAscii 0044be2b f libdkit:tinyMesh.obj - 0001:0004b5d9 _DK_faceAllocate 0044c5d9 f libdkit:tinyFace.obj - 0001:0004b5ff _DK_faceDispose 0044c5ff f libdkit:tinyFace.obj - 0001:0004b6a3 _DK_faceReadBinary 0044c6a3 f libdkit:tinyFace.obj - 0001:0004b874 _DK_faceReadAscii 0044c874 f libdkit:tinyFace.obj - 0001:0004b8cb _DK_nurbsFaceReadAscii 0044c8cb f libdkit:tinyFace.obj - 0001:0004ba77 _DK_patchAllocate 0044ca77 f libdkit:tinyPatch.obj - 0001:0004bafc _DK_patchDispose 0044cafc f libdkit:tinyPatch.obj - 0001:0004bb29 _DK_patchReadAscii 0044cb29 f libdkit:tinyPatch.obj - 0001:0004c192 _DK_patchReadBinary 0044d192 f libdkit:tinyPatch.obj - 0001:0004c5b3 _DK_prototypeRead 0044d5b3 f libdkit:tinyFile.obj - 0001:0004cab0 _DK_prototypeAllocate 0044dab0 f libdkit:tinyFile.obj - 0001:0004cbab _DK_prototypeDispose 0044dbab f libdkit:tinyFile.obj - 0001:0004cde3 _DK_headerReadAscii 0044dde3 f libdkit:tinyFile.obj - 0001:0004ce4f _DK_headerReadBinary 0044de4f f libdkit:tinyFile.obj - 0001:0004cf1f _DK_stringReadBinary 0044df1f f libdkit:tinyFile.obj - 0001:0004cf68 _DK_stringReadAscii 0044df68 f libdkit:tinyFile.obj - 0001:0004cfce _DK_userDataReadAscii 0044dfce f libdkit:tinyFile.obj - 0001:0004d0b3 _DK_fileSkipField 0044e0b3 f libdkit:tinyFile.obj - 0001:0004d125 _DK_in_animToken 0044e125 f libdkit:tinyUtils.obj - 0001:0004d197 _DK_in_animSValue 0044e197 f libdkit:tinyUtils.obj - 0001:0004d21e _DK_in_animFValue 0044e21e f libdkit:tinyUtils.obj - 0001:0004d2a4 _DK_in_animLValue 0044e2a4 f libdkit:tinyUtils.obj - 0001:0004d32a _DK_udfAllocate 0044e32a f libdkit:tinyMental.obj - 0001:0004d348 _DK_udfDispose 0044e348 f libdkit:tinyMental.obj - 0001:0004d39e _DK_udfReadBinary 0044e39e f libdkit:tinyMental.obj - 0001:0004d541 _DK_udfReadAscii 0044e541 f libdkit:tinyMental.obj - 0001:0004d6f1 _printf 0044e6f1 f LIBC:printf.obj - 0001:0004d72d _fclose 0044e72d f LIBC:fclose.obj - 0001:0004d789 __fsopen 0044e789 f LIBC:fopen.obj - 0001:0004d7ac _fopen 0044e7ac f LIBC:fopen.obj - 0001:0004d7c0 __alloca_probe 0044e7c0 LIBC:chkstk.obj - 0001:0004d7c0 __chkstk 0044e7c0 LIBC:chkstk.obj - 0001:0004d7f0 _fdiv_main_routine 0044e7f0 f LIBC:adj_fdiv.obj - 0001:0004d907 __adj_fdiv_r 0044e907 f LIBC:adj_fdiv.obj - 0001:0004dda6 _fdivp_sti_st 0044eda6 f LIBC:adj_fdiv.obj - 0001:0004ddb9 _fdivrp_sti_st 0044edb9 f LIBC:adj_fdiv.obj - 0001:0004ddcc __adj_fdiv_m32 0044edcc f LIBC:adj_fdiv.obj - 0001:0004de18 __adj_fdiv_m64 0044ee18 f LIBC:adj_fdiv.obj - 0001:0004de64 __adj_fdiv_m16i 0044ee64 f LIBC:adj_fdiv.obj - 0001:0004de98 __adj_fdiv_m32i 0044ee98 f LIBC:adj_fdiv.obj - 0001:0004decc __adj_fdivr_m32 0044eecc f LIBC:adj_fdiv.obj - 0001:0004df18 __adj_fdivr_m64 0044ef18 f LIBC:adj_fdiv.obj - 0001:0004df64 __adj_fdivr_m16i 0044ef64 f LIBC:adj_fdiv.obj - 0001:0004df98 __adj_fdivr_m32i 0044ef98 f LIBC:adj_fdiv.obj - 0001:0004dfcc __safe_fdiv 0044efcc f LIBC:adj_fdiv.obj - 0001:0004dfe1 __safe_fdivr 0044efe1 f LIBC:adj_fdiv.obj - 0001:0004dff6 __fprem_common 0044eff6 f LIBC:adj_fdiv.obj - 0001:0004e1fc __adj_fprem 0044f1fc f LIBC:adj_fdiv.obj - 0001:0004e2ae __fprem1_common 0044f2ae f LIBC:adj_fdiv.obj - 0001:0004e4b4 __adj_fprem1 0044f4b4 f LIBC:adj_fdiv.obj - 0001:0004e569 __safe_fprem 0044f569 f LIBC:adj_fdiv.obj - 0001:0004e56f __safe_fprem1 0044f56f f LIBC:adj_fdiv.obj - 0001:0004e575 __adj_fpatan 0044f575 f LIBC:adj_fdiv.obj - 0001:0004e578 __adj_fptan 0044f578 f LIBC:adj_fdiv.obj - 0001:0004e57b __fpmath 0044f57b f LIBC:fpinit.obj - 0001:0004e58f __fpclear 0044f58f f LIBC:fpinit.obj - 0001:0004e590 __cfltcvt_init 0044f590 f LIBC:fpinit.obj - 0001:0004e5c8 __ftol 0044f5c8 f LIBC:ftol.obj - 0001:0004e5f0 _asin 0044f5f0 LIBC:87ctriga.obj - 0001:0004e5fa _acos 0044f5fa LIBC:87ctriga.obj - 0001:0004e601 _atan 0044f601 LIBC:87ctriga.obj - 0001:0004e608 _atan2 0044f608 LIBC:87ctriga.obj - 0001:0004e612 __CIasin 0044f612 LIBC:87ctriga.obj - 0001:0004e61c __CIacos 0044f61c LIBC:87ctriga.obj - 0001:0004e623 __CIatan 0044f623 LIBC:87ctriga.obj - 0001:0004e62a __CIatan2 0044f62a LIBC:87ctriga.obj - 0001:0004e634 ??2@YAPAXI@Z 0044f634 f LIBC:new.obj - 0001:0004e644 _strlen 0044f644 f LIBC:strlen.obj - 0001:0004e691 ??3@YAXPAX@Z 0044f691 f LIBC:delete.obj - 0001:0004e6a0 _memcpy 0044f6a0 f LIBC:memcpy.obj - 0001:0004e7ee _fprintf 0044f7ee f LIBC:fprintf.obj - 0001:0004e824 _fread 0044f824 f LIBC:fread.obj - 0001:0004e95b _fwrite 0044f95b f LIBC:fwrite.obj - 0001:0004eab0 __onexit 0044fab0 f LIBC:onexit.obj - 0001:0004eb26 _atexit 0044fb26 f LIBC:onexit.obj - 0001:0004eb38 ___onexitinit 0044fb38 f LIBC:onexit.obj - 0001:0004eb6e __purecall 0044fb6e f LIBC:purevirt.obj - 0001:0004eb79 _mainCRTStartup 0044fb79 f LIBC:crt0.obj - 0001:0004ec72 __amsg_exit 0044fc72 f LIBC:crt0.obj - 0001:0004ec92 _sprintf 0044fc92 f LIBC:sprintf.obj - 0001:0004ecec _strcat 0044fcec f LIBC:strcat.obj - 0001:0004ecf0 _strcpy 0044fcf0 LIBC:strcat.obj - 0001:0004ed7d _vsprintf 0044fd7d f LIBC:vsprintf.obj - 0001:0004edd8 _sqrt 0044fdd8 LIBC:87csqrt.obj - 0001:0004ede2 __CIsqrt 0044fde2 LIBC:87csqrt.obj - 0001:0004edec _memset 0044fdec f LIBC:memset.obj - 0001:0004ee30 _strcmp 0044fe30 f LIBC:strcmp.obj - 0001:0004eeb4 _pow 0044feb4 LIBC:87ctran.obj - 0001:0004eebe _log 0044febe LIBC:87ctran.obj - 0001:0004eec8 _log10 0044fec8 LIBC:87ctran.obj - 0001:0004eecf _exp 0044fecf LIBC:87ctran.obj - 0001:0004eed6 __CIpow 0044fed6 LIBC:87ctran.obj - 0001:0004eee0 __CIlog 0044fee0 LIBC:87ctran.obj - 0001:0004eeea __CIlog10 0044feea LIBC:87ctran.obj - 0001:0004eef1 __CIexp 0044fef1 LIBC:87ctran.obj - 0001:0004eef8 _calloc 0044fef8 f LIBC:calloc.obj - 0001:0004ef32 _free 0044ff32 f LIBC:free.obj - 0001:0004ef9a _fflush 0044ff9a f LIBC:fflush.obj - 0001:0004efe6 __flush 0044ffe6 f LIBC:fflush.obj - 0001:0004f048 __flushall 00450048 f LIBC:fflush.obj - 0001:0004f0bd ___endstdio 004500bd f LIBC:fflush.obj - 0001:0004f0d1 _fscanf 004500d1 f LIBC:fscanf.obj - 0001:0004f0e7 _malloc 004500e7 f LIBC:malloc.obj - 0001:0004f0fa __nh_malloc 004500fa f LIBC:malloc.obj - 0001:0004f1b9 __heap_split_block 004501b9 f LIBC:malloc.obj - 0001:0004f200 _strrchr 00450200 f LIBC:strrchr.obj - 0001:0004f228 _strncpy 00450228 f LIBC:strncpy.obj - 0001:0004f24c _strncmp 0045024c f LIBC:strncmp.obj - 0001:0004f284 _realloc 00450284 f LIBC:realloc.obj - 0001:0004f3d6 _atof 004503d6 f LIBC:atof.obj - 0001:0004f432 _atol 00450432 f LIBC:atox.obj - 0001:0004f4c7 _atoi 004504c7 f LIBC:atox.obj - 0001:0004f4d4 __setmode 004504d4 f LIBC:setmode.obj - 0001:0004f54e _fgets 0045054e f LIBC:fgets.obj - 0001:0004f5a9 _fgetc 004505a9 f LIBC:fgetc.obj - 0001:0004f5ca _ftell 004505ca f LIBC:ftell.obj - 0001:0004f702 _fseek 00450702 f LIBC:fseek.obj - 0001:0004f796 _ungetc 00450796 f LIBC:ungetc.obj - 0001:0004f80d __stbuf 0045080d f LIBC:_sftbuf.obj - 0001:0004f88e __ftbuf 0045088e f LIBC:_sftbuf.obj - 0001:0004f8d4 __output 004508d4 f LIBC:output.obj - 0001:000501fa __close 004511fa f LIBC:close.obj - 0001:00050290 __freebuf 00451290 f LIBC:_freebuf.obj - 0001:000502c8 __openfile 004512c8 f LIBC:_open.obj - 0001:00050463 __getstream 00451463 f LIBC:stream.obj - 0001:000504a0 __setdefaultprecision 004514a0 f LIBC:fp8.obj - 0001:000504b3 _ms_p5_test_fdiv 004514b3 f LIBC:testfdiv.obj - 0001:000504f9 _ms_p5_mp_test_fdiv 004514f9 f LIBC:testfdiv.obj - 0001:000505cc __forcdecpt 004515cc f LIBC:cvt.obj - 0001:00050631 __cropzeros 00451631 f LIBC:cvt.obj - 0001:00050690 __positive 00451690 f LIBC:cvt.obj - 0001:000506a5 __fassign 004516a5 f LIBC:cvt.obj - 0001:000506e8 __cftoe 004516e8 f LIBC:cvt.obj - 0001:0005083b __cftof 0045183b f LIBC:cvt.obj - 0001:00050957 __cftog 00451957 f LIBC:cvt.obj - 0001:000509ff __cfltcvt 004519ff f LIBC:cvt.obj - 0001:00050a98 __fFATN2 00451a98 LIBC:87triga.obj - 0001:00050ae8 __rtpiby2 00451ae8 LIBC:87triga.obj - 0001:00050b20 __cintrindisp2 00451b20 f LIBC:87cdisp.obj - 0001:00050b5e __cintrindisp1 00451b5e f LIBC:87cdisp.obj - 0001:00050b94 __ctrandisp2 00451b94 f LIBC:87cdisp.obj - 0001:00050d05 __ctrandisp1 00451d05 f LIBC:87cdisp.obj - 0001:00050d31 __fload 00451d31 f LIBC:87cdisp.obj - 0001:00050d6d __filbuf 00451d6d f LIBC:_filbuf.obj - 0001:00050e30 _read 00451e30 f LIBC:read.obj - 0001:00050e30 __read 00451e30 f LIBC:read.obj - 0001:0005102a __flsbuf 0045202a f LIBC:_flsbuf.obj - 0001:00051136 __write 00452136 f LIBC:write.obj - 0001:000512cf __cinit 004522cf f LIBC:crt0dat.obj - 0001:000512ff _exit 004522ff f LIBC:crt0dat.obj - 0001:00051310 __exit 00452310 f LIBC:crt0dat.obj - 0001:000513c0 __msize 004523c0 f LIBC:msize.obj - 0001:000513d4 __global_unwind2 004523d4 f LIBC:exsup.obj - 0001:00051416 __local_unwind2 00452416 f LIBC:exsup.obj - 0001:00051470 __abnormal_termination 00452470 f LIBC:exsup.obj - 0001:00051493 __XcptFilter 00452493 f LIBC:winxfltr.obj - 0001:0005161e __setenvp 0045261e f LIBC:stdenvp.obj - 0001:000516e9 __setargv 004526e9 f LIBC:stdargv.obj - 0001:000519e7 __setmbcp 004529e7 f LIBC:mbctype.obj - 0001:00051b75 ___initmbctable 00452b75 f LIBC:mbctype.obj - 0001:00051b80 __ioinit 00452b80 f LIBC:ioinit.obj - 0001:00051c6e __heap_init 00452c6e f LIBC:heapinit.obj - 0001:00051ceb ___getempty 00452ceb f LIBC:heapinit.obj - 0001:00051d18 __except_handler3 00452d18 f LIBC:exsup3.obj - 0001:00051dc6 __seh_longjmp_unwind@4 00452dc6 f LIBC:exsup3.obj - 0001:00051de1 __FF_MSGBANNER 00452de1 f LIBC:crt0msg.obj - 0001:00051e07 __NMSG_WRITE 00452e07 f LIBC:crt0msg.obj - 0001:00051e8d __fFEXP 00452e8d LIBC:87tran.obj - 0001:00051ef4 __rtinfpopse 00452ef4 LIBC:87tran.obj - 0001:00051ef6 __rtinfnpopse 00452ef6 LIBC:87tran.obj - 0001:00051f06 __fFLN 00452f06 LIBC:87tran.obj - 0001:00051fbb __rtinfpop 00452fbb LIBC:87tran.obj - 0001:00051fbd __rtinfnpop 00452fbd LIBC:87tran.obj - 0001:00051fda __ffexpm1 00452fda LIBC:87tran.obj - 0001:00052083 __heap_abort 00453083 f LIBC:hpabort.obj - 0001:0005208e __commit 0045308e f LIBC:commit.obj - 0001:000520db __fcloseall 004530db f LIBC:closeall.obj - 0001:0005210c __input 0045310c f LIBC:input.obj - 0001:00052c30 __heap_search 00453c30 f LIBC:heapsrch.obj - 0001:00052d20 __heap_grow 00453d20 f LIBC:heapgrow.obj - 0001:00052e09 __heap_grow_region 00453e09 f LIBC:heapgrow.obj - 0001:00052eb6 __heap_free_region 00453eb6 f LIBC:heapgrow.obj - 0001:00052ef0 __fltin 00453ef0 f LIBC:cfin.obj - 0001:00052f91 __isctype 00453f91 f LIBC:isctype.obj - 0001:0005300c __lseek 0045400c f LIBC:lseek.obj - 0001:00053081 __getbuf 00454081 f LIBC:_getbuf.obj - 0001:000530cc __isatty 004540cc f LIBC:isatty.obj - 0001:000530e6 _wctomb 004540e6 f LIBC:wctomb.obj - 0001:00053160 __aulldiv 00454160 f LIBC:ulldiv.obj - 0001:000531c0 __aullrem 004541c0 f LIBC:ullrem.obj - 0001:0005322a __dosmaperr 0045422a f LIBC:dosmap.obj - 0001:00053293 __alloc_osfhnd 00454293 f LIBC:osfinfo.obj - 0001:000532c9 __set_osfhnd 004542c9 f LIBC:osfinfo.obj - 0001:00053333 __free_osfhnd 00454333 f LIBC:osfinfo.obj - 0001:000533a0 __get_osfhandle 004543a0 f LIBC:osfinfo.obj - 0001:000533d8 __sopen 004543d8 f LIBC:open.obj - 0001:0005371f __control87 0045471f f LIBC:ieee87.obj - 0001:0005375a __controlfp 0045475a f LIBC:ieee87.obj - 0001:00053891 __fptrap 00454891 f LIBC:crt0fp.obj - 0001:0005389c _tolower 0045489c f LIBC:tolower.obj - 0001:00053968 __ZeroTail 00454968 f LIBC:intrncvt.obj - 0001:000539c8 __IncMan 004549c8 f LIBC:intrncvt.obj - 0001:00053a29 __RoundMan 00454a29 f LIBC:intrncvt.obj - 0001:00053ac6 __CopyMan 00454ac6 f LIBC:intrncvt.obj - 0001:00053ae3 __FillZeroMan 00454ae3 f LIBC:intrncvt.obj - 0001:00053aef __IsZeroMan 00454aef f LIBC:intrncvt.obj - 0001:00053b0d __ShrMan 00454b0d f LIBC:intrncvt.obj - 0001:00053bb8 __ld12cvt 00454bb8 f LIBC:intrncvt.obj - 0001:00053d54 __ld12tod 00454d54 f LIBC:intrncvt.obj - 0001:00053d6a __ld12tof 00454d6a f LIBC:intrncvt.obj - 0001:00053d80 __atodbl 00454d80 f LIBC:intrncvt.obj - 0001:00053db1 __atoflt 00454db1 f LIBC:intrncvt.obj - 0001:00053de2 __fptostr 00454de2 f LIBC:_fptostr.obj - 0001:00053e60 __fltout 00454e60 f LIBC:cfout.obj - 0001:00053ec3 ___dtold 00454ec3 f LIBC:cfout.obj - 0001:00053f7c _memmove 00454f7c f LIBC:memmove.obj - 0001:000540cc __trandisp1 004550cc f LIBC:87disp.obj - 0001:00054133 __trandisp2 00455133 f LIBC:87disp.obj - 0001:000541bf __rttospopde 004551bf LIBC:87disp.obj - 0001:000541c4 __rttospop 004551c4 LIBC:87disp.obj - 0001:000541c6 __rtnospop 004551c6 LIBC:87disp.obj - 0001:000541c8 __rttosnpop 004551c8 LIBC:87disp.obj - 0001:000541c9 __rtnospopde 004551c9 LIBC:87disp.obj - 0001:000541d0 __rtzeropop 004551d0 LIBC:87disp.obj - 0001:000541d2 __rtzeronpop 004551d2 LIBC:87disp.obj - 0001:000541d7 __rtonepop 004551d7 LIBC:87disp.obj - 0001:000541d9 __rtonenpop 004551d9 LIBC:87disp.obj - 0001:000541de __tosnan1 004551de LIBC:87disp.obj - 0001:00054209 __nosnan2 00455209 LIBC:87disp.obj - 0001:0005420b __tosnan2 0045520b LIBC:87disp.obj - 0001:00054233 __nan2 00455233 LIBC:87disp.obj - 0001:00054272 __rtindfpop 00455272 LIBC:87disp.obj - 0001:00054274 __rtindfnpop 00455274 LIBC:87disp.obj - 0001:00054285 __rttosnpopde 00455285 LIBC:87disp.obj - 0001:0005428f __rtchsifneg 0045528f LIBC:87disp.obj - 0001:00054296 __87except 00455296 f LIBC:87except.obj - 0001:000543a0 __powhlp 004553a0 f LIBC:powhlp.obj - 0001:0005458d __d_inttype 0045558d f LIBC:powhlp.obj - 0001:000545e0 __allmul 004555e0 f LIBC:llmul.obj - 0001:00054614 __allshl 00455614 f LIBC:llshl.obj - 0001:00054621 _mbtowc 00455621 f LIBC:mbtowc.obj - 0001:0005471f _isspace 0045571f f LIBC:_ctype.obj - 0001:0005474a __heap_addblock 0045574a f LIBC:heapadd.obj - 0001:00054a01 ___strgtold12 00455a01 f LIBC:strgtold.obj - 0001:00055040 ___crtGetStringTypeA 00456040 f LIBC:aw_str.obj - 0001:0005518b __chsize 0045618b f LIBC:chsize.obj - 0001:000552eb ___crtLCMapStringA 004562eb f LIBC:aw_map.obj - 0001:0005554a ___addl 0045654a f LIBC:mantold.obj - 0001:0005556d ___add_12 0045656d f LIBC:mantold.obj - 0001:000555cb ___shl_12 004565cb f LIBC:mantold.obj - 0001:00055609 ___shr_12 00456609 f LIBC:mantold.obj - 0001:0005563c ___mtold12 0045663c f LIBC:mantold.obj - 0001:00055720 _$I10_OUTPUT 00456720 f LIBC:x10fout.obj - 0001:00055a56 __raise_exc 00456a56 f LIBC:fpexcept.obj - 0001:00055d68 __handle_exc 00456d68 f LIBC:fpexcept.obj - 0001:00055fc0 __set_errno 00456fc0 f LIBC:fpexcept.obj - 0001:00055fec __matherr 00456fec f LIBC:matherr.obj - 0001:00055fef __statfp 00456fef f LIBC:fpctrl.obj - 0001:00056000 __clrfp 00457000 f LIBC:fpctrl.obj - 0001:00056012 __ctrlfp 00457012 f LIBC:fpctrl.obj - 0001:00056042 __set_statfp 00457042 f LIBC:fpctrl.obj - 0001:0005609c __set_exp 0045709c f LIBC:util.obj - 0001:000560d1 __decomp 004570d1 f LIBC:util.obj - 0001:0005619f __frnd 0045719f f LIBC:frnd.obj - 0001:000561b4 ___set_invalid_mb_chars 004571b4 f LIBC:setmbval.obj - 0001:000561e2 __heap_findaddr 004571e2 f LIBC:findaddr.obj - 0001:0005624c ___ld12mul 0045724c f LIBC:tenpow.obj - 0001:0005648c ___multtenpow12 0045748c f LIBC:tenpow.obj - 0001:00056504 _strdup 00457504 f LIBCMT:strdup.obj - 0001:00056504 __strdup 00457504 f LIBCMT:strdup.obj - 0001:0005652a _RtlUnwind@16 0045752a kernel32:KERNEL32.dll - 0001:00056550 _BrStdioOpenRead 00457550 f bren:stdfile.obj - 0001:00056a30 _BrStdioPutLine 00457a30 f bren:stdfile.obj - 0001:00056bc2 _freopen 00457bc2 f LIBC:freopen.obj - 0001:00056bf8 _getenv 00457bf8 f LIBC:getenv.obj - 0001:00056c84 _strchr 00457c84 f LIBC:strchr.obj - 0001:00056ca9 _fputs 00457ca9 f LIBC:fputs.obj - 0001:00056cfb __mbsnbicoll 00457cfb f LIBC:mbsnbico.obj - 0001:00056ec9 ___wtomb_environ 00457ec9 f LIBC:wtombenv.obj - 0001:00056f48 ___set_fcntrlcomp 00457f48 f LIBC:setfcntr.obj - 0001:00056fae ___crtCompareStringA 00457fae f LIBC:aw_cmp.obj - 0001:0005727e ___crtsetenv 0045827e f LIBC:setenv.obj - 0001:00057548 __mbschr 00458548 f LIBC:mbschr.obj - 0002:00000020 ?_rgluHashCrc@@3QAIA 00459020 sitobren.obj - 0002:00000460 ?vcodmUtil@@3VCODM@@A 00459460 utilglob.obj - 0002:00000478 ?vmutxMem@@3VMUTX@@A 00459478 utilglob.obj - 0002:00000490 ?vkcdcUtil@@3VKCDC@@A 00459490 utilglob.obj - 0002:000004a0 ?_usac@@3VUSAC@@A 004594a0 utilglob.obj - 0002:000004b8 ?vmutxBase@@3VMUTX@@A 004594b8 utilglob.obj - 0002:000004d0 ?vdmglob@@3UDMGLOB@@A 004594d0 utilglob.obj - 0002:00000528 ?vsflUtil@@3VSFL@@A 00459528 utilglob.obj - 0002:00000548 ?vrndUtil@@3VRND@@A 00459548 utilglob.obj - 0002:00000568 ?_pdoiFirst@@3PAUDOI@@A 00459568 base.obj - 0002:0000056c ?_pdoiFirstRaw@@3PAUDOI@@A 0045956c base.obj - 0002:00000580 ?_ers@@3VERS@@A 00459580 utilerro.obj - 0002:000006a8 ?_pmbhFirst@@3PAUMBH@@A 004596a8 utilmem.obj - 0002:000006c0 ?_mpchschsLower@@3QADA 004596c0 utilstr.obj - 0002:000007c8 ?_mpchschsUpper@@3QADA 004597c8 utilstr.obj - 0002:000008d8 ?_pcflFirst@CFL@@0PAV1@A 004598d8 chunk.obj - 0002:00000900 ?_pfilFirst@FIL@@1PAV1@A 00459900 file.obj - 0002:00000908 ?_mutxList@FIL@@1VMUTX@@A 00459908 file.obj - 0002:00000930 ?_fniTemp@@3VFNI@@A 00459930 fniwin.obj - 0002:00000c0c _fw 00459c0c brfwmxr:fwsetup.obj - 0002:000021fc __BrLoadedImages 0045b1fc brfwmxr:loader.obj - 0002:00002360 _DK_animTokenLine 0045b360 - 0002:00002450 __heap_descpages 0045b450 - 0002:00002460 __heap_regions 0045b460 - 0002:00002760 ___onexitend 0045b760 - 0002:00002764 ___onexitbegin 0045b764 - 0002:00002768 __acmdln 0045b768 - 0002:00002770 __bufin 0045b770 - 0003:00000058 ?rgscrpActor@@3QBU_scrp@@B 0045d058 sitobren.obj - 0003:00000370 ?rgscrpAction@@3QBU_scrp@@B 0045d370 sitobren.obj - 0003:000006e0 ?rgscrpBackground@@3QBU_scrp@@B 0045d6e0 sitobren.obj - 0003:00000aa8 ??_7S2B@@6B@ 0045daa8 sitobren.obj - 0003:00000ac0 ??_7BASE@@6B@ 0045dac0 sitobren.obj - 0003:00000ad8 ??_7S2BLX@@6B@ 0045dad8 sitobren.obj - 0003:00000b08 ??_7KCDC@@6B@ 0045db08 utilglob.obj - 0003:00000b28 ??_7CODC@@6B@ 0045db28 utilglob.obj - 0003:00000b48 ??_7BLL@@6B@ 0045db48 base.obj - 0003:00000b60 ??_7ERS@@6B@ 0045db60 utilerro.obj - 0003:00000b98 ??_7USAC@@6B@ 0045db98 utilint.obj - 0003:00000bb0 ??_7RND@@6B@ 0045dbb0 utilrnd.obj - 0003:00000bd0 ??_7SFL@@6B@ 0045dbd0 utilrnd.obj - 0003:00000bf0 ?vrgchHex@@3QBDB 0045dbf0 utilstr.obj - 0003:00000c08 ??_7CFL@@6B@ 0045dc08 chunk.obj - 0003:00000c20 ??_7CGE@@6B@ 0045dc20 chunk.obj - 0003:00000c38 ??_7CODM@@6B@ 0045dc38 codec.obj - 0003:00000c68 ??_7BACO@@6B@ 0045dc68 crf.obj - 0003:00000c98 ??_7FIL@@6B@ 0045dc98 file.obj - 0003:00000cb0 ??_7BLCK@@6B@ 0045dcb0 file.obj - 0003:00000cc8 ??_7MSNK@@6B@ 0045dcc8 file.obj - 0003:00000cf0 ??_7FNI@@6B@ 0045dcf0 fniwin.obj - 0003:00000d08 ??_7GRPB@@6B@ 0045dd08 groups.obj - 0003:00000d38 ??_7GLB@@6B@ 0045dd38 groups.obj - 0003:00000d68 ??_7GL@@6B@ 0045dd68 groups.obj - 0003:00000d98 ??_7GGB@@6B@ 0045dd98 groups.obj - 0003:00000dc8 ??_7GG@@6B@ 0045ddc8 groups.obj - 0003:00000df8 ??_7CHSE@@6B@ 0045ddf8 chse.obj - 0003:00000e10 ??_7LEXB@@6B@ 0045de10 lex.obj - 0003:00000e40 ??_7BSF@@6B@ 0045de40 stream.obj - 0003:00000e68 ??_7MSSIO@@6B@ 0045de68 mssio.obj - 0003:00000e90 ??_7TMAP@@6B@ 0045de90 bren:tmap.obj - 0003:00001090 ___lookuptable 0045e090 LIBC:output.obj - 0004:00000038 ?_fEnableWarnings@@3HA 0045f038 sitobren.obj - 0004:0000003c ?_fBreak@@3HA 0045f03c sitobren.obj - 0004:00000040 ?_fTableValid@@3HA 0045f040 sitobren.obj - 0004:00000140 ??_C@_04CMDA@FILE?$AA@ 0045f140 sitobren.obj - 0004:00000148 ??_C@_09CEAG@MATERIALS?$AA@ 0045f148 sitobren.obj - 0004:00000154 ??_C@_0O@DPOH@NEW_ACTOR_POS?$AA@ 0045f154 sitobren.obj - 0004:00000164 ??_C@_08IHLH@USE_SETS?$AA@ 0045f164 sitobren.obj - 0004:00000170 ??_C@_07MMEK@COSTUME?$AA@ 0045f170 sitobren.obj - 0004:00000178 ??_C@_04GINN@STEP?$AA@ 0045f178 sitobren.obj - 0004:00000180 ??_C@_06ELIA@LENGTH?$AA@ 0045f180 sitobren.obj - 0004:00000188 ??_C@_07KIMF@CAMERAS?$AA@ 0045f188 sitobren.obj - 0004:00000190 ??_C@_06OJFI@LIGHTS?$AA@ 0045f190 sitobren.obj - 0004:00000198 ??_C@_06NAFD@BPSETS?$AA@ 0045f198 sitobren.obj - 0004:000001a0 ??_C@_08BGJD@SUBMODEL?$AA@ 0045f1a0 sitobren.obj - 0004:000001ac ??_C@_04IIJN@SKIP?$AA@ 0045f1ac sitobren.obj - 0004:000001b4 ??_C@_05OHPB@SCALE?$AA@ 0045f1b4 sitobren.obj - 0004:000001bc ??_C@_05MNJD@FLAGS?$AA@ 0045f1bc sitobren.obj - 0004:000001c4 ??_C@_04GBPO@LAST?$AA@ 0045f1c4 sitobren.obj - 0004:000001cc ??_C@_05MPDO@FIRST?$AA@ 0045f1cc sitobren.obj - 0004:000001d4 ??_C@_08GJBL@FILEBASE?$AA@ 0045f1d4 sitobren.obj - 0004:000001e0 ??_C@_05MDJI@ZREST?$AA@ 0045f1e0 sitobren.obj - 0004:000001e8 ??_C@_05CDPH@YREST?$AA@ 0045f1e8 sitobren.obj - 0004:000001f0 ??_C@_05IDNC@XREST?$AA@ 0045f1f0 sitobren.obj - 0004:000001f8 ??_C@_05FPBM@NAMED?$AA@ 0045f1f8 sitobren.obj - 0004:00000200 ??_C@_03LPAC@CNO?$AA@ 0045f200 sitobren.obj - 0004:00000204 ??_C@_06MJBA@STATIC?$AA@ 0045f204 sitobren.obj - 0004:0000020c ??_C@_0O@HMJM@FIELD_OF_VIEW?$AA@ 0045f20c sitobren.obj - 0004:0000021c ??_C@_03IMEM@FAR?$AA@ 0045f21c sitobren.obj - 0004:00000220 ??_C@_04NLIO@NEAR?$AA@ 0045f220 sitobren.obj - 0004:00000228 ??_C@_08PANB@INTEREST?$AA@ 0045f228 sitobren.obj - 0004:00000234 ??_C@_08BGJK@POSITION?$AA@ 0045f234 sitobren.obj - 0004:00000240 ??_C@_0L@FIGP@BACKGROUND?$AA@ 0045f240 sitobren.obj - 0004:0000024c ??_C@_06LHNJ@ACTION?$AA@ 0045f24c sitobren.obj - 0004:00000254 ??_C@_05FJKC@ACTOR?$AA@ 0045f254 sitobren.obj - 0004:0000025c ??_C@_0HC@HLJM@?6?5?5?5?5The?5default?5extension?5for?5t@ 0045f25c sitobren.obj - 0004:000002d0 ??_C@_0CF@KLFP@?5?5?5?5?5?5?5?5?9?$DP?5?5?5?5?5?5?5?5?5This?5informat@ 0045f2d0 sitobren.obj - 0004:000002f8 ??_C@_0JL@GKOC@?5?5?5?5?5?5?5?5?9k?5?5?5?5?5?5?5?5?5Kontinue?5afte@ 0045f2f8 sitobren.obj - 0004:00000394 ??_C@_0HM@OGJF@?5?5?5?5?5?5?5?5?9t?$CD?5?5?5?5?5?5?5?5Round?5off?5tra@ 0045f394 sitobren.obj - 0004:00000410 ??_C@_0HM@HCNJ@?5?5?5?5?5?5?5?5?9h?5?5?5?5?5?5?5?5?5swap?5z?9axis?5?$CI@ 0045f410 sitobren.obj - 0004:0000048c ??_C@_0GM@JKDB@?5?5?5?5flags?3?6?5?5?5?5?5?5?5?5?9n?$FLologo?$FN?5?5do@ 0045f48c sitobren.obj - 0004:000004f8 ??_C@_0EA@CBJM@Usage?3?6?5?5?5?5sitobren?5?$FL?9?$DMflag?$DO?$FN?5?$DMs@ 0045f4f8 sitobren.obj - 0004:00000538 ??_C@_0BK@LIAI@won?8t?5return?5error?5status?$AA@ 0045f538 sitobren.obj - 0004:00000554 ??_C@_0BN@BKGA@Files?5left?5in?5the?5file?5chain?$AA@ 0045f554 sitobren.obj - 0004:00000574 ??_C@_0BK@ONJK@Error?3?5not?5enough?5memory?6?$AA@ 0045f574 sitobren.obj - 0004:00000590 ??_C@_0CL@MPPH@Warning?3?5couldn?8t?5build?5include?5@ 0045f590 sitobren.obj - 0004:000005bc ??_C@_0CI@IKOL@Could?5not?5create?5destination?5fil@ 0045f5bc sitobren.obj - 0004:000005e4 ??_C@_02IAAH@wt?$AA@ 0045f5e4 sitobren.obj - 0004:000005e8 ??_C@_0BP@ENNC@Invalid?5destination?5file?5name?6?$AA@ 0045f5e8 sitobren.obj - 0004:00000608 ??_C@_03CENI@?$CFs?5?$AA@ 0045f608 sitobren.obj - 0004:0000060c ??_C@_01BJG@?6?$AA@ 0045f60c sitobren.obj - 0004:00000610 ??_C@_0L@GJCA@?$DMToken?5?$CFd?$DO?$AA@ 0045f610 sitobren.obj - 0004:0000061c ??_C@_0CB@IKIH@Could?5not?5open?5source?5file?5?$CI?$CFs?$CJ?6@ 0045f61c sitobren.obj - 0004:00000640 ??_C@_0BK@DKEG@Invalid?5script?5file?5name?6?$AA@ 0045f640 sitobren.obj - 0004:0000065c ??_C@_0BM@GKFN@Variable?5length?5hash?5table?6?$AA@ 0045f65c sitobren.obj - 0004:00000678 ??_C@_0CP@PJKA@Rounding?5off?5transformations?5?$CFd?5@ 0045f678 sitobren.obj - 0004:000006a8 ??_C@_0BP@BLMH@Rounding?5off?5?$CFd?5binary?5places?6?$AA@ 0045f6a8 sitobren.obj - 0004:000006c8 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0045f6c8 sitobren.obj - 0004:00000704 ??_C@_0DH@MMNA@?6Microsoft?5?$CIR?$CJ?5SoftImage?5?$CIR?$CJ?5to?5@ 0045f704 sitobren.obj - 0004:0000073c ??_C@_0CB@CJJC@Error?3?5unrecognized?5option?5?8?$CFc?8?6@ 0045f73c sitobren.obj - 0004:00000760 ??_C@_06CAIJ@nologo?$AA@ 0045f760 sitobren.obj - 0004:00000768 ??_C@_03GOHA@nil?$AA@ 0045f768 sitobren.obj - 0004:0000076c ??_C@_0EE@EODI@Couldn?8t?5find?5my?5resource?5file?5?$CI@ 0045f76c sitobren.obj - 0004:000007b0 ??_C@_0BK@DHCI@Couldn?8t?5find?5GLCR?5chunk?6?$AA@ 0045f7b0 sitobren.obj - 0004:000007cc ??_C@_0BL@CHOG@Unable?5to?5read?5GLCR?5chunk?6?$AA@ 0045f7cc sitobren.obj - 0004:000007e8 ??_C@_0CB@CFEF@GLCG?5byte?9order?5not?5same?5as?5GLCR@ 0045f7e8 sitobren.obj - 0004:0000080c ??_C@_0BF@KBGI@Couldn?8t?5change?5FTG?$DP?$AA@ 0045f80c sitobren.obj - 0004:00000824 ??_C@_0BK@KPEJ@Couldn?8t?5build?5?4chk?5path?$DP?$AA@ 0045f824 sitobren.obj - 0004:00000840 ??_C@_0BD@FMGN@mdVerbose?5overflow?$AA@ 0045f840 sitobren.obj - 0004:00000854 ??_C@_0FG@LHAP@Warning?3?5CTG?5w?1out?5any?5alphanume@ 0045f854 sitobren.obj - 0004:000008ac ??_C@_06HHGP@?$CDendif?$AA@ 0045f8ac sitobren.obj - 0004:000008b4 ??_C@_05GMMC@?$CDelse?$AA@ 0045f8b4 sitobren.obj - 0004:000008bc ??_C@_0CK@BHMA@?$CDif?5?$CBdefined?$CIDEBUG?$CJ?5?$CG?$CG?5?$CBdefined?$CI@ 0045f8bc sitobren.obj - 0004:000008e8 ??_C@_02JBAA@?$CFf?$AA@ 0045f8e8 sitobren.obj - 0004:000008ec ??_C@_0BJ@IHPL@Didn?8t?5empty?5XF?5database?$AA@ 0045f8ec sitobren.obj - 0004:00000908 ??_C@_0BL@DDBK@Didn?8t?5empty?5BMDL?5database?$AA@ 0045f908 sitobren.obj - 0004:00000924 ??_C@_09KDII@?5?5?5?5?$CF08x?6?$AA@ 0045f924 sitobren.obj - 0004:00000930 ??_C@_07LPPG@?5?5?5?5?$CFs?6?$AA@ 0045f930 sitobren.obj - 0004:00000938 ??_C@_0CN@KHHL@Unexpected?5token?5at?5line?5?$CFd?0?5cha@ 0045f938 sitobren.obj - 0004:00000968 ??_C@_0DI@EPDP@Error?3?5found?5?8costume?8?5token?5bef@ 0045f968 sitobren.obj - 0004:000009a0 ??_C@_0DH@GECK@Error?3?5found?5?8action?8?5token?5befo@ 0045f9a0 sitobren.obj - 0004:000009d8 ??_C@_00A@?$AA@ 0045f9d8 sitobren.obj - 0004:000009dc ??_C@_04EHOP@BYTE?$AA@ 0045f9dc sitobren.obj - 0004:000009e4 ??_C@_0O@DJPE@?$CDinclude?5?$CC?$CFs?$CC?$AA@ 0045f9e4 sitobren.obj - 0004:000009f4 ??_C@_0P@FHOK@Error?3?5?$CFs?$DL?5?$CFs?6?$AA@ 0045f9f4 sitobren.obj - 0004:00000a04 ??_C@_0BI@PKCG@Inconsistent?5error?5info?$AA@ 0045fa04 sitobren.obj - 0004:00000a1c ??_C@_0CH@EHHC@Error?3?5expected?5degrees?5as?5an?5in@ 0045fa1c sitobren.obj - 0004:00000a44 ??_C@_0CL@PJGJ@Error?3?5expected?5integer?5or?5float@ 0045fa44 sitobren.obj - 0004:00000a70 ??_C@_0BJ@DMCO@Error?3?5expected?5integer?6?$AA@ 0045fa70 sitobren.obj - 0004:00000a8c ??_C@_0BI@DODN@Error?3?5expected?5string?6?$AA@ 0045fa8c sitobren.obj - 0004:00000aa4 ??_C@_0L@IGOG@Bad?5RGSCRP?$AA@ 0045faa4 sitobren.obj - 0004:00000ab0 ??_C@_0FK@GOB@?5?5?5?5ACTOR?5CNO?5?$CFd?0?5NAMED?5?$CC?$CFs?$CC?0?6?5?5@ 0045fab0 sitobren.obj - 0004:00000b0c ??_C@_0DD@FECK@Error?5occured?5during?5processing?5@ 0045fb0c sitobren.obj - 0004:00000b40 ??_C@_08CEGN@ENDCHUNK?$AA@ 0045fb40 sitobren.obj - 0004:00000b4c ??_C@_0CK@GBHA@All?5mesh?5and?5null?5nodes?5will?5be?5@ 0045fb4c sitobren.obj - 0004:00000b78 ??_C@_0EH@CNJA@All?5mesh?5nodes?0?5and?5null?5nodes?5w@ 0045fb78 sitobren.obj - 0004:00000bc0 ??_C@_0DB@KEOG@Only?5nodes?5with?5body?5part?5sets?5w@ 0045fbc0 sitobren.obj - 0004:00000bf4 ??_C@_0CG@IMK@Body?5part?5sets?5will?5not?5be?5gener@ 0045fbf4 sitobren.obj - 0004:00000c1c ??_C@_0P@LHFD@New?5actor?3?5?$CFs?6?$AA@ 0045fc1c sitobren.obj - 0004:00000c2c ??_C@_0DC@CCFP@Error?3?5body?5part?5sets?5state?5out?5@ 0045fc2c sitobren.obj - 0004:00000c60 ??_C@_0O@NGDM@actor?5ignored?$AA@ 0045fc60 sitobren.obj - 0004:00000c70 ??_C@_0HP@CINE@?5?5?5?5ACTION?5NAMED?5?$CC?$CFs?$CC?5FILEBASE?5?$CC@ 0045fc70 sitobren.obj - 0004:00000cf0 ??_C@_0DK@GDF@Average?5XF?5collision?5chain?5had?5?$CF@ 0045fcf0 sitobren.obj - 0004:00000d2c ??_C@_0CD@JDHO@XF?5collision?5chain?5had?5?$CFd?5entrie@ 0045fd2c sitobren.obj - 0004:00000d50 ??_C@_0BG@BFNC@Emptying?5XF?5database?6?$AA@ 0045fd50 sitobren.obj - 0004:00000d68 ??_C@_0BB@JGBD@?$CFs?5?$CFs?5Transforms?$AA@ 0045fd68 sitobren.obj - 0004:00000d7c ??_C@_0L@FJJG@?$CFs?5?$CFs?5Cels?$AA@ 0045fd7c sitobren.obj - 0004:00000d88 ??_C@_0BM@KABO@Didn?8t?5free?5model?5hierarchy?$AA@ 0045fd88 sitobren.obj - 0004:00000da4 ??_C@_0CC@KJDK@Couldn?8t?5create?5CPS?5array?5?9?9?5OOM@ 0045fda4 sitobren.obj - 0004:00000dc8 ??_C@_0BN@EGJI@Couldn?8t?5create?5GLXF?5?9?9?5OOM?6?$AA@ 0045fdc8 sitobren.obj - 0004:00000de8 ??_C@_0CM@BPIE@Found?5?$CFd?5mesh?5nodes?0?5totalling?5?$CF@ 0045fde8 sitobren.obj - 0004:00000e14 ??_C@_0CF@IODA@Distance?5from?5previous?5cel?5is?5?$CF5@ 0045fe14 sitobren.obj - 0004:00000e3c ??_C@_0CG@FIEH@Error?3?5processing?5cel?5heirarchy?5@ 0045fe3c sitobren.obj - 0004:00000e64 ??_C@_0DF@EHFN@Warning?3?5costume?5info?5will?5be?5ex@ 0045fe64 sitobren.obj - 0004:00000e9c ??_C@_0BA@DPC@Bad?5error?5state?$AA@ 0045fe9c sitobren.obj - 0004:00000eac ??_C@_0CB@JBLI@Error?3?5Can?8t?5read?5cel?5file?5?$CI?$CFs?$CJ?6@ 0045feac sitobren.obj - 0004:00000ed0 ??_C@_0CK@EIHN@Error?3?5Computed?5filename?5too?5lon@ 0045fed0 sitobren.obj - 0004:00000efc ??_C@_07PAPD@?9?$CFd?4hrc?$AA@ 0045fefc sitobren.obj - 0004:00000f04 ??_C@_0DM@CKID@Warning?3?5step?5size?5parameter?5ign@ 0045ff04 sitobren.obj - 0004:00000f40 ??_C@_0CH@NODG@Warning?3?5single?9cel?5non?9static?5a@ 0045ff40 sitobren.obj - 0004:00000f68 ??_C@_0DC@FBCJ@Error?3?5non?9positive?5increment?5fo@ 0045ff68 sitobren.obj - 0004:00000f9c ??_C@_0P@JGCM@action?5ignored?$AA@ 0045ff9c sitobren.obj - 0004:00000fac ??_C@_0CJ@GKBE@Warning?3?5no?5custom?5material?5info@ 0045ffac sitobren.obj - 0004:00000fd8 ??_C@_0BA@MGJM@Non?9nil?5GLCMTLD?$AA@ 0045ffd8 sitobren.obj - 0004:00000fe8 ??_C@_0CH@MAMM@Warning?3?5no?5body?5part?5set?5info?5?9@ 0045ffe8 sitobren.obj - 0004:00001010 ??_C@_0CE@NIDP@Error?3?5Couldn?8t?5create?5GLPI?5?9?9?5O@ 00460010 sitobren.obj - 0004:00001034 ??_C@_0BG@DPCO@Non?9nil?5body?5part?5set?$AA@ 00460034 sitobren.obj - 0004:0000104c ??_C@_0FF@JJOO@?5?5?5?5BACKGROUND?5CNO?5?$CFd?0?5NAMED?5?$CC?$CFs@ 0046004c sitobren.obj - 0004:000010a4 ??_C@_0O@NOHN@?$CFs?5Background?$AA@ 004600a4 sitobren.obj - 0004:000010b4 ??_C@_0BK@JJOI@Palette?5base?5out?5of?5range?$AA@ 004600b4 sitobren.obj - 0004:000010d0 ??_C@_0BD@EMFP@background?5ignored?$AA@ 004600d0 sitobren.obj - 0004:000010e4 ??_C@_02DILL@?$CFs?$AA@ 004600e4 sitobren.obj - 0004:000010e8 ??_C@_04JDGB@?0?5?$CFd?$AA@ 004600e8 sitobren.obj - 0004:000010f0 ??_C@_0BB@JBJM@?5?5?5?5?5?5?5?5USE_SETS?$AA@ 004600f0 sitobren.obj - 0004:00001104 ??_C@_0BI@BHLD@?5?5?5?5COSTUME?5FILE?5?$CC?$CFs?$CC?0?6?$AA@ 00460104 sitobren.obj - 0004:0000111c ??_C@_0CO@JNPA@Error?3?5processing?5hierarchy?5for?5@ 0046011c sitobren.obj - 0004:0000114c ??_C@_0DD@NMKL@Error?3?5processing?5SoftImage?5data@ 0046014c sitobren.obj - 0004:00001180 ??_C@_0CF@MHGF@haven?8t?5processed?5base?5hierarchy@ 00460180 sitobren.obj - 0004:000011a8 ??_C@_0CF@PPNJ@Error?3?5Can?8t?5read?5costume?5file?5?$CI@ 004601a8 sitobren.obj - 0004:000011d0 ??_C@_0DC@GELP@Error?3?5can?8t?5build?5list?5of?5body?5@ 004601d0 sitobren.obj - 0004:00001204 ??_C@_0BA@OFMA@costume?5ignored?$AA@ 00460204 sitobren.obj - 0004:00001214 ??_C@_0BE@FOLA@Odd?5parent?5for?5GLLT?$AA@ 00460214 sitobren.obj - 0004:00001228 ??_C@_09IGOD@?$CFs?5Lights?$AA@ 00460228 sitobren.obj - 0004:00001234 ??_C@_0CD@DECK@Couldn?8t?5add?5light?5to?5GLLT?5?9?9?5OO@ 00460234 sitobren.obj - 0004:00001258 ??_C@_0DH@IKLE@Computed?5light?5filename?5too?5long@ 00460258 sitobren.obj - 0004:00001290 ??_C@_0BD@PBEA@?$CFs?9light?$CFd?41?90?4sal?$AA@ 00460290 sitobren.obj - 0004:000012a4 ??_C@_0BI@NMBJ@Couldn?8t?5allocate?5GLLT?6?$AA@ 004602a4 sitobren.obj - 0004:000012bc ??_C@_0N@PNLA@?$CFs?5Bitmap?5?$CFd?$AA@ 004602bc sitobren.obj - 0004:000012cc ??_C@_0BD@EHNC@Odd?5parent?5for?5CAM?$AA@ 004602cc sitobren.obj - 0004:000012e0 ??_C@_0N@PCKG@?$CFs?5Camera?5?$CFd?$AA@ 004602e0 sitobren.obj - 0004:000012f0 ??_C@_03HHKO@?$CFs?6?$AA@ 004602f0 sitobren.obj - 0004:000012f4 ??_C@_0CJ@OMFG@Error?3?5Couldn?8t?5read?5camera?5pale@ 004602f4 sitobren.obj - 0004:00001320 ??_C@_0BE@HFMD@Odd?5parent?5for?5GLCR?$AA@ 00460320 sitobren.obj - 0004:00001334 ??_C@_0L@CFFH@?$CFs?5Palette?$AA@ 00460334 sitobren.obj - 0004:00001340 ??_C@_0BM@MHJO@Not?5enough?5colors?5in?5bitmap?$AA@ 00460340 sitobren.obj - 0004:0000135c ??_C@_0CJ@ENNH@Error?3?5Couldn?8t?5create?5palette?5f@ 0046035c sitobren.obj - 0004:00001388 ??_C@_0DG@LCPG@Computed?5bitmap?5filename?5too?5lon@ 00460388 sitobren.obj - 0004:000013c0 ??_C@_0BB@LIAP@?$CFs?9view?41?9?$CFd?4bmp?$AA@ 004603c0 sitobren.obj - 0004:000013d4 ??_C@_0DF@IIPE@Computed?5camera?5filename?5too?5lon@ 004603d4 sitobren.obj - 0004:0000140c ??_C@_0BA@IFFI@?$CFs?9cam?41?9?$CFd?4sac?$AA@ 0046040c sitobren.obj - 0004:0000141c ??_C@_0CJ@JLP@Error?3?5Couldn?8t?5build?5z?9buffer?5f@ 0046041c sitobren.obj - 0004:00001448 ??_C@_0CE@OFGL@Error?3?5Couldn?8t?5open?5z?9buffer?5fi@ 00460448 sitobren.obj - 0004:0000146c ??_C@_0BC@ENDC@?$CFs?9view?41?9?$CFd?4Zbmp?$AA@ 0046046c sitobren.obj - 0004:00001480 ??_C@_0O@OKHK@Zbmp?5too?5tall?$AA@ 00460480 sitobren.obj - 0004:00001490 ??_C@_0O@FOEC@Zbmp?5too?5wide?$AA@ 00460490 sitobren.obj - 0004:000014a0 ??_C@_0P@DADA@?$CFs?5Z?9Buffer?5?$CFd?$AA@ 004604a0 sitobren.obj - 0004:000014b0 ??_C@_0BO@CHCB@Non?9positive?5calculated?5value?$AA@ 004604b0 sitobren.obj - 0004:000014d0 ??_C@_0BM@FGCL@Non?9negative?5zbuffer?5values?$AA@ 004604d0 sitobren.obj - 0004:000014ec ??_C@_0BF@NAIG@Failed?5z?9buffer?5read?$AA@ 004604ec sitobren.obj - 0004:00001504 ??_C@_0BE@LNAK@Partial?5data?5at?5EOF?$AA@ 00460504 sitobren.obj - 0004:00001518 ??_C@_0CH@MJCC@Error?3?5Not?5enough?5memory?5for?5z?9b@ 00460518 sitobren.obj - 0004:00001540 ??_C@_0DJ@MGJE@Computed?5z?9buffer?5filename?5too?5l@ 00460540 sitobren.obj - 0004:0000157c ??_C@_0BC@MEBG@?$CFs?9view?41?9?$CFd?4Zpic?$AA@ 0046057c sitobren.obj - 0004:00001590 ??_C@_0BI@PDNC@Invalid?5z?9buffer?5height?$AA@ 00460590 sitobren.obj - 0004:000015a8 ??_C@_0BH@NJJK@Invalid?5z?9buffer?5width?$AA@ 004605a8 sitobren.obj - 0004:000015c0 ??_C@_0BN@GGGJ@Error?3?5Invalid?5triplet?5data?6?$AA@ 004605c0 sitobren.obj - 0004:000015e0 ??_C@_09JBNA@Bad?5angle?$AA@ 004605e0 sitobren.obj - 0004:000015ec ??_C@_0CG@JMBE@Error?3?5Couldn?8t?5build?5light?5file@ 004605ec sitobren.obj - 0004:00001614 ??_C@_0CB@KAEG@Error?3?5Couldn?8t?5open?5light?5file?6@ 00460614 sitobren.obj - 0004:00001638 ??_C@_0CH@IPMP@Error?3?5Expected?5STATIC?5after?5INT@ 00460638 sitobren.obj - 0004:00001660 ??_C@_0CH@HFCJ@Error?3?5Expected?5STATIC?5after?5POS@ 00460660 sitobren.obj - 0004:00001688 ??_C@_0BP@CGAB@Light?5file?5has?5wrong?5extension?$AA@ 00460688 sitobren.obj - 0004:000016a8 ??_C@_0CH@NFGM@Error?3?5Couldn?8t?5build?5camera?5fil@ 004606a8 sitobren.obj - 0004:000016d0 ??_C@_0CC@GNHK@Error?3?5Couldn?8t?5open?5camera?5file@ 004606d0 sitobren.obj - 0004:000016f4 ??_C@_0CD@JEBF@Error?3?5Invalid?5FIELD_OF_VIEW?5dat@ 004606f4 sitobren.obj - 0004:00001718 ??_C@_0BJ@LCBN@Error?3?5Invalid?5FAR?5data?6?$AA@ 00460718 sitobren.obj - 0004:00001734 ??_C@_0BK@PEFJ@Error?3?5Invalid?5NEAR?5data?6?$AA@ 00460734 sitobren.obj - 0004:00001750 ??_C@_0CA@ENIH@Camera?5file?5has?5wrong?5extension?$AA@ 00460750 sitobren.obj - 0004:00001770 ??_C@_0BH@GEHN@Non?9nil?5parent?5pointer?$AA@ 00460770 sitobren.obj - 0004:00001788 ??_C@_0CO@EFEN@Warning?3?5mesh?5node?5?$CC?$CFs?$CC?5has?5no?5b@ 00460788 sitobren.obj - 0004:000017b8 ??_C@_0CF@DBHG@Out?5of?5memory?5allocating?5model?5n@ 004607b8 sitobren.obj - 0004:000017e0 ??_C@_0BO@EEAK@node?5?$CC?$CFs?$CC?5?$CIbody?5part?5set?5?$CFd?$CJ?6?$AA@ 004607e0 sitobren.obj - 0004:00001800 ??_C@_03BNFD@?$CF?$CKc?$AA@ 00460800 sitobren.obj - 0004:00001804 ??_C@_0BL@INFL@Color?5index?5range?5too?5high?$AA@ 00460804 sitobren.obj - 0004:00001820 ??_C@_0BK@OPPC@Color?5index?5base?5too?5high?$AA@ 00460820 sitobren.obj - 0004:0000183c ??_C@_0CK@BBDF@Warning?3?5missing?5material?5for?5me@ 0046083c sitobren.obj - 0004:00001868 ??_C@_0CK@CLIO@Warning?3?5mesh?5node?5has?5no?5materi@ 00460868 sitobren.obj - 0004:00001894 ??_C@_0BJ@CMBH@Using?5the?5wrong?5material?$AA@ 00460894 sitobren.obj - 0004:000018b0 ??_C@_0CB@KHPJ@Improper?5call?5to?5_PbmhrFromModel@ 004608b0 sitobren.obj - 0004:000018d4 ??_C@_0M@BAGM@Bad?5pointer?$AA@ 004608d4 sitobren.obj - 0004:000018e0 ??_C@_0CK@FOKH@Couldn?8t?5allocate?5Brender?5hierar@ 004608e0 sitobren.obj - 0004:0000190c ??_C@_0CD@FFHN@Couldn?8t?5allocate?5MODLF?5structur@ 0046090c sitobren.obj - 0004:00001930 ??_C@_0BH@BFLC@Mesh?5model?5has?5no?5data?$AA@ 00460930 sitobren.obj - 0004:00001948 ??_C@_0BP@OGEL@Data?5present?5in?5non?9mesh?5model?$AA@ 00460948 sitobren.obj - 0004:00001968 ??_C@_0CG@ECAC@Inconsistent?5fixwrap?5setting?5for@ 00460968 sitobren.obj - 0004:00001990 ??_C@_0BD@GMCM@?5Texture?5transform?$AA@ 00460990 sitobren.obj - 0004:000019a4 ??_C@_0BP@GEPM@_FFlushTmaps?5should?5never?5fail?$AA@ 004609a4 sitobren.obj - 0004:000019c4 ??_C@_0EC@MINF@Node?5bounds?3?5?$CI?$CF?56?42f?0?5?$CF?56?42f?0?5?$CF?5@ 004609c4 sitobren.obj - 0004:00001a08 ??_C@_0BC@PEHH@sizes?5don?8t?5match?$AA@ 00460a08 sitobren.obj - 0004:00001a1c ??_C@_0CH@FAIA@Warning?3?5vertex?5out?5of?5range?5for@ 00460a1c sitobren.obj - 0004:00001a44 ??_C@_0CA@OPGG@Better?5keep?5that?5?8fill?9in?8?5code?$AA@ 00460a44 sitobren.obj - 0004:00001a64 ??_C@_0CJ@LOBF@SoftImage?5data?5has?5?$CFd?5vertices?5f@ 00460a64 sitobren.obj - 0004:00001a90 ??_C@_0DN@JPDL@Warning?3?5texture?5BMP?5file?5does?5n@ 00460a90 sitobren.obj - 0004:00001ad0 ??_C@_0BL@MIDM@?$CFs?5Part?5?$CFd?5Costume?5?$CFd?5MTRL?$AA@ 00460ad0 sitobren.obj - 0004:00001aec ??_C@_0BI@LKMG@?$CFs?5Part?5?$CFd?5Default?5MTRL?$AA@ 00460aec sitobren.obj - 0004:00001b04 ??_C@_0BP@IBGA@?$CFs?5Body?5Part?5Set?5?$CFd?5Costume?5?$CFd?$AA@ 00460b04 sitobren.obj - 0004:00001b24 ??_C@_0BM@EFBI@?$CFs?5Body?5Part?5Set?5?$CFd?5Default?$AA@ 00460b24 sitobren.obj - 0004:00001b40 ??_C@_08LECL@bogus?5iv?$AA@ 00460b40 sitobren.obj - 0004:00001b4c ??_C@_0BC@LGEA@ibps?5out?5of?5range?$AA@ 00460b4c sitobren.obj - 0004:00001b60 ??_C@_0N@IJMM@Bogus?5icmtld?$AA@ 00460b60 sitobren.obj - 0004:00001b70 ??_C@_0BF@LFB@Weird?5order?5for?5GLBS?$AA@ 00460b70 sitobren.obj - 0004:00001b88 ??_C@_0CO@JCCF@Warning?3?5no?5body?5part?5set?5inform@ 00460b88 sitobren.obj - 0004:00001bb8 ??_C@_0M@IPNH@?5?$CInode?5?$CFs?$CJ?6?$AA@ 00460bb8 sitobren.obj - 0004:00001bc4 ??_C@_0DB@BDBK@Error?3?5cel?5doesn?8t?5match?5previou@ 00460bc4 sitobren.obj - 0004:00001bf8 ??_C@_0BF@OEEL@Weird?5order?5for?5GLPI?$AA@ 00460bf8 sitobren.obj - 0004:00001c10 ??_C@_0CJ@DPB@Error?3?5Couldn?8t?5add?5node?5to?5GLPI@ 00460c10 sitobren.obj - 0004:00001c3c ??_C@_0CI@MNPD@Why?5is?5there?5an?5array?5of?5CPS?5all@ 00460c3c sitobren.obj - 0004:00001c64 ??_C@_0BD@HCEC@Didn?8t?5clear?5MODLF?$AA@ 00460c64 sitobren.obj - 0004:00001c78 ??_C@_0CG@BFLF@Error?3?5no?5valid?5nodes?5found?5in?5m@ 00460c78 sitobren.obj - 0004:00001ca0 ??_C@_0BI@DAOD@WrapAddVertex?3?5no?5space?$AA@ 00460ca0 sitobren.obj - 0004:00001cb8 ??_C@_0BH@NKLN@Inconsistent?5wrap?5flag?$AA@ 00460cb8 sitobren.obj - 0004:00001cd0 ??_C@_0BC@GPEL@Unknown?5wrap?5flag?$AA@ 00460cd0 sitobren.obj - 0004:00001ce4 ??_C@_0CK@FELL@Moved?5vertex?5is?5within?50?45?5of?5go@ 00460ce4 sitobren.obj - 0004:00001d10 ??_C@_0BC@BFLC@vbad?5out?5of?5range?$AA@ 00460d10 sitobren.obj - 0004:00001d24 ??_C@_0BN@OGCN@Should?5only?5have?5one?5bit?5set?$AA@ 00460d24 sitobren.obj - 0004:00001d44 ??_C@_0BG@KEND@Unknown?5wrap?5flag?5set?$AA@ 00460d44 sitobren.obj - 0004:00001d5c ??_C@_0BO@HIMG@Already?5seen?5two?5bad?5vertices?$AA@ 00460d5c sitobren.obj - 0004:00001d7c ??_C@_0BF@MGHB@Both?5wrap?5flags?5set?$CB?$AA@ 00460d7c sitobren.obj - 0004:00001d94 ??_C@_0BI@LEBN@Vertex?5U?5greater?5than?51?$AA@ 00460d94 sitobren.obj - 0004:00001dac ??_C@_0BF@HKNO@Vertex?5U?5less?5than?50?$AA@ 00460dac sitobren.obj - 0004:00001dc4 ??_C@_0BI@FIIP@Face?5?$CFd?5has?5a?5bad?5edge?6?$AA@ 00460dc4 sitobren.obj - 0004:00001ddc ??_C@_0L@EJNK@WRAP_V?5NYI?$AA@ 00460ddc sitobren.obj - 0004:00001de8 ??_C@_0DH@JLAM@Average?5collision?5chain?5has?5?$CF1?42@ 00460de8 sitobren.obj - 0004:00001e20 ??_C@_0CG@EKJM@Model?5collision?5chain?5has?5?$CFd?5ent@ 00460e20 sitobren.obj - 0004:00001e48 ??_C@_0M@LGLF@?$CFs?5Model?5?$CFz?$AA@ 00460e48 sitobren.obj - 0004:00001e54 ??_C@_0M@LEAP@?$CFs?5Model?5?$CFd?$AA@ 00460e54 sitobren.obj - 0004:00001e60 ??_C@_0P@KGJE@?5unnamed?5node?6?$AA@ 00460e60 sitobren.obj - 0004:00001e70 ??_C@_09GFH@?5node?5?$CFs?6?$AA@ 00460e70 sitobren.obj - 0004:00001e7c ??_C@_0CO@IIGO@Warning?3?5couldn?8t?5fix?5up?5texture@ 00460e7c sitobren.obj - 0004:00001eac ??_C@_0BC@LGF@?$CFs?5Body?5Part?5Sets?$AA@ 00460eac sitobren.obj - 0004:00001ec0 ??_C@_0EF@DFMF@Warning?3?5couldn?8t?5write?5all?5TMAP@ 00460ec0 sitobren.obj - 0004:00001f08 ??_C@_0CG@NKPC@Non?9empty?5GGCM?5without?5any?5color@ 00460f08 sitobren.obj - 0004:00001f30 ??_C@_0M@FGAO@?$CFs?5Costumes?$AA@ 00460f30 sitobren.obj - 0004:00001f3c ??_C@_0BG@HHJC@Weird?5parent?5for?5GGCM?$AA@ 00460f3c sitobren.obj - 0004:00001f54 ??_C@_0DA@DILF@Custom?5material?5info?5with?5no?5bod@ 00460f54 sitobren.obj - 0004:00001f84 ??_C@_07GIPK@?$CFs?5Tree?$AA@ 00460f84 sitobren.obj - 0004:00001f8c ??_C@_0CA@CKAM@Odd?5parent?5for?5body?5part?5chunks?$AA@ 00460f8c sitobren.obj - 0004:00001fac ??_C@_0BC@ENAG@Already?5have?5BMDL?$AA@ 00460fac sitobren.obj - 0004:00001fc0 ??_C@_0CD@DDHB@Couldn?8t?5add?5entry?5to?5GLXF?5?9?9?5OO@ 00460fc0 sitobren.obj - 0004:00001fe4 ??_C@_0FB@ECFP@Warning?3?5non?9null?5accessory?5node@ 00460fe4 sitobren.obj - 0004:00002038 ??_C@_0GJ@MMJO@Warning?3?5mesh?5found?5with?5identic@ 00461038 sitobren.obj - 0004:000020a4 ??_C@_0CB@BLDI@Couldn?8t?5allocate?5Model?5DB?5node?6@ 004610a4 sitobren.obj - 0004:000020c8 ??_C@_0CF@HGAH@Couldn?8t?5add?5node?5to?5model?5datab@ 004610c8 sitobren.obj - 0004:000020f0 ??_C@_0BP@PGP@Bad?5struct?5definition?5for?5BMDB?$AA@ 004610f0 sitobren.obj - 0004:00002110 ??_C@_0CM@IEML@Can?8t?5use?5table?5hashing?5with?5uni@ 00461110 sitobren.obj - 0004:0000213c ??_C@_0CM@DKN@Error?3?5Couldn?8t?5allocate?5Transfo@ 0046113c sitobren.obj - 0004:00002168 ??_C@_0DA@BGJL@Error?3?5Couldn?8t?5add?5node?5to?5tran@ 00461168 sitobren.obj - 0004:00002198 ??_C@_0CB@HAD@Bad?5struct?5definition?5for?5BMATDB@ 00461198 sitobren.obj - 0004:000021bc ??_C@_0DK@IHNP@Didn?8t?5find?5exact?5match?5for?5colo@ 004611bc sitobren.obj - 0004:000021f8 ??_C@_0O@JPCA@Invalid?5range?$AA@ 004611f8 sitobren.obj - 0004:00002208 ??_C@_01HMO@?$CC?$AA@ 00461208 sitobren.obj - 0004:0000220c ??_C@_02MECO@?$CFd?$AA@ 0046120c sitobren.obj - 0004:00002210 ??_C@_07NOMF@?$CFd?4?$CF05d?$AA@ 00461210 sitobren.obj - 0004:00002218 ??_C@_0BD@PBAL@?$CFs?$CI?$CFld?$CJ?5?3?5warning?6?$AA@ 00461218 sitobren.obj - 0004:0000222c ??_C@_0N@FPKC@Warning?3?5?$CFs?6?$AA@ 0046122c sitobren.obj - 0004:0000223c ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 0046123c sitobren.obj - 0004:0000224c ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 0046124c sitobren.obj - 0004:0000225c ??_C@_05LCJC@?$CF08lx?$AA@ 0046125c sitobren.obj - 0004:00002264 ??_C@_04JGFO@?$CF04x?$AA@ 00461264 sitobren.obj - 0004:0000226c ??_C@_04OBKB@?$CF02x?$AA@ 0046126c sitobren.obj - 0004:00002274 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 00461274 sitobren.obj - 0004:00002280 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 00461280 sitobren.obj - 0004:00002290 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 00461290 sitobren.obj - 0004:000022a0 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 004612a0 sitobren.obj - 0004:000022f4 _SI_SOFTIMAGE_NAME 004612f4 sysglob.obj - 0004:000022f8 _SI_actFrame 004612f8 sysglob.obj - 0004:000022fc _SI_actKeyfrm 004612fc sysglob.obj - 0004:00002300 _SI_actLoop 00461300 sysglob.obj - 0004:00002304 _SI_actorRsrc 00461304 sysglob.obj - 0004:00002308 _SI_addInDictionary 00461308 sysglob.obj - 0004:0000230c _SI_busyCursor 0046130c sysglob.obj - 0004:00002310 _SI_buttonLeft 00461310 sysglob.obj - 0004:00002314 _SI_buttonMiddle 00461314 sysglob.obj - 0004:00002318 _SI_buttonRight 00461318 sysglob.obj - 0004:0000231c _SI_canvasMask 0046131c sysglob.obj - 0004:00002320 _SI_colorSelect 00461320 sysglob.obj - 0004:00002324 _SI_coordx 00461324 sysglob.obj - 0004:00002328 _SI_coordy 00461328 sysglob.obj - 0004:0000232c _SI_currentLeftmouse 0046132c sysglob.obj - 0004:00002330 _SI_currentMiddlemouse 00461330 sysglob.obj - 0004:00002334 _SI_currentMsg 00461334 sysglob.obj - 0004:00002338 _SI_currentRightmouse 00461338 sysglob.obj - 0004:0000233c _SI_currentType 0046133c sysglob.obj - 0004:00002340 _SI_channelsCustom 00461340 sysglob.obj - 0004:00002344 _SI_characRsrc 00461344 sysglob.obj - 0004:00002348 _SI_dialogsOpen 00461348 sysglob.obj - 0004:0000234c _SI_doubleClickDelay 0046134c sysglob.obj - 0004:00002350 _SI_fastPlayBackActive 00461350 sysglob.obj - 0004:00002354 _SI_materialLib 00461354 sysglob.obj - 0004:00002358 _SI_matterRsrc 00461358 sysglob.obj - 0004:0000235c _SI_modelCustom 0046135c sysglob.obj - 0004:00002360 _SI_modelRsrc 00461360 sysglob.obj - 0004:00002364 _SI_motionCustom 00461364 sysglob.obj - 0004:00002368 _SI_motionRsrc 00461368 sysglob.obj - 0004:0000236c _SI_noticeRsrc 0046136c sysglob.obj - 0004:00002370 _SI_objectPath 00461370 sysglob.obj - 0004:00002374 _SI_oldMsg 00461374 sysglob.obj - 0004:00002378 _SI_oldType 00461378 sysglob.obj - 0004:0000237c _SI_operSys 0046137c sysglob.obj - 0004:00002380 _SI_paletteLib 00461380 sysglob.obj - 0004:00002384 _SI_picturePath 00461384 sysglob.obj - 0004:00002388 _SI_rgbActive 00461388 sysglob.obj - 0004:0000238c _SI_reflectMatter 0046138c sysglob.obj - 0004:00002390 _SI_saveCurrGeom 00461390 sysglob.obj - 0004:00002394 _SI_saveTriMesh 00461394 sysglob.obj - 0004:00002398 _SI_shwNul 00461398 sysglob.obj - 0004:0000239c _SI_shwPrj 0046139c sysglob.obj - 0004:000023a0 _SI_shwSup 004613a0 sysglob.obj - 0004:000023a4 _SI_shwTxt 004613a4 sysglob.obj - 0004:000023a8 _SI_rightHand 004613a8 sysglob.obj - 0004:000023ac _SI_versionInput 004613ac sysglob.obj - 0004:000023b0 _SI_versionOutput 004613b0 sysglob.obj - 0004:000023b4 _SI_tabletActive 004613b4 sysglob.obj - 0004:000023b8 _SI_tabletName 004613b8 sysglob.obj - 0004:000023bc _SI_standaloneRenderer 004613bc sysglob.obj - 0004:000023c0 _SI_supraMode 004613c0 sysglob.obj - 0004:000023c4 _SI_systemNbdial 004613c4 sysglob.obj - 0004:000023c8 _SI_sysid 004613c8 sysglob.obj - 0004:000023cc _SI_setupRsrc 004613cc sysglob.obj - 0004:000023d0 _SI_userPrefKeysRsrc 004613d0 sysglob.obj - 0004:000023d4 _SI_textureLib 004613d4 sysglob.obj - 0004:000023d8 _SI_texturePath 004613d8 sysglob.obj - 0004:000023dc _SI_toolsRsrc 004613dc sysglob.obj - 0004:000023e0 _SI_uniqueNameFlag 004613e0 sysglob.obj - 0004:000023e4 _SI_windowsRsrc 004613e4 sysglob.obj - 0004:000023e8 _SI_zoomONCursor 004613e8 sysglob.obj - 0004:000023ec _SI_abekasRsrc 004613ec sysglob.obj - 0004:000023f0 _SI_accomRsrc 004613f0 sysglob.obj - 0004:000023f4 _SI_active 004613f4 sysglob.obj - 0004:000023f8 _SI_colorRsrc 004613f8 sysglob.obj - 0004:000023fc _SI_gl 004613fc sysglob.obj - 0004:00002400 _SI_hrchCpst 00461400 sysglob.obj - 0004:00002404 _SI_pDbLib 00461404 sysglob.obj - 0004:00002408 _SI_prevDo2D 00461408 sysglob.obj - 0004:0000240c _SI_prevDo3D 0046140c sysglob.obj - 0004:00002410 _SI_prevDoMaterial 00461410 sysglob.obj - 0004:00002414 _SI_prevDoReflect 00461414 sysglob.obj - 0004:00002418 _SI_prevDoRefract 00461418 sysglob.obj - 0004:0000241c _SI_prevDoShadow 0046141c sysglob.obj - 0004:00002420 _SI_prevXres 00461420 sysglob.obj - 0004:00002424 _SI_prevYres 00461424 sysglob.obj - 0004:00002428 _SI_rgbmode 00461428 sysglob.obj - 0004:0000242c _SI_rsrcPath 0046142c sysglob.obj - 0004:00002430 _SI_tabletButton 00461430 sysglob.obj - 0004:00002434 _SI_softFont 00461434 sysglob.obj - 0004:00002438 _SI_softFont15 00461438 sysglob.obj - 0004:0000243c _SI_tabletRsrc 0046143c sysglob.obj - 0004:00002440 _SI_shwAer 00461440 sysglob.obj - 0004:00002444 _SI_shwAss 00461444 sysglob.obj - 0004:00002448 _SI_shwCnt 00461448 sysglob.obj - 0004:0000244c _SI_shwCon 0046144c sysglob.obj - 0004:00002450 _SI_shwConUns 00461450 sysglob.obj - 0004:00002454 _SI_shwCtl 00461454 sysglob.obj - 0004:00002458 _SI_shwDircns 00461458 sysglob.obj - 0004:0000245c _SI_shwEdg 0046145c sysglob.obj - 0004:00002460 _SI_shwInfl 00461460 sysglob.obj - 0004:00002464 _SI_shwLat 00461464 sysglob.obj - 0004:00002468 _SI_shwLin 00461468 sysglob.obj - 0004:0000246c _SI_shwLinUns 0046146c sysglob.obj - 0004:00002470 _SI_shwLnk 00461470 sysglob.obj - 0004:00002474 _SI_shwNrm 00461474 sysglob.obj - 0004:00002478 _SI_shwPnt 00461478 sysglob.obj - 0004:0000247c _SI_shwPntUns 0046147c sysglob.obj - 0004:00002480 _SI_shwPol 00461480 sysglob.obj - 0004:00002484 _SI_shwSke 00461484 sysglob.obj - 0004:00002488 _SI_shwSrf 00461488 sysglob.obj - 0004:0000248c _SI_shwTag 0046148c sysglob.obj - 0004:00002490 _SI_shwTagUns 00461490 sysglob.obj - 0004:00002494 _SI_gotcha 00461494 sysglob.obj - 0004:00002498 _SI_fastMeta 00461498 sysglob.obj - 0004:0000249c _SI_fastIntenv 0046149c sysglob.obj - 0004:000024a0 _SI_interactive 004614a0 sysglob.obj - 0004:000024a8 _SI_fmtAspect 004614a8 sysglob.obj - 0004:000024e8 _SI_fmtName 004614e8 sysglob.obj - 0004:00002524 _SI_historyActive 00461524 sysglob.obj - 0004:00002528 ??_C@_0M@KED@Custom?5size?$AA@ 00461528 sysglob.obj - 0004:00002534 ??_C@_0O@NGGI@Custom?5aspect?$AA@ 00461534 sysglob.obj - 0004:00002544 ??_C@_05DGFE@4?5X?55?$AA@ 00461544 sysglob.obj - 0004:0000254c ??_C@_09PDKL@6cm?5X?59cm?$AA@ 0046154c sysglob.obj - 0004:00002558 ??_C@_09NNHP@6cm?5X?56cm?$AA@ 00461558 sysglob.obj - 0004:00002564 ??_C@_0L@EBCJ@Slide?535mm?$AA@ 00461564 sysglob.obj - 0004:00002570 ??_C@_04NKIB@HDTV?$AA@ 00461570 sysglob.obj - 0004:00002578 ??_C@_03EDOL@PAL?$AA@ 00461578 sysglob.obj - 0004:0000257c ??_C@_04OMOJ@NTSC?$AA@ 0046157c sysglob.obj - 0004:00002584 ??_C@_0N@DMCI@70mm?5OMNIMAX?$AA@ 00461584 sysglob.obj - 0004:00002594 ??_C@_09DEGD@70mm?5IMAX?$AA@ 00461594 sysglob.obj - 0004:000025a0 ??_C@_0BA@CEIK@70mm?5Panavision?$AA@ 004615a0 sysglob.obj - 0004:000025b0 ??_C@_0M@MHJL@35mm?51?485?11?$AA@ 004615b0 sysglob.obj - 0004:000025bc ??_C@_0M@MENM@35mm?51?466?11?$AA@ 004615bc sysglob.obj - 0004:000025c8 ??_C@_0M@CGNA@35mm?51?437?11?$AA@ 004615c8 sysglob.obj - 0004:000025d4 ??_C@_0N@PCKM@?1Tablet?4rsrc?$AA@ 004615d4 sysglob.obj - 0004:000025e4 ??_C@_0BB@LCHO@?1Softimage15?4fnt?$AA@ 004615e4 sysglob.obj - 0004:000025f8 ??_C@_0P@GJHD@?1Softimage?4fnt?$AA@ 004615f8 sysglob.obj - 0004:00002608 ??_C@_05ELEA@?2rsrc?$AA@ 00461608 sysglob.obj - 0004:00002610 ??_C@_0O@GAFP@?1Desktop?4rsrc?$AA@ 00461610 sysglob.obj - 0004:00002620 ??_C@_0M@NILP@?1Accom?4rsrc?$AA@ 00461620 sysglob.obj - 0004:0000262c ??_C@_0N@GPKB@?1Abekas?4rsrc?$AA@ 0046162c sysglob.obj - 0004:0000263c ??_C@_0O@KBDE@?1Windows?4rsrc?$AA@ 0046163c sysglob.obj - 0004:0000264c ??_C@_0M@BHIC@?1Tools?4rsrc?$AA@ 0046164c sysglob.obj - 0004:00002658 ??_C@_0L@OBIA@SIKeys?4sks?$AA@ 00461658 sysglob.obj - 0004:00002664 ??_C@_09FJOL@Setup?4sts?$AA@ 00461664 sysglob.obj - 0004:00002670 ??_C@_08FDFC@?1Reflect?$AA@ 00461670 sysglob.obj - 0004:0000267c ??_C@_0L@JDHA@?1Copyright?$AA@ 0046167c sysglob.obj - 0004:00002688 ??_C@_0N@IOFN@?1Motion?4rsrc?$AA@ 00461688 sysglob.obj - 0004:00002698 ??_C@_0BN@GNLN@?1usr?1softimage?1custom?1motion?$AA@ 00461698 sysglob.obj - 0004:000026b8 ??_C@_0M@MGCK@?1Model?4rsrc?$AA@ 004616b8 sysglob.obj - 0004:000026c4 ??_C@_0BM@GGOC@?1usr?1softimage?1custom?1model?$AA@ 004616c4 sysglob.obj - 0004:000026e0 ??_C@_0N@PDMO@?1Matter?4rsrc?$AA@ 004616e0 sysglob.obj - 0004:000026f0 ??_C@_0BA@NMIA@?1Character?4rsrc?$AA@ 004616f0 sysglob.obj - 0004:00002700 ??_C@_0BO@LKKE@?1usr?1softimage?1chnlDriver?1bin?$AA@ 00461700 sysglob.obj - 0004:00002720 ??_C@_0M@LNPM@?1Actor?4rsrc?$AA@ 00461720 sysglob.obj - 0004:0000272c ??_C@_0N@OBIP@SOFTIMAGE?53D?$AA@ 0046172c sysglob.obj - 0004:00002760 ?vpcodmUtil@@3PAVCODM@@A 00461760 utilglob.obj - 0004:00002764 ?vpusac@@3PAVUSAC@@A 00461764 utilglob.obj - 0004:000027a4 ?vcactSuspendAssertValid@@3JA 004617a4 base.obj - 0004:000027a8 ?vcactAVSave@@3JA 004617a8 base.obj - 0004:000027ac ?vcactAV@@3JA 004617ac base.obj - 0004:000027b0 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 004617b0 base.obj - 0004:000027c8 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 004617c8 base.obj - 0004:000027e0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004617e0 base.obj - 0004:000027f0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004617f0 base.obj - 0004:00002804 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 00461804 base.obj - 0004:00002820 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 00461820 base.obj - 0004:00002834 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 00461834 base.obj - 0004:0000284c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0046184c base.obj - 0004:00002860 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 00461860 base.obj - 0004:0000287c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0046187c base.obj - 0004:0000289c ??_C@_0DL@HKA@?6Lost?5object?3?5cls?$DN?8?$CFf?8?0?5size?$DN?$CFd?0@ 0046189c base.obj - 0004:000028d8 ??_C@_0DE@ELAM@Total?5lost?5objects?3?5?$CFd?4?5Press?5?8D@ 004618d8 base.obj - 0004:0000290c ??_C@_0BH@KF@Raw?5list?5is?5not?5empty?$CB?$AA@ 0046190c base.obj - 0004:00002924 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 00461924 base.obj - 0004:00002934 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00461934 base.obj - 0004:00002944 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00461944 base.obj - 0004:00002978 ??_C@_0P@NKO@blocks?5overlap?$AA@ 00461978 utilcopy.obj - 0004:000029a8 ?vpers@@3PAVERS@@A 004619a8 utilerro.obj - 0004:000029ac ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004619ac utilerro.obj - 0004:000029d4 ??_C@_08GEE@Error?5?$CFd?$AA@ 004619d4 utilerro.obj - 0004:00002a00 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 00461a00 utilint.obj - 0004:00002a10 ??_C@_084overflow?$AA@ 00461a10 utilint.obj - 0004:00002a1c ??_C@_0N@INPL@long?5too?5big?$AA@ 00461a1c utilint.obj - 0004:00002a2c ??_C@_0P@DFPA@long?5too?5small?$AA@ 00461a2c utilint.obj - 0004:00002a3c ??_C@_09MGFD@wrong?5bom?$AA@ 00461a3c utilint.obj - 0004:00002a48 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 00461a48 utilint.obj - 0004:00002a90 ?vpfnlib@@3P6GJJJ@ZA 00461a90 utilmem.obj - 0004:00002a94 ?_fInLiberator@@3HA 00461a94 utilmem.obj - 0004:00002a98 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 00461a98 utilmem.obj - 0004:00002abc ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 00461abc utilmem.obj - 0004:00002ad4 ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 00461ad4 utilmem.obj - 0004:00002afc ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 00461afc utilmem.obj - 0004:00002b20 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 00461b20 utilmem.obj - 0004:00002b40 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00461b40 utilmem.obj - 0004:00002b54 ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 00461b54 utilmem.obj - 0004:00002b68 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 00461b68 utilmem.obj - 0004:00002b7c ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 00461b7c utilmem.obj - 0004:00002b90 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 00461b90 utilmem.obj - 0004:00002ba8 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 00461ba8 utilmem.obj - 0004:00002bbc ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 00461bbc utilmem.obj - 0004:00002bcc ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 00461bcc utilmem.obj - 0004:00002be0 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 00461be0 utilmem.obj - 0004:00002bfc ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 00461bfc utilmem.obj - 0004:00002c10 ??_C@_08ECDH@wrong?5cb?$AA@ 00461c10 utilmem.obj - 0004:00002c1c ??_C@_06BHIL@nil?5pv?$AA@ 00461c1c utilmem.obj - 0004:00002c24 ??_C@_0DA@JKM@?6Lost?5block?3?5size?$DN?$CFd?0?5StackTrace@ 00461c24 utilmem.obj - 0004:00002c78 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 00461c78 utilrnd.obj - 0004:00002c94 ??_C@_0L@LEMP@_clw?5wrong?$AA@ 00461c94 utilrnd.obj - 0004:00002ca0 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 00461ca0 utilrnd.obj - 0004:00002cb0 ??_C@_0L@DINP@wrong?5_clw?$AA@ 00461cb0 utilrnd.obj - 0004:00002de0 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 00461de0 utilstr.obj - 0004:00002e08 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 00461e08 utilstr.obj - 0004:00002e30 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 00461e30 utilstr.obj - 0004:00002e40 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 00461e40 utilstr.obj - 0004:00002e54 ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 00461e54 utilstr.obj - 0004:00002e70 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 00461e70 utilstr.obj - 0004:00002e8c ??_C@_0M@PFFO@sz?5too?5long?$AA@ 00461e8c utilstr.obj - 0004:00002e98 ??_C@_07NPFI@bad?5osk?$AA@ 00461e98 utilstr.obj - 0004:00002ec0 ?vcactSuspendCheckPointers@@3JA 00461ec0 memwin.obj - 0004:00002ec4 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 00461ec4 memwin.obj - 0004:00002ed8 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 00461ed8 memwin.obj - 0004:00002eec ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 00461eec memwin.obj - 0004:00002f04 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 00461f04 memwin.obj - 0004:00002f14 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 00461f14 memwin.obj - 0004:00002f38 ??_C@_09BABB@hq?5is?5nil?$AA@ 00461f38 memwin.obj - 0004:00002f44 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 00461f44 memwin.obj - 0004:00002f80 ?_rtiLast@CFL@@0JA 00461f80 chunk.obj - 0004:00002f84 ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 00461f84 chunk.obj - 0004:00002fa0 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 00461fa0 chunk.obj - 0004:00002fc0 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 00461fc0 chunk.obj - 0004:00002fd8 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 00461fd8 chunk.obj - 0004:00002ffc ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 00461ffc chunk.obj - 0004:00003010 ??_C@_08EHFM@Bad?5RTIE?$AA@ 00462010 chunk.obj - 0004:0000301c ??_C@_09HBDJ@bad?5index?$AA@ 0046201c chunk.obj - 0004:00003028 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 00462028 chunk.obj - 0004:00003048 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 00462048 chunk.obj - 0004:0000305c ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 0046205c chunk.obj - 0004:0000306c ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 0046206c chunk.obj - 0004:0000307c ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 0046207c chunk.obj - 0004:00003098 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 00462098 chunk.obj - 0004:000030b4 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 004620b4 chunk.obj - 0004:000030cc ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 004620cc chunk.obj - 0004:000030f0 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 004620f0 chunk.obj - 0004:0000310c ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 0046210c chunk.obj - 0004:00003120 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 00462120 chunk.obj - 0004:00003134 ??_C@_06CFJE@bad?5fp?$AA@ 00462134 chunk.obj - 0004:0000313c ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 0046213c chunk.obj - 0004:00003150 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 00462150 chunk.obj - 0004:00003160 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 00462160 chunk.obj - 0004:0000316c ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 0046216c chunk.obj - 0004:00003190 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 00462190 chunk.obj - 0004:000031a8 ??_C@_0M@INOI@corrupt?5crp?$AA@ 004621a8 chunk.obj - 0004:000031b4 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 004621b4 chunk.obj - 0004:000031d4 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 004621d4 chunk.obj - 0004:000031ec ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 004621ec chunk.obj - 0004:00003204 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 00462204 chunk.obj - 0004:0000321c ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 0046221c chunk.obj - 0004:00003234 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 00462234 chunk.obj - 0004:00003244 ??_C@_07NFMH@overlap?$AA@ 00462244 chunk.obj - 0004:0000324c ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 0046224c chunk.obj - 0004:00003258 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 00462258 chunk.obj - 0004:00003280 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 00462280 chunk.obj - 0004:0000328c ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 0046228c chunk.obj - 0004:00003298 ??_C@_06JFMK@bad?5cb?$AA@ 00462298 chunk.obj - 0004:000032a0 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 004622a0 chunk.obj - 0004:000032b0 ??_C@_07BDGM@bad?5crp?$AA@ 004622b0 chunk.obj - 0004:000032b8 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 004622b8 chunk.obj - 0004:000032e8 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 004622e8 codec.obj - 0004:00003308 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 00462308 codec.obj - 0004:00003320 ??_C@_08DJLA@nil?5cfmt?$AA@ 00462320 codec.obj - 0004:0000332c ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 0046232c codec.obj - 0004:0000334c ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 0046234c codec.obj - 0004:00003388 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00462388 codkauai.obj - 0004:000033ac ??_C@_07DEPO@bad?5len?$AA@ 004623ac codkauai.obj - 0004:000033b4 ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 004623b4 codkauai.obj - 0004:000033c4 ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 004623c4 codkauai.obj - 0004:000033e8 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 004623e8 codkauai.obj - 0004:000033fc ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 004623fc codkauai.obj - 0004:00003410 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 00462410 codkauai.obj - 0004:0000342c ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 0046242c codkauai.obj - 0004:0000345c ??_C@_0P@KAFA@still?5attached?$AA@ 0046245c crf.obj - 0004:0000346c ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 0046246c crf.obj - 0004:00003480 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 00462480 crf.obj - 0004:0000349c ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 0046249c crf.obj - 0004:000034bc ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 004624bc crf.obj - 0004:000034d8 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 004624d8 crf.obj - 0004:000034f4 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 004624f4 crf.obj - 0004:0000352c ?vftgCreator@FIL@@2JA 0046252c file.obj - 0004:00003530 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00462530 file.obj - 0004:00003544 ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 00462544 file.obj - 0004:00003558 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 00462558 file.obj - 0004:0000356c ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 0046256c file.obj - 0004:00003584 ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 00462584 file.obj - 0004:0000359c ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 0046259c file.obj - 0004:000035b4 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 004625b4 file.obj - 0004:000035cc ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 004625cc file.obj - 0004:000035e0 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 004625e0 file.obj - 0004:000035f8 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 004625f8 file.obj - 0004:0000360c ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 0046260c file.obj - 0004:00003620 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 00462620 file.obj - 0004:00003634 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 00462634 file.obj - 0004:00003650 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 00462650 file.obj - 0004:00003668 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 00462668 file.obj - 0004:00003684 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 00462684 file.obj - 0004:000036a4 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 004626a4 file.obj - 0004:000036e8 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 004626e8 filewin.obj - 0004:00003704 ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 00462704 filewin.obj - 0004:00003720 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 00462720 filewin.obj - 0004:00003740 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 00462740 filewin.obj - 0004:00003770 ?vftgTemp@@3JA 00462770 fniwin.obj - 0004:00003778 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00462778 fniwin.obj - 0004:00003784 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 00462784 fniwin.obj - 0004:0000379c ??_C@_07JFJJ@Bad?5FTG?$AA@ 0046279c fniwin.obj - 0004:000037a4 ??_C@_07NLCI@bad?5fni?$AA@ 004627a4 fniwin.obj - 0004:000037ac ??_C@_0BC@IKJG@expected?5filename?$AA@ 004627ac fniwin.obj - 0004:000037c0 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 004627c0 fniwin.obj - 0004:000037d0 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 004627d0 fniwin.obj - 0004:000037e4 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 004627e4 fniwin.obj - 0004:000037fc ??_C@_0P@EFJD@unexpected?5dir?$AA@ 004627fc fniwin.obj - 0004:0000380c ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 0046280c fniwin.obj - 0004:0000381c ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 0046281c fniwin.obj - 0004:00003850 ??_C@_0P@JECG@negative?5sizes?$AA@ 00462850 groups.obj - 0004:00003860 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00462860 groups.obj - 0004:00003870 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00462870 groups.obj - 0004:00003884 ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 00462884 groups.obj - 0004:00003898 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00462898 groups.obj - 0004:000038b4 ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 004628b4 groups.obj - 0004:000038d0 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 004628d0 groups.obj - 0004:000038e8 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 004628e8 groups.obj - 0004:00003910 ??_C@_08OO@wrong?5bo?$AA@ 00462910 groups.obj - 0004:0000391c ??_C@_06NHBD@bad?5bo?$AA@ 0046291c groups.obj - 0004:00003924 ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 00462924 groups.obj - 0004:00003940 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 00462940 groups.obj - 0004:0000396c ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 0046296c groups.obj - 0004:00003988 ??_C@_07PIIM@bad?5loc?$AA@ 00462988 groups.obj - 0004:00003990 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 00462990 groups.obj - 0004:000039b4 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004629b4 groups.obj - 0004:000039d4 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004629d4 groups.obj - 0004:000039f4 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 004629f4 groups.obj - 0004:00003a04 ??_C@_05HCAE@oops?$CB?$AA@ 00462a04 groups.obj - 0004:00003a0c ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 00462a0c groups.obj - 0004:00003a28 ??_C@_05JLFG@what?$DP?$AA@ 00462a28 groups.obj - 0004:00003a30 ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 00462a30 groups.obj - 0004:00003a68 ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 00462a68 groups.obj - 0004:00003a84 ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 00462a84 groups.obj - 0004:00003a9c ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 00462a9c groups.obj - 0004:00003ac0 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 00462ac0 groups.obj - 0004:00003ad0 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 00462ad0 groups.obj - 0004:00003ae4 ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 00462ae4 groups.obj - 0004:00003afc ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 00462afc groups.obj - 0004:00003b24 ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 00462b24 groups.obj - 0004:00003b38 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 00462b38 groups.obj - 0004:00003b4c ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 00462b4c groups.obj - 0004:00003b60 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 00462b60 groups.obj - 0004:00003b78 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 00462b78 groups.obj - 0004:00003b90 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 00462b90 groups.obj - 0004:00003ba8 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 00462ba8 groups.obj - 0004:00003be0 ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 00462be0 groups2.obj - 0004:00003c0c ??_C@_05OIIM@?7PACK?$AA@ 00462c0c chse.obj - 0004:00003c14 ??_C@_0BA@MOLF@CHUNK?$CI?8?$CFf?8?0?5?$CFd?$CJ?$AA@ 00462c14 chse.obj - 0004:00003c24 ??_C@_0BG@FJJK@CHUNK?$CI?8?$CFf?8?0?5?$CFd?0?5?$CC?$CFs?$CC?$CJ?$AA@ 00462c24 chse.obj - 0004:00003c3c ??_C@_0BF@OHOP@PARENT?$CI?8?$CFf?8?0?5?$CFd?0?5?$CFd?$CJ?$AA@ 00462c3c chse.obj - 0004:00003c54 ??_C@_0BI@KEEE@BITMAP?$CI?$CFd?0?5?$CFd?0?5?$CFd?$CJ?5?$CC?$CFs?$CC?$AA@ 00462c54 chse.obj - 0004:00003c6c ??_C@_09EIEE@FILE?5?$CC?$CFs?$CC?$AA@ 00462c6c chse.obj - 0004:00003c78 ??_C@_0BA@FJIA@PACKEDFILE?5?$CC?$CFs?$CC?$AA@ 00462c78 chse.obj - 0004:00003c88 ??_C@_02OGOH@?8?5?$AA@ 00462c88 chse.obj - 0004:00003c8c ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 00462c8c chse.obj - 0004:00003c94 ??_C@_07POOB@0x?$CF02x?5?$AA@ 00462c94 chse.obj - 0004:00003c9c ??_C@_05GLIP@?5?5?5?5?5?$AA@ 00462c9c chse.obj - 0004:00003ca4 ??_C@_05BME@?7ITEM?$AA@ 00462ca4 chse.obj - 0004:00003cac ??_C@_05GJCF@?7FREE?$AA@ 00462cac chse.obj - 0004:00003cb4 ??_C@_07DGD@?7GL?$CI?$CFd?$CJ?$AA@ 00462cb4 chse.obj - 0004:00003cbc ??_C@_07HOKD@?7AL?$CI?$CFd?$CJ?$AA@ 00462cbc chse.obj - 0004:00003cc4 ??_C@_0BE@CFD@neither?5a?5GL?5or?5AL?$CB?$AA@ 00462cc4 chse.obj - 0004:00003cd8 ??_C@_04KCOE@?7VAR?$AA@ 00462cd8 chse.obj - 0004:00003ce0 ??_C@_07OCCG@?7GG?$CI?$CFd?$CJ?$AA@ 00462ce0 chse.obj - 0004:00003ce8 ??_C@_07JPOG@?7AG?$CI?$CFd?$CJ?$AA@ 00462ce8 chse.obj - 0004:00003cf0 ??_C@_0BE@BFPP@neither?5a?5GG?5or?5AG?$CB?$AA@ 00462cf0 chse.obj - 0004:00003d28 ?_pszOom@@3PADA 00462d28 scrcom.obj - 0004:00003d2c ?_pszSyntax@@3PADA 00462d2c scrcom.obj - 0004:00003d30 ?_rgszop@@3QAUSZOP@@A 00462d30 scrcom.obj - 0004:00003f10 ?_rgarop@@3QAUAROP@@A 00462f10 scrcom.obj - 0004:00004180 ?_rgpszKey@@3QAPADA 00463180 scrcom.obj - 0004:000041a0 ?_rgtomeExp@@3QAUTOME@@A 004631a0 scrcom.obj - 0004:00004400 ?_rgtomeOp@@3QAUTOME@@A 00463400 scrcom.obj - 0004:000044c4 ??_C@_08HOLA@Continue?$AA@ 004634c4 scrcom.obj - 0004:000044d0 ??_C@_05EABD@Break?$AA@ 004634d0 scrcom.obj - 0004:000044d8 ??_C@_05NNJC@While?$AA@ 004634d8 scrcom.obj - 0004:000044e0 ??_C@_03HPMG@End?$AA@ 004634e0 scrcom.obj - 0004:000044e4 ??_C@_04CCEF@Else?$AA@ 004634e4 scrcom.obj - 0004:000044ec ??_C@_04CPFE@Elif?$AA@ 004634ec scrcom.obj - 0004:000044f4 ??_C@_02BAJ@If?$AA@ 004634f4 scrcom.obj - 0004:000044f8 ??_C@_04POBJ@Goto?$AA@ 004634f8 scrcom.obj - 0004:00004500 ??_C@_06GDJA@IfGoto?$AA@ 00463500 scrcom.obj - 0004:00004508 ??_C@_0L@KPKB@CopySubStr?$AA@ 00463508 scrcom.obj - 0004:00004514 ??_C@_06KDAM@LenStr?$AA@ 00463514 scrcom.obj - 0004:0000451c ??_C@_0L@ICIJ@ConcatStrs?$AA@ 0046351c scrcom.obj - 0004:00004528 ??_C@_08HOLI@StrToNum?$AA@ 00463528 scrcom.obj - 0004:00004534 ??_C@_08PBFD@NumToStr?$AA@ 00463534 scrcom.obj - 0004:00004540 ??_C@_09JFKG@ScaleTime?$AA@ 00463540 scrcom.obj - 0004:0000454c ??_C@_09KOLA@MergeStrs?$AA@ 0046354c scrcom.obj - 0004:00004558 ??_C@_07MHIA@NukeStr?$AA@ 00463558 scrcom.obj - 0004:00004560 ??_C@_07ELLC@MoveStr?$AA@ 00463560 scrcom.obj - 0004:00004568 ??_C@_07PCEE@CopyStr?$AA@ 00463568 scrcom.obj - 0004:00004570 ??_C@_05PFIH@Pause?$AA@ 00463570 scrcom.obj - 0004:00004578 ??_C@_05LKIE@Match?$AA@ 00463578 scrcom.obj - 0004:00004580 ??_C@_08HGHE@NextCard?$AA@ 00463580 scrcom.obj - 0004:0000458c ??_C@_0M@GGGO@ShuffleList?$AA@ 0046358c scrcom.obj - 0004:00004598 ??_C@_07MFK@Shuffle?$AA@ 00463598 scrcom.obj - 0004:000045a0 ??_C@_09CAHB@SetReturn?$AA@ 004635a0 scrcom.obj - 0004:000045ac ??_C@_06JCBD@Return?$AA@ 004635ac scrcom.obj - 0004:000045b4 ??_C@_04LKDK@Exit?$AA@ 004635b4 scrcom.obj - 0004:000045bc ??_C@_02DNIN@Go?$AA@ 004635bc scrcom.obj - 0004:000045c0 ??_C@_04HAFI@GoNz?$AA@ 004635c0 scrcom.obj - 0004:000045c8 ??_C@_03JNBL@GoZ?$AA@ 004635c8 scrcom.obj - 0004:000045cc ??_C@_04PFCA@GoLe?$AA@ 004635cc scrcom.obj - 0004:000045d4 ??_C@_04HLIL@GoGe?$AA@ 004635d4 scrcom.obj - 0004:000045dc ??_C@_04PGMH@GoLt?$AA@ 004635dc scrcom.obj - 0004:000045e4 ??_C@_04HIGM@GoGt?$AA@ 004635e4 scrcom.obj - 0004:000045ec ??_C@_04NIHF@GoNe?$AA@ 004635ec scrcom.obj - 0004:000045f4 ??_C@_04FFPC@GoEq?$AA@ 004635f4 scrcom.obj - 0004:000045fc ??_C@_06ININ@Select?$AA@ 004635fc scrcom.obj - 0004:00004604 ??_C@_07KEJC@RndList?$AA@ 00463604 scrcom.obj - 0004:0000460c ??_C@_07OONJ@PopList?$AA@ 0046360c scrcom.obj - 0004:00004614 ??_C@_07GBJG@DupList?$AA@ 00463614 scrcom.obj - 0004:0000461c ??_C@_03JCDI@Rev?$AA@ 0046361c scrcom.obj - 0004:00004620 ??_C@_03FPBH@Rot?$AA@ 00463620 scrcom.obj - 0004:00004624 ??_C@_04BCL@Swap?$AA@ 00463624 scrcom.obj - 0004:0000462c ??_C@_03FBGG@Pop?$AA@ 0046362c scrcom.obj - 0004:00004630 ??_C@_03MKPO@Dup?$AA@ 00463630 scrcom.obj - 0004:00004634 ??_C@_02LCLA@Le?$AA@ 00463634 scrcom.obj - 0004:00004638 ??_C@_02DMBL@Ge?$AA@ 00463638 scrcom.obj - 0004:0000463c ??_C@_02LBFH@Lt?$AA@ 0046363c scrcom.obj - 0004:00004640 ??_C@_02DPPM@Gt?$AA@ 00463640 scrcom.obj - 0004:00004644 ??_C@_02JPOF@Ne?$AA@ 00463644 scrcom.obj - 0004:00004648 ??_C@_02BCGC@Eq?$AA@ 00463648 scrcom.obj - 0004:0000464c ??_C@_04ENMP@LNot?$AA@ 0046364c scrcom.obj - 0004:00004654 ??_C@_04HPKA@LXor?$AA@ 00463654 scrcom.obj - 0004:0000465c ??_C@_04LILD@BNot?$AA@ 0046365c scrcom.obj - 0004:00004664 ??_C@_04IKNM@BXor?$AA@ 00463664 scrcom.obj - 0004:0000466c ??_C@_03FEFN@BOr?$AA@ 0046366c scrcom.obj - 0004:00004670 ??_C@_04CJLN@BAnd?$AA@ 00463670 scrcom.obj - 0004:00004678 ??_C@_06NIPH@MulDiv?$AA@ 00463678 scrcom.obj - 0004:00004680 ??_C@_03OAMN@Rnd?$AA@ 00463680 scrcom.obj - 0004:00004684 ??_C@_03PGJO@Dec?$AA@ 00463684 scrcom.obj - 0004:00004688 ??_C@_03PCMM@Inc?$AA@ 00463688 scrcom.obj - 0004:0000468c ??_C@_03GIFK@Neg?$AA@ 0046368c scrcom.obj - 0004:00004690 ??_C@_03CEPH@Abs?$AA@ 00463690 scrcom.obj - 0004:00004694 ??_C@_03PJNJ@Mod?$AA@ 00463694 scrcom.obj - 0004:00004698 ??_C@_03LANL@Div?$AA@ 00463698 scrcom.obj - 0004:0000469c ??_C@_03FPMJ@Mul?$AA@ 0046369c scrcom.obj - 0004:000046a0 ??_C@_03KJKL@Sub?$AA@ 004636a0 scrcom.obj - 0004:000046a4 ??_C@_03KPJN@Add?$AA@ 004636a4 scrcom.obj - 0004:000046a8 ??_C@_0N@GABD@Syntax?5error?$AA@ 004636a8 scrcom.obj - 0004:000046b8 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 004636b8 scrcom.obj - 0004:000046e8 ?_szPoundLine@@3QADA 004636e8 lex.obj - 0004:000046f0 ?_mpchgrfct@LEXB@@1QAGA 004636f0 lex.obj - 0004:000047f0 ?_rgtt@@3QAFA 004637f0 lex.obj - 0004:000048b0 ?_rgttDouble@@3QAFA 004638b0 lex.obj - 0004:00004960 ?_rgttEqual@@3QAFA 00463960 lex.obj - 0004:00004a18 ??_C@_0CO@JMMM@exactly?5one?5of?5_pfil?0?5_pbsf?5shou@ 00463a18 lex.obj - 0004:00004a48 ??_C@_0CM@JMP@Error?5reading?5file?0?5truncating?5l@ 00463a48 lex.obj - 0004:00004a74 ??_C@_0BA@EJHI@bad?5table?5entry?$AA@ 00463a74 lex.obj - 0004:00004a84 ??_C@_09HHAD@bad?5grfct?$AA@ 00463a84 lex.obj - 0004:00004a90 ??_C@_0BD@GOAE@how?8d?5we?5get?5here?$DP?$AA@ 00463a90 lex.obj - 0004:00004ac8 ??_C@_09PGGB@why?5fail?$DP?$AA@ 00463ac8 stream.obj - 0004:00004ad4 ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 00463ad4 stream.obj - 0004:00004aec ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 00463aec stream.obj - 0004:00004af8 ??_C@_08NKDG@wrong?5ib?$AA@ 00463af8 stream.obj - 0004:00004b04 ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 00463b04 stream.obj - 0004:00004b20 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 00463b20 stream.obj - 0004:00004b38 ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 00463b38 stream.obj - 0004:00004b54 ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 00463b54 stream.obj - 0004:00004b68 ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 00463b68 stream.obj - 0004:00004b74 ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 00463b74 stream.obj - 0004:00004b8c ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 00463b8c stream.obj - 0004:00004ba0 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 00463ba0 stream.obj - 0004:00004bec ??_C@_0BJ@GIGP@compressed?5bitmap?5is?5bad?$AA@ 00463bec mbmp.obj - 0004:00004c08 ??_C@_0BG@EIAF@palette?5is?5wrong?5size?$AA@ 00463c08 mbmp.obj - 0004:00004c20 ??_C@_0BH@FEMH@Bitmap?5data?5wrong?5size?$AA@ 00463c20 mbmp.obj - 0004:00004c38 ??_C@_0BH@DGGF@Empty?5bitmap?5rectangle?$AA@ 00463c38 mbmp.obj - 0004:00004c50 ??_C@_0DE@EEJE@bad?5compression?5type?5or?5bitmap?5f@ 00463c50 mbmp.obj - 0004:00004c84 ??_C@_0BE@GKKF@not?5an?58?9bit?5bitmap?$AA@ 00463c84 mbmp.obj - 0004:00004c98 ??_C@_0BA@NOIG@bad?5bitmap?5file?$AA@ 00463c98 mbmp.obj - 0004:00004ce4 ??_C@_0BE@FBBG@Ensured?5by?5creation?$AA@ 00463ce4 bren:tmap.obj - 0004:00004cf8 ??_C@_0BA@KAAN@bitmap?5too?5high?$AA@ 00463cf8 bren:tmap.obj - 0004:00004d08 ??_C@_0BA@EKIO@bitmap?5too?5wide?$AA@ 00463d08 bren:tmap.obj - 0004:00004d18 ??_C@_0CE@DJE@writing?5to?5destination?5file?5fail@ 00463d18 bren:tmap.obj - 0004:00004d3c ??_C@_0BE@PBHM@allocation?5failure?6?$AA@ 00463d3c bren:tmap.obj - 0004:00004d50 ??_C@_0CC@LHEJ@Couldn?8t?5create?5destination?5file@ 00463d50 bren:tmap.obj - 0004:00004f54 _sin_table 00463f54 brfwmxr:fixed386.obj - 0004:00004fd4 _cos_table 00463fd4 brfwmxr:fixed386.obj - 0004:000051d8 _arcsin_table 004641d8 brfwmxr:fixed386.obj - 0004:000053da _arccos_table 004643da brfwmxr:fixed386.obj - 0004:00005b47 __CombineTransforms 00464b47 brfwmxr:transfrm.obj - 0004:00005f8c __BrDefaultModel 00464f8c brfwmxr:def_mdl.obj - 0004:00006068 __BrMemoryDevice 00465068 brfwmxr:pmmemops.obj - 0004:00006084 __BrMemoryContext 00465084 brfwmxr:pmmemops.obj - 0004:00006190 __BrDefaultMaterial 00465190 brfwmxr:def_mat.obj - 0004:00006364 __reciprocal 00465364 brfwmxr:fixed.obj - 0004:00008370 __8087 00467370 brfwmxr:magicsym.obj - 0004:00008374 __init_387_emulator 00467374 brfwmxr:magicsym.obj - 0004:00008378 _fltused_ 00467378 brfwmxr:magicsym.obj - 0004:000083b0 __br_scratch_string 004673b0 brfwmxr:scrstr.obj - 0004:00008618 __FontFixed3x5 00467618 brfwmxr:fnt3x5.obj - 0004:00008c08 ??_C@_02JKAF@rb?$AA@ 00467c08 libdkit:tinyModel.obj - 0004:00008c0c ??_C@_06KAIG@?$CFs?4hrc?$AA@ 00467c0c libdkit:tinyModel.obj - 0004:00008c14 ??_C@_04DIGG@?4hrc?$AA@ 00467c14 libdkit:tinyModel.obj - 0004:00008c1c ??_C@_02NGAF@wb?$AA@ 00467c1c libdkit:tinyModel.obj - 0004:00008c20 ??_C@_05LHJL@model?$AA@ 00467c20 libdkit:tinyModel.obj - 0004:00008c28 ??_C@_01KCD@?$HN?$AA@ 00467c28 libdkit:tinyModel.obj - 0004:00008c2c ??_C@_08BPBJ@userData?$AA@ 00467c2c libdkit:tinyModel.obj - 0004:00008c38 ??_C@_08GOJE@init_trs?$AA@ 00467c38 libdkit:tinyModel.obj - 0004:00008c44 ??_C@_08EEPL@init_rot?$AA@ 00467c44 libdkit:tinyModel.obj - 0004:00008c50 ??_C@_08ENL@init_scl?$AA@ 00467c50 libdkit:tinyModel.obj - 0004:00008c5c ??_C@_0L@FHEJ@actor_data?$AA@ 00467c5c libdkit:tinyModel.obj - 0004:00008c68 ??_C@_09DCBJ@texture3D?$AA@ 00467c68 libdkit:tinyModel.obj - 0004:00008c74 ??_C@_07DIGL@texture?$AA@ 00467c74 libdkit:tinyModel.obj - 0004:00008c7c ??_C@_08HBI@material?$AA@ 00467c7c libdkit:tinyModel.obj - 0004:00008c88 ??_C@_0M@EDIO@DK_clusters?$AA@ 00467c88 libdkit:tinyModel.obj - 0004:00008c94 ??_C@_0O@NHJB@Nurbs_Surface?$AA@ 00467c94 libdkit:tinyModel.obj - 0004:00008ca4 ??_C@_0M@JGEL@Nurbs_Curve?$AA@ 00467ca4 libdkit:tinyModel.obj - 0004:00008cb0 ??_C@_0L@EPLJ@metasystem?$AA@ 00467cb0 libdkit:tinyModel.obj - 0004:00008cbc ??_C@_08BBL@metaball?$AA@ 00467cbc libdkit:tinyModel.obj - 0004:00008cc8 ??_C@_06DJDA@spline?$AA@ 00467cc8 libdkit:tinyModel.obj - 0004:00008cd0 ??_C@_0M@DLNF@NURBS_face?3?$AA@ 00467cd0 libdkit:tinyModel.obj - 0004:00008cdc ??_C@_04HKB@face?$AA@ 00467cdc libdkit:tinyModel.obj - 0004:00008ce4 ??_C@_05JNOB@patch?$AA@ 00467ce4 libdkit:tinyModel.obj - 0004:00008cec ??_C@_04DEEH@mesh?$AA@ 00467cec libdkit:tinyModel.obj - 0004:00008cf4 ??_C@_0M@FGBD@translation?$AA@ 00467cf4 libdkit:tinyModel.obj - 0004:00008d00 ??_C@_08GHGA@rotation?$AA@ 00467d00 libdkit:tinyModel.obj - 0004:00008d0c ??_C@_08JPAH@?$CFf?5?$CFf?5?$CFf?$AA@ 00467d0c libdkit:tinyModel.obj - 0004:00008d18 ??_C@_07HJFE@scaling?$AA@ 00467d18 libdkit:tinyModel.obj - 0004:00008d20 ??_C@_04OPJK@name?$AA@ 00467d20 libdkit:tinyModel.obj - 0004:00008d28 ??_C@_01PFFB@?$HL?$AA@ 00467d28 libdkit:tinyModel.obj - 0004:00008d2c ??_C@_06IJMB@HIDDEN?$AA@ 00467d2c libdkit:tinyModel.obj - 0004:00008d34 ??_C@_08INKF@CARDINAL?$AA@ 00467d34 libdkit:tinyModel.obj - 0004:00008d40 ??_C@_06OAFN@LINEAR?$AA@ 00467d40 libdkit:tinyModel.obj - 0004:00008d48 ??_C@_05CHMA@SHAPE?$AA@ 00467d48 libdkit:tinyModel.obj - 0004:00008d50 ??_C@_08OECI@SELECTED?$AA@ 00467d50 libdkit:tinyModel.obj - 0004:00008d78 ??_C@_08BFOP@CONSTANT?$AA@ 00467d78 libdkit:tinyFcurve.obj - 0004:00008dbc ??_C@_0BG@JBHJ@?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?$AA@ 00467dbc libdkit:tinyActor.obj - 0004:00008dd4 ??_C@_04ELBP@nail?$AA@ 00467dd4 libdkit:tinyActor.obj - 0004:00008ddc ??_C@_03BOLP@fan?$AA@ 00467ddc libdkit:tinyActor.obj - 0004:00008de0 ??_C@_04LEKE@wind?$AA@ 00467de0 libdkit:tinyActor.obj - 0004:00008de8 ??_C@_05BCBD@force?$AA@ 00467de8 libdkit:tinyActor.obj - 0004:00008df0 ??_C@_0BA@EHGK@default_gravity?$AA@ 00467df0 libdkit:tinyActor.obj - 0004:00008e00 ??_C@_07CAPN@gravity?$AA@ 00467e00 libdkit:tinyActor.obj - 0004:00008e08 ??_C@_0L@KBFB@chain_leaf?$AA@ 00467e08 libdkit:tinyActor.obj - 0004:00008e14 ??_C@_0L@LGB@chain_root?$AA@ 00467e14 libdkit:tinyActor.obj - 0004:00008e20 ??_C@_0BA@MCLC@dynamic_control?$AA@ 00467e20 libdkit:tinyActor.obj - 0004:00008e30 ??_C@_05COPL@joint?$AA@ 00467e30 libdkit:tinyActor.obj - 0004:00008e38 ??_C@_0BC@MENE@articulated_chain?$AA@ 00467e38 libdkit:tinyActor.obj - 0004:00008e4c ??_C@_0P@JKCH@ik_pref_angles?$AA@ 00467e4c libdkit:tinyActor.obj - 0004:00008e5c ??_C@_09OHCL@ik_nbjnts?$AA@ 00467e5c libdkit:tinyActor.obj - 0004:00008e68 ??_C@_07HAHE@ik_type?$AA@ 00467e68 libdkit:tinyActor.obj - 0004:00008e70 ??_C@_0CG@DBPM@invKinReadAscii?5?3?5Allocate?5faile@ 00467e70 libdkit:tinyActor.obj - 0004:00008e98 ??_C@_0M@EOBO@vert_weight?$AA@ 00467e98 libdkit:tinyActor.obj - 0004:00008ea4 ??_C@_0P@BEOI@vert_thickness?$AA@ 00467ea4 libdkit:tinyActor.obj - 0004:00008eb4 ??_C@_0L@JLCC@vert_ratio?$AA@ 00467eb4 libdkit:tinyActor.obj - 0004:00008ec0 ??_C@_0BB@MHND@transform_matrix?$AA@ 00467ec0 libdkit:tinyActor.obj - 0004:00008ed4 ??_C@_0L@JKBN@vert_index?$AA@ 00467ed4 libdkit:tinyActor.obj - 0004:00008ee0 ??_C@_0CO@MCAI@DK_envelopVertReadAscii?5?3?5Alloca@ 00467ee0 libdkit:tinyActor.obj - 0004:00008f10 ??_C@_0M@IKHB@nb_vertices?$AA@ 00467f10 libdkit:tinyActor.obj - 0004:00008f1c ??_C@_0N@GBNC@nb_envelopes?$AA@ 00467f1c libdkit:tinyActor.obj - 0004:00008f2c ??_C@_0BB@BNOM@outer_curve_data?$AA@ 00467f2c libdkit:tinyActor.obj - 0004:00008f40 ??_C@_0BC@NCJB@outer_curve_nbpts?$AA@ 00467f40 libdkit:tinyActor.obj - 0004:00008f54 ??_C@_0BB@OGLL@inner_curve_data?$AA@ 00467f54 libdkit:tinyActor.obj - 0004:00008f68 ??_C@_0BC@CAGK@inner_curve_nbpts?$AA@ 00467f68 libdkit:tinyActor.obj - 0004:00008f7c ??_C@_0BC@COIP@outer_curve_scale?$AA@ 00467f7c libdkit:tinyActor.obj - 0004:00008f90 ??_C@_0BB@HLMA@outer_curve_ampl?$AA@ 00467f90 libdkit:tinyActor.obj - 0004:00008fa4 ??_C@_0BA@HEHM@outer_curve_end?$AA@ 00467fa4 libdkit:tinyActor.obj - 0004:00008fb4 ??_C@_0BA@LLAP@outer_curve_beg?$AA@ 00467fb4 libdkit:tinyActor.obj - 0004:00008fc4 ??_C@_0BB@JOE@outer_curve_type?$AA@ 00467fc4 libdkit:tinyActor.obj - 0004:00008fd8 ??_C@_0BC@NMHE@inner_curve_scale?$AA@ 00467fd8 libdkit:tinyActor.obj - 0004:00008fec ??_C@_0BB@IAJH@inner_curve_ampl?$AA@ 00467fec libdkit:tinyActor.obj - 0004:00009000 ??_C@_0BA@CDLJ@inner_curve_end?$AA@ 00468000 libdkit:tinyActor.obj - 0004:00009010 ??_C@_0BA@OMMK@inner_curve_beg?$AA@ 00468010 libdkit:tinyActor.obj - 0004:00009020 ??_C@_0BB@PCLD@inner_curve_type?$AA@ 00468020 libdkit:tinyActor.obj - 0004:00009034 ??_C@_0L@EBGI@joint_area?$AA@ 00468034 libdkit:tinyActor.obj - 0004:00009040 ??_C@_0BB@MBOA@initial_root_trs?$AA@ 00468040 libdkit:tinyActor.obj - 0004:00009054 ??_C@_0BB@OLIP@initial_root_rot?$AA@ 00468054 libdkit:tinyActor.obj - 0004:00009068 ??_C@_0BB@KLKP@initial_root_scl?$AA@ 00468068 libdkit:tinyActor.obj - 0004:0000907c ??_C@_0N@GJEM@initial_vrot?$AA@ 0046807c libdkit:tinyActor.obj - 0004:0000908c ??_C@_05PCMN@level?$AA@ 0046808c libdkit:tinyActor.obj - 0004:00009094 ??_C@_0CH@CBDE@envelopReadAscii?5?3?5Allocate?5fail@ 00468094 libdkit:tinyActor.obj - 0004:000090bc ??_C@_0BD@OHCI@inverse_kinematics?$AA@ 004680bc libdkit:tinyActor.obj - 0004:000090d0 ??_C@_0BB@DMFL@joint_properties?$AA@ 004680d0 libdkit:tinyActor.obj - 0004:000090e4 ??_C@_0BE@BPBG@physical_properties?$AA@ 004680e4 libdkit:tinyActor.obj - 0004:000090f8 ??_C@_0N@IOAD@dynamic_root?$AA@ 004680f8 libdkit:tinyActor.obj - 0004:00009108 ??_C@_0O@FPHC@envelope_type?$AA@ 00468108 libdkit:tinyActor.obj - 0004:00009118 ??_C@_0BC@KJFP@flexible_envelope?$AA@ 00468118 libdkit:tinyActor.obj - 0004:00009148 ??_C@_04BJAK@BBOX?$AA@ 00468148 libdkit:tinyDynamics.obj - 0004:00009150 ??_C@_07NGAI@BSPHERE?$AA@ 00468150 libdkit:tinyDynamics.obj - 0004:00009158 ??_C@_07IOEN@BSPLANE?$AA@ 00468158 libdkit:tinyDynamics.obj - 0004:00009160 ??_C@_07MFB@GENERAL?$AA@ 00468160 libdkit:tinyDynamics.obj - 0004:00009168 ??_C@_0CH@MKL@Error?0?5unknown?5shape?5level?5token@ 00468168 libdkit:tinyDynamics.obj - 0004:00009190 ??_C@_0DD@JKOA@DK_dynamatterReadBinaryChunk?5?3?5A@ 00468190 libdkit:tinyDynamics.obj - 0004:000091c4 ??_C@_0BH@OPNE@node_coll_detect_level?$AA@ 004681c4 libdkit:tinyDynamics.obj - 0004:000091dc ??_C@_0L@JIOJ@plasticity?$AA@ 004681dc libdkit:tinyDynamics.obj - 0004:000091e8 ??_C@_08CIGD@rigidity?$AA@ 004681e8 libdkit:tinyDynamics.obj - 0004:000091f4 ??_C@_0BC@FIML@kinetic_roughness?$AA@ 004681f4 libdkit:tinyDynamics.obj - 0004:00009208 ??_C@_0BB@DFH@static_roughness?$AA@ 00468208 libdkit:tinyDynamics.obj - 0004:0000921c ??_C@_0L@NEAG@elasticity?$AA@ 0046821c libdkit:tinyDynamics.obj - 0004:00009228 ??_C@_07DAOL@density?$AA@ 00468228 libdkit:tinyDynamics.obj - 0004:00009230 ??_C@_0CN@MFMO@DK_dynamatterReadAscii?5?3?5Allocat@ 00468230 libdkit:tinyDynamics.obj - 0004:00009260 ??_C@_0DE@NAJH@DK_dynajntpropReadBinaryChunk?5?3?5@ 00468260 libdkit:tinyDynamics.obj - 0004:00009294 ??_C@_08LIGO@friction?$AA@ 00468294 libdkit:tinyDynamics.obj - 0004:000092a0 ??_C@_0CO@IMGB@DK_dynajntpropReadAscii?5?3?5Alloca@ 004682a0 libdkit:tinyDynamics.obj - 0004:000092e8 ??_C@_0BB@EDDA@DK_cluster_state?$AA@ 004682e8 libdkit:tinyCluster.obj - 0004:000092fc ??_C@_0BE@GFKO@DK_cluster_vertices?$AA@ 004682fc libdkit:tinyCluster.obj - 0004:00009310 ??_C@_0BA@NFIK@DK_cluster_ncvs?$AA@ 00468310 libdkit:tinyCluster.obj - 0004:00009320 ??_C@_0BA@MDKH@DK_cluster_name?$AA@ 00468320 libdkit:tinyCluster.obj - 0004:00009330 ??_C@_0CA@DNOG@?5token?5?$FL?$CFs?$FN?5seems?5invalid?5here?6?$AA@ 00468330 libdkit:tinyCluster.obj - 0004:00009398 _DK_TextureAnimName 00468398 libdkit:tinyTexture.obj - 0004:000093a8 _DK_TextureMethodName 004683a8 libdkit:tinyTexture.obj - 0004:000093d0 _DK_Texture3DTypeName 004683d0 libdkit:tinyTexture.obj - 0004:000093dc ??_C@_05CKII@CLOUD?$AA@ 004683dc libdkit:tinyTexture.obj - 0004:000093e4 ??_C@_04CBFM@WOOD?$AA@ 004683e4 libdkit:tinyTexture.obj - 0004:000093ec ??_C@_06CFIO@MARBLE?$AA@ 004683ec libdkit:tinyTexture.obj - 0004:000093f4 ??_C@_0BA@FKH@WITHOUT_REFLECT?$AA@ 004683f4 libdkit:tinyTexture.obj - 0004:00009404 ??_C@_0O@MPPP@AFTER_REFLECT?$AA@ 00468404 libdkit:tinyTexture.obj - 0004:00009414 ??_C@_09IHEH@SPHERICAL?$AA@ 00468414 libdkit:tinyTexture.obj - 0004:00009420 ??_C@_0M@GGBE@CYLINDRICAL?$AA@ 00468420 libdkit:tinyTexture.obj - 0004:0000942c ??_C@_02HPMO@UV?$AA@ 0046842c libdkit:tinyTexture.obj - 0004:00009430 ??_C@_02GONE@YZ?$AA@ 00468430 libdkit:tinyTexture.obj - 0004:00009434 ??_C@_02HIHO@XZ?$AA@ 00468434 libdkit:tinyTexture.obj - 0004:00009438 ??_C@_02IHMH@XY?$AA@ 00468438 libdkit:tinyTexture.obj - 0004:0000943c ??_C@_08DDIM@?9?9?9?9?9?9?9?9?$AA@ 0046843c libdkit:tinyTexture.obj - 0004:00009448 ??_C@_04PBEL@LIST?$AA@ 00468448 libdkit:tinyTexture.obj - 0004:00009450 ??_C@_08MFCI@SEQUENCE?$AA@ 00468450 libdkit:tinyTexture.obj - 0004:0000945c ??_C@_0N@FCD@txt2d_shader?$AA@ 0046845c libdkit:tinyTexture.obj - 0004:0000946c ??_C@_0N@COOJ@displacement?$AA@ 0046846c libdkit:tinyTexture.obj - 0004:0000947c ??_C@_0M@KLDB@txtsup_scal?$AA@ 0046847c libdkit:tinyTexture.obj - 0004:00009488 ??_C@_0N@DIJO@txtsup_trans?$AA@ 00468488 libdkit:tinyTexture.obj - 0004:00009498 ??_C@_09KPAJ@?$CFf?5?$CFf?5?$CFf?6?$AA@ 00468498 libdkit:tinyTexture.obj - 0004:000094a4 ??_C@_0L@OBOL@txtsup_rot?$AA@ 004684a4 libdkit:tinyTexture.obj - 0004:000094b0 ??_C@_0BB@PDPH@?$CFhd?5?$CFhd?5?$CFhd?5?$CFhd?6?$AA@ 004684b0 libdkit:tinyTexture.obj - 0004:000094c4 ??_C@_08DCMN@cropping?$AA@ 004684c4 libdkit:tinyTexture.obj - 0004:000094d0 ??_C@_08IFOB@blending?$AA@ 004684d0 libdkit:tinyTexture.obj - 0004:000094dc ??_C@_06JOBA@effect?$AA@ 004684dc libdkit:tinyTexture.obj - 0004:000094e4 ??_C@_09GMLK@INTENSITY?$AA@ 004684e4 libdkit:tinyTexture.obj - 0004:000094f0 ??_C@_05PGEK@ALPHA?$AA@ 004684f0 libdkit:tinyTexture.obj - 0004:000094f8 ??_C@_04IDKE@mask?$AA@ 004684f8 libdkit:tinyTexture.obj - 0004:00009500 ??_C@_05JNMF@alpha?$AA@ 00468500 libdkit:tinyTexture.obj - 0004:00009508 ??_C@_07GIOA@reflMap?$AA@ 00468508 libdkit:tinyTexture.obj - 0004:00009510 ??_C@_09KHOK@roughness?$AA@ 00468510 libdkit:tinyTexture.obj - 0004:0000951c ??_C@_06IPLH@transp?$AA@ 0046851c libdkit:tinyTexture.obj - 0004:00009524 ??_C@_07DNIJ@reflect?$AA@ 00468524 libdkit:tinyTexture.obj - 0004:0000952c ??_C@_08FOJI@specular?$AA@ 0046852c libdkit:tinyTexture.obj - 0004:00009538 ??_C@_07OADP@diffuse?$AA@ 00468538 libdkit:tinyTexture.obj - 0004:00009540 ??_C@_07MDLH@ambient?$AA@ 00468540 libdkit:tinyTexture.obj - 0004:00009548 ??_C@_0L@LJFJ@vAlternate?$AA@ 00468548 libdkit:tinyTexture.obj - 0004:00009554 ??_C@_0L@CJBP@uAlternate?$AA@ 00468554 libdkit:tinyTexture.obj - 0004:00009560 ??_C@_06CBDC@uvswap?$AA@ 00468560 libdkit:tinyTexture.obj - 0004:00009568 ??_C@_0M@IIJD@pixelInterp?$AA@ 00468568 libdkit:tinyTexture.obj - 0004:00009574 ??_C@_06KCLD@offset?$AA@ 00468574 libdkit:tinyTexture.obj - 0004:0000957c ??_C@_05NGOE@?$CFf?5?$CFf?$AA@ 0046857c libdkit:tinyTexture.obj - 0004:00009584 ??_C@_07NPBE@?$CFhd?5?$CFhd?$AA@ 00468584 libdkit:tinyTexture.obj - 0004:0000958c ??_C@_06GLIF@repeat?$AA@ 0046858c libdkit:tinyTexture.obj - 0004:00009594 ??_C@_06IM@method?$AA@ 00468594 libdkit:tinyTexture.obj - 0004:0000959c ??_C@_04BPHC@anim?$AA@ 0046859c libdkit:tinyTexture.obj - 0004:000095a4 ??_C@_0CD@CPFK@Error?3?5?$CFs?5?$CFd?$CJ?3?5illegal?5token?3?5?$CFh@ 004685a4 libdkit:tinyTexture.obj - 0004:000095c8 ??_C@_0N@MHGL@txt3d_shader?$AA@ 004685c8 libdkit:tinyTexture.obj - 0004:000095d8 ??_C@_07KKDI@colour4?$AA@ 004685d8 libdkit:tinyTexture.obj - 0004:000095e0 ??_C@_07NPLK@factor3?$AA@ 004685e0 libdkit:tinyTexture.obj - 0004:000095e8 ??_C@_07PPNN@colour3?$AA@ 004685e8 libdkit:tinyTexture.obj - 0004:000095f0 ??_C@_07HFCN@factor2?$AA@ 004685f0 libdkit:tinyTexture.obj - 0004:000095f8 ??_C@_07FFEK@colour2?$AA@ 004685f8 libdkit:tinyTexture.obj - 0004:00009600 ??_C@_07IKJE@factor1?$AA@ 00468600 libdkit:tinyTexture.obj - 0004:00009608 ??_C@_07KKPD@colour1?$AA@ 00468608 libdkit:tinyTexture.obj - 0004:00009610 ??_C@_0M@OPBM@?$CFf?5?$CFf?5?$CFf?5?$CFf?$AA@ 00468610 libdkit:tinyTexture.obj - 0004:0000961c ??_C@_07GE@colour0?$AA@ 0046861c libdkit:tinyTexture.obj - 0004:00009624 ??_C@_05IKDH@taper?$AA@ 00468624 libdkit:tinyTexture.obj - 0004:0000962c ??_C@_05EBLP@power?$AA@ 0046862c libdkit:tinyTexture.obj - 0004:00009634 ??_C@_07ENJI@spacing?$AA@ 00468634 libdkit:tinyTexture.obj - 0004:0000963c ??_C@_08GOPF@strength?$AA@ 0046863c libdkit:tinyTexture.obj - 0004:00009648 ??_C@_03MPEG@?$CFhd?$AA@ 00468648 libdkit:tinyTexture.obj - 0004:0000964c ??_C@_0N@HDOG@nbIterations?$AA@ 0046864c libdkit:tinyTexture.obj - 0004:0000965c ??_C@_04PIKN@type?$AA@ 0046865c libdkit:tinyTexture.obj - 0004:00009680 _DK_MaterialTypeName 00468680 libdkit:tinyMaterial.obj - 0004:0000969c ??_C@_06BPED@SHADOW?$AA@ 0046869c libdkit:tinyMaterial.obj - 0004:000096a4 ??_C@_05IDEO@BLINN?$AA@ 004686a4 libdkit:tinyMaterial.obj - 0004:000096ac ??_C@_05EGEB@PHONG?$AA@ 004686ac libdkit:tinyMaterial.obj - 0004:000096b4 ??_C@_07HEIG@LAMBERT?$AA@ 004686b4 libdkit:tinyMaterial.obj - 0004:000096bc ??_C@_04MMMP@FLAT?$AA@ 004686bc libdkit:tinyMaterial.obj - 0004:000096c4 ??_C@_0M@BMKB@shdw_shader?$AA@ 004686c4 libdkit:tinyMaterial.obj - 0004:000096d0 ??_C@_0L@JEAJ@vol_shader?$AA@ 004686d0 libdkit:tinyMaterial.obj - 0004:000096dc ??_C@_0L@NKBF@mat_shader?$AA@ 004686dc libdkit:tinyMaterial.obj - 0004:000096e8 ??_C@_09KIFH@blurDecay?$AA@ 004686e8 libdkit:tinyMaterial.obj - 0004:000096f4 ??_C@_09LMFJ@blurWidht?$AA@ 004686f4 libdkit:tinyMaterial.obj - 0004:00009700 ??_C@_0L@KKDA@staticBlur?$AA@ 00468700 libdkit:tinyMaterial.obj - 0004:0000970c ??_C@_03JCCL@coc?$AA@ 0046870c libdkit:tinyMaterial.obj - 0004:00009710 ??_C@_04LLKK@glow?$AA@ 00468710 libdkit:tinyMaterial.obj - 0004:00009718 ??_C@_0M@FDPI@refracIndex?$AA@ 00468718 libdkit:tinyMaterial.obj - 0004:00009724 ??_C@_0N@DPMN@transparency?$AA@ 00468724 libdkit:tinyMaterial.obj - 0004:00009734 ??_C@_0N@BIKM@reflectivity?$AA@ 00468734 libdkit:tinyMaterial.obj - 0004:00009744 ??_C@_08PJDB@exponent?$AA@ 00468744 libdkit:tinyMaterial.obj - 0004:00009768 _DK_SplineTypeName 00468768 libdkit:tinySpline.obj - 0004:00009778 _DK_BezSegmentName 00468778 libdkit:tinySpline.obj - 0004:00009788 _DK_BezConstraintName 00468788 libdkit:tinySpline.obj - 0004:000097a0 ??_C@_02GFEO@G2?$AA@ 004687a0 libdkit:tinySpline.obj - 0004:000097a4 ??_C@_02JKPH@G1?$AA@ 004687a4 libdkit:tinySpline.obj - 0004:000097a8 ??_C@_02DPOE@C2?$AA@ 004687a8 libdkit:tinySpline.obj - 0004:000097ac ??_C@_02MAFN@C1?$AA@ 004687ac libdkit:tinySpline.obj - 0004:000097b0 ??_C@_02GKMK@C0?$AA@ 004687b0 libdkit:tinySpline.obj - 0004:000097b4 ??_C@_05EKJA@CURVE?$AA@ 004687b4 libdkit:tinySpline.obj - 0004:000097bc ??_C@_07BOPI@BSPLINE?$AA@ 004687bc libdkit:tinySpline.obj - 0004:000097c4 ??_C@_06PDAP@BEZIER?$AA@ 004687c4 libdkit:tinySpline.obj - 0004:000097cc ??_C@_04FKBO@hole?$AA@ 004687cc libdkit:tinySpline.obj - 0004:000097d4 ??_C@_0O@LBJD@controlPoints?$AA@ 004687d4 libdkit:tinySpline.obj - 0004:000097e4 ??_C@_07GPDP@segment?$AA@ 004687e4 libdkit:tinySpline.obj - 0004:000097ec ??_C@_0L@EIB@constraint?$AA@ 004687ec libdkit:tinySpline.obj - 0004:000097f8 ??_C@_04HPI@step?$AA@ 004687f8 libdkit:tinySpline.obj - 0004:00009800 ??_C@_07MBCG@tension?$AA@ 00468800 libdkit:tinySpline.obj - 0004:00009808 ??_C@_06JKOB@nbKeys?$AA@ 00468808 libdkit:tinySpline.obj - 0004:00009810 ??_C@_05JMGP@close?$AA@ 00468810 libdkit:tinySpline.obj - 0004:00009818 ??_C@_07OPAA@phantom?$AA@ 00468818 libdkit:tinySpline.obj - 0004:00009820 ??_C@_01KMMP@?$CJ?$AA@ 00468820 libdkit:tinySpline.obj - 0004:00009824 ??_C@_01GFI@?$CI?$AA@ 00468824 libdkit:tinySpline.obj - 0004:00009828 ??_C@_04PFCD@flag?$AA@ 00468828 libdkit:tinySpline.obj - 0004:00009830 ??_C@_04ICIO@next?$AA@ 00468830 libdkit:tinySpline.obj - 0004:00009838 ??_C@_08HPHD@previous?$AA@ 00468838 libdkit:tinySpline.obj - 0004:00009844 ??_C@_08BOHH@position?$AA@ 00468844 libdkit:tinySpline.obj - 0004:00009868 ??_C@_05OALG@knots?$AA@ 00468868 libdkit:tinyNurbs.obj - 0004:00009870 ??_C@_08KKJK@Vertices?$AA@ 00468870 libdkit:tinyNurbs.obj - 0004:0000987c ??_C@_0N@BLPP@not_rational?$AA@ 0046887c libdkit:tinyNurbs.obj - 0004:0000988c ??_C@_08MMDJ@rational?$AA@ 0046888c libdkit:tinyNurbs.obj - 0004:00009898 ??_C@_09DDNI@closeInfo?$AA@ 00468898 libdkit:tinyNurbs.obj - 0004:000098a4 ??_C@_06MNFI@noStep?$AA@ 004688a4 libdkit:tinyNurbs.obj - 0004:000098ac ??_C@_0L@MPNA@uniformity?$AA@ 004688ac libdkit:tinyNurbs.obj - 0004:000098b8 ??_C@_0L@DDEA@not_closed?$AA@ 004688b8 libdkit:tinyNurbs.obj - 0004:000098c4 ??_C@_06LOOA@closed?$AA@ 004688c4 libdkit:tinyNurbs.obj - 0004:000098cc ??_C@_03DNBD@end?$AA@ 004688cc libdkit:tinyNurbs.obj - 0004:000098d0 ??_C@_05IIAE@start?$AA@ 004688d0 libdkit:tinyNurbs.obj - 0004:000098d8 ??_C@_07JJHM@noKnots?$AA@ 004688d8 libdkit:tinyNurbs.obj - 0004:000098e0 ??_C@_08MPPN@noPoints?$AA@ 004688e0 libdkit:tinyNurbs.obj - 0004:000098ec ??_C@_05DKMA@order?$AA@ 004688ec libdkit:tinyNurbs.obj - 0004:000098f4 ??_C@_0BB@DMFF@Number_of_trims?3?$AA@ 004688f4 libdkit:tinyNurbs.obj - 0004:00009908 ??_C@_09CFID@recursion?$AA@ 00468908 libdkit:tinyNurbs.obj - 0004:00009914 ??_C@_06HNNG@recMax?$AA@ 00468914 libdkit:tinyNurbs.obj - 0004:0000991c ??_C@_06JOIA@recMin?$AA@ 0046891c libdkit:tinyNurbs.obj - 0004:00009924 ??_C@_06BDPJ@curv_v?$AA@ 00468924 libdkit:tinyNurbs.obj - 0004:0000992c ??_C@_06OMEA@curv_u?$AA@ 0046892c libdkit:tinyNurbs.obj - 0004:00009934 ??_C@_07DCJI@spacial?$AA@ 00468934 libdkit:tinyNurbs.obj - 0004:0000993c ??_C@_07EBBG@viewDep?$AA@ 0046893c libdkit:tinyNurbs.obj - 0004:00009944 ??_C@_0M@HMNM@approx_type?$AA@ 00468944 libdkit:tinyNurbs.obj - 0004:00009950 ??_C@_05ND@V_Dir?$AA@ 00468950 libdkit:tinyNurbs.obj - 0004:00009958 ??_C@_05OALM@U_Dir?$AA@ 00468958 libdkit:tinyNurbs.obj - 0004:00009960 ??_C@_05KFME@value?$AA@ 00468960 libdkit:tinyNurbs.obj - 0004:00009968 ??_C@_02DLJH@?$CFg?$AA@ 00468968 libdkit:tinyNurbs.obj - 0004:0000996c ??_C@_09HKNN@CloseInfo?$AA@ 0046896c libdkit:tinyNurbs.obj - 0004:00009978 ??_C@_03BJDM@Top?$AA@ 00468978 libdkit:tinyNurbs.obj - 0004:0000997c ??_C@_06LHCD@Bottom?$AA@ 0046897c libdkit:tinyNurbs.obj - 0004:00009984 ??_C@_05CFLF@Curve?$AA@ 00468984 libdkit:tinyNurbs.obj - 0004:0000998c ??_C@_06HJFM@NoStep?$AA@ 0046898c libdkit:tinyNurbs.obj - 0004:00009994 ??_C@_0O@DGMC@Curve_number?3?$AA@ 00468994 libdkit:tinyNurbs.obj - 0004:000099a4 ??_C@_0BE@LCCL@Curve_is_a_Boundary?$AA@ 004689a4 libdkit:tinyNurbs.obj - 0004:000099d0 ??_C@_0DD@GLIB@?$CFf?5?$CFf?5?$CFf?5?$CFf?5?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?5?$CFf?5?$CFf?5@ 004689d0 libdkit:tinyMetaball.obj - 0004:00009a04 ??_C@_09JBLI@centerMat?$AA@ 00468a04 libdkit:tinyMetaball.obj - 0004:00009a10 ??_C@_0M@MNLO@?$CFlf?5?$CFlf?5?$CFlf?$AA@ 00468a10 libdkit:tinyMetaball.obj - 0004:00009a1c ??_C@_05BAEP@ratio?$AA@ 00468a1c libdkit:tinyMetaball.obj - 0004:00009a24 ??_C@_03MAMC@?$CFlf?$AA@ 00468a24 libdkit:tinyMetaball.obj - 0004:00009a28 ??_C@_06PFJF@weight?$AA@ 00468a28 libdkit:tinyMetaball.obj - 0004:00009a30 ??_C@_07DHDB@unblend?$AA@ 00468a30 libdkit:tinyMetaball.obj - 0004:00009a38 ??_C@_05GCOD@group?$AA@ 00468a38 libdkit:tinyMetaball.obj - 0004:00009a40 ??_C@_0M@NDKO@showSurface?$AA@ 00468a40 libdkit:tinyMetaball.obj - 0004:00009a4c ??_C@_0O@FPPP@renResolution?$AA@ 00468a4c libdkit:tinyMetaball.obj - 0004:00009a5c ??_C@_0N@MMDO@wfResolution?$AA@ 00468a5c libdkit:tinyMetaball.obj - 0004:00009a6c ??_C@_09HOEO@primitive?$AA@ 00468a6c libdkit:tinyMetaball.obj - 0004:00009a90 ??_C@_04ELGM@HARD?$AA@ 00468a90 libdkit:tinyMesh.obj - 0004:00009a98 ??_C@_07IKBJ@VISIBLE?$AA@ 00468a98 libdkit:tinyMesh.obj - 0004:00009aa0 ??_C@_05MJGO@?$CFd?5?$CFd?$AA@ 00468aa0 libdkit:tinyMesh.obj - 0004:00009aa8 ??_C@_05KNMB@edges?$AA@ 00468aa8 libdkit:tinyMesh.obj - 0004:00009ab0 ??_C@_05PPNJ@nodes?$AA@ 00468ab0 libdkit:tinyMesh.obj - 0004:00009ab8 ??_C@_08DOEI@polygons?$AA@ 00468ab8 libdkit:tinyMesh.obj - 0004:00009ac4 ??_C@_08KPEI@vertices?$AA@ 00468ac4 libdkit:tinyMesh.obj - 0004:00009ad0 ??_C@_0O@IPEK@discontinuity?$AA@ 00468ad0 libdkit:tinyMesh.obj - 0004:00009ae0 ??_C@_08KLID@AVERAGED?$AA@ 00468ae0 libdkit:tinyMesh.obj - 0004:00009aec ??_C@_07JBJC@PROCESS?$AA@ 00468aec libdkit:tinyMesh.obj - 0004:00009af4 ??_C@_07LHLL@FACETED?$AA@ 00468af4 libdkit:tinyMesh.obj - 0004:00009afc ??_C@_09OCEC@uvTexture?$AA@ 00468afc libdkit:tinyMesh.obj - 0004:00009b08 ??_C@_06KMLP@normal?$AA@ 00468b08 libdkit:tinyMesh.obj - 0004:00009b10 ??_C@_06KAJD@vertex?$AA@ 00468b10 libdkit:tinyMesh.obj - 0004:00009b30 ??_C@_08DFBP@exterior?$AA@ 00468b30 libdkit:tinyFace.obj - 0004:00009b58 ??_C@_0N@NEPM@taggedPoints?$AA@ 00468b58 libdkit:tinyPatch.obj - 0004:00009b68 ??_C@_04CPOD@vtop?$AA@ 00468b68 libdkit:tinyPatch.obj - 0004:00009b70 ??_C@_04EABF@utop?$AA@ 00468b70 libdkit:tinyPatch.obj - 0004:00009b78 ??_C@_07HKNM@vbottom?$AA@ 00468b78 libdkit:tinyPatch.obj - 0004:00009b80 ??_C@_07JGC@ubottom?$AA@ 00468b80 libdkit:tinyPatch.obj - 0004:00009b88 ??_C@_06NKNA@vcurve?$AA@ 00468b88 libdkit:tinyPatch.obj - 0004:00009b90 ??_C@_06GEDA@ucurve?$AA@ 00468b90 libdkit:tinyPatch.obj - 0004:00009b98 ??_C@_05MIIM@vstep?$AA@ 00468b98 libdkit:tinyPatch.obj - 0004:00009ba0 ??_C@_05CIOD@ustep?$AA@ 00468ba0 libdkit:tinyPatch.obj - 0004:00009ba8 ??_C@_08PNFP@vtension?$AA@ 00468ba8 libdkit:tinyPatch.obj - 0004:00009bb4 ??_C@_08CFCM@utension?$AA@ 00468bb4 libdkit:tinyPatch.obj - 0004:00009bc0 ??_C@_06GHKA@vclose?$AA@ 00468bc0 libdkit:tinyPatch.obj - 0004:00009bc8 ??_C@_06NJEA@uclose?$AA@ 00468bc8 libdkit:tinyPatch.obj - 0004:00009bd0 ??_C@_06JGAB@vpoint?$AA@ 00468bd0 libdkit:tinyPatch.obj - 0004:00009bd8 ??_C@_06CIOB@upoint?$AA@ 00468bd8 libdkit:tinyPatch.obj - 0004:00009be0 ??_C@_05DHNJ@vtype?$AA@ 00468be0 libdkit:tinyPatch.obj - 0004:00009be8 ??_C@_05NHLG@utype?$AA@ 00468be8 libdkit:tinyPatch.obj - 0004:00009bf0 ??_C@_0BJ@GBMN@?5dans?5DK_patchReadAscii?6?$AA@ 00468bf0 libdkit:tinyPatch.obj - 0004:00009c0c ??_C@_06GOLI@tagged?$AA@ 00468c0c libdkit:tinyPatch.obj - 0004:00009c30 _DK_VERSION 00468c30 libdkit:tinyFile.obj - 0004:00009c34 _DK_FM 00468c34 libdkit:tinyFile.obj - 0004:00009c38 _DK_FD 00468c38 libdkit:tinyFile.obj - 0004:00009c3c _DK_NORMAL 00468c3c libdkit:tinyFile.obj - 0004:00009c40 _DK_WRITE_ANIMATION 00468c40 libdkit:tinyFile.obj - 0004:00009c44 ??_C@_0L@MBNP@tinyFile?4c?$AA@ 00468c44 libdkit:tinyFile.obj - 0004:00009c50 ??_C@_0CI@LFFN@Attempt?5to?5read?3?5An?5error?5may?5oc@ 00468c50 libdkit:tinyFile.obj - 0004:00009c78 ??_C@_0EA@IGLE@Warning?0?5file?5version?5?$CFg?5is?5late@ 00468c78 libdkit:tinyFile.obj - 0004:00009cb8 ??_C@_02JDLK@?$CFx?$AA@ 00468cb8 libdkit:tinyFile.obj - 0004:00009cbc ??_C@_04LLHI@size?$AA@ 00468cbc libdkit:tinyFile.obj - 0004:00009ce0 _DK_option 00468ce0 libdkit:tinyScene.obj - 0004:00009d00 _DK_fcv_name 00468d00 libdkit:tinyUtils.obj - 0004:0000a0ac _DK_animIndentString 004690ac libdkit:tinyUtils.obj - 0004:0000a0b0 _DK_animToken 004690b0 libdkit:tinyUtils.obj - 0004:0000a0b4 _DK_animFileVersion 004690b4 libdkit:tinyUtils.obj - 0004:0000a0b8 _DK_CLASSIC_SCALING 004690b8 libdkit:tinyUtils.obj - 0004:0000a0c0 ??_C@_0L@JIEK@LIG_ASCL_Z?$AA@ 004690c0 libdkit:tinyUtils.obj - 0004:0000a0cc ??_C@_0L@GHPD@LIG_ASCL_Y?$AA@ 004690cc libdkit:tinyUtils.obj - 0004:0000a0d8 ??_C@_0L@MNGE@LIG_ASCL_X?$AA@ 004690d8 libdkit:tinyUtils.obj - 0004:0000a0e4 ??_C@_0L@DGGI@LIG_AROT_Z?$AA@ 004690e4 libdkit:tinyUtils.obj - 0004:0000a0f0 ??_C@_0L@MJNB@LIG_AROT_Y?$AA@ 004690f0 libdkit:tinyUtils.obj - 0004:0000a0fc ??_C@_0L@GDEG@LIG_AROT_X?$AA@ 004690fc libdkit:tinyUtils.obj - 0004:0000a108 ??_C@_09JLFK@FOG_THICK?$AA@ 00469108 libdkit:tinyUtils.obj - 0004:0000a114 ??_C@_08NOLC@FOG_BASE?$AA@ 00469114 libdkit:tinyUtils.obj - 0004:0000a120 ??_C@_08IMPL@FOG_DENS?$AA@ 00469120 libdkit:tinyUtils.obj - 0004:0000a12c ??_C@_08CDLE@FOG_BLUE?$AA@ 0046912c libdkit:tinyUtils.obj - 0004:0000a138 ??_C@_09ODKO@FOG_GREEN?$AA@ 00469138 libdkit:tinyUtils.obj - 0004:0000a144 ??_C@_07DOIN@FOG_RED?$AA@ 00469144 libdkit:tinyUtils.obj - 0004:0000a14c ??_C@_07CPCN@FOG_END?$AA@ 0046914c libdkit:tinyUtils.obj - 0004:0000a154 ??_C@_09FFMC@FOG_START?$AA@ 00469154 libdkit:tinyUtils.obj - 0004:0000a160 ??_C@_0N@LOFI@MDL_WCLUSTER?$AA@ 00469160 libdkit:tinyUtils.obj - 0004:0000a170 ??_C@_0M@JCCC@MDL_CLUSTER?$AA@ 00469170 libdkit:tinyUtils.obj - 0004:0000a17c ??_C@_09POKO@DYN_ROOTC?$AA@ 0046917c libdkit:tinyUtils.obj - 0004:0000a188 ??_C@_0L@JCFG@DYN_KROUGH?$AA@ 00469188 libdkit:tinyUtils.obj - 0004:0000a194 ??_C@_0L@GFFF@DYN_SROUGH?$AA@ 00469194 libdkit:tinyUtils.obj - 0004:0000a1a0 ??_C@_09BCPF@DYN_ELAST?$AA@ 004691a0 libdkit:tinyUtils.obj - 0004:0000a1ac ??_C@_08IHNN@MDL_ALGO?$AA@ 004691ac libdkit:tinyUtils.obj - 0004:0000a1b8 ??_C@_07MBOD@CAM_HID?$AA@ 004691b8 libdkit:tinyUtils.obj - 0004:0000a1c0 ??_C@_07JAMH@LIG_HID?$AA@ 004691c0 libdkit:tinyUtils.obj - 0004:0000a1c8 ??_C@_07DBDG@MDL_HID?$AA@ 004691c8 libdkit:tinyUtils.obj - 0004:0000a1d0 ??_C@_07PPEM@WAV_SPD?$AA@ 004691d0 libdkit:tinyUtils.obj - 0004:0000a1d8 ??_C@_07MMBC@WAV_DCY?$AA@ 004691d8 libdkit:tinyUtils.obj - 0004:0000a1e0 ??_C@_07ELEK@WAV_POS?$AA@ 004691e0 libdkit:tinyUtils.obj - 0004:0000a1e8 ??_C@_08COEL@WAV_TRNZ?$AA@ 004691e8 libdkit:tinyUtils.obj - 0004:0000a1f4 ??_C@_08NBPC@WAV_TRNY?$AA@ 004691f4 libdkit:tinyUtils.obj - 0004:0000a200 ??_C@_08HLGF@WAV_TRNX?$AA@ 00469200 libdkit:tinyUtils.obj - 0004:0000a20c ??_C@_08KIJM@WAV_ROTZ?$AA@ 0046920c libdkit:tinyUtils.obj - 0004:0000a218 ??_C@_08FHCF@WAV_ROTY?$AA@ 00469218 libdkit:tinyUtils.obj - 0004:0000a224 ??_C@_08PNLC@WAV_ROTX?$AA@ 00469224 libdkit:tinyUtils.obj - 0004:0000a230 ??_C@_08IKNM@WAV_SCLZ?$AA@ 00469230 libdkit:tinyUtils.obj - 0004:0000a23c ??_C@_08HFGF@WAV_SCLY?$AA@ 0046923c libdkit:tinyUtils.obj - 0004:0000a248 ??_C@_08NPPC@WAV_SCLX?$AA@ 00469248 libdkit:tinyUtils.obj - 0004:0000a254 ??_C@_09NLHD@TXT_REFL2?$AA@ 00469254 libdkit:tinyUtils.obj - 0004:0000a260 ??_C@_09KMKI@TXT_BLEND?$AA@ 00469260 libdkit:tinyUtils.obj - 0004:0000a26c ??_C@_0M@IBPB@TXT3D_COL4A?$AA@ 0046926c libdkit:tinyUtils.obj - 0004:0000a278 ??_C@_0M@OAKE@TXT3D_COL3A?$AA@ 00469278 libdkit:tinyUtils.obj - 0004:0000a284 ??_C@_0M@PGAO@TXT3D_COL2A?$AA@ 00469284 libdkit:tinyUtils.obj - 0004:0000a290 ??_C@_0M@MNPB@TXT3D_COL1A?$AA@ 00469290 libdkit:tinyUtils.obj - 0004:0000a29c ??_C@_0M@NLFL@TXT3D_COL0A?$AA@ 0046929c libdkit:tinyUtils.obj - 0004:0000a2a8 ??_C@_0M@BBF@TXT3D_BLEND?$AA@ 004692a8 libdkit:tinyUtils.obj - 0004:0000a2b4 ??_C@_07BFJC@SWEIGHT?$AA@ 004692b4 libdkit:tinyUtils.obj - 0004:0000a2bc ??_C@_08EKCM@LIG_INTZ?$AA@ 004692bc libdkit:tinyUtils.obj - 0004:0000a2c8 ??_C@_08LFJF@LIG_INTY?$AA@ 004692c8 libdkit:tinyUtils.obj - 0004:0000a2d4 ??_C@_08BPAC@LIG_INTX?$AA@ 004692d4 libdkit:tinyUtils.obj - 0004:0000a2e0 ??_C@_08CDIM@LIG_POSZ?$AA@ 004692e0 libdkit:tinyUtils.obj - 0004:0000a2ec ??_C@_08NMDF@LIG_POSY?$AA@ 004692ec libdkit:tinyUtils.obj - 0004:0000a2f8 ??_C@_08HGKC@LIG_POSX?$AA@ 004692f8 libdkit:tinyUtils.obj - 0004:0000a304 ??_C@_08BHN@CAM_INTZ?$AA@ 00469304 libdkit:tinyUtils.obj - 0004:0000a310 ??_C@_08POME@CAM_INTY?$AA@ 00469310 libdkit:tinyUtils.obj - 0004:0000a31c ??_C@_08FEFD@CAM_INTX?$AA@ 0046931c libdkit:tinyUtils.obj - 0004:0000a328 ??_C@_08GINN@CAM_POSZ?$AA@ 00469328 libdkit:tinyUtils.obj - 0004:0000a334 ??_C@_08JHGE@CAM_POSY?$AA@ 00469334 libdkit:tinyUtils.obj - 0004:0000a340 ??_C@_08DNPD@CAM_POSX?$AA@ 00469340 libdkit:tinyUtils.obj - 0004:0000a34c ??_C@_08JICN@MDL_POSZ?$AA@ 0046934c libdkit:tinyUtils.obj - 0004:0000a358 ??_C@_08GHJE@MDL_POSY?$AA@ 00469358 libdkit:tinyUtils.obj - 0004:0000a364 ??_C@_08MNAD@MDL_POSX?$AA@ 00469364 libdkit:tinyUtils.obj - 0004:0000a370 ??_C@_0L@IHO@PTFIT_TRNZ?$AA@ 00469370 libdkit:tinyUtils.obj - 0004:0000a37c ??_C@_0L@PHMH@PTFIT_TRNY?$AA@ 0046937c libdkit:tinyUtils.obj - 0004:0000a388 ??_C@_0L@FNFA@PTFIT_TRNX?$AA@ 00469388 libdkit:tinyUtils.obj - 0004:0000a394 ??_C@_0L@IOKJ@PTFIT_ROTZ?$AA@ 00469394 libdkit:tinyUtils.obj - 0004:0000a3a0 ??_C@_0L@HBBA@PTFIT_ROTY?$AA@ 004693a0 libdkit:tinyUtils.obj - 0004:0000a3ac ??_C@_0L@NLIH@PTFIT_ROTX?$AA@ 004693ac libdkit:tinyUtils.obj - 0004:0000a3b8 ??_C@_0L@KMOJ@PTFIT_SCLZ?$AA@ 004693b8 libdkit:tinyUtils.obj - 0004:0000a3c4 ??_C@_0L@FDFA@PTFIT_SCLY?$AA@ 004693c4 libdkit:tinyUtils.obj - 0004:0000a3d0 ??_C@_0L@PJMH@PTFIT_SCLX?$AA@ 004693d0 libdkit:tinyUtils.obj - 0004:0000a3dc ??_C@_0L@LKCN@PNFIT_TRNZ?$AA@ 004693dc libdkit:tinyUtils.obj - 0004:0000a3e8 ??_C@_0L@EFJE@PNFIT_TRNY?$AA@ 004693e8 libdkit:tinyUtils.obj - 0004:0000a3f4 ??_C@_0L@OPAD@PNFIT_TRNX?$AA@ 004693f4 libdkit:tinyUtils.obj - 0004:0000a400 ??_C@_0L@DMPK@PNFIT_ROTZ?$AA@ 00469400 libdkit:tinyUtils.obj - 0004:0000a40c ??_C@_0L@MDED@PNFIT_ROTY?$AA@ 0046940c libdkit:tinyUtils.obj - 0004:0000a418 ??_C@_0L@GJNE@PNFIT_ROTX?$AA@ 00469418 libdkit:tinyUtils.obj - 0004:0000a424 ??_C@_0L@BOLK@PNFIT_SCLZ?$AA@ 00469424 libdkit:tinyUtils.obj - 0004:0000a430 ??_C@_0L@OBAD@PNFIT_SCLY?$AA@ 00469430 libdkit:tinyUtils.obj - 0004:0000a43c ??_C@_0L@ELJE@PNFIT_SCLX?$AA@ 0046943c libdkit:tinyUtils.obj - 0004:0000a448 ??_C@_09EMI@TFIT_TRNZ?$AA@ 00469448 libdkit:tinyUtils.obj - 0004:0000a454 ??_C@_09PLHB@TFIT_TRNY?$AA@ 00469454 libdkit:tinyUtils.obj - 0004:0000a460 ??_C@_09FBOG@TFIT_TRNX?$AA@ 00469460 libdkit:tinyUtils.obj - 0004:0000a46c ??_C@_09LOA@TFIT_ROLL?$AA@ 0046946c libdkit:tinyUtils.obj - 0004:0000a478 ??_C@_09KAFP@TFIT_SCLZ?$AA@ 00469478 libdkit:tinyUtils.obj - 0004:0000a484 ??_C@_09FPOG@TFIT_SCLY?$AA@ 00469484 libdkit:tinyUtils.obj - 0004:0000a490 ??_C@_09PFHB@TFIT_SCLX?$AA@ 00469490 libdkit:tinyUtils.obj - 0004:0000a49c ??_C@_09LGJL@NFIT_TRNZ?$AA@ 0046949c libdkit:tinyUtils.obj - 0004:0000a4a8 ??_C@_09EJCC@NFIT_TRNY?$AA@ 004694a8 libdkit:tinyUtils.obj - 0004:0000a4b4 ??_C@_09ODLF@NFIT_TRNX?$AA@ 004694b4 libdkit:tinyUtils.obj - 0004:0000a4c0 ??_C@_09LJLD@NFIT_ROLL?$AA@ 004694c0 libdkit:tinyUtils.obj - 0004:0000a4cc ??_C@_09BCAM@NFIT_SCLZ?$AA@ 004694cc libdkit:tinyUtils.obj - 0004:0000a4d8 ??_C@_09ONLF@NFIT_SCLY?$AA@ 004694d8 libdkit:tinyUtils.obj - 0004:0000a4e4 ??_C@_09EHCC@NFIT_SCLX?$AA@ 004694e4 libdkit:tinyUtils.obj - 0004:0000a4f0 ??_C@_09PLGK@TXT3D_ROU?$AA@ 004694f0 libdkit:tinyUtils.obj - 0004:0000a4fc ??_C@_09IPHC@TXT3D_RID?$AA@ 004694fc libdkit:tinyUtils.obj - 0004:0000a508 ??_C@_09HLJC@TXT3D_TRS?$AA@ 00469508 libdkit:tinyUtils.obj - 0004:0000a514 ??_C@_09DFKC@TXT3D_REF?$AA@ 00469514 libdkit:tinyUtils.obj - 0004:0000a520 ??_C@_09EBNG@TXT3D_SPC?$AA@ 00469520 libdkit:tinyUtils.obj - 0004:0000a52c ??_C@_09BHEB@TXT3D_DIF?$AA@ 0046952c libdkit:tinyUtils.obj - 0004:0000a538 ??_C@_09PNPL@TXT3D_AMB?$AA@ 00469538 libdkit:tinyUtils.obj - 0004:0000a544 ??_C@_0L@NDKA@TXT3D_TRNZ?$AA@ 00469544 libdkit:tinyUtils.obj - 0004:0000a550 ??_C@_0L@CMBJ@TXT3D_TRNY?$AA@ 00469550 libdkit:tinyUtils.obj - 0004:0000a55c ??_C@_0L@IGIO@TXT3D_TRNX?$AA@ 0046955c libdkit:tinyUtils.obj - 0004:0000a568 ??_C@_0L@FFHH@TXT3D_ROTZ?$AA@ 00469568 libdkit:tinyUtils.obj - 0004:0000a574 ??_C@_0L@KKMO@TXT3D_ROTY?$AA@ 00469574 libdkit:tinyUtils.obj - 0004:0000a580 ??_C@_0L@FJ@TXT3D_ROTX?$AA@ 00469580 libdkit:tinyUtils.obj - 0004:0000a58c ??_C@_0L@HHDH@TXT3D_SCLZ?$AA@ 0046958c libdkit:tinyUtils.obj - 0004:0000a598 ??_C@_0L@IIIO@TXT3D_SCLY?$AA@ 00469598 libdkit:tinyUtils.obj - 0004:0000a5a4 ??_C@_0L@CCBJ@TXT3D_SCLX?$AA@ 004695a4 libdkit:tinyUtils.obj - 0004:0000a5b0 ??_C@_0M@HOEI@TXT3D_COL4B?$AA@ 004695b0 libdkit:tinyUtils.obj - 0004:0000a5bc ??_C@_0M@HOID@TXT3D_COL4G?$AA@ 004695bc libdkit:tinyUtils.obj - 0004:0000a5c8 ??_C@_0M@NHDI@TXT3D_COL4R?$AA@ 004695c8 libdkit:tinyUtils.obj - 0004:0000a5d4 ??_C@_0M@BPBN@TXT3D_COL3B?$AA@ 004695d4 libdkit:tinyUtils.obj - 0004:0000a5e0 ??_C@_0M@BPNG@TXT3D_COL3G?$AA@ 004695e0 libdkit:tinyUtils.obj - 0004:0000a5ec ??_C@_0M@LGGN@TXT3D_COL3R?$AA@ 004695ec libdkit:tinyUtils.obj - 0004:0000a5f8 ??_C@_0M@JLH@TXT3D_COL2B?$AA@ 004695f8 libdkit:tinyUtils.obj - 0004:0000a604 ??_C@_0M@JHM@TXT3D_COL2G?$AA@ 00469604 libdkit:tinyUtils.obj - 0004:0000a610 ??_C@_0M@KAMH@TXT3D_COL2R?$AA@ 00469610 libdkit:tinyUtils.obj - 0004:0000a61c ??_C@_0M@DCEI@TXT3D_COL1B?$AA@ 0046961c libdkit:tinyUtils.obj - 0004:0000a628 ??_C@_0M@DCID@TXT3D_COL1G?$AA@ 00469628 libdkit:tinyUtils.obj - 0004:0000a634 ??_C@_0M@JLDI@TXT3D_COL1R?$AA@ 00469634 libdkit:tinyUtils.obj - 0004:0000a640 ??_C@_0M@CEOC@TXT3D_COL0B?$AA@ 00469640 libdkit:tinyUtils.obj - 0004:0000a64c ??_C@_0M@CECJ@TXT3D_COL0G?$AA@ 0046964c libdkit:tinyUtils.obj - 0004:0000a658 ??_C@_0M@INJC@TXT3D_COL0R?$AA@ 00469658 libdkit:tinyUtils.obj - 0004:0000a664 ??_C@_0L@OLCP@TXT3D_FAC3?$AA@ 00469664 libdkit:tinyUtils.obj - 0004:0000a670 ??_C@_0L@EBLI@TXT3D_FAC2?$AA@ 00469670 libdkit:tinyUtils.obj - 0004:0000a67c ??_C@_0L@LOAB@TXT3D_FAC1?$AA@ 0046967c libdkit:tinyUtils.obj - 0004:0000a688 ??_C@_09NFHN@TXT3D_TAP?$AA@ 00469688 libdkit:tinyUtils.obj - 0004:0000a694 ??_C@_09JABG@TXT3D_SRT?$AA@ 00469694 libdkit:tinyUtils.obj - 0004:0000a6a0 ??_C@_09KGJ@TXT3D_POW?$AA@ 004696a0 libdkit:tinyUtils.obj - 0004:0000a6ac ??_C@_09BEPI@TXT3D_SPA?$AA@ 004696ac libdkit:tinyUtils.obj - 0004:0000a6b8 ??_C@_09BIJL@TXT3D_STR?$AA@ 004696b8 libdkit:tinyUtils.obj - 0004:0000a6c4 ??_C@_08DIGD@LAT_TREE?$AA@ 004696c4 libdkit:tinyUtils.obj - 0004:0000a6d0 ??_C@_08LAEP@LAT_NODE?$AA@ 004696d0 libdkit:tinyUtils.obj - 0004:0000a6dc ??_C@_0L@KAI@FAD_TRANSP?$AA@ 004696dc libdkit:tinyUtils.obj - 0004:0000a6e8 ??_C@_08OIE@FAD_BLUE?$AA@ 004696e8 libdkit:tinyUtils.obj - 0004:0000a6f4 ??_C@_09GBID@FAD_GREEN?$AA@ 004696f4 libdkit:tinyUtils.obj - 0004:0000a700 ??_C@_07OCD@FAD_RED?$AA@ 00469700 libdkit:tinyUtils.obj - 0004:0000a708 ??_C@_07BPID@FAD_END?$AA@ 00469708 libdkit:tinyUtils.obj - 0004:0000a710 ??_C@_09NHOP@FAD_START?$AA@ 00469710 libdkit:tinyUtils.obj - 0004:0000a71c ??_C@_08MMHJ@MAT_RIND?$AA@ 0046971c libdkit:tinyUtils.obj - 0004:0000a728 ??_C@_0L@GDIA@MAT_TRSP_J?$AA@ 00469728 libdkit:tinyUtils.obj - 0004:0000a734 ??_C@_08MEKA@MAT_TRSP?$AA@ 00469734 libdkit:tinyUtils.obj - 0004:0000a740 ??_C@_09KEJL@MAT_RFL_J?$AA@ 00469740 libdkit:tinyUtils.obj - 0004:0000a74c ??_C@_08PFHK@MAT_REFL?$AA@ 0046974c libdkit:tinyUtils.obj - 0004:0000a758 ??_C@_08LJAO@MAT_EXPN?$AA@ 00469758 libdkit:tinyUtils.obj - 0004:0000a764 ??_C@_0L@MCIO@MAT_SPEC_B?$AA@ 00469764 libdkit:tinyUtils.obj - 0004:0000a770 ??_C@_0L@MCEF@MAT_SPEC_G?$AA@ 00469770 libdkit:tinyUtils.obj - 0004:0000a77c ??_C@_0L@GLPO@MAT_SPEC_R?$AA@ 0046977c libdkit:tinyUtils.obj - 0004:0000a788 ??_C@_0L@KGAM@MAT_DIFF_B?$AA@ 00469788 libdkit:tinyUtils.obj - 0004:0000a794 ??_C@_0L@KGMH@MAT_DIFF_G?$AA@ 00469794 libdkit:tinyUtils.obj - 0004:0000a7a0 ??_C@_0L@PHM@MAT_DIFF_R?$AA@ 004697a0 libdkit:tinyUtils.obj - 0004:0000a7ac ??_C@_09CLLN@MAT_AMB_B?$AA@ 004697ac libdkit:tinyUtils.obj - 0004:0000a7b8 ??_C@_09CLHG@MAT_AMB_G?$AA@ 004697b8 libdkit:tinyUtils.obj - 0004:0000a7c4 ??_C@_09ICMN@MAT_AMB_R?$AA@ 004697c4 libdkit:tinyUtils.obj - 0004:0000a7d0 ??_C@_07OLNF@TXT_ROT?$AA@ 004697d0 libdkit:tinyUtils.obj - 0004:0000a7d8 ??_C@_08IJFO@TXT_NORM?$AA@ 004697d8 libdkit:tinyUtils.obj - 0004:0000a7e4 ??_C@_08PEKI@TXT_RIND?$AA@ 004697e4 libdkit:tinyUtils.obj - 0004:0000a7f0 ??_C@_08PMHB@TXT_TRSP?$AA@ 004697f0 libdkit:tinyUtils.obj - 0004:0000a7fc ??_C@_08MNKL@TXT_REFL?$AA@ 004697fc libdkit:tinyUtils.obj - 0004:0000a808 ??_C@_08OJHN@TXT_SPEC?$AA@ 00469808 libdkit:tinyUtils.obj - 0004:0000a814 ??_C@_08JOBP@TXT_DIFF?$AA@ 00469814 libdkit:tinyUtils.obj - 0004:0000a820 ??_C@_07EHND@TXT_AMB?$AA@ 00469820 libdkit:tinyUtils.obj - 0004:0000a828 ??_C@_09MAFN@TXT_V_OFF?$AA@ 00469828 libdkit:tinyUtils.obj - 0004:0000a834 ??_C@_09CADC@TXT_U_OFF?$AA@ 00469834 libdkit:tinyUtils.obj - 0004:0000a840 ??_C@_09HEEO@TXT_V_SCL?$AA@ 00469840 libdkit:tinyUtils.obj - 0004:0000a84c ??_C@_09JECB@TXT_U_SCL?$AA@ 0046984c libdkit:tinyUtils.obj - 0004:0000a858 ??_C@_07KPE@LIG_INT?$AA@ 00469858 libdkit:tinyUtils.obj - 0004:0000a860 ??_C@_07KKHC@LIG_POS?$AA@ 00469860 libdkit:tinyUtils.obj - 0004:0000a868 ??_C@_0L@OOND@LIG_SHADOW?$AA@ 00469868 libdkit:tinyUtils.obj - 0004:0000a874 ??_C@_07HLGL@LIG_END?$AA@ 00469874 libdkit:tinyUtils.obj - 0004:0000a87c ??_C@_09HDPE@LIG_START?$AA@ 0046987c libdkit:tinyUtils.obj - 0004:0000a888 ??_C@_09MACA@LIG_DECAY?$AA@ 00469888 libdkit:tinyUtils.obj - 0004:0000a894 ??_C@_0L@BBAP@LIG_SPREAD?$AA@ 00469894 libdkit:tinyUtils.obj - 0004:0000a8a0 ??_C@_08CCIL@LIG_CONE?$AA@ 004698a0 libdkit:tinyUtils.obj - 0004:0000a8ac ??_C@_09EEEJ@LIG_COL_B?$AA@ 004698ac libdkit:tinyUtils.obj - 0004:0000a8b8 ??_C@_09EEIC@LIG_COL_G?$AA@ 004698b8 libdkit:tinyUtils.obj - 0004:0000a8c4 ??_C@_09ONDJ@LIG_COL_R?$AA@ 004698c4 libdkit:tinyUtils.obj - 0004:0000a8d0 ??_C@_08OIPH@CAM_FCOC?$AA@ 004698d0 libdkit:tinyUtils.obj - 0004:0000a8dc ??_C@_08DOCF@CAM_FOUT?$AA@ 004698dc libdkit:tinyUtils.obj - 0004:0000a8e8 ??_C@_08FBEF@CAM_FFFC?$AA@ 004698e8 libdkit:tinyUtils.obj - 0004:0000a8f4 ??_C@_08HLNF@CAM_NFFC?$AA@ 004698f4 libdkit:tinyUtils.obj - 0004:0000a900 ??_C@_08CPFE@CAM_FDST?$AA@ 00469900 libdkit:tinyUtils.obj - 0004:0000a90c ??_C@_08HLFG@CAM_FSTP?$AA@ 0046990c libdkit:tinyUtils.obj - 0004:0000a918 ??_C@_08BMBI@CAM_FFCL?$AA@ 00469918 libdkit:tinyUtils.obj - 0004:0000a924 ??_C@_07FOHH@CAM_FAR?$AA@ 00469924 libdkit:tinyUtils.obj - 0004:0000a92c ??_C@_08OPFM@CAM_NEAR?$AA@ 0046992c libdkit:tinyUtils.obj - 0004:0000a938 ??_C@_07DGIA@CAM_FOV?$AA@ 00469938 libdkit:tinyUtils.obj - 0004:0000a940 ??_C@_08MKND@CAM_ROLL?$AA@ 00469940 libdkit:tinyUtils.obj - 0004:0000a94c ??_C@_07FLNA@CAM_INT?$AA@ 0046994c libdkit:tinyUtils.obj - 0004:0000a954 ??_C@_07PLFG@CAM_POS?$AA@ 00469954 libdkit:tinyUtils.obj - 0004:0000a95c ??_C@_09FLAE@MDL_SHAPE?$AA@ 0046995c libdkit:tinyUtils.obj - 0004:0000a968 ??_C@_07LID@MDL_POS?$AA@ 00469968 libdkit:tinyUtils.obj - 0004:0000a970 ??_C@_09EGJF@MDL_ROT_Z?$AA@ 00469970 libdkit:tinyUtils.obj - 0004:0000a97c ??_C@_09LJCM@MDL_ROT_Y?$AA@ 0046997c libdkit:tinyUtils.obj - 0004:0000a988 ??_C@_09BDLL@MDL_ROT_X?$AA@ 00469988 libdkit:tinyUtils.obj - 0004:0000a994 ??_C@_09OILH@MDL_SCL_Z?$AA@ 00469994 libdkit:tinyUtils.obj - 0004:0000a9a0 ??_C@_09BHAO@MDL_SCL_Y?$AA@ 004699a0 libdkit:tinyUtils.obj - 0004:0000a9ac ??_C@_09LNJJ@MDL_SCL_X?$AA@ 004699ac libdkit:tinyUtils.obj - 0004:0000a9d0 ??_C@_04BAK@NULL?$AA@ 004699d0 libdkit:tinyMental.obj - 0004:0000a9d8 ??_C@_08CEIG@internal?$AA@ 004699d8 libdkit:tinyMental.obj - 0004:0000a9e4 ??_C@_06KAE@active?$AA@ 004699e4 libdkit:tinyMental.obj - 0004:0000aa38 __iob 00469a38 LIBC:_file.obj - 0004:0000acb8 __lastiob 00469cb8 LIBC:_file.obj - 0004:0000ae1c __fltused 00469e1c LIBC:fpinit.obj - 0004:0000ae20 __ldused 00469e20 LIBC:fpinit.obj - 0004:0000ae24 ___fastflag 00469e24 LIBC:fpinit.obj - 0004:0000ae28 __adjust_fdiv 00469e28 LIBC:fpinit.obj - 0004:0000ae2c __FPinit 00469e2c LIBC:fpinit.obj - 0004:0000ae30 __FPmtinit 00469e30 LIBC:fpinit.obj - 0004:0000ae34 __FPmtterm 00469e34 LIBC:fpinit.obj - 0004:0000ae38 __aenvptr 00469e38 LIBC:crt0.obj - 0004:0000ae3c __wenvptr 00469e3c LIBC:crt0.obj - 0004:0000ae40 __aexit_rtn 00469e40 LIBC:crt0.obj - 0004:0000ae44 __cflush 00469e44 LIBC:fflush.obj - 0004:0000ae48 __pnhHeap 00469e48 LIBC:malloc.obj - 0004:0000ae50 __stdbuf 00469e50 LIBC:_sftbuf.obj - 0004:0000ae60 ___nullstring 00469e60 LIBC:output.obj - 0004:0000ae74 ___wnullstring 00469e74 LIBC:output.obj - 0004:0000aee0 __cfltcvt_tab 00469ee0 LIBC:cmiscdat.obj - 0004:0000af0c __OP_ASINjmptab 00469f0c LIBC:87triga.obj - 0004:0000af2c __OP_ACOSjmptab 00469f2c LIBC:87triga.obj - 0004:0000af4c __OP_ATANjmptab 00469f4c LIBC:87triga.obj - 0004:0000af6c __OP_ATAN2jmptab 00469f6c LIBC:87triga.obj - 0004:0000afbc _errno 00469fbc LIBC:crt0dat.obj - 0004:0000afc0 __doserrno 00469fc0 LIBC:crt0dat.obj - 0004:0000afc4 __umaskval 00469fc4 LIBC:crt0dat.obj - 0004:0000afc8 __osver 00469fc8 LIBC:crt0dat.obj - 0004:0000afcc __winver 00469fcc LIBC:crt0dat.obj - 0004:0000afd0 __winmajor 00469fd0 LIBC:crt0dat.obj - 0004:0000afd4 __winminor 00469fd4 LIBC:crt0dat.obj - 0004:0000afd8 ___argc 00469fd8 LIBC:crt0dat.obj - 0004:0000afdc ___argv 00469fdc LIBC:crt0dat.obj - 0004:0000afe0 ___wargv 00469fe0 LIBC:crt0dat.obj - 0004:0000afe4 __environ 00469fe4 LIBC:crt0dat.obj - 0004:0000afe8 ___initenv 00469fe8 LIBC:crt0dat.obj - 0004:0000afec __wenviron 00469fec LIBC:crt0dat.obj - 0004:0000aff0 ___winitenv 00469ff0 LIBC:crt0dat.obj - 0004:0000aff4 __pgmptr 00469ff4 LIBC:crt0dat.obj - 0004:0000aff8 __wpgmptr 00469ff8 LIBC:crt0dat.obj - 0004:0000affc __exitflag 00469ffc LIBC:crt0dat.obj - 0004:0000b000 __C_Termination_Done 0046a000 LIBC:crt0dat.obj - 0004:0000b008 __XcptActTab 0046a008 LIBC:winxfltr.obj - 0004:0000b080 __First_FPE_Indx 0046a080 LIBC:winxfltr.obj - 0004:0000b084 __Num_FPE 0046a084 LIBC:winxfltr.obj - 0004:0000b088 __XcptActTabCount 0046a088 LIBC:winxfltr.obj - 0004:0000b08c __fpecode 0046a08c LIBC:winxfltr.obj - 0004:0000b090 __pxcptinfoptrs 0046a090 LIBC:winxfltr.obj - 0004:0000b098 __mbctype 0046a098 LIBC:mbctype.obj - 0004:0000b19c ___mbcodepage 0046a19c LIBC:mbctype.obj - 0004:0000b1a0 ___mblcid 0046a1a0 LIBC:mbctype.obj - 0004:0000b1a8 ___mbulinfo 0046a1a8 LIBC:mbctype.obj - 0004:0000b2b0 __nhandle 0046a2b0 LIBC:ioinit.obj - 0004:0000b2b8 __osfile 0046a2b8 LIBC:ioinit.obj - 0004:0000b2f8 __osfhnd 0046a2f8 LIBC:ioinit.obj - 0004:0000b3f8 __pipech 0046a3f8 LIBC:ioinit.obj - 0004:0000b438 __heap_desc 0046a438 LIBC:heapinit.obj - 0004:0000b44c __heap_resetsize 0046a44c LIBC:heapinit.obj - 0004:0000b450 __amblksiz 0046a450 LIBC:heapinit.obj - 0004:0000b454 __heap_regionsize 0046a454 LIBC:heapinit.obj - 0004:0000b458 __heap_maxregsize 0046a458 LIBC:heapinit.obj - 0004:0000b6c8 __adbgmsg 0046a6c8 LIBC:crt0msg.obj - 0004:0000b6cc __OP_SQRTjmptab 0046a6cc LIBC:87sqrt.obj - 0004:0000b6ec __infinity 0046a6ec LIBC:87tran.obj - 0004:0000b6f6 __minfinity 0046a6f6 LIBC:87tran.obj - 0004:0000b700 __logemax 0046a700 LIBC:87tran.obj - 0004:0000b730 __OP_POWjmptab 0046a730 LIBC:87tran.obj - 0004:0000b780 __OP_LOG10jmptab 0046a780 LIBC:87tran.obj - 0004:0000b7a0 __OP_LOGjmptab 0046a7a0 LIBC:87tran.obj - 0004:0000b7c0 __OP_EXPjmptab 0046a7c0 LIBC:87tran.obj - 0004:0000b7ec __newmode 0046a7ec LIBC:_newmode.obj - 0004:0000b7f8 __pctype 0046a7f8 LIBC:ctype.obj - 0004:0000b7fc __pwctype 0046a7fc LIBC:ctype.obj - 0004:0000b800 __ctype 0046a800 LIBC:ctype.obj - 0004:0000ba04 ___mb_cur_max 0046aa04 LIBC:nlsdata1.obj - 0004:0000ba0c ___decimal_point 0046aa0c LIBC:nlsdata1.obj - 0004:0000ba10 ___decimal_point_length 0046aa10 LIBC:nlsdata1.obj - 0004:0000bb80 __commode 0046ab80 LIBC:ncommode.obj - 0004:0000bbb8 __indefinite 0046abb8 LIBC:87disp.obj - 0004:0000bbc2 __piby2 0046abc2 LIBC:87disp.obj - 0004:0000bbd4 __cpower 0046abd4 LIBC:87disp.obj - 0004:0000bc38 ___lc_handle 0046ac38 LIBC:nlsdata2.obj - 0004:0000bc50 ___lc_codepage 0046ac50 LIBC:nlsdata2.obj - 0004:0000bc54 __fmode 0046ac54 LIBC:txtmode.obj - 0004:0000be54 __matherr_flag 0046ae54 LIBC:matherr.obj - 0004:0000be78 __d_inf 0046ae78 LIBC:util.obj - 0004:0000be80 __d_ind 0046ae80 LIBC:util.obj - 0004:0000be88 __d_max 0046ae88 LIBC:util.obj - 0004:0000be90 __d_min 0046ae90 LIBC:util.obj - 0004:0000be98 __d_mzero 0046ae98 LIBC:util.obj - 0004:0000bea0 ___invalid_mb_chars 0046aea0 LIBC:setmbval.obj - 0004:0000bea8 __pow10pos 0046aea8 LIBC:constpow.obj - 0004:0000c008 __pow10neg 0046b008 LIBC:constpow.obj - 0004:0000c168 _BrStdioFilesystem 0046b168 bren:stdfile.obj - 0004:0000c19c __BrDefaultFilesystem 0046b19c bren:stdfile.obj - 0004:0000c1a0 ??_C@_0M@FGJC@Standard?5IO?$AA@ 0046b1a0 bren:stdfile.obj - 0004:0000c1ac ??_C@_0CI@EKNG@BrStdFileOpenRead?3?5invalid?5open_@ 0046b1ac bren:stdfile.obj - 0004:0000c1d4 ??_C@_02MMAH@rt?$AA@ 0046b1d4 bren:stdfile.obj - 0004:0000c1d8 ??_C@_0N@OGCO@BRENDER_PATH?$AA@ 0046b1d8 bren:stdfile.obj - 0004:0000c1e8 _BrStdioDiagHandler 0046b1e8 bren:stderr.obj - 0004:0000c1f4 __BrDefaultDiagHandler 0046b1f4 bren:stderr.obj - 0004:0000c1f8 ??_C@_0BC@DONA@Stdio?5DiagHandler?$AA@ 0046b1f8 bren:stderr.obj - 0004:0000c20c ??_C@_0BA@NGPO@BRender?5Warning?$AA@ 0046b20c bren:stderr.obj - 0004:0000c21c ??_C@_0BE@CABL@BRender?5Fatal?5Error?$AA@ 0046b21c bren:stderr.obj - 0004:0000c238 _BrStdlibAllocator 0046b238 bren:stdmem.obj - 0004:0000c248 __BrDefaultAllocator 0046b248 bren:stdmem.obj - 0004:0000c24c ??_C@_06OCBH@malloc?$AA@ 0046b24c bren:stdmem.obj - 0004:0000c254 ___fcntrlcomp 0046b254 LIBC:setfcntr.obj - 0004:0000c2b8 ___xc_a 0046b2b8 LIBC:crt0init.obj - 0004:0000c32c ___xc_z 0046b32c LIBC:crt0init.obj - 0004:0000c330 ___xi_a 0046b330 LIBC:crt0init.obj - 0004:0000c340 ___xi_z 0046b340 LIBC:crt0init.obj - 0004:0000c344 ___xp_a 0046b344 LIBC:crt0init.obj - 0004:0000c34c ___xp_z 0046b34c LIBC:crt0init.obj - 0004:0000c350 ___xt_a 0046b350 LIBC:crt0init.obj - 0004:0000c354 ___xt_z 0046b354 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0046c000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0046c014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0046c028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0046c03c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 0046c050 kernel32:KERNEL32.dll - 0005:0000013c __imp__DeleteCriticalSection@4 0046c13c kernel32:KERNEL32.dll - 0005:00000140 __imp__IsBadReadPtr@8 0046c140 kernel32:KERNEL32.dll - 0005:00000144 __imp__GlobalAlloc@8 0046c144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GlobalFree@4 0046c148 kernel32:KERNEL32.dll - 0005:0000014c __imp__EnterCriticalSection@4 0046c14c kernel32:KERNEL32.dll - 0005:00000150 __imp__LeaveCriticalSection@4 0046c150 kernel32:KERNEL32.dll - 0005:00000154 __imp__GetCurrentThreadId@0 0046c154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GlobalReAlloc@12 0046c158 kernel32:KERNEL32.dll - 0005:0000015c __imp__GlobalSize@4 0046c15c kernel32:KERNEL32.dll - 0005:00000160 __imp__WideCharToMultiByte@32 0046c160 kernel32:KERNEL32.dll - 0005:00000164 __imp__IsBadWritePtr@8 0046c164 kernel32:KERNEL32.dll - 0005:00000168 __imp__CreateFileA@28 0046c168 kernel32:KERNEL32.dll - 0005:0000016c __imp__CloseHandle@4 0046c16c kernel32:KERNEL32.dll - 0005:00000170 __imp__DeleteFileA@4 0046c170 kernel32:KERNEL32.dll - 0005:00000174 __imp__FlushFileBuffers@4 0046c174 kernel32:KERNEL32.dll - 0005:00000178 __imp__SetFilePointer@16 0046c178 kernel32:KERNEL32.dll - 0005:0000017c __imp__SetEndOfFile@4 0046c17c kernel32:KERNEL32.dll - 0005:00000180 __imp__ReadFile@20 0046c180 kernel32:KERNEL32.dll - 0005:00000184 __imp__WriteFile@20 0046c184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetFullPathNameA@16 0046c188 kernel32:KERNEL32.dll - 0005:0000018c __imp__SearchPathA@24 0046c18c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetTempPathA@8 0046c190 kernel32:KERNEL32.dll - 0005:00000194 __imp__GetLastError@0 0046c194 kernel32:KERNEL32.dll - 0005:00000198 __imp__GetFileAttributesA@4 0046c198 kernel32:KERNEL32.dll - 0005:0000019c __imp__InitializeCriticalSection@4 0046c19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__RtlUnwind@16 0046c1a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__UnhandledExceptionFilter@4 0046c1a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__SetEnvironmentVariableA@8 0046c1a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__RaiseException@16 0046c1ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__ExitProcess@4 0046c1b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__SetStdHandle@8 0046c1b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__VirtualAlloc@16 0046c1b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__VirtualFree@12 0046c1bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__GetModuleHandleA@4 0046c1c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__MultiByteToWideChar@24 0046c1c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__GetEnvironmentStrings@0 0046c1c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__GetCommandLineA@0 0046c1cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__GetVersion@0 0046c1d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__GetProcAddress@8 0046c1d4 kernel32:KERNEL32.dll - 0005:000001d8 __imp__LoadLibraryA@4 0046c1d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__GetStartupInfoA@4 0046c1dc kernel32:KERNEL32.dll - 0005:000001e0 __imp__GetStdHandle@4 0046c1e0 kernel32:KERNEL32.dll - 0005:000001e4 __imp__GetModuleFileNameA@12 0046c1e4 kernel32:KERNEL32.dll - 0005:000001e8 __imp__GetACP@0 0046c1e8 kernel32:KERNEL32.dll - 0005:000001ec __imp__GetOEMCP@0 0046c1ec kernel32:KERNEL32.dll - 0005:000001f0 __imp__GetCPInfo@8 0046c1f0 kernel32:KERNEL32.dll - 0005:000001f4 __imp__GetFileType@4 0046c1f4 kernel32:KERNEL32.dll - 0005:000001f8 \177KERNEL32_NULL_THUNK_DATA 0046c1f8 kernel32:KERNEL32.dll - 0005:000001fc __imp__CharUpperBuffA@8 0046c1fc user32:USER32.dll - 0005:00000200 __imp__MessageBoxA@16 0046c200 user32:USER32.dll - 0005:00000204 \177USER32_NULL_THUNK_DATA 0046c204 user32:USER32.dll - 0005:00000208 __imp__timeGetTime@0 0046c208 winmm:WINMM.dll - 0005:0000020c \177WINMM_NULL_THUNK_DATA 0046c20c winmm:WINMM.dll - 0005:00000210 \177comdlg32_NULL_THUNK_DATA 0046c210 comdlg32:comdlg32.dll - - entry point at 0001:0004eb79 - - Static symbols - - 0001:00031f80 _$$8000 00432f80 f mssio.obj - 0001:00031fe0 _$$1000 00432fe0 f mssio.obj - 0001:00031240 _$$1000 00432240 f mbmp.obj - 0001:00031cb0 _$$a200 00432cb0 f mbmp.obj - 0001:00031cd0 _$$8000 00432cd0 f mbmp.obj - 0001:000311e0 _$$8000 004321e0 f screxe.obj - 0001:00031200 _$$1000 00432200 f screxe.obj - 0001:00031220 _$$9000 00432220 f screxe.obj - 0001:0002ffd0 _$$1000 00430fd0 f stream.obj - 0001:00031180 _$$8000 00432180 f stream.obj - 0001:0002e7a0 _$$1000 0042f7a0 f lex.obj - 0001:0002fe90 _$$8000 00430e90 f lex.obj - 0001:0002e1d0 _$$1000 0042f1d0 f scrcom.obj - 0001:0002e1f0 _$$8000 0042f1f0 f scrcom.obj - 0001:0002d630 _$$1000 0042e630 f chse.obj - 0001:0002e140 _$$8000 0042f140 f chse.obj - 0001:0002cf40 _$$1000 0042df40 f groups2.obj - 0001:0002cf60 _$$8000 0042df60 f groups2.obj - 0001:00028570 _$$1000 00429570 f groups.obj - 0001:0002cd20 _$$8000 0042dd20 f groups.obj - 0001:000263d0 _$$8000 004273d0 f fniwin.obj - 0001:00026870 _$$1000 00427870 f fniwin.obj - 0001:00027f60 _$$9000 00428f60 f fniwin.obj - 0001:00027f80 _$$a000 00428f80 f fniwin.obj - 0001:00027fa0 _$$b000 00428fa0 f fniwin.obj - 0001:00025db0 _$$1000 00426db0 f filewin.obj - 0001:000263b0 _$$8000 004273b0 f filewin.obj - 0001:00022b50 _$$8000 00423b50 f file.obj - 0001:00023010 _$$1000 00424010 f file.obj - 0001:00025670 _$$9000 00426670 f file.obj - 0001:00025690 _$$a000 00426690 f file.obj - 0001:000256b0 _$$b000 004266b0 f file.obj - 0001:00021d50 _$$1000 00422d50 f crf.obj - 0001:00022af0 _$$8000 00423af0 f crf.obj - 0001:0001a460 _$$1000 0041b460 f codkauai.obj - 0001:00021a70 _$$8000 00422a70 f codkauai.obj - 0001:000195a0 _$$1000 0041a5a0 f codec.obj - 0001:00019f30 _$$8000 0041af30 f codec.obj - 0001:00014410 _$$1000 00415410 f chunk.obj - 0001:00019000 _$$8000 0041a000 f chunk.obj - 0001:00014000 _$$1000 00415000 f memwin.obj - 0001:000140d0 _$$8000 004150d0 f memwin.obj - 0001:00012610 _$$1000 00413610 f utilstr.obj - 0001:00013af0 _$$8000 00414af0 f utilstr.obj - 0001:00011d20 _$$1000 00412d20 f utilrnd.obj - 0001:00012200 _$$8000 00413200 f utilrnd.obj - 0001:00010c80 _$$1000 00411c80 f utilmem.obj - 0001:00011850 _$$8000 00412850 f utilmem.obj - 0001:000100b0 _$$1000 004110b0 f utilint.obj - 0001:00010730 _$$8000 00411730 f utilint.obj - 0001:0000f8b0 _$$8000 004108b0 f utilerro.obj - 0001:0000fdf0 _$$1000 00410df0 f utilerro.obj - 0001:0000ffe0 _$$9000 00410fe0 f utilerro.obj - 0001:00010000 _$$a000 00411000 f utilerro.obj - 0001:00010020 _$$b000 00411020 f utilerro.obj - 0001:0000f570 _$$1000 00410570 f utilcopy.obj - 0001:0000f890 _$$8000 00410890 f utilcopy.obj - 0001:0000e550 _$$1000 0040f550 f base.obj - 0001:0000f260 _$$8000 00410260 f base.obj - 0001:0000def0 _$$8000 0040eef0 f util.obj - 0001:0000df10 _$$1000 0040ef10 f util.obj - 0001:0000da40 _$$8000 0040ea40 f utilglob.obj - 0001:0000dab0 _$$9000 0040eab0 f utilglob.obj - 0001:0000db10 _$$a000 0040eb10 f utilglob.obj - 0001:0000db30 _$$b000 0040eb30 f utilglob.obj - 0001:0000dc20 _$$1000 0040ec20 f utilglob.obj - 0001:00000d20 _$$1000 00401d20 f sitobren.obj - 0001:000049d0 _$$8000 004059d0 f sitobren.obj - 0001:00007d20 _$$7300 00408d20 f sitobren.obj - 0001:00009e10 ?WrapAddVertex@@YGHPAUbr_vertex@@@Z 0040ae10 f sitobren.obj - 0001:0000d460 _$$1400 0040e460 f sitobren.obj - 0001:00056af0 _BrStdlibAllocate 00457af0 f bren:stdmem.obj - 0001:00056b60 _BrStdlibFree 00457b60 f bren:stdmem.obj - 0001:00056bb0 _BrStdlibInquire 00457bb0 f bren:stdmem.obj - 0001:00056aa0 _BrStdioWarning 00457aa0 f bren:stderr.obj - 0001:00056ac0 _BrStdioError 00457ac0 f bren:stderr.obj - 0001:00056530 _BrStdioAttributes 00457530 f bren:stdfile.obj - 0001:00056810 _BrStdioOpenWrite 00457810 f bren:stdfile.obj - 0001:00056860 _BrStdioClose 00457860 f bren:stdfile.obj - 0001:00056880 _BrStdioEof 00457880 f bren:stdfile.obj - 0001:000568a0 _BrStdioGetChar 004578a0 f bren:stdfile.obj - 0001:00056900 _BrStdioPutChar 00457900 f bren:stdfile.obj - 0001:00056950 _BrStdioRead 00457950 f bren:stdfile.obj - 0001:00056980 _BrStdioWrite 00457980 f bren:stdfile.obj - 0001:000569b0 _BrStdioGetLine 004579b0 f bren:stdfile.obj - 0001:00056a80 _BrStdioAdvance 00457a80 f bren:stdfile.obj - 0001:000320d0 _$$1000 004330d0 f bren:tmap.obj - 0001:00032b40 _$$f200 00433b40 f bren:tmap.obj - 0001:00032ba0 _$$8000 00433ba0 f bren:tmap.obj - 0001:0004d649 _DK_udfReadOldBinary 0044e649 f libdkit:tinyMental.obj - 0001:0004c011 _DK_controlPointsReadAscii 0044d011 f libdkit:tinyPatch.obj - 0001:0004c0e4 _DK_taggedPointsReadAscii 0044d0e4 f libdkit:tinyPatch.obj - 0001:0004b44e _polygonNodeReadAscii 0044c44e f libdkit:tinyMesh.obj - 0001:0004a2b2 _DK_metaGroupReadAscii 0044b2b2 f libdkit:tinyMetaball.obj - 0001:00048e92 _DK_nurbsPointsAllocate 00449e92 f libdkit:tinyNurbs.obj - 0001:00048ef5 _DK_knotsAllocate 00449ef5 f libdkit:tinyNurbs.obj - 0001:00048f06 _DK_nurbsCrvAsciiReadCVs 00449f06 f libdkit:tinyNurbs.obj - 0001:00048ff0 _DK_nurbsCrvAsciiReadKnots 00449ff0 f libdkit:tinyNurbs.obj - 0001:000490a8 _nurbsCompCrvBinaryRead 0044a0a8 f libdkit:tinyNurbs.obj - 0001:00049204 _DK_nurbsSrfAsciiReadCVs 0044a204 f libdkit:tinyNurbs.obj - 0001:000492ee _DK_nurbsSrfAsciiReadKnots 0044a2ee f libdkit:tinyNurbs.obj - 0001:000498a0 _DK_nurbsSrfReadTrims 0044a8a0 f libdkit:tinyNurbs.obj - 0001:00047b71 _DK_splineReadControlPointsAscii 00448b71 f libdkit:tinySpline.obj - 0001:00047dcb _DK_bezierGetSegmentByName 00448dcb f libdkit:tinySpline.obj - 0001:00047dfc _DK_bezierGetConstraintByName 00448dfc f libdkit:tinySpline.obj - 0001:000473c0 _DK_materialGetTypeByName 004483c0 f libdkit:tinyMaterial.obj - 0001:00045bca _DK_textureGetAnimationByName 00446bca f libdkit:tinyTexture.obj - 0001:00045bf7 _DK_textureGetMethodByName 00446bf7 f libdkit:tinyTexture.obj - 0001:0004693b _DK_texture3DGetTypeByName 0044793b f libdkit:tinyTexture.obj - 0001:000449ed _DK_klusterAddToList 004459ed f libdkit:tinyCluster.obj - 0001:0004424d _shapeLevelAsciiRead 0044524d f libdkit:tinyDynamics.obj - 0001:00042d4f _DK_modelAlgoTypeReadAscii 00443d4f f libdkit:tinyActor.obj - 0001:00042f52 _invKinReadAscii 00443f52 f libdkit:tinyActor.obj - 0001:00043049 _DK_envelopVertReadBinaryChunk 00444049 f libdkit:tinyActor.obj - 0001:000436a8 _DK_envelopVertReadAscii 004446a8 f libdkit:tinyActor.obj - 0001:00043821 _envelopReadAscii 00444821 f libdkit:tinyActor.obj - 0001:00043dc3 _DK_oEnvelopeVertReadBinaryChunk 00444dc3 f libdkit:tinyActor.obj - 0001:00041a13 _DK_modelReadAsciiFile 00442a13 f libdkit:tinyModel.obj - 0001:00041b14 _DK_modelReadBinaryFile 00442b14 f libdkit:tinyModel.obj - 0001:0005747b _findenv 0045847b f LIBC:setenv.obj - 0001:000574d8 _copy_environ 004584d8 f LIBC:setenv.obj - 0001:00056f82 _strncnt 00457f82 f LIBC:aw_cmp.obj - 0001:000552bf _strncnt 004562bf f LIBC:aw_map.obj - 0001:00054998 __before 00455998 f LIBC:heapadd.obj - 0001:00053771 __abstract_cw 00454771 f LIBC:ieee87.obj - 0001:00053804 __hw_cw 00454804 f LIBC:ieee87.obj - 0001:00052d85 __heap_new_region 00453d85 f LIBC:heapgrow.obj - 0001:00052b92 __hextodec 00453b92 f LIBC:input.obj - 0001:00052bcb __inc 00453bcb f LIBC:input.obj - 0001:00052bee __un_inc 00453bee f LIBC:input.obj - 0001:00052c05 __whiteout 00453c05 f LIBC:input.obj - 0001:00051c95 __heap_grow_emptylist 00452c95 f LIBC:heapinit.obj - 0001:00051949 _getSystemCP 00452949 f LIBC:mbctype.obj - 0001:00051984 _CPtoLCID 00452984 f LIBC:mbctype.obj - 0001:000519c3 _setSBCS 004529c3 f LIBC:mbctype.obj - 0001:0005177f _parse_cmdline 0045277f f LIBC:stdargv.obj - 0001:000515f1 _xcptlookup 004525f1 f LIBC:winxfltr.obj - 0001:000513f4 __unwind_handler 004523f4 f LIBC:exsup.obj - 0001:00051321 _doexit 00452321 f LIBC:crt0dat.obj - 0001:000513a0 __initterm 004523a0 f LIBC:crt0dat.obj - 0001:00050813 __cftoe_g 00451813 f LIBC:cvt.obj - 0001:00050934 __cftof_g 00451934 f LIBC:cvt.obj - 0001:00050a50 __shift 00451a50 f LIBC:cvt.obj - 0001:0005011f _write_char 0045111f f LIBC:output.obj - 0001:0005015f _write_multi_char 0045115f f LIBC:output.obj - 0001:00050190 _write_string 00451190 f LIBC:output.obj - 0001:000501c7 _get_int_arg 004511c7 f LIBC:output.obj - 0001:000501d6 _get_int64_arg 004511d6 f LIBC:output.obj - 0001:000501ea _get_short_arg 004511ea f LIBC:output.obj - 0001:0004f37a __heap_expand_block 0045037a f LIBC:realloc.obj - 0001:0004f053 _flsall 00450053 f LIBC:fflush.obj - -FIXUPS: 57515 c ffff85c6 44 13 13 fffffe9a 2d 32 fffffe8e 1a ffffff05 14 -FIXUPS: 4f817 fffffe7f ffffffa5 ffffffbb 18 a 18 ffffff4c 5 a fffff1ff -FIXUPS: 4e7a4 13 ffffff8e b b 1b ffffff83 18 10 8dec ffff8b3e 2f 19 2b -FIXUPS: 500cc fffffe7f ffffffba ffffffb5 a 18 a fffffef8 a ffffffbf 20 -FIXUPS: 4fcbd 20 fffffef8 c 5 10 10 5 1c 9 15 f 1f 9 fffffef5 ffffff46 -FIXUPS: 4fad5 c5b 15 2f fffffe78 ab 2e fffffefd ffffffbe fffffece 43 3b -FIXUPS: 503f0 35 fffffe73 16 33 1f d 23 23 fffffd9f 2d f e c 3d 55 ffffff05 -FIXUPS: 4ffa6 b 21 42 a10 9b 1d 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 -FIXUPS: 50f38 96 14 1c 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 fffffef1 -FIXUPS: 515f8 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d 36 47 11 2c 16 13 -FIXUPS: 51a71 fffffa90 9a ffffff10 ffffff84 fffffe75 ffffff8c c d 20 d -FIXUPS: 509d8 1c92 2a 11 fffffdf5 ffffff4e fffffefd 12 11 11 5d 12 fffffe07 -FIXUPS: 52282 fffffe16 d 2b 1a 1f fffffde4 fb fffffdb9 18 fffffd83 3d 49 -FIXUPS: 51cf4 31 fffffdbf 1f 7 10 fffffabd 2648 fffff4cf ffffffb7 ffffffe1 -FIXUPS: 52ebc 12 1d 5 55 3c 7 2f b2 15 fffffdf9 ffffff70 18 ffffff70 d -FIXUPS: 52db1 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 -FIXUPS: 5352a 178 20 55 19 33 64 29 13 2f 13 3a 24 c 18 2d 11 37 11 56 -FIXUPS: 539e1 20 30 11 72 2b 34 d 84 42 17 17 ad3 e fffff99d ffffffaf 26 -FIXUPS: 53ff0 ffffff1c 2c fffffe2f c 75 d 96 d c 32 fffff277 27 9 12 61 -FIXUPS: 53306 e a1 2c 2e 23 20 2e 36 2d 16 1725 1d 12 1f 20 d f 13 17 13 -FIXUPS: 54d07 5b 16 22 f 22 f fffffafe 64 ffffff58 fffffe9a 17 24 fffffe3a -FIXUPS: 545f4 2b 29 33 1c 1a 14 e 15a0 92 10e 49 c6 4f fffff7f6 10 10 18 -FIXUPS: 55840 3e 24 d 41 34 fffffe0b fffffdc7 a4 22 fffffd28 78 10 18 e -FIXUPS: 54e70 1a fffffb77 17 67 e 177 1da1 10 c fffffbbc 14 18 18 b0 9 -FIXUPS: 56688 9 29 4d fffffc51 c2 75 c 1e 77 c fffffc58 2e 19 31 1e 2d -FIXUPS: 56267 9 37 fffffe9b 38 fffffa34 23af ffffff9b 28 fffffe0f bd 21 -FIXUPS: 57cc7 f e ffffff2c 50 ffffff6f 20 fffff76a 47 3e 110 fffffc77 1c -FIXUPS: 56b6b 133 ef 21 26 10d aa 1f fffff928 1a 65 1d 2b fffece84 26 16 -FIXUPS: 43872 26 13 d 2a 13 10 19 14c3f fffffd38 3a 2a 27 2b 2a 39 2d 37 -FIXUPS: 5845f 3a 6c 12 14 fffffaf2 15 1a0 52 3e b fffeb2cc 19 14 19 14 -FIXUPS: 435ac 18 19 14 19 14 19 14 19 14 19 e 16 13 d 26 13 d 26 13 d 26 -FIXUPS: 43799 19 19 23 16 fffff911 1c 22 24 1d 11 17 d 19 4b 13 10 13 14 -FIXUPS: 4328e 17 2e ce 28 11 20 18 d 19 1e 16 1e 3a 1e 16 14 19 fffff8c9 -FIXUPS: 42e1e 22 10 d 12 d 30 16 1c 18 1c 1d 24 e 15 19 20 1c a 1c 1b 14 -FIXUPS: 4303c 20 1b 16 1c 13 19 16 16 fffff9df 17 e 1d 13 f b 29 47 28 -FIXUPS: 42bf5 19 27 f 12 12 12 12 12 12 12 40 22 10 d 12 d 30 22 10 d 12 -FIXUPS: 427e3 13 1e 14 f 11 11 16 11 13 1d 27 14 17 56 18 14 17 14 1b 9 -FIXUPS: 429eb 1c 21 17 1d 11 f b b 27 13 fffffa81 2d 11 11 11 11 11 11 -FIXUPS: 425f1 10 18 10 17 18 11 11 14 14 14 14 14 14 11 11 13 1d 1d 1e -FIXUPS: 42793 14 14 14 27f0 23 e 18 c 1b e 1b e 1b e 1b e 15 19 ffffe917 -FIXUPS: 43a14 38 1e 2f 16 16 13 10 fffffe6a 29 24 f 20 ffffe907 24b 16 -FIXUPS: 44ca3 23 2f 16 1d b 13 14 11 47 2b 16 11 11 11 11 3f 1c 11 12 14 -FIXUPS: 44edd 12 14 14 14 a 12 25 1b e 18 fffffa00 14 18 12 23 14 18 14 -FIXUPS: 44a66 14 18 14 18 12 23 14 18 14 18 14 18 14 18 16 15 13 19 23 -FIXUPS: 44c4c 16 15 13 fffffa9f 1b 12 1e 18 19 1c 1c 11 9 13 21 22 14 13 -FIXUPS: 44886 1b 11 d d 15 11 d d 18 11 d d 18 11 d 10 fffff98f 13 18 18 -FIXUPS: 4437f c 1e 10 23 20 18 18 18 18 18 13 1e 22 28 1e 22 28 1d 13 18 -FIXUPS: 44602 2a 89 13 10 1f 1f fffff776 23 23 23 1a 15 11 11 15 1f 13 -FIXUPS: 43fa0 11 1b 11 1c 11 d d 16 1a 4e 3c 1b 24 28 2c 2d fc 28 15 35 -FIXUPS: 456fc 11 13 14 a a 9 13 16 22 14 11 ffffe34d 1e cd 1c 6b 32 c 19 -FIXUPS: 43cf8 1b 28 21 1f 13 2d 26 2a 22 13 26 1581 13 13 13 13 14 30 20 -FIXUPS: 454b6 14 13 e 15 11 15 11 15 11 18 11 18 11 18 d 1d 1b 25 38 1f -FIXUPS: 45698 29 1c 529 27 d 20 1f 19 15 12 20 17 17 9 fffff3ea 3d 23 60 -FIXUPS: 451da 2b 13 26 15 13 1f 1d 1d 1d 30 17 1f 3a 45 13 411 17 49 1b -FIXUPS: 45880 1b 17 e 29 16 35 17 1b 3f f 16 14 1b 68 36 10 b 20 2a 2a -FIXUPS: 45b40 3a 26 17 10 b 22 1b87 16 27 16 19 16 19 16 19 16 19 16 19 -FIXUPS: 478b6 19 13 d 19 1b 2c ffffe4c2 17 13 ffffff02 12 19 10 f 27 19 -FIXUPS: 45dd7 f 1631 16 16 25 19 14 21 24 19 14 21 24 16 16 22 16 22 16 -FIXUPS: 475fe 16 22 16 16 16 22 16 19 16 22 16 27 16 fffff7e9 1d 2d 16 -FIXUPS: 46fb3 8d 13 13 13 13 34 3e 1c 2e 147 1f 12 11 1f 11 d 18 19 f 19 -FIXUPS: 4737d 16 16 16 16 16 16 fffff58e 20 20 1f 16 16 19 19 16 16 c 1c -FIXUPS: 46aab d 2d f9 30 29 15c 16 18 11 f f f 2c 3e 28 e 18 1d 45 fffff738 -FIXUPS: 4665e 19 1b 23 41 2b e 19 1e 16 16 16 16 16 16 17 1e 16 16 16 16 -FIXUPS: 4688d 17 16 17 2f 17 1f 16 16 16 fffff999 16 16 16 16 16 16 16 -FIXUPS: 463c1 16 16 16 16 16 25 19 14 21 24 19 14 21 24 16 16 26 16 27 -FIXUPS: 465dd 27 13 27 fffff9f4 18 11 f f f 26 1f 12 11 1f 11 d 18 19 f -FIXUPS: 46186 19 f 19 1a 16 1a 16 1a 16 1e 1e 1e 1e 16 16 1e64 16 16 16 -FIXUPS: 481b7 16 16 16 16 16 19 16 19 16 19 16 d 1c d 1c d 19 11 d 1f 13 -FIXUPS: 48387 21 2f ffffda89 1a5 16 1ddf 21 10 9 10 10 33 18 18 c 15 15 -FIXUPS: 47f24 8a 1f 12 11 1a 11 d 18 19 f 19 1e 16 1e 16 1e 16 16 16 fffff97f -FIXUPS: 47ad9 e 11 f f f f f 29 3f 28 e 1b 23 19 19 19 19 16 16 2b 19 19 -FIXUPS: 47d22 21 27 21 10 9 10 10 d73 22 2f 23 14 1d 31 1e 19 1b 19 1e -FIXUPS: 48caf 19 f 1d 19 f 1a 16 11 16 11 19 18 2c 31 51 79 ffffea98 126 -FIXUPS: 47ab0 d68 45 26 26 11 1d 11 d 18 19 f 19 20 20 16 16 16 16 16 16 -FIXUPS: 48a2b f 1a 19 f 1a e 16 1d d 13 1b 1ebc 23 32 11 d ffffd9b4 69 -FIXUPS: 48474 13 24 61 3f 28 16 2d f 2f 24 19 19 19 1c f 4c 39 10 10 10 -FIXUPS: 48767 2e 2d 33 1e5f 16 16 16 16 16 16 23 23 19 16 16 1c 16 1c 20 -FIXUPS: 4a7f1 1a b 28 12 12 28 28 2b 12 12 a 5f 11 21 1c fffff96f 1d 1f -FIXUPS: 4a379 16 13 16 16 16 16 16 23 23 19 16 16 1c 16 1c 20 20 1a b 2c -FIXUPS: 4a58c 12 28 15 11 1d 1f 16 fffff867 59 18 20 11 1c 1c 22 39 26 -FIXUPS: 4a020 11 18 1c 16 1b 1e 65 33 13 13 12 1c 45 2f 20 11 1c 1c 22 -FIXUPS: 4a2d8 3e fffff887 10 11 10 16 16 16 16 16 20 20 e 13 19 16 16 35 -FIXUPS: 49d30 16 19 16 19 16 19 16 19 13 16 2f 16 f 11 fffffa5e 1f 11 13 -FIXUPS: 49931 16 16 16 16 16 16 16 c 15 1e 20 16 16 16 16 16 13 1b 1d e -FIXUPS: 49b01 e 11 22 1f 11 1a fffff9ab a 11 16 11 11 11 16 16 16 22 2a -FIXUPS: 4963f 16 16 19 19 19 19 19 19 19 16 38 19 16 16 16 13 49 89 1f -FIXUPS: 49176 1b 18 1d 3c 5c 21 b 29 19 2b e a 1b 25 2f 25 3e 32 13 11 -FIXUPS: 4944d 11 12 29 19 21 11 19 e a 14 1e52 62 39 23 20 50 40 9 29 10 -FIXUPS: 4b53a 10 46 10 9 2c 10 10 10 26 ffffd8d0 4e eb 1b 18 29 1b 1b 2d -FIXUPS: 4910c 18 39 1f58 b c 33 17 45 26 1f 11 1a 11 13 13 16 10 1d e 13 -FIXUPS: 4b273 b b 11 24 22 11 16 11 d 15 d a 11 fffff920 1a 11 16 16 16 -FIXUPS: 4ad05 1e 13 4f 11 1c 41 24 11 1c 43 42 15 19 19 16 1d 35 27 b 15 -FIXUPS: 4afd6 d 3d 31 47 1316 1b 1b 19 1c 1c 33 f 6c 11 1f 1f 18 13 23 -FIXUPS: 4c593 1f 11 ffffe4c7 76 1a 44 3c 14 11 10 10 10 d 30 26 1f 140b -FIXUPS: 4c08d 1a 11 19 18 21 20 d 1b 3a 10 19 19 19 16 11 1a 11 1c 18 21 -FIXUPS: 4c2ae d 1b 37 17 19 1a 11 1a 11 fffff8e7 d 4d 2a 13 17 21 11 2e -FIXUPS: 4bdbd 2e 54 23 14 1d 14 1d 14 1d 14 21 21 1f 21 19 19 19 d 1b 34 -FIXUPS: 4c04d 19 fffff6f9 3b 37 3f 28 16 3f 18 d 49 21 10 10 2e 38 28 d -FIXUPS: 4ba23 37 13 13 f 4d 2f 13 26 23 17 2e 3c 2e 3c b74 21 17 16 43 -FIXUPS: 4c879 1b 48 20 1c c 20 11 10 1f 29 11 15 15 16 12 11 e 31 e ffffec04 -FIXUPS: 4b6b2 20 18 12 a 1f 1c26 16 16 16 16 16 16 16 16 16 16 2f 16 16 -FIXUPS: 4d495 13 13 3e 3b fffff0aa 3f 20 1c 25 14 25 44 3a 19 22 17 1a -FIXUPS: 4cfb5 25 e 11 33 2c 11 18 25 1b 11 2c 18 11 19 11 16 1a 1d 3b 32 -FIXUPS: 4d221 1c 1d 11 16 1b 2e 29 16 16 16 fffff999 16 16 16 16 16 16 -FIXUPS: 4cd68 16 16 16 16 1e 1e 1e 1e e 13 16 16 16 2b 16 16 16 16 16 16 -FIXUPS: 4cf60 16 16 13 1059 d 12 11 16 a 16 1d 20 5f 17 ffffe970 8f a 21 -FIXUPS: 4cb43 1f 11 1f 11 19 f 18 19 f 19 16 16 16 16 1e 1e ff7 12 12 12 -FIXUPS: 4dcf7 15 15 15 15 15 15 15 15 15 15 a 27 12 1e d 2c 6f 13 16 11 -FIXUPS: 4df31 2a 1f 1c 2b 1b e fffff7ea 21 21 21 21 21 21 24 24 24 24 24 -FIXUPS: 4d972 21 21 21 2f 1d 97 10d 12 12 12 12 12 12 12 12 12 12 12 12 -FIXUPS: 4e694 9 b 9 1f fffffa64 30 42 30 32 25 30 32 24 30 32 fffff2a8 -FIXUPS: 4d5d8 1f 3e 14 21 20 21 21 21 21 21 21 21 21 21 fffe65c8 fffffff6 -FIXUPS: 33d55 1a5d8 2f 16 16 60 57 b 16 1c 1c 4e e 13 13 16 1b 1f 11 1f -FIXUPS: 4e5ab d 15 1b 1b 16 18 44 b 9 fffe856f ffffffdc ffffffee ffffff87 -FIXUPS: 36b15 ffffffcc ffffffc7 fffffefe ffffff3c ffffffe4 ffffffd1 ffffffdc -FIXUPS: 36ca2 ffffe3e1 fffffff4 ffffff8e fffffff5 ffffff94 fffffff5 ffffff94 -FIXUPS: 34f0c ba6 ffffff13 ffffff41 1fe ffffe33e ffffffb2 ffffffe8 ffffffde -FIXUPS: 33d99 fffffff6 fffffff6 4cae ffffffc0 ffffffe7 728 ffffffc3 ffffff56 -FIXUPS: 38fdb ffffff12 ffffff8a ffffff92 ffffffd8 ffffeba4 ffffffe4 fffffeb3 -FIXUPS: 377f2 fffffff3 ffffff9e ffffffb0 ffffffea ffffffd9 ffffffd5 ffffffc6 -FIXUPS: 3762d ffffffea ffffffcc ffffffeb ffffffd5 ffffffeb fffff9e0 fffffec1 -FIXUPS: 36e24 2c8 1297 ffffffec ffffffd3 ffffffc8 ffffffe5 ffffff96 ffffffec -FIXUPS: 38252 ffffffbc ffffffe3 ffffffd8 728 ffffff1b ffffffbb ffffffd0 -FIXUPS: 38769 ffffff9c ffffff99 ffffff73 ffffffea 746 ffffffe8 ffffff9e -FIXUPS: 38ca8 ffffffc4 ffffffec ffffff9f ffffffea ffffffdc ffffff27 ffffffe2 -FIXUPS: 38a58 d41 ffffffbf ffffffad ffffffba ffffffd3 ffffffcd ffffffe5 -FIXUPS: 39629 ffffffe8 ffffffe1 ffffffe4 69e ffffffde ffffffdb ffffffd6 -FIXUPS: 39be8 ffffffe9 ffffffe0 ffffffdf ffffffe7 ffffffe8 fffffe67 ffffe3cc -FIXUPS: 37d5a ffffff99 48e ffffff6f fffffe87 ffffffdb fffffe79 651 ffffffdb -FIXUPS: 394bc ffffffec ffffffe8 ffffffe5 ffffffe8 ffffffd3 ffffffbc ffffffe8 -FIXUPS: 3938a ffffffec ffffffe6 ffffffe8 ffffffe6 ffffffe5 ffffffe8 ffffffd3 -FIXUPS: 3927e fffffff5 ffffffb5 ffffffec ffffffd6 fffffff5 7b0 ffffffcc -FIXUPS: 39910 ffffffbe fffffff3 ffffffcc ffffff97 ffffffdc ffffffcc ffffffe5 -FIXUPS: 3a08e ffffffed ffffffee ffffffec 72e ffffffb7 ffffffce ffffffcd -FIXUPS: 3a69f fffffe17 39f fffffff7 ffffffcd fffffff7 fffff66f fffffff4 -FIXUPS: 39e2c fffffff0 ffffffb2 fffffff3 ffffffd2 fffffff7 ffffffd3 fffff84d -FIXUPS: 39596 ffffffec ffffffe8 ffffffe5 ffffffe8 ffffffe1 ffffffe4 ffffffd4 -FIXUPS: 3be44 ffffff9d ffffff88 ffffff81 75d ffffff9a ffffff21 ffffff8c -FIXUPS: 3c211 ffffff7c ffffff8e ffffff5d 55d ffffff93 ffffffe7 ffffff8b -FIXUPS: 3a3f8 ffffffbe ffffffd2 ffffff83 ffffff8e ffffffdd ffffffdf ffffffde -FIXUPS: 3a212 ffffff6b ffffffc9 ffffffef ffffffb0 ffffffe2 ffffffed ffffffee -FIXUPS: 3ae13 ffffffb0 ffffffe6 ffffff77 72d ffffff9d ffffff88 ffffff81 -FIXUPS: 3b27e ffffff9d ffffff9a ffffff52 ffffff9d 7ce ffffff87 ffffff83 -FIXUPS: 3b716 ffffff68 ffffff8b ffffff8a ffffff9a 73f ffffff8a ffffff88 -FIXUPS: 3bad0 ffffff7c ffffff98 ffffff87 ffffff7b 71d ffffff8a ffffff97 -FIXUPS: 3d4d4 ffffffec ffffffe4 ffffffe8 ffffffec ffffffd4 ffffffd8 ffffffe1 -FIXUPS: 3d3eb ffffffee ffffffdb 472 fffff757 fffffeaa ffffffe2 fffffff2 -FIXUPS: 3cdc5 ffffffe0 fffffff2 ffffdebc ffffff52 ffffffa4 ffffffe7 ffffff50 -FIXUPS: 3aa50 ffffff40 ffffffce ffffffbe ffffff92 5e6 ffffffe3 ffffffb4 -FIXUPS: 3f987 ffffffd7 fffffff6 ffffffe1 ffffffe3 ffffff99 ffffec60 5bc -FIXUPS: 3eac2 fffff070 ffffffd6 ffffffe5 ffffffd5 fffffeca 593 ffffffe0 -FIXUPS: 3de49 fffffef0 fffff318 ffffffef fffffff1 fffffff4 ffffffed ffffffec -FIXUPS: 3d669 fffffff2 fffffff4 fffffff4 ffffffec ffffffee ffffff56 ffffffe0 -FIXUPS: 33c7f e e 1e e 32 1d d8af 51c 60c ffffff99 9e ffffeefe ffffffa8 -FIXUPS: 40f11 ffffee53 fbc ffffffe6 fffffff4 ffffffa3 ffffffb8 fffffff3 -FIXUPS: 40c27 fffff09e fffffff2 ffffffcd fffffff2 fffffdac ffffffed ffffffba -FIXUPS: 3f9bb ffffffef ffff3f6d f 25 13 16 1c d 1c 78 48 13 24 d 1c 23 -FIXUPS: 33b0f 19 1f 5 1d e 13 28 10 10 19 19 13 13 13 16 16 fffff728 8 -FIXUPS: 333c4 3a d 4b 33 25 19 87 c 22 64 29 28 d 2a d 16 15 c0 23 d 29 -FIXUPS: 337dc 35 23 d 2c 24 45 e 24052 31 30 22 14 1b 57 33 1f fffdb5c1 -FIXUPS: 33079 f 21 50 36 d 1d 83 22 10 3b 38 23 d 24 27 d 2c 23 d 1e 6 -FIXUPS: e597 22 e 13 1f 2e 22 40 11 4945f 70 ffffff73 fffffa7d 1f 14 1b -FIXUPS: 575bd 16 1c c7 14 3e 15 5a 20 14 1d 51 2e 24 3e 3c fffb68d4 23 -FIXUPS: e219 18 4f 23 26 16 24 24 20 4c 27 21 30 1a 1a 28 5 5 18 e 13 1f -FIXUPS: e4db 1e 20 13 1d e 13 1f fffff860 13 d 20 14 12 1c 20 2e 2d 23 -FIXUPS: df16 5f 24 2d 23 d d 1d 20 13 16 20 d 37 20 d 1e 17 f a 9 fffff6b8 -FIXUPS: d814 b 35 1b 21 d 2f 1f 22 1c 6b 25 23 19 13 d 25 14 35 41 1b 14 -FIXUPS: db35 1b 59 40 23 19 12 4c c7 fffff3ef 38 38 a0 31 d 62 16 1d 28 -FIXUPS: d363 12 6e 40 d 1b 1a a 1c 6e 2e 14 17 29 15 29 b c 49 67 19 19 -FIXUPS: cb4b d 41 11 b 19 2f 113 d 1b 1a a 19 5b 79 11 16 79 1d 23 24 10 -FIXUPS: cf89 1c 2e 2e 25 43 18 21 25 2d fffff685 11 b 24 d 23 29 12 19 -FIXUPS: c843 1b 6 35 11 b d 15 6c 14 2d 23 4a d 14 d 12 48 32 17 1a 2e -FIXUPS: cb1c fffff81a 39 22 c 17 21 12 34 29 20 18 31 18 5f 1b 10 10 1d -FIXUPS: c591 12 3c 59 1b 28 d 2a d 2a d 13 1d d fffff6da d 44 20 1b 15 -FIXUPS: bebe 10 3e d 22 1f aa d 44 20 1b 15 10 10 23 20 d 56 12 7b 20 1b -FIXUPS: c248 10 10 63 fffff623 26 d 27 53 d 52 37 d 48 37 d 1c 12 c 95 -FIXUPS: bbaf 2a 1c 14 15 1b 15 1b 12 2e 50 48 38 49 d 13 ffffefe7 50 ac -FIXUPS: af19 27 d 17 33 41 18d 9b 33 d 2d d 2a d 2d d 23a 27 cd d 37 d -FIXUPS: b729 d 9a d 47 20 d ffffefd8 77 3f d 57 32 d 21 1a 21 12 70 12 -FIXUPS: aafa 2b d 21 15 29 15 53 26 45 34 1a 1e 27 d 2c d 1b 3f fffff611 -FIXUPS: a3bb 6d d 2f 20 2c 3c 2b 1d 1b 13 10 10 26 32 2a 45 18 16 10 10 -FIXUPS: a6be 13 b 20 12 35 2b 4b 1f 2a fffff323 d 27 17 14 14 25 6c 9c -FIXUPS: 9e2b d 19 5e 2a 6f 25 d 78 23 21 33 68 34 53 34 33 cf d bc d 13 -FIXUPS: a39b fffff3cf 13 13 48 21 f d 24 e 9 9 20 30 42 23 d 1d 29 19 12 -FIXUPS: 99a1 1a 1a 48 26 3d 19 1a 1a 13 13 b fffff6e0 32 23 d 17 34 3a -FIXUPS: 9311 12 39 15 1a 20 2d 1c 21 3e 15 17 60 50 3a 37 69 2d 23 1d 36 -FIXUPS: 96da 10 4e 19 fffff4c8 2a d 46 d 48 41 17 14 22 26 b 15 11 40 f -FIXUPS: 8e30 26 83 14 11 b 6c 18 2a 4c 11 18 110 d 60 28 fffff4d6 2a d -FIXUPS: 86f7 24 d 55 10 13 18 10 b9 58 d 20 18 1a 39 f 5e 3a 55 4f d 2f -FIXUPS: 8b10 34 33 25 d 19 4a fffff423 1d 1d 11e d8 18 26 17 54 47 31 d -FIXUPS: 83bd 5a 32 f d 24 8d d 12 11 5a d 30 12 2f 12 15 2d d 14 fffff301 -FIXUPS: 79c3 18 4c c4 4c 3a 2c 1c f 12 e 21 2b 17 44 14 23 d6 19 6 1d 6 -FIXUPS: 7dfb 6 ed 10 10 14 14 14 d6 fffff5cd 13 23 d 13 1e b 12 36 2a 13 -FIXUPS: 7716 18 1c 2a 13 25 18 54 21 1a 2c 12 13 1c 2c 12 13 1c 2c 12 13 -FIXUPS: 7215 24 14 15 14 13 23 d 13 3c b 12 36 2a 13 25 18 1c 2a 13 25 -FIXUPS: 746b 51 1e 43 37 f 12 e 26 1b 15 fffff803 49 54 11 16 39 11 16 -FIXUPS: 6f39 2b 23 12 40 11 1c 1b 26 c e 6 50 2a d 22 18 26 c e 6 51 2a -FIXUPS: 71f6 fffff70a 2a 3a 38 17 7 3a d a0 29 19 4e d 2a d 35 20 1a 16 -FIXUPS: 6c32 28 27 12 53 1e 1f 13 13 27 15 2c f fffff6bb 18 10 36 2b d -FIXUPS: 6538 d 2b 23 17 b 22 1a 16 2f 4c 12 13 3b 26 4b 48 d 22 20 d 18 -FIXUPS: 6851 3f d 11 fffff77a 14 13 18 29 2b d 29 15 13 13 4d 11 b 13 61 -FIXUPS: 622f 2b d 2f 16 18 46 19 45 13 4d 29 1c 1f 13 13 fffff82c 2a 4c -FIXUPS: 5d14 28 d 20 f 10 10 61 14 2f 26 1a b 13 2e 1c 1a b 13 1a 17 12 -FIXUPS: 5f72 17 2e 13 26 d 20 fffff82c 1f 18 e 1b 18 b e 15 f3 10 10 19 -FIXUPS: 5a34 13 13 13 16 16 16 e e 1e 19 67 50 16 17 42 18 b 16 fffff72a -FIXUPS: 53d9 1b 25 1e b8 27 13 6 1b b 1a 38 34 56 d 35 1f 24 18 b 35 24 -FIXUPS: 573d b 3d d 33 29 e b d fffff545 23 2d 30 30 26 3a cb d e 23 16 -FIXUPS: 4fab 59 d e 3e 5c 40 43 5f 5c d 67 26 19 13 13 16 39 33 27 fffff4c8 -FIXUPS: 485d 1b 13 13 a0 29 1c 1b 13 13 56 37 35 40 68 69 26 14 1d d 1c -FIXUPS: 4c49 12 37 27 12 b 43 e 9 9 fffff453 30 15 38 33 d 30 d 30 d 30 -FIXUPS: 4300 3d 3e 1f 2d 1e b 7d 11 55 51 24 47 26 6e 1d f 27 de d b7 fffff45a -FIXUPS: 3c8c 26 15 f 33 30 28 b b 9d 33 44 1d 98 23 47 19 13 13 7c 20 d -FIXUPS: 40ac 15 13 f b 1b 6 24 b fffff483 d 61 7c 4e 22 1f 3d 12 2c 66 -FIXUPS: 38ec d 28 58 2e 65 37 80 b 24 12 12 12 76 13 10 10 1f 1e 26 18 -FIXUPS: 319a 12 1d 1d 12 1d e f b 24 13 b 1f 1d 4e 11 20 d 5b 20 d 73 37 -FIXUPS: 349c 2d 12 1e f d 24 e a fffff770 15 14 85 10 20 e f 1c 13 1e 13 -FIXUPS: 2e2b 21 1d 35 2b 23 2d f4 16 39 f 1b 11 f 13 13 9 32 43 33 fffff73c -FIXUPS: 28de d 2a d 2a d 2a d 2a d 2a d 2a d 2a d 2a d 2a d 2a d 2a d b4 -FIXUPS: 2c04 15 2c 24 38 b fffff900 17 20 d 15 20 d 17 14 16 2c 1d 4f 28 -FIXUPS: 2750 34 d 1c 1b 12 40 1d b b e b 23 14 5 8 5 5 fffff777 23 23 23 -FIXUPS: 20b7 23 23 23 23 14 12 17 29 e 22 17 29 34 1b 61 14 e e 11 11 11 -FIXUPS: 2343 b b aa d2 d fffff7a7 d d d d d d 1a b b 7b 27 f 21 49 27 f -FIXUPS: 1e79 40 20 12 1e 19 b c f 31 e 18 23 23 23 fffff894 10 1d d 21 -FIXUPS: 1909 1f 10 6 21 b 39 d 1d 31 2e 27 3d 25 23 3d bf 20 d 1e 8 5 5 -FIXUPS: 1c36 5 32 d fffff4fc 45 80 28e bd 1a 10 1a 78 d 47 26 d 1a 12 20 -FIXUPS: 173a b b 25 14 b 1c 21 20 e 1c 18 b e 26 10 cee6 23 31 8 8 38 f -FIXUPS: e822 c 29 f 29 f f c c 26 f f c 2b 10 2d f ffff267d e b 85 b b -FIXUPS: 114d 12 d967 a a a a a 24 1b 5 5 18 13 1d 13 1d e 32 13 3d 13 1d -FIXUPS: ec87 13 1f e 32 e 13 1f 30 30 fffff9c3 1b8d 30 ffffead0 1a 1c 1c -FIXUPS: ee57 1d a 10 15 f 10 15 20 42 e 22 30 e fffffa1b 27 f 21 33 a c -FIXUPS: ea6e a 14 a 26 13bf 2e 2d 23 d 27 1c e 42 26 d 1d 23 1c 36 d 4f -FIXUPS: 100c7 7b d 3a 12 1b 2d d 20 29 d 21 22 e 13 fffff7ec 35 5 17 b -FIXUPS: fb2a 1f 5 1b 8 b f 28 d a5 15 1a 1b 36 23 d 63 15 2c d 18 2e 10 -FIXUPS: fe39 8 5 28 fffff8b7 24 23 48 d 1e 17 33 10 19 25 b 13 10 2b d -FIXUPS: f90e d 34 d 2c d 13 2e d 20 35 d a 18 b b fffff8dd 4f e 5 a d 28 -FIXUPS: f43d 3a 1e 9 90 5 46 c c 14 1f 39 1c 11 13 32 d 32 d 10 27 d a -FIXUPS: f712 e 1042 d d 36 d 43 d d 7b ffffe76b 27 f 21 30 30 70 30 29 -FIXUPS: f196 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 1d6b 13 fffff2d8 d 53 -FIXUPS: 103df 43 d 53 10 10 d 11 6 10 29 d 10 7d 13 d d 53 13 d d 63 13 -FIXUPS: 106c9 d 11 13 58f 23 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f -FIXUPS: 10eb9 23 16 90 27 10 10 23 20 1b 5 5 18 16 8 12 6e0 e 13 1d fffff125 -FIXUPS: 108f2 27 f 21 30 e b 37 29 16 15 15 14 e 5b 9 1a 6b 20 2c 23 16 -FIXUPS: 10bcd 27 10 37 1d 61b 29 d 20 13 24 58 51 13 b a 10 78 39 d 12 -FIXUPS: 114eb d 36 d 5e 11 8f e 14 5 39 1d 13 12 11 4b ed9 d 10 c 33 d -FIXUPS: 12699 8 d 29 29 17 15 23 d f 1e 8 d 29 27 1b 18 b 2b ffffe89d d -FIXUPS: 11184 d 7e d 4a 1005 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a 2d d 14 -FIXUPS: 1247d 2a d 2b d 20 2a d 17 15 2c d f 22 fffff90e 42 d 17 55 6 28 -FIXUPS: 11fd6 30 6 19 f 2b a 12 f 2f e 1e c d 11 14 3a a 49 d 23 1d 1f -FIXUPS: 12229 f fffff868 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 f d c 27 -FIXUPS: 11d33 2b 36 d 29 d 35 d 2a 6 3f 2d 1e 12d0 1f 1b 2a 22 e 13 1f -FIXUPS: 13277 13 ffffe52f 17 3c 1d 10 58 28 10 31 1f 40 e 10 27 d 17 1c -FIXUPS: 119f6 a 24 d 42 1286 8 c 3c 23 1b c 3e d 11 44 26 23 2d d 11 26 -FIXUPS: 12f49 23 1b 46 d 3c d 14 27 2f 3c 23 1b 32 23 fffff78d 49 27 f -FIXUPS: 12989 30 e 18 e 26 36 23 1b 58 d 2d 12 4e 30 2c 17 d 20 10 19 c -FIXUPS: 12c5e 1d d 2c d 28 199e 2b d 51 d 2c e 4a d 16 25 13 d 10 d 27 -FIXUPS: 14891 1d 17 42 52 13 d a0 2e d 75 c 22 ffffdd9b 27 f 12d8 d 1c -FIXUPS: 13bf2 1b d b 2cd a 75 23 d d e 14 15 14e d 98 d6 2e d 71 d 55 6d -FIXUPS: 14452 27 25 17e 3d 14 fffff248 34 23 1b d 8 1b 32 23 1b d 14 9 -FIXUPS: 139f7 22 23 13 1a 23 13 a 15 8 f a 1a 23 19 8 10 32 14 fffff881 -FIXUPS: 13450 29 23 16 c 1b 23 1b 8 12 29 d 53 36 49 23 1b d f 45 36 2b -FIXUPS: 1375c 1b d f 13 7d d 3a 15 160c 2e c b 28 d 34 25 d 15 2d d 1d -FIXUPS: 14fe9 4c b 6 63 d 21 ffffe1d2 23 32 20 d d 11 1d 33 23 1b d 6c93 -FIXUPS: 1a08a ffffaa8f e 10 29 61 38 e b 10 14 25 d 4d 2c 23 25 e 1c d -FIXUPS: 14d8e d 17 27 c b 2b 1e c b 2e 4bce 13 18 22 23 32 23 d 76 22 33 -FIXUPS: 19c0c 16 b b 36 6d 42 46 ab 1e 25 b9 1f 1f 5a 30 35 22 e 13 1f -FIXUPS: 19532 1c 30 2b 23 16 14 20 d 20 37 d 20 10c 36 e 14 31 2d 2c 45 -FIXUPS: 198f9 10 10 10 35 23 d 32 35 d 27 fffff775 d 3b d 24 23 1f 23 1f -FIXUPS: 192bb d 1d 34 23 16 10 14 20 d 1f 1d 18 22 1d 10 19 20 d 3a d 26 -FIXUPS: 1951c fffff77d 23 3d d 66 d 44 55 23 d 2f d 32 25 3c d 35 2d 2e -FIXUPS: 18fe4 d 30 1e 24 d 3b d 2d 36 d 31 21 fffff57c 27 d c 43 23 1b -FIXUPS: 187c2 25 d 5b 22 47 d 39 23 d 58 1a 93 25 22 3f 23 16 2d 23 d 10 -FIXUPS: 18bb5 a4 1b fffff692 1a 18 d 54 23 16 2e 19 d 37 31 23 d 2b 23 -FIXUPS: 1853e 23 d 15 11 d d 1b 23 32 1f 1a 21 21 23 2d fffff7d0 30 30 -FIXUPS: 17f49 1f 21 1f 21 30 23 41 d 38 d 31 d 39 1e 47 18 20 6 20 30 23 -FIXUPS: 18252 11 d 10 31 25 15 fffff69f 41 19 32 24 1a 68 6 d 21 16 18 -FIXUPS: 17b2b 67 8 2b 49 37 c 2f c 1e 16 13 43 1a 5b 9e 14 1c 11 1f fffff601 -FIXUPS: 174ca e 60 41 5c 32 21 1a 61 6 79 1d 13 25 42 6 6 20 b 26 3d 40 -FIXUPS: 178a1 1e 6 c 13 23 e 2c d fffff68a d 15 1c d 1e 18 30 d 22 15 12 -FIXUPS: 170e9 15 1b 29 3e 23 d 3b d 10 58 d 13 39 6b f 7a 21 24 6a fffff7e5 -FIXUPS: 16c62 17 1e 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c 17 d 15 12 -FIXUPS: 16e8b 20 d f 18 30 46 1d 1e 15 fffff7ff 23 2d 20 d 5c 2d 20 d 53 -FIXUPS: 16937 f 23 11 1f 17 19 30 80 30 30 1b 25 23 13 18 1d 1d 1d 2b 11 -FIXUPS: 16c15 fffff6db d 35 d 6f d 50 d 2f d 32 d 2f 32 30 d 3b d 43 d -FIXUPS: 165f8 41 34 d 4a d 46 d 1a 20 d 23 fffff80b 22 15 32 12 f 18 10 -FIXUPS: 16055 20 d 2f 30 d 1a 18 6 8 10 1c 2c d 31 d 1d 6 8 4b d 50 13 -FIXUPS: 162ce fffff6f2 3d 3f 7d 23 30 d 80 19 a7 d 38 23 d 38 23 d 48 23 -FIXUPS: 15dae 3e d 2f d 48 23 d 48 23 d 2f d fffff577 1b 2b 14 15 30 1b -FIXUPS: 155ac 5e 1d d 2f 23 d 36 50 2d 23 d e 29 34 d 5b 50 40 30 30 30 -FIXUPS: 1598c 1a c 5376 f 46 24 33 ac d aa 22 e 13 ffffa198 27 f 21 49 -FIXUPS: 151d9 f 21 30 e 16 1d 2f 2c 126 3e 2d 23 d 27 d 5528 b b e 30 2c -FIXUPS: 1aa8c 14 24 b 13 10 21 d e 1a 1d d e 29 16 d 10 d b cc f e f f -FIXUPS: 1ad0a f fffff7f0 1d 29 12 22 46 23 32 23 d 1b 70 23 4d 23 32 23 -FIXUPS: 1a7ce 10 1a f 22 24 2c 23 16 22 d 60 29 4f 23 5a3e 2629 d 27 ffff764b -FIXUPS: 1a0e9 f 21 49 27 f 21 30 e 30 2a d 5c 2f 2c 50 29 60 1b 10 22 d -FIXUPS: 1a47a 38 27 10 8 5af8 23 ab d 2d 22 d 11 22 1f 15 10 1d d 2f e -FIXUPS: 2021d 17 1c 59 23 1b d 10 d b 1a 27 d 58 d 3e fffff65a a 2b a 1c -FIXUPS: 1fadd a 90 10 c 1d d 68 d 44 7a d 50 36 d 1d 94 d 2a 1e 1a 2b 26 -FIXUPS: 1ff1e d 39 3c ffffbbdb 2f e 1f 17 1c 3f 30 30 23 1b d 10 d b 1a -FIXUPS: 1bd5d d 58 d 3e d 3b41 d 21 23 1b d 10 d b 2e ffffbbb3 a 90 10 -FIXUPS: 1b693 1d d 50 d 44 7a d 50 36 d 1d 94 d 24 2e 27 c2 d 2d 22 d 15 -FIXUPS: 1bb0d 1f 15 10 1d fffff516 10 d b 38 21 2b 21 48 13 4d 28 b6 d -FIXUPS: 1b399 32 d 47 22 48 23 1b d 10 d b 2e 3d a 2b a 1c 8145 10 1f 15 -FIXUPS: 237a2 23 d 129 7e 2b 25 13 2d 23 d 32 23 d 18 13 13 1e 22 e 13 -FIXUPS: 1afb2 27 f 21 30 23 1b 829a d 2c d 3b d 1a 20 d 1d 20 36 23 32 -FIXUPS: 234d1 d 2c d 2b 20 d 1a 20 d 1d 22 54 23 32 23 d 2c fffff712 20 -FIXUPS: 22e39 20 13 40 d 13 1d 10 8 36 22 23 39 d 94 23 d 14 1f 23 56 23 -FIXUPS: 23162 2f 58 23 5d 30 23 32 34ab f 21 30 13 1d e 13 ffffc268 27 -FIXUPS: 22ae8 21 30 e 29 49 2f 3e d 3f 17 23 32 20 d 13 1a 41 23 20 d 20 -FIXUPS: 2648a 2a d 31 d 43 d 11 c 16 18 2f d 34 d 22 10 8 c 1f 20 1b 5 -FIXUPS: 266c1 18 e 13 1f e 13 1f e fffff8dc 11 19 21 d 1b 25 28 2d 29 50 -FIXUPS: 261cc 3e 1e 11 1d 20 2a 19 16 11 2c d 17 25 28 2d 2f 30 10 41 23 -FIXUPS: 25c74 20 d 30 22 15 33 d 31 23 32 23 d 34 d 16 24 d 28 25 6 9 f -FIXUPS: 25f19 23 3e 22 11 1d 20 2a 19 fffff7ce 2e 2b 65 23 3d 1b 11 2d -FIXUPS: 259b9 1b 25 23 18 2f d 1e 6 20 d 30 26 11 33 d 4a 27 23 18 2f d -FIXUPS: 25c6e fffff6b0 d 6a 24 23 32 23 d d 6c 32 23 16 b 8 2a 46 24 23 -FIXUPS: 25630 27 22 23 3a d 28 48 23 19 20 1d d fffff6b9 13 a d 1c 28 19 -FIXUPS: 24f27 26 32 23 d 79 31 e 26 32 23 d 7b 2f e 26 46 26 2c 13 d 14 -FIXUPS: 252bc 32 23 fffff6a8 23 1f 20 d 3c 25 29 32 23 d 3c d 58 a9 37 -FIXUPS: 24cdd 2c 23 16 14 20 d 27 22 9 e 13 23 31 23 d fffff732 30 d 80 -FIXUPS: 2468c 16 f b 1d 23 16 2e 19 13 b 2f 23 d 10 a 15 2d 24 d 2f 1b -FIXUPS: 248e9 23 1f 20 d 3c fffff822 20 d 26 2d 16 19 8 c 22 39 19 11 2b -FIXUPS: 24356 23 d f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 25 fffff820 19 -FIXUPS: 23dcc a a 10 b 8 16 2d 20 d 24 d e 1b 33 1d 31 77 20 d 47 2d 20 -FIXUPS: 24093 e 22 d 21 1d 31 30aa 23 1b 10 d 26 28 d 3a c a6 2c ffffc7a5 -FIXUPS: 23b92 27 f 21 49 27 f 21 30 e b b 33 20 d 14 16 d a 2ecb 23 16 -FIXUPS: 26cbe 1b 23 40 9d 23 1b b 28 d 11 94 1d 23 16 35 7e 24 23 1b 10 -FIXUPS: 27084 26 35 8 12 3e d 7c 1d0d 2d 2f 12 9 9 1f 20 1b 5 5 18 e 13 -FIXUPS: 26869 80 23 1d 5e d 69 6 51 6 98 37 23 16 29 6d 20 b 1e36 23 16 -FIXUPS: 28aaf d 10 d 46 11 34 3a 2f 1c 26 32 16 e 64 d 23 1c 34 1d d d -FIXUPS: 28da0 29 14 1c e 27 1d fffff78c d 19 1c 16 32 23 d 4b d 13 20 d -FIXUPS: 28754 38 16 20 d 3f d 4b d 2a d 2c d 48 d 21 23 16 e fffff744 15 -FIXUPS: 28119 23 32 23 d 10 e 64 d 12 1a 23 32 23 d 14 27 2c 16 34 14 1e -FIXUPS: 283e0 29 d 1d 8 11e 26 35 fffff6a5 29 6d 39 23 d 15 11 1b 23 2d -FIXUPS: 27e0f 32 16 12 57 d 11 38 32 1d 44 2c 3d d 10 10 2a d 10 2f 17 -FIXUPS: 277c3 b 1c 13 49 53 29 32 23 d 2c 2c 20 3c 4b d 1a b 23 31 2c 16 -FIXUPS: 27af6 b 16 17 c 6c 15 23 13 22 62b9 1d 13 1d 13 ffff94b0 36 27 -FIXUPS: 27448 21 30 1b 20 25 e b 11 26 29 32 23 d 1a e 8e 59 d 1a 1b 11 -FIXUPS: 2776f 2f 642a 37 11 f 1e 6 18 d 20 31 12 2a d 25 22 e 13 1f e 13 -FIXUPS: 2ddc9 e 13 1f e 13 1f 13 1d e 13 1f fffff950 26 1b 13 33 14 13 -FIXUPS: 2d8d2 23 11 35 c 22 22 24 16 1d 6 34 d 15 c 17 2f 29 23 16 30 22 -FIXUPS: 2db79 26 1d fffff860 d 20 13 10 10 11 19 46 5a 23 d 23 14 2c 2a -FIXUPS: 2d626 d 10 b 11 17 37 43 1f 36 23 d 34 19 11 b fffff889 20 d 25 -FIXUPS: 2d0e9 12 13 13 8 24 d d 10 20 d 56 d 18 40 3d d 27 d 25 12 2c d -FIXUPS: 2d35b 2d d 37 d fffff8d9 d 47 6 18 1c 6 16 20 32 17 1e 20 d 25 -FIXUPS: 2ce69 26 1d 2f d 17 2f d 29 d 11 e 2a c 27 20 d fffff93a 2e 37 -FIXUPS: 2c9df 1d 2f d 17 2f d 11 d c 10 c d c 17 17 b b e 3e d 15 13 1a -FIXUPS: 2cbe0 34 42 d 1a fffff98f 9 e 25 c 42 d 2b 2b 23 1d 2f d 15 15 -FIXUPS: 2c7bf 1f b 1f 13 18 23 1d 19 29 1a 17 13 a 14 20 6 fffff96f 1d -FIXUPS: 2c2f8 d 10 c 3e 12 28 23 13 10 1a 23 1d 2f d 12 15 1f 13 17 6 1e -FIXUPS: 2c52c 1d 2f d 1a 1f 13 1e fffff970 10 1a 23 1e 12 2f d 15 c 26 -FIXUPS: 2c076 6 1d 23 1e 12 2f d 15 c 26 13 a 1d 30 23 1d 2f d 11 23 fffff92f -FIXUPS: 2bbd9 d 23 20 1b 21 20 6 1e 23 20 17 17 2d d 19 1b 46 24 27 23 -FIXUPS: 2be5a 12 2f d 10 c 3e c 1b 23 fffff898 b 6 24 29 37 23 1b 12 1e -FIXUPS: 2b8fe 23 d 45 d 39 11 9 26 23 1b 10 29 72 d 21 14 14 21 23 1d 16 -FIXUPS: 2b3a1 39 d e 3e 1d 28 d 2d d 15 b 6 e 1a 22 b 6 29 23 32 23 d 10 -FIXUPS: 2b609 f 1c 29 5f a9 47 f fffff7eb 11 9 6 2b 38 23 1b 33 d 28 9 -FIXUPS: 2b0f9 12 1e 12 1e 30 e 32 30 e 19 3d 30 2c 26 19 21 26 32 23 fffff897 -FIXUPS: 2ac59 23 16 2a 22 2b 23 1b 2c 2a 19 9 27 9 6 24 23 1b 3c d 1c b -FIXUPS: 2aee0 22 9 23 14 9 6 29 9 fffff9a9 1e 10 10 a 16 13 13 b 19 1b -FIXUPS: 2aa1b 1b 26 2d 23 19 24 23 1d 16 2c 9 19 15 b 13 9 1d 14 9 6 fffff8c1 -FIXUPS: 2a4e9 23 32 23 d 39 d e 3d 28 d 2d d 1a 13 1e 23 32 23 d 10 b f -FIXUPS: 2a784 29 57 49 30 27 29 3c fffff794 19 38 57 23 d 24 2a 23 d 10 -FIXUPS: 2a20e 11 17 37 43 1f 33 23 d 27 19 11 b 2b 12 26 28 23 1d 30 23 -FIXUPS: 29d99 23 1e 24 9 22 23 1d 10 17 6 23 23 1d 10 13 a 1d 26 e c 46 -FIXUPS: 29fdb 13 13 13 a 20 d 1e 13 10 fffff96f 10 30 2f 9 f 34 9 f 3b -FIXUPS: 29b20 13 13 36 d 3b d 1e 24 d 1e 24 d 2a 23 13 c c 22 e 19 3a fffff8ad -FIXUPS: 2963c 30 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 13 1a 20 d 20 2f -FIXUPS: 298fd f 34 9 f 31 2d 23 d fffff7b2 21 49 27 f 21 49 27 f 21 30 -FIXUPS: 29355 17 c d 14 23 34 d 25 32 1f 32 39 3f 2c 50 11 10 b 12 29 59f3 -FIXUPS: 2efff 42 15 18 15 f 8 d c 23 e 18 f 8 d 27 22 e 13 1f ffffedbe -FIXUPS: 29022 27 f 21 49 27 f 21 49 27 5aec 32 23 d 10 51 d d 19 8 34 e -FIXUPS: 2edc1 4e 15 e 19 f 8 d 2a 2c 32 23 d 10 4b d d 13 8 2e fffff912 -FIXUPS: 2e91a d 10 1f 1d e c 1c 2c 1b b b b 35 15 b c e 21 35 13 23 38 -FIXUPS: 2eb64 15 15 66 15 b c 29 fffff939 f b 20 21 e c 1a 48 26 1b d 15 -FIXUPS: 2e6d2 c 1b 2c 16 1d e c 27 2c 32 23 d 10 23 e c 25 2c fffff854 -FIXUPS: 2e13c 32 20 d 2c 13 61 2e 23 70 13 12 18 10 2c 20 d 3c 20 d 32 -FIXUPS: 2e469 10 8 18 1d 1c 27 2c 32 16 26ad 25 e 14 38 23 16 e 19 1a 1f -FIXUPS: 30d64 28 10b 22 e 13 1f ffffe2fe ffffedab 27 f 21 30 e b 26 3c -FIXUPS: 2e0c9 17 10 8 26bf 26 42 1d 29 d 31 e 14 17 a 23 60 23 2d 23 23 -FIXUPS: 30a0c 2d 23 16 13 d 27 14 39 23 23 16 17 14 80 fffff652 5a 23 19 -FIXUPS: 30300 8 35 22 c 31 40 f 5c 14 4d 1c 49 35 29 11 42 14 4a d 2a d -FIXUPS: 30697 1c 2c 94 14 15 fffff474 46 112 27 2d 8b 1b 1a 27 14 1a 25 -FIXUPS: 2ff21 1a 1f 4b 1f 26 1a 25 19 49 b 1b 2f 6f 19 24 26 1a 25 19 fffff530 -FIXUPS: 2f750 1c 16 47 10 8 18 1d 23 23 1b d 9a 5c 1e 3a 23 d 30 1c 4b -FIXUPS: 2fabc d 30 39 1f 1d 2b 29 16 1e 25b3 e 13 ffffd068 27 f 21 37 40 -FIXUPS: 2f33c 6d e b 30 23 d 3b 2f 84 29 76 1a 10 2d 38 41 d 31 23 d 1b -FIXUPS: 2f71e 26ca 20 19 1c 12 d 3d 12 37 d 37 23 d 26 29 f 31 d 31 23 -FIXUPS: 32053 27 d 15 10 3d d 23 26 13 18 1d fffff821 1a 1c 36 31 6c 1c -FIXUPS: 31b03 d 23 2e 20 d 1e 42 20 d 21 20 3d 26 1e 16 d 12 2a 1c 24 d -FIXUPS: 31d9e 1c 21 fffff764 24 9 1a 1d 14 51 63 23 d 1e 20 26 1e 16 10 -FIXUPS: 31750 2a 21 29 1a 36 18 20 39 22 d 2b 1d 39 19 4d fffff66c 3d 25 -FIXUPS: 31098 23 29 60 15 23 1e b b 2d 1c 80 23 1e b 18 2e 27 3b 21 d 40 -FIXUPS: 313fd 34 38 44 3c 23 1e 1521 1c 29 28 1a 7f 1f 1f 52 d6 5 26 10 -FIXUPS: 32d02 19 19 13 13 13 16 16 16 e e fffff421 3b 5 ffffed26 27 f 21 -FIXUPS: 30ff9 13d5 1f 63 50 2f 55 13 11 9 f 1c 49 3f 16 2a 1d d 15 d 9 -FIXUPS: 326a6 3b 27 26 2c cd 5c 35 83 2c 64 6c 3b2 e 42 23 14 15 34 23 -FIXUPS: 32ef0 15 34 23 2b 22 e 13 3f 13 fffff24d 20 11 3f 2d 23 d 10 b -FIXUPS: 3235c b b 8 38 diff --git a/OBJ/WIND/STUDIO.I b/OBJ/WIND/STUDIO.I deleted file mode 100644 index 89e4b85d..00000000 --- a/OBJ/WIND/STUDIO.I +++ /dev/null @@ -1,34704 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 50 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiopos.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\pos3.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 347 "H:\\BUILD\\SOC\\inc\\stdiopos.chh" -#line 55 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 56 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 57 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 58 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 59 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 60 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 61 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 64 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 65 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 68 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\stdiocrs.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 71 "H:\\BUILD\\SOC\\src\\studio\\stdiocrs.h" -#line 73 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\cursors.cht" - - - - -CHUNK( 'GGCR', 101, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 102, ) PACK CURSOR "studio\cur\squashst.cur" ENDCHUNK -CHUNK( 'GGCR', 103, ) PACK CURSOR "studio\cur\sizevenl.cur" ENDCHUNK -CHUNK( 'GGCR', 104, ) PACK CURSOR "studio\cur\rotatex.cur" ENDCHUNK -CHUNK( 'GGCR', 105, ) PACK CURSOR "studio\cur\rotatey.cur" ENDCHUNK -CHUNK( 'GGCR', 106, ) PACK CURSOR "studio\cur\rotatez.cur" ENDCHUNK -CHUNK( 'GGCR', 107, ) PACK CURSOR "studio\cur\costume.cur" ENDCHUNK -CHUNK( 'GGCR', 108, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 109, ) PACK CURSOR "studio\cur\hotspot.cur" ENDCHUNK -CHUNK( 'GGCR', 110, ) PACK CURSOR "studio\cur\normaliz.cur" ENDCHUNK -CHUNK( 'GGCR', 111, ) PACK CURSOR "studio\cur\default.cur" ENDCHUNK -CHUNK( 'GGCR', 112, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 113, ) PACK CURSOR "studio\cur\tboxvert.cur" ENDCHUNK -CHUNK( 'GGCR', 114, ) PACK CURSOR "studio\cur\tboxhor.cur" ENDCHUNK -CHUNK( 'GGCR', 115, ) PACK CURSOR "studio\cur\tboxfall.cur" ENDCHUNK -CHUNK( 'GGCR', 116, ) PACK CURSOR "studio\cur\tboxrise.cur" ENDCHUNK -CHUNK( 'GGCR', 117, ) PACK CURSOR "studio\cur\nukscen.cur" ENDCHUNK -CHUNK( 'GGCR', 118, ) PACK CURSOR "studio\cur\creatbox.cur" ENDCHUNK -CHUNK( 'GGCR', 119, ) PACK CURSOR "studio\cur\ibeam.cur" ENDCHUNK -CHUNK( 'GGCR', 120, ) PACK CURSOR "studio\cur\cutactor.cur" ENDCHUNK -CHUNK( 'GGCR', 121, ) PACK CURSOR "studio\cur\copy.cur" ENDCHUNK -CHUNK( 'GGCR', 122, ) PACK CURSOR "studio\cur\copypath.cur" ENDCHUNK -CHUNK( 'GGCR', 123, ) PACK CURSOR "studio\cur\paste.cur" ENDCHUNK -CHUNK( 'GGCR', 124, ) PACK CURSOR "studio\cur\removaft.cur" ENDCHUNK -CHUNK( 'GGCR', 125, ) PACK CURSOR "studio\cur\cutext.cur" ENDCHUNK -CHUNK( 'GGCR', 126, ) PACK CURSOR "studio\cur\copytext.cur" ENDCHUNK -CHUNK( 'GGCR', 127, ) PACK CURSOR "studio\cur\pastetex.cur" ENDCHUNK -CHUNK( 'GGCR', 128, ) PACK CURSOR "studio\cur\pastepth.cur" ENDCHUNK -CHUNK( 'GGCR', 129, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 130, ) PACK CURSOR "studio\cur\textback.cur" ENDCHUNK -CHUNK( 'GGCR', 131, ) PACK CURSOR "studio\cur\cur00001.cur" ENDCHUNK -CHUNK( 'GGCR', 132, ) PACK CURSOR "studio\cur\cur00002.cur" ENDCHUNK -CHUNK( 'GGCR', 133, ) PACK CURSOR "studio\cur\cur00003.cur" ENDCHUNK -CHUNK( 'GGCR', 134, ) PACK CURSOR "studio\cur\listen.cur" ENDCHUNK -CHUNK( 'GGCR', 135, ) PACK CURSOR "studio\cur\squashst.cur" ENDCHUNK -CHUNK( 'GGCR', 136, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 137, ) PACK CURSOR "studio\cur\normaliz.cur" ENDCHUNK -CHUNK( 'GGCR', 138, ) PACK CURSOR "studio\cur\textback.cur" ENDCHUNK -CHUNK( 'GGCR', 139, ) PACK CURSOR "studio\cur\textback.cur" ENDCHUNK -CHUNK( 'GGCR', 140, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 141, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 142, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 143, ) PACK CURSOR "studio\cur\removbef.cur" ENDCHUNK - -#line 74 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\stdiosnd.cht" - - - - - - - - - - - - -CHUNK( 'WAVE', 0x23001, ) FILE "studio\sound\cover.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23002, ) FILE "studio\sound\pbrowse.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23003, ) FILE "studio\sound\dropdn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23004, ) FILE "studio\sound\sbrowse.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23005, ) FILE "studio\sound\brwzpic.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23006, ) FILE "studio\sound\brwzbtn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23007, ) FILE "studio\sound\ezlopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23008, ) FILE "studio\sound\stateon.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23009, ) FILE "studio\sound\stateoff.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300A, ) FILE "studio\sound\grabsn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300B, ) FILE "studio\sound\dropsn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300C, ) FILE "studio\sound\select.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300D, ) FILE "studio\sound\squash.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300E, ) FILE "studio\sound\stretch.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300F, ) FILE "studio\sound\grow.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23010, ) FILE "studio\sound\shrink.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23011, ) FILE "studio\sound\cbacks.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23012, ) FILE "studio\sound\rotate.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23013, ) FILE "studio\sound\cbackr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23014, ) FILE "studio\sound\sfreeze.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23015, ) FILE "studio\sound\systepf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23016, ) FILE "studio\sound\systepb.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23017, ) FILE "studio\sound\move.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23018, ) FILE "studio\sound\move1.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23019, ) FILE "studio\sound\moveall.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301A, ) FILE "studio\sound\actstepf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301B, ) FILE "studio\sound\actstepb.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301D, ) FILE "studio\sound\tbkopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301E, ) FILE "studio\sound\splay.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301F, ) FILE "studio\sound\sloop.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23020, ) FILE "studio\sound\sact.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23022, ) FILE "studio\sound\wfont.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23023, ) FILE "studio\sound\wsize.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23024, ) FILE "studio\sound\wcolor.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23025, ) FILE "studio\sound\wstyle.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23026, ) FILE "studio\sound\wbgclr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23027, ) FILE "studio\sound\wscron.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23028, ) FILE "studio\sound\wscroff.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23029, ) FILE "studio\sound\gofrstf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302A, ) FILE "studio\sound\goprevf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302B, ) FILE "studio\sound\gonextf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302C, ) FILE "studio\sound\addframe.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302D, ) FILE "studio\sound\golastf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302E, ) FILE "studio\sound\gofrsts.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302F, ) FILE "studio\sound\goprevs.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23030, ) FILE "studio\sound\gonexts.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23031, ) FILE "studio\sound\golasts.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23032, ) FILE "studio\sound\play.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303E, ) FILE "studio\sound\stop.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23033, ) FILE "studio\sound\undo.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23034, ) FILE "studio\sound\redo.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23035, ) FILE "studio\sound\rembfr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23036, ) FILE "studio\sound\remaftr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23037, ) FILE "studio\sound\remscn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23038, ) FILE "studio\sound\remactr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23039, ) FILE "studio\sound\remwbox.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303A, ) FILE "studio\sound\paste.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303B, ) FILE "studio\sound\copyp.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303C, ) FILE "studio\sound\copy.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303D, ) FILE "studio\sound\cut.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303F, ) FILE "studio\sound\sectool.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23040, ) FILE "studio\sound\ok.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23041, ) FILE "studio\sound\cancel.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23042, ) FILE "studio\sound\fnew.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23043, ) FILE "studio\sound\fsave.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23044, ) FILE "studio\sound\fsaveas.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23045, ) FILE "studio\sound\pfopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23046, ) FILE "studio\sound\exit.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23047, ) FILE "studio\sound\pageup.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23048, ) FILE "studio\sound\pagedn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23049, ) FILE "studio\sound\rswitch.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304A, ) FILE "studio\sound\lselect.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304B, ) FILE "studio\sound\nukesn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304C, ) FILE "studio\sound\costume.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304D, ) FILE "studio\sound\acesory.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304E, ) FILE "studio\sound\spin.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304F, ) FILE "studio\sound\mike.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23050, ) FILE "studio\sound\rplay.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23051, ) FILE "studio\sound\pselect.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23052, ) FILE "studio\sound\random.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23053, ) FILE "studio\sound\mapopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23054, ) FILE "studio\sound\recframe.wav" ENDCHUNK - -#line 79 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\sectools.cht" - - - - - - - - - - - - - - - - - -SET _curgok = 0x2000F CHUNK( 'GOKD', 0x2000F, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 47 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0x00000020 0x00000001 SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door0.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door4.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door5.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door6.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door7.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door8.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllSceneDoors); - ChangeStateThis(0x0006); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllSceneDoors = 1; - ChangeStateThis(0x0006); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllActorDoors); - ChangeStateThis(0x0007); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllActorDoors = 1; - ChangeStateThis(0x0007); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllSoundDoors); - ChangeStateThis(0x0008); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllSoundDoors = 1; - ChangeStateThis(0x0008); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllTextDoors); - ChangeStateThis(0x0009); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllTextDoors = 1; - ChangeStateThis(0x0009); -ENDCHUNK - - - - - - - - -SET _curgok = 0x20010 CHUNK( 'GOKD', 0x20010, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\1par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20014, 0x20014); - CreateChildThis(0x2003A, 0x2003A); - CreateChildThis(0x20050, 0x20050); - CreateChildThis(0x20062, 0x20062); - - - - - If (0x20002->idscnDown == 0x20036); - ChangeStateGob(0x20036, 0x0001); - End; - 0x20002->idscnDown = 0x20000; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0022 _st ) SCRIPT - If (0x20002->idscnDown != 0x20000); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20000; - End; -ENDCHUNK - - - - -SET _curgok = 0x20014 CHUNK( 'GOKD', 0x20014, ) PACK SHORT BO OSK LONG 1 - LONG 0 224 48 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22318 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1view.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1views.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x2007C, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x2003A CHUNK( 'GOKD', 0x2003A, ) PACK SHORT BO OSK LONG 1 - LONG 0 415 48 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22319 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1scen.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1scens.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x200AF, 0, 0, - (0 << 16) | 0); -ENDCHUNK - - - - -SET _curgok = 0x20050 CHUNK( 'GOKD', 0x20050, ) PACK SHORT BO OSK LONG 1 - LONG 0 340 48 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22307 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmfw.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmfwc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idscnDown != GidThis()); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = GidThis(); - End; - ChangeStateThis(0x0002); - EnqueueCid(50004, 20000 + 5, 13, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20062 CHUNK( 'GOKD', 0x20062, ) PACK SHORT BO OSK LONG 1 - LONG 0 281 48 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22308 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmbk.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmbkc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idscnDown != GidThis()); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = GidThis(); - End; - ChangeStateThis(0x0002); - EnqueueCid(50004, 20000 + 5, 16, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20011 CHUNK( 'GOKD', 0x20011, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\2par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20017, 0x20017); - CreateChildThis(0x20018, 0x20018); - CreateChildThis(0x2007B, 0x2007B); - CreateChildThis(0x20063, 0x20063); - CreateChildThis(0x20064, 0x20064); - CreateChildThis(0x2001F, 0x2001F); - CreateChildThis(0x20065, 0x20065); - CreateChildThis(0x20022, 0x20022); - CreateChildThis(0x20024, 0x20024); - - If( ((GetProp( 0x23500 ) == 0xffffffff) && ((GetProp( 0x23501 ) & 0x000001ff )==0x000001ff ))); - - CreateChildThis(0x20016, 0x20016); - End; - - - - - If (0x20002->idactDown == 0x20036); - ChangeStateGob(0x20036, 0x0001); - End; - 0x20002->idactDown = 0x20000; - 0x20002->chttActor = 0; - ChangeStateGob(0x20017, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20016 CHUNK( 'GOKD', 0x20016, ) PACK SHORT BO OSK LONG 1 - LONG 0 574 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2bio.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2bios.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2301D, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ::nBioPage = ::nBioPage; ::fBioCtrl = 1; CreateChildGob( 0x20002, 0x00015100, 0x00015100 ); -ENDCHUNK - - - -SET _curgok = 0x20017 CHUNK( 'GOKD', 0x20017, ) PACK SHORT BO OSK LONG 1 - LONG 0 66 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2comp.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2comps.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - EnqueueCid(50004, 20000 + 5, 1, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->idactDown = GidThis(); - 0x20002->chttActor = 1; - End; -ENDCHUNK - - - - -SET _curgok = 0x20018 CHUNK( 'GOKD', 0x20018, ) PACK SHORT BO OSK LONG 1 - LONG 0 236 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22320 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2cost.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2costc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - EnqueueCid(50004, 20000 + 5, 29, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateThis(0x0002); - 0x20002->idactDown = GidThis(); - 0x20002->chttActor = 29; - End; -ENDCHUNK - - - - -SET _curgok = 0x2007B CHUNK( 'GOKD', 0x2007B, ) PACK SHORT BO OSK LONG 1 - LONG 0 123 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22321 -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act01.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act02.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act03.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000043 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act04.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000044 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act05.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000045 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act06.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cell = 0; - While(); - Cell(0x00000040 + cell, 0, 0, 10 ); - cell++; - cell = cell % 6; - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2acts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->idactDown = GidThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->chttActor = 32; - EnqueueCid(50004, 20000 + 5, 32, - 0x21120, 0x21010, (6 << 16) | 4); - If(0x20002->idactDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20063 CHUNK( 'GOKD', 0x20063, ) PACK SHORT BO OSK LONG 1 - LONG 0 180 47 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22322 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22322 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2cont.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2conts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->idactDown = GidThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - 0x20002->chttActor = 28; - EnqueueCid(50004, 20000 + 5, 28, 0, 0, 0); - ChangeStateThis(0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x2001F CHUNK( 'GOKD', 0x2001F, ) PACK SHORT BO OSK LONG 1 - LONG 0 517 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22324 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2soon.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2soons.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - EnqueueCid(50004, 20000 + 5, 6, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateThis(0x0002); - 0x20002->idactDown = GidThis(); - 0x20002->chttActor = 6; - End; -ENDCHUNK - - - - -SET _curgok = 0x20064 CHUNK( 'GOKD', 0x20064, ) PACK SHORT BO OSK LONG 1 - LONG 0 293 47 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22325 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2rot.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2rots.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); - ChangeStateGob(0x20066, 0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ChangeStateGob(0x2001C, 0x0001); - ChangeStateGob(0x2001D, 0x0001); - ChangeStateGob(0x2001E, 0x0001); - ChangeStateGob(0x2006B, 0x0001); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttActor == 7); - ChangeStateGob(0x2001C, 0x0002); - Elif (0x20002->chttActor == 8); - ChangeStateGob(0x2001D, 0x0002); - Elif (0x20002->chttActor == 9); - ChangeStateGob(0x2001E, 0x0002); - Elif (0x20002->chttActor == 20); - ChangeStateGob(0x2006B, 0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20065 CHUNK( 'GOKD', 0x20065, ) PACK SHORT BO OSK LONG 1 - LONG 0 460 47 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22326 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2tran.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2trans.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); - If (StateGob(0x20067) != 0x0003); - ChangeStateGob(0x20067, 0x0003); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ChangeStateGob(0x20020, 0x0001); - ChangeStateGob(0x20021, 0x0001); - ChangeStateGob(0x2006C, 0x0001); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttActor == 10); - ChangeStateGob(0x20020, 0x0002); - Elif (0x20002->chttActor == 11); - ChangeStateGob(0x20021, 0x0002); - Elif (0x20002->chttActor == 21); - ChangeStateGob(0x2006C, 0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20022 CHUNK( 'GOKD', 0x20022, ) PACK SHORT BO OSK LONG 1 - LONG 0 343 47 10 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22327 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22327 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2xy.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2xys.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(0x20002->fXYAxis); - ChangeStateThis(0x0003); - Else; - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50001, 20000 + 5, 0, 0, 0, 0); - 0x20002->fXYAxis = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0003); - PlaySoundThis('WAVE', 0x23008, 0, 0x10000, 1, 0, 1); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50000, 20000 + 5, 0, 0, 0, 0); - 0x20002->fXYAxis = 1; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); - PlaySoundThis('WAVE', 0x23009, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20024 CHUNK( 'GOKD', 0x20024, ) PACK SHORT BO OSK LONG 1 - LONG 0 410 47 10 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22328 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22328 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2zero.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2zeros.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23008, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23009, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(0x20002->fRGround); - ChangeStateThis(0x0002); - Else; - ChangeStateThis(0x0003); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50009, 20000 + 5, 1, 0, 0, 0); - 0x20002->fRGround = 1; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50009, 20000 + 5, 0, 0, 0, 0); - 0x20002->fRGround = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x2009B CHUNK( 'GOKD', 0x2009B, ) PACK SHORT BO OSK LONG 1 - LONG 0 283 376 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st 0 0x22348 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2sbtn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2sbtns.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - - - lwDelay = 24; - While(); - PlaySoundThis('WAVE', 0x23015, 0, 0x10000, 1, 0, 1); - EnqueueCid(50023, 0, 0, 0, 0, 0); - Cell(SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - If(lwDelay > lwSLDelayMin); - lwDelay -= 3; - End; - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - - - - If(kid != 0x2009C); - - - - - - - - ChangeStateGob(0x2001F, 0x0001); - ChangeStateGob(0x20017, 0x0002); - 0x20002->idactDown = 0x20017; - 0x20002->chttActor = 1; - EnqueueCid(50004, 20000 + 5, 1, 0, 0, 0); - EnqueueCid(100007, kid, _parm[2], _parm[3], _parm[4], _parm[5]); - Return(1); - - End; -ENDCHUNK - - - - -SET _curgok = 0x2009C CHUNK( 'GOKD', 0x2009C, ) PACK SHORT BO OSK LONG 1 - LONG 0 356 376 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22349 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2lbtn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2lbtns.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - - - lwDelay = 24; - While(); - PlaySoundThis('WAVE', 0x23015, 0, 0x10000, 1, 0, 1); - EnqueueCid(50024, 0, 0, 0, 0, 0); - Cell(SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - If(lwDelay > lwSLDelayMin); - lwDelay -= 3; - End; - End; -ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x20012 CHUNK( 'GOKD', 0x20012, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\3par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20026, 0x20026); - CreateChildThis(0x20027, 0x20027); - CreateChildThis(0x20028, 0x20028); - CreateChildThis(0x20029, 0x20029); - CreateChildThis(0x2002A, 0x2002A); - CreateChildThis(0x2004E, 0x2004E); - - - - - If (0x20002->idsndDown == 0x20036); - ChangeStateGob(0x20036, 0x0001); - End; - 0x20002->idsndDown = 0x20027; - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - ChangeStateGob(0x20027, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20026 CHUNK( 'GOKD', 0x20026, ) PACK SHORT BO OSK LONG 1 - LONG 0 201 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22329 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3sing.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3sings.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 35, 0, 0, 0); - End; -ENDCHUNK - - - - - -SET _curgok = 0x20027 CHUNK( 'GOKD', 0x20027, ) PACK SHORT BO OSK LONG 1 - LONG 0 317 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3ear.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3ears.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - End; -ENDCHUNK - - - - -SET _curgok = 0x20029 CHUNK( 'GOKD', 0x20029, ) PACK SHORT BO OSK LONG 1 - LONG 0 259 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3loop.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3loops.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 33, 0, 0, 0); - End; -ENDCHUNK - - - - -SET _curgok = 0x2002A CHUNK( 'GOKD', 0x2002A, ) PACK SHORT BO OSK LONG 1 - LONG 0 395 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3rpt.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3rpts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 34, 0, 0, 0); - End; -ENDCHUNK - - - - -SET _curgok = 0x2004E CHUNK( 'GOKD', 0x2004E, ) PACK SHORT BO OSK LONG 1 - LONG 0 446 47 100 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231C - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231C -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\1note.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\1notes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23049, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23049, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fpseDown); - ChangeStateThis(0x0003); - Else; - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50011, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x20002->fpseDown = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50012, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0002); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x20002->fpseDown = 1; -ENDCHUNK - - - - - - - - - - - - - - - - -SET _curgok = 0x20013 CHUNK( 'GOKD', 0x20013, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\4par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2002C, 0x2002C); - CreateChildThis(0x2002D, 0x2002D); - CreateChildThis(0x2002E, 0x2002E); - CreateChildThis(0x2002F, 0x2002F); - CreateChildThis(0x20030, 0x20030); - CreateChildThis(0x20032, 0x20032); - CreateChildThis(0x20069, 0x20069); - - .tbxt = 1; - - ChangeStateGob(0x20030, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2002C CHUNK( 'GOKD', 0x2002C, ) PACK SHORT BO OSK LONG 1 - LONG 0 444 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4back.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4backs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50059, 0, 0, 0x21585, - 0x21583, (4 << 16) | - 4); -ENDCHUNK - - - - -SET _curgok = 0x2002D CHUNK( 'GOKD', 0x2002D, ) PACK SHORT BO OSK LONG 1 - LONG 0 253 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4bold.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4bolds.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50056, 0, 0, 0x21555, 0x21553, - (16 << 16) | 3); -ENDCHUNK - - - - - -SET _curgok = 0x2002E CHUNK( 'GOKD', 0x2002E, ) PACK SHORT BO OSK LONG 1 - LONG 0 369 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4colr.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4colrs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50058, 0, 0, 0x21575, 0x21573, - (4 << 16) | 4); -ENDCHUNK - - - - - -SET _curgok = 0x2002F CHUNK( 'GOKD', 0x2002F, ) PACK SHORT BO OSK LONG 1 - LONG 0 195 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22330 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4font.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4fonts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50055, 0, 0, 0x21545, 0x21543, - (16 << 16) | 1); -ENDCHUNK - - - - - -SET _curgok = 0x20032 CHUNK( 'GOKD', 0x20032, ) PACK SHORT BO OSK LONG 1 - LONG 0 311 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22332 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4size.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4sizes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50057, 0, 0, 0x21565, 0x21563, - (16 << 16) | 4); -ENDCHUNK - - - - - -SET _curgok = 0x20030 CHUNK( 'GOKD', 0x20030, ) PACK SHORT BO OSK LONG 1 - LONG 0 137 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22331 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4ins.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4inss.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->chttTbox = 2; - 0x20002->idtbxDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 2, 0, 0, 0); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20069 CHUNK( 'GOKD', 0x20069, ) PACK SHORT BO OSK LONG 1 - LONG 0 502 47 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22333 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4scrl.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4scrls.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20068, 0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttTbox == 4); - ChangeStateGob(0x20031, 0x0001); - Elif (0x20002->chttTbox == 3); - ChangeStateGob(0x20033, 0x0001); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttTbox == 4); - ChangeStateGob(0x20031, 0x0002); - Elif (0x20002->chttTbox == 3); - ChangeStateGob(0x20033, 0x0002); - End; -ENDCHUNK - -#line 80 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\popups.cht" - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20047 CHUNK( 'GOKD', 0x20047, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 477 198 589 406 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20048, 0x20048); - CreateChildThis(0x20049, 0x20049); - CreateChildThis(0x2004A, 0x2004A); - CreateChildThis(0x20095, 0x20095); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); - ChangeStateGob(0x2003C, 0x0002); - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - FilterCmdsThis(400001, 0, 0xFFFFFFFF); - ChangeStateGob(0x2003C, 0x0001); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - - - - If(kid == 0x2003C); - Return(0); - End; - - If((kid != 0x20048) && - (kid != 0x20049) && - (kid != 0x2004A) && - (kid != 0x20095) && - (kid != 0x20047)); - - - - ChangeStateThis(0x0002); - End; - - - - - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x20048 CHUNK( 'GOKD', 0x20048, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 104 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22304 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1open.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1openc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23045, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - - - - - EnqueueCid(101, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - -SET _curgok = 0x20049 CHUNK( 'GOKD', 0x20049, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 52 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22305 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1new.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1news.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23042, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - EnqueueCid(100, 20000 + 5, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2004A CHUNK( 'GOKD', 0x2004A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 156 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22306 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1save.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1saves.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23043, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - EnqueueCid(103, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20095 CHUNK( 'GOKD', 0x20095, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 208 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223B3 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1svas.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1svass.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23044, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - EnqueueCid(104, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x2004F CHUNK( 'GOKD', 0x2004F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 224 354 470 406 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20052, 0x20052); - CreateChildThis(0x20053, 0x20053); - CreateChildThis(0x20054, 0x20054); - CreateChildThis(0x20055, 0x20055); - CreateChildThis(0x20056, 0x20056); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); - ChangeStateGob(0x20036, 0x0002); - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20036->idDown == 0x20000); - ChangeStateGob(0x20036, 0x0001); - End; - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - FilterCmdsThis(400001, 0, 0xFFFFFFFF); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20036); - Return(1); - End; - - If((kid != 0x20052) && - (kid != 0x20053) && - (kid != 0x20054) && - (kid != 0x20055) && - (kid != 0x20056) && - (kid != 0x2004F)); - - - - ChangeStateThis(0x0002); - End; - - - - - Return(0); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - If (StateGob(0x20052) == 0x0002); - ChangeStateGob(0x20036->idDown, 0x0001); - Elif (StateGob(0x20052) == 0x0004); - ChangeStateGob(0x20036->idDown, 0x0003); - Elif (StateGob(0x20052) == 0x0006); - ChangeStateGob(0x20036->idDown, 0x0005); - Elif (StateGob(0x20052) == 0x0008); - ChangeStateGob(0x20036->idDown, 0x0007); - End; -ENDCHUNK - - - - -SET _curgok = 0x20052 CHUNK( 'GOKD', 0x20052, ) PACK SHORT BO OSK LONG 1 - LONG 0 220 0 100 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22309 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22309 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230A - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230A - LONG 0 0 0x00000020 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D7 - LONG 0 0 0x00000040 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D7 - LONG 0 0 0x00000080 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223B5 - LONG 0 0 0x00000100 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223B5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsnc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmac.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmacc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsdc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmtb.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmtbc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - If (StateThis() == 0x0001); - ChangeStateThis(0x0002); - EnqueueCid(50004, 20000 + 5, 14, 0, 0, 0); - Elif (StateThis() == 0x0003); - ChangeStateThis(0x0004); - EnqueueCid(50004, 20000 + 5, 15, 0, 0, 0); - Elif (StateThis() == 0x0005); - ChangeStateThis(0x0006); - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - Elif (StateThis() == 0x0007); - ChangeStateThis(0x0008); - EnqueueCid(50004, 20000 + 5, 15, 0, 0, 0); - End; - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - ChangeStateGob(0x20036->idDown, 0x0001); - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20053 CHUNK( 'GOKD', 0x20053, ) PACK SHORT BO OSK LONG 1 - LONG 0 122 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cppt.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cpptc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44000, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20054 CHUNK( 'GOKD', 0x20054, ) PACK SHORT BO OSK LONG 1 - LONG 0 171 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3past.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3pastc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44003, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20055 CHUNK( 'GOKD', 0x20055, ) PACK SHORT BO OSK LONG 1 - LONG 0 73 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3copy.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3copyc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44001, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20056 CHUNK( 'GOKD', 0x20056, ) PACK SHORT BO OSK LONG 1 - LONG 0 24 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cut.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cutc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44002, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x20066 CHUNK( 'GOKD', 0x20066, ) PACK SHORT BO OSK LONG 1 - LONG 0 293 271 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 174 ) "studio\bmp\p5par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2001C, 0x2001C); - CreateChildThis(0x2001D, 0x2001D); - CreateChildThis(0x2001E, 0x2001E); - CreateChildThis(0x2006B, 0x2006B); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20064); - Return(0); - End; - - If((kid != 0x2001C) && - (kid != 0x2001D) && - (kid != 0x2001E) && - (kid != 0x2006B)); - - - - ChangeStateThis(0x0002); - - If ((0x20002->chttActor != 7) && - (0x20002->chttActor != 8) && - (0x20002->chttActor != 9) && - (0x20002->chttActor != 20)); - ChangeStateGob(0x20064, 0x0001); - End; - End; - - - - - Return(0); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x2001C CHUNK( 'GOKD', 0x2001C, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 21 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotx.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotxs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 7, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 7; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2001D CHUNK( 'GOKD', 0x2001D, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 65 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22310 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5roty.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotys.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 8, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 8; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2001E CHUNK( 'GOKD', 0x2001E, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 109 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22311 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotz.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotzs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 9, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 9; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2006B CHUNK( 'GOKD', 0x2006B, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 153 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22312 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5norm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5norms.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 20, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 20; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - - - - - - - - -SET _curgok = 0x20067 CHUNK( 'GOKD', 0x20067, ) PACK SHORT BO OSK LONG 1 - LONG 0 460 227 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 130 ) "studio\bmp\p4par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20020, 0x20020); - CreateChildThis(0x20021, 0x20021); - CreateChildThis(0x2006C, 0x2006C); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20065); - Return(0); - End; - - If((kid != 0x20020) && - (kid != 0x20021) && - (kid != 0x2006C)); - - - - ChangeStateThis(0x0002); - - If ((0x20002->chttActor != 10) && - (0x20002->chttActor != 11) && - (0x20002->chttActor != 21)); - ChangeStateGob(0x20065, 0x0001); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x20020 CHUNK( 'GOKD', 0x20020, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 86 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22313 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4sqsh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4sqshs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 10, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20067, 0x0002); - 0x20002->idactDown = 0x20065; - 0x20002->chttActor = 10; - ChangeStateGob(0x20065, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20021 CHUNK( 'GOKD', 0x20021, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 42 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22314 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4shrk.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4shrks.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 11, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20067, 0x0002); - 0x20002->idactDown = 0x20065; - 0x20002->chttActor = 11; - ChangeStateGob(0x20065, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2006C CHUNK( 'GOKD', 0x2006C, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 130 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22315 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4norm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4norms.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 21, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20067, 0x0002); - 0x20002->idactDown = 0x20065; - 0x20002->chttActor = 21; - ChangeStateGob(0x20065, 0x0002); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x20068 CHUNK( 'GOKD', 0x20068, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 480 100 526 188 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20031, 0x20031); - CreateChildThis(0x20033, 0x20033); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - ChangeStateGob(0x20069, 0x0002); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - FilterCmdsThis(400001, 0, 0xFFFFFFFF); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20069); - Return(0); - End; - - If((kid != 0x20031) && (kid != 0x20033)); - - - - ChangeStateThis(0x0002); - - If ((0x20002->chttTbox != 3) && - (0x20002->chttTbox != 4)); - ChangeStateGob(0x20069, 0x0001); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x20031 CHUNK( 'GOKD', 0x20031, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 44 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22316 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7scrl.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7scrls.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 4, 0, 0, 0); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - ChangeStateGob(0x20068, 0x0002); - 0x20002->idtbxDown = 0x20069; - 0x20002->chttTbox = 4; - ChangeStateGob(0x20069, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20033 CHUNK( 'GOKD', 0x20033, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 88 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22317 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7nscr.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7nscrs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 3, 0, 0, 0); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - ChangeStateGob(0x20068, 0x0002); - 0x20002->idtbxDown = 0x20069; - 0x20002->chttTbox = 3; - ChangeStateGob(0x20069, 0x0002); -ENDCHUNK - - -#line 81 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\popdn.cht" - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'GLSC', 0x21596, ) SCRIPT - lwDelay = 45; - EnqueueCid(50013, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - While(); - If(lwDelay > 10); - lwDelay -= 7; - End; - EnqueueCid(50013, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK - - -CHUNK( 'GLSC', 0x21597, ) SCRIPT - lwDelay = 45; - EnqueueCid(50014, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - While(); - If(lwDelay > 10); - lwDelay -= 7; - End; - EnqueueCid(50014, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x21501 CHUNK( 'GOKD', 0x21501, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 136 72 216 264 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21502, 0x21502); -ENDCHUNK - - - - -SET _curgok = 0x21502 CHUNK( 'GOKD', 0x21502, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 78 194 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK - -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21503, 0x21503); - ChangeStateGob(0x21503, 0x0002); - CreateChildThis(0x21504, 0x21504); - ChangeStateGob(0x21504, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (194 - 44 - 18)); - - xp = 0; - - While(xp <= (78 - 0 - 78)); - - - - - CreateChildThis(0x21505 + nFrame, 0x21505); - MoveAbsGob(0x21505 + nFrame, xp, yp); - nFrame++; - xp += 0 + 78; - End; - - yp += 0 + 44; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(((kid >= 0x21505) && (kid < 0x21510)) || - (kid == 0x21503) || - (kid == 0x21504)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21501, 0, 0, 0, 0); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x21505 CHUNK( 'GOKD', 0x21505, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x23051, 0, 0x10000, 1, 0, 1); - EnqueueCid(50017, 0x21501, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21501, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21503 CHUNK( 'GOKD', 0x21503, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21504 CHUNK( 'GOKD', 0x21504, ) PACK SHORT BO OSK LONG 0 - LONG 0 39 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - - -SET _curgok = 0x21511 CHUNK( 'GOKD', 0x21511, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 88 72 136 264 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21512, 0x21512); -ENDCHUNK - - - - -SET _curgok = 0x21512 CHUNK( 'GOKD', 0x21512, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 46 194 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21513, 0x21513); - ChangeStateGob(0x21513, 0x0002); - CreateChildThis(0x21514, 0x21514); - ChangeStateGob(0x21514, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (194 - 44 - 18)); - - xp = 0; - - While(xp <= (46 - 0 - 46)); - - - - - CreateChildThis(0x21515 + nFrame, 0x21515); - MoveAbsGob(0x21515 + nFrame, xp, yp); - ChangeStateGob(0x21515 + nFrame, 0x0002); - nFrame++; - xp += 0 + 46; - End; - - yp += 0 + 44; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(((kid >= 0x21515) && (kid < 0x21520)) || - (kid == 0x21513) || - (kid == 0x21514)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21511, 0, 0, 0, 0); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21515 CHUNK( 'GOKD', 0x21515, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x23051, 0, 0x10000, 1, 0, 1); - EnqueueCid(50017,0x21511, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21511, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21513 CHUNK( 'GOKD', 0x21513, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21514 CHUNK( 'GOKD', 0x21514, ) PACK SHORT BO OSK LONG 0 - LONG 0 23 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - -SET _curgok = 0x21521 CHUNK( 'GOKD', 0x21521, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 36 132 186 264 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21522, 0x21522); -ENDCHUNK - - - - -SET _curgok = 0x21522 CHUNK( 'GOKD', 0x21522, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 144 132 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21523, 0x21523); - ChangeStateGob(0x21523, 0x0002); - CreateChildThis(0x21524, 0x21524); - ChangeStateGob(0x21524, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (132 - 23 - 17)); - - xp = 0; - - While(xp <= (144 - 0 - 144)); - - - - - CreateChildThis(0x21525 + nFrame, 0x21525); - MoveAbsGob(0x21525 + nFrame, xp, yp); - ChangeStateGob(0x21525 + nFrame, 0x0002); - nFrame++; - xp += 0 + 144; - End; - - yp += 0 + 23; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(((kid >= 0x21525) && (kid < 0x21530)) || - (kid == 0x21523) || - (kid == 0x21524)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21521, 0, 0, 0, 0); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21525 CHUNK( 'GOKD', 0x21525, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x23051, 0, 0x10000, 1, 0, 1); - EnqueueCid(50017, 0x21521, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21521, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21523 CHUNK( 'GOKD', 0x21523, ) PACK SHORT BO OSK LONG 0 - LONG 0 72 115 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21524 CHUNK( 'GOKD', 0x21524, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 115 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - -SET _curgok = 0x21541 CHUNK( 'GOKD', 0x21541, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 172 100 332 338 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21542, 0x21542); -ENDCHUNK - - - - -SET _curgok = 0x21542 CHUNK( 'GOKD', 0x21542, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21543, 0x21543); - ChangeStateGob(0x21543, 0x0002); - CreateChildThis(0x21544, 0x21544); - ChangeStateGob(0x21544, 0x0002); - - yp = 0; - .kidThumb = 0x21545; - - While(yp <= (238 - 22 - 18)); - - xp = 0; - - While(xp <= (160 - 0 - 160)); - - - - - If (!(.kidThumb <= 0x21550)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\studio\\popdn.cht", ", line ", NumToStr(530,"")); End; - kidFrame = GidUnique(); - CreateChildThis(kidFrame, 0x21545); - MoveAbsGob(kidFrame, xp, yp); - .kidThumb++; - xp += 0 + 160; - End; - - yp += 0 + 22; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002F); - Return(1); - End; - - If(GidParGob(kid) == 0x21542); - Return(0); - End; - - If(((kid >= 0x21545) && (kid < 0x21550)) || - (kid == 0x21543) || - (kid == 0x21544)); - AlertStr("Handling kid the old way"); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21541, 0, 0, 0, 0); - ChangeStateGob(0x2002F, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21545 CHUNK( 'GOKD', 0x21545, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(GidParThis()->kidThumb, 0x21595); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002F); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002F; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21541, GidChild(GidThis()), 0, 0, 0); - EnqueueCid(50016, 0x21541, 0, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21595 CHUNK( 'GOKD', 0x21595, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 16 4 156 17 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0010 _st ) - - - - - - -SET _curgok = 0x21543 CHUNK( 'GOKD', 0x21543, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 219 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21544 CHUNK( 'GOKD', 0x21544, ) PACK SHORT BO OSK LONG 0 - LONG 0 80 219 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - - - -SET _curgok = 0x21551 CHUNK( 'GOKD', 0x21551, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 230 100 390 304 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21552, 0x21552); -ENDCHUNK - - - - -SET _curgok = 0x21552 CHUNK( 'GOKD', 0x21552, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21553, 0x21553); - ChangeStateGob(0x21553, 0x0002); - CreateChildThis(0x21554, 0x21554); - ChangeStateGob(0x21554, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (90 - 22 - 0)); - - xp = 0; - - While(xp <= (170 - 0 - 160)); - - - - - CreateChildThis(0x21555 + nFrame, 0x21555); - MoveAbsGob(0x21555 + nFrame, xp, yp); - nFrame++; - xp += 0 + 160; - End; - - yp += 0 + 22; - End; - If (!(!FGobExists(0x21555 + nFrame))); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\studio\\popdn.cht", ", line ", NumToStr(715,"")); End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002D); - Return(1); - End; - - If(((kid >= 0x21555) && (kid < 0x21560)) || - (kid == 0x21553) || - (kid == 0x21554)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21551, 0, 0, 0, 0); - ChangeStateGob(0x2002D, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21555 CHUNK( 'GOKD', 0x21555, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002D); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002D; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21551, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21551, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21553 CHUNK( 'GOKD', 0x21553, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 157 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - -SET _curgok = 0x21554 CHUNK( 'GOKD', 0x21554, ) PACK SHORT BO OSK LONG 0 - LONG 0 84 157 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - - - -SET _curgok = 0x21561 CHUNK( 'GOKD', 0x21561, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 288 100 448 400 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21562, 0x21562); -ENDCHUNK - - - - -SET _curgok = 0x21562 CHUNK( 'GOKD', 0x21562, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21563, 0x21563); - ChangeStateGob(0x21563, 0x0002); - CreateChildThis(0x21564, 0x21564); - ChangeStateGob(0x21564, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (300 - 40 - 19)); - - xp = 0; - - While(xp <= (160 - 0 - 160)); - - - - - CreateChildThis(0x21565 + nFrame, 0x21565); - MoveAbsGob(0x21565 + nFrame, xp, yp); - nFrame++; - xp += 0 + 160; - End; - - yp += 0 + 40; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20032); - Return(1); - End; - - If(((kid >= 0x21565) && (kid < 0x21570)) || - (kid == 0x21563) || - (kid == 0x21564)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21561, 0, 0, 0, 0); - ChangeStateGob(0x20032, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21565 CHUNK( 'GOKD', 0x21565, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x20032); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20032; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21561, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21561, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21563 CHUNK( 'GOKD', 0x21563, ) PACK SHORT BO OSK LONG 0 - LONG 0 50 133 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21564 CHUNK( 'GOKD', 0x21564, ) PACK SHORT BO OSK LONG 0 - LONG 0 86 133 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - -SET _curgok = 0x21571 CHUNK( 'GOKD', 0x21571, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 346 100 448 295 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21572, 0x21572); -ENDCHUNK - - - - -SET _curgok = 0x21572 CHUNK( 'GOKD', 0x21572, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 102 195 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21573, 0x21573); - ChangeStateGob(0x21573, 0x0002); - CreateChildThis(0x21574, 0x21574); - ChangeStateGob(0x21574, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (195 - 22 - 19)); - - xp = 0; - - While(xp <= (102 - 0 - 102)); - - - - - CreateChildThis(0x21575 + nFrame, 0x21575); - MoveAbsGob(0x21575 + nFrame, xp, yp); - nFrame++; - xp += 0 + 102; - End; - - yp += 0 + 22; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002E); - Return(1); - End; - - If(((kid >= 0x21575) && (kid < 0x21580)) || - (kid == 0x21573) || - (kid == 0x21574)); - Return(0); - End; - - If (kid == 0x2002E); - Return(1); - End; - - - - - EnqueueCid(50015, 0x21571, 0, 0, 0, 0); - ChangeStateGob(0x2002E, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21575 CHUNK( 'GOKD', 0x21575, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002E); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002E; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21571, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21571, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21573 CHUNK( 'GOKD', 0x21573, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21574 CHUNK( 'GOKD', 0x21574, ) PACK SHORT BO OSK LONG 0 - LONG 0 51 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - -SET _curgok = 0x21581 CHUNK( 'GOKD', 0x21581, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 421 100 591 300 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21582, 0x21582); -ENDCHUNK - - - - -SET _curgok = 0x21582 CHUNK( 'GOKD', 0x21582, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21583, 0x21583); - ChangeStateGob(0x21583, 0x0002); - CreateChildThis(0x21584, 0x21584); - ChangeStateGob(0x21584, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (200 - 22 - 19)); - - xp = 0; - - While(xp <= (170 - 0 - 102)); - - - - - CreateChildThis(0x21585 + nFrame, 0x21585); - MoveAbsGob(0x21585 + nFrame, xp, yp); - nFrame++; - xp += 0 + 102; - End; - - yp += 0 + 22; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002C); - Return(1); - End; - - If(((kid >= 0x21585) && (kid < 0x21590)) || - (kid == 0x21583) || - (kid == 0x21584)); - Return(0); - End; - - If (kid == 0x2002C); - Return(1); - End; - - - - - If (!(FGobExists(0x21581))); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\studio\\popdn.cht", ", line ", NumToStr(1208,"")); End; - EnqueueCid(50015, 0x21581, 0, 0, 0, 0); - ChangeStateGob(0x2002C, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21585 CHUNK( 'GOKD', 0x21585, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002C); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002C; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21581, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21581, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21583 CHUNK( 'GOKD', 0x21583, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 179 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21584 CHUNK( 'GOKD', 0x21584, ) PACK SHORT BO OSK LONG 0 - LONG 0 51 179 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -#line 82 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\browser.cht" - - - - - - - - - - - - - - - - - -SET _curgok = 0x2005A CHUNK( 'GOKD', 0x2005A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwdc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50013, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x2005B CHUNK( 'GOKD', 0x2005B, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bback.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bbackc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50014, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20058 CHUNK( 'GOKD', 0x20058, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\cancel.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\cancelc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50015, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20059 CHUNK( 'GOKD', 0x20059, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\okayc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50016, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20081 CHUNK( 'GOKD', 0x20081, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x21594 CHUNK( 'GOKD', 0x21594, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20162 CHUNK( 'GOKD', 0x20162, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 64 29 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x20126 CHUNK( 'GOKD', 0x20126, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2003E, 0x2003E); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x2003E CHUNK( 'GOKD', 0x2003E, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 418 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 258, 370 ) "studio\bmp\book1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 303, 320); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 226, 330); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 40; - nFrame = 0; - - While(yp <= (372 - 78 - 58)); - - xp = 40; - - While(xp <= (516 - 40 - 136)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2006D); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 136; - End; - - yp += 9 + 78; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - -SET _curgok = 0x2006D CHUNK( 'GOKD', 0x2006D, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame1h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20126, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20126, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - -SET _curgok = 0x20127 CHUNK( 'GOKD', 0x20127, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2007C, 0x2007C); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - - -SET _curgok = 0x2007C CHUNK( 'GOKD', 0x2007C, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 303, 320); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 226, 330); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 40; - nFrame = 0; - - While(yp <= (372 - 78 - 58)); - - xp = 40; - - While(xp <= (516 - 40 - 136)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2007D); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 136; - End; - - yp += 9 + 78; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2007D CHUNK( 'GOKD', 0x2007D, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame2h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20127, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20127, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x20128 CHUNK( 'GOKD', 0x20128, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2003F, 0x2003F); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x2003F CHUNK( 'GOKD', 0x2003F, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 47 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 304, 322); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 322); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 228, 332); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 38; - nFrame = 0; - - While(yp <= (372 - 80 - 58)); - - xp = 30; - - While(xp <= (516 - 30 - 80)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2006E); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 80; - End; - - yp += 14 + 80; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2006E CHUNK( 'GOKD', 0x2006E, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame3h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20128, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20128, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x20129 CHUNK( 'GOKD', 0x20129, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20040, 0x20040); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x20040 CHUNK( 'GOKD', 0x20040, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 47 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book4.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 304, 322); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 322); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 228, 332); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 38; - nFrame = 0; - - While(yp <= (372 - 80 - 58)); - - xp = 30; - - While(xp <= (516 - 30 - 80)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2007E); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 80; - End; - - yp += 14 + 80; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - - - -SET _curgok = 0x2007E CHUNK( 'GOKD', 0x2007E, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame4.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame4h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20129, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20129, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x2012A CHUNK( 'GOKD', 0x2012A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2001A, 0x2001A); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x2000563A); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - - -SET _curgok = 0x2001A CHUNK( 'GOKD', 0x2001A, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 204, 320); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 54, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 123, 330); - - CreateChildThis(0x21012, 0x20059); - MoveAbsGob(0x21012, 431, 368); - - ChangeStateGob( 0x21012, 0x0002 ); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 381, 368); - - ChangeStateGob( 0x21013, 0x0002 ); - - CreateChildThis(0x20080, 0x20080); - ChangeStateGob(0x20080, 0x0002); - - CreateChildThis(0x21591, 0x21591); - ChangeStateGob(0x21591, 0x0002); - - CreateChildThis(0x21593, 0x21593); - ChangeStateGob(0x21593, 0x0002); - - xp = 15; - nFrame = 0; - - While(xp <= (516 - 206 - 138)); - - yp = 32; - - While(yp <= (372 - 25 - 57)); - - - - CreateChildThis(0x21120 + nFrame, 0x2007F); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - yp += 3 + 25; - End; - - xp += 5 + 138; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21012) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - - Return(0); - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2007F CHUNK( 'GOKD', 0x2007F, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x2012A, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x20080 CHUNK( 'GOKD', 0x20080, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 312 12 496 282 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x21591 CHUNK( 'GOKD', 0x21591, ) PACK SHORT BO OSK LONG 1 - LONG 0 447 290 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D2 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celbk.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celbks.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23016, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50092, 0x2012A, GidThis(), 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21593 CHUNK( 'GOKD', 0x21593, ) PACK SHORT BO OSK LONG 1 - LONG 0 475 290 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D3 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celfw.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celfws.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23015, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50092, 0x2012A, GidThis(), 0, 0, 0); -ENDCHUNK - - - - - - - - -SET _curgok = 0x2011D CHUNK( 'GOKD', 0x2011D, ) PACK SHORT BO OSK LONG 1 - LONG 0 132 48 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book9.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildGob(0x20002, 0x21594, 0x21594); - CreateChildThis(0x2011E, 0x2011E); - CreateChildThis(0x2011F, 0x2011F); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 298, 205); - ChangeStateGob( 0x21013, 0x0002 ); - - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - - - - - - - EnqueueCid( 50099, 0,0,0,0, 0 ); - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If((kid == 0x2011E) || - (kid == 0x2011F)); - - Return(0); - - Elif (kid == 0x21013); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50015, 0, 0, 0, 0, 0); - DestroyGob(0x21594); - DestroyThis(); - Return(1); - End; - - End; -ENDCHUNK - -SET _curgok = 0x2011E CHUNK( 'GOKD', 0x2011E, ) PACK SHORT BO OSK LONG 1 - LONG 0 42 49 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22368 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6stor.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6stors.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50104, 20000 + 5, 0, 0, 0, 0); - EnqueueCid(50016, 0, 0, 0, 0, 0); - DestroyGob(0x21594); - DestroyGob(0x2011D); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2011F CHUNK( 'GOKD', 0x2011F, ) PACK SHORT BO OSK LONG 1 - LONG 0 197 48 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22369 -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr1.bmp" ENDCHUNK; -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr2.bmp" ENDCHUNK; -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr3.bmp" ENDCHUNK; -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000043 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr4.bmp" ENDCHUNK; -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cell = 0; - While(); - Cell(0x00000040 + cell, 0, 0, 60); - cell = cell+1; - If( cell==4 ); - cell = 0; - End; - - End; -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr1s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50104, 20000 + 5, 1, 0, 0, 0); - EnqueueCid(50016, 0, 0, 0, 0, 0); - DestroyGob(0x21594); - DestroyGob(0x2011D); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x2012B CHUNK( 'GOKD', 0x2012B, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2012E, 0x2012E); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005636); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2012C CHUNK( 'GOKD', 0x2012C, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2012E, 0x2012E); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005639); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2012D CHUNK( 'GOKD', 0x2012D, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2012E, 0x2012E); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005638); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2012E CHUNK( 'GOKD', 0x2012E, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 48 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book6.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book7.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book8.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - - If (GidParThis() == 0x2012C); - Cell(0x00000040, 0, 0, 10); - Elif (GidParThis() == 0x2012B); - Cell(0x00000041, 0, 0, 10); - Else; - Cell(0x00000042, 0, 0, 10); - End; - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 303, 320); - - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 154, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 230, 331); - - CreateChildThis(0x21012, 0x20059); - MoveAbsGob(0x21012, 437, 368); - ChangeStateGob( 0x21012, 0x0002 ); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 387, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - CreateChildThis(0x21014, 0x21014); - MoveAbsGob(0x21014, 104, 368); - - - If (GidParThis() == 0x2012B); - ChangeStateGob(0x21014, 0x0001); - Elif (GidParThis() == 0x2012D); - ChangeStateGob(0x21014, 0x0002); - Elif (GidParThis() == 0x2012C); - ChangeStateGob(0x21014, 0x0003); - End; - - - If (GidParThis() != 0x2012C); - CreateChildThis(0x21015, 0x21015); - MoveAbsGob(0x21015, 54, 368); - End; - - - xp = 31; - nFrame = 0; - - - While(xp <= (516 - 31 - 138)); - - yp = 34; - - While(yp <= (372 - 25 - 50)); - - - - - - CreateChildThis(0x21120 + nFrame, 0x2013B); - - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - yp += 3 + 25; - End; - - xp += 20 + 138; - End; - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - vk = _parm[3]; - - - - - - - - - - - - - - - - If(!FGobExists(0x20159)); - If ((cid == 100003) && ((vk == 46) || (vk == 8))); - EnqueueCid(50096, GidParGob( 0x2012E ), GidThis(), 0, 0, 0); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - - - - If(cid == 100007); - - If((kid == GidThis()) || - (GidParGob(kid) == GidThis())); - - Return(0); - - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2013B CHUNK( 'GOKD', 0x2013B, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - - - EnqueueCid(50017, GidParGob( 0x2012E ), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21015 CHUNK( 'GOKD', 0x21015, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\mike.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\mikes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - - If(GidParGob( 0x2012E) == 0x2012B); - EnqueueCid(50088, 0, 0, 0, 0, 0); - Elif(GidParGob( 0x2012E) == 0x2012D); - EnqueueCid(50088, 0, 1, 0, 0, 0); - End; - -ENDCHUNK - -SET _curgok = 0x21014 CHUNK( 'GOKD', 0x21014, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236B - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223E2 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223E3 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\sndport.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\sndports.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0004 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0004 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - EnqueueCid(50080, 0, 2, GidParGob( 0x2012E ), 0, 0); - - - FilterCmdsThis(50082, 0, 0x0021); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - - - - If(_parm[2] == 1); - EnqueueCid(50075, GidParGob(0x2012E), GidThis(), 0, 0, 0); - - FilterCmdsThis(50074, 0, 0x0022); - End; - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - FilterCmdsThis(50074, 0, 0xFFFFFFFF); - - EnqueueCid(50018, 20000 + 5, _parm[2], 0x21301, 0x21004, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x2014B CHUNK( 'GOKD', 0x2014B, ) PACK SHORT BO OSK LONG 1 - - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2014C, 0x2014C); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2014C CHUNK( 'GOKD', 0x2014C, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 48 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book6.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book7.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book8.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - - If (GidParGob(0x2012E) == 0x2012C); - Cell(0x00000040, 0, 0, 10); - Elif (GidParGob(0x2012E) == 0x2012B); - Cell(0x00000041, 0, 0, 10); - Else; - Cell(0x00000042, 0, 0, 10); - End; - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - CreateChildThis(0x21004, 0x21004); - MoveAbsGob(0x21004, 303, 320); - CreateChildThis(0x21005, 0x21005); - MoveAbsGob(0x21005, 154, 320); - - CreateChildThis(0x21008, 0x21008); - MoveAbsGob(0x21008, 230, 331); - - CreateChildThis(0x21006, 0x20059); - MoveAbsGob(0x21006, 437, 368); - ChangeStateGob( 0x21006, 0x0002 ); - - CreateChildThis(0x21007, 0x20058); - MoveAbsGob(0x21007, 387, 368); - ChangeStateGob( 0x21007, 0x0002 ); - - - - xp = 31; - nFrame = 0; - - While(xp <= (516 - 31 - 138)); - - yp = 34; - - While(yp <= (372 - 25 - 50)); - - - - - - CreateChildThis(0x21301 + nFrame, 0x2014D); - - MoveAbsGob(0x21301 + nFrame, xp, yp); - nFrame++; - yp += 3 + 25; - End; - - xp += 20 + 138; - End; - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If((kid == GidThis()) || - (GidParGob(kid) == GidThis())); - - Return(0); - - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2014D CHUNK( 'GOKD', 0x2014D, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - - EnqueueCid(50017, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - - - -SET _curgok = 0x21004 CHUNK( 'GOKD', 0x21004, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223C7 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwdc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50013, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21005 CHUNK( 'GOKD', 0x21005, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223C8 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bback.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bbackc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50014, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21007 CHUNK( 'GOKD', 0x21007, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\cancel.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\cancelc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50015, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21006 CHUNK( 'GOKD', 0x21006, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\okayc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50016, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - - -SET _curgok = 0x21008 CHUNK( 'GOKD', 0x21008, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 64 29 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - - - -SET _curgok = 0x20096 CHUNK( 'GOKD', 0x20096, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 3 98 46 411 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x21001, 0x21001); - MoveAbsGob(0x21001, 0, 296); - CreateChildThis(0x21000, 0x21000); - MoveAbsGob(0x21000, 20, 296); - - - - yp = 0; - - - - CreateChildThis(0x20164, 0x20164); - MoveAbsGob(0x20164, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20165, 0x20165); - MoveAbsGob(0x20165, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20166, 0x20166); - MoveAbsGob(0x20166, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20167, 0x20167); - MoveAbsGob(0x20167, 0, yp); - -ENDCHUNK - - - -SET _curgok = 0x20164 CHUNK( 'GOKD', 0x20164, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236D - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact1e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact1s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - - If(!FGobExists(0x21100)); - CreateChildThis(0x21100, 0x21100); - MoveAbsGob(0x21100, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21100, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21100 CHUNK( 'GOKD', 0x21100, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20165 CHUNK( 'GOKD', 0x20165, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236E - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact2e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact2s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21101)); - CreateChildThis(0x21101, 0x21101); - MoveAbsGob(0x21101, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21101, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21101 CHUNK( 'GOKD', 0x21101, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20166 CHUNK( 'GOKD', 0x20166, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236F - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact3e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact3s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21102)); - CreateChildThis(0x21102, 0x21102); - MoveAbsGob(0x21102, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21102, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21102 CHUNK( 'GOKD', 0x21102, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20167 CHUNK( 'GOKD', 0x20167, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22370 - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22370 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact4.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact4e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact4s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21103)); - CreateChildThis(0x21103, 0x21103); - MoveAbsGob(0x21103, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21103, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21103 CHUNK( 'GOKD', 0x21103, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 0xFFFFFFFF 0 0x22370 - LONG 0 0 0x00000010 0x00000001 0xFFFFFFFF 0 0x22370 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - - - -SET _curgok = 0x21001 CHUNK( 'GOKD', 0x21001, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcaup.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcaupc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcaupd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50014, 0x20096, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21000 CHUNK( 'GOKD', 0x21000, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcadwn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcadwnc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcadwnd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50013, 0x20096, GidThis(), 0, 0, 0); -ENDCHUNK - - - - - - - - -SET _curgok = 0x20097 CHUNK( 'GOKD', 0x20097, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 594 98 640 411 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - CreateChildThis(0x21003, 0x21003); - MoveAbsGob(0x21003, 0, 296); - CreateChildThis(0x21002, 0x21002); - MoveAbsGob(0x21002, 20, 296); - - - - yp = 0; - - - - CreateChildThis(0x20168, 0x20168); - MoveAbsGob(0x20168, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20169, 0x20169); - MoveAbsGob(0x20169, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x2016A, 0x2016A); - MoveAbsGob(0x2016A, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x2016B, 0x2016B); - MoveAbsGob(0x2016B, 0, yp); - -ENDCHUNK - - - -SET _curgok = 0x20168 CHUNK( 'GOKD', 0x20168, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238D - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp1e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp1s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21110)); - CreateChildThis(0x21110, 0x21110); - MoveAbsGob(0x21110, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21110, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21110 CHUNK( 'GOKD', 0x21110, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20169 CHUNK( 'GOKD', 0x20169, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238E - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp2e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp2s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21111)); - CreateChildThis(0x21111, 0x21111); - MoveAbsGob(0x21111, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21111, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21111 CHUNK( 'GOKD', 0x21111, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x2016A CHUNK( 'GOKD', 0x2016A, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238F - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp3e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp3s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21112)); - CreateChildThis(0x21112, 0x21112); - MoveAbsGob(0x21112, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21112, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21112 CHUNK( 'GOKD', 0x21112, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x2016B CHUNK( 'GOKD', 0x2016B, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22390 - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22390 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp4.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp4e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp4s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21113)); - CreateChildThis(0x21113, 0x21113); - MoveAbsGob(0x21113, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21113, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21113 CHUNK( 'GOKD', 0x21113, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 0xFFFFFFFF 0 0x22390 - LONG 0 0 0x00000010 0x00000001 0xFFFFFFFF 0 0x22390 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - - - -SET _curgok = 0x21003 CHUNK( 'GOKD', 0x21003, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223AE -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpup.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpupc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpupd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50014, 0x20097, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21002 CHUNK( 'GOKD', 0x21002, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223AF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpdwn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpdwnc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpdwnd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50013, 0x20097, GidThis(), 0, 0, 0); -ENDCHUNK -#line 83 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\easels.cht" - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20124 CHUNK( 'GOKD', 0x20124, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2009E, 0x2009E); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x2009E CHUNK( 'GOKD', 0x2009E, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 421 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 259, 364 ) "studio\bmp\e1par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x200A6, 0x200A6); - CreateChildThis(0x2009F, 0x2009F); - CreateChildThis(0x200A0, 0x200A0); - CreateChildThis(0x200A7, 0x200A7); - CreateChildThis(0x200A1, 0x200A1); - CreateChildThis(0x200A2, 0x200A2); - CreateChildThis(0x200A4, 0x200A4); - CreateChildThis(0x200A5, 0x200A5); - CreateChildThis(0x20121, 0x20121); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005633); - End; -ENDCHUNK - - - - - - -SET _curgok = 0x200A6 CHUNK( 'GOKD', 0x200A6, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 13 13 505 251 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x20121 CHUNK( 'GOKD', 0x20121, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 10 322 508 356 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x2009F CHUNK( 'GOKD', 0x2009F, ) PACK SHORT BO OSK LONG 1 - LONG 0 211 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1tran.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1trans.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23052, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50025, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200A0 CHUNK( 'GOKD', 0x200A0, ) PACK SHORT BO OSK LONG 1 - LONG 0 161 311 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1text.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1texts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50047, 0x20124, 0x20124, 0x21505, 0x21503, - (7 << 16) | 7); -ENDCHUNK - - - - -SET _curgok = 0x200A7 CHUNK( 'GOKD', 0x200A7, ) PACK SHORT BO OSK LONG 1 - LONG 0 61 311 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22352 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1font.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1fonts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50049, 0x20124, 0x20124, 0x21525, 0x21523, - (3 << 16) | 3); -ENDCHUNK - - - - -SET _curgok = 0x200A1 CHUNK( 'GOKD', 0x200A1, ) PACK SHORT BO OSK LONG 1 - LONG 0 111 311 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1shap.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1shaps.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50048, 0x20124, 0x21511, 0x21515, 0x21513, - (7 << 16) | 7); -ENDCHUNK - - - - -SET _curgok = 0x200A2 CHUNK( 'GOKD', 0x200A2, ) PACK SHORT BO OSK LONG 1 - LONG 0 284 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1rot.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1rots.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304E, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50026, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200A4 CHUNK( 'GOKD', 0x200A4, ) PACK SHORT BO OSK LONG 1 - LONG 0 407 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50027, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200A5 CHUNK( 'GOKD', 0x200A5, ) PACK SHORT BO OSK LONG 1 - LONG 0 457 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50028, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - - - - -SET _curgok = 0x20125 CHUNK( 'GOKD', 0x20125, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x200A8, 0x200A8); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x200A8 CHUNK( 'GOKD', 0x200A8, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 445 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 218, 345 ) "studio\bmp\e2par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x200AE, 0x200AE); - CreateChildThis(0x200A9, 0x200A9); - CreateChildThis(0x200AA, 0x200AA); - CreateChildThis(0x200AB, 0x200AB); - CreateChildThis(0x200AC, 0x200AC); - CreateChildThis(0x200AD, 0x200AD); - CreateChildThis(0x20123, 0x20123); - ChangeStateGob(0x200A9, 0x0002); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005635); - End; -ENDCHUNK - - - - - -SET _curgok = 0x200AE CHUNK( 'GOKD', 0x200AE, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 10 9 426 239 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x20123 CHUNK( 'GOKD', 0x20123, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 8 315 427 339 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x200A9 CHUNK( 'GOKD', 0x200A9, ) PACK SHORT BO OSK LONG 1 - LONG 0 57 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22354 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2cost.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2costs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304C, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50077, 0x20125, 0, 0, 0, 0); - ChangeStateThis(0x0002); - ChangeStateGob(0x200AB, 0x0001); -ENDCHUNK - - - - -SET _curgok = 0x200AA CHUNK( 'GOKD', 0x200AA, ) PACK SHORT BO OSK LONG 1 - LONG 0 225 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22355 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2rot.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2rots.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304E, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50026, 0x20125, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200AB CHUNK( 'GOKD', 0x200AB, ) PACK SHORT BO OSK LONG 1 - LONG 0 141 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22356 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2acc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2accs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304D, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50054, 0x20125, 0, 0, 0, 0); - ChangeStateThis(0x0002); - ChangeStateGob(0x200A9, 0x0001); -ENDCHUNK - - - - - -SET _curgok = 0x200AC CHUNK( 'GOKD', 0x200AC, ) PACK SHORT BO OSK LONG 1 - LONG 0 329 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50027, 0x20125, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200AD CHUNK( 'GOKD', 0x200AD, ) PACK SHORT BO OSK LONG 1 - LONG 0 379 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50028, 0x20125, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - - -#line 386 "H:\\BUILD\\SOC\\src\\studio\\easels.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x200AF CHUNK( 'GOKD', 0x200AF, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 413 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 300, 348 ) "studio\bmp\e3par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildGob(0x20002, 0x21594, 0x21594 ); - CreateChildThis(0x200B2, 0x200B2); - CreateChildThis(0x200B3, 0x200B3); - CreateChildThis(0x200B1, 0x200B1); - CreateChildThis(0x20117, 0x20117); - CreateChildThis(0x200B6, 0x200B6); - CreateChildThis(0x200B5, 0x200B5); - CreateChildThis(0x200B4, 0x200B4); - CreateChildThis(0x2012F, 0x2012F); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005632); - End; - - .idSelected = 0x20000; - - yp = 12; - .nFrame = 0; - - .dxpFrame = 8 + 185; - .dypFrame = 15 + 126; - .dxpSSorter = 600 - 10 + 8 - 10; - .dypSSorter = 350 - 56 - 12; - .nxFrame = .dxpSSorter / .dxpFrame; - - While(yp <= (350 - 126 - 56)); - - xp = 10; - - While(xp <= (600 - 10 - 185)); - - - - - CreateChildThis(0x200D7 + (.nFrame * 7), 0x200D7); - MoveAbsGob(0x200D7 + (.nFrame * 7), xp, yp); - .nFrame++; - xp += 8 + 185; - End; - - yp += 15 + 126; - End; - - - - - .idSelFrame = 0x200D7 + (.nFrame * 7); - CreateChildThis(.idSelFrame, 0x200D7); - ChangeStateGob(.idSelFrame, 0x0003); - - - - EnqueueCid(50030, 0x200AF, 0x200D7, - 0x200B2, 7, 0); - - ChangeModifierState(0x10000, 0); - ChangeStateGob(0x200B6, 0x0002); - ChangeStateThis(0x0002); -ENDCHUNK - - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - idSelFrame = .idSelFrame; - If(GetModifierState() & 0x10000); - - xpFrameMax = .dxpSSorter - .dxpFrame + 10; - ypFrameMax = .dypSSorter - .dypFrame; - - dxpFrames = 8 + 185; - dypFrames = 15 + 126; - - dtimCur = 0; - - PlaySoundThis('WAVE', 0x2300A, 0, 0x10000, 1, 0, 1); - - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 10); - dtimCur += 10; - - xpMouse = XMouseThis(); - ypMouse = YMouseThis(); - - xpNew = xpMouse - .dxpTrack; - ypNew = ypMouse - .dypTrack; - - If(xpNew < 0); - xpNew = 0; - Elif(xpNew > xpFrameMax); - xpNew = xpFrameMax; - End; - If(ypNew < 0); - ypNew = 0; - Elif(ypNew > ypFrameMax); - ypNew = ypFrameMax; - End; - - If(dtimCur >= 60); - dtimCur = 0; - If(ypMouse < 0); - EnqueueCid(50033, 0x200AF, -1 * .nxFrame, 1, 0, 0); - Elif(ypMouse > .dypSSorter); - EnqueueCid(50033, 0x200AF, .nxFrame, 1, 0, 0); - End; - End; - MoveAbsGob(idSelFrame, xpNew, ypNew); - - If(xpNew < 10); - xpBar = 8 / 2; - Else; - xpBar = (8 / 2) + (dxpFrames * (1 + ((xpNew - 10 - 1) / dxpFrames))); - End; - - ypBar = (15 / 2) + (dypFrames * ((ypNew + (dypFrames / 2)) / dypFrames)); - - MoveAbsGob(0x2012F, xpBar, ypBar); - - - If(StateGob(0x2012F) == 0x0001); - ChangeStateGob(0x2012F, 0x0002); - End; - - End; - - ChangeStateGob(0x2012F, 0x0001); - - PlaySoundThis('WAVE', 0x2300B, 0, 0x10000, 1, 0, 1); - - - xpNew = XGob(idSelFrame); - ypNew = YGob(idSelFrame); - - If(xpNew < 10); - xFrame = 0; - Else; - xFrame = 1 + ((xpNew - 10 - 1) / dxpFrames); - End; - - yFrame = (ypNew + (dypFrames / 2)) / dypFrames; - - gidFrame = yFrame * .nxFrame + xFrame; - gidFrame = (gidFrame * 7) + 0x200D7; - - - EnqueueCid(50032, 0x200AF, gidFrame, 0, 0, 0); - - - EnqueueCid(50033, 0x200AF, 0, 0, 0, 0); - ChangeStateGob(.idSelFrame, 0x0003); - - ChangeStateThis(0x0002); - Else; - AlertStr("Bogus state for scene sorter"); - End; -ENDCHUNK - - - - -SET _curgok = 0x200B2 CHUNK( 'GOKD', 0x200B2, ) PACK SHORT BO OSK LONG 1 - LONG 0 597 21 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st 0 0x2235F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3upc.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - lwDelay = 90; - cgokScroll = GidParThis()->nxFrame * -1; - - - PlaySoundThis('WAVE', 0x23047, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - - - While(); - If (!(GetModifierState() & 8)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\studio\\easels.cht", ", line ", NumToStr(642,"")); End; - If(lwDelay > lwSSorterDelayMin); - lwDelay -= 6; - End; - PlaySoundThis('WAVE', 0x23047, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x200B3 CHUNK( 'GOKD', 0x200B3, ) PACK SHORT BO OSK LONG 1 - LONG 0 597 292 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st 0 0x22360 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3down.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3downc.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - lwDelay = 90; - cgokScroll = GidParThis()->nxFrame; - - - PlaySoundThis('WAVE', 0x23048, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - - - While(); - If (!(GetModifierState() & 8)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\studio\\easels.cht", ", line ", NumToStr(678,"")); End; - If(lwDelay > lwSSorterDelayMin); - lwDelay -= 6; - End; - PlaySoundThis('WAVE', 0x23048, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x2012F CHUNK( 'GOKD', 0x2012F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\ssbar.bmp" ENDCHUNK - - - - -SET _curgok = 0x200B1 CHUNK( 'GOKD', 0x200B1, ) PACK SHORT BO OSK LONG 1 - LONG 0 160 298 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22365 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3port.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3portc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50037, 0x200AF, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200B5 CHUNK( 'GOKD', 0x200B5, ) PACK SHORT BO OSK LONG 1 - LONG 0 540 344 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 50035 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50035, 0x200AF, 0, 0, 0, 0); - OldState = GetModifierState(); - OldState &= (0x10000 | 0x20000); - ChangeModifierState(0, OldState); -ENDCHUNK - - - - -SET _curgok = 0x200B4 CHUNK( 'GOKD', 0x200B4, ) PACK SHORT BO OSK LONG 1 - LONG 0 490 344 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 50036 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50036, 0x200AF, 0, 0, 0, 0); - OldState = GetModifierState(); - OldState &= (0x10000 | 0x20000); - ChangeModifierState(0, OldState); -ENDCHUNK - - - - -SET _curgok = 0x20117 CHUNK( 'GOKD', 0x20117, ) PACK SHORT BO OSK LONG 1 - LONG 0 105 298 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22364 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3rmsn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3rmsnc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - OldState = GetModifierState(); - OldState &= 0x10000; - - - - - - If(OldState & 0x10000); - ChangeStateGob(0x200B6, 0x0001); - End; - ChangeModifierState(0x20000, OldState); - ChangeStateThis(0x0002); -ENDCHUNK - - - - -SET _curgok = 0x200B6 CHUNK( 'GOKD', 0x200B6, ) PACK SHORT BO OSK LONG 1 - LONG 0 50 298 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22363 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3hand.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3handc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - OldState = GetModifierState(); - OldState &= 0x20000; - - - - - - If(OldState & 0x20000); - ChangeStateGob(0x20117, 0x0001); - End; - ChangeModifierState(0x10000, OldState); - ChangeStateThis(0x0002); -ENDCHUNK - - - - -SET _curgok = 0x200D7 CHUNK( 'GOKD', 0x200D7, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0x10000 0x10000 0xffffffff 0x00000001 0xFFFFFFFF 0 0x2235A - LONG 0x20000 0x20000 0xffffffff 117 0xFFFFFFFF 0 0x2235A -ENDCHUNK - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3frm.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3frms.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3frms.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(GidThis() + 1, 0x20118); - CreateChildThis(GidThis() + 2, 0x20119); - CreateChildThis(GidThis() + 3, 0x2011A); - CreateChildThis(GidThis() + 4, 0x2011B); - CreateChildThis(GidThis() + 5, 0x2011C); - ChangeStateThis(0x0003); -ENDCHUNK - - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - If(StateGob(GidParThis()->idSelFrame) == 0x0003); - EnqueueCid(50031, 0x200AF, GidThis(), 0, 0, 0); - End; -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - If(GetModifierState() & 0x10000); - idSelFrame = GidParThis()->idSelFrame; - If(StateGob(idSelFrame) == 0x0003); - EnqueueCid(50033, 0x200AF, 0, 1, 0, 0); - End; - End; -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - gidParent = GidParThis(); - idSelFrame = gidParent->idSelFrame; - If(StateGob(idSelFrame) == 0x0003); - xpThis = XThis(); - ypThis = YThis(); - If(StateGob(idSelFrame) != 0x0005); - MoveAbsGob(idSelFrame, xpThis, ypThis); - ChangeStateGob(idSelFrame, 0x0005); - End; - - gidParent->dxpTrack = XMouseGob(gidParent) - xpThis; - gidParent->dypTrack = YMouseGob(gidParent) - ypThis; - - ChangeStateGob(gidParent, 0x0005); - End; -ENDCHUNK - - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - If(GetModifierState() & 0x20000); - PlaySoundGob(0x200AF, 'WAVE', 0x2304B, 0, 0x10000, 1, 0, 1); - EnqueueCid(50034, 0x200AF, 0, 0, 0, 0); - End; -ENDCHUNK - - - - - -SET _curgok = 0x2011C CHUNK( 'GOKD', 0x2011C, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 8 12 151 92 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x20118 CHUNK( 'GOKD', 0x20118, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 11 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn1s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20119 CHUNK( 'GOKD', 0x20119, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 33 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn2s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 2, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2011A CHUNK( 'GOKD', 0x2011A, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 55 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn3s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 3, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2011B CHUNK( 'GOKD', 0x2011B, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 77 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn4.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn4s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 4, 0, 0); -ENDCHUNK - - - - - - - - - -SET _curgok = 0x2013A CHUNK( 'GOKD', 0x2013A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20137, 0x20137); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x2014F CHUNK( 'GOKD', 0x2014F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2014E, 0x2014E); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20137 CHUNK( 'GOKD', 0x20137, ) PACK SHORT BO OSK LONG 1 - LONG 0 182 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4parmm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x2013C, 0x2013C); - CreateChildThis(0x2013D, 0x2013D); - CreateChildThis(0x2013E, 0x2013E); - CreateChildThis(0x2013F, 0x2013F); - - - CreateChildThis(0x20146, 0x20146); - MoveAbsGob(0x20146, 240, 143); - CreateChildThis(0x20147, 0x20147); - MoveAbsGob(0x20147, 109, 143); - CreateChildThis(0x20148, 0x20148); - MoveAbsGob(0x20148, 240, 143); - CreateChildThis(0x20149, 0x20149); - MoveAbsGob(0x20149, 109, 143); - - - CreateChildThis(0x20141, 0x20141); - MoveAbsGob(0x20141, 141, 150 ); - CreateChildThis(0x20142, 0x20142); - MoveAbsGob(0x20142, 10, 150 ); - CreateChildThis(0x20143, 0x20143); - MoveAbsGob(0x20143, 141, 150 ); - CreateChildThis(0x20144, 0x20144); - MoveAbsGob(0x20144, 10, 150 ); - - - CreateChildThis(0x20151, 0x20151); - MoveAbsGob(0x20151, 144, 117); - CreateChildThis(0x20152, 0x20152); - MoveAbsGob(0x20152, 144, 117); - CreateChildThis(0x20153, 0x20153); - MoveAbsGob(0x20153, 13, 117); - CreateChildThis(0x20154, 0x20154); - MoveAbsGob(0x20154, 12, 117); - - - - CreateChildThis(0x20138, 0x20138); - MoveAbsGob(0x20138, 173, 233 ); - CreateChildThis(0x20139, 0x20139); - MoveAbsGob(0x20139, 223, 233 ); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005634); - End; -ENDCHUNK - - - - -SET _curgok = 0x2014E CHUNK( 'GOKD', 0x2014E, ) PACK SHORT BO OSK LONG 1 - LONG 0 116 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x2013C, 0x2013C); - CreateChildThis(0x2013D, 0x2013D); - CreateChildThis(0x20140, 0x20140); - - - CreateChildThis(0x20146, 0x20146); - MoveAbsGob(0x20146, 243, 144); - CreateChildThis(0x20147, 0x20147); - MoveAbsGob(0x20147, 112, 144); - CreateChildThis(0x2014A, 0x2014A); - MoveAbsGob(0x2014A, 374, 144); - - - CreateChildThis(0x20141, 0x20141); - CreateChildThis(0x20142, 0x20142); - CreateChildThis(0x20145, 0x20145); - - - CreateChildThis(0x20151, 0x20151); - MoveAbsGob(0x20151, 144, 117); - CreateChildThis(0x20153, 0x20153); - MoveAbsGob(0x20153, 13, 117); - CreateChildThis(0x20150, 0x20150); - MoveAbsGob(0x20150, 275, 117); - - CreateChildThis(0x20138, 0x20138); - CreateChildThis(0x20139, 0x20139); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005634); - End; -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x2013C CHUNK( 'GOKD', 0x2013C, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 201 20 251 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); - - FilterCmdsThis(50073, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - - - - kid = _parm[0]; - - If(kid == 0x2013C); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016C; - kidAudition = 0x20141; - kidNuke = 0x20146; - - Elif(kid == 0x2013D); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016D; - kidAudition = 0x20142; - kidNuke = 0x20147; - - Elif(kid == 0x20140); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016E; - kidAudition = 0x20145; - kidNuke = 0x2014A; - - Elif(kid == 0x2013E); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016F; - kidAudition = 0x20143; - kidNuke = 0x20148; - - Elif(kid == 0x2013F); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x20170; - kidAudition = 0x20144; - kidNuke = 0x20149; - End; - - ChangeStateGob(kid, 0x0003); - - ChangeStateGob(kidAudition, 0x0003); - ChangeStateGob(kidNuke, 0x0003); - - - If(!FGobExists(kidThumb)); - CreateChildGob(kid, kidThumb, kidThumb); - End; - - FullDisplay = yNuke - yMin; - NewDisplay = (_parm[2] * FullDisplay) / 0x00010000; - yPos = yNuke - NewDisplay; - - MoveAbsGob(kidThumb, 5, yPos); - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016C, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013C, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20141, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) - -SET _curgok = 0x2016C CHUNK( 'GOKD', 0x2016C, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x2013D CHUNK( 'GOKD', 0x2013D, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 70 20 120 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016D, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013D, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20142, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x2016D CHUNK( 'GOKD', 0x2016D, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x20140 CHUNK( 'GOKD', 0x20140, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 332 20 382 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016E, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x20140, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20145, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x2016E CHUNK( 'GOKD', 0x2016E, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x2013E CHUNK( 'GOKD', 0x2013E, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 201 20 251 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016F, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013E, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20143, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x2016F CHUNK( 'GOKD', 0x2016F, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x2013F CHUNK( 'GOKD', 0x2013F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 70 20 120 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x20170, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013F, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20144, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x20170 CHUNK( 'GOKD', 0x20170, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - - - - -SET _curgok = 0x20146 CHUNK( 'GOKD', 0x20146, ) PACK SHORT BO OSK LONG 1 - LONG 0 243 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016C, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013C, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20147 CHUNK( 'GOKD', 0x20147, ) PACK SHORT BO OSK LONG 1 - LONG 0 112 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016D, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013D, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2014A CHUNK( 'GOKD', 0x2014A, ) PACK SHORT BO OSK LONG 1 - LONG 0 374 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016E, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x20140, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20148 CHUNK( 'GOKD', 0x20148, ) PACK SHORT BO OSK LONG 1 - LONG 0 243 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016F, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013E, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20149 CHUNK( 'GOKD', 0x20149, ) PACK SHORT BO OSK LONG 1 - LONG 0 112 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x20170, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013F, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20141 CHUNK( 'GOKD', 0x20141, ) PACK SHORT BO OSK LONG 4 - LONG 0 143 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C2 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - EnqueueCid(50072, GidParGob(GidParThis()), 0x20141, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - EnqueueCid(50072, GidParGob(GidParThis()), 0x20141, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20142 CHUNK( 'GOKD', 0x20142, ) PACK SHORT BO OSK LONG 4 - LONG 0 12 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C3 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20142, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20142, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20145 CHUNK( 'GOKD', 0x20145, ) PACK SHORT BO OSK LONG 4 - LONG 0 274 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C6 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20145, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20145, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20143 CHUNK( 'GOKD', 0x20143, ) PACK SHORT BO OSK LONG 4 - LONG 0 143 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C4 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20143, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20143, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20144 CHUNK( 'GOKD', 0x20144, ) PACK SHORT BO OSK LONG 4 - LONG 0 12 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C5 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20144, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20144, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20138 CHUNK( 'GOKD', 0x20138, ) PACK SHORT BO OSK LONG 1 - LONG 0 304 233 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50027, GidParGob(GidParThis()), 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20139 CHUNK( 'GOKD', 0x20139, ) PACK SHORT BO OSK LONG 1 - LONG 0 354 233 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50028, GidParGob(GidParThis()), 0, 0, 0, 0); -ENDCHUNK - - - - - - - -SET _curgok = 0x20150 CHUNK( 'GOKD', 0x20150, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20151 CHUNK( 'GOKD', 0x20151, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20153 CHUNK( 'GOKD', 0x20153, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20152 CHUNK( 'GOKD', 0x20152, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20154 CHUNK( 'GOKD', 0x20154, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - - - - - - - -SET _curgok = 0x20158 CHUNK( 'GOKD', 0x20158, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20159, 0x20159); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20159 CHUNK( 'GOKD', 0x20159, ) PACK SHORT BO OSK LONG 1 - LONG 0 202 154 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e5par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x2015A, 0x2015A); - - - CreateChildThis(0x2015B, 0x2015B); - - - - CreateChildThis(0x2015C, 0x2015C); - CreateChildThis(0x2015D, 0x2015D); - CreateChildThis(0x2015E, 0x2015E); - CreateChildThis(0x2015F, 0x2015F); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005637); - End; -ENDCHUNK - - - - -SET _curgok = 0x2015A CHUNK( 'GOKD', 0x2015A, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0 0 0x223CB -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 22 30 214 51 LONG BYTE 11 0 0 0xfe LONG 0xffffffff - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - FilterCmdsThis(50089, 0, 0x0021); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - - - MaxWidth = 214 - 22 + 1; - NewWidth = (MaxWidth * _parm[2]) / 100; - - ResizeThis( NewWidth, 51 - 30 + 1 ); - -ENDCHUNK - - - - -SET _curgok = 0x2015B CHUNK( 'GOKD', 0x2015B, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 123 75 232 95 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x2015C CHUNK( 'GOKD', 0x2015C, ) PACK SHORT BO OSK LONG 1 - LONG 0 36 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223CD -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5mike.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5mikes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50076, 0x20158, 0, 0, 0, 0); - - - ChangeStateGob(0x2015D, 0x0001); - ChangeStateGob(0x2015C, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2015D CHUNK( 'GOKD', 0x2015D, ) PACK SHORT BO OSK LONG 1 - LONG 0 88 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223CE -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5play.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5plays.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23050, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23050, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, 0x20158, 0, 0, 0, 0); - - - ChangeStateGob(0x2015C, 0x0001); - ChangeStateGob(0x2015D, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2015E CHUNK( 'GOKD', 0x2015E, ) PACK SHORT BO OSK LONG 1 - LONG 0 152 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2000563E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50027, 0x20158, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2015F CHUNK( 'GOKD', 0x2015F, ) PACK SHORT BO OSK LONG 1 - LONG 0 202 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2000563F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50028, 0x20158, 0, 0, 0, 0); -ENDCHUNK - -#line 84 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\stdioscb.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 37 "H:\\BUILD\\SOC\\src\\studio\\stdioscb.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20083 CHUNK( 'GOKD', 0x20083, ) PACK SHORT BO OSK LONG 4 LONG 0 2 2 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fttl.bmp" ENDCHUNK -SET _curgok = 0x20084 CHUNK( 'GOKD', 0x20084, ) PACK SHORT BO OSK LONG 4 LONG 0 55 2 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\ftxt.bmp" ENDCHUNK - - -SET _curgok = 0x20085 CHUNK( 'GOKD', 0x20085, ) PACK SHORT BO OSK LONG 1 LONG 0 251 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DA ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffws.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50045, 0, 22, GetModifierState(), 0, 0); lwDelay = 60; CellNoPause(0x00000040, 0, 0, 0); While(); EnqueueCid(50021, 0, 22, 0, 0, 0); Cell(0xFFFFFFFF, 0, 0, lwDelay); SetNoSlipThis(1); If(lwDelay > 24); lwDelay -= 6; End; End; ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001E _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK - - -SET _curgok = 0x20086 CHUNK( 'GOKD', 0x20086, ) PACK SHORT BO OSK LONG 1 LONG 0 273 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DB ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50021, 0, 23, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2302D, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - -SET _curgok = 0x20087 CHUNK( 'GOKD', 0x20087, ) PACK SHORT BO OSK LONG 1 LONG 0 141 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223D9 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frws.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50045, 0, 24, GetModifierState(), 0, 0); lwDelay = 60; CellNoPause(0x00000040, 0, 0, 0); While(); EnqueueCid(50021, 0, 24, 0, 0, 0); Cell(0xFFFFFFFF, 0, 0, lwDelay); SetNoSlipThis(1); If(lwDelay > 24); lwDelay -= 6; End; End; ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001E _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK - - -SET _curgok = 0x20088 CHUNK( 'GOKD', 0x20088, ) PACK SHORT BO OSK LONG 1 LONG 0 119 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223D8 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50021, 0, 25, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23029, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - - -SET _curgok = 0x20089 CHUNK( 'GOKD', 0x20089, ) PACK SHORT BO OSK LONG 1 LONG 0 151 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223E1 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fscl.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT cxThumbTab = WidthGob(0x2008A); If((XMouseThis() - cxThumbTab) < 0); EnqueueCid(50021, 0, 26, 0, 1, 0); Else; EnqueueCid(50021, 0, 26, XMouseThis() - cxThumbTab, 1, 0); End; ENDCHUNK - - - -SET _curgok = 0x2008A CHUNK( 'GOKD', 0x2008A, ) PACK SHORT BO OSK LONG 1 LONG 0 0 2 11 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x001D _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0018 _st 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fthm.bmp" ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fthms.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT xpSav = XThis(); ypSav = YThis(); If(0); .click = ypSav; cyScrollbar = HeightGob(0x20089); cyThumbTab = HeightThis(); ypMax = cyScrollbar - cyThumbTab; Else; .click = xpSav; cxScrollbar = WidthGob(0x20089); cxThumbTab = WidthThis(); xpMax = cxScrollbar - cxThumbTab; End; .fSnap = 0; While(); If(0); dxp = XMouseThis(); dyp = YMouseThis() - (cyThumbTab / 2); yp = YThis(); If(Abs(dxp - xpSav) > 32 || yp + dyp < -32 || yp + dyp > ypMax + 32); .fSnap = 1; dyp = ypSav - yp; Else; .fSnap = 0; If(yp + dyp < 0); dyp = -yp; End; If(yp + dyp > ypMax); dyp = ypMax - yp; End; End; Cell(0xFFFFFFFF, 0, dyp, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = yp + dyp; Else; dxp = XMouseThis() - (cxThumbTab / 2); dyp = YMouseThis(); xp = XThis(); If(Abs(dyp - ypSav) > 32 || xp + dxp < -32 || xp + dxp > xpMax + 32); .fSnap = 1; dxp = xpSav - xp; Else; .fSnap = 0; If(xp + dxp < 0); dxp = -xp; End; If(xp + dxp > xpMax); dxp = xpMax - xp; End; End; Cell(0xFFFFFFFF, dxp, 0, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = xp + dxp; End; If(0); EnqueueCid(50112, 0, 27, .click, 0, 0); End; End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT If(.fSnap == 0); EnqueueCid(50112, 0, 27, .click, 1, 0); End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0018 _st ) - - - - - - - - -SET _curgok = 0x2008C CHUNK( 'GOKD', 0x2008C, ) PACK SHORT BO OSK LONG 4 LONG 0 2 3 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\sttl.bmp" ENDCHUNK - -SET _curgok = 0x2008D CHUNK( 'GOKD', 0x2008D, ) PACK SHORT BO OSK LONG 4 LONG 0 55 2 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\stxt.bmp" ENDCHUNK - - -SET _curgok = 0x2008E CHUNK( 'GOKD', 0x2008E, ) PACK SHORT BO OSK LONG 1 LONG 0 251 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DE ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfws.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 30, GetModifierState(), 0, 0); ENDCHUNK - -SET _curgok = 0x2008F CHUNK( 'GOKD', 0x2008F, ) PACK SHORT BO OSK LONG 1 LONG 0 273 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 23, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23031, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - -SET _curgok = 0x20090 CHUNK( 'GOKD', 0x20090, ) PACK SHORT BO OSK LONG 1 LONG 0 141 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DD ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srws.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 31, GetModifierState(), 0, 0); ENDCHUNK - -SET _curgok = 0x20091 CHUNK( 'GOKD', 0x20091, ) PACK SHORT BO OSK LONG 1 LONG 0 119 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DC ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 25, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2302E, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - - -SET _curgok = 0x20092 CHUNK( 'GOKD', 0x20092, ) PACK SHORT BO OSK LONG 1 LONG 0 151 1 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223E0 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\sscl.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT cxThumbTab = WidthGob(0x20093); If((XMouseThis() - cxThumbTab) < 0); EnqueueCid(50022, 0, 26, 0, 1, 0); Else; EnqueueCid(50022, 0, 26, XMouseThis() - cxThumbTab, 1, 0); End; ENDCHUNK - - - -SET _curgok = 0x20093 CHUNK( 'GOKD', 0x20093, ) PACK SHORT BO OSK LONG 1 LONG 0 0 2 11 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x001D _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0018 _st 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\stmb.bmp" ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\stmb.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT xpSav = XThis(); ypSav = YThis(); If(0); .click = ypSav; cyScrollbar = HeightGob(0x20092); cyThumbTab = HeightThis(); ypMax = cyScrollbar - cyThumbTab; Else; .click = xpSav; cxScrollbar = WidthGob(0x20092); cxThumbTab = WidthThis(); xpMax = cxScrollbar - cxThumbTab; End; .fSnap = 0; While(); If(0); dxp = XMouseThis(); dyp = YMouseThis() - (cyThumbTab / 2); yp = YThis(); If(Abs(dxp - xpSav) > 32 || yp + dyp < -32 || yp + dyp > ypMax + 32); .fSnap = 1; dyp = ypSav - yp; Else; .fSnap = 0; If(yp + dyp < 0); dyp = -yp; End; If(yp + dyp > ypMax); dyp = ypMax - yp; End; End; Cell(0xFFFFFFFF, 0, dyp, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = yp + dyp; Else; dxp = XMouseThis() - (cxThumbTab / 2); dyp = YMouseThis(); xp = XThis(); If(Abs(dyp - ypSav) > 32 || xp + dxp < -32 || xp + dxp > xpMax + 32); .fSnap = 1; dxp = xpSav - xp; Else; .fSnap = 0; If(xp + dxp < 0); dxp = -xp; End; If(xp + dxp > xpMax); dxp = xpMax - xp; End; End; Cell(0xFFFFFFFF, dxp, 0, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = xp + dxp; End; If(0); EnqueueCid(50113, 0, 27, .click, 0, 0); End; End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT If(.fSnap == 0); EnqueueCid(50113, 0, 27, .click, 1, 0); End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0018 _st ) - -#line 85 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\helpres.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\src\\studio\\helpres.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 7 "H:\\BUILD\\SOC\\src\\studio\\helpres.cht" - - - -CHUNK( 'MBMP', 0x202B0, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B1, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B2, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B3, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1020.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B4, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1020d.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B5, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1020r.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B6, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\okbtn1.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B7, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\okbtn2.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B8, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\okbtn3.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B9, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202BA, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202BB, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK - - - - - - - - - - - - - - - - - -CHUNK( 'MBMP', 0x202A3, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpcutwbx.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202A1, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hphndcur.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202A2, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpwbcur.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hplcanc.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hplok.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpscrl.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202A0, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpnscrl.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20286, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpvolctl.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20287, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpffw.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20288, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpffwe.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20289, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfrw.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfrwe.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpnuke.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpsndrec.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpsndply.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpcstchg.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpscnsld.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20290, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfrmsld.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20291, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn1.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20292, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn2.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20293, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn3.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20294, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn4.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20295, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpsndmic.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20296, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpptopen.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20297, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpptsvas.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20298, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccpreb.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20299, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccprea.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccpres.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccprob.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpaction.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20285, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1back.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20014, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1view.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20015, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2arrw.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20016, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2bio.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20017, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2comp.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20018, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2cost.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20019, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5norm.bmp" ENDCHUNK - - - - - - -CHUNK( 'MBMP', 0x2001B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2recd.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5rotx.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5roty.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5rotz.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2soon.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20020, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp4sqsh.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20021, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp4shrk.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20022, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2xy.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20023, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2xys.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20024, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2zero.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x20026, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3sing.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20027, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3ear.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x20029, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3loop.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3rpt.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x2002C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4back.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4bold.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4colr.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4font.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20030, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4ins.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20031, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp7scrl.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20032, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4size.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20033, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp7nscr.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20034, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpbook.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20035, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpmap.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20036, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccp.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20037, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpundo.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x20039, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpplay.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20284, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpplays.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2003A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1scen.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2003C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpport.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2003D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpexit.bmp" ENDCHUNK - - - - - - - - - - - - -CHUNK( 'MBMP', 0x20046, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4new.bmp" ENDCHUNK - - - - - -CHUNK( 'MBMP', 0x20049, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp1new.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp1save.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1mous.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1nops.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1note.bmp" ENDCHUNK - - - - - - - - - -CHUNK( 'MBMP', 0x20053, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3cppt.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20054, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3past.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20055, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3copy.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20056, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3cut.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20058, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpcancel.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20059, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpokay.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2005A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfwd.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2005B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpbback.bmp" ENDCHUNK - - - - - - - - - - - - - - - - - - -CHUNK( 'MBMP', 0x20167, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2cont.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20168, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2rot.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 0x20169, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2tran.bmp" ENDCHUNK - - - - - - - -CHUNK( 'MBMP', 0x2016D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4scrl.bmp" ENDCHUNK - - - - - -CHUNK( 'MBMP', 0x20270, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5norm.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20271, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp4norm.bmp" ENDCHUNK - - - - - - - - - - - - -CHUNK( 'MBMP', 0x2027D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2actr.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2027E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2prop.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2027F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2splt.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20281, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3horn.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20282, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3mike.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20283, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3note.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x202BC, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpredo.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202BD, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3rmsd.bmp" ENDCHUNK - -#line 87 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\helpctrl.cht" -CHUNK( 'GLCR', 0x00001004, ) PACK PALETTE "studio\bmp\socpal2.bmp" ENDCHUNK - - - - -SET _curgok = 0x00016100 CHUNK( 'GOKD', 0x00016100, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\squishy1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\squishy2.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\squishy3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\sqshbtn.wav" ENDCHUNK - - -SET _curgok = 0x00016103 CHUNK( 'GOKD', 0x00016103, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\okbtn1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\okbtn3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\okbtn2.bmp" ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\ok.wav" ENDCHUNK - - - -SET _curgok = 0x00016104 CHUNK( 'GOKD', 0x00016104, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\gemtip.wav" ENDCHUNK - - -SET _curgok = 0x00016102 CHUNK( 'GOKD', 0x00016102, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\gemtip.wav" ENDCHUNK - - -SET _curgok = 0x00016101 CHUNK( 'GOKD', 0x00016101, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1020.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1020d.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1020r.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\ok.wav" ENDCHUNK - - -SET _curgok = 0x00016105 CHUNK( 'GOKD', 0x00016105, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\cancbtn1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\cancbtn3.bmp" ENDCHUNK - - - - - - -#line 88 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\helpbook.cht" - - - - - - - - - - - -CHUNK( 'WAVE', 0x00001010, ) FILE "studio\sound\next.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00001011, ) FILE "studio\sound\next.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00001012, ) FILE "studio\sound\back.wav" ENDCHUNK - - - - - - -SET _curgok = 0x00003002 CHUNK( 'GOKD', 0x00003002, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - .last = 0; - .lasthow = 0; - .hsshow = 0; - - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - - - - - - FilterCmdsThis(100003, 0, 0x0029); - - - CreateChildThis( 0x00003003, 0x00003003 ); - CreateChildThis( 0x00003005, 0x00003005 ); - CreateChildThis( 0x00003016, 0x00003016 ); - - - - RunScriptThis(0x0024, ::HBSection, ::HBtpcCur[::HBSection ] ); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If( _parm[0] != 1 ); - tpc = ::HBtpcEnd[ _parm[0]-1 ] +1; - Else; - tpc = 0x20000105; - End; - - RunScriptThis( 0x0024, _parm[0], tpc ); - - ENDCHUNK - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - - sec = ::HBSection; - top = ::HBtpcCur[sec]; - - If (top == 0x20000105); - Exit(); - End; - top--; - - If (sec > 1); - If (top <= ::HBtpcEnd[sec - 1]); - - sec--; - End; - End; - - RunScriptThis(0x0024, sec, top); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - - - sec = ::HBSection; - top = ::HBtpcCur[ sec ]; - - If (top == 0x20000138); - Exit(); - End; - top++; - If (sec < 10); - - If (top > ::HBtpcEnd[sec]); - - sec++; - End; - End; - - RunScriptThis(0x0024, sec, top ); - ENDCHUNK - - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - sec = _parm[0]; - tpc = _parm[1]; - - ::HBSection = sec; - ::HBtpcCur[sec] = tpc; - - - - If (.last != 0); - ChangeStateGob(.last, 0x0001); - End; - - - gob = Select(sec, 0, - 0x00003006, 0x00003007, 0x00003008, - 0x00003008, 0x00003008, 0x00003008, - 0x00003008, 0x00003008, 0x00003009, - 0x00003010); - - If( gob != 0 ); - ChangeStateGob(gob, 0x0002); - .last = gob; - End; - - - If ( sec >= 3 && sec <= 8); - - ::HBLastsub = sec; - - - If (.hsshow == 0); - ChangeStateGob(0x00003016, 0x0002); - .hsshow = 1; - End; - - - If (.lasthow != 0); - ChangeStateGob(.lasthow, 0x0001); - End; - - - gob = Select( sec - 2, 0, - 0x00003017, 0x00003018, - 0x00003019, 0x00003020, - 0x00003021, 0x00003022); - - - ChangeStateGob(gob, 0x0002); - .lasthow = gob; - - - Else; - If (.hsshow == 1); - ChangeStateGob(0x00003016, 0x0003); - .hsshow = 0; - End; - End; - - - ChangeStateGob( 0x00003013, - ((tpc) >= 0x20000138 ) ? 0x0002 : 0x0001 ); - - - ChangeStateGob( 0x00003014, - (tpc <= 0x20000105 ) ? 0x0002 : 0x0001 ); - - - - start = (sec == 1 ) ? (0x20000105 - 1) : (::HBtpcEnd[sec - 1]); - - - NumToStr((::HBtpcEnd[sec] - start), 2); - NumToStr((tpc - start), 1); - - - If (FGobExists(0x00003024)); - DestroyGob(0x00003024); - DestroyGob(0x00003027); - DestroyGob(0x00003025); - End; - - CreateHelpGob(0x00003045, 0x000121a0 + sec - 1); - - CreateHelpGob(0x00003003, 0x000121aa); - - - st = (sec > 2 && sec < 9) ? 0x0002 : 0x0001; - ChangeStateGob( 0x00003005, st ); - - - CreateHelpGob(0x00003005, tpc); - ENDCHUNK - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - Return( 1 ); - ENDCHUNK - - - - - - - -SET _curgok = 0x00003003 CHUNK( 'GOKD', 0x00003003, ) PACK SHORT BO OSK LONG 1 LONG 0 0 0 180 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gizmo.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildGob( GidParThis(), 0x00003045, 0x00003045 ); - - - CreateChildThis(0x00003011, 0x00003011); - CreateChildThis( 0x00003029, 0x00003029 ); - CreateChildThis(0x00003012, 0x00003012); - CreateChildThis(0x00003014, 0x00003014); - CreateChildThis(0x00003013, 0x00003013); - CreateChildThis(0x00003015, 0x00003015); - - CreateChildThis(0x00003006, 0x00003006); - CreateChildThis(0x00003007, 0x00003007); - CreateChildThis(0x00003008, 0x00003008); - CreateChildThis(0x00003009, 0x00003009); - CreateChildThis(0x00003010, 0x00003010); - - ENDCHUNK - - - - - -SET _curgok = 0x00003005 CHUNK( 'GOKD', 0x00003005, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 100 130 546 390 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 178 130 546 390 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - -SET _curgok = 0x00003004 CHUNK( 'GOKD', 0x00003004, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 100 130 546 390 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - - - -SET _curgok = 0x00003006 CHUNK( 'GOKD', 0x00003006, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim1.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim1s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 1 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003007 CHUNK( 'GOKD', 0x00003007, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim2.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim2s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 2 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003008 CHUNK( 'GOKD', 0x00003008, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim3.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim3s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, ::HBLastsub ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003009 CHUNK( 'GOKD', 0x00003009, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim4.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim4s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 9 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003010 CHUNK( 'GOKD', 0x00003010, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim5.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim5s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 10 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003011 CHUNK( 'GOKD', 0x00003011, ) PACK SHORT BO OSK LONG 0 LONG 0 39 168 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703e ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 39, 168 ) "studio\bmp\volume.bmp" ENDCHUNK - - - - - -SET _curgok = 0x00003028 CHUNK( 'GOKD', 0x00003028, ) PACK SHORT BO OSK LONG 3 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\volthmb.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x00003029 CHUNK( 'GOKD', 0x00003029, ) PACK SHORT BO OSK LONG 0 LONG 0 57 245 500 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 11 74 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x00003028, 0x00003028 ); - - y = 67 -(( GetMasterVolume() * 67 )/ (2*0x00010000)); - MoveAbsGob( 0x00003028, 0, y ); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis( 'WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 4 ); - While( 1 ); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif( y > 67 ); - y =67; - End; - - MoveAbsGob( 0x00003028, 0, y ); - - newvol = ( (2*0x00010000) * (67-y) ) / 67; - - SetMasterVolume( newvol ); - - Cell( 0 , 0,0, 10 ); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound( .siiLoop ); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - - - - -SET _curgok = 0x00003012 CHUNK( 'GOKD', 0x00003012, ) PACK SHORT BO OSK LONG 0 LONG 0 163 404 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703f ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\vocon.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\vocoff.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - fMZAudio = GetProp( 0x23503 ) & 0x01; - If ( fMZAudio ); - ChangeStateThis(0x0002); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - flg = GetProp( 0x23503 ); - - If (StateThis() == 0x0001); - flg |= 0x01; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0002); - Else; - flg &= ~0x01; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0001); - End; - - ENDCHUNK - - - - -SET _curgok = 0x00003013 CHUNK( 'GOKD', 0x00003013, ) PACK SHORT BO OSK LONG 0 - LONG 0 364 412 350 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x0001703c - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0023 ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pgfwd.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pgfwdds.bmp" ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001011, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - -SET _curgok = 0x00003014 CHUNK( 'GOKD', 0x00003014, ) PACK SHORT BO OSK LONG 0 - LONG 0 241 412 350 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x0001703d - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0022 ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\pgback.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\pgbackds.bmp" ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001012, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - -SET _curgok = 0x00003015 CHUNK( 'GOKD', 0x00003015, ) PACK SHORT BO OSK LONG 0 LONG 0 479 403 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703b ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\hcancel.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\hcancelc.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003016 CHUNK( 'GOKD', 0x00003016, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 250 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - CreateChildThis(0x00003017, 0x00003017); - CreateChildThis(0x00003018, 0x00003018); - CreateChildThis(0x00003019, 0x00003019); - CreateChildThis(0x00003020, 0x00003020); - CreateChildThis(0x00003021, 0x00003021); - CreateChildThis(0x00003022, 0x00003022); - ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) MASK( 0x00, , ) "studio\bmp\howmsk.bmp" ENDCHUNK; - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x00003017 CHUNK( 'GOKD', 0x00003017, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut1.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut1s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 3 ); - ENDCHUNK - - - - - - - -SET _curgok = 0x00003018 CHUNK( 'GOKD', 0x00003018, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut2.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut2s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 4 ); - ENDCHUNK - - - - -SET _curgok = 0x00003019 CHUNK( 'GOKD', 0x00003019, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut3.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut3s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 5 ); - ENDCHUNK - - - - -SET _curgok = 0x00003020 CHUNK( 'GOKD', 0x00003020, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut4.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut4s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 6 ); - ENDCHUNK - - - - -SET _curgok = 0x00003021 CHUNK( 'GOKD', 0x00003021, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut5.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut5s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 7 ); - ENDCHUNK - - - - -SET _curgok = 0x00003022 CHUNK( 'GOKD', 0x00003022, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut6.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut6s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 8 ); - ENDCHUNK - - - - - -SET _curgok = 0x00003024 CHUNK( 'GOKD', 0x00003024, ) PACK SHORT BO OSK LONG 2 LONG 0 0 0 225 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG BYTE 44 0 0 0xfe LONG 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - - - -SET _curgok = 0x00003045 CHUNK( 'GOKD', 0x00003045, ) PACK SHORT BO OSK LONG 2 - LONG 0 312 90 600 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK -240 0 240 60 LONG BYTE 21 0 0 0xfe LONG 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x00003027 CHUNK( 'GOKD', 0x00003027, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 280 428 360 443 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x00003025 CHUNK( 'GOKD', 0x00003025, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 225 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x2000015A, ) SCRIPT - - If(_parm[0] != 0); - - - If( _parm[4] == 0xFFFFFFFF ); - - AlertStr("Not linked to a topic!"); - Else; - - CreateHelpGob(0x20002, _parm[4]); - - - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - End; - Return( 1 ); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000105, ) SCRIPT - - If(_parm[0] != 0); - - If (_parm[0] < 3); - RunScriptGob(0x00003002, 0x0021, _parm[0]+1 ); - Else; - RunScriptGob(0x00003002, 0x0021, _parm[0]+6 ); - End; - End; -ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x2000015C, ) SCRIPT - - If(_parm[0] != 0); - - If( _parm[4] == 0xFFFFFFFF ); - - AlertStr("Not linked to basics"); - Else; - - CreateChildGob(0x20002, 0x00030000, 0x00030000); - CreateChildGob(0x20002, _parm[4], _parm[4]); - - - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - End; - Return( 1 ); - End; -ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x2000015B, ) SCRIPT - - If(_parm[0] != 0); - - If( _parm[4] == 0xFFFFFFFF ); - - AlertStr("Not linked to a howto!"); - Else; - - CreateChildGob(0x20002, 0x00030000, 0x00030000); - CreateChildGob(0x20002, _parm[4], _parm[4]); - - - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - End; - Return( 1 ); - End; -ENDCHUNK - - - - - - - - -CHUNK( 'GLOP', 0x20000164, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000160, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000168, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x2000016C, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000166, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - -#line 89 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\hlpbkper.cht" - - - - - - - - - - - - - -SET _curgok = 0x00003001 CHUNK( 'GOKD', 0x00003001, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - - ::HBSection = 1; - - - - ::HBLastsub = 3; - - - ::HBtpcCur[1] = 0x20000105; - ::HBtpcCur[2] = 0x20000106; - ::HBtpcCur[3] = 0x20000108; - ::HBtpcCur[4] = 0x2000010a; - ::HBtpcCur[5] = 0x2000010e; - ::HBtpcCur[6] = 0x2000010f; - ::HBtpcCur[7] = 0x20000112; - ::HBtpcCur[8] = 0x20000115; - ::HBtpcCur[9] = 0x20000119; - ::HBtpcCur[10] = 0x2000012a; - - - - ::HBtpcEnd[1] = 0x20000105; - ::HBtpcEnd[2] = 0x20000107; - ::HBtpcEnd[3] = 0x20000109; - ::HBtpcEnd[4] = 0x2000010d; - ::HBtpcEnd[5] = 0x2000010e; - ::HBtpcEnd[6] = 0x20000111; - ::HBtpcEnd[7] = 0x20000114; - ::HBtpcEnd[8] = 0x20000118; - ::HBtpcEnd[9] = 0x20000129; - ::HBtpcEnd[10] = 0x20000138; - ENDCHUNK -#line 90 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\gadget.cht" - - - - - - - - - - - -SET _curgok = 0x00003046 CHUNK( 'GOKD', 0x00003046, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok 0x00000040 ) LONG BO OSK 0 0 640 480 LONG BYTE 73 0 0 0xfe LONG 0xffffffff - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - Cell( 0x00000040, 0,0, 0); - CreateHelpThis(0x20005283); - ENDCHUNK - - - - -CHUNK( 'GLOP', 0x00003047, ) SCRIPT - - If(_parm[0] != 0); - - CreateChildGob(0x20002, 0x00003030, 0x00003030); - CreateChildGob(0x20002, 0x00030000, 0x00030000); - CreateChildGob(0x20002, 0x00003031, 0x00003031); - - ChangeStateGob(0x0000303E, 0x0002); - DestroyGob(0x00003046); - Return(1); - Else; - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -SET _curgok = 0x00003031 CHUNK( 'GOKD', 0x00003031, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x00003032, 0x00003032); - CreateChildThis(0x00003037, 0x00003037); - CreateChildThis(0x00003039, 0x00003039); - CreateChildThis(0x00003038, 0x00003038); - CreateChildThis(0x00003040, 0x00003040); - CreateChildThis(0x00003033, 0x00003033); - CreateChildThis(0x0000303D, 0x0000303D); - CreateChildThis(0x00003036, 0x00003036); - CreateChildThis(0x0000303E, 0x0000303E); - CreateChildThis(0x00003035, 0x00003035); - CreateChildThis(0x0000303B, 0x0000303B); - CreateChildThis(0x0000303C, 0x0000303C); - - ChangeStateGob(0x20160, 0x0002); - - RunScriptThis(0x0021); - - SetProp(3, 90); - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (::gdCurrStep <= ::gdSeqSteps[::gdCurrProj]); - - RunScriptGob(0x00030000, 0x0027); - tbSeq = ::gdSeqNum[::gdProjEnd[::gdCurrProj - 1] + ::gdCurrStep]; - CreateChildGob(0x20002, tbSeq, tbSeq); - ChangeStateGob(0x00003038, (0x0001 + ::gdCurrProj - 1)); - - If (::gdCurrStep > 1); - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrProj + ::gdCurrStep - 1); - ChangeStateGob(0x0000303F, 0x0002); - Else; - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + (::gdCurrProj - 1) + ::gdCurrStep - 1); - End; - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - - If (_parm[2] != 1); - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If (_parm[2] == 0); - DestroyGob(0x00003042); - If (::gdUpSelected == 1); - RunScriptGob(0x00003037, 0x0021); - Else; - RunScriptGob(0x00003039, 0x0021); - End; - Else; - CreateHelpGob(0x00003042, 0x20005275); - End; - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If(_parm[2] == 1); - DestroyGob(0x00003042); - If (::gdUpSelected == 1); - RunScriptGob(0x00003037, 0x0021); - Else; - RunScriptGob(0x00003039, 0x0021); - End; - - Else; - CreateHelpGob(0x00003042, 0x20005275); - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0025 ) SCRIPT - - If (_parm[2] != 1); - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If (_parm[2] == 0); - DestroyGob(0x00003042); - Else; - CreateHelpGob(0x00003042, 0x20005274); - End; - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0026 ) SCRIPT - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If(_parm[2] == 1); - DestroyGob(0x00003042); - Else; - CreateHelpGob(0x00003042, 0x20005274); - End; - ENDCHUNK - - - - - - - -SET _curgok = 0x00003032 CHUNK( 'GOKD', 0x00003032, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 150 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdbody.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x00003043, 0x00003043 ); -ENDCHUNK - - - - -SET _curgok = 0x00003033 CHUNK( 'GOKD', 0x00003033, ) PACK SHORT BO OSK LONG 1 - LONG 0 443 269 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017036 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 24, 34 ) "studio\bmp\gdplay.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 24, 34 ) "studio\bmp\gdstop.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - ChangeStateGob(0x0000303A, (0x0001 + ::gdCurrProj - 1)); - Cell(0x00000040, 0, 0, 1); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - ChangeStateGob(0x0000303A, (0x0006 + ::gdCurrProj)); - - Cell( 0x00000041, 0, 0, 1 ); - - While(PlayingGob(0x0000303A)); - Cell(0xFFFFFFFF, 0, 0, 10); - End; - ChangeStateThis(0x0001); - EnqueueCid(100102, 0x00030000, 0, 0, 0, 0); - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrProj + ::gdCurrStep - 1); - If (StateGob(0x0000303F) == 0x0001); - ChangeStateGob(0x0000303F, 0x0002); - End; - - ChangeStateGob(0x0000303E, 0x0001); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT; - If (StateThis() == 0x0001); - ChangeStateThis(0x0002); - Else; - ChangeStateThis(0x0001); - EnqueueCid(100102, 0x00030000, 0, 0, 0, 0); - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrProj + ::gdCurrStep - 1); - If (StateGob(0x0000303F) == 0x0001); - ChangeStateGob(0x0000303F, 0x0002); - End; - - ChangeStateGob(0x0000303E, 0x0001); - End; - ENDCHUNK - - - -SET _curgok = 0x00003041 CHUNK( 'GOKD', 0x00003041, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdvolthm.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x00003043 CHUNK( 'GOKD', 0x00003043, ) PACK SHORT BO OSK LONG 1 - LONG 0 210 234 210 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017033 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 11 98 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x00003041, 0x00003041); - - y = 91 -((GetMasterVolume() * 91) / (0x00010000*2)); - MoveAbsGob(0x00003041, 0, y); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis( 'WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 4 ); - While(1); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif(y > 91); - y =91; - End; - - MoveAbsGob(0x00003041, 0, y); - - newvol = ((0x00010000*2)* (91-y)) / 91; - - SetMasterVolume(newvol); - - Cell(0, 0, 0, 10); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound(.siiLoop); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - - - -SET _curgok = 0x00003035 CHUNK( 'GOKD', 0x00003035, ) PACK SHORT BO OSK LONG 1 - LONG 0 273 424 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017039 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdmelon.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0003 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdmeloff.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - fMelAudio = GetProp( 0x23503 ) & 0x02; - If ( fMelAudio ); - ChangeStateThis(0x0002); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - flg = GetProp( 0x23503 ); - - If (StateThis() == 0x0001); - flg |= 0x02; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0002); - StopSoundClass(0, 999); - Else; - flg &= ~0x02; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0001); - End; - - ENDCHUNK - - - - - - -SET _curgok = 0x00003036 CHUNK( 'GOKD', 0x00003036, ) PACK SHORT BO OSK LONG 1 - LONG 0 371 424 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017038 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdclose.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdcloses.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - End; - CreateChildGob(0x20002, 0x00003042, 0x00003042); - CreateHelpGob(0x00003042, 0x20005274); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyGob(0x00030000->lastHelp); - DestroyGob(0x00030000); - DestroyGob(0x20160); - DestroyGob(0x00003031); - - ::fHelpOn = 0; - CreateHelpGob(0x20002, 0x20005272); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - ENDCHUNK - - - - -SET _curgok = 0x00003042 CHUNK( 'GOKD', 0x00003042, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 600 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 73 0 0 0xfe LONG 0xffffffff - BYTE 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 - ENDCHUNK - - - - -SET _curgok = 0x0000303D CHUNK( 'GOKD', 0x0000303D, ) PACK SHORT BO OSK LONG 1 - LONG 0 443 300 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017037 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\gdhow.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\gdhows.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ::gdCurrStep++; - - SetProp(3, 999999); - DestroyGob(0x00003031); - - ChangeStateGob(0x20160, 0x0001); - ENDCHUNK - - - - -SET _curgok = 0x0000303E CHUNK( 'GOKD', 0x0000303E, ) PACK SHORT BO OSK LONG 1 - LONG 0 322 424 200 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703a - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0x0001703a -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdwhy.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdwhys.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdwhyd.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\gemtip.wav" ENDCHUNK - - - - -SET _curgok = 0x00003037 CHUNK( 'GOKD', 0x00003037, ) PACK SHORT BO OSK LONG 1 - LONG 0 419 131 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017034 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdselup.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdselups.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x10000 SET _st |= 0x001D _st ) - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ::gdUpSelected = 1; - - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - End; - - If (::gdCurrStep > 1); - CreateChildGob(0x20002, 0x00003042, 0x00003042); - CreateHelpGob(0x00003042, 0x20005275); - Else; - RunScriptThis(0x0021); - End; - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (::gdCurrProj > 5); - ::gdCurrProj = 1; - Else; - ::gdCurrProj++; - End; - ::gdCurrStep = 1; - ChangeStateGob(0x00003038, (0x0001 + ::gdCurrProj - 1)); - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - Else; - ChangeStateGob(0x0000303A, (0x0001 + ::gdCurrProj - 1)); - End; - If (StateGob(0x0000303F) == 0x0002); - ChangeStateGob(0x0000303F, 0x0001); - End; - - ChangeStateGob(0x0000303E, 0x0002); - RunScriptGob(0x00003031, 0x0021); - ENDCHUNK - - - - -SET _curgok = 0x00003038 CHUNK( 'GOKD', 0x00003038, ) PACK SHORT BO OSK LONG 6 - LONG 0 420 155 200 - -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie1.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie2.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie3.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie4.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie5.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie6.bmp" ENDCHUNK - - - - -SET _curgok = 0x00003039 CHUNK( 'GOKD', 0x00003039, ) PACK SHORT BO OSK LONG 1 - LONG 0 419 175 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017035 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdseldn.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdseldns.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x10000 SET _st |= 0x001D _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ::gdUpSelected = 0; - - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - End; - - If (::gdCurrStep > 1); - CreateChildGob(0x20002, 0x00003042, 0x00003042); - CreateHelpGob(0x00003042, 0x20005275); - Else; - RunScriptThis(0x0021); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (::gdCurrProj < 2); - ::gdCurrProj = 6; - Else; - ::gdCurrProj--; - End; - ::gdCurrStep = 1; - ChangeStateGob(0x00003038, (0x0001 + ::gdCurrProj - 1)); - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - Else; - ChangeStateGob(0x0000303A, (0x0001 + ::gdCurrProj - 1)); - End; - If (StateGob(0x0000303F) == 0x0002); - ChangeStateGob(0x0000303F, 0x0001); - End; - - ChangeStateGob(0x0000303E, 0x0002); - RunScriptGob(0x00003031, 0x0021); - ENDCHUNK - - - - -SET _curgok = 0x00003040 CHUNK( 'GOKD', 0x00003040, ) PACK SHORT BO OSK LONG 6 - LONG 0 241 84 200 - -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 160 90 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x0000303A, 0x0000303A); - ENDCHUNK - - - - -SET _curgok = 0x0000303A CHUNK( 'GOKD', 0x0000303A, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 - -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi1.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi3.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi2.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi6.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi5.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi4.bmp" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj1.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj2.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj3.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x000A SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj4.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x000b SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj5.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x000c SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj6.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0001 + (::gdCurrProj - 1)); - ENDCHUNK - - - - -SET _curgok = 0x0000303B CHUNK( 'GOKD', 0x0000303B, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdword.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x00003044, 0x00003044); - ENDCHUNK - - - - -SET _curgok = 0x00003044 CHUNK( 'GOKD', 0x00003044, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 5 3 167 43 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - - - -SET _curgok = 0x0000303C CHUNK( 'GOKD', 0x0000303C, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 247 229 397 371 LONG BYTE 20 0 0 0xfe LONG 0xffffffff - BYTE 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x0000303F, 0x0000303F); - ENDCHUNK - - - - -SET _curgok = 0x0000303F CHUNK( 'GOKD', 0x0000303F, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000043 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000044 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7d.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000045 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7e.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000046 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7f.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000047 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000048 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000049 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004a ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004b ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5d.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004c ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot9a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004d ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot9b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004e ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot9c.bmp" ENDCHUNK - - - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004f ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000050 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000051 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000052 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000053 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4d.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000054 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4e.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000055 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000056 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000057 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000058 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000059 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6d.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005a ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6e.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005b ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6f.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005c ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6g.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005d ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6h.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005e ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6i.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005f ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000060 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000061 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000062 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000063 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8d.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000064 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnclosed.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(0x00000064, 0, 0, 1); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell((0x00000040 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrStep - 1) , 0, 0, 1); - ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20005275, ) SCRIPT - - If (_parm[0] != 0); - - If (_parm[0] == 1); - - EnqueueCid(100, 20000 + 5, 0, 0, 0, 0); - - If (::gdCurrStep > 1); - FilterCmdsGob(0x00003031, 50114, 0, 0x0023); - FilterCmdsGob(0x00003031, 50111, 0, 0x0024); - DestroyGob(0x00030604); - Else; - If (::gdUpSelected == 1); - RunScriptGob(0x00003037, 0x0021); - Else; - RunScriptGob(0x00003039, 0x0021); - End; - DestroyGob(0x00003042); - End; - - Else; - DestroyGob(0x00003042); - End; - Return(1); - Else; - - StopSoundClass(0, 999); - - - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20005274, ) SCRIPT - - If(_parm[0] != 0); - - If (_parm[0] == 1); - - RunScriptGob(0x00003036, 0x0021); - DestroyGob(0x00003042); - - Elif (_parm[0] == 2); - If (::gdCurrStep > 1); - FilterCmdsGob(0x00003031, 50114, 0, 0x0025); - FilterCmdsGob(0x00003031, 50111, 0, 0x0026); - DestroyGob(0x00030604); - End; - - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50061, 0, 0, 0, 0, 0); - - Else; - DestroyGob(0x00003042); - End; - Return(1); - Else; - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - -#line 91 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\gadgpers.cht" - - - - - - - - - - -SET _curgok = 0x00003030 CHUNK( 'GOKD', 0x00003030, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - ::gdCurrProj = ::NextProject; - ::gdCurrStep = 1; - - - ::gdUpSelected = 1; - - - ::gdSeqSteps[1] = 7; - ::gdSeqSteps[2] = 5; - ::gdSeqSteps[3] = 3; - ::gdSeqSteps[4] = 6; - ::gdSeqSteps[5] = 10; - ::gdSeqSteps[6] = 5; - - - ::gdProjEnd[0] = 0; - ::gdProjEnd[1] = 7; - ::gdProjEnd[2] = 12; - ::gdProjEnd[3] = 15; - ::gdProjEnd[4] = 21; - ::gdProjEnd[5] = 31; - ::gdProjEnd[6] = 36; - - - - ::gdSeqNum[1] = 0x00030100; - ::gdSeqNum[2] = 0x00030101; - ::gdSeqNum[3] = 0x00030102; - ::gdSeqNum[4] = 0x00030103; - ::gdSeqNum[5] = 0x00030104; - ::gdSeqNum[6] = 0x00030105; - ::gdSeqNum[7] = 0x00030106; - ::gdSeqNum[8] = 0x00030300; - ::gdSeqNum[9] = 0x00030301; - ::gdSeqNum[10] = 0x00030302; - ::gdSeqNum[11] = 0x00030303; - ::gdSeqNum[12] = 0x00030304; - ::gdSeqNum[13] = 0x00030200; - ::gdSeqNum[14] = 0x00030201; - ::gdSeqNum[15] = 0x00030202; - ::gdSeqNum[16] = 0x00030510; - ::gdSeqNum[17] = 0x00030511; - ::gdSeqNum[18] = 0x00030512; - ::gdSeqNum[19] = 0x00030513; - ::gdSeqNum[20] = 0x00030514; - ::gdSeqNum[21] = 0x00030515; - ::gdSeqNum[22] = 0x00030500; - ::gdSeqNum[23] = 0x00030501; - ::gdSeqNum[24] = 0x00030502; - ::gdSeqNum[25] = 0x00030503; - ::gdSeqNum[26] = 0x00030504; - ::gdSeqNum[27] = 0x00030505; - ::gdSeqNum[28] = 0x00030506; - ::gdSeqNum[29] = 0x00030507; - ::gdSeqNum[30] = 0x00030508; - ::gdSeqNum[31] = 0x00030509; - ::gdSeqNum[32] = 0x00030400; - ::gdSeqNum[33] = 0x00030401; - ::gdSeqNum[34] = 0x00030402; - ::gdSeqNum[35] = 0x00030403; - ::gdSeqNum[36] = 0x00030404; - ENDCHUNK -#line 92 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\projmain.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x00030000 CHUNK( 'GOKD', 0x00030000, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 350 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 73 0 0 0xfe LONG 0xffffffff - BYTE 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - If (0x00010000->cDisable >= 1 && !0); PrintStr("Disable Accels takes disable count above 1."); End; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - SetProp(3, 999999); - - ::fHelpOn = 1; - RunScriptThis(0x0026); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0026 ) SCRIPT - - .lastHelp = 0; - .prevState = 1; - .prev2State = 1; - .currState = 1; - .stateLine = 0; - .currLine = 0; - .tbInst = 0; - .tbReturn = 0; - .tbID0 = 0; - .tbNext = 1; - .tbState = 1; - .tbID1 = 0; - .tbID2 = 0; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0027 ) SCRIPT - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - RunScriptThis(0x0026); - ENDCHUNK - - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - - ParseLoop@ - - - RunScriptThis(0x0024, .currLine); - - - Goto(Match(.tbInst, NotFound$, 1, _InitState$, 2, _MatchGoto$, 3, _MatchDescGoto$, - 4, _MatchChildrenGoto$, 15, _MatchParentGoto$, 5, _MatchAllGoto$, 6, _IgnoreMatch$, - 7, _IgnoreChildren$, 16, _IgnoreParentMatch$,8, _IgnoreAll$, 9, _BoolCondGoto$, - 10, _StateCondGoto$, 11, _SpecialInstr$, 12, _WaitEvent$, - 13, _JumpToState$, 14, _EndState$)); - - - _InitState@ - - If (StateThis() != (0x0002 + .tbID0)); - ChangeStateThis(0x0002 + .tbID0); - End; - - If (.tbID2 != 0); - .lastHelp = CreateHelpGob(0x20002, .tbID2); - Else; - .lastHelp = 0; - End; - - RunScriptThis(0x0023, .tbID1); - - .stateLine++; - .currLine++; - - Goto(ParseLoop$); - - - _MatchGoto@ - - If ((_parm[1] == .tbID1) && (_parm[.tbID0] == .tbID2)); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchDescGoto@ - - If ((_parm[1] == .tbID1) && (FIsDescendent(_parm[0], .tbID2))); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchChildrenGoto@ - - If ((_parm[1] == .tbID1) && (_parm[0] == (.tbID2->_gidBase + .tbID0))); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchAllGoto@ - - If (_parm[1] == .tbID1); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchParentGoto@ - - If ((_parm[1] == .tbID1) && (_parm[0] == GidParGob(.tbID2))); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreMatch@ - - If ((_parm[1] == .tbID1) && (_parm[.tbID0] == .tbID2)); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreChildren@ - - If ((_parm[1] == .tbID1) && (FIsDescendent(_parm[0], .tbID2))); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreParentMatch@ - - If ((_parm[1] == .tbID1) && (_parm[0] == GidParGob(.tbID2))); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreAll@ - If (_parm[1] == .tbID1); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _BoolCondGoto@ - - If (.tbID1 == .tbID2); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _StateCondGoto@ - - If (StateGob(.tbID1) == .tbID2); - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _WaitEvent@ - .currLine++; - .stateLine = .currLine; - Return(1); - - _JumpToState@ - PrintStr("Project Interpreter: Going to state ", NumToStr(.tbNext, "")); If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - - - _EndState@ - .currLine = .stateLine; - Return(1); - - - _SpecialInstr@ - - Goto(Match(.tbID1, NoSpecial$, 1, _QuitMM$, 2, _QuitHelp$, - 3, _QuitGadgetHelp$, 4, _SetHelpAlarm$, - 5, _ProjectsRoom$, 6, _ResetTipDelay$, - 7, _ClearStudio$, 8, _LoadProjectMovie$, - 9, _OpenDoorCovers$, 14, _SimulateClick$, - 10, _SetSceneAndFrame$, 11, _SetBlinkingGadget$, - 12, _OpenAllDoors$, 13, _ChangeToNextMovie$, - 15, _SetBrowserItem$, 16, _SetNextProject$)); - - _QuitMM@ - EnqueueCid(106, 0, 0, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _QuitHelp@ - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - SetProp(3, 90); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - - ::fHelpOn = 0; - SetProp(0x23412, -1); - SetProp(0x23414, -1); - ret = .tbReturn; - DestroyThis(); - Return(ret); - _QuitGadgetHelp@ - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - If (FGobExists(0x20160)); - DestroyGob(0x20160); - End; - If (FGobExists(0x00003031)); - DestroyGob(0x00003031); - End; - SetProp(3, 90); - If (0x00010000->cDisable <= 0 && !0); PrintStr("Enable Accels takes disable count below 0."); End; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - - ::fHelpOn = 0; - SetProp(0x23412, -1); - SetProp(0x23414, -1); - - CreateHelpGob(0x20002, 0x20005272); - ret = .tbReturn; - DestroyThis(); - Return(ret); - _SetHelpAlarm@ - - SetAlarmThis(10002, .tbID2, 0xFFFFFFFF); - .currLine++; - Goto(ParseLoop$); - _SetBlinkingGadget@ - - ChangeStateGob(0x20160, 0x0003); - .currLine++; - Goto(ParseLoop$); - _OpenAllDoors@ - - RunScriptGob(0x20002, SET _st = 0x10000 SET _st |= 0x002A _st); - .currLine++; - Goto(ParseLoop$); - _ChangeToNextMovie@ - - RunScriptGob(0x00003037, 0x0021); - Return(.tbReturn); - _ProjectsRoom@ - EnqueueCid(50061, 0, 0, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _ResetTipDelay@ - SetProp(3, .tbID2); - .currLine++; - Goto(ParseLoop$); - _ClearStudio@ - EnqueueCid(100, 20000 + 5, 0, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _LoadProjectMovie@ - EnqueueCid(50090, 0, .tbID2, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _OpenDoorCovers@ - RunScriptGob(.tbID2, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st); - .currLine++; - Goto(ParseLoop$); - _SetSceneAndFrame@ - EnqueueCid(44013, 0, .tbID0, .tbID2, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _SimulateClick@ - RunScriptGob(.tbID2, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st); - .currLine++; - Goto(ParseLoop$); - _SetBrowserItem@ - SetProp(0x23412, .tbID2); - SetProp(0x23413,2); - SetProp(0x23414, 0x21009); - .currLine++; - Goto(ParseLoop$); - _SetNextProject@ - ::NextProject = .tbID2; - .currLine++; - Goto(ParseLoop$); - NoSpecial@ - Return(1); - NotFound@ - .currLine++; - Goto(ParseLoop$); - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0025 ) SCRIPT - iLine = 0; - iState = 1; - - While (.word1[iLine] != 0); - .word5[iLine] = iState; - - If (.word1[iLine] == 14); - iState++; - End; - iLine++; - End; - .word5[iLine] = 0; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - iLine = 0; - iState = 0; - - - While(.word5[iLine] > 0); - If (.word5[iLine] != iState); - iState++; - .nsjTable[iState] = iLine; - End; - iLine++; - End; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - FilterCmdsThis(100100, 0, 0x0021); - - - If ((_parm[0] & 1) == 1); - FilterCmdsThis(100007, 0, 0x0021); - End; - If ((_parm[0] & 4) == 4); - FilterCmdsThis(100003, 0, 0x0021); - End; - If ((_parm[0] & 8) == 8); - FilterCmdsThis(50016, 0, 0x0021); - End; - If ((_parm[0] & 16) == 16); - FilterCmdsThis(50015, 0, 0x0021); - End; - If ((_parm[0] & 32) == 32); - FilterCmdsThis(50017, 0, 0x0021); - End; - If ((_parm[0] & 2) == 2); - FilterCmdsThis(100008, 0, 0x0021); - End; - If ((_parm[0] & 64) == 64); - FilterCmdsThis(50028, 0, 0x0021); - End; - If ((_parm[0] & 256) == 256); - FilterCmdsThis(50053, 0, 0x0021); - End; - If ((_parm[0] & 128) == 128); - FilterCmdsThis(50027, 0, 0x0021); - End; - If ((_parm[0] & 512) == 512); - FilterCmdsThis(44008, 0, 0x0021); - End; - If ((_parm[0] & 1024) == 1024); - FilterCmdsThis(44009, 0, 0x0021); - End; - If ((_parm[0] & 2048) == 2048); - FilterCmdsThis(44010, 0, 0x0021); - End; - If ((_parm[0] & 4194304) == 4194304); - FilterCmdsThis(44016, 0, 0x0021); - End; - If ((_parm[0] & 4096) == 4096); - FilterCmdsThis(50035, 0, 0x0021); - End; - If ((_parm[0] & 8192) == 8192); - FilterCmdsThis(50036, 0, 0x0021); - End; - If ((_parm[0] & 16384) == 16384); - FilterCmdsThis(100101, 0, 0x0021); - End; - If ((_parm[0] & 32768) == 32768); - FilterCmdsThis(44011, 0, 0x0021); - End; - If ((_parm[0] & 65536) == 65536); - FilterCmdsThis(44012, 0, 0x0021); - End; - If ((_parm[0] & 131072) == 131072); - FilterCmdsThis(50099, 0, 0x0021); - End; - If ((_parm[0] & 262144) == 262144); - FilterCmdsThis(50102, 0, 0x0021); - End; - If ((_parm[0] & 524288) == 524288); - FilterCmdsThis(50030, 0, 0x0021); - End; - If ((_parm[0] & 1048576) == 1048576); - FilterCmdsThis(100102, 0, 0x0021); - End; - If ((_parm[0] & 2097152) == 2097152); - FilterCmdsThis(50031, 0, 0x0021); - End; - If ((_parm[0] & 8388608) == 8388608); - FilterCmdsThis(50098, 0, 0x0021); - End; - If ((_parm[0] & 16777216) == 16777216); - FilterCmdsThis(50114, 0, 0x0021); - End; - If ((_parm[0] & 33554432) == 33554432); - FilterCmdsThis(44018, 0, 0x0021); - End; - If ((_parm[0] & 67108864) == 67108864); - FilterCmdsThis(50111, 0, 0x0021); - End; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - - .tbInst = .word1[_parm[0]]; - .tbReturn = .word2[_parm[0]]; - .tbID0 = .word3[_parm[0]]; - .tbNext = .word4[_parm[0]]; - .tbState = .word5[_parm[0]]; - .tbID1 = .word6[_parm[0]]; - .tbID2 = .word7[_parm[0]]; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0102 _st ) SCRIPT - EnqueueCid(100101, 0x00030000, 0, 0, 0, 0); - ENDCHUNK -#line 93 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tblogowz.cht" - - - - -SET _curgok = 0x00030001 CHUNK( 'GOKD', 0x00030001, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005200; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005202; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005203; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|33554432; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44018; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005201; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005204; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005205; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005206; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|256|128; 0x00030000->word7[_indx] = 0x20005207; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005208; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x20005209; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000520a; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000520b; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000520c; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000520f; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005210; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 94 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtscen.cht" - - - - - - -SET _curgok = 0x00030002 CHUNK( 'GOKD', 0x00030002, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005216; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005217; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|33554432; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44018; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000524C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005218; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005219; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030003 CHUNK( 'GOKD', 0x00030003, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000521A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000521B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000521C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030004 CHUNK( 'GOKD', 0x00030004, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000521D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000521E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030005 CHUNK( 'GOKD', 0x00030005, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000521F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005220; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030006 CHUNK( 'GOKD', 0x00030006, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005221; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000523D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030007 CHUNK( 'GOKD', 0x00030007, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005222; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x20005223; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005224; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030008 CHUNK( 'GOKD', 0x00030008, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005225; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x20005226; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005227; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030009 CHUNK( 'GOKD', 0x00030009, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x2000B; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005228; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005229; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000A CHUNK( 'GOKD', 0x0003000A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x2000B; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000522B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x0003000B CHUNK( 'GOKD', 0x0003000B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005255; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000522E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000C CHUNK( 'GOKD', 0x0003000C, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005231; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005232; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000D CHUNK( 'GOKD', 0x0003000D, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20000233; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20050; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20050; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005235; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005236; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000E CHUNK( 'GOKD', 0x0003000E, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005237; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005238; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x2000523A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000523E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000F CHUNK( 'GOKD', 0x0003000F, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x2000D; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20037; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20037; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000523B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20037; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20037; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000523F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030010 CHUNK( 'GOKD', 0x00030010, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000524E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000524F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005250; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x20005251; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005254; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtsoun.cht" - - - - - - -SET _curgok = 0x00030020 CHUNK( 'GOKD', 0x00030020, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005381; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005383; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005384; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030021 CHUNK( 'GOKD', 0x00030021, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005385; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005387; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005388; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030022 CHUNK( 'GOKD', 0x00030022, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005389; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000538B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000538C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030023 CHUNK( 'GOKD', 0x00030023, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000538D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000538E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000538F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030024 CHUNK( 'GOKD', 0x00030024, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005390; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20029; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20029; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005391; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005392; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030025 CHUNK( 'GOKD', 0x00030025, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005393; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005394; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005395; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030026 CHUNK( 'GOKD', 0x00030026, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005396; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x2000F; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005396; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005397; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005398; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030027 CHUNK( 'GOKD', 0x00030027, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005399; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20027; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20027; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000539A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x20005613; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000539C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030028 CHUNK( 'GOKD', 0x00030028, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000539D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000539E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000539F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x00030029 CHUNK( 'GOKD', 0x00030029, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200053A2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200053A6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003002A CHUNK( 'GOKD', 0x0003002A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x200053A4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200053A5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003002B CHUNK( 'GOKD', 0x0003002B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200053B6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x20005613; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200053B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtactr.cht" - - - - - - -SET _curgok = 0x00030060 CHUNK( 'GOKD', 0x00030060, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x200052C2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200052C3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052C4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030061 CHUNK( 'GOKD', 0x00030061, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x200052C6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200052C7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052C8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030062 CHUNK( 'GOKD', 0x00030062, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|256|128; 0x00030000->word7[_indx] = 0x2000560B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200052CB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052CC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030063 CHUNK( 'GOKD', 0x00030063, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052D2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20165; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20166; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20167; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052D4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030064 CHUNK( 'GOKD', 0x00030064, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052D5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20169; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016A; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016B; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052D7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030065 CHUNK( 'GOKD', 0x00030065, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052D8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052D9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000562D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052DB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052DC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030066 CHUNK( 'GOKD', 0x00030066, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052DD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052DE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000562D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052DF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030067 CHUNK( 'GOKD', 0x00030067, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052E0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052E1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052E2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030068 CHUNK( 'GOKD', 0x00030068, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 0x20063; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052E4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052E5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030069 CHUNK( 'GOKD', 0x00030069, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052EA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005351; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052EB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052EC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006A CHUNK( 'GOKD', 0x0003006A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052F1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052F3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006B CHUNK( 'GOKD', 0x0003006B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052F5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006C CHUNK( 'GOKD', 0x0003006C, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052FB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052FC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052FD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052FE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006D CHUNK( 'GOKD', 0x0003006D, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052FF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005300; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4194304; 0x00030000->word7[_indx] = 0x20005301; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005302; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005303; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x20005304; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005305; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006E CHUNK( 'GOKD', 0x0003006E, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005306; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005307; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4194304; 0x00030000->word7[_indx] = 0x20005308; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005309; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000530A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x2000530B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000530C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006F CHUNK( 'GOKD', 0x0003006F, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000530D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000530E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4194304; 0x00030000->word7[_indx] = 0x2000530F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005310; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030070 CHUNK( 'GOKD', 0x00030070, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005311; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005312; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005313; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005314; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030071 CHUNK( 'GOKD', 0x00030071, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005315; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005316; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005317; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005318; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030072 CHUNK( 'GOKD', 0x00030072, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005319; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000531A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000531B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000531C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030073 CHUNK( 'GOKD', 0x00030073, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000531D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000531E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2006B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2006B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000531F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005320; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030074 CHUNK( 'GOKD', 0x00030074, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005321; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20015; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005322; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005323; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030075 CHUNK( 'GOKD', 0x00030075, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005324; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20165; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20166; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20167; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005325; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030076 CHUNK( 'GOKD', 0x00030076, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005326; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20169; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016A; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016B; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005327; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030077 CHUNK( 'GOKD', 0x00030077, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005328; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005329; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000532A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000532B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030078 CHUNK( 'GOKD', 0x00030078, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000532C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000532D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20020; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20020; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000532E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000532F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030079 CHUNK( 'GOKD', 0x00030079, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005330; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005331; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2006C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2006C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005332; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005333; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003007A CHUNK( 'GOKD', 0x0003007A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005334; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20018; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20018; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005335; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x20005615; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x2000560B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005337; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtword.cht" - - - - - - -SET _curgok = 0x00030040 CHUNK( 'GOKD', 0x00030040, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005641; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20046; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20046; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005642; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005668; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005643; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005644; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x00030041 CHUNK( 'GOKD', 0x00030041, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005645; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005646; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21543; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21543; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21544; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21544; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21541; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21541; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005647; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005648; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030042 CHUNK( 'GOKD', 0x00030042, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005649; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000564A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21551; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21551; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000564B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000564C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030043 CHUNK( 'GOKD', 0x00030043, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000564D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20032; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20032; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000564E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21561; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21561; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000564F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005650; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030044 CHUNK( 'GOKD', 0x00030044, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005651; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005652; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21573; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21573; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21574; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21574; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21571; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21571; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005653; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005654; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030045 CHUNK( 'GOKD', 0x00030045, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005655; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005656; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21583; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21583; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21584; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21584; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21581; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21581; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005657; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005658; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030046 CHUNK( 'GOKD', 0x00030046, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|65536; 0x00030000->word7[_indx] = 0x20005659; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000565A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030047 CHUNK( 'GOKD', 0x00030047, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|65536; 0x00030000->word7[_indx] = 0x2000565B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000565C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030048 CHUNK( 'GOKD', 0x00030048, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000565D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20069; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20069; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = kgo2bHowtoSequence; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000565E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20068; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20068; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000565F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005660; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x00030049 CHUNK( 'GOKD', 0x00030049, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005661; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005662; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004A CHUNK( 'GOKD', 0x0003004A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005663; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005664; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005665; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005666; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005667; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005669; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000566A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004B CHUNK( 'GOKD', 0x0003004B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000566D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005668; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005690; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004C CHUNK( 'GOKD', 0x0003004C, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005670; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005671; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005672; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005673; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005674; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005675; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005676; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004D CHUNK( 'GOKD', 0x0003004D, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005677; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005678; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005679; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005668; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000567C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004E CHUNK( 'GOKD', 0x0003004E, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000567F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005680; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 98 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbguidhp.cht" - - - - - -SET _curgok = 0x000305A0 CHUNK( 'GOKD', 0x000305A0, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005290; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005291; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4|33554432; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44018; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x200052A5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005292; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005294; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005293; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005295; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024|4; 0x00030000->word7[_indx] = 0x20005296; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005297; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048|4; 0x00030000->word7[_indx] = 0x20005298; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005299; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048|4; 0x00030000->word7[_indx] = 0x2000529A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x2000529B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32768|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000529C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 99 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbbasics.cht" - - - - - - -SET _curgok = 0x00030520 CHUNK( 'GOKD', 0x00030520, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20049; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20049; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030521 CHUNK( 'GOKD', 0x00030521, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20048; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20048; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030522 CHUNK( 'GOKD', 0x00030522, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030523 CHUNK( 'GOKD', 0x00030523, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20095; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20095; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030524 CHUNK( 'GOKD', 0x00030524, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x200056E8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030525 CHUNK( 'GOKD', 0x00030525, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200056EA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030526 CHUNK( 'GOKD', 0x00030526, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056EC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056ED; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056F0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030527 CHUNK( 'GOKD', 0x00030527, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056EE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20035; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20035; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030528 CHUNK( 'GOKD', 0x00030528, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056EF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - -#line 100 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj1.cht" - - - - - -SET _curgok = 0x00030100 CHUNK( 'GOKD', 0x00030100, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005452; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005431; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005432; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 701; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 48; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005433; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 29; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005434; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005435; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005436; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005437; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005438; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005439; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030101 CHUNK( 'GOKD', 0x00030101, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000400f; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000543F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005440; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005441; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030102 CHUNK( 'GOKD', 0x00030102, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005442; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005443; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005444; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 5; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005446; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005447; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005448; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005449; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000544B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030103 CHUNK( 'GOKD', 0x00030103, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00004009; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005453; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005454; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005455; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005456; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030104 CHUNK( 'GOKD', 0x00030104, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005457; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005458; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005444; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 4; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005446; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005459; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005449; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000545C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005439; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030105 CHUNK( 'GOKD', 0x00030105, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00004012; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000545F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005440; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005460; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005461; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030106 CHUNK( 'GOKD', 0x00030106, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005450; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - -#line 101 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj2.cht" - - - - - -SET _curgok = 0x00030200 CHUNK( 'GOKD', 0x00030200, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005470; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005471; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005472; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 703; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005473; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005474; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005475; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005476; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005478; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x2001F; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005480; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030201 CHUNK( 'GOKD', 0x00030201, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005481; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005482; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005483; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005484; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005485; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005486; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005480; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030202 CHUNK( 'GOKD', 0x00030202, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 4; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000549B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 102 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj3.cht" - - - - - -SET _curgok = 0x00030300 CHUNK( 'GOKD', 0x00030300, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005400; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005401; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005402; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 702; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 113; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005403; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005404; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005405; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005406; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005407; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005408; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005420; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005409; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030301 CHUNK( 'GOKD', 0x00030301, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000400e; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005410; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005412; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030302 CHUNK( 'GOKD', 0x00030302, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005413; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005414; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005416; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 32; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005417; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005405; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005418; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005407; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005419; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005415; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030303 CHUNK( 'GOKD', 0x00030303, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000541A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000541B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00004016; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000541D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005412; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005422; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005420; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030304 CHUNK( 'GOKD', 0x00030304, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000541E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - -#line 103 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj4.cht" - - - - - -SET _curgok = 0x00030400 CHUNK( 'GOKD', 0x00030400, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 706; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 165; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 11; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054BA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054BC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054D0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054BF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054C1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030401 CHUNK( 'GOKD', 0x00030401, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00001011; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054C7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200054C8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054CA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030402 CHUNK( 'GOKD', 0x00030402, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054CB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054CC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 5; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054CD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054CE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054CF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054D0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054D1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054D2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030403 CHUNK( 'GOKD', 0x00030403, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054DC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054DD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054D7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|512|1024|2048; 0x00030000->word7[_indx] = 0x200054D9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 25; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054DE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054E0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054D0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054CE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054EE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054EF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054E7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030404 CHUNK( 'GOKD', 0x00030404, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054EC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 104 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj5.cht" - - - - - -SET _curgok = 0x00030500 CHUNK( 'GOKD', 0x00030500, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 705; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 138; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 27; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054F9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054FB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 28; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054FC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054FD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054FE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 23; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054FF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005500; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005501; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 30; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 31; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 31; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005502; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 32; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 33; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 37; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030501 CHUNK( 'GOKD', 0x00030501, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005504; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005505; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005506; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005507; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005508; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005509; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030502 CHUNK( 'GOKD', 0x00030502, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00001021; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x2000550E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x2000550F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005510; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005511; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005512; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030503 CHUNK( 'GOKD', 0x00030503, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005514; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005515; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005516; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005517; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005518; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005519; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030504 CHUNK( 'GOKD', 0x00030504, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00003210; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000551F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005517; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005520; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005521; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005522; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005517; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005523; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030505 CHUNK( 'GOKD', 0x00030505, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005524; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005525; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005526; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00002030; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005527; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x20005528; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005529; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000552C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000552D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030506 CHUNK( 'GOKD', 0x00030506, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000552E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000552F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005530; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005541; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005531; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005532; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030507 CHUNK( 'GOKD', 0x00030507, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005533; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005534; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005535; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005541; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005536; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005537; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005538; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030508 CHUNK( 'GOKD', 0x00030508, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005539; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000553D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030509 CHUNK( 'GOKD', 0x00030509, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 6; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005540; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -#line 105 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj6.cht" - - - - - -SET _curgok = 0x00030510 CHUNK( 'GOKD', 0x00030510, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 704; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000505a; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056A9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000505b; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056AE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000505e; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056B0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00005064; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056B2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 30; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 31; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 32; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 32; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 33; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 39; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 37; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 39; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 37; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030511 CHUNK( 'GOKD', 0x00030511, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x000032a3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056B9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200056BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030512 CHUNK( 'GOKD', 0x00030512, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x000032a2; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056BF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200056BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030513 CHUNK( 'GOKD', 0x00030513, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030514 CHUNK( 'GOKD', 0x00030514, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200056CA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x200056CB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056CC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030515 CHUNK( 'GOKD', 0x00030515, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 5; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056CD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 106 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - - - -CHUNK( 'GLOP', 0x20000, ) SCRIPT - If(_parm[0] == 0); - Transition(3, 0, 60, 0xffffffff, 0x20001); - End; - CreateChildThis(0x20002, 0x20002); -ENDCHUNK - - - - -CHUNK( 'GLCR', 0x20001, ) PACK PALETTE "studio\bmp\socpal.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x20002 CHUNK( 'GOKD', 0x20002, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 0 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - PrintStr("Creating the Tools background gob."); - - - If (!(0x00010000->cDisable == 0)); AlertStr("Assertion failed: ", "H:\\BUILD\\SOC\\src\\studio\\studio.cht", ", line ", NumToStr(138,"")); End; - If (0x00010000->cDisable <= 0 && !1); PrintStr("Enable Accels takes disable count below 0."); End; If (1); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - - - - - CreateChildThis(0x2005E, 0x2005E); - CreateChildThis(0x2005F, 0x2005F); - CreateChildThis(0x20060, 0x20060); - CreateChildThis(0x20061, 0x20061); - CreateChildThis(0x20082, 0x20082); - CreateChildThis(0x2008B, 0x2008B); - CreateChildThis(0x2005D, 0x2005D); - CreateChildThis(0x20005, 0x20005); - CreateChildThis(0x20006, 0x20006); - CreateChildThis(0x20007, 0x20007); - CreateChildThis(0x20008, 0x20008); - CreateChildThis(0x2000B, 0x2000B); - CreateChildThis(0x2000D, 0x2000D); - CreateChildThis(0x2000E, 0x2000E); - CreateChildThis(0x2000F, 0x2000F); - CreateChildThis(0x20034, 0x20034); - CreateChildThis(0x20035, 0x20035); - CreateChildThis(0x20036, 0x20036); - CreateChildThis(0x2004F, 0x2004F); - CreateChildThis(0x20037, 0x20037); - CreateChildThis(0x20038, 0x20038); - CreateChildThis(0x20039, 0x20039); - CreateChildThis(0x2003C, 0x2003C); - CreateChildThis(0x20047, 0x20047); - CreateChildThis(0x20094, 0x20094); - CreateHelpGob(0x20094, 0x22502); - - - - CreateChildThis(0x2003D, 0x2003D); - CreateChildThis(0x20042, 0x20042); - CreateChildThis(0x20075, 0x20075); - CreateChildThis(0x20076, 0x20076); - CreateChildThis(0x20077, 0x20077); - CreateChildThis(0x20078, 0x20078); - CreateChildThis(0x20079, 0x20079); - CreateChildThis(0x2007A, 0x2007A); - CreateChildThis(0x20046, 0x20046); - CreateChildThis(0x20066, 0x20066); - CreateChildThis(0x20067, 0x20067); - CreateChildThis(0x20068, 0x20068); - CreateChildThis(0x2009B, 0x2009B); - CreateChildThis(0x2009C, 0x2009C); - CreateChildThis(0x20161, 0x20161); - - - - - CreateChildThis(0x00003001, 0x00003001); - - - - - - SetProp(3, 90); - - SetProp(3, 90 ); - - - ::fHelpOn = 0; - - - - SetProp(0x23301, GetProp(0x23300)); - SetProp(0x23303, GetProp(0x23302)); - - - - - .fAllSceneDoors = 0; - .fAllActorDoors = 0; - .fAllSoundDoors = 0; - .fAllTextDoors = 0; - .fEnableActorTools = 0; - .fEnableSceneTools = 0; - .fEnableTboxTools = 0; - .idPriOpen = 0x20000; - .idtbxDown = 0x20000; - .idactDown = 0x20000; - .idscnDown = 0x20000; - .fpseDown = 0; - .chttTbox = 2; - .chttActor = 1; - .fXYAxis = 0; - .fRGround = 0; -ENDCHUNK - - - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0022 _st ) SCRIPT - - - - - If (.idscnDown != 0x20000); - ChangeStateGob(.idscnDown, 0x0001); - .idscnDown = 0x20000; - End; - - - - - .fEnableActorTools = 0; - .fEnableSceneTools = 0; - .fEnableTboxTools = 0; - .idtbxDown = 0x20000; - .idscnDown = 0x20000; - .fpseDown = 0; - .chttTbox = 2; - .chttActor = 1; - .fXYAxis = 0; - .fRGround = 0; - EnqueueCid(50004, 20000 + 5, 0, 0, 0, 0); - - - - - If (StateGob(0x2000F) != 0x0001); - ChangeStateGob(0x2000F, 0x0001); - End; - If (StateGob(0x20005) != 0x0003); - ChangeStateGob(0x20005, 0x0003); - End; - If (StateGob(0x20006) != 0x0001); - ChangeStateGob(0x20006, 0x0001); - End; - If (StateGob(0x20007) != 0x0001); - ChangeStateGob(0x20007, 0x0001); - End; - If (StateGob(0x20008) != 0x0001); - ChangeStateGob(0x20008, 0x0001); - End; - If (StateGob(0x2000B) != 0x0002); - ChangeStateGob(0x2000B, 0x0002); - End; - If (StateGob(0x2000D) != 0x0002); - ChangeStateGob(0x2000D, 0x0002); - End; - If (StateGob(0x2000E) != 0x0003); - ChangeStateGob(0x2000E, 0x0003); - End; - If ((GetProp(0x23502) & 1) != 0); - CreateChildThis(0x00030000, 0x00030000); - CreateChildThis(0x000305A0, 0x000305A0); - SetProp(0x23502, GetProp(0x23502) & 0xfffffffe); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0023 _st ) SCRIPT - .fpseDown = _parm[0]; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0025 _st ) SCRIPT - 0x20002->fEnableSceneTools = 1; - If(0x20002->idPriOpen == 0x20005); - ChangeStateGob(0x2000F, 0x0002); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0026 _st ) SCRIPT - 0x20002->fEnableActorTools = 1; - If(0x20002->idPriOpen == 0x20006); - ChangeStateGob(0x2000F, 0x0003); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0027 _st ) SCRIPT - 0x20002->fEnableTboxTools = 1; - If(0x20002->idPriOpen == 0x20008); - ChangeStateGob(0x2000F, 0x0005); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0024 _st ) SCRIPT - PrintStr("Running kchidMovieTechniques"); - - CreateChildThis(0x20160, 0x20160); - CreateChildThis(0x00003046, 0x00003046); - - - - CopyStr("DIALOGUE.3mm", 701) ; - CopyStr("JOG.3mm", 702) ; - CopyStr("SURPRISE.3mm", 703) ; - CopyStr("MUMMY.3mm", 704) ; - CopyStr("BONGO.3mm", 705) ; - CopyStr("BRIDGE.3mm", 706) ; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0028 _st ) SCRIPT - PrintStr("Running kchidFlyingLogo"); - CreateChildThis(0x00030000, 0x00030000); - CreateChildThis(0x00030001, 0x00030001); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0029 _st ) SCRIPT - .fXYAxis = 0; - .fRGround = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x002A _st ) SCRIPT - .fAllSceneDoors = 1; - .fAllActorDoors = 1; - .fAllSoundDoors = 1; - .fAllTextDoors = 1; - - If(StateGob(0x2000F) == 0x0002); - ChangeStateGob(0x2000F, 0x0006); - Elif(StateGob(0x2000F) == 0x0003); - ChangeStateGob(0x2000F, 0x0007); - Elif(StateGob(0x2000F) == 0x0004); - ChangeStateGob(0x2000F, 0x0008); - Elif(StateGob(0x2000F) == 0x0005); - ChangeStateGob(0x2000F, 0x0009); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x002B _st ) SCRIPT - - - - If (.idscnDown != 0x20000); - ChangeStateGob(.idscnDown, 0x0001); - .idscnDown = 0x20000; - End; -ENDCHUNK - - - - - -SET _curgok = 0x2005E CHUNK( 'GOKD', 0x2005E, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back1.bmp" ENDCHUNK - - -SET _curgok = 0x2005F CHUNK( 'GOKD', 0x2005F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 97 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20096, 0x21100, 0x21000, - (0 << 16) | 0); -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back2.bmp" ENDCHUNK - - -SET _curgok = 0x20060 CHUNK( 'GOKD', 0x20060, ) PACK SHORT BO OSK LONG 1 - LONG 0 592 97 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20097, 0x21110, 0x21002, - (0 << 16) | 0); -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back3.bmp" ENDCHUNK - -SET _curgok = 0x20061 CHUNK( 'GOKD', 0x20061, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 406 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back4.bmp" ENDCHUNK - - - - - - - -SET _curgok = 0x20082 CHUNK( 'GOKD', 0x20082, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 410 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fpar1.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20083, 0x20083); - CreateChildThis(0x20084, 0x20084); - CreateChildThis(0x20085, 0x20085); - CreateChildThis(0x20086, 0x20086); - CreateChildThis(0x20087, 0x20087); - CreateChildThis(0x20088, 0x20088); - CreateChildThis(0x20089, 0x20089); - CreateChildGob(0x20089, 0x2008A, 0x2008A); -ENDCHUNK - -SET _curgok = 0x2008B CHUNK( 'GOKD', 0x2008B, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 433 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\spar1.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2008C, 0x2008C); - CreateChildThis(0x2008D, 0x2008D); - CreateChildThis(0x2008E, 0x2008E); - CreateChildThis(0x2008F, 0x2008F); - CreateChildThis(0x20090, 0x20090); - CreateChildThis(0x20091, 0x20091); - CreateChildThis(0x20092, 0x20092); - CreateChildGob(0x20092, 0x20093, 0x20093); -ENDCHUNK - - - - -SET _curgok = 0x2005D CHUNK( 'GOKD', 0x2005D, ) PACK SHORT BO OSK LONG 1 - LONG 0 48 100 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 544 306 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x20161 CHUNK( 'GOKD', 0x20161, ) PACK SHORT BO OSK LONG 3 - LONG 0 591 405 20 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x20005 CHUNK( 'GOKD', 0x20005, ) PACK SHORT BO OSK LONG 1 - LONG 0 49 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22334 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr1d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr1c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr1o.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - CreateChildGob(0x20002, 0x20010, 0x20010); - EnqueueCid(50004, 20000 + 5, 0, 0, 0, 0); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - If(0x20002->fEnableSceneTools); - ChangeStateGob(0x2000F, 0x0002); - Else; - ChangeStateGob(0x2000F, 0x0001); - End; - ChangeStateGob(0x20052, 0x0001); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20010)); - DestroyGob(0x20010); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateThis(0x0003); - End; -ENDCHUNK - - - - -SET _curgok = 0x20006 CHUNK( 'GOKD', 0x20006, ) PACK SHORT BO OSK LONG 1 - LONG 0 211 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22335 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 111, 41 ) "studio\bmp\covr2d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 111, 41 ) "studio\bmp\covr2c.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - CreateChildGob(0x20002, 0x20011, 0x20011); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - If(0x20002->fEnableActorTools); - ChangeStateGob(0x2000F, 0x0003); - Else; - ChangeStateGob(0x2000F, 0x0001); - End; - ChangeStateGob(0x20052, 0x0003); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20011)); - DestroyGob(0x20011); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateThis(0x0003); - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 111, 41 ) "studio\bmp\covr2o.bmp" ENDCHUNK - - - - -SET _curgok = 0x20007 CHUNK( 'GOKD', 0x20007, ) PACK SHORT BO OSK LONG 1 - LONG 0 433 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22336 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 110, 41 ) "studio\bmp\covr3d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 110, 41 ) "studio\bmp\covr3c.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - CreateChildGob(0x20002, 0x20012, 0x20012); - EnqueueCid(50103, 20000 + 5, 1, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20012)); - DestroyGob(0x20012); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - EnqueueCid(50103, 20000 + 5, 0, 0, 0, 0); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - ChangeStateThis(0x0003); - ChangeStateGob(0x2000F, 0x0004); - ChangeStateGob(0x20052, 0x0005); - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 110, 41 ) "studio\bmp\covr3o.bmp" ENDCHUNK - - - - -SET _curgok = 0x20008 CHUNK( 'GOKD', 0x20008, ) PACK SHORT BO OSK LONG 1 - LONG 0 592 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22337 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr4d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr4c.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - CreateChildGob(0x20002, 0x20013, 0x20013); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - If(0x20002->fEnableTboxTools); - ChangeStateGob(0x2000F, 0x0005); - Else; - ChangeStateGob(0x2000F, 0x0001); - End; - ChangeStateGob(0x20052, 0x0007); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20013)); - DestroyGob(0x20013); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateThis(0x0003); - EnqueueCid(50004, 20000 + 5, 2, 0, 0, 0); - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr4o.bmp" ENDCHUNK - - - - - -SET _curgok = 0x2000B CHUNK( 'GOKD', 0x2000B, ) PACK SHORT BO OSK LONG 1 - LONG 0 181 464 20 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 181, 54 ) "studio\bmp\covr5d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 181, 54 ) "studio\bmp\covr5c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 181, 54 ) "studio\bmp\covr5o.bmp" ENDCHUNK - - - - -SET _curgok = 0x2000D CHUNK( 'GOKD', 0x2000D, ) PACK SHORT BO OSK LONG 1 - LONG 0 419 464 20 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 55, 54 ) "studio\bmp\covr7d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 55, 54 ) "studio\bmp\covr7c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 55, 54 ) "studio\bmp\covr7o.bmp" ENDCHUNK - - - - -SET _curgok = 0x2000E CHUNK( 'GOKD', 0x2000E, ) PACK SHORT BO OSK LONG 1 - LONG 0 500 464 20 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 54 ) "studio\bmp\covr8d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 54 ) "studio\bmp\covr8c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 54 ) "studio\bmp\covr8o.bmp" ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x20034 CHUNK( 'GOKD', 0x20034, ) PACK SHORT BO OSK LONG 1 - LONG 0 560 411 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22338 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\book.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\bookc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - CreateChildGob(0x20002, 0x00003002, 0x00003002); -ENDCHUNK - - - - -SET _curgok = 0x20160 CHUNK( 'GOKD', 0x20160, ) PACK SHORT BO OSK LONG 1 - LONG 0 560 411 10 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 26, 0 ) "studio\bmp\gadg.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 26, 0 ) "studio\bmp\gadgblck.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 26, 0 ) "studio\bmp\gadgc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cell = 0; - While(); - Cell(0x00000040 + cell, 0, 0, 30); - cell++; - cell = cell % 2; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - - CreateChildGob(0x20002, 0x00003031, 0x00003031); -ENDCHUNK - - - - -SET _curgok = 0x20035 CHUNK( 'GOKD', 0x20035, ) PACK SHORT BO OSK LONG 1 - LONG 0 613 411 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22339 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\map.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\mapc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - CreateChildGob( 0x20002, 0x00012000, 0x00012000 ); -ENDCHUNK - - - - -SET _curgok = 0x20036 CHUNK( 'GOKD', 0x20036, ) PACK SHORT BO OSK LONG 1 - LONG 0 450 411 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\ccp.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\ccps.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (FGobExists(.idDown) && (.idDown != 0x20000)); - If (.idDown == 0x20052); - If (StateGob(0x20052) == 0x0002); - ChangeStateGob(.idDown, 0x0001); - Elif (StateGob(0x20052) == 0x0004); - ChangeStateGob(.idDown, 0x0003); - Elif (StateGob(0x20052) == 0x0006); - ChangeStateGob(.idDown, 0x0005); - Else; - ChangeStateGob(.idDown, 0x0007); - End; - Else; - ChangeStateGob(.idDown, 0x0001); - End; - End; - .idDown = 0x20000; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (StateGob(0x2004F) != 0x0003); - ChangeStateGob(0x2004F, 0x0003); - End; -ENDCHUNK - - - - -SET _curgok = 0x20037 CHUNK( 'GOKD', 0x20037, ) PACK SHORT BO OSK LONG 1 - LONG 0 397 411 0 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233B - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\undod.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\undo.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\undos.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(133, 0, 0, 0, 0, 0); - ChangeStateThis(0x0002); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(134, 0, 0, 0, 0, 0); - ChangeStateThis(0x0003); -ENDCHUNK - - - - - - - - - - -SET _curgok = 0x20163 CHUNK( 'GOKD', 0x20163, ) PACK SHORT BO OSK LONG 3 LONG 0 0 0 1 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, -4, -2 ) "studio\bmp\volthmb.bmp" ENDCHUNK - -SET _curgok = 0x20038 CHUNK( 'GOKD', 0x20038, ) PACK SHORT BO OSK LONG 0 LONG 0 345 414 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x2233C ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 14, 0 ) "studio\bmp\vsld.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20163, 0x20163); - - - y = 35 - MulDiv( GetMasterVolume(), 35, (2*0x00010000)); - MoveAbsGob(0x20163, 0, y); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - While (1); - - y = 35 - MulDiv( GetMasterVolume(), 35, (2*0x00010000) ); - MoveAbsGob(0x20163, 0, y); - Cell(0x00000040, 0, 0, 60); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis('WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 4); - While (1); - y = YMouseThis(); - If (y < 0); - y = 0; - Elif (y > 35); - y = 35; - End; - - - MoveAbsGob(0x20163, 0, y); - - - newvol = MulDiv( (2*0x00010000), (35-y), 35 ); - - - SetMasterVolume(newvol); - - - Cell(0, 0, 0, 10); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound(.siiLoop); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - - -SET _curgok = 0x20039 CHUNK( 'GOKD', 0x20039, ) PACK SHORT BO OSK LONG 1 - LONG 0 314 414 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233D - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\play.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playc1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\plays.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playc2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playm1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000041 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playm2.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - chidcell = SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st; - While(); - Cell(chidcell, 0, 0, 20); - chidcell = (chidcell == SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st ? - SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000041 _st : - SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st); - End; -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23032, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303E, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - - - - DestroyGob(0x20081); - SetZThis(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50005, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0002); - - - - If (StateGob(0x20005) == 0x0003); - - - ChangeStateGob(0x20002->idscnDown, 0x0001); - EnqueueCid(50004, 20000 + 5, 0, 0, 0, 0); - - Elif (StateGob(0x20006) == 0x0003); - - - ChangeStateGob(0x20017, 0x0002); - - Elif (StateGob(0x20007) == 0x0003); - - - ChangeStateGob(0x20026, 0x0002); - - Elif (StateGob(0x20008) == 0x0003); - - - ChangeStateGob(0x20030, 0x0002); - EnqueueCid(50004, 20000 + 5, 2, 0, 0, 0); - - End; - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - - - - CreateChildGob(0x20002, 0x20081, 0x20081); - SetZThis(200); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50005, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0001); -ENDCHUNK - - - - -SET _curgok = 0x2003C CHUNK( 'GOKD', 0x2003C, ) PACK SHORT BO OSK LONG 1 - LONG 0 507 411 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233E - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\port.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\ports.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0003); -ENDCHUNK - - - - -SET _curgok = 0x20094 CHUNK( 'GOKD', 0x20094, ) PACK SHORT BO OSK LONG 6 - LONG 0 28 464 0 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\name.bmp" ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x2003D CHUNK( 'GOKD', 0x2003D, ) PACK SHORT BO OSK LONG 1 - LONG 0 597 466 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x2233F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\exit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\exitc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23046, SET _st = 0x10000 SET _st |= 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50105, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - -SET _curgok = 0x20042 CHUNK( 'GOKD', 0x20042, ) PACK SHORT BO OSK LONG 1 - LONG 0 51 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22340 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\1back.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\1backs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x2003E, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20075 CHUNK( 'GOKD', 0x20075, ) PACK SHORT BO OSK LONG 1 - LONG 0 147 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x22341 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2actr.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2actrs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x2003F, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20076 CHUNK( 'GOKD', 0x20076, ) PACK SHORT BO OSK LONG 1 - LONG 0 213 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x22342 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2prop.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2props.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20040, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20077 CHUNK( 'GOKD', 0x20077, ) PACK SHORT BO OSK LONG 1 - LONG 0 279 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22343 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2splt.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2splts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50029, 0x20000, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20078 CHUNK( 'GOKD', 0x20078, ) PACK SHORT BO OSK LONG 1 - LONG 0 367 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x22344 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3horn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3horns.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20044, 0x21120, 0x21010, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20079 CHUNK( 'GOKD', 0x20079, ) PACK SHORT BO OSK LONG 1 - LONG 0 433 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22345 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3mike.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3mikes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20045, 0x21120, 0x21010, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x2007A CHUNK( 'GOKD', 0x2007A, ) PACK SHORT BO OSK LONG 1 - LONG 0 499 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22346 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3note.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3notes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20043, 0x21120, 0x21010, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20046 CHUNK( 'GOKD', 0x20046, ) PACK SHORT BO OSK LONG 1 - LONG 0 593 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22347 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\4new.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\4news.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - CreateChildGob(0x20002, 0x2011D, 0x2011D); -ENDCHUNK - - - - - -CHUNK ('GST ' 2 "Miscellaneous strings") - LONG - GST(4) - ITEM "%d / %d" 0 - ITEM "Comic Sans MS" 7 - ITEM "Comic Sans MS" 8 - ITEM "Comic Sans MS" 9 - ITEM "Comic Sans MS" 10 - ITEM "Comic Sans MS" 11 - ITEM "Comic Sans MS" 13 - ITEM "14" 12 - ITEM "10" 29 -ENDCHUNK - - - diff --git a/OBJ/WIND/TDFMAKE.MAP b/OBJ/WIND/TDFMAKE.MAP deleted file mode 100644 index d19ca359..00000000 --- a/OBJ/WIND/TDFMAKE.MAP +++ /dev/null @@ -1,2339 +0,0 @@ - tdfmake - - Timestamp is 3078f607 (Mon Oct 09 03:14:31 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0005b300H .text CODE - 0002:00000000 000070e0H .bss DATA - 0003:00000000 000004e0H .rdata DATA - 0004:00000000 00009902H .data DATA - 0004:00009904 00000004H .CRT$XCA DATA - 0004:00009908 00000068H .CRT$XCU DATA - 0004:00009970 00000004H .CRT$XCZ DATA - 0004:00009974 00000004H .CRT$XIA DATA - 0004:00009978 0000000cH .CRT$XIC DATA - 0004:00009984 00000004H .CRT$XIZ DATA - 0004:00009988 00000004H .CRT$XPA DATA - 0004:0000998c 00000004H .CRT$XPX DATA - 0004:00009990 00000004H .CRT$XPZ DATA - 0004:00009994 00000004H .CRT$XTA DATA - 0004:00009998 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000ecH .idata$4 DATA - 0005:00000150 000000ecH .idata$5 DATA - 0005:0000023c 000003eaH .idata$6 DATA - 0006:00000000 0000150dH CONST DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 000008e0H .debug$F DATA - 0008:00000c60 00000000H .debug$G DATA - 0008:00000c60 00000032H .debug$H DATA - 0008:fff85000 00000000H .debug$P DATA - 0008:fff85000 00000000H .debug$S DATA - 0008:fff85000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 _main 00401000 f tdfmake.obj - 0001:00000350 ?FMakeTdf@@YGHPAVFNI@@PAVCFL@@@Z 00401350 f tdfmake.obj - 0001:00000b90 ?Debugger@@YGXXZ 00401b90 f tdfmake.obj - 0001:00000bb0 ?FIn@@YGHJJJ@Z 00401bb0 f tdfmake.obj - 0001:00000bf0 ?WarnProc@@YGXPADJ0@Z 00401bf0 f tdfmake.obj - 0001:00000c70 ?FAssertProc@@YGHPADJ0PAXJ@Z 00401c70 f tdfmake.obj - 0001:00000e30 ??1FNI@@UAE@XZ 00401e30 f tdfmake.obj - 0001:00000e60 ??1BASE@@UAE@XZ 00401e60 f tdfmake.obj - 0001:00000eb0 ??_GBASE@@UAEPAXI@Z 00401eb0 f tdfmake.obj - 0001:00000eb0 ??_EBASE@@UAEPAXI@Z 00401eb0 f tdfmake.obj - 0001:00000ef0 ??0STN@@QAE@XZ 00401ef0 f tdfmake.obj - 0001:00000f50 ?Psz@STN@@QAEPADXZ 00401f50 f tdfmake.obj - 0001:00000fa0 ?Cch@STN@@QAEJXZ 00401fa0 f tdfmake.obj - 0001:00000ff0 ?SetSz@STN@@QAEXPAD@Z 00401ff0 f tdfmake.obj - 0001:00001030 ??4STN@@QAEAAV0@PAD@Z 00402030 f tdfmake.obj - 0001:00001060 ?FAppendCh@STN@@QAEHD@Z 00402060 f tdfmake.obj - 0001:000011a0 ??0ACR@@QAE@EEE@Z 004021a0 f tdfmake.obj - 0001:000011e0 ?LwFromBytes@@YGJEEEE@Z 004021e0 f tdfmake.obj - 0001:00001220 ??0ACR@@QAE@HH@Z 00402220 f tdfmake.obj - 0001:000012c0 ?BrsDiv@@YGJJJ@Z 004022c0 f tdfmake.obj - 0001:000013f0 ?LwAbs@@YGJJ@Z 004023f0 f tdfmake.obj - 0001:00001420 ?FWouldBe@USAC@@SGHJ@Z 00402420 f utilglob.obj - 0001:00001460 ?FIs@USAC@@UAEHJ@Z 00402460 f utilglob.obj - 0001:00001490 ?Cls@USAC@@UAEJXZ 00402490 f utilglob.obj - 0001:000015d0 ??1RND@@UAE@XZ 004025d0 f utilglob.obj - 0001:00001600 ??1KCDC@@UAE@XZ 00402600 f utilglob.obj - 0001:00001630 ??0KCDC@@QAE@XZ 00402630 f utilglob.obj - 0001:00001670 ??1USAC@@UAE@XZ 00402670 f utilglob.obj - 0001:000016c0 ??1CODC@@UAE@XZ 004026c0 f utilglob.obj - 0001:000016f0 ??_GKCDC@@UAEPAXI@Z 004026f0 f utilglob.obj - 0001:000016f0 ??_EKCDC@@UAEPAXI@Z 004026f0 f utilglob.obj - 0001:00001730 ??0CODC@@QAE@XZ 00402730 f utilglob.obj - 0001:00001770 ??_GCODC@@UAEPAXI@Z 00402770 f utilglob.obj - 0001:00001770 ??_ECODC@@UAEPAXI@Z 00402770 f utilglob.obj - 0001:000017b0 ??0MUTX@@QAE@XZ 004027b0 f utilglob.obj - 0001:000017e0 ??1MUTX@@QAE@XZ 004027e0 f utilglob.obj - 0001:00001810 ?FCanDo@KCDC@@UAEHHJ@Z 00402810 f utilglob.obj - 0001:000018a0 ?PfilNext@FIL@@QAEPAV1@XZ 004028a0 f util.obj - 0001:000018d0 ?PbllNext@BLL@@QAEPAV1@XZ 004028d0 f util.obj - 0001:00001900 ?PcflNext@CFL@@QAEPAV1@XZ 00402900 f util.obj - 0001:00001930 ?FWouldBe@BLL@@SGHJ@Z 00402930 f base.obj - 0001:00001970 ?FIs@BLL@@UAEHJ@Z 00402970 f base.obj - 0001:000019a0 ?Cls@BLL@@UAEJXZ 004029a0 f base.obj - 0001:000019d0 ?Cls@BASE@@UAEJXZ 004029d0 f base.obj - 0001:00001a00 ?FIs@BASE@@UAEHJ@Z 00402a00 f base.obj - 0001:00001a40 ?FWouldBe@BASE@@SGHJ@Z 00402a40 f base.obj - 0001:00001a70 ??0BASE@@QAE@XZ 00402a70 f base.obj - 0001:00001b50 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00402b50 f base.obj - 0001:00001b70 ?_Enter@@YGXXZ 00402b70 f base.obj - 0001:00001b90 ?_Leave@@YGXXZ 00402b90 f base.obj - 0001:00001bb0 ?AddRef@BASE@@UAEXXZ 00402bb0 f base.obj - 0001:00001c40 ?Release@BASE@@UAEXXZ 00402c40 f base.obj - 0001:00001cf0 ??2BASE@@SGPAXIPADJ@Z 00402cf0 f base.obj - 0001:00001ec0 ??3BASE@@SGXPAX@Z 00402ec0 f base.obj - 0001:00001f40 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00402f40 f base.obj - 0001:00001f60 ?AssertValid@BASE@@QAEXK@Z 00402f60 f base.obj - 0001:00002090 ?MarkMemStub@BASE@@QAEXXZ 00403090 f base.obj - 0001:00002170 ?MarkMem@BASE@@UAEXXZ 00403170 f base.obj - 0001:000021c0 ?_AssertDoi@@YGXPAUDOI@@H@Z 004031c0 f base.obj - 0001:000023b0 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 004033b0 f base.obj - 0001:00002430 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00403430 f base.obj - 0001:000024b0 ??0BLL@@QAE@XZ 004034b0 f base.obj - 0001:00002500 ??1BLL@@UAE@XZ 00403500 f base.obj - 0001:00002550 ?_Attach@BLL@@IAEXPAX@Z 00403550 f base.obj - 0001:000026f0 ?AssertNilOrPvCb@@YGXPAXJ@Z 004036f0 f base.obj - 0001:00002720 ?AssertValid@BLL@@QAEXK@Z 00403720 f base.obj - 0001:00002820 ??_GBLL@@UAEPAXI@Z 00403820 f base.obj - 0001:00002820 ??_EBLL@@UAEPAXI@Z 00403820 f base.obj - 0001:00002860 ?PvAddBv@@YGPAXPAXJ@Z 00403860 f base.obj - 0001:00002880 ?PvSubBv@@YGPAXPAXJ@Z 00403880 f base.obj - 0001:000028a0 ?Enter@MUTX@@QAEXXZ 004038a0 f base.obj - 0001:000028d0 ?Leave@MUTX@@QAEXXZ 004038d0 f base.obj - 0001:00002900 ?LwThreadCur@@YGJXZ 00403900 f base.obj - 0001:00002920 ?FillPb@@YGXPAXJE@Z 00403920 f utilcopy.obj - 0001:00002980 ?ClearPb@@YGXPAXJ@Z 00403980 f utilcopy.obj - 0001:000029f0 ?FEqualRgb@@YGHPAX0J@Z 004039f0 f utilcopy.obj - 0001:00002a70 ?CbEqualRgb@@YGJPAX0J@Z 00403a70 f utilcopy.obj - 0001:00002b00 ?CopyPb@@YGXPAX0J@Z 00403b00 f utilcopy.obj - 0001:00002ba0 ?BltPb@@YGXPAX0J@Z 00403ba0 f utilcopy.obj - 0001:00002c80 ?FWouldBe@ERS@@SGHJ@Z 00403c80 f utilerro.obj - 0001:00002cc0 ?FIs@ERS@@UAEHJ@Z 00403cc0 f utilerro.obj - 0001:00002cf0 ?Cls@ERS@@UAEJXZ 00403cf0 f utilerro.obj - 0001:00002d20 ??0ERS@@QAE@XZ 00403d20 f utilerro.obj - 0001:00002d70 ?Push@ERS@@UAEXJPADJ@Z 00403d70 f utilerro.obj - 0001:00002f30 ?FPop@ERS@@UAEHPAJ@Z 00403f30 f utilerro.obj - 0001:00003030 ?Clear@ERS@@UAEXXZ 00404030 f utilerro.obj - 0001:000030a0 ?Cerc@ERS@@UAEJXZ 004040a0 f utilerro.obj - 0001:000030f0 ?FIn@ERS@@UAEHJ@Z 004040f0 f utilerro.obj - 0001:000031c0 ?ErcGet@ERS@@UAEJJ@Z 004041c0 f utilerro.obj - 0001:00003260 ?Flush@ERS@@UAEXJ@Z 00404260 f utilerro.obj - 0001:00003350 ?AssertValid@ERS@@QAEXK@Z 00404350 f utilerro.obj - 0001:000033f0 ??1ERS@@UAE@XZ 004043f0 f utilerro.obj - 0001:00003420 ??_EERS@@UAEPAXI@Z 00404420 f utilerro.obj - 0001:00003420 ??_GERS@@UAEPAXI@Z 00404420 f utilerro.obj - 0001:00003480 ?LwMul@@YGJJJ@Z 00404480 f utilint.obj - 0001:000034f0 ?AssertIn@@YGXJJJ@Z 004044f0 f utilint.obj - 0001:00003570 ?SwapBytesBom@@YGXPAXK@Z 00404570 f utilint.obj - 0001:00003650 ?LwMin@@YGJJJ@Z 00404650 f utilint.obj - 0001:00003680 ?SwapBytesRglw@@YGXPAXJ@Z 00404680 f utilint.obj - 0001:00003730 ?AssertBomRglw@@YGXKJ@Z 00404730 f utilint.obj - 0001:000037f0 ?LwMulDiv@@YGJJJJ@Z 004047f0 f utilint.obj - 0001:00003840 ?LwMax@@YGJJJ@Z 00404840 f utilint.obj - 0001:00003870 ?LwBound@@YGJJJJ@Z 00404870 f utilint.obj - 0001:000038b0 ??0USAC@@QAE@XZ 004048b0 f utilint.obj - 0001:00003910 ?Set@DVER@@QAEXFF@Z 00404910 f utilint.obj - 0001:00003970 ??_EUSAC@@UAEPAXI@Z 00404970 f utilint.obj - 0001:00003970 ??_GUSAC@@UAEPAXI@Z 00404970 f utilint.obj - 0001:000039b0 ?TsCurrentSystem@@YGKXZ 004049b0 f utilint.obj - 0001:000039d0 ?FFail@DMAGL@@QAEHXZ 004049d0 f utilmem.obj - 0001:00003a40 ?Allocate@DMAGL@@QAEXJ@Z 00404a40 f utilmem.obj - 0001:00003ad0 ?Resize@DMAGL@@QAEXJ@Z 00404ad0 f utilmem.obj - 0001:00003b30 ?Free@DMAGL@@QAEXJ@Z 00404b30 f utilmem.obj - 0001:00003b70 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00404b70 f utilmem.obj - 0001:00003ec0 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00404ec0 f utilmem.obj - 0001:000042d0 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 004052d0 f utilmem.obj - 0001:00004370 ?_LinkMbh@@YGXPAUMBH@@@Z 00405370 f utilmem.obj - 0001:00004410 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00405410 f utilmem.obj - 0001:000045b0 ?_AssertMbh@@YGXPAUMBH@@@Z 004055b0 f utilmem.obj - 0001:000047f0 ?AssertPvAlloced@@YGXPAXJ@Z 004057f0 f utilmem.obj - 0001:000048b0 ?MarkPv@@YGXPAX@Z 004058b0 f utilmem.obj - 0001:00004920 ?FWouldBe@RND@@SGHJ@Z 00405920 f utilrnd.obj - 0001:00004960 ?FIs@RND@@UAEHJ@Z 00405960 f utilrnd.obj - 0001:00004990 ?Cls@RND@@UAEJXZ 00405990 f utilrnd.obj - 0001:000049c0 ?FWouldBe@SFL@@SGHJ@Z 004059c0 f utilrnd.obj - 0001:00004a00 ?FIs@SFL@@UAEHJ@Z 00405a00 f utilrnd.obj - 0001:00004a30 ?Cls@SFL@@UAEJXZ 00405a30 f utilrnd.obj - 0001:00004a60 ??0RND@@QAE@K@Z 00405a60 f utilrnd.obj - 0001:00004af0 ?LwNext@RND@@UAEJJ@Z 00405af0 f utilrnd.obj - 0001:00004bc0 ??0SFL@@QAE@K@Z 00405bc0 f utilrnd.obj - 0001:00004c50 ??1SFL@@UAE@XZ 00405c50 f utilrnd.obj - 0001:00004cc0 ?AssertValid@SFL@@QAEXK@Z 00405cc0 f utilrnd.obj - 0001:00004d90 ?MarkMem@SFL@@UAEXXZ 00405d90 f utilrnd.obj - 0001:00004df0 ?Shuffle@SFL@@QAEXJ@Z 00405df0 f utilrnd.obj - 0001:00004f00 ?_ShuffleCore@SFL@@IAEXXZ 00405f00 f utilrnd.obj - 0001:00004ff0 ?_FEnsureHq@SFL@@IAEHJ@Z 00405ff0 f utilrnd.obj - 0001:00005170 ?LwNext@SFL@@UAEJJ@Z 00406170 f utilrnd.obj - 0001:000052d0 ??_GRND@@UAEPAXI@Z 004062d0 f utilrnd.obj - 0001:000052d0 ??_ERND@@UAEPAXI@Z 004062d0 f utilrnd.obj - 0001:00005310 ??_ESFL@@UAEPAXI@Z 00406310 f utilrnd.obj - 0001:00005310 ??_GSFL@@UAEPAXI@Z 00406310 f utilrnd.obj - 0001:00005350 ??4STN@@QAEAAV0@AAV0@@Z 00406350 f utilstr.obj - 0001:00005440 ?SetRgch@STN@@QAEXPADJ@Z 00406440 f utilstr.obj - 0001:00005520 ?Delete@STN@@QAEXJJ@Z 00406520 f utilstr.obj - 0001:00005680 ?FAppendRgch@STN@@QAEHPADJ@Z 00406680 f utilstr.obj - 0001:00005780 ?FInsertRgch@STN@@QAEHJPADJ@Z 00406780 f utilstr.obj - 0001:00005930 ?FEqualRgch@STN@@QAEHPADJ@Z 00406930 f utilstr.obj - 0001:000059d0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 004069d0 f utilstr.obj - 0001:00005a60 ?GetSzs@STN@@QAEXPAD@Z 00406a60 f utilstr.obj - 0001:00005ad0 ?FFormatSz@STN@@QAAHPADZZ 00406ad0 f utilstr.obj - 0001:00005b30 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00406b30 f utilstr.obj - 0001:00006390 ?FGetLw@STN@@QAEHPAJJ@Z 00407390 f utilstr.obj - 0001:00006660 ?Prgch@STN@@QAEPADXZ 00407660 f utilstr.obj - 0001:000066b0 ?SetNil@STN@@QAEXXZ 004076b0 f utilstr.obj - 0001:00006710 ?AssertValid@STN@@QAEXK@Z 00407710 f utilstr.obj - 0001:00006800 ?CchSz@@YGJPAD@Z 00407800 f utilstr.obj - 0001:000068a0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004078a0 f utilstr.obj - 0001:00006a10 ?UpperRgchs@@YGXPADJ@Z 00407a10 f utilstr.obj - 0001:00006ad0 ?AssertOsk@@YGXF@Z 00407ad0 f utilstr.obj - 0001:00006b80 ?AssertSz@@YGXPAD@Z 00407b80 f utilstr.obj - 0001:00006bd0 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00407bd0 f memwin.obj - 0001:00006cb0 ?FResizePhq@@YGHPAPAXJKJ@Z 00407cb0 f memwin.obj - 0001:00006de0 ?FreePhq@@YGXPAPAX@Z 00407de0 f memwin.obj - 0001:00006e90 ?CbOfHq@@YGJPAX@Z 00407e90 f memwin.obj - 0001:00006ed0 ?QvFromHq@@YGPAXPAX@Z 00407ed0 f memwin.obj - 0001:00006ef0 ?PvLockHq@@YGPAXPAX@Z 00407ef0 f memwin.obj - 0001:00006f70 ?UnlockHq@@YGXPAX@Z 00407f70 f memwin.obj - 0001:00006ff0 ?AssertHq@@YGXPAX@Z 00407ff0 f memwin.obj - 0001:000070e0 ?MarkHq@@YGXPAX@Z 004080e0 f memwin.obj - 0001:00007120 ?AssertPvCb@@YGXPAXJ@Z 00408120 f memwin.obj - 0001:000071f0 ?B2Lw@@YGEJ@Z 004081f0 f screxe.obj - 0001:00007210 ?B3Lw@@YGEJ@Z 00408210 f screxe.obj - 0001:00007230 ?FAppendStn@STN@@QAEHPAV1@@Z 00408230 f screxe.obj - 0001:00007270 ?IvMac@GRPB@@QAEJXZ 00408270 f screxe.obj - 0001:000072a0 ?FPush@GL@@QAEHPAX@Z 004082a0 f screxe.obj - 0001:000072e0 ?Pcfl@CRF@@QAEPAVCFL@@XZ 004082e0 f screxe.obj - 0001:00007310 ?CbEntry@GLB@@QAEJXZ 00408310 f screxe.obj - 0001:00007380 ?FEqualSz@STN@@QAEHPAD@Z 00408380 f scrcom.obj - 0001:000073c0 ?FAppendSz@STN@@QAEHPAD@Z 004083c0 f scrcom.obj - 0001:00007400 ?B0Lw@@YGEJ@Z 00408400 f scrcom.obj - 0001:00007420 ?B1Lw@@YGEJ@Z 00408420 f scrcom.obj - 0001:000074a0 ?FWouldBe@GRPB@@SGHJ@Z 004084a0 f groups.obj - 0001:000074e0 ?FIs@GRPB@@UAEHJ@Z 004084e0 f groups.obj - 0001:00007510 ?Cls@GRPB@@UAEJXZ 00408510 f groups.obj - 0001:00007540 ?FWouldBe@GLB@@SGHJ@Z 00408540 f groups.obj - 0001:00007580 ?FIs@GLB@@UAEHJ@Z 00408580 f groups.obj - 0001:000075b0 ?Cls@GLB@@UAEJXZ 004085b0 f groups.obj - 0001:000075e0 ?FWouldBe@GL@@SGHJ@Z 004085e0 f groups.obj - 0001:00007620 ?FIs@GL@@UAEHJ@Z 00408620 f groups.obj - 0001:00007650 ?Cls@GL@@UAEJXZ 00408650 f groups.obj - 0001:00007680 ?FWouldBe@GGB@@SGHJ@Z 00408680 f groups.obj - 0001:000076c0 ?FIs@GGB@@UAEHJ@Z 004086c0 f groups.obj - 0001:000076f0 ?Cls@GGB@@UAEJXZ 004086f0 f groups.obj - 0001:00007720 ?FWouldBe@GG@@SGHJ@Z 00408720 f groups.obj - 0001:00007760 ?FIs@GG@@UAEHJ@Z 00408760 f groups.obj - 0001:00007790 ?Cls@GG@@UAEJXZ 00408790 f groups.obj - 0001:000077c0 ??1GRPB@@UAE@XZ 004087c0 f groups.obj - 0001:00007830 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00408830 f groups.obj - 0001:00007a30 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00408a30 f groups.obj - 0001:00007bf0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00408bf0 f groups.obj - 0001:00007c50 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00408c50 f groups.obj - 0001:00007e20 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 00408e20 f groups.obj - 0001:00007fa0 ?AssertValid@GRPB@@QAEXK@Z 00408fa0 f groups.obj - 0001:00008130 ?MarkMem@GRPB@@UAEXXZ 00409130 f groups.obj - 0001:000081a0 ??0GLB@@IAE@J@Z 004091a0 f groups.obj - 0001:00008230 ?QvGet@GLB@@QAEPAXJ@Z 00409230 f groups.obj - 0001:000082c0 ?Get@GLB@@QAEXJPAX@Z 004092c0 f groups.obj - 0001:00008350 ?Put@GLB@@QAEXJPAX@Z 00409350 f groups.obj - 0001:00008400 ?CbRoundToLong@@YGJJ@Z 00409400 f groups.obj - 0001:00008420 ?AssertValid@GLB@@QAEXK@Z 00409420 f groups.obj - 0001:000084c0 ?PglNew@GL@@SGPAV1@JJ@Z 004094c0 f groups.obj - 0001:000085f0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 004095f0 f groups.obj - 0001:000087b0 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 004097b0 f groups.obj - 0001:00008810 ??0GL@@IAE@J@Z 00409810 f groups.obj - 0001:00008870 ?FFree@GL@@UAEHJ@Z 00409870 f groups.obj - 0001:000088e0 ?CbOnFile@GL@@UAEJXZ 004098e0 f groups.obj - 0001:00008940 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00409940 f groups.obj - 0001:00008b10 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00409b10 f groups.obj - 0001:00008d60 ?FInsert@GL@@QAEHJPAXJ@Z 00409d60 f groups.obj - 0001:00008ee0 ?Delete@GL@@UAEXJ@Z 00409ee0 f groups.obj - 0001:00008f40 ?Delete@GL@@QAEXJJ@Z 00409f40 f groups.obj - 0001:000090b0 ?FAdd@GL@@UAEHPAXPAJ@Z 0040a0b0 f groups.obj - 0001:00009160 ?FPop@GL@@QAEHPAX@Z 0040a160 f groups.obj - 0001:00009270 ?FEnsureSpace@GL@@QAEHJK@Z 0040a270 f groups.obj - 0001:00009340 ?_Qb1@GRPB@@IAEPAEJ@Z 0040a340 f groups.obj - 0001:00009370 ?_Qb2@GRPB@@IAEPAEJ@Z 0040a370 f groups.obj - 0001:000093a0 ?_Cb1@GRPB@@IAEJXZ 0040a3a0 f groups.obj - 0001:000093d0 ??0GRPB@@IAE@XZ 0040a3d0 f groups.obj - 0001:00009410 ?_Cb2@GRPB@@IAEJXZ 0040a410 f groups.obj - 0001:00009440 ??0GGB@@IAE@JH@Z 0040a440 f groups.obj - 0001:00009500 ?CbOnFile@GGB@@UAEJXZ 0040a500 f groups.obj - 0001:00009560 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0040a560 f groups.obj - 0001:000097b0 ?FFree@GGB@@UAEHJ@Z 0040a7b0 f groups.obj - 0001:000098f0 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 0040a8f0 f groups.obj - 0001:00009930 ?FEnsureSpace@GGB@@QAEHJJK@Z 0040a930 f groups.obj - 0001:00009a90 ?_RemoveRgb@GGB@@IAEXJJ@Z 0040aa90 f groups.obj - 0001:00009be0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0040abe0 f groups.obj - 0001:00009d50 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0040ad50 f groups.obj - 0001:00009e60 ?GetFixed@GGB@@QAEXJPAX@Z 0040ae60 f groups.obj - 0001:00009f70 ?Cb@GGB@@QAEJJ@Z 0040af70 f groups.obj - 0001:0000a020 ?QvGet@GGB@@QAEPAXJPAJ@Z 0040b020 f groups.obj - 0001:0000a130 ?GetRgb@GGB@@QAEXJJJPAX@Z 0040b130 f groups.obj - 0001:0000a240 ?DeleteRgb@GGB@@QAEXJJJ@Z 0040b240 f groups.obj - 0001:0000a430 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0040b430 f groups.obj - 0001:0000a6f0 ?AssertValid@GGB@@QAEXK@Z 0040b6f0 f groups.obj - 0001:0000aa50 ?PggNew@GG@@SGPAV1@JJJ@Z 0040ba50 f groups.obj - 0001:0000aba0 ??0GG@@IAE@J@Z 0040bba0 f groups.obj - 0001:0000abe0 ?FInsert@GG@@QAEHJJPAX0@Z 0040bbe0 f groups.obj - 0001:0000ae90 ?FAdd@GG@@UAEHJPAJPAX1@Z 0040be90 f groups.obj - 0001:0000af50 ?Delete@GG@@UAEXJ@Z 0040bf50 f groups.obj - 0001:0000b090 ?AssertValid@GG@@QAEXK@Z 0040c090 f groups.obj - 0001:0000b120 ??_EGRPB@@UAEPAXI@Z 0040c120 f groups.obj - 0001:0000b120 ??_GGRPB@@UAEPAXI@Z 0040c120 f groups.obj - 0001:0000b160 ??_EGG@@UAEPAXI@Z 0040c160 f groups.obj - 0001:0000b160 ??_GGG@@UAEPAXI@Z 0040c160 f groups.obj - 0001:0000b1a0 ??_GGLB@@UAEPAXI@Z 0040c1a0 f groups.obj - 0001:0000b1a0 ??_EGLB@@UAEPAXI@Z 0040c1a0 f groups.obj - 0001:0000b1e0 ??_GGL@@UAEPAXI@Z 0040c1e0 f groups.obj - 0001:0000b1e0 ??_EGL@@UAEPAXI@Z 0040c1e0 f groups.obj - 0001:0000b220 ??1GLB@@UAE@XZ 0040c220 f groups.obj - 0001:0000b250 ??_EGGB@@UAEPAXI@Z 0040c250 f groups.obj - 0001:0000b250 ??_GGGB@@UAEPAXI@Z 0040c250 f groups.obj - 0001:0000b290 ??1GGB@@UAE@XZ 0040c290 f groups.obj - 0001:0000b2c0 ??1GG@@UAE@XZ 0040c2c0 f groups.obj - 0001:0000b2f0 ??1GL@@UAE@XZ 0040c2f0 f groups.obj - 0001:0000b380 ?FReadHq@FLO@@QAEHPAPAX@Z 0040c380 f stream.obj - 0001:0000b3c0 ?FWrite@BLCK@@QAEHPAXH@Z 0040c3c0 f stream.obj - 0001:0000b420 ?FWouldBe@CFL@@SGHJ@Z 0040c420 f chunk.obj - 0001:0000b460 ?FIs@CFL@@UAEHJ@Z 0040c460 f chunk.obj - 0001:0000b490 ?Cls@CFL@@UAEJXZ 0040c490 f chunk.obj - 0001:0000b4c0 ?FWouldBe@CGE@@SGHJ@Z 0040c4c0 f chunk.obj - 0001:0000b500 ?FIs@CGE@@UAEHJ@Z 0040c500 f chunk.obj - 0001:0000b530 ?Cls@CGE@@UAEJXZ 0040c530 f chunk.obj - 0001:0000b560 ??0CFL@@AAE@XZ 0040c560 f chunk.obj - 0001:0000b5d0 ??1CFL@@EAE@XZ 0040c5d0 f chunk.obj - 0001:0000b760 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 0040c760 f chunk.obj - 0001:0000b7b0 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 0040c7b0 f chunk.obj - 0001:0000ba20 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 0040ca20 f chunk.obj - 0001:0000bb50 ?SetCb@CRPSM@@QAEXJ@Z 0040cb50 f chunk.obj - 0001:0000bb90 ?Grfcrp@CRPSM@@QAEKK@Z 0040cb90 f chunk.obj - 0001:0000bbc0 ?ClearGrfcrp@CRPSM@@QAEXK@Z 0040cbc0 f chunk.obj - 0001:0000bbf0 ?SetGrfcrp@CRPSM@@QAEXK@Z 0040cbf0 f chunk.obj - 0001:0000bc20 ?FSetGrfcfl@CFL@@QAEHKK@Z 0040cc20 f chunk.obj - 0001:0000bd70 ?Release@CFL@@UAEXXZ 0040cd70 f chunk.obj - 0001:0000be50 ?AssertValid@CFL@@QAEXK@Z 0040ce50 f chunk.obj - 0001:0000cc20 ?CbRgch@CRPSM@@QAEJJ@Z 0040dc20 f chunk.obj - 0001:0000cc50 ?BvRgch@CRPSM@@QAEJXZ 0040dc50 f chunk.obj - 0001:0000cc80 ?Cb@CRPSM@@QAEJXZ 0040dc80 f chunk.obj - 0001:0000ccb0 ?SuspendAssertValid@@YGXXZ 0040dcb0 f chunk.obj - 0001:0000cd00 ?ResumeAssertValid@@YGXXZ 0040dd00 f chunk.obj - 0001:0000cd30 ?ElError@FIL@@QAEJXZ 0040dd30 f chunk.obj - 0001:0000cd60 ?GrffilCur@FIL@@QAEKXZ 0040dd60 f chunk.obj - 0001:0000cd90 ?MarkMem@CFL@@UAEXXZ 0040dd90 f chunk.obj - 0001:0000ce60 ?_TValidIndex@CFL@@AAEHXZ 0040de60 f chunk.obj - 0001:0000d390 ?_ReadFreeMap@CFL@@AAEXXZ 0040e390 f chunk.obj - 0001:0000d580 ?FSave@CFL@@QAEHKPAVFNI@@@Z 0040e580 f chunk.obj - 0001:0000ddd0 ?FTemp@FIL@@QAEHXZ 0040edd0 f chunk.obj - 0001:0000de10 ?GetFni@CFL@@QAEXPAVFNI@@@Z 0040ee10 f chunk.obj - 0001:0000de40 ?GetFni@FIL@@QAEXPAVFNI@@@Z 0040ee40 f chunk.obj - 0001:0000de70 ?_FWriteIndex@CFL@@AAEHK@Z 0040ee70 f chunk.obj - 0001:0000e1d0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 0040f1d0 f chunk.obj - 0001:0000e350 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0040f350 f chunk.obj - 0001:0000e4a0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0040f4a0 f chunk.obj - 0001:0000e580 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0040f580 f chunk.obj - 0001:0000e650 ?SetPacked@CFL@@QAEXKKH@Z 0040f650 f chunk.obj - 0001:0000e790 ?FPacked@CFL@@QAEHKK@Z 0040f790 f chunk.obj - 0001:0000e8a0 ?FPackData@CFL@@QAEHKK@Z 0040f8a0 f chunk.obj - 0001:0000e9b0 ?_FCreateExtra@CFL@@AAEHXZ 0040f9b0 f chunk.obj - 0001:0000ea90 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0040fa90 f chunk.obj - 0001:0000edd0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0040fdd0 f chunk.obj - 0001:0000ef70 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 0040ff70 f chunk.obj - 0001:0000f080 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00410080 f chunk.obj - 0001:0000f1d0 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 004101d0 f chunk.obj - 0001:0000f400 ?FPutPv@CFL@@QAEHPAXJKK@Z 00410400 f chunk.obj - 0001:0000f480 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 00410480 f chunk.obj - 0001:0000f580 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00410580 f chunk.obj - 0001:0000fa80 ?FWrite@FLO@@QAEHPAX@Z 00410a80 f chunk.obj - 0001:0000fac0 ?Delete@CFL@@QAEXKK@Z 00410ac0 f chunk.obj - 0001:0000fdd0 ?CckiRef@CFL@@QAEJKK@Z 00410dd0 f chunk.obj - 0001:0000fe90 ?TIsDescendent@CFL@@QAEHKKKK@Z 00410e90 f chunk.obj - 0001:0000ffb0 ?_FDecRefCount@CFL@@AAEHJ@Z 00410fb0 f chunk.obj - 0001:00010090 ?_DeleteCore@CFL@@AAEXJ@Z 00411090 f chunk.obj - 0001:00010150 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00411150 f chunk.obj - 0001:00010710 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00411710 f chunk.obj - 0001:00010860 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 00411860 f chunk.obj - 0001:00010b00 ?Ckid@CFL@@QAEJKK@Z 00411b00 f chunk.obj - 0001:00010bc0 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00411bc0 f chunk.obj - 0001:00010da0 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00411da0 f chunk.obj - 0001:00010f80 ?_FSetRti@CFL@@AAEHKKJ@Z 00411f80 f chunk.obj - 0001:000110a0 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 004120a0 f chunk.obj - 0001:00011260 ??0CGE@@QAE@XZ 00412260 f chunk.obj - 0001:000112e0 ??1CGE@@UAE@XZ 004122e0 f chunk.obj - 0001:00011370 ?AssertValid@CGE@@QAEXK@Z 00412370 f chunk.obj - 0001:000114a0 ?MarkMem@CGE@@UAEXXZ 004124a0 f chunk.obj - 0001:00011510 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00412510 f chunk.obj - 0001:00011660 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00412660 f chunk.obj - 0001:00011aa0 ??4FNI@@QAEAAV0@AAV0@@Z 00412aa0 f chunk.obj - 0001:00011af0 ??_ECFL@@EAEPAXI@Z 00412af0 f chunk.obj - 0001:00011af0 ??_GCFL@@EAEPAXI@Z 00412af0 f chunk.obj - 0001:00011b30 ??_ECGE@@UAEPAXI@Z 00412b30 f chunk.obj - 0001:00011b30 ??_GCGE@@UAEPAXI@Z 00412b30 f chunk.obj - 0001:00011b70 ??4BASE@@QAEAAV0@ABV0@@Z 00412b70 f chunk.obj - 0001:00011bb0 ?FWouldBe@CODM@@SGHJ@Z 00412bb0 f codec.obj - 0001:00011bf0 ?FIs@CODM@@UAEHJ@Z 00412bf0 f codec.obj - 0001:00011c20 ?Cls@CODM@@UAEJXZ 00412c20 f codec.obj - 0001:00011c50 ?FWouldBe@CODC@@SGHJ@Z 00412c50 f codec.obj - 0001:00011c90 ?FIs@CODC@@UAEHJ@Z 00412c90 f codec.obj - 0001:00011cc0 ?Cls@CODC@@UAEJXZ 00412cc0 f codec.obj - 0001:00011cf0 ??0CODM@@QAE@PAVCODC@@J@Z 00412cf0 f codec.obj - 0001:00011df0 ??1CODM@@UAE@XZ 00412df0 f codec.obj - 0001:00011f10 ?AssertValid@CODM@@QAEXK@Z 00412f10 f codec.obj - 0001:00011fe0 ?MarkMem@CODM@@UAEXXZ 00412fe0 f codec.obj - 0001:000120d0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 004130d0 f codec.obj - 0001:000121e0 ?FCanDo@CODM@@UAEHJH@Z 004131e0 f codec.obj - 0001:00012250 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00413250 f codec.obj - 0001:00012380 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00413380 f codec.obj - 0001:000124c0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004134c0 f codec.obj - 0001:000126b0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 004136b0 f codec.obj - 0001:000129e0 ??_ECODM@@UAEPAXI@Z 004139e0 f codec.obj - 0001:000129e0 ??_GCODM@@UAEPAXI@Z 004139e0 f codec.obj - 0001:00012a20 ?FWouldBe@KCDC@@SGHJ@Z 00413a20 f codkauai.obj - 0001:00012a60 ?FIs@KCDC@@UAEHJ@Z 00413a60 f codkauai.obj - 0001:00012a90 ?Cls@KCDC@@UAEJXZ 00413a90 f codkauai.obj - 0001:00012ac0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00413ac0 f codkauai.obj - 0001:00012c20 ?Set@BITA@@QAEXPAXJ@Z 00413c20 f codkauai.obj - 0001:00012c80 ?FWriteBits@BITA@@QAEHKJ@Z 00413c80 f codkauai.obj - 0001:00012e20 ?FWriteLogEncoded@BITA@@QAEHK@Z 00413e20 f codkauai.obj - 0001:00012f10 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00413f10 f codkauai.obj - 0001:000136d0 ?Ibit@BITA@@QAEJXZ 004146d0 f codkauai.obj - 0001:00013700 ?Ib@BITA@@QAEJXZ 00414700 f codkauai.obj - 0001:00013730 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00414730 f codkauai.obj - 0001:00017410 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00418410 f codkauai.obj - 0001:00017d30 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00418d30 f codkauai.obj - 0001:0001a520 ?FWouldBe@BACO@@SGHJ@Z 0041b520 f crf.obj - 0001:0001a560 ?FIs@BACO@@UAEHJ@Z 0041b560 f crf.obj - 0001:0001a590 ?Cls@BACO@@UAEJXZ 0041b590 f crf.obj - 0001:0001a5c0 ?FWouldBe@RCA@@SGHJ@Z 0041b5c0 f crf.obj - 0001:0001a600 ?FIs@RCA@@UAEHJ@Z 0041b600 f crf.obj - 0001:0001a630 ?Cls@RCA@@UAEJXZ 0041b630 f crf.obj - 0001:0001a660 ?FWouldBe@CRF@@SGHJ@Z 0041b660 f crf.obj - 0001:0001a6a0 ?FIs@CRF@@UAEHJ@Z 0041b6a0 f crf.obj - 0001:0001a6d0 ?Cls@CRF@@UAEJXZ 0041b6d0 f crf.obj - 0001:0001a700 ??0BACO@@IAE@XZ 0041b700 f crf.obj - 0001:0001a780 ??1BACO@@MAE@XZ 0041b780 f crf.obj - 0001:0001a850 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0041b850 f crf.obj - 0001:0001a940 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0041b940 f crf.obj - 0001:0001a9b0 ?CbOnFile@BACO@@UAEJXZ 0041b9b0 f crf.obj - 0001:0001aa20 ?AssertValid@BACO@@QAEXK@Z 0041ba20 f crf.obj - 0001:0001aab0 ?MarkMem@BACO@@UAEXXZ 0041bab0 f crf.obj - 0001:0001ab20 ?Release@BACO@@UAEXXZ 0041bb20 f crf.obj - 0001:0001ac80 ?Detach@BACO@@UAEXXZ 0041bc80 f crf.obj - 0001:0001adb0 ?SetCrep@BACO@@UAEXJ@Z 0041bdb0 f crf.obj - 0001:0001ae30 ??0CRF@@IAE@PAVCFL@@J@Z 0041be30 f crf.obj - 0001:0001af20 ??1CRF@@UAE@XZ 0041bf20 f crf.obj - 0001:0001b080 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 0041c080 f crf.obj - 0001:0001b1d0 ?CactRef@BASE@@QAEJXZ 0041c1d0 f crf.obj - 0001:0001b200 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 0041c200 f crf.obj - 0001:0001b6a0 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 0041c6a0 f crf.obj - 0001:0001ba80 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 0041ca80 f crf.obj - 0001:0001bbd0 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 0041cbd0 f crf.obj - 0001:0001bd20 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 0041cd20 f crf.obj - 0001:0001bdc0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 0041cdc0 f crf.obj - 0001:0001bf80 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 0041cf80 f crf.obj - 0001:0001c170 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 0041d170 f crf.obj - 0001:0001c340 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 0041d340 f crf.obj - 0001:0001c6c0 ?_FPurgeCb@CRF@@IAEHJJ@Z 0041d6c0 f crf.obj - 0001:0001c970 ?AssertValid@CRF@@QAEXK@Z 0041d970 f crf.obj - 0001:0001caa0 ?MarkMem@CRF@@UAEXXZ 0041daa0 f crf.obj - 0001:0001cc50 ??0RCA@@QAE@XZ 0041dc50 f crf.obj - 0001:0001cc90 ??1RCA@@UAE@XZ 0041dc90 f crf.obj - 0001:0001ccc0 ??_EBACO@@MAEPAXI@Z 0041dcc0 f crf.obj - 0001:0001ccc0 ??_GBACO@@MAEPAXI@Z 0041dcc0 f crf.obj - 0001:0001cd00 ??_GCRF@@UAEPAXI@Z 0041dd00 f crf.obj - 0001:0001cd00 ??_ECRF@@UAEPAXI@Z 0041dd00 f crf.obj - 0001:0001cd40 ??_ERCA@@UAEPAXI@Z 0041dd40 f crf.obj - 0001:0001cd40 ??_GRCA@@UAEPAXI@Z 0041dd40 f crf.obj - 0001:0001cda0 ?FWouldBe@FIL@@SGHJ@Z 0041dda0 f file.obj - 0001:0001cde0 ?FIs@FIL@@UAEHJ@Z 0041dde0 f file.obj - 0001:0001ce10 ?Cls@FIL@@UAEJXZ 0041de10 f file.obj - 0001:0001ce40 ?FWouldBe@BLCK@@SGHJ@Z 0041de40 f file.obj - 0001:0001ce80 ?FIs@BLCK@@UAEHJ@Z 0041de80 f file.obj - 0001:0001ceb0 ?Cls@BLCK@@UAEJXZ 0041deb0 f file.obj - 0001:0001cee0 ??0FIL@@IAE@PAVFNI@@K@Z 0041dee0 f file.obj - 0001:0001cfd0 ??1FIL@@MAE@XZ 0041dfd0 f file.obj - 0001:0001d060 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0041e060 f file.obj - 0001:0001d230 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0041e230 f file.obj - 0001:0001d350 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0041e350 f file.obj - 0001:0001d4a0 ?FSetGrffil@FIL@@QAEHKK@Z 0041e4a0 f file.obj - 0001:0001d5b0 ?Release@FIL@@UAEXXZ 0041e5b0 f file.obj - 0001:0001d690 ?SetTemp@FIL@@QAEXH@Z 0041e690 f file.obj - 0001:0001d710 ?AssertValid@FIL@@QAEXK@Z 0041e710 f file.obj - 0001:0001d840 ?_FRangeIn@@YGHJJJ@Z 0041e840 f file.obj - 0001:0001d8a0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0041e8a0 f file.obj - 0001:0001d970 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0041e970 f file.obj - 0001:0001da40 ?FCopy@FLO@@QAEHPAU1@@Z 0041ea40 f file.obj - 0001:0001dcc0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0041ecc0 f file.obj - 0001:0001ddd0 ?AssertValid@FLO@@QAEXK@Z 0041edd0 f file.obj - 0001:0001ded0 ??0BLCK@@QAE@PAUFLO@@H@Z 0041eed0 f file.obj - 0001:0001e010 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0041f010 f file.obj - 0001:0001e150 ??0BLCK@@QAE@XZ 0041f150 f file.obj - 0001:0001e1f0 ??1BLCK@@UAE@XZ 0041f1f0 f file.obj - 0001:0001e250 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0041f250 f file.obj - 0001:0001e370 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0041f370 f file.obj - 0001:0001e4a0 ?SetHq@BLCK@@QAEXPAPAXH@Z 0041f4a0 f file.obj - 0001:0001e580 ?Free@BLCK@@QAEXXZ 0041f580 f file.obj - 0001:0001e630 ?HqFree@BLCK@@QAEPAXH@Z 0041f630 f file.obj - 0001:0001e7e0 ?Cb@BLCK@@QAEJH@Z 0041f7e0 f file.obj - 0001:0001e870 ?FMoveMin@BLCK@@QAEHJ@Z 0041f870 f file.obj - 0001:0001e960 ?FMoveLim@BLCK@@QAEHJ@Z 0041f960 f file.obj - 0001:0001ea50 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0041fa50 f file.obj - 0001:0001ebf0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0041fbf0 f file.obj - 0001:0001ed90 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0041fd90 f file.obj - 0001:0001ef30 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0041ff30 f file.obj - 0001:0001f0e0 ?FPacked@BLCK@@QAEHPAJ@Z 004200e0 f file.obj - 0001:0001f180 ?FPackData@BLCK@@QAEHJ@Z 00420180 f file.obj - 0001:0001f3c0 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 004203c0 f file.obj - 0001:0001f410 ?FUnpackData@BLCK@@QAEHXZ 00420410 f file.obj - 0001:0001f640 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 00420640 f file.obj - 0001:0001f670 ?AssertValid@BLCK@@QAEXK@Z 00420670 f file.obj - 0001:0001f8a0 ?MarkMem@BLCK@@UAEXXZ 004208a0 f file.obj - 0001:0001f940 ??_EFIL@@MAEPAXI@Z 00420940 f file.obj - 0001:0001f940 ??_GFIL@@MAEPAXI@Z 00420940 f file.obj - 0001:0001f980 ??_EBLCK@@UAEPAXI@Z 00420980 f file.obj - 0001:0001f980 ??_GBLCK@@UAEPAXI@Z 00420980 f file.obj - 0001:0001f9c0 ?_HfileOpen@@YGPAXPADHK@Z 004209c0 f filewin.obj - 0001:0001fa40 ?_FOpen@FIL@@IAEHHK@Z 00420a40 f filewin.obj - 0001:0001fc80 ?_Close@FIL@@IAEXH@Z 00420c80 f filewin.obj - 0001:0001fda0 ?Flush@FIL@@QAEXXZ 00420da0 f filewin.obj - 0001:0001fe30 ?_SetFpPos@FIL@@IAEXJ@Z 00420e30 f filewin.obj - 0001:0001ff30 ?FSetFpMac@FIL@@QAEHJ@Z 00420f30 f filewin.obj - 0001:00020070 ?FpMac@FIL@@QAEJXZ 00421070 f filewin.obj - 0001:00020180 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00421180 f filewin.obj - 0001:00020340 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00421340 f filewin.obj - 0001:00020510 ?FSwapNames@FIL@@QAEHPAV1@@Z 00421510 f filewin.obj - 0001:000209a0 ?FRename@FIL@@QAEHPAVFNI@@@Z 004219a0 f filewin.obj - 0001:00020bd0 ?FWouldBe@FNI@@SGHJ@Z 00421bd0 f fniwin.obj - 0001:00020c10 ?FIs@FNI@@UAEHJ@Z 00421c10 f fniwin.obj - 0001:00020c40 ?Cls@FNI@@UAEJXZ 00421c40 f fniwin.obj - 0001:00020c70 ?FWouldBe@FNE@@SGHJ@Z 00421c70 f fniwin.obj - 0001:00020cb0 ?FIs@FNE@@UAEHJ@Z 00421cb0 f fniwin.obj - 0001:00020ce0 ?Cls@FNE@@UAEJXZ 00421ce0 f fniwin.obj - 0001:00020d10 ?SetNil@FNI@@QAEXXZ 00421d10 f fniwin.obj - 0001:00020d70 ??0FNI@@QAE@XZ 00421d70 f fniwin.obj - 0001:00020dc0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00421dc0 f fniwin.obj - 0001:00021110 ?FGetUnique@FNI@@QAEHJ@Z 00422110 f fniwin.obj - 0001:000212c0 ?FGetTemp@FNI@@QAEHXZ 004222c0 f fniwin.obj - 0001:00021400 ?Ftg@FNI@@QAEJXZ 00422400 f fniwin.obj - 0001:00021450 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00422450 f fniwin.obj - 0001:00021610 ?FChangeFtg@FNI@@QAEHJ@Z 00422610 f fniwin.obj - 0001:00021780 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00422780 f fniwin.obj - 0001:000218c0 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 004228c0 f fniwin.obj - 0001:00021980 ?TExists@FNI@@QAEHXZ 00422980 f fniwin.obj - 0001:00021bc0 ?FDelete@FNI@@QAEHXZ 00422bc0 f fniwin.obj - 0001:00021c90 ?FRename@FNI@@QAEHPAV1@@Z 00422c90 f fniwin.obj - 0001:00021db0 ?FEqual@FNI@@QAEHPAV1@@Z 00422db0 f fniwin.obj - 0001:00021e70 ?FSameDir@FNI@@QAEHPAV1@@Z 00422e70 f fniwin.obj - 0001:00021fb0 ?FDownDir@FNI@@QAEHPAVSTN@@K@Z 00422fb0 f fniwin.obj - 0001:00022290 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 00423290 f fniwin.obj - 0001:00022560 ?AssertValid@FNI@@QAEXK@Z 00423560 f fniwin.obj - 0001:000228a0 ?_CchExt@FNI@@AAEJXZ 004238a0 f fniwin.obj - 0001:000229a0 ?_SetFtgFromName@FNI@@AAEXXZ 004239a0 f fniwin.obj - 0001:00022b10 ?ChsUpper@@YGDD@Z 00423b10 f fniwin.obj - 0001:00022b30 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00423b30 f fniwin.obj - 0001:00022d10 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00423d10 f fniwin.obj - 0001:00022e40 ?FInsertCh@STN@@QAEHJD@Z 00423e40 f fniwin.obj - 0001:00022e80 ?FEqual@STN@@QAEHPAV1@@Z 00423e80 f fniwin.obj - 0001:00022ec0 ??0FNE@@QAE@XZ 00423ec0 f fniwin.obj - 0001:00022f80 ?FEqualUser@STN@@QAEHPAV1@K@Z 00423f80 f fniwin.obj - 0001:00022fc0 ??1FNE@@UAE@XZ 00423fc0 f fniwin.obj - 0001:00023030 ?_Free@FNE@@AAEXXZ 00424030 f fniwin.obj - 0001:00023130 ?FInit@FNE@@QAEHPAVFNI@@PAJJK@Z 00424130 f fniwin.obj - 0001:00023470 ?FNextFni@FNE@@QAEHPAVFNI@@PAKK@Z 00424470 f fniwin.obj - 0001:00023cf0 ?_FPop@FNE@@AAEHXZ 00424cf0 f fniwin.obj - 0001:00023da0 ?AssertValid@FNE@@QAEXK@Z 00424da0 f fniwin.obj - 0001:00023ee0 ?MarkMem@FNE@@UAEXXZ 00424ee0 f fniwin.obj - 0001:00023fb0 ??_GFNI@@UAEPAXI@Z 00424fb0 f fniwin.obj - 0001:00023fb0 ??_EFNI@@UAEPAXI@Z 00424fb0 f fniwin.obj - 0001:00023ff0 ??_GFNE@@UAEPAXI@Z 00424ff0 f fniwin.obj - 0001:00023ff0 ??_EFNE@@UAEPAXI@Z 00424ff0 f fniwin.obj - 0001:00024030 ??0FES@FNE@@QAE@XZ 00425030 f fniwin.obj - 0001:00024060 ??1FES@FNE@@QAE@XZ 00425060 f fniwin.obj - 0001:00024086 _timeGetTime@0 00425086 winmm:WINMM.dll - 0001:00024090 _BrBegin 00425090 brfwmxr:fwsetup.obj - 0001:00024194 _BrEnd 00425194 brfwmxr:fwsetup.obj - 0001:000241b7 _BrDiagHandlerSet 004251b7 brfwmxr:fwsetup.obj - 0001:000241d6 _BrFilesystemSet 004251d6 brfwmxr:fwsetup.obj - 0001:000241f5 _BrAllocatorSet 004251f5 brfwmxr:fwsetup.obj - 0001:00024214 _BrFixedAbs 00425214 brfwmxr:fixed386.obj - 0001:00024224 _BrFixedMul 00425224 brfwmxr:fixed386.obj - 0001:00024235 _BrFixedMac2 00425235 brfwmxr:fixed386.obj - 0001:00024258 _BrFixedMac3 00425258 brfwmxr:fixed386.obj - 0001:00024285 _BrFixedMac4 00425285 brfwmxr:fixed386.obj - 0001:000242bc _BrFixedLength2 004252bc brfwmxr:fixed386.obj - 0001:000242e0 _BrFixedLength3 004252e0 brfwmxr:fixed386.obj - 0001:0002430d _BrFixedLength4 0042530d brfwmxr:fixed386.obj - 0001:00024343 _BrFixedRLength2 00425343 brfwmxr:fixed386.obj - 0001:00024367 _BrFixedRLength3 00425367 brfwmxr:fixed386.obj - 0001:00024394 _BrFixedRLength4 00425394 brfwmxr:fixed386.obj - 0001:000243ca _BrFixedDiv 004253ca brfwmxr:fixed386.obj - 0001:000243df _BrFixedDivR 004253df brfwmxr:fixed386.obj - 0001:000243f5 _BrFixedDivF 004253f5 brfwmxr:fixed386.obj - 0001:00024408 _BrFixedMulDiv 00425408 brfwmxr:fixed386.obj - 0001:00024418 _BrFixedMac2Div 00425418 brfwmxr:fixed386.obj - 0001:0002443a _BrFixedMac3Div 0042543a f brfwmxr:fixed386.obj - 0001:00024466 _BrFixedMac4Div 00425466 brfwmxr:fixed386.obj - 0001:0002449c _BrFixedFMac2 0042549c brfwmxr:fixed386.obj - 0001:000244c1 _BrFixedFMac3 004254c1 brfwmxr:fixed386.obj - 0001:000244f1 _BrFixedFMac4 004254f1 brfwmxr:fixed386.obj - 0001:0002452c _BrFixedRcp 0042552c brfwmxr:fixed386.obj - 0001:0002453d _BrFixedSqr 0042553d brfwmxr:fixed386.obj - 0001:0002454d _BrFixedSqr2 0042554d brfwmxr:fixed386.obj - 0001:0002456e _BrFixedSqr3 0042556e brfwmxr:fixed386.obj - 0001:00024598 _BrFixedSqr4 00425598 brfwmxr:fixed386.obj - 0001:000245cb _BrFixedSin 004255cb brfwmxr:fixed386.obj - 0001:000245fc _BrFixedCos 004255fc brfwmxr:fixed386.obj - 0001:0002462d _BrFixedASin 0042562d brfwmxr:fixed386.obj - 0001:00024661 _BrFixedACos 00425661 brfwmxr:fixed386.obj - 0001:00024695 _BrFixedATan2 00425695 brfwmxr:fixed386.obj - 0001:00024899 _BrFixedATan2Fast 00425899 brfwmxr:fixed386.obj - 0001:000249a1 __Sqrt 004259a1 brfwmxr:fixed386.obj - 0001:00024af9 __Sqrt64 00425af9 brfwmxr:fixed386.obj - 0001:00024da0 __FastSqrt 00425da0 brfwmxr:fixed386.obj - 0001:00024dcb __FastRSqrt 00425dcb brfwmxr:fixed386.obj - 0001:00024df4 __FastRSqrt64 00425df4 brfwmxr:fixed386.obj - 0001:00024e40 _BrModelAdd 00425e40 brfwmxr:regsupt.obj - 0001:00024e74 _BrModelRemove 00425e74 brfwmxr:regsupt.obj - 0001:00024e8c _BrModelFind 00425e8c brfwmxr:regsupt.obj - 0001:00024ea0 _BrModelFindHook 00425ea0 brfwmxr:regsupt.obj - 0001:00024eb4 _BrModelAddMany 00425eb4 brfwmxr:regsupt.obj - 0001:00024f10 _BrModelRemoveMany 00425f10 brfwmxr:regsupt.obj - 0001:00024f54 _BrModelFindMany 00425f54 brfwmxr:regsupt.obj - 0001:00024f73 _BrModelCount 00425f73 brfwmxr:regsupt.obj - 0001:00024f87 _BrModelEnum 00425f87 brfwmxr:regsupt.obj - 0001:00024fa6 _BrMaterialAdd 00425fa6 brfwmxr:regsupt.obj - 0001:00024fd6 _BrMaterialRemove 00425fd6 brfwmxr:regsupt.obj - 0001:00024fee _BrMaterialFind 00425fee brfwmxr:regsupt.obj - 0001:00025002 _BrMaterialFindHook 00426002 brfwmxr:regsupt.obj - 0001:00025016 _BrMaterialAddMany 00426016 brfwmxr:regsupt.obj - 0001:00025076 _BrMaterialRemoveMany 00426076 brfwmxr:regsupt.obj - 0001:000250ba _BrMaterialFindMany 004260ba brfwmxr:regsupt.obj - 0001:000250d9 _BrMaterialCount 004260d9 brfwmxr:regsupt.obj - 0001:000250ed _BrMaterialEnum 004260ed brfwmxr:regsupt.obj - 0001:0002510c _BrMapAdd 0042610c brfwmxr:regsupt.obj - 0001:00025120 _BrMapRemove 00426120 brfwmxr:regsupt.obj - 0001:00025134 _BrMapFind 00426134 brfwmxr:regsupt.obj - 0001:00025148 _BrMapFindHook 00426148 brfwmxr:regsupt.obj - 0001:0002515c _BrMapAddMany 0042615c brfwmxr:regsupt.obj - 0001:00025178 _BrMapRemoveMany 00426178 brfwmxr:regsupt.obj - 0001:00025194 _BrMapFindMany 00426194 brfwmxr:regsupt.obj - 0001:000251b3 _BrMapCount 004261b3 brfwmxr:regsupt.obj - 0001:000251c7 _BrMapEnum 004261c7 brfwmxr:regsupt.obj - 0001:000251e6 _BrTableAdd 004261e6 brfwmxr:regsupt.obj - 0001:000251fa _BrTableRemove 004261fa brfwmxr:regsupt.obj - 0001:0002520e _BrTableFind 0042620e brfwmxr:regsupt.obj - 0001:00025222 _BrTableFindHook 00426222 brfwmxr:regsupt.obj - 0001:00025236 _BrTableAddMany 00426236 brfwmxr:regsupt.obj - 0001:00025252 _BrTableRemoveMany 00426252 brfwmxr:regsupt.obj - 0001:0002526e _BrTableFindMany 0042626e brfwmxr:regsupt.obj - 0001:0002528d _BrTableCount 0042628d brfwmxr:regsupt.obj - 0001:000252a1 _BrTableEnum 004262a1 brfwmxr:regsupt.obj - 0001:000252c0 _BrResClassAdd 004262c0 brfwmxr:regsupt.obj - 0001:000252f3 _BrResClassRemove 004262f3 brfwmxr:regsupt.obj - 0001:00025323 _BrResClassFind 00426323 brfwmxr:regsupt.obj - 0001:00025337 _BrResClassFindHook 00426337 brfwmxr:regsupt.obj - 0001:0002534b _BrResClassAddMany 0042634b brfwmxr:regsupt.obj - 0001:0002539e _BrResClassRemoveMany 0042639e brfwmxr:regsupt.obj - 0001:000253f6 _BrResClassFindMany 004263f6 brfwmxr:regsupt.obj - 0001:00025415 _BrResClassCount 00426415 brfwmxr:regsupt.obj - 0001:00025429 _BrResClassEnum 00426429 brfwmxr:regsupt.obj - 0001:0002545c _BrModelApplyMap 0042645c brfwmxr:regsupt.obj - 0001:00025628 _BrModelFitMap 00426628 brfwmxr:regsupt.obj - 0001:000257f8 _BrModelFree 004267f8 brfwmxr:regsupt.obj - 0001:0002580c _BrModelAllocate 0042680c brfwmxr:regsupt.obj - 0001:00025888 _BrMaterialAllocate 00426888 brfwmxr:regsupt.obj - 0001:000258dc _BrMaterialFree 004268dc brfwmxr:regsupt.obj - 0001:000258f0 NamePatternMatch_ 004268f0 brfwmxr:register.obj - 0001:000259c3 RegistryNew_ 004269c3 brfwmxr:register.obj - 0001:000259e7 RegistryClear_ 004269e7 brfwmxr:register.obj - 0001:00025a1b RegistryAdd_ 00426a1b brfwmxr:register.obj - 0001:00025a57 RegistryAddMany_ 00426a57 brfwmxr:register.obj - 0001:00025ac2 RegistryRemove_ 00426ac2 brfwmxr:register.obj - 0001:00025b0a RegistryRemoveMany_ 00426b0a brfwmxr:register.obj - 0001:00025b4e RegistryFind_ 00426b4e brfwmxr:register.obj - 0001:00025b99 RegistryFindMany_ 00426b99 brfwmxr:register.obj - 0001:00025be9 RegistryCount_ 00426be9 brfwmxr:register.obj - 0001:00025c24 RegistryEnum_ 00426c24 brfwmxr:register.obj - 0001:000262f0 _BrImageFind 004272f0 brfwmxr:loader.obj - 0001:00026327 _BrImageReference 00427327 brfwmxr:loader.obj - 0001:0002638a _BrImageLookupName 0042738a brfwmxr:loader.obj - 0001:0002643a _BrImageLookupOrdinal 0042743a brfwmxr:loader.obj - 0001:00026466 _BrImageDereference 00427466 brfwmxr:loader.obj - 0001:00026496 _BrImageFree 00427496 brfwmxr:loader.obj - 0001:000264e1 __BrImageFree 004274e1 brfwmxr:loader.obj - 0001:00026530 _BrResAllocate 00427530 brfwmxr:resource.obj - 0001:00026654 _BrResFree 00427654 brfwmxr:resource.obj - 0001:00026673 _BrResAdd 00427673 brfwmxr:resource.obj - 0001:000266c3 _BrResRemove 004276c3 brfwmxr:resource.obj - 0001:000266eb _BrResClass 004276eb brfwmxr:resource.obj - 0001:0002670b _BrResSize 0042770b brfwmxr:resource.obj - 0001:0002675f _BrResSizeTotal 0042775f brfwmxr:resource.obj - 0001:0002679f _BrResChildEnum 0042779f brfwmxr:resource.obj - 0001:000267eb _BrResCheck 004277eb brfwmxr:resource.obj - 0001:0002681f _BrResStrDup 0042781f brfwmxr:resource.obj - 0001:00026860 __BrPmMemFill 00427860 brfwmxr:pmmemops.obj - 0001:0002692f __BrPmMemRectangleCopyTo 0042792f brfwmxr:pmmemops.obj - 0001:00026a1f __BrPmMemRectangleCopyFrom 00427a1f brfwmxr:pmmemops.obj - 0001:00026aff __BrPmMemRectangleFill 00427aff brfwmxr:pmmemops.obj - 0001:00026b73 __BrPmMemDirtyRectangleCopy 00427b73 brfwmxr:pmmemops.obj - 0001:00026bb3 __BrPmMemDirtyRectangleFill 00427bb3 brfwmxr:pmmemops.obj - 0001:00026bef __BrPmMemCopy 00427bef brfwmxr:pmmemops.obj - 0001:00026d7a __BrPmMemPixelSet 00427d7a brfwmxr:pmmemops.obj - 0001:00026de2 __BrPmMemPixelGet 00427de2 brfwmxr:pmmemops.obj - 0001:00026e46 __BrPmMemLine 00427e46 brfwmxr:pmmemops.obj - 0001:0002851e __BrPmMemCopyBits 0042951e brfwmxr:pmmemops.obj - 0001:000285a4 __MemCopyBits_A 004295a4 brfwmxr:memloops.obj - 0001:00028994 __MemFill_A 00429994 brfwmxr:memloops.obj - 0001:00028a78 __MemRectFill_A 00429a78 brfwmxr:memloops.obj - 0001:00028ba1 __MemRectCopy_A 00429ba1 brfwmxr:memloops.obj - 0001:00028bf9 __MemCopy_A 00429bf9 brfwmxr:memloops.obj - 0001:00028c3e __MemPixelSet 00429c3e brfwmxr:memloops.obj - 0001:00028c9b __MemPixelGet 00429c9b f brfwmxr:memloops.obj - 0001:00028cf7 __GetSysQual 00429cf7 brfwmxr:memloops.obj - 0001:00028d00 __BrFileFree 00429d00 brfwmxr:file.obj - 0001:00028d1c _BrFileAttributes 00429d1c brfwmxr:file.obj - 0001:00028d2c _BrFileOpenRead 00429d2c brfwmxr:file.obj - 0001:00028d98 _BrFileOpenWrite 00429d98 brfwmxr:file.obj - 0001:00028df8 _BrFileClose 00429df8 brfwmxr:file.obj - 0001:00028e14 _BrFileEof 00429e14 brfwmxr:file.obj - 0001:00028e30 _BrFileGetChar 00429e30 brfwmxr:file.obj - 0001:00028e4c _BrFilePutChar 00429e4c brfwmxr:file.obj - 0001:00028e6c _BrFileRead 00429e6c brfwmxr:file.obj - 0001:00028e98 _BrFileWrite 00429e98 brfwmxr:file.obj - 0001:00028ec4 _BrFileGetLine 00429ec4 brfwmxr:file.obj - 0001:00028eeb _BrFilePutLine 00429eeb brfwmxr:file.obj - 0001:00028f0b _BrFileAdvance 00429f0b brfwmxr:file.obj - 0001:00028f2b _BrFilePrintf 00429f2b brfwmxr:file.obj - 0001:00028f70 _BrMaterialUpdate 00429f70 brfwmxr:prepmatl.obj - 0001:00029b99 PrepareVertices_ 0042ab99 brfwmxr:prepmesh.obj - 0001:0002a0a1 PrepareVerticesFast_ 0042b0a1 brfwmxr:prepmesh.obj - 0001:0002a3d9 PrepareEdges_ 0042b3d9 brfwmxr:prepmesh.obj - 0001:0002a5b8 _BrModelUpdate 0042b5b8 brfwmxr:prepmesh.obj - 0001:0002a7f0 _BrMatrix34Copy 0042b7f0 brfwmxr:matrix34.obj - 0001:0002a844 _BrMatrix34Mul 0042b844 brfwmxr:matrix34.obj - 0001:0002abaf _BrMatrix34Identity 0042bbaf brfwmxr:matrix34.obj - 0001:0002ac0b _BrMatrix34RotateX 0042bc0b brfwmxr:matrix34.obj - 0001:0002ac82 _BrMatrix34RotateY 0042bc82 brfwmxr:matrix34.obj - 0001:0002acf9 _BrMatrix34RotateZ 0042bcf9 brfwmxr:matrix34.obj - 0001:0002ad70 _BrMatrix34Rotate 0042bd70 brfwmxr:matrix34.obj - 0001:0002aeb4 _BrMatrix34Translate 0042beb4 brfwmxr:matrix34.obj - 0001:0002af0c _BrMatrix34Scale 0042bf0c brfwmxr:matrix34.obj - 0001:0002af64 _BrMatrix34ShearX 0042bf64 brfwmxr:matrix34.obj - 0001:0002afbf _BrMatrix34ShearY 0042bfbf brfwmxr:matrix34.obj - 0001:0002b01a _BrMatrix34ShearZ 0042c01a brfwmxr:matrix34.obj - 0001:0002b075 _BrMatrix34Inverse 0042c075 brfwmxr:matrix34.obj - 0001:0002b4c1 _BrMatrix34LPInverse 0042c4c1 brfwmxr:matrix34.obj - 0001:0002b5fd _BrMatrix34LPNormalise 0042c5fd brfwmxr:matrix34.obj - 0001:0002b7a1 _BrMatrix34RollingBall 0042c7a1 brfwmxr:matrix34.obj - 0001:0002b8f9 _BrMatrix34Copy4 0042c8f9 brfwmxr:matrix34.obj - 0001:0002b94d BrMatrix34TApplyFV_ 0042c94d brfwmxr:matrix34.obj - 0001:0002ba39 _BrMatrix34Apply 0042ca39 brfwmxr:matrix34.obj - 0001:0002bb19 _BrMatrix34ApplyP 0042cb19 brfwmxr:matrix34.obj - 0001:0002bc05 _BrMatrix34ApplyV 0042cc05 brfwmxr:matrix34.obj - 0001:0002bce1 _BrMatrix34TApply 0042cce1 brfwmxr:matrix34.obj - 0001:0002be14 _BrMatrix34TApplyP 0042ce14 brfwmxr:matrix34.obj - 0001:0002bef0 _BrMatrix34TApplyV 0042cef0 brfwmxr:matrix34.obj - 0001:0002bfcc _BrMatrix34Pre 0042cfcc brfwmxr:matrix34.obj - 0001:0002bffb _BrMatrix34Post 0042cffb brfwmxr:matrix34.obj - 0001:0002c02a _BrMatrix34PreRotateX 0042d02a brfwmxr:matrix34.obj - 0001:0002c06e _BrMatrix34PostRotateX 0042d06e brfwmxr:matrix34.obj - 0001:0002c0b2 _BrMatrix34PreRotateY 0042d0b2 brfwmxr:matrix34.obj - 0001:0002c0f6 _BrMatrix34PostRotateY 0042d0f6 brfwmxr:matrix34.obj - 0001:0002c13a _BrMatrix34PreRotateZ 0042d13a brfwmxr:matrix34.obj - 0001:0002c17e _BrMatrix34PostRotateZ 0042d17e brfwmxr:matrix34.obj - 0001:0002c1c2 _BrMatrix34PreRotate 0042d1c2 brfwmxr:matrix34.obj - 0001:0002c20a _BrMatrix34PostRotate 0042d20a brfwmxr:matrix34.obj - 0001:0002c252 _BrMatrix34PreTranslate 0042d252 brfwmxr:matrix34.obj - 0001:0002c29d _BrMatrix34PostTranslate 0042d29d brfwmxr:matrix34.obj - 0001:0002c2e8 _BrMatrix34PreScale 0042d2e8 brfwmxr:matrix34.obj - 0001:0002c333 _BrMatrix34PostScale 0042d333 brfwmxr:matrix34.obj - 0001:0002c37e _BrMatrix34PreShearX 0042d37e brfwmxr:matrix34.obj - 0001:0002c3c2 _BrMatrix34PostShearX 0042d3c2 brfwmxr:matrix34.obj - 0001:0002c406 _BrMatrix34PreShearY 0042d406 brfwmxr:matrix34.obj - 0001:0002c44a _BrMatrix34PostShearY 0042d44a brfwmxr:matrix34.obj - 0001:0002c48e _BrMatrix34PreShearZ 0042d48e brfwmxr:matrix34.obj - 0001:0002c4d2 _BrMatrix34PostShearZ 0042d4d2 brfwmxr:matrix34.obj - 0001:0002c520 _BrNewList 0042d520 brfwmxr:brlists.obj - 0001:0002c538 _BrAddHead 0042d538 brfwmxr:brlists.obj - 0001:0002c553 _BrAddTail 0042d553 brfwmxr:brlists.obj - 0001:0002c572 _BrRemHead 0042d572 brfwmxr:brlists.obj - 0001:0002c58e _BrRemTail 0042d58e brfwmxr:brlists.obj - 0001:0002c5aa _BrInsert 0042d5aa brfwmxr:brlists.obj - 0001:0002c5c6 _BrRemove 0042d5c6 brfwmxr:brlists.obj - 0001:0002c5de _BrSimpleNewList 0042d5de brfwmxr:brlists.obj - 0001:0002c5ee _BrSimpleAddHead 0042d5ee brfwmxr:brlists.obj - 0001:0002c60e _BrSimpleRemHead 0042d60e brfwmxr:brlists.obj - 0001:0002c642 _BrSimpleInsert 0042d642 brfwmxr:brlists.obj - 0001:0002c662 _BrSimpleRemove 0042d662 brfwmxr:brlists.obj - 0001:0002c690 _BrMemAllocate 0042d690 brfwmxr:mem.obj - 0001:0002c6c3 _BrMemFree 0042d6c3 brfwmxr:mem.obj - 0001:0002c6db _BrMemInquire 0042d6db brfwmxr:mem.obj - 0001:0002c6f3 _BrMemCalloc 0042d6f3 brfwmxr:mem.obj - 0001:0002c72a _BrMemStrDup 0042d72a brfwmxr:mem.obj - 0001:0002c770 __BrGenericLine 0042d770 brfwmxr:pmgenops.obj - 0001:0002d5ec __BrGenericDoubleBuffer 0042e5ec brfwmxr:pmgenops.obj - 0001:0002d608 __BrGenericMatch 0042e608 brfwmxr:pmgenops.obj - 0001:0002d6ec __BrGenericClone 0042e6ec brfwmxr:pmgenops.obj - 0001:0002d738 __BrGenericFree 0042e738 brfwmxr:pmgenops.obj - 0001:0002d74c __BrGenericDirtyRectangleCopy 0042e74c brfwmxr:pmgenops.obj - 0001:0002d788 __BrGenericDirtyRectangleFill 0042e788 brfwmxr:pmgenops.obj - 0001:0002d7c0 __BrGenericRectangle 0042e7c0 brfwmxr:pmgenops.obj - 0001:0002d860 __BrGenericRectangle2 0042e860 brfwmxr:pmgenops.obj - 0001:0002d8f8 __BrGenericRectangleCopy 0042e8f8 brfwmxr:pmgenops.obj - 0001:0002d8ff __BrGenericCopy 0042e8ff brfwmxr:pmgenops.obj - 0001:0002d910 _BrPixelmapAllocate 0042e910 brfwmxr:pixelmap.obj - 0001:0002da28 _BrPixelmapAllocateSub 0042ea28 brfwmxr:pixelmap.obj - 0001:0002daf0 _BrPixelmapFileSize 0042eaf0 brfwmxr:pixelmap.obj - 0001:0002db07 _BrPixelmapPixelSize 0042eb07 brfwmxr:pixelmap.obj - 0001:0002db1e _BrPixelmapChannels 0042eb1e brfwmxr:pixelmap.obj - 0001:0002db40 _BrScratchAllocate 0042eb40 brfwmxr:scratch.obj - 0001:0002dbbc _BrScratchFree 0042ebbc brfwmxr:scratch.obj - 0001:0002dbcb _BrScratchFlush 0042ebcb brfwmxr:scratch.obj - 0001:0002dc0f _BrScratchInquire 0042ec0f brfwmxr:scratch.obj - 0001:0002dc20 _BrFailure 0042ec20 brfwmxr:diag.obj - 0001:0002dc60 _BrWarning 0042ec60 brfwmxr:diag.obj - 0001:0002dca0 _BrFatal 0042eca0 brfwmxr:diag.obj - 0001:0002dcf0 _BrQsort 0042ecf0 brfwmxr:brqsort.obj - 0001:0002df00 _BrFixedSqrt 0042ef00 brfwmxr:fixed.obj - 0001:0002df34 _BrFixedPow 0042ef34 brfwmxr:fixed.obj - 0001:0002df80 __CHP 0042ef80 f brfwmxr:magicsym.obj - 0001:0002dfa0 _BrPixelmapFree 0042efa0 brfwmxr:pmdsptch.obj - 0001:0002dfc8 _BrPixelmapMatch 0042efc8 brfwmxr:pmdsptch.obj - 0001:0002dff7 _BrPixelmapClone 0042eff7 brfwmxr:pmdsptch.obj - 0001:0002e01f _BrPixelmapFill 0042f01f brfwmxr:pmdsptch.obj - 0001:0002e04b _BrPixelmapRectangle 0042f04b brfwmxr:pmdsptch.obj - 0001:0002e0a3 _BrPixelmapRectangle2 0042f0a3 brfwmxr:pmdsptch.obj - 0001:0002e0fb _BrPixelmapRectangleCopy 0042f0fb brfwmxr:pmdsptch.obj - 0001:0002e456 _BrPixelmapRectangleFill 0042f456 brfwmxr:pmdsptch.obj - 0001:0002e58a _BrPixelmapDirtyRectangleCopy 0042f58a brfwmxr:pmdsptch.obj - 0001:0002e6c1 _BrPixelmapDirtyRectangleClear 0042f6c1 brfwmxr:pmdsptch.obj - 0001:0002e7f5 _BrPixelmapPixelSet 0042f7f5 brfwmxr:pmdsptch.obj - 0001:0002e86d _BrPixelmapPixelGet 0042f86d brfwmxr:pmdsptch.obj - 0001:0002e8f0 _BrPixelmapCopy 0042f8f0 brfwmxr:pmdsptch.obj - 0001:0002e970 _BrPixelmapLine 0042f970 brfwmxr:pmdsptch.obj - 0001:0002ec2c _BrPixelmapDoubleBuffer 0042fc2c brfwmxr:pmdsptch.obj - 0001:0002ec58 _BrPixelmapText 0042fc58 brfwmxr:pmdsptch.obj - 0001:0002eef3 _BrPixelmapTextF 0042fef3 brfwmxr:pmdsptch.obj - 0001:0002ef3b _BrPixelmapTextWidth 0042ff3b brfwmxr:pmdsptch.obj - 0001:0002efbb _BrPixelmapTextHeight 0042ffbb brfwmxr:pmdsptch.obj - 0001:0002efe3 _BrPixelmapCopyBits 0042ffe3 brfwmxr:pmdsptch.obj - 0001:0002f170 ?FCreate@TDF@@SGHPAVCRF@@PAVGL@@PAVSTN@@PAUCKI@@@Z 00430170 f engine:tdf.obj - 0001:0002f7e0 ?Dxr@MODL@@QAEJXZ 004307e0 f engine:tdf.obj - 0001:0002f810 ?Dyr@MODL@@QAEJXZ 00430810 f engine:tdf.obj - 0001:0002f890 ?FWouldBe@MODL@@SGHJ@Z 00430890 f engine:modl.obj - 0001:0002f8d0 ?FIs@MODL@@UAEHJ@Z 004308d0 f engine:modl.obj - 0001:0002f900 ?Cls@MODL@@UAEJXZ 00430900 f engine:modl.obj - 0001:0002f930 ?PmodlNew@MODL@@SGPAV1@JPAUbr_vertex@@JPAUbr_face@@@Z 00430930 f engine:modl.obj - 0001:0002fb10 ?FReadModl@MODL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00430b10 f engine:modl.obj - 0001:0002fd90 ?_FInit@MODL@@IAEHPAVBLCK@@@Z 00430d90 f engine:modl.obj - 0001:000302e0 ?PmodlReadFromDat@MODL@@SGPAV1@PAVFNI@@@Z 004312e0 f engine:modl.obj - 0001:00030550 ??1MODL@@UAE@XZ 00431550 f engine:modl.obj - 0001:000305e0 ?FWrite@MODL@@QAEHPAVCFL@@KK@Z 004315e0 f engine:modl.obj - 0001:00030830 ?AdjustTdfCharacter@MODL@@QAEXXZ 00431830 f engine:modl.obj - 0001:000309b0 ?AssertValid@MODL@@QAEXK@Z 004319b0 f engine:modl.obj - 0001:00030a30 ?MarkMem@MODL@@UAEXXZ 00431a30 f engine:modl.obj - 0001:00030aa0 ??_EMODL@@UAEPAXI@Z 00431aa0 f engine:modl.obj - 0001:00030aa0 ??_GMODL@@UAEPAXI@Z 00431aa0 f engine:modl.obj - 0001:00030bf0 ?BrsHalf@@YGJJ@Z 00431bf0 f engine:modl.obj - 0001:00030c10 ??0MODL@@IAE@XZ 00431c10 f engine:modl.obj - 0001:00030c50 ?Dzr@MODL@@QAEJXZ 00431c50 f engine:modl.obj - 0001:00030cca _fprintf 00431cca f LIBC:fprintf.obj - 0001:00030d00 __alloca_probe 00431d00 LIBC:chkstk.obj - 0001:00030d00 __chkstk 00431d00 LIBC:chkstk.obj - 0001:00030d2d _printf 00431d2d f LIBC:printf.obj - 0001:00030d69 __onexit 00431d69 f LIBC:onexit.obj - 0001:00030ddf _atexit 00431ddf f LIBC:onexit.obj - 0001:00030df1 ___onexitinit 00431df1 f LIBC:onexit.obj - 0001:00030e27 __purecall 00431e27 f LIBC:purevirt.obj - 0001:00030e34 __ftol 00431e34 f LIBC:ftol.obj - 0001:00030e5c _fdiv_main_routine 00431e5c f LIBC:adj_fdiv.obj - 0001:00030f73 __adj_fdiv_r 00431f73 f LIBC:adj_fdiv.obj - 0001:00031412 _fdivp_sti_st 00432412 f LIBC:adj_fdiv.obj - 0001:00031425 _fdivrp_sti_st 00432425 f LIBC:adj_fdiv.obj - 0001:00031438 __adj_fdiv_m32 00432438 f LIBC:adj_fdiv.obj - 0001:00031484 __adj_fdiv_m64 00432484 f LIBC:adj_fdiv.obj - 0001:000314d0 __adj_fdiv_m16i 004324d0 f LIBC:adj_fdiv.obj - 0001:00031504 __adj_fdiv_m32i 00432504 f LIBC:adj_fdiv.obj - 0001:00031538 __adj_fdivr_m32 00432538 f LIBC:adj_fdiv.obj - 0001:00031584 __adj_fdivr_m64 00432584 f LIBC:adj_fdiv.obj - 0001:000315d0 __adj_fdivr_m16i 004325d0 f LIBC:adj_fdiv.obj - 0001:00031604 __adj_fdivr_m32i 00432604 f LIBC:adj_fdiv.obj - 0001:00031638 __safe_fdiv 00432638 f LIBC:adj_fdiv.obj - 0001:0003164d __safe_fdivr 0043264d f LIBC:adj_fdiv.obj - 0001:00031662 __fprem_common 00432662 f LIBC:adj_fdiv.obj - 0001:00031868 __adj_fprem 00432868 f LIBC:adj_fdiv.obj - 0001:0003191a __fprem1_common 0043291a f LIBC:adj_fdiv.obj - 0001:00031b20 __adj_fprem1 00432b20 f LIBC:adj_fdiv.obj - 0001:00031bd5 __safe_fprem 00432bd5 f LIBC:adj_fdiv.obj - 0001:00031bdb __safe_fprem1 00432bdb f LIBC:adj_fdiv.obj - 0001:00031be1 __adj_fpatan 00432be1 f LIBC:adj_fdiv.obj - 0001:00031be4 __adj_fptan 00432be4 f LIBC:adj_fdiv.obj - 0001:00031be7 __fpmath 00432be7 f LIBC:fpinit.obj - 0001:00031bfb __fpclear 00432bfb f LIBC:fpinit.obj - 0001:00031bfc __cfltcvt_init 00432bfc f LIBC:fpinit.obj - 0001:00031c34 _mainCRTStartup 00432c34 f LIBC:crt0.obj - 0001:00031d2d __amsg_exit 00432d2d f LIBC:crt0.obj - 0001:00031d50 _strcmp 00432d50 f LIBC:strcmp.obj - 0001:00031dd4 _strcat 00432dd4 f LIBC:strcat.obj - 0001:00031dd8 _strcpy 00432dd8 LIBC:strcat.obj - 0001:00031e68 _strlen 00432e68 f LIBC:strlen.obj - 0001:00031eb5 _vsprintf 00432eb5 f LIBC:vsprintf.obj - 0001:00031f10 _sqrt 00432f10 LIBC:87csqrt.obj - 0001:00031f1a __CIsqrt 00432f1a LIBC:87csqrt.obj - 0001:00031f24 _memset 00432f24 f LIBC:memset.obj - 0001:00031f66 _sprintf 00432f66 f LIBC:sprintf.obj - 0001:00031fc0 _pow 00432fc0 LIBC:87ctran.obj - 0001:00031fca _log 00432fca LIBC:87ctran.obj - 0001:00031fd4 _log10 00432fd4 LIBC:87ctran.obj - 0001:00031fdb _exp 00432fdb LIBC:87ctran.obj - 0001:00031fe2 __CIpow 00432fe2 LIBC:87ctran.obj - 0001:00031fec __CIlog 00432fec LIBC:87ctran.obj - 0001:00031ff6 __CIlog10 00432ff6 LIBC:87ctran.obj - 0001:00031ffd __CIexp 00432ffd LIBC:87ctran.obj - 0001:00032004 __stbuf 00433004 f LIBC:_sftbuf.obj - 0001:00032085 __ftbuf 00433085 f LIBC:_sftbuf.obj - 0001:000320cb __output 004330cb f LIBC:output.obj - 0001:000329f1 __cinit 004339f1 f LIBC:crt0dat.obj - 0001:00032a21 _exit 00433a21 f LIBC:crt0dat.obj - 0001:00032a32 __exit 00433a32 f LIBC:crt0dat.obj - 0001:00032ae2 _realloc 00433ae2 f LIBC:realloc.obj - 0001:00032c34 __msize 00433c34 f LIBC:msize.obj - 0001:00032c45 _malloc 00433c45 f LIBC:malloc.obj - 0001:00032c58 __nh_malloc 00433c58 f LIBC:malloc.obj - 0001:00032d17 __heap_split_block 00433d17 f LIBC:malloc.obj - 0001:00032d5c __setdefaultprecision 00433d5c f LIBC:fp8.obj - 0001:00032d6f _ms_p5_test_fdiv 00433d6f f LIBC:testfdiv.obj - 0001:00032db5 _ms_p5_mp_test_fdiv 00433db5 f LIBC:testfdiv.obj - 0001:00032e88 __forcdecpt 00433e88 f LIBC:cvt.obj - 0001:00032eed __cropzeros 00433eed f LIBC:cvt.obj - 0001:00032f4c __positive 00433f4c f LIBC:cvt.obj - 0001:00032f61 __fassign 00433f61 f LIBC:cvt.obj - 0001:00032fa4 __cftoe 00433fa4 f LIBC:cvt.obj - 0001:000330f7 __cftof 004340f7 f LIBC:cvt.obj - 0001:00033213 __cftog 00434213 f LIBC:cvt.obj - 0001:000332bb __cfltcvt 004342bb f LIBC:cvt.obj - 0001:00033338 __global_unwind2 00434338 f LIBC:exsup.obj - 0001:0003337a __local_unwind2 0043437a f LIBC:exsup.obj - 0001:000333d4 __abnormal_termination 004343d4 f LIBC:exsup.obj - 0001:000333f7 __XcptFilter 004343f7 f LIBC:winxfltr.obj - 0001:00033582 __setenvp 00434582 f LIBC:stdenvp.obj - 0001:0003364d __setargv 0043464d f LIBC:stdargv.obj - 0001:0003394b __setmbcp 0043494b f LIBC:mbctype.obj - 0001:00033ad9 ___initmbctable 00434ad9 f LIBC:mbctype.obj - 0001:00033ae4 __ioinit 00434ae4 f LIBC:ioinit.obj - 0001:00033bd2 __heap_init 00434bd2 f LIBC:heapinit.obj - 0001:00033c4f ___getempty 00434c4f f LIBC:heapinit.obj - 0001:00033c7c __except_handler3 00434c7c f LIBC:exsup3.obj - 0001:00033d2a __seh_longjmp_unwind@4 00434d2a f LIBC:exsup3.obj - 0001:00033d45 __FF_MSGBANNER 00434d45 f LIBC:crt0msg.obj - 0001:00033d6b __NMSG_WRITE 00434d6b f LIBC:crt0msg.obj - 0001:00033dc3 __flsbuf 00434dc3 f LIBC:_flsbuf.obj - 0001:00033eec __cintrindisp2 00434eec f LIBC:87cdisp.obj - 0001:00033f2a __cintrindisp1 00434f2a f LIBC:87cdisp.obj - 0001:00033f60 __ctrandisp2 00434f60 f LIBC:87cdisp.obj - 0001:000340d1 __ctrandisp1 004350d1 f LIBC:87cdisp.obj - 0001:000340fd __fload 004350fd f LIBC:87cdisp.obj - 0001:0003414d __fFEXP 0043514d LIBC:87tran.obj - 0001:000341b4 __rtinfpopse 004351b4 LIBC:87tran.obj - 0001:000341b6 __rtinfnpopse 004351b6 LIBC:87tran.obj - 0001:000341c6 __fFLN 004351c6 LIBC:87tran.obj - 0001:0003427b __rtinfpop 0043527b LIBC:87tran.obj - 0001:0003427d __rtinfnpop 0043527d LIBC:87tran.obj - 0001:0003429a __ffexpm1 0043529a LIBC:87tran.obj - 0001:00034343 _fflush 00435343 f LIBC:fflush.obj - 0001:0003438f __flush 0043538f f LIBC:fflush.obj - 0001:000343f1 __flushall 004353f1 f LIBC:fflush.obj - 0001:00034466 ___endstdio 00435466 f LIBC:fflush.obj - 0001:0003447a __isatty 0043547a f LIBC:isatty.obj - 0001:00034494 _wctomb 00435494 f LIBC:wctomb.obj - 0001:0003450c __aulldiv 0043550c f LIBC:ulldiv.obj - 0001:0003456c __aullrem 0043556c f LIBC:ullrem.obj - 0001:000345d6 _free 004355d6 f LIBC:free.obj - 0001:0003463e __heap_abort 0043563e f LIBC:hpabort.obj - 0001:00034649 __heap_grow 00435649 f LIBC:heapgrow.obj - 0001:00034732 __heap_grow_region 00435732 f LIBC:heapgrow.obj - 0001:000347df __heap_free_region 004357df f LIBC:heapgrow.obj - 0001:00034819 __heap_search 00435819 f LIBC:heapsrch.obj - 0001:00034909 __control87 00435909 f LIBC:ieee87.obj - 0001:00034944 __controlfp 00435944 f LIBC:ieee87.obj - 0001:00034a7b __fptrap 00435a7b f LIBC:crt0fp.obj - 0001:00034a86 __isctype 00435a86 f LIBC:isctype.obj - 0001:00034b01 _tolower 00435b01 f LIBC:tolower.obj - 0001:00034bcd __ZeroTail 00435bcd f LIBC:intrncvt.obj - 0001:00034c2d __IncMan 00435c2d f LIBC:intrncvt.obj - 0001:00034c8e __RoundMan 00435c8e f LIBC:intrncvt.obj - 0001:00034d2b __CopyMan 00435d2b f LIBC:intrncvt.obj - 0001:00034d48 __FillZeroMan 00435d48 f LIBC:intrncvt.obj - 0001:00034d54 __IsZeroMan 00435d54 f LIBC:intrncvt.obj - 0001:00034d72 __ShrMan 00435d72 f LIBC:intrncvt.obj - 0001:00034e1d __ld12cvt 00435e1d f LIBC:intrncvt.obj - 0001:00034fb9 __ld12tod 00435fb9 f LIBC:intrncvt.obj - 0001:00034fcf __ld12tof 00435fcf f LIBC:intrncvt.obj - 0001:00034fe5 __atodbl 00435fe5 f LIBC:intrncvt.obj - 0001:00035016 __atoflt 00436016 f LIBC:intrncvt.obj - 0001:00035047 __fptostr 00436047 f LIBC:_fptostr.obj - 0001:000350c5 __fltout 004360c5 f LIBC:cfout.obj - 0001:00035128 ___dtold 00436128 f LIBC:cfout.obj - 0001:000351e4 _memmove 004361e4 f LIBC:memmove.obj - 0001:00035332 __write 00436332 f LIBC:write.obj - 0001:000354cb __lseek 004364cb f LIBC:lseek.obj - 0001:00035540 __getbuf 00436540 f LIBC:_getbuf.obj - 0001:0003558c __trandisp1 0043658c f LIBC:87disp.obj - 0001:000355f3 __trandisp2 004365f3 f LIBC:87disp.obj - 0001:0003567f __rttospopde 0043667f LIBC:87disp.obj - 0001:00035684 __rttospop 00436684 LIBC:87disp.obj - 0001:00035686 __rtnospop 00436686 LIBC:87disp.obj - 0001:00035688 __rttosnpop 00436688 LIBC:87disp.obj - 0001:00035689 __rtnospopde 00436689 LIBC:87disp.obj - 0001:00035690 __rtzeropop 00436690 LIBC:87disp.obj - 0001:00035692 __rtzeronpop 00436692 LIBC:87disp.obj - 0001:00035697 __rtonepop 00436697 LIBC:87disp.obj - 0001:00035699 __rtonenpop 00436699 LIBC:87disp.obj - 0001:0003569e __tosnan1 0043669e LIBC:87disp.obj - 0001:000356c9 __nosnan2 004366c9 LIBC:87disp.obj - 0001:000356cb __tosnan2 004366cb LIBC:87disp.obj - 0001:000356f3 __nan2 004366f3 LIBC:87disp.obj - 0001:00035732 __rtindfpop 00436732 LIBC:87disp.obj - 0001:00035734 __rtindfnpop 00436734 LIBC:87disp.obj - 0001:00035745 __rttosnpopde 00436745 LIBC:87disp.obj - 0001:0003574f __rtchsifneg 0043674f LIBC:87disp.obj - 0001:00035756 __87except 00436756 f LIBC:87except.obj - 0001:00035860 __powhlp 00436860 f LIBC:powhlp.obj - 0001:00035a4d __d_inttype 00436a4d f LIBC:powhlp.obj - 0001:00035a9f __commit 00436a9f f LIBC:commit.obj - 0001:00035aec __fcloseall 00436aec f LIBC:closeall.obj - 0001:00035b1d __heap_addblock 00436b1d f LIBC:heapadd.obj - 0001:00035dd4 ___crtGetStringTypeA 00436dd4 f LIBC:aw_str.obj - 0001:00035f4b ___crtLCMapStringA 00436f4b f LIBC:aw_map.obj - 0001:000361aa ___addl 004371aa f LIBC:mantold.obj - 0001:000361cd ___add_12 004371cd f LIBC:mantold.obj - 0001:0003622b ___shl_12 0043722b f LIBC:mantold.obj - 0001:00036269 ___shr_12 00437269 f LIBC:mantold.obj - 0001:0003629c ___mtold12 0043729c f LIBC:mantold.obj - 0001:00036380 ___strgtold12 00437380 f LIBC:strgtold.obj - 0001:000369bf _$I10_OUTPUT 004379bf f LIBC:x10fout.obj - 0001:00036cf5 __dosmaperr 00437cf5 f LIBC:dosmap.obj - 0001:00036d5e __alloc_osfhnd 00437d5e f LIBC:osfinfo.obj - 0001:00036d94 __set_osfhnd 00437d94 f LIBC:osfinfo.obj - 0001:00036dfe __free_osfhnd 00437dfe f LIBC:osfinfo.obj - 0001:00036e6b __get_osfhandle 00437e6b f LIBC:osfinfo.obj - 0001:00036ea3 __handle_qnan1 00437ea3 f LIBC:fpexcept.obj - 0001:00036ef0 __except1 00437ef0 f LIBC:fpexcept.obj - 0001:00036f87 __raise_exc 00437f87 f LIBC:fpexcept.obj - 0001:00037299 __handle_exc 00438299 f LIBC:fpexcept.obj - 0001:000374f1 __umatherr 004384f1 f LIBC:fpexcept.obj - 0001:00037585 __set_errno 00438585 f LIBC:fpexcept.obj - 0001:000375d8 __errcode 004385d8 f LIBC:fpexcept.obj - 0001:0003760e __matherr 0043860e f LIBC:matherr.obj - 0001:00037611 __statfp 00438611 f LIBC:fpctrl.obj - 0001:00037622 __clrfp 00438622 f LIBC:fpctrl.obj - 0001:00037634 __ctrlfp 00438634 f LIBC:fpctrl.obj - 0001:00037664 __set_statfp 00438664 f LIBC:fpctrl.obj - 0001:000376be __set_exp 004386be f LIBC:util.obj - 0001:000376f3 __sptype 004386f3 f LIBC:util.obj - 0001:00037758 __decomp 00438758 f LIBC:util.obj - 0001:00037826 __frnd 00438826 f LIBC:frnd.obj - 0001:0003783b _fclose 0043883b f LIBC:fclose.obj - 0001:00037897 __heap_findaddr 00438897 f LIBC:findaddr.obj - 0001:00037901 _calloc 00438901 f LIBC:calloc.obj - 0001:0003793b ___set_invalid_mb_chars 0043893b f LIBC:setmbval.obj - 0001:0003796c _strncpy 0043896c f LIBC:strncpy.obj - 0001:00037990 ___ld12mul 00438990 f LIBC:tenpow.obj - 0001:00037bd0 ___multtenpow12 00438bd0 f LIBC:tenpow.obj - 0001:00037c45 __close 00438c45 f LIBC:close.obj - 0001:00037cdb __freebuf 00438cdb f LIBC:_freebuf.obj - 0001:00037d14 _RtlUnwind@16 00438d14 kernel32:KERNEL32.dll - 0001:00037d40 _BrStdioOpenRead 00438d40 f bren:stdfile.obj - 0001:00038220 _BrStdioPutLine 00439220 f bren:stdfile.obj - 0001:000395b0 FopRead_BOUNDS_ 0043a5b0 brfwmxr:fileops.obj - 0001:000397bc _BrModelLoadMany 0043a7bc brfwmxr:fileops.obj - 0001:000399bf _BrModelSaveMany 0043a9bf brfwmxr:fileops.obj - 0001:00039a36 _BrActorLoadMany 0043aa36 brfwmxr:fileops.obj - 0001:00039bae _BrActorSaveMany 0043abae brfwmxr:fileops.obj - 0001:00039c16 _BrMaterialLoadMany 0043ac16 brfwmxr:fileops.obj - 0001:00039cfd _BrMaterialSaveMany 0043acfd brfwmxr:fileops.obj - 0001:00039d74 _BrPixelmapLoadMany 0043ad74 brfwmxr:fileops.obj - 0001:00039e24 _BrPixelmapSaveMany 0043ae24 brfwmxr:fileops.obj - 0001:00039eb7 _BrModelLoad 0043aeb7 brfwmxr:fileops.obj - 0001:00039ee3 _BrModelSave 0043aee3 brfwmxr:fileops.obj - 0001:00039efe _BrMaterialLoad 0043aefe brfwmxr:fileops.obj - 0001:00039f2a _BrMaterialSave 0043af2a brfwmxr:fileops.obj - 0001:00039f45 _BrPixelmapLoad 0043af45 brfwmxr:fileops.obj - 0001:00039f71 _BrPixelmapSave 0043af71 brfwmxr:fileops.obj - 0001:00039f8c _BrActorLoad 0043af8c brfwmxr:fileops.obj - 0001:00039fb8 _BrActorSave 0043afb8 brfwmxr:fileops.obj - 0001:00039fe0 _BrActorEnum 0043afe0 brfwmxr:actsupt.obj - 0001:0003a00b _BrActorSearchMany 0043b00b brfwmxr:actsupt.obj - 0001:0003a0a7 _BrActorSearch 0043b0a7 brfwmxr:actsupt.obj - 0001:0003a107 _BrActorAdd 0043b107 brfwmxr:actsupt.obj - 0001:0003a16f _BrActorRemove 0043b16f brfwmxr:actsupt.obj - 0001:0003a1c7 _BrActorRelink 0043b1c7 brfwmxr:actsupt.obj - 0001:0003a24b _BrActorAllocate 0043b24b brfwmxr:actsupt.obj - 0001:0003a392 _BrActorFree 0043b392 brfwmxr:actsupt.obj - 0001:0003a3c1 BrActorToRoot_ 0043b3c1 brfwmxr:actsupt.obj - 0001:0003a425 BrCameraToScreenMatrix4_ 0043b425 brfwmxr:actsupt.obj - 0001:0003a4e5 BrVector3EyeInModel_ 0043b4e5 brfwmxr:actsupt.obj - 0001:0003a535 _BrActorToActorMatrix34 0043b535 brfwmxr:actsupt.obj - 0001:0003a7cd _BrActorToScreenMatrix4 0043b7cd brfwmxr:actsupt.obj - 0001:0003a979 _BrActorToBounds 0043b979 brfwmxr:actsupt.obj - 0001:0003aa25 _BrBoundsToMatrix34 0043ba25 brfwmxr:actsupt.obj - 0001:0003aaf0 SurfacePerScene_ 0043baf0 brfwmxr:surface.obj - 0001:0003afe0 SurfacePerModel_ 0043bfe0 brfwmxr:surface.obj - 0001:0003b2c8 Surface_Null_ 0043c2c8 brfwmxr:surface.obj - 0001:0003b2cf FaceSurface_Null_ 0043c2cf brfwmxr:surface.obj - 0001:0003b2d6 SurfacePerMaterial_ 0043c2d6 brfwmxr:surface.obj - 0001:0003b54a _BrLightEnable 0043c54a brfwmxr:surface.obj - 0001:0003b596 _BrLightDisable 0043c596 brfwmxr:surface.obj - 0001:0003b5c2 _BrClipPlaneEnable 0043c5c2 brfwmxr:surface.obj - 0001:0003b60e _BrClipPlaneDisable 0043c60e brfwmxr:surface.obj - 0001:0003b63a _CopyComponents 0043c63a brfwmxr:surface.obj - 0001:0003b6a0 _BrSceneModelLight 0043c6a0 brfwmxr:prelight.obj - 0001:0003b7f0 DfPush_ 0043c7f0 brfwmxr:datafile.obj - 0001:0003b848 DfPop_ 0043c848 brfwmxr:datafile.obj - 0001:0003b8d8 DfTop_ 0043c8d8 brfwmxr:datafile.obj - 0001:0003b970 DfTopType_ 0043c970 brfwmxr:datafile.obj - 0001:0003cd21 DfStructWriteArray_ 0043dd21 brfwmxr:datafile.obj - 0001:0003cd6d DfStructReadArray_ 0043dd6d brfwmxr:datafile.obj - 0001:0003d097 DfCountSizeText_ 0043e097 brfwmxr:datafile.obj - 0001:0003d6dd DfChunksInterpret_ 0043e6dd brfwmxr:datafile.obj - 0001:0003d7ff DfOpen_ 0043e7ff brfwmxr:datafile.obj - 0001:0003d8b3 DfClose_ 0043e8b3 brfwmxr:datafile.obj - 0001:0003d92f _BrWriteModeSet 0043e92f brfwmxr:datafile.obj - 0001:0003d950 _BrMatrix4Copy 0043e950 brfwmxr:matrix4.obj - 0001:0003d9bc _BrMatrix4Mul 0043e9bc brfwmxr:matrix4.obj - 0001:0003de0c _BrMatrix4Identity 0043ee0c brfwmxr:matrix4.obj - 0001:0003de84 _BrMatrix4Scale 0043ee84 brfwmxr:matrix4.obj - 0001:0003def8 _BrMatrix4Inverse 0043eef8 brfwmxr:matrix4.obj - 0001:0003e027 _BrMatrix4Determinant 0043f027 brfwmxr:matrix4.obj - 0001:0003e177 _BrMatrix4Adjoint 0043f177 brfwmxr:matrix4.obj - 0001:0003e4b3 _BrMatrix4Perspective 0043f4b3 brfwmxr:matrix4.obj - 0001:0003e596 _BrMatrix4Apply 0043f596 brfwmxr:matrix4.obj - 0001:0003e6b9 _BrMatrix4ApplyP 0043f6b9 brfwmxr:matrix4.obj - 0001:0003e804 _BrMatrix4ApplyV 0043f804 brfwmxr:matrix4.obj - 0001:0003e928 _BrMatrix4TApply 0043f928 brfwmxr:matrix4.obj - 0001:0003ea4b _BrMatrix4TApplyP 0043fa4b brfwmxr:matrix4.obj - 0001:0003eb96 _BrMatrix4TApplyV 0043fb96 brfwmxr:matrix4.obj - 0001:0003ecba _BrMatrix4Copy34 0043fcba brfwmxr:matrix4.obj - 0001:0003ed2a _BrMatrix4Pre34 0043fd2a brfwmxr:matrix4.obj - 0001:0003f14c _BrTransformToMatrix34 0044014c brfwmxr:transfrm.obj - 0001:0003f3d8 _BrMatrix34PreTransform 004403d8 brfwmxr:transfrm.obj - 0001:0003f40c _BrMatrix34PostTransform 0044040c brfwmxr:transfrm.obj - 0001:0003f440 _BrMatrix4PreTransform 00440440 brfwmxr:transfrm.obj - 0001:0003f490 _BrMatrix34ToTransform 00440490 brfwmxr:transfrm.obj - 0001:0003f580 _BrTransformToTransform 00440580 brfwmxr:transfrm.obj - 0001:0003f5f0 _LightingFaceColour 004405f0 brfwmxr:light24.obj - 0001:0003f688 _LightingColourCopyMaterial 00440688 brfwmxr:light24.obj - 0001:0003f6cb _LightingColourCopyVertex 004406cb brfwmxr:light24.obj - 0001:0003f6fb _LightingColour 004406fb brfwmxr:light24.obj - 0001:0003f962 LightingColour_Null_ 00440962 brfwmxr:light24.obj - 0001:0003f979 LightingColour_Dirn_ 00440979 brfwmxr:light24.obj - 0001:0003fb79 LightingColour_Point_ 00440b79 brfwmxr:light24.obj - 0001:0003fe8d LightingColour_PointAttn_ 00440e8d brfwmxr:light24.obj - 0001:000401ec LightingColour_Spot_ 004411ec brfwmxr:light24.obj - 0001:00040598 LightingColour_SpotAttn_ 00441598 brfwmxr:light24.obj - 0001:000409b0 _BrEnvironmentSet 004419b0 brfwmxr:envmap.obj - 0001:000409c4 _MapEnvironmentInfinite2D 004419c4 brfwmxr:envmap.obj - 0001:00040ba0 _MapEnvironmentLocal2D 00441ba0 brfwmxr:envmap.obj - 0001:00040df0 _MapFromVertex 00441df0 brfwmxr:envmap.obj - 0001:00040e6b _MapFromVertexOnly 00441e6b brfwmxr:envmap.obj - 0001:00040ee0 _LightingFaceIndex 00441ee0 brfwmxr:light8.obj - 0001:00040f4c _LightingIndexCopyMaterial 00441f4c brfwmxr:light8.obj - 0001:00040f68 _LightingIndexCopyVertex 00441f68 brfwmxr:light8.obj - 0001:00040f98 _LightingIndex 00441f98 brfwmxr:light8.obj - 0001:00041130 LightingIndex_Null_ 00442130 brfwmxr:light8.obj - 0001:0004113c LightingIndex_Dirn_ 0044213c brfwmxr:light8.obj - 0001:00041267 LightingIndex_Point_ 00442267 brfwmxr:light8.obj - 0001:00041493 LightingIndex_PointAttn_ 00442493 brfwmxr:light8.obj - 0001:00041703 LightingIndex_Spot_ 00442703 brfwmxr:light8.obj - 0001:00041987 LightingIndex_SpotAttn_ 00442987 brfwmxr:light8.obj - 0001:00041c70 _LightingColour_1MD 00442c70 brfwmxr:light24o.obj - 0001:00041c90 _LightingColour_1MDT 00442c90 brfwmxr:light24o.obj - 0001:00041d10 _LightingIndex_1MD 00442d10 brfwmxr:light8o.obj - 0001:00041eaf _LightingIndex_1MDT 00442eaf brfwmxr:light8o.obj - 0001:000420b0 _BrSwap32 004430b0 brfwmxr:bswap.obj - 0001:000420e8 _BrSwap16 004430e8 brfwmxr:bswap.obj - 0001:00042110 _BrSwapFloat 00443110 brfwmxr:bswap.obj - 0001:00042168 _BrSwapBlock 00443168 brfwmxr:bswap.obj - 0001:00042350 _BrEulerToMatrix34 00443350 brfwmxr:angles.obj - 0001:00042674 _BrMatrix34ToEuler 00443674 brfwmxr:angles.obj - 0001:000428d3 _BrEulerToMatrix4 004438d3 brfwmxr:angles.obj - 0001:00042903 _BrMatrix4ToEuler 00443903 brfwmxr:angles.obj - 0001:00042932 _BrEulerToQuat 00443932 brfwmxr:angles.obj - 0001:00042bb6 _BrQuatToEuler 00443bb6 brfwmxr:angles.obj - 0001:00042bf0 _BrQuatMul 00443bf0 brfwmxr:quat.obj - 0001:00042d10 _BrQuatNormalise 00443d10 brfwmxr:quat.obj - 0001:00042d88 _BrQuatInvert 00443d88 brfwmxr:quat.obj - 0001:00042db8 _BrQuatSlerp 00443db8 brfwmxr:quat.obj - 0001:00042f88 _BrQuatToMatrix34 00443f88 brfwmxr:quat.obj - 0001:000430b3 _BrMatrix34ToQuat 004440b3 brfwmxr:quat.obj - 0001:0004327f _BrQuatToMatrix4 0044427f brfwmxr:quat.obj - 0001:000432af _BrMatrix4ToQuat 004442af brfwmxr:quat.obj - 0001:000432e0 _BrZbModelRender 004442e0 brzbmxr:zbrendr.obj - 0001:00043840 _BrZbSceneRenderBegin 00444840 brzbmxr:zbrendr.obj - 0001:00043a80 _BrZbSceneRenderAdd 00444a80 brzbmxr:zbrendr.obj - 0001:00043aa0 _BrZbSceneRenderEnd 00444aa0 brzbmxr:zbrendr.obj - 0001:00043aaf _BrZbSceneRender 00444aaf brzbmxr:zbrendr.obj - 0001:00043afa _BrZbSetRenderBoundsCallback 00444afa brzbmxr:zbrendr.obj - 0001:00043b50 ZbFindVisibleFaces_ 00444b50 brzbmxr:zbmesh.obj - 0001:00043e9b ZbFindVisibleFacesPar_ 00444e9b brzbmxr:zbmesh.obj - 0001:000441df ZbTransformVertices_ 004451df brzbmxr:zbmesh.obj - 0001:00044893 _ZbRenderFaceGroup 00445893 brzbmxr:zbmesh.obj - 0001:00044b47 _ZbRenderFaceGroup_FaceI 00445b47 brzbmxr:zbmesh.obj - 0001:00044e23 _ZbRenderFaceGroup_FaceIV 00445e23 brzbmxr:zbmesh.obj - 0001:00045193 _ZbRenderFaceGroup_FaceRGB 00446193 brzbmxr:zbmesh.obj - 0001:0004644e ZbMeshRender_ 0044744e brzbmxr:zbmesh.obj - 0001:0004670a ZbScratchShrink_ 0044770a brzbmxr:zbmesh.obj - 0001:00046710 _PointRenderPFZ2 00447710 brzbmxr:zbmeshp.obj - 0001:000467c8 _PointRenderPFZ4 004477c8 brzbmxr:zbmeshp.obj - 0001:00046ba4 ZbMeshRenderPoints_ 00447ba4 brzbmxr:zbmeshp.obj - 0001:00046e30 _BrZbBegin 00447e30 brzbmxr:zbsetup.obj - 0001:00046ee3 _BrZbEnd 00447ee3 brzbmxr:zbsetup.obj - 0001:00046f07 _TriangleRender_Null 00447f07 brzbmxr:zbsetup.obj - 0001:00046f0e _LineRender_Null 00447f0e brzbmxr:zbsetup.obj - 0001:00046f15 _PointRender_Null 00447f15 brzbmxr:zbsetup.obj - 0001:00047044 ZbBoundingBoxRenderPoints_ 00448044 brzbmxr:bbox.obj - 0001:00047070 ZbBoundingBoxRenderEdges_ 00448070 brzbmxr:bbox.obj - 0001:0004709c ZbBoundingBoxRenderFaces_ 0044809c brzbmxr:bbox.obj - 0001:000470d0 _LineRenderPFZ2I555 004480d0 brzbmxr:zbmeshe.obj - 0001:0004755f _LineRenderPFZ2I888 0044855f brzbmxr:zbmeshe.obj - 0001:000479eb _LineRenderPFZ2I 004489eb brzbmxr:zbmeshe.obj - 0001:00047d5f _LineRenderPFZ4I 00448d5f brzbmxr:zbmeshe.obj - 0001:00048d7a ZbMeshRenderEdges_ 00449d7a brzbmxr:zbmeshe.obj - 0001:00049018 _OSFFVGroupCulled_A 0044a018 brzbmxr:mesh386.obj - 0001:000490d9 _OSFFVGroupCulledLit_A 0044a0d9 brzbmxr:mesh386.obj - 0001:000491c1 _OSCopyModelToScreen_A 0044a1c1 brzbmxr:mesh386.obj - 0001:000492aa _OSTVGroup_A 0044a2aa f brzbmxr:mesh386.obj - 0001:000493c9 _OSTVGroupBC_A 0044a3c9 brzbmxr:mesh386.obj - 0001:0004951c _OSTVGroupLit_A 0044a51c brzbmxr:mesh386.obj - 0001:0004964e _OSTVGroupLitBC_A 0044a64e brzbmxr:mesh386.obj - 0001:00049f46 ZbFaceClip_ 0044af46 brzbmxr:zbclip.obj - 0001:0004a14e ZbTempClip_ 0044b14e brzbmxr:zbclip.obj - 0001:0004a340 _TriangleRenderPIZ2TIP256 0044b340 brzbmxr:persp.obj - 0001:0004b4c6 _TriangleRenderPIZ2TP256 0044c4c6 brzbmxr:persp.obj - 0001:0004c510 _TriangleRenderPIZ2TIP64 0044d510 brzbmxr:persp.obj - 0001:0004d71a _TriangleRenderPIZ2TP64 0044e71a brzbmxr:persp.obj - 0001:0004e7f7 _TriangleRenderPIZ2TP1024 0044f7f7 brzbmxr:persp.obj - 0001:0004f900 _TriangleRenderPIZ2_RGB_888 00450900 brzbmxr:tt24_piz.obj - 0001:0004f921 _RawTriangle_PIZ2_RGB_888 00450921 f brzbmxr:tt24_piz.obj - 0001:0004ffd0 _TriangleRenderPIZ2I_RGB_888 00450fd0 brzbmxr:tt24_piz.obj - 0001:0004fff1 _RawTriangle_PIZ2I_RGB_888 00450ff1 brzbmxr:tt24_piz.obj - 0001:00050cb0 _TriangleRenderPIZ2TIA 00451cb0 brzbmxr:awtm.obj - 0001:00051578 _TriangleRenderPIZ2TA 00452578 brzbmxr:awtm.obj - 0001:00051da8 _TriangleRenderPIZ2TA24 00452da8 brzbmxr:awtm.obj - 0001:00052624 _TriangleRenderPIZ2TA15 00453624 brzbmxr:awtm.obj - 0001:00052e70 _TriangleRenderPIZ2_RGB_555 00453e70 brzbmxr:tt15_piz.obj - 0001:00052e91 _RawTriangle_PIZ2_RGB_555 00453e91 brzbmxr:tt15_piz.obj - 0001:00053510 _TriangleRenderPIZ2I_RGB_555 00454510 f brzbmxr:tt15_piz.obj - 0001:00053531 _RawTriangle_PIZ2I_RGB_555 00454531 brzbmxr:tt15_piz.obj - 0001:0005429c _TriangleRenderPIZ2 0045529c brzbmxr:ti8_piz.obj - 0001:000542bd _RawTriangle_PIZ2 004552bd brzbmxr:ti8_piz.obj - 0001:00054866 _TriangleRenderPIZ2I 00455866 brzbmxr:ti8_piz.obj - 0001:00054887 _RawTriangle_PIZ2I 00455887 brzbmxr:ti8_piz.obj - 0001:00055046 _TriangleRenderPIZ2T 00456046 brzbmxr:ti8_piz.obj - 0001:00055067 _RawTriangle_PIZ2T 00456067 brzbmxr:ti8_piz.obj - 0001:00055b60 _TriangleRenderPIZ2TI 00456b60 brzbmxr:ti8_piz.obj - 0001:00055b81 _RawTriangle_PIZ2TI 00456b81 f brzbmxr:ti8_piz.obj - 0001:00056930 ZbMaterialUpdate_ 00457930 brzbmxr:zbmatl.obj - 0001:00056aa0 _TriangleRenderPIZ2TAD 00457aa0 brzbmxr:decal.obj - 0001:00056ae4 _TriangleRenderPIZ2TIAD 00457ae4 brzbmxr:decal.obj - 0001:00056c18 _ScanLinePIZ2TIP256 00457c18 brzbmxr:pscan.obj - 0001:00056fa6 _ScanLinePIZ2TIP64 00457fa6 f brzbmxr:pscan.obj - 0001:0005734e _ScanLinePIZ2TP256 0045834e brzbmxr:pscan.obj - 0001:00057664 _ScanLinePIZ2TP64 00458664 brzbmxr:pscan.obj - 0001:00057994 _ScanLinePIZ2TP1024 00458994 brzbmxr:pscan.obj - 0001:00057cd8 _SafeFixedMac2Div 00458cd8 f brzbmxr:safediv.obj - 0001:00057d2c _TrapezoidRenderPIZ2TA 00458d2c brzbmxr:piz2tia.obj - 0001:000580ad _TrapezoidRenderPIZ2TIA 004590ad brzbmxr:piz2tia.obj - 0001:000584b5 _TrapezoidRenderPIZ2TA15 004594b5 f brzbmxr:piz2tia.obj - 0001:00058860 _TrapezoidRenderPIZ2TA24 00459860 brzbmxr:piz2tia.obj - 0001:00058c2d _freopen 00459c2d f LIBC:freopen.obj - 0001:00058c63 _fread 00459c63 f LIBC:fread.obj - 0001:00058d9a __fsopen 00459d9a f LIBC:fopen.obj - 0001:00058dbd _fopen 00459dbd f LIBC:fopen.obj - 0001:00058dd0 _getenv 00459dd0 f LIBC:getenv.obj - 0001:00058e5c _strchr 00459e5c f LIBC:strchr.obj - 0001:00058e81 __filbuf 00459e81 f LIBC:_filbuf.obj - 0001:00058f44 _fwrite 00459f44 f LIBC:fwrite.obj - 0001:00059099 _fgets 0045a099 f LIBC:fgets.obj - 0001:000590f4 _fputs 0045a0f4 f LIBC:fputs.obj - 0001:00059146 _fseek 0045a146 f LIBC:fseek.obj - 0001:00059404 _strtol 0045a404 f LIBC:strtol.obj - 0001:0005941b _strtoul 0045a41b f LIBC:strtol.obj - 0001:00059434 _memcmp 0045a434 f LIBC:memcmp.obj - 0001:00059454 _memcpy 0045a454 f LIBC:memcpy.obj - 0001:000595a2 _atof 0045a5a2 f LIBC:atof.obj - 0001:000595fe _fabs 0045a5fe f LIBC:fabs.obj - 0001:000596a8 __openfile 0045a6a8 f LIBC:_open.obj - 0001:00059843 __read 0045a843 f LIBC:read.obj - 0001:00059a3d __getstream 0045aa3d f LIBC:stream.obj - 0001:00059a7a __mbsnbicoll 0045aa7a f LIBC:mbsnbico.obj - 0001:00059c48 ___wtomb_environ 0045ac48 f LIBC:wtombenv.obj - 0001:00059cc7 _ftell 0045acc7 f LIBC:ftell.obj - 0001:00059dff _toupper 0045adff f LIBC:toupper.obj - 0001:00059ecb __fltin 0045aecb f LIBC:cfin.obj - 0001:00059f6c __sopen 0045af6c f LIBC:open.obj - 0001:0005a2b3 ___set_fcntrlcomp 0045b2b3 f LIBC:setfcntr.obj - 0001:0005a319 ___crtCompareStringA 0045b319 f LIBC:aw_cmp.obj - 0001:0005a5e9 ___crtsetenv 0045b5e9 f LIBC:setenv.obj - 0001:0005a8b3 __chsize 0045b8b3 f LIBC:chsize.obj - 0001:0005a9e7 __mbschr 0045b9e7 f LIBC:mbschr.obj - 0001:0005aa68 __strdup 0045ba68 f LIBC:strdup.obj - 0001:0005aa8e __setmode 0045ba8e f LIBC:setmode.obj - 0001:0005ab10 _BrOnScreenCheck 0045bb10 brfwmxr:onscreen.obj - 0002:00000048 ?vcodmUtil@@3VCODM@@A 0045d048 utilglob.obj - 0002:00000060 ?vmutxMem@@3VMUTX@@A 0045d060 utilglob.obj - 0002:00000078 ?vkcdcUtil@@3VKCDC@@A 0045d078 utilglob.obj - 0002:00000088 ?_usac@@3VUSAC@@A 0045d088 utilglob.obj - 0002:000000a0 ?vmutxBase@@3VMUTX@@A 0045d0a0 utilglob.obj - 0002:000000b8 ?vdmglob@@3UDMGLOB@@A 0045d0b8 utilglob.obj - 0002:00000110 ?vsflUtil@@3VSFL@@A 0045d110 utilglob.obj - 0002:00000130 ?vrndUtil@@3VRND@@A 0045d130 utilglob.obj - 0002:00000150 ?_pdoiFirst@@3PAUDOI@@A 0045d150 base.obj - 0002:00000154 ?_pdoiFirstRaw@@3PAUDOI@@A 0045d154 base.obj - 0002:00000168 ?_ers@@3VERS@@A 0045d168 utilerro.obj - 0002:00000290 ?_pmbhFirst@@3PAUMBH@@A 0045d290 utilmem.obj - 0002:000002a8 ?_mpchschsLower@@3QADA 0045d2a8 utilstr.obj - 0002:000003b0 ?_mpchschsUpper@@3QADA 0045d3b0 utilstr.obj - 0002:000005f4 ?_pcflFirst@CFL@@0PAV1@A 0045d5f4 chunk.obj - 0002:00000618 ?_pfilFirst@FIL@@1PAV1@A 0045d618 file.obj - 0002:00000620 ?_mutxList@FIL@@1VMUTX@@A 0045d620 file.obj - 0002:00000648 ?_fniTemp@@3VFNI@@A 0045d648 fniwin.obj - 0002:00000764 _fw 0045d764 brfwmxr:fwsetup.obj - 0002:00001c38 __BrLoadedImages 0045ec38 brfwmxr:loader.obj - 0002:00004f00 _zb 00461f00 brzbmxr:zbsetup.obj - 0002:00005d1c _tsl 00462d1c brzbmxr:persp.obj - 0002:00005d44 _awsl 00462d44 brzbmxr:awtm.obj - 0002:00005dc0 __heap_descpages 00462dc0 - 0002:00005dd0 __heap_regions 00462dd0 - 0002:000060d0 ___onexitend 004630d0 - 0002:000060d4 ___onexitbegin 004630d4 - 0002:000060d8 __acmdln 004630d8 - 0002:000060e0 __bufin 004630e0 - 0003:00000058 ??_7BASE@@6B@ 00465058 tdfmake.obj - 0003:00000070 ??_7KCDC@@6B@ 00465070 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 00465090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004650b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004650c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 00465100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 00465118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 00465138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 00465158 utilstr.obj - 0003:00000180 ??_7GRPB@@6B@ 00465180 groups.obj - 0003:000001b0 ??_7GLB@@6B@ 004651b0 groups.obj - 0003:000001e0 ??_7GL@@6B@ 004651e0 groups.obj - 0003:00000210 ??_7GGB@@6B@ 00465210 groups.obj - 0003:00000240 ??_7GG@@6B@ 00465240 groups.obj - 0003:00000270 ??_7CFL@@6B@ 00465270 chunk.obj - 0003:00000288 ??_7CGE@@6B@ 00465288 chunk.obj - 0003:000002a0 ??_7CODM@@6B@ 004652a0 codec.obj - 0003:000002d0 ??_7BACO@@6B@ 004652d0 crf.obj - 0003:00000300 ??_7CRF@@6B@ 00465300 crf.obj - 0003:00000330 ??_7RCA@@6B@ 00465330 crf.obj - 0003:00000360 ??_7FIL@@6B@ 00465360 file.obj - 0003:00000378 ??_7BLCK@@6B@ 00465378 file.obj - 0003:00000390 ??_7FNI@@6B@ 00465390 fniwin.obj - 0003:000003a8 ??_7FNE@@6B@ 004653a8 fniwin.obj - 0003:000003c0 ??_7MODL@@6B@ 004653c0 engine:modl.obj - 0003:00000400 ___lookuptable 00465400 LIBC:output.obj - 0004:00000020 ?_fEnableWarnings@@3HA 00466020 tdfmake.obj - 0004:00000024 ??_C@_0BE@OKJN@TDF?5Maker?5failed?4?6?6?$AA@ 00466024 tdfmake.obj - 0004:00000038 ??_C@_0BN@JOKH@Couldn?8t?5save?5chunky?5file?4?6?6?$AA@ 00466038 tdfmake.obj - 0004:00000058 ??_C@_0O@FGPG@?$CFs?5?5?9?9?9?$DO?5?5?$CFs?6?$AA@ 00466058 tdfmake.obj - 0004:00000068 ??_C@_0BK@IKMP@Bad?5source?5directory?5?$CFs?6?6?$AA@ 00466068 tdfmake.obj - 0004:00000084 ??_C@_0CN@MNGM@Couldn?8t?5create?5destination?5chun@ 00466084 tdfmake.obj - 0004:000000b4 ??_C@_0BP@EJAN@Bad?5destination?5file?5name?5?$CFs?6?6?$AA@ 004660b4 tdfmake.obj - 0004:000000d4 ??_C@_02DILL@?$CFs?$AA@ 004660d4 tdfmake.obj - 0004:000000d8 ??_C@_0DO@OCPK@Usage?3?6?5?5?5tdfmake?5?$DMfontdir1?$DO?5?$DMfo@ 004660d8 tdfmake.obj - 0004:00000118 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 00466118 tdfmake.obj - 0004:00000154 ??_C@_0BK@JAFK@?6Microsoft?5?$CIR?$CJ?5TDF?5Maker?6?$AA@ 00466154 tdfmake.obj - 0004:00000170 ??_C@_0CF@MAMJ@Added?5a?5nonbreaking?5space?5charac@ 00466170 tdfmake.obj - 0004:00000198 ??_C@_0BJ@FPNB@Added?5a?5space?5character?6?$AA@ 00466198 tdfmake.obj - 0004:000001b4 ??_C@_0BJ@FFEH@Converted?5?$CFd?5characters?6?$AA@ 004661b4 tdfmake.obj - 0004:000001d0 ??_C@_0CF@NAMG@Filename?5must?5include?5a?5number?3?5@ 004661d0 tdfmake.obj - 0004:000001f8 ??_C@_03GOHA@nil?$AA@ 004661f8 tdfmake.obj - 0004:000001fc ??_C@_01BJG@?6?$AA@ 004661fc tdfmake.obj - 0004:00000200 ??_C@_04OFDJ@?3?5?$CFs?$AA@ 00466200 tdfmake.obj - 0004:00000208 ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 00466208 tdfmake.obj - 0004:0000021c ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 0046621c tdfmake.obj - 0004:0000022c ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 0046622c tdfmake.obj - 0004:0000023c ??_C@_05LCJC@?$CF08lx?$AA@ 0046623c tdfmake.obj - 0004:00000244 ??_C@_04JGFO@?$CF04x?$AA@ 00466244 tdfmake.obj - 0004:0000024c ??_C@_04OBKB@?$CF02x?$AA@ 0046624c tdfmake.obj - 0004:00000254 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 00466254 tdfmake.obj - 0004:00000260 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 00466260 tdfmake.obj - 0004:00000270 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 00466270 tdfmake.obj - 0004:00000280 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 00466280 tdfmake.obj - 0004:000002b8 ?vpcodmUtil@@3PAVCODM@@A 004662b8 utilglob.obj - 0004:000002bc ?vpusac@@3PAVUSAC@@A 004662bc utilglob.obj - 0004:000002fc ?vcactSuspendAssertValid@@3JA 004662fc base.obj - 0004:00000300 ?vcactAVSave@@3JA 00466300 base.obj - 0004:00000304 ?vcactAV@@3JA 00466304 base.obj - 0004:00000308 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 00466308 base.obj - 0004:00000320 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 00466320 base.obj - 0004:00000338 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 00466338 base.obj - 0004:00000348 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 00466348 base.obj - 0004:0000035c ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 0046635c base.obj - 0004:00000378 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 00466378 base.obj - 0004:0000038c ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 0046638c base.obj - 0004:000003a4 ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 004663a4 base.obj - 0004:000003b8 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 004663b8 base.obj - 0004:000003d4 ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 004663d4 base.obj - 0004:000003f4 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 004663f4 base.obj - 0004:00000404 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00466404 base.obj - 0004:00000414 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00466414 base.obj - 0004:00000448 ??_C@_0P@NKO@blocks?5overlap?$AA@ 00466448 utilcopy.obj - 0004:00000478 ?vpers@@3PAVERS@@A 00466478 utilerro.obj - 0004:0000047c ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 0046647c utilerro.obj - 0004:000004a4 ??_C@_08GEE@Error?5?$CFd?$AA@ 004664a4 utilerro.obj - 0004:000004d0 ??_C@_084overflow?$AA@ 004664d0 utilint.obj - 0004:000004dc ??_C@_0N@INPL@long?5too?5big?$AA@ 004664dc utilint.obj - 0004:000004ec ??_C@_0P@DFPA@long?5too?5small?$AA@ 004664ec utilint.obj - 0004:000004fc ??_C@_09MGFD@wrong?5bom?$AA@ 004664fc utilint.obj - 0004:00000508 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 00466508 utilint.obj - 0004:00000550 ?vpfnlib@@3P6GJJJ@ZA 00466550 utilmem.obj - 0004:00000554 ?_fInLiberator@@3HA 00466554 utilmem.obj - 0004:00000558 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 00466558 utilmem.obj - 0004:0000057c ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 0046657c utilmem.obj - 0004:00000594 ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 00466594 utilmem.obj - 0004:000005bc ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 004665bc utilmem.obj - 0004:000005e0 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 004665e0 utilmem.obj - 0004:00000600 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00466600 utilmem.obj - 0004:00000614 ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 00466614 utilmem.obj - 0004:00000628 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 00466628 utilmem.obj - 0004:0000063c ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 0046663c utilmem.obj - 0004:00000650 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 00466650 utilmem.obj - 0004:00000668 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 00466668 utilmem.obj - 0004:0000067c ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 0046667c utilmem.obj - 0004:0000068c ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 0046668c utilmem.obj - 0004:000006a0 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004666a0 utilmem.obj - 0004:000006bc ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 004666bc utilmem.obj - 0004:000006d0 ??_C@_08ECDH@wrong?5cb?$AA@ 004666d0 utilmem.obj - 0004:000006dc ??_C@_06BHIL@nil?5pv?$AA@ 004666dc utilmem.obj - 0004:00000708 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 00466708 utilrnd.obj - 0004:00000724 ??_C@_0L@LEMP@_clw?5wrong?$AA@ 00466724 utilrnd.obj - 0004:00000730 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 00466730 utilrnd.obj - 0004:00000740 ??_C@_0L@DINP@wrong?5_clw?$AA@ 00466740 utilrnd.obj - 0004:00000870 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 00466870 utilstr.obj - 0004:00000898 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 00466898 utilstr.obj - 0004:000008c0 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 004668c0 utilstr.obj - 0004:000008d0 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 004668d0 utilstr.obj - 0004:000008e4 ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 004668e4 utilstr.obj - 0004:000008f4 ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 004668f4 utilstr.obj - 0004:00000910 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 00466910 utilstr.obj - 0004:0000092c ??_C@_0M@PFFO@sz?5too?5long?$AA@ 0046692c utilstr.obj - 0004:00000938 ??_C@_07NPFI@bad?5osk?$AA@ 00466938 utilstr.obj - 0004:00000960 ?vcactSuspendCheckPointers@@3JA 00466960 memwin.obj - 0004:00000964 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 00466964 memwin.obj - 0004:00000978 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 00466978 memwin.obj - 0004:0000098c ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 0046698c memwin.obj - 0004:000009a4 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004669a4 memwin.obj - 0004:000009b4 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004669b4 memwin.obj - 0004:000009d8 ??_C@_09BABB@hq?5is?5nil?$AA@ 004669d8 memwin.obj - 0004:000009e4 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004669e4 memwin.obj - 0004:00000a40 ?_pszOom@@3PADA 00466a40 scrcom.obj - 0004:00000a44 ?_pszSyntax@@3PADA 00466a44 scrcom.obj - 0004:00000a48 ?_rgszop@@3QAUSZOP@@A 00466a48 scrcom.obj - 0004:00000c28 ?_rgarop@@3QAUAROP@@A 00466c28 scrcom.obj - 0004:00000e98 ?_rgpszKey@@3QAPADA 00466e98 scrcom.obj - 0004:00000eb8 ?_rgtomeExp@@3QAUTOME@@A 00466eb8 scrcom.obj - 0004:00001118 ?_rgtomeOp@@3QAUTOME@@A 00467118 scrcom.obj - 0004:000011dc ??_C@_08HOLA@Continue?$AA@ 004671dc scrcom.obj - 0004:000011e8 ??_C@_05EABD@Break?$AA@ 004671e8 scrcom.obj - 0004:000011f0 ??_C@_05NNJC@While?$AA@ 004671f0 scrcom.obj - 0004:000011f8 ??_C@_03HPMG@End?$AA@ 004671f8 scrcom.obj - 0004:000011fc ??_C@_04CCEF@Else?$AA@ 004671fc scrcom.obj - 0004:00001204 ??_C@_04CPFE@Elif?$AA@ 00467204 scrcom.obj - 0004:0000120c ??_C@_02BAJ@If?$AA@ 0046720c scrcom.obj - 0004:00001210 ??_C@_04POBJ@Goto?$AA@ 00467210 scrcom.obj - 0004:00001218 ??_C@_06GDJA@IfGoto?$AA@ 00467218 scrcom.obj - 0004:00001220 ??_C@_0L@KPKB@CopySubStr?$AA@ 00467220 scrcom.obj - 0004:0000122c ??_C@_06KDAM@LenStr?$AA@ 0046722c scrcom.obj - 0004:00001234 ??_C@_0L@ICIJ@ConcatStrs?$AA@ 00467234 scrcom.obj - 0004:00001240 ??_C@_08HOLI@StrToNum?$AA@ 00467240 scrcom.obj - 0004:0000124c ??_C@_08PBFD@NumToStr?$AA@ 0046724c scrcom.obj - 0004:00001258 ??_C@_09JFKG@ScaleTime?$AA@ 00467258 scrcom.obj - 0004:00001264 ??_C@_09KOLA@MergeStrs?$AA@ 00467264 scrcom.obj - 0004:00001270 ??_C@_07MHIA@NukeStr?$AA@ 00467270 scrcom.obj - 0004:00001278 ??_C@_07ELLC@MoveStr?$AA@ 00467278 scrcom.obj - 0004:00001280 ??_C@_07PCEE@CopyStr?$AA@ 00467280 scrcom.obj - 0004:00001288 ??_C@_05PFIH@Pause?$AA@ 00467288 scrcom.obj - 0004:00001290 ??_C@_05LKIE@Match?$AA@ 00467290 scrcom.obj - 0004:00001298 ??_C@_08HGHE@NextCard?$AA@ 00467298 scrcom.obj - 0004:000012a4 ??_C@_0M@GGGO@ShuffleList?$AA@ 004672a4 scrcom.obj - 0004:000012b0 ??_C@_07MFK@Shuffle?$AA@ 004672b0 scrcom.obj - 0004:000012b8 ??_C@_09CAHB@SetReturn?$AA@ 004672b8 scrcom.obj - 0004:000012c4 ??_C@_06JCBD@Return?$AA@ 004672c4 scrcom.obj - 0004:000012cc ??_C@_04LKDK@Exit?$AA@ 004672cc scrcom.obj - 0004:000012d4 ??_C@_02DNIN@Go?$AA@ 004672d4 scrcom.obj - 0004:000012d8 ??_C@_04HAFI@GoNz?$AA@ 004672d8 scrcom.obj - 0004:000012e0 ??_C@_03JNBL@GoZ?$AA@ 004672e0 scrcom.obj - 0004:000012e4 ??_C@_04PFCA@GoLe?$AA@ 004672e4 scrcom.obj - 0004:000012ec ??_C@_04HLIL@GoGe?$AA@ 004672ec scrcom.obj - 0004:000012f4 ??_C@_04PGMH@GoLt?$AA@ 004672f4 scrcom.obj - 0004:000012fc ??_C@_04HIGM@GoGt?$AA@ 004672fc scrcom.obj - 0004:00001304 ??_C@_04NIHF@GoNe?$AA@ 00467304 scrcom.obj - 0004:0000130c ??_C@_04FFPC@GoEq?$AA@ 0046730c scrcom.obj - 0004:00001314 ??_C@_06ININ@Select?$AA@ 00467314 scrcom.obj - 0004:0000131c ??_C@_07KEJC@RndList?$AA@ 0046731c scrcom.obj - 0004:00001324 ??_C@_07OONJ@PopList?$AA@ 00467324 scrcom.obj - 0004:0000132c ??_C@_07GBJG@DupList?$AA@ 0046732c scrcom.obj - 0004:00001334 ??_C@_03JCDI@Rev?$AA@ 00467334 scrcom.obj - 0004:00001338 ??_C@_03FPBH@Rot?$AA@ 00467338 scrcom.obj - 0004:0000133c ??_C@_04BCL@Swap?$AA@ 0046733c scrcom.obj - 0004:00001344 ??_C@_03FBGG@Pop?$AA@ 00467344 scrcom.obj - 0004:00001348 ??_C@_03MKPO@Dup?$AA@ 00467348 scrcom.obj - 0004:0000134c ??_C@_02LCLA@Le?$AA@ 0046734c scrcom.obj - 0004:00001350 ??_C@_02DMBL@Ge?$AA@ 00467350 scrcom.obj - 0004:00001354 ??_C@_02LBFH@Lt?$AA@ 00467354 scrcom.obj - 0004:00001358 ??_C@_02DPPM@Gt?$AA@ 00467358 scrcom.obj - 0004:0000135c ??_C@_02JPOF@Ne?$AA@ 0046735c scrcom.obj - 0004:00001360 ??_C@_02BCGC@Eq?$AA@ 00467360 scrcom.obj - 0004:00001364 ??_C@_04ENMP@LNot?$AA@ 00467364 scrcom.obj - 0004:0000136c ??_C@_04HPKA@LXor?$AA@ 0046736c scrcom.obj - 0004:00001374 ??_C@_04LILD@BNot?$AA@ 00467374 scrcom.obj - 0004:0000137c ??_C@_04IKNM@BXor?$AA@ 0046737c scrcom.obj - 0004:00001384 ??_C@_03FEFN@BOr?$AA@ 00467384 scrcom.obj - 0004:00001388 ??_C@_04CJLN@BAnd?$AA@ 00467388 scrcom.obj - 0004:00001390 ??_C@_06NIPH@MulDiv?$AA@ 00467390 scrcom.obj - 0004:00001398 ??_C@_03OAMN@Rnd?$AA@ 00467398 scrcom.obj - 0004:0000139c ??_C@_03PGJO@Dec?$AA@ 0046739c scrcom.obj - 0004:000013a0 ??_C@_03PCMM@Inc?$AA@ 004673a0 scrcom.obj - 0004:000013a4 ??_C@_03GIFK@Neg?$AA@ 004673a4 scrcom.obj - 0004:000013a8 ??_C@_03CEPH@Abs?$AA@ 004673a8 scrcom.obj - 0004:000013ac ??_C@_03PJNJ@Mod?$AA@ 004673ac scrcom.obj - 0004:000013b0 ??_C@_03LANL@Div?$AA@ 004673b0 scrcom.obj - 0004:000013b4 ??_C@_03FPMJ@Mul?$AA@ 004673b4 scrcom.obj - 0004:000013b8 ??_C@_03KJKL@Sub?$AA@ 004673b8 scrcom.obj - 0004:000013bc ??_C@_03KPJN@Add?$AA@ 004673bc scrcom.obj - 0004:000013c0 ??_C@_0N@GABD@Syntax?5error?$AA@ 004673c0 scrcom.obj - 0004:000013d0 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 004673d0 scrcom.obj - 0004:00001400 ?_szPoundLine@@3QADA 00467400 lex.obj - 0004:00001408 ?_mpchgrfct@LEXB@@1QAGA 00467408 lex.obj - 0004:00001508 ?_rgtt@@3QAFA 00467508 lex.obj - 0004:000015c8 ?_rgttDouble@@3QAFA 004675c8 lex.obj - 0004:00001678 ?_rgttEqual@@3QAFA 00467678 lex.obj - 0004:00001750 ??_C@_0P@JECG@negative?5sizes?$AA@ 00467750 groups.obj - 0004:00001760 ??_C@_06JFMK@bad?5cb?$AA@ 00467760 groups.obj - 0004:00001768 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00467768 groups.obj - 0004:00001778 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00467778 groups.obj - 0004:0000178c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 0046778c groups.obj - 0004:000017a0 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 004677a0 groups.obj - 0004:000017bc ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 004677bc groups.obj - 0004:000017d8 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 004677d8 groups.obj - 0004:000017f0 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 004677f0 groups.obj - 0004:00001818 ??_C@_08OO@wrong?5bo?$AA@ 00467818 groups.obj - 0004:00001824 ??_C@_06NHBD@bad?5bo?$AA@ 00467824 groups.obj - 0004:0000182c ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 0046782c groups.obj - 0004:00001848 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 00467848 groups.obj - 0004:00001874 ??_C@_07PIIM@bad?5loc?$AA@ 00467874 groups.obj - 0004:0000187c ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 0046787c groups.obj - 0004:000018a0 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004678a0 groups.obj - 0004:000018c0 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004678c0 groups.obj - 0004:000018e0 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 004678e0 groups.obj - 0004:000018f0 ??_C@_05HCAE@oops?$CB?$AA@ 004678f0 groups.obj - 0004:000018f8 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 004678f8 groups.obj - 0004:00001908 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 00467908 groups.obj - 0004:0000191c ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 0046791c groups.obj - 0004:00001934 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 00467934 groups.obj - 0004:0000195c ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 0046795c groups.obj - 0004:00001970 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 00467970 groups.obj - 0004:00001984 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 00467984 groups.obj - 0004:00001998 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 00467998 groups.obj - 0004:000019b0 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 004679b0 groups.obj - 0004:000019c8 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 004679c8 groups.obj - 0004:000019e0 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 004679e0 groups.obj - 0004:00001a58 ?_rtiLast@CFL@@0JA 00467a58 chunk.obj - 0004:00001a5c ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 00467a5c chunk.obj - 0004:00001a7c ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 00467a7c chunk.obj - 0004:00001a94 ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 00467a94 chunk.obj - 0004:00001aa4 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 00467aa4 chunk.obj - 0004:00001ac8 ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 00467ac8 chunk.obj - 0004:00001adc ??_C@_08EHFM@Bad?5RTIE?$AA@ 00467adc chunk.obj - 0004:00001ae8 ??_C@_09HBDJ@bad?5index?$AA@ 00467ae8 chunk.obj - 0004:00001af4 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 00467af4 chunk.obj - 0004:00001b14 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 00467b14 chunk.obj - 0004:00001b28 ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 00467b28 chunk.obj - 0004:00001b38 ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 00467b38 chunk.obj - 0004:00001b48 ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 00467b48 chunk.obj - 0004:00001b64 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 00467b64 chunk.obj - 0004:00001b80 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 00467b80 chunk.obj - 0004:00001b98 ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 00467b98 chunk.obj - 0004:00001bbc ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 00467bbc chunk.obj - 0004:00001bd8 ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 00467bd8 chunk.obj - 0004:00001bec ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 00467bec chunk.obj - 0004:00001c00 ??_C@_06CFJE@bad?5fp?$AA@ 00467c00 chunk.obj - 0004:00001c08 ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 00467c08 chunk.obj - 0004:00001c1c ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 00467c1c chunk.obj - 0004:00001c2c ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 00467c2c chunk.obj - 0004:00001c38 ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 00467c38 chunk.obj - 0004:00001c5c ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 00467c5c chunk.obj - 0004:00001c74 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 00467c74 chunk.obj - 0004:00001c8c ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 00467c8c chunk.obj - 0004:00001ca4 ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 00467ca4 chunk.obj - 0004:00001cc4 ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 00467cc4 chunk.obj - 0004:00001cd4 ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 00467cd4 chunk.obj - 0004:00001cf8 ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 00467cf8 chunk.obj - 0004:00001d24 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 00467d24 chunk.obj - 0004:00001d3c ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 00467d3c chunk.obj - 0004:00001d54 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 00467d54 chunk.obj - 0004:00001d64 ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 00467d64 chunk.obj - 0004:00001d9c ??_C@_03JFP@MIA?$AA@ 00467d9c chunk.obj - 0004:00001da0 ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 00467da0 chunk.obj - 0004:00001dc4 ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 00467dc4 chunk.obj - 0004:00001dd4 ??_C@_07NFMH@overlap?$AA@ 00467dd4 chunk.obj - 0004:00001ddc ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 00467ddc chunk.obj - 0004:00001de8 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 00467de8 chunk.obj - 0004:00001e10 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 00467e10 chunk.obj - 0004:00001e1c ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 00467e1c chunk.obj - 0004:00001e28 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 00467e28 chunk.obj - 0004:00001e3c ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 00467e3c chunk.obj - 0004:00001e68 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 00467e68 chunk.obj - 0004:00001e78 ??_C@_07BDGM@bad?5crp?$AA@ 00467e78 chunk.obj - 0004:00001e80 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 00467e80 chunk.obj - 0004:00001eb0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 00467eb0 codec.obj - 0004:00001ed0 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 00467ed0 codec.obj - 0004:00001ee8 ??_C@_08DJLA@nil?5cfmt?$AA@ 00467ee8 codec.obj - 0004:00001ef4 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 00467ef4 codec.obj - 0004:00001f14 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 00467f14 codec.obj - 0004:00001f50 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00467f50 codkauai.obj - 0004:00001f74 ??_C@_07DEPO@bad?5len?$AA@ 00467f74 codkauai.obj - 0004:00001f7c ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 00467f7c codkauai.obj - 0004:00001f8c ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 00467f8c codkauai.obj - 0004:00001fb0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 00467fb0 codkauai.obj - 0004:00001fc4 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 00467fc4 codkauai.obj - 0004:00001fd8 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 00467fd8 codkauai.obj - 0004:00001ff4 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 00467ff4 codkauai.obj - 0004:00002024 ??_C@_0P@KAFA@still?5attached?$AA@ 00468024 crf.obj - 0004:00002034 ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 00468034 crf.obj - 0004:00002048 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 00468048 crf.obj - 0004:00002064 ??_C@_0CB@ILAK@someone?5still?5refers?5to?5this?5CRF@ 00468064 crf.obj - 0004:00002088 ??_C@_0BD@BILB@BACO?5not?5attached?$CB?$AA@ 00468088 crf.obj - 0004:0000209c ??_C@_0BF@MMHE@how?5did?5this?5happen?$DP?$AA@ 0046809c crf.obj - 0004:000020b4 ??_C@_0P@DLJO@crep?5too?5small?$AA@ 004680b4 crf.obj - 0004:000020c4 ??_C@_0L@BDOO@bad?5pfnrpo?$AA@ 004680c4 crf.obj - 0004:000020d0 ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 004680d0 crf.obj - 0004:000020f0 ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 004680f0 crf.obj - 0004:0000210c ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 0046810c crf.obj - 0004:00002128 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 00468128 crf.obj - 0004:00002144 ??_C@_0CA@FCHL@baco?5claims?5to?5not?5be?5attached?$CB?$AA@ 00468144 crf.obj - 0004:00002184 ?vftgCreator@FIL@@2JA 00468184 file.obj - 0004:00002188 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00468188 file.obj - 0004:0000219c ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 0046819c file.obj - 0004:000021b0 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 004681b0 file.obj - 0004:000021c4 ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 004681c4 file.obj - 0004:000021dc ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 004681dc file.obj - 0004:000021f4 ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 004681f4 file.obj - 0004:0000220c ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 0046820c file.obj - 0004:00002224 ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 00468224 file.obj - 0004:00002238 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 00468238 file.obj - 0004:00002250 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 00468250 file.obj - 0004:00002264 ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 00468264 file.obj - 0004:00002278 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 00468278 file.obj - 0004:0000228c ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 0046828c file.obj - 0004:000022a0 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 004682a0 file.obj - 0004:000022bc ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 004682bc file.obj - 0004:000022d4 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 004682d4 file.obj - 0004:000022f0 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 004682f0 file.obj - 0004:00002310 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 00468310 file.obj - 0004:00002358 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 00468358 filewin.obj - 0004:00002374 ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 00468374 filewin.obj - 0004:00002390 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 00468390 filewin.obj - 0004:000023b0 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 004683b0 filewin.obj - 0004:000023c0 ??_C@_0P@DBGM@rename?5failure?$AA@ 004683c0 filewin.obj - 0004:000023d0 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 004683d0 filewin.obj - 0004:00002400 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 00468400 filewin.obj - 0004:00002434 ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 00468434 filewin.obj - 0004:00002480 ?vftgTemp@@3JA 00468480 fniwin.obj - 0004:00002488 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00468488 fniwin.obj - 0004:00002494 ??_C@_04POLC@?$CFc?3?2?$AA@ 00468494 fniwin.obj - 0004:0000249c ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 0046849c fniwin.obj - 0004:000024b4 ??_C@_07JFJJ@Bad?5FTG?$AA@ 004684b4 fniwin.obj - 0004:000024bc ??_C@_07NLCI@bad?5fni?$AA@ 004684bc fniwin.obj - 0004:000024c4 ??_C@_0N@NEA@file?5is?5open?$AA@ 004684c4 fniwin.obj - 0004:000024d4 ??_C@_02OOND@?4?4?$AA@ 004684d4 fniwin.obj - 0004:000024d8 ??_C@_0BC@IKJG@expected?5filename?$AA@ 004684d8 fniwin.obj - 0004:000024ec ??_C@_0BA@CKAI@unexpected?5file?$AA@ 004684ec fniwin.obj - 0004:000024fc ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 004684fc fniwin.obj - 0004:00002510 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 00468510 fniwin.obj - 0004:00002528 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 00468528 fniwin.obj - 0004:00002538 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 00468538 fniwin.obj - 0004:00002548 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 00468548 fniwin.obj - 0004:0000255c ??_C@_01FDHG@?$CK?$AA@ 0046855c fniwin.obj - 0004:00002560 ??_C@_0CB@CEDB@How?5did?5we?5fall?5through?5to?5here?$DP@ 00468560 fniwin.obj - 0004:00002584 ??_C@_01PJCK@?4?$AA@ 00468584 fniwin.obj - 0004:00002588 ??_C@_0CJ@IFJA@must?5initialize?5the?5FNE?5before?5u@ 00468588 fniwin.obj - 0004:000025b4 ??_C@_0O@BKPH@wrong?5_prgftg?$AA@ 004685b4 fniwin.obj - 0004:000027a4 _sin_table 004687a4 brfwmxr:fixed386.obj - 0004:00002824 _cos_table 00468824 brfwmxr:fixed386.obj - 0004:00002a28 _arcsin_table 00468a28 brfwmxr:fixed386.obj - 0004:00002c2a _arccos_table 00468c2a brfwmxr:fixed386.obj - 0004:00003660 __BrDefaultModel 00469660 brfwmxr:def_mdl.obj - 0004:00003770 __BrMemoryDevice 00469770 brfwmxr:pmmemops.obj - 0004:0000378c __BrMemoryContext 0046978c brfwmxr:pmmemops.obj - 0004:00003898 __BrDefaultMaterial 00469898 brfwmxr:def_mat.obj - 0004:000039b8 __br_scratch_string 004699b8 brfwmxr:scrstr.obj - 0004:00003c20 __FontFixed3x5 00469c20 brfwmxr:fnt3x5.obj - 0004:00004234 __reciprocal 0046a234 brfwmxr:fixed.obj - 0004:00006240 __8087 0046c240 brfwmxr:magicsym.obj - 0004:00006244 __init_387_emulator 0046c244 brfwmxr:magicsym.obj - 0004:00006248 _fltused_ 0046c248 brfwmxr:magicsym.obj - 0004:000062c4 ??_C@_09LMPA@bad?5MODL?$CB?$AA@ 0046c2c4 engine:modl.obj - 0004:000062d0 ??_C@_0BG@OAHM@no?5room?5for?5pmodl?5ptr?$AA@ 0046c2d0 engine:modl.obj - 0004:000062e8 ??_C@_0BD@MHOE@model?5save?5failed?4?$AA@ 0046c2e8 engine:modl.obj - 0004:000062fc ??_C@_0BE@ONEG@Bad?5MODL?5identifier?$AA@ 0046c2fc engine:modl.obj - 0004:00006310 __iob 0046c310 LIBC:_file.obj - 0004:00006590 __lastiob 0046c590 LIBC:_file.obj - 0004:000066f4 __fltused 0046c6f4 LIBC:fpinit.obj - 0004:000066f8 __ldused 0046c6f8 LIBC:fpinit.obj - 0004:000066fc ___fastflag 0046c6fc LIBC:fpinit.obj - 0004:00006700 __adjust_fdiv 0046c700 LIBC:fpinit.obj - 0004:00006704 __FPinit 0046c704 LIBC:fpinit.obj - 0004:00006708 __FPmtinit 0046c708 LIBC:fpinit.obj - 0004:0000670c __FPmtterm 0046c70c LIBC:fpinit.obj - 0004:00006710 __aenvptr 0046c710 LIBC:crt0.obj - 0004:00006714 __wenvptr 0046c714 LIBC:crt0.obj - 0004:00006718 __aexit_rtn 0046c718 LIBC:crt0.obj - 0004:00006720 __stdbuf 0046c720 LIBC:_sftbuf.obj - 0004:00006730 ___nullstring 0046c730 LIBC:output.obj - 0004:00006744 ___wnullstring 0046c744 LIBC:output.obj - 0004:00006748 _errno 0046c748 LIBC:crt0dat.obj - 0004:0000674c __doserrno 0046c74c LIBC:crt0dat.obj - 0004:00006750 __umaskval 0046c750 LIBC:crt0dat.obj - 0004:00006754 __osver 0046c754 LIBC:crt0dat.obj - 0004:00006758 __winver 0046c758 LIBC:crt0dat.obj - 0004:0000675c __winmajor 0046c75c LIBC:crt0dat.obj - 0004:00006760 __winminor 0046c760 LIBC:crt0dat.obj - 0004:00006764 ___argc 0046c764 LIBC:crt0dat.obj - 0004:00006768 ___argv 0046c768 LIBC:crt0dat.obj - 0004:0000676c ___wargv 0046c76c LIBC:crt0dat.obj - 0004:00006770 __environ 0046c770 LIBC:crt0dat.obj - 0004:00006774 ___initenv 0046c774 LIBC:crt0dat.obj - 0004:00006778 __wenviron 0046c778 LIBC:crt0dat.obj - 0004:0000677c ___winitenv 0046c77c LIBC:crt0dat.obj - 0004:00006780 __pgmptr 0046c780 LIBC:crt0dat.obj - 0004:00006784 __wpgmptr 0046c784 LIBC:crt0dat.obj - 0004:00006788 __exitflag 0046c788 LIBC:crt0dat.obj - 0004:0000678c __C_Termination_Done 0046c78c LIBC:crt0dat.obj - 0004:00006790 __pnhHeap 0046c790 LIBC:malloc.obj - 0004:000067f8 __cfltcvt_tab 0046c7f8 LIBC:cmiscdat.obj - 0004:00006828 __XcptActTab 0046c828 LIBC:winxfltr.obj - 0004:000068a0 __First_FPE_Indx 0046c8a0 LIBC:winxfltr.obj - 0004:000068a4 __Num_FPE 0046c8a4 LIBC:winxfltr.obj - 0004:000068a8 __XcptActTabCount 0046c8a8 LIBC:winxfltr.obj - 0004:000068ac __fpecode 0046c8ac LIBC:winxfltr.obj - 0004:000068b0 __pxcptinfoptrs 0046c8b0 LIBC:winxfltr.obj - 0004:000068b8 __mbctype 0046c8b8 LIBC:mbctype.obj - 0004:000069bc ___mbcodepage 0046c9bc LIBC:mbctype.obj - 0004:000069c0 ___mblcid 0046c9c0 LIBC:mbctype.obj - 0004:000069c8 ___mbulinfo 0046c9c8 LIBC:mbctype.obj - 0004:00006ad0 __nhandle 0046cad0 LIBC:ioinit.obj - 0004:00006ad8 __osfile 0046cad8 LIBC:ioinit.obj - 0004:00006b18 __osfhnd 0046cb18 LIBC:ioinit.obj - 0004:00006c18 __pipech 0046cc18 LIBC:ioinit.obj - 0004:00006c58 __heap_desc 0046cc58 LIBC:heapinit.obj - 0004:00006c6c __heap_resetsize 0046cc6c LIBC:heapinit.obj - 0004:00006c70 __amblksiz 0046cc70 LIBC:heapinit.obj - 0004:00006c74 __heap_regionsize 0046cc74 LIBC:heapinit.obj - 0004:00006c78 __heap_maxregsize 0046cc78 LIBC:heapinit.obj - 0004:00006ee8 __adbgmsg 0046cee8 LIBC:crt0msg.obj - 0004:00006eec __OP_SQRTjmptab 0046ceec LIBC:87sqrt.obj - 0004:00006f0c __infinity 0046cf0c LIBC:87tran.obj - 0004:00006f16 __minfinity 0046cf16 LIBC:87tran.obj - 0004:00006f20 __logemax 0046cf20 LIBC:87tran.obj - 0004:00006f50 __OP_POWjmptab 0046cf50 LIBC:87tran.obj - 0004:00006fa0 __OP_LOG10jmptab 0046cfa0 LIBC:87tran.obj - 0004:00006fc0 __OP_LOGjmptab 0046cfc0 LIBC:87tran.obj - 0004:00006fe0 __OP_EXPjmptab 0046cfe0 LIBC:87tran.obj - 0004:00007000 __cflush 0046d000 LIBC:fflush.obj - 0004:00007008 __pctype 0046d008 LIBC:ctype.obj - 0004:0000700c __pwctype 0046d00c LIBC:ctype.obj - 0004:00007010 __ctype 0046d010 LIBC:ctype.obj - 0004:00007214 __newmode 0046d214 LIBC:_newmode.obj - 0004:00007218 ___mb_cur_max 0046d218 LIBC:nlsdata1.obj - 0004:00007220 ___decimal_point 0046d220 LIBC:nlsdata1.obj - 0004:00007224 ___decimal_point_length 0046d224 LIBC:nlsdata1.obj - 0004:00007258 __indefinite 0046d258 LIBC:87disp.obj - 0004:00007262 __piby2 0046d262 LIBC:87disp.obj - 0004:00007274 __cpower 0046d274 LIBC:87disp.obj - 0004:00007288 ___lc_handle 0046d288 LIBC:nlsdata2.obj - 0004:000072a0 ___lc_codepage 0046d2a0 LIBC:nlsdata2.obj - 0004:0000765c __matherr_flag 0046d65c LIBC:matherr.obj - 0004:00007680 __d_inf 0046d680 LIBC:util.obj - 0004:00007688 __d_ind 0046d688 LIBC:util.obj - 0004:00007690 __d_max 0046d690 LIBC:util.obj - 0004:00007698 __d_min 0046d698 LIBC:util.obj - 0004:000076a0 __d_mzero 0046d6a0 LIBC:util.obj - 0004:000076a8 ___invalid_mb_chars 0046d6a8 LIBC:setmbval.obj - 0004:000076b0 __pow10pos 0046d6b0 LIBC:constpow.obj - 0004:00007810 __pow10neg 0046d810 LIBC:constpow.obj - 0004:00007970 _BrStdioFilesystem 0046d970 bren:stdfile.obj - 0004:000079a4 __BrDefaultFilesystem 0046d9a4 bren:stdfile.obj - 0004:000079a8 ??_C@_0M@FGJC@Standard?5IO?$AA@ 0046d9a8 bren:stdfile.obj - 0004:000079b4 ??_C@_0CI@EKNG@BrStdFileOpenRead?3?5invalid?5open_@ 0046d9b4 bren:stdfile.obj - 0004:000079dc ??_C@_02MMAH@rt?$AA@ 0046d9dc bren:stdfile.obj - 0004:000079e0 ??_C@_0N@OGCO@BRENDER_PATH?$AA@ 0046d9e0 bren:stdfile.obj - 0004:000079f0 ??_C@_02JKAF@rb?$AA@ 0046d9f0 bren:stdfile.obj - 0004:000079f4 ??_C@_02NGAF@wb?$AA@ 0046d9f4 bren:stdfile.obj - 0004:000079f8 ??_C@_02IAAH@wt?$AA@ 0046d9f8 bren:stdfile.obj - 0004:00007a00 _BrStdioDiagHandler 0046da00 bren:stderr.obj - 0004:00007a0c __BrDefaultDiagHandler 0046da0c bren:stderr.obj - 0004:00007a10 ??_C@_0BC@DONA@Stdio?5DiagHandler?$AA@ 0046da10 bren:stderr.obj - 0004:00007a24 ??_C@_0BA@NGPO@BRender?5Warning?$AA@ 0046da24 bren:stderr.obj - 0004:00007a34 ??_C@_0BE@CABL@BRender?5Fatal?5Error?$AA@ 0046da34 bren:stderr.obj - 0004:00007a50 _BrStdlibAllocator 0046da50 bren:stdmem.obj - 0004:00007a60 __BrDefaultAllocator 0046da60 bren:stdmem.obj - 0004:00007a64 ??_C@_06OCBH@malloc?$AA@ 0046da64 bren:stdmem.obj - 0004:000088f0 __BrFilePrimsNull 0046e8f0 brfwmxr:datafile.obj - 0004:00008aa7 __CombineTransforms 0046eaa7 brfwmxr:transfrm.obj - 0004:00009640 _cutoff 0046f640 brzbmxr:persp.obj - 0004:00009644 _PerspCheat 0046f644 brzbmxr:persp.obj - 0004:000096bc _Orig 0046f6bc brzbmxr:awtm.obj - 0004:00009864 __commode 0046f864 LIBC:ncommode.obj - 0004:00009868 ___fcntrlcomp 0046f868 LIBC:setfcntr.obj - 0004:000098cc __fmode 0046f8cc LIBC:txtmode.obj - 0004:00009904 ___xc_a 0046f904 LIBC:crt0init.obj - 0004:00009970 ___xc_z 0046f970 LIBC:crt0init.obj - 0004:00009974 ___xi_a 0046f974 LIBC:crt0init.obj - 0004:00009984 ___xi_z 0046f984 LIBC:crt0init.obj - 0004:00009988 ___xp_a 0046f988 LIBC:crt0init.obj - 0004:00009990 ___xp_z 0046f990 LIBC:crt0init.obj - 0004:00009994 ___xt_a 0046f994 LIBC:crt0init.obj - 0004:00009998 ___xt_z 0046f998 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00470000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00470014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00470028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0047003c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00470050 kernel32:KERNEL32.dll - 0005:00000150 __imp__DeleteCriticalSection@4 00470150 kernel32:KERNEL32.dll - 0005:00000154 __imp__IsBadReadPtr@8 00470154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GlobalAlloc@8 00470158 kernel32:KERNEL32.dll - 0005:0000015c __imp__GlobalFree@4 0047015c kernel32:KERNEL32.dll - 0005:00000160 __imp__EnterCriticalSection@4 00470160 kernel32:KERNEL32.dll - 0005:00000164 __imp__LeaveCriticalSection@4 00470164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetCurrentThreadId@0 00470168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GlobalReAlloc@12 0047016c kernel32:KERNEL32.dll - 0005:00000170 __imp__GlobalSize@4 00470170 kernel32:KERNEL32.dll - 0005:00000174 __imp__WideCharToMultiByte@32 00470174 kernel32:KERNEL32.dll - 0005:00000178 __imp__IsBadWritePtr@8 00470178 kernel32:KERNEL32.dll - 0005:0000017c __imp__CreateFileA@28 0047017c kernel32:KERNEL32.dll - 0005:00000180 __imp__CloseHandle@4 00470180 kernel32:KERNEL32.dll - 0005:00000184 __imp__DeleteFileA@4 00470184 kernel32:KERNEL32.dll - 0005:00000188 __imp__FlushFileBuffers@4 00470188 kernel32:KERNEL32.dll - 0005:0000018c __imp__SetFilePointer@16 0047018c kernel32:KERNEL32.dll - 0005:00000190 __imp__SetEndOfFile@4 00470190 kernel32:KERNEL32.dll - 0005:00000194 __imp__ReadFile@20 00470194 kernel32:KERNEL32.dll - 0005:00000198 __imp__WriteFile@20 00470198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetFullPathNameA@16 0047019c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetTempPathA@8 004701a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__GetLastError@0 004701a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__GetFileAttributesA@4 004701a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__MoveFileA@8 004701ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__CreateDirectoryA@8 004701b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__FindClose@4 004701b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__GetLogicalDrives@0 004701b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__FindNextFileA@8 004701bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__FindFirstFileA@8 004701c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__InitializeCriticalSection@4 004701c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__RtlUnwind@16 004701c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__UnhandledExceptionFilter@4 004701cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__SetEnvironmentVariableA@8 004701d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__RaiseException@16 004701d4 kernel32:KERNEL32.dll - 0005:000001d8 __imp__LoadLibraryA@4 004701d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__GetModuleHandleA@4 004701dc kernel32:KERNEL32.dll - 0005:000001e0 __imp__VirtualAlloc@16 004701e0 kernel32:KERNEL32.dll - 0005:000001e4 __imp__VirtualFree@12 004701e4 kernel32:KERNEL32.dll - 0005:000001e8 __imp__SetStdHandle@8 004701e8 kernel32:KERNEL32.dll - 0005:000001ec __imp__MultiByteToWideChar@24 004701ec kernel32:KERNEL32.dll - 0005:000001f0 __imp__GetEnvironmentStrings@0 004701f0 kernel32:KERNEL32.dll - 0005:000001f4 __imp__GetCommandLineA@0 004701f4 kernel32:KERNEL32.dll - 0005:000001f8 __imp__GetVersion@0 004701f8 kernel32:KERNEL32.dll - 0005:000001fc __imp__ExitProcess@4 004701fc kernel32:KERNEL32.dll - 0005:00000200 __imp__GetProcAddress@8 00470200 kernel32:KERNEL32.dll - 0005:00000204 __imp__GetStartupInfoA@4 00470204 kernel32:KERNEL32.dll - 0005:00000208 __imp__GetStdHandle@4 00470208 kernel32:KERNEL32.dll - 0005:0000020c __imp__GetModuleFileNameA@12 0047020c kernel32:KERNEL32.dll - 0005:00000210 __imp__GetACP@0 00470210 kernel32:KERNEL32.dll - 0005:00000214 __imp__GetOEMCP@0 00470214 kernel32:KERNEL32.dll - 0005:00000218 __imp__GetCPInfo@8 00470218 kernel32:KERNEL32.dll - 0005:0000021c __imp__GetFileType@4 0047021c kernel32:KERNEL32.dll - 0005:00000220 \177KERNEL32_NULL_THUNK_DATA 00470220 kernel32:KERNEL32.dll - 0005:00000224 __imp__CharUpperBuffA@8 00470224 user32:USER32.dll - 0005:00000228 __imp__MessageBoxA@16 00470228 user32:USER32.dll - 0005:0000022c \177USER32_NULL_THUNK_DATA 0047022c user32:USER32.dll - 0005:00000230 __imp__timeGetTime@0 00470230 winmm:WINMM.dll - 0005:00000234 \177WINMM_NULL_THUNK_DATA 00470234 winmm:WINMM.dll - 0005:00000238 \177comdlg32_NULL_THUNK_DATA 00470238 comdlg32:comdlg32.dll - - entry point at 0001:00031c34 - - Static symbols - - 0001:00020bb0 _$$8000 00421bb0 f fniwin.obj - 0001:000210f0 _$$1000 004220f0 f fniwin.obj - 0001:00023f50 _$$9000 00424f50 f fniwin.obj - 0001:00023f70 _$$a000 00424f70 f fniwin.obj - 0001:00023f90 _$$b000 00424f90 f fniwin.obj - 0001:0001ff10 _$$1000 00420f10 f filewin.obj - 0001:00020b90 _$$8000 00421b90 f filewin.obj - 0001:0001cd80 _$$8000 0041dd80 f file.obj - 0001:0001d040 _$$1000 0041e040 f file.obj - 0001:0001f8e0 _$$9000 004208e0 f file.obj - 0001:0001f900 _$$a000 00420900 f file.obj - 0001:0001f920 _$$b000 00420920 f file.obj - 0001:0001a920 _$$1000 0041b920 f crf.obj - 0001:0001cc30 _$$8000 0041dc30 f crf.obj - 0001:00012ef0 _$$1000 00413ef0 f codkauai.obj - 0001:0001a500 _$$8000 0041b500 f codkauai.obj - 0001:000120b0 _$$1000 004130b0 f codec.obj - 0001:000129c0 _$$8000 004139c0 f codec.obj - 0001:0000b740 _$$1000 0040c740 f chunk.obj - 0001:00011a80 _$$8000 00412a80 f chunk.obj - 0001:0000b360 _$$1000 0040c360 f stream.obj - 0001:0000b400 _$$8000 0040c400 f stream.obj - 0001:0000b320 _$$1000 0040c320 f groups2.obj - 0001:0000b340 _$$8000 0040c340 f groups2.obj - 0001:00007a10 _$$1000 00408a10 f groups.obj - 0001:0000b100 _$$8000 0040c100 f groups.obj - 0001:00007460 _$$1000 00408460 f lex.obj - 0001:00007480 _$$8000 00408480 f lex.obj - 0001:00007360 _$$1000 00408360 f scrcom.obj - 0001:00007440 _$$8000 00408440 f scrcom.obj - 0001:000071b0 _$$8000 004081b0 f screxe.obj - 0001:000071d0 _$$1000 004081d0 f screxe.obj - 0001:00007340 _$$9000 00408340 f screxe.obj - 0001:000070c0 _$$1000 004080c0 f memwin.obj - 0001:00007190 _$$8000 00408190 f memwin.obj - 0001:00005660 _$$1000 00406660 f utilstr.obj - 0001:00006bb0 _$$8000 00407bb0 f utilstr.obj - 0001:00004dd0 _$$1000 00405dd0 f utilrnd.obj - 0001:000052b0 _$$8000 004062b0 f utilrnd.obj - 0001:00003ea0 _$$1000 00404ea0 f utilmem.obj - 0001:00004900 _$$8000 00405900 f utilmem.obj - 0001:00003460 _$$1000 00404460 f utilint.obj - 0001:00003950 _$$8000 00404950 f utilint.obj - 0001:00002c60 _$$8000 00403c60 f utilerro.obj - 0001:000031a0 _$$1000 004041a0 f utilerro.obj - 0001:00003390 _$$9000 00404390 f utilerro.obj - 0001:000033b0 _$$a000 004043b0 f utilerro.obj - 0001:000033d0 _$$b000 004043d0 f utilerro.obj - 0001:000029d0 _$$1000 004039d0 f utilcopy.obj - 0001:00002c40 _$$8000 00403c40 f utilcopy.obj - 0001:00001ea0 _$$1000 00402ea0 f base.obj - 0001:00002800 _$$8000 00403800 f base.obj - 0001:00001860 _$$8000 00402860 f util.obj - 0001:00001880 _$$1000 00402880 f util.obj - 0001:000014c0 _$$8000 004024c0 f utilglob.obj - 0001:00001530 _$$9000 00402530 f utilglob.obj - 0001:00001590 _$$a000 00402590 f utilglob.obj - 0001:000015b0 _$$b000 004025b0 f utilglob.obj - 0001:000016a0 _$$1000 004026a0 f utilglob.obj - 0001:00000b70 _$$1000 00401b70 f tdfmake.obj - 0001:00000e10 _$$1400 00401e10 f tdfmake.obj - 0001:00001090 _$$8000 00402090 f tdfmake.obj - 0001:00001270 _$$7300 00402270 f tdfmake.obj - 0001:000382e0 _BrStdlibAllocate 004392e0 f bren:stdmem.obj - 0001:00038350 _BrStdlibFree 00439350 f bren:stdmem.obj - 0001:000383a0 _BrStdlibInquire 004393a0 f bren:stdmem.obj - 0001:00038290 _BrStdioWarning 00439290 f bren:stderr.obj - 0001:000382b0 _BrStdioError 004392b0 f bren:stderr.obj - 0001:00037d20 _BrStdioAttributes 00438d20 f bren:stdfile.obj - 0001:00038000 _BrStdioOpenWrite 00439000 f bren:stdfile.obj - 0001:00038050 _BrStdioClose 00439050 f bren:stdfile.obj - 0001:00038070 _BrStdioEof 00439070 f bren:stdfile.obj - 0001:00038090 _BrStdioGetChar 00439090 f bren:stdfile.obj - 0001:000380f0 _BrStdioPutChar 004390f0 f bren:stdfile.obj - 0001:00038140 _BrStdioRead 00439140 f bren:stdfile.obj - 0001:00038170 _BrStdioWrite 00439170 f bren:stdfile.obj - 0001:000381a0 _BrStdioGetLine 004391a0 f bren:stdfile.obj - 0001:00038270 _BrStdioAdvance 00439270 f bren:stdfile.obj - 0001:0002fd70 _$$1000 00430d70 f engine:modl.obj - 0001:00030a80 _$$1400 00431a80 f engine:modl.obj - 0001:00030ae0 _$$8000 00431ae0 f engine:modl.obj - 0001:00030c80 _$$7300 00431c80 f engine:modl.obj - 0001:0002f150 _$$1000 00430150 f engine:tdf.obj - 0001:0002f6b0 _$$1400 004306b0 f engine:tdf.obj - 0001:0002f6d0 _$$8000 004306d0 f engine:tdf.obj - 0001:0002f840 _$$7300 00430840 f engine:tdf.obj - 0001:0005a7e6 _findenv 0045b7e6 f LIBC:setenv.obj - 0001:0005a843 _copy_environ 0045b843 f LIBC:setenv.obj - 0001:0005a2ed _strncnt 0045b2ed f LIBC:aw_cmp.obj - 0001:000591da _strtoxl 0045a1da f LIBC:strtol.obj - 0001:000375b1 __get_fname 004385b1 f LIBC:fpexcept.obj - 0001:00035f1f _strncnt 00436f1f f LIBC:aw_map.obj - 0001:00035d6b __before 00436d6b f LIBC:heapadd.obj - 0001:0003495b __abstract_cw 0043595b f LIBC:ieee87.obj - 0001:000349ee __hw_cw 004359ee f LIBC:ieee87.obj - 0001:000346ae __heap_new_region 004356ae f LIBC:heapgrow.obj - 0001:000343fc _flsall 004353fc f LIBC:fflush.obj - 0001:00033bf9 __heap_grow_emptylist 00434bf9 f LIBC:heapinit.obj - 0001:000338ad _getSystemCP 004348ad f LIBC:mbctype.obj - 0001:000338e8 _CPtoLCID 004348e8 f LIBC:mbctype.obj - 0001:00033927 _setSBCS 00434927 f LIBC:mbctype.obj - 0001:000336e3 _parse_cmdline 004346e3 f LIBC:stdargv.obj - 0001:00033555 _xcptlookup 00434555 f LIBC:winxfltr.obj - 0001:00033358 __unwind_handler 00434358 f LIBC:exsup.obj - 0001:000330cf __cftoe_g 004340cf f LIBC:cvt.obj - 0001:000331f0 __cftof_g 004341f0 f LIBC:cvt.obj - 0001:0003330c __shift 0043430c f LIBC:cvt.obj - 0001:00032bd8 __heap_expand_block 00433bd8 f LIBC:realloc.obj - 0001:00032a43 _doexit 00433a43 f LIBC:crt0dat.obj - 0001:00032ac2 __initterm 00433ac2 f LIBC:crt0dat.obj - 0001:00032916 _write_char 00433916 f LIBC:output.obj - 0001:00032956 _write_multi_char 00433956 f LIBC:output.obj - 0001:00032987 _write_string 00433987 f LIBC:output.obj - 0001:000329be _get_int_arg 004339be f LIBC:output.obj - 0001:000329cd _get_int64_arg 004339cd f LIBC:output.obj - 0001:000329e1 _get_short_arg 004339e1 f LIBC:output.obj - -FIXUPS: 31e0a ffffff2b 18 10 ffffff76 14 c 13cf ffffff04 a 18 a ffffff9f -FIXUPS: 32fb1 ffffff65 a ffffffbf 20 fffffd91 c 5 10 10 5 1c 9 15 f 1f -FIXUPS: 32d37 fffffeb1 5 a fffff233 ffffff46 1e 12 44 13 1cb3 fffff725 -FIXUPS: 3321b 9b 1d 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 14 1c -FIXUPS: 33822 16 1d 1b cb 3a 37 fffff662 45 46 1136 35 1d 36 47 11 2c 16 -FIXUPS: 34304 29 fffffa90 9a ffffff10 fffffee9 2d f e c 3d 55 fffffdbe -FIXUPS: 33b0c 33 1f d 23 23 fffffe56 12 11 11 5d 123b d 35 25 ffffff1f -FIXUPS: 34958 b8 78 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 fffffdf5 -FIXUPS: 3434c fffffb47 21 c1 1c 48 13 31 ca 5a 28 1f 17 11b0 b 21 42 37 -FIXUPS: 35423 19 2b e fffffd07 12 1d 5 55 3c 7 2f b2 15 fffffbca 3d 49 -FIXUPS: 350c0 31 fffffdf6 ffffff4a d 2b 1a 1f fffffea9 18 114f 1f 20 d -FIXUPS: 35f0d 13 17 13 22 5b 16 22 f 22 f fffffafe 64 ffffff44 ffffff99 -FIXUPS: 35918 17 24 fffffd3d c 75 d 96 d c 32 fffffe42 ffffffae 156b 18 -FIXUPS: 36c13 3e 24 d 41 34 fffffe08 ffffffb7 ffffff00 a4 22 fffffd28 78 -FIXUPS: 3682c 18 e fffffcff ffffffaf 26 fffffe65 f3 fffffc57 1a fffffb77 -FIXUPS: 35c7d 67 e 177 1a 1d 1d98 c 10 c fffff8cd c5 92 10e 49 c6 4f fffff8ed -FIXUPS: 371f1 18 18 b0 9 e 9 29 4d fffffc51 c2 75 c 1e 77 c fffffd3a 38 -FIXUPS: 36b3a 10 1d09 b b 1b ffffff68 1c fffff6c0 1c 20 24 9 2c b 10 124 -FIXUPS: 381cf ef 21 26 10d aa 1f 21 41 c d 15 b fffff5fb 1a 65 1d 22567 -FIXUPS: 5a189 2f ffffff5a f e ffffff9c ffffff09 2d 32 fffffe82 18 ffffff1b -FIXUPS: 59e38 ffffff63 1a 13 ffffff4f 1a ffffff09 20 fffdf095 ffffff8c -FIXUPS: 38c87 d 20 d fffffddc 47 3e 110 fffffcdc 22959 14 e fffffc5e 2c -FIXUPS: 5ae3b 64 fffffe4a ab 2e fffffeb5 28 fffffe0f bd 21 fffffd74 fb -FIXUPS: 5a80f fffffe11 10 2d 10 13 17 ffffff25 35 fffffc0f c9 38 24 ee -FIXUPS: 5a42a 1565 9 37 fffffc31 3a 2a 27 2b 2a 39 2d 37 4d 3a 6c 12 14 -FIXUPS: 5b388 15 1a0 52 3e b fffffcf0 fffffe6f 51 2b 29 33 1c 1a 14 fffd5437 -FIXUPS: 306b7 5 5 21 10 10 19 19 13 13 13 16 16 16 e e 1e 30 33 17 14 2b1fa -FIXUPS: 5ba79 c ffffff77 fffffec0 2e 19 31 1e 2d fffd4854 2c 23 d 2c 23 -FIXUPS: 3028b 10 16 16 2e 4c 27 36 37 7 3d 51 7 1a 4d 3b 11 64 26 2b 24 -FIXUPS: 3060f 27 1a 12 1a 1396 27 23 13 18 5 5 18 e 13 28 10 10 19 19 13 -FIXUPS: 31b6a 13 16 16 16 e e 3e e 32 33 17 14 ffffe4c2 2a 23 1322 71 2c -FIXUPS: 315a9 f 10 21 23 32 23 d 19 17 33 98 10 14 10 18 24 1e 12 30 23 -FIXUPS: 3186f 18 10 c 116 13 e 2b fffff583 1b 15 31 e d 31 d 3d 58 24 58 -FIXUPS: 311a8 6e a5 2e 2d 23 d 10 11 1e 3b b 6 59 14 21 d 1f 2d 23 fffff6e1 -FIXUPS: 30bc9 10 b a 21 1c 13 15 25 43 1f 33 20 d 5f 23 32 20 d 16 8 19 -FIXUPS: 30e74 2c 22 d 11 f 20 31 1a 13826 ffffffee ffffffee fffec156 27 -FIXUPS: 308e8 21 30 13 b a 10 b a e 15 2e 11 34 b 14 b 14 c 2a 20 d 5c -FIXUPS: 30b43 20 d 2c 16922 fffffef4 ffffffc3 ffffffb9 ffffffc0 ffffffd5 -FIXUPS: 445dc ffffffd5 ffffffc4 ffffffd4 ffffffe3 fffffff2 fffffff0 ffffffee -FIXUPS: 444ea ffffff37 ffffffea ffffffca 69e ffffffe6 ffffffee ffffffee -FIXUPS: 44a23 ffffffe1 ffffffcc ffffffe2 ffffffb8 ffffff96 ffffff91 ffffff2a -FIXUPS: 4479e fffffff2 3553 ffffffe8 fffffffb fffffff9 ffffffd5 fffffffb -FIXUPS: 47c76 ffffff88 ffffd61d 237 690 ffffffea fffffded 4f7 ffffffea -FIXUPS: 45b6d 5c0 ffffffae 461 fffffefe ffffffea 696 ffffff47 ffffffe9 -FIXUPS: 46706 901 66b ffffff7e ffffff97 ffffffe1 fffffff1 ffffffe6 87f1 -FIXUPS: 4fd13 ffffffe3 ffffffe9 4aa ffffffd8 fffffff4 ffffff5e ffffff27 -FIXUPS: 4ff9a ffffff21 ffffffee ffffffef ffffffee 567 2a9 ffff92a5 590 -FIXUPS: 49eb3 ffffffde fffffffb ffffffe7 ffffff72 ffffe2d5 ffffffd4 ffffffd4 -FIXUPS: 47ef2 ffffffe1 ffffffec ffffffd4 ffffffd9 fffffb35 7346 fffffff0 -FIXUPS: 4ecc4 ffffffed ffffffdf ffffffe0 ffffffe3 ffffffe3 ffffffe3 ffffffe9 -FIXUPS: 4f0a7 ffffffd8 fffffff4 ffffff5e ffffff2c ffffffc0 6dc fffffd64 -FIXUPS: 4f947 52d ffffffe9 ffffffcd ffffffef ffffffe4 ffffffe4 fffffff3 -FIXUPS: 4fdc4 fffffff0 ffffffed ffffffed ffffffdf ffffffe0 ffffe125 ffffff54 -FIXUPS: 4dcf3 ffffffc0 ffffff21 ffffffee ffffffef ffffffee ffffffee ffffffe9 -FIXUPS: 4db43 ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 702 fffffd96 -FIXUPS: 4df4a 558 3c8 574 ffffffee ffffffef ffffffee ffffffee ffffffe9 -FIXUPS: 4ed4d ffffffef ffffffe4 ffffffe4 fffffff3 ffffdd45 ffffffe0 ffffffe3 -FIXUPS: 4c9e2 ffffffe3 ffffffe9 49a ffffffd8 fffffff4 ffffff5e ffffff27 -FIXUPS: 4cc57 ffffff33 ffffffee ffffffef ffffffee ffffffee ffffffe9 7b4 -FIXUPS: 4d070 5f0 46d fffffff0 ffffffed ffffffdc ffffffe0 ffffffe3 ffffffe3 -FIXUPS: 4da0c ffffffe9 4b7 ffffffd2 ffffdae4 ffffffe4 ffffffe4 fffffff3 -FIXUPS: 4b90d fffffff0 fffffff0 ffffffed ffffffdc ffffffe0 ffffffe3 ffffffe3 -FIXUPS: 4b83c ffffffe9 57a ffffffd5 ffffff63 ffffffd2 fffffff4 ffffff54 -FIXUPS: 4c27d fffffd63 636 4e3 ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 -FIXUPS: 4ca83 ffffffed ffffffed 675f ffffffd8 ffffff88 ffffffd7 765 ffffff32 -FIXUPS: 53775 ffffffea ffffffeb ffffffed ffffffea fffffef6 ffffffc6 4ed -FIXUPS: 53aa2 ffffff88 ffffffd8 ffffff88 ffffffd7 ffffff81 57f ffffffc9 -FIXUPS: 4b490 683 ffffffbe ffffff33 ffffffee ffffffef ffffffee ffffffee -FIXUPS: 4b9a6 ffffffcd 684d ffffff88 ffffffd8 ffffff88 780 ffffff72 ffffff40 -FIXUPS: 526c5 ffffffea ffffffeb ffffffed ffffffea fffffef9 ffffffce 4d8 -FIXUPS: 529e8 ffffff88 ffffffd8 ffffff88 ffffffd7 7cd ffffff67 ffffff2f -FIXUPS: 52ef5 ffffffea ffffffeb ffffffed ffffffea fffffefa ffffffce 4f3 -FIXUPS: 53234 fffd35b3 ffffffe8 fffffe67 ffffeb6c ffffffb2 ffffffe8 ffffffde -FIXUPS: 250f9 fffffff6 fffffff6 fffffff6 fffffff6 ffffffe4 32b51 ffffff8e -FIXUPS: 57ad3 fffffff5 ffffffb5 ffffff4c ffffffd2 ffffa6e5 ffffff88 ffffffd7 -FIXUPS: 51f60 ffffff72 ffffff40 ffffffeb ffffffea ffffffeb ffffffed ffffffea -FIXUPS: 521e8 fffd3c9c ffffffd6 fffffff5 7b0 ffffffcc ffffffb5 ffffffbe -FIXUPS: 26531 ffffffcc ffffff97 ffffffdc ffffffcc ffffffe5 ffffffe8 ffffffbf -FIXUPS: 26375 ffffffba ffffffd3 ffffffcd ffffffe5 ffffffe5 ffffffe8 ffffffe1 -FIXUPS: 26246 69e ffffffde ffffffdb ffffffd6 ffffffe5 ffffffe9 ffffffe0 -FIXUPS: 26800 231 ffffffd2 fffffff7 ffffffd3 fffff84d ffffffec ffffffec -FIXUPS: 261da ffffffe5 ffffffe8 ffffffe1 ffffffe4 ffffffd4 ffffffec ffffffec -FIXUPS: 26100 ffffffe5 ffffffe8 ffffffd3 ffffffbc ffffffe8 ffffffb6 ffffffec -FIXUPS: 25fcc ffffffe8 ffffffe6 ffffffe5 ffffffe8 ffffffd3 ffffffb4 fffffff5 -FIXUPS: 25e98 10e3 ffffff8e ffffffdd ffffffdf ffffffde ffffffdf ffffff6b -FIXUPS: 26db6 ffffffef ffffffb0 ffffffe2 ffffffed ffffffee ffffffec ffffffed -FIXUPS: 26cd9 ffffffec 72e ffffffb7 ffffffce ffffffcd ffffffca fffffe17 -FIXUPS: 274c5 fffffff7 ffffffcd fffffff7 fffff66f fffffff4 ffffffb9 fffffff0 -FIXUPS: 26a3e 250f ffffff97 ffffff20 ffffff9d ffffff88 ffffff81 75d ffffff9a -FIXUPS: 292c2 ffffff8c ffffff83 ffffff7c ffffff8e ffffff5d 55d ffffff93 -FIXUPS: 2950f ffffff8b ffffe3ab ffffffe4 fffffeb3 ffffffd6 fffffff3 ffffff9e -FIXUPS: 275f3 ffffffea ffffffd9 ffffffd5 ffffffc6 fffffb17 ffffffbe ffffffd2 -FIXUPS: 27e37 ffffffb4 ffffffe8 ffffffb0 ffffffe6 ffffff77 72d ffffff9d -FIXUPS: 28332 ffffff81 ffffff8b ffffff9d ffffff9a ffffff52 ffffff9d 7ce -FIXUPS: 287b9 ffffff83 ffffff9a ffffff68 ffffff8b ffffff8a ffffff9a 73f -FIXUPS: 28bb6 ffffff88 ffffff52 ffffff7c ffffff98 ffffff87 ffffff7b 71d -FIXUPS: 2b104 ffffffe2 ffffff92 ffffffdb ffffffc0 ffffffe7 728 ffffffc3 -FIXUPS: 2b63b ffffffc0 ffffff12 ffffff8a ffffff92 ffffffd8 ffffeb3c fffffeaa -FIXUPS: 29dc9 fffffff2 ffffffca ffffffe0 fffffff2 ffffdebc ffffff52 ffffffa4 -FIXUPS: 27af0 ffffff50 ffffffd0 ffffff40 ffffffce ffffffbe ffffff92 5e6 -FIXUPS: 2a3eb 651 ffffffdb ffffff8c ffffffec ffffffd3 ffffffc8 ffffffe5 -FIXUPS: 2a8a5 ffffffec ffffffe1 ffffffbc ffffffe3 ffffffd8 728 ffffff1b -FIXUPS: 2ade7 ffffffd0 ffffffd2 ffffff9c ffffff99 ffffff73 ffffffea 746 -FIXUPS: 2b349 ffffff9e ffffffe1 ffffffc4 ffffffec ffffff9f ffffffea ffffffdc -FIXUPS: 2d784 fbc ffffffe6 fffffff4 ffffffa3 ffffffb8 fffffff3 ffffffdf -FIXUPS: 2d75e fffffff6 ffffffe1 ffffffe3 ffffff99 ffffe6e2 fffffff4 ffffff8e -FIXUPS: 2bd0a ffffff94 fffffff5 ffffff94 fffffff5 ba6 ffffff13 ffffff41 -FIXUPS: 2c814 ffffdb9e ffffffc8 ffffff99 48e ffffff6f fffffe87 ffffffdb -FIXUPS: 3ad0f ffffff60 ffffffdf fffffff1 fffffff9 ffffffea ffffffe2 ffffffb9 -FIXUPS: 2f445 51c 60c ffffff99 9e ffffefc1 fffffff2 ffffffcd fffffff2 fffffdb7 -FIXUPS: 2ecb7 ffffffcc ffffffeb ffffffd5 ffffffeb ffffffc4 ffffffed ffffffba -FIXUPS: 2eb8b ffffffef ffffffdd fffffeeb ffffffa8 ffffff47 baf1 ffffffc7 -FIXUPS: 3a3db ffffffc7 6ed ffffffdf fffffff1 fffffff9 ffffffea ffffffe4 -FIXUPS: 3aa1a fffffff7 ffffffc0 ffffffdb fffffefc ffffffb9 ffffffb4 ffffffdf -FIXUPS: 3a7e5 fffffff9 ffffffea ffffffe6 6f5 ffffff93 ffffff97 ffffffdf -FIXUPS: 3ad9d fffffff9 ffffffea ffffffe4 fffffff4 fffffff7 fffff645 ffffffc7 -FIXUPS: 3a34d ffffffc4 fffffff3 ffffffed ffffffc2 ffffffea ffffffa2 ffffffea -FIXUPS: 3a1ce ffffffcb ffffffa1 fffffff2 ffffff95 fffffff4 ffffff7b ffffffe1 -FIXUPS: 39fe2 79d ffffff9b ffffffd1 ffffff9b ffffffd1 ffffff9b ffffffd1 -FIXUPS: 3a55d ffffffc6 ffffff5b fffffff9 fffffff2 ffffffc7 fffff5af ffffff79 -FIXUPS: 3993a ffffffed ffffffdc ffffff75 ffffffe2 ffffffed ffffffdd fffffff0 -FIXUPS: 397ec fffffff2 748 ffffffea ffffffd6 ffffff7a ffffffd1 ffffffe9 -FIXUPS: 39dee ffffffe2 ffffffe8 ffffffee ffffffec ffffffe9 ffffffd5 ffffffe0 -FIXUPS: 39d01 ffffff7c ffffffc8 ffffffe1 fffffff4 ffffffc0 1c14 ffffdfba -FIXUPS: 39797 ffffffee ffffff51 ffffffd8 ffffffde ffffffc8 fffffff1 ffffffea -FIXUPS: 395ed ffffffea ffffffe7 ffffffdf ffffffa1 fffffff1 ffffffea ffffffba -FIXUPS: 394bc fffffff0 ffffffdb 715 fffffff5 fffffff1 ffffffda ffffff71 -FIXUPS: 39a9e ffffffee ffffff9e ffffffea ffffffec ffffffee 1804 ffffff88 -FIXUPS: 3b119 ffffff3f 74a ffffffec fffffff1 ffffffdf fffffff4 ffffffd8 -FIXUPS: 3b6e7 ffffffc5 ffffffbd ffffffb8 ffffffb9 ffffffef ffffffe2 fffffff4 -FIXUPS: 3b589 ffffffe0 ffffffe7 ffffff81 fffffff3 ffffffec ffffffb8 ffffff94 -FIXUPS: 3b3e5 fffffff1 6fc ffffffeb fffffef1 ffffff3c 2ee ffffffea ffffffe3 -FIXUPS: 3c231 ffffffa8 ffffff98 ffffffec ffffff6f ffffff72 ffffffec ffffff95 -FIXUPS: 3bf97 ffffffe3 ffffffea ffffffea ffffffe3 ffffffe2 ffffffd6 717 -FIXUPS: 3c588 ffffee2a fffffff0 ffffffe1 fffffff0 ffffffd9 ffffffe6 ffffffc7 -FIXUPS: 3b2c1 ffffffcd ffffffe2 fffffff0 ffffff9d 32e2 ffffffe1 ffffffd6 -FIXUPS: 3e481 fffffff4 ffffffea fffffff4 ffffffd2 fffffff3 ffffffec ffffffed -FIXUPS: 3e3de fffffff2 ffffffe6 568 fffffff7 ffffff3f ffffffe0 ffffffea -FIXUPS: 3e7e7 ffffffe5 ffffffe1 ffffdfa6 ffffffef ffffffbb fffffff6 fffffff1 -FIXUPS: 3beda ffffffef fffffff2 fffffed6 ffffffee 2441 ffffffef ffffffcb -FIXUPS: 3e15a ffffffe6 ffffffe0 ffffffed ffffffec fffffff2 ffffffea ffffffb2 -FIXUPS: 3e07b ffffffde ffffffea ffffffe3 fffffff0 ffffffef ffffffd4 6f2 -FIXUPS: 3e694 ffffffe1 ffffffe6 fffffff3 fffffff4 ffffffc2 ffffffd2 ffffffd8 -FIXUPS: 3e59b ffffffde ffffffef ffffff9e fffffff2 fffffa31 ffffffdc ffffffea -FIXUPS: 3dee6 ffffffea ffffffdf ffffffec ffffffe0 ffffffe4 ffffffdb ffffffb7 -FIXUPS: 3dd94 ffffff04 ffffffc4 ffffffe0 ffffffeb ffffff9e 7d0 fffffff4 -FIXUPS: 3e363 ffffffce ffffffdd ffffffec ffffffbf ffffffe4 ffffffd3 ffffffec -FIXUPS: 3e24c ffffffef ffffffe2 ffffffed ffffffef fffff8ce fffffff5 ffffffed -FIXUPS: 3da96 ffffffe5 ffffffe8 fffffff0 fffffff2 ffffffef ffffffeb ffffffdc -FIXUPS: 3d9e8 ffffffe1 ffffffed ffffffe2 ffffffe6 ffffffe8 ffffffe9 ffffffe9 -FIXUPS: 3d90e ffffffeb ffffffe7 ffffff44 ffffffeb fffffff1 ffffffeb 7cb -FIXUPS: 3df94 fffffff5 ffffffea ffffffe2 fffffff5 fffff0b8 790 ffffffe3 -FIXUPS: 3d753 ffffffee ffffffd4 fffffff3 ffffffe0 ffffffdd ffffffe2 ffffffba -FIXUPS: 3d626 ffffffd0 ffffffdd ffffffda ffffffdb ffffffd4 ffffffd4 ffffffdd -FIXUPS: 3d4f1 ffffffe3 ffffffc9 ffffffdd ffffffe8 ffffffe8 ffffffcd ffffffe5 -FIXUPS: 3d3e3 7d0 fffffff4 ffffff4e fffffff5 fffff377 fffffff2 fffffff2 -FIXUPS: 3ce33 fffffff2 fffffff2 fffffff2 ffffffee fffffff2 ffffff2f fffffff3 -FIXUPS: 3ccfd ffffffd1 ffffffef ffffffef ffffffef ffffff68 ffffffef 7d7 -FIXUPS: 3d390 ffffffd1 ffffff4b ffffffd7 ffffffbf ffffffdd ffffffa5 ffffff02 -FIXUPS: 3d07b ffffffcb ffffffe6 fffffff2 fffffff2 fffffb5d ffffffef ffffffd7 -FIXUPS: 3cb22 ffffffef fffffeaa fffffff5 ffffff7b ffffffc6 ffffffa3 ffffffce -FIXUPS: 3c80c 795 ffffffec fffffff2 fffffff2 fffffff2 ffffffe1 ffffffec -FIXUPS: 3cf22 fffffff2 fffffff2 ffffffee fffffff2 fffffff2 fffffff2 fffffff2 -FIXUPS: 3ceae fffffff2 fffffff2 fffffff1 ffffffec 4c9d ffffff99 ffffffec -FIXUPS: 407f4 ffffffef fffffff2 3e5 314 364 3a7 ffffef3f ffffffdc ffffffee -FIXUPS: 40469 ffffffcc ffffffcc ffffffc7 fffffefe ffffff3c ffffffe4 ffffffd1 -FIXUPS: 40193 42f ffffe95f 5bc fffffff5 ffffd70f ffffffef ffffffef ffffffef -FIXUPS: 3cb9d ffffffe1 6e7d fffffff4 fffffff4 ffffffec ffffffee ffffff56 -FIXUPS: 438f3 ffffff81 ffffffec ffffffe4 ffffffe8 ffffffec ffffffd4 ffffffd8 -FIXUPS: 437a5 ffffffe6 ffffffee ffffffdb 472 fffff0dd ffffffde fffff627 -FIXUPS: 42031 ffffffef fffffff2 4be 4f8 fffffd81 fffff614 ffffff96 ffffffec -FIXUPS: 41bdf ffff73d9 51 2e 24 3e 3c 51 31 30 22 14 1b 57 33 1f 22f6b -FIXUPS: 43ed2 ffffffd6 ffffffe5 ffffffd5 fffffeca 593 ffffffe0 ffffff4a -FIXUPS: 440d9 fffff318 ffffffef fffffff1 fffffff4 ffffffed ffffffec 66b -FIXUPS: 21a9 19 67 53 17 14 22 26 b 15 11 40 f 11 26 36f43 70 ffffff73 -FIXUPS: 38d49 1f 14 1b 16 16 1c c7 14 3e 15 5a 20 14 fffc8eb1 1d 2c 24 -FIXUPS: 1ec7 13 1f 35 2b 23 2d 23 2d f d 24 12 1e 14 25 10 10 19 19 13 -FIXUPS: 211a 13 16 16 16 e e fffff700 2d 71 1d 28 b 23 2d 71 1c 75 b 6e -FIXUPS: 1b4f cb 24 16 25 16 24 24 20 4c 27 21 30 1a 1a 28 5 5 18 fffff5ed -FIXUPS: 1431 b b 31 28 28 1d 17 d 17 1a 28 1a b 2a 42 25 14 26 14 79 28 -FIXUPS: 1712 16 18 2d 26 85 1d 28 b fffff8a3 e 1e 14 4d b e 1a 29 13 14 -FIXUPS: 123a b c 14 16 29 1b 12 15 b 10 13 18 b 22 2d 20 d 2c 20 d 11fd -FIXUPS: 261c 1d e 32 13 3d 13 1d e 13 1f e 32 e 13 1f 30 30 ffffe7f0 e -FIXUPS: 1022 b b 13 16 8 22 23 17 13 14 27bd 30 ffffef8e 42 e 22 30 e fffffb2b -FIXUPS: 2469 f 21 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 18 13 e4b b -FIXUPS: 347a 1f 5 1b e 42 26 d 1d 23 1c 36 d 4f d 7b d 4a 20 12 1b 2d d -FIXUPS: 37b0 29 d 21 22 e 13 fffff8ba d 1e 17 33 10 19 25 b 13 10 2b d -FIXUPS: 325e d 34 d 2c d 13 2e d 20 35 d a 18 b b 19 35 5 fffff8ec a d -FIXUPS: 2d4b 42 3a 1e 9 90 5 46 c c 14 1f 39 1c 11 13 32 d 32 d 10 27 d -FIXUPS: 3059 9 e 5 24 23 aa6 d 43 d d 7b ffffed0b 27 f 21 30 30 70 30 29 -FIXUPS: 2ae6 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f e 1585 16 90 27 -FIXUPS: 4369 10 23 20 1b 5 5 18 16 8 12 e 13 fffff4e8 d 53 d 5a 13 d d -FIXUPS: 3a79 13 d d 6c d d 2ca e 5b 9 1a 6b 20 2c 23 16 b 27 10 37 1d 31 -FIXUPS: 405c 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 458 78 39 d 12 -FIXUPS: 47cb d 36 d 9e e 14 5 39 3e 22 e 13 1d fffff2b5 36 27 f 21 30 e -FIXUPS: 3d42 37 29 16 15 15 1974 d 17 15 2c d f 22 37 d 10 c 33 d 20 18 -FIXUPS: 58dc 2b ffffebb8 d 4a d 29 d 20 13 24 58 81 13 b a cd6 49 d 23 -FIXUPS: 541d 1f d f 33 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a 2d d 14 1b 2a -FIXUPS: 56d4 2b d 20 fffff8cb 35 d 2a 6 3f 2d 1e 14 42 d 17 55 6 28 6 30 -FIXUPS: 522c 19 f 2b a 12 f 2f e 1e c d 11 14 3a fffff84e 17 1c 18 a 24 -FIXUPS: 4c51 42 2d 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 f d c 27 d 2b -FIXUPS: 4fb4 d 29 10fd 27 2f 3c 23 1b 32 23 47 1f 1b 2a 22 e 13 1f e 13 -FIXUPS: 49d9 17 3c 1d 10 58 28 10 31 1f 40 e 10 27 1134 c 10 1d d 2c d -FIXUPS: 5d99 10 8 c 3c 23 1b c 3e d 11 44 26 23 2d d 11 26 5c 23 1b 46 -FIXUPS: 608a 3c d 1a34 d 75 c 22 ffffdd8b 27 f 21 49 27 f 21 30 e 18 e -FIXUPS: 5ac3 36 23 1b 58 d 2d 12 4e 30 2c 17 d 20 10 18b1 75 6a 23 2d 23 -FIXUPS: 7719 14 1a 2b d 51 d 2c e 4a d 16 25 13 d 10 d 27 44 1d 17 42 52 -FIXUPS: 7a2c d a0 fffff060 29 1b d b 2cd a 75 23 d d e 14 15 14e d 98 d6 -FIXUPS: 724c d 71 d 55 6d 23 16 d 22 d 14 11e 25 fffff247 1b d f 13 7d -FIXUPS: 6880 3a 15 36 34 23 1b d 8 1b 32 23 1b d 14 9 6 22 23 19 8 10 32 -FIXUPS: 6b03 d d 167a ffffe1c2 23 32 20 d d 11 1d 33 23 1b d 30 3c 29 23 -FIXUPS: 6567 8 12 29 d 53 36 49 23 1b d f 45 36 2b 168a d 2e d 17 27 c -FIXUPS: 7eb0 2b 1e c b 2e d 2e c b 28 d 34 25 d 15 2d d 1d 12 4c b 6 63 -FIXUPS: 8176 262 d 62 fffffd75 7d e 9 9 20 30 1b 25 30 2e 5 fffff88d e -FIXUPS: 7bf7 29 61 38 e b 10 14 25 d 4d 2c 23 25 e 42b4 2a d 25 22 e 13 -FIXUPS: c169 e 13 1f e 13 1f e 13 1f 13 1d e 13 1f 13 1d 13 1d 13 ffffc17b -FIXUPS: 8389 f d 24 3952 c 22 22 24 16 1d 6 34 d 15 c 17 2f 29 23 16 30 -FIXUPS: bf24 35 26 1d c 37 11 f 1e 6 18 d 20 31 fffff88b 2c d e 2d d 37 -FIXUPS: b9e9 43 d 20 13 10 10 11 19 46 5a 23 d 23 14 2c 26 1b 13 33 14 -FIXUPS: bc97 1b 23 11 fffff8cd 19 29 1a 17 13 a 14 20 6 17 2e 37 12 13 -FIXUPS: b731 8 24 d d 10 20 d 56 d 18 40 3d d 27 d 25 fffff919 1e 23 1d -FIXUPS: b2b8 d 1a 1f 13 1e 1d 9 e 25 c 42 d 2b 2b 23 1d 2f d 15 15 20 1f -FIXUPS: b529 1f 13 18 23 fffff955 d 15 c 26 17 6 1d 23 1d 2f d 11 23 23 -FIXUPS: b069 2f d 10 c 3e 12 28 23 1d 2f d 12 15 1f 13 17 fffff901 23 20 -FIXUPS: ab84 21 20 6 1e 23 20 17 17 2d d 19 1b 46 24 27 23 1e 12 2f d 10 -FIXUPS: ae04 3e c 1b 23 1e 12 fffff8c3 b 6 29 23 1b 12 1e 17 23 d 45 d -FIXUPS: a8f9 11 9 26 23 1b 10 29 72 d 21 14 14 21 23 1d 16 9 21 fffff872 -FIXUPS: a3a9 30 e 32 30 e 19 3d 30 2c 26 19 21 26 32 23 d 39 d e 3e 1d -FIXUPS: a6c8 d 2d d 15 b 6 e 1a fffff8c3 9 1d 14 9 6 22 2e 23 16 2a 22 -FIXUPS: a169 23 1b 2c 2a 19 9 27 9 6 24 23 1b 33 d 28 9 21 12 1e fffff8eb -FIXUPS: 9cad 30 27 29 3c 23 1e 10 10 a 16 13 13 b 19 1b 2c 1b 26 2d 23 -FIXUPS: 9f25 24 23 1d 16 2c 9 19 15 b fffff844 28 23 1d 30 23 1e 1f 23 -FIXUPS: 999e 23 d 39 d e 3d 28 d 2d d 1a 13 1e 23 32 23 d 10 b f 1c 29 -FIXUPS: 947e 20 d 1e 13 10 11 19 38 57 23 d 24 2a 23 d 10 b 11 17 37 43 -FIXUPS: 972f 33 23 d 27 19 11 b 2b 12 fffff90e 23 13 c c 22 e 19 3a 2f -FIXUPS: 925c 1e 24 9 22 23 1d 10 17 6 23 23 1d 10 13 a 1d 46 12 13 13 13 -FIXUPS: 8d9d f 34 9 f 31 2d 23 d 15 10 30 2f 9 f 34 9 f 3b 17 13 13 36 -FIXUPS: 9029 3b d 1e 24 d 1e 24 d fffff86f 3f 2c 50 11 10 b 12 29 17 25 -FIXUPS: 8b0c 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 13 1a 20 d 20 2f fffff755 -FIXUPS: 84f8 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 30 2c 17 c -FIXUPS: 8825 14 23 34 d 25 32 1f 32 9d73 36 6d 42 46 ab 1e 25 b9 1f 1f -FIXUPS: 12a22 30 35 22 12 1e 20 e 13 1f e 13 1f ffff9810 1b 25 18 d 19 -FIXUPS: c347 ffffc17b 9da7 e 14 31 2d 2c 45 1f 10 10 10 35 23 d 32 35 d -FIXUPS: 124a9 23 13 18 22 23 32 23 d 76 22 33 23 16 b fffff5fa 22 1d 10 -FIXUPS: 11d0f 20 d 3a d 26 23 16 b c 11 37 d 26 115 23 23 45 46 2f 20 23 -FIXUPS: 120e2 b 3a 1e 31 cb fffff6a1 d 1d 19 1d 1c 2a 10 25 23 3a 29 17 -FIXUPS: 11a6a 1d 2d 1d 38 23 1f 20 d 1d 34 23 16 10 14 20 d 1f 1d fffff822 -FIXUPS: 114e1 1e 24 d 3b d 2d 36 d 31 21 24 d 3b d 24 23 1f 23 1f 20 d -FIXUPS: 117b0 32 25 2f 33 23 16 c 14 fffff71a 1c 2c d 2e 3a 23 1c 19 12 -FIXUPS: 1110c 12 3b 23 3d d 66 d 44 55 23 d 2f d 32 25 3c d 35 2d 2e 36 -FIXUPS: 10c2f 20 d 2a 3c 11 33 10 14 20 d 16 11 25 13 23 23 1f 20 d 1d -FIXUPS: 10e99 23 13 10 17 1c 14 2f 21 1c 27 fffff967 23 26 d 29 d d 12 -FIXUPS: 109d4 11 18 19 f 12 1d 35 1b 25 23 13 14 20 d d 16 d 31 d f 19 -FIXUPS: 10bef 1d fffff943 11 29 23 1b 27 32 1f 10 2c 17 31 d 13 2f 18 8 -FIXUPS: 1074f 1a 25 1a 1a 25 45 d 1d 29 d 11 2f 25 12 fffff877 2f 30 23 -FIXUPS: 10217 27 20 1a 19 3a 1d 3a d 16 e 26 19 a 18 1d 38 23 1b d 1c 19 -FIXUPS: 104ac 32 23 d 1f 9 fffff6af 39 23 d 58 1a 93 25 22 3f 23 16 2d -FIXUPS: fe62 d 10 56 a4 23 16 b 12 21 3b 5e 23 1b b 27 1f 1e 22 fffff6cd -FIXUPS: f85a d f 33 23 13 10 17 1c 1d d f 17 1c b 20 23 2d d 27 d c 43 -FIXUPS: fabc 1b b 25 d 5b 22 47 fffff8d1 23 32 23 d 15 11 d d 1b 23 32 -FIXUPS: f5fd 1a 21 21 23 1f 20 d 1b 35 d f 29 f 12 1b 23 1f 20 d fffff888 -FIXUPS: f0ad d 31 1d d 41 48 e 2d 23 16 11 d 10 31 25 15 1b 1a 18 d 54 -FIXUPS: f37c 16 2e 19 d 37 31 23 d fffff6ec 24 10 12 33 a3 11 15 1b 4e -FIXUPS: ed35 1f 44 20 21 40 15 1b 15 1b 29 3e 23 d 38 23 d d 11 22 60 3c -FIXUPS: e5b5 35 16 43 d 1a 1a 17 19 23 74 d 14 27 17 24 27 3e 13 45 28 -FIXUPS: e8c3 20 d 80 13 b 34 32 d 95 36 fffff726 1e 15 33 d 15 1c d 1e -FIXUPS: e2d9 30 d 22 15 12 a 15 1b 23 41 d 38 d 31 d 39 1e 47 18 20 6 20 -FIXUPS: de69 11 1b 2c 21 17 1e 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c -FIXUPS: e0c3 d 15 12 14 20 d f 18 30 46 fffff80f 1a 20 d 23 16 23 2d 20 -FIXUPS: dae1 5c 2d 20 d 53 d f 23 11 1f 17 19 30 80 30 30 23 13 18 1d 1d -FIXUPS: de3e fffff6c9 d 50 13 17 22 d 35 d 6f d 50 d 2f d 32 d 2f 32 30 -FIXUPS: d7f1 3b d 43 d 2f 41 34 d 4a d 46 fffff7de 23 d 2f d 38 22 15 32 -FIXUPS: d2d4 f 18 10 a 20 d 2f 30 d 1a 18 6 8 10 1c 2c d 31 d 1d 6 8 fffff73d -FIXUPS: cc29 23 1a c e 3d 3f 7d 23 30 d 80 19 a7 d 38 23 d 38 23 d 48 23 -FIXUPS: d06e 3e d 2f d 48 23 d fffff5be 3e 50 2d 23 d 12 c 25 d 20 15 2e -FIXUPS: c8e9 23 67 1d d 2f 23 d 2d 2d 23 d e 29 34 d 5b 40 30 6c07 f e -FIXUPS: 137fc f f f f f 46 24 33 ac d 2a 22 e 13 ffff8a38 27 f 21 49 27 -FIXUPS: c518 21 30 e 16 1d 2f 2c 6dbd 22 d 60 29 4f 23 16 b b e 30 2c 1a -FIXUPS: 135b0 24 b 13 10 21 d e 1a 1d d e 29 16 d 10 d b fffff847 d 32 -FIXUPS: 12fc2 27 10 8 18 1d 29 12 22 46 23 32 23 d 1b 70 23 4d 23 32 23 -FIXUPS: 132de 10 1a f 22 24 2c 23 5a00 1a 27 d 58 d 3e d 2629 d 27 ffff76cb -FIXUPS: 12bf9 f 21 49 27 f 21 30 e 30 2a d 5c 2f 2c 50 29 60 1b 10 5a17 -FIXUPS: 1896b 26 1d d 39 3c 49 23 ab d 2d 22 d 11 22 1f 15 10 1d d 2f e -FIXUPS: 18cad 17 1c 59 23 1b d 10 d fffff69b 1b d 10 d b 2e 3d a 2b a 1c -FIXUPS: 1856d a 90 10 c 1d d 68 d 44 7a d 50 36 d 1d 94 d 2a 1e ffffbc44 -FIXUPS: 1457f 1e 1f 15 10 1d d 2f e 1f 17 1c 3f 30 30 23 1b d 10 d b 1a -FIXUPS: 147ed d 58 d 3e d 3b41 d 21 ffffbb73 2e 3d a 2b a 1c 1b a 90 10 -FIXUPS: 14123 1d d 50 d 44 7a d 50 36 d 1d 94 d 24 2e 27 c2 d 2d 22 fffff4e5 -FIXUPS: 13a69 f 21 30 23 1b d 10 d b 38 21 2b 21 48 13 4d 28 b6 d b5 32 -FIXUPS: 13e68 47 22 48 23 1b d 10 d 9abd d 18 13 13 20 23 13 18 1d 10 29 -FIXUPS: 1db74 23 d 3b d 28 23 22 e 32 13 1d e 13 1f e 13 1f e 13 fffff6e1 -FIXUPS: 1d4a2 23 d 129 7e 2b 25 23 1b 1c 56 27 23 d d 49 d 17 1d b d 8 -FIXUPS: 1d8e2 36 d 54 13 2d 23 d 32 fffff56e 23 32 23 d 2c d 2b 20 d 1a -FIXUPS: 1d0d9 d 1d 22 54 23 16 d 15 57 23 d ee 23 32 23 d 2c d 10 1f fffff717 -FIXUPS: 1cb74 23 d 35 23 2d d 1d 28 22 27 23 d 35 23 20 28 35 23 32 23 -FIXUPS: 1ce4e 2c d 3b d 1a 20 d 1d 20 fffff7a6 d 10 8 33 17 20 1b 27 23 -FIXUPS: 1c7fa 1e 1f 17 6c 2f 23 d 15 62 20 d 1a 29 59 e 22 23 2d d 1d 28 -FIXUPS: 1c259 d 27 d d 20 17 20 1b 16 2e f 1f 17 38 3a 17 3a 2f 23 d 15 -FIXUPS: 1c50b 38 81 20 d 1a 38 47 1f 23 fffff636 23 d 2f 58 23 5d e 29 -FIXUPS: 1bea2 23 d 15 42 2f 29 19 88 d 3f 1b 2a 23 d 15 11 1d 22 5b 36 -FIXUPS: 1c209 23 fffff682 20 d 13 1a 41 23 20 d 20 23 20 d 20 13 40 d 13 -FIXUPS: 1bab9 10 8 36 22 23 39 d 94 23 d 14 1f 23 4c60 1b 5 5 18 e 13 1f -FIXUPS: 20997 13 ffffab98 27 f 21 49 27 f 21 49 27 f 21 30 e 29 49 2f 3e -FIXUPS: 1b803 3f 17 23 4cd4 2c d 17 25 28 2d 2f 30 10 41 23 d 2a d 31 d -FIXUPS: 207b2 d 11 c 16 18 2f d 34 d 22 10 8 c 1f fffff7fd 23 16 67 23 -FIXUPS: 201ea 22 11 1d 20 2a 19 16 11 19 21 d 1b 25 28 2d 29 50 23 3e 1e -FIXUPS: 204a9 1d 20 2a 19 16 fffff81c d 31 23 32 23 d 34 d 16 24 d 28 25 -FIXUPS: 1fef9 9 f 28 23 32 23 d 34 d 16 d 21 d 2c 26 11 f fffff861 46 23 -FIXUPS: 1f9c2 3b 18 44 23 18 2f d 1e 6 20 d 30 26 11 33 d 31 23 18 2f d -FIXUPS: 1fc8e 6 20 d 30 22 15 fffff6c9 d d 6c 32 23 16 b 8 2a 46 24 23 -FIXUPS: 1f5f0 27 22 23 3a d 28 48 23 19 20 1d d 22 2e 2b 65 23 32 fffff60b -FIXUPS: 1eee7 26 32 23 d 79 31 e 26 32 23 d 7b 2f e 26 46 26 2c 13 d 14 -FIXUPS: 1f27c 32 23 d d 6a 24 23 32 fffff67b 29 32 23 d 3c d 58 a9 37 48 -FIXUPS: 1ecc9 23 16 14 20 d 27 22 9 e 13 23 31 23 d 18 13 a d 1c 28 fffff74c -FIXUPS: 1e619 80 23 16 2e 19 13 b 2f 23 d 10 a 15 2d 24 d 2f 1b 3c 23 1f -FIXUPS: 1e90b d 3c 25 23 1f 20 d 3c fffff7e2 d 26 2d 16 19 8 c 22 39 19 -FIXUPS: 1e32e 2b 2d 23 d f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 25 23 fffff8bc -FIXUPS: 1deb9 30 e b b 33 20 d 14 16 d a 2b 19 a a a 10 b 8 36 2d 20 d -FIXUPS: 1e0d1 22 d 21 1d 31 77 36c9 46 32 23 d 19 b 2e 29 35 23 d 10 15 -FIXUPS: 21a6e 20 d 12 12 1f 1a 1d 46 1f 1d ffffc1f5 36 27 f 21 49 27 3764 -FIXUPS: 215fa 1a b 19 b 15 20 d 17 b c 1f a 15 27 24 1d 20 d 1a 15 1f 20 -FIXUPS: 21801 1a 1f 15 12 21 14 e fffff843 7e 24 23 1b 10 d 26 35 8 12 -FIXUPS: 21297 d 7c 29 23 1b 10 d 26 28 d 3a c a6 2e 29 32 23 d 10 b fffff528 -FIXUPS: 20af4 69 6 51 6 98 37 23 16 29 6d 20 b 26 23 16 3c 1b 23 40 9d -FIXUPS: 20f5c 1b b 28 d 11 94 1d 23 16 3d52 1e e d 41 d 2c d 25 10 8 1e -FIXUPS: 24f37 25 20 1b 5 5 18 e 13 1f e 13 1f e 22 13 ffffb94d 80 23 1d -FIXUPS: 24909 23 13 20 37 a 1d d 10 1d d 2f 23 d 25 3f 23 d 65 31 1a 10 -FIXUPS: 24bcc 20 1d d 91 52 23 57 36 10 fffff4d2 51 41 32 10 15 32 20 85 -FIXUPS: 24479 29 19 b b 39 d 21 dc 17 1d d 3c d9 12 23 18 17 1d d 16 1a -FIXUPS: 248fc fffff58d e 9 9 20 e b 26 52 2f 12 9 9 1c 2c 13 10 8 19 2d -FIXUPS: 240b1 66 22 29 19 10 b a b 27 37 59 fffff780 1d d 10 d 46 11 34 -FIXUPS: 23aee 2f 1c 26 32 16 e 64 d 23 1c 34 1d d d 20 29 e 27 1d 82 2d -FIXUPS: 23e49 18 fffff6da 2e 16 32 23 d 4b d 13 20 d 2b 38 16 20 d 3f d -FIXUPS: 237b6 d 2a d 2c d 48 d 21 23 16 e b9 23 fffff7a7 23 d 10 28 18 -FIXUPS: 23236 27 15 27 2c 32 16 15 10 2d 28 39 d 13 24 d 17 b 28 1d d 4c -FIXUPS: 234e2 d a 1f fffff92c 19 1c 2c 35 23 d 10 b 12 f d d 12 11 b 2b -FIXUPS: 22fe5 32 23 d 10 12 b a 43 1a 1d d 12 1d d fffff800 d 14 27 2c -FIXUPS: 229cb 34 14 1e 1f 29 d 1d 8 11e 26 14 20 d 10 59 26 35 23 d 10 -FIXUPS: 22d4e c 5f 26 35 23 fffff6f9 d 11 38 32 1d 44 2c 3d d 10 10 2a -FIXUPS: 226e6 10 2f 17 18 15 20 23 32 23 d 10 e 64 d 12 1a 23 32 fffff730 -FIXUPS: 2206a 13 49 53 2c 16 b b 16 17 c 6c 15 23 13 22 46 29 6d 39 23 -FIXUPS: 223c8 15 11 1b 23 2d 26 32 16 12 fffff6e3 36 27 f 21 49 27 f 21 -FIXUPS: 21d19 1b 20 25 e b 11 26 29 32 23 d 1a e 8e 59 d 1a 1b 11 39 2f -FIXUPS: 22043 diff --git a/OBJ/WINS/3DMOVIE.I b/OBJ/WINS/3DMOVIE.I deleted file mode 100644 index 24625e6c..00000000 --- a/OBJ/WINS/3DMOVIE.I +++ /dev/null @@ -1,3125 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" - - -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 4 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 5 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 6 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" - - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\utestgst.cht" - - - - -CHUNK ('GST ' 3 "TDT Action Names") - LONG - GST(4) - ITEM "At Rest" 0 - ITEM "Flip Letters" 1 - ITEM "Spin Letters" 2 - ITEM "Cartwheel Letters" 3 - ITEM "Side to Side" 4 - ITEM "Rock" 5 - ITEM "Back and Forth" 6 - ITEM "Grow and Shrink" 7 - ITEM "Flip" 8 - ITEM "Spin" 9 - ITEM "Cartwheel" 10 - ITEM "The Wave" 11 - ITEM "Hide and Appear" 12 - ITEM "Walk Forward*" 13 - ITEM "Hop" 14 - ITEM "Stretch" 15 -ENDCHUNK - - - - -CHUNK ('GST ' 6 "Misc. App global strings") - LONG - GST(4) - ITEM "Microsoft 3D Movie Maker" 0 - ITEM "3D Movie Maker" 1 - ITEM "3DMovie" 2 - ITEM "My_Stuff" 3 - ITEM "Copy of" 4 - ITEM "A New Movie" 5 - ITEM "Comic Sans MS" 6 - ITEM "12" 14 - ITEM "Users" 12 - ITEM "Error from net provider \"%z\": \n%x : %z" 13 - ITEM "Save a movie" 15 - ITEM "Open a movie" 16 - ITEM "Import a sound" 17 - ITEM "Import a texture" 18 - ITEM "Movie Files" 19 - ITEM "*.3mm" 20 - ITEM "Sound Files" 21 - ITEM "*.mid;*.3mm" 22 - ITEM "*.wav;*.3mm" 23 - ITEM "Bitmap Files" 24 - ITEM "*.bmp" 25 - ITEM "Melanie" 26 - ITEM "Out-of-Memory Error" 27 - ITEM "Do you want to go to the building? Press 'No' to leave 3D Movie Maker completely" 28 - ITEM "Save changes to %s?" 29 - ITEM "Do you really want to leave 3D Movie Maker?" 30 - ITEM "Delete sound: %s?" 31 - ITEM "Overwrite existing file: %s?" 32 - ITEM "Remove all unused user sounds from file?" 33 -ENDCHUNK -#line 9 "H:\\BUILD\\SOC\\src\\studio\\utest.cht" - - - - -CHUNK( 'GLCR', 0, ) PALETTE "studio\bmp\homelogo.bmp" ENDCHUNK - - - - -CHUNK ('MBMP' 6 "Home Logo") - PACK BITMAP (0 0 0) "studio\bmp\homelogo.bmp" -ENDCHUNK - - - - -CHUNK ('MBMP' 0 "Splash Screen") - PACK BITMAP (0 0 0) "studio\bmp\splash.bmp" -ENDCHUNK - - - - -CHUNK ('MIDS' 0 "Splash Sound") - MIDI "studio\bmp\splash.mid" -ENDCHUNK - - - - -CHUNK ('GST ' 4 "Studio Filenames") - LONG - GST(4) - ITEM "studio" 1048576 -ENDCHUNK - - - - - -CHUNK ('GST ' 5 "Building Filenames") - LONG - GST(4) - ITEM "building" 1572864 - ITEM "bldghd" 1048576 -ENDCHUNK - - - - - -CHUNK ('GST ' 7 "Shared Filenames") - LONG - GST(4) - ITEM "shared" 524288 - ITEM "sharecd" 98304 - ITEM "help" 524288 - ITEM "helpaud" 0 -ENDCHUNK - - - - - -CHUNK('TMAP', 0, "") - PACK BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x03 0x02 - 0x00 0x00 0x00 0x00 0x00 0x01 0x10 0x00 - 0x00 0x00 0x00 0x00 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF 0x00 0x01 0x02 0x03 - 0x04 0x05 0x06 0x07 0x08 0x09 0x0A 0x0B - 0x0C 0x0D 0x0E 0x0F 0x10 0x11 0x12 0x13 - 0x14 0x15 0x16 0x17 0x18 0x19 0x1A 0x1B - 0x1C 0x1D 0x1E 0x1F 0x20 0x21 0x22 0x23 - 0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B - 0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33 - 0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B - 0x3C 0x3D 0x3E 0x3F 0x40 0x41 0x42 0x43 - 0x44 0x45 0x46 0x47 0x48 0x49 0x4A 0x4B - 0x4C 0x4D 0x4E 0x4F 0x50 0x51 0x52 0x53 - 0x54 0x55 0x56 0x57 0x58 0x59 0x5A 0x5B - 0x5C 0x5D 0x5E 0x5F 0x60 0x61 0x62 0x63 - 0x64 0x65 0x66 0x67 0x68 0x69 0x6A 0x6B - 0x6C 0x6D 0x6E 0x6F 0x70 0x71 0x72 0x73 - 0x74 0x75 0x76 0x77 0x78 0x79 0x7A 0x7B - 0x7C 0x7D 0x7E 0x7F 0x80 0x81 0x82 0x83 - 0x84 0x85 0x86 0x87 0x88 0x89 0x8A 0x8B - 0x8C 0x8D 0x8E 0x8F 0x90 0x91 0x92 0x93 - 0x94 0x95 0x96 0x97 0x98 0x99 0x9A 0x9B - 0x9C 0x9D 0x9E 0x9F 0xA0 0xA1 0xA2 0xA3 - 0xA4 0xA5 0xA6 0xA7 0xA8 0xA9 0xAA 0xAB - 0xAC 0xAD 0xAE 0xAF 0xB0 0xB1 0xB2 0xB3 - 0xB4 0xB5 0xB6 0xB7 0xB8 0xB9 0xBA 0xBB - 0xBC 0xBD 0xBE 0xBF 0xC0 0xC1 0xC2 0xC3 - 0xC4 0xC5 0xC6 0xC7 0xC8 0xC9 0xCA 0xCB - 0xCC 0xCD 0xCE 0xCF 0xD0 0xD1 0xD2 0xD3 - 0xD4 0xD5 0xD6 0xD7 0xD8 0xD9 0xDA 0xDB - 0xDC 0xDD 0xDE 0xDF 0xE0 0xE1 0xE2 0xE3 - 0xE4 0xE5 0xE6 0xE7 0xE8 0xE9 0xEA 0xEB - 0xEC 0xED 0xEE 0xEF 0xF0 0xF1 0xF2 0xF3 - 0xF4 0xF5 0xF6 0xF7 0xF8 0xF9 0xFA 0xFB - 0xFC 0xFD 0xFE 0xFF -ENDCHUNK diff --git a/OBJ/WINS/3DMOVIE.MAP b/OBJ/WINS/3DMOVIE.MAP deleted file mode 100644 index 9ea0ef32..00000000 --- a/OBJ/WINS/3DMOVIE.MAP +++ /dev/null @@ -1,7444 +0,0 @@ - 3dmovie - - Timestamp is 3078d894 (Mon Oct 09 01:08:52 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 000d2ebdH .text CODE - 0002:00000000 00008e9cH .bss DATA - 0003:00000000 00005d90H .rdata DATA - 0004:00000000 00009898H .data DATA - 0004:00009898 00000004H .CRT$XCA DATA - 0004:0000989c 00000004H .CRT$XCC DATA - 0004:000098a0 0000016cH .CRT$XCU DATA - 0004:00009a0c 00000004H .CRT$XCZ DATA - 0004:00009a10 00000004H .CRT$XIA DATA - 0004:00009a14 0000000cH .CRT$XIC DATA - 0004:00009a20 00000004H .CRT$XIZ DATA - 0004:00009a24 00000004H .CRT$XPA DATA - 0004:00009a28 00000004H .CRT$XPX DATA - 0004:00009a2c 00000004H .CRT$XPZ DATA - 0004:00009a30 00000004H .CRT$XTA DATA - 0004:00009a34 00000004H .CRT$XTZ DATA - 0005:00000000 000000c8H .idata$2 DATA - 0005:000000c8 00000028H .idata$3 DATA - 0005:000000f0 00000550H .idata$4 DATA - 0005:00000640 00000550H .idata$5 DATA - 0005:00000b90 000016bcH .idata$6 DATA - 0006:00000000 0000150fH CONST DATA - 0007:00000000 000008acH .rsrc$01 DATA - 0007:000008b0 00009fccH .rsrc$02 DATA - 0009:00000000 00000000H .debug$C DATA - 0009:00000000 00000110H .debug$E DATA - 0009:00000110 00012270H .debug$F DATA - 0009:00014210 00000000H .debug$G DATA - 0009:00014210 00000032H .debug$H DATA - 0009:ffef7000 00000000H .debug$P DATA - 0009:ffef7000 00000000H .debug$S DATA - 0009:ffef7000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@SPLOT@@SGHJ@Z 00401000 f splot.obj - 0001:00000020 ?FIs@SPLOT@@UAEHJ@Z 00401020 f splot.obj - 0001:00000030 ?Cls@SPLOT@@UAEJXZ 00401030 f splot.obj - 0001:00000040 ?PsplotNew@SPLOT@@SGPAV1@JJPAVRCA@@@Z 00401040 f splot.obj - 0001:000001c0 ?FCmdInit@SPLOT@@QAEHPAUCMD@@@Z 004011c0 f splot.obj - 0001:000002e0 ?FCmdSplot@SPLOT@@QAEHPAUCMD@@@Z 004012e0 f splot.obj - 0001:00000630 ?FCmdUpdate@SPLOT@@QAEHPAUCMD@@@Z 00401630 f splot.obj - 0001:00000910 ?FCmdDismiss@SPLOT@@QAEHPAUCMD@@@Z 00401910 f splot.obj - 0001:000009c0 ??1SPLOT@@UAE@XZ 004019c0 f splot.obj - 0001:00000b50 ??_EMCC@@UAEPAXI@Z 00401b50 f splot.obj - 0001:00000b50 ??_GMCC@@UAEPAXI@Z 00401b50 f splot.obj - 0001:00000b70 ??_EBASE@@UAEPAXI@Z 00401b70 f splot.obj - 0001:00000b70 ??_GBASE@@UAEPAXI@Z 00401b70 f splot.obj - 0001:00000b90 ??_ESPLOT@@UAEPAXI@Z 00401b90 f splot.obj - 0001:00000b90 ??_GSPLOT@@UAEPAXI@Z 00401b90 f splot.obj - 0001:00000c40 ?_NewRc@GOB@@MAEXXZ 00401c40 f splot.obj - 0001:00000c50 ?_ActivateHwnd@GOB@@MAEXH@Z 00401c50 f splot.obj - 0001:00000d20 ?Dxp@MCC@@UAEJXZ 00401d20 f splot.obj - 0001:00000d30 ?Dyp@MCC@@UAEJXZ 00401d30 f splot.obj - 0001:00000d40 ?CbCache@MCC@@UAEJXZ 00401d40 f splot.obj - 0001:00000d50 ?SetCurs@MCC@@UAEXJ@Z 00401d50 f splot.obj - 0001:00000d60 ?UpdateRollCall@MCC@@UAEXXZ 00401d60 f splot.obj - 0001:00000d70 ?UpdateAction@MCC@@UAEXXZ 00401d70 f splot.obj - 0001:00000d80 ?UpdateScrollbars@MCC@@UAEXXZ 00401d80 f splot.obj - 0001:00000d90 ?PlayStopped@MCC@@UAEXXZ 00401d90 f splot.obj - 0001:00000da0 ?ChangeTool@MCC@@UAEXJ@Z 00401da0 f splot.obj - 0001:00000db0 ?SceneNuked@MCC@@UAEXXZ 00401db0 f splot.obj - 0001:00000dc0 ?SceneUnnuked@MCC@@UAEXXZ 00401dc0 f splot.obj - 0001:00000dd0 ?ActorNuked@MCC@@UAEXXZ 00401dd0 f splot.obj - 0001:00000de0 ?EnableActorTools@MCC@@UAEXXZ 00401de0 f splot.obj - 0001:00000df0 ?EnableTboxTools@MCC@@UAEXXZ 00401df0 f splot.obj - 0001:00000e00 ?TboxSelected@MCC@@UAEXXZ 00401e00 f splot.obj - 0001:00000e10 ?ActorSelected@MCC@@UAEXJ@Z 00401e10 f splot.obj - 0001:00000e20 ?ActorEasel@MCC@@UAEXPAH@Z 00401e20 f splot.obj - 0001:00000e30 ?SetUndo@MCC@@UAEXJ@Z 00401e30 f splot.obj - 0001:00000e40 ?SceneChange@MCC@@UAEXXZ 00401e40 f splot.obj - 0001:00000e50 ?PauseType@MCC@@UAEXW4WIT@@@Z 00401e50 f splot.obj - 0001:00000e60 ?Recording@MCC@@UAEXHH@Z 00401e60 f splot.obj - 0001:00000e70 ?StartSoonerLater@MCC@@UAEXXZ 00401e70 f splot.obj - 0001:00000e80 ?EndSoonerLater@MCC@@UAEXXZ 00401e80 f splot.obj - 0001:00000e90 ?NewActor@MCC@@UAEXXZ 00401e90 f splot.obj - 0001:00000ea0 ?StartActionBrowser@MCC@@UAEXXZ 00401ea0 f splot.obj - 0001:00000eb0 ?StartListenerEasel@MCC@@UAEXXZ 00401eb0 f splot.obj - 0001:00000ec0 ?GetFniSave@MCC@@UAEHPAVFNI@@JJJPADPAVSTN@@@Z 00401ec0 f splot.obj - 0001:00000ed0 ?PlayUISound@MCC@@UAEXJJ@Z 00401ed0 f splot.obj - 0001:00000ee0 ?StopUISound@MCC@@UAEXXZ 00401ee0 f splot.obj - 0001:00000ef0 ?UpdateTitle@MCC@@UAEXPAVSTN@@@Z 00401ef0 f splot.obj - 0001:00000f00 ?EnableAccel@MCC@@UAEXXZ 00401f00 f splot.obj - 0001:00000f10 ?DisableAccel@MCC@@UAEXXZ 00401f10 f splot.obj - 0001:00000f20 ?GetStn@MCC@@UAEXJPAVSTN@@@Z 00401f20 f splot.obj - 0001:00000f30 ?DypTextDef@MCC@@UAEJXZ 00401f30 f splot.obj - 0001:00000f50 ?DypTboxDef@MCC@@UAEJXZ 00401f50 f splot.obj - 0001:00000f60 ?SetSndFrame@MCC@@UAEXH@Z 00401f60 f splot.obj - 0001:00000f70 ?FMinimized@MCC@@UAEHXZ 00401f70 f splot.obj - 0001:00000f80 ?FQueryPurgeSounds@MCC@@UAEHXZ 00401f80 f splot.obj - 0001:00000f90 ?Pcmm@SPLOT@@MAEPAUCMM@CMH@@XZ 00401f90 f splot.obj - 0001:00000fa0 ?FWouldBe@SCRT@@SGHJ@Z 00401fa0 f scnsort.obj - 0001:00000fc0 ?FIs@SCRT@@UAEHJ@Z 00401fc0 f scnsort.obj - 0001:00000fd0 ?Cls@SCRT@@UAEJXZ 00401fd0 f scnsort.obj - 0001:00000fe0 ??0SCRT@@QAE@PAUGCB@@@Z 00401fe0 f scnsort.obj - 0001:00001000 ??1SCRT@@UAE@XZ 00402000 f scnsort.obj - 0001:000010a0 ?PscrtNew@SCRT@@SGPAV1@JPAVMVIE@@PAVSTDIO@@PAVRCA@@@Z 004020a0 f scnsort.obj - 0001:000011d0 ?_ErrorExit@SCRT@@IAEXXZ 004021d0 f scnsort.obj - 0001:00001200 ?FCmdInit@SCRT@@QAEHPAUCMD@@@Z 00402200 f scnsort.obj - 0001:000012d0 ?FCmdSelect@SCRT@@QAEHPAUCMD@@@Z 004022d0 f scnsort.obj - 0001:00001340 ?FCmdInsert@SCRT@@QAEHPAUCMD@@@Z 00402340 f scnsort.obj - 0001:000013b0 ?FCmdScroll@SCRT@@QAEHPAUCMD@@@Z 004023b0 f scnsort.obj - 0001:00001420 ?_EnableScroll@SCRT@@IAEXXZ 00402420 f scnsort.obj - 0001:000014b0 ?FCmdNuke@SCRT@@QAEHPAUCMD@@@Z 004024b0 f scnsort.obj - 0001:00001550 ?FCmdDismiss@SCRT@@QAEHPAUCMD@@@Z 00402550 f scnsort.obj - 0001:00001620 ?FCmdPortfolio@SCRT@@QAEHPAUCMD@@@Z 00402620 f scnsort.obj - 0001:000016f0 ?FCmdTransition@SCRT@@QAEHPAUCMD@@@Z 004026f0 f scnsort.obj - 0001:000017b0 ?_SetSelectionVis@SCRT@@IAEXHH@Z 004027b0 f scnsort.obj - 0001:00001820 ?_FResetThumbnails@SCRT@@IAEHH@Z 00402820 f scnsort.obj - 0001:000019e0 ?_FResetTransition@SCRT@@IAEHPAVGOK@@W4TRANS@@@Z 004029e0 f scnsort.obj - 0001:00001a40 ?_TransFromLw@SCRT@@IAE?AW4TRANS@@J@Z 00402a40 f scnsort.obj - 0001:00001a50 ?_LwFromTrans@SCRT@@IAEJW4TRANS@@@Z 00402a50 f scnsort.obj - 0001:00001a70 ?FWouldBe@GOMP@@SGHJ@Z 00402a70 f scnsort.obj - 0001:00001a90 ?FIs@GOMP@@UAEHJ@Z 00402a90 f scnsort.obj - 0001:00001aa0 ?Cls@GOMP@@UAEJXZ 00402aa0 f scnsort.obj - 0001:00001ab0 ??0GOMP@@QAE@PAUGCB@@@Z 00402ab0 f scnsort.obj - 0001:00001ad0 ?PgompNew@GOMP@@SGPAV1@PAVGOB@@J@Z 00402ad0 f scnsort.obj - 0001:00001b90 ?Draw@GOMP@@UAEXPAVGNV@@PAVRC@@@Z 00402b90 f scnsort.obj - 0001:00001bd0 ?FSetMbmp@GOMP@@QAEHPAVMBMP@@@Z 00402bd0 f scnsort.obj - 0001:00001c10 ?PgompFromHidScr@GOMP@@SGPAV1@J@Z 00402c10 f scnsort.obj - 0001:00001c40 ??_GGOMP@@UAEPAXI@Z 00402c40 f scnsort.obj - 0001:00001c40 ??_EGOMP@@UAEPAXI@Z 00402c40 f scnsort.obj - 0001:00001c80 ??_GSCRT@@UAEPAXI@Z 00402c80 f scnsort.obj - 0001:00001c80 ??_ESCRT@@UAEPAXI@Z 00402c80 f scnsort.obj - 0001:00001d30 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 00402d30 f scnsort.obj - 0001:00001e00 ?Pcmm@SCRT@@MAEPAUCMM@CMH@@XZ 00402e00 f scnsort.obj - 0001:00001e10 ?FPtIn@GOMP@@UAEHJJ@Z 00402e10 f scnsort.obj - 0001:00001e20 ?FPtInBounds@GOMP@@UAEHJJ@Z 00402e20 f scnsort.obj - 0001:00001e30 ?FWouldBe@BRCN@@SGHJ@Z 00402e30 f browser.obj - 0001:00001e50 ?FWouldBe@BRCNL@@SGHJ@Z 00402e50 f browser.obj - 0001:00001e70 ?FIs@BRCNL@@UAEHJ@Z 00402e70 f browser.obj - 0001:00001e80 ?Cls@BRCNL@@UAEJXZ 00402e80 f browser.obj - 0001:00001e90 ?FWouldBe@BRWD@@SGHJ@Z 00402e90 f browser.obj - 0001:00001eb0 ?FIs@BRWD@@UAEHJ@Z 00402eb0 f browser.obj - 0001:00001ec0 ?Cls@BRWD@@UAEJXZ 00402ec0 f browser.obj - 0001:00001ed0 ?FWouldBe@BRWL@@SGHJ@Z 00402ed0 f browser.obj - 0001:00001ef0 ?FIs@BRWL@@UAEHJ@Z 00402ef0 f browser.obj - 0001:00001f00 ?Cls@BRWL@@UAEJXZ 00402f00 f browser.obj - 0001:00001f10 ?FWouldBe@BRWT@@SGHJ@Z 00402f10 f browser.obj - 0001:00001f30 ?FIs@BRWT@@UAEHJ@Z 00402f30 f browser.obj - 0001:00001f40 ?Cls@BRWT@@UAEJXZ 00402f40 f browser.obj - 0001:00001f50 ?FWouldBe@BRWA@@SGHJ@Z 00402f50 f browser.obj - 0001:00001f70 ?FIs@BRWA@@UAEHJ@Z 00402f70 f browser.obj - 0001:00001f80 ?Cls@BRWA@@UAEJXZ 00402f80 f browser.obj - 0001:00001f90 ?FWouldBe@BRWP@@SGHJ@Z 00402f90 f browser.obj - 0001:00001fb0 ?FIs@BRWP@@UAEHJ@Z 00402fb0 f browser.obj - 0001:00001fc0 ?Cls@BRWP@@UAEJXZ 00402fc0 f browser.obj - 0001:00001fd0 ?FWouldBe@BRWB@@SGHJ@Z 00402fd0 f browser.obj - 0001:00001ff0 ?FIs@BRWB@@UAEHJ@Z 00402ff0 f browser.obj - 0001:00002000 ?Cls@BRWB@@UAEJXZ 00403000 f browser.obj - 0001:00002010 ?FWouldBe@BRWC@@SGHJ@Z 00403010 f browser.obj - 0001:00002030 ?FIs@BRWC@@UAEHJ@Z 00403030 f browser.obj - 0001:00002040 ?Cls@BRWC@@UAEJXZ 00403040 f browser.obj - 0001:00002050 ?FWouldBe@BRWN@@SGHJ@Z 00403050 f browser.obj - 0001:00002070 ?FIs@BRWN@@UAEHJ@Z 00403070 f browser.obj - 0001:00002080 ?Cls@BRWN@@UAEJXZ 00403080 f browser.obj - 0001:00002090 ?FWouldBe@BRWM@@SGHJ@Z 00403090 f browser.obj - 0001:000020b0 ?FIs@BRWM@@UAEHJ@Z 004030b0 f browser.obj - 0001:000020c0 ?Cls@BRWM@@UAEJXZ 004030c0 f browser.obj - 0001:000020e0 ?FWouldBe@BRWR@@SGHJ@Z 004030e0 f browser.obj - 0001:00002100 ?FIs@BRWR@@UAEHJ@Z 00403100 f browser.obj - 0001:00002110 ?Cls@BRWR@@UAEJXZ 00403110 f browser.obj - 0001:00002120 ?FWouldBe@BRWI@@SGHJ@Z 00403120 f browser.obj - 0001:00002140 ?FIs@BRWI@@UAEHJ@Z 00403140 f browser.obj - 0001:00002150 ?Cls@BRWI@@UAEJXZ 00403150 f browser.obj - 0001:00002160 ?FWouldBe@BCL@@SGHJ@Z 00403160 f browser.obj - 0001:00002180 ?FIs@BCL@@UAEHJ@Z 00403180 f browser.obj - 0001:00002190 ?Cls@BCL@@UAEJXZ 00403190 f browser.obj - 0001:000021a0 ?FWouldBe@BCLS@@SGHJ@Z 004031a0 f browser.obj - 0001:000021c0 ?FIs@BCLS@@UAEHJ@Z 004031c0 f browser.obj - 0001:000021d0 ?Cls@BCLS@@UAEJXZ 004031d0 f browser.obj - 0001:000021e0 ?FWouldBe@FNET@@SGHJ@Z 004031e0 f browser.obj - 0001:00002200 ?FIs@FNET@@UAEHJ@Z 00403200 f browser.obj - 0001:00002210 ?Cls@FNET@@UAEJXZ 00403210 f browser.obj - 0001:00002220 ?_FBuildGcb@BRWD@@KGHPAUGCB@@JJ@Z 00403220 f browser.obj - 0001:00002280 ?_FInitGok@BRWD@@IAEHPAVRCA@@J@Z 00403280 f browser.obj - 0001:000022c0 ?Init@BRWD@@QAEXPAUCMD@@JJPAVSTDIO@@HJ@Z 004032c0 f browser.obj - 0001:00002300 ?_InitStateVars@BRWD@@IAEXPAUCMD@@PAVSTDIO@@HJ@Z 00403300 f browser.obj - 0001:00002360 ?_InitFromData@BRWD@@IAEXPAUCMD@@JJ@Z 00403360 f browser.obj - 0001:000023d0 ?_SetVarForOverride@BRWD@@IAEXXZ 004033d0 f browser.obj - 0001:00002490 ?_GetThumFromIthum@BRWD@@MAEXJPAXPAJ@Z 00403490 f browser.obj - 0001:000024a0 ?_CfrmCalc@BRWD@@IAEJXZ 004034a0 f browser.obj - 0001:000024d0 ?_CalcIthumPageFirst@BRWD@@IAEXXZ 004034d0 f browser.obj - 0001:000025c0 ?FDraw@BRWD@@QAEHXZ 004035c0 f browser.obj - 0001:00002740 ?_KidThumFromIfrm@BRWD@@IAEJJ@Z 00403740 f browser.obj - 0001:00002770 ?_PgobFromIfrm@BRWD@@IAEPAVGOB@@J@Z 00403770 f browser.obj - 0001:000027a0 ?_SetScrollState@BRWD@@IAEXXZ 004037a0 f browser.obj - 0001:00002810 ?FCmdFwd@BRWD@@QAEHPAUCMD@@@Z 00403810 f browser.obj - 0001:00002880 ?FCmdSelectThum@BRWD@@QAEHPAUCMD@@@Z 00403880 f browser.obj - 0001:00002900 ?FCmdBack@BRWD@@QAEHPAUCMD@@@Z 00403900 f browser.obj - 0001:00002970 ?FCmdSelect@BRWD@@QAEHPAUCMD@@@Z 00403970 f browser.obj - 0001:000029c0 ?FCreateAllTgob@BRWD@@QAEHXZ 004039c0 f browser.obj - 0001:00002a80 ?_FHiliteFrm@BRWD@@IAEHJ@Z 00403a80 f browser.obj - 0001:00002ad0 ?_UnhiliteCurFrm@BRWD@@IAEXXZ 00403ad0 f browser.obj - 0001:00002b20 ?FCmdCancel@BRWD@@UAEHPAUCMD@@@Z 00403b20 f browser.obj - 0001:00002b50 ?Release@BRWD@@UAEXXZ 00403b50 f browser.obj - 0001:00002b70 ?FCmdOk@BRWD@@UAEHPAUCMD@@@Z 00403b70 f browser.obj - 0001:00002bf0 ?_CacheContext@BRWD@@MAEXXZ 00403bf0 f browser.obj - 0001:00002c10 ?FInit@BRWL@@UAEHPAUCMD@@W4BWS@@JJUCKI@@KPAVSTDIO@@PAVBRCNL@@HJ@Z 00403c10 f browser.obj - 0001:00002e50 ?_FInitNew@BRWL@@IAEHPAUCMD@@W4BWS@@JUCKI@@K@Z 00403e50 f browser.obj - 0001:00002ec0 ?_FCreateBuildThd@BRWL@@IAEHUCKI@@KH@Z 00403ec0 f browser.obj - 0001:00002f90 ?_FGetContent@BRWL@@MAEHPAVCRM@@PAUCKI@@KH@Z 00403f90 f browser.obj - 0001:00002fe0 ?_GetThumFromIthum@BRWL@@MAEXJPAXPAJ@Z 00403fe0 f browser.obj - 0001:00003070 ?_CacheContext@BRWL@@MAEXXZ 00404070 f browser.obj - 0001:00003140 ?_SortThd@BRWL@@IAEXXZ 00404140 f browser.obj - 0001:00003300 ?_IthumFromThum@BRWL@@MAEJJJ@Z 00404300 f browser.obj - 0001:000033b0 ?_FSetThumFrame@BRWL@@MAEHJPAVGOB@@@Z 004043b0 f browser.obj - 0001:00003460 ?_ReleaseThumFrame@BRWL@@MAEXJ@Z 00404460 f browser.obj - 0001:00003480 ?PbclNew@BCL@@SGPAV1@PAVCRM@@PAUCKI@@KPAVGL@@H@Z 00404480 f browser.obj - 0001:000034f0 ?_FInit@BCLS@@IAEHPAVCRM@@PAUCKI@@KPAVGST@@PAVGL@@@Z 004044f0 f browser.obj - 0001:00003550 ?_FInit@BCL@@IAEHPAVCRM@@PAUCKI@@KPAVGL@@@Z 00404550 f browser.obj - 0001:000035c0 ?PbclsNew@BCLS@@SGPAV1@PAVCRM@@PAUCKI@@KPAVGL@@PAVGST@@H@Z 004045c0 f browser.obj - 0001:00003630 ?_FBuildThd@BCL@@IAEHPAVCRM@@@Z 00404630 f browser.obj - 0001:00003820 ?_FAddFileToThd@BCL@@IAEHPAVCFL@@J@Z 00404820 f browser.obj - 0001:00003960 ?_FAddGokdToThd@BCL@@IAEHPAVCFL@@JPAUCKI@@@Z 00404960 f browser.obj - 0001:000039a0 ?_FAddGokdToThd@BCL@@MAEHPAVCFL@@JPAUKID@@@Z 004049a0 f browser.obj - 0001:00003af0 ?_FAddGokdToThd@BCLS@@MAEHPAVCFL@@JPAUKID@@@Z 00404af0 f browser.obj - 0001:00003b40 ?_FSetNameGst@BCLS@@IAEHPAVCFL@@KK@Z 00404b40 f browser.obj - 0001:00003bb0 ?FInit@FNET@@QAEHXZ 00404bb0 f browser.obj - 0001:00003c90 ?FNext@FNET@@QAEHPAVFNI@@PAJ@Z 00404c90 f browser.obj - 0001:00003d90 ?_FNextFni@FNET@@IAEHPAVFNI@@PAJ@Z 00404d90 f browser.obj - 0001:00003eb0 ?FInit@BRWN@@UAEHPAUCMD@@W4BWS@@JJUCKI@@KPAVSTDIO@@PAVBRCNL@@HJ@Z 00404eb0 f browser.obj - 0001:00003f10 ?_FGetContent@BRWN@@MAEHPAVCRM@@PAUCKI@@KH@Z 00404f10 f browser.obj - 0001:00003f80 ?_ReleaseThumFrame@BRWN@@MAEXJ@Z 00404f80 f browser.obj - 0001:00003fd0 ?_FSetThumFrame@BRWN@@MAEHJPAVGOB@@@Z 00404fd0 f browser.obj - 0001:00004050 ?FCmdOk@BRWN@@UAEHPAUCMD@@@Z 00405050 f browser.obj - 0001:000040c0 ?PbrwmNew@BRWM@@SGPAV1@PAVRCA@@JJPAVSTDIO@@@Z 004050c0 f browser.obj - 0001:000041c0 ?_FUpdateLists@BRWM@@MAEHXZ 004051c0 f browser.obj - 0001:00004360 ?_FSndListed@BRWM@@IAEHKPAJ@Z 00405360 f browser.obj - 0001:000043c0 ?_FAddThd@BRWM@@IAEHPAVSTN@@PAUCKI@@@Z 004053c0 f browser.obj - 0001:00004460 ?_ProcessSelection@BRWM@@MAEXXZ 00405460 f browser.obj - 0001:00004510 ?FCmdFile@BRWM@@UAEHPAUCMD@@@Z 00405510 f browser.obj - 0001:000047b0 ?FCmdDel@BRWM@@UAEHPAUCMD@@@Z 004057b0 f browser.obj - 0001:000049d0 ?SetGst@BRWT@@QAEXPAVGST@@@Z 004059d0 f browser.obj - 0001:00004a00 ?FInit@BRWT@@QAEHPAUCMD@@JJPAVSTDIO@@HJ@Z 00405a00 f browser.obj - 0001:00004a60 ?_FSetThumFrame@BRWT@@MAEHJPAVGOB@@@Z 00405a60 f browser.obj - 0001:00004ae0 ?PbrwaNew@BRWA@@SGPAV1@PAVRCA@@@Z 00405ae0 f browser.obj - 0001:00004bf0 ?FBuildApe@BRWA@@QAEHPAVACTR@@@Z 00405bf0 f browser.obj - 0001:00004cc0 ?FBuildGst@BRWA@@QAEHPAVSCEN@@@Z 00405cc0 f browser.obj - 0001:00004db0 ?_ProcessSelection@BRWA@@MAEXXZ 00405db0 f browser.obj - 0001:00004df0 ?FCmdChangeCel@BRWA@@UAEHPAUCMD@@@Z 00405df0 f browser.obj - 0001:00004ec0 ?PbrwiNew@BRWI@@SGPAV1@PAVRCA@@JJ@Z 00405ec0 f browser.obj - 0001:00004fa0 ?FInit@BRWI@@QAEHPAUCMD@@UCKI@@PAVSTDIO@@@Z 00405fa0 f browser.obj - 0001:000050c0 ?PbrwpNew@BRWP@@SGPAV1@PAVRCA@@J@Z 004060c0 f browser.obj - 0001:00005180 ?PbrwbNew@BRWB@@SGPAV1@PAVRCA@@@Z 00406180 f browser.obj - 0001:00005240 ?FCmdCancel@BRWB@@UAEHPAUCMD@@@Z 00406240 f browser.obj - 0001:000052d0 ?_SetCbPcrmMin@BRWL@@MAEXXZ 004062d0 f browser.obj - 0001:00005340 ?PbrwcNew@BRWC@@SGPAV1@PAVRCA@@@Z 00406340 f browser.obj - 0001:00005400 ?FCmdCancel@BRWC@@UAEHPAUCMD@@@Z 00406400 f browser.obj - 0001:00005440 ?PbrwrNew@BRWR@@SGPAV1@PAVRCA@@J@Z 00406440 f browser.obj - 0001:00005500 ?FInit@BRWR@@QAEHPAUCMD@@KJPAVSTDIO@@@Z 00406500 f browser.obj - 0001:00005870 ?FUpdate@BRWR@@QAEHJPAVSTDIO@@@Z 00406870 f browser.obj - 0001:000058d0 ?_ProcessSelection@BRWR@@MAEXXZ 004068d0 f browser.obj - 0001:00005910 ?_Cthum@BRWR@@MAEJXZ 00406910 f browser.obj - 0001:000059b0 ?_IaridFromIthum@BRWR@@IAEJJJ@Z 004069b0 f browser.obj - 0001:00005b20 ?_IthumFromArid@BRWR@@IAEJJ@Z 00406b20 f browser.obj - 0001:00005c20 ?_FSetThumFrame@BRWR@@MAEHJPAVGOB@@@Z 00406c20 f browser.obj - 0001:00005e30 ?_FClearHelp@BRWR@@MAEHJ@Z 00406e30 f browser.obj - 0001:00005e80 ?_ReleaseThumFrame@BRWR@@MAEXJ@Z 00406e80 f browser.obj - 0001:00005ea0 ??1BRWD@@UAE@XZ 00406ea0 f browser.obj - 0001:00005f00 ??1BRWL@@UAE@XZ 00406f00 f browser.obj - 0001:00005f70 ??1BRWT@@UAE@XZ 00406f70 f browser.obj - 0001:00005fb0 ??1BRWR@@UAE@XZ 00406fb0 f browser.obj - 0001:00005fe0 ??1BRWI@@UAE@XZ 00406fe0 f browser.obj - 0001:00006020 ??1BRCNL@@MAE@XZ 00407020 f browser.obj - 0001:00006080 ??_EBRWD@@UAEPAXI@Z 00407080 f browser.obj - 0001:00006080 ??_GBRWD@@UAEPAXI@Z 00407080 f browser.obj - 0001:000060a0 ??_EBCL@@MAEPAXI@Z 004070a0 f browser.obj - 0001:000060a0 ??_GBCL@@MAEPAXI@Z 004070a0 f browser.obj - 0001:000060e0 ??_GBCLS@@MAEPAXI@Z 004070e0 f browser.obj - 0001:000060e0 ??_EBCLS@@MAEPAXI@Z 004070e0 f browser.obj - 0001:00006130 ??_GBRWL@@UAEPAXI@Z 00407130 f browser.obj - 0001:00006130 ??_EBRWL@@UAEPAXI@Z 00407130 f browser.obj - 0001:00006150 ??_GBRWT@@UAEPAXI@Z 00407150 f browser.obj - 0001:00006150 ??_EBRWT@@UAEPAXI@Z 00407150 f browser.obj - 0001:00006170 ??_EBRWN@@UAEPAXI@Z 00407170 f browser.obj - 0001:00006170 ??_GBRWN@@UAEPAXI@Z 00407170 f browser.obj - 0001:000061a0 ??_GBRWA@@UAEPAXI@Z 004071a0 f browser.obj - 0001:000061a0 ??_EBRWA@@UAEPAXI@Z 004071a0 f browser.obj - 0001:000061d0 ??_GBRWP@@UAEPAXI@Z 004071d0 f browser.obj - 0001:000061d0 ??_EBRWP@@UAEPAXI@Z 004071d0 f browser.obj - 0001:00006200 ??_EBRWB@@UAEPAXI@Z 00407200 f browser.obj - 0001:00006200 ??_GBRWB@@UAEPAXI@Z 00407200 f browser.obj - 0001:00006230 ??_EBRWC@@UAEPAXI@Z 00407230 f browser.obj - 0001:00006230 ??_GBRWC@@UAEPAXI@Z 00407230 f browser.obj - 0001:00006260 ??_EBRWM@@UAEPAXI@Z 00407260 f browser.obj - 0001:00006260 ??_GBRWM@@UAEPAXI@Z 00407260 f browser.obj - 0001:00006290 ??_GBRWI@@UAEPAXI@Z 00407290 f browser.obj - 0001:00006290 ??_EBRWI@@UAEPAXI@Z 00407290 f browser.obj - 0001:000062b0 ??_EBRWR@@UAEPAXI@Z 004072b0 f browser.obj - 0001:000062b0 ??_GBRWR@@UAEPAXI@Z 004072b0 f browser.obj - 0001:000062d0 ??_EFNET@@UAEPAXI@Z 004072d0 f browser.obj - 0001:000062d0 ??_GFNET@@UAEPAXI@Z 004072d0 f browser.obj - 0001:00006330 ??_EBRCNL@@MAEPAXI@Z 00407330 f browser.obj - 0001:00006330 ??_GBRCNL@@MAEPAXI@Z 00407330 f browser.obj - 0001:00006350 ??_9@$BBCE@A 00407350 f browser.obj - 0001:00006360 ??_9@$BBCI@A 00407360 f browser.obj - 0001:00006370 ??_9@$BBCM@A 00407370 f browser.obj - 0001:00006380 ??_9@$BBDA@A 00407380 f browser.obj - 0001:00006390 ??_9@$BBDE@A 00407390 f browser.obj - 0001:000063a0 ?Pcmm@BRWD@@MAEPAUCMM@CMH@@XZ 004073a0 f browser.obj - 0001:000063b0 ?_Cthum@BRWD@@MAEJXZ 004073b0 f browser.obj - 0001:000063c0 ?_FSetThumFrame@BRWD@@MAEHJPAVGOB@@@Z 004073c0 f browser.obj - 0001:000063d0 ?_FClearHelp@BRWD@@MAEHJ@Z 004073d0 f browser.obj - 0001:000063e0 ?_ReleaseThumFrame@BRWD@@MAEXJ@Z 004073e0 f browser.obj - 0001:000063f0 ?_IthumFromThum@BRWD@@MAEJJJ@Z 004073f0 f browser.obj - 0001:00006400 ?_ApplySelection@BRWD@@MAEXJJ@Z 00407400 f browser.obj - 0001:00006410 ?_ProcessSelection@BRWD@@MAEXXZ 00407410 f browser.obj - 0001:00006420 ?_FUpdateLists@BRWD@@MAEHXZ 00407420 f browser.obj - 0001:00006430 ?_SetCbPcrmMin@BRWD@@MAEXXZ 00407430 f browser.obj - 0001:00006440 ?FCmdDel@BRWD@@UAEHPAUCMD@@@Z 00407440 f browser.obj - 0001:00006450 ?FCmdFile@BRWD@@UAEHPAUCMD@@@Z 00407450 f browser.obj - 0001:00006460 ?FCmdChangeCel@BRWD@@UAEHPAUCMD@@@Z 00407460 f browser.obj - 0001:00006470 ?_Cthum@BRWL@@MAEJXZ 00407470 f browser.obj - 0001:00006480 ?_FUpdateLists@BRWL@@MAEHXZ 00407480 f browser.obj - 0001:00006490 ?_Cthum@BRWT@@MAEJXZ 00407490 f browser.obj - 0001:000064a0 ?_ReleaseThumFrame@BRWT@@MAEXJ@Z 004074a0 f browser.obj - 0001:000064b0 ?_Cthum@BRWN@@MAEJXZ 004074b0 f browser.obj - 0001:000064c0 ?_SetCbPcrmMin@BRWC@@MAEXXZ 004074c0 f browser.obj - 0001:00006570 ?FWouldBe@APP@@SGHJ@Z 00407570 f utest.obj - 0001:00006590 ?FIs@APP@@UAEHJ@Z 00407590 f utest.obj - 0001:000065a0 ?Cls@APP@@UAEJXZ 004075a0 f utest.obj - 0001:000065b0 ?FWouldBe@KWA@@SGHJ@Z 004075b0 f utest.obj - 0001:000065d0 ?FIs@KWA@@UAEHJ@Z 004075d0 f utest.obj - 0001:000065e0 ?Cls@KWA@@UAEJXZ 004075e0 f utest.obj - 0001:000065f0 ?FrameMain@@YGXXZ 004075f0 f utest.obj - 0001:00006610 ?Run@APP@@UAEXKKJ@Z 00407610 f utest.obj - 0001:000066d0 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 004076d0 f utest.obj - 0001:00006730 ?_FInit@APP@@MAEHKKJ@Z 00407730 f utest.obj - 0001:00006ad0 ?_CleanupTemp@APP@@IAEXXZ 00407ad0 f utest.obj - 0001:00006ba0 ?_FAppAlreadyRunning@APP@@IAEHXZ 00407ba0 f utest.obj - 0001:00006c00 ?_TryToActivateWindow@APP@@IAEXXZ 00407c00 f utest.obj - 0001:00006cc0 ?_FEnsureOS@APP@@IAEHXZ 00407cc0 f utest.obj - 0001:00006d20 ?_FEnsureAudio@APP@@IAEHXZ 00407d20 f utest.obj - 0001:00006eb0 ?_FEnsureVideo@APP@@IAEHXZ 00407eb0 f utest.obj - 0001:00006f10 ?_FEnsureColorDepth@APP@@IAEHXZ 00407f10 f utest.obj - 0001:00007020 ?_FEnsureDisplayResolution@APP@@IAEHXZ 00408020 f utest.obj - 0001:00007190 ?_FDisplayIs640480@APP@@IAEHXZ 00408190 f utest.obj - 0001:000071c0 ?_FInitOS@APP@@MAEHXZ 004081c0 f utest.obj - 0001:000073e0 ?_GetWindowProps@APP@@IAEXPAJ000PAK@Z 004083e0 f utest.obj - 0001:000074d0 ?_RebuildMainWindow@APP@@IAEXXZ 004084d0 f utest.obj - 0001:00007550 ?_FOpenResourceFile@APP@@IAEHXZ 00408550 f utest.obj - 0001:00007670 ?_FCantFindFileDialog@APP@@IAEHPAVSTN@@@Z 00408670 f utest.obj - 0001:000076e0 ?_FGetUserDirectories@APP@@IAEHXZ 004086e0 f utest.obj - 0001:00007a30 ?_FGetUserName@APP@@IAEHXZ 00408a30 f utest.obj - 0001:00007b90 ?_FReadUserData@APP@@IAEHXZ 00408b90 f utest.obj - 0001:00007c10 ?_FWriteUserData@APP@@IAEHXZ 00408c10 f utest.obj - 0001:00007c70 ?FGetSetRegKey@APP@@QAEHPADPAXJKPAH@Z 00408c70 f utest.obj - 0001:00007dc0 ?_FDisplayHomeLogo@APP@@IAEHXZ 00408dc0 f utest.obj - 0001:00007ec0 ?_FInitProductNames@APP@@IAEHXZ 00408ec0 f utest.obj - 0001:00007fb0 ?_FReadTitlesFromReg@APP@@IAEHPAPAVGST@@@Z 00408fb0 f utest.obj - 0001:00008140 ?_FInitTdt@APP@@IAEHXZ 00409140 f utest.obj - 0001:00008180 ?_PgstRead@APP@@IAEPAVGST@@K@Z 00409180 f utest.obj - 0001:00008250 ?_FReadStringTables@APP@@IAEHXZ 00409250 f utest.obj - 0001:000082b0 ?_FInitKidworld@APP@@IAEHXZ 004092b0 f utest.obj - 0001:00008350 ?_FShowSplashScreen@APP@@IAEHXZ 00409350 f utest.obj - 0001:000083f0 ?_FPlaySplashSound@APP@@IAEHXZ 004093f0 f utest.obj - 0001:00008450 ?_FInitCrm@APP@@IAEHXZ 00409450 f utest.obj - 0001:000085c0 ?_FAddToCrm@APP@@IAEHPAVGST@@PAVCRM@@PAVGL@@@Z 004095c0 f utest.obj - 0001:00008730 ?_FInitBuilding@APP@@IAEHXZ 00409730 f utest.obj - 0001:00008870 ?_FInitStudio@APP@@IAEHPAVFNI@@H@Z 00409870 f utest.obj - 0001:00008980 ?_FDetermineIfSlowCPU@APP@@IAEHXZ 00409980 f utest.obj - 0001:000089e0 ?_ParseCommandLine@APP@@IAEXXZ 004099e0 f utest.obj - 0001:00008db0 ?_FEnsureProductNames@APP@@IAEHXZ 00409db0 f utest.obj - 0001:00008e70 ?_FFindMsKidsDir@APP@@IAEHXZ 00409e70 f utest.obj - 0001:00009010 ?_FFindProductDir@APP@@IAEHPAVGST@@@Z 0040a010 f utest.obj - 0001:00009140 ?_FQueryProductExists@APP@@IAEHPAVSTN@@0PAVFNI@@@Z 0040a140 f utest.obj - 0001:000092b0 ?_SkipToSpace@APP@@IAEXPAPAD@Z 0040a2b0 f utest.obj - 0001:000092e0 ?_SkipSpace@APP@@IAEXPAPAD@Z 0040a2e0 f utest.obj - 0001:00009300 ?_Activate@APP@@MAEXH@Z 0040a300 f utest.obj - 0001:00009430 ?FCmdDeactivate@APP@@QAEHPAUCMD@@@Z 0040a430 f utest.obj - 0001:00009720 ?_CopyPixels@APP@@MAEXPAVGNV@@PAVRC@@01@Z 0040a720 f utest.obj - 0001:00009a30 ?FCmdLoadStudio@APP@@QAEHPAUCMD@@@Z 0040aa30 f utest.obj - 0001:00009b10 ?FCmdLoadBuilding@APP@@QAEHPAUCMD@@@Z 0040ab10 f utest.obj - 0001:00009bc0 ?FCmdExitStudio@APP@@QAEHPAUCMD@@@Z 0040abc0 f utest.obj - 0001:00009cb0 ?PclokAnim@WOKS@@UAEPAVCLOK@@XZ 0040acb0 f utest.obj - 0001:00009cc0 ?PclokNoSlip@WOKS@@UAEPAVCLOK@@XZ 0040acc0 f utest.obj - 0001:00009cd0 ?PclokGen@WOKS@@UAEPAVCLOK@@XZ 0040acd0 f utest.obj - 0001:00009ce0 ?FCmdTheaterOpen@APP@@QAEHPAUCMD@@@Z 0040ace0 f utest.obj - 0001:00009d40 ?PclokReset@WOKS@@UAEPAVCLOK@@XZ 0040ad40 f utest.obj - 0001:00009d50 ?FCmdTheaterClose@APP@@QAEHPAUCMD@@@Z 0040ad50 f utest.obj - 0001:00009d80 ?FCmdPortfolioClear@APP@@QAEHPAUCMD@@@Z 0040ad80 f utest.obj - 0001:00009da0 ?FCmdPortfolioOpen@APP@@QAEHPAUCMD@@@Z 0040ada0 f utest.obj - 0001:00009ef0 ?OnnDefVariable@APP@@UAEJXZ 0040aef0 f utest.obj - 0001:00009f60 ?FGetOnn@APP@@QAEHPAVSTN@@PAJ@Z 0040af60 f utest.obj - 0001:00009fd0 ?MemStat@APP@@QAEXPAJ0@Z 0040afd0 f utest.obj - 0001:0000a010 ?DypTextDef@APP@@UAEJXZ 0040b010 f utest.obj - 0001:0000a080 ?TQuerySaveDoc@APP@@UAEHPAVDOCB@@H@Z 0040b080 f utest.obj - 0001:0000a160 ?Quit@APP@@UAEXH@Z 0040b160 f utest.obj - 0001:0000a290 ?_Pmvie@APP@@IAEPAVMVIE@@XZ 0040b290 f utest.obj - 0001:0000a2f0 ?LoadGenResource@@YGPADPAUHINSTANCE__@@PAD1@Z 0040b2f0 f utest.obj - 0001:0000a330 ?FCmdInfo@APP@@QAEHPAUCMD@@@Z 0040b330 f utest.obj - 0001:0000a600 ?_FDisplaySwitchSupported@APP@@IAEHXZ 0040b600 f utest.obj - 0001:0000a620 ?_FSwitch640480@APP@@IAEHH@Z 0040b620 f utest.obj - 0001:0000a720 ?_CleanUp@APP@@MAEXXZ 0040b720 f utest.obj - 0001:0000a940 ?TModal@APP@@QAEHPAVRCA@@JPAVSTN@@JJ1@Z 0040b940 f utest.obj - 0001:0000aa80 ?FInsertCD@APP@@SGHPAVSTN@@@Z 0040ba80 f utest.obj - 0001:0000ab00 ?DisplayErrors@APP@@QAEXXZ 0040bb00 f utest.obj - 0001:0000b0e0 ?FCmdIdle@APP@@UAEHPAUCMD@@@Z 0040c0e0 f utest.obj - 0001:0000b150 ?_FSendOpenDocCmd@APP@@IAEHPAUHWND__@@PAVFNI@@@Z 0040c150 f utest.obj - 0001:0000b2e0 ?_FProcessOpenDocCmd@APP@@IAEHXZ 0040c2e0 f utest.obj - 0001:0000b510 ?_FGetNextEvt@APP@@MAEHPAUtagMSG@@@Z 0040c510 f utest.obj - 0001:0000b560 ?_FastUpdate@APP@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0040c560 f utest.obj - 0001:0000b5d0 ?UpdateHwnd@APP@@UAEXPAUHWND__@@PAVRC@@K@Z 0040c5d0 f utest.obj - 0001:0000b640 ?_FFrameWndProc@APP@@MAEHPAUHWND__@@IIJPAJ@Z 0040c640 f utest.obj - 0001:0000b8f0 ?FAllowScreenSaver@APP@@UAEHXZ 0040c8f0 f utest.obj - 0001:0000b910 ?DisableAccel@APP@@QAEXXZ 0040c910 f utest.obj - 0001:0000b940 ?EnableAccel@APP@@QAEXXZ 0040c940 f utest.obj - 0001:0000b960 ?FCmdDisableAccel@APP@@QAEHPAUCMD@@@Z 0040c960 f utest.obj - 0001:0000b970 ?FCmdEnableAccel@APP@@QAEHPAUCMD@@@Z 0040c970 f utest.obj - 0001:0000b980 ?FCmdInvokeSplot@APP@@QAEHPAUCMD@@@Z 0040c980 f utest.obj - 0001:0000b9c0 ?HandoffMovie@APP@@QAEXPAVMVIE@@@Z 0040c9c0 f utest.obj - 0001:0000b9f0 ?PmvieRetrieve@APP@@QAEPAVMVIE@@XZ 0040c9f0 f utest.obj - 0001:0000ba10 ??1KWA@@UAE@XZ 0040ca10 f utest.obj - 0001:0000ba40 ?SetMbmp@KWA@@QAEXPAVMBMP@@@Z 0040ca40 f utest.obj - 0001:0000baa0 ?Draw@KWA@@UAEXPAVGNV@@PAVRC@@@Z 0040caa0 f utest.obj - 0001:0000bac0 ?FFindFile@KWA@@UAEHPAVSTN@@PAVFNI@@@Z 0040cac0 f utest.obj - 0001:0000baf0 ?FModalTopic@KWA@@UAEHPAVRCA@@KPAJ@Z 0040caf0 f utest.obj - 0001:0000bba0 ??_EKWA@@UAEPAXI@Z 0040cba0 f utest.obj - 0001:0000bba0 ??_GKWA@@UAEPAXI@Z 0040cba0 f utest.obj - 0001:0000bbc0 ??_GAPP@@UAEPAXI@Z 0040cbc0 f utest.obj - 0001:0000bbc0 ??_EAPP@@UAEPAXI@Z 0040cbc0 f utest.obj - 0001:0000bc20 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 0040cc20 f utest.obj - 0001:0000bc30 ?_FInitMenu@APP@@MAEHXZ 0040cc30 f utest.obj - 0001:0000bc40 ?FWouldBe@SSCB@@SGHJ@Z 0040cc40 f stdioscb.obj - 0001:0000bc60 ?FIs@SSCB@@UAEHJ@Z 0040cc60 f stdioscb.obj - 0001:0000bc70 ?Cls@SSCB@@UAEJXZ 0040cc70 f stdioscb.obj - 0001:0000bc80 ??0SSCB@@IAE@PAVMVIE@@@Z 0040cc80 f stdioscb.obj - 0001:0000bca0 ?PsscbNew@SSCB@@SGPAV1@PAVMVIE@@@Z 0040cca0 f stdioscb.obj - 0001:0000be30 ??1SSCB@@UAE@XZ 0040ce30 f stdioscb.obj - 0001:0000be50 ?FCmdScroll@SSCB@@QAEHPAUCMD@@@Z 0040ce50 f stdioscb.obj - 0001:0000c280 ?_CxScrollbar@SSCB@@AAEJJJ@Z 0040d280 f stdioscb.obj - 0001:0000c310 ?Update@SSCB@@UAEXXZ 0040d310 f stdioscb.obj - 0001:0000c540 ?SetMvie@SSCB@@QAEXPAVMVIE@@@Z 0040d540 f stdioscb.obj - 0001:0000c550 ?StartNoAutoadjust@SSCB@@QAEXXZ 0040d550 f stdioscb.obj - 0001:0000c570 ?SetSndFrame@SSCB@@QAEXH@Z 0040d570 f stdioscb.obj - 0001:0000c5d0 ??_ESSCB@@UAEPAXI@Z 0040d5d0 f stdioscb.obj - 0001:0000c5d0 ??_GSSCB@@UAEPAXI@Z 0040d5d0 f stdioscb.obj - 0001:0000c740 ?FCmdBrowserReady@STDIO@@QAEHPAUCMD@@@Z 0040d740 f stdiobrw.obj - 0001:0000ce90 ?ReleaseBrcn@STDIO@@QAEXXZ 0040de90 f stdiobrw.obj - 0001:0000cf00 ?_PbrcnFromBrwdid@STDIO@@IAEPAVBRCN@@J@Z 0040df00 f stdiobrw.obj - 0001:0000cf60 ?_ApplySelection@BRWC@@MAEXJJ@Z 0040df60 f stdiobrw.obj - 0001:0000cfb0 ?_ApplySelection@BRWB@@MAEXJJ@Z 0040dfb0 f stdiobrw.obj - 0001:0000d060 ?_ApplySelection@BRWP@@MAEXJJ@Z 0040e060 f stdiobrw.obj - 0001:0000d0d0 ?_ApplySelection@BRWA@@MAEXJJ@Z 0040e0d0 f stdiobrw.obj - 0001:0000d170 ?_ApplySelection@BRWM@@MAEXJJ@Z 0040e170 f stdiobrw.obj - 0001:0000d2d0 ?_ApplySelection@BRWI@@MAEXJJ@Z 0040e2d0 f stdiobrw.obj - 0001:0000d3c0 ?_ApplySelection@BRWR@@MAEXJJ@Z 0040e3c0 f stdiobrw.obj - 0001:0000d5c0 ?FWouldBe@STDIO@@SGHJ@Z 0040e5c0 f studio.obj - 0001:0000d5e0 ?FIs@STDIO@@UAEHJ@Z 0040e5e0 f studio.obj - 0001:0000d5f0 ?Cls@STDIO@@UAEJXZ 0040e5f0 f studio.obj - 0001:0000d600 ?FWouldBe@SMCC@@SGHJ@Z 0040e600 f studio.obj - 0001:0000d620 ?FIs@SMCC@@UAEHJ@Z 0040e620 f studio.obj - 0001:0000d630 ?Cls@SMCC@@UAEJXZ 0040e630 f studio.obj - 0001:0000d640 ?PstdioNew@STDIO@@SGPAV1@JPAVCRM@@PAVFNI@@H@Z 0040e640 f studio.obj - 0001:0000d7c0 ??1STDIO@@UAE@XZ 0040e7c0 f studio.obj - 0001:0000d8c0 ?_FOpenStudio@STDIO@@IAEHH@Z 0040e8c0 f studio.obj - 0001:0000daf0 ?FCmdLoadProjectMovie@STDIO@@QAEHPAUCMD@@@Z 0040eaf0 f studio.obj - 0001:0000dc30 ?FLoadMovie@STDIO@@QAEHPAVFNI@@K@Z 0040ec30 f studio.obj - 0001:0000dc80 ?_FLoadMovie@STDIO@@IAEHPAVFNI@@KPAH@Z 0040ec80 f studio.obj - 0001:0000de70 ?FSetMovie@STDIO@@QAEHPAVMVIE@@@Z 0040ee70 f studio.obj - 0001:0000e080 ?FCmdXYAxis@STDIO@@QAEHPAUCMD@@@Z 0040f080 f studio.obj - 0001:0000e120 ?FCmdXZAxis@STDIO@@QAEHPAUCMD@@@Z 0040f120 f studio.obj - 0001:0000e1c0 ?FCmdSetTool@STDIO@@QAEHPAUCMD@@@Z 0040f1c0 f studio.obj - 0001:0000e490 ?FCmdPlay@STDIO@@QAEHPAUCMD@@@Z 0040f490 f studio.obj - 0001:0000e5a0 ?FCmdNewScene@STDIO@@QAEHPAUCMD@@@Z 0040f5a0 f studio.obj - 0001:0000e620 ?FCmdRespectGround@STDIO@@QAEHPAUCMD@@@Z 0040f620 f studio.obj - 0001:0000e690 ?FCmdPause@STDIO@@QAEHPAUCMD@@@Z 0040f690 f studio.obj - 0001:0000e700 ?FCmdOpen@STDIO@@QAEHPAUCMD@@@Z 0040f700 f studio.obj - 0001:0000e850 ?FCmdScroll@STDIO@@QAEHPAUCMD@@@Z 0040f850 f studio.obj - 0001:0000e890 ?FCmdSooner@STDIO@@QAEHPAUCMD@@@Z 0040f890 f studio.obj - 0001:0000e900 ?FCmdLater@STDIO@@QAEHPAUCMD@@@Z 0040f900 f studio.obj - 0001:0000e970 ?FCmdNewSpletter@STDIO@@QAEHPAUCMD@@@Z 0040f970 f studio.obj - 0001:0000ea70 ?FCmdOpenSoundRecord@STDIO@@QAEHPAUCMD@@@Z 0040fa70 f studio.obj - 0001:0000ead0 ?SceneChange@STDIO@@QAEXXZ 0040fad0 f studio.obj - 0001:0000eae0 ?FCmdCreatePopup@STDIO@@QAEHPAUCMD@@@Z 0040fae0 f studio.obj - 0001:0000ecf0 ?FCmdTextSetBkgdColor@STDIO@@QAEHPAUCMD@@@Z 0040fcf0 f studio.obj - 0001:0000ed50 ?FCmdTextSetColor@STDIO@@QAEHPAUCMD@@@Z 0040fd50 f studio.obj - 0001:0000edb0 ?FCmdTextSetSize@STDIO@@QAEHPAUCMD@@@Z 0040fdb0 f studio.obj - 0001:0000edf0 ?FCmdTextSetStyle@STDIO@@QAEHPAUCMD@@@Z 0040fdf0 f studio.obj - 0001:0000ee40 ?FCmdTextSetFont@STDIO@@QAEHPAUCMD@@@Z 0040fe40 f studio.obj - 0001:0000ee80 ?SetCurs@STDIO@@QAEXJ@Z 0040fe80 f studio.obj - 0001:0000f130 ?PlayStopped@STDIO@@QAEXXZ 00410130 f studio.obj - 0001:0000f1d0 ?ChangeTool@STDIO@@QAEXJ@Z 004101d0 f studio.obj - 0001:0000f310 ?SceneNuked@STDIO@@QAEXXZ 00410310 f studio.obj - 0001:0000f370 ?SceneUnnuked@STDIO@@QAEXXZ 00410370 f studio.obj - 0001:0000f3d0 ?ActorNuked@STDIO@@QAEXXZ 004103d0 f studio.obj - 0001:0000f3f0 ?_SetToolStates@STDIO@@IAEXXZ 004103f0 f studio.obj - 0001:0000f5e0 ?EnableActorTools@STDIO@@QAEXXZ 004105e0 f studio.obj - 0001:0000f630 ?EnableTboxTools@STDIO@@QAEXXZ 00410630 f studio.obj - 0001:0000f680 ?TboxSelected@STDIO@@QAEXXZ 00410680 f studio.obj - 0001:0000f690 ?SetUndo@STDIO@@QAEXJ@Z 00410690 f studio.obj - 0001:0000f6f0 ?ActorEasel@STDIO@@QAEXPAH@Z 004106f0 f studio.obj - 0001:0000f720 ?FCmdActorEaselOpen@STDIO@@QAEHPAUCMD@@@Z 00410720 f studio.obj - 0001:0000f810 ?PauseType@STDIO@@QAEXW4WIT@@@Z 00410810 f studio.obj - 0001:0000f8c0 ?Recording@STDIO@@QAEXHH@Z 004108c0 f studio.obj - 0001:0000f910 ?StartSoonerLater@STDIO@@QAEXXZ 00410910 f studio.obj - 0001:0000f9b0 ?EndSoonerLater@STDIO@@QAEXXZ 004109b0 f studio.obj - 0001:0000fa30 ?NewActor@STDIO@@QAEXXZ 00410a30 f studio.obj - 0001:0000fbd0 ?FAddCmg@STDIO@@QAEHKK@Z 00410bd0 f studio.obj - 0001:0000fc00 ?CnoGokdFromCnoTmpl@STDIO@@QAEKK@Z 00410c00 f studio.obj - 0001:0000fc60 ?StartActionBrowser@STDIO@@QAEXXZ 00410c60 f studio.obj - 0001:0000fcc0 ?StartListenerEasel@STDIO@@QAEXXZ 00410cc0 f studio.obj - 0001:0000fcf0 ?FCmdListenerEaselOpen@STDIO@@QAEHPAUCMD@@@Z 00410cf0 f studio.obj - 0001:0000fd20 ?FShutdown@STDIO@@QAEHH@Z 00410d20 f studio.obj - 0001:0000fd70 ?PauseActionButton@STDIO@@SGXXZ 00410d70 f studio.obj - 0001:0000fdb0 ?ResumeActionButton@STDIO@@SGXXZ 00410db0 f studio.obj - 0001:0000fdf0 ?PlayUISound@STDIO@@QAEXJJ@Z 00410df0 f studio.obj - 0001:000100b0 ?StopUISound@STDIO@@QAEXXZ 004110b0 f studio.obj - 0001:000100e0 ?GetStnMisc@STDIO@@QAEXJPAVSTN@@@Z 004110e0 f studio.obj - 0001:00010100 ?FCmdToggleXY@STDIO@@QAEHPAUCMD@@@Z 00411100 f studio.obj - 0001:00010150 ?FCmdHelpBook@STDIO@@QAEHPAUCMD@@@Z 00411150 f studio.obj - 0001:000101a0 ?FCmdMovieGoto@STDIO@@QAEHPAUCMD@@@Z 004111a0 f studio.obj - 0001:000101c0 ?FCmdSoundsEnabled@STDIO@@QAEHPAUCMD@@@Z 004111c0 f studio.obj - 0001:000101f0 ?FCmdCreateTbox@STDIO@@QAEHPAUCMD@@@Z 004111f0 f studio.obj - 0001:00010250 ?UpdateTitle@STDIO@@QAEXPAVSTN@@@Z 00411250 f studio.obj - 0001:000102f0 ??0SMCC@@QAE@JJJPAVSSCB@@PAVSTDIO@@@Z 004112f0 f studio.obj - 0001:00010340 ?UpdateRollCall@SMCC@@UAEXXZ 00411340 f studio.obj - 0001:000103c0 ?DypTboxDef@SMCC@@UAEJXZ 004113c0 f studio.obj - 0001:00010420 ?FQueryPurgeSounds@SMCC@@UAEHXZ 00411420 f studio.obj - 0001:00010550 ??_GSTDIO@@UAEPAXI@Z 00411550 f studio.obj - 0001:00010550 ??_ESTDIO@@UAEPAXI@Z 00411550 f studio.obj - 0001:00010570 ??_GSMCC@@UAEPAXI@Z 00411570 f studio.obj - 0001:00010570 ??_ESMCC@@UAEPAXI@Z 00411570 f studio.obj - 0001:000105b0 ?Pcmm@STDIO@@MAEPAUCMM@CMH@@XZ 004115b0 f studio.obj - 0001:000105c0 ?Dxp@SMCC@@UAEJXZ 004115c0 f studio.obj - 0001:000105d0 ?Dyp@SMCC@@UAEJXZ 004115d0 f studio.obj - 0001:000105e0 ?CbCache@SMCC@@UAEJXZ 004115e0 f studio.obj - 0001:000105f0 ?Psscb@SMCC@@UAEPAVSSCB@@XZ 004115f0 f studio.obj - 0001:00010600 ?SetCurs@SMCC@@UAEXJ@Z 00411600 f studio.obj - 0001:00010610 ?ActorSelected@SMCC@@UAEXJ@Z 00411610 f studio.obj - 0001:00010630 ?UpdateAction@SMCC@@UAEXXZ 00411630 f studio.obj - 0001:00010640 ?UpdateScrollbars@SMCC@@UAEXXZ 00411640 f studio.obj - 0001:00010650 ?SetSscb@SMCC@@UAEXPAVSSCB@@@Z 00411650 f studio.obj - 0001:00010680 ?PlayStopped@SMCC@@UAEXXZ 00411680 f studio.obj - 0001:00010690 ?ChangeTool@SMCC@@UAEXJ@Z 00411690 f studio.obj - 0001:000106a0 ?SceneNuked@SMCC@@UAEXXZ 004116a0 f studio.obj - 0001:000106b0 ?SceneUnnuked@SMCC@@UAEXXZ 004116b0 f studio.obj - 0001:000106c0 ?ActorNuked@SMCC@@UAEXXZ 004116c0 f studio.obj - 0001:000106d0 ?EnableActorTools@SMCC@@UAEXXZ 004116d0 f studio.obj - 0001:000106e0 ?EnableTboxTools@SMCC@@UAEXXZ 004116e0 f studio.obj - 0001:000106f0 ?TboxSelected@SMCC@@UAEXXZ 004116f0 f studio.obj - 0001:00010700 ?ActorEasel@SMCC@@UAEXPAH@Z 00411700 f studio.obj - 0001:00010710 ?SetUndo@SMCC@@UAEXJ@Z 00411710 f studio.obj - 0001:00010720 ?SceneChange@SMCC@@UAEXXZ 00411720 f studio.obj - 0001:00010730 ?PauseType@SMCC@@UAEXW4WIT@@@Z 00411730 f studio.obj - 0001:00010740 ?Recording@SMCC@@UAEXHH@Z 00411740 f studio.obj - 0001:00010760 ?StartSoonerLater@SMCC@@UAEXXZ 00411760 f studio.obj - 0001:00010770 ?EndSoonerLater@SMCC@@UAEXXZ 00411770 f studio.obj - 0001:00010780 ?NewActor@SMCC@@UAEXXZ 00411780 f studio.obj - 0001:00010790 ?StartActionBrowser@SMCC@@UAEXXZ 00411790 f studio.obj - 0001:000107a0 ?StartListenerEasel@SMCC@@UAEXXZ 004117a0 f studio.obj - 0001:000107b0 ?GetFniSave@SMCC@@UAEHPAVFNI@@JJJPADPAVSTN@@@Z 004117b0 f studio.obj - 0001:000107f0 ?PlayUISound@SMCC@@UAEXJJ@Z 004117f0 f studio.obj - 0001:00010810 ?StopUISound@SMCC@@UAEXXZ 00411810 f studio.obj - 0001:00010820 ?UpdateTitle@SMCC@@UAEXPAVSTN@@@Z 00411820 f studio.obj - 0001:00010830 ?EnableAccel@SMCC@@UAEXXZ 00411830 f studio.obj - 0001:00010840 ?DisableAccel@SMCC@@UAEXXZ 00411840 f studio.obj - 0001:00010850 ?GetStn@SMCC@@UAEXJPAVSTN@@@Z 00411850 f studio.obj - 0001:00010880 ?SetSndFrame@SMCC@@UAEXH@Z 00411880 f studio.obj - 0001:00010890 ?FMinimized@SMCC@@UAEHXZ 00411890 f studio.obj - 0001:000108b0 ?FWouldBe@TGOB@@SGHJ@Z 004118b0 f tgob.obj - 0001:000108d0 ?FIs@TGOB@@UAEHJ@Z 004118d0 f tgob.obj - 0001:000108e0 ?Cls@TGOB@@UAEJXZ 004118e0 f tgob.obj - 0001:000108f0 ??0TGOB@@QAE@PAUGCB@@@Z 004118f0 f tgob.obj - 0001:00010960 ?Draw@TGOB@@UAEXPAVGNV@@PAVRC@@@Z 00411960 f tgob.obj - 0001:00010b30 ?PtgobCreate@TGOB@@SGPAV1@JJJJ@Z 00411b30 f tgob.obj - 0001:00010c50 ?SetAlign@TGOB@@QAEXJJ@Z 00411c50 f tgob.obj - 0001:00010c90 ??_GTGOB@@MAEPAXI@Z 00411c90 f tgob.obj - 0001:00010c90 ??_ETGOB@@MAEPAXI@Z 00411c90 f tgob.obj - 0001:00010e10 ?FWouldBe@ESL@@SGHJ@Z 00411e10 f esl.obj - 0001:00010e30 ?FIs@ESL@@UAEHJ@Z 00411e30 f esl.obj - 0001:00010e40 ?Cls@ESL@@UAEJXZ 00411e40 f esl.obj - 0001:00010e50 ?FWouldBe@ESLT@@SGHJ@Z 00411e50 f esl.obj - 0001:00010e70 ?FIs@ESLT@@UAEHJ@Z 00411e70 f esl.obj - 0001:00010e80 ?Cls@ESLT@@UAEJXZ 00411e80 f esl.obj - 0001:00010e90 ?FWouldBe@ESLA@@SGHJ@Z 00411e90 f esl.obj - 0001:00010eb0 ?FIs@ESLA@@UAEHJ@Z 00411eb0 f esl.obj - 0001:00010ec0 ?Cls@ESLA@@UAEJXZ 00411ec0 f esl.obj - 0001:00010ed0 ?FWouldBe@SNE@@SGHJ@Z 00411ed0 f esl.obj - 0001:00010ef0 ?FIs@SNE@@UAEHJ@Z 00411ef0 f esl.obj - 0001:00010f00 ?Cls@SNE@@UAEJXZ 00411f00 f esl.obj - 0001:00010f10 ?FWouldBe@ESLL@@SGHJ@Z 00411f10 f esl.obj - 0001:00010f30 ?FIs@ESLL@@UAEHJ@Z 00411f30 f esl.obj - 0001:00010f40 ?Cls@ESLL@@UAEJXZ 00411f40 f esl.obj - 0001:00010f50 ?FWouldBe@LSND@@SGHJ@Z 00411f50 f esl.obj - 0001:00010f70 ?FIs@LSND@@UAEHJ@Z 00411f70 f esl.obj - 0001:00010f80 ?Cls@LSND@@UAEJXZ 00411f80 f esl.obj - 0001:00010f90 ?FWouldBe@ESLR@@SGHJ@Z 00411f90 f esl.obj - 0001:00010fb0 ?FIs@ESLR@@UAEHJ@Z 00411fb0 f esl.obj - 0001:00010fc0 ?Cls@ESLR@@UAEJXZ 00411fc0 f esl.obj - 0001:00010fd0 ?FBuildGcb@@YGHPAUGCB@@JJ@Z 00411fd0 f esl.obj - 0001:00011030 ?SetGokState@@YGXJJ@Z 00412030 f esl.obj - 0001:00011090 ?_FInit@ESL@@IAEHPAVRCA@@J@Z 00412090 f esl.obj - 0001:000110f0 ??1ESL@@UAE@XZ 004120f0 f esl.obj - 0001:00011120 ?FCmdDismiss@ESL@@QAEHPAUCMD@@@Z 00412120 f esl.obj - 0001:00011170 ?PesltNew@ESLT@@SGPAV1@PAVRCA@@PAVMVIE@@PAVACTR@@PAVSTN@@JPAUTAG@@@Z 00412170 f esl.obj - 0001:00011240 ?_FInit@ESLT@@IAEHPAVRCA@@JPAVMVIE@@PAVACTR@@PAVSTN@@JPAUTAG@@@Z 00412240 f esl.obj - 0001:000115d0 ??1ESLT@@UAE@XZ 004125d0 f esl.obj - 0001:00011660 ?FCmdRotate@ESLT@@QAEHPAUCMD@@@Z 00412660 f esl.obj - 0001:00011680 ?FCmdTransmogrify@ESLT@@QAEHPAUCMD@@@Z 00412680 f esl.obj - 0001:00011820 ?FCmdStartPopup@ESLT@@QAEHPAUCMD@@@Z 00412820 f esl.obj - 0001:00011930 ?FCmdSetFont@ESLT@@QAEHPAUCMD@@@Z 00412930 f esl.obj - 0001:000119d0 ?FCmdSetShape@ESLT@@QAEHPAUCMD@@@Z 004129d0 f esl.obj - 0001:00011a20 ?FCmdSetColor@ESLT@@QAEHPAUCMD@@@Z 00412a20 f esl.obj - 0001:00011a80 ?FTextChanged@ESLT@@QAEHPAVSTN@@@Z 00412a80 f esl.obj - 0001:00011aa0 ?_FAcceptChanges@ESLT@@MAEHPAH@Z 00412aa0 f esl.obj - 0001:00011de0 ?PsneNew@SNE@@SGPAV1@PAVEDPAR@@PAVESLT@@PAVSTN@@@Z 00412de0 f esl.obj - 0001:00011e50 ?FReplace@SNE@@UAEHPADJJJJ@Z 00412e50 f esl.obj - 0001:00011f40 ?PeslaNew@ESLA@@SGPAV1@PAVRCA@@PAVMVIE@@PAVACTR@@@Z 00412f40 f esl.obj - 0001:00012000 ?_FInit@ESLA@@IAEHPAVRCA@@JPAVMVIE@@PAVACTR@@@Z 00413000 f esl.obj - 0001:00012220 ??1ESLA@@UAE@XZ 00413220 f esl.obj - 0001:00012230 ?FCmdRotate@ESLA@@QAEHPAUCMD@@@Z 00413230 f esl.obj - 0001:00012250 ?FCmdTool@ESLA@@QAEHPAUCMD@@@Z 00413250 f esl.obj - 0001:000122a0 ?_FAcceptChanges@ESLA@@MAEHPAH@Z 004132a0 f esl.obj - 0001:00012440 ?PesllNew@ESLL@@SGPAV1@PAVRCA@@PAVMVIE@@PAVACTR@@@Z 00413440 f esl.obj - 0001:000125a0 ?_FInit@ESLL@@IAEHPAVRCA@@JPAVMVIE@@PAVACTR@@@Z 004135a0 f esl.obj - 0001:00012920 ?FValidSnd@LSND@@QAEHXZ 00413920 f esl.obj - 0001:000129b0 ??1ESLL@@UAE@XZ 004139b0 f esl.obj - 0001:00012a00 ?FCmdVlm@ESLL@@QAEHPAUCMD@@@Z 00413a00 f esl.obj - 0001:00012a80 ?FCmdPlay@ESLL@@QAEHPAUCMD@@@Z 00413a80 f esl.obj - 0001:00012b50 ?_FAcceptChanges@ESLL@@MAEHPAH@Z 00413b50 f esl.obj - 0001:00012db0 ?FInit@LSND@@QAEHJJJJPAPAVGL@@JHJH@Z 00413db0 f esl.obj - 0001:00012f90 ?Play@LSND@@QAEXXZ 00413f90 f esl.obj - 0001:00013060 ?FChanged@LSND@@QAEHPAJPAH@Z 00414060 f esl.obj - 0001:000130a0 ??1LSND@@UAE@XZ 004140a0 f esl.obj - 0001:000130d0 ?PeslrNew@ESLR@@SGPAV1@PAVRCA@@PAVMVIE@@HPAVSTN@@@Z 004140d0 f esl.obj - 0001:000131b0 ?_FInit@ESLR@@IAEHPAVRCA@@JPAVMVIE@@HPAVSTN@@@Z 004141b0 f esl.obj - 0001:00013430 ??1ESLR@@UAE@XZ 00414430 f esl.obj - 0001:00013470 ?_UpdateMeter@ESLR@@IAEXXZ 00414470 f esl.obj - 0001:00013510 ?FCmdRecord@ESLR@@QAEHPAUCMD@@@Z 00414510 f esl.obj - 0001:000135d0 ?FCmdUpdateMeter@ESLR@@QAEHPAUCMD@@@Z 004145d0 f esl.obj - 0001:00013680 ?FCmdPlay@ESLR@@QAEHPAUCMD@@@Z 00414680 f esl.obj - 0001:00013750 ?_FAcceptChanges@ESLR@@MAEHPAH@Z 00414750 f esl.obj - 0001:00013930 ??_GESL@@UAEPAXI@Z 00414930 f esl.obj - 0001:00013930 ??_EESL@@UAEPAXI@Z 00414930 f esl.obj - 0001:00013950 ??_ESNE@@UAEPAXI@Z 00414950 f esl.obj - 0001:00013950 ??_GSNE@@UAEPAXI@Z 00414950 f esl.obj - 0001:00013970 ??_EESLT@@UAEPAXI@Z 00414970 f esl.obj - 0001:00013970 ??_GESLT@@UAEPAXI@Z 00414970 f esl.obj - 0001:00013990 ??_EESLA@@UAEPAXI@Z 00414990 f esl.obj - 0001:00013990 ??_GESLA@@UAEPAXI@Z 00414990 f esl.obj - 0001:000139b0 ??_ELSND@@UAEPAXI@Z 004149b0 f esl.obj - 0001:000139b0 ??_GLSND@@UAEPAXI@Z 004149b0 f esl.obj - 0001:000139d0 ??_EESLL@@UAEPAXI@Z 004149d0 f esl.obj - 0001:000139d0 ??_GESLL@@UAEPAXI@Z 004149d0 f esl.obj - 0001:000139f0 ??_EESLR@@UAEPAXI@Z 004149f0 f esl.obj - 0001:000139f0 ??_GESLR@@UAEPAXI@Z 004149f0 f esl.obj - 0001:00013ad0 ?Pcmm@ESL@@MAEPAUCMM@CMH@@XZ 00414ad0 f esl.obj - 0001:00013ae0 ?_FAcceptChanges@ESL@@MAEHPAH@Z 00414ae0 f esl.obj - 0001:00013af0 ?Pcmm@ESLT@@MAEPAUCMM@CMH@@XZ 00414af0 f esl.obj - 0001:00013b00 ?Pcmm@ESLA@@MAEPAUCMM@CMH@@XZ 00414b00 f esl.obj - 0001:00013b10 ?Pcmm@ESLL@@MAEPAUCMM@CMH@@XZ 00414b10 f esl.obj - 0001:00013b20 ?Pcmm@ESLR@@MAEPAUCMM@CMH@@XZ 00414b20 f esl.obj - 0001:00013b30 ?FWouldBe@APE@@SGHJ@Z 00414b30 f ape.obj - 0001:00013b50 ?FIs@APE@@UAEHJ@Z 00414b50 f ape.obj - 0001:00013b60 ?Cls@APE@@UAEJXZ 00414b60 f ape.obj - 0001:00013b70 ?PapeNew@APE@@SGPAV1@PAUGCB@@PAVTMPL@@PAVCOST@@JHPAVRCA@@@Z 00414b70 f ape.obj - 0001:00013c00 ?_FInit@APE@@IAEHPAVTMPL@@PAVCOST@@JHPAVRCA@@@Z 00414c00 f ape.obj - 0001:00013e20 ??1APE@@UAE@XZ 00414e20 f ape.obj - 0001:00013ec0 ?SetToolIncCmtl@APE@@QAEXXZ 00414ec0 f ape.obj - 0001:00013ee0 ?SetToolIncAccessory@APE@@QAEXXZ 00414ee0 f ape.obj - 0001:00013f00 ?FSetAction@APE@@QAEHJ@Z 00414f00 f ape.obj - 0001:00013f50 ?FCmdNextCel@APE@@QAEHPAUCMD@@@Z 00414f50 f ape.obj - 0001:00013f90 ?FDisplayCel@APE@@QAEHJ@Z 00414f90 f ape.obj - 0001:00013fd0 ?SetCycleCels@APE@@QAEXH@Z 00414fd0 f ape.obj - 0001:00013fe0 ?_InitView@APE@@IAEXXZ 00414fe0 f ape.obj - 0001:00014070 ?SetCustomView@APE@@QAEXGGG@Z 00415070 f ape.obj - 0001:00014140 ?ChangeView@APE@@QAEXXZ 00415140 f ape.obj - 0001:00014260 ?_SetScale@APE@@IAEXXZ 00415260 f ape.obj - 0001:00014640 ?_UpdateView@APE@@IAEXXZ 00415640 f ape.obj - 0001:00014660 ?Draw@APE@@UAEXPAVGNV@@PAVRC@@@Z 00415660 f ape.obj - 0001:00014680 ?FCmdMouseMove@APE@@UAEHPAUCMD_MOUSE@@@Z 00415680 f ape.obj - 0001:00014750 ?FCmdTrackMouse@APE@@UAEHPAUCMD_MOUSE@@@Z 00415750 f ape.obj - 0001:000148c0 ?_FApplyGms@APE@@IAEHPAUGMS@@J@Z 004158c0 f ape.obj - 0001:00014950 ?_FIncCmtl@APE@@IAEHPAUGMS@@JH@Z 00415950 f ape.obj - 0001:00014a90 ?_CmidNext@APE@@IAEJJJH@Z 00415a90 f ape.obj - 0001:00014b30 ?FChangeTdt@APE@@QAEHPAVSTN@@JPAUTAG@@@Z 00415b30 f ape.obj - 0001:00014c00 ?FSetTdtMtrl@APE@@QAEHPAUTAG@@@Z 00415c00 f ape.obj - 0001:00014ca0 ?FGetTdtMtrlCno@APE@@QAEHPAK@Z 00415ca0 f ape.obj - 0001:00014d00 ?GetTdtInfo@APE@@QAEXPAVSTN@@PAJPAUTAG@@@Z 00415d00 f ape.obj - 0001:00014d20 ?FGetMaterial@APE@@QAEHJPAHPAJPAUTAG@@@Z 00415d20 f ape.obj - 0001:00014da0 ??_GAPE@@UAEPAXI@Z 00415da0 f ape.obj - 0001:00014da0 ??_EAPE@@UAEPAXI@Z 00415da0 f ape.obj - 0001:00014f10 ?Pcmm@APE@@MAEPAUCMM@CMH@@XZ 00415f10 f ape.obj - 0001:00014f20 ?FWouldBe@MP@@SGHJ@Z 00415f20 f popup.obj - 0001:00014f40 ?FIs@MP@@UAEHJ@Z 00415f40 f popup.obj - 0001:00014f50 ?Cls@MP@@UAEJXZ 00415f50 f popup.obj - 0001:00014f60 ?FWouldBe@MPFNT@@SGHJ@Z 00415f60 f popup.obj - 0001:00014f80 ?FIs@MPFNT@@UAEHJ@Z 00415f80 f popup.obj - 0001:00014f90 ?Cls@MPFNT@@UAEJXZ 00415f90 f popup.obj - 0001:00014fa0 ?PmpNew@MP@@SGPAV1@JJPAVRCA@@PAUCMD@@W4BWS@@JJUCKI@@KPAVCMH@@JH@Z 00415fa0 f popup.obj - 0001:00015180 ?_ApplySelection@MP@@MAEXJJ@Z 00416180 f popup.obj - 0001:00015220 ?_IthumFromThum@MP@@MAEJJJ@Z 00416220 f popup.obj - 0001:00015290 ?FCmdSelIdle@MP@@UAEHPAUCMD@@@Z 00416290 f popup.obj - 0001:000152b0 ?PmpfntNew@MPFNT@@SGPAV1@PAVRCA@@JJPAUCMD@@JPAVGST@@@Z 004162b0 f popup.obj - 0001:00015400 ?_FSetThumFrame@MPFNT@@MAEHJPAVGOB@@@Z 00416400 f popup.obj - 0001:00015460 ?_ApplySelection@MPFNT@@MAEXJJ@Z 00416460 f popup.obj - 0001:000154b0 ?_AdjustRc@MPFNT@@IAEXJJ@Z 004164b0 f popup.obj - 0001:00015530 ?FCmdSelIdle@MPFNT@@UAEHPAUCMD@@@Z 00416530 f popup.obj - 0001:00015560 ??_EMP@@UAEPAXI@Z 00416560 f popup.obj - 0001:00015560 ??_GMP@@UAEPAXI@Z 00416560 f popup.obj - 0001:00015580 ??_GMPFNT@@UAEPAXI@Z 00416580 f popup.obj - 0001:00015580 ??_EMPFNT@@UAEPAXI@Z 00416580 f popup.obj - 0001:000155a0 ??_9@$BHA@A 004165a0 f popup.obj - 0001:00015700 ?Pcmm@MP@@MAEPAUCMM@CMH@@XZ 00416700 f popup.obj - 0001:00015710 ?Pcmm@MPFNT@@MAEPAUCMM@CMH@@XZ 00416710 f popup.obj - 0001:00015720 ?FWouldBe@TATR@@SGHJ@Z 00416720 f tatr.obj - 0001:00015740 ?FIs@TATR@@UAEHJ@Z 00416740 f tatr.obj - 0001:00015750 ?Cls@TATR@@UAEJXZ 00416750 f tatr.obj - 0001:00015760 ?PtatrNew@TATR@@SGPAV1@J@Z 00416760 f tatr.obj - 0001:000157c0 ?_FInit@TATR@@IAEHJ@Z 004167c0 f tatr.obj - 0001:000157f0 ??1TATR@@UAE@XZ 004167f0 f tatr.obj - 0001:00015830 ?FCmdLoad@TATR@@QAEHPAUCMD@@@Z 00416830 f tatr.obj - 0001:00015a00 ?FCmdPlay@TATR@@QAEHPAUCMD@@@Z 00416a00 f tatr.obj - 0001:00015a80 ?FCmdStop@TATR@@QAEHPAUCMD@@@Z 00416a80 f tatr.obj - 0001:00015ab0 ?FCmdRewind@TATR@@QAEHPAUCMD@@@Z 00416ab0 f tatr.obj - 0001:00015b40 ??_ETATR@@UAEPAXI@Z 00416b40 f tatr.obj - 0001:00015b40 ??_GTATR@@UAEPAXI@Z 00416b40 f tatr.obj - 0001:00015cb0 ?Pcmm@TATR@@MAEPAUCMM@CMH@@XZ 00416cb0 f tatr.obj - 0001:00015cc0 ?FPortDisplayWithIds@@YGHPAVFNI@@HJJJPADPAVSTN@@0KK@Z 00416cc0 f portf.obj - 0001:00015f20 ?FPortGetFniOpen@@YGHPAVFNI@@PAD10KK@Z 00416f20 f portf.obj - 0001:000160f0 ?FPortGetFniSave@@YGHPAVFNI@@PAD11PAVSTN@@KK@Z 004170f0 f portf.obj - 0001:00016540 ?OpenHookProc@@YGIPAUHWND__@@IIJ@Z 00417540 f portf.obj - 0001:00016ff0 ?RepaintPortfolio@@YGXPAUHWND__@@@Z 00417ff0 f portf.obj - 0001:000173b0 ?OpenPreview@@YGXPAUHWND__@@PAVGNV@@PAUtagRECT@@@Z 004183b0 f portf.obj - 0001:00017610 ?SubClassBtnProc@@YGJPAUHWND__@@IIJ@Z 00418610 f portf.obj - 0001:00017640 ?SubClassPreviewProc@@YGJPAUHWND__@@IIJ@Z 00418640 f portf.obj - 0001:000177f0 ?SubClassDlgProc@@YGJPAUHWND__@@IIJ@Z 004187f0 f portf.obj - 0001:00017a20 _wHaveWaveDevice@4 00418a20 f mminstal.obj - 0001:00017ac0 _wHaveACM@0 00418ac0 f mminstal.obj - 0001:00017af0 _wHaveACMCodec@4 00418af0 f mminstal.obj - 0001:00017b50 _wHaveICMCodec@4 00418b50 f mminstal.obj - 0001:00017b80 _wHaveMCI@4 00418b80 f mminstal.obj - 0001:00017be0 ?fRunningWin95@@YGHXZ 00418be0 f mminstal.obj - 0001:00017c00 _wInstallComp@4 00418c00 f mminstal.obj - 0001:00017ef0 ?FWouldBe@USAC@@SGHJ@Z 00418ef0 f utilglob.obj - 0001:00017f10 ?FIs@USAC@@UAEHJ@Z 00418f10 f utilglob.obj - 0001:00017f20 ?Cls@USAC@@UAEJXZ 00418f20 f utilglob.obj - 0001:00018000 ??_EKCDC@@UAEPAXI@Z 00419000 f utilglob.obj - 0001:00018000 ??_GKCDC@@UAEPAXI@Z 00419000 f utilglob.obj - 0001:00018020 ?FCanDo@KCDC@@UAEHHJ@Z 00419020 f utilglob.obj - 0001:00018060 ?FWouldBe@BLL@@SGHJ@Z 00419060 f base.obj - 0001:00018080 ?FIs@BLL@@UAEHJ@Z 00419080 f base.obj - 0001:00018090 ?Cls@BLL@@UAEJXZ 00419090 f base.obj - 0001:000180a0 ?Cls@BASE@@UAEJXZ 004190a0 f base.obj - 0001:000180b0 ?FIs@BASE@@UAEHJ@Z 004190b0 f base.obj - 0001:000180d0 ?FWouldBe@BASE@@SGHJ@Z 004190d0 f base.obj - 0001:000180f0 ??0BASE@@QAE@XZ 004190f0 f base.obj - 0001:00018100 ?AddRef@BASE@@UAEXXZ 00419100 f base.obj - 0001:00018110 ?Release@BASE@@UAEXXZ 00419110 f base.obj - 0001:00018130 ??2BASE@@SGPAXI@Z 00419130 f base.obj - 0001:00018160 ??3BASE@@SGXPAX@Z 00419160 f base.obj - 0001:00018170 ??0BLL@@QAE@XZ 00419170 f base.obj - 0001:00018190 ??1BLL@@UAE@XZ 00419190 f base.obj - 0001:000181b0 ?_Attach@BLL@@IAEXPAX@Z 004191b0 f base.obj - 0001:00018220 ??_EBLL@@UAEPAXI@Z 00419220 f base.obj - 0001:00018220 ??_GBLL@@UAEPAXI@Z 00419220 f base.obj - 0001:00018240 ?FillPb@@YGXPAXJE@Z 00419240 f utilcopy.obj - 0001:00018280 ?ClearPb@@YGXPAXJ@Z 00419280 f utilcopy.obj - 0001:000182a0 ?ReversePb@@YGXPAXJ@Z 004192a0 f utilcopy.obj - 0001:000182d0 ?ReverseRglw@@YGXPAXJ@Z 004192d0 f utilcopy.obj - 0001:00018300 ?SwapBlocks@@YGXPAXJJ@Z 00419300 f utilcopy.obj - 0001:00018330 ?SwapPb@@YGXPAX0J@Z 00419330 f utilcopy.obj - 0001:00018380 ?MoveElement@@YGXPAXJJJ@Z 00419380 f utilcopy.obj - 0001:000183f0 ?FEqualRgb@@YGHPAX0J@Z 004193f0 f utilcopy.obj - 0001:00018430 ?CbEqualRgb@@YGJPAX0J@Z 00419430 f utilcopy.obj - 0001:00018490 ?FcmpCompareRgb@@YGKPAX0J@Z 00419490 f utilcopy.obj - 0001:000184d0 ?CopyPb@@YGXPAX0J@Z 004194d0 f utilcopy.obj - 0001:00018500 ?BltPb@@YGXPAX0J@Z 00419500 f utilcopy.obj - 0001:00018570 ?FWouldBe@ERS@@SGHJ@Z 00419570 f utilerro.obj - 0001:00018590 ?FIs@ERS@@UAEHJ@Z 00419590 f utilerro.obj - 0001:000185a0 ?Cls@ERS@@UAEJXZ 004195a0 f utilerro.obj - 0001:000185b0 ??0ERS@@QAE@XZ 004195b0 f utilerro.obj - 0001:000185e0 ?Push@ERS@@UAEXJ@Z 004195e0 f utilerro.obj - 0001:00018630 ?FPop@ERS@@UAEHPAJ@Z 00419630 f utilerro.obj - 0001:00018680 ?Clear@ERS@@UAEXXZ 00419680 f utilerro.obj - 0001:000186a0 ?Cerc@ERS@@UAEJXZ 004196a0 f utilerro.obj - 0001:000186b0 ?FIn@ERS@@UAEHJ@Z 004196b0 f utilerro.obj - 0001:00018700 ?ErcGet@ERS@@UAEJJ@Z 00419700 f utilerro.obj - 0001:00018740 ?Flush@ERS@@UAEXJ@Z 00419740 f utilerro.obj - 0001:000187e0 ??_GERS@@UAEPAXI@Z 004197e0 f utilerro.obj - 0001:000187e0 ??_EERS@@UAEPAXI@Z 004197e0 f utilerro.obj - 0001:00018810 ?LwGcd@@YGJJJ@Z 00419810 f utilint.obj - 0001:00018830 ?LuGcd@@YGKKK@Z 00419830 f utilint.obj - 0001:00018880 ?SortLw@@YGXPAJ0@Z 00419880 f utilint.obj - 0001:000188a0 ?LuMulDiv@@YGKKKK@Z 004198a0 f utilint.obj - 0001:000188c0 ?MulLu@@YGXKKPAK0@Z 004198c0 f utilint.obj - 0001:000188e0 ?LwMulDivAway@@YGJJJJ@Z 004198e0 f utilint.obj - 0001:00018940 ?LwDivAway@@YGJJJ@Z 00419940 f utilint.obj - 0001:00018970 ?LwRoundAway@@YGJJJ@Z 00419970 f utilint.obj - 0001:000189a0 ?LwRoundToward@@YGJJJ@Z 004199a0 f utilint.obj - 0001:000189c0 ?LwRoundClosest@@YGJJJ@Z 004199c0 f utilint.obj - 0001:00018a10 ?FAdjustIv@@YGHPAJJJJ@Z 00419a10 f utilint.obj - 0001:00018a60 ?SwapBytesBom@@YGXPAXK@Z 00419a60 f utilint.obj - 0001:00018ac0 ?SwapBytesRgsw@@YGXPAXJ@Z 00419ac0 f utilint.obj - 0001:00018af0 ?SwapBytesRglw@@YGXPAXJ@Z 00419af0 f utilint.obj - 0001:00018b20 ??BPT@@QAE?AUtagPOINT@@XZ 00419b20 f utilint.obj - 0001:00018b80 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 00419b80 f utilint.obj - 0001:00018ba0 ?Map@PT@@QAEXPAVRC@@0@Z 00419ba0 f utilint.obj - 0001:00018c50 ?Transform@PT@@QAEXK@Z 00419c50 f utilint.obj - 0001:00018c80 ??8RC@@QAEHAAV0@@Z 00419c80 f utilint.obj - 0001:00018cf0 ??9RC@@QAEHAAV0@@Z 00419cf0 f utilint.obj - 0001:00018d60 ?Union@RC@@QAEXPAV1@0@Z 00419d60 f utilint.obj - 0001:00018d90 ?Union@RC@@QAEXPAV1@@Z 00419d90 f utilint.obj - 0001:00018e10 ?FIntersect@RC@@QAEHPAV1@0@Z 00419e10 f utilint.obj - 0001:00018e90 ?FIntersect@RC@@QAEHPAV1@@Z 00419e90 f utilint.obj - 0001:00018f10 ?Inset@RC@@QAEXJJ@Z 00419f10 f utilint.obj - 0001:00018f30 ?Map@RC@@QAEXPAV1@0@Z 00419f30 f utilint.obj - 0001:00019050 ?Transform@RC@@QAEXK@Z 0041a050 f utilint.obj - 0001:000190b0 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 0041a0b0 f utilint.obj - 0001:000190e0 ?Offset@RC@@QAEXJJ@Z 0041a0e0 f utilint.obj - 0001:00019100 ?OffsetToOrigin@RC@@QAEXXZ 0041a100 f utilint.obj - 0001:00019120 ?CenterOnRc@RC@@QAEXPAV1@@Z 0041a120 f utilint.obj - 0001:00019170 ?FPtIn@RC@@QAEHJJ@Z 0041a170 f utilint.obj - 0001:000191a0 ?PinPt@RC@@QAEXPAVPT@@@Z 0041a1a0 f utilint.obj - 0001:000191e0 ?PinToRc@RC@@QAEXPAV1@@Z 0041a1e0 f utilint.obj - 0001:00019230 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 0041a230 f utilint.obj - 0001:00019250 ??BRC@@QAE?AUtagRECT@@XZ 0041a250 f utilint.obj - 0001:00019320 ?FContains@RC@@QAEHPAV1@@Z 0041a320 f utilint.obj - 0001:00019360 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 0041a360 f utilint.obj - 0001:00019440 ??0USAC@@QAE@XZ 0041a440 f utilint.obj - 0001:00019470 ?TsCur@USAC@@QAEKXZ 0041a470 f utilint.obj - 0001:000194d0 ?Scale@USAC@@QAEXK@Z 0041a4d0 f utilint.obj - 0001:00019540 ?Set@DVER@@QAEXFF@Z 0041a540 f utilint.obj - 0001:00019560 ?FReadable@DVER@@QAEHFF@Z 0041a560 f utilint.obj - 0001:000195a0 ??_EUSAC@@UAEPAXI@Z 0041a5a0 f utilint.obj - 0001:000195a0 ??_GUSAC@@UAEPAXI@Z 0041a5a0 f utilint.obj - 0001:000195c0 ?FAllocPv@@YGHPAPAXJKJ@Z 0041a5c0 f utilmem.obj - 0001:00019690 ?_FResizePpv@@YGHPAPAXJJKJ@Z 0041a690 f utilmem.obj - 0001:00019780 ?FreePpv@@YGXPAPAX@Z 0041a780 f utilmem.obj - 0001:000197c0 ?FWouldBe@RND@@SGHJ@Z 0041a7c0 f utilrnd.obj - 0001:000197e0 ?FIs@RND@@UAEHJ@Z 0041a7e0 f utilrnd.obj - 0001:000197f0 ?Cls@RND@@UAEJXZ 0041a7f0 f utilrnd.obj - 0001:00019800 ?FWouldBe@SFL@@SGHJ@Z 0041a800 f utilrnd.obj - 0001:00019820 ?FIs@SFL@@UAEHJ@Z 0041a820 f utilrnd.obj - 0001:00019830 ?Cls@SFL@@UAEJXZ 0041a830 f utilrnd.obj - 0001:00019840 ??0RND@@QAE@K@Z 0041a840 f utilrnd.obj - 0001:00019880 ?LwNext@RND@@UAEJJ@Z 0041a880 f utilrnd.obj - 0001:000198b0 ??0SFL@@QAE@K@Z 0041a8b0 f utilrnd.obj - 0001:000198e0 ??1SFL@@UAE@XZ 0041a8e0 f utilrnd.obj - 0001:00019900 ?Shuffle@SFL@@QAEXJ@Z 0041a900 f utilrnd.obj - 0001:00019940 ?ShuffleRglw@SFL@@QAEXJPAJ@Z 0041a940 f utilrnd.obj - 0001:00019990 ?_ShuffleCore@SFL@@IAEXXZ 0041a990 f utilrnd.obj - 0001:000199e0 ?_FEnsureHq@SFL@@IAEHJ@Z 0041a9e0 f utilrnd.obj - 0001:00019a50 ?LwNext@SFL@@UAEJJ@Z 0041aa50 f utilrnd.obj - 0001:00019ae0 ??_ERND@@UAEPAXI@Z 0041aae0 f utilrnd.obj - 0001:00019ae0 ??_GRND@@UAEPAXI@Z 0041aae0 f utilrnd.obj - 0001:00019b00 ??_ESFL@@UAEPAXI@Z 0041ab00 f utilrnd.obj - 0001:00019b00 ??_GSFL@@UAEPAXI@Z 0041ab00 f utilrnd.obj - 0001:00019b20 ??0STN@@QAE@AAV0@@Z 0041ab20 f utilstr.obj - 0001:00019b40 ??4STN@@QAEAAV0@AAV0@@Z 0041ab40 f utilstr.obj - 0001:00019b60 ?SetRgch@STN@@QAEXPADJ@Z 0041ab60 f utilstr.obj - 0001:00019ba0 ?SetSzs@STN@@QAEXPAD@Z 0041aba0 f utilstr.obj - 0001:00019bc0 ?Delete@STN@@QAEXJJ@Z 0041abc0 f utilstr.obj - 0001:00019c20 ?FAppendRgch@STN@@QAEHPADJ@Z 0041ac20 f utilstr.obj - 0001:00019c70 ?FInsertRgch@STN@@QAEHJPADJ@Z 0041ac70 f utilstr.obj - 0001:00019d30 ?FEqualRgch@STN@@QAEHPADJ@Z 0041ad30 f utilstr.obj - 0001:00019d60 ?FEqualUserRgch@STN@@QAEHPADJK@Z 0041ad60 f utilstr.obj - 0001:00019d80 ?CbData@STN@@QAEJXZ 0041ad80 f utilstr.obj - 0001:00019d90 ?GetData@STN@@QAEXPAX@Z 0041ad90 f utilstr.obj - 0001:00019dd0 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 0041add0 f utilstr.obj - 0001:00019e60 ?FSetData@STN@@QAEHPAXJPAJ@Z 0041ae60 f utilstr.obj - 0001:0001a090 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 0041b090 f utilstr.obj - 0001:0001a360 ?FFormat@STN@@QAAHPAV1@ZZ 0041b360 f utilstr.obj - 0001:0001a380 ?FFormatSz@STN@@QAAHPADZZ 0041b380 f utilstr.obj - 0001:0001a3a0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 0041b3a0 f utilstr.obj - 0001:0001a720 ?FGetLw@STN@@QAEHPAJJ@Z 0041b720 f utilstr.obj - 0001:0001a810 ?CchSz@@YGJPAD@Z 0041b810 f utilstr.obj - 0001:0001a830 ?FcmpCompareRgch@@YGKPADJ0J@Z 0041b830 f utilstr.obj - 0001:0001a890 ?FEqualUserRgch@@YGHPADJ0JK@Z 0041b890 f utilstr.obj - 0001:0001a980 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 0041b980 f utilstr.obj - 0001:0001a9f0 ?UpperRgchs@@YGXPADJ@Z 0041b9f0 f utilstr.obj - 0001:0001aa50 ?LowerRgchs@@YGXPADJ@Z 0041ba50 f utilstr.obj - 0001:0001aab0 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 0041bab0 f utilstr.obj - 0001:0001abb0 ?TranslateRgch@@YGXPADJFH@Z 0041bbb0 f utilstr.obj - 0001:0001ac00 ?GrfchFromCh@@YGKD@Z 0041bc00 f utilstr.obj - 0001:0001ad00 ?FAllocHq@@YGHPAPAXJKJ@Z 0041bd00 f memwin.obj - 0001:0001ad70 ?FResizePhq@@YGHPAPAXJKJ@Z 0041bd70 f memwin.obj - 0001:0001ae10 ?FreePhq@@YGXPAPAX@Z 0041be10 f memwin.obj - 0001:0001ae40 ?CbOfHq@@YGJPAX@Z 0041be40 f memwin.obj - 0001:0001ae50 ?PvLockHq@@YGPAXPAX@Z 0041be50 f memwin.obj - 0001:0001ae60 ?UnlockHq@@YGXPAX@Z 0041be60 f memwin.obj - 0001:0001aea0 ?FWouldBe@APPB@@SGHJ@Z 0041bea0 f appb.obj - 0001:0001aec0 ?FIs@APPB@@UAEHJ@Z 0041bec0 f appb.obj - 0001:0001aed0 ?Cls@APPB@@UAEJXZ 0041bed0 f appb.obj - 0001:0001aee0 ??0APPB@@QAE@XZ 0041bee0 f appb.obj - 0001:0001af10 ??1APPB@@UAE@XZ 0041bf10 f appb.obj - 0001:0001af30 ?Run@APPB@@UAEXKKJ@Z 0041bf30 f appb.obj - 0001:0001af60 ?Quit@APPB@@UAEXH@Z 0041bf60 f appb.obj - 0001:0001afa0 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 0041bfa0 f appb.obj - 0001:0001afc0 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 0041bfc0 f appb.obj - 0001:0001b020 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 0041c020 f appb.obj - 0001:0001b070 ?RefreshCurs@APPB@@UAEXXZ 0041c070 f appb.obj - 0001:0001b0b0 ?BeginLongOp@APPB@@UAEXXZ 0041c0b0 f appb.obj - 0001:0001b0e0 ?EndLongOp@APPB@@UAEXH@Z 0041c0e0 f appb.obj - 0001:0001b110 ?GrfcustCur@APPB@@UAEKH@Z 0041c110 f appb.obj - 0001:0001b170 ?ModifyGrfcust@APPB@@UAEXKK@Z 0041c170 f appb.obj - 0001:0001b190 ?HideCurs@APPB@@UAEXXZ 0041c190 f appb.obj - 0001:0001b1a0 ?ShowCurs@APPB@@UAEXXZ 0041c1a0 f appb.obj - 0001:0001b1b0 ?PositionCurs@APPB@@UAEXJJ@Z 0041c1b0 f appb.obj - 0001:0001b1d0 ?OnnDefVariable@APPB@@UAEJXZ 0041c1d0 f appb.obj - 0001:0001b230 ?OnnDefFixed@APPB@@UAEJXZ 0041c230 f appb.obj - 0001:0001b2b0 ?DypTextDef@APPB@@UAEJXZ 0041c2b0 f appb.obj - 0001:0001b2c0 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 0041c2c0 f appb.obj - 0001:0001b2d0 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 0041c2d0 f appb.obj - 0001:0001b2f0 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 0041c2f0 f appb.obj - 0001:0001b4a0 ?_TakeDownToolTip@APPB@@IAEXXZ 0041c4a0 f appb.obj - 0001:0001b4d0 ?_EnsureToolTip@APPB@@IAEXXZ 0041c4d0 f appb.obj - 0001:0001b550 ?ResetToolTip@APPB@@UAEXXZ 0041c550 f appb.obj - 0001:0001b570 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 0041c570 f appb.obj - 0001:0001b5e0 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 0041c5e0 f appb.obj - 0001:0001b600 ?_FInit@APPB@@MAEHKKJ@Z 0041c600 f appb.obj - 0001:0001b6d0 ?_FInitSound@APPB@@MAEHJ@Z 0041c6d0 f appb.obj - 0001:0001b760 ?_FInitMenu@APPB@@MAEHXZ 0041c760 f appb.obj - 0001:0001b780 ?_Loop@APPB@@MAEXXZ 0041c780 f appb.obj - 0001:0001b820 ?_CleanUp@APPB@@MAEXXZ 0041c820 f appb.obj - 0001:0001b870 ?_Activate@APPB@@MAEXH@Z 0041c870 f appb.obj - 0001:0001b8b0 ?TopOfLoop@APPB@@UAEXXZ 0041c8b0 f appb.obj - 0001:0001b8d0 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 0041c8d0 f appb.obj - 0001:0001b980 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 0041c980 f appb.obj - 0001:0001b9b0 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 0041c9b0 f appb.obj - 0001:0001ba30 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0041ca30 f appb.obj - 0001:0001ba50 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0041ca50 f appb.obj - 0001:0001ba70 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 0041ca70 f appb.obj - 0001:0001bc50 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0041cc50 f appb.obj - 0001:0001bc70 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0041cc70 f appb.obj - 0001:0001bc90 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 0041cc90 f appb.obj - 0001:0001be10 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 0041ce10 f appb.obj - 0001:0001be80 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 0041ce80 f appb.obj - 0001:0001bf40 ?UpdateMarked@APPB@@UAEXXZ 0041cf40 f appb.obj - 0001:0001bfb0 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0041cfb0 f appb.obj - 0001:0001c0e0 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 0041d0e0 f appb.obj - 0001:0001c130 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 0041d130 f appb.obj - 0001:0001c290 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 0041d290 f appb.obj - 0001:0001c360 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 0041d360 f appb.obj - 0001:0001c410 ?_FSetProp@APPB@@IAEHJJ@Z 0041d410 f appb.obj - 0001:0001c4a0 ?FSetProp@APPB@@UAEHJJ@Z 0041d4a0 f appb.obj - 0001:0001c670 ?FGetProp@APPB@@UAEHJPAJ@Z 0041d670 f appb.obj - 0001:0001c720 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 0041d720 f appb.obj - 0001:0001c810 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 0041d810 f appb.obj - 0001:0001c950 ?FModalLoop@APPB@@UAEHPAJ@Z 0041d950 f appb.obj - 0001:0001c990 ?EndModal@APPB@@UAEXJ@Z 0041d990 f appb.obj - 0001:0001c9a0 ?PopModal@APPB@@UAEXXZ 0041d9a0 f appb.obj - 0001:0001ca50 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 0041da50 f appb.obj - 0001:0001ca80 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 0041da80 f appb.obj - 0001:0001cad0 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 0041dad0 f appb.obj - 0001:0001cb50 ?FAllowScreenSaver@APPB@@UAEHXZ 0041db50 f appb.obj - 0001:0001cb70 ??_GAPPB@@UAEPAXI@Z 0041db70 f appb.obj - 0001:0001cb70 ??_EAPPB@@UAEPAXI@Z 0041db70 f appb.obj - 0001:0001cc20 ??_9@$BMA@A 0041dc20 f appb.obj - 0001:0001cc30 ??_9@$BME@A 0041dc30 f appb.obj - 0001:0001cc40 ??_9@$BMI@A 0041dc40 f appb.obj - 0001:0001cc50 ??_9@$BBBE@A 0041dc50 f appb.obj - 0001:0001cc60 ??_9@$BLI@A 0041dc60 f appb.obj - 0001:0001cc70 ??_9@$BLM@A 0041dc70 f appb.obj - 0001:0001cc80 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 0041dc80 f appb.obj - 0001:0001cc90 ?FWouldBe@CLOK@@SGHJ@Z 0041dc90 f clok.obj - 0001:0001ccb0 ?FIs@CLOK@@UAEHJ@Z 0041dcb0 f clok.obj - 0001:0001ccc0 ?Cls@CLOK@@UAEJXZ 0041dcc0 f clok.obj - 0001:0001cce0 ??0CLOK@@QAE@JK@Z 0041dce0 f clok.obj - 0001:0001cd30 ??1CLOK@@UAE@XZ 0041dd30 f clok.obj - 0001:0001cd80 ?PclokFromHid@CLOK@@SGPAV1@J@Z 0041dd80 f clok.obj - 0001:0001cda0 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 0041dda0 f clok.obj - 0001:0001cdd0 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 0041ddd0 f clok.obj - 0001:0001ce10 ?Start@CLOK@@QAEXK@Z 0041de10 f clok.obj - 0001:0001ce60 ?Stop@CLOK@@QAEXXZ 0041de60 f clok.obj - 0001:0001ce90 ?TimCur@CLOK@@QAEKH@Z 0041de90 f clok.obj - 0001:0001ced0 ?FSetAlarm@CLOK@@QAEHJPAVCMH@@JH@Z 0041ded0 f clok.obj - 0001:0001cfa0 ?FCmdAll@CLOK@@UAEHPAUCMD@@@Z 0041dfa0 f clok.obj - 0001:0001d150 ??_GCLOK@@UAEPAXI@Z 0041e150 f clok.obj - 0001:0001d150 ??_ECLOK@@UAEPAXI@Z 0041e150 f clok.obj - 0001:0001d170 ??_9@$BCE@A 0041e170 f clok.obj - 0001:0001d210 ?Pcmm@CLOK@@MAEPAUCMM@CMH@@XZ 0041e210 f clok.obj - 0001:0001d220 ?FWouldBe@CMH@@SGHJ@Z 0041e220 f cmd.obj - 0001:0001d240 ?FIs@CMH@@UAEHJ@Z 0041e240 f cmd.obj - 0001:0001d250 ?Cls@CMH@@UAEJXZ 0041e250 f cmd.obj - 0001:0001d260 ?FWouldBe@CEX@@SGHJ@Z 0041e260 f cmd.obj - 0001:0001d280 ?FIs@CEX@@UAEHJ@Z 0041e280 f cmd.obj - 0001:0001d290 ?Cls@CEX@@UAEJXZ 0041e290 f cmd.obj - 0001:0001d2a0 ?HidUnique@CMH@@SGJJ@Z 0041e2a0 f cmd.obj - 0001:0001d300 ??0CMH@@QAE@J@Z 0041e300 f cmd.obj - 0001:0001d320 ??1CMH@@UAE@XZ 0041e320 f cmd.obj - 0001:0001d350 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 0041e350 f cmd.obj - 0001:0001d3f0 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 0041e3f0 f cmd.obj - 0001:0001d460 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 0041e460 f cmd.obj - 0001:0001d500 ??0CEX@@IAE@XZ 0041e500 f cmd.obj - 0001:0001d520 ??1CEX@@UAE@XZ 0041e520 f cmd.obj - 0001:0001d5e0 ?PcexNew@CEX@@SGPAV1@JJ@Z 0041e5e0 f cmd.obj - 0001:0001d630 ?_FInit@CEX@@MAEHJJ@Z 0041e630 f cmd.obj - 0001:0001d670 ?StopRecording@CEX@@QAEXXZ 0041e670 f cmd.obj - 0001:0001d7c0 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 0041e7c0 f cmd.obj - 0001:0001d990 ?StopPlaying@CEX@@QAEXXZ 0041e990 f cmd.obj - 0001:0001da00 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 0041ea00 f cmd.obj - 0001:0001db80 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 0041eb80 f cmd.obj - 0001:0001dbd0 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 0041ebd0 f cmd.obj - 0001:0001dc70 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 0041ec70 f cmd.obj - 0001:0001dd00 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 0041ed00 f cmd.obj - 0001:0001de00 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 0041ee00 f cmd.obj - 0001:0001de70 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 0041ee70 f cmd.obj - 0001:0001dec0 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 0041eec0 f cmd.obj - 0001:0001df10 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 0041ef10 f cmd.obj - 0001:0001df40 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 0041ef40 f cmd.obj - 0001:0001df70 ?FCidIn@CEX@@UAEHJ@Z 0041ef70 f cmd.obj - 0001:0001dfc0 ?FlushCid@CEX@@UAEXJ@Z 0041efc0 f cmd.obj - 0001:0001e030 ?_TGetNextCmd@CEX@@MAEHXZ 0041f030 f cmd.obj - 0001:0001e150 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 0041f150 f cmd.obj - 0001:0001e180 ?_CleanUpCmd@CEX@@MAEXXZ 0041f180 f cmd.obj - 0001:0001e200 ?FDispatchNextCmd@CEX@@UAEHXZ 0041f200 f cmd.obj - 0001:0001e2e0 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 0041f2e0 f cmd.obj - 0001:0001e310 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 0041f310 f cmd.obj - 0001:0001e3d0 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 0041f3d0 f cmd.obj - 0001:0001e420 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 0041f420 f cmd.obj - 0001:0001e480 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 0041f480 f cmd.obj - 0001:0001e4a0 ?EndMouseTracking@CEX@@UAEXXZ 0041f4a0 f cmd.obj - 0001:0001e4e0 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 0041f4e0 f cmd.obj - 0001:0001e4f0 ?Suspend@CEX@@UAEXH@Z 0041f4f0 f cmd.obj - 0001:0001e540 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 0041f540 f cmd.obj - 0001:0001e560 ??_GCMH@@UAEPAXI@Z 0041f560 f cmd.obj - 0001:0001e560 ??_ECMH@@UAEPAXI@Z 0041f560 f cmd.obj - 0001:0001e580 ??_ECEX@@UAEPAXI@Z 0041f580 f cmd.obj - 0001:0001e580 ??_GCEX@@UAEPAXI@Z 0041f580 f cmd.obj - 0001:0001e630 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 0041f630 f cmd.obj - 0001:0001e640 ?FWouldBe@CURS@@SGHJ@Z 0041f640 f cursor.obj - 0001:0001e660 ?FIs@CURS@@UAEHJ@Z 0041f660 f cursor.obj - 0001:0001e670 ?Cls@CURS@@UAEJXZ 0041f670 f cursor.obj - 0001:0001e680 ??1CURS@@MAE@XZ 0041f680 f cursor.obj - 0001:0001e6a0 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0041f6a0 f cursor.obj - 0001:0001e9e0 ?Set@CURS@@QAEXXZ 0041f9e0 f cursor.obj - 0001:0001ea00 ??_ECURS@@MAEPAXI@Z 0041fa00 f cursor.obj - 0001:0001ea00 ??_GCURS@@MAEPAXI@Z 0041fa00 f cursor.obj - 0001:0001eac0 ?FWouldBe@GNV@@SGHJ@Z 0041fac0 f gfx.obj - 0001:0001eae0 ?FIs@GNV@@UAEHJ@Z 0041fae0 f gfx.obj - 0001:0001eaf0 ?Cls@GNV@@UAEJXZ 0041faf0 f gfx.obj - 0001:0001eb00 ?FWouldBe@GPT@@SGHJ@Z 0041fb00 f gfx.obj - 0001:0001eb20 ?FIs@GPT@@UAEHJ@Z 0041fb20 f gfx.obj - 0001:0001eb30 ?Cls@GPT@@UAEJXZ 0041fb30 f gfx.obj - 0001:0001eb40 ?FWouldBe@NTL@@SGHJ@Z 0041fb40 f gfx.obj - 0001:0001eb60 ?FIs@NTL@@UAEHJ@Z 0041fb60 f gfx.obj - 0001:0001eb70 ?Cls@NTL@@UAEJXZ 0041fb70 f gfx.obj - 0001:0001eb80 ?SetFromLw@ACR@@QAEXJ@Z 0041fb80 f gfx.obj - 0001:0001eb90 ?LwGet@ACR@@QBEJXZ 0041fb90 f gfx.obj - 0001:0001eba0 ?GetClr@ACR@@QAEXPAUCLR@@@Z 0041fba0 f gfx.obj - 0001:0001ebc0 ?MoveOrigin@APT@@QAEXJJ@Z 0041fbc0 f gfx.obj - 0001:0001ec30 ??0GNV@@QAE@PAVGPT@@@Z 0041fc30 f gfx.obj - 0001:0001ec70 ??0GNV@@QAE@PAVGOB@@@Z 0041fc70 f gfx.obj - 0001:0001ecb0 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 0041fcb0 f gfx.obj - 0001:0001ecf0 ??1GNV@@UAE@XZ 0041fcf0 f gfx.obj - 0001:0001ed20 ?_Init@GNV@@AAEXPAVGPT@@@Z 0041fd20 f gfx.obj - 0001:0001edd0 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 0041fdd0 f gfx.obj - 0001:0001ee40 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 0041fe40 f gfx.obj - 0001:0001eeb0 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 0041feb0 f gfx.obj - 0001:0001eef0 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 0041fef0 f gfx.obj - 0001:0001ef70 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 0041ff70 f gfx.obj - 0001:0001efc0 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 0041ffc0 f gfx.obj - 0001:0001f000 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 00420000 f gfx.obj - 0001:0001f0d0 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 004200d0 f gfx.obj - 0001:0001f1d0 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 004201d0 f gfx.obj - 0001:0001f200 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 00420200 f gfx.obj - 0001:0001f240 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 00420240 f gfx.obj - 0001:0001f300 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 00420300 f gfx.obj - 0001:0001f3a0 ?IntersectRcVis@GNV@@QAEXPAVRC@@@Z 004203a0 f gfx.obj - 0001:0001f420 ?ClipRc@GNV@@QAEXPAVRC@@@Z 00420420 f gfx.obj - 0001:0001f500 ?SetPenSize@GNV@@QAEXJJ@Z 00420500 f gfx.obj - 0001:0001f540 ?SetFont@GNV@@QAEXJKJJJ@Z 00420540 f gfx.obj - 0001:0001f580 ?SetOnn@GNV@@QAEXJ@Z 00420580 f gfx.obj - 0001:0001f590 ?SetFontSize@GNV@@QAEXJ@Z 00420590 f gfx.obj - 0001:0001f5c0 ?SetFontAlign@GNV@@QAEXJJ@Z 004205c0 f gfx.obj - 0001:0001f5e0 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 004205e0 f gfx.obj - 0001:0001f640 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 00420640 f gfx.obj - 0001:0001f670 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 00420670 f gfx.obj - 0001:0001f6e0 ?GetRcFromStn@GNV@@QAEXPAVRC@@PAVSTN@@JJ@Z 004206e0 f gfx.obj - 0001:0001f710 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 00420710 f gfx.obj - 0001:0001f770 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 00420770 f gfx.obj - 0001:0001f820 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 00420820 f gfx.obj - 0001:0001f980 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 00420980 f gfx.obj - 0001:0001fa10 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00420a10 f gfx.obj - 0001:0001fcc0 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00420cc0 f gfx.obj - 0001:00020070 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00421070 f gfx.obj - 0001:00020870 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00421870 f gfx.obj - 0001:00020a70 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00421a70 f gfx.obj - 0001:00020fa0 ?DrawMbmp@GNV@@QAEXPAVMBMP@@JJ@Z 00421fa0 f gfx.obj - 0001:00021010 ?DrawMbmp@GNV@@QAEXPAVMBMP@@PAVRC@@@Z 00422010 f gfx.obj - 0001:00021050 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 00422050 f gfx.obj - 0001:000210d0 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 004220d0 f gfx.obj - 0001:00021120 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 00422120 f gfx.obj - 0001:00021180 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00422180 f gfx.obj - 0001:000211a0 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 004221a0 f gfx.obj - 0001:000211c0 ?FInitGfx@@YGHXZ 004221c0 f gfx.obj - 0001:000211d0 ??0NTL@@QAE@XZ 004221d0 f gfx.obj - 0001:000211f0 ??1NTL@@UAE@XZ 004221f0 f gfx.obj - 0001:00021220 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 00422220 f gfx.obj - 0001:00021240 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 00422240 f gfx.obj - 0001:00021260 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 00422260 f gfx.obj - 0001:00021290 ?OnnMac@NTL@@QAEJXZ 00422290 f gfx.obj - 0001:000212a0 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 004222a0 f gfx.obj - 0001:00021760 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00422760 f gfx.obj - 0001:00021c20 ??_GGNV@@UAEPAXI@Z 00422c20 f gfx.obj - 0001:00021c20 ??_EGNV@@UAEPAXI@Z 00422c20 f gfx.obj - 0001:00021c40 ??_GNTL@@UAEPAXI@Z 00422c40 f gfx.obj - 0001:00021c40 ??_ENTL@@UAEPAXI@Z 00422c40 f gfx.obj - 0001:00021c60 ?FWouldBe@GOB@@SGHJ@Z 00422c60 f gob.obj - 0001:00021c80 ?FIs@GOB@@UAEHJ@Z 00422c80 f gob.obj - 0001:00021c90 ?Cls@GOB@@UAEJXZ 00422c90 f gob.obj - 0001:00021ca0 ?FWouldBe@GTE@@SGHJ@Z 00422ca0 f gob.obj - 0001:00021cc0 ?FIs@GTE@@UAEHJ@Z 00422cc0 f gob.obj - 0001:00021cd0 ?Cls@GTE@@UAEJXZ 00422cd0 f gob.obj - 0001:00021ce0 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 00422ce0 f gob.obj - 0001:00021d70 ?ShutDown@GOB@@SGXXZ 00422d70 f gob.obj - 0001:00021db0 ??0GOB@@QAE@PAUGCB@@@Z 00422db0 f gob.obj - 0001:00021de0 ?_Init@GOB@@IAEXPAUGCB@@@Z 00422de0 f gob.obj - 0001:00021e80 ??0GOB@@QAE@J@Z 00422e80 f gob.obj - 0001:00021ee0 ?Release@GOB@@UAEXXZ 00422ee0 f gob.obj - 0001:00021f30 ??1GOB@@MAE@XZ 00422f30 f gob.obj - 0001:00021fd0 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 00422fd0 f gob.obj - 0001:00022070 ?BringToFront@GOB@@QAEXXZ 00423070 f gob.obj - 0001:00022080 ?SendBehind@GOB@@QAEXPAV1@@Z 00423080 f gob.obj - 0001:000220e0 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 004230e0 f gob.obj - 0001:00022220 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 00423220 f gob.obj - 0001:00022310 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 00423310 f gob.obj - 0001:00022480 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 00423480 f gob.obj - 0001:00022880 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 00423880 f gob.obj - 0001:00022c50 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 00423c50 f gob.obj - 0001:00023090 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 00424090 f gob.obj - 0001:000230a0 ?Maximize@GOB@@UAEXXZ 004240a0 f gob.obj - 0001:000230d0 ?SetPos@GOB@@QAEXPAVRC@@0@Z 004240d0 f gob.obj - 0001:00023150 ?GetPos@GOB@@QAEXPAVRC@@0@Z 00424150 f gob.obj - 0001:000231a0 ?SetRcFromHwnd@GOB@@QAEXXZ 004241a0 f gob.obj - 0001:000231b0 ?GetRc@GOB@@QAEXPAVRC@@J@Z 004241b0 f gob.obj - 0001:00023210 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 00424210 f gob.obj - 0001:00023270 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 00424270 f gob.obj - 0001:000232d0 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 004242d0 f gob.obj - 0001:000232f0 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 004242f0 f gob.obj - 0001:00023340 ?MapRc@GOB@@QAEXPAVRC@@JJ@Z 00424340 f gob.obj - 0001:000233a0 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 004243a0 f gob.obj - 0001:000234e0 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 004244e0 f gob.obj - 0001:00023500 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 00424500 f gob.obj - 0001:00023580 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 00424580 f gob.obj - 0001:00023610 ?FPtIn@GOB@@UAEHJJ@Z 00424610 f gob.obj - 0001:00023650 ?FPtInBounds@GOB@@UAEHJJ@Z 00424650 f gob.obj - 0001:00023690 ?MouseDown@GOB@@UAEXJJJK@Z 00424690 f gob.obj - 0001:00023730 ?_SetRcCur@GOB@@AAEXXZ 00424730 f gob.obj - 0001:00023990 ?PgobPrevSib@GOB@@QAEPAV1@XZ 00424990 f gob.obj - 0001:000239d0 ?PgobLastChild@GOB@@QAEPAV1@XZ 004249d0 f gob.obj - 0001:000239f0 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 004249f0 f gob.obj - 0001:00023a30 ?PgobFromCls@GOB@@QAEPAV1@J@Z 00424a30 f gob.obj - 0001:00023a90 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 00424a90 f gob.obj - 0001:00023ac0 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 00424ac0 f gob.obj - 0001:00023af0 ?PgobFromHid@GOB@@QAEPAV1@J@Z 00424af0 f gob.obj - 0001:00023b50 ?PgobFromGrid@GOB@@QAEPAV1@J@Z 00424b50 f gob.obj - 0001:00023bb0 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 00424bb0 f gob.obj - 0001:00023bc0 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 00424bc0 f gob.obj - 0001:00023bd0 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 00424bd0 f gob.obj - 0001:00023be0 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 00424be0 f gob.obj - 0001:00023bf0 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 00424bf0 f gob.obj - 0001:00023c00 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 00424c00 f gob.obj - 0001:00023c10 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 00424c10 f gob.obj - 0001:00023c30 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 00424c30 f gob.obj - 0001:00024050 ?SetCurs@GOB@@QAEXPAVCURS@@@Z 00425050 f gob.obj - 0001:00024090 ?SetCursCno@GOB@@QAEXPAVRCA@@K@Z 00425090 f gob.obj - 0001:000240d0 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 004250d0 f gob.obj - 0001:000240e0 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 004250e0 f gob.obj - 0001:000240f0 ?LwState@GOB@@UAEJXZ 004250f0 f gob.obj - 0001:00024100 ??0GTE@@QAE@XZ 00425100 f gob.obj - 0001:00024120 ?Init@GTE@@QAEXPAVGOB@@K@Z 00425120 f gob.obj - 0001:00024150 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 00425150 f gob.obj - 0001:00024260 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 00425260 f gob.obj - 0001:00024270 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 00425270 f gob.obj - 0001:00024280 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 00425280 f gob.obj - 0001:00024290 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 00425290 f gob.obj - 0001:000242a0 ??_EGOB@@MAEPAXI@Z 004252a0 f gob.obj - 0001:000242a0 ??_GGOB@@MAEPAXI@Z 004252a0 f gob.obj - 0001:000242c0 ??_GGTE@@UAEPAXI@Z 004252c0 f gob.obj - 0001:000242c0 ??_EGTE@@UAEPAXI@Z 004252c0 f gob.obj - 0001:000242e0 ??_9@$BHE@A 004252e0 f gob.obj - 0001:000242f0 ??_9@$BFM@A 004252f0 f gob.obj - 0001:00024300 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 00425300 f mbmpgui.obj - 0001:00024850 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 00425850 f mbmpgui.obj - 0001:00024b90 ?FWouldBe@REGN@@SGHJ@Z 00425b90 f region.obj - 0001:00024bb0 ?FIs@REGN@@UAEHJ@Z 00425bb0 f region.obj - 0001:00024bc0 ?Cls@REGN@@UAEJXZ 00425bc0 f region.obj - 0001:00024bd0 ?FWouldBe@REGSC@@SGHJ@Z 00425bd0 f region.obj - 0001:00024bf0 ?FIs@REGSC@@UAEHJ@Z 00425bf0 f region.obj - 0001:00024c00 ?Cls@REGSC@@UAEJXZ 00425c00 f region.obj - 0001:00024c10 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 00425c10 f region.obj - 0001:00024cc0 ?FStartRow@REGBL@@QAEHJJ@Z 00425cc0 f region.obj - 0001:00024d70 ?EndRow@REGBL@@QAEXXZ 00425d70 f region.obj - 0001:00024e30 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 00425e30 f region.obj - 0001:00024ef0 ??0REGSC@@QAE@XZ 00425ef0 f region.obj - 0001:00024f10 ??1REGSC@@UAE@XZ 00425f10 f region.obj - 0001:00024f30 ?Free@REGSC@@QAEXXZ 00425f30 f region.obj - 0001:00024f60 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 00425f60 f region.obj - 0001:00024fc0 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 00425fc0 f region.obj - 0001:00024fe0 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 00425fe0 f region.obj - 0001:000250e0 ?_ScanNextCore@REGSC@@IAEXXZ 004260e0 f region.obj - 0001:00025220 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 00426220 f region.obj - 0001:00025270 ??1REGN@@UAE@XZ 00426270 f region.obj - 0001:000252a0 ?SetRc@REGN@@QAEXPAVRC@@@Z 004262a0 f region.obj - 0001:00025300 ?Offset@REGN@@QAEXJJ@Z 00426300 f region.obj - 0001:00025330 ?FEmpty@REGN@@QAEHPAVRC@@@Z 00426330 f region.obj - 0001:00025380 ?FIsRc@REGN@@QAEHPAVRC@@@Z 00426380 f region.obj - 0001:000253b0 ?Scale@REGN@@QAEXJJJJ@Z 004263b0 f region.obj - 0001:00025bc0 ?FUnion@REGN@@QAEHPAV1@0@Z 00426bc0 f region.obj - 0001:00025ce0 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 00426ce0 f region.obj - 0001:00025e10 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00426e10 f region.obj - 0001:00026130 ?FIntersect@REGN@@QAEHPAV1@0@Z 00427130 f region.obj - 0001:00026260 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00427260 f region.obj - 0001:00026560 ?FDiff@REGN@@QAEHPAV1@0@Z 00427560 f region.obj - 0001:00026660 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 00427660 f region.obj - 0001:00026770 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00427770 f region.obj - 0001:00026aa0 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 00427aa0 f region.obj - 0001:00026d10 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 00427d10 f region.obj - 0001:00026d70 ??_EREGN@@UAEPAXI@Z 00427d70 f region.obj - 0001:00026d70 ??_GREGN@@UAEPAXI@Z 00427d70 f region.obj - 0001:00026d90 ?XpFetch@REGSC@@QAEJXZ 00427d90 f region.obj - 0001:00026e10 ??_GREGBL@@UAEPAXI@Z 00427e10 f region.obj - 0001:00026e10 ??_EREGBL@@UAEPAXI@Z 00427e10 f region.obj - 0001:00026e50 ??_GREGSC@@UAEPAXI@Z 00427e50 f region.obj - 0001:00026e50 ??_EREGSC@@UAEPAXI@Z 00427e50 f region.obj - 0001:00026fb0 _WinMain@16 00427fb0 f appbwin.obj - 0001:00026ff0 ?Abort@APPB@@UAEXXZ 00427ff0 f appbwin.obj - 0001:00027010 ?_FInitOS@APPB@@MAEHXZ 00428010 f appbwin.obj - 0001:000271a0 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 004281a0 f appbwin.obj - 0001:000271f0 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 004281f0 f appbwin.obj - 0001:00027290 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 00428290 f appbwin.obj - 0001:00027380 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 00428380 f appbwin.obj - 0001:00027440 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 00428440 f appbwin.obj - 0001:00027550 ?FlushUserEvents@APPB@@UAEXK@Z 00428550 f appbwin.obj - 0001:000275b0 ?_ShutDownViewer@APPB@@IAEXXZ 004285b0 f appbwin.obj - 0001:000275e0 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 004285e0 f appbwin.obj - 0001:00027660 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00428660 f appbwin.obj - 0001:00027e30 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00428e30 f appbwin.obj - 0001:00027ea0 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00428ea0 f appbwin.obj - 0001:00027f90 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00428f90 f appbwin.obj - 0001:00028450 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 00429450 f appbwin.obj - 0001:000285a0 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 004295a0 f gfxwin.obj - 0001:00028600 ?_Scr@ACR@@AAEKXZ 00429600 f gfxwin.obj - 0001:00028640 ?DrawDib@GNV@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAVRC@@@Z 00429640 f gfxwin.obj - 0001:00028680 ?Flush@GPT@@SGXXZ 00429680 f gfxwin.obj - 0001:00028690 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 00429690 f gfxwin.obj - 0001:00028b40 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 00429b40 f gfxwin.obj - 0001:00028b90 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 00429b90 f gfxwin.obj - 0001:00028c60 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 00429c60 f gfxwin.obj - 0001:00028cc0 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 00429cc0 f gfxwin.obj - 0001:00028d10 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 00429d10 f gfxwin.obj - 0001:00028dc0 ??1GPT@@EAE@XZ 00429dc0 f gfxwin.obj - 0001:00028e60 ?_Scr@GPT@@AAEKVACR@@@Z 00429e60 f gfxwin.obj - 0001:00028ee0 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 00429ee0 f gfxwin.obj - 0001:00029240 ?SetOffscreenColors@GPT@@QAEXPAVGL@@@Z 0042a240 f gfxwin.obj - 0001:000292d0 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 0042a2d0 f gfxwin.obj - 0001:00029320 ?CbRow@GPT@@QAEJXZ 0042a320 f gfxwin.obj - 0001:00029330 ?CbitPixel@GPT@@QAEJXZ 0042a330 f gfxwin.obj - 0001:00029380 ?Lock@GPT@@QAEXXZ 0042a380 f gfxwin.obj - 0001:00029390 ?Unlock@GPT@@QAEXXZ 0042a390 f gfxwin.obj - 0001:000293b0 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0042a3b0 f gfxwin.obj - 0001:000293e0 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0042a3e0 f gfxwin.obj - 0001:00029430 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 0042a430 f gfxwin.obj - 0001:000294f0 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 0042a4f0 f gfxwin.obj - 0001:00029520 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 0042a520 f gfxwin.obj - 0001:00029550 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 0042a550 f gfxwin.obj - 0001:00029700 ?_EnsurePalette@GPT@@AAEXXZ 0042a700 f gfxwin.obj - 0001:000297c0 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 0042a7c0 f gfxwin.obj - 0001:000299e0 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 0042a9e0 f gfxwin.obj - 0001:00029a20 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 0042aa20 f gfxwin.obj - 0001:00029c00 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 0042ac00 f gfxwin.obj - 0001:00029cc0 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 0042acc0 f gfxwin.obj - 0001:00029d90 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 0042ad90 f gfxwin.obj - 0001:00029e10 ?_SetStockBrush@GPT@@AAEXH@Z 0042ae10 f gfxwin.obj - 0001:00029e80 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 0042ae80 f gfxwin.obj - 0001:00029f50 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 0042af50 f gfxwin.obj - 0001:0002a330 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 0042b330 f gfxwin.obj - 0001:0002a690 ?DrawDib@GPT@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAUtagRECT@@PAUGDD@@@Z 0042b690 f gfxwin.obj - 0001:0002a710 ?FInit@NTL@@QAEHXZ 0042b710 f gfxwin.obj - 0001:0002a7d0 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 0042b7d0 f gfxwin.obj - 0001:0002a830 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 0042b830 f gfxwin.obj - 0001:0002a8c0 ?FFixedPitch@NTL@@QAEHJ@Z 0042b8c0 f gfxwin.obj - 0001:0002a8f0 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 0042b8f0 f gfxwin.obj - 0001:0002a950 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 0042b950 f gfxwin.obj - 0001:0002a980 ??_EGPT@@EAEPAXI@Z 0042b980 f gfxwin.obj - 0001:0002a980 ??_GGPT@@EAEPAXI@Z 0042b980 f gfxwin.obj - 0001:0002a9a0 ?FInitScreen@GOB@@SGHKJ@Z 0042b9a0 f gobwin.obj - 0001:0002aa10 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 0042ba10 f gobwin.obj - 0001:0002aa70 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 0042ba70 f gobwin.obj - 0001:0002aad0 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 0042bad0 f gobwin.obj - 0001:0002ab00 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 0042bb00 f gobwin.obj - 0001:0002ac00 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 0042bc00 f gobwin.obj - 0001:0002ac80 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 0042bc80 f gobwin.obj - 0001:0002ad20 ?Clean@GOB@@UAEXXZ 0042bd20 f gobwin.obj - 0001:0002ada0 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 0042bda0 f gobwin.obj - 0001:0002ade0 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 0042bde0 f gobwin.obj - 0001:0002aec0 ?FWouldBe@MUB@@SGHJ@Z 0042bec0 f menuwin.obj - 0001:0002aee0 ?FIs@MUB@@UAEHJ@Z 0042bee0 f menuwin.obj - 0001:0002aef0 ?Cls@MUB@@UAEJXZ 0042bef0 f menuwin.obj - 0001:0002af00 ??1MUB@@UAE@XZ 0042bf00 f menuwin.obj - 0001:0002af20 ?PmubNew@MUB@@SGPAV1@K@Z 0042bf20 f menuwin.obj - 0001:0002afb0 ?Set@MUB@@UAEXXZ 0042bfb0 f menuwin.obj - 0001:0002b000 ?Clean@MUB@@UAEXXZ 0042c000 f menuwin.obj - 0001:0002b140 ?EnqueueWcid@MUB@@UAEXJ@Z 0042c140 f menuwin.obj - 0001:0002b180 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 0042c180 f menuwin.obj - 0001:0002b380 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 0042c380 f menuwin.obj - 0001:0002b610 ?FRemoveAllListCid@MUB@@UAEHJ@Z 0042c610 f menuwin.obj - 0001:0002b7c0 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 0042c7c0 f menuwin.obj - 0001:0002b920 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 0042c920 f menuwin.obj - 0001:0002ba60 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 0042ca60 f menuwin.obj - 0001:0002baf0 ?_FInitLists@MUB@@AAEHXZ 0042caf0 f menuwin.obj - 0001:0002bdf0 ??_GMUB@@UAEPAXI@Z 0042cdf0 f menuwin.obj - 0001:0002bdf0 ??_EMUB@@UAEPAXI@Z 0042cdf0 f menuwin.obj - 0001:0002bf50 ?FWouldBe@GRPB@@SGHJ@Z 0042cf50 f groups.obj - 0001:0002bf70 ?FIs@GRPB@@UAEHJ@Z 0042cf70 f groups.obj - 0001:0002bf80 ?Cls@GRPB@@UAEJXZ 0042cf80 f groups.obj - 0001:0002bf90 ?FWouldBe@GLB@@SGHJ@Z 0042cf90 f groups.obj - 0001:0002bfb0 ?FIs@GLB@@UAEHJ@Z 0042cfb0 f groups.obj - 0001:0002bfc0 ?Cls@GLB@@UAEJXZ 0042cfc0 f groups.obj - 0001:0002bfd0 ?FWouldBe@GL@@SGHJ@Z 0042cfd0 f groups.obj - 0001:0002bff0 ?FIs@GL@@UAEHJ@Z 0042cff0 f groups.obj - 0001:0002c000 ?Cls@GL@@UAEJXZ 0042d000 f groups.obj - 0001:0002c010 ?FWouldBe@AL@@SGHJ@Z 0042d010 f groups.obj - 0001:0002c030 ?FIs@AL@@UAEHJ@Z 0042d030 f groups.obj - 0001:0002c040 ?Cls@AL@@UAEJXZ 0042d040 f groups.obj - 0001:0002c050 ?FWouldBe@GGB@@SGHJ@Z 0042d050 f groups.obj - 0001:0002c070 ?FIs@GGB@@UAEHJ@Z 0042d070 f groups.obj - 0001:0002c080 ?Cls@GGB@@UAEJXZ 0042d080 f groups.obj - 0001:0002c090 ?FWouldBe@GG@@SGHJ@Z 0042d090 f groups.obj - 0001:0002c0b0 ?FIs@GG@@UAEHJ@Z 0042d0b0 f groups.obj - 0001:0002c0c0 ?Cls@GG@@UAEJXZ 0042d0c0 f groups.obj - 0001:0002c0d0 ?FWouldBe@AG@@SGHJ@Z 0042d0d0 f groups.obj - 0001:0002c0f0 ?FIs@AG@@UAEHJ@Z 0042d0f0 f groups.obj - 0001:0002c100 ?Cls@AG@@UAEJXZ 0042d100 f groups.obj - 0001:0002c110 ??1GRPB@@UAE@XZ 0042d110 f groups.obj - 0001:0002c140 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0042d140 f groups.obj - 0001:0002c220 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0042d220 f groups.obj - 0001:0002c2f0 ?_FDup@GRPB@@IAEHPAV1@JJ@Z 0042d2f0 f groups.obj - 0001:0002c360 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0042d360 f groups.obj - 0001:0002c3b0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0042d3b0 f groups.obj - 0001:0002c480 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0042d480 f groups.obj - 0001:0002c540 ??0GLB@@IAE@J@Z 0042d540 f groups.obj - 0001:0002c570 ?QvGet@GLB@@QAEPAXJ@Z 0042d570 f groups.obj - 0001:0002c590 ?Get@GLB@@QAEXJPAX@Z 0042d590 f groups.obj - 0001:0002c5b0 ?Put@GLB@@QAEXJPAX@Z 0042d5b0 f groups.obj - 0001:0002c5d0 ?PvLock@GLB@@QAEPAXJ@Z 0042d5d0 f groups.obj - 0001:0002c5f0 ?SetMinGrow@GLB@@QAEXJ@Z 0042d5f0 f groups.obj - 0001:0002c620 ?PglNew@GL@@SGPAV1@JJ@Z 0042d620 f groups.obj - 0001:0002c680 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0042d680 f groups.obj - 0001:0002c6e0 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0042d6e0 f groups.obj - 0001:0002c730 ??0GL@@IAE@J@Z 0042d730 f groups.obj - 0001:0002c750 ?FFree@GL@@UAEHJ@Z 0042d750 f groups.obj - 0001:0002c770 ?PglDup@GL@@QAEPAV1@XZ 0042d770 f groups.obj - 0001:0002c7c0 ?CbOnFile@GL@@UAEJXZ 0042d7c0 f groups.obj - 0001:0002c7d0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0042d7d0 f groups.obj - 0001:0002c840 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0042d840 f groups.obj - 0001:0002c910 ?FInsert@GL@@QAEHJPAXJ@Z 0042d910 f groups.obj - 0001:0002c9b0 ?Delete@GL@@UAEXJ@Z 0042d9b0 f groups.obj - 0001:0002c9c0 ?Delete@GL@@QAEXJJ@Z 0042d9c0 f groups.obj - 0001:0002ca00 ?Move@GL@@QAEXJJ@Z 0042da00 f groups.obj - 0001:0002ca20 ?FAdd@GL@@UAEHPAXPAJ@Z 0042da20 f groups.obj - 0001:0002ca50 ?FPop@GL@@QAEHPAX@Z 0042da50 f groups.obj - 0001:0002ca80 ?FSetIvMac@GL@@QAEHJ@Z 0042da80 f groups.obj - 0001:0002cad0 ?FEnsureSpace@GL@@QAEHJK@Z 0042dad0 f groups.obj - 0001:0002cb10 ?PalNew@AL@@SGPAV1@JJ@Z 0042db10 f groups.obj - 0001:0002cb70 ??0AL@@IAE@J@Z 0042db70 f groups.obj - 0001:0002cb90 ?CbOnFile@AL@@UAEJXZ 0042db90 f groups.obj - 0001:0002cbb0 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 0042dbb0 f groups.obj - 0001:0002cc30 ?FFree@AL@@UAEHJ@Z 0042dc30 f groups.obj - 0001:0002cc70 ?FEnsureSpace@AL@@QAEHJK@Z 0042dc70 f groups.obj - 0001:0002ccc0 ?FAdd@AL@@UAEHPAXPAJ@Z 0042dcc0 f groups.obj - 0001:0002cd60 ?Delete@AL@@UAEXJ@Z 0042dd60 f groups.obj - 0001:0002ce10 ??0GGB@@IAE@JH@Z 0042de10 f groups.obj - 0001:0002ce50 ?_FDup@GGB@@IAEHPAV1@@Z 0042de50 f groups.obj - 0001:0002cea0 ?CbOnFile@GGB@@UAEJXZ 0042dea0 f groups.obj - 0001:0002ceb0 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0042deb0 f groups.obj - 0001:0002cfa0 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0042dfa0 f groups.obj - 0001:0002d130 ?FFree@GGB@@UAEHJ@Z 0042e130 f groups.obj - 0001:0002d160 ?FEnsureSpace@GGB@@QAEHJJK@Z 0042e160 f groups.obj - 0001:0002d1f0 ?_RemoveRgb@GGB@@IAEXJJ@Z 0042e1f0 f groups.obj - 0001:0002d240 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0042e240 f groups.obj - 0001:0002d290 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0042e290 f groups.obj - 0001:0002d2d0 ?GetFixed@GGB@@QAEXJPAX@Z 0042e2d0 f groups.obj - 0001:0002d300 ?PutFixed@GGB@@QAEXJPAX@Z 0042e300 f groups.obj - 0001:0002d330 ?Cb@GGB@@QAEJJ@Z 0042e330 f groups.obj - 0001:0002d350 ?QvGet@GGB@@QAEPAXJPAJ@Z 0042e350 f groups.obj - 0001:0002d390 ?PvLock@GGB@@QAEPAXJPAJ@Z 0042e390 f groups.obj - 0001:0002d3c0 ?Get@GGB@@QAEXJPAX@Z 0042e3c0 f groups.obj - 0001:0002d400 ?Put@GGB@@QAEXJPAX@Z 0042e400 f groups.obj - 0001:0002d440 ?FPut@GGB@@QAEHJJPAX@Z 0042e440 f groups.obj - 0001:0002d4b0 ?GetRgb@GGB@@QAEXJJJPAX@Z 0042e4b0 f groups.obj - 0001:0002d4f0 ?PutRgb@GGB@@QAEXJJJPAX@Z 0042e4f0 f groups.obj - 0001:0002d530 ?DeleteRgb@GGB@@QAEXJJJ@Z 0042e530 f groups.obj - 0001:0002d5c0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0042e5c0 f groups.obj - 0001:0002d6e0 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 0042e6e0 f groups.obj - 0001:0002d870 ?Merge@GGB@@QAEXJJ@Z 0042e870 f groups.obj - 0001:0002d910 ?PggNew@GG@@SGPAV1@JJJ@Z 0042e910 f groups.obj - 0001:0002d980 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0042e980 f groups.obj - 0001:0002d9e0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0042e9e0 f groups.obj - 0001:0002da30 ?PggDup@GG@@QAEPAV1@XZ 0042ea30 f groups.obj - 0001:0002da70 ?FInsert@GG@@QAEHJJPAX0@Z 0042ea70 f groups.obj - 0001:0002db40 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 0042eb40 f groups.obj - 0001:0002dc50 ?FAdd@GG@@UAEHJPAJPAX1@Z 0042ec50 f groups.obj - 0001:0002dc80 ?Delete@GG@@UAEXJ@Z 0042ec80 f groups.obj - 0001:0002dce0 ?Move@GG@@QAEXJJ@Z 0042ece0 f groups.obj - 0001:0002dd00 ?Swap@GG@@QAEXJJ@Z 0042ed00 f groups.obj - 0001:0002dd20 ?PagNew@AG@@SGPAV1@JJJ@Z 0042ed20 f groups.obj - 0001:0002dd90 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 0042ed90 f groups.obj - 0001:0002ddf0 ?FAdd@AG@@UAEHJPAJPAX1@Z 0042edf0 f groups.obj - 0001:0002df00 ?Delete@AG@@UAEXJ@Z 0042ef00 f groups.obj - 0001:0002df90 ??_EGRPB@@UAEPAXI@Z 0042ef90 f groups.obj - 0001:0002df90 ??_GGRPB@@UAEPAXI@Z 0042ef90 f groups.obj - 0001:0002dfb0 ??_EGG@@UAEPAXI@Z 0042efb0 f groups.obj - 0001:0002dfb0 ??_GGG@@UAEPAXI@Z 0042efb0 f groups.obj - 0001:0002dfd0 ??_EAG@@UAEPAXI@Z 0042efd0 f groups.obj - 0001:0002dfd0 ??_GAG@@UAEPAXI@Z 0042efd0 f groups.obj - 0001:0002dff0 ??_GGLB@@UAEPAXI@Z 0042eff0 f groups.obj - 0001:0002dff0 ??_EGLB@@UAEPAXI@Z 0042eff0 f groups.obj - 0001:0002e010 ??_EGL@@UAEPAXI@Z 0042f010 f groups.obj - 0001:0002e010 ??_GGL@@UAEPAXI@Z 0042f010 f groups.obj - 0001:0002e030 ??_EAL@@UAEPAXI@Z 0042f030 f groups.obj - 0001:0002e030 ??_GAL@@UAEPAXI@Z 0042f030 f groups.obj - 0001:0002e050 ??_GGGB@@UAEPAXI@Z 0042f050 f groups.obj - 0001:0002e050 ??_EGGB@@UAEPAXI@Z 0042f050 f groups.obj - 0001:0002e070 ?FWouldBe@GSTB@@SGHJ@Z 0042f070 f groups2.obj - 0001:0002e090 ?FIs@GSTB@@UAEHJ@Z 0042f090 f groups2.obj - 0001:0002e0a0 ?Cls@GSTB@@UAEJXZ 0042f0a0 f groups2.obj - 0001:0002e0b0 ?FWouldBe@GST@@SGHJ@Z 0042f0b0 f groups2.obj - 0001:0002e0d0 ?FIs@GST@@UAEHJ@Z 0042f0d0 f groups2.obj - 0001:0002e0e0 ?Cls@GST@@UAEJXZ 0042f0e0 f groups2.obj - 0001:0002e0f0 ??0GSTB@@IAE@JK@Z 0042f0f0 f groups2.obj - 0001:0002e130 ?CbOnFile@GSTB@@UAEJXZ 0042f130 f groups2.obj - 0001:0002e140 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 0042f140 f groups2.obj - 0001:0002e240 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 0042f240 f groups2.obj - 0001:0002e410 ?FEnsureSpace@GSTB@@QAEHJJK@Z 0042f410 f groups2.obj - 0001:0002e480 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 0042f480 f groups2.obj - 0001:0002e4a0 ?FPutRgch@GSTB@@QAEHJPADJ@Z 0042f4a0 f groups2.obj - 0001:0002e540 ?FPutStn@GSTB@@QAEHJPAVSTN@@@Z 0042f540 f groups2.obj - 0001:0002e560 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 0042f560 f groups2.obj - 0001:0002e590 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 0042f590 f groups2.obj - 0001:0002e5b0 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 0042f5b0 f groups2.obj - 0001:0002e5d0 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 0042f5d0 f groups2.obj - 0001:0002e640 ?FFindExtra@GSTB@@QAEHPAXPAVSTN@@PAJ@Z 0042f640 f groups2.obj - 0001:0002e6e0 ?GetExtra@GSTB@@QAEXJPAX@Z 0042f6e0 f groups2.obj - 0001:0002e710 ?PutExtra@GSTB@@QAEXJPAX@Z 0042f710 f groups2.obj - 0001:0002e740 ?_Qst@GSTB@@IAEPADJ@Z 0042f740 f groups2.obj - 0001:0002e760 ?_AppendRgch@GSTB@@IAEXPADJ@Z 0042f760 f groups2.obj - 0001:0002e790 ?_RemoveSt@GSTB@@IAEXJ@Z 0042f790 f groups2.obj - 0001:0002e7f0 ?_SwapBytesRgbst@GSTB@@IAEXXZ 0042f7f0 f groups2.obj - 0001:0002e830 ?_TranslateGrst@GSTB@@IAEXFH@Z 0042f830 f groups2.obj - 0001:0002e8e0 ?_FTranslateGrst@GSTB@@IAEHF@Z 0042f8e0 f groups2.obj - 0001:0002eb00 ?FFree@GSTB@@UAEHJ@Z 0042fb00 f groups2.obj - 0001:0002eb30 ?PgstNew@GST@@SGPAV1@JJJ@Z 0042fb30 f groups2.obj - 0001:0002eba0 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 0042fba0 f groups2.obj - 0001:0002ec00 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 0042fc00 f groups2.obj - 0001:0002ec30 ?FFindRgch@GST@@UAEHPADJPAJK@Z 0042fc30 f groups2.obj - 0001:0002ed00 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 0042fd00 f groups2.obj - 0001:0002eda0 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 0042fda0 f groups2.obj - 0001:0002edc0 ?Delete@GST@@UAEXJ@Z 0042fdc0 f groups2.obj - 0001:0002ee00 ?Move@GST@@QAEXJJ@Z 0042fe00 f groups2.obj - 0001:0002ee30 ??_GGST@@UAEPAXI@Z 0042fe30 f groups2.obj - 0001:0002ee30 ??_EGST@@UAEPAXI@Z 0042fe30 f groups2.obj - 0001:0002ee50 ??_EGSTB@@UAEPAXI@Z 0042fe50 f groups2.obj - 0001:0002ee50 ??_GGSTB@@UAEPAXI@Z 0042fe50 f groups2.obj - 0001:0002ee70 ?FWouldBe@CFL@@SGHJ@Z 0042fe70 f chunk.obj - 0001:0002ee90 ?FIs@CFL@@UAEHJ@Z 0042fe90 f chunk.obj - 0001:0002eea0 ?Cls@CFL@@UAEJXZ 0042fea0 f chunk.obj - 0001:0002eeb0 ?FWouldBe@CGE@@SGHJ@Z 0042feb0 f chunk.obj - 0001:0002eed0 ?FIs@CGE@@UAEHJ@Z 0042fed0 f chunk.obj - 0001:0002eee0 ?Cls@CGE@@UAEJXZ 0042fee0 f chunk.obj - 0001:0002eef0 ??0CFL@@AAE@XZ 0042fef0 f chunk.obj - 0001:0002ef10 ??1CFL@@EAE@XZ 0042ff10 f chunk.obj - 0001:0002efb0 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 0042ffb0 f chunk.obj - 0001:0002f080 ?FReopen@CFL@@QAEHXZ 00430080 f chunk.obj - 0001:0002f250 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00430250 f chunk.obj - 0001:0002f270 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00430270 f chunk.obj - 0001:0002f320 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00430320 f chunk.obj - 0001:0002f3b0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 004303b0 f chunk.obj - 0001:0002f3f0 ?PcflReadForestFromFlo@CFL@@SGPAV1@PAUFLO@@H@Z 004303f0 f chunk.obj - 0001:0002f6e0 ?FForest@CFL@@QAEHKK@Z 004306e0 f chunk.obj - 0001:0002f730 ?PcflReadForest@CFL@@QAEPAV1@KKH@Z 00430730 f chunk.obj - 0001:0002f7e0 ?FSetGrfcfl@CFL@@QAEHKK@Z 004307e0 f chunk.obj - 0001:0002f880 ?ElError@CFL@@QAEJXZ 00430880 f chunk.obj - 0001:0002f8a0 ?ResetEl@CFL@@QAEXJ@Z 004308a0 f chunk.obj - 0001:0002f8d0 ?Release@CFL@@UAEXXZ 004308d0 f chunk.obj - 0001:0002f8f0 ?_TValidIndex@CFL@@AAEHXZ 004308f0 f chunk.obj - 0001:0002fc50 ?_FReadIndex@CFL@@AAEHXZ 00430c50 f chunk.obj - 0001:000302c0 ?_ReadFreeMap@CFL@@AAEXXZ 004312c0 f chunk.obj - 0001:00030340 ?FSave@CFL@@QAEHKPAVFNI@@@Z 00431340 f chunk.obj - 0001:00030660 ?_FWriteIndex@CFL@@AAEHK@Z 00431660 f chunk.obj - 0001:000307b0 ?FEnsureOnExtra@CFL@@QAEHKK@Z 004317b0 f chunk.obj - 0001:000307f0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 004317f0 f chunk.obj - 0001:000308f0 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 004318f0 f chunk.obj - 0001:00030950 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00431950 f chunk.obj - 0001:00030990 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00431990 f chunk.obj - 0001:000309f0 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 004319f0 f chunk.obj - 0001:00030a40 ?SetPacked@CFL@@QAEXKKH@Z 00431a40 f chunk.obj - 0001:00030ac0 ?FPacked@CFL@@QAEHKK@Z 00431ac0 f chunk.obj - 0001:00030b10 ?_FCreateExtra@CFL@@AAEHXZ 00431b10 f chunk.obj - 0001:00030b40 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00431b40 f chunk.obj - 0001:00030c50 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00431c50 f chunk.obj - 0001:00030cf0 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00431cf0 f chunk.obj - 0001:00030d70 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00431d70 f chunk.obj - 0001:00030dc0 ?FAddPv@CFL@@QAEHPAXJKPAK@Z 00431dc0 f chunk.obj - 0001:00030e60 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 00431e60 f chunk.obj - 0001:00030f20 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 00431f20 f chunk.obj - 0001:00030fa0 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00431fa0 f chunk.obj - 0001:00031080 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 00432080 f chunk.obj - 0001:000310a0 ?FPutPv@CFL@@QAEHPAXJKK@Z 004320a0 f chunk.obj - 0001:000310c0 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 004320c0 f chunk.obj - 0001:00031120 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00432120 f chunk.obj - 0001:00031330 ?Move@CFL@@QAEXKKKK@Z 00432330 f chunk.obj - 0001:00031520 ?Delete@CFL@@QAEXKK@Z 00432520 f chunk.obj - 0001:000316c0 ?SetLoner@CFL@@QAEXKKH@Z 004326c0 f chunk.obj - 0001:00031720 ?CckiRef@CFL@@QAEJKK@Z 00432720 f chunk.obj - 0001:00031770 ?TIsDescendent@CFL@@QAEHKKKK@Z 00432770 f chunk.obj - 0001:00031840 ?DeleteChild@CFL@@QAEXKKKKK@Z 00432840 f chunk.obj - 0001:000318f0 ?_FDecRefCount@CFL@@AAEHJ@Z 004328f0 f chunk.obj - 0001:00031930 ?_DeleteCore@CFL@@AAEXJ@Z 00432930 f chunk.obj - 0001:00031990 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00432990 f chunk.obj - 0001:00031b70 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 00432b70 f chunk.obj - 0001:00031be0 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 00432be0 f chunk.obj - 0001:00031ca0 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 00432ca0 f chunk.obj - 0001:00031cf0 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 00432cf0 f chunk.obj - 0001:00031d90 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00432d90 f chunk.obj - 0001:00031e20 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 00432e20 f chunk.obj - 0001:00031f40 ?ChangeChid@CFL@@QAEXKKKKKK@Z 00432f40 f chunk.obj - 0001:00031fe0 ?CckiCtg@CFL@@QAEJK@Z 00432fe0 f chunk.obj - 0001:00032050 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 00433050 f chunk.obj - 0001:00032100 ?Ckid@CFL@@QAEJKK@Z 00433100 f chunk.obj - 0001:00032150 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00433150 f chunk.obj - 0001:000321d0 ?FGetKidChid@CFL@@QAEHKKKPAUKID@@@Z 004331d0 f chunk.obj - 0001:000321f0 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 004331f0 f chunk.obj - 0001:00032230 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00433230 f chunk.obj - 0001:00032310 ?FGetIkid@CFL@@QAEHKKKKKPAJ@Z 00433310 f chunk.obj - 0001:00032370 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00433370 f chunk.obj - 0001:00032430 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 00433430 f chunk.obj - 0001:00032500 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 00433500 f chunk.obj - 0001:00032560 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 00433560 f chunk.obj - 0001:00032970 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 00433970 f chunk.obj - 0001:00032b90 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 00433b90 f chunk.obj - 0001:00032c20 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 00433c20 f chunk.obj - 0001:00032c40 ?FClone@CFL@@QAEHKKPAV1@PAK@Z 00433c40 f chunk.obj - 0001:00032c60 ?_Rti@CFL@@AAEJKK@Z 00433c60 f chunk.obj - 0001:00032c90 ?_FSetRti@CFL@@AAEHKKJ@Z 00433c90 f chunk.obj - 0001:00032d60 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00433d60 f chunk.obj - 0001:00032e30 ??0CGE@@QAE@XZ 00433e30 f chunk.obj - 0001:00032e50 ??1CGE@@UAE@XZ 00433e50 f chunk.obj - 0001:00032e80 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00433e80 f chunk.obj - 0001:00032ec0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00433ec0 f chunk.obj - 0001:000330a0 ??_GCFL@@EAEPAXI@Z 004340a0 f chunk.obj - 0001:000330a0 ??_ECFL@@EAEPAXI@Z 004340a0 f chunk.obj - 0001:000330c0 ??_GCGE@@UAEPAXI@Z 004340c0 f chunk.obj - 0001:000330c0 ??_ECGE@@UAEPAXI@Z 004340c0 f chunk.obj - 0001:000330e0 ?FWouldBe@CODM@@SGHJ@Z 004340e0 f codec.obj - 0001:00033100 ?FIs@CODM@@UAEHJ@Z 00434100 f codec.obj - 0001:00033110 ?Cls@CODM@@UAEJXZ 00434110 f codec.obj - 0001:00033120 ?FWouldBe@CODC@@SGHJ@Z 00434120 f codec.obj - 0001:00033140 ??0CODM@@QAE@PAVCODC@@J@Z 00434140 f codec.obj - 0001:00033180 ??1CODM@@UAE@XZ 00434180 f codec.obj - 0001:00033200 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00434200 f codec.obj - 0001:00033250 ?FCanDo@CODM@@UAEHJH@Z 00434250 f codec.obj - 0001:00033280 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00434280 f codec.obj - 0001:00033300 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00434300 f codec.obj - 0001:000333b0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004343b0 f codec.obj - 0001:000334d0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 004344d0 f codec.obj - 0001:000336e0 ??_ECODM@@UAEPAXI@Z 004346e0 f codec.obj - 0001:000336e0 ??_GCODM@@UAEPAXI@Z 004346e0 f codec.obj - 0001:00033700 ?FWouldBe@KCDC@@SGHJ@Z 00434700 f codkauai.obj - 0001:00033720 ?FIs@KCDC@@UAEHJ@Z 00434720 f codkauai.obj - 0001:00033730 ?Cls@KCDC@@UAEJXZ 00434730 f codkauai.obj - 0001:00033740 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00434740 f codkauai.obj - 0001:000337c0 ?Set@BITA@@QAEXPAXJ@Z 004347c0 f codkauai.obj - 0001:000337e0 ?FWriteBits@BITA@@QAEHKJ@Z 004347e0 f codkauai.obj - 0001:000338a0 ?FWriteLogEncoded@BITA@@QAEHK@Z 004348a0 f codkauai.obj - 0001:000338f0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004348f0 f codkauai.obj - 0001:00033c00 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00434c00 f codkauai.obj - 0001:00037530 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00438530 f codkauai.obj - 0001:00037910 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00438910 f codkauai.obj - 0001:00039ea0 ?FWouldBe@BACO@@SGHJ@Z 0043aea0 f crf.obj - 0001:00039ec0 ?FIs@BACO@@UAEHJ@Z 0043aec0 f crf.obj - 0001:00039ed0 ?Cls@BACO@@UAEJXZ 0043aed0 f crf.obj - 0001:00039ee0 ?FWouldBe@RCA@@SGHJ@Z 0043aee0 f crf.obj - 0001:00039f00 ?FWouldBe@CRF@@SGHJ@Z 0043af00 f crf.obj - 0001:00039f20 ?FIs@CRF@@UAEHJ@Z 0043af20 f crf.obj - 0001:00039f30 ?Cls@CRF@@UAEJXZ 0043af30 f crf.obj - 0001:00039f40 ?FWouldBe@CRM@@SGHJ@Z 0043af40 f crf.obj - 0001:00039f60 ?FIs@CRM@@UAEHJ@Z 0043af60 f crf.obj - 0001:00039f70 ?Cls@CRM@@UAEJXZ 0043af70 f crf.obj - 0001:00039f80 ?FWouldBe@CABO@@SGHJ@Z 0043af80 f crf.obj - 0001:00039fa0 ?FIs@CABO@@UAEHJ@Z 0043afa0 f crf.obj - 0001:00039fb0 ?Cls@CABO@@UAEJXZ 0043afb0 f crf.obj - 0001:00039fc0 ??0BACO@@IAE@XZ 0043afc0 f crf.obj - 0001:00039ff0 ??1BACO@@MAE@XZ 0043aff0 f crf.obj - 0001:0003a020 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0043b020 f crf.obj - 0001:0003a060 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0043b060 f crf.obj - 0001:0003a070 ?CbOnFile@BACO@@UAEJXZ 0043b070 f crf.obj - 0001:0003a080 ?Release@BACO@@UAEXXZ 0043b080 f crf.obj - 0001:0003a0d0 ?Detach@BACO@@UAEXXZ 0043b0d0 f crf.obj - 0001:0003a110 ?SetCrep@BACO@@UAEXJ@Z 0043b110 f crf.obj - 0001:0003a140 ??0CRF@@IAE@PAVCFL@@J@Z 0043b140 f crf.obj - 0001:0003a170 ??1CRF@@UAE@XZ 0043b170 f crf.obj - 0001:0003a200 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 0043b200 f crf.obj - 0001:0003a250 ?SetCbMax@CRF@@QAEXJ@Z 0043b250 f crf.obj - 0001:0003a2c0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 0043b2c0 f crf.obj - 0001:0003a5a0 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 0043b5a0 f crf.obj - 0001:0003a790 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 0043b790 f crf.obj - 0001:0003a800 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 0043b800 f crf.obj - 0001:0003a880 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 0043b880 f crf.obj - 0001:0003a8d0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 0043b8d0 f crf.obj - 0001:0003a920 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 0043b920 f crf.obj - 0001:0003a9a0 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 0043b9a0 f crf.obj - 0001:0003aa50 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 0043ba50 f crf.obj - 0001:0003ab80 ?_FPurgeCb@CRF@@IAEHJJ@Z 0043bb80 f crf.obj - 0001:0003ac90 ??1CRM@@UAE@XZ 0043bc90 f crf.obj - 0001:0003ad00 ?PcrmNew@CRM@@SGPAV1@J@Z 0043bd00 f crf.obj - 0001:0003ad60 ?TLoad@CRM@@UAEHKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 0043bd60 f crf.obj - 0001:0003adc0 ?PbacoFetch@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 0043bdc0 f crf.obj - 0001:0003ae50 ?PbacoFind@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 0043be50 f crf.obj - 0001:0003ae90 ?FSetCrep@CRM@@UAEHJKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 0043be90 f crf.obj - 0001:0003af10 ?PcrfFindChunk@CRM@@UAEPAVCRF@@KKK@Z 0043bf10 f crf.obj - 0001:0003afa0 ?FAddCfl@CRM@@QAEHPAVCFL@@JPAJ@Z 0043bfa0 f crf.obj - 0001:0003b010 ?PcrfGet@CRM@@QAEPAVCRF@@J@Z 0043c010 f crf.obj - 0001:0003b050 ??_ECRM@@UAEPAXI@Z 0043c050 f crf.obj - 0001:0003b050 ??_GCRM@@UAEPAXI@Z 0043c050 f crf.obj - 0001:0003b070 ??_GBACO@@MAEPAXI@Z 0043c070 f crf.obj - 0001:0003b070 ??_EBACO@@MAEPAXI@Z 0043c070 f crf.obj - 0001:0003b090 ??_ECRF@@UAEPAXI@Z 0043c090 f crf.obj - 0001:0003b090 ??_GCRF@@UAEPAXI@Z 0043c090 f crf.obj - 0001:0003b0c0 ?FWouldBe@FIL@@SGHJ@Z 0043c0c0 f file.obj - 0001:0003b0e0 ?FIs@FIL@@UAEHJ@Z 0043c0e0 f file.obj - 0001:0003b0f0 ?Cls@FIL@@UAEJXZ 0043c0f0 f file.obj - 0001:0003b100 ?FWouldBe@BLCK@@SGHJ@Z 0043c100 f file.obj - 0001:0003b120 ?FIs@BLCK@@UAEHJ@Z 0043c120 f file.obj - 0001:0003b130 ?Cls@BLCK@@UAEJXZ 0043c130 f file.obj - 0001:0003b140 ??0FIL@@IAE@PAVFNI@@K@Z 0043c140 f file.obj - 0001:0003b1b0 ??1FIL@@MAE@XZ 0043c1b0 f file.obj - 0001:0003b200 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0043c200 f file.obj - 0001:0003b2a0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0043c2a0 f file.obj - 0001:0003b330 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0043c330 f file.obj - 0001:0003b3c0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0043c3c0 f file.obj - 0001:0003b420 ?FSetGrffil@FIL@@QAEHKK@Z 0043c420 f file.obj - 0001:0003b4b0 ?Release@FIL@@UAEXXZ 0043c4b0 f file.obj - 0001:0003b4e0 ?SetTemp@FIL@@QAEXH@Z 0043c4e0 f file.obj - 0001:0003b520 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 0043c520 f file.obj - 0001:0003b590 ?ShutDown@FIL@@SGXXZ 0043c590 f file.obj - 0001:0003b600 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0043c600 f file.obj - 0001:0003b650 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0043c650 f file.obj - 0001:0003b6a0 ?FCopy@FLO@@QAEHPAU1@@Z 0043c6a0 f file.obj - 0001:0003b770 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0043c770 f file.obj - 0001:0003b7f0 ?FWriteHq@FLO@@QAEHPAXJ@Z 0043c7f0 f file.obj - 0001:0003b840 ?FTranslate@FLO@@QAEHF@Z 0043c840 f file.obj - 0001:0003bb50 ??0BLCK@@QAE@PAUFLO@@H@Z 0043cb50 f file.obj - 0001:0003bba0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0043cba0 f file.obj - 0001:0003bbe0 ??0BLCK@@QAE@XZ 0043cbe0 f file.obj - 0001:0003bc00 ??1BLCK@@UAE@XZ 0043cc00 f file.obj - 0001:0003bc20 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0043cc20 f file.obj - 0001:0003bc60 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0043cc60 f file.obj - 0001:0003bca0 ?SetHq@BLCK@@QAEXPAPAXH@Z 0043cca0 f file.obj - 0001:0003bce0 ?Free@BLCK@@QAEXXZ 0043cce0 f file.obj - 0001:0003bd10 ?HqFree@BLCK@@QAEPAXH@Z 0043cd10 f file.obj - 0001:0003bdc0 ?Cb@BLCK@@QAEJH@Z 0043cdc0 f file.obj - 0001:0003bde0 ?FSetTemp@BLCK@@QAEHJH@Z 0043cde0 f file.obj - 0001:0003be70 ?FMoveMin@BLCK@@QAEHJ@Z 0043ce70 f file.obj - 0001:0003bee0 ?FMoveLim@BLCK@@QAEHJ@Z 0043cee0 f file.obj - 0001:0003bf50 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0043cf50 f file.obj - 0001:0003bfe0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0043cfe0 f file.obj - 0001:0003c070 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 0043d070 f file.obj - 0001:0003c120 ?FWriteHq@BLCK@@QAEHPAXJH@Z 0043d120 f file.obj - 0001:0003c1b0 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0043d1b0 f file.obj - 0001:0003c230 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0043d230 f file.obj - 0001:0003c2d0 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 0043d2d0 f file.obj - 0001:0003c3b0 ?FPacked@BLCK@@QAEHPAJ@Z 0043d3b0 f file.obj - 0001:0003c3f0 ?FUnpackData@BLCK@@QAEHXZ 0043d3f0 f file.obj - 0001:0003c4f0 ?CbMem@BLCK@@QAEJXZ 0043d4f0 f file.obj - 0001:0003c540 ??_EFIL@@MAEPAXI@Z 0043d540 f file.obj - 0001:0003c540 ??_GFIL@@MAEPAXI@Z 0043d540 f file.obj - 0001:0003c560 ??_EBLCK@@UAEPAXI@Z 0043d560 f file.obj - 0001:0003c560 ??_GBLCK@@UAEPAXI@Z 0043d560 f file.obj - 0001:0003c5d0 ?_FOpen@FIL@@IAEHHK@Z 0043d5d0 f filewin.obj - 0001:0003c6d0 ?_Close@FIL@@IAEXH@Z 0043d6d0 f filewin.obj - 0001:0003c740 ?Flush@FIL@@QAEXXZ 0043d740 f filewin.obj - 0001:0003c770 ?_SetFpPos@FIL@@IAEXJ@Z 0043d770 f filewin.obj - 0001:0003c7d0 ?FSetFpMac@FIL@@QAEHJ@Z 0043d7d0 f filewin.obj - 0001:0003c860 ?FpMac@FIL@@QAEJXZ 0043d860 f filewin.obj - 0001:0003c8f0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0043d8f0 f filewin.obj - 0001:0003c9a0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0043d9a0 f filewin.obj - 0001:0003ca60 ?FSwapNames@FIL@@QAEHPAV1@@Z 0043da60 f filewin.obj - 0001:0003cc40 ?FRename@FIL@@QAEHPAVFNI@@@Z 0043dc40 f filewin.obj - 0001:0003cd00 ?FWouldBe@FNI@@SGHJ@Z 0043dd00 f fniwin.obj - 0001:0003cd20 ?FIs@FNI@@UAEHJ@Z 0043dd20 f fniwin.obj - 0001:0003cd30 ?Cls@FNI@@UAEJXZ 0043dd30 f fniwin.obj - 0001:0003cd40 ?FWouldBe@FNE@@SGHJ@Z 0043dd40 f fniwin.obj - 0001:0003cd60 ?FIs@FNE@@UAEHJ@Z 0043dd60 f fniwin.obj - 0001:0003cd70 ?Cls@FNE@@UAEJXZ 0043dd70 f fniwin.obj - 0001:0003cd80 ?SetNil@FNI@@QAEXXZ 0043dd80 f fniwin.obj - 0001:0003cd90 ??0FNI@@QAE@XZ 0043dd90 f fniwin.obj - 0001:0003cdc0 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 0043ddc0 f fniwin.obj - 0001:0003ce80 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0043de80 f fniwin.obj - 0001:0003cfd0 ?FGetUnique@FNI@@QAEHJ@Z 0043dfd0 f fniwin.obj - 0001:0003d0e0 ?FGetTemp@FNI@@QAEHXZ 0043e0e0 f fniwin.obj - 0001:0003d180 ?Ftg@FNI@@QAEJXZ 0043e180 f fniwin.obj - 0001:0003d190 ?Grfvk@FNI@@QAEKXZ 0043e190 f fniwin.obj - 0001:0003d2a0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0043e2a0 f fniwin.obj - 0001:0003d310 ?FChangeFtg@FNI@@QAEHJ@Z 0043e310 f fniwin.obj - 0001:0003d3c0 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0043e3c0 f fniwin.obj - 0001:0003d400 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 0043e400 f fniwin.obj - 0001:0003d410 ?TExists@FNI@@QAEHXZ 0043e410 f fniwin.obj - 0001:0003d510 ?FDelete@FNI@@QAEHXZ 0043e510 f fniwin.obj - 0001:0003d540 ?FRename@FNI@@QAEHPAV1@@Z 0043e540 f fniwin.obj - 0001:0003d590 ?FEqual@FNI@@QAEHPAV1@@Z 0043e590 f fniwin.obj - 0001:0003d5b0 ?FDir@FNI@@QAEHXZ 0043e5b0 f fniwin.obj - 0001:0003d5c0 ?FSameDir@FNI@@QAEHPAV1@@Z 0043e5c0 f fniwin.obj - 0001:0003d660 ?FDownDir@FNI@@QAEHPAVSTN@@K@Z 0043e660 f fniwin.obj - 0001:0003d760 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 0043e760 f fniwin.obj - 0001:0003d890 ?_CchExt@FNI@@AAEJXZ 0043e890 f fniwin.obj - 0001:0003d8d0 ?_SetFtgFromName@FNI@@AAEXXZ 0043e8d0 f fniwin.obj - 0001:0003d950 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0043e950 f fniwin.obj - 0001:0003da70 ??0FNE@@QAE@XZ 0043ea70 f fniwin.obj - 0001:0003dab0 ??1FNE@@UAE@XZ 0043eab0 f fniwin.obj - 0001:0003dad0 ?_Free@FNE@@AAEXXZ 0043ead0 f fniwin.obj - 0001:0003db40 ?FInit@FNE@@QAEHPAVFNI@@PAJJK@Z 0043eb40 f fniwin.obj - 0001:0003dcb0 ?FNextFni@FNE@@QAEHPAVFNI@@PAKK@Z 0043ecb0 f fniwin.obj - 0001:0003e000 ?_FPop@FNE@@AAEHXZ 0043f000 f fniwin.obj - 0001:0003e070 ??_EFNI@@UAEPAXI@Z 0043f070 f fniwin.obj - 0001:0003e070 ??_GFNI@@UAEPAXI@Z 0043f070 f fniwin.obj - 0001:0003e090 ??_GFNE@@UAEPAXI@Z 0043f090 f fniwin.obj - 0001:0003e090 ??_EFNE@@UAEPAXI@Z 0043f090 f fniwin.obj - 0001:0003e0b0 ?FWouldBe@MBMP@@SGHJ@Z 0043f0b0 f mbmp.obj - 0001:0003e0d0 ?FIs@MBMP@@UAEHJ@Z 0043f0d0 f mbmp.obj - 0001:0003e0e0 ?Cls@MBMP@@UAEJXZ 0043f0e0 f mbmp.obj - 0001:0003e0f0 ??1MBMP@@UAE@XZ 0043f0f0 f mbmp.obj - 0001:0003e110 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 0043f110 f mbmp.obj - 0001:0003e180 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 0043f180 f mbmp.obj - 0001:0003e560 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 0043f560 f mbmp.obj - 0001:0003e610 ?PmbmpRead@MBMP@@SGPAV1@PAVBLCK@@@Z 0043f610 f mbmp.obj - 0001:0003e760 ?CbOnFile@MBMP@@UAEJXZ 0043f760 f mbmp.obj - 0001:0003e770 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 0043f770 f mbmp.obj - 0001:0003e7d0 ?GetRc@MBMP@@QAEXPAVRC@@@Z 0043f7d0 f mbmp.obj - 0001:0003e800 ?FPtIn@MBMP@@QAEHJJ@Z 0043f800 f mbmp.obj - 0001:0003e8a0 ?FReadMbmp@MBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0043f8a0 f mbmp.obj - 0001:0003e900 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0043f900 f mbmp.obj - 0001:0003edb0 ??_EMBMP@@UAEPAXI@Z 0043fdb0 f mbmp.obj - 0001:0003edb0 ??_GMBMP@@UAEPAXI@Z 0043fdb0 f mbmp.obj - 0001:0003ee60 ?FWouldBe@SNDV@@SGHJ@Z 0043fe60 f sndm.obj - 0001:0003ee80 ?FWouldBe@SNDM@@SGHJ@Z 0043fe80 f sndm.obj - 0001:0003eea0 ?FIs@SNDM@@UAEHJ@Z 0043fea0 f sndm.obj - 0001:0003eeb0 ?Cls@SNDM@@UAEJXZ 0043feb0 f sndm.obj - 0001:0003eec0 ?FWouldBe@SNDMQ@@SGHJ@Z 0043fec0 f sndm.obj - 0001:0003eee0 ?FIs@SNDMQ@@UAEHJ@Z 0043fee0 f sndm.obj - 0001:0003eef0 ?Cls@SNDMQ@@UAEJXZ 0043fef0 f sndm.obj - 0001:0003ef00 ?FWouldBe@SNQUE@@SGHJ@Z 0043ff00 f sndm.obj - 0001:0003ef20 ?FIs@SNQUE@@UAEHJ@Z 0043ff20 f sndm.obj - 0001:0003ef30 ?Cls@SNQUE@@UAEJXZ 0043ff30 f sndm.obj - 0001:0003ef40 ?BeginSynch@SNDV@@UAEXXZ 0043ff40 f sndm.obj - 0001:0003ef50 ?EndSynch@SNDV@@UAEXXZ 0043ff50 f sndm.obj - 0001:0003ef60 ??0SNDM@@IAE@XZ 0043ff60 f sndm.obj - 0001:0003ef80 ??1SNDM@@UAE@XZ 0043ff80 f sndm.obj - 0001:0003eff0 ?PsndmNew@SNDM@@SGPAV1@XZ 0043fff0 f sndm.obj - 0001:0003f030 ?_FInit@SNDM@@IAEHXZ 00440030 f sndm.obj - 0001:0003f060 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 00440060 f sndm.obj - 0001:0003f0e0 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 004400e0 f sndm.obj - 0001:0003f1b0 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 004401b0 f sndm.obj - 0001:0003f1e0 ?RemoveSndv@SNDM@@UAEXK@Z 004401e0 f sndm.obj - 0001:0003f230 ?FActive@SNDM@@UAEHXZ 00440230 f sndm.obj - 0001:0003f240 ?Activate@SNDM@@UAEXH@Z 00440240 f sndm.obj - 0001:0003f2b0 ?Suspend@SNDM@@UAEXH@Z 004402b0 f sndm.obj - 0001:0003f300 ?SetVlm@SNDM@@UAEXJ@Z 00440300 f sndm.obj - 0001:0003f350 ?VlmCur@SNDM@@UAEJXZ 00440350 f sndm.obj - 0001:0003f3a0 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 004403a0 f sndm.obj - 0001:0003f410 ?Stop@SNDM@@UAEXJ@Z 00440410 f sndm.obj - 0001:0003f460 ?StopAll@SNDM@@UAEXJJ@Z 00440460 f sndm.obj - 0001:0003f4b0 ?Pause@SNDM@@UAEXJ@Z 004404b0 f sndm.obj - 0001:0003f500 ?PauseAll@SNDM@@UAEXJJ@Z 00440500 f sndm.obj - 0001:0003f550 ?Resume@SNDM@@UAEXJ@Z 00440550 f sndm.obj - 0001:0003f5a0 ?ResumeAll@SNDM@@UAEXJJ@Z 004405a0 f sndm.obj - 0001:0003f5f0 ?FPlaying@SNDM@@UAEHJ@Z 004405f0 f sndm.obj - 0001:0003f650 ?FPlayingAll@SNDM@@UAEHJJ@Z 00440650 f sndm.obj - 0001:0003f6b0 ?Flush@SNDM@@UAEXXZ 004406b0 f sndm.obj - 0001:0003f6f0 ?BeginSynch@SNDM@@UAEXXZ 004406f0 f sndm.obj - 0001:0003f730 ?EndSynch@SNDM@@UAEXXZ 00440730 f sndm.obj - 0001:0003f770 ??1SNDMQ@@UAE@XZ 00440770 f sndm.obj - 0001:0003f7e0 ?_FInit@SNDMQ@@MAEHXZ 004407e0 f sndm.obj - 0001:0003f810 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 00440810 f sndm.obj - 0001:0003f920 ?FActive@SNDMQ@@UAEHXZ 00440920 f sndm.obj - 0001:0003f930 ?Activate@SNDMQ@@UAEXH@Z 00440930 f sndm.obj - 0001:0003f980 ?Suspend@SNDMQ@@UAEXH@Z 00440980 f sndm.obj - 0001:0003f9c0 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 004409c0 f sndm.obj - 0001:0003fa30 ?Stop@SNDMQ@@UAEXJ@Z 00440a30 f sndm.obj - 0001:0003fa70 ?StopAll@SNDMQ@@UAEXJJ@Z 00440a70 f sndm.obj - 0001:0003fad0 ?Pause@SNDMQ@@UAEXJ@Z 00440ad0 f sndm.obj - 0001:0003fb10 ?PauseAll@SNDMQ@@UAEXJJ@Z 00440b10 f sndm.obj - 0001:0003fb70 ?Resume@SNDMQ@@UAEXJ@Z 00440b70 f sndm.obj - 0001:0003fbb0 ?ResumeAll@SNDMQ@@UAEXJJ@Z 00440bb0 f sndm.obj - 0001:0003fc10 ?FPlaying@SNDMQ@@UAEHJ@Z 00440c10 f sndm.obj - 0001:0003fc70 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 00440c70 f sndm.obj - 0001:0003fce0 ?Flush@SNDMQ@@UAEXXZ 00440ce0 f sndm.obj - 0001:0003fd60 ??0SNQUE@@IAE@XZ 00440d60 f sndm.obj - 0001:0003fd80 ??1SNQUE@@UAE@XZ 00440d80 f sndm.obj - 0001:0003fe00 ?_FInit@SNQUE@@MAEHXZ 00440e00 f sndm.obj - 0001:0003fe20 ?_Enter@SNQUE@@MAEXXZ 00440e20 f sndm.obj - 0001:0003fe30 ?_Leave@SNQUE@@MAEXXZ 00440e30 f sndm.obj - 0001:0003fe40 ?_Flush@SNQUE@@MAEXXZ 00440e40 f sndm.obj - 0001:0003fea0 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 00440ea0 f sndm.obj - 0001:0003ff60 ?Stop@SNQUE@@QAEXJ@Z 00440f60 f sndm.obj - 0001:0003ffe0 ?StopAll@SNQUE@@QAEXJ@Z 00440fe0 f sndm.obj - 0001:00040070 ?Pause@SNQUE@@QAEXJ@Z 00441070 f sndm.obj - 0001:000400f0 ?PauseAll@SNQUE@@QAEXJ@Z 004410f0 f sndm.obj - 0001:00040190 ?Resume@SNQUE@@QAEXJ@Z 00441190 f sndm.obj - 0001:00040210 ?ResumeAll@SNQUE@@QAEXJ@Z 00441210 f sndm.obj - 0001:000402a0 ?FPlaying@SNQUE@@QAEHJ@Z 004412a0 f sndm.obj - 0001:00040310 ?FPlayingAll@SNQUE@@QAEHJ@Z 00441310 f sndm.obj - 0001:00040380 ?Flush@SNQUE@@QAEXXZ 00441380 f sndm.obj - 0001:00040390 ?LuVolScale@@YGKKJ@Z 00441390 f sndm.obj - 0001:00040420 ??_ESNDM@@UAEPAXI@Z 00441420 f sndm.obj - 0001:00040420 ??_GSNDM@@UAEPAXI@Z 00441420 f sndm.obj - 0001:00040440 ??_ESNDMQ@@UAEPAXI@Z 00441440 f sndm.obj - 0001:00040440 ??_GSNDMQ@@UAEPAXI@Z 00441440 f sndm.obj - 0001:00040460 ??_ESNQUE@@UAEPAXI@Z 00441460 f sndm.obj - 0001:00040460 ??_GSNQUE@@UAEPAXI@Z 00441460 f sndm.obj - 0001:00040510 ?FWouldBe@SDAM@@SGHJ@Z 00441510 f sndam.obj - 0001:00040530 ?FIs@SDAM@@UAEHJ@Z 00441530 f sndam.obj - 0001:00040540 ?Cls@SDAM@@UAEJXZ 00441540 f sndam.obj - 0001:00040550 ?FWouldBe@CAMS@@SGHJ@Z 00441550 f sndam.obj - 0001:00040570 ?FIs@CAMS@@UAEHJ@Z 00441570 f sndam.obj - 0001:00040580 ?Cls@CAMS@@UAEJXZ 00441580 f sndam.obj - 0001:00040590 ?FWouldBe@AMQUE@@SGHJ@Z 00441590 f sndam.obj - 0001:000405b0 ?FIs@AMQUE@@UAEHJ@Z 004415b0 f sndam.obj - 0001:000405c0 ?Cls@AMQUE@@UAEJXZ 004415c0 f sndam.obj - 0001:000405e0 ??0STBL@@IAE@XZ 004415e0 f sndam.obj - 0001:00040610 ?Write@STBL@@UAGJPBXKPAK@Z 00441610 f sndam.obj - 0001:00040630 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 00441630 f sndam.obj - 0001:00040640 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00441640 f sndam.obj - 0001:00040680 ?Commit@STBL@@UAGJK@Z 00441680 f sndam.obj - 0001:00040690 ?Revert@STBL@@UAGJXZ 00441690 f sndam.obj - 0001:000406a0 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 004416a0 f sndam.obj - 0001:000406b0 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 004416b0 f sndam.obj - 0001:000406c0 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 004416c0 f sndam.obj - 0001:000406d0 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 004416d0 f sndam.obj - 0001:000406f0 ??1STBL@@IAE@XZ 004416f0 f sndam.obj - 0001:00040700 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 00441700 f sndam.obj - 0001:00040760 ?AddRef@STBL@@UAGKXZ 00441760 f sndam.obj - 0001:00040770 ?Release@STBL@@UAGKXZ 00441770 f sndam.obj - 0001:000407a0 ?Read@STBL@@UAGJPAXKPAK@Z 004417a0 f sndam.obj - 0001:00040810 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00441810 f sndam.obj - 0001:000408b0 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 004418b0 f sndam.obj - 0001:00040a90 ??0CAMS@@IAE@XZ 00441a90 f sndam.obj - 0001:00040ab0 ??1CAMS@@UAE@XZ 00441ab0 f sndam.obj - 0001:00040af0 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00441af0 f sndam.obj - 0001:00040bf0 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 00441bf0 f sndam.obj - 0001:00040c60 ??0AMNOT@@QAE@XZ 00441c60 f sndam.obj - 0001:00040c80 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 00441c80 f sndam.obj - 0001:00040c90 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 00441c90 f sndam.obj - 0001:00040ca0 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 00441ca0 f sndam.obj - 0001:00040cb0 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 00441cb0 f sndam.obj - 0001:00040cc0 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 00441cc0 f sndam.obj - 0001:00040d20 ?AddRef@AMNOT@@UAGKXZ 00441d20 f sndam.obj - 0001:00040d30 ?Release@AMNOT@@UAGKXZ 00441d30 f sndam.obj - 0001:00040d50 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 00441d50 f sndam.obj - 0001:00040d70 ??0AMQUE@@IAE@XZ 00441d70 f sndam.obj - 0001:00040da0 ??1AMQUE@@UAE@XZ 00441da0 f sndam.obj - 0001:00040de0 ?PamqueNew@AMQUE@@SGPAV1@XZ 00441de0 f sndam.obj - 0001:00040e20 ?_FInit@AMQUE@@MAEHXZ 00441e20 f sndam.obj - 0001:00040e90 ?_Enter@AMQUE@@MAEXXZ 00441e90 f sndam.obj - 0001:00040ea0 ?_Leave@AMQUE@@MAEXXZ 00441ea0 f sndam.obj - 0001:00040eb0 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 00441eb0 f sndam.obj - 0001:00040ed0 ?_Queue@AMQUE@@MAEXJ@Z 00441ed0 f sndam.obj - 0001:000410b0 ?_PauseQueue@AMQUE@@MAEXJ@Z 004420b0 f sndam.obj - 0001:00041120 ?_ResumeQueue@AMQUE@@MAEXJ@Z 00442120 f sndam.obj - 0001:00041130 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 00442130 f sndam.obj - 0001:000411c0 ??0SDAM@@IAE@XZ 004421c0 f sndam.obj - 0001:000411e0 ??1SDAM@@UAE@XZ 004421e0 f sndam.obj - 0001:00041220 ?PsdamNew@SDAM@@SGPAV1@J@Z 00442220 f sndam.obj - 0001:00041270 ?FHaveWaveDevice@@YGHK@Z 00442270 f sndam.obj - 0001:000412e0 ?_FInit@SDAM@@MAEHJ@Z 004422e0 f sndam.obj - 0001:00041440 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 00442440 f sndam.obj - 0001:00041450 ?_Suspend@SDAM@@MAEXH@Z 00442450 f sndam.obj - 0001:000414d0 ?SetVlm@SDAM@@UAEXJ@Z 004424d0 f sndam.obj - 0001:00041510 ?VlmCur@SDAM@@UAEJXZ 00442510 f sndam.obj - 0001:00041520 ?BeginSynch@SDAM@@UAEXXZ 00442520 f sndam.obj - 0001:00041550 ?EndSynch@SDAM@@UAEXXZ 00442550 f sndam.obj - 0001:000415b0 ??_GCAMS@@UAEPAXI@Z 004425b0 f sndam.obj - 0001:000415b0 ??_ECAMS@@UAEPAXI@Z 004425b0 f sndam.obj - 0001:000415d0 ??_EAMQUE@@UAEPAXI@Z 004425d0 f sndam.obj - 0001:000415d0 ??_GAMQUE@@UAEPAXI@Z 004425d0 f sndam.obj - 0001:000415f0 ??_GSDAM@@UAEPAXI@Z 004425f0 f sndam.obj - 0001:000415f0 ??_ESDAM@@UAEPAXI@Z 004425f0 f sndam.obj - 0001:000416b0 ?FWouldBe@MIDO@@SGHJ@Z 004426b0 f mididev.obj - 0001:000416d0 ?FIs@MIDO@@UAEHJ@Z 004426d0 f mididev.obj - 0001:000416e0 ?Cls@MIDO@@UAEJXZ 004426e0 f mididev.obj - 0001:000416f0 ??0MIDO@@QAE@XZ 004426f0 f mididev.obj - 0001:00041730 ??1MIDO@@UAE@XZ 00442730 f mididev.obj - 0001:00041770 ?_GetSysVol@MIDO@@IAEXXZ 00442770 f mididev.obj - 0001:00041790 ?_SetSysVol@MIDO@@IAEXK@Z 00442790 f mididev.obj - 0001:000417b0 ?_Reset@MIDO@@IAEXXZ 004427b0 f mididev.obj - 0001:00041810 ?Suspend@MIDO@@QAEXH@Z 00442810 f mididev.obj - 0001:00041900 ??_GMIDO@@UAEPAXI@Z 00442900 f mididev.obj - 0001:00041900 ??_EMIDO@@UAEPAXI@Z 00442900 f mididev.obj - 0001:000419b0 ?FWouldBe@MDWS@@SGHJ@Z 004429b0 f mididev2.obj - 0001:000419d0 ?FIs@MDWS@@UAEHJ@Z 004429d0 f mididev2.obj - 0001:000419e0 ?Cls@MDWS@@UAEJXZ 004429e0 f mididev2.obj - 0001:000419f0 ?FWouldBe@MSQUE@@SGHJ@Z 004429f0 f mididev2.obj - 0001:00041a10 ?FIs@MSQUE@@UAEHJ@Z 00442a10 f mididev2.obj - 0001:00041a20 ?Cls@MSQUE@@UAEJXZ 00442a20 f mididev2.obj - 0001:00041a30 ?FWouldBe@MDPS@@SGHJ@Z 00442a30 f mididev2.obj - 0001:00041a50 ?FIs@MDPS@@UAEHJ@Z 00442a50 f mididev2.obj - 0001:00041a60 ?Cls@MDPS@@UAEJXZ 00442a60 f mididev2.obj - 0001:00041a70 ?FWouldBe@MSMIX@@SGHJ@Z 00442a70 f mididev2.obj - 0001:00041a90 ?FIs@MSMIX@@UAEHJ@Z 00442a90 f mididev2.obj - 0001:00041aa0 ?Cls@MSMIX@@UAEJXZ 00442aa0 f mididev2.obj - 0001:00041ab0 ?FWouldBe@MISI@@SGHJ@Z 00442ab0 f mididev2.obj - 0001:00041ad0 ?FIs@MISI@@UAEHJ@Z 00442ad0 f mididev2.obj - 0001:00041ae0 ?Cls@MISI@@UAEJXZ 00442ae0 f mididev2.obj - 0001:00041af0 ?FWouldBe@WMS@@SGHJ@Z 00442af0 f mididev2.obj - 0001:00041b10 ?FIs@WMS@@UAEHJ@Z 00442b10 f mididev2.obj - 0001:00041b20 ?Cls@WMS@@UAEJXZ 00442b20 f mididev2.obj - 0001:00041b30 ?FWouldBe@OMS@@SGHJ@Z 00442b30 f mididev2.obj - 0001:00041b50 ?FIs@OMS@@UAEHJ@Z 00442b50 f mididev2.obj - 0001:00041b60 ?Cls@OMS@@UAEJXZ 00442b60 f mididev2.obj - 0001:00041b70 ??0MDPS@@IAE@XZ 00442b70 f mididev2.obj - 0001:00041b90 ??1MDPS@@UAE@XZ 00442b90 f mididev2.obj - 0001:00041bd0 ?PmdpsNew@MDPS@@SGPAV1@XZ 00442bd0 f mididev2.obj - 0001:00041c10 ?_FInit@MDPS@@MAEHXZ 00442c10 f mididev2.obj - 0001:00041c60 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 00442c60 f mididev2.obj - 0001:00041c70 ?_Suspend@MDPS@@MAEXH@Z 00442c70 f mididev2.obj - 0001:00041c80 ?SetVlm@MDPS@@UAEXJ@Z 00442c80 f mididev2.obj - 0001:00041c90 ?VlmCur@MDPS@@UAEJXZ 00442c90 f mididev2.obj - 0001:00041ca0 ??0MDWS@@IAE@XZ 00442ca0 f mididev2.obj - 0001:00041cc0 ??1MDWS@@UAE@XZ 00442cc0 f mididev2.obj - 0001:00041cf0 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00442cf0 f mididev2.obj - 0001:00041d60 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 00442d60 f mididev2.obj - 0001:00041dd0 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 00442dd0 f mididev2.obj - 0001:00041f50 ?PvLockData@MDWS@@QAEPAXPAJ@Z 00442f50 f mididev2.obj - 0001:00041f70 ?UnlockData@MDWS@@QAEXXZ 00442f70 f mididev2.obj - 0001:00041f90 ??0MSQUE@@IAE@XZ 00442f90 f mididev2.obj - 0001:00041fb0 ??1MSQUE@@UAE@XZ 00442fb0 f mididev2.obj - 0001:00042000 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 00443000 f mididev2.obj - 0001:00042050 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 00443050 f mididev2.obj - 0001:00042080 ?_Enter@MSQUE@@MAEXXZ 00443080 f mididev2.obj - 0001:00042090 ?_Leave@MSQUE@@MAEXXZ 00443090 f mididev2.obj - 0001:000420a0 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004430a0 f mididev2.obj - 0001:000420c0 ?_Queue@MSQUE@@MAEXJ@Z 004430c0 f mididev2.obj - 0001:00042180 ?_PauseQueue@MSQUE@@MAEXJ@Z 00443180 f mididev2.obj - 0001:000421f0 ?_ResumeQueue@MSQUE@@MAEXJ@Z 004431f0 f mididev2.obj - 0001:00042200 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 00443200 f mididev2.obj - 0001:00042260 ??0MSMIX@@IAE@XZ 00443260 f mididev2.obj - 0001:00042290 ??1MSMIX@@UAE@XZ 00443290 f mididev2.obj - 0001:00042320 ?PmsmixNew@MSMIX@@SGPAV1@XZ 00443320 f mididev2.obj - 0001:00042360 ?_FInit@MSMIX@@IAEHXZ 00443360 f mididev2.obj - 0001:00042400 ?Suspend@MSMIX@@QAEXH@Z 00443400 f mididev2.obj - 0001:00042460 ?_StopStream@MSMIX@@IAEXXZ 00443460 f mididev2.obj - 0001:000424b0 ?SetVlm@MSMIX@@QAEXJ@Z 004434b0 f mididev2.obj - 0001:00042510 ?VlmCur@MSMIX@@QAEJXZ 00443510 f mididev2.obj - 0001:00042520 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 00443520 f mididev2.obj - 0001:00042690 ?_Restart@MSMIX@@IAEXH@Z 00443690 f mididev2.obj - 0001:00042710 ?_SubmitBuffers@MSMIX@@IAEXK@Z 00443710 f mididev2.obj - 0001:000428d0 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 004438d0 f mididev2.obj - 0001:00042ba0 ?_MidiProc@MSMIX@@KGXKPAXK@Z 00443ba0 f mididev2.obj - 0001:00042bc0 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 00443bc0 f mididev2.obj - 0001:00042c90 ?_ThreadProc@MSMIX@@KGKPAX@Z 00443c90 f mididev2.obj - 0001:00042ca0 ?_LuThread@MSMIX@@IAEKXZ 00443ca0 f mididev2.obj - 0001:00042dd0 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 00443dd0 f mididev2.obj - 0001:00042e10 ?_Reset@MISI@@IAEXXZ 00443e10 f mididev2.obj - 0001:00042e50 ?_GetSysVol@MISI@@IAEXXZ 00443e50 f mididev2.obj - 0001:00042f60 ?_SetSysVol@MISI@@IAEXK@Z 00443f60 f mididev2.obj - 0001:00042f80 ?_SetSysVlm@MISI@@IAEXXZ 00443f80 f mididev2.obj - 0001:00042fa0 ?SetVlm@MISI@@UAEXJ@Z 00443fa0 f mididev2.obj - 0001:00042fc0 ?VlmCur@MISI@@UAEJXZ 00443fc0 f mididev2.obj - 0001:00042fd0 ?FActive@MISI@@UAEHXZ 00443fd0 f mididev2.obj - 0001:00042fe0 ?FActivate@MISI@@UAEHH@Z 00443fe0 f mididev2.obj - 0001:00043000 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 00444000 f mididev2.obj - 0001:00043030 ??1WMS@@UAE@XZ 00444030 f mididev2.obj - 0001:000430b0 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 004440b0 f mididev2.obj - 0001:00043100 ?_FInit@WMS@@IAEHXZ 00444100 f mididev2.obj - 0001:000432c0 ?_FOpen@WMS@@MAEHXZ 004442c0 f mididev2.obj - 0001:00043370 ?_FClose@WMS@@MAEHXZ 00444370 f mididev2.obj - 0001:000433e0 ?FActive@WMS@@UAEHXZ 004443e0 f mididev2.obj - 0001:000433f0 ?FActivate@WMS@@UAEHH@Z 004443f0 f mididev2.obj - 0001:00043420 ?_ResetStream@WMS@@IAEXXZ 00444420 f mididev2.obj - 0001:00043450 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 00444450 f mididev2.obj - 0001:00043520 ?_CmhSubmitBuffers@WMS@@IAEJXZ 00444520 f mididev2.obj - 0001:00043640 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 00444640 f mididev2.obj - 0001:000436b0 ?StopPlaying@WMS@@UAEXXZ 004446b0 f mididev2.obj - 0001:00043780 ?_MidiProc@WMS@@KGXPAXKKKK@Z 00444780 f mididev2.obj - 0001:000437a0 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 004447a0 f mididev2.obj - 0001:00043820 ?_ThreadProc@WMS@@KGKPAX@Z 00444820 f mididev2.obj - 0001:00043830 ?_LuThread@WMS@@IAEKXZ 00444830 f mididev2.obj - 0001:00043880 ?_DoCallBacks@WMS@@IAEXXZ 00444880 f mididev2.obj - 0001:00043910 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 00444910 f mididev2.obj - 0001:00043940 ??1OMS@@UAE@XZ 00444940 f mididev2.obj - 0001:000439b0 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 004449b0 f mididev2.obj - 0001:00043a00 ?_FInit@OMS@@IAEHXZ 00444a00 f mididev2.obj - 0001:00043a90 ?_FOpen@OMS@@MAEHXZ 00444a90 f mididev2.obj - 0001:00043b00 ?_FClose@OMS@@MAEHXZ 00444b00 f mididev2.obj - 0001:00043b70 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 00444b70 f mididev2.obj - 0001:00043c00 ?StopPlaying@OMS@@UAEXXZ 00444c00 f mididev2.obj - 0001:00043c30 ?_ThreadProc@OMS@@KGKPAX@Z 00444c30 f mididev2.obj - 0001:00043c40 ?_LuThread@OMS@@IAEKXZ 00444c40 f mididev2.obj - 0001:00043dc0 ?_ReleaseBuffers@OMS@@IAEXXZ 00444dc0 f mididev2.obj - 0001:00043e50 ??_GMDPS@@UAEPAXI@Z 00444e50 f mididev2.obj - 0001:00043e50 ??_EMDPS@@UAEPAXI@Z 00444e50 f mididev2.obj - 0001:00043e70 ??_EMDWS@@UAEPAXI@Z 00444e70 f mididev2.obj - 0001:00043e70 ??_GMDWS@@UAEPAXI@Z 00444e70 f mididev2.obj - 0001:00043e90 ??_GMSQUE@@UAEPAXI@Z 00444e90 f mididev2.obj - 0001:00043e90 ??_EMSQUE@@UAEPAXI@Z 00444e90 f mididev2.obj - 0001:00043eb0 ??_GMSMIX@@UAEPAXI@Z 00444eb0 f mididev2.obj - 0001:00043eb0 ??_EMSMIX@@UAEPAXI@Z 00444eb0 f mididev2.obj - 0001:00043ed0 ??_GMISI@@UAEPAXI@Z 00444ed0 f mididev2.obj - 0001:00043ed0 ??_EMISI@@UAEPAXI@Z 00444ed0 f mididev2.obj - 0001:00043ef0 ??_EWMS@@UAEPAXI@Z 00444ef0 f mididev2.obj - 0001:00043ef0 ??_GWMS@@UAEPAXI@Z 00444ef0 f mididev2.obj - 0001:00043f10 ??_GOMS@@UAEPAXI@Z 00444f10 f mididev2.obj - 0001:00043f10 ??_EOMS@@UAEPAXI@Z 00444f10 f mididev2.obj - 0001:00043f30 ?FWouldBe@MSTP@@SGHJ@Z 00444f30 f midi.obj - 0001:00043f50 ?FIs@MSTP@@UAEHJ@Z 00444f50 f midi.obj - 0001:00043f60 ?Cls@MSTP@@UAEJXZ 00444f60 f midi.obj - 0001:00043f70 ?FWouldBe@MIDS@@SGHJ@Z 00444f70 f midi.obj - 0001:00043f90 ?FIs@MIDS@@UAEHJ@Z 00444f90 f midi.obj - 0001:00043fa0 ?Cls@MIDS@@UAEJXZ 00444fa0 f midi.obj - 0001:00043fb0 ??0MSTP@@QAE@XZ 00444fb0 f midi.obj - 0001:00043fd0 ??1MSTP@@UAE@XZ 00444fd0 f midi.obj - 0001:00044010 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 00445010 f midi.obj - 0001:000440a0 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 004450a0 f midi.obj - 0001:00044400 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 00445400 f midi.obj - 0001:00044450 ??0MIDS@@IAE@XZ 00445450 f midi.obj - 0001:00044470 ??1MIDS@@UAE@XZ 00445470 f midi.obj - 0001:00044490 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 00445490 f midi.obj - 0001:00044500 ?PmidsReadNative@MIDS@@SGPAV1@PAVFNI@@@Z 00445500 f midi.obj - 0001:00044bb0 ?_CbEncodeLu@MIDS@@KGJKPAE@Z 00445bb0 f midi.obj - 0001:00044c00 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 00445c00 f midi.obj - 0001:00044c20 ?CbOnFile@MIDS@@UAEJXZ 00445c20 f midi.obj - 0001:00044c40 ??_GMSTP@@UAEPAXI@Z 00445c40 f midi.obj - 0001:00044c40 ??_EMSTP@@UAEPAXI@Z 00445c40 f midi.obj - 0001:00044c60 ??_GMIDS@@UAEPAXI@Z 00445c60 f midi.obj - 0001:00044c60 ??_EMIDS@@UAEPAXI@Z 00445c60 f midi.obj - 0001:00044d10 ?FWouldBe@GVID@@SGHJ@Z 00445d10 f video.obj - 0001:00044d30 ?FIs@GVID@@UAEHJ@Z 00445d30 f video.obj - 0001:00044d40 ?Cls@GVID@@UAEJXZ 00445d40 f video.obj - 0001:00044d50 ?FWouldBe@GVDS@@SGHJ@Z 00445d50 f video.obj - 0001:00044d70 ?FIs@GVDS@@UAEHJ@Z 00445d70 f video.obj - 0001:00044d80 ?Cls@GVDS@@UAEJXZ 00445d80 f video.obj - 0001:00044d90 ?FWouldBe@GVDW@@SGHJ@Z 00445d90 f video.obj - 0001:00044db0 ?FIs@GVDW@@UAEHJ@Z 00445db0 f video.obj - 0001:00044dc0 ?Cls@GVDW@@UAEJXZ 00445dc0 f video.obj - 0001:00044de0 ?PgvidNew@GVID@@SGPAV1@PAVFNI@@PAVGOB@@HJ@Z 00445de0 f video.obj - 0001:00044e10 ??0GVID@@IAE@J@Z 00445e10 f video.obj - 0001:00044e30 ??0GVDS@@IAE@J@Z 00445e30 f video.obj - 0001:00044e50 ??1GVDS@@MAE@XZ 00445e50 f video.obj - 0001:00044eb0 ?_FInit@GVDS@@MAEHPAVFNI@@PAVGOB@@@Z 00445eb0 f video.obj - 0001:00044fd0 ?PgvdsNew@GVDS@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 00445fd0 f video.obj - 0001:00045040 ?NfrMac@GVDS@@UAEJXZ 00446040 f video.obj - 0001:00045050 ?NfrCur@GVDS@@UAEJXZ 00446050 f video.obj - 0001:00045060 ?GotoNfr@GVDS@@UAEXJ@Z 00446060 f video.obj - 0001:00045080 ?FPlaying@GVDS@@UAEHXZ 00446080 f video.obj - 0001:00045090 ?FPlay@GVDS@@UAEHPAVRC@@@Z 00446090 f video.obj - 0001:00045100 ?SetRcPlay@GVDS@@UAEXPAVRC@@@Z 00446100 f video.obj - 0001:00045140 ?Stop@GVDS@@UAEXXZ 00446140 f video.obj - 0001:00045160 ?FCmdAll@GVDS@@UAEHPAUCMD@@@Z 00446160 f video.obj - 0001:000451e0 ?Draw@GVDS@@UAEXPAVGNV@@PAVRC@@@Z 004461e0 f video.obj - 0001:00045210 ?GetRc@GVDS@@UAEXPAVRC@@@Z 00446210 f video.obj - 0001:00045230 ?PgvdwNew@GVDW@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 00446230 f video.obj - 0001:000452a0 ??0GVDW@@IAE@J@Z 004462a0 f video.obj - 0001:000452c0 ??1GVDW@@MAE@XZ 004462c0 f video.obj - 0001:00045330 ?_FInit@GVDW@@MAEHPAVFNI@@PAVGOB@@@Z 00446330 f video.obj - 0001:000454f0 ?NfrMac@GVDW@@UAEJXZ 004464f0 f video.obj - 0001:00045500 ?NfrCur@GVDW@@UAEJXZ 00446500 f video.obj - 0001:00045550 ?GotoNfr@GVDW@@UAEXJ@Z 00446550 f video.obj - 0001:00045590 ?FPlaying@GVDW@@UAEHXZ 00446590 f video.obj - 0001:00045610 ?FPlay@GVDW@@UAEHPAVRC@@@Z 00446610 f video.obj - 0001:00045670 ?SetRcPlay@GVDW@@UAEXPAVRC@@@Z 00446670 f video.obj - 0001:000456b0 ?Stop@GVDW@@UAEXXZ 004466b0 f video.obj - 0001:000456f0 ?Draw@GVDW@@UAEXPAVGNV@@PAVRC@@@Z 004466f0 f video.obj - 0001:00045700 ?_SetRc@GVDW@@MAEXXZ 00446700 f video.obj - 0001:00045810 ?GetRc@GVDW@@UAEXPAVRC@@@Z 00446810 f video.obj - 0001:00045840 ??_EGVID@@MAEPAXI@Z 00446840 f video.obj - 0001:00045840 ??_GGVID@@MAEPAXI@Z 00446840 f video.obj - 0001:00045870 ??_GGVDS@@MAEPAXI@Z 00446870 f video.obj - 0001:00045870 ??_EGVDS@@MAEPAXI@Z 00446870 f video.obj - 0001:00045890 ??_EGVDW@@MAEPAXI@Z 00446890 f video.obj - 0001:00045890 ??_GGVDW@@MAEPAXI@Z 00446890 f video.obj - 0001:000458b0 ??_9@$BEM@A 004468b0 f video.obj - 0001:00045950 ?Pcmm@GVDS@@MAEPAUCMM@CMH@@XZ 00446950 f video.obj - 0001:00045960 ?FWouldBe@SCEB@@SGHJ@Z 00446960 f screxe.obj - 0001:00045980 ?FIs@SCEB@@UAEHJ@Z 00446980 f screxe.obj - 0001:00045990 ?Cls@SCEB@@UAEJXZ 00446990 f screxe.obj - 0001:000459a0 ?FWouldBe@SCPT@@SGHJ@Z 004469a0 f screxe.obj - 0001:000459c0 ?FIs@SCPT@@UAEHJ@Z 004469c0 f screxe.obj - 0001:000459d0 ?Cls@SCPT@@UAEJXZ 004469d0 f screxe.obj - 0001:000459e0 ?FWouldBe@STRG@@SGHJ@Z 004469e0 f screxe.obj - 0001:00045a00 ?FIs@STRG@@UAEHJ@Z 00446a00 f screxe.obj - 0001:00045a10 ?Cls@STRG@@UAEJXZ 00446a10 f screxe.obj - 0001:00045a20 ??0SCEB@@QAE@PAVRCA@@PAVSTRG@@@Z 00446a20 f screxe.obj - 0001:00045a70 ??1SCEB@@UAE@XZ 00446a70 f screxe.obj - 0001:00045ab0 ?Free@SCEB@@UAEXXZ 00446ab0 f screxe.obj - 0001:00045b60 ?FRunScript@SCEB@@UAEHPAVSCPT@@PAJJ1PAH@Z 00446b60 f screxe.obj - 0001:00045bb0 ?FAttachScript@SCEB@@UAEHPAVSCPT@@PAJJ@Z 00446bb0 f screxe.obj - 0001:00045cb0 ?FResume@SCEB@@UAEHPAJPAH@Z 00446cb0 f screxe.obj - 0001:00045e40 ?_AddParameters@SCEB@@MAEXPAJJ@Z 00446e40 f screxe.obj - 0001:00045f10 ?_AddStrings@SCEB@@MAEXPAVGST@@@Z 00446f10 f screxe.obj - 0001:00045fd0 ?_SwCur@SCEB@@MAEFXZ 00446fd0 f screxe.obj - 0001:00045fe0 ?_SwMin@SCEB@@MAEFXZ 00446fe0 f screxe.obj - 0001:00045ff0 ?_FExecVarOp@SCEB@@MAEHJPAURTVN@@@Z 00446ff0 f screxe.obj - 0001:00046140 ?_FExecOp@SCEB@@MAEHJ@Z 00447140 f screxe.obj - 0001:00046d20 ?_LwPop@SCEB@@IAEJXZ 00447d20 f screxe.obj - 0001:00046d70 ?_QlwGet@SCEB@@IAEPAJJ@Z 00447d70 f screxe.obj - 0001:00046dc0 ?_Error@SCEB@@IAEXH@Z 00447dc0 f screxe.obj - 0001:00046dd0 ?_Rotate@SCEB@@IAEXJJ@Z 00447dd0 f screxe.obj - 0001:00046e10 ?_Reverse@SCEB@@IAEXJ@Z 00447e10 f screxe.obj - 0001:00046e50 ?_DupList@SCEB@@IAEXJ@Z 00447e50 f screxe.obj - 0001:00046eb0 ?_PopList@SCEB@@IAEXJ@Z 00447eb0 f screxe.obj - 0001:00046ef0 ?_Select@SCEB@@IAEXJJ@Z 00447ef0 f screxe.obj - 0001:00046f40 ?_Match@SCEB@@IAEXJ@Z 00447f40 f screxe.obj - 0001:00046fa0 ?_RndList@SCEB@@IAEXJ@Z 00447fa0 f screxe.obj - 0001:00046fe0 ?_CopySubStr@SCEB@@IAEXJJJJ@Z 00447fe0 f screxe.obj - 0001:000470e0 ?_ConcatStrs@SCEB@@IAEXJJJ@Z 004480e0 f screxe.obj - 0001:000471f0 ?_LenStr@SCEB@@IAEXJ@Z 004481f0 f screxe.obj - 0001:00047260 ?_FReadStringReg@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00448260 f screxe.obj - 0001:00047360 ?_MergeStrings@SCEB@@IAEXKK@Z 00448360 f screxe.obj - 0001:00047440 ?_NumToStr@SCEB@@IAEXJJ@Z 00448440 f screxe.obj - 0001:000474e0 ?_StrToNum@SCEB@@IAEXJJJ@Z 004484e0 f screxe.obj - 0001:00047590 ?_PushVar@SCEB@@MAEXPAVGL@@PAURTVN@@@Z 00448590 f screxe.obj - 0001:00047630 ?_AssignVar@SCEB@@MAEXPAPAVGL@@PAURTVN@@J@Z 00448630 f screxe.obj - 0001:00047670 ?_PglrtvmThis@SCEB@@MAEPAVGL@@XZ 00448670 f screxe.obj - 0001:00047680 ?_PpglrtvmThis@SCEB@@MAEPAPAVGL@@XZ 00448680 f screxe.obj - 0001:00047690 ?_PglrtvmGlobal@SCEB@@MAEPAVGL@@XZ 00448690 f screxe.obj - 0001:000476a0 ?_PpglrtvmGlobal@SCEB@@MAEPAPAVGL@@XZ 004486a0 f screxe.obj - 0001:000476b0 ?_PglrtvmRemote@SCEB@@MAEPAVGL@@J@Z 004486b0 f screxe.obj - 0001:000476d0 ?_PpglrtvmRemote@SCEB@@MAEPAPAVGL@@J@Z 004486d0 f screxe.obj - 0001:000476e0 ?FFindRtvm@@YGHPAVGL@@PAURTVN@@PAJ2@Z 004486e0 f screxe.obj - 0001:00047780 ?FAssignRtvm@@YGHPAPAVGL@@PAURTVN@@J@Z 00448780 f screxe.obj - 0001:00047820 ?FReadScript@SCPT@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00448820 f screxe.obj - 0001:00047870 ?PscptRead@SCPT@@SGPAV1@PAVCFL@@KK@Z 00448870 f screxe.obj - 0001:000479a0 ??1SCPT@@UAE@XZ 004489a0 f screxe.obj - 0001:000479e0 ??0STRG@@QAE@XZ 004489e0 f screxe.obj - 0001:00047a00 ??1STRG@@UAE@XZ 00448a00 f screxe.obj - 0001:00047a30 ?FPut@STRG@@QAEHJPAVSTN@@@Z 00448a30 f screxe.obj - 0001:00047aa0 ?FGet@STRG@@QAEHJPAVSTN@@@Z 00448aa0 f screxe.obj - 0001:00047af0 ?FAdd@STRG@@QAEHPAJPAVSTN@@@Z 00448af0 f screxe.obj - 0001:00047b40 ?Delete@STRG@@QAEXJ@Z 00448b40 f screxe.obj - 0001:00047b70 ?FMove@STRG@@QAEHJJ@Z 00448b70 f screxe.obj - 0001:00047c20 ?_FFind@STRG@@IAEHJPAJ@Z 00448c20 f screxe.obj - 0001:00047cb0 ?_FEnsureGst@STRG@@IAEHXZ 00448cb0 f screxe.obj - 0001:00047cf0 ??_GCABO@@UAEPAXI@Z 00448cf0 f screxe.obj - 0001:00047cf0 ??_ECABO@@UAEPAXI@Z 00448cf0 f screxe.obj - 0001:00047d30 ??_GSCPT@@UAEPAXI@Z 00448d30 f screxe.obj - 0001:00047d30 ??_ESCPT@@UAEPAXI@Z 00448d30 f screxe.obj - 0001:00047d50 ??_GSCEB@@UAEPAXI@Z 00448d50 f screxe.obj - 0001:00047d50 ??_ESCEB@@UAEPAXI@Z 00448d50 f screxe.obj - 0001:00047d70 ??_ESTRG@@UAEPAXI@Z 00448d70 f screxe.obj - 0001:00047d70 ??_GSTRG@@UAEPAXI@Z 00448d70 f screxe.obj - 0001:00047d90 ?FWouldBe@DOCB@@SGHJ@Z 00448d90 f docb.obj - 0001:00047db0 ?FIs@DOCB@@UAEHJ@Z 00448db0 f docb.obj - 0001:00047dc0 ?Cls@DOCB@@UAEJXZ 00448dc0 f docb.obj - 0001:00047dd0 ?FWouldBe@DTE@@SGHJ@Z 00448dd0 f docb.obj - 0001:00047df0 ?FIs@DTE@@UAEHJ@Z 00448df0 f docb.obj - 0001:00047e00 ?Cls@DTE@@UAEJXZ 00448e00 f docb.obj - 0001:00047e10 ?FWouldBe@DDG@@SGHJ@Z 00448e10 f docb.obj - 0001:00047e30 ?FIs@DDG@@UAEHJ@Z 00448e30 f docb.obj - 0001:00047e40 ?Cls@DDG@@UAEJXZ 00448e40 f docb.obj - 0001:00047e50 ?FWouldBe@DMD@@SGHJ@Z 00448e50 f docb.obj - 0001:00047e70 ?FIs@DMD@@UAEHJ@Z 00448e70 f docb.obj - 0001:00047e80 ?Cls@DMD@@UAEJXZ 00448e80 f docb.obj - 0001:00047e90 ?FWouldBe@DMW@@SGHJ@Z 00448e90 f docb.obj - 0001:00047eb0 ?FIs@DMW@@UAEHJ@Z 00448eb0 f docb.obj - 0001:00047ec0 ?Cls@DMW@@UAEJXZ 00448ec0 f docb.obj - 0001:00047ed0 ?FWouldBe@DSG@@SGHJ@Z 00448ed0 f docb.obj - 0001:00047ef0 ?FIs@DSG@@UAEHJ@Z 00448ef0 f docb.obj - 0001:00047f00 ?Cls@DSG@@UAEJXZ 00448f00 f docb.obj - 0001:00047f10 ?FWouldBe@DSSP@@SGHJ@Z 00448f10 f docb.obj - 0001:00047f30 ?FIs@DSSP@@UAEHJ@Z 00448f30 f docb.obj - 0001:00047f40 ?Cls@DSSP@@UAEJXZ 00448f40 f docb.obj - 0001:00047f50 ?FWouldBe@DSSM@@SGHJ@Z 00448f50 f docb.obj - 0001:00047f70 ?FIs@DSSM@@UAEHJ@Z 00448f70 f docb.obj - 0001:00047f80 ?Cls@DSSM@@UAEJXZ 00448f80 f docb.obj - 0001:00047f90 ?FWouldBe@UNDB@@SGHJ@Z 00448f90 f docb.obj - 0001:00047fc0 ??0DOCB@@IAE@PAV0@K@Z 00448fc0 f docb.obj - 0001:00048030 ?Release@DOCB@@UAEXXZ 00449030 f docb.obj - 0001:000480e0 ?CloseAllDdg@DOCB@@QAEXXZ 004490e0 f docb.obj - 0001:00048150 ??1DOCB@@MAE@XZ 00449150 f docb.obj - 0001:000481d0 ?FQueryCloseAll@DOCB@@SGHK@Z 004491d0 f docb.obj - 0001:00048210 ?FQueryClose@DOCB@@UAEHK@Z 00449210 f docb.obj - 0001:000482d0 ?_TQuerySave@DOCB@@MAEHH@Z 004492d0 f docb.obj - 0001:000482f0 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 004492f0 f docb.obj - 0001:00048360 ?FInternal@DOCB@@QAEHXZ 00449360 f docb.obj - 0001:00048380 ?SetInternal@DOCB@@QAEXH@Z 00449380 f docb.obj - 0001:000483a0 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 004493a0 f docb.obj - 0001:000483b0 ?FSave@DOCB@@UAEHJ@Z 004493b0 f docb.obj - 0001:00048450 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 00449450 f docb.obj - 0001:00048460 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 00449460 f docb.obj - 0001:00048480 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 00449480 f docb.obj - 0001:000484c0 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 004494c0 f docb.obj - 0001:00048520 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 00449520 f docb.obj - 0001:00048550 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 00449550 f docb.obj - 0001:00048590 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 00449590 f docb.obj - 0001:000485c0 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 004495c0 f docb.obj - 0001:000485e0 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 004495e0 f docb.obj - 0001:000485f0 ?ActivateDmd@DOCB@@QAEXXZ 004495f0 f docb.obj - 0001:00048630 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 00449630 f docb.obj - 0001:00048640 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 00449640 f docb.obj - 0001:00048660 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 00449660 f docb.obj - 0001:00048670 ?GetName@DOCB@@UAEXPAVSTN@@@Z 00449670 f docb.obj - 0001:00048720 ?UpdateName@DOCB@@UAEXXZ 00449720 f docb.obj - 0001:000487d0 ?FUndo@DOCB@@UAEHXZ 004497d0 f docb.obj - 0001:00048820 ?FRedo@DOCB@@UAEHXZ 00449820 f docb.obj - 0001:00048870 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 00449870 f docb.obj - 0001:00048960 ?ClearUndo@DOCB@@UAEXXZ 00449960 f docb.obj - 0001:000489c0 ?ClearRedo@DOCB@@UAEXXZ 004499c0 f docb.obj - 0001:00048a10 ?SetCundbMax@DOCB@@UAEXJ@Z 00449a10 f docb.obj - 0001:00048ac0 ?CundbMax@DOCB@@UAEJXZ 00449ac0 f docb.obj - 0001:00048ad0 ?CundbUndo@DOCB@@UAEJXZ 00449ad0 f docb.obj - 0001:00048ae0 ?CundbRedo@DOCB@@UAEJXZ 00449ae0 f docb.obj - 0001:00048b00 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 00449b00 f docb.obj - 0001:00048b10 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 00449b10 f docb.obj - 0001:00048b30 ??0DTE@@QAE@XZ 00449b30 f docb.obj - 0001:00048b50 ?Init@DTE@@QAEXPAVDOCB@@@Z 00449b50 f docb.obj - 0001:00048b70 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 00449b70 f docb.obj - 0001:00048c40 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00449c40 f docb.obj - 0001:00048cb0 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 00449cb0 f docb.obj - 0001:00048cf0 ??1DDG@@MAE@XZ 00449cf0 f docb.obj - 0001:00048d30 ?_FInit@DDG@@MAEHXZ 00449d30 f docb.obj - 0001:00048d60 ?Pdmd@DDG@@QAEPAVDMD@@XZ 00449d60 f docb.obj - 0001:00048d70 ?Activate@DDG@@UAEXH@Z 00449d70 f docb.obj - 0001:00048e00 ?_Activate@DDG@@MAEXH@Z 00449e00 f docb.obj - 0001:00048e40 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 00449e40 f docb.obj - 0001:00048f60 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 00449f60 f docb.obj - 0001:00049070 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 0044a070 f docb.obj - 0001:00049080 ?_ClearSel@DDG@@MAEXXZ 0044a080 f docb.obj - 0001:00049090 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 0044a090 f docb.obj - 0001:000490a0 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 0044a0a0 f docb.obj - 0001:000490e0 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 0044a0e0 f docb.obj - 0001:00049100 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 0044a100 f docb.obj - 0001:00049130 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 0044a130 f docb.obj - 0001:00049170 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 0044a170 f docb.obj - 0001:00049190 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 0044a190 f docb.obj - 0001:00049230 ?_Scroll@DDG@@MAEXJJJJ@Z 0044a230 f docb.obj - 0001:00049240 ?_SetScrollValues@DDG@@MAEXXZ 0044a240 f docb.obj - 0001:000492c0 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 0044a2c0 f docb.obj - 0001:000492e0 ?_ScvMax@DDG@@MAEJH@Z 0044a2e0 f docb.obj - 0001:000492f0 ?_NewRc@DDG@@MAEXXZ 0044a2f0 f docb.obj - 0001:00049300 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 0044a300 f docb.obj - 0001:00049400 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 0044a400 f docb.obj - 0001:00049420 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 0044a420 f docb.obj - 0001:00049490 ?_ActivateHwnd@DMD@@MAEXH@Z 0044a490 f docb.obj - 0001:000494c0 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 0044a4c0 f docb.obj - 0001:00049500 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 0044a500 f docb.obj - 0001:00049550 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 0044a550 f docb.obj - 0001:00049580 ?Release@DMW@@UAEXXZ 0044a580 f docb.obj - 0001:000495c0 ?_FInit@DMW@@MAEHXZ 0044a5c0 f docb.obj - 0001:00049600 ?_NewRc@DMW@@MAEXXZ 0044a600 f docb.obj - 0001:00049610 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 0044a610 f docb.obj - 0001:000497b0 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 0044a7b0 f docb.obj - 0001:000497e0 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 0044a7e0 f docb.obj - 0001:000498c0 ?_IdsedEdge@DMW@@IAEJJJ@Z 0044a8c0 f docb.obj - 0001:00049920 ?_IdsedNext@DMW@@IAEJJJ@Z 0044a920 f docb.obj - 0001:00049970 ?_Layout@DMW@@IAEXJ@Z 0044a970 f docb.obj - 0001:00049d50 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 0044ad50 f docb.obj - 0001:00049e20 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 0044ae20 f docb.obj - 0001:0004a050 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 0044b050 f docb.obj - 0001:0004a090 ?TVert@DMW@@QAEHPAVDSG@@@Z 0044b090 f docb.obj - 0001:0004a0e0 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 0044b0e0 f docb.obj - 0001:0004a170 ??0DSG@@IAE@PAUGCB@@@Z 0044b170 f docb.obj - 0001:0004a190 ??1DSG@@MAE@XZ 0044b190 f docb.obj - 0001:0004a1b0 ?_FInit@DSG@@MAEHPAV1@KJ@Z 0044b1b0 f docb.obj - 0001:0004a320 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 0044b320 f docb.obj - 0001:0004a3a0 ?Split@DSG@@UAEXKJ@Z 0044b3a0 f docb.obj - 0001:0004a3c0 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 0044b3c0 f docb.obj - 0001:0004a400 ??0DSSP@@IAE@PAUGCB@@@Z 0044b400 f docb.obj - 0001:0004a420 ?FDirty@DOCB@@UAEHXZ 0044b420 f docb.obj - 0001:0004a440 ?SetDirty@DOCB@@UAEXH@Z 0044b440 f docb.obj - 0001:0004a460 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 0044b460 f docb.obj - 0001:0004a530 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 0044b530 f docb.obj - 0001:0004a540 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 0044b540 f docb.obj - 0001:0004a550 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 0044b550 f docb.obj - 0001:0004a580 ?MouseDown@DSSP@@UAEXJJJK@Z 0044b580 f docb.obj - 0001:0004a6d0 ??0DSSM@@IAE@PAUGCB@@@Z 0044b6d0 f docb.obj - 0001:0004a6f0 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 0044b6f0 f docb.obj - 0001:0004a770 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 0044b770 f docb.obj - 0001:0004a7f0 ?MouseDown@DSSM@@UAEXJJJK@Z 0044b7f0 f docb.obj - 0001:0004a970 ?TVert@DSSM@@QAEHXZ 0044b970 f docb.obj - 0001:0004a990 ??_GDOCB@@MAEPAXI@Z 0044b990 f docb.obj - 0001:0004a990 ??_EDOCB@@MAEPAXI@Z 0044b990 f docb.obj - 0001:0004a9b0 ??_EDTE@@UAEPAXI@Z 0044b9b0 f docb.obj - 0001:0004a9b0 ??_GDTE@@UAEPAXI@Z 0044b9b0 f docb.obj - 0001:0004a9d0 ??_GDDG@@MAEPAXI@Z 0044b9d0 f docb.obj - 0001:0004a9d0 ??_EDDG@@MAEPAXI@Z 0044b9d0 f docb.obj - 0001:0004a9f0 ??_GDMD@@UAEPAXI@Z 0044b9f0 f docb.obj - 0001:0004a9f0 ??_EDMD@@UAEPAXI@Z 0044b9f0 f docb.obj - 0001:0004aa10 ??_GDMW@@UAEPAXI@Z 0044ba10 f docb.obj - 0001:0004aa10 ??_EDMW@@UAEPAXI@Z 0044ba10 f docb.obj - 0001:0004aa30 ??_GDSG@@MAEPAXI@Z 0044ba30 f docb.obj - 0001:0004aa30 ??_EDSG@@MAEPAXI@Z 0044ba30 f docb.obj - 0001:0004aa50 ??_EDSSP@@UAEPAXI@Z 0044ba50 f docb.obj - 0001:0004aa50 ??_GDSSP@@UAEPAXI@Z 0044ba50 f docb.obj - 0001:0004aa70 ??_GDSSM@@UAEPAXI@Z 0044ba70 f docb.obj - 0001:0004aa70 ??_EDSSM@@UAEPAXI@Z 0044ba70 f docb.obj - 0001:0004aa90 ??_9@$BII@A 0044ba90 f docb.obj - 0001:0004aaa0 ??_9@$BKM@A 0044baa0 f docb.obj - 0001:0004aab0 ??_9@$BLA@A 0044bab0 f docb.obj - 0001:0004aac0 ??_9@$BLE@A 0044bac0 f docb.obj - 0001:0004aad0 ?FWouldBe@CLIP@@SGHJ@Z 0044bad0 f clip.obj - 0001:0004aaf0 ?FIs@CLIP@@UAEHJ@Z 0044baf0 f clip.obj - 0001:0004ab00 ?Cls@CLIP@@UAEJXZ 0044bb00 f clip.obj - 0001:0004ab20 ??0CLIP@@QAE@XZ 0044bb20 f clip.obj - 0001:0004ab40 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 0044bb40 f clip.obj - 0001:0004ab70 ?Show@CLIP@@QAEXXZ 0044bb70 f clip.obj - 0001:0004abb0 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 0044bbb0 f clip.obj - 0001:0004ac70 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 0044bc70 f clip.obj - 0001:0004ace0 ?Import@CLIP@@QAEXXZ 0044bce0 f clip.obj - 0001:0004ad20 ?_EnsureDoc@CLIP@@IAEXXZ 0044bd20 f clip.obj - 0001:0004ae20 ?_ImportCur@CLIP@@IAEXXZ 0044be20 f clip.obj - 0001:0004af00 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 0044bf00 f clip.obj - 0001:0004af90 ?FInitExport@CLIP@@QAEHXZ 0044bf90 f clip.obj - 0001:0004afe0 ?PvExport@CLIP@@QAEPAXJJ@Z 0044bfe0 f clip.obj - 0001:0004b040 ?EndExport@CLIP@@QAEXXZ 0044c040 f clip.obj - 0001:0004b060 ?_ExportCur@CLIP@@IAEXXZ 0044c060 f clip.obj - 0001:0004b0d0 ??_GCLIP@@UAEPAXI@Z 0044c0d0 f clip.obj - 0001:0004b0d0 ??_ECLIP@@UAEPAXI@Z 0044c0d0 f clip.obj - 0001:0004b180 ?FWouldBe@TXTB@@SGHJ@Z 0044c180 f rtxt.obj - 0001:0004b1a0 ?FIs@TXTB@@UAEHJ@Z 0044c1a0 f rtxt.obj - 0001:0004b1b0 ?Cls@TXTB@@UAEJXZ 0044c1b0 f rtxt.obj - 0001:0004b1c0 ?FWouldBe@TXRD@@SGHJ@Z 0044c1c0 f rtxt.obj - 0001:0004b1e0 ?FIs@TXRD@@UAEHJ@Z 0044c1e0 f rtxt.obj - 0001:0004b1f0 ?Cls@TXRD@@UAEJXZ 0044c1f0 f rtxt.obj - 0001:0004b200 ?FWouldBe@TXTG@@SGHJ@Z 0044c200 f rtxt.obj - 0001:0004b220 ?FIs@TXTG@@UAEHJ@Z 0044c220 f rtxt.obj - 0001:0004b230 ?Cls@TXTG@@UAEJXZ 0044c230 f rtxt.obj - 0001:0004b240 ?FWouldBe@TXRG@@SGHJ@Z 0044c240 f rtxt.obj - 0001:0004b260 ?FIs@TXRG@@UAEHJ@Z 0044c260 f rtxt.obj - 0001:0004b270 ?Cls@TXRG@@UAEJXZ 0044c270 f rtxt.obj - 0001:0004b280 ?FWouldBe@RTUN@@SGHJ@Z 0044c280 f rtxt.obj - 0001:0004b2a0 ?FIs@RTUN@@UAEHJ@Z 0044c2a0 f rtxt.obj - 0001:0004b2b0 ?Cls@RTUN@@UAEJXZ 0044c2b0 f rtxt.obj - 0001:0004b2c0 ??0TXTB@@IAE@PAVDOCB@@K@Z 0044c2c0 f rtxt.obj - 0001:0004b300 ??1TXTB@@MAE@XZ 0044c300 f rtxt.obj - 0001:0004b350 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 0044c350 f rtxt.obj - 0001:0004b430 ?_FLoad@TXTB@@MAEHF@Z 0044c430 f rtxt.obj - 0001:0004b4c0 ?CpMac@TXTB@@QAEJXZ 0044c4c0 f rtxt.obj - 0001:0004b4d0 ?SuspendUndo@TXTB@@UAEXXZ 0044c4d0 f rtxt.obj - 0001:0004b4e0 ?ResumeUndo@TXTB@@UAEXXZ 0044c4e0 f rtxt.obj - 0001:0004b4f0 ?FSetUndo@TXTB@@UAEHJJJ@Z 0044c4f0 f rtxt.obj - 0001:0004b500 ?CancelUndo@TXTB@@UAEXXZ 0044c500 f rtxt.obj - 0001:0004b510 ?CommitUndo@TXTB@@UAEXXZ 0044c510 f rtxt.obj - 0001:0004b520 ?BumpCombineUndo@TXTB@@UAEXXZ 0044c520 f rtxt.obj - 0001:0004b530 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 0044c530 f rtxt.obj - 0001:0004b650 ?HideSel@TXTB@@UAEXXZ 0044c650 f rtxt.obj - 0001:0004b680 ?SetSel@TXTB@@UAEXJJJ@Z 0044c680 f rtxt.obj - 0001:0004b6c0 ?ShowSel@TXTB@@UAEXXZ 0044c6c0 f rtxt.obj - 0001:0004b6f0 ?_CacheRange@TXTB@@MAEXJJ@Z 0044c6f0 f rtxt.obj - 0001:0004b840 ?_InvalCache@TXTB@@MAEXJJJ@Z 0044c840 f rtxt.obj - 0001:0004b8f0 ?_ChFetch@TXTB@@MAEDJ@Z 0044c8f0 f rtxt.obj - 0001:0004b920 ?FetchRgch@TXTB@@UAEXJJPAD@Z 0044c920 f rtxt.obj - 0001:0004b990 ?FMinPara@TXTB@@QAEHJ@Z 0044c990 f rtxt.obj - 0001:0004ba20 ?CpMinPara@TXTB@@QAEJJ@Z 0044ca20 f rtxt.obj - 0001:0004bad0 ?CpLimPara@TXTB@@QAEJJ@Z 0044cad0 f rtxt.obj - 0001:0004bb90 ?CpPrev@TXTB@@QAEJJH@Z 0044cb90 f rtxt.obj - 0001:0004bc20 ?CpNext@TXTB@@QAEJJH@Z 0044cc20 f rtxt.obj - 0001:0004bcc0 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 0044ccc0 f rtxt.obj - 0001:0004bd40 ?SetAcrBack@TXTB@@QAEXVACR@@K@Z 0044cd40 f rtxt.obj - 0001:0004bd80 ?SetDxpDef@TXTB@@UAEXJ@Z 0044cd80 f rtxt.obj - 0001:0004bdc0 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 0044cdc0 f rtxt.obj - 0001:0004be20 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 0044ce20 f rtxt.obj - 0001:0004bee0 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 0044cee0 f rtxt.obj - 0001:0004bf50 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 0044cf50 f rtxt.obj - 0001:0004bf80 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 0044cf80 f rtxt.obj - 0001:0004bf90 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0044cf90 f rtxt.obj - 0001:0004bfa0 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 0044cfa0 f rtxt.obj - 0001:0004bfe0 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 0044cfe0 f rtxt.obj - 0001:0004c030 ??0TXRD@@IAE@PAVDOCB@@K@Z 0044d030 f rtxt.obj - 0001:0004c070 ??1TXRD@@MAE@XZ 0044d070 f rtxt.obj - 0001:0004c0d0 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 0044d0d0 f rtxt.obj - 0001:0004c120 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 0044d120 f rtxt.obj - 0001:0004c260 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 0044d260 f rtxt.obj - 0001:0004c700 ?_FOpenArg@TXRD@@MAEHJEFF@Z 0044d700 f rtxt.obj - 0001:0004c7f0 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 0044d7f0 f rtxt.obj - 0001:0004c830 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 0044d830 f rtxt.obj - 0001:0004c850 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 0044d850 f rtxt.obj - 0001:0004c970 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 0044d970 f rtxt.obj - 0001:0004cc20 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 0044dc20 f rtxt.obj - 0001:0004cc30 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 0044dc30 f rtxt.obj - 0001:0004cd40 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 0044dd40 f rtxt.obj - 0001:0004ce00 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 0044de00 f rtxt.obj - 0001:0004d0b0 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 0044e0b0 f rtxt.obj - 0001:0004d1d0 ?_ReleaseInAg@TXRD@@IAEXJ@Z 0044e1d0 f rtxt.obj - 0001:0004d250 ?_AddRefInAg@TXRD@@IAEXJ@Z 0044e250 f rtxt.obj - 0001:0004d2b0 ?_FSprmInAg@TXRD@@KGHE@Z 0044e2b0 f rtxt.obj - 0001:0004d2e0 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 0044e2e0 f rtxt.obj - 0001:0004d310 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 0044e310 f rtxt.obj - 0001:0004d340 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 0044e340 f rtxt.obj - 0001:0004d3e0 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 0044e3e0 f rtxt.obj - 0001:0004d480 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 0044e480 f rtxt.obj - 0001:0004d4b0 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 0044e4b0 f rtxt.obj - 0001:0004d7c0 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 0044e7c0 f rtxt.obj - 0001:0004da20 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 0044ea20 f rtxt.obj - 0001:0004dc30 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 0044ec30 f rtxt.obj - 0001:0004dd20 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 0044ed20 f rtxt.obj - 0001:0004ddc0 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 0044edc0 f rtxt.obj - 0001:0004df10 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 0044ef10 f rtxt.obj - 0001:0004e0a0 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 0044f0a0 f rtxt.obj - 0001:0004e1f0 ?FSetUndo@TXRD@@UAEHJJJ@Z 0044f1f0 f rtxt.obj - 0001:0004e270 ?CancelUndo@TXRD@@UAEXXZ 0044f270 f rtxt.obj - 0001:0004e2b0 ?CommitUndo@TXRD@@UAEXXZ 0044f2b0 f rtxt.obj - 0001:0004e340 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 0044f340 f rtxt.obj - 0001:0004e400 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 0044f400 f rtxt.obj - 0001:0004e440 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 0044f440 f rtxt.obj - 0001:0004e6e0 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 0044f6e0 f rtxt.obj - 0001:0004e800 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 0044f800 f rtxt.obj - 0001:0004e8c0 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 0044f8c0 f rtxt.obj - 0001:0004e8f0 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 0044f8f0 f rtxt.obj - 0001:0004e930 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 0044f930 f rtxt.obj - 0001:0004ec20 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 0044fc20 f rtxt.obj - 0001:0004ee80 ?FFetchObject@TXRD@@QAEHJPAJPAPAX0@Z 0044fe80 f rtxt.obj - 0001:0004ef70 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 0044ff70 f rtxt.obj - 0001:0004f0f0 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 004500f0 f rtxt.obj - 0001:0004f200 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 00450200 f rtxt.obj - 0001:0004f270 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00450270 f rtxt.obj - 0001:0004f280 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00450280 f rtxt.obj - 0001:0004f300 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00450300 f rtxt.obj - 0001:0004f310 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 00450310 f rtxt.obj - 0001:0004f3d0 ??1RTUN@@UAE@XZ 004503d0 f rtxt.obj - 0001:0004f400 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 00450400 f rtxt.obj - 0001:0004f5a0 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 004505a0 f rtxt.obj - 0001:0004f5b0 ?FCombine@RTUN@@QAEHPAV1@@Z 004505b0 f rtxt.obj - 0001:0004f690 ??_GTXTB@@MAEPAXI@Z 00450690 f rtxt.obj - 0001:0004f690 ??_ETXTB@@MAEPAXI@Z 00450690 f rtxt.obj - 0001:0004f6b0 ??_GTXRD@@MAEPAXI@Z 004506b0 f rtxt.obj - 0001:0004f6b0 ??_ETXRD@@MAEPAXI@Z 004506b0 f rtxt.obj - 0001:0004f6d0 ??_ERTUN@@UAEPAXI@Z 004506d0 f rtxt.obj - 0001:0004f6d0 ??_GRTUN@@UAEPAXI@Z 004506d0 f rtxt.obj - 0001:0004f6f0 ??_9@$BBBA@A 004506f0 f rtxt.obj - 0001:0004f700 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 00450700 f rtxt2.obj - 0001:0004f890 ?GetNextRun@CHR@@QAEXH@Z 00450890 f rtxt2.obj - 0001:0004fc00 ?_FFit@CHR@@AAEHXZ 00450c00 f rtxt2.obj - 0001:0004fc60 ?_SetToBop@CHR@@AAEXXZ 00450c60 f rtxt2.obj - 0001:0004fd20 ?_SkipIgnores@CHR@@AAEXXZ 00450d20 f rtxt2.obj - 0001:0004fda0 ?_DoTab@CHR@@AAEXXZ 00450da0 f rtxt2.obj - 0001:0004fe50 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 00450e50 f rtxt2.obj - 0001:0004feb0 ??1TXTG@@MAE@XZ 00450eb0 f rtxt2.obj - 0001:0004ff00 ?_FInit@TXTG@@MAEHXZ 00450f00 f rtxt2.obj - 0001:00050020 ?_Activate@TXTG@@MAEXH@Z 00451020 f rtxt2.obj - 0001:00050050 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 00451050 f rtxt2.obj - 0001:00050210 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00451210 f rtxt2.obj - 0001:00050480 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00451480 f rtxt2.obj - 0001:00050750 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 00451750 f rtxt2.obj - 0001:00050ad0 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 00451ad0 f rtxt2.obj - 0001:00050e80 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 00451e80 f rtxt2.obj - 0001:00050f20 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00451f20 f rtxt2.obj - 0001:000511c0 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 004521c0 f rtxt2.obj - 0001:00051250 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00452250 f rtxt2.obj - 0001:00051390 ?FReplace@TXTG@@UAEHPADJJJ@Z 00452390 f rtxt2.obj - 0001:00051410 ?InvalCp@TXTG@@UAEXJJJ@Z 00452410 f rtxt2.obj - 0001:00051500 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 00452500 f rtxt2.obj - 0001:00051670 ?_Scroll@TXTG@@MAEXJJJJ@Z 00452670 f rtxt2.obj - 0001:00051ab0 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 00452ab0 f rtxt2.obj - 0001:00051b40 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 00452b40 f rtxt2.obj - 0001:00051ba0 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 00452ba0 f rtxt2.obj - 0001:00051e90 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 00452e90 f rtxt2.obj - 0001:00051ea0 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 00452ea0 f rtxt2.obj - 0001:00052090 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 00453090 f rtxt2.obj - 0001:00052110 ?GetSel@TXTG@@UAEXPAJ0@Z 00453110 f rtxt2.obj - 0001:00052130 ?SetSel@TXTG@@UAEXJJJ@Z 00453130 f rtxt2.obj - 0001:00052240 ?ShowSel@TXTG@@QAEXXZ 00453240 f rtxt2.obj - 0001:000524b0 ?HideSel@TXTG@@UAEXXZ 004534b0 f rtxt2.obj - 0001:000524e0 ?_SwitchSel@TXTG@@IAEXHJ@Z 004534e0 f rtxt2.obj - 0001:00052560 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 00453560 f rtxt2.obj - 0001:00052610 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 00453610 f rtxt2.obj - 0001:00052810 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 00453810 f rtxt2.obj - 0001:00052de0 ?_ScvMax@TXTG@@MAEJH@Z 00453de0 f rtxt2.obj - 0001:00052e40 ?_DxpDoc@TXTG@@MAEJXZ 00453e40 f rtxt2.obj - 0001:00052e50 ?SetDxpTab@TXTG@@UAEXJ@Z 00453e50 f rtxt2.obj - 0001:00052e60 ?SetDxpDoc@TXTG@@UAEXJ@Z 00453e60 f rtxt2.obj - 0001:00052e90 ?ShowRuler@TXTG@@UAEXH@Z 00453e90 f rtxt2.obj - 0001:00052fb0 ?_DypTrul@TXTG@@MAEJXZ 00453fb0 f rtxt2.obj - 0001:00052fc0 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 00453fc0 f rtxt2.obj - 0001:00052fd0 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 00453fd0 f rtxt2.obj - 0001:00053020 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 00454020 f rtxt2.obj - 0001:00053050 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 00454050 f rtxt2.obj - 0001:00053060 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 00454060 f rtxt2.obj - 0001:000530d0 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 004540d0 f rtxt2.obj - 0001:00053100 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 00454100 f rtxt2.obj - 0001:00053130 ?SetDxpTab@TXRG@@UAEXJ@Z 00454130 f rtxt2.obj - 0001:00053220 ?SetSel@TXRG@@UAEXJJJ@Z 00454220 f rtxt2.obj - 0001:000532d0 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 004542d0 f rtxt2.obj - 0001:00053360 ?_EnsureChpIns@TXRG@@IAEXXZ 00454360 f rtxt2.obj - 0001:000533a0 ?FReplace@TXRG@@UAEHPADJJJ@Z 004543a0 f rtxt2.obj - 0001:000534b0 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 004544b0 f rtxt2.obj - 0001:00053570 ?_ClearSel@TXRG@@MAEXXZ 00454570 f rtxt2.obj - 0001:000535a0 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 004545a0 f rtxt2.obj - 0001:00053740 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 00454740 f rtxt2.obj - 0001:000538b0 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 004548b0 f rtxt2.obj - 0001:00053950 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 00454950 f rtxt2.obj - 0001:00053bf0 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 00454bf0 f rtxt2.obj - 0001:00053c00 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 00454c00 f rtxt2.obj - 0001:00053c10 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 00454c10 f rtxt2.obj - 0001:00053e70 ??_GTXTG@@MAEPAXI@Z 00454e70 f rtxt2.obj - 0001:00053e70 ??_ETXTG@@MAEPAXI@Z 00454e70 f rtxt2.obj - 0001:00053e90 ??_GTXRG@@UAEPAXI@Z 00454e90 f rtxt2.obj - 0001:00053e90 ??_ETXRG@@UAEPAXI@Z 00454e90 f rtxt2.obj - 0001:00053eb0 ?FWouldBe@CTL@@SGHJ@Z 00454eb0 f ctl.obj - 0001:00053ed0 ?FIs@CTL@@UAEHJ@Z 00454ed0 f ctl.obj - 0001:00053ee0 ?Cls@CTL@@UAEJXZ 00454ee0 f ctl.obj - 0001:00053ef0 ?FWouldBe@SCB@@SGHJ@Z 00454ef0 f ctl.obj - 0001:00053f10 ?FIs@SCB@@UAEHJ@Z 00454f10 f ctl.obj - 0001:00053f20 ?Cls@SCB@@UAEJXZ 00454f20 f ctl.obj - 0001:00053f30 ?FWouldBe@WSB@@SGHJ@Z 00454f30 f ctl.obj - 0001:00053f50 ?FIs@WSB@@UAEHJ@Z 00454f50 f ctl.obj - 0001:00053f60 ?Cls@WSB@@UAEJXZ 00454f60 f ctl.obj - 0001:00053f70 ??0CTL@@IAE@PAUGCB@@@Z 00454f70 f ctl.obj - 0001:00053f90 ??1CTL@@MAE@XZ 00454f90 f ctl.obj - 0001:00053fd0 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 00454fd0 f ctl.obj - 0001:00054010 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 00455010 f ctl.obj - 0001:00054030 ?_NewRc@CTL@@MAEXXZ 00455030 f ctl.obj - 0001:000540b0 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 004550b0 f ctl.obj - 0001:00054170 ?DxpNormal@SCB@@SGJXZ 00455170 f ctl.obj - 0001:00054190 ?DypNormal@SCB@@SGJXZ 00455190 f ctl.obj - 0001:000541b0 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 004551b0 f ctl.obj - 0001:00054290 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 00455290 f ctl.obj - 0001:00054300 ?_FCreate@SCB@@IAEHJJJK@Z 00455300 f ctl.obj - 0001:00054410 ?SetValMinMax@SCB@@QAEXJJJH@Z 00455410 f ctl.obj - 0001:000544a0 ?TrackScroll@SCB@@UAEXJJ@Z 004554a0 f ctl.obj - 0001:00054640 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 00455640 f ctl.obj - 0001:00054790 ??_ESCB@@UAEPAXI@Z 00455790 f ctl.obj - 0001:00054790 ??_GSCB@@UAEPAXI@Z 00455790 f ctl.obj - 0001:000547b0 ??_GWSB@@UAEPAXI@Z 004557b0 f ctl.obj - 0001:000547b0 ??_EWSB@@UAEPAXI@Z 004557b0 f ctl.obj - 0001:000547d0 ??_GCTL@@MAEPAXI@Z 004557d0 f ctl.obj - 0001:000547d0 ??_ECTL@@MAEPAXI@Z 004557d0 f ctl.obj - 0001:00054880 ?FWouldBe@BSM@@SGHJ@Z 00455880 f stream.obj - 0001:000548a0 ?FIs@BSM@@UAEHJ@Z 004558a0 f stream.obj - 0001:000548b0 ?Cls@BSM@@UAEJXZ 004558b0 f stream.obj - 0001:000548c0 ?FWouldBe@BSF@@SGHJ@Z 004558c0 f stream.obj - 0001:000548e0 ?FIs@BSF@@UAEHJ@Z 004558e0 f stream.obj - 0001:000548f0 ?Cls@BSF@@UAEJXZ 004558f0 f stream.obj - 0001:00054900 ??0BSM@@QAE@XZ 00455900 f stream.obj - 0001:00054920 ??1BSM@@UAE@XZ 00455920 f stream.obj - 0001:00054940 ?SetMinGrow@BSM@@QAEXJ@Z 00455940 f stream.obj - 0001:00054950 ?FetchRgb@BSM@@QAEXJJPAX@Z 00455950 f stream.obj - 0001:00054970 ?FReplace@BSM@@QAEHPAXJJJ@Z 00455970 f stream.obj - 0001:00054a00 ?_FEnsureSize@BSM@@IAEHJH@Z 00455a00 f stream.obj - 0001:00054ae0 ??0BSF@@QAE@XZ 00455ae0 f stream.obj - 0001:00054b00 ??1BSF@@UAE@XZ 00455b00 f stream.obj - 0001:00054b70 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00455b70 f stream.obj - 0001:00054c00 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00455c00 f stream.obj - 0001:00054d30 ?_AttemptMerge@BSF@@IAEXJJ@Z 00455d30 f stream.obj - 0001:00054e20 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 00455e20 f stream.obj - 0001:00055130 ?FReplace@BSF@@QAEHPAXJJJ@Z 00456130 f stream.obj - 0001:00055420 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 00456420 f stream.obj - 0001:000555c0 ?FetchRgb@BSF@@QAEXJJPAX@Z 004565c0 f stream.obj - 0001:00055670 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 00456670 f stream.obj - 0001:00055820 ??_EBSM@@UAEPAXI@Z 00456820 f stream.obj - 0001:00055820 ??_GBSM@@UAEPAXI@Z 00456820 f stream.obj - 0001:00055840 ??_EBSF@@UAEPAXI@Z 00456840 f stream.obj - 0001:00055840 ??_GBSF@@UAEPAXI@Z 00456840 f stream.obj - 0001:00055860 ?FWouldBe@DLG@@SGHJ@Z 00456860 f dlg.obj - 0001:00055880 ?FIs@DLG@@UAEHJ@Z 00456880 f dlg.obj - 0001:00055890 ?Cls@DLG@@UAEJXZ 00456890 f dlg.obj - 0001:000558a0 ??0DLG@@AAE@J@Z 004568a0 f dlg.obj - 0001:000558c0 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 004568c0 f dlg.obj - 0001:00055920 ?FGetValues@DLG@@QAEHJJ@Z 00456920 f dlg.obj - 0001:000559f0 ?SetValues@DLG@@QAEXJJ@Z 004569f0 f dlg.obj - 0001:00055bd0 ?IditFromSit@DLG@@QAEJJ@Z 00456bd0 f dlg.obj - 0001:00055c20 ?_FDitChange@DLG@@AAEHPAJ@Z 00456c20 f dlg.obj - 0001:00055c70 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 00456c70 f dlg.obj - 0001:00055cd0 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 00456cd0 f dlg.obj - 0001:00055df0 ?LwGetRadio@DLG@@QAEJJ@Z 00456df0 f dlg.obj - 0001:00055e10 ?PutRadio@DLG@@QAEXJJ@Z 00456e10 f dlg.obj - 0001:00055e30 ?FGetCheck@DLG@@QAEHJ@Z 00456e30 f dlg.obj - 0001:00055e60 ??_GDLG@@UAEPAXI@Z 00456e60 f dlg.obj - 0001:00055e60 ??_EDLG@@UAEPAXI@Z 00456e60 f dlg.obj - 0001:00055f10 ?_FInit@DLG@@AAEHXZ 00456f10 f dlgwin.obj - 0001:00056240 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 00457240 f dlgwin.obj - 0001:00056550 ?IditDo@DLG@@QAEJJ@Z 00457550 f dlgwin.obj - 0001:00056590 ?SelectDit@DLG@@QAEXJ@Z 00457590 f dlgwin.obj - 0001:000565f0 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 004575f0 f dlgwin.obj - 0001:00056650 ?_SetRadioGroup@DLG@@AAEXJJ@Z 00457650 f dlgwin.obj - 0001:00056690 ?_FGetCheckBox@DLG@@AAEHJ@Z 00457690 f dlgwin.obj - 0001:000566d0 ?_SetCheckBox@DLG@@AAEXJH@Z 004576d0 f dlgwin.obj - 0001:00056710 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 00457710 f dlgwin.obj - 0001:00056770 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 00457770 f dlgwin.obj - 0001:000567b0 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 004577b0 f dlgwin.obj - 0001:00056810 ?_ClearList@DLG@@AAEXJ@Z 00457810 f dlgwin.obj - 0001:00056900 ?FWouldBe@EDCB@@SGHJ@Z 00457900 f text.obj - 0001:00056920 ?FIs@EDCB@@UAEHJ@Z 00457920 f text.obj - 0001:00056930 ?Cls@EDCB@@UAEJXZ 00457930 f text.obj - 0001:00056940 ?FWouldBe@EDSL@@SGHJ@Z 00457940 f text.obj - 0001:00056960 ?FIs@EDSL@@UAEHJ@Z 00457960 f text.obj - 0001:00056970 ?Cls@EDSL@@UAEJXZ 00457970 f text.obj - 0001:00056980 ?FWouldBe@EDPL@@SGHJ@Z 00457980 f text.obj - 0001:000569a0 ?FIs@EDPL@@UAEHJ@Z 004579a0 f text.obj - 0001:000569b0 ?Cls@EDPL@@UAEJXZ 004579b0 f text.obj - 0001:000569c0 ??0EDPAR@@QAE@JPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 004579c0 f text.obj - 0001:00056a40 ?Set@EDPAR@@QAEXJPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 00457a40 f text.obj - 0001:00056ac0 ??0EDCB@@IAE@PAUGCB@@J@Z 00457ac0 f text.obj - 0001:00056b10 ??1EDCB@@UAE@XZ 00457b10 f text.obj - 0001:00056b40 ?_FInit@EDCB@@MAEHXZ 00457b40 f text.obj - 0001:00056bd0 ?Draw@EDCB@@UAEXPAVGNV@@PAVRC@@@Z 00457bd0 f text.obj - 0001:00056c70 ?FCmdTrackMouse@EDCB@@UAEHPAUCMD_MOUSE@@@Z 00457c70 f text.obj - 0001:00056db0 ?FCmdKey@EDCB@@UAEHPAUCMD_KEY@@@Z 00457db0 f text.obj - 0001:00057200 ?FCmdSelIdle@EDCB@@UAEHPAUCMD@@@Z 00458200 f text.obj - 0001:00057280 ?FCmdActivateSel@EDCB@@UAEHPAUCMD@@@Z 00458280 f text.obj - 0001:000572a0 ?Activate@EDCB@@UAEXH@Z 004582a0 f text.obj - 0001:000572e0 ?_GetRcContent@EDCB@@MAEXPAVRC@@@Z 004582e0 f text.obj - 0001:000572f0 ?_InitGnv@EDCB@@MAEXPAVGNV@@@Z 004582f0 f text.obj - 0001:00057320 ?_NewRc@EDCB@@MAEXXZ 00458320 f text.obj - 0001:00057330 ?SetSel@EDCB@@QAEXJJJ@Z 00458330 f text.obj - 0001:00057420 ?_SwitchSel@EDCB@@IAEXHJ@Z 00458420 f text.obj - 0001:000574a0 ?ShowSel@EDCB@@QAEXHJ@Z 004584a0 f text.obj - 0001:00057670 ?_InvertSel@EDCB@@IAEXPAVGNV@@J@Z 00458670 f text.obj - 0001:00057740 ?_InvertIchRange@EDCB@@IAEXPAVGNV@@JJJ@Z 00458740 f text.obj - 0001:00057940 ?_UpdateLn@EDCB@@IAEXJJJJJ@Z 00458940 f text.obj - 0001:00057ac0 ?_Scroll@EDCB@@IAEXJJJ@Z 00458ac0 f text.obj - 0001:00057b10 ?_YpFromIch@EDCB@@MAEJJ@Z 00458b10 f text.obj - 0001:00057b40 ?_ChFetch@EDCB@@IAEDJ@Z 00458b40 f text.obj - 0001:00057b70 ?_IchPrev@EDCB@@IAEJJH@Z 00458b70 f text.obj - 0001:00057c10 ?_IchNext@EDCB@@IAEJJH@Z 00458c10 f text.obj - 0001:00057ca0 ??0EDPL@@IAE@PAVEDPAR@@@Z 00458ca0 f text.obj - 0001:00057d40 ?_FInit@EDPL@@MAEHXZ 00458d40 f text.obj - 0001:00057db0 ?_YpFromLn@EDPL@@MAEJJ@Z 00458db0 f text.obj - 0001:00057e70 ?_LnFromYp@EDPL@@MAEJJ@Z 00458e70 f text.obj - 0001:00057ec0 ?_HiliteRc@EDPL@@MAEXPAVGNV@@PAVRC@@@Z 00458ec0 f text.obj - 0001:00057ee0 ?_XpFromIch@EDPL@@MAEJJ@Z 00458ee0 f text.obj - 0001:00057fd0 ?_IchFromLnXp@EDPL@@MAEJJJH@Z 00458fd0 f text.obj - 0001:000580d0 ?_DrawLine@EDPL@@MAEXPAVGNV@@J@Z 004590d0 f text.obj - 0001:000581e0 ?_XpOrigin@EDPL@@IAEJXZ 004591e0 f text.obj - 0001:00058250 ??0EDSL@@IAE@PAVEDPAR@@@Z 00459250 f text.obj - 0001:00058270 ?PedslNew@EDSL@@SGPAV1@PAVEDPAR@@@Z 00459270 f text.obj - 0001:000582c0 ?_FLockLn@EDSL@@MAEHJPAPADPAJ@Z 004592c0 f text.obj - 0001:00058300 ?_UnlockLn@EDSL@@MAEXJPAD@Z 00459300 f text.obj - 0001:00058310 ?_LnFromIch@EDSL@@MAEJJ@Z 00459310 f text.obj - 0001:00058330 ?_IchMinLn@EDSL@@MAEJJ@Z 00459330 f text.obj - 0001:00058350 ?IchMac@EDSL@@UAEJXZ 00459350 f text.obj - 0001:00058360 ?_LnMac@EDSL@@MAEJXZ 00459360 f text.obj - 0001:00058370 ?FReplace@EDSL@@UAEHPADJJJJ@Z 00459370 f text.obj - 0001:00058500 ?_FFilterCh@EDSL@@MAEHD@Z 00459500 f text.obj - 0001:00058520 ?GetStn@EDSL@@QAEXPAVSTN@@@Z 00459520 f text.obj - 0001:00058540 ?SetStn@EDSL@@QAEXPAVSTN@@J@Z 00459540 f text.obj - 0001:00058570 ?CchFetch@EDSL@@UAEJPADJJ@Z 00459570 f text.obj - 0001:00058660 ??_EEDCB@@UAEPAXI@Z 00459660 f text.obj - 0001:00058660 ??_GEDCB@@UAEPAXI@Z 00459660 f text.obj - 0001:00058680 ??_GEDPL@@UAEPAXI@Z 00459680 f text.obj - 0001:00058680 ??_EEDPL@@UAEPAXI@Z 00459680 f text.obj - 0001:000586a0 ??_GEDSL@@UAEPAXI@Z 004596a0 f text.obj - 0001:000586a0 ??_EEDSL@@UAEPAXI@Z 004596a0 f text.obj - 0001:000586c0 ?FWouldBe@GOKD@@SGHJ@Z 004596c0 f kidworld.obj - 0001:000586e0 ?FWouldBe@GKDS@@SGHJ@Z 004596e0 f kidworld.obj - 0001:00058700 ?FIs@GKDS@@UAEHJ@Z 00459700 f kidworld.obj - 0001:00058710 ?Cls@GKDS@@UAEJXZ 00459710 f kidworld.obj - 0001:00058720 ?FWouldBe@WOKS@@SGHJ@Z 00459720 f kidworld.obj - 0001:00058740 ?FIs@WOKS@@UAEHJ@Z 00459740 f kidworld.obj - 0001:00058750 ?Cls@WOKS@@UAEJXZ 00459750 f kidworld.obj - 0001:00058760 ?FReadGkds@GKDS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00459760 f kidworld.obj - 0001:00058940 ??1GKDS@@UAE@XZ 00459940 f kidworld.obj - 0001:00058960 ?Gokk@GKDS@@UAEJXZ 00459960 f kidworld.obj - 0001:00058970 ?FGetCume@GKDS@@UAEHKJPAUCUME@@@Z 00459970 f kidworld.obj - 0001:000589f0 ?GetLop@GKDS@@UAEXJPAULOP@@@Z 004599f0 f kidworld.obj - 0001:00058a30 ??0WOKS@@QAE@PAUGCB@@PAVSTRG@@@Z 00459a30 f kidworld.obj - 0001:00058af0 ??1WOKS@@UAE@XZ 00459af0 f kidworld.obj - 0001:00058b50 ?FGobIn@WOKS@@UAEHPAVGOB@@@Z 00459b50 f kidworld.obj - 0001:00058b70 ?PgokdFetch@WOKS@@UAEPAVGOKD@@KKPAVRCA@@@Z 00459b70 f kidworld.obj - 0001:00058b90 ?PgokNew@WOKS@@UAEPAVGOK@@PAVGOB@@JKPAVRCA@@@Z 00459b90 f kidworld.obj - 0001:00058c30 ?PscegNew@WOKS@@UAEPAVSCEG@@PAVRCA@@PAVGOB@@@Z 00459c30 f kidworld.obj - 0001:00058c60 ?PhbalNew@WOKS@@UAEPAVHBAL@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 00459c60 f kidworld.obj - 0001:00058ca0 ?PcmhFromHid@WOKS@@UAEPAVCMH@@J@Z 00459ca0 f kidworld.obj - 0001:00058ce0 ?PclokFromHid@WOKS@@UAEPAVCLOK@@J@Z 00459ce0 f kidworld.obj - 0001:00058d10 ?PgobParGob@WOKS@@UAEPAVGOB@@PAV2@@Z 00459d10 f kidworld.obj - 0001:00058d40 ?FFindFile@WOKS@@UAEHPAVSTN@@PAVFNI@@@Z 00459d40 f kidworld.obj - 0001:00058d60 ?TGiveAlert@WOKS@@UAEHPAVSTN@@JJ@Z 00459d60 f kidworld.obj - 0001:00058d90 ?Print@WOKS@@UAEXPAVSTN@@@Z 00459d90 f kidworld.obj - 0001:00058db0 ?GrfcustCur@WOKS@@UAEKH@Z 00459db0 f kidworld.obj - 0001:00058de0 ?ModifyGrfcust@WOKS@@UAEXKK@Z 00459de0 f kidworld.obj - 0001:00058e20 ?GrfcustAdjust@WOKS@@UAEKK@Z 00459e20 f kidworld.obj - 0001:00058e40 ?FModalTopic@WOKS@@UAEHPAVRCA@@KPAJ@Z 00459e40 f kidworld.obj - 0001:00059050 ??_EGKDS@@UAEPAXI@Z 0045a050 f kidworld.obj - 0001:00059050 ??_GGKDS@@UAEPAXI@Z 0045a050 f kidworld.obj - 0001:00059070 ??_GWOKS@@UAEPAXI@Z 0045a070 f kidworld.obj - 0001:00059070 ??_EWOKS@@UAEPAXI@Z 0045a070 f kidworld.obj - 0001:00059120 ?FWouldBe@TXHD@@SGHJ@Z 0045a120 f kidhelp.obj - 0001:00059140 ?FIs@TXHD@@UAEHJ@Z 0045a140 f kidhelp.obj - 0001:00059150 ?Cls@TXHD@@UAEJXZ 0045a150 f kidhelp.obj - 0001:00059160 ?FWouldBe@TXHG@@SGHJ@Z 0045a160 f kidhelp.obj - 0001:00059180 ?FIs@TXHG@@UAEHJ@Z 0045a180 f kidhelp.obj - 0001:00059190 ?Cls@TXHG@@UAEJXZ 0045a190 f kidhelp.obj - 0001:000591a0 ?FWouldBe@HBAL@@SGHJ@Z 0045a1a0 f kidhelp.obj - 0001:000591c0 ?FIs@HBAL@@UAEHJ@Z 0045a1c0 f kidhelp.obj - 0001:000591d0 ?Cls@HBAL@@UAEJXZ 0045a1d0 f kidhelp.obj - 0001:000591e0 ?FWouldBe@HBTN@@SGHJ@Z 0045a1e0 f kidhelp.obj - 0001:00059200 ?FIs@HBTN@@UAEHJ@Z 0045a200 f kidhelp.obj - 0001:00059210 ?Cls@HBTN@@UAEJXZ 0045a210 f kidhelp.obj - 0001:00059220 ??0TXHD@@IAE@PAVRCA@@PAVDOCB@@K@Z 0045a220 f kidhelp.obj - 0001:00059270 ??1TXHD@@MAE@XZ 0045a270 f kidhelp.obj - 0001:000592a0 ?PtxhdReadChunk@TXHD@@SGPAV1@PAVRCA@@PAVCFL@@KKPAVSTRG@@K@Z 0045a2a0 f kidhelp.obj - 0001:00059320 ?_FReadChunk@TXHD@@MAEHPAVCFL@@KKPAVSTRG@@K@Z 0045a320 f kidhelp.obj - 0001:00059600 ?_FOpenArg@TXHD@@MAEHJEFF@Z 0045a600 f kidhelp.obj - 0001:000597a0 ?FSaveToChunk@TXHD@@UAEHPAVCFL@@PAUCKI@@H@Z 0045a7a0 f kidhelp.obj - 0001:000598e0 ?_FGetObjectRc@TXHD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 0045a8e0 f kidhelp.obj - 0001:00059a80 ?_FDrawObject@TXHD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0045aa80 f kidhelp.obj - 0001:00059d10 ?FGrouped@TXHD@@QAEHJPAJ0PAEPAKPAVSTN@@@Z 0045ad10 f kidhelp.obj - 0001:00059e30 ?GetHtop@TXHD@@QAEXPAUHTOP@@@Z 0045ae30 f kidhelp.obj - 0001:00059e50 ??0TXHG@@IAE@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 0045ae50 f kidhelp.obj - 0001:00059e80 ?PtxhgNew@TXHG@@SGPAV1@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 0045ae80 f kidhelp.obj - 0001:00059ee0 ?_FInit@TXHG@@MAEHXZ 0045aee0 f kidhelp.obj - 0001:0005a2d0 ?FPtIn@TXHG@@UAEHJJ@Z 0045b2d0 f kidhelp.obj - 0001:0005a310 ?FCmdTrackMouse@TXHG@@UAEHPAUCMD_MOUSE@@@Z 0045b310 f kidhelp.obj - 0001:0005a410 ?FCmdBadKey@TXHG@@UAEHPAUCMD_BADKEY@@@Z 0045b410 f kidhelp.obj - 0001:0005a480 ?FGroupFromPt@TXHG@@UAEHJJPAEPAK@Z 0045b480 f kidhelp.obj - 0001:0005a4d0 ?DoHit@TXHG@@UAEXEKKJ@Z 0045b4d0 f kidhelp.obj - 0001:0005a550 ?_FRunScript@TXHG@@MAEHEKJDKPAJ@Z 0045b550 f kidhelp.obj - 0001:0005a680 ?FCmdMouseMove@TXHG@@UAEHPAUCMD_MOUSE@@@Z 0045b680 f kidhelp.obj - 0001:0005a6e0 ?SetCursor@TXHG@@UAEXK@Z 0045b6e0 f kidhelp.obj - 0001:0005a730 ?PhbalCreate@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 0045b730 f kidhelp.obj - 0001:0005a7b0 ?PhbalNew@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@PAVTXHD@@PAUHTOP@@@Z 0045b7b0 f kidhelp.obj - 0001:0005a950 ??0HBAL@@IAE@PAUGCB@@@Z 0045b950 f kidhelp.obj - 0001:0005a970 ?_FInit@HBAL@@MAEHPAVWOKS@@PAVTXHD@@PAUHTOP@@PAVRCA@@@Z 0045b970 f kidhelp.obj - 0001:0005a9b0 ?FSetTopic@HBAL@@UAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 0045b9b0 f kidhelp.obj - 0001:0005a9f0 ?_FSetTopic@HBAL@@MAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 0045b9f0 f kidhelp.obj - 0001:0005ac00 ?_SetGorp@HBAL@@MAEXPAVGORP@@JJ@Z 0045bc00 f kidhelp.obj - 0001:0005acd0 ??0HBTN@@IAE@PAUGCB@@@Z 0045bcd0 f kidhelp.obj - 0001:0005acf0 ?PhbtnNew@HBTN@@SGPAV1@PAVWOKS@@PAVGOB@@JKPAVRCA@@EKJJ@Z 0045bcf0 f kidhelp.obj - 0001:0005ae00 ?FPtIn@HBTN@@UAEHJJ@Z 0045be00 f kidhelp.obj - 0001:0005aec0 ?FCmdClicked@HBTN@@UAEHPAUCMD_MOUSE@@@Z 0045bec0 f kidhelp.obj - 0001:0005afb0 ??_ETXHD@@MAEPAXI@Z 0045bfb0 f kidhelp.obj - 0001:0005afb0 ??_GTXHD@@MAEPAXI@Z 0045bfb0 f kidhelp.obj - 0001:0005afd0 ??_GTXHG@@UAEPAXI@Z 0045bfd0 f kidhelp.obj - 0001:0005afd0 ??_ETXHG@@UAEPAXI@Z 0045bfd0 f kidhelp.obj - 0001:0005aff0 ??_GHBAL@@UAEPAXI@Z 0045bff0 f kidhelp.obj - 0001:0005aff0 ??_EHBAL@@UAEPAXI@Z 0045bff0 f kidhelp.obj - 0001:0005b010 ??_EHBTN@@UAEPAXI@Z 0045c010 f kidhelp.obj - 0001:0005b010 ??_GHBTN@@UAEPAXI@Z 0045c010 f kidhelp.obj - 0001:0005b030 ?Pcmm@GOK@@MAEPAUCMM@CMH@@XZ 0045c030 f kidhelp.obj - 0001:0005b040 ?Pcmm@TXHG@@MAEPAUCMM@CMH@@XZ 0045c040 f kidhelp.obj - 0001:0005b050 ?FWouldBe@GOK@@SGHJ@Z 0045c050 f kidspace.obj - 0001:0005b070 ?FIs@GOK@@UAEHJ@Z 0045c070 f kidspace.obj - 0001:0005b080 ?Cls@GOK@@UAEJXZ 0045c080 f kidspace.obj - 0001:0005b090 ?FWouldBe@GORP@@SGHJ@Z 0045c090 f kidspace.obj - 0001:0005b0b0 ?FIs@GORP@@UAEHJ@Z 0045c0b0 f kidspace.obj - 0001:0005b0c0 ?Cls@GORP@@UAEJXZ 0045c0c0 f kidspace.obj - 0001:0005b0d0 ?FWouldBe@GORF@@SGHJ@Z 0045c0d0 f kidspace.obj - 0001:0005b0f0 ?FIs@GORF@@UAEHJ@Z 0045c0f0 f kidspace.obj - 0001:0005b100 ?Cls@GORF@@UAEJXZ 0045c100 f kidspace.obj - 0001:0005b110 ?FWouldBe@GORB@@SGHJ@Z 0045c110 f kidspace.obj - 0001:0005b130 ?FIs@GORB@@UAEHJ@Z 0045c130 f kidspace.obj - 0001:0005b140 ?Cls@GORB@@UAEJXZ 0045c140 f kidspace.obj - 0001:0005b150 ?FWouldBe@GORT@@SGHJ@Z 0045c150 f kidspace.obj - 0001:0005b170 ?FIs@GORT@@UAEHJ@Z 0045c170 f kidspace.obj - 0001:0005b180 ?Cls@GORT@@UAEJXZ 0045c180 f kidspace.obj - 0001:0005b190 ?FWouldBe@GORV@@SGHJ@Z 0045c190 f kidspace.obj - 0001:0005b1b0 ?FIs@GORV@@UAEHJ@Z 0045c1b0 f kidspace.obj - 0001:0005b1c0 ?Cls@GORV@@UAEJXZ 0045c1c0 f kidspace.obj - 0001:0005b1d0 ?PgokNew@GOK@@SGPAV1@PAVWOKS@@PAVGOB@@JPAVGOKD@@PAVRCA@@@Z 0045c1d0 f kidspace.obj - 0001:0005b280 ?_PgobBefore@GOK@@KGPAVGOB@@PAV2@J@Z 0045c280 f kidspace.obj - 0001:0005b2d0 ??0GOK@@IAE@PAUGCB@@@Z 0045c2d0 f kidspace.obj - 0001:0005b310 ??1GOK@@MAE@XZ 0045c310 f kidspace.obj - 0001:0005b420 ?_FInit@GOK@@MAEHPAVWOKS@@KPAVRCA@@@Z 0045c420 f kidspace.obj - 0001:0005b480 ?_FInit@GOK@@MAEHPAVWOKS@@PAVGOKD@@PAVRCA@@@Z 0045c480 f kidspace.obj - 0001:0005b580 ?_ChidMouse@GOK@@IAEKXZ 0045c580 f kidspace.obj - 0001:0005b5b0 ?_FAdjustGms@GOK@@MAEHPAUGMSE@@@Z 0045c5b0 f kidspace.obj - 0001:0005b640 ?_FSetGms@GOK@@MAEHJK@Z 0045c640 f kidspace.obj - 0001:0005b6c0 ?_FSetGmsCore@GOK@@MAEHJKPAH@Z 0045c6c0 f kidspace.obj - 0001:0005b7d0 ?_FSetRep@GOK@@MAEHKKKJJPAH@Z 0045c7d0 f kidspace.obj - 0001:0005bb80 ?_FAdvanceFrame@GOK@@MAEHXZ 0045cb80 f kidspace.obj - 0001:0005bd30 ?_FEnterState@GOK@@MAEHJ@Z 0045cd30 f kidspace.obj - 0001:0005be20 ?FPtIn@GOK@@UAEHJJ@Z 0045ce20 f kidspace.obj - 0001:0005beb0 ?FPtInBounds@GOK@@UAEHJJ@Z 0045ceb0 f kidspace.obj - 0001:0005bef0 ?Draw@GOK@@UAEXPAVGNV@@PAVRC@@@Z 0045cef0 f kidspace.obj - 0001:0005bf40 ?FCmdAlarm@GOK@@UAEHPAUCMD@@@Z 0045cf40 f kidspace.obj - 0001:0005bfd0 ?FCmdAll@GOK@@UAEHPAUCMD@@@Z 0045cfd0 f kidspace.obj - 0001:0005c0b0 ?_FFilterCmd@GOK@@IAEHPAUCMD@@KPAH@Z 0045d0b0 f kidspace.obj - 0001:0005c150 ?FFilterCidHid@GOK@@UAEHJJK@Z 0045d150 f kidspace.obj - 0001:0005c320 ?_FFindCmflt@GOK@@IAEHJJPAUCMFLT@1@PAJ@Z 0045d320 f kidspace.obj - 0001:0005c3e0 ?FCmdMouseMove@GOK@@UAEHPAUCMD_MOUSE@@@Z 0045d3e0 f kidspace.obj - 0001:0005c480 ?SetCursor@GOK@@UAEXK@Z 0045d480 f kidspace.obj - 0001:0005c520 ?FCmdTrackMouse@GOK@@UAEHPAUCMD_MOUSE@@@Z 0045d520 f kidspace.obj - 0001:0005c620 ?FEnsureToolTip@GOK@@UAEHPAPAVGOB@@JJ@Z 0045d620 f kidspace.obj - 0001:0005c710 ?_CnoToolTip@GOK@@IAEKXZ 0045d710 f kidspace.obj - 0001:0005c760 ?SetHidToolTip@GOK@@QAEXJ@Z 0045d760 f kidspace.obj - 0001:0005c770 ?LwState@GOK@@UAEJXZ 0045d770 f kidspace.obj - 0001:0005c790 ?GetPtReg@GOK@@QAEXPAVPT@@J@Z 0045d790 f kidspace.obj - 0001:0005c7e0 ?GetRcContent@GOK@@QAEXPAVRC@@@Z 0045d7e0 f kidspace.obj - 0001:0005c810 ?SetZPlane@GOK@@QAEXJ@Z 0045d810 f kidspace.obj - 0001:0005c860 ?SetNoSlip@GOK@@QAEXH@Z 0045d860 f kidspace.obj - 0001:0005c890 ?FRunScript@GOK@@UAEHKPAJJ0PAH@Z 0045d890 f kidspace.obj - 0001:0005c910 ?FRunScriptCno@GOK@@UAEHKPAJJ0PAH@Z 0045d910 f kidspace.obj - 0001:0005ca00 ?FChangeState@GOK@@UAEHJ@Z 0045da00 f kidspace.obj - 0001:0005ca10 ?FSetRep@GOK@@UAEHKKKJJK@Z 0045da10 f kidspace.obj - 0001:0005ca80 ?FCmdClicked@GOK@@UAEHPAUCMD_MOUSE@@@Z 0045da80 f kidspace.obj - 0001:0005cbd0 ?_PgorpNew@GOK@@MAEPAVGORP@@PAVCRF@@KK@Z 0045dbd0 f kidspace.obj - 0001:0005cc40 ?_SetGorp@GOK@@MAEXPAVGORP@@JJ@Z 0045dc40 f kidspace.obj - 0001:0005cdf0 ?_DeferGorp@GOK@@IAEXH@Z 0045ddf0 f kidspace.obj - 0001:0005ce50 ?FPlay@GOK@@UAEHXZ 0045de50 f kidspace.obj - 0001:0005ce70 ?FPlaying@GOK@@UAEHXZ 0045de70 f kidspace.obj - 0001:0005ce90 ?Stop@GOK@@UAEXXZ 0045de90 f kidspace.obj - 0001:0005cea0 ?GotoNfr@GOK@@UAEXJ@Z 0045dea0 f kidspace.obj - 0001:0005cef0 ?NfrMac@GOK@@UAEJXZ 0045def0 f kidspace.obj - 0001:0005cf10 ?NfrCur@GOK@@UAEJXZ 0045df10 f kidspace.obj - 0001:0005cf30 ?SiiPlaySound@GOK@@UAEJKKJJJKJJ@Z 0045df30 f kidspace.obj - 0001:0005cfd0 ?_DeferSnd@GOK@@IAEXH@Z 0045dfd0 f kidspace.obj - 0001:0005d020 ?SiiPlayMouseSound@GOK@@UAEJKK@Z 0045e020 f kidspace.obj - 0001:0005d140 ?_PlayMouseSound@GOK@@IAEXK@Z 0045e140 f kidspace.obj - 0001:0005d200 ?Suspend@GOK@@UAEXXZ 0045e200 f kidspace.obj - 0001:0005d210 ?Resume@GOK@@UAEXXZ 0045e210 f kidspace.obj - 0001:0005d220 ?Stream@GOK@@UAEXH@Z 0045e220 f kidspace.obj - 0001:0005d260 ?NfrMac@GORP@@UAEJXZ 0045e260 f kidspace.obj - 0001:0005d270 ?NfrCur@GORP@@UAEJXZ 0045e270 f kidspace.obj - 0001:0005d280 ?GotoNfr@GORP@@UAEXJ@Z 0045e280 f kidspace.obj - 0001:0005d290 ?FPlaying@GORP@@UAEHXZ 0045e290 f kidspace.obj - 0001:0005d2a0 ?FPlay@GORP@@UAEHXZ 0045e2a0 f kidspace.obj - 0001:0005d2b0 ?Stop@GORP@@UAEXXZ 0045e2b0 f kidspace.obj - 0001:0005d2c0 ?Suspend@GORP@@UAEXXZ 0045e2c0 f kidspace.obj - 0001:0005d2d0 ?Resume@GORP@@UAEXXZ 0045e2d0 f kidspace.obj - 0001:0005d2e0 ?Stream@GORP@@UAEXH@Z 0045e2e0 f kidspace.obj - 0001:0005d2f0 ?PgorfNew@GORF@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 0045e2f0 f kidspace.obj - 0001:0005d470 ?Draw@GORF@@UAEXPAVGNV@@PAVRC@@@Z 0045e470 f kidspace.obj - 0001:0005d4d0 ?FPtIn@GORF@@UAEHJJ@Z 0045e4d0 f kidspace.obj - 0001:0005d500 ?SetDxpDyp@GORF@@UAEXJJ@Z 0045e500 f kidspace.obj - 0001:0005d530 ?GetRc@GORF@@UAEXPAVRC@@@Z 0045e530 f kidspace.obj - 0001:0005d560 ?GetRcContent@GORF@@UAEXPAVRC@@@Z 0045e560 f kidspace.obj - 0001:0005d580 ?PgorbNew@GORB@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 0045e580 f kidspace.obj - 0001:0005d5d0 ??1GORB@@MAE@XZ 0045e5d0 f kidspace.obj - 0001:0005d620 ?Draw@GORB@@UAEXPAVGNV@@PAVRC@@@Z 0045e620 f kidspace.obj - 0001:0005d690 ?FPtIn@GORB@@UAEHJJ@Z 0045e690 f kidspace.obj - 0001:0005d700 ?SetDxpDyp@GORB@@UAEXJJ@Z 0045e700 f kidspace.obj - 0001:0005d710 ?GetRc@GORB@@UAEXPAVRC@@@Z 0045e710 f kidspace.obj - 0001:0005d760 ?GetRcContent@GORB@@UAEXPAVRC@@@Z 0045e760 f kidspace.obj - 0001:0005d780 ?Stream@GORB@@UAEXH@Z 0045e780 f kidspace.obj - 0001:0005d790 ?PgortNew@GORT@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 0045e790 f kidspace.obj - 0001:0005daa0 ??1GORT@@MAE@XZ 0045eaa0 f kidspace.obj - 0001:0005daf0 ?Draw@GORT@@UAEXPAVGNV@@PAVRC@@@Z 0045eaf0 f kidspace.obj - 0001:0005dc80 ?_DrawRow@GORT@@IAEXPAVGNV@@PAVMBMP@@PAVRC@@2JJ@Z 0045ec80 f kidspace.obj - 0001:0005df40 ?FCmdClickedCore@GOK@@QAEHPAUCMD@@@Z 0045ef40 f kidspace.obj - 0001:0005df50 ?FPtIn@GORT@@UAEHJJ@Z 0045ef50 f kidspace.obj - 0001:0005e030 ?_MapZpToMbmp@GORT@@IAEXPAJPAFJJ@Z 0045f030 f kidspace.obj - 0001:0005e0b0 ?SetDxpDyp@GORT@@UAEXJJ@Z 0045f0b0 f kidspace.obj - 0001:0005e140 ?_ComputeFlexZp@GORT@@IAEXPAJ0JPAF@Z 0045f140 f kidspace.obj - 0001:0005e210 ?GetRc@GORT@@UAEXPAVRC@@@Z 0045f210 f kidspace.obj - 0001:0005e2d0 ?_MapZpFlex@GORT@@IAEXPAJPAFJJ@Z 0045f2d0 f kidspace.obj - 0001:0005e3a0 ?GetRcContent@GORT@@UAEXPAVRC@@@Z 0045f3a0 f kidspace.obj - 0001:0005e3d0 ?Stream@GORT@@UAEXH@Z 0045f3d0 f kidspace.obj - 0001:0005e3e0 ?PgorvNew@GORV@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 0045f3e0 f kidspace.obj - 0001:0005e450 ?_FInit@GORV@@MAEHPAVGOK@@PAVCRF@@KK@Z 0045f450 f kidspace.obj - 0001:0005e5c0 ??1GORV@@MAE@XZ 0045f5c0 f kidspace.obj - 0001:0005e5f0 ?Draw@GORV@@UAEXPAVGNV@@PAVRC@@@Z 0045f5f0 f kidspace.obj - 0001:0005e630 ?FPtIn@GORV@@UAEHJJ@Z 0045f630 f kidspace.obj - 0001:0005e660 ?SetDxpDyp@GORV@@UAEXJJ@Z 0045f660 f kidspace.obj - 0001:0005e6b0 ?GetRc@GORV@@UAEXPAVRC@@@Z 0045f6b0 f kidspace.obj - 0001:0005e6d0 ?GetRcContent@GORV@@UAEXPAVRC@@@Z 0045f6d0 f kidspace.obj - 0001:0005e6f0 ?NfrMac@GORV@@UAEJXZ 0045f6f0 f kidspace.obj - 0001:0005e700 ?NfrCur@GORV@@UAEJXZ 0045f700 f kidspace.obj - 0001:0005e710 ?GotoNfr@GORV@@UAEXJ@Z 0045f710 f kidspace.obj - 0001:0005e720 ?FPlaying@GORV@@UAEHXZ 0045f720 f kidspace.obj - 0001:0005e750 ?FPlay@GORV@@UAEHXZ 0045f750 f kidspace.obj - 0001:0005e790 ?Stop@GORV@@UAEXXZ 0045f790 f kidspace.obj - 0001:0005e7a0 ?Suspend@GORV@@UAEXXZ 0045f7a0 f kidspace.obj - 0001:0005e810 ?Resume@GORV@@UAEXXZ 0045f810 f kidspace.obj - 0001:0005e840 ??_GGORP@@UAEPAXI@Z 0045f840 f kidspace.obj - 0001:0005e840 ??_EGORP@@UAEPAXI@Z 0045f840 f kidspace.obj - 0001:0005e860 ??_GGOK@@MAEPAXI@Z 0045f860 f kidspace.obj - 0001:0005e860 ??_EGOK@@MAEPAXI@Z 0045f860 f kidspace.obj - 0001:0005e880 ??_EGORB@@MAEPAXI@Z 0045f880 f kidspace.obj - 0001:0005e880 ??_GGORB@@MAEPAXI@Z 0045f880 f kidspace.obj - 0001:0005e8a0 ??_EGORT@@MAEPAXI@Z 0045f8a0 f kidspace.obj - 0001:0005e8a0 ??_GGORT@@MAEPAXI@Z 0045f8a0 f kidspace.obj - 0001:0005e8c0 ??_EGORV@@MAEPAXI@Z 0045f8c0 f kidspace.obj - 0001:0005e8c0 ??_GGORV@@MAEPAXI@Z 0045f8c0 f kidspace.obj - 0001:0005e8e0 ??_EGORF@@UAEPAXI@Z 0045f8e0 f kidspace.obj - 0001:0005e8e0 ??_GGORF@@UAEPAXI@Z 0045f8e0 f kidspace.obj - 0001:0005e900 ?FWouldBe@SCEG@@SGHJ@Z 0045f900 f screxeg.obj - 0001:0005e920 ?FIs@SCEG@@UAEHJ@Z 0045f920 f screxeg.obj - 0001:0005e930 ?Cls@SCEG@@UAEJXZ 0045f930 f screxeg.obj - 0001:0005e940 ??0SCEG@@QAE@PAVWOKS@@PAVRCA@@PAVGOB@@@Z 0045f940 f screxeg.obj - 0001:0005e980 ?FResume@SCEG@@UAEHPAJPAH@Z 0045f980 f screxeg.obj - 0001:0005e9a0 ?_PgobThis@SCEG@@MAEPAVGOB@@XZ 0045f9a0 f screxeg.obj - 0001:0005e9c0 ?_PgobFromHid@SCEG@@MAEPAVGOB@@J@Z 0045f9c0 f screxeg.obj - 0001:0005e9e0 ?_PpglrtvmThis@SCEG@@MAEPAPAVGL@@XZ 0045f9e0 f screxeg.obj - 0001:0005ea00 ?_PpglrtvmGlobal@SCEG@@MAEPAPAVGL@@XZ 0045fa00 f screxeg.obj - 0001:0005ea10 ?_PpglrtvmRemote@SCEG@@MAEPAPAVGL@@J@Z 0045fa10 f screxeg.obj - 0001:0005ea30 ?_SwCur@SCEG@@MAEFXZ 0045fa30 f screxeg.obj - 0001:0005ea40 ?_SwMin@SCEG@@MAEFXZ 0045fa40 f screxeg.obj - 0001:0005ea50 ?_FExecOp@SCEG@@MAEHJ@Z 0045fa50 f screxeg.obj - 0001:00060980 ?_DoAlert@SCEG@@IAEXJ@Z 00461980 f screxeg.obj - 0001:00060b90 ?_DoEditControl@SCEG@@IAEXJJH@Z 00461b90 f screxeg.obj - 0001:00060ca0 ?_SetColorTable@SCEG@@IAEXK@Z 00461ca0 f screxeg.obj - 0001:00060cd0 ?_PglclrGet@SCEG@@IAEPAVGL@@K@Z 00461cd0 f screxeg.obj - 0001:00060d30 ?FReadColorTable@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00461d30 f screxeg.obj - 0001:00060de0 ?_FLaunch@SCEG@@IAEHJ@Z 00461de0 f screxeg.obj - 0001:00060f10 ??_GSCEG@@UAEPAXI@Z 00461f10 f screxeg.obj - 0001:00060f10 ??_ESCEG@@UAEPAXI@Z 00461f10 f screxeg.obj - 0001:00060f40 ?SetFromStn@RTVN@@QAEXPAVSTN@@@Z 00461f40 f scrcom.obj - 0001:00061056 _CommDlgExtendedError@0 00462056 comdlg32:comdlg32.dll - 0001:0006105c _GetOpenFileNameA@4 0046205c comdlg32:comdlg32.dll - 0001:00061062 _GetSaveFileNameA@4 00462062 comdlg32:comdlg32.dll - 0001:00061068 _midiOutGetNumDevs@0 00462068 winmm:WINMM.dll - 0001:0006106e _waveOutGetNumDevs@0 0046206e winmm:WINMM.dll - 0001:00061074 _waveOutGetDevCapsA@12 00462074 winmm:WINMM.dll - 0001:0006107a _mciSendCommandA@16 0046207a winmm:WINMM.dll - 0001:00061080 _timeGetTime@0 00462080 winmm:WINMM.dll - 0001:00061086 _midiOutGetVolume@8 00462086 winmm:WINMM.dll - 0001:0006108c _midiOutSetVolume@8 0046208c winmm:WINMM.dll - 0001:00061092 _midiOutShortMsg@8 00462092 winmm:WINMM.dll - 0001:00061098 _midiOutReset@4 00462098 winmm:WINMM.dll - 0001:0006109e _midiOutOpen@20 0046209e winmm:WINMM.dll - 0001:000610a4 _midiOutClose@4 004620a4 winmm:WINMM.dll - 0001:000610aa _midiOutUnprepareHeader@12 004620aa winmm:WINMM.dll - 0001:000610b0 _midiOutPrepareHeader@12 004620b0 winmm:WINMM.dll - 0001:000610b6 _WNetGetLastErrorA@20 004620b6 mpr:MPR.dll - 0001:000610bc _WNetGetUserA@12 004620bc mpr:MPR.dll - 0001:000610c2 _ICInfo@12 004620c2 vfw32:MSVFW32.dll - 0001:000610c8 _DrawDibDraw@52 004620c8 vfw32:MSVFW32.dll - 0001:000610ce _AVIFileInit@0 004620ce vfw32:AVIFIL32.dll - 0001:000610d4 _AVIFileExit@0 004620d4 vfw32:AVIFIL32.dll - 0001:000610da _AVIFileRelease@4 004620da vfw32:AVIFIL32.dll - 0001:000610e0 _AVIStreamRelease@4 004620e0 vfw32:AVIFIL32.dll - 0001:000610e6 _AVIStreamGetFrameClose@4 004620e6 vfw32:AVIFIL32.dll - 0001:000610ec _DrawDibClose@4 004620ec vfw32:MSVFW32.dll - 0001:000610f2 _DrawDibOpen@0 004620f2 vfw32:MSVFW32.dll - 0001:000610f8 _AVIStreamStart@4 004620f8 vfw32:AVIFIL32.dll - 0001:000610fe _AVIStreamLength@4 004620fe vfw32:AVIFIL32.dll - 0001:00061104 _AVIFileInfoA@12 00462104 vfw32:AVIFIL32.dll - 0001:0006110a _AVIStreamGetFrameOpen@8 0046210a vfw32:AVIFIL32.dll - 0001:00061110 _AVIFileGetStream@16 00462110 vfw32:AVIFIL32.dll - 0001:00061116 _AVIFileOpenA@16 00462116 vfw32:AVIFIL32.dll - 0001:0006111c _AVIStreamSampleToTime@8 0046211c vfw32:AVIFIL32.dll - 0001:00061122 _AVIStreamTimeToSample@8 00462122 vfw32:AVIFIL32.dll - 0001:00061128 _AVIStreamGetFrame@8 00462128 vfw32:AVIFIL32.dll - 0001:0006112e _acmFormatTagDetailsA@12 0046212e f audios:MSACM32.dll - 0001:00061140 _AllocSoundFromStream@16 00462140 f audios:sound.obj - 0001:000611d0 _AllocSoundFromFile@20 004621d0 f audios:sound.obj - 0001:00061260 _AllocSoundFromMemory@12 00462260 f audios:sound.obj - 0001:000612c0 ??0CAMWavFileSrc@@QAE@XZ 004622c0 f audios:sound.obj - 0001:000612f0 ??1CAMWavFileSrc@@QAE@XZ 004622f0 f audios:sound.obj - 0001:00061350 ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 00462350 f audios:sound.obj - 0001:000613a0 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 004623a0 f audios:sound.obj - 0001:000613c0 ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 004623c0 f audios:sound.obj - 0001:00061410 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 00462410 f audios:sound.obj - 0001:000615b0 ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 004625b0 f audios:sound.obj - 0001:00061700 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 00462700 f audios:sound.obj - 0001:00061780 ?AddRef@CAMWavFileSrc@@UAGKXZ 00462780 f audios:sound.obj - 0001:00061790 ?Release@CAMWavFileSrc@@UAGKXZ 00462790 f audios:sound.obj - 0001:000617d0 ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 004627d0 f audios:sound.obj - 0001:00061860 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 00462860 f audios:sound.obj - 0001:00061890 ?GetSamples@CAMWavFileSrc@@UAGKXZ 00462890 f audios:sound.obj - 0001:000618a0 ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 004628a0 f audios:sound.obj - 0001:000618d0 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 004628d0 f audios:sound.obj - 0001:00061cd0 ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 00462cd0 f audios:sound.obj - 0001:00061ce0 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 00462ce0 f audios:sound.obj - 0001:00061d00 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 00462d00 f audios:sound.obj - 0001:00062030 ??1CRIFF@@QAE@XZ 00463030 f audios:sound.obj - 0001:00062040 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 00463040 f audios:sound.obj - 0001:00062050 ?AddRef@CAMWavFileSrc@@W3AGKXZ 00463050 f audios:sound.obj - 0001:00062060 ?Release@CAMWavFileSrc@@W3AGKXZ 00463060 f audios:sound.obj - 0001:00062070 _AllocLoopFilter@12 00463070 f audios:sndloop.obj - 0001:000620d0 ?AddRef@CAMLoopFilter@@UAGKXZ 004630d0 f audios:sndloop.obj - 0001:000620e0 ?Release@CAMLoopFilter@@UAGKXZ 004630e0 f audios:sndloop.obj - 0001:000620f0 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 004630f0 f audios:sndloop.obj - 0001:00062160 ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 00463160 f audios:sndloop.obj - 0001:00062230 ?GetSamples@CAMLoopFilter@@UAGKXZ 00463230 f audios:sndloop.obj - 0001:00062250 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 00463250 f audios:sndloop.obj - 0001:00062290 ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00463290 f audios:sndloop.obj - 0001:000623e0 ??0CClassFactory@@QAE@XZ 004633e0 f audios:factory.obj - 0001:000623f0 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 004633f0 f audios:factory.obj - 0001:00062610 ?AddRef@CClassFactory@@UAGKXZ 00463610 f audios:factory.obj - 0001:00062620 ?Release@CClassFactory@@UAGKXZ 00463620 f audios:factory.obj - 0001:00062660 ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 00463660 f audios:factory.obj - 0001:000626c0 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 004636c0 f audios:factory.obj - 0001:00062e00 ?LockServer@CClassFactory@@UAGJH@Z 00463e00 f audios:factory.obj - 0001:00062e10 ??_ECAMGateFilter@@UAEPAXI@Z 00463e10 f audios:factory.obj - 0001:00062e10 ??_GCAMGateFilter@@UAEPAXI@Z 00463e10 f audios:factory.obj - 0001:00062e90 ??_GCAMLoopFilter@@UAEPAXI@Z 00463e90 f audios:factory.obj - 0001:00062e90 ??_ECAMLoopFilter@@UAEPAXI@Z 00463e90 f audios:factory.obj - 0001:00062f10 ??_GCAMFaderFilter@@UAEPAXI@Z 00463f10 f audios:factory.obj - 0001:00062f10 ??_ECAMFaderFilter@@UAEPAXI@Z 00463f10 f audios:factory.obj - 0001:00062f90 ??_GCAMRandomizeFilter@@UAEPAXI@Z 00463f90 f audios:factory.obj - 0001:00062f90 ??_ECAMRandomizeFilter@@UAEPAXI@Z 00463f90 f audios:factory.obj - 0001:00063010 ??_GCAMDistortFilter@@UAEPAXI@Z 00464010 f audios:factory.obj - 0001:00063010 ??_ECAMDistortFilter@@UAEPAXI@Z 00464010 f audios:factory.obj - 0001:00063090 ??_GCAMStereoFilter@@UAEPAXI@Z 00464090 f audios:factory.obj - 0001:00063090 ??_ECAMStereoFilter@@UAEPAXI@Z 00464090 f audios:factory.obj - 0001:00063110 ??_GCAMTrimFilter@@UAEPAXI@Z 00464110 f audios:factory.obj - 0001:00063110 ??_ECAMTrimFilter@@UAEPAXI@Z 00464110 f audios:factory.obj - 0001:00063190 ??_ECAMBiasFilter@@UAEPAXI@Z 00464190 f audios:factory.obj - 0001:00063190 ??_GCAMBiasFilter@@UAEPAXI@Z 00464190 f audios:factory.obj - 0001:00063210 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00464210 f audios:factory.obj - 0001:00063220 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 00464220 f audios:factory.obj - 0001:00063230 ?Release@CAMBiasFilter@@WBE@AGKXZ 00464230 f audios:factory.obj - 0001:00063240 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00464240 f audios:factory.obj - 0001:00063250 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 00464250 f audios:factory.obj - 0001:00063260 ?Release@CAMTrimFilter@@WBE@AGKXZ 00464260 f audios:factory.obj - 0001:00063270 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00464270 f audios:factory.obj - 0001:00063280 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 00464280 f audios:factory.obj - 0001:00063290 ?Release@CAMDistortFilter@@WBE@AGKXZ 00464290 f audios:factory.obj - 0001:000632a0 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004642a0 f audios:factory.obj - 0001:000632b0 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 004642b0 f audios:factory.obj - 0001:000632c0 ?Release@CAMFaderFilter@@WBE@AGKXZ 004642c0 f audios:factory.obj - 0001:000632d0 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004642d0 f audios:factory.obj - 0001:000632e0 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 004642e0 f audios:factory.obj - 0001:000632f0 ?Release@CAMStereoFilter@@WBE@AGKXZ 004642f0 f audios:factory.obj - 0001:00063300 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00464300 f audios:factory.obj - 0001:00063310 ?AddRef@CAMGateFilter@@WBE@AGKXZ 00464310 f audios:factory.obj - 0001:00063320 ?Release@CAMGateFilter@@WBE@AGKXZ 00464320 f audios:factory.obj - 0001:00063330 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00464330 f audios:factory.obj - 0001:00063340 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 00464340 f audios:factory.obj - 0001:00063350 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 00464350 f audios:factory.obj - 0001:00063360 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00464360 f audios:factory.obj - 0001:00063370 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 00464370 f audios:factory.obj - 0001:00063380 ?Release@CAMLoopFilter@@WBE@AGKXZ 00464380 f audios:factory.obj - 0001:00063390 _AMCreate@16 00464390 f audios:audioman.obj - 0001:000633e0 ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 004643e0 f audios:audioman.obj - 0001:00063410 _AMFinishCache@20 00464410 f audios:audioman.obj - 0001:00063470 _GetAudioManMixer@0 00464470 f audios:audioman.obj - 0001:000634b0 _SoundToStreamAsWave@12 004644b0 f audios:audioman.obj - 0001:000637b0 _SoundToFileAsWave@8 004647b0 f audios:audioman.obj - 0001:00063830 ??0CFileStream@@QAE@PADKK@Z 00464830 f audios:stream.obj - 0001:00063900 ??1CFileStream@@QAE@XZ 00464900 f audios:stream.obj - 0001:00063930 ?AddRef@CFileStream@@UAGKXZ 00464930 f audios:stream.obj - 0001:00063940 ?Release@CFileStream@@UAGKXZ 00464940 f audios:stream.obj - 0001:00063980 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 00464980 f audios:stream.obj - 0001:000639e0 ?Read@CFileStream@@UAGJPAXKPAK@Z 004649e0 f audios:stream.obj - 0001:00063a20 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00464a20 f audios:stream.obj - 0001:00063aa0 ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 00464aa0 f audios:stream.obj - 0001:00063b00 ?Write@CFileStream@@UAGJPBXKPAK@Z 00464b00 f audios:stream.obj - 0001:00063b30 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 00464b30 f audios:stream.obj - 0001:00063b40 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00464b40 f audios:stream.obj - 0001:00063b50 ?Commit@CFileStream@@UAGJK@Z 00464b50 f audios:stream.obj - 0001:00063b60 ?Revert@CFileStream@@UAGJXZ 00464b60 f audios:stream.obj - 0001:00063b70 ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00464b70 f audios:stream.obj - 0001:00063b80 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00464b80 f audios:stream.obj - 0001:00063b90 ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 00464b90 f audios:stream.obj - 0001:00063ba0 ??0CMemoryStream@@AAE@PAV0@@Z 00464ba0 f audios:stream.obj - 0001:00063c10 ??0CMemoryStream@@QAE@PAUIStream@@K@Z 00464c10 f audios:stream.obj - 0001:00063c90 ??0CMemoryStream@@QAE@PADKK@Z 00464c90 f audios:stream.obj - 0001:00063cc0 ??1CMemoryStream@@QAE@XZ 00464cc0 f audios:stream.obj - 0001:00063d00 ?AddRef@CMemoryStream@@UAGKXZ 00464d00 f audios:stream.obj - 0001:00063d10 ?Release@CMemoryStream@@UAGKXZ 00464d10 f audios:stream.obj - 0001:00063d50 ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 00464d50 f audios:stream.obj - 0001:00063db0 ?Read@CMemoryStream@@UAGJPAXKPAK@Z 00464db0 f audios:stream.obj - 0001:00063e10 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00464e10 f audios:stream.obj - 0001:00063e70 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 00464e70 f audios:stream.obj - 0001:00063ec0 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 00464ec0 f audios:stream.obj - 0001:00063f20 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 00464f20 f audios:stream.obj - 0001:00063f30 ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00464f30 f audios:stream.obj - 0001:00063f40 ?Commit@CMemoryStream@@UAGJK@Z 00464f40 f audios:stream.obj - 0001:00063f50 ?Revert@CMemoryStream@@UAGJXZ 00464f50 f audios:stream.obj - 0001:00063f60 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00464f60 f audios:stream.obj - 0001:00063f70 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00464f70 f audios:stream.obj - 0001:00063f80 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 00464f80 f audios:stream.obj - 0001:00063f90 _HRESULTFromMMRESULT@4 00464f90 f audios:utils.obj - 0001:00064180 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 00465180 f audios:utils.obj - 0001:00064260 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 00465260 f audios:utils.obj - 0001:00064300 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 00465300 f audios:utils.obj - 0001:00064360 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 00465360 f audios:utils.obj - 0001:000643b0 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004653b0 f audios:utils.obj - 0001:000643d0 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004653d0 f audios:utils.obj - 0001:000643f0 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004653f0 f audios:utils.obj - 0001:00064410 ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 00465410 f audios:utils.obj - 0001:00064430 ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 00465430 f audios:utils.obj - 0001:00064490 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 00465490 f audios:utils.obj - 0001:00064520 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 00465520 f audios:utils.obj - 0001:000645dc _acmFormatSuggest@20 004655dc f audios:MSACM32.dll - 0001:000645e2 _acmStreamSize@16 004655e2 f audios:MSACM32.dll - 0001:000645e8 _acmStreamPrepareHeader@12 004655e8 f audios:MSACM32.dll - 0001:000645ee _acmStreamOpen@32 004655ee f audios:MSACM32.dll - 0001:000645f4 _acmStreamClose@8 004655f4 f audios:MSACM32.dll - 0001:000645fa _acmStreamUnprepareHeader@12 004655fa f audios:MSACM32.dll - 0001:00064600 _acmStreamConvert@12 00465600 f audios:MSACM32.dll - 0001:00064610 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 00465610 f audios:riff.obj - 0001:00064630 ?ReadLongData@CRIFF@@QAEJPAK@Z 00465630 f audios:riff.obj - 0001:00064650 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 00465650 f audios:riff.obj - 0001:000646f0 ??0CAMPassThruFilter@@QAE@XZ 004656f0 f audios:sndpass.obj - 0001:00064700 ??1CAMPassThruFilter@@UAE@XZ 00465700 f audios:sndpass.obj - 0001:00064730 ?AddRef@CAMPassThruFilter@@UAGKXZ 00465730 f audios:sndpass.obj - 0001:00064740 ?Release@CAMPassThruFilter@@UAGKXZ 00465740 f audios:sndpass.obj - 0001:00064760 ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 00465760 f audios:sndpass.obj - 0001:000647c0 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004657c0 f audios:sndpass.obj - 0001:000647f0 ?GetSamples@CAMPassThruFilter@@UAGKXZ 004657f0 f audios:sndpass.obj - 0001:00064810 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 00465810 f audios:sndpass.obj - 0001:00064840 ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00465840 f audios:sndpass.obj - 0001:00064880 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 00465880 f audios:sndpass.obj - 0001:000648b0 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 004658b0 f audios:sndpass.obj - 0001:00064910 ??_ECAMPassThruFilter@@UAEPAXI@Z 00465910 f audios:sndpass.obj - 0001:00064910 ??_GCAMPassThruFilter@@UAEPAXI@Z 00465910 f audios:sndpass.obj - 0001:00064950 ?AddRef@CAMRandomizeFilter@@UAGKXZ 00465950 f audios:sndrand.obj - 0001:00064960 ?Release@CAMRandomizeFilter@@UAGKXZ 00465960 f audios:sndrand.obj - 0001:00064970 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 00465970 f audios:sndrand.obj - 0001:000649e0 ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 004659e0 f audios:sndrand.obj - 0001:000649f0 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 004659f0 f audios:sndrand.obj - 0001:00064a00 ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 00465a00 f audios:sndrand.obj - 0001:00064a10 ?Clear@CAMRandomizeFilter@@UAGJXZ 00465a10 f audios:sndrand.obj - 0001:00064a20 _AllocGateFilter@12 00465a20 f audios:sndgate.obj - 0001:00064a80 ?AddRef@CAMGateFilter@@UAGKXZ 00465a80 f audios:sndgate.obj - 0001:00064a90 ?Release@CAMGateFilter@@UAGKXZ 00465a90 f audios:sndgate.obj - 0001:00064aa0 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 00465aa0 f audios:sndgate.obj - 0001:00064b10 ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 00465b10 f audios:sndgate.obj - 0001:00064b90 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00465b90 f audios:sndgate.obj - 0001:00064c40 ?AddRef@CAMStereoFilter@@UAGKXZ 00465c40 f audios:sndstreo.obj - 0001:00064c50 ?Release@CAMStereoFilter@@UAGKXZ 00465c50 f audios:sndstreo.obj - 0001:00064c60 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 00465c60 f audios:sndstreo.obj - 0001:00064cd0 ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 00465cd0 f audios:sndstreo.obj - 0001:00064d80 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00465d80 f audios:sndstreo.obj - 0001:00064df0 ?AddRef@CAMFaderFilter@@UAGKXZ 00465df0 f audios:sndfader.obj - 0001:00064e00 ?Release@CAMFaderFilter@@UAGKXZ 00465e00 f audios:sndfader.obj - 0001:00064e10 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 00465e10 f audios:sndfader.obj - 0001:00064e80 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 00465e80 f audios:sndfader.obj - 0001:00064f00 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00465f00 f audios:sndfader.obj - 0001:00064f30 ?AddRef@CAMDistortFilter@@UAGKXZ 00465f30 f audios:snddist.obj - 0001:00064f40 ?Release@CAMDistortFilter@@UAGKXZ 00465f40 f audios:snddist.obj - 0001:00064f50 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 00465f50 f audios:snddist.obj - 0001:00064fc0 ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 00465fc0 f audios:snddist.obj - 0001:00065040 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00466040 f audios:snddist.obj - 0001:00065100 _AllocTrimFilter@8 00466100 f audios:sndtrim.obj - 0001:00065160 ?AddRef@CAMTrimFilter@@UAGKXZ 00466160 f audios:sndtrim.obj - 0001:00065170 ?Release@CAMTrimFilter@@UAGKXZ 00466170 f audios:sndtrim.obj - 0001:00065180 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 00466180 f audios:sndtrim.obj - 0001:000651f0 ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 004661f0 f audios:sndtrim.obj - 0001:00065280 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 00466280 f audios:sndtrim.obj - 0001:00065480 _AllocBiasFilter@8 00466480 f audios:sndbias.obj - 0001:000654e0 ?AddRef@CAMBiasFilter@@UAGKXZ 004664e0 f audios:sndbias.obj - 0001:000654f0 ?Release@CAMBiasFilter@@UAGKXZ 004664f0 f audios:sndbias.obj - 0001:00065500 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 00466500 f audios:sndbias.obj - 0001:00065570 ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 00466570 f audios:sndbias.obj - 0001:000655c0 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 004665c0 f audios:sndbias.obj - 0001:00065790 ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00466790 f audios:sndbias.obj - 0001:00065820 _AllocCacheFilter@12 00466820 f audios:sndcache.obj - 0001:00065880 ??0CAMCacheFilter@@QAE@XZ 00466880 f audios:sndcache.obj - 0001:000658a0 ??1CAMCacheFilter@@QAE@XZ 004668a0 f audios:sndcache.obj - 0001:00065900 ?AddRef@CAMCacheFilter@@UAGKXZ 00466900 f audios:sndcache.obj - 0001:00065910 ?Release@CAMCacheFilter@@UAGKXZ 00466910 f audios:sndcache.obj - 0001:00065950 ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 00466950 f audios:sndcache.obj - 0001:000659e0 ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004669e0 f audios:sndcache.obj - 0001:00065b90 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00466b90 f audios:sndcache.obj - 0001:00065bc0 ?GetSamples@CAMCacheFilter@@UAGKXZ 00466bc0 f audios:sndcache.obj - 0001:00065be0 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 00466be0 f audios:sndcache.obj - 0001:00065c10 ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00466c10 f audios:sndcache.obj - 0001:00065db0 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 00466db0 f audios:sndcache.obj - 0001:00065e00 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 00466e00 f audios:sndcache.obj - 0001:00065e50 ?FillCache@CAMCacheFilter@@AAGJKK@Z 00466e50 f audios:sndcache.obj - 0001:00065f40 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 00466f40 f audios:sndcache.obj - 0001:00065fc0 ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 00466fc0 f audios:sndcache.obj - 0001:00065ff0 ?SetMode@CAMCacheFilter@@UAGJHH@Z 00466ff0 f audios:sndcache.obj - 0001:000660f0 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 004670f0 f audios:sndcache.obj - 0001:00066100 ?AddRef@CAMCacheFilter@@W3AGKXZ 00467100 f audios:sndcache.obj - 0001:00066110 ?Release@CAMCacheFilter@@W3AGKXZ 00467110 f audios:sndcache.obj - 0001:00066120 ??0CAMScheduleFilter@@QAE@XZ 00467120 f audios:sndsched.obj - 0001:00066140 ??1CAMScheduleFilter@@QAE@XZ 00467140 f audios:sndsched.obj - 0001:00066170 ?AddRef@CAMScheduleFilter@@UAGKXZ 00467170 f audios:sndsched.obj - 0001:00066180 ?Release@CAMScheduleFilter@@UAGKXZ 00467180 f audios:sndsched.obj - 0001:000661c0 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 004671c0 f audios:sndsched.obj - 0001:00066250 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 00467250 f audios:sndsched.obj - 0001:00066260 ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00467260 f audios:sndsched.obj - 0001:00066290 ?GetSamples@CAMScheduleFilter@@UAGKXZ 00467290 f audios:sndsched.obj - 0001:000662b0 ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 004672b0 f audios:sndsched.obj - 0001:000662e0 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004672e0 f audios:sndsched.obj - 0001:00066320 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 00467320 f audios:sndsched.obj - 0001:00066330 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 00467330 f audios:sndsched.obj - 0001:00066340 ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 00467340 f audios:sndsched.obj - 0001:00066350 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 00467350 f audios:sndsched.obj - 0001:00066360 ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 00467360 f audios:sndsched.obj - 0001:00066370 ?ClearAll@CAMScheduleFilter@@UAGJXZ 00467370 f audios:sndsched.obj - 0001:00066380 ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 00467380 f audios:sndsched.obj - 0001:00066390 ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 00467390 f audios:sndsched.obj - 0001:000663a0 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 004673a0 f audios:sndsched.obj - 0001:000663b0 ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004673b0 f audios:sndsched.obj - 0001:000663c0 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004673c0 f audios:sndsched.obj - 0001:000663d0 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 004673d0 f audios:sndsched.obj - 0001:000663e0 ?AddRef@CAMScheduleFilter@@W3AGKXZ 004673e0 f audios:sndsched.obj - 0001:000663f0 ?Release@CAMScheduleFilter@@W3AGKXZ 004673f0 f audios:sndsched.obj - 0001:00066400 _AllocMixFilter@12 00467400 f audios:sndmix.obj - 0001:00066460 ??0CAMMixFilter@@QAE@XZ 00467460 f audios:sndmix.obj - 0001:00066480 ??1CAMMixFilter@@QAE@XZ 00467480 f audios:sndmix.obj - 0001:000664c0 ?AddRef@CAMMixFilter@@UAGKXZ 004674c0 f audios:sndmix.obj - 0001:000664d0 ?Release@CAMMixFilter@@UAGKXZ 004674d0 f audios:sndmix.obj - 0001:00066510 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 00467510 f audios:sndmix.obj - 0001:000665a0 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 004675a0 f audios:sndmix.obj - 0001:00066630 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 00467630 f audios:sndmix.obj - 0001:000667f0 ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 004677f0 f audios:sndmix.obj - 0001:00066830 ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 00467830 f audios:sndmix.obj - 0001:00066860 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00467860 f audios:sndmix.obj - 0001:00066890 ?GetSamples@CAMMixFilter@@UAGKXZ 00467890 f audios:sndmix.obj - 0001:000668b0 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 004678b0 f audios:sndmix.obj - 0001:00066930 ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00467930 f audios:sndmix.obj - 0001:00066a60 ?SetCacheSize@CAMMixFilter@@UAGJK@Z 00467a60 f audios:sndmix.obj - 0001:00066a70 ?SetMode@CAMMixFilter@@UAGJHH@Z 00467a70 f audios:sndmix.obj - 0001:00066ae0 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 00467ae0 f audios:sndmix.obj - 0001:00066af0 ?AddRef@CAMMixFilter@@W3AGKXZ 00467af0 f audios:sndmix.obj - 0001:00066b00 ?Release@CAMMixFilter@@W3AGKXZ 00467b00 f audios:sndmix.obj - 0001:00066b10 _AllocGainFilter@16 00467b10 f audios:sndgain.obj - 0001:00066b70 ??0CAMGainFilter@@QAE@XZ 00467b70 f audios:sndgain.obj - 0001:00066bc0 ??1CAMGainFilter@@QAE@XZ 00467bc0 f audios:sndgain.obj - 0001:00066c20 ?AddRef@CAMGainFilter@@UAGKXZ 00467c20 f audios:sndgain.obj - 0001:00066c30 ?Release@CAMGainFilter@@UAGKXZ 00467c30 f audios:sndgain.obj - 0001:00066c70 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 00467c70 f audios:sndgain.obj - 0001:00066d00 ?EnterFilter@CAMGainFilter@@AAGXXZ 00467d00 f audios:sndgain.obj - 0001:00066d20 ?LeaveFilter@CAMGainFilter@@AAGXXZ 00467d20 f audios:sndgain.obj - 0001:00066d40 ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 00467d40 f audios:sndgain.obj - 0001:00066dd0 ?SetGain@CAMGainFilter@@UAGJMM@Z 00467dd0 f audios:sndgain.obj - 0001:00066e20 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00467e20 f audios:sndgain.obj - 0001:00066e60 ?GetSamples@CAMGainFilter@@UAGKXZ 00467e60 f audios:sndgain.obj - 0001:00066e90 ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 00467e90 f audios:sndgain.obj - 0001:00066ed0 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00467ed0 f audios:sndgain.obj - 0001:00066f50 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 00467f50 f audios:sndgain.obj - 0001:00066f90 ?SetMode@CAMGainFilter@@UAGJHH@Z 00467f90 f audios:sndgain.obj - 0001:00067000 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 00468000 f audios:sndgain.obj - 0001:00067010 ?AddRef@CAMGainFilter@@W3AGKXZ 00468010 f audios:sndgain.obj - 0001:00067020 ?Release@CAMGainFilter@@W3AGKXZ 00468020 f audios:sndgain.obj - 0001:00067030 ??0CAMDelayFilter@@QAE@XZ 00468030 f audios:sndecho.obj - 0001:00067050 ??1CAMDelayFilter@@QAE@XZ 00468050 f audios:sndecho.obj - 0001:000670f0 ?AddRef@CAMDelayFilter@@UAGKXZ 004680f0 f audios:sndecho.obj - 0001:00067100 ?Release@CAMDelayFilter@@UAGKXZ 00468100 f audios:sndecho.obj - 0001:00067140 ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 00468140 f audios:sndecho.obj - 0001:000671d0 ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 004681d0 f audios:sndecho.obj - 0001:00067400 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00468400 f audios:sndecho.obj - 0001:00067430 ?GetSamples@CAMDelayFilter@@UAGKXZ 00468430 f audios:sndecho.obj - 0001:00067450 ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 00468450 f audios:sndecho.obj - 0001:000674b0 ?MixInNewData@CAMDelayFilter@@QAGJXZ 004684b0 f audios:sndecho.obj - 0001:000676f0 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004686f0 f audios:sndecho.obj - 0001:000679c0 ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 004689c0 f audios:sndecho.obj - 0001:000679f0 ?SetMode@CAMDelayFilter@@UAGJHH@Z 004689f0 f audios:sndecho.obj - 0001:00067a50 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 00468a50 f audios:sndecho.obj - 0001:00067a60 ?AddRef@CAMDelayFilter@@W3AGKXZ 00468a60 f audios:sndecho.obj - 0001:00067a70 ?Release@CAMDelayFilter@@W3AGKXZ 00468a70 f audios:sndecho.obj - 0001:00067a80 _AllocConvertFilter@12 00468a80 f audios:sndcnvt.obj - 0001:00067ae0 ??0CAMConvertFilter@@QAE@XZ 00468ae0 f audios:sndcnvt.obj - 0001:00067b00 ??1CAMConvertFilter@@QAE@XZ 00468b00 f audios:sndcnvt.obj - 0001:00067b70 ?AddRef@CAMConvertFilter@@UAGKXZ 00468b70 f audios:sndcnvt.obj - 0001:00067b80 ?Release@CAMConvertFilter@@UAGKXZ 00468b80 f audios:sndcnvt.obj - 0001:00067bc0 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 00468bc0 f audios:sndcnvt.obj - 0001:00067c50 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 00468c50 f audios:sndcnvt.obj - 0001:00067d40 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00468d40 f audios:sndcnvt.obj - 0001:00067d90 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 00468d90 f audios:sndcnvt.obj - 0001:00067dd0 ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 00468dd0 f audios:sndcnvt.obj - 0001:00067e10 ?GetSamples@CAMConvertFilter@@UAGKXZ 00468e10 f audios:sndcnvt.obj - 0001:00067e40 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 00468e40 f audios:sndcnvt.obj - 0001:00067e90 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00468e90 f audios:sndcnvt.obj - 0001:00068170 ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 00469170 f audios:sndcnvt.obj - 0001:000681a0 ?SetMode@CAMConvertFilter@@UAGJHH@Z 004691a0 f audios:sndcnvt.obj - 0001:00068200 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 00469200 f audios:sndcnvt.obj - 0001:00068210 ?AddRef@CAMConvertFilter@@W3AGKXZ 00469210 f audios:sndcnvt.obj - 0001:00068220 ?Release@CAMConvertFilter@@W3AGKXZ 00469220 f audios:sndcnvt.obj - 0001:00068230 _AllocClipFilter@16 00469230 f audios:sndclip.obj - 0001:00068290 ??0CAMClipFilter@@QAE@XZ 00469290 f audios:sndclip.obj - 0001:000682b0 ??1CAMClipFilter@@QAE@XZ 004692b0 f audios:sndclip.obj - 0001:000682e0 ?AddRef@CAMClipFilter@@UAGKXZ 004692e0 f audios:sndclip.obj - 0001:000682f0 ?Release@CAMClipFilter@@UAGKXZ 004692f0 f audios:sndclip.obj - 0001:00068330 ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 00469330 f audios:sndclip.obj - 0001:000683c0 ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 004693c0 f audios:sndclip.obj - 0001:00068460 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00469460 f audios:sndclip.obj - 0001:00068490 ?GetSamples@CAMClipFilter@@UAGKXZ 00469490 f audios:sndclip.obj - 0001:000684b0 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 004694b0 f audios:sndclip.obj - 0001:00068510 ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 00469510 f audios:sndclip.obj - 0001:00068550 ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00469550 f audios:sndclip.obj - 0001:00068670 ?SetCacheSize@CAMClipFilter@@UAGJK@Z 00469670 f audios:sndclip.obj - 0001:000686a0 ?SetMode@CAMClipFilter@@UAGJHH@Z 004696a0 f audios:sndclip.obj - 0001:00068700 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 00469700 f audios:sndclip.obj - 0001:00068710 ?AddRef@CAMClipFilter@@W3AGKXZ 00469710 f audios:sndclip.obj - 0001:00068720 ?Release@CAMClipFilter@@W3AGKXZ 00469720 f audios:sndclip.obj - 0001:00068730 _AllocAppendFilter@16 00469730 f audios:sndapend.obj - 0001:00068790 ??0CAMAppendFilter@@QAE@XZ 00469790 f audios:sndapend.obj - 0001:000687b0 ??1CAMAppendFilter@@QAE@XZ 004697b0 f audios:sndapend.obj - 0001:000687f0 ?AddRef@CAMAppendFilter@@UAGKXZ 004697f0 f audios:sndapend.obj - 0001:00068800 ?Release@CAMAppendFilter@@UAGKXZ 00469800 f audios:sndapend.obj - 0001:00068840 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 00469840 f audios:sndapend.obj - 0001:000688d0 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 004698d0 f audios:sndapend.obj - 0001:00068920 ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 00469920 f audios:sndapend.obj - 0001:00068d60 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00469d60 f audios:sndapend.obj - 0001:00068d90 ?GetSamples@CAMAppendFilter@@UAGKXZ 00469d90 f audios:sndapend.obj - 0001:00068db0 ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 00469db0 f audios:sndapend.obj - 0001:00068de0 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00469de0 f audios:sndapend.obj - 0001:00068f40 ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 00469f40 f audios:sndapend.obj - 0001:00068f70 ?SetMode@CAMAppendFilter@@UAGJHH@Z 00469f70 f audios:sndapend.obj - 0001:00068fe0 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 00469fe0 f audios:sndapend.obj - 0001:00068ff0 ?AddRef@CAMAppendFilter@@W3AGKXZ 00469ff0 f audios:sndapend.obj - 0001:00069000 ?Release@CAMAppendFilter@@W3AGKXZ 0046a000 f audios:sndapend.obj - 0001:00069010 ??0CAMSilentSound@@QAE@XZ 0046a010 f audios:sndmute.obj - 0001:00069040 ??1CAMSilentSound@@QAE@XZ 0046a040 f audios:sndmute.obj - 0001:00069050 ?AddRef@CAMSilentSound@@UAGKXZ 0046a050 f audios:sndmute.obj - 0001:00069060 ?Release@CAMSilentSound@@UAGKXZ 0046a060 f audios:sndmute.obj - 0001:000690a0 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 0046a0a0 f audios:sndmute.obj - 0001:00069130 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 0046a130 f audios:sndmute.obj - 0001:000691b0 ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 0046a1b0 f audios:sndmute.obj - 0001:00069200 ?GetSamples@CAMSilentSound@@UAGKXZ 0046a200 f audios:sndmute.obj - 0001:00069220 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 0046a220 f audios:sndmute.obj - 0001:00069260 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 0046a260 f audios:sndmute.obj - 0001:00069300 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 0046a300 f audios:sndmute.obj - 0001:00069310 ?SetMode@CAMSilentSound@@UAGJHH@Z 0046a310 f audios:sndmute.obj - 0001:00069340 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 0046a340 f audios:sndmute.obj - 0001:00069350 ?AddRef@CAMSilentSound@@W3AGKXZ 0046a350 f audios:sndmute.obj - 0001:00069360 ?Release@CAMSilentSound@@W3AGKXZ 0046a360 f audios:sndmute.obj - 0001:00069370 ??0CAMMixer@@QAE@XZ 0046a370 f audios:cmixer.obj - 0001:00069440 ??1CAMMixer@@QAE@XZ 0046a440 f audios:cmixer.obj - 0001:000694b0 ?AddRef@CAMMixer@@UAGKXZ 0046a4b0 f audios:cmixer.obj - 0001:000694c0 ?Release@CAMMixer@@UAGKXZ 0046a4c0 f audios:cmixer.obj - 0001:00069520 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 0046a520 f audios:cmixer.obj - 0001:00069580 ?EnterMixer@CAMMixer@@AAGXXZ 0046a580 f audios:cmixer.obj - 0001:000695a0 ?LeaveMixer@CAMMixer@@AAGXXZ 0046a5a0 f audios:cmixer.obj - 0001:000695c0 ?EnterPump@CAMMixer@@AAGXXZ 0046a5c0 f audios:cmixer.obj - 0001:000695e0 ?LeavePump@CAMMixer@@AAGXXZ 0046a5e0 f audios:cmixer.obj - 0001:00069600 ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 0046a600 f audios:cmixer.obj - 0001:000696e0 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 0046a6e0 f audios:cmixer.obj - 0001:00069790 ?Uninit@CAMMixer@@UAGJXZ 0046a790 f audios:cmixer.obj - 0001:000697e0 ?Activate@CAMMixer@@UAGJH@Z 0046a7e0 f audios:cmixer.obj - 0001:00069810 ?Suspend@CAMMixer@@UAGJH@Z 0046a810 f audios:cmixer.obj - 0001:00069890 ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 0046a890 f audios:cmixer.obj - 0001:00069930 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 0046a930 f audios:cmixer.obj - 0001:000699d0 ?SetMixerVolume@CAMMixer@@UAGJK@Z 0046a9d0 f audios:cmixer.obj - 0001:00069a10 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 0046aa10 f audios:cmixer.obj - 0001:00069a50 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 0046aa50 f audios:cmixer.obj - 0001:00069ae0 ?RemixMode@CAMMixer@@UAGHH@Z 0046aae0 f audios:cmixer.obj - 0001:00069b10 ?GetAvgSample@CAMMixer@@UAGKXZ 0046ab10 f audios:cmixer.obj - 0001:00069d20 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 0046ad20 f audios:cmixer.obj - 0001:00069dc0 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 0046adc0 f audios:cmixer.obj - 0001:00069df0 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 0046adf0 f audios:cmixer.obj - 0001:00069ed0 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 0046aed0 f audios:cmixer.obj - 0001:00069fb0 ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 0046afb0 f audios:cmixer.obj - 0001:0006a030 ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 0046b030 f audios:cmixer.obj - 0001:0006a0a0 ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 0046b0a0 f audios:cmixer.obj - 0001:0006a150 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 0046b150 f audios:cmixer.obj - 0001:0006a1f0 ?AllocGroup@CAMMixer@@UAGJPAK@Z 0046b1f0 f audios:cmixer.obj - 0001:0006a260 ?FreeGroup@CAMMixer@@UAGJK@Z 0046b260 f audios:cmixer.obj - 0001:0006a2c0 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 0046b2c0 f audios:cmixer.obj - 0001:0006a340 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 0046b340 f audios:cmixer.obj - 0001:0006a400 ?StartGroup@CAMMixer@@UAGJKH@Z 0046b400 f audios:cmixer.obj - 0001:0006a490 ?ResetGroup@CAMMixer@@UAGJK@Z 0046b490 f audios:cmixer.obj - 0001:0006a520 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 0046b520 f audios:cmixer.obj - 0001:0006a5b0 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 0046b5b0 f audios:cmixer.obj - 0001:0006a640 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 0046b640 f audios:cmixer.obj - 0001:0006a6e0 ?GetInitFile@CAMMixer@@AAGPADXZ 0046b6e0 f audios:cmixer.obj - 0001:0006a6f0 ?LoadProfile@CAMMixer@@AAGJXZ 0046b6f0 f audios:cmixer.obj - 0001:0006a7c0 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 0046b7c0 f audios:cmixer.obj - 0001:0006a820 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 0046b820 f audios:cmixer.obj - 0001:0006a890 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 0046b890 f audios:cmixer.obj - 0001:0006a900 ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 0046b900 f audios:cmixer.obj - 0001:0006a970 ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 0046b970 f audios:cmixer.obj - 0001:0006a9a0 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 0046b9a0 f audios:cmixer.obj - 0001:0006aad0 ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 0046bad0 f audios:cmixer.obj - 0001:0006ab00 ?AllocMixerData@CAMMixer@@AAGJXZ 0046bb00 f audios:cmixer.obj - 0001:0006acb0 ?FreeMixerData@CAMMixer@@AAGJXZ 0046bcb0 f audios:cmixer.obj - 0001:0006ad80 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 0046bd80 f audios:cmixer.obj - 0001:0006ae30 ?FreeOutputDevice@CAMMixer@@AAGJXZ 0046be30 f audios:cmixer.obj - 0001:0006ae50 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 0046be50 f audios:cmixer.obj - 0001:0006aec0 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 0046bec0 f audios:cmixer.obj - 0001:0006aef0 ?ActivateMixer@CAMMixer@@AAGJXZ 0046bef0 f audios:cmixer.obj - 0001:0006b050 ?DeactivateMixer@CAMMixer@@AAGJXZ 0046c050 f audios:cmixer.obj - 0001:0006b0b0 ?AllocMixerTimer@CAMMixer@@AAGJXZ 0046c0b0 f audios:cmixer.obj - 0001:0006b120 ?FreeMixerTimer@CAMMixer@@AAGJXZ 0046c120 f audios:cmixer.obj - 0001:0006b160 ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 0046c160 f audios:cmixer.obj - 0001:0006b210 ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 0046c210 f audios:cmixer.obj - 0001:0006b260 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 0046c260 f audios:cmixer.obj - 0001:0006b280 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 0046c280 f audios:cmixer.obj - 0001:0006b2d0 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 0046c2d0 f audios:cmixer.obj - 0001:0006b300 ?StartMixer@CAMMixer@@AAGXXZ 0046c300 f audios:cmixer.obj - 0001:0006b3d0 ?StopMixer@CAMMixer@@AAGXXZ 0046c3d0 f audios:cmixer.obj - 0001:0006b420 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 0046c420 f audios:cmixer.obj - 0001:0006b4b0 ?CalcRemixBuffers@CAMMixer@@AAGKXZ 0046c4b0 f audios:cmixer.obj - 0001:0006b520 ?RemixBuffers@CAMMixer@@AAGXK@Z 0046c520 f audios:cmixer.obj - 0001:0006b5c0 ?Refresh@CAMMixer@@UAGXXZ 0046c5c0 f audios:cmixer.obj - 0001:0006b680 ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 0046c680 f audios:cmixer.obj - 0001:0006b6d0 ?Pump@CAMMixer@@AAGXXZ 0046c6d0 f audios:cmixer.obj - 0001:0006b6f0 ?MixNextBuffer@CAMMixer@@AAGHXZ 0046c6f0 f audios:cmixer.obj - 0001:0006b850 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 0046c850 f audios:cmixer.obj - 0001:0006b870 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 0046c870 f audios:audio.obj - 0001:0006b8f0 _AMRIFFStream_CreateFromIStream@8 0046c8f0 f audios:riffstrm.obj - 0001:0006b940 ??0CAMRIFFStream@@QAE@PAUIStream@@@Z 0046c940 f audios:riffstrm.obj - 0001:0006b970 ??1CAMRIFFStream@@QAE@XZ 0046c970 f audios:riffstrm.obj - 0001:0006b990 ?AddRef@CAMRIFFStream@@UAGKXZ 0046c990 f audios:riffstrm.obj - 0001:0006b9a0 ?Release@CAMRIFFStream@@UAGKXZ 0046c9a0 f audios:riffstrm.obj - 0001:0006b9d0 ?QueryInterface@CAMRIFFStream@@UAGJABU_GUID@@PAPAX@Z 0046c9d0 f audios:riffstrm.obj - 0001:0006ba30 ?Descend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@0I@Z 0046ca30 f audios:riffstrm.obj - 0001:0006bb70 ?Ascend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 0046cb70 f audios:riffstrm.obj - 0001:0006bc60 ?CreateChunk@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 0046cc60 f audios:riffstrm.obj - 0001:0006bce0 ?MyRead@CAMRIFFStream@@AAGJPAXJ@Z 0046cce0 f audios:riffstrm.obj - 0001:0006bd20 ?MyWrite@CAMRIFFStream@@AAGJPBXJ@Z 0046cd20 f audios:riffstrm.obj - 0001:0006bd60 ?MySeek@CAMRIFFStream@@AAGJJH@Z 0046cd60 f audios:riffstrm.obj - 0001:0006bdb0 ?Interpolate@@YGGMMMGG@Z 0046cdb0 f audios:cmixlib.obj - 0001:0006be10 ?DecibelToInternalVol@@YGGM@Z 0046ce10 f audios:cmixlib.obj - 0001:0006bf20 ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 0046cf20 f audios:cmixlib.obj - 0001:0006bf80 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 0046cf80 f audios:cmixlib.obj - 0001:0006bfc0 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 0046cfc0 f audios:cmixlib.obj - 0001:0006c090 ?SixteenPanVol@@YGXKPAE0K0@Z 0046d090 f audios:cmixlib.obj - 0001:0006c0d0 ?SixteenVol@@YGXKPAE0K0@Z 0046d0d0 f audios:cmixlib.obj - 0001:0006c110 ?Sixteen@@YGXKPAE0K0@Z 0046d110 f audios:cmixlib.obj - 0001:0006c130 ?EightPanVol@@YGXKPAE0K0@Z 0046d130 f audios:cmixlib.obj - 0001:0006c170 ?EightVol@@YGXKPAE0K0@Z 0046d170 f audios:cmixlib.obj - 0001:0006c1b0 ?Eight@@YGXKPAE0K0@Z 0046d1b0 f audios:cmixlib.obj - 0001:0006c1d0 ?Muted@@YGXKPAE0K0@Z 0046d1d0 f audios:cmixlib.obj - 0001:0006c1e0 ?MixEight@@YGXPAE0K0@Z 0046d1e0 f audios:cmixlib.obj - 0001:0006c3b0 ?MixSixteen@@YGXPAF0KPAE@Z 0046d3b0 f audios:cmixlib.obj - 0001:0006c600 ?VolAdjustSixteen@@YGXKPAE0K0@Z 0046d600 f audios:cmixlib.obj - 0001:0006cf50 ?VolAdjustEight@@YGXKPAE0K0@Z 0046df50 f audios:cmixlib.obj - 0001:0006d8c0 ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 0046e8c0 f audios:cmixlib.obj - 0001:0006e280 ?PanVolAdjustEight@@YGXKPAE0K0@Z 0046f280 f audios:cmixlib.obj - 0001:0006eb50 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 0046fb50 f audios:convert.obj - 0001:0006ed80 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 0046fd80 f audios:convert.obj - 0001:0006eda0 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 0046fda0 f audios:convert.obj - 0001:0006ee10 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 0046fe10 f audios:convert.obj - 0001:0006ee80 ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046fe80 f audios:convert.obj - 0001:0006ef30 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046ff30 f audios:convert.obj - 0001:0006eff0 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046fff0 f audios:convert.obj - 0001:0006f0e0 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004700e0 f audios:convert.obj - 0001:0006f1c0 ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004701c0 f audios:convert.obj - 0001:0006f2c0 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004702c0 f audios:convert.obj - 0001:0006f3a0 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004703a0 f audios:convert.obj - 0001:0006f4c0 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004704c0 f audios:convert.obj - 0001:0006f5a0 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004705a0 f audios:convert.obj - 0001:0006f690 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00470690 f audios:convert.obj - 0001:0006f7d0 ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004707d0 f audios:convert.obj - 0001:0006f8b0 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004708b0 f audios:convert.obj - 0001:0006fa10 ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00470a10 f audios:convert.obj - 0001:0006fb60 ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00470b60 f audios:convert.obj - 0001:0006fd00 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00470d00 f audios:convert.obj - 0001:0006fe40 ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00470e40 f audios:convert.obj - 0001:0006ffc0 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00470fc0 f audios:convert.obj - 0001:000700a0 ??0CMixerOut@@QAE@XZ 004710a0 f audios:cmixout.obj - 0001:000700d0 ??1CMixerOut@@QAE@XZ 004710d0 f audios:cmixout.obj - 0001:00070110 ?AddRef@CMixerOut@@UAGKXZ 00471110 f audios:cmixout.obj - 0001:00070120 ?Release@CMixerOut@@UAGKXZ 00471120 f audios:cmixout.obj - 0001:00070160 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 00471160 f audios:cmixout.obj - 0001:000701c0 ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 004711c0 f audios:cmixout.obj - 0001:000702b0 ?Suspend@CMixerOut@@QAGJH@Z 004712b0 f audios:cmixout.obj - 0001:00070390 ?SuspendPump@CMixerOut@@QAGXXZ 00471390 f audios:cmixout.obj - 0001:000703b0 ?GetNumDevs@CMixerOut@@UAGIXZ 004713b0 f audios:cmixout.obj - 0001:000703d0 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004713d0 f audios:cmixout.obj - 0001:00070410 ?Close@CMixerOut@@UAGIXZ 00471410 f audios:cmixout.obj - 0001:00070440 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 00471440 f audios:cmixout.obj - 0001:00070480 ?GetVolume@CMixerOut@@UAGIPAK@Z 00471480 f audios:cmixout.obj - 0001:000704b0 ?SetVolume@CMixerOut@@UAGIK@Z 004714b0 f audios:cmixout.obj - 0001:000704f0 ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004714f0 f audios:cmixout.obj - 0001:00070520 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 00471520 f audios:cmixout.obj - 0001:00070550 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 00471550 f audios:cmixout.obj - 0001:00070580 ?Pause@CMixerOut@@UAGIXZ 00471580 f audios:cmixout.obj - 0001:000705b0 ?Restart@CMixerOut@@UAGIXZ 004715b0 f audios:cmixout.obj - 0001:000705e0 ?Reset@CMixerOut@@UAGIXZ 004715e0 f audios:cmixout.obj - 0001:00070610 ?BreakLoop@CMixerOut@@UAGIXZ 00471610 f audios:cmixout.obj - 0001:00070640 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 00471640 f audios:cmixout.obj - 0001:00070670 ?GetPitch@CMixerOut@@UAGIPAK@Z 00471670 f audios:cmixout.obj - 0001:000706a0 ?SetPitch@CMixerOut@@UAGIK@Z 004716a0 f audios:cmixout.obj - 0001:000706d0 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 004716d0 f audios:cmixout.obj - 0001:00070700 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 00471700 f audios:cmixout.obj - 0001:00070730 ?GetID@CMixerOut@@UAGIPAI@Z 00471730 f audios:cmixout.obj - 0001:00070760 ?Message@CMixerOut@@UAGIIKK@Z 00471760 f audios:cmixout.obj - 0001:000707a0 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 004717a0 f audios:cmixout.obj - 0001:000707e0 ??0CAMPlaySnd@@QAE@XZ 004717e0 f audios:cplaysnd.obj - 0001:00070800 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 00471800 f audios:cplaysnd.obj - 0001:00070810 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 00471810 f audios:cplaysnd.obj - 0001:00070820 ??1CAMPlaySnd@@QAE@XZ 00471820 f audios:cplaysnd.obj - 0001:00070840 ?AddRef@CAMPlaySnd@@UAGKXZ 00471840 f audios:cplaysnd.obj - 0001:00070850 ?Release@CAMPlaySnd@@UAGKXZ 00471850 f audios:cplaysnd.obj - 0001:00070890 ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 00471890 f audios:cplaysnd.obj - 0001:000708f0 ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 004718f0 f audios:cplaysnd.obj - 0001:00070980 ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 00471980 f audios:cplaysnd.obj - 0001:000709a0 ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 004719a0 f audios:cplaysnd.obj - 0001:000709c0 ?AddRef@CAMChannel@@UAGKXZ 004719c0 f audios:cchannel.obj - 0001:000709d0 ?Release@CAMChannel@@UAGKXZ 004719d0 f audios:cchannel.obj - 0001:00070a50 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 00471a50 f audios:cchannel.obj - 0001:00070ad0 ??0CAMChannel@@QAE@XZ 00471ad0 f audios:cchannel.obj - 0001:00070b20 ??1CAMChannel@@QAE@XZ 00471b20 f audios:cchannel.obj - 0001:00070bd0 ?EnterChannel@CAMChannel@@AAGXXZ 00471bd0 f audios:cchannel.obj - 0001:00070bf0 ?LeaveChannel@CAMChannel@@AAGXXZ 00471bf0 f audios:cchannel.obj - 0001:00070c10 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 00471c10 f audios:cchannel.obj - 0001:00070ce0 ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 00471ce0 f audios:cchannel.obj - 0001:00070d30 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 00471d30 f audios:cchannel.obj - 0001:00070e30 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 00471e30 f audios:cchannel.obj - 0001:00070fb0 ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 00471fb0 f audios:cchannel.obj - 0001:00071010 ?Play@CAMChannel@@UAGJXZ 00472010 f audios:cchannel.obj - 0001:00071070 ?Stop@CAMChannel@@UAGJXZ 00472070 f audios:cchannel.obj - 0001:00071100 ?Finish@CAMChannel@@UAGJXZ 00472100 f audios:cchannel.obj - 0001:00071130 ?IsPlaying@CAMChannel@@UAGHXZ 00472130 f audios:cchannel.obj - 0001:00071160 ?Samples@CAMChannel@@UAGKXZ 00472160 f audios:cchannel.obj - 0001:00071190 ?SetPosition@CAMChannel@@UAGJK@Z 00472190 f audios:cchannel.obj - 0001:000711f0 ?GetPosition@CAMChannel@@UAGJPAK@Z 004721f0 f audios:cchannel.obj - 0001:00071230 ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 00472230 f audios:cchannel.obj - 0001:000712a0 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004722a0 f audios:cchannel.obj - 0001:00071310 ?SetTimePos@CAMChannel@@UAGJK@Z 00472310 f audios:cchannel.obj - 0001:00071350 ?GetTimePos@CAMChannel@@UAGJPAK@Z 00472350 f audios:cchannel.obj - 0001:000713b0 ?Mute@CAMChannel@@UAGJH@Z 004723b0 f audios:cchannel.obj - 0001:000713f0 ?SetVolume@CAMChannel@@UAGJK@Z 004723f0 f audios:cchannel.obj - 0001:00071440 ?SetChannelVol@CAMChannel@@AAGXGG@Z 00472440 f audios:cchannel.obj - 0001:000714d0 ?GetVolume@CAMChannel@@UAGJPAK@Z 004724d0 f audios:cchannel.obj - 0001:00071510 ?SetGain@CAMChannel@@UAGJMM@Z 00472510 f audios:cchannel.obj - 0001:00071560 ?GetGain@CAMChannel@@UAGJPAM0@Z 00472560 f audios:cchannel.obj - 0001:000715b0 ?DoRemix@CAMChannel@@AAGXXZ 004725b0 f audios:cchannel.obj - 0001:000715e0 ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 004725e0 f audios:cchannel.obj - 0001:00071600 ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 00472600 f audios:cchannel.obj - 0001:00071860 ?ClearNotify@CAMChannel@@AAGXK@Z 00472860 f audios:cchannel.obj - 0001:000718e0 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 004728e0 f audios:cchannel.obj - 0001:00071b00 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 00472b00 f audios:cchannel.obj - 0001:00071c10 ?RevertTo@CAMChannel@@UAGJK@Z 00472c10 f audios:cchannel.obj - 0001:00071c60 ?GetActiveState@CAMChannel@@UAGHXZ 00472c60 f audios:cchannel.obj - 0001:00071c80 ?DoStart@CAMChannel@@UAGJH@Z 00472c80 f audios:cchannel.obj - 0001:00071d00 ?DoReset@CAMChannel@@UAGJXZ 00472d00 f audios:cchannel.obj - 0001:00071d40 ?DoPosition@CAMChannel@@UAGJK@Z 00472d40 f audios:cchannel.obj - 0001:00071d70 ?DoVolume@CAMChannel@@UAGJK@Z 00472d70 f audios:cchannel.obj - 0001:00071db0 ?DoGain@CAMChannel@@UAGJMMH@Z 00472db0 f audios:cchannel.obj - 0001:00071e20 ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 00472e20 f audios:cchannel.obj - 0001:00071e30 ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 00472e30 f audios:cchannel.obj - 0001:00071e40 ?SetPriority@CAMChannel@@UAGJK@Z 00472e40 f audios:cchannel.obj - 0001:00071e50 ?GetPriority@CAMChannel@@UAGKXZ 00472e50 f audios:cchannel.obj - 0001:00071e60 ?SetGroup@CAMChannel@@UAGJK@Z 00472e60 f audios:cchannel.obj - 0001:00071e70 ?GetGroup@CAMChannel@@UAGKXZ 00472e70 f audios:cchannel.obj - 0001:00071e80 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 00472e80 f audios:cchannel.obj - 0001:00071e90 ?AddRef@CAMChannel@@W3AGKXZ 00472e90 f audios:cchannel.obj - 0001:00071ea0 ?Release@CAMChannel@@W3AGKXZ 00472ea0 f audios:cchannel.obj - 0001:00071eb0 ??0CRealOut@@QAE@XZ 00472eb0 f audios:crealout.obj - 0001:00071ed0 ??1CRealOut@@QAE@XZ 00472ed0 f audios:crealout.obj - 0001:00071f00 ?AddRef@CRealOut@@UAGKXZ 00472f00 f audios:crealout.obj - 0001:00071f10 ?Release@CRealOut@@UAGKXZ 00472f10 f audios:crealout.obj - 0001:00071f50 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 00472f50 f audios:crealout.obj - 0001:00071fb0 ?GetNumDevs@CRealOut@@UAGIXZ 00472fb0 f audios:crealout.obj - 0001:00071fc0 ?Init@CRealOut@@QAGJXZ 00472fc0 f audios:crealout.obj - 0001:00071fd0 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 00472fd0 f audios:crealout.obj - 0001:00072030 ?Close@CRealOut@@UAGIXZ 00473030 f audios:crealout.obj - 0001:00072070 ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 00473070 f audios:crealout.obj - 0001:000720a0 ?GetVolume@CRealOut@@UAGIPAK@Z 004730a0 f audios:crealout.obj - 0001:000720d0 ?SetVolume@CRealOut@@UAGIK@Z 004730d0 f audios:crealout.obj - 0001:00072100 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00473100 f audios:crealout.obj - 0001:00072130 ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00473130 f audios:crealout.obj - 0001:00072160 ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00473160 f audios:crealout.obj - 0001:00072190 ?Pause@CRealOut@@UAGIXZ 00473190 f audios:crealout.obj - 0001:000721b0 ?Restart@CRealOut@@UAGIXZ 004731b0 f audios:crealout.obj - 0001:000721d0 ?Reset@CRealOut@@UAGIXZ 004731d0 f audios:crealout.obj - 0001:000721f0 ?BreakLoop@CRealOut@@UAGIXZ 004731f0 f audios:crealout.obj - 0001:00072210 ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 00473210 f audios:crealout.obj - 0001:00072240 ?GetPitch@CRealOut@@UAGIPAK@Z 00473240 f audios:crealout.obj - 0001:00072270 ?SetPitch@CRealOut@@UAGIK@Z 00473270 f audios:crealout.obj - 0001:000722a0 ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 004732a0 f audios:crealout.obj - 0001:000722d0 ?SetPlaybackRate@CRealOut@@UAGIK@Z 004732d0 f audios:crealout.obj - 0001:00072300 ?GetID@CRealOut@@UAGIPAI@Z 00473300 f audios:crealout.obj - 0001:00072330 ?Message@CRealOut@@UAGIIKK@Z 00473330 f audios:crealout.obj - 0001:00072360 ?GetErrorText@CRealOut@@UAGIIPADI@Z 00473360 f audios:crealout.obj - 0001:00072390 ??0CFakeOut@@QAE@XZ 00473390 f audios:cfakeout.obj - 0001:000723d0 ??1CFakeOut@@QAE@XZ 004733d0 f audios:cfakeout.obj - 0001:000723e0 ?AddRef@CFakeOut@@UAGKXZ 004733e0 f audios:cfakeout.obj - 0001:000723f0 ?Release@CFakeOut@@UAGKXZ 004733f0 f audios:cfakeout.obj - 0001:00072430 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 00473430 f audios:cfakeout.obj - 0001:00072490 ?Init@CFakeOut@@QAGJXZ 00473490 f audios:cfakeout.obj - 0001:000724a0 ?GetNumDevs@CFakeOut@@UAGIXZ 004734a0 f audios:cfakeout.obj - 0001:000724b0 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004734b0 f audios:cfakeout.obj - 0001:00072550 ?Close@CFakeOut@@UAGIXZ 00473550 f audios:cfakeout.obj - 0001:00072580 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 00473580 f audios:cfakeout.obj - 0001:00072640 ?GetVolume@CFakeOut@@UAGIPAK@Z 00473640 f audios:cfakeout.obj - 0001:00072670 ?SetVolume@CFakeOut@@UAGIK@Z 00473670 f audios:cfakeout.obj - 0001:00072690 ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00473690 f audios:cfakeout.obj - 0001:000726d0 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004736d0 f audios:cfakeout.obj - 0001:00072710 ?StartPlayback@CFakeOut@@AAGXXZ 00473710 f audios:cfakeout.obj - 0001:00072750 ?SuspendPump@CFakeOut@@QAGXXZ 00473750 f audios:cfakeout.obj - 0001:000727a0 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004737a0 f audios:cfakeout.obj - 0001:00072850 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 00473850 f audios:cfakeout.obj - 0001:00072890 ?Pause@CFakeOut@@UAGIXZ 00473890 f audios:cfakeout.obj - 0001:000728c0 ?Restart@CFakeOut@@UAGIXZ 004738c0 f audios:cfakeout.obj - 0001:000728f0 ?Reset@CFakeOut@@UAGIXZ 004738f0 f audios:cfakeout.obj - 0001:00072940 ?BreakLoop@CFakeOut@@UAGIXZ 00473940 f audios:cfakeout.obj - 0001:00072950 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 00473950 f audios:cfakeout.obj - 0001:00072960 ?GetPitch@CFakeOut@@UAGIPAK@Z 00473960 f audios:cfakeout.obj - 0001:00072970 ?SetPitch@CFakeOut@@UAGIK@Z 00473970 f audios:cfakeout.obj - 0001:00072980 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 00473980 f audios:cfakeout.obj - 0001:00072990 ?SetPlaybackRate@CFakeOut@@UAGIK@Z 00473990 f audios:cfakeout.obj - 0001:000729a0 ?GetID@CFakeOut@@UAGIPAI@Z 004739a0 f audios:cfakeout.obj - 0001:000729b0 ?Message@CFakeOut@@UAGIIKK@Z 004739b0 f audios:cfakeout.obj - 0001:000729c0 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 004739c0 f audios:cfakeout.obj - 0001:000729d0 ?FWouldBe@BWLD@@SGHJ@Z 004739d0 f bren:bwld.obj - 0001:000729f0 ?FIs@BWLD@@UAEHJ@Z 004739f0 f bren:bwld.obj - 0001:00072a00 ?Cls@BWLD@@UAEJXZ 00473a00 f bren:bwld.obj - 0001:00072a10 ?PbwldNew@BWLD@@SGPAV1@JJHH@Z 00473a10 f bren:bwld.obj - 0001:00072a70 ?_FInit@BWLD@@IAEHJJHH@Z 00473a70 f bren:bwld.obj - 0001:00072bc0 ?_FInitBuffers@BWLD@@IAEHJJHH@Z 00473bc0 f bren:bwld.obj - 0001:00072e10 ??1BWLD@@UAE@XZ 00473e10 f bren:bwld.obj - 0001:00072f00 ?FSetHalfMode@BWLD@@QAEHHH@Z 00473f00 f bren:bwld.obj - 0001:000731e0 ?CloseBRender@BWLD@@SGXXZ 004741e0 f bren:bwld.obj - 0001:00073200 ?FSetBackground@BWLD@@QAEHPAVCRF@@KKKK@Z 00474200 f bren:bwld.obj - 0001:000734f0 ?SetCamera@BWLD@@QAEXPAUbr_matrix34@@JJG@Z 004744f0 f bren:bwld.obj - 0001:00073540 ?GetCamera@BWLD@@QAEXPAUbr_matrix34@@PAJ1PAG@Z 00474540 f bren:bwld.obj - 0001:00073590 ?Render@BWLD@@QAEXXZ 00474590 f bren:bwld.obj - 0001:00073670 ?Prerender@BWLD@@QAEXXZ 00474670 f bren:bwld.obj - 0001:00073710 ?Unprerender@BWLD@@QAEXXZ 00474710 f bren:bwld.obj - 0001:00073740 ?_CleanWorkingBuffers@BWLD@@IAEXXZ 00474740 f bren:bwld.obj - 0001:000739f0 ?_ActorRendered@BWLD@@KAXPAUbr_actor@@PAUbr_model@@PAUbr_material@@EPAUbr_matrix4@@QAJ@Z 004749f0 f bren:bwld.obj - 0001:00073a50 ?MarkRenderedRegn@BWLD@@QAEXPAVGOB@@JJ@Z 00474a50 f bren:bwld.obj - 0001:00073ad0 ?Draw@BWLD@@QAEXPAVGNV@@PAVRC@@JJ@Z 00474ad0 f bren:bwld.obj - 0001:00073b40 ?AddActor@BWLD@@QAEXPAUbr_actor@@@Z 00474b40 f bren:bwld.obj - 0001:00073b60 ?_FFilter@BWLD@@KAHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z 00474b60 f bren:bwld.obj - 0001:00073b90 ?IterateActorsInPt@BWLD@@QAEXP6AHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z4JJ@Z 00474b90 f bren:bwld.obj - 0001:00073c00 ?FClickedActor@BWLD@@QAEHJJPAPAUbr_actor@@@Z 00474c00 f bren:bwld.obj - 0001:00073c60 ??_GBWLD@@UAEPAXI@Z 00474c60 f bren:bwld.obj - 0001:00073c60 ??_EBWLD@@UAEPAXI@Z 00474c60 f bren:bwld.obj - 0001:00073d10 ?FWouldBe@ZBMP@@SGHJ@Z 00474d10 f bren:zbmp.obj - 0001:00073d30 ?FIs@ZBMP@@UAEHJ@Z 00474d30 f bren:zbmp.obj - 0001:00073d40 ?Cls@ZBMP@@UAEJXZ 00474d40 f bren:zbmp.obj - 0001:00073d50 ?PzbmpNew@ZBMP@@SGPAV1@JJ@Z 00474d50 f bren:zbmp.obj - 0001:00073dd0 ?FReadZbmp@ZBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00474dd0 f bren:zbmp.obj - 0001:00073e40 ?PzbmpRead@ZBMP@@SGPAV1@PAVBLCK@@@Z 00474e40 f bren:zbmp.obj - 0001:00073f50 ??1ZBMP@@UAE@XZ 00474f50 f bren:zbmp.obj - 0001:00073f70 ?Draw@ZBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 00474f70 f bren:zbmp.obj - 0001:000741f0 ??_GZBMP@@UAEPAXI@Z 004751f0 f bren:zbmp.obj - 0001:000741f0 ??_EZBMP@@UAEPAXI@Z 004751f0 f bren:zbmp.obj - 0001:00074294 _BrFixedAbs 00475294 brfwmxr:fixed386.obj - 0001:000742a4 _BrFixedMul 004752a4 brfwmxr:fixed386.obj - 0001:000742b5 _BrFixedMac2 004752b5 brfwmxr:fixed386.obj - 0001:000742d8 _BrFixedMac3 004752d8 brfwmxr:fixed386.obj - 0001:00074305 _BrFixedMac4 00475305 brfwmxr:fixed386.obj - 0001:0007433c _BrFixedLength2 0047533c brfwmxr:fixed386.obj - 0001:00074360 _BrFixedLength3 00475360 brfwmxr:fixed386.obj - 0001:0007438d _BrFixedLength4 0047538d brfwmxr:fixed386.obj - 0001:000743c3 _BrFixedRLength2 004753c3 brfwmxr:fixed386.obj - 0001:000743e7 _BrFixedRLength3 004753e7 brfwmxr:fixed386.obj - 0001:00074414 _BrFixedRLength4 00475414 brfwmxr:fixed386.obj - 0001:0007444a _BrFixedDiv 0047544a brfwmxr:fixed386.obj - 0001:0007445f _BrFixedDivR 0047545f brfwmxr:fixed386.obj - 0001:00074475 _BrFixedDivF 00475475 brfwmxr:fixed386.obj - 0001:00074488 _BrFixedMulDiv 00475488 brfwmxr:fixed386.obj - 0001:00074498 _BrFixedMac2Div 00475498 brfwmxr:fixed386.obj - 0001:000744ba _BrFixedMac3Div 004754ba f brfwmxr:fixed386.obj - 0001:000744e6 _BrFixedMac4Div 004754e6 brfwmxr:fixed386.obj - 0001:0007451c _BrFixedFMac2 0047551c brfwmxr:fixed386.obj - 0001:00074541 _BrFixedFMac3 00475541 brfwmxr:fixed386.obj - 0001:00074571 _BrFixedFMac4 00475571 brfwmxr:fixed386.obj - 0001:000745ac _BrFixedRcp 004755ac brfwmxr:fixed386.obj - 0001:000745bd _BrFixedSqr 004755bd brfwmxr:fixed386.obj - 0001:000745cd _BrFixedSqr2 004755cd brfwmxr:fixed386.obj - 0001:000745ee _BrFixedSqr3 004755ee brfwmxr:fixed386.obj - 0001:00074618 _BrFixedSqr4 00475618 brfwmxr:fixed386.obj - 0001:0007464b _BrFixedSin 0047564b brfwmxr:fixed386.obj - 0001:0007467c _BrFixedCos 0047567c brfwmxr:fixed386.obj - 0001:000746ad _BrFixedASin 004756ad brfwmxr:fixed386.obj - 0001:000746e1 _BrFixedACos 004756e1 brfwmxr:fixed386.obj - 0001:00074715 _BrFixedATan2 00475715 brfwmxr:fixed386.obj - 0001:00074919 _BrFixedATan2Fast 00475919 brfwmxr:fixed386.obj - 0001:00074a21 __Sqrt 00475a21 brfwmxr:fixed386.obj - 0001:00074b79 __Sqrt64 00475b79 brfwmxr:fixed386.obj - 0001:00074e20 __FastSqrt 00475e20 brfwmxr:fixed386.obj - 0001:00074e4b __FastRSqrt 00475e4b brfwmxr:fixed386.obj - 0001:00074e74 __FastRSqrt64 00475e74 brfwmxr:fixed386.obj - 0001:00074ec0 SurfacePerScene_ 00475ec0 brfwmxr:surface.obj - 0001:000753b0 SurfacePerModel_ 004763b0 brfwmxr:surface.obj - 0001:00075698 Surface_Null_ 00476698 brfwmxr:surface.obj - 0001:0007569f FaceSurface_Null_ 0047669f brfwmxr:surface.obj - 0001:000756a6 SurfacePerMaterial_ 004766a6 brfwmxr:surface.obj - 0001:0007591a _BrLightEnable 0047691a brfwmxr:surface.obj - 0001:00075966 _BrLightDisable 00476966 brfwmxr:surface.obj - 0001:00075992 _BrClipPlaneEnable 00476992 brfwmxr:surface.obj - 0001:000759de _BrClipPlaneDisable 004769de brfwmxr:surface.obj - 0001:00075a0a _CopyComponents 00476a0a brfwmxr:surface.obj - 0001:00075a70 _BrMatrix34Copy 00476a70 brfwmxr:matrix34.obj - 0001:00075ac4 _BrMatrix34Mul 00476ac4 brfwmxr:matrix34.obj - 0001:00075e2f _BrMatrix34Identity 00476e2f brfwmxr:matrix34.obj - 0001:00075e8b _BrMatrix34RotateX 00476e8b brfwmxr:matrix34.obj - 0001:00075f02 _BrMatrix34RotateY 00476f02 brfwmxr:matrix34.obj - 0001:00075f79 _BrMatrix34RotateZ 00476f79 brfwmxr:matrix34.obj - 0001:00075ff0 _BrMatrix34Rotate 00476ff0 brfwmxr:matrix34.obj - 0001:00076134 _BrMatrix34Translate 00477134 brfwmxr:matrix34.obj - 0001:0007618c _BrMatrix34Scale 0047718c brfwmxr:matrix34.obj - 0001:000761e4 _BrMatrix34ShearX 004771e4 brfwmxr:matrix34.obj - 0001:0007623f _BrMatrix34ShearY 0047723f brfwmxr:matrix34.obj - 0001:0007629a _BrMatrix34ShearZ 0047729a brfwmxr:matrix34.obj - 0001:000762f5 _BrMatrix34Inverse 004772f5 brfwmxr:matrix34.obj - 0001:00076741 _BrMatrix34LPInverse 00477741 brfwmxr:matrix34.obj - 0001:0007687d _BrMatrix34LPNormalise 0047787d brfwmxr:matrix34.obj - 0001:00076a21 _BrMatrix34RollingBall 00477a21 brfwmxr:matrix34.obj - 0001:00076b79 _BrMatrix34Copy4 00477b79 brfwmxr:matrix34.obj - 0001:00076bcd BrMatrix34TApplyFV_ 00477bcd brfwmxr:matrix34.obj - 0001:00076cb9 _BrMatrix34Apply 00477cb9 brfwmxr:matrix34.obj - 0001:00076d99 _BrMatrix34ApplyP 00477d99 brfwmxr:matrix34.obj - 0001:00076e85 _BrMatrix34ApplyV 00477e85 brfwmxr:matrix34.obj - 0001:00076f61 _BrMatrix34TApply 00477f61 brfwmxr:matrix34.obj - 0001:00077094 _BrMatrix34TApplyP 00478094 brfwmxr:matrix34.obj - 0001:00077170 _BrMatrix34TApplyV 00478170 brfwmxr:matrix34.obj - 0001:0007724c _BrMatrix34Pre 0047824c brfwmxr:matrix34.obj - 0001:0007727b _BrMatrix34Post 0047827b brfwmxr:matrix34.obj - 0001:000772aa _BrMatrix34PreRotateX 004782aa brfwmxr:matrix34.obj - 0001:000772ee _BrMatrix34PostRotateX 004782ee brfwmxr:matrix34.obj - 0001:00077332 _BrMatrix34PreRotateY 00478332 brfwmxr:matrix34.obj - 0001:00077376 _BrMatrix34PostRotateY 00478376 brfwmxr:matrix34.obj - 0001:000773ba _BrMatrix34PreRotateZ 004783ba brfwmxr:matrix34.obj - 0001:000773fe _BrMatrix34PostRotateZ 004783fe brfwmxr:matrix34.obj - 0001:00077442 _BrMatrix34PreRotate 00478442 brfwmxr:matrix34.obj - 0001:0007748a _BrMatrix34PostRotate 0047848a brfwmxr:matrix34.obj - 0001:000774d2 _BrMatrix34PreTranslate 004784d2 brfwmxr:matrix34.obj - 0001:0007751d _BrMatrix34PostTranslate 0047851d brfwmxr:matrix34.obj - 0001:00077568 _BrMatrix34PreScale 00478568 brfwmxr:matrix34.obj - 0001:000775b3 _BrMatrix34PostScale 004785b3 brfwmxr:matrix34.obj - 0001:000775fe _BrMatrix34PreShearX 004785fe brfwmxr:matrix34.obj - 0001:00077642 _BrMatrix34PostShearX 00478642 brfwmxr:matrix34.obj - 0001:00077686 _BrMatrix34PreShearY 00478686 brfwmxr:matrix34.obj - 0001:000776ca _BrMatrix34PostShearY 004786ca brfwmxr:matrix34.obj - 0001:0007770e _BrMatrix34PreShearZ 0047870e brfwmxr:matrix34.obj - 0001:00077752 _BrMatrix34PostShearZ 00478752 brfwmxr:matrix34.obj - 0001:000777a0 _BrActorEnum 004787a0 brfwmxr:actsupt.obj - 0001:000777cb _BrActorSearchMany 004787cb brfwmxr:actsupt.obj - 0001:00077867 _BrActorSearch 00478867 brfwmxr:actsupt.obj - 0001:000778c7 _BrActorAdd 004788c7 brfwmxr:actsupt.obj - 0001:0007792f _BrActorRemove 0047892f brfwmxr:actsupt.obj - 0001:00077987 _BrActorRelink 00478987 brfwmxr:actsupt.obj - 0001:00077a0b _BrActorAllocate 00478a0b brfwmxr:actsupt.obj - 0001:00077b52 _BrActorFree 00478b52 brfwmxr:actsupt.obj - 0001:00077b81 BrActorToRoot_ 00478b81 brfwmxr:actsupt.obj - 0001:00077be5 BrCameraToScreenMatrix4_ 00478be5 brfwmxr:actsupt.obj - 0001:00077ca5 BrVector3EyeInModel_ 00478ca5 brfwmxr:actsupt.obj - 0001:00077cf5 _BrActorToActorMatrix34 00478cf5 brfwmxr:actsupt.obj - 0001:00077f8d _BrActorToScreenMatrix4 00478f8d brfwmxr:actsupt.obj - 0001:00078139 _BrActorToBounds 00479139 brfwmxr:actsupt.obj - 0001:000781e5 _BrBoundsToMatrix34 004791e5 brfwmxr:actsupt.obj - 0001:000782b0 _BrBegin 004792b0 brfwmxr:fwsetup.obj - 0001:000783b4 _BrEnd 004793b4 brfwmxr:fwsetup.obj - 0001:000783d7 _BrDiagHandlerSet 004793d7 brfwmxr:fwsetup.obj - 0001:000783f6 _BrFilesystemSet 004793f6 brfwmxr:fwsetup.obj - 0001:00078415 _BrAllocatorSet 00479415 brfwmxr:fwsetup.obj - 0001:00078734 _BrScenePick2D 00479734 brfwmxr:pick.obj - 0001:00078af3 _BrScenePick3D 00479af3 brfwmxr:pick.obj - 0001:00078b47 _BrModelPick2D 00479b47 brfwmxr:pick.obj - 0001:000790b0 _LightingFaceColour 0047a0b0 brfwmxr:light24.obj - 0001:00079148 _LightingColourCopyMaterial 0047a148 brfwmxr:light24.obj - 0001:0007918b _LightingColourCopyVertex 0047a18b brfwmxr:light24.obj - 0001:000791bb _LightingColour 0047a1bb brfwmxr:light24.obj - 0001:00079422 LightingColour_Null_ 0047a422 brfwmxr:light24.obj - 0001:00079439 LightingColour_Dirn_ 0047a439 brfwmxr:light24.obj - 0001:00079639 LightingColour_Point_ 0047a639 brfwmxr:light24.obj - 0001:0007994d LightingColour_PointAttn_ 0047a94d brfwmxr:light24.obj - 0001:00079cac LightingColour_Spot_ 0047acac brfwmxr:light24.obj - 0001:0007a058 LightingColour_SpotAttn_ 0047b058 brfwmxr:light24.obj - 0001:0007a470 _BrMatrix4Copy 0047b470 brfwmxr:matrix4.obj - 0001:0007a4dc _BrMatrix4Mul 0047b4dc brfwmxr:matrix4.obj - 0001:0007a92c _BrMatrix4Identity 0047b92c brfwmxr:matrix4.obj - 0001:0007a9a4 _BrMatrix4Scale 0047b9a4 brfwmxr:matrix4.obj - 0001:0007aa18 _BrMatrix4Inverse 0047ba18 brfwmxr:matrix4.obj - 0001:0007ab47 _BrMatrix4Determinant 0047bb47 brfwmxr:matrix4.obj - 0001:0007ac97 _BrMatrix4Adjoint 0047bc97 brfwmxr:matrix4.obj - 0001:0007afd3 _BrMatrix4Perspective 0047bfd3 brfwmxr:matrix4.obj - 0001:0007b0b6 _BrMatrix4Apply 0047c0b6 brfwmxr:matrix4.obj - 0001:0007b1d9 _BrMatrix4ApplyP 0047c1d9 brfwmxr:matrix4.obj - 0001:0007b324 _BrMatrix4ApplyV 0047c324 brfwmxr:matrix4.obj - 0001:0007b448 _BrMatrix4TApply 0047c448 brfwmxr:matrix4.obj - 0001:0007b56b _BrMatrix4TApplyP 0047c56b brfwmxr:matrix4.obj - 0001:0007b6b6 _BrMatrix4TApplyV 0047c6b6 brfwmxr:matrix4.obj - 0001:0007b7da _BrMatrix4Copy34 0047c7da brfwmxr:matrix4.obj - 0001:0007b84a _BrMatrix4Pre34 0047c84a brfwmxr:matrix4.obj - 0001:0007bc50 _BrEnvironmentSet 0047cc50 brfwmxr:envmap.obj - 0001:0007bc64 _MapEnvironmentInfinite2D 0047cc64 brfwmxr:envmap.obj - 0001:0007be40 _MapEnvironmentLocal2D 0047ce40 brfwmxr:envmap.obj - 0001:0007c090 _MapFromVertex 0047d090 brfwmxr:envmap.obj - 0001:0007c10b _MapFromVertexOnly 0047d10b brfwmxr:envmap.obj - 0001:0007c180 _LightingFaceIndex 0047d180 brfwmxr:light8.obj - 0001:0007c1ec _LightingIndexCopyMaterial 0047d1ec brfwmxr:light8.obj - 0001:0007c208 _LightingIndexCopyVertex 0047d208 brfwmxr:light8.obj - 0001:0007c238 _LightingIndex 0047d238 brfwmxr:light8.obj - 0001:0007c3d0 LightingIndex_Null_ 0047d3d0 brfwmxr:light8.obj - 0001:0007c3dc LightingIndex_Dirn_ 0047d3dc brfwmxr:light8.obj - 0001:0007c507 LightingIndex_Point_ 0047d507 brfwmxr:light8.obj - 0001:0007c733 LightingIndex_PointAttn_ 0047d733 brfwmxr:light8.obj - 0001:0007c9a3 LightingIndex_Spot_ 0047d9a3 brfwmxr:light8.obj - 0001:0007cc27 LightingIndex_SpotAttn_ 0047dc27 brfwmxr:light8.obj - 0001:0007cf10 _LightingColour_1MD 0047df10 brfwmxr:light24o.obj - 0001:0007cf30 _LightingColour_1MDT 0047df30 brfwmxr:light24o.obj - 0001:0007cfb0 _LightingIndex_1MD 0047dfb0 brfwmxr:light8o.obj - 0001:0007d14f _LightingIndex_1MDT 0047e14f brfwmxr:light8o.obj - 0001:0007d350 _BrFailure 0047e350 brfwmxr:diag.obj - 0001:0007d390 _BrWarning 0047e390 brfwmxr:diag.obj - 0001:0007d3d0 _BrFatal 0047e3d0 brfwmxr:diag.obj - 0001:0007d420 _BrNewList 0047e420 brfwmxr:brlists.obj - 0001:0007d438 _BrAddHead 0047e438 brfwmxr:brlists.obj - 0001:0007d453 _BrAddTail 0047e453 brfwmxr:brlists.obj - 0001:0007d472 _BrRemHead 0047e472 brfwmxr:brlists.obj - 0001:0007d48e _BrRemTail 0047e48e brfwmxr:brlists.obj - 0001:0007d4aa _BrInsert 0047e4aa brfwmxr:brlists.obj - 0001:0007d4c6 _BrRemove 0047e4c6 brfwmxr:brlists.obj - 0001:0007d4de _BrSimpleNewList 0047e4de brfwmxr:brlists.obj - 0001:0007d4ee _BrSimpleAddHead 0047e4ee brfwmxr:brlists.obj - 0001:0007d50e _BrSimpleRemHead 0047e50e brfwmxr:brlists.obj - 0001:0007d542 _BrSimpleInsert 0047e542 brfwmxr:brlists.obj - 0001:0007d562 _BrSimpleRemove 0047e562 brfwmxr:brlists.obj - 0001:0007d5ac _BrTransformToMatrix34 0047e5ac brfwmxr:transfrm.obj - 0001:0007d838 _BrMatrix34PreTransform 0047e838 brfwmxr:transfrm.obj - 0001:0007d86c _BrMatrix34PostTransform 0047e86c brfwmxr:transfrm.obj - 0001:0007d8a0 _BrMatrix4PreTransform 0047e8a0 brfwmxr:transfrm.obj - 0001:0007d8f0 _BrMatrix34ToTransform 0047e8f0 brfwmxr:transfrm.obj - 0001:0007d9e0 _BrTransformToTransform 0047e9e0 brfwmxr:transfrm.obj - 0001:0007da50 NamePatternMatch_ 0047ea50 brfwmxr:register.obj - 0001:0007db23 RegistryNew_ 0047eb23 brfwmxr:register.obj - 0001:0007db47 RegistryClear_ 0047eb47 brfwmxr:register.obj - 0001:0007db7b RegistryAdd_ 0047eb7b brfwmxr:register.obj - 0001:0007dbb7 RegistryAddMany_ 0047ebb7 brfwmxr:register.obj - 0001:0007dc22 RegistryRemove_ 0047ec22 brfwmxr:register.obj - 0001:0007dc6a RegistryRemoveMany_ 0047ec6a brfwmxr:register.obj - 0001:0007dcae RegistryFind_ 0047ecae brfwmxr:register.obj - 0001:0007dcf9 RegistryFindMany_ 0047ecf9 brfwmxr:register.obj - 0001:0007dd49 RegistryCount_ 0047ed49 brfwmxr:register.obj - 0001:0007dd84 RegistryEnum_ 0047ed84 brfwmxr:register.obj - 0001:0007de10 _BrResAllocate 0047ee10 brfwmxr:resource.obj - 0001:0007df34 _BrResFree 0047ef34 brfwmxr:resource.obj - 0001:0007df53 _BrResAdd 0047ef53 brfwmxr:resource.obj - 0001:0007dfa3 _BrResRemove 0047efa3 brfwmxr:resource.obj - 0001:0007dfcb _BrResClass 0047efcb brfwmxr:resource.obj - 0001:0007dfeb _BrResSize 0047efeb brfwmxr:resource.obj - 0001:0007e03f _BrResSizeTotal 0047f03f brfwmxr:resource.obj - 0001:0007e07f _BrResChildEnum 0047f07f brfwmxr:resource.obj - 0001:0007e0cb _BrResCheck 0047f0cb brfwmxr:resource.obj - 0001:0007e0ff _BrResStrDup 0047f0ff brfwmxr:resource.obj - 0001:0007e140 _BrModelAdd 0047f140 brfwmxr:regsupt.obj - 0001:0007e174 _BrModelRemove 0047f174 brfwmxr:regsupt.obj - 0001:0007e18c _BrModelFind 0047f18c brfwmxr:regsupt.obj - 0001:0007e1a0 _BrModelFindHook 0047f1a0 brfwmxr:regsupt.obj - 0001:0007e1b4 _BrModelAddMany 0047f1b4 brfwmxr:regsupt.obj - 0001:0007e210 _BrModelRemoveMany 0047f210 brfwmxr:regsupt.obj - 0001:0007e254 _BrModelFindMany 0047f254 brfwmxr:regsupt.obj - 0001:0007e273 _BrModelCount 0047f273 brfwmxr:regsupt.obj - 0001:0007e287 _BrModelEnum 0047f287 brfwmxr:regsupt.obj - 0001:0007e2a6 _BrMaterialAdd 0047f2a6 brfwmxr:regsupt.obj - 0001:0007e2d6 _BrMaterialRemove 0047f2d6 brfwmxr:regsupt.obj - 0001:0007e2ee _BrMaterialFind 0047f2ee brfwmxr:regsupt.obj - 0001:0007e302 _BrMaterialFindHook 0047f302 brfwmxr:regsupt.obj - 0001:0007e316 _BrMaterialAddMany 0047f316 brfwmxr:regsupt.obj - 0001:0007e376 _BrMaterialRemoveMany 0047f376 brfwmxr:regsupt.obj - 0001:0007e3ba _BrMaterialFindMany 0047f3ba brfwmxr:regsupt.obj - 0001:0007e3d9 _BrMaterialCount 0047f3d9 brfwmxr:regsupt.obj - 0001:0007e3ed _BrMaterialEnum 0047f3ed brfwmxr:regsupt.obj - 0001:0007e40c _BrMapAdd 0047f40c brfwmxr:regsupt.obj - 0001:0007e420 _BrMapRemove 0047f420 brfwmxr:regsupt.obj - 0001:0007e434 _BrMapFind 0047f434 brfwmxr:regsupt.obj - 0001:0007e448 _BrMapFindHook 0047f448 brfwmxr:regsupt.obj - 0001:0007e45c _BrMapAddMany 0047f45c brfwmxr:regsupt.obj - 0001:0007e478 _BrMapRemoveMany 0047f478 brfwmxr:regsupt.obj - 0001:0007e494 _BrMapFindMany 0047f494 brfwmxr:regsupt.obj - 0001:0007e4b3 _BrMapCount 0047f4b3 brfwmxr:regsupt.obj - 0001:0007e4c7 _BrMapEnum 0047f4c7 brfwmxr:regsupt.obj - 0001:0007e4e6 _BrTableAdd 0047f4e6 brfwmxr:regsupt.obj - 0001:0007e4fa _BrTableRemove 0047f4fa brfwmxr:regsupt.obj - 0001:0007e50e _BrTableFind 0047f50e brfwmxr:regsupt.obj - 0001:0007e522 _BrTableFindHook 0047f522 brfwmxr:regsupt.obj - 0001:0007e536 _BrTableAddMany 0047f536 brfwmxr:regsupt.obj - 0001:0007e552 _BrTableRemoveMany 0047f552 brfwmxr:regsupt.obj - 0001:0007e56e _BrTableFindMany 0047f56e brfwmxr:regsupt.obj - 0001:0007e58d _BrTableCount 0047f58d brfwmxr:regsupt.obj - 0001:0007e5a1 _BrTableEnum 0047f5a1 brfwmxr:regsupt.obj - 0001:0007e5c0 _BrResClassAdd 0047f5c0 brfwmxr:regsupt.obj - 0001:0007e5f3 _BrResClassRemove 0047f5f3 brfwmxr:regsupt.obj - 0001:0007e623 _BrResClassFind 0047f623 brfwmxr:regsupt.obj - 0001:0007e637 _BrResClassFindHook 0047f637 brfwmxr:regsupt.obj - 0001:0007e64b _BrResClassAddMany 0047f64b brfwmxr:regsupt.obj - 0001:0007e69e _BrResClassRemoveMany 0047f69e brfwmxr:regsupt.obj - 0001:0007e6f6 _BrResClassFindMany 0047f6f6 brfwmxr:regsupt.obj - 0001:0007e715 _BrResClassCount 0047f715 brfwmxr:regsupt.obj - 0001:0007e729 _BrResClassEnum 0047f729 brfwmxr:regsupt.obj - 0001:0007e75c _BrModelApplyMap 0047f75c brfwmxr:regsupt.obj - 0001:0007e928 _BrModelFitMap 0047f928 brfwmxr:regsupt.obj - 0001:0007eaf8 _BrModelFree 0047faf8 brfwmxr:regsupt.obj - 0001:0007eb0c _BrModelAllocate 0047fb0c brfwmxr:regsupt.obj - 0001:0007eb88 _BrMaterialAllocate 0047fb88 brfwmxr:regsupt.obj - 0001:0007ebdc _BrMaterialFree 0047fbdc brfwmxr:regsupt.obj - 0001:0007f250 _BrImageFind 00480250 brfwmxr:loader.obj - 0001:0007f287 _BrImageReference 00480287 brfwmxr:loader.obj - 0001:0007f2ea _BrImageLookupName 004802ea brfwmxr:loader.obj - 0001:0007f39a _BrImageLookupOrdinal 0048039a brfwmxr:loader.obj - 0001:0007f3c6 _BrImageDereference 004803c6 brfwmxr:loader.obj - 0001:0007f3f6 _BrImageFree 004803f6 brfwmxr:loader.obj - 0001:0007f441 __BrImageFree 00480441 brfwmxr:loader.obj - 0001:0007f470 __BrPmMemFill 00480470 brfwmxr:pmmemops.obj - 0001:0007f53f __BrPmMemRectangleCopyTo 0048053f brfwmxr:pmmemops.obj - 0001:0007f62f __BrPmMemRectangleCopyFrom 0048062f brfwmxr:pmmemops.obj - 0001:0007f70f __BrPmMemRectangleFill 0048070f brfwmxr:pmmemops.obj - 0001:0007f783 __BrPmMemDirtyRectangleCopy 00480783 brfwmxr:pmmemops.obj - 0001:0007f7c3 __BrPmMemDirtyRectangleFill 004807c3 brfwmxr:pmmemops.obj - 0001:0007f7ff __BrPmMemCopy 004807ff brfwmxr:pmmemops.obj - 0001:0007f98a __BrPmMemPixelSet 0048098a brfwmxr:pmmemops.obj - 0001:0007f9f2 __BrPmMemPixelGet 004809f2 brfwmxr:pmmemops.obj - 0001:0007fa56 __BrPmMemLine 00480a56 brfwmxr:pmmemops.obj - 0001:0008112e __BrPmMemCopyBits 0048212e brfwmxr:pmmemops.obj - 0001:000811b4 __MemCopyBits_A 004821b4 brfwmxr:memloops.obj - 0001:000815a4 __MemFill_A 004825a4 brfwmxr:memloops.obj - 0001:00081688 __MemRectFill_A 00482688 brfwmxr:memloops.obj - 0001:000817b1 __MemRectCopy_A 004827b1 brfwmxr:memloops.obj - 0001:00081809 __MemCopy_A 00482809 brfwmxr:memloops.obj - 0001:0008184e __MemPixelSet 0048284e brfwmxr:memloops.obj - 0001:000818ab __MemPixelGet 004828ab f brfwmxr:memloops.obj - 0001:00081907 __GetSysQual 00482907 brfwmxr:memloops.obj - 0001:00081910 __BrFileFree 00482910 brfwmxr:file.obj - 0001:0008192c _BrFileAttributes 0048292c brfwmxr:file.obj - 0001:0008193c _BrFileOpenRead 0048293c brfwmxr:file.obj - 0001:000819a8 _BrFileOpenWrite 004829a8 brfwmxr:file.obj - 0001:00081a08 _BrFileClose 00482a08 brfwmxr:file.obj - 0001:00081a24 _BrFileEof 00482a24 brfwmxr:file.obj - 0001:00081a40 _BrFileGetChar 00482a40 brfwmxr:file.obj - 0001:00081a5c _BrFilePutChar 00482a5c brfwmxr:file.obj - 0001:00081a7c _BrFileRead 00482a7c brfwmxr:file.obj - 0001:00081aa8 _BrFileWrite 00482aa8 brfwmxr:file.obj - 0001:00081ad4 _BrFileGetLine 00482ad4 brfwmxr:file.obj - 0001:00081afb _BrFilePutLine 00482afb brfwmxr:file.obj - 0001:00081b1b _BrFileAdvance 00482b1b brfwmxr:file.obj - 0001:00081b3b _BrFilePrintf 00482b3b brfwmxr:file.obj - 0001:00081b80 _BrEulerToMatrix34 00482b80 brfwmxr:angles.obj - 0001:00081ea4 _BrMatrix34ToEuler 00482ea4 brfwmxr:angles.obj - 0001:00082103 _BrEulerToMatrix4 00483103 brfwmxr:angles.obj - 0001:00082133 _BrMatrix4ToEuler 00483133 brfwmxr:angles.obj - 0001:00082162 _BrEulerToQuat 00483162 brfwmxr:angles.obj - 0001:000823e6 _BrQuatToEuler 004833e6 brfwmxr:angles.obj - 0001:00082420 _BrQuatMul 00483420 brfwmxr:quat.obj - 0001:00082540 _BrQuatNormalise 00483540 brfwmxr:quat.obj - 0001:000825b8 _BrQuatInvert 004835b8 brfwmxr:quat.obj - 0001:000825e8 _BrQuatSlerp 004835e8 brfwmxr:quat.obj - 0001:000827b8 _BrQuatToMatrix34 004837b8 brfwmxr:quat.obj - 0001:000828e3 _BrMatrix34ToQuat 004838e3 brfwmxr:quat.obj - 0001:00082aaf _BrQuatToMatrix4 00483aaf brfwmxr:quat.obj - 0001:00082adf _BrMatrix4ToQuat 00483adf brfwmxr:quat.obj - 0001:00082b10 _BrMemAllocate 00483b10 brfwmxr:mem.obj - 0001:00082b43 _BrMemFree 00483b43 brfwmxr:mem.obj - 0001:00082b5b _BrMemInquire 00483b5b brfwmxr:mem.obj - 0001:00082b73 _BrMemCalloc 00483b73 brfwmxr:mem.obj - 0001:00082baa _BrMemStrDup 00483baa brfwmxr:mem.obj - 0001:00082bf0 _BrMaterialUpdate 00483bf0 brfwmxr:prepmatl.obj - 0001:00083819 PrepareVertices_ 00484819 brfwmxr:prepmesh.obj - 0001:00083d21 PrepareVerticesFast_ 00484d21 brfwmxr:prepmesh.obj - 0001:00084059 PrepareEdges_ 00485059 brfwmxr:prepmesh.obj - 0001:00084238 _BrModelUpdate 00485238 brfwmxr:prepmesh.obj - 0001:00084470 __BrGenericLine 00485470 brfwmxr:pmgenops.obj - 0001:000852ec __BrGenericDoubleBuffer 004862ec brfwmxr:pmgenops.obj - 0001:00085308 __BrGenericMatch 00486308 brfwmxr:pmgenops.obj - 0001:000853ec __BrGenericClone 004863ec brfwmxr:pmgenops.obj - 0001:00085438 __BrGenericFree 00486438 brfwmxr:pmgenops.obj - 0001:0008544c __BrGenericDirtyRectangleCopy 0048644c brfwmxr:pmgenops.obj - 0001:00085488 __BrGenericDirtyRectangleFill 00486488 brfwmxr:pmgenops.obj - 0001:000854c0 __BrGenericRectangle 004864c0 brfwmxr:pmgenops.obj - 0001:00085560 __BrGenericRectangle2 00486560 brfwmxr:pmgenops.obj - 0001:000855f8 __BrGenericRectangleCopy 004865f8 brfwmxr:pmgenops.obj - 0001:000855ff __BrGenericCopy 004865ff brfwmxr:pmgenops.obj - 0001:00085610 _BrPixelmapAllocate 00486610 brfwmxr:pixelmap.obj - 0001:00085728 _BrPixelmapAllocateSub 00486728 brfwmxr:pixelmap.obj - 0001:000857f0 _BrPixelmapFileSize 004867f0 brfwmxr:pixelmap.obj - 0001:00085807 _BrPixelmapPixelSize 00486807 brfwmxr:pixelmap.obj - 0001:0008581e _BrPixelmapChannels 0048681e brfwmxr:pixelmap.obj - 0001:00085840 _BrFixedSqrt 00486840 brfwmxr:fixed.obj - 0001:00085874 _BrFixedPow 00486874 brfwmxr:fixed.obj - 0001:000858c0 _BrScratchAllocate 004868c0 brfwmxr:scratch.obj - 0001:0008593c _BrScratchFree 0048693c brfwmxr:scratch.obj - 0001:0008594b _BrScratchFlush 0048694b brfwmxr:scratch.obj - 0001:0008598f _BrScratchInquire 0048698f brfwmxr:scratch.obj - 0001:000859a0 _BrQsort 004869a0 brfwmxr:brqsort.obj - 0001:00085bb0 __CHP 00486bb0 f brfwmxr:magicsym.obj - 0001:00085bd0 _BrPixelmapFree 00486bd0 brfwmxr:pmdsptch.obj - 0001:00085bf8 _BrPixelmapMatch 00486bf8 brfwmxr:pmdsptch.obj - 0001:00085c27 _BrPixelmapClone 00486c27 brfwmxr:pmdsptch.obj - 0001:00085c4f _BrPixelmapFill 00486c4f brfwmxr:pmdsptch.obj - 0001:00085c7b _BrPixelmapRectangle 00486c7b brfwmxr:pmdsptch.obj - 0001:00085cd3 _BrPixelmapRectangle2 00486cd3 brfwmxr:pmdsptch.obj - 0001:00085d2b _BrPixelmapRectangleCopy 00486d2b brfwmxr:pmdsptch.obj - 0001:00086086 _BrPixelmapRectangleFill 00487086 brfwmxr:pmdsptch.obj - 0001:000861ba _BrPixelmapDirtyRectangleCopy 004871ba brfwmxr:pmdsptch.obj - 0001:000862f1 _BrPixelmapDirtyRectangleClear 004872f1 brfwmxr:pmdsptch.obj - 0001:00086425 _BrPixelmapPixelSet 00487425 brfwmxr:pmdsptch.obj - 0001:0008649d _BrPixelmapPixelGet 0048749d brfwmxr:pmdsptch.obj - 0001:00086520 _BrPixelmapCopy 00487520 brfwmxr:pmdsptch.obj - 0001:000865a0 _BrPixelmapLine 004875a0 brfwmxr:pmdsptch.obj - 0001:0008685c _BrPixelmapDoubleBuffer 0048785c brfwmxr:pmdsptch.obj - 0001:00086888 _BrPixelmapText 00487888 brfwmxr:pmdsptch.obj - 0001:00086b23 _BrPixelmapTextF 00487b23 brfwmxr:pmdsptch.obj - 0001:00086b6b _BrPixelmapTextWidth 00487b6b brfwmxr:pmdsptch.obj - 0001:00086beb _BrPixelmapTextHeight 00487beb brfwmxr:pmdsptch.obj - 0001:00086c13 _BrPixelmapCopyBits 00487c13 brfwmxr:pmdsptch.obj - 0001:00086d80 _BrZbModelRender 00487d80 brzbmxr:zbrendr.obj - 0001:000872e0 _BrZbSceneRenderBegin 004882e0 brzbmxr:zbrendr.obj - 0001:00087520 _BrZbSceneRenderAdd 00488520 brzbmxr:zbrendr.obj - 0001:00087540 _BrZbSceneRenderEnd 00488540 brzbmxr:zbrendr.obj - 0001:0008754f _BrZbSceneRender 0048854f brzbmxr:zbrendr.obj - 0001:0008759a _BrZbSetRenderBoundsCallback 0048859a brzbmxr:zbrendr.obj - 0001:000875b0 _BrZbBegin 004885b0 brzbmxr:zbsetup.obj - 0001:00087663 _BrZbEnd 00488663 brzbmxr:zbsetup.obj - 0001:00087687 _TriangleRender_Null 00488687 brzbmxr:zbsetup.obj - 0001:0008768e _LineRender_Null 0048868e brzbmxr:zbsetup.obj - 0001:00087695 _PointRender_Null 00488695 brzbmxr:zbsetup.obj - 0001:000876e0 ZbFindVisibleFaces_ 004886e0 brzbmxr:zbmesh.obj - 0001:00087a2b ZbFindVisibleFacesPar_ 00488a2b brzbmxr:zbmesh.obj - 0001:00087d6f ZbTransformVertices_ 00488d6f brzbmxr:zbmesh.obj - 0001:00088423 _ZbRenderFaceGroup 00489423 brzbmxr:zbmesh.obj - 0001:000886d7 _ZbRenderFaceGroup_FaceI 004896d7 brzbmxr:zbmesh.obj - 0001:000889b3 _ZbRenderFaceGroup_FaceIV 004899b3 brzbmxr:zbmesh.obj - 0001:00088d23 _ZbRenderFaceGroup_FaceRGB 00489d23 brzbmxr:zbmesh.obj - 0001:00089fde ZbMeshRender_ 0048afde brzbmxr:zbmesh.obj - 0001:0008a29a ZbScratchShrink_ 0048b29a brzbmxr:zbmesh.obj - 0001:0008a2a0 _PointRenderPFZ2 0048b2a0 brzbmxr:zbmeshp.obj - 0001:0008a358 _PointRenderPFZ4 0048b358 brzbmxr:zbmeshp.obj - 0001:0008a734 ZbMeshRenderPoints_ 0048b734 brzbmxr:zbmeshp.obj - 0001:0008aae4 ZbBoundingBoxRenderPoints_ 0048bae4 brzbmxr:bbox.obj - 0001:0008ab10 ZbBoundingBoxRenderEdges_ 0048bb10 brzbmxr:bbox.obj - 0001:0008ab3c ZbBoundingBoxRenderFaces_ 0048bb3c brzbmxr:bbox.obj - 0001:0008ab70 _LineRenderPFZ2I555 0048bb70 brzbmxr:zbmeshe.obj - 0001:0008afff _LineRenderPFZ2I888 0048bfff brzbmxr:zbmeshe.obj - 0001:0008b48b _LineRenderPFZ2I 0048c48b brzbmxr:zbmeshe.obj - 0001:0008b7ff _LineRenderPFZ4I 0048c7ff brzbmxr:zbmeshe.obj - 0001:0008c81a ZbMeshRenderEdges_ 0048d81a brzbmxr:zbmeshe.obj - 0001:0008cac0 _TriangleRenderPIZ2TIP256 0048dac0 brzbmxr:persp.obj - 0001:0008dc46 _TriangleRenderPIZ2TP256 0048ec46 brzbmxr:persp.obj - 0001:0008ec90 _TriangleRenderPIZ2TIP64 0048fc90 brzbmxr:persp.obj - 0001:0008fe9a _TriangleRenderPIZ2TP64 00490e9a brzbmxr:persp.obj - 0001:00090f77 _TriangleRenderPIZ2TP1024 00491f77 brzbmxr:persp.obj - 0001:00092080 _TriangleRenderPIZ2_RGB_888 00493080 brzbmxr:tt24_piz.obj - 0001:000920a1 _RawTriangle_PIZ2_RGB_888 004930a1 f brzbmxr:tt24_piz.obj - 0001:00092750 _TriangleRenderPIZ2I_RGB_888 00493750 brzbmxr:tt24_piz.obj - 0001:00092771 _RawTriangle_PIZ2I_RGB_888 00493771 brzbmxr:tt24_piz.obj - 0001:00093430 _TriangleRenderPIZ2TIA 00494430 brzbmxr:awtm.obj - 0001:00093cf8 _TriangleRenderPIZ2TA 00494cf8 brzbmxr:awtm.obj - 0001:00094528 _TriangleRenderPIZ2TA24 00495528 brzbmxr:awtm.obj - 0001:00094da4 _TriangleRenderPIZ2TA15 00495da4 brzbmxr:awtm.obj - 0001:000955f0 _TriangleRenderPIZ2_RGB_555 004965f0 brzbmxr:tt15_piz.obj - 0001:00095611 _RawTriangle_PIZ2_RGB_555 00496611 brzbmxr:tt15_piz.obj - 0001:00095c90 _TriangleRenderPIZ2I_RGB_555 00496c90 f brzbmxr:tt15_piz.obj - 0001:00095cb1 _RawTriangle_PIZ2I_RGB_555 00496cb1 brzbmxr:tt15_piz.obj - 0001:00096a1c _TriangleRenderPIZ2 00497a1c brzbmxr:ti8_piz.obj - 0001:00096a3d _RawTriangle_PIZ2 00497a3d brzbmxr:ti8_piz.obj - 0001:00096fe6 _TriangleRenderPIZ2I 00497fe6 brzbmxr:ti8_piz.obj - 0001:00097007 _RawTriangle_PIZ2I 00498007 brzbmxr:ti8_piz.obj - 0001:000977c6 _TriangleRenderPIZ2T 004987c6 brzbmxr:ti8_piz.obj - 0001:000977e7 _RawTriangle_PIZ2T 004987e7 brzbmxr:ti8_piz.obj - 0001:000982e0 _TriangleRenderPIZ2TI 004992e0 brzbmxr:ti8_piz.obj - 0001:00098301 _RawTriangle_PIZ2TI 00499301 f brzbmxr:ti8_piz.obj - 0001:000990b0 ZbMaterialUpdate_ 0049a0b0 brzbmxr:zbmatl.obj - 0001:00099220 _TriangleRenderPIZ2TAD 0049a220 brzbmxr:decal.obj - 0001:00099264 _TriangleRenderPIZ2TIAD 0049a264 brzbmxr:decal.obj - 0001:00099398 _OSFFVGroupCulled_A 0049a398 brzbmxr:mesh386.obj - 0001:00099459 _OSFFVGroupCulledLit_A 0049a459 brzbmxr:mesh386.obj - 0001:00099541 _OSCopyModelToScreen_A 0049a541 brzbmxr:mesh386.obj - 0001:0009962a _OSTVGroup_A 0049a62a f brzbmxr:mesh386.obj - 0001:00099749 _OSTVGroupBC_A 0049a749 brzbmxr:mesh386.obj - 0001:0009989c _OSTVGroupLit_A 0049a89c brzbmxr:mesh386.obj - 0001:000999ce _OSTVGroupLitBC_A 0049a9ce brzbmxr:mesh386.obj - 0001:0009a2c6 ZbFaceClip_ 0049b2c6 brzbmxr:zbclip.obj - 0001:0009a4ce ZbTempClip_ 0049b4ce brzbmxr:zbclip.obj - 0001:0009a6bc _ScanLinePIZ2TIP256 0049b6bc brzbmxr:pscan.obj - 0001:0009aa4a _ScanLinePIZ2TIP64 0049ba4a f brzbmxr:pscan.obj - 0001:0009adf2 _ScanLinePIZ2TP256 0049bdf2 brzbmxr:pscan.obj - 0001:0009b108 _ScanLinePIZ2TP64 0049c108 brzbmxr:pscan.obj - 0001:0009b438 _ScanLinePIZ2TP1024 0049c438 brzbmxr:pscan.obj - 0001:0009b77c _SafeFixedMac2Div 0049c77c f brzbmxr:safediv.obj - 0001:0009b7d0 _TrapezoidRenderPIZ2TA 0049c7d0 brzbmxr:piz2tia.obj - 0001:0009bb51 _TrapezoidRenderPIZ2TIA 0049cb51 brzbmxr:piz2tia.obj - 0001:0009bf59 _TrapezoidRenderPIZ2TA15 0049cf59 f brzbmxr:piz2tia.obj - 0001:0009c304 _TrapezoidRenderPIZ2TA24 0049d304 brzbmxr:piz2tia.obj - 0001:0009c6e0 ?FWouldBe@MVIE@@SGHJ@Z 0049d6e0 f engine:movie.obj - 0001:0009c700 ?FIs@MVIE@@UAEHJ@Z 0049d700 f engine:movie.obj - 0001:0009c710 ?Cls@MVIE@@UAEJXZ 0049d710 f engine:movie.obj - 0001:0009c720 ?FWouldBe@MUNB@@SGHJ@Z 0049d720 f engine:movie.obj - 0001:0009c740 ?FIs@MUNB@@UAEHJ@Z 0049d740 f engine:movie.obj - 0001:0009c750 ?Cls@MUNB@@UAEJXZ 0049d750 f engine:movie.obj - 0001:0009c760 ?FWouldBe@MUNS@@SGHJ@Z 0049d760 f engine:movie.obj - 0001:0009c780 ?FIs@MUNS@@UAEHJ@Z 0049d780 f engine:movie.obj - 0001:0009c790 ?Cls@MUNS@@UAEJXZ 0049d790 f engine:movie.obj - 0001:0009c7a0 ??0MVIE@@AAE@XZ 0049d7a0 f engine:movie.obj - 0001:0009c800 ?_FSetPfilSave@MVIE@@AAEHPAVFNI@@@Z 0049d800 f engine:movie.obj - 0001:0009c8b0 ?PmvieNew@MVIE@@SGPAV1@HPAVMCC@@PAVFNI@@K@Z 0049d8b0 f engine:movie.obj - 0001:0009cb70 ?FReadRollCall@MVIE@@SGHPAVCRF@@KPAPAVGST@@PAJ@Z 0049db70 f engine:movie.obj - 0001:0009cc90 ?Flush@MVIE@@QAEXXZ 0049dc90 f engine:movie.obj - 0001:0009ccb0 ?_DoSndGarbageCollection@MVIE@@AAEXH@Z 0049dcb0 f engine:movie.obj - 0001:0009cd80 ??1MVIE@@UAE@XZ 0049dd80 f engine:movie.obj - 0001:0009cf00 ?_PtaglFetch@MVIE@@AAEPAVTAGL@@XZ 0049df00 f engine:movie.obj - 0001:0009cf80 ?FGetArid@MVIE@@QAEHJPAJPAVSTN@@0PAUTAG@@@Z 0049df80 f engine:movie.obj - 0001:0009d010 ?FChooseArid@MVIE@@QAEHJ@Z 0049e010 f engine:movie.obj - 0001:0009d190 ?FGetName@MVIE@@QAEHJPAVSTN@@@Z 0049e190 f engine:movie.obj - 0001:0009d200 ?FNameActr@MVIE@@QAEHJPAVSTN@@@Z 0049e200 f engine:movie.obj - 0001:0009d280 ?FIsPropBrwsIarid@MVIE@@QAEHJ@Z 0049e280 f engine:movie.obj - 0001:0009d2b0 ?FIsIaridTdt@MVIE@@QAEHJ@Z 0049e2b0 f engine:movie.obj - 0001:0009d2e0 ?FAddToRollCall@MVIE@@QAEHPAVACTR@@PAVSTN@@@Z 0049e2e0 f engine:movie.obj - 0001:0009d480 ?RemFromRollCall@MVIE@@QAEXPAVACTR@@H@Z 0049e480 f engine:movie.obj - 0001:0009d530 ?FSwitchScen@MVIE@@QAEHJ@Z 0049e530 f engine:movie.obj - 0001:0009d6e0 ?FNewScenInsCore@MVIE@@QAEHJ@Z 0049e6e0 f engine:movie.obj - 0001:0009d740 ?_MoveChids@MVIE@@AAEXKH@Z 0049e740 f engine:movie.obj - 0001:0009d810 ?_FIsChild@MVIE@@AAEHPAVCFL@@KK@Z 0049e810 f engine:movie.obj - 0001:0009d890 ?_FAdoptMsndInMvie@MVIE@@QAEHPAVCFL@@K@Z 0049e890 f engine:movie.obj - 0001:0009d940 ?FResolveSndTag@MVIE@@QAEHPAUTAG@@KKPAVCRF@@@Z 0049e940 f engine:movie.obj - 0001:0009da50 ?FChidFromUserSndCno@MVIE@@QAEHKPAK@Z 0049ea50 f engine:movie.obj - 0001:0009db50 ?FCopySndFileToMvie@MVIE@@QAEHPAVFIL@@JPAKPAVSTN@@@Z 0049eb50 f engine:movie.obj - 0001:0009dca0 ?FCopyMsndFromPcfl@MVIE@@QAEHPAVCFL@@KPAK@Z 0049eca0 f engine:movie.obj - 0001:0009dda0 ?_ChidScenNewSnd@MVIE@@AAEKXZ 0049eda0 f engine:movie.obj - 0001:0009de30 ?_ChidMvieNewSnd@MVIE@@AAEKXZ 0049ee30 f engine:movie.obj - 0001:0009de90 ?FVerifyVersion@MVIE@@QAEHPAVCFL@@PAK@Z 0049ee90 f engine:movie.obj - 0001:0009dfe0 ?FRemScenCore@MVIE@@QAEHJ@Z 0049efe0 f engine:movie.obj - 0001:0009e130 ?FRemScen@MVIE@@QAEHJ@Z 0049f130 f engine:movie.obj - 0001:0009e290 ?FEnsureAutosave@MVIE@@QAEHPAPAVCRF@@@Z 0049f290 f engine:movie.obj - 0001:0009e2c0 ?FInsTdt@MVIE@@QAEHPAVSTN@@JPAUTAG@@@Z 0049f2c0 f engine:movie.obj - 0001:0009e3c0 ?FChangeActrTdt@MVIE@@QAEHPAVACTR@@PAVSTN@@JPAUTAG@@@Z 0049f3c0 f engine:movie.obj - 0001:0009e5c0 ?_FCloseCurrentScene@MVIE@@AAEHXZ 0049f5c0 f engine:movie.obj - 0001:0009e600 ?_FUseTempFile@MVIE@@AAEHXZ 0049f600 f engine:movie.obj - 0001:0009e730 ?_FMakeCrfValid@MVIE@@AAEHXZ 0049f730 f engine:movie.obj - 0001:0009e800 ?FAutoSave@MVIE@@QAEHPAVFNI@@H@Z 0049f800 f engine:movie.obj - 0001:0009ed60 ?_FDoGarbageCollection@MVIE@@AAEHPAVCFL@@@Z 0049fd60 f engine:movie.obj - 0001:0009edd0 ?_FDoMtrlTmplGC@MVIE@@AAEHPAVCFL@@@Z 0049fdd0 f engine:movie.obj - 0001:0009ef80 ?FGetFni@MVIE@@UAEHPAVFNI@@@Z 0049ff80 f engine:movie.obj - 0001:0009efc0 ?FSave@MVIE@@UAEHJ@Z 0049ffc0 f engine:movie.obj - 0001:0009efe0 ?FSaveToFni@MVIE@@UAEHPAVFNI@@H@Z 0049ffe0 f engine:movie.obj - 0001:0009f070 ?FGetFniSave@MVIE@@UAEHPAVFNI@@@Z 004a0070 f engine:movie.obj - 0001:0009f0a0 ?PddgNew@MVIE@@UAEPAVDDG@@PAUGCB@@@Z 004a00a0 f engine:movie.obj - 0001:0009f0d0 ?PdmdNew@MVIE@@UAEPAVDMD@@XZ 004a00d0 f engine:movie.obj - 0001:0009f0e0 ?FAddUndo@MVIE@@QAEHPAVMUNB@@@Z 004a00e0 f engine:movie.obj - 0001:0009f140 ?ClearUndo@MVIE@@UAEXXZ 004a0140 f engine:movie.obj - 0001:0009f160 ?FInsTbox@MVIE@@QAEHPAVRC@@H@Z 004a0160 f engine:movie.obj - 0001:0009f1e0 ?FHideTbox@MVIE@@QAEHXZ 004a01e0 f engine:movie.obj - 0001:0009f210 ?SetPaintAcr@MVIE@@QAEXVACR@@@Z 004a0210 f engine:movie.obj - 0001:0009f230 ?SetDypFontTextCur@MVIE@@QAEXJ@Z 004a0230 f engine:movie.obj - 0001:0009f250 ?SetStyleTextCur@MVIE@@QAEXK@Z 004a0250 f engine:movie.obj - 0001:0009f270 ?SetOnnTextCur@MVIE@@QAEXJ@Z 004a0270 f engine:movie.obj - 0001:0009f290 ?PmvuCur@MVIE@@QAEPAVMVU@@XZ 004a0290 f engine:movie.obj - 0001:0009f2a0 ?PmvuFirst@MVIE@@QAEPAVMVU@@XZ 004a02a0 f engine:movie.obj - 0001:0009f2b0 ?FInsActr@MVIE@@QAEHPAUTAG@@@Z 004a02b0 f engine:movie.obj - 0001:0009f360 ?FRemActr@MVIE@@QAEHXZ 004a0360 f engine:movie.obj - 0001:0009f3b0 ?FRotateActr@MVIE@@QAEHGGGH@Z 004a03b0 f engine:movie.obj - 0001:0009f400 ?FSquashStretchActr@MVIE@@QAEHJ@Z 004a0400 f engine:movie.obj - 0001:0009f530 ?FSoonerLaterActr@MVIE@@QAEHJ@Z 004a0530 f engine:movie.obj - 0001:0009f5c0 ?FScaleActr@MVIE@@QAEHJ@Z 004a05c0 f engine:movie.obj - 0001:0009f600 ?FAddBkgdSnd@MVIE@@QAEHPAUTAG@@HHJJ@Z 004a0600 f engine:movie.obj - 0001:0009f680 ?FAddActrSnd@MVIE@@QAEHPAUTAG@@HHHJJ@Z 004a0680 f engine:movie.obj - 0001:0009f6c0 ?FInsScenCore@MVIE@@QAEHJPAVSCEN@@@Z 004a06c0 f engine:movie.obj - 0001:0009f850 ?FAddScen@MVIE@@QAEHPAUTAG@@@Z 004a0850 f engine:movie.obj - 0001:0009f9f0 ?Play@MVIE@@QAEXXZ 004a09f0 f engine:movie.obj - 0001:0009fcb0 ?FCmdAlarm@MVIE@@QAEHPAUCMD@@@Z 004a0cb0 f engine:movie.obj - 0001:0009fee0 ?FCmdRender@MVIE@@QAEHPAUCMD@@@Z 004a0ee0 f engine:movie.obj - 0001:000a04a0 ?FCostumeActr@MVIE@@QAEHJPAUTAG@@JH@Z 004a14a0 f engine:movie.obj - 0001:000a04f0 ?FPause@MVIE@@QAEHW4WIT@@J@Z 004a14f0 f engine:movie.obj - 0001:000a0530 ?FAddToCmvi@MVIE@@QAEHPAU_cmvi@@PAJ@Z 004a1530 f engine:movie.obj - 0001:000a0800 ?FSetCmvi@MVIE@@QAEHPAU_cmvi@@@Z 004a1800 f engine:movie.obj - 0001:000a0c10 ?Pcmm@MVIE@@MAEPAUCMM@CMH@@XZ 004a1c10 f engine:movie.obj - 0001:000a0c20 ?_FAddMvieToRollCall@MVIE@@QAEHKJ@Z 004a1c20 f engine:movie.obj - 0001:000a0f20 ?FDirty@MVIE@@UAEHXZ 004a1f20 f engine:movie.obj - 0001:000a0f40 ?SetDirty@MVIE@@UAEXH@Z 004a1f40 f engine:movie.obj - 0001:000a0f60 ?Empty@_cmvi@@QAEXXZ 004a1f60 f engine:movie.obj - 0001:000a1010 ?_FInsertScend@MVIE@@QAEHPAVGL@@JPAU_scend@@@Z 004a2010 f engine:movie.obj - 0001:000a1050 ?_DeleteScend@MVIE@@QAEXPAVGL@@J@Z 004a2050 f engine:movie.obj - 0001:000a1090 ?FPasteActr@MVIE@@QAEHPAVACTR@@@Z 004a2090 f engine:movie.obj - 0001:000a1100 ?FPasteActrPath@MVIE@@QAEHPAVACTR@@@Z 004a2100 f engine:movie.obj - 0001:000a1200 ?InvalViews@MVIE@@QAEXXZ 004a2200 f engine:movie.obj - 0001:000a1240 ?InvalViewsAndScb@MVIE@@QAEXXZ 004a2240 f engine:movie.obj - 0001:000a1260 ?MarkViews@MVIE@@QAEXXZ 004a2260 f engine:movie.obj - 0001:000a12a0 ?GetName@MVIE@@UAEXPAVSTN@@@Z 004a22a0 f engine:movie.obj - 0001:000a12b0 ?ResetTitle@MVIE@@QAEXXZ 004a22b0 f engine:movie.obj - 0001:000a1300 ?BuildActionMenu@MVIE@@QAEXXZ 004a2300 f engine:movie.obj - 0001:000a1340 ?DoTrans@MVIE@@QAEXPAVGNV@@0PAVRC@@1@Z 004a2340 f engine:movie.obj - 0001:000a14e0 ?LwQueryExists@MVIE@@QAEJJJ@Z 004a24e0 f engine:movie.obj - 0001:000a1520 ?LwQueryLocation@MVIE@@QAEJJJ@Z 004a2520 f engine:movie.obj - 0001:000a16c0 ?LwSetMoviePos@MVIE@@QAEJJJ@Z 004a26c0 f engine:movie.obj - 0001:000a1710 ?FUnusedSndsUser@MVIE@@QAEHPAH@Z 004a2710 f engine:movie.obj - 0001:000a17d0 ?_SetTitle@MVIE@@AAEXPAVFNI@@@Z 004a27d0 f engine:movie.obj - 0001:000a1870 ?FWouldBe@MVU@@SGHJ@Z 004a2870 f engine:movie.obj - 0001:000a1890 ?FIs@MVU@@UAEHJ@Z 004a2890 f engine:movie.obj - 0001:000a18a0 ?Cls@MVU@@UAEJXZ 004a28a0 f engine:movie.obj - 0001:000a18b0 ??1MVU@@UAE@XZ 004a28b0 f engine:movie.obj - 0001:000a18e0 ?Pcmm@MVU@@MAEPAUCMM@CMH@@XZ 004a28e0 f engine:movie.obj - 0001:000a18f0 ?PmvuNew@MVU@@SGPAV1@PAVMVIE@@PAUGCB@@JJ@Z 004a28f0 f engine:movie.obj - 0001:000a19e0 ?SetTool@MVU@@QAEXJ@Z 004a29e0 f engine:movie.obj - 0001:000a1d30 ?SetTagTool@MVU@@QAEXPAUTAG@@@Z 004a2d30 f engine:movie.obj - 0001:000a1d70 ?Draw@MVU@@UAEXPAVGNV@@PAVRC@@@Z 004a2d70 f engine:movie.obj - 0001:000a1eb0 ?WarpCursToCenter@MVU@@QAEXXZ 004a2eb0 f engine:movie.obj - 0001:000a1f20 ?WarpCursToActor@MVU@@QAEXPAVACTR@@@Z 004a2f20 f engine:movie.obj - 0001:000a1f70 ?AdjustCursor@MVU@@QAEXJJ@Z 004a2f70 f engine:movie.obj - 0001:000a1fe0 ?MouseToWorld@MVU@@QAEXJJJPAJ00H@Z 004a2fe0 f engine:movie.obj - 0001:000a2130 ?SlowKeyboardRepeat@MVU@@SGXXZ 004a3130 f engine:movie.obj - 0001:000a2190 ?RestoreKeyboardRepeat@MVU@@SGXXZ 004a3190 f engine:movie.obj - 0001:000a21d0 ?StartPlaceActor@MVU@@QAEXH@Z 004a31d0 f engine:movie.obj - 0001:000a2290 ?EndPlaceActor@MVU@@QAEXXZ 004a3290 f engine:movie.obj - 0001:000a2300 ?FCmdMouseMove@MVU@@UAEHPAUCMD_MOUSE@@@Z 004a3300 f engine:movie.obj - 0001:000a2780 ?FCmdTrackMouse@MVU@@UAEHPAUCMD_MOUSE@@@Z 004a3780 f engine:movie.obj - 0001:000a27f0 ?_PositionActr@MVU@@IAEXJJJ@Z 004a37f0 f engine:movie.obj - 0001:000a2880 ?_ActorClicked@MVU@@IAEXPAVACTR@@H@Z 004a3880 f engine:movie.obj - 0001:000a28e0 ?_MouseDown@MVU@@IAEXPAUCMD_MOUSE@@@Z 004a38e0 f engine:movie.obj - 0001:000a30e0 ?_MouseDrag@MVU@@IAEXPAUCMD_MOUSE@@@Z 004a40e0 f engine:movie.obj - 0001:000a3a50 ?_MouseUp@MVU@@IAEXPAUCMD_MOUSE@@@Z 004a4a50 f engine:movie.obj - 0001:000a3fd0 ?FCmdClip@MVU@@UAEHPAUCMD@@@Z 004a4fd0 f engine:movie.obj - 0001:000a4270 ?FDoClip@MVU@@QAEHJ@Z 004a5270 f engine:movie.obj - 0001:000a4430 ?FCmdUndo@MVU@@UAEHPAUCMD@@@Z 004a5430 f engine:movie.obj - 0001:000a44b0 ?_FCopySel@MVU@@IAEHPAPAVDOCB@@H@Z 004a54b0 f engine:movie.obj - 0001:000a4530 ?_ClearSel@MVU@@MAEXXZ 004a5530 f engine:movie.obj - 0001:000a4610 ?_FPaste@MVU@@IAEHPAVCLIP@@@Z 004a5610 f engine:movie.obj - 0001:000a47a0 ?FCloseDoc@MVU@@UAEHHH@Z 004a57a0 f engine:movie.obj - 0001:000a48a0 ?FCmdSave@MVU@@UAEHPAUCMD@@@Z 004a58a0 f engine:movie.obj - 0001:000a48e0 ?FCmdIdle@MVU@@QAEHPAUCMD@@@Z 004a58e0 f engine:movie.obj - 0001:000a48f0 ?FCmdRollOff@MVU@@QAEHPAUCMD@@@Z 004a58f0 f engine:movie.obj - 0001:000a4960 ?PmunsNew@MUNS@@SGPAV1@XZ 004a5960 f engine:movie.obj - 0001:000a4990 ??1MUNS@@UAE@XZ 004a5990 f engine:movie.obj - 0001:000a49c0 ?FDo@MUNS@@UAEHPAVDOCB@@@Z 004a59c0 f engine:movie.obj - 0001:000a4a80 ?FUndo@MUNS@@UAEHPAVDOCB@@@Z 004a5a80 f engine:movie.obj - 0001:000a4b20 ??_EMVU@@UAEPAXI@Z 004a5b20 f engine:movie.obj - 0001:000a4b20 ??_GMVU@@UAEPAXI@Z 004a5b20 f engine:movie.obj - 0001:000a4b40 ??_EMUNS@@UAEPAXI@Z 004a5b40 f engine:movie.obj - 0001:000a4b40 ??_GMUNS@@UAEPAXI@Z 004a5b40 f engine:movie.obj - 0001:000a4b60 ??_EMVIE@@UAEPAXI@Z 004a5b60 f engine:movie.obj - 0001:000a4b60 ??_GMVIE@@UAEPAXI@Z 004a5b60 f engine:movie.obj - 0001:000a4b80 ?FWouldBe@MSND@@SGHJ@Z 004a5b80 f engine:msnd.obj - 0001:000a4ba0 ?FIs@MSND@@UAEHJ@Z 004a5ba0 f engine:msnd.obj - 0001:000a4bb0 ?Cls@MSND@@UAEJXZ 004a5bb0 f engine:msnd.obj - 0001:000a4bc0 ?FWouldBe@MSQ@@SGHJ@Z 004a5bc0 f engine:msnd.obj - 0001:000a4be0 ?FIs@MSQ@@UAEHJ@Z 004a5be0 f engine:msnd.obj - 0001:000a4bf0 ?Cls@MSQ@@UAEJXZ 004a5bf0 f engine:msnd.obj - 0001:000a4c00 ?FReadMsnd@MSND@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004a5c00 f engine:msnd.obj - 0001:000a4c90 ?FGetMsndInfo@MSND@@SGHPAVCFL@@KKPAHPAJ2@Z 004a5c90 f engine:msnd.obj - 0001:000a4d30 ?_FInit@MSND@@IAEHPAVCFL@@KK@Z 004a5d30 f engine:msnd.obj - 0001:000a4e90 ?FWriteMidi@MSND@@SGHPAVCFL@@PAVMIDS@@PAVSTN@@PAK@Z 004a5e90 f engine:msnd.obj - 0001:000a4f90 ?FWriteWave@MSND@@SGHPAVFIL@@PAVCFL@@JPAVSTN@@PAK@Z 004a5f90 f engine:msnd.obj - 0001:000a5090 ?FCopyMidi@MSND@@SGHPAVFIL@@PAVCFL@@PAKPAVSTN@@@Z 004a6090 f engine:msnd.obj - 0001:000a5180 ?FCopyWave@MSND@@SGHPAVFIL@@PAVCFL@@JPAKPAVSTN@@@Z 004a6180 f engine:msnd.obj - 0001:000a5850 ?FInvalidate@MSND@@QAEHXZ 004a6850 f engine:msnd.obj - 0001:000a5900 ??1MSND@@UAE@XZ 004a6900 f engine:msnd.obj - 0001:000a5910 ?SqnActr@MSND@@SGJJJ@Z 004a6910 f engine:msnd.obj - 0001:000a5930 ?SqnBkgd@MSND@@SGJJJ@Z 004a6930 f engine:msnd.obj - 0001:000a5950 ?Spr@MSND@@QAEJJ@Z 004a6950 f engine:msnd.obj - 0001:000a59c0 ?Play@MSND@@QAEXJHHJJHK@Z 004a69c0 f engine:msnd.obj - 0001:000a5ae0 ?PmsqNew@MSQ@@SGPAV1@XZ 004a6ae0 f engine:msnd.obj - 0001:000a5b80 ?FEnqueue@MSQ@@QAEHPAVMSND@@JHHJJHKH@Z 004a6b80 f engine:msnd.obj - 0001:000a5d00 ?PlayMsq@MSQ@@QAEXXZ 004a6d00 f engine:msnd.obj - 0001:000a5e20 ?FlushMsq@MSQ@@QAEXXZ 004a6e20 f engine:msnd.obj - 0001:000a5e70 ?FCmdAlarm@MSQ@@QAEHPAUCMD@@@Z 004a6e70 f engine:msnd.obj - 0001:000a5ec0 ??1MSQ@@UAE@XZ 004a6ec0 f engine:msnd.obj - 0001:000a5f50 ??_GMSQ@@UAEPAXI@Z 004a6f50 f engine:msnd.obj - 0001:000a5f50 ??_EMSQ@@UAEPAXI@Z 004a6f50 f engine:msnd.obj - 0001:000a5f70 ??_GMSND@@UAEPAXI@Z 004a6f70 f engine:msnd.obj - 0001:000a5f70 ??_EMSND@@UAEPAXI@Z 004a6f70 f engine:msnd.obj - 0001:000a6020 ?Pcmm@MSQ@@MAEPAUCMM@CMH@@XZ 004a7020 f engine:msnd.obj - 0001:000a60f0 ?FWouldBe@TAGM@@SGHJ@Z 004a70f0 f engine:tagman.obj - 0001:000a6110 ?FIs@TAGM@@UAEHJ@Z 004a7110 f engine:tagman.obj - 0001:000a6120 ?Cls@TAGM@@UAEJXZ 004a7120 f engine:tagman.obj - 0001:000a6130 ?PtagmNew@TAGM@@SGPAV1@PAVFNI@@P6GHPAVSTN@@@ZJ@Z 004a7130 f engine:tagman.obj - 0001:000a61d0 ??1TAGM@@UAE@XZ 004a71d0 f engine:tagman.obj - 0001:000a62a0 ?SplitString@TAGM@@QAEXPAVSTN@@00@Z 004a72a0 f engine:tagman.obj - 0001:000a6300 ?PgstSource@TAGM@@QAEPAVGST@@XZ 004a7300 f engine:tagman.obj - 0001:000a6320 ?_FFindSid@TAGM@@IAEHJPAJ@Z 004a7320 f engine:tagman.obj - 0001:000a6380 ?FMergeGstSource@TAGM@@QAEHPAVGST@@FF@Z 004a7380 f engine:tagman.obj - 0001:000a6410 ?FAddStnSource@TAGM@@QAEHPAVSTN@@J@Z 004a7410 f engine:tagman.obj - 0001:000a6450 ?FGetSid@TAGM@@QAEHPAVSTN@@PAJ@Z 004a7450 f engine:tagman.obj - 0001:000a6560 ?_FGetStnMergedOfSid@TAGM@@IAEHJPAVSTN@@@Z 004a7560 f engine:tagman.obj - 0001:000a65d0 ?_FGetStnSplitOfSid@TAGM@@IAEHJPAVSTN@@0@Z 004a75d0 f engine:tagman.obj - 0001:000a6630 ?_FBuildFniHD@TAGM@@IAEHJPAVFNI@@PAH@Z 004a7630 f engine:tagman.obj - 0001:000a6730 ?_FDetermineIfContentOnFni@TAGM@@IAEHPAVFNI@@PAH@Z 004a7730 f engine:tagman.obj - 0001:000a67f0 ?_FEnsureFniCD@TAGM@@IAEHJPAVFNI@@PAVSTN@@@Z 004a77f0 f engine:tagman.obj - 0001:000a6870 ?_FFindFniCD@TAGM@@IAEHJPAVFNI@@PAH@Z 004a7870 f engine:tagman.obj - 0001:000a6a70 ?_FRetry@TAGM@@IAEHJ@Z 004a7a70 f engine:tagman.obj - 0001:000a6ad0 ?_PcrmSourceNew@TAGM@@IAEPAVCRM@@JPAVFNI@@@Z 004a7ad0 f engine:tagman.obj - 0001:000a6bd0 ?_PcrmSourceGet@TAGM@@IAEPAVCRM@@JH@Z 004a7bd0 f engine:tagman.obj - 0001:000a6e20 ?_FDetermineIfSourceHD@TAGM@@IAEHJPAH@Z 004a7e20 f engine:tagman.obj - 0001:000a6fd0 ?_FGetFniHD@TAGM@@IAEHJPAVFNI@@@Z 004a7fd0 f engine:tagman.obj - 0001:000a7120 ?_FGetFniCD@TAGM@@IAEHJPAVFNI@@H@Z 004a8120 f engine:tagman.obj - 0001:000a7270 ?FFindFile@TAGM@@QAEHJPAVSTN@@PAVFNI@@H@Z 004a8270 f engine:tagman.obj - 0001:000a7350 ?FBuildChildTag@TAGM@@QAEHPAUTAG@@KK0@Z 004a8350 f engine:tagman.obj - 0001:000a7450 ?FCacheTagToHD@TAGM@@QAEHPAUTAG@@H@Z 004a8450 f engine:tagman.obj - 0001:000a7580 ?PbacoFetch@TAGM@@QAEPAVBACO@@PAUTAG@@P6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZH@Z 004a8580 f engine:tagman.obj - 0001:000a75e0 ?ClearCache@TAGM@@QAEXJK@Z 004a85e0 f engine:tagman.obj - 0001:000a7740 ?FOpenTag@TAGM@@SGHPAUTAG@@PAVCRF@@PAVCFL@@@Z 004a8740 f engine:tagman.obj - 0001:000a77c0 ?FSaveTag@TAGM@@SGHPAUTAG@@PAVCRF@@H@Z 004a87c0 f engine:tagman.obj - 0001:000a7850 ?DupTag@TAGM@@SGXPAUTAG@@@Z 004a8850 f engine:tagman.obj - 0001:000a7870 ?CloseTag@TAGM@@SGXPAUTAG@@@Z 004a8870 f engine:tagman.obj - 0001:000a78a0 ?FcmpCompareTags@TAGM@@SGKPAUTAG@@0@Z 004a88a0 f engine:tagman.obj - 0001:000a7950 ??_GTAGM@@UAEPAXI@Z 004a8950 f engine:tagman.obj - 0001:000a7950 ??_ETAGM@@UAEPAXI@Z 004a8950 f engine:tagman.obj - 0001:000a7ad0 ?FWouldBe@SCEN@@SGHJ@Z 004a8ad0 f engine:scene.obj - 0001:000a7af0 ?FIs@SCEN@@UAEHJ@Z 004a8af0 f engine:scene.obj - 0001:000a7b00 ?Cls@SCEN@@UAEJXZ 004a8b00 f engine:scene.obj - 0001:000a7b10 ?FWouldBe@SUNS@@SGHJ@Z 004a8b10 f engine:scene.obj - 0001:000a7b30 ?FIs@SUNS@@UAEHJ@Z 004a8b30 f engine:scene.obj - 0001:000a7b40 ?Cls@SUNS@@UAEJXZ 004a8b40 f engine:scene.obj - 0001:000a7b50 ?FWouldBe@SUNA@@SGHJ@Z 004a8b50 f engine:scene.obj - 0001:000a7b70 ?FIs@SUNA@@UAEHJ@Z 004a8b70 f engine:scene.obj - 0001:000a7b80 ?Cls@SUNA@@UAEJXZ 004a8b80 f engine:scene.obj - 0001:000a7b90 ?FWouldBe@SUNK@@SGHJ@Z 004a8b90 f engine:scene.obj - 0001:000a7bb0 ?FIs@SUNK@@UAEHJ@Z 004a8bb0 f engine:scene.obj - 0001:000a7bc0 ?Cls@SUNK@@UAEJXZ 004a8bc0 f engine:scene.obj - 0001:000a7bd0 ?FWouldBe@SUNP@@SGHJ@Z 004a8bd0 f engine:scene.obj - 0001:000a7bf0 ?FIs@SUNP@@UAEHJ@Z 004a8bf0 f engine:scene.obj - 0001:000a7c00 ?Cls@SUNP@@UAEJXZ 004a8c00 f engine:scene.obj - 0001:000a7c10 ?FWouldBe@SUNX@@SGHJ@Z 004a8c10 f engine:scene.obj - 0001:000a7c30 ?FIs@SUNX@@UAEHJ@Z 004a8c30 f engine:scene.obj - 0001:000a7c40 ?Cls@SUNX@@UAEJXZ 004a8c40 f engine:scene.obj - 0001:000a7c50 ?FWouldBe@SUNC@@SGHJ@Z 004a8c50 f engine:scene.obj - 0001:000a7c70 ?FIs@SUNC@@UAEHJ@Z 004a8c70 f engine:scene.obj - 0001:000a7c80 ?Cls@SUNC@@UAEJXZ 004a8c80 f engine:scene.obj - 0001:000a7c90 ??0SCEN@@IAE@PAVMVIE@@@Z 004a8c90 f engine:scene.obj - 0001:000a7ce0 ?PscenNew@SCEN@@SGPAV1@PAVMVIE@@@Z 004a8ce0 f engine:scene.obj - 0001:000a7da0 ??1SCEN@@MAE@XZ 004a8da0 f engine:scene.obj - 0001:000a7f50 ?Close@SCEN@@SGXPAPAV1@@Z 004a8f50 f engine:scene.obj - 0001:000a7f90 ?FGotoFrm@SCEN@@QAEHJ@Z 004a8f90 f engine:scene.obj - 0001:000a8270 ?_DoPrerenderingWork@SCEN@@IAEXH@Z 004a9270 f engine:scene.obj - 0001:000a8400 ?_EndPrerendering@SCEN@@IAEXXZ 004a9400 f engine:scene.obj - 0001:000a8470 ?FReplayFrm@SCEN@@QAEHK@Z 004a9470 f engine:scene.obj - 0001:000a8540 ?InvalFrmRange@SCEN@@QAEXXZ 004a9540 f engine:scene.obj - 0001:000a8610 ?_FPlaySev@SCEN@@IAEHPAUSEV@@PAXK@Z 004a9610 f engine:scene.obj - 0001:000a88e0 ?_FUnPlaySev@SCEN@@IAEHPAUSEV@@PAX@Z 004a98e0 f engine:scene.obj - 0001:000a8a30 ?_MoveBackFirstFrame@SCEN@@IAEXJ@Z 004a9a30 f engine:scene.obj - 0001:000a8aa0 ?FAddSndCore@SCEN@@QAEHHHJJJPAUTAG@@@Z 004a9aa0 f engine:scene.obj - 0001:000a8e80 ?FAddSndCoreTagc@SCEN@@QAEHHHJJJPAUTAGC@@@Z 004a9e80 f engine:scene.obj - 0001:000a9000 ?FAddSnd@SCEN@@QAEHPAUTAG@@HHJJ@Z 004aa000 f engine:scene.obj - 0001:000a9130 ?RemSndCore@SCEN@@QAEXJ@Z 004aa130 f engine:scene.obj - 0001:000a91f0 ?FGetSnd@SCEN@@QAEHJPAHPAPAUSSE@@@Z 004aa1f0 f engine:scene.obj - 0001:000a9280 ?PlayBkgdSnd@SCEN@@QAEXXZ 004aa280 f engine:scene.obj - 0001:000a92e0 ?FQuerySnd@SCEN@@QAEHJPAPAVGL@@PAJPAH@Z 004aa2e0 f engine:scene.obj - 0001:000a9450 ?SetSndVlmCore@SCEN@@QAEXJJ@Z 004aa450 f engine:scene.obj - 0001:000a94b0 ?UpdateSndFrame@SCEN@@QAEXXZ 004aa4b0 f engine:scene.obj - 0001:000a9530 ?_FAddSev@SCEN@@IAEHPAUSEV@@JPAX@Z 004aa530 f engine:scene.obj - 0001:000a9570 ?SelectActr@SCEN@@QAEXPAVACTR@@@Z 004aa570 f engine:scene.obj - 0001:000a95f0 ?SelectTbox@SCEN@@QAEXPAVTBOX@@@Z 004aa5f0 f engine:scene.obj - 0001:000a9690 ?FAddActrCore@SCEN@@QAEHPAVACTR@@@Z 004aa690 f engine:scene.obj - 0001:000a9930 ?FAddActr@SCEN@@QAEHPAVACTR@@@Z 004aa930 f engine:scene.obj - 0001:000a9980 ?RemActrCore@SCEN@@QAEXJ@Z 004aa980 f engine:scene.obj - 0001:000a9ac0 ?FRemActr@SCEN@@QAEHJ@Z 004aaac0 f engine:scene.obj - 0001:000a9b80 ?PactrFromPt@SCEN@@QAEPAVACTR@@JJPAJ@Z 004aab80 f engine:scene.obj - 0001:000a9c10 ?FAddTboxCore@SCEN@@QAEHPAVTBOX@@@Z 004aac10 f engine:scene.obj - 0001:000a9ca0 ?FAddTbox@SCEN@@QAEHPAVTBOX@@@Z 004aaca0 f engine:scene.obj - 0001:000a9da0 ?FRemTboxCore@SCEN@@QAEHPAVTBOX@@@Z 004aada0 f engine:scene.obj - 0001:000a9ec0 ?FRemTbox@SCEN@@QAEHPAVTBOX@@@Z 004aaec0 f engine:scene.obj - 0001:000a9f80 ?PtboxFromItbox@SCEN@@QAEPAVTBOX@@J@Z 004aaf80 f engine:scene.obj - 0001:000a9fe0 ?FPauseCore@SCEN@@QAEHPAW4WIT@@PAJ@Z 004aafe0 f engine:scene.obj - 0001:000aa0f0 ?FPause@SCEN@@QAEHW4WIT@@J@Z 004ab0f0 f engine:scene.obj - 0001:000aa190 ?FSetBkgdCore@SCEN@@QAEHPAUTAG@@0@Z 004ab190 f engine:scene.obj - 0001:000aa400 ?FSetBkgd@SCEN@@QAEHPAUTAG@@@Z 004ab400 f engine:scene.obj - 0001:000aa520 ?FIsEmpty@SCEN@@QAEHXZ 004ab520 f engine:scene.obj - 0001:000aa5a0 ?FChangeCamCore@SCEN@@QAEHJPAJ@Z 004ab5a0 f engine:scene.obj - 0001:000aa7a0 ?FChangeCam@SCEN@@QAEHJ@Z 004ab7a0 f engine:scene.obj - 0001:000aa8d0 ?PscenRead@SCEN@@SGPAV1@PAVMVIE@@PAVCRF@@K@Z 004ab8d0 f engine:scene.obj - 0001:000ab030 ?FPlayStartEvents@SCEN@@QAEHH@Z 004ac030 f engine:scene.obj - 0001:000ab0c0 ?FGetTagBkgd@SCEN@@QAEHPAUTAG@@@Z 004ac0c0 f engine:scene.obj - 0001:000ab140 ?FWrite@SCEN@@QAEHPAVCRF@@PAK@Z 004ac140 f engine:scene.obj - 0001:000ab840 ?RemActrsFromRollCall@SCEN@@QAEXH@Z 004ac840 f engine:scene.obj - 0001:000ab890 ?FAddActrsToRollCall@SCEN@@QAEHXZ 004ac890 f engine:scene.obj - 0001:000ab940 ?PmbmpThumbnail@SCEN@@QAEPAVMBMP@@XZ 004ac940 f engine:scene.obj - 0001:000ab950 ?_UpdateThumbnail@SCEN@@IAEXXZ 004ac950 f engine:scene.obj - 0001:000abc00 ?MarkDirty@SCEN@@QAEXH@Z 004acc00 f engine:scene.obj - 0001:000abc10 ?FPasteActrCore@SCEN@@QAEHPAVACTR@@@Z 004acc10 f engine:scene.obj - 0001:000abca0 ?FPasteActr@SCEN@@QAEHPAVACTR@@@Z 004acca0 f engine:scene.obj - 0001:000abcc0 ?_FForceActorsToFrm@SCEN@@IAEHJPAH@Z 004accc0 f engine:scene.obj - 0001:000abd30 ?_FForceTboxesToFrm@SCEN@@IAEHJ@Z 004acd30 f engine:scene.obj - 0001:000abd90 ?HideTboxes@SCEN@@QAEXXZ 004acd90 f engine:scene.obj - 0001:000abdf0 ?HideActors@SCEN@@QAEXXZ 004acdf0 f engine:scene.obj - 0001:000abe40 ?_MarkMovieDirty@SCEN@@IAEXXZ 004ace40 f engine:scene.obj - 0001:000abe60 ?FAddTagsToTagl@SCEN@@SGHPAVCFL@@KPAVTAGL@@@Z 004ace60 f engine:scene.obj - 0001:000ac400 ?PactrFromArid@SCEN@@QAEPAVACTR@@J@Z 004ad400 f engine:scene.obj - 0001:000ac460 ?FChopCore@SCEN@@QAEHXZ 004ad460 f engine:scene.obj - 0001:000ac5a0 ?FChop@SCEN@@QAEHXZ 004ad5a0 f engine:scene.obj - 0001:000ac620 ?FChopBackCore@SCEN@@QAEHXZ 004ad620 f engine:scene.obj - 0001:000ac7e0 ?FChopBack@SCEN@@QAEHXZ 004ad7e0 f engine:scene.obj - 0001:000ac860 ?FStartPlaying@SCEN@@QAEHXZ 004ad860 f engine:scene.obj - 0001:000ac950 ?StopPlaying@SCEN@@QAEXXZ 004ad950 f engine:scene.obj - 0001:000ac9a0 ?FTransOnFile@SCEN@@SGHPAVCRF@@KPAW4TRANS@@@Z 004ad9a0 f engine:scene.obj - 0001:000aca30 ?FSetTransOnFile@SCEN@@SGHPAVCRF@@KW4TRANS@@@Z 004ada30 f engine:scene.obj - 0001:000acaf0 ?PsunsNew@SUNS@@SGPAV1@XZ 004adaf0 f engine:scene.obj - 0001:000acb20 ??1SUNS@@UAE@XZ 004adb20 f engine:scene.obj - 0001:000acb40 ?FDo@SUNS@@UAEHPAVDOCB@@@Z 004adb40 f engine:scene.obj - 0001:000acd20 ?FUndo@SUNS@@UAEHPAVDOCB@@@Z 004add20 f engine:scene.obj - 0001:000acd30 ?PsunaNew@SUNA@@SGPAV1@XZ 004add30 f engine:scene.obj - 0001:000acd60 ??1SUNA@@UAE@XZ 004add60 f engine:scene.obj - 0001:000acd90 ?FDo@SUNA@@UAEHPAVDOCB@@@Z 004add90 f engine:scene.obj - 0001:000acef0 ?FUndo@SUNA@@UAEHPAVDOCB@@@Z 004adef0 f engine:scene.obj - 0001:000ad0b0 ?PsunxNew@SUNX@@SGPAV1@XZ 004ae0b0 f engine:scene.obj - 0001:000ad0e0 ??1SUNX@@UAE@XZ 004ae0e0 f engine:scene.obj - 0001:000ad110 ?FDo@SUNX@@UAEHPAVDOCB@@@Z 004ae110 f engine:scene.obj - 0001:000ad260 ?FUndo@SUNX@@UAEHPAVDOCB@@@Z 004ae260 f engine:scene.obj - 0001:000ad3b0 ?PsunpNew@SUNP@@SGPAV1@XZ 004ae3b0 f engine:scene.obj - 0001:000ad3e0 ??1SUNP@@UAE@XZ 004ae3e0 f engine:scene.obj - 0001:000ad3f0 ?FDo@SUNP@@UAEHPAVDOCB@@@Z 004ae3f0 f engine:scene.obj - 0001:000ad480 ?FUndo@SUNP@@UAEHPAVDOCB@@@Z 004ae480 f engine:scene.obj - 0001:000ad490 ?PsunkNew@SUNK@@SGPAV1@XZ 004ae490 f engine:scene.obj - 0001:000ad4c0 ??1SUNK@@UAE@XZ 004ae4c0 f engine:scene.obj - 0001:000ad4d0 ?FDo@SUNK@@UAEHPAVDOCB@@@Z 004ae4d0 f engine:scene.obj - 0001:000ad5d0 ?FUndo@SUNK@@UAEHPAVDOCB@@@Z 004ae5d0 f engine:scene.obj - 0001:000ad5e0 ?PsuncNew@SUNC@@SGPAV1@XZ 004ae5e0 f engine:scene.obj - 0001:000ad610 ??1SUNC@@UAE@XZ 004ae610 f engine:scene.obj - 0001:000ad640 ?FSave@SUNC@@QAEHPAVSCEN@@@Z 004ae640 f engine:scene.obj - 0001:000ad6c0 ?FDo@SUNC@@UAEHPAVDOCB@@@Z 004ae6c0 f engine:scene.obj - 0001:000ad870 ?FUndo@SUNC@@UAEHPAVDOCB@@@Z 004ae870 f engine:scene.obj - 0001:000ad880 ?PsseNew@SSE@@SGPAU1@J@Z 004ae880 f engine:scene.obj - 0001:000ad8c0 ?PsseNew@SSE@@SGPAU1@JJHJPAUTAGC@@@Z 004ae8c0 f engine:scene.obj - 0001:000ad960 ?ReleasePpsse@@YGXPAPAUSSE@@@Z 004ae960 f engine:scene.obj - 0001:000ad9b0 ?PsseDupFromGg@SSE@@SGPAU1@PAVGG@@JH@Z 004ae9b0 f engine:scene.obj - 0001:000ada30 ?PsseAddTagChid@SSE@@QAEPAU1@PAUTAG@@J@Z 004aea30 f engine:scene.obj - 0001:000adac0 ?PsseDup@SSE@@QAEPAU1@XZ 004aeac0 f engine:scene.obj - 0001:000adb30 ?PlayAllSounds@SSE@@QAEXPAVMVIE@@K@Z 004aeb30 f engine:scene.obj - 0001:000adc20 ??_GMUNB@@UAEPAXI@Z 004aec20 f engine:scene.obj - 0001:000adc20 ??_EMUNB@@UAEPAXI@Z 004aec20 f engine:scene.obj - 0001:000adc40 ??_GSUNA@@UAEPAXI@Z 004aec40 f engine:scene.obj - 0001:000adc40 ??_ESUNA@@UAEPAXI@Z 004aec40 f engine:scene.obj - 0001:000adc60 ??_GSUNC@@UAEPAXI@Z 004aec60 f engine:scene.obj - 0001:000adc60 ??_ESUNC@@UAEPAXI@Z 004aec60 f engine:scene.obj - 0001:000adc80 ??_GSUNK@@UAEPAXI@Z 004aec80 f engine:scene.obj - 0001:000adc80 ??_ESUNK@@UAEPAXI@Z 004aec80 f engine:scene.obj - 0001:000adca0 ??_GSUNP@@UAEPAXI@Z 004aeca0 f engine:scene.obj - 0001:000adca0 ??_ESUNP@@UAEPAXI@Z 004aeca0 f engine:scene.obj - 0001:000adcc0 ??_GSUNX@@UAEPAXI@Z 004aecc0 f engine:scene.obj - 0001:000adcc0 ??_ESUNX@@UAEPAXI@Z 004aecc0 f engine:scene.obj - 0001:000adce0 ??_ESUNS@@UAEPAXI@Z 004aece0 f engine:scene.obj - 0001:000adce0 ??_GSUNS@@UAEPAXI@Z 004aece0 f engine:scene.obj - 0001:000add00 ??_ESCEN@@MAEPAXI@Z 004aed00 f engine:scene.obj - 0001:000add00 ??_GSCEN@@MAEPAXI@Z 004aed00 f engine:scene.obj - 0001:000add20 ?FWouldBe@BKGD@@SGHJ@Z 004aed20 f engine:bkgd.obj - 0001:000add40 ?FIs@BKGD@@UAEHJ@Z 004aed40 f engine:bkgd.obj - 0001:000add50 ?Cls@BKGD@@UAEJXZ 004aed50 f engine:bkgd.obj - 0001:000add60 ?FAddTagsToTagl@BKGD@@SGHPAUTAG@@PAVTAGL@@@Z 004aed60 f engine:bkgd.obj - 0001:000addf0 ?FCacheToHD@BKGD@@SGHPAUTAG@@@Z 004aedf0 f engine:bkgd.obj - 0001:000adf30 ?FReadBkgd@BKGD@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004aef30 f engine:bkgd.obj - 0001:000adfd0 ?_FInit@BKGD@@IAEHPAVCFL@@KK@Z 004aefd0 f engine:bkgd.obj - 0001:000ae2e0 ?_Ccam@BKGD@@IAEJPAVCFL@@KK@Z 004af2e0 f engine:bkgd.obj - 0001:000ae340 ?_SetupLights@BKGD@@IAEXPAVGL@@@Z 004af340 f engine:bkgd.obj - 0001:000ae3c0 ??1BKGD@@UAE@XZ 004af3c0 f engine:bkgd.obj - 0001:000ae430 ?GetName@BKGD@@QAEXPAVSTN@@@Z 004af430 f engine:bkgd.obj - 0001:000ae440 ?FGetPalette@BKGD@@QAEHPAPAVGL@@PAJ@Z 004af440 f engine:bkgd.obj - 0001:000ae490 ?GetCameraPos@BKGD@@QAEXPAJ00@Z 004af490 f engine:bkgd.obj - 0001:000ae4d0 ?TurnOnLights@BKGD@@QAEXPAVBWLD@@@Z 004af4d0 f engine:bkgd.obj - 0001:000ae520 ?TurnOffLights@BKGD@@QAEXXZ 004af520 f engine:bkgd.obj - 0001:000ae570 ?FSetCamera@BKGD@@QAEHPAVBWLD@@J@Z 004af570 f engine:bkgd.obj - 0001:000ae8c0 ?GetMouseMatrix@BKGD@@QAEXPAUbr_matrix34@@@Z 004af8c0 f engine:bkgd.obj - 0001:000ae8e0 ?GetActorPlacePoint@BKGD@@QAEXPAJ00@Z 004af8e0 f engine:bkgd.obj - 0001:000ae980 ?ReuseActorPlacePoint@BKGD@@QAEXXZ 004af980 f engine:bkgd.obj - 0001:000ae9a0 ??_GBKGD@@UAEPAXI@Z 004af9a0 f engine:bkgd.obj - 0001:000ae9a0 ??_EBKGD@@UAEPAXI@Z 004af9a0 f engine:bkgd.obj - 0001:000aeb10 ?FWouldBe@BODY@@SGHJ@Z 004afb10 f engine:body.obj - 0001:000aeb30 ?FIs@BODY@@UAEHJ@Z 004afb30 f engine:body.obj - 0001:000aeb40 ?Cls@BODY@@UAEJXZ 004afb40 f engine:body.obj - 0001:000aeb50 ?FWouldBe@COST@@SGHJ@Z 004afb50 f engine:body.obj - 0001:000aeb70 ?FIs@COST@@UAEHJ@Z 004afb70 f engine:body.obj - 0001:000aeb80 ?Cls@COST@@UAEJXZ 004afb80 f engine:body.obj - 0001:000aeb90 ?PbodyNew@BODY@@SGPAV1@PAVGL@@0@Z 004afb90 f engine:body.obj - 0001:000aec70 ?_FInit@BODY@@IAEHPAVGL@@0@Z 004afc70 f engine:body.obj - 0001:000aec90 ?_FInitShape@BODY@@IAEHPAVGL@@0@Z 004afc90 f engine:body.obj - 0001:000aee50 ?FChangeShape@BODY@@QAEHPAVGL@@0@Z 004afe50 f engine:body.obj - 0001:000aefc0 ?PbodyFromBact@BODY@@SGPAV1@PAUbr_actor@@PAJ@Z 004affc0 f engine:body.obj - 0001:000af020 ?PbodyClicked@BODY@@SGPAV1@JJPAVBWLD@@PAJ@Z 004b0020 f engine:body.obj - 0001:000af0c0 ?_FFilter@BODY@@SAHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z 004b00c0 f engine:body.obj - 0001:000af110 ?_DestroyShape@BODY@@IAEXXZ 004b0110 f engine:body.obj - 0001:000af1b0 ??1BODY@@UAE@XZ 004b01b0 f engine:body.obj - 0001:000af1d0 ?PbodyDup@BODY@@QAEPAV1@XZ 004b01d0 f engine:body.obj - 0001:000af440 ?Restore@BODY@@QAEXPAV1@@Z 004b0440 f engine:body.obj - 0001:000af490 ?Show@BODY@@QAEXXZ 004b0490 f engine:body.obj - 0001:000af4e0 ?Hide@BODY@@QAEXXZ 004b04e0 f engine:body.obj - 0001:000af520 ?SetHiliteColor@BODY@@SGXJ@Z 004b0520 f engine:body.obj - 0001:000af540 ?Hilite@BODY@@QAEXXZ 004b0540 f engine:body.obj - 0001:000af560 ?Unhilite@BODY@@QAEXXZ 004b0560 f engine:body.obj - 0001:000af580 ?LocateOrient@BODY@@QAEXJJJPAUbr_matrix34@@@Z 004b0580 f engine:body.obj - 0001:000af5d0 ?SetPartModel@BODY@@QAEXJPAVMODL@@@Z 004b05d0 f engine:body.obj - 0001:000af640 ?SetPartMatrix@BODY@@QAEXJPAUbr_matrix34@@@Z 004b0640 f engine:body.obj - 0001:000af680 ?_RemoveMaterial@BODY@@IAEXJ@Z 004b0680 f engine:body.obj - 0001:000af720 ?SetPartSetMtrl@BODY@@QAEXJPAVMTRL@@@Z 004b0720 f engine:body.obj - 0001:000af790 ?SetPartSetCmtl@BODY@@QAEXPAVCMTL@@@Z 004b0790 f engine:body.obj - 0001:000af840 ?GetPartSetMaterial@BODY@@QAEXJPAHPAPAVMTRL@@PAPAVCMTL@@@Z 004b0840 f engine:body.obj - 0001:000af8c0 ?_FFilterSearch@BODY@@KAHPAUbr_actor@@PAUbr_model@@PAUbr_material@@PAUbr_vector3@@3JJPAX@Z 004b08c0 f engine:body.obj - 0001:000af920 ?FPtInBody@BODY@@QAEHJJPAJ@Z 004b0920 f engine:body.obj - 0001:000af960 ?_PrepareToRender@BODY@@KGXPAUbr_actor@@@Z 004b0960 f engine:body.obj - 0001:000af9e0 ?_GetRc@BODY@@KGXPAUbr_actor@@PAVRC@@@Z 004b09e0 f engine:body.obj - 0001:000afa20 ?GetBcbBounds@BODY@@QAEXPAUBCB@@H@Z 004b0a20 f engine:body.obj - 0001:000afcc0 ?_BactRendered@BODY@@KGXPAUbr_actor@@PAVRC@@@Z 004b0cc0 f engine:body.obj - 0001:000afce0 ?FIsInView@BODY@@QAEHXZ 004b0ce0 f engine:body.obj - 0001:000afd00 ?GetRcBounds@BODY@@QAEXPAVRC@@@Z 004b0d00 f engine:body.obj - 0001:000afd50 ?GetCenter@BODY@@QAEXPAJ0@Z 004b0d50 f engine:body.obj - 0001:000afdb0 ??0COST@@QAE@XZ 004b0db0 f engine:body.obj - 0001:000afdd0 ??1COST@@UAE@XZ 004b0dd0 f engine:body.obj - 0001:000afdf0 ?_Clear@COST@@AAEXXZ 004b0df0 f engine:body.obj - 0001:000afe40 ?FGet@COST@@QAEHPAVBODY@@@Z 004b0e40 f engine:body.obj - 0001:000afee0 ?Set@COST@@QAEXPAVBODY@@H@Z 004b0ee0 f engine:body.obj - 0001:000aff50 ??_EBODY@@UAEPAXI@Z 004b0f50 f engine:body.obj - 0001:000aff50 ??_GBODY@@UAEPAXI@Z 004b0f50 f engine:body.obj - 0001:000aff70 ??_ECOST@@UAEPAXI@Z 004b0f70 f engine:body.obj - 0001:000aff70 ??_GCOST@@UAEPAXI@Z 004b0f70 f engine:body.obj - 0001:000b00e0 ?FWouldBe@ACTN@@SGHJ@Z 004b10e0 f engine:tmpl.obj - 0001:000b0100 ?FIs@ACTN@@UAEHJ@Z 004b1100 f engine:tmpl.obj - 0001:000b0110 ?Cls@ACTN@@UAEJXZ 004b1110 f engine:tmpl.obj - 0001:000b0120 ?FWouldBe@TMPL@@SGHJ@Z 004b1120 f engine:tmpl.obj - 0001:000b0140 ?FIs@TMPL@@UAEHJ@Z 004b1140 f engine:tmpl.obj - 0001:000b0150 ?Cls@TMPL@@UAEJXZ 004b1150 f engine:tmpl.obj - 0001:000b0160 ?PactnNew@ACTN@@SGPAV1@PAVGG@@PAVGL@@K@Z 004b1160 f engine:tmpl.obj - 0001:000b01d0 ?FReadActn@ACTN@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004b11d0 f engine:tmpl.obj - 0001:000b0290 ?_FInit@ACTN@@IAEHPAVCFL@@KK@Z 004b1290 f engine:tmpl.obj - 0001:000b05b0 ??1ACTN@@UAE@XZ 004b15b0 f engine:tmpl.obj - 0001:000b05f0 ?GetCel@ACTN@@QAEXJPAUCEL@@@Z 004b15f0 f engine:tmpl.obj - 0001:000b0610 ?GetCps@ACTN@@QAEXJJPAUCPS@@@Z 004b1610 f engine:tmpl.obj - 0001:000b0630 ?GetSnd@ACTN@@QAEXJPAUTAG@@@Z 004b1630 f engine:tmpl.obj - 0001:000b0680 ?GetMatrix@ACTN@@QAEXJPAUbr_matrix34@@@Z 004b1680 f engine:tmpl.obj - 0001:000b06a0 ?FReadTmpl@TMPL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004b16a0 f engine:tmpl.obj - 0001:000b07e0 ?_FReadTmplf@TMPL@@IAEHPAVCFL@@KK@Z 004b17e0 f engine:tmpl.obj - 0001:000b0900 ?_FWriteTmplf@TMPL@@IAEHPAVCFL@@KPAK@Z 004b1900 f engine:tmpl.obj - 0001:000b09b0 ?_FInit@TMPL@@MAEHPAVCFL@@KK@Z 004b19b0 f engine:tmpl.obj - 0001:000b0e80 ??1TMPL@@UAE@XZ 004b1e80 f engine:tmpl.obj - 0001:000b0ed0 ?PgltagFetch@TMPL@@SGPAVGL@@PAVCFL@@KKPAH@Z 004b1ed0 f engine:tmpl.obj - 0001:000b0f30 ?PbodyCreate@TMPL@@QAEPAVBODY@@XZ 004b1f30 f engine:tmpl.obj - 0001:000b0f70 ?FGetActnName@TMPL@@UAEHJPAVSTN@@@Z 004b1f70 f engine:tmpl.obj - 0001:000b0fd0 ?_PactnFetch@TMPL@@MAEPAVACTN@@J@Z 004b1fd0 f engine:tmpl.obj - 0001:000b1030 ?_PmodlFetch@TMPL@@MAEPAVMODL@@K@Z 004b2030 f engine:tmpl.obj - 0001:000b1090 ?FSetActnCel@TMPL@@QAEHPAVBODY@@JJPAJ@Z 004b2090 f engine:tmpl.obj - 0001:000b1240 ?FGetDwrActnCel@TMPL@@QAEHJJPAJ@Z 004b2240 f engine:tmpl.obj - 0001:000b12a0 ?FGetCcelActn@TMPL@@QAEHJPAJ@Z 004b22a0 f engine:tmpl.obj - 0001:000b12e0 ?FGetSndActnCel@TMPL@@QAEHJJPAHPAUTAG@@@Z 004b22e0 f engine:tmpl.obj - 0001:000b1350 ?FGetGrfactn@TMPL@@QAEHJPAK@Z 004b2350 f engine:tmpl.obj - 0001:000b1380 ?GetRestOrien@TMPL@@QAEXPAG00@Z 004b2380 f engine:tmpl.obj - 0001:000b13b0 ?FSetDefaultCost@TMPL@@UAEHPAVBODY@@@Z 004b23b0 f engine:tmpl.obj - 0001:000b1480 ?CcmidOfBset@TMPL@@QAEJJ@Z 004b2480 f engine:tmpl.obj - 0001:000b14a0 ?CmidOfBset@TMPL@@QAEJJJ@Z 004b24a0 f engine:tmpl.obj - 0001:000b14c0 ?FBsetIsAccessory@TMPL@@QAEHJ@Z 004b24c0 f engine:tmpl.obj - 0001:000b1530 ?FIbsetAccOfIbset@TMPL@@QAEHJPAJ@Z 004b2530 f engine:tmpl.obj - 0001:000b15d0 ?FSameAccCmids@TMPL@@QAEHJJ@Z 004b25d0 f engine:tmpl.obj - 0001:000b1650 ?PcmtlFetch@TMPL@@UAEPAVCMTL@@J@Z 004b2650 f engine:tmpl.obj - 0001:000b16b0 ?GetName@TMPL@@QAEXPAVSTN@@@Z 004b26b0 f engine:tmpl.obj - 0001:000b16d0 ??_EACTN@@UAEPAXI@Z 004b26d0 f engine:tmpl.obj - 0001:000b16d0 ??_GACTN@@UAEPAXI@Z 004b26d0 f engine:tmpl.obj - 0001:000b16f0 ??_GTMPL@@UAEPAXI@Z 004b26f0 f engine:tmpl.obj - 0001:000b16f0 ??_ETMPL@@UAEPAXI@Z 004b26f0 f engine:tmpl.obj - 0001:000b1710 ??_GTDT@@UAEPAXI@Z 004b2710 f engine:tmpl.obj - 0001:000b1710 ??_ETDT@@UAEPAXI@Z 004b2710 f engine:tmpl.obj - 0001:000b1880 ?FWouldBe@MTRL@@SGHJ@Z 004b2880 f engine:mtrl.obj - 0001:000b18a0 ?FIs@MTRL@@UAEHJ@Z 004b28a0 f engine:mtrl.obj - 0001:000b18b0 ?Cls@MTRL@@UAEJXZ 004b28b0 f engine:mtrl.obj - 0001:000b18c0 ?FWouldBe@CMTL@@SGHJ@Z 004b28c0 f engine:mtrl.obj - 0001:000b18e0 ?FIs@CMTL@@UAEHJ@Z 004b28e0 f engine:mtrl.obj - 0001:000b18f0 ?Cls@CMTL@@UAEJXZ 004b28f0 f engine:mtrl.obj - 0001:000b1900 ?FSetShadeTable@MTRL@@SGHPAVCFL@@KK@Z 004b2900 f engine:mtrl.obj - 0001:000b1950 ?PmtrlNew@MTRL@@SGPAV1@JJ@Z 004b2950 f engine:mtrl.obj - 0001:000b1a80 ?FReadMtrl@MTRL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004b2a80 f engine:mtrl.obj - 0001:000b1b00 ?_FInit@MTRL@@IAEHPAVCRF@@KK@Z 004b2b00 f engine:mtrl.obj - 0001:000b1e00 ?PmtrlFromBmtl@MTRL@@SGPAV1@PAUbr_material@@@Z 004b2e00 f engine:mtrl.obj - 0001:000b1e10 ?Ptmap@MTRL@@QAEPAVTMAP@@XZ 004b2e10 f engine:mtrl.obj - 0001:000b1e30 ??1MTRL@@UAE@XZ 004b2e30 f engine:mtrl.obj - 0001:000b1e80 ?FHasModels@CMTL@@SGHPAVCFL@@KK@Z 004b2e80 f engine:mtrl.obj - 0001:000b1eb0 ?FEqualModels@CMTL@@SGHPAVCFL@@KK@Z 004b2eb0 f engine:mtrl.obj - 0001:000b1f70 ?FReadCmtl@CMTL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004b2f70 f engine:mtrl.obj - 0001:000b2000 ?_FInit@CMTL@@IAEHPAVCRF@@KK@Z 004b3000 f engine:mtrl.obj - 0001:000b2270 ??1CMTL@@UAE@XZ 004b3270 f engine:mtrl.obj - 0001:000b2300 ?Pbmtl@CMTL@@QAEPAUbr_material@@J@Z 004b3300 f engine:mtrl.obj - 0001:000b2310 ?Pmodl@CMTL@@QAEPAVMODL@@J@Z 004b3310 f engine:mtrl.obj - 0001:000b2330 ??_EMTRL@@UAEPAXI@Z 004b3330 f engine:mtrl.obj - 0001:000b2330 ??_GMTRL@@UAEPAXI@Z 004b3330 f engine:mtrl.obj - 0001:000b2350 ??_GCMTL@@UAEPAXI@Z 004b3350 f engine:mtrl.obj - 0001:000b2350 ??_ECMTL@@UAEPAXI@Z 004b3350 f engine:mtrl.obj - 0001:000b24c0 ?FWouldBe@TDT@@SGHJ@Z 004b34c0 f engine:tdt.obj - 0001:000b24e0 ?FIs@TDT@@UAEHJ@Z 004b34e0 f engine:tdt.obj - 0001:000b24f0 ?Cls@TDT@@UAEJXZ 004b34f0 f engine:tdt.obj - 0001:000b2500 ?FSetActionNames@TDT@@SGHPAVGST@@@Z 004b3500 f engine:tdt.obj - 0001:000b2520 ?PgltagFetch@TDT@@SGPAVGL@@PAVCFL@@KKPAH@Z 004b3520 f engine:tdt.obj - 0001:000b2630 ?PtdtNew@TDT@@SGPAV1@PAVSTN@@JPAUTAG@@@Z 004b3630 f engine:tdt.obj - 0001:000b26f0 ?_FInit@TDT@@MAEHPAVCFL@@KK@Z 004b36f0 f engine:tdt.obj - 0001:000b2890 ?_FInitLists@TDT@@IAEHXZ 004b3890 f engine:tdt.obj - 0001:000b29d0 ?_PactnFetch@TDT@@MAEPAVACTN@@J@Z 004b39d0 f engine:tdt.obj - 0001:000b2a40 ?_PactnBuild@TDT@@IAEPAVACTN@@J@Z 004b3a40 f engine:tdt.obj - 0001:000b2ac0 ?FGetActnName@TDT@@UAEHJPAVSTN@@@Z 004b3ac0 f engine:tdt.obj - 0001:000b2b30 ?_PmodlFetch@TDT@@MAEPAVMODL@@K@Z 004b3b30 f engine:tdt.obj - 0001:000b2b80 ?_PglibactParBuild@TDT@@IAEPAVGL@@XZ 004b3b80 f engine:tdt.obj - 0001:000b2be0 ?_PglibsetBuild@TDT@@IAEPAVGL@@XZ 004b3be0 f engine:tdt.obj - 0001:000b2c40 ?_PggcmidBuild@TDT@@IAEPAVGG@@XZ 004b3c40 f engine:tdt.obj - 0001:000b2ca0 ?_Pglbmat34Build@TDT@@IAEPAVGL@@J@Z 004b3ca0 f engine:tdt.obj - 0001:000b3060 ?_PggcelBuild@TDT@@IAEPAVGG@@J@Z 004b4060 f engine:tdt.obj - 0001:000b3190 ??1TDT@@UAE@XZ 004b4190 f engine:tdt.obj - 0001:000b31e0 ?PtdtDup@TDT@@QAEPAV1@XZ 004b41e0 f engine:tdt.obj - 0001:000b3200 ?FChange@TDT@@QAEHPAVSTN@@JPAUTAG@@@Z 004b4200 f engine:tdt.obj - 0001:000b3300 ?GetInfo@TDT@@QAEXPAVSTN@@PAJPAUTAG@@@Z 004b4300 f engine:tdt.obj - 0001:000b3350 ?FAdjustBody@TDT@@QAEHPAVBODY@@@Z 004b4350 f engine:tdt.obj - 0001:000b3370 ?FSetDefaultCost@TDT@@UAEHPAVBODY@@@Z 004b4370 f engine:tdt.obj - 0001:000b3390 ?PcmtlFetch@TDT@@UAEPAVCMTL@@J@Z 004b4390 f engine:tdt.obj - 0001:000b33a0 ?FWrite@TDT@@QAEHPAVCFL@@KPAK@Z 004b43a0 f engine:tdt.obj - 0001:000b34c0 ?_CcelOfTda@TDT@@IAEJJ@Z 004b44c0 f engine:tdt.obj - 0001:000b3530 ?_ApplyAction@TDT@@IAEXPAUbr_matrix34@@JJJJJJ@Z 004b4530 f engine:tdt.obj - 0001:000b4280 ?_ApplyShape@TDT@@IAEXPAUbr_matrix34@@JJJJJJJJ@Z 004b5280 f engine:tdt.obj - 0001:000b47c0 ?FWouldBe@AUND@@SGHJ@Z 004b57c0 f engine:actredit.obj - 0001:000b47e0 ?FIs@AUND@@UAEHJ@Z 004b57e0 f engine:actredit.obj - 0001:000b47f0 ?Cls@AUND@@UAEJXZ 004b57f0 f engine:actredit.obj - 0001:000b4800 ?FCopy@ACTR@@QAEHPAPAV1@H@Z 004b5800 f engine:actredit.obj - 0001:000b4be0 ?FDup@ACTR@@QAEHPAPAV1@H@Z 004b5be0 f engine:actredit.obj - 0001:000b4f30 ?Restore@ACTR@@QAEXPAV1@@Z 004b5f30 f engine:actredit.obj - 0001:000b5240 ?_RestoreFromUndo@ACTR@@IAEXPAV1@@Z 004b6240 f engine:actredit.obj - 0001:000b52a0 ?_FDupCopy@ACTR@@IAEHPAV1@0@Z 004b62a0 f engine:actredit.obj - 0001:000b53e0 ?FCopyRte@ACTR@@QAEHPAPAV1@H@Z 004b63e0 f engine:actredit.obj - 0001:000b55a0 ?FPasteRte@ACTR@@QAEHPAV1@@Z 004b65a0 f engine:actredit.obj - 0001:000b58f0 ?FPaste@ACTR@@QAEHJPAVSCEN@@@Z 004b68f0 f engine:actredit.obj - 0001:000b5c10 ?Reset@ACTR@@QAEXXZ 004b6c10 f engine:actredit.obj - 0001:000b5c40 ?FWouldBe@ACLP@@SGHJ@Z 004b6c40 f engine:actredit.obj - 0001:000b5c60 ?FIs@ACLP@@UAEHJ@Z 004b6c60 f engine:actredit.obj - 0001:000b5c70 ?Cls@ACLP@@UAEJXZ 004b6c70 f engine:actredit.obj - 0001:000b5c80 ?PaclpNew@ACLP@@SGPAV1@PAVACTR@@HH@Z 004b6c80 f engine:actredit.obj - 0001:000b5e10 ??1ACLP@@UAE@XZ 004b6e10 f engine:actredit.obj - 0001:000b5e40 ?FPaste@ACLP@@QAEHPAVMVIE@@@Z 004b6e40 f engine:actredit.obj - 0001:000b5f20 ?FCreateUndo@ACTR@@QAEHPAV1@HPAVSTN@@@Z 004b6f20 f engine:actredit.obj - 0001:000b5fc0 ?FSetAction@ACTR@@QAEHJJHPAPAV1@@Z 004b6fc0 f engine:actredit.obj - 0001:000b6090 ?FNormalize@ACTR@@QAEHK@Z 004b7090 f engine:actredit.obj - 0001:000b6140 ?FSetCostume@ACTR@@QAEHJPAUTAG@@JH@Z 004b7140 f engine:actredit.obj - 0001:000b6200 ?FDelete@ACTR@@QAEHPAHH@Z 004b7200 f engine:actredit.obj - 0001:000b6380 ?PaundNew@AUND@@SGPAV1@XZ 004b7380 f engine:actredit.obj - 0001:000b63c0 ??1AUND@@UAE@XZ 004b73c0 f engine:actredit.obj - 0001:000b63f0 ?FDo@AUND@@UAEHPAVDOCB@@@Z 004b73f0 f engine:actredit.obj - 0001:000b6430 ?FUndo@AUND@@UAEHPAVDOCB@@@Z 004b7430 f engine:actredit.obj - 0001:000b65d0 ?SetPactr@AUND@@QAEXPAVACTR@@@Z 004b75d0 f engine:actredit.obj - 0001:000b6600 ??_EAUND@@UAEPAXI@Z 004b7600 f engine:actredit.obj - 0001:000b6600 ??_GAUND@@UAEPAXI@Z 004b7600 f engine:actredit.obj - 0001:000b66b0 ??_EACLP@@UAEPAXI@Z 004b76b0 f engine:actredit.obj - 0001:000b66b0 ??_GACLP@@UAEPAXI@Z 004b76b0 f engine:actredit.obj - 0001:000b6790 ?FWouldBe@TBOX@@SGHJ@Z 004b7790 f engine:tbox.obj - 0001:000b67b0 ?FIs@TBOX@@UAEHJ@Z 004b77b0 f engine:tbox.obj - 0001:000b67c0 ?Cls@TBOX@@UAEJXZ 004b77c0 f engine:tbox.obj - 0001:000b67d0 ?FWouldBe@TBXG@@SGHJ@Z 004b77d0 f engine:tbox.obj - 0001:000b67f0 ?FIs@TBXG@@UAEHJ@Z 004b77f0 f engine:tbox.obj - 0001:000b6800 ?Cls@TBXG@@UAEJXZ 004b7800 f engine:tbox.obj - 0001:000b6810 ?FWouldBe@TBXB@@SGHJ@Z 004b7810 f engine:tbox.obj - 0001:000b6830 ?FIs@TBXB@@UAEHJ@Z 004b7830 f engine:tbox.obj - 0001:000b6840 ?Cls@TBXB@@UAEJXZ 004b7840 f engine:tbox.obj - 0001:000b6850 ?FWouldBe@TCLP@@SGHJ@Z 004b7850 f engine:tbox.obj - 0001:000b6870 ?FIs@TCLP@@UAEHJ@Z 004b7870 f engine:tbox.obj - 0001:000b6880 ?Cls@TCLP@@UAEJXZ 004b7880 f engine:tbox.obj - 0001:000b6890 ?FWouldBe@TUNT@@SGHJ@Z 004b7890 f engine:tbox.obj - 0001:000b68b0 ?FIs@TUNT@@UAEHJ@Z 004b78b0 f engine:tbox.obj - 0001:000b68c0 ?Cls@TUNT@@UAEJXZ 004b78c0 f engine:tbox.obj - 0001:000b68d0 ?FWouldBe@TUNS@@SGHJ@Z 004b78d0 f engine:tbox.obj - 0001:000b68f0 ?FIs@TUNS@@UAEHJ@Z 004b78f0 f engine:tbox.obj - 0001:000b6910 ?Cls@TUNS@@UAEJXZ 004b7910 f engine:tbox.obj - 0001:000b6920 ?FWouldBe@TUNH@@SGHJ@Z 004b7920 f engine:tbox.obj - 0001:000b6940 ?FIs@TUNH@@UAEHJ@Z 004b7940 f engine:tbox.obj - 0001:000b6950 ?Cls@TUNH@@UAEJXZ 004b7950 f engine:tbox.obj - 0001:000b6960 ?FWouldBe@TUND@@SGHJ@Z 004b7960 f engine:tbox.obj - 0001:000b6980 ?FIs@TUND@@UAEHJ@Z 004b7980 f engine:tbox.obj - 0001:000b6990 ?Cls@TUND@@UAEJXZ 004b7990 f engine:tbox.obj - 0001:000b69a0 ?FWouldBe@TUNC@@SGHJ@Z 004b79a0 f engine:tbox.obj - 0001:000b69c0 ?FIs@TUNC@@UAEHJ@Z 004b79c0 f engine:tbox.obj - 0001:000b69d0 ?Cls@TUNC@@UAEJXZ 004b79d0 f engine:tbox.obj - 0001:000b69e0 ?PtbxbNew@TBXB@@SGPAV1@PAVTBOX@@PAUGCB@@@Z 004b79e0 f engine:tbox.obj - 0001:000b6ac0 ?Draw@TBXB@@UAEXPAVGNV@@PAVRC@@@Z 004b7ac0 f engine:tbox.obj - 0001:000b6dd0 ?FCmdTrackMouse@TBXB@@UAEHPAUCMD_MOUSE@@@Z 004b7dd0 f engine:tbox.obj - 0001:000b73e0 ?FCmdMouseMove@TBXB@@UAEHPAUCMD_MOUSE@@@Z 004b83e0 f engine:tbox.obj - 0001:000b7540 ?_TbxtAnchor@TBXB@@AAE?AW4TBXT@@JJ@Z 004b8540 f engine:tbox.obj - 0001:000b76a0 ?Activate@TBXB@@QAEXH@Z 004b86a0 f engine:tbox.obj - 0001:000b76e0 ?FPtIn@TBXB@@UAEHJJ@Z 004b86e0 f engine:tbox.obj - 0001:000b7750 ?AttachToMouse@TBXB@@QAEXXZ 004b8750 f engine:tbox.obj - 0001:000b7820 ??1TBXG@@EAE@XZ 004b8820 f engine:tbox.obj - 0001:000b7830 ?PtbxgNew@TBXG@@SGPAV1@PAVTBOX@@PAUGCB@@@Z 004b8830 f engine:tbox.obj - 0001:000b78a0 ?Draw@TBXG@@UAEXPAVGNV@@PAVRC@@@Z 004b88a0 f engine:tbox.obj - 0001:000b7900 ?Activate@TBXG@@UAEXH@Z 004b8900 f engine:tbox.obj - 0001:000b7920 ?InvalCp@TBXG@@UAEXJJJ@Z 004b8920 f engine:tbox.obj - 0001:000b79b0 ?FCmdMouseMove@TBXG@@UAEHPAUCMD_MOUSE@@@Z 004b89b0 f engine:tbox.obj - 0001:000b7ad0 ?FCmdTrackMouse@TBXG@@UAEHPAUCMD_MOUSE@@@Z 004b8ad0 f engine:tbox.obj - 0001:000b7eb0 ?FPtIn@TBXG@@UAEHJJ@Z 004b8eb0 f engine:tbox.obj - 0001:000b7f10 ?_DxpDoc@TBXG@@UAEJXZ 004b8f10 f engine:tbox.obj - 0001:000b7f30 ?_NewRc@TBXG@@UAEXXZ 004b8f30 f engine:tbox.obj - 0001:000b7fa0 ?FCmdClip@TBXG@@UAEHPAUCMD@@@Z 004b8fa0 f engine:tbox.obj - 0001:000b80f0 ?FEnableDdgCmd@TBXG@@UAEHPAUCMD@@PAK@Z 004b90f0 f engine:tbox.obj - 0001:000b81a0 ?_FDoClip@TBXG@@QAEHJ@Z 004b91a0 f engine:tbox.obj - 0001:000b8470 ?FNeedToScroll@TBXG@@QAEHXZ 004b9470 f engine:tbox.obj - 0001:000b84c0 ?Scroll@TBXG@@QAEXJ@Z 004b94c0 f engine:tbox.obj - 0001:000b8520 ?FTextSelected@TBXG@@QAEHXZ 004b9520 f engine:tbox.obj - 0001:000b8540 ?_FetchChp@TBXG@@UAEXJPAUCHP@@PAJ1@Z 004b9540 f engine:tbox.obj - 0001:000b8570 ?PtboxNew@TBOX@@SGPAV1@PAVSCEN@@PAVRC@@H@Z 004b9570 f engine:tbox.obj - 0001:000b8630 ?SetDirty@TBOX@@UAEXH@Z 004b9630 f engine:tbox.obj - 0001:000b8650 ?PtboxRead@TBOX@@SGPAV1@PAVCRF@@KPAVSCEN@@@Z 004b9650 f engine:tbox.obj - 0001:000b8820 ?FWrite@TBOX@@QAEHPAVCFL@@K@Z 004b9820 f engine:tbox.obj - 0001:000b8930 ?SetScen@TBOX@@QAEXPAVSCEN@@@Z 004b9930 f engine:tbox.obj - 0001:000b89f0 ?SetTypeCore@TBOX@@QAEXH@Z 004b99f0 f engine:tbox.obj - 0001:000b8a20 ?AttachToMouse@TBOX@@QAEXXZ 004b9a20 f engine:tbox.obj - 0001:000b8a40 ?FSetType@TBOX@@QAEHH@Z 004b9a40 f engine:tbox.obj - 0001:000b8ad0 ?SetRc@TBOX@@QAEXPAVRC@@@Z 004b9ad0 f engine:tbox.obj - 0001:000b8b20 ?FIsVisible@TBOX@@QAEHXZ 004b9b20 f engine:tbox.obj - 0001:000b8b40 ?FGetLifetime@TBOX@@QAEHPAJ0@Z 004b9b40 f engine:tbox.obj - 0001:000b8b90 ?Select@TBOX@@QAEXH@Z 004b9b90 f engine:tbox.obj - 0001:000b8be0 ?FGotoFrame@TBOX@@QAEHJ@Z 004b9be0 f engine:tbox.obj - 0001:000b8cb0 ?FShowCore@TBOX@@QAEHXZ 004b9cb0 f engine:tbox.obj - 0001:000b8d00 ?HideCore@TBOX@@QAEXXZ 004b9d00 f engine:tbox.obj - 0001:000b8d50 ?FHide@TBOX@@QAEHXZ 004b9d50 f engine:tbox.obj - 0001:000b8de0 ?FDup@TBOX@@QAEHPAPAV1@@Z 004b9de0 f engine:tbox.obj - 0001:000b8eb0 ?FSetAcrBack@TBOX@@QAEHVACR@@@Z 004b9eb0 f engine:tbox.obj - 0001:000b8f30 ?FSetAcrText@TBOX@@QAEHVACR@@@Z 004b9f30 f engine:tbox.obj - 0001:000b8fc0 ?FSetDypFontText@TBOX@@QAEHJ@Z 004b9fc0 f engine:tbox.obj - 0001:000b9050 ?FSetStyleText@TBOX@@QAEHK@Z 004ba050 f engine:tbox.obj - 0001:000b90e0 ?FSetOnnText@TBOX@@QAEHJ@Z 004ba0e0 f engine:tbox.obj - 0001:000b9170 ?FetchChpSel@TBOX@@QAEXPAUCHP@@PAK@Z 004ba170 f engine:tbox.obj - 0001:000b92b0 ?FNeedToScroll@TBOX@@QAEHXZ 004ba2b0 f engine:tbox.obj - 0001:000b92e0 ?Scroll@TBOX@@QAEXXZ 004ba2e0 f engine:tbox.obj - 0001:000b9300 ?FTextSelected@TBOX@@QAEHXZ 004ba300 f engine:tbox.obj - 0001:000b9330 ?SetStartFrame@TBOX@@QAEXJ@Z 004ba330 f engine:tbox.obj - 0001:000b9340 ?FAddUndo@TBOX@@UAEHPAVUNDB@@@Z 004ba340 f engine:tbox.obj - 0001:000b93e0 ?ClearUndo@TBOX@@UAEXXZ 004ba3e0 f engine:tbox.obj - 0001:000b9400 ?CleanDdg@TBOX@@QAEXXZ 004ba400 f engine:tbox.obj - 0001:000b9460 ?Itbox@TBOX@@QAEJXZ 004ba460 f engine:tbox.obj - 0001:000b9490 ?PtuntNew@TUNT@@SGPAV1@XZ 004ba490 f engine:tbox.obj - 0001:000b94c0 ??1TUNT@@UAE@XZ 004ba4c0 f engine:tbox.obj - 0001:000b94d0 ?FDo@TUNT@@UAEHPAVDOCB@@@Z 004ba4d0 f engine:tbox.obj - 0001:000b9570 ?FUndo@TUNT@@UAEHPAVDOCB@@@Z 004ba570 f engine:tbox.obj - 0001:000b9580 ?PtunsNew@TUNS@@SGPAV1@XZ 004ba580 f engine:tbox.obj - 0001:000b95b0 ??1TUNS@@UAE@XZ 004ba5b0 f engine:tbox.obj - 0001:000b95c0 ?FDo@TUNS@@UAEHPAVDOCB@@@Z 004ba5c0 f engine:tbox.obj - 0001:000b96c0 ?FUndo@TUNS@@UAEHPAVDOCB@@@Z 004ba6c0 f engine:tbox.obj - 0001:000b96d0 ?PtunhNew@TUNH@@SGPAV1@XZ 004ba6d0 f engine:tbox.obj - 0001:000b9700 ??1TUNH@@UAE@XZ 004ba700 f engine:tbox.obj - 0001:000b9710 ?FDo@TUNH@@UAEHPAVDOCB@@@Z 004ba710 f engine:tbox.obj - 0001:000b97f0 ?FUndo@TUNH@@UAEHPAVDOCB@@@Z 004ba7f0 f engine:tbox.obj - 0001:000b9800 ?PtundNew@TUND@@SGPAV1@PAVUNDB@@@Z 004ba800 f engine:tbox.obj - 0001:000b9840 ??1TUND@@UAE@XZ 004ba840 f engine:tbox.obj - 0001:000b9890 ?FDo@TUND@@UAEHPAVDOCB@@@Z 004ba890 f engine:tbox.obj - 0001:000b9920 ?FUndo@TUND@@UAEHPAVDOCB@@@Z 004ba920 f engine:tbox.obj - 0001:000b99b0 ?PtuncNew@TUNC@@SGPAV1@XZ 004ba9b0 f engine:tbox.obj - 0001:000b99f0 ??1TUNC@@UAE@XZ 004ba9f0 f engine:tbox.obj - 0001:000b9a00 ?FDo@TUNC@@UAEHPAVDOCB@@@Z 004baa00 f engine:tbox.obj - 0001:000b9ab0 ?FUndo@TUNC@@UAEHPAVDOCB@@@Z 004baab0 f engine:tbox.obj - 0001:000b9ac0 ??1TCLP@@UAE@XZ 004baac0 f engine:tbox.obj - 0001:000b9af0 ?PtclpNew@TCLP@@SGPAV1@PAVTBOX@@@Z 004baaf0 f engine:tbox.obj - 0001:000b9b30 ?FPaste@TCLP@@QAEHPAVSCEN@@@Z 004bab30 f engine:tbox.obj - 0001:000b9d50 ??_GTBXB@@UAEPAXI@Z 004bad50 f engine:tbox.obj - 0001:000b9d50 ??_ETBXB@@UAEPAXI@Z 004bad50 f engine:tbox.obj - 0001:000b9d70 ??_GTBXG@@EAEPAXI@Z 004bad70 f engine:tbox.obj - 0001:000b9d70 ??_ETBXG@@EAEPAXI@Z 004bad70 f engine:tbox.obj - 0001:000b9d90 ??_ETBOX@@UAEPAXI@Z 004bad90 f engine:tbox.obj - 0001:000b9d90 ??_GTBOX@@UAEPAXI@Z 004bad90 f engine:tbox.obj - 0001:000b9db0 ??_ETCLP@@UAEPAXI@Z 004badb0 f engine:tbox.obj - 0001:000b9db0 ??_GTCLP@@UAEPAXI@Z 004badb0 f engine:tbox.obj - 0001:000b9dd0 ??_GTUNT@@UAEPAXI@Z 004badd0 f engine:tbox.obj - 0001:000b9dd0 ??_ETUNT@@UAEPAXI@Z 004badd0 f engine:tbox.obj - 0001:000b9df0 ??_GTUNS@@UAEPAXI@Z 004badf0 f engine:tbox.obj - 0001:000b9df0 ??_ETUNS@@UAEPAXI@Z 004badf0 f engine:tbox.obj - 0001:000b9e10 ??_ETUNH@@UAEPAXI@Z 004bae10 f engine:tbox.obj - 0001:000b9e10 ??_GTUNH@@UAEPAXI@Z 004bae10 f engine:tbox.obj - 0001:000b9e30 ??_ETUND@@UAEPAXI@Z 004bae30 f engine:tbox.obj - 0001:000b9e30 ??_GTUND@@UAEPAXI@Z 004bae30 f engine:tbox.obj - 0001:000b9e50 ??_ETUNC@@UAEPAXI@Z 004bae50 f engine:tbox.obj - 0001:000b9e50 ??_GTUNC@@UAEPAXI@Z 004bae50 f engine:tbox.obj - 0001:000b9e70 ?Pcmm@TBXG@@MAEPAUCMM@CMH@@XZ 004bae70 f engine:tbox.obj - 0001:000b9e80 ?PddgNew@TBOX@@UAEPAVDDG@@PAUGCB@@@Z 004bae80 f engine:tbox.obj - 0001:000b9e90 ?FWouldBe@ACTR@@SGHJ@Z 004bae90 f engine:actor.obj - 0001:000b9eb0 ?FIs@ACTR@@UAEHJ@Z 004baeb0 f engine:actor.obj - 0001:000b9ec0 ?Cls@ACTR@@UAEJXZ 004baec0 f engine:actor.obj - 0001:000b9ed0 ??0ACTR@@IAE@XZ 004baed0 f engine:actor.obj - 0001:000b9f10 ??1ACTR@@UAE@XZ 004baf10 f engine:actor.obj - 0001:000b9f90 ?_FInit@ACTR@@IAEHPAUTAG@@@Z 004baf90 f engine:actor.obj - 0001:000ba010 ?_InitXfrm@ACTR@@IAEXXZ 004bb010 f engine:actor.obj - 0001:000ba070 ?_InitXfrmRot@ACTR@@IAEXPAUbr_matrix34@@@Z 004bb070 f engine:actor.obj - 0001:000ba080 ?PactrNew@ACTR@@SGPAV1@PAUTAG@@@Z 004bb080 f engine:actor.obj - 0001:000ba0d0 ?_FCreateGroups@ACTR@@IAEHXZ 004bb0d0 f engine:actor.obj - 0001:000ba140 ?SetPscen@ACTR@@QAEXPAVSCEN@@@Z 004bb140 f engine:actor.obj - 0001:000ba180 ?_InitState@ACTR@@IAEXXZ 004bb180 f engine:actor.obj - 0001:000ba1b0 ?_SetStateRewound@ACTR@@IAEXXZ 004bb1b0 f engine:actor.obj - 0001:000ba240 ?FGotoFrame@ACTR@@QAEHJPAH@Z 004bb240 f engine:actor.obj - 0001:000ba480 ?_FQuickBackupToFrm@ACTR@@IAEHJPAH@Z 004bb480 f engine:actor.obj - 0001:000ba610 ?_FGetRtelBack@ACTR@@IAEHPAURTEL@@H@Z 004bb610 f engine:actor.obj - 0001:000ba780 ?_FDoFrm@ACTR@@IAEHHPAH0@Z 004bb780 f engine:actor.obj - 0001:000bab20 ?FReplayFrame@ACTR@@QAEHJ@Z 004bbb20 f engine:actor.obj - 0001:000baba0 ?_FGetStatic@ACTR@@IAEHJPAH@Z 004bbba0 f engine:actor.obj - 0001:000bac00 ?_FIsDoneAevSub@ACTR@@IAEHJURTEL@@@Z 004bbc00 f engine:actor.obj - 0001:000baca0 ?_FIsAddNow@ACTR@@IAEHJ@Z 004bbca0 f engine:actor.obj - 0001:000bacf0 ?_FGetDwrPlay@ACTR@@IAEHPAJ@Z 004bbcf0 f engine:actor.obj - 0001:000bad50 ?_FGetDwrRecord@ACTR@@IAEHPAJ@Z 004bbd50 f engine:actor.obj - 0001:000bada0 ?_FDoAevCur@ACTR@@IAEHXZ 004bbda0 f engine:actor.obj - 0001:000badd0 ?_FDoAevCore@ACTR@@IAEHJ@Z 004bbdd0 f engine:actor.obj - 0001:000bb260 ?_FAddDoAev@ACTR@@IAEHJJPAX@Z 004bc260 f engine:actor.obj - 0001:000bb380 ?_MergeAev@ACTR@@IAEXJJPAJ@Z 004bc380 f engine:actor.obj - 0001:000bb6c0 ?FSetActionCore@ACTR@@QAEHJJH@Z 004bc6c0 f engine:actor.obj - 0001:000bb870 ?_Hide@ACTR@@IAEXXZ 004bc870 f engine:actor.obj - 0001:000bb890 ?_FInsertGgRpt@ACTR@@IAEHJPAURPT@@J@Z 004bc890 f engine:actor.obj - 0001:000bb950 ?FSetStep@ACTR@@QAEHJ@Z 004bc950 f engine:actor.obj - 0001:000bb980 ?_GetNewOrigin@ACTR@@IAEXPAJ00@Z 004bc980 f engine:actor.obj - 0001:000bba80 ?FAddOnStageCore@ACTR@@QAEHXZ 004bca80 f engine:actor.obj - 0001:000bbc90 ?_FAddAevFromPrev@ACTR@@IAEHJK@Z 004bcc90 f engine:actor.obj - 0001:000bbfd0 ?_FAddAevFromLater@ACTR@@IAEHXZ 004bcfd0 f engine:actor.obj - 0001:000bc1e0 ?_FFindPrevAevAet@ACTR@@IAEHJJPAJ@Z 004bd1e0 f engine:actor.obj - 0001:000bc240 ?_FFindNextAevAet@ACTR@@IAEHJJPAJ@Z 004bd240 f engine:actor.obj - 0001:000bc290 ?_FindAevLastSub@ACTR@@IAEXJJPAJ@Z 004bd290 f engine:actor.obj - 0001:000bc2e0 ?FRemFromStageCore@ACTR@@QAEHXZ 004bd2e0 f engine:actor.obj - 0001:000bc350 ?_FDeleteEntireSubrte@ACTR@@IAEHXZ 004bd350 f engine:actor.obj - 0001:000bc400 ?_DelAddFrame@ACTR@@IAEXJJ@Z 004bd400 f engine:actor.obj - 0001:000bc480 ?FSetCostumeCore@ACTR@@QAEHJPAUTAG@@JH@Z 004bd480 f engine:actor.obj - 0001:000bc550 ?_FFreeze@ACTR@@IAEHXZ 004bd550 f engine:actor.obj - 0001:000bc570 ?_FUnfreeze@ACTR@@IAEHXZ 004bd570 f engine:actor.obj - 0001:000bc590 ?SetAddOrient@ACTR@@QAEXGGGKPAUXYZ@@@Z 004bd590 f engine:actor.obj - 0001:000bc6c0 ?_BraAvgAngle@ACTR@@IAEGGGJ@Z 004bd6c0 f engine:actor.obj - 0001:000bc740 ?FRotate@ACTR@@QAEHGGGH@Z 004bd740 f engine:actor.obj - 0001:000bc860 ?FNormalizeCore@ACTR@@QAEHK@Z 004bd860 f engine:actor.obj - 0001:000bc9d0 ?FScale@ACTR@@QAEHJ@Z 004bd9d0 f engine:actor.obj - 0001:000bcae0 ?FSoonerLater@ACTR@@QAEHJ@Z 004bdae0 f engine:actor.obj - 0001:000bcc80 ?FPull@ACTR@@QAEHJJJ@Z 004bdc80 f engine:actor.obj - 0001:000bce20 ?FTweakRoute@ACTR@@QAEHJJJK@Z 004bde20 f engine:actor.obj - 0001:000bcec0 ?_UpdateXyzRte@ACTR@@IAEXXZ 004bdec0 f engine:actor.obj - 0001:000bcee0 ?FMoveRoute@ACTR@@QAEHJJJPAHK@Z 004bdee0 f engine:actor.obj - 0001:000bd400 ?_LoadAddOrien@ACTR@@IAEXPAUAEVADD@@H@Z 004be400 f engine:actor.obj - 0001:000bd480 ?_PrepXfrmFill@ACTR@@IAEXJPAXJJJK@Z 004be480 f engine:actor.obj - 0001:000bd710 ?_FInsertAev@ACTR@@IAEHJJPAX0H@Z 004be710 f engine:actor.obj - 0001:000bd7f0 ?_RemoveAev@ACTR@@IAEXJH@Z 004be7f0 f engine:actor.obj - 0001:000bd8d0 ?_PrepActnFill@ACTR@@IAEXJJJK@Z 004be8d0 f engine:actor.obj - 0001:000bd9f0 ?_PrepCostFill@ACTR@@IAEXJPAUAEVCOST@@@Z 004be9f0 f engine:actor.obj - 0001:000bdcf0 ?_AdjustAevForRteIns@ACTR@@IAEXJJ@Z 004becf0 f engine:actor.obj - 0001:000bdda0 ?_AdjustAevForRteDel@ACTR@@IAEXJJ@Z 004beda0 f engine:actor.obj - 0001:000bde40 ?_AdvanceRtel@ACTR@@IAEXJPAURTEL@@JJPAH@Z 004bee40 f engine:actor.obj - 0001:000bdf80 ?_GetXyzFromRtel@ACTR@@IAEXPAURTEL@@PAUXYZ@@@Z 004bef80 f engine:actor.obj - 0001:000be110 ?_GetXyzOnLine@ACTR@@IAEXPAUXYZ@@0J0@Z 004bf110 f engine:actor.obj - 0001:000be180 ?_PositionBody@ACTR@@IAEXPAUXYZ@@@Z 004bf180 f engine:actor.obj - 0001:000be1d0 ?_MatrixRotUpdate@ACTR@@IAEXPAUXYZ@@PAUbr_matrix34@@@Z 004bf1d0 f engine:actor.obj - 0001:000be420 ?_CalcRteOrient@ACTR@@IAEXPAUbr_matrix34@@PAG11PAK@Z 004bf420 f engine:actor.obj - 0001:000be530 ?_UpdateXyzTan@ACTR@@IAEXPAUXYZ@@JJ@Z 004bf530 f engine:actor.obj - 0001:000be970 ?_ApplyRotFromVec@ACTR@@IAEXPAUXYZ@@PAUbr_matrix34@@PAG22PAK@Z 004bf970 f engine:actor.obj - 0001:000bedc0 ?FGetLifetime@ACTR@@QAEHPAJ0@Z 004bfdc0 f engine:actor.obj - 0001:000bee30 ?_FComputeLifetime@ACTR@@IAEHPAJ@Z 004bfe30 f engine:actor.obj - 0001:000bf280 ?_FIsStalled@ACTR@@IAEHJPAURTEL@@PAJ@Z 004c0280 f engine:actor.obj - 0001:000bf320 ?FIsRecordValid@ACTR@@QAEHJJJK@Z 004c0320 f engine:actor.obj - 0001:000bf380 ?FBeginRecord@ACTR@@QAEHKHPAV1@@Z 004c0380 f engine:actor.obj - 0001:000bf5a0 ?FRecordMove@ACTR@@QAEHJJJKKPAH0PAV1@@Z 004c05a0 f engine:actor.obj - 0001:000bf970 ?FEndRecord@ACTR@@QAEHHPAV1@@Z 004c0970 f engine:actor.obj - 0001:000bfd80 ?DeleteFwdCore@ACTR@@QAEXHPAHJ@Z 004c0d80 f engine:actor.obj - 0001:000bfe70 ?_DeleteFwdCore@ACTR@@IAEXHPAHJ@Z 004c0e70 f engine:actor.obj - 0001:000c0000 ?_SaveCurPathOrien@ACTR@@IAEXXZ 004c1000 f engine:actor.obj - 0001:000c0070 ?DeleteBackCore@ACTR@@QAEXPAH@Z 004c1070 f engine:actor.obj - 0001:000c03c0 ?_TruncateSubRte@ACTR@@IAEXJ@Z 004c13c0 f engine:actor.obj - 0001:000c04c0 ?FPtIn@ACTR@@QAEHJJPAJ@Z 004c14c0 f engine:actor.obj - 0001:000c04e0 ?FMustRender@ACTR@@QAEHJ@Z 004c14e0 f engine:actor.obj - 0001:000c05a0 ?GetName@ACTR@@QAEXPAVSTN@@@Z 004c15a0 f engine:actor.obj - 0001:000c05d0 ?GetXyzWorld@ACTR@@QAEXPAJ00@Z 004c15d0 f engine:actor.obj - 0001:000c0630 ?Hilite@ACTR@@QAEXXZ 004c1630 f engine:actor.obj - 0001:000c0660 ?FChangeTagTmpl@ACTR@@QAEHPAUTAG@@@Z 004c1660 f engine:actor.obj - 0001:000c07b0 ??_GACTR@@UAEPAXI@Z 004c17b0 f engine:actor.obj - 0001:000c07b0 ??_EACTR@@UAEPAXI@Z 004c17b0 f engine:actor.obj - 0001:000c07d0 ?FSetSnd@ACTR@@QAEHPAUTAG@@HHHJJ@Z 004c17d0 f engine:actrsnd.obj - 0001:000c08a0 ?FSetSndCore@ACTR@@QAEHPAUTAG@@HHHJJ@Z 004c18a0 f engine:actrsnd.obj - 0001:000c0aa0 ?_FEnqueueSnd@ACTR@@IAEHJ@Z 004c1aa0 f engine:actrsnd.obj - 0001:000c0ba0 ?_FEnqueueSmmInMsq@ACTR@@IAEHXZ 004c1ba0 f engine:actrsnd.obj - 0001:000c0ce0 ?_FInsertSmm@ACTR@@IAEHJ@Z 004c1ce0 f engine:actrsnd.obj - 0001:000c0d90 ?_FRemoveAevMm@ACTR@@IAEHJ@Z 004c1d90 f engine:actrsnd.obj - 0001:000c0e20 ?_FAddAevDefMm@ACTR@@IAEHJ@Z 004c1e20 f engine:actrsnd.obj - 0001:000c0ef0 ?FSetVlmSnd@ACTR@@QAEHJHJ@Z 004c1ef0 f engine:actrsnd.obj - 0001:000c10b0 ?FQuerySnd@ACTR@@QAEHJHPAPAVGL@@PAJPAH@Z 004c20b0 f engine:actrsnd.obj - 0001:000c12c0 ?FDeleteSndCore@ACTR@@QAEHJH@Z 004c22c0 f engine:actrsnd.obj - 0001:000c1430 ?FSoundInFrm@ACTR@@QAEHXZ 004c2430 f engine:actrsnd.obj - 0001:000c1600 ?FWouldBe@SREC@@SGHJ@Z 004c2600 f engine:srec.obj - 0001:000c1620 ?FIs@SREC@@UAEHJ@Z 004c2620 f engine:srec.obj - 0001:000c1630 ?Cls@SREC@@UAEJXZ 004c2630 f engine:srec.obj - 0001:000c1640 ?PsrecNew@SREC@@SGPAV1@JJJK@Z 004c2640 f engine:srec.obj - 0001:000c16a0 ?_FInit@SREC@@IAEHJJJK@Z 004c26a0 f engine:srec.obj - 0001:000c17f0 ??1SREC@@UAE@XZ 004c27f0 f engine:srec.obj - 0001:000c1870 ?_FOpenRecord@SREC@@IAEHXZ 004c2870 f engine:srec.obj - 0001:000c1920 ?_FCloseRecord@SREC@@IAEHXZ 004c2920 f engine:srec.obj - 0001:000c1960 ?_UpdateStatus@SREC@@IAEXXZ 004c2960 f engine:srec.obj - 0001:000c1b00 ?_WaveInProc@SREC@@KGXPAXIKKK@Z 004c2b00 f engine:srec.obj - 0001:000c1b20 ?FStart@SREC@@QAEHXZ 004c2b20 f engine:srec.obj - 0001:000c1b70 ?FStop@SREC@@QAEHXZ 004c2b70 f engine:srec.obj - 0001:000c1bb0 ?FPlay@SREC@@QAEHXZ 004c2bb0 f engine:srec.obj - 0001:000c1c30 ?FRecording@SREC@@QAEHXZ 004c2c30 f engine:srec.obj - 0001:000c1c40 ?FPlaying@SREC@@QAEHXZ 004c2c40 f engine:srec.obj - 0001:000c1c50 ?FSave@SREC@@QAEHPAVFNI@@@Z 004c2c50 f engine:srec.obj - 0001:000c1ce0 ??_GSREC@@UAEPAXI@Z 004c2ce0 f engine:srec.obj - 0001:000c1ce0 ??_ESREC@@UAEPAXI@Z 004c2ce0 f engine:srec.obj - 0001:000c1e50 ?FWouldBe@TAGL@@SGHJ@Z 004c2e50 f engine:tagl.obj - 0001:000c1e70 ?FIs@TAGL@@UAEHJ@Z 004c2e70 f engine:tagl.obj - 0001:000c1e80 ?Cls@TAGL@@UAEJXZ 004c2e80 f engine:tagl.obj - 0001:000c1e90 ?PtaglNew@TAGL@@SGPAV1@XZ 004c2e90 f engine:tagl.obj - 0001:000c1ee0 ?_FInit@TAGL@@IAEHXZ 004c2ee0 f engine:tagl.obj - 0001:000c1f00 ??1TAGL@@UAE@XZ 004c2f00 f engine:tagl.obj - 0001:000c1f30 ?Ctag@TAGL@@QAEJXZ 004c2f30 f engine:tagl.obj - 0001:000c1f40 ?GetTag@TAGL@@QAEXJPAUTAG@@@Z 004c2f40 f engine:tagl.obj - 0001:000c1f80 ?_FFindTag@TAGL@@IAEHPAUTAG@@PAJ@Z 004c2f80 f engine:tagl.obj - 0001:000c2040 ?FInsertTag@TAGL@@QAEHPAUTAG@@H@Z 004c3040 f engine:tagl.obj - 0001:000c20f0 ?FInsertChild@TAGL@@QAEHPAUTAG@@KK@Z 004c30f0 f engine:tagl.obj - 0001:000c21c0 ?FCacheTags@TAGL@@QAEHXZ 004c31c0 f engine:tagl.obj - 0001:000c22c0 ??_ETAGL@@UAEPAXI@Z 004c32c0 f engine:tagl.obj - 0001:000c22c0 ??_GTAGL@@UAEPAXI@Z 004c32c0 f engine:tagl.obj - 0001:000c2430 ?FWrite@ACTR@@QAEHPAVCFL@@KK@Z 004c3430 f engine:actrsave.obj - 0001:000c2760 ?PactrRead@ACTR@@SGPAV1@PAVCRF@@K@Z 004c3760 f engine:actrsave.obj - 0001:000c28b0 ?_FReadActf@@YGHPAVBLCK@@PAUACTF@@@Z 004c38b0 f engine:actrsave.obj - 0001:000c2970 ?_FReadActor@ACTR@@IAEHPAVCFL@@K@Z 004c3970 f engine:actrsave.obj - 0001:000c2a90 ?FAdjustAridOnFile@ACTR@@SGHPAVCFL@@KJ@Z 004c3a90 f engine:actrsave.obj - 0001:000c2b20 ?_FReadRoute@ACTR@@IAEHPAVCFL@@K@Z 004c3b20 f engine:actrsave.obj - 0001:000c2bc0 ?_FReadEvents@ACTR@@IAEHPAVCFL@@K@Z 004c3bc0 f engine:actrsave.obj - 0001:000c2c50 ?_SwapBytesPggaev@ACTR@@KGXPAVGG@@@Z 004c3c50 f engine:actrsave.obj - 0001:000c2d20 ?_FOpenTags@ACTR@@IAEHPAVCRF@@@Z 004c3d20 f engine:actrsave.obj - 0001:000c2df0 ?_CloseTags@ACTR@@IAEXXZ 004c3df0 f engine:actrsave.obj - 0001:000c2e60 ?PgltagFetch@ACTR@@SGPAVGL@@PAVCFL@@KPAH@Z 004c3e60 f engine:actrsave.obj - 0001:000c30f0 ?_FIsIaevTag@ACTR@@KGHPAVGG@@JPAPAUTAG@@PAPAUAEV@@@Z 004c40f0 f engine:actrsave.obj - 0001:000c3310 ?FWouldBe@MODL@@SGHJ@Z 004c4310 f engine:modl.obj - 0001:000c3330 ?FIs@MODL@@UAEHJ@Z 004c4330 f engine:modl.obj - 0001:000c3340 ?Cls@MODL@@UAEJXZ 004c4340 f engine:modl.obj - 0001:000c3350 ?FReadModl@MODL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004c4350 f engine:modl.obj - 0001:000c33e0 ?_FInit@MODL@@IAEHPAVBLCK@@@Z 004c43e0 f engine:modl.obj - 0001:000c3780 ?PmodlFromBmdl@MODL@@SGPAV1@PAUbr_model@@@Z 004c4780 f engine:modl.obj - 0001:000c3790 ??1MODL@@UAE@XZ 004c4790 f engine:modl.obj - 0001:000c37d0 ??_GMODL@@UAEPAXI@Z 004c47d0 f engine:modl.obj - 0001:000c37d0 ??_EMODL@@UAEPAXI@Z 004c47d0 f engine:modl.obj - 0001:000c3940 ?FWouldBe@TDF@@SGHJ@Z 004c4940 f engine:tdf.obj - 0001:000c3960 ?FIs@TDF@@UAEHJ@Z 004c4960 f engine:tdf.obj - 0001:000c3970 ?Cls@TDF@@UAEJXZ 004c4970 f engine:tdf.obj - 0001:000c3980 ?FReadTdf@TDF@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004c4980 f engine:tdf.obj - 0001:000c3a20 ?_FInit@TDF@@IAEHPAVBLCK@@@Z 004c4a20 f engine:tdf.obj - 0001:000c3ba0 ??1TDF@@UAE@XZ 004c4ba0 f engine:tdf.obj - 0001:000c3be0 ?PmodlFetch@TDF@@QAEPAVMODL@@K@Z 004c4be0 f engine:tdf.obj - 0001:000c3c70 ?DxrChar@TDF@@QAEJJ@Z 004c4c70 f engine:tdf.obj - 0001:000c3c80 ?DyrChar@TDF@@QAEJJ@Z 004c4c80 f engine:tdf.obj - 0001:000c3ca0 ??_GTDF@@UAEPAXI@Z 004c4ca0 f engine:tdf.obj - 0001:000c3ca0 ??_ETDF@@UAEPAXI@Z 004c4ca0 f engine:tdf.obj - 0001:000c3e10 __global_unwind2 004c4e10 f LIBC:exsup.obj - 0001:000c3e52 __local_unwind2 004c4e52 f LIBC:exsup.obj - 0001:000c3eac __abnormal_termination 004c4eac f LIBC:exsup.obj - 0001:000c3ed8 __except_handler3 004c4ed8 f LIBC:exsup3.obj - 0001:000c3f86 __seh_longjmp_unwind@4 004c4f86 f LIBC:exsup3.obj - 0001:000c3fa1 __onexit 004c4fa1 f LIBC:onexit.obj - 0001:000c4017 _atexit 004c5017 f LIBC:onexit.obj - 0001:000c4029 ___onexitinit 004c5029 f LIBC:onexit.obj - 0001:000c405f __purecall 004c505f f LIBC:purevirt.obj - 0001:000c406a ??3@YAXPAX@Z 004c506a f LIBC:delete.obj - 0001:000c4077 ??2@YAPAXI@Z 004c5077 f LIBC:new.obj - 0001:000c4088 __ftol 004c5088 f LIBC:ftol.obj - 0001:000c40b0 _fdiv_main_routine 004c50b0 f LIBC:adj_fdiv.obj - 0001:000c41c7 __adj_fdiv_r 004c51c7 f LIBC:adj_fdiv.obj - 0001:000c4666 _fdivp_sti_st 004c5666 f LIBC:adj_fdiv.obj - 0001:000c4679 _fdivrp_sti_st 004c5679 f LIBC:adj_fdiv.obj - 0001:000c468c __adj_fdiv_m32 004c568c f LIBC:adj_fdiv.obj - 0001:000c46d8 __adj_fdiv_m64 004c56d8 f LIBC:adj_fdiv.obj - 0001:000c4724 __adj_fdiv_m16i 004c5724 f LIBC:adj_fdiv.obj - 0001:000c4758 __adj_fdiv_m32i 004c5758 f LIBC:adj_fdiv.obj - 0001:000c478c __adj_fdivr_m32 004c578c f LIBC:adj_fdiv.obj - 0001:000c47d8 __adj_fdivr_m64 004c57d8 f LIBC:adj_fdiv.obj - 0001:000c4824 __adj_fdivr_m16i 004c5824 f LIBC:adj_fdiv.obj - 0001:000c4858 __adj_fdivr_m32i 004c5858 f LIBC:adj_fdiv.obj - 0001:000c488c __safe_fdiv 004c588c f LIBC:adj_fdiv.obj - 0001:000c48a1 __safe_fdivr 004c58a1 f LIBC:adj_fdiv.obj - 0001:000c48b6 __fprem_common 004c58b6 f LIBC:adj_fdiv.obj - 0001:000c4abc __adj_fprem 004c5abc f LIBC:adj_fdiv.obj - 0001:000c4b6e __fprem1_common 004c5b6e f LIBC:adj_fdiv.obj - 0001:000c4d74 __adj_fprem1 004c5d74 f LIBC:adj_fdiv.obj - 0001:000c4e29 __safe_fprem 004c5e29 f LIBC:adj_fdiv.obj - 0001:000c4e2f __safe_fprem1 004c5e2f f LIBC:adj_fdiv.obj - 0001:000c4e35 __adj_fpatan 004c5e35 f LIBC:adj_fdiv.obj - 0001:000c4e38 __adj_fptan 004c5e38 f LIBC:adj_fdiv.obj - 0001:000c4e3b __fpmath 004c5e3b f LIBC:fpinit.obj - 0001:000c4e4f __fpclear 004c5e4f f LIBC:fpinit.obj - 0001:000c4e50 __cfltcvt_init 004c5e50 f LIBC:fpinit.obj - 0001:000c4e88 _WinMainCRTStartup 004c5e88 f LIBC:wincrt0.obj - 0001:000c4fee __amsg_exit 004c5fee f LIBC:wincrt0.obj - 0001:000c5020 ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 004c6020 f LIBC:trnsctrl.obj - 0001:000c5046 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 004c6046 f LIBC:trnsctrl.obj - 0001:000c507b ?_CallMemberFunction0@@YGXPAX0@Z 004c607b f LIBC:trnsctrl.obj - 0001:000c5082 ?_CallMemberFunction1@@YGXPAX00@Z 004c6082 f LIBC:trnsctrl.obj - 0001:000c5089 ?_CallMemberFunction2@@YGXPAX00H@Z 004c6089 f LIBC:trnsctrl.obj - 0001:000c5090 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 004c6090 f LIBC:trnsctrl.obj - 0001:000c50de ___CxxFrameHandler 004c60de f LIBC:trnsctrl.obj - 0001:000c5115 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 004c6115 f LIBC:trnsctrl.obj - 0001:000c518d ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 004c618d f LIBC:trnsctrl.obj - 0001:000c52c4 _pow 004c62c4 LIBC:87ctran.obj - 0001:000c52ce _log 004c62ce LIBC:87ctran.obj - 0001:000c52d8 _log10 004c62d8 LIBC:87ctran.obj - 0001:000c52df _exp 004c62df LIBC:87ctran.obj - 0001:000c52e6 __CIpow 004c62e6 LIBC:87ctran.obj - 0001:000c52f0 __CIlog 004c62f0 LIBC:87ctran.obj - 0001:000c52fa __CIlog10 004c62fa LIBC:87ctran.obj - 0001:000c5301 __CIexp 004c6301 LIBC:87ctran.obj - 0001:000c5308 _memmove 004c6308 f LIBC:memmove.obj - 0001:000c5456 _sprintf 004c6456 f LIBC:sprintf.obj - 0001:000c54b0 _strcat 004c64b0 f LIBC:strcat.obj - 0001:000c54b4 _strcpy 004c64b4 LIBC:strcat.obj - 0001:000c5541 _vsprintf 004c6541 f LIBC:vsprintf.obj - 0001:000c559c _strlen 004c659c f LIBC:strlen.obj - 0001:000c55ec _strcmp 004c65ec f LIBC:strcmp.obj - 0001:000c5670 _memset 004c6670 f LIBC:memset.obj - 0001:000c56b4 _sqrt 004c66b4 LIBC:87csqrt.obj - 0001:000c56be __CIsqrt 004c66be LIBC:87csqrt.obj - 0001:000c56c8 _fabs 004c66c8 f LIBC:fabs.obj - 0001:000c5772 __cinit 004c6772 f LIBC:crt0dat.obj - 0001:000c57a2 _exit 004c67a2 f LIBC:crt0dat.obj - 0001:000c57b3 __exit 004c67b3 f LIBC:crt0dat.obj - 0001:000c5863 _realloc 004c6863 f LIBC:realloc.obj - 0001:000c59b5 __msize 004c69b5 f LIBC:msize.obj - 0001:000c59c6 _malloc 004c69c6 f LIBC:malloc.obj - 0001:000c59d9 __nh_malloc 004c69d9 f LIBC:malloc.obj - 0001:000c5a98 __heap_split_block 004c6a98 f LIBC:malloc.obj - 0001:000c5add _free 004c6add f LIBC:free.obj - 0001:000c5b45 __setdefaultprecision 004c6b45 f LIBC:fp8.obj - 0001:000c5b58 _ms_p5_test_fdiv 004c6b58 f LIBC:testfdiv.obj - 0001:000c5b9e _ms_p5_mp_test_fdiv 004c6b9e f LIBC:testfdiv.obj - 0001:000c5c71 __forcdecpt 004c6c71 f LIBC:cvt.obj - 0001:000c5cd6 __cropzeros 004c6cd6 f LIBC:cvt.obj - 0001:000c5d35 __positive 004c6d35 f LIBC:cvt.obj - 0001:000c5d4a __fassign 004c6d4a f LIBC:cvt.obj - 0001:000c5d8d __cftoe 004c6d8d f LIBC:cvt.obj - 0001:000c5ee0 __cftof 004c6ee0 f LIBC:cvt.obj - 0001:000c5ffc __cftog 004c6ffc f LIBC:cvt.obj - 0001:000c60a4 __cfltcvt 004c70a4 f LIBC:cvt.obj - 0001:000c6120 __XcptFilter 004c7120 f LIBC:winxfltr.obj - 0001:000c62ab __ismbblead 004c72ab f LIBC:ismbbyte.obj - 0001:000c62ee __setenvp 004c72ee f LIBC:stdenvp.obj - 0001:000c63b9 __setargv 004c73b9 f LIBC:stdargv.obj - 0001:000c66b7 __setmbcp 004c76b7 f LIBC:mbctype.obj - 0001:000c6845 ___initmbctable 004c7845 f LIBC:mbctype.obj - 0001:000c6850 __ioinit 004c7850 f LIBC:ioinit.obj - 0001:000c693e __heap_init 004c793e f LIBC:heapinit.obj - 0001:000c69bb ___getempty 004c79bb f LIBC:heapinit.obj - 0001:000c69e0 __NMSG_WRITE 004c79e0 f LIBC:crt0msg.obj - 0001:000c6a38 __GET_RTERRMSG 004c7a38 f LIBC:crt0msg.obj - 0001:000c6a6d ___InternalCxxFrameHandler 004c7a6d f LIBC:frame.obj - 0001:000c6ee0 ___FrameUnwindToState 004c7ee0 f LIBC:frame.obj - 0001:000c73df ?terminate@@YAXXZ 004c83df f LIBC:hooks.obj - 0001:000c7451 ?_inconsistency@@YAXXZ 004c8451 f LIBC:hooks.obj - 0001:000c74d5 __fFEXP 004c84d5 LIBC:87tran.obj - 0001:000c753c __rtinfpopse 004c853c LIBC:87tran.obj - 0001:000c753e __rtinfnpopse 004c853e LIBC:87tran.obj - 0001:000c754e __fFLN 004c854e LIBC:87tran.obj - 0001:000c7603 __rtinfpop 004c8603 LIBC:87tran.obj - 0001:000c7605 __rtinfnpop 004c8605 LIBC:87tran.obj - 0001:000c7622 __ffexpm1 004c8622 LIBC:87tran.obj - 0001:000c76cc __cintrindisp2 004c86cc f LIBC:87cdisp.obj - 0001:000c770a __cintrindisp1 004c870a f LIBC:87cdisp.obj - 0001:000c7740 __ctrandisp2 004c8740 f LIBC:87cdisp.obj - 0001:000c78b1 __ctrandisp1 004c88b1 f LIBC:87cdisp.obj - 0001:000c78dd __fload 004c88dd f LIBC:87cdisp.obj - 0001:000c7919 __flsbuf 004c8919 f LIBC:_flsbuf.obj - 0001:000c7a25 __output 004c8a25 f LIBC:output.obj - 0001:000c8367 __handle_qnan1 004c9367 f LIBC:fpexcept.obj - 0001:000c83b4 __except1 004c93b4 f LIBC:fpexcept.obj - 0001:000c844b __raise_exc 004c944b f LIBC:fpexcept.obj - 0001:000c875d __handle_exc 004c975d f LIBC:fpexcept.obj - 0001:000c89b5 __umatherr 004c99b5 f LIBC:fpexcept.obj - 0001:000c8a49 __set_errno 004c9a49 f LIBC:fpexcept.obj - 0001:000c8a9c __errcode 004c9a9c f LIBC:fpexcept.obj - 0001:000c8ad2 __statfp 004c9ad2 f LIBC:fpctrl.obj - 0001:000c8ae3 __clrfp 004c9ae3 f LIBC:fpctrl.obj - 0001:000c8af5 __ctrlfp 004c9af5 f LIBC:fpctrl.obj - 0001:000c8b25 __set_statfp 004c9b25 f LIBC:fpctrl.obj - 0001:000c8b7f __set_exp 004c9b7f f LIBC:util.obj - 0001:000c8bb4 __sptype 004c9bb4 f LIBC:util.obj - 0001:000c8c19 __decomp 004c9c19 f LIBC:util.obj - 0001:000c8ce7 __heap_abort 004c9ce7 f LIBC:hpabort.obj - 0001:000c8cf2 __heap_grow 004c9cf2 f LIBC:heapgrow.obj - 0001:000c8ddb __heap_grow_region 004c9ddb f LIBC:heapgrow.obj - 0001:000c8e88 __heap_free_region 004c9e88 f LIBC:heapgrow.obj - 0001:000c8ec2 __heap_search 004c9ec2 f LIBC:heapsrch.obj - 0001:000c8fb2 __control87 004c9fb2 f LIBC:ieee87.obj - 0001:000c8fed __controlfp 004c9fed f LIBC:ieee87.obj - 0001:000c9124 __fptrap 004ca124 f LIBC:crt0fp.obj - 0001:000c912f __isctype 004ca12f f LIBC:isctype.obj - 0001:000c91aa _tolower 004ca1aa f LIBC:tolower.obj - 0001:000c9276 __ZeroTail 004ca276 f LIBC:intrncvt.obj - 0001:000c92d6 __IncMan 004ca2d6 f LIBC:intrncvt.obj - 0001:000c9337 __RoundMan 004ca337 f LIBC:intrncvt.obj - 0001:000c93d4 __CopyMan 004ca3d4 f LIBC:intrncvt.obj - 0001:000c93f1 __FillZeroMan 004ca3f1 f LIBC:intrncvt.obj - 0001:000c93fd __IsZeroMan 004ca3fd f LIBC:intrncvt.obj - 0001:000c941b __ShrMan 004ca41b f LIBC:intrncvt.obj - 0001:000c94c6 __ld12cvt 004ca4c6 f LIBC:intrncvt.obj - 0001:000c9662 __ld12tod 004ca662 f LIBC:intrncvt.obj - 0001:000c9678 __ld12tof 004ca678 f LIBC:intrncvt.obj - 0001:000c968e __atodbl 004ca68e f LIBC:intrncvt.obj - 0001:000c96bf __atoflt 004ca6bf f LIBC:intrncvt.obj - 0001:000c96f0 __fptostr 004ca6f0 f LIBC:_fptostr.obj - 0001:000c976e __fltout 004ca76e f LIBC:cfout.obj - 0001:000c97d1 ___dtold 004ca7d1 f LIBC:cfout.obj - 0001:000c989b ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 004ca89b f LIBC:unhandld.obj - 0001:000c98f4 ?_ValidateRead@@YAHPBXI@Z 004ca8f4 f LIBC:validate.obj - 0001:000c9912 ?_ValidateWrite@@YAHPAXI@Z 004ca912 f LIBC:validate.obj - 0001:000c9930 ?_ValidateExecute@@YAHP6GHXZ@Z 004ca930 f LIBC:validate.obj - 0001:000c994a _abort 004ca94a f LIBC:abort.obj - 0001:000c996c __trandisp1 004ca96c f LIBC:87disp.obj - 0001:000c99d3 __trandisp2 004ca9d3 f LIBC:87disp.obj - 0001:000c9a5f __rttospopde 004caa5f LIBC:87disp.obj - 0001:000c9a64 __rttospop 004caa64 LIBC:87disp.obj - 0001:000c9a66 __rtnospop 004caa66 LIBC:87disp.obj - 0001:000c9a68 __rttosnpop 004caa68 LIBC:87disp.obj - 0001:000c9a69 __rtnospopde 004caa69 LIBC:87disp.obj - 0001:000c9a70 __rtzeropop 004caa70 LIBC:87disp.obj - 0001:000c9a72 __rtzeronpop 004caa72 LIBC:87disp.obj - 0001:000c9a77 __rtonepop 004caa77 LIBC:87disp.obj - 0001:000c9a79 __rtonenpop 004caa79 LIBC:87disp.obj - 0001:000c9a7e __tosnan1 004caa7e LIBC:87disp.obj - 0001:000c9aa9 __nosnan2 004caaa9 LIBC:87disp.obj - 0001:000c9aab __tosnan2 004caaab LIBC:87disp.obj - 0001:000c9ad3 __nan2 004caad3 LIBC:87disp.obj - 0001:000c9b12 __rtindfpop 004cab12 LIBC:87disp.obj - 0001:000c9b14 __rtindfnpop 004cab14 LIBC:87disp.obj - 0001:000c9b25 __rttosnpopde 004cab25 LIBC:87disp.obj - 0001:000c9b2f __rtchsifneg 004cab2f LIBC:87disp.obj - 0001:000c9b36 __powhlp 004cab36 f LIBC:powhlp.obj - 0001:000c9d23 __d_inttype 004cad23 f LIBC:powhlp.obj - 0001:000c9d75 __87except 004cad75 f LIBC:87except.obj - 0001:000c9e7f __write 004cae7f f LIBC:write.obj - 0001:000ca018 __lseek 004cb018 f LIBC:lseek.obj - 0001:000ca08d __getbuf 004cb08d f LIBC:_getbuf.obj - 0001:000ca0d8 __isatty 004cb0d8 f LIBC:isatty.obj - 0001:000ca0f2 _wctomb 004cb0f2 f LIBC:wctomb.obj - 0001:000ca16c __aulldiv 004cb16c f LIBC:ulldiv.obj - 0001:000ca1cc __aullrem 004cb1cc f LIBC:ullrem.obj - 0001:000ca236 __matherr 004cb236 f LIBC:matherr.obj - 0001:000ca239 __heap_addblock 004cb239 f LIBC:heapadd.obj - 0001:000ca4f0 ___crtGetStringTypeA 004cb4f0 f LIBC:aw_str.obj - 0001:000ca667 ___crtLCMapStringA 004cb667 f LIBC:aw_map.obj - 0001:000ca8c6 ___addl 004cb8c6 f LIBC:mantold.obj - 0001:000ca8e9 ___add_12 004cb8e9 f LIBC:mantold.obj - 0001:000ca947 ___shl_12 004cb947 f LIBC:mantold.obj - 0001:000ca985 ___shr_12 004cb985 f LIBC:mantold.obj - 0001:000ca9b8 ___mtold12 004cb9b8 f LIBC:mantold.obj - 0001:000caa9c ___strgtold12 004cba9c f LIBC:strgtold.obj - 0001:000cb0db _$I10_OUTPUT 004cc0db f LIBC:x10fout.obj - 0001:000cb411 _raise 004cc411 f LIBC:winsig.obj - 0001:000cb596 __frnd 004cc596 f LIBC:frnd.obj - 0001:000cb5ab __dosmaperr 004cc5ab f LIBC:dosmap.obj - 0001:000cb614 __alloc_osfhnd 004cc614 f LIBC:osfinfo.obj - 0001:000cb64a __set_osfhnd 004cc64a f LIBC:osfinfo.obj - 0001:000cb6b4 __free_osfhnd 004cc6b4 f LIBC:osfinfo.obj - 0001:000cb721 __get_osfhandle 004cc721 f LIBC:osfinfo.obj - 0001:000cb759 _fflush 004cc759 f LIBC:fflush.obj - 0001:000cb7a5 __flush 004cc7a5 f LIBC:fflush.obj - 0001:000cb807 __flushall 004cc807 f LIBC:fflush.obj - 0001:000cb87c ___endstdio 004cc87c f LIBC:fflush.obj - 0001:000cb890 __heap_findaddr 004cc890 f LIBC:findaddr.obj - 0001:000cb8fa _calloc 004cc8fa f LIBC:calloc.obj - 0001:000cb934 ___set_invalid_mb_chars 004cc934 f LIBC:setmbval.obj - 0001:000cb964 _strncpy 004cc964 f LIBC:strncpy.obj - 0001:000cb988 ___ld12mul 004cc988 f LIBC:tenpow.obj - 0001:000cbbc8 ___multtenpow12 004ccbc8 f LIBC:tenpow.obj - 0001:000cbc3d __commit 004ccc3d f LIBC:commit.obj - 0001:000cbc8a __fcloseall 004ccc8a f LIBC:closeall.obj - 0001:000cbcbb _fclose 004cccbb f LIBC:fclose.obj - 0001:000cbd17 __close 004ccd17 f LIBC:close.obj - 0001:000cbdad __freebuf 004ccdad f LIBC:_freebuf.obj - 0001:000cbde6 _RtlUnwind@16 004ccde6 kernel32:KERNEL32.dll - 0001:000cbdec _waveInGetNumDevs@0 004ccdec winmm:WINMM.dll - 0001:000cbdf2 _waveInAddBuffer@12 004ccdf2 winmm:WINMM.dll - 0001:000cbdf8 _waveInClose@4 004ccdf8 winmm:WINMM.dll - 0001:000cbdfe _waveInPrepareHeader@12 004ccdfe winmm:WINMM.dll - 0001:000cbe04 _waveInOpen@24 004cce04 winmm:WINMM.dll - 0001:000cbe0a _waveInUnprepareHeader@12 004cce0a winmm:WINMM.dll - 0001:000cbe10 _waveInReset@4 004cce10 winmm:WINMM.dll - 0001:000cbe16 _waveInStart@4 004cce16 winmm:WINMM.dll - 0001:000cbe1c _waveInStop@4 004cce1c winmm:WINMM.dll - 0001:000cbe22 _acmMetrics@12 004cce22 f audios:MSACM32.dll - 0001:000cbe40 _BrStdioOpenRead 004cce40 f bren:stdfile.obj - 0001:000cc180 _BrStdioPutLine 004cd180 f bren:stdfile.obj - 0001:000cc260 ?FWouldBe@TMAP@@SGHJ@Z 004cd260 f bren:tmap.obj - 0001:000cc280 ?FIs@TMAP@@UAEHJ@Z 004cd280 f bren:tmap.obj - 0001:000cc290 ?Cls@TMAP@@UAEJXZ 004cd290 f bren:tmap.obj - 0001:000cc2a0 ?FReadTmap@TMAP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004cd2a0 f bren:tmap.obj - 0001:000cc2f0 ?PtmapRead@TMAP@@SGPAV1@PAVCFL@@KK@Z 004cd2f0 f bren:tmap.obj - 0001:000cc460 ??1TMAP@@UAE@XZ 004cd460 f bren:tmap.obj - 0001:000cc490 ?FWrite@TMAP@@UAEHPAVBLCK@@@Z 004cd490 f bren:tmap.obj - 0001:000cc570 ??_GTMAP@@UAEPAXI@Z 004cd570 f bren:tmap.obj - 0001:000cc570 ??_ETMAP@@UAEPAXI@Z 004cd570 f bren:tmap.obj - 0001:000cc620 ?CbOnFile@TMAP@@UAEJXZ 004cd620 f bren:tmap.obj - 0001:000cc640 _BrOnScreenCheck 004cd640 brfwmxr:onscreen.obj - 0001:000ce020 FopRead_BOUNDS_ 004cf020 brfwmxr:fileops.obj - 0001:000ce22c _BrModelLoadMany 004cf22c brfwmxr:fileops.obj - 0001:000ce42f _BrModelSaveMany 004cf42f brfwmxr:fileops.obj - 0001:000ce4a6 _BrActorLoadMany 004cf4a6 brfwmxr:fileops.obj - 0001:000ce61e _BrActorSaveMany 004cf61e brfwmxr:fileops.obj - 0001:000ce686 _BrMaterialLoadMany 004cf686 brfwmxr:fileops.obj - 0001:000ce76d _BrMaterialSaveMany 004cf76d brfwmxr:fileops.obj - 0001:000ce7e4 _BrPixelmapLoadMany 004cf7e4 brfwmxr:fileops.obj - 0001:000ce894 _BrPixelmapSaveMany 004cf894 brfwmxr:fileops.obj - 0001:000ce927 _BrModelLoad 004cf927 brfwmxr:fileops.obj - 0001:000ce953 _BrModelSave 004cf953 brfwmxr:fileops.obj - 0001:000ce96e _BrMaterialLoad 004cf96e brfwmxr:fileops.obj - 0001:000ce99a _BrMaterialSave 004cf99a brfwmxr:fileops.obj - 0001:000ce9b5 _BrPixelmapLoad 004cf9b5 brfwmxr:fileops.obj - 0001:000ce9e1 _BrPixelmapSave 004cf9e1 brfwmxr:fileops.obj - 0001:000ce9fc _BrActorLoad 004cf9fc brfwmxr:fileops.obj - 0001:000cea28 _BrActorSave 004cfa28 brfwmxr:fileops.obj - 0001:000cea50 _BrSceneModelLight 004cfa50 brfwmxr:prelight.obj - 0001:000ceba0 DfPush_ 004cfba0 brfwmxr:datafile.obj - 0001:000cebf8 DfPop_ 004cfbf8 brfwmxr:datafile.obj - 0001:000cec88 DfTop_ 004cfc88 brfwmxr:datafile.obj - 0001:000ced20 DfTopType_ 004cfd20 brfwmxr:datafile.obj - 0001:000d00d1 DfStructWriteArray_ 004d10d1 brfwmxr:datafile.obj - 0001:000d011d DfStructReadArray_ 004d111d brfwmxr:datafile.obj - 0001:000d0447 DfCountSizeText_ 004d1447 brfwmxr:datafile.obj - 0001:000d0a8d DfChunksInterpret_ 004d1a8d brfwmxr:datafile.obj - 0001:000d0baf DfOpen_ 004d1baf brfwmxr:datafile.obj - 0001:000d0c63 DfClose_ 004d1c63 brfwmxr:datafile.obj - 0001:000d0cdf _BrWriteModeSet 004d1cdf brfwmxr:datafile.obj - 0001:000d0d00 _BrSwap32 004d1d00 brfwmxr:bswap.obj - 0001:000d0d38 _BrSwap16 004d1d38 brfwmxr:bswap.obj - 0001:000d0d60 _BrSwapFloat 004d1d60 brfwmxr:bswap.obj - 0001:000d0db8 _BrSwapBlock 004d1db8 brfwmxr:bswap.obj - 0001:000d0f93 _freopen 004d1f93 f LIBC:freopen.obj - 0001:000d0fc9 _fread 004d1fc9 f LIBC:fread.obj - 0001:000d1100 __fsopen 004d2100 f LIBC:fopen.obj - 0001:000d1123 _fopen 004d2123 f LIBC:fopen.obj - 0001:000d1136 _getenv 004d2136 f LIBC:getenv.obj - 0001:000d11c4 _strchr 004d21c4 f LIBC:strchr.obj - 0001:000d11e9 __filbuf 004d21e9 f LIBC:_filbuf.obj - 0001:000d12ac _fwrite 004d22ac f LIBC:fwrite.obj - 0001:000d1401 _fgets 004d2401 f LIBC:fgets.obj - 0001:000d145c _fputs 004d245c f LIBC:fputs.obj - 0001:000d14ae _fseek 004d24ae f LIBC:fseek.obj - 0001:000d176c _strtol 004d276c f LIBC:strtol.obj - 0001:000d1783 _strtoul 004d2783 f LIBC:strtol.obj - 0001:000d179c _memcmp 004d279c f LIBC:memcmp.obj - 0001:000d17bc _memcpy 004d27bc f LIBC:memcpy.obj - 0001:000d190a _atof 004d290a f LIBC:atof.obj - 0001:000d1966 __openfile 004d2966 f LIBC:_open.obj - 0001:000d1b01 __read 004d2b01 f LIBC:read.obj - 0001:000d1cfb __getstream 004d2cfb f LIBC:stream.obj - 0001:000d1d38 __mbsnbicoll 004d2d38 f LIBC:mbsnbico.obj - 0001:000d1f06 ___wtomb_environ 004d2f06 f LIBC:wtombenv.obj - 0001:000d1f85 __stbuf 004d2f85 f LIBC:_sftbuf.obj - 0001:000d2006 __ftbuf 004d3006 f LIBC:_sftbuf.obj - 0001:000d204c _ftell 004d304c f LIBC:ftell.obj - 0001:000d2184 _toupper 004d3184 f LIBC:toupper.obj - 0001:000d2250 __fltin 004d3250 f LIBC:cfin.obj - 0001:000d22f1 __sopen 004d32f1 f LIBC:open.obj - 0001:000d2638 ___set_fcntrlcomp 004d3638 f LIBC:setfcntr.obj - 0001:000d269e ___crtCompareStringA 004d369e f LIBC:aw_cmp.obj - 0001:000d296e ___crtsetenv 004d396e f LIBC:setenv.obj - 0001:000d2c38 __chsize 004d3c38 f LIBC:chsize.obj - 0001:000d2d6c __mbschr 004d3d6c f LIBC:mbschr.obj - 0001:000d2df0 __strdup 004d3df0 f LIBC:strdup.obj - 0001:000d2e16 __setmode 004d3e16 f LIBC:setmode.obj - 0001:000d2e90 __chkstk 004d3e90 LIBC:chkstk.obj - 0001:000d2e90 __alloca_probe 004d3e90 LIBC:chkstk.obj - 0002:00000118 ?vptagm@@3PAVTAGM@@A 004d4118 utest.obj - 0002:00000120 ?vapp@@3VAPP@@A 004d4120 utest.obj - 0002:00001010 ?csampSec@@3JA 004d5010 esl.obj - 0002:00001208 ?vcodmUtil@@3VCODM@@A 004d5208 utilglob.obj - 0002:00001220 ?vmutxMem@@3VMUTX@@A 004d5220 utilglob.obj - 0002:00001238 ?vkcdcUtil@@3VKCDC@@A 004d5238 utilglob.obj - 0002:00001240 ?_usac@@3VUSAC@@A 004d5240 utilglob.obj - 0002:00001258 ?vsflUtil@@3VSFL@@A 004d5258 utilglob.obj - 0002:00001278 ?vrndUtil@@3VRND@@A 004d5278 utilglob.obj - 0002:000012a8 ?_ers@@3VERS@@A 004d52a8 utilerro.obj - 0002:00001340 ?_mpchschsLower@@3QADA 004d5340 utilstr.obj - 0002:00001448 ?_mpchschsUpper@@3QADA 004d5448 utilstr.obj - 0002:00001568 ?vpappb@@3PAVAPPB@@A 004d5568 appb.obj - 0002:0000156c ?vpsndm@@3PAVSNDM@@A 004d556c appb.obj - 0002:00001580 ?vpcex@@3PAVCEX@@A 004d5580 appb.obj - 0002:000015a4 ?_pclokFirst@CLOK@@1PAV1@A 004d55a4 clok.obj - 0002:000015e8 ?_hidLast@CMH@@0JA 004d55e8 cmd.obj - 0002:00001674 ?vcactRealize@@3JA 004d5674 gfx.obj - 0002:00001688 ?vntl@@3VNTL@@A 004d5688 gfx.obj - 0002:000016c4 ?_gridLast@GOB@@1JA 004d56c4 gob.obj - 0002:000017d0 ?vwig@@3UWIG@@A 004d57d0 appbwin.obj - 0002:0000185c ?_pgobScreen@GOB@@0PAV1@A 004d585c gobwin.obj - 0002:00001898 ?vpmubCur@@3PAVMUB@@A 004d5898 menuwin.obj - 0002:0000191c ?_pcflFirst@CFL@@0PAV1@A 004d591c chunk.obj - 0002:00001940 ?_pfilFirst@FIL@@1PAV1@A 004d5940 file.obj - 0002:00001948 ?_mutxList@FIL@@1VMUTX@@A 004d5948 file.obj - 0002:00001970 ?_fniTemp@@3VFNI@@A 004d5970 fniwin.obj - 0002:00001ae4 ?_siiLast@SNDV@@1JA 004d5ae4 sndm.obj - 0002:00001ce0 ?_clip@@3VCLIP@@A 004d5ce0 clip.obj - 0002:00001d00 ?vpclip@@3PAVCLIP@@A 004d5d00 clip.obj - 0002:00002078 _fw 004d6078 brfwmxr:fwsetup.obj - 0002:000035fc __BrLoadedImages 004d75fc brfwmxr:loader.obj - 0002:0000360c _zb 004d760c brzbmxr:zbsetup.obj - 0002:00003828 _tsl 004d7828 brzbmxr:persp.obj - 0002:00003850 _awsl 004d7850 brzbmxr:awtm.obj - 0002:000044dc ?_dtsKbdDelay@MVU@@1JA 004d84dc engine:movie.obj - 0002:000044e4 ?_dtsKbdRepeat@MVU@@1JA 004d84e4 engine:movie.obj - 0002:00004630 ?_dzpClosestClicked@BODY@@1JA 004d8630 engine:body.obj - 0002:00004640 ?_pbactClosestClicked@BODY@@1PAUbr_actor@@A 004d8640 engine:body.obj - 0002:00004660 ?_pbodyClosestClicked@BODY@@1PAV1@A 004d8660 engine:body.obj - 0002:00007b80 __bufin 004dbb80 - 0002:00008b80 __heap_descpages 004dcb80 - 0002:00008b90 __heap_regions 004dcb90 - 0002:00008e90 ___onexitend 004dce90 - 0002:00008e94 ___onexitbegin 004dce94 - 0002:00008e98 __acmdln 004dce98 - 0003:00000058 ??_7SPLOT@@6B@ 004dd058 splot.obj - 0003:00000150 ??_7MCC@@6B@ 004dd150 splot.obj - 0003:00000200 ??_7BASE@@6B@ 004dd200 splot.obj - 0003:00000218 ?_mplwtrans@SCRT@@1QBW4TRANS@@B 004dd218 scnsort.obj - 0003:00000228 ??_7SCRT@@6B@ 004dd228 scnsort.obj - 0003:00000320 ??_7GOMP@@6B@ 004dd320 scnsort.obj - 0003:000003a0 ??_7BRWD@@6B@ 004dd3a0 browser.obj - 0003:000004d8 ??_7BRWL@@6B@ 004dd4d8 browser.obj - 0003:00000618 ??_7BCL@@6B@ 004dd618 browser.obj - 0003:00000630 ??_7BCLS@@6B@ 004dd630 browser.obj - 0003:00000648 ??_7FNET@@6B@ 004dd648 browser.obj - 0003:00000660 ??_7BRWM@@6B@ 004dd660 browser.obj - 0003:000007a0 ??_7BRWT@@6B@ 004dd7a0 browser.obj - 0003:000008d8 ??_7BRWA@@6B@ 004dd8d8 browser.obj - 0003:00000a10 ??_7BRWI@@6B@ 004dda10 browser.obj - 0003:00000b50 ??_7BRWP@@6B@ 004ddb50 browser.obj - 0003:00000c90 ??_7BRWB@@6B@ 004ddc90 browser.obj - 0003:00000dd0 ??_7BRWC@@6B@ 004dddd0 browser.obj - 0003:00000f10 ??_7BRWR@@6B@ 004ddf10 browser.obj - 0003:00001048 ??_7BRWN@@6B@ 004de048 browser.obj - 0003:00001188 ??_7BRCNL@@6B@ 004de188 browser.obj - 0003:000011a8 ??_7APP@@6B@ 004de1a8 utest.obj - 0003:000012e0 ??_7KWA@@6B@ 004de2e0 utest.obj - 0003:000013b0 ??_7SSCB@@6B@ 004de3b0 stdioscb.obj - 0003:000013c8 ??_7STDIO@@6B@ 004de3c8 studio.obj - 0003:00001448 ??_7SMCC@@6B@ 004de448 studio.obj - 0003:00001500 ??_7TGOB@@6B@ 004de500 tgob.obj - 0003:00001580 ??_7ESL@@6B@ 004de580 esl.obj - 0003:00001680 ??_7ESLT@@6B@ 004de680 esl.obj - 0003:00001780 ??_7SNE@@6B@ 004de780 esl.obj - 0003:00001850 ??_7ESLA@@6B@ 004de850 esl.obj - 0003:00001950 ??_7LSND@@6B@ 004de950 esl.obj - 0003:00001968 ??_7ESLL@@6B@ 004de968 esl.obj - 0003:00001a68 ??_7ESLR@@6B@ 004dea68 esl.obj - 0003:00001b68 ??_7APE@@6B@ 004deb68 ape.obj - 0003:00001be8 ??_7MP@@6B@ 004debe8 popup.obj - 0003:00001d28 ??_7MPFNT@@6B@ 004ded28 popup.obj - 0003:00001e60 ??_7TATR@@6B@ 004dee60 tatr.obj - 0003:00001e88 ??_7KCDC@@6B@ 004dee88 utilglob.obj - 0003:00001ea8 ??_7BLL@@6B@ 004deea8 base.obj - 0003:00001ec0 ??_7ERS@@6B@ 004deec0 utilerro.obj - 0003:00001ef0 ??_7USAC@@6B@ 004deef0 utilint.obj - 0003:00001f08 ??_7RND@@6B@ 004def08 utilrnd.obj - 0003:00001f20 ??_7SFL@@6B@ 004def20 utilrnd.obj - 0003:00001f38 ?vrgchHex@@3QBDB 004def38 utilstr.obj - 0003:00001f50 ??_7APPB@@6B@ 004def50 appb.obj - 0003:00002078 ??_7CLOK@@6B@ 004df078 clok.obj - 0003:000020a0 ??_7CMH@@6B@ 004df0a0 cmd.obj - 0003:000020c8 ??_7CEX@@6B@ 004df0c8 cmd.obj - 0003:00002140 ??_7CURS@@6B@ 004df140 cursor.obj - 0003:00002168 ??_7GNV@@6B@ 004df168 gfx.obj - 0003:00002180 ??_7NTL@@6B@ 004df180 gfx.obj - 0003:00002198 ??_7GOB@@6B@ 004df198 gob.obj - 0003:00002218 ??_7GTE@@6B@ 004df218 gob.obj - 0003:00002230 ??_7REGSC@@6B@ 004df230 region.obj - 0003:00002248 ??_7REGN@@6B@ 004df248 region.obj - 0003:00002260 ??_7REGBL@@6B@ 004df260 region.obj - 0003:00002278 ??_7GPT@@6B@ 004df278 gfxwin.obj - 0003:00002290 ??_7MUB@@6B@ 004df290 menuwin.obj - 0003:000022c0 ??_7GRPB@@6B@ 004df2c0 groups.obj - 0003:000022e8 ??_7GLB@@6B@ 004df2e8 groups.obj - 0003:00002318 ??_7GL@@6B@ 004df318 groups.obj - 0003:00002348 ??_7AL@@6B@ 004df348 groups.obj - 0003:00002378 ??_7GGB@@6B@ 004df378 groups.obj - 0003:000023a8 ??_7GG@@6B@ 004df3a8 groups.obj - 0003:000023d8 ??_7AG@@6B@ 004df3d8 groups.obj - 0003:00002408 ??_7GSTB@@6B@ 004df408 groups2.obj - 0003:00002438 ??_7GST@@6B@ 004df438 groups2.obj - 0003:00002468 ??_7CFL@@6B@ 004df468 chunk.obj - 0003:00002480 ??_7CGE@@6B@ 004df480 chunk.obj - 0003:00002498 ??_7CODM@@6B@ 004df498 codec.obj - 0003:000024c8 ??_7BACO@@6B@ 004df4c8 crf.obj - 0003:000024f0 ??_7CRF@@6B@ 004df4f0 crf.obj - 0003:00002518 ??_7CRM@@6B@ 004df518 crf.obj - 0003:00002540 ??_7FIL@@6B@ 004df540 file.obj - 0003:00002558 ??_7BLCK@@6B@ 004df558 file.obj - 0003:00002570 ??_7FNI@@6B@ 004df570 fniwin.obj - 0003:00002588 ??_7FNE@@6B@ 004df588 fniwin.obj - 0003:000025a0 ??_7MBMP@@6B@ 004df5a0 mbmp.obj - 0003:000025d0 ??_7SNDM@@6B@ 004df5d0 sndm.obj - 0003:00002638 ??_7SNDMQ@@6B@ 004df638 sndm.obj - 0003:000026a0 ??_7SNQUE@@6B@ 004df6a0 sndm.obj - 0003:000026d8 ??_7IStream@@6B@ 004df6d8 sndam.obj - 0003:00002710 ??_7STBL@@6B@ 004df710 sndam.obj - 0003:00002748 ??_7CAMS@@6B@ 004df748 sndam.obj - 0003:00002770 ??_7AMNOT@@6B@ 004df770 sndam.obj - 0003:00002790 ??_7AMQUE@@6B@ 004df790 sndam.obj - 0003:000027c8 ??_7SDAM@@6B@ 004df7c8 sndam.obj - 0003:00002838 ??_7MIDO@@6B@ 004df838 mididev.obj - 0003:00002850 ??_7MDPS@@6B@ 004df850 mididev2.obj - 0003:000028b8 ??_7MDWS@@6B@ 004df8b8 mididev2.obj - 0003:000028e0 ??_7MSQUE@@6B@ 004df8e0 mididev2.obj - 0003:00002918 ??_7MSMIX@@6B@ 004df918 mididev2.obj - 0003:00002930 ??_7MISI@@6B@ 004df930 mididev2.obj - 0003:00002968 ??_7WMS@@6B@ 004df968 mididev2.obj - 0003:000029a0 ??_7OMS@@6B@ 004df9a0 mididev2.obj - 0003:000029d8 ??_7MSTP@@6B@ 004df9d8 midi.obj - 0003:000029f0 ??_7MIDS@@6B@ 004df9f0 midi.obj - 0003:00002a18 ??_7GVID@@6B@ 004dfa18 video.obj - 0003:00002a60 ??_7GVDS@@6B@ 004dfa60 video.obj - 0003:00002ab0 ??_7GVDW@@6B@ 004dfab0 video.obj - 0003:00002b00 ??_7SCEB@@6B@ 004dfb00 screxe.obj - 0003:00002b70 ??_7CABO@@6B@ 004dfb70 screxe.obj - 0003:00002b98 ??_7SCPT@@6B@ 004dfb98 screxe.obj - 0003:00002bc0 ??_7STRG@@6B@ 004dfbc0 screxe.obj - 0003:00002bd8 ??_7DOCB@@6B@ 004dfbd8 docb.obj - 0003:00002c68 ??_7DTE@@6B@ 004dfc68 docb.obj - 0003:00002c80 ??_7DDG@@6B@ 004dfc80 docb.obj - 0003:00002d40 ??_7DMD@@6B@ 004dfd40 docb.obj - 0003:00002dc8 ??_7DMW@@6B@ 004dfdc8 docb.obj - 0003:00002e50 ??_7DSG@@6B@ 004dfe50 docb.obj - 0003:00002ee0 ??_7DSSP@@6B@ 004dfee0 docb.obj - 0003:00002f60 ??_7DSSM@@6B@ 004dff60 docb.obj - 0003:00002fe0 ??_7CLIP@@6B@ 004dffe0 clip.obj - 0003:00002ff8 ??_7TXTB@@6B@ 004dfff8 rtxt.obj - 0003:000030e8 ??_7TXRD@@6B@ 004e00e8 rtxt.obj - 0003:000031f0 ??_7RTUN@@6B@ 004e01f0 rtxt.obj - 0003:00003210 ??_7TXTG@@6B@ 004e0210 rtxt2.obj - 0003:00003310 ??_7TXRG@@6B@ 004e0310 rtxt2.obj - 0003:00003428 ??_7CTL@@6B@ 004e0428 ctl.obj - 0003:000034a8 ??_7SCB@@6B@ 004e04a8 ctl.obj - 0003:00003530 ??_7WSB@@6B@ 004e0530 ctl.obj - 0003:000035b0 ??_7BSM@@6B@ 004e05b0 stream.obj - 0003:000035c8 ??_7BSF@@6B@ 004e05c8 stream.obj - 0003:000035e0 ??_7DLG@@6B@ 004e05e0 dlg.obj - 0003:00003610 ??_7EDCB@@6B@ 004e0610 text.obj - 0003:000036d8 ??_7EDPL@@6B@ 004e06d8 text.obj - 0003:000037a8 ??_7EDSL@@6B@ 004e07a8 text.obj - 0003:00003878 ??_7GKDS@@6B@ 004e0878 kidworld.obj - 0003:000038b0 ??_7WOKS@@6B@ 004e08b0 kidworld.obj - 0003:00003980 ??_7TXHD@@6B@ 004e0980 kidhelp.obj - 0003:00003a90 ??_7TXHG@@6B@ 004e0a90 kidhelp.obj - 0003:00003bb8 ??_7HBAL@@6B@ 004e0bb8 kidhelp.obj - 0003:00003cc0 ??_7HBTN@@6B@ 004e0cc0 kidhelp.obj - 0003:00003df0 ??_7GOK@@6B@ 004e0df0 kidspace.obj - 0003:00003ee8 ??_7GORP@@6B@ 004e0ee8 kidspace.obj - 0003:00003f38 ??_7GORF@@6B@ 004e0f38 kidspace.obj - 0003:00003f88 ??_7GORB@@6B@ 004e0f88 kidspace.obj - 0003:00003fd8 ??_7GORT@@6B@ 004e0fd8 kidspace.obj - 0003:00004028 ??_7GORV@@6B@ 004e1028 kidspace.obj - 0003:00004078 ??_7SCEG@@6B@ 004e1078 screxeg.obj - 0003:000040e0 _IID_IUnknown 004e10e0 uuid:com_i.obj - 0003:000040f0 _IID_IClassFactory 004e10f0 uuid:com_i.obj - 0003:00004100 _IID_IMarshal 004e1100 uuid:com_i.obj - 0003:00004110 _IID_IMalloc 004e1110 uuid:com_i.obj - 0003:00004120 _IID_IStdMarshalInfo 004e1120 uuid:com_i.obj - 0003:00004130 _IID_IExternalConnection 004e1130 uuid:com_i.obj - 0003:00004140 _IID_IWeakRef 004e1140 uuid:com_i.obj - 0003:00004150 _IID_IEnumUnknown 004e1150 uuid:com_i.obj - 0003:00004160 _IID_IBindCtx 004e1160 uuid:com_i.obj - 0003:00004170 _IID_IParseDisplayName 004e1170 uuid:com_i.obj - 0003:00004180 _IID_IEnumMoniker 004e1180 uuid:com_i.obj - 0003:00004190 _IID_IRunnableObject 004e1190 uuid:com_i.obj - 0003:000041a0 _IID_IRunningObjectTable 004e11a0 uuid:com_i.obj - 0003:000041b0 _IID_IPersist 004e11b0 uuid:com_i.obj - 0003:000041c0 _IID_IPersistStream 004e11c0 uuid:com_i.obj - 0003:000041d0 _IID_IMoniker 004e11d0 uuid:com_i.obj - 0003:000041e0 _IID_IEnumString 004e11e0 uuid:com_i.obj - 0003:000041f0 _IID_IStream 004e11f0 uuid:com_i.obj - 0003:00004200 _IID_IEnumSTATSTG 004e1200 uuid:com_i.obj - 0003:00004210 _IID_IStorage 004e1210 uuid:com_i.obj - 0003:00004220 _IID_IPersistFile 004e1220 uuid:com_i.obj - 0003:00004230 _IID_IPersistStorage 004e1230 uuid:com_i.obj - 0003:00004240 _IID_ILockBytes 004e1240 uuid:com_i.obj - 0003:00004250 _IID_IEnumFORMATETC 004e1250 uuid:com_i.obj - 0003:00004260 _IID_IEnumSTATDATA 004e1260 uuid:com_i.obj - 0003:00004270 _IID_IRootStorage 004e1270 uuid:com_i.obj - 0003:00004280 _IID_IAdviseSink 004e1280 uuid:com_i.obj - 0003:00004290 _IID_IAdviseSink2 004e1290 uuid:com_i.obj - 0003:000042a0 _IID_IDataObject 004e12a0 uuid:com_i.obj - 0003:000042b0 _IID_IDataAdviseHolder 004e12b0 uuid:com_i.obj - 0003:000042c0 _IID_IMessageFilter 004e12c0 uuid:com_i.obj - 0003:000042d0 _IID_IRpcChannelBuffer 004e12d0 uuid:com_i.obj - 0003:000042e0 _IID_IRpcProxyBuffer 004e12e0 uuid:com_i.obj - 0003:000042f0 _IID_IRpcStubBuffer 004e12f0 uuid:com_i.obj - 0003:00004300 _IID_IPSFactoryBuffer 004e1300 uuid:com_i.obj - 0003:00004310 ??_7IAMWavFileSrc@@6B@ 004e1310 audios:sound.obj - 0003:00004328 ??_7IAMSound@@6B@ 004e1328 audios:sound.obj - 0003:00004350 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 004e1350 audios:sound.obj - 0003:00004368 ??_7CAMWavFileSrc@@6BIAMSound@@@ 004e1368 audios:sound.obj - 0003:000043c0 _CLSID_AMMixer 004e13c0 audios:factory.obj - 0003:000043d0 _CLSID_AMWavFileSrc 004e13d0 audios:factory.obj - 0003:000043e0 _CLSID_AMSilentSound 004e13e0 audios:factory.obj - 0003:000043f0 _CLSID_AMAppendFilter 004e13f0 audios:factory.obj - 0003:00004400 _CLSID_AMClipFilter 004e1400 audios:factory.obj - 0003:00004410 _CLSID_AMConvertFilter 004e1410 audios:factory.obj - 0003:00004420 _CLSID_AMDelayFilter 004e1420 audios:factory.obj - 0003:00004430 _CLSID_AMGainFilter 004e1430 audios:factory.obj - 0003:00004440 _CLSID_AMGateFilter 004e1440 audios:factory.obj - 0003:00004450 _CLSID_AMLoopFilter 004e1450 audios:factory.obj - 0003:00004460 _CLSID_AMMixFilter 004e1460 audios:factory.obj - 0003:00004470 _CLSID_AMFaderFilter 004e1470 audios:factory.obj - 0003:00004480 _CLSID_AMScheduleFilter 004e1480 audios:factory.obj - 0003:00004490 _CLSID_AMRandomizeFilter 004e1490 audios:factory.obj - 0003:000044a0 _CLSID_AMDistortFilter 004e14a0 audios:factory.obj - 0003:000044b0 _CLSID_AMCacheFilter 004e14b0 audios:factory.obj - 0003:000044c0 _CLSID_AMTrimFilter 004e14c0 audios:factory.obj - 0003:000044d0 _CLSID_AMStereoFilter 004e14d0 audios:factory.obj - 0003:000044e0 _CLSID_AMBiasFilter 004e14e0 audios:factory.obj - 0003:000044f0 _IID_IAMMixer 004e14f0 audios:factory.obj - 0003:00004500 _IID_IAMChannel 004e1500 audios:factory.obj - 0003:00004510 _IID_IAMWaveOut 004e1510 audios:factory.obj - 0003:00004520 _IID_IAMSound 004e1520 audios:factory.obj - 0003:00004530 _IID_IAMNotifySink 004e1530 audios:factory.obj - 0003:00004540 _IID_IAMWavFileSrc 004e1540 audios:factory.obj - 0003:00004550 _IID_IAMSilentSound 004e1550 audios:factory.obj - 0003:00004560 _IID_IAMAppendFilter 004e1560 audios:factory.obj - 0003:00004570 _IID_IAMClipFilter 004e1570 audios:factory.obj - 0003:00004580 _IID_IAMConvertFilter 004e1580 audios:factory.obj - 0003:00004590 _IID_IAMDelayFilter 004e1590 audios:factory.obj - 0003:000045a0 _IID_IAMGainFilter 004e15a0 audios:factory.obj - 0003:000045b0 _IID_IAMGateFilter 004e15b0 audios:factory.obj - 0003:000045c0 _IID_IAMLoopFilter 004e15c0 audios:factory.obj - 0003:000045d0 _IID_IAMMixFilter 004e15d0 audios:factory.obj - 0003:000045e0 _IID_IAMFaderFilter 004e15e0 audios:factory.obj - 0003:000045f0 _IID_IAMScheduleFilter 004e15f0 audios:factory.obj - 0003:00004600 _IID_IAMRandomizeFilter 004e1600 audios:factory.obj - 0003:00004610 _IID_IAMDistortFilter 004e1610 audios:factory.obj - 0003:00004620 _IID_IAMCacheFilter 004e1620 audios:factory.obj - 0003:00004630 _IID_IAMTrimFilter 004e1630 audios:factory.obj - 0003:00004640 _IID_IAMStereoFilter 004e1640 audios:factory.obj - 0003:00004650 _IID_IAMBiasFilter 004e1650 audios:factory.obj - 0003:00004660 _IID_IAMMixerChannel 004e1660 audios:factory.obj - 0003:00004670 _IID_IAMRIFFStream 004e1670 audios:factory.obj - 0003:00004680 ??_7CClassFactory@@6B@ 004e1680 audios:factory.obj - 0003:000046f8 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 004e16f8 audios:factory.obj - 0003:00004708 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 004e1708 audios:factory.obj - 0003:00004730 ??_7IAMBiasFilter@@6B@ 004e1730 audios:factory.obj - 0003:00004740 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 004e1740 audios:factory.obj - 0003:00004760 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 004e1760 audios:factory.obj - 0003:00004788 ??_7IAMStereoFilter@@6B@ 004e1788 audios:factory.obj - 0003:00004798 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 004e1798 audios:factory.obj - 0003:000047a8 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 004e17a8 audios:factory.obj - 0003:000047d0 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 004e17d0 audios:factory.obj - 0003:000047e0 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 004e17e0 audios:factory.obj - 0003:00004808 ??_7IAMTrimFilter@@6B@ 004e1808 audios:factory.obj - 0003:00004818 ??_7IAMDistortFilter@@6B@ 004e1818 audios:factory.obj - 0003:00004828 ??_7IAMRandomizeFilter@@6B@ 004e1828 audios:factory.obj - 0003:00004848 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 004e1848 audios:factory.obj - 0003:00004858 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 004e1858 audios:factory.obj - 0003:00004880 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 004e1880 audios:factory.obj - 0003:00004890 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 004e1890 audios:factory.obj - 0003:000048b8 ??_7IAMFaderFilter@@6B@ 004e18b8 audios:factory.obj - 0003:000048c8 ??_7IAMLoopFilter@@6B@ 004e18c8 audios:factory.obj - 0003:000048d8 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 004e18d8 audios:factory.obj - 0003:000048e8 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 004e18e8 audios:factory.obj - 0003:00004910 ??_7IAMGateFilter@@6B@ 004e1910 audios:factory.obj - 0003:00004920 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 004e1920 audios:factory.obj - 0003:00004930 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 004e1930 audios:factory.obj - 0003:00004a98 ??_7CFileStream@@6B@ 004e1a98 audios:stream.obj - 0003:00004ad0 ??_7CMemoryStream@@6B@ 004e1ad0 audios:stream.obj - 0003:00004b28 ??_7CAMPassThruFilter@@6B@ 004e1b28 audios:sndpass.obj - 0003:00004ba0 ??_7IAMCacheFilter@@6B@ 004e1ba0 audios:sndcache.obj - 0003:00004bb0 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 004e1bb0 audios:sndcache.obj - 0003:00004bc0 ??_7CAMCacheFilter@@6BIAMSound@@@ 004e1bc0 audios:sndcache.obj - 0003:00004be8 ??_7IAMScheduleFilter@@6B@ 004e1be8 audios:sndsched.obj - 0003:00004c20 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 004e1c20 audios:sndsched.obj - 0003:00004c58 ??_7CAMScheduleFilter@@6BIAMSound@@@ 004e1c58 audios:sndsched.obj - 0003:00004c80 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 004e1c80 audios:sndmix.obj - 0003:00004c90 ??_7CAMMixFilter@@6BIAMSound@@@ 004e1c90 audios:sndmix.obj - 0003:00004cb8 ??_7IAMMixFilter@@6B@ 004e1cb8 audios:sndmix.obj - 0003:00004cd0 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 004e1cd0 audios:sndgain.obj - 0003:00004ce8 ??_7CAMGainFilter@@6BIAMSound@@@ 004e1ce8 audios:sndgain.obj - 0003:00004d10 ??_7IAMGainFilter@@6B@ 004e1d10 audios:sndgain.obj - 0003:00004d28 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 004e1d28 audios:sndecho.obj - 0003:00004d38 ??_7CAMDelayFilter@@6BIAMSound@@@ 004e1d38 audios:sndecho.obj - 0003:00004d60 ??_7IAMDelayFilter@@6B@ 004e1d60 audios:sndecho.obj - 0003:00004d80 ??_7IAMConvertFilter@@6B@ 004e1d80 audios:sndcnvt.obj - 0003:00004d90 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 004e1d90 audios:sndcnvt.obj - 0003:00004da0 ??_7CAMConvertFilter@@6BIAMSound@@@ 004e1da0 audios:sndcnvt.obj - 0003:00004dc8 ??_7IAMClipFilter@@6B@ 004e1dc8 audios:sndclip.obj - 0003:00004dd8 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 004e1dd8 audios:sndclip.obj - 0003:00004de8 ??_7CAMClipFilter@@6BIAMSound@@@ 004e1de8 audios:sndclip.obj - 0003:00004e10 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 004e1e10 audios:sndapend.obj - 0003:00004e20 ??_7CAMAppendFilter@@6BIAMSound@@@ 004e1e20 audios:sndapend.obj - 0003:00004e48 ??_7IAMAppendFilter@@6B@ 004e1e48 audios:sndapend.obj - 0003:00004e58 ??_7IAMSilentSound@@6B@ 004e1e58 audios:sndmute.obj - 0003:00004e68 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 004e1e68 audios:sndmute.obj - 0003:00004e78 ??_7CAMSilentSound@@6BIAMSound@@@ 004e1e78 audios:sndmute.obj - 0003:00004f00 ??_7CAMMixer@@6B@ 004e1f00 audios:cmixer.obj - 0003:00004f78 ??_7CAMRIFFStream@@6B@ 004e1f78 audios:riffstrm.obj - 0003:00004fb8 ??_7CMixerOut@@6B@ 004e1fb8 audios:cmixout.obj - 0003:00005018 ??_7CAMPlaySnd@@6B@ 004e2018 audios:cplaysnd.obj - 0003:00005038 ??_7IAMMixerChannel@@6B@ 004e2038 audios:cchannel.obj - 0003:00005088 ??_7IAMChannel@@6B@ 004e2088 audios:cchannel.obj - 0003:000050e8 ??_7CAMChannel@@6BIAMMixerChannel@@@ 004e20e8 audios:cchannel.obj - 0003:00005138 ??_7CAMChannel@@6BIAMChannel@@@ 004e2138 audios:cchannel.obj - 0003:00005198 ??_7CRealOut@@6B@ 004e2198 audios:crealout.obj - 0003:00005218 ??_7CFakeOut@@6B@ 004e2218 audios:cfakeout.obj - 0003:00005278 ??_7BWLD@@6B@ 004e2278 bren:bwld.obj - 0003:00005298 ??_7ZBMP@@6B@ 004e2298 bren:zbmp.obj - 0003:000052c0 ??_7MVIE@@6B@ 004e22c0 engine:movie.obj - 0003:00005350 ??_7MVU@@6B@ 004e2350 engine:movie.obj - 0003:00005418 ??_7MUNS@@6B@ 004e2418 engine:movie.obj - 0003:00005438 ??_7MSND@@6B@ 004e2438 engine:msnd.obj - 0003:00005460 ??_7MSQ@@6B@ 004e2460 engine:msnd.obj - 0003:00005488 ??_7TAGM@@6B@ 004e2488 engine:tagman.obj - 0003:000054a0 ??_7SCEN@@6B@ 004e24a0 engine:scene.obj - 0003:000054b8 ??_7MUNB@@6B@ 004e24b8 engine:scene.obj - 0003:000054d8 ??_7SUNS@@6B@ 004e24d8 engine:scene.obj - 0003:000054f8 ??_7SUNA@@6B@ 004e24f8 engine:scene.obj - 0003:00005518 ??_7SUNX@@6B@ 004e2518 engine:scene.obj - 0003:00005538 ??_7SUNP@@6B@ 004e2538 engine:scene.obj - 0003:00005558 ??_7SUNK@@6B@ 004e2558 engine:scene.obj - 0003:00005578 ??_7SUNC@@6B@ 004e2578 engine:scene.obj - 0003:00005598 ??_7BKGD@@6B@ 004e2598 engine:bkgd.obj - 0003:000055c0 ??_7BODY@@6B@ 004e25c0 engine:body.obj - 0003:000055d8 ??_7COST@@6B@ 004e25d8 engine:body.obj - 0003:000055f0 ??_7ACTN@@6B@ 004e25f0 engine:tmpl.obj - 0003:00005618 ??_7TDT@@6B@ 004e2618 engine:tmpl.obj - 0003:00005658 ??_7TMPL@@6B@ 004e2658 engine:tmpl.obj - 0003:00005698 ??_7MTRL@@6B@ 004e2698 engine:mtrl.obj - 0003:000056c0 ??_7CMTL@@6B@ 004e26c0 engine:mtrl.obj - 0003:000056e8 ??_7ACLP@@6B@ 004e26e8 engine:actredit.obj - 0003:00005778 ??_7AUND@@6B@ 004e2778 engine:actredit.obj - 0003:00005798 ??_7TBXB@@6B@ 004e2798 engine:tbox.obj - 0003:00005818 ??_7TBXG@@6B@ 004e2818 engine:tbox.obj - 0003:00005930 ??_7TBOX@@6B@ 004e2930 engine:tbox.obj - 0003:00005a38 ??_7TUNT@@6B@ 004e2a38 engine:tbox.obj - 0003:00005a58 ??_7TUNS@@6B@ 004e2a58 engine:tbox.obj - 0003:00005a78 ??_7TUNH@@6B@ 004e2a78 engine:tbox.obj - 0003:00005a98 ??_7TUND@@6B@ 004e2a98 engine:tbox.obj - 0003:00005ab8 ??_7TUNC@@6B@ 004e2ab8 engine:tbox.obj - 0003:00005ad8 ??_7TCLP@@6B@ 004e2ad8 engine:tbox.obj - 0003:00005b68 ??_7ACTR@@6B@ 004e2b68 engine:actor.obj - 0003:00005b80 ??_7SREC@@6B@ 004e2b80 engine:srec.obj - 0003:00005b98 ??_7TAGL@@6B@ 004e2b98 engine:tagl.obj - 0003:00005bb0 ??_7MODL@@6B@ 004e2bb0 engine:modl.obj - 0003:00005bd8 ??_7TDF@@6B@ 004e2bd8 engine:tdf.obj - 0003:00005ce0 ___lookuptable 004e2ce0 LIBC:output.obj - 0003:00005d68 ??_7TMAP@@6B@ 004e2d68 bren:tmap.obj - 0004:00000000 ?_cmmSPLOT@SPLOT@@1UCMM@CMH@@A 004e3000 splot.obj - 0004:00000008 ?_rgcmmeSPLOT@SPLOT@@0QAUCMME@CMH@@A 004e3008 splot.obj - 0004:00000070 ?_cmmSCRT@SCRT@@1UCMM@CMH@@A 004e3070 scnsort.obj - 0004:00000078 ?_rgcmmeSCRT@SCRT@@0QAUCMME@CMH@@A 004e3078 scnsort.obj - 0004:00000118 ?_cmmBRWD@BRWD@@1UCMM@CMH@@A 004e3118 browser.obj - 0004:00000120 ?_rgcmmeBRWD@BRWD@@0QAUCMME@CMH@@A 004e3120 browser.obj - 0004:000001c0 ??_C@_0BH@PLEH@ChangeDisplaySettingsA?$AA@ 004e31c0 utest.obj - 0004:000001e0 ?_cmmAPP@APP@@1UCMM@CMH@@A 004e31e0 utest.obj - 0004:000001e8 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 004e31e8 utest.obj - 0004:000002b8 ??_C@_0N@HPFK@3DMMOpen?4tmp?$AA@ 004e32b8 utest.obj - 0004:000002c8 ??_C@_07DOFL@3DMOVIE?$AA@ 004e32c8 utest.obj - 0004:000002d0 ??_C@_0L@IJIP@MidiOutMsg?$AA@ 004e32d0 utest.obj - 0004:000002dc ??_C@_0L@NKDD@WaveOutMsg?$AA@ 004e32dc utest.obj - 0004:000002e8 ??_C@_08KHDN@AVIVIDEO?$AA@ 004e32e8 utest.obj - 0004:000002f4 ??_C@_0BD@HGMC@GreaterThan8bppMsg?$AA@ 004e32f4 utest.obj - 0004:00000308 ??_C@_0BB@ICNP@SwitchResolution?$AA@ 004e3308 utest.obj - 0004:0000031c ??_C@_03KELD@MDI?$AA@ 004e331c utest.obj - 0004:00000320 ??_C@_0O@MFJG@HomeDirectory?$AA@ 004e3320 utest.obj - 0004:00000330 ??_C@_08BKML@UserData?$AA@ 004e3330 utest.obj - 0004:0000033c ??_C@_0DB@JKIH@Software?2Microsoft?2Microsoft?5Kid@ 004e333c utest.obj - 0004:00000370 ??_C@_0DK@HJDH@Software?2Microsoft?2Microsoft?5Kid@ 004e3370 utest.obj - 0004:000003ac ??_C@_04PIPI@?4chk?$AA@ 004e33ac utest.obj - 0004:000003b4 ??_C@_0M@CJBH@BetterSpeed?$AA@ 004e33b4 utest.obj - 0004:000003c0 ??_C@_06LIKK@MSKIDS?$AA@ 004e33c0 utest.obj - 0004:000003c8 ??_C@_0P@GGDA@Microsoft?5Kids?$AA@ 004e33c8 utest.obj - 0004:000003d8 ??_C@_0BB@OKGI@InstallDirectory?$AA@ 004e33d8 utest.obj - 0004:000003ec ??_C@_0BI@DDAK@?$CF5?45s?9?$CF3?43s?9?$CF7?47s?9?$CF5?45s?$AA@ 004e33ec utest.obj - 0004:00000404 ??_C@_0M@PHHK@?5?$CFd?4?$CFd?4?$CF04d?$AA@ 004e3404 utest.obj - 0004:00000410 ??_C@_0L@KEOG@USER32?4DLL?$AA@ 004e3410 utest.obj - 0004:0000041c ??_C@_0EC@FKDM@I?5can?8t?5find?5the?5CD?5?8?$CFs?8?5?5Please@ 004e341c utest.obj - 0004:00000460 ??_C@_02MECO@?$CFd?$AA@ 004e3460 utest.obj - 0004:00000464 ??_C@_03OALE@?$CF4d?$AA@ 004e3464 stdioscb.obj - 0004:00000468 ?_cmmSTDIO@STDIO@@1UCMM@CMH@@A 004e3468 studio.obj - 0004:00000470 ?_rgcmmeSTDIO@STDIO@@0QAUCMME@CMH@@A 004e3470 studio.obj - 0004:00000700 ??_C@_0BG@BNCH@Running?5script?5failed?$AA@ 004e3700 studio.obj - 0004:00000718 ??_C@_0L@KLLF@3dmovie?4ms?$AA@ 004e3718 studio.obj - 0004:00000724 ??_C@_02OOND@?4?4?$AA@ 004e3724 tgob.obj - 0004:00000728 ?_cmmESL@ESL@@1UCMM@CMH@@A 004e3728 esl.obj - 0004:00000730 ?_rgcmmeESL@ESL@@0QAUCMME@CMH@@A 004e3730 esl.obj - 0004:00000760 ?_cmmESLT@ESLT@@1UCMM@CMH@@A 004e3760 esl.obj - 0004:00000768 ?_rgcmmeESLT@ESLT@@0QAUCMME@CMH@@A 004e3768 esl.obj - 0004:000007f8 ?_cmmESLA@ESLA@@1UCMM@CMH@@A 004e37f8 esl.obj - 0004:00000800 ?_rgcmmeESLA@ESLA@@0QAUCMME@CMH@@A 004e3800 esl.obj - 0004:00000840 ?_cmmESLL@ESLL@@1UCMM@CMH@@A 004e3840 esl.obj - 0004:00000848 ?_rgcmmeESLL@ESLL@@0QAUCMME@CMH@@A 004e3848 esl.obj - 0004:00000878 ?_cmmESLR@ESLR@@1UCMM@CMH@@A 004e3878 esl.obj - 0004:00000880 ?_rgcmmeESLR@ESLR@@0QAUCMME@CMH@@A 004e3880 esl.obj - 0004:000008c0 ?_cmmAPE@APE@@1UCMM@CMH@@A 004e38c0 ape.obj - 0004:000008c8 ?_rgcmmeAPE@APE@@0QAUCMME@CMH@@A 004e38c8 ape.obj - 0004:000008e8 ?_cmmMP@MP@@1UCMM@CMH@@A 004e38e8 popup.obj - 0004:000008f0 ?_rgcmmeMP@MP@@0QAUCMME@CMH@@A 004e38f0 popup.obj - 0004:00000910 ?_cmmMPFNT@MPFNT@@1UCMM@CMH@@A 004e3910 popup.obj - 0004:00000918 ?_rgcmmeMPFNT@MPFNT@@0QAUCMME@CMH@@A 004e3918 popup.obj - 0004:00000938 ?_cmmTATR@TATR@@1UCMM@CMH@@A 004e3938 tatr.obj - 0004:00000940 ?_rgcmmeTATR@TATR@@0QAUCMME@CMH@@A 004e3940 tatr.obj - 0004:00000990 ??_C@_0O@GHNP@?50?5MOTOWN?4INF?$AA@ 004e3990 mminstal.obj - 0004:000009a0 ?vpcodmUtil@@3PAVCODM@@A 004e39a0 utilglob.obj - 0004:000009a4 ?vpusac@@3PAVUSAC@@A 004e39a4 utilglob.obj - 0004:000009a8 ?vpers@@3PAVERS@@A 004e39a8 utilerro.obj - 0004:000009ac ?vpfnlib@@3P6GJJJ@ZA 004e39ac utilmem.obj - 0004:000009b0 ?_fInLiberator@@3HA 004e39b0 utilmem.obj - 0004:00000ab8 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 004e3ab8 appb.obj - 0004:00000ac0 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 004e3ac0 appb.obj - 0004:00000b24 ??_C@_07GHND@Generic?$AA@ 004e3b24 appb.obj - 0004:00000b2c ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 004e3b2c appb.obj - 0004:00000b3c ??_C@_0M@HLIB@Courier?5New?$AA@ 004e3b3c appb.obj - 0004:00000b48 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 004e3b48 appb.obj - 0004:00000b70 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 004e3b70 clok.obj - 0004:00000b78 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 004e3b78 clok.obj - 0004:00000b88 ?_cmmCMH@CMH@@1UCMM@1@A 004e3b88 cmd.obj - 0004:00000b90 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 004e3b90 cmd.obj - 0004:00000ba0 ?vaptGray@@3UAPT@@A 004e3ba0 gfx.obj - 0004:00000ba8 ?vaptLtGray@@3UAPT@@A 004e3ba8 gfx.obj - 0004:00000bb0 ?vaptDkGray@@3UAPT@@A 004e3bb0 gfx.obj - 0004:00000bb8 ?_mpgfdgrfpt@@3QAKA 004e3bb8 gfx.obj - 0004:00000bc8 ?_mpgfdgrfptInv@@3QAKA 004e3bc8 gfx.obj - 0004:00000bd8 ?_cmmGOB@GOB@@1UCMM@CMH@@A 004e3bd8 gob.obj - 0004:00000be0 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 004e3be0 gob.obj - 0004:00000c70 ?_ginDefGob@GOB@@1JA 004e3c70 gob.obj - 0004:00000c74 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 004e3c74 appbwin.obj - 0004:00000c8c ??_C@_03BLAA@APP?$AA@ 004e3c8c appbwin.obj - 0004:00000c90 ??_C@_00A@?$AA@ 004e3c90 appbwin.obj - 0004:00000c98 ?_hpal@GPT@@0PAUHPALETTE__@@A 004e3c98 gfxwin.obj - 0004:00000c9c ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 004e3c9c gfxwin.obj - 0004:00000ca0 ?_cclrPal@GPT@@0JA 004e3ca0 gfxwin.obj - 0004:00000ca4 ?_prgclr@GPT@@0PAUCLR@@A 004e3ca4 gfxwin.obj - 0004:00000ca8 ?_cactPalCur@GPT@@0JA 004e3ca8 gfxwin.obj - 0004:00000cac ?_cactFlush@GPT@@0JA 004e3cac gfxwin.obj - 0004:00000cb0 ?_fPalettized@GPT@@0HA 004e3cb0 gfxwin.obj - 0004:00000d28 ??_C@_09MLCM@MDICLIENT?$AA@ 004e3d28 gobwin.obj - 0004:00000d34 ?_rtiLast@CFL@@0JA 004e3d34 chunk.obj - 0004:00000d38 ?vftgCreator@FIL@@2JA 004e3d38 file.obj - 0004:00000d3c ?vftgTemp@@3JA 004e3d3c fniwin.obj - 0004:00000d44 ??_C@_08GBDA@Temp?$CF04x?$AA@ 004e3d44 fniwin.obj - 0004:00000d50 ??_C@_04POLC@?$CFc?3?2?$AA@ 004e3d50 fniwin.obj - 0004:00000d58 ??_C@_01FDHG@?$CK?$AA@ 004e3d58 fniwin.obj - 0004:00000d5c ??_C@_01PJCK@?4?$AA@ 004e3d5c fniwin.obj - 0004:00000d60 ?vluSysVolFake@@3KA 004e3d60 sndm.obj - 0004:00000d68 ?vcbMaxMemWave@SDAM@@2JA 004e3d68 sndam.obj - 0004:00000da0 ??_C@_0P@GIHP@midiStreamStop?$AA@ 004e3da0 mididev2.obj - 0004:00000db0 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 004e3db0 mididev2.obj - 0004:00000dc4 ??_C@_0BA@JHNK@midiStreamPause?$AA@ 004e3dc4 mididev2.obj - 0004:00000dd4 ??_C@_0O@MCEN@midiStreamOut?$AA@ 004e3dd4 mididev2.obj - 0004:00000de4 ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 004e3de4 mididev2.obj - 0004:00000df8 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 004e3df8 mididev2.obj - 0004:00000e0c ??_C@_0BA@PKJI@midiStreamClose?$AA@ 004e3e0c mididev2.obj - 0004:00000e1c ??_C@_0P@FAGH@midiStreamOpen?$AA@ 004e3e1c mididev2.obj - 0004:00000e2c ??_C@_09GPGB@WINMM?4DLL?$AA@ 004e3e2c mididev2.obj - 0004:00000e38 ?_cmmGVDS@GVDS@@1UCMM@CMH@@A 004e3e38 video.obj - 0004:00000e40 ?_rgcmmeGVDS@GVDS@@0QAUCMME@CMH@@A 004e3e40 video.obj - 0004:00000e50 ??_C@_08KPNA@avivideo?$AA@ 004e3e50 video.obj - 0004:00000e5c ??_C@_05MPAG@_parm?$AA@ 004e3e5c screxe.obj - 0004:00000e64 ??_C@_06DPCM@_cparm?$AA@ 004e3e64 screxe.obj - 0004:00000e70 ?_cactLast@DOCB@@1JA 004e3e70 docb.obj - 0004:00000e74 ?_pdocbFirst@DOCB@@1PAV1@A 004e3e74 docb.obj - 0004:00000e78 ?_cmmDDG@DDG@@1UCMM@CMH@@A 004e3e78 docb.obj - 0004:00000e80 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 004e3e80 docb.obj - 0004:00000f50 ?_cmmDSG@DSG@@1UCMM@CMH@@A 004e3f50 docb.obj - 0004:00000f58 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 004e3f58 docb.obj - 0004:00000f88 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 004e3f88 docb.obj - 0004:00000f98 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 004e3f98 docb.obj - 0004:00000fa4 ??_C@_09IDMC@Clipboard?$AA@ 004e3fa4 docb.obj - 0004:00000fb0 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 004e3fb0 rtxt.obj - 0004:00000fb8 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 004e3fb8 rtxt.obj - 0004:000010a8 ?_szCtlProp@@3QADA 004e40a8 ctl.obj - 0004:000010b4 ??_C@_09LIFG@SCROLLBAR?$AA@ 004e40b4 ctl.obj - 0004:000010c0 ?_szDlgProp@@3QADA 004e40c0 dlgwin.obj - 0004:000010c4 ??_C@_01BJG@?6?$AA@ 004e40c4 kidworld.obj - 0004:000010c8 ?_cmmTXHG@TXHG@@1UCMM@CMH@@A 004e40c8 kidhelp.obj - 0004:000010d0 ?_rgcmmeTXHG@TXHG@@0QAUCMME@CMH@@A 004e40d0 kidhelp.obj - 0004:00001100 ??_C@_08LFAA@_gidBase?$AA@ 004e4100 kidhelp.obj - 0004:0000110c ??_C@_09JJKK@_cnoSound?$AA@ 004e410c kidhelp.obj - 0004:00001118 ??_C@_09PEHH@_ctgSound?$AA@ 004e4118 kidhelp.obj - 0004:00001128 ?_cmmGOK@GOK@@1UCMM@CMH@@A 004e4128 kidspace.obj - 0004:00001130 ?_rgcmmeGOK@GOK@@0QAUCMME@CMH@@A 004e4130 kidspace.obj - 0004:00001190 ?_mpgmsgmseEnd@@3QAUGMSE@@A 004e4190 kidspace.obj - 0004:00001200 ?_mpgmsgmseMove@@3QAUGMSE@@A 004e4200 kidspace.obj - 0004:00001270 ?_mpgmsgmseRollOff@@3QAUGMSE@@A 004e4270 kidspace.obj - 0004:000012e0 ?_mpgmsgmseMouseDown@@3QAUGMSE@@A 004e42e0 kidspace.obj - 0004:00001350 ?_mpgmsgmseDownOn@@3QAUGMSE@@A 004e4350 kidspace.obj - 0004:000013c0 ?_mpgmsgmseDownOff@@3QAUGMSE@@A 004e43c0 kidspace.obj - 0004:00001430 ?_mpgmsgmseUpOn@@3QAUGMSE@@A 004e4430 kidspace.obj - 0004:000014a0 ?_mpgmsgmseUpOff@@3QAUGMSE@@A 004e44a0 kidspace.obj - 0004:00001548 ??_C@_0L@JBFE@?$CFd?5?$CI0x?$CFx?$CJ?5?$AA@ 004e4548 screxeg.obj - 0004:00001554 ??_C@_0CC@ONHO@Script?5Message?5?$CI?8?$CFf?8?0?50x?$CFx?0?5?$CFd?$CJ?3@ 004e4554 screxeg.obj - 0004:00001578 ?_pszOom@@3PADA 004e4578 scrcom.obj - 0004:0000157c ?_pszSyntax@@3PADA 004e457c scrcom.obj - 0004:00001580 ?_rgszop@@3QAUSZOP@@A 004e4580 scrcom.obj - 0004:00001760 ?_rgarop@@3QAUAROP@@A 004e4760 scrcom.obj - 0004:000019d0 ?_rgpszKey@@3QAPADA 004e49d0 scrcom.obj - 0004:000019f0 ?_rgtomeExp@@3QAUTOME@@A 004e49f0 scrcom.obj - 0004:00001c50 ?_rgtomeOp@@3QAUTOME@@A 004e4c50 scrcom.obj - 0004:00001d14 ??_C@_08HOLA@Continue?$AA@ 004e4d14 scrcom.obj - 0004:00001d20 ??_C@_05EABD@Break?$AA@ 004e4d20 scrcom.obj - 0004:00001d28 ??_C@_05NNJC@While?$AA@ 004e4d28 scrcom.obj - 0004:00001d30 ??_C@_03HPMG@End?$AA@ 004e4d30 scrcom.obj - 0004:00001d34 ??_C@_04CCEF@Else?$AA@ 004e4d34 scrcom.obj - 0004:00001d3c ??_C@_04CPFE@Elif?$AA@ 004e4d3c scrcom.obj - 0004:00001d44 ??_C@_02BAJ@If?$AA@ 004e4d44 scrcom.obj - 0004:00001d48 ??_C@_04POBJ@Goto?$AA@ 004e4d48 scrcom.obj - 0004:00001d50 ??_C@_06GDJA@IfGoto?$AA@ 004e4d50 scrcom.obj - 0004:00001d58 ??_C@_0L@KPKB@CopySubStr?$AA@ 004e4d58 scrcom.obj - 0004:00001d64 ??_C@_06KDAM@LenStr?$AA@ 004e4d64 scrcom.obj - 0004:00001d6c ??_C@_0L@ICIJ@ConcatStrs?$AA@ 004e4d6c scrcom.obj - 0004:00001d78 ??_C@_08HOLI@StrToNum?$AA@ 004e4d78 scrcom.obj - 0004:00001d84 ??_C@_08PBFD@NumToStr?$AA@ 004e4d84 scrcom.obj - 0004:00001d90 ??_C@_09JFKG@ScaleTime?$AA@ 004e4d90 scrcom.obj - 0004:00001d9c ??_C@_09KOLA@MergeStrs?$AA@ 004e4d9c scrcom.obj - 0004:00001da8 ??_C@_07MHIA@NukeStr?$AA@ 004e4da8 scrcom.obj - 0004:00001db0 ??_C@_07ELLC@MoveStr?$AA@ 004e4db0 scrcom.obj - 0004:00001db8 ??_C@_07PCEE@CopyStr?$AA@ 004e4db8 scrcom.obj - 0004:00001dc0 ??_C@_05PFIH@Pause?$AA@ 004e4dc0 scrcom.obj - 0004:00001dc8 ??_C@_05LKIE@Match?$AA@ 004e4dc8 scrcom.obj - 0004:00001dd0 ??_C@_08HGHE@NextCard?$AA@ 004e4dd0 scrcom.obj - 0004:00001ddc ??_C@_0M@GGGO@ShuffleList?$AA@ 004e4ddc scrcom.obj - 0004:00001de8 ??_C@_07MFK@Shuffle?$AA@ 004e4de8 scrcom.obj - 0004:00001df0 ??_C@_09CAHB@SetReturn?$AA@ 004e4df0 scrcom.obj - 0004:00001dfc ??_C@_06JCBD@Return?$AA@ 004e4dfc scrcom.obj - 0004:00001e04 ??_C@_04LKDK@Exit?$AA@ 004e4e04 scrcom.obj - 0004:00001e0c ??_C@_02DNIN@Go?$AA@ 004e4e0c scrcom.obj - 0004:00001e10 ??_C@_04HAFI@GoNz?$AA@ 004e4e10 scrcom.obj - 0004:00001e18 ??_C@_03JNBL@GoZ?$AA@ 004e4e18 scrcom.obj - 0004:00001e1c ??_C@_04PFCA@GoLe?$AA@ 004e4e1c scrcom.obj - 0004:00001e24 ??_C@_04HLIL@GoGe?$AA@ 004e4e24 scrcom.obj - 0004:00001e2c ??_C@_04PGMH@GoLt?$AA@ 004e4e2c scrcom.obj - 0004:00001e34 ??_C@_04HIGM@GoGt?$AA@ 004e4e34 scrcom.obj - 0004:00001e3c ??_C@_04NIHF@GoNe?$AA@ 004e4e3c scrcom.obj - 0004:00001e44 ??_C@_04FFPC@GoEq?$AA@ 004e4e44 scrcom.obj - 0004:00001e4c ??_C@_06ININ@Select?$AA@ 004e4e4c scrcom.obj - 0004:00001e54 ??_C@_07KEJC@RndList?$AA@ 004e4e54 scrcom.obj - 0004:00001e5c ??_C@_07OONJ@PopList?$AA@ 004e4e5c scrcom.obj - 0004:00001e64 ??_C@_07GBJG@DupList?$AA@ 004e4e64 scrcom.obj - 0004:00001e6c ??_C@_03JCDI@Rev?$AA@ 004e4e6c scrcom.obj - 0004:00001e70 ??_C@_03FPBH@Rot?$AA@ 004e4e70 scrcom.obj - 0004:00001e74 ??_C@_04BCL@Swap?$AA@ 004e4e74 scrcom.obj - 0004:00001e7c ??_C@_03FBGG@Pop?$AA@ 004e4e7c scrcom.obj - 0004:00001e80 ??_C@_03MKPO@Dup?$AA@ 004e4e80 scrcom.obj - 0004:00001e84 ??_C@_02LCLA@Le?$AA@ 004e4e84 scrcom.obj - 0004:00001e88 ??_C@_02DMBL@Ge?$AA@ 004e4e88 scrcom.obj - 0004:00001e8c ??_C@_02LBFH@Lt?$AA@ 004e4e8c scrcom.obj - 0004:00001e90 ??_C@_02DPPM@Gt?$AA@ 004e4e90 scrcom.obj - 0004:00001e94 ??_C@_02JPOF@Ne?$AA@ 004e4e94 scrcom.obj - 0004:00001e98 ??_C@_02BCGC@Eq?$AA@ 004e4e98 scrcom.obj - 0004:00001e9c ??_C@_04ENMP@LNot?$AA@ 004e4e9c scrcom.obj - 0004:00001ea4 ??_C@_04HPKA@LXor?$AA@ 004e4ea4 scrcom.obj - 0004:00001eac ??_C@_04LILD@BNot?$AA@ 004e4eac scrcom.obj - 0004:00001eb4 ??_C@_04IKNM@BXor?$AA@ 004e4eb4 scrcom.obj - 0004:00001ebc ??_C@_03FEFN@BOr?$AA@ 004e4ebc scrcom.obj - 0004:00001ec0 ??_C@_04CJLN@BAnd?$AA@ 004e4ec0 scrcom.obj - 0004:00001ec8 ??_C@_06NIPH@MulDiv?$AA@ 004e4ec8 scrcom.obj - 0004:00001ed0 ??_C@_03OAMN@Rnd?$AA@ 004e4ed0 scrcom.obj - 0004:00001ed4 ??_C@_03PGJO@Dec?$AA@ 004e4ed4 scrcom.obj - 0004:00001ed8 ??_C@_03PCMM@Inc?$AA@ 004e4ed8 scrcom.obj - 0004:00001edc ??_C@_03GIFK@Neg?$AA@ 004e4edc scrcom.obj - 0004:00001ee0 ??_C@_03CEPH@Abs?$AA@ 004e4ee0 scrcom.obj - 0004:00001ee4 ??_C@_03PJNJ@Mod?$AA@ 004e4ee4 scrcom.obj - 0004:00001ee8 ??_C@_03LANL@Div?$AA@ 004e4ee8 scrcom.obj - 0004:00001eec ??_C@_03FPMJ@Mul?$AA@ 004e4eec scrcom.obj - 0004:00001ef0 ??_C@_03KJKL@Sub?$AA@ 004e4ef0 scrcom.obj - 0004:00001ef4 ??_C@_03KPJN@Add?$AA@ 004e4ef4 scrcom.obj - 0004:00001ef8 ??_C@_0N@GABD@Syntax?5error?$AA@ 004e4ef8 scrcom.obj - 0004:00001f08 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 004e4f08 scrcom.obj - 0004:00001f18 ?_szPoundLine@@3QADA 004e4f18 lex.obj - 0004:00001f20 ?_mpchgrfct@LEXB@@1QAGA 004e4f20 lex.obj - 0004:00002020 ?_rgtt@@3QAFA 004e5020 lex.obj - 0004:000020e0 ?_rgttDouble@@3QAFA 004e50e0 lex.obj - 0004:00002190 ?_rgttEqual@@3QAFA 004e5190 lex.obj - 0004:00002248 ?gpMixer@@3PAUIAMMixer@@A 004e5248 audios:factory.obj - 0004:0000224c ??_C@_01A@?$AA?$AA@ 004e524c audios:riffstrm.obj - 0004:00002250 ?_fBRenderInited@BWLD@@1HA 004e5250 bren:bwld.obj - 0004:0000228c _sin_table 004e528c brfwmxr:fixed386.obj - 0004:0000230c _cos_table 004e530c brfwmxr:fixed386.obj - 0004:00002510 _arcsin_table 004e5510 brfwmxr:fixed386.obj - 0004:00002712 _arccos_table 004e5712 brfwmxr:fixed386.obj - 0004:0000326b __CombineTransforms 004e626b brfwmxr:transfrm.obj - 0004:00003634 __BrDefaultModel 004e6634 brfwmxr:def_mdl.obj - 0004:000036dc __BrMemoryDevice 004e66dc brfwmxr:pmmemops.obj - 0004:000036f8 __BrMemoryContext 004e66f8 brfwmxr:pmmemops.obj - 0004:00003804 __BrDefaultMaterial 004e6804 brfwmxr:def_mat.obj - 0004:000039ac __br_scratch_string 004e69ac brfwmxr:scrstr.obj - 0004:00003c14 __FontFixed3x5 004e6c14 brfwmxr:fnt3x5.obj - 0004:000041e4 __reciprocal 004e71e4 brfwmxr:fixed.obj - 0004:000061f0 __8087 004e91f0 brfwmxr:magicsym.obj - 0004:000061f4 __init_387_emulator 004e91f4 brfwmxr:magicsym.obj - 0004:000061f8 _fltused_ 004e91f8 brfwmxr:magicsym.obj - 0004:00006af4 _cutoff 004e9af4 brzbmxr:persp.obj - 0004:00006af8 _PerspCheat 004e9af8 brzbmxr:persp.obj - 0004:00006b70 _Orig 004e9b70 brzbmxr:awtm.obj - 0004:00006d98 ?_cmmMVIE@MVIE@@1UCMM@CMH@@A 004e9d98 engine:movie.obj - 0004:00006da0 ?_rgcmmeMVIE@MVIE@@0QAUCMME@CMH@@A 004e9da0 engine:movie.obj - 0004:00006de0 ?_cmmMVU@MVU@@1UCMM@CMH@@A 004e9de0 engine:movie.obj - 0004:00006de8 ?_rgcmmeMVU@MVU@@0QAUCMME@CMH@@A 004e9de8 engine:movie.obj - 0004:00006eb8 ?_fKbdDelayed@MVU@@1HA 004e9eb8 engine:movie.obj - 0004:00006ebc ??_C@_03LAHE@3mm?$AA@ 004e9ebc engine:movie.obj - 0004:00006ec0 ?_cmmMSQ@MSQ@@1UCMM@CMH@@A 004e9ec0 engine:msnd.obj - 0004:00006ec8 ?_rgcmmeMSQ@MSQ@@0QAUCMME@CMH@@A 004e9ec8 engine:msnd.obj - 0004:00006ee8 ?_pbmtlHilite@BODY@@1PAUbr_material@@A 004e9ee8 engine:body.obj - 0004:00006eec ??_C@_06JFCF@Hilite?$AA@ 004e9eec engine:body.obj - 0004:00006ef4 ?_ptmapShadeTable@MTRL@@1PAVTMAP@@A 004e9ef4 engine:mtrl.obj - 0004:00006ef8 ??_C@_04MIGL@1234?$AA@ 004e9ef8 engine:mtrl.obj - 0004:00006f00 ?_pgstAction@TDT@@1PAVGST@@A 004e9f00 engine:tdt.obj - 0004:00006f10 ?_cmmTBXG@TBXG@@1UCMM@CMH@@A 004e9f10 engine:tbox.obj - 0004:00006f18 ?_rgcmmeTBXG@TBXG@@0QAUCMME@CMH@@A 004e9f18 engine:tbox.obj - 0004:00006ff8 ??_C@_0CO@DFMB@Couldn?8t?5find?5BMDL?5for?53?9D?5Font?5@ 004e9ff8 engine:tdf.obj - 0004:00007188 __fltused 004ea188 LIBC:fpinit.obj - 0004:0000718c __ldused 004ea18c LIBC:fpinit.obj - 0004:00007190 ___fastflag 004ea190 LIBC:fpinit.obj - 0004:00007194 __adjust_fdiv 004ea194 LIBC:fpinit.obj - 0004:00007198 __FPinit 004ea198 LIBC:fpinit.obj - 0004:0000719c __FPmtinit 004ea19c LIBC:fpinit.obj - 0004:000071a0 __FPmtterm 004ea1a0 LIBC:fpinit.obj - 0004:000071a4 __aenvptr 004ea1a4 LIBC:wincrt0.obj - 0004:000071a8 __wenvptr 004ea1a8 LIBC:wincrt0.obj - 0004:000071ac __aexit_rtn 004ea1ac LIBC:wincrt0.obj - 0004:000071c0 _errno 004ea1c0 LIBC:crt0dat.obj - 0004:000071c4 __doserrno 004ea1c4 LIBC:crt0dat.obj - 0004:000071c8 __umaskval 004ea1c8 LIBC:crt0dat.obj - 0004:000071cc __osver 004ea1cc LIBC:crt0dat.obj - 0004:000071d0 __winver 004ea1d0 LIBC:crt0dat.obj - 0004:000071d4 __winmajor 004ea1d4 LIBC:crt0dat.obj - 0004:000071d8 __winminor 004ea1d8 LIBC:crt0dat.obj - 0004:000071dc ___argc 004ea1dc LIBC:crt0dat.obj - 0004:000071e0 ___argv 004ea1e0 LIBC:crt0dat.obj - 0004:000071e4 ___wargv 004ea1e4 LIBC:crt0dat.obj - 0004:000071e8 __environ 004ea1e8 LIBC:crt0dat.obj - 0004:000071ec ___initenv 004ea1ec LIBC:crt0dat.obj - 0004:000071f0 __wenviron 004ea1f0 LIBC:crt0dat.obj - 0004:000071f4 ___winitenv 004ea1f4 LIBC:crt0dat.obj - 0004:000071f8 __pgmptr 004ea1f8 LIBC:crt0dat.obj - 0004:000071fc __wpgmptr 004ea1fc LIBC:crt0dat.obj - 0004:00007200 __exitflag 004ea200 LIBC:crt0dat.obj - 0004:00007204 __C_Termination_Done 004ea204 LIBC:crt0dat.obj - 0004:00007208 __pnhHeap 004ea208 LIBC:malloc.obj - 0004:00007270 __cfltcvt_tab 004ea270 LIBC:cmiscdat.obj - 0004:000072a0 __XcptActTab 004ea2a0 LIBC:winxfltr.obj - 0004:00007318 __First_FPE_Indx 004ea318 LIBC:winxfltr.obj - 0004:0000731c __Num_FPE 004ea31c LIBC:winxfltr.obj - 0004:00007320 __XcptActTabCount 004ea320 LIBC:winxfltr.obj - 0004:00007324 __fpecode 004ea324 LIBC:winxfltr.obj - 0004:00007328 __pxcptinfoptrs 004ea328 LIBC:winxfltr.obj - 0004:00007330 __mbctype 004ea330 LIBC:mbctype.obj - 0004:00007434 ___mbcodepage 004ea434 LIBC:mbctype.obj - 0004:00007438 ___mblcid 004ea438 LIBC:mbctype.obj - 0004:00007440 ___mbulinfo 004ea440 LIBC:mbctype.obj - 0004:00007548 __nhandle 004ea548 LIBC:ioinit.obj - 0004:00007550 __osfile 004ea550 LIBC:ioinit.obj - 0004:00007590 __osfhnd 004ea590 LIBC:ioinit.obj - 0004:00007690 __pipech 004ea690 LIBC:ioinit.obj - 0004:000076d0 __heap_desc 004ea6d0 LIBC:heapinit.obj - 0004:000076e4 __heap_resetsize 004ea6e4 LIBC:heapinit.obj - 0004:000076e8 __amblksiz 004ea6e8 LIBC:heapinit.obj - 0004:000076ec __heap_regionsize 004ea6ec LIBC:heapinit.obj - 0004:000076f0 __heap_maxregsize 004ea6f0 LIBC:heapinit.obj - 0004:00007960 __adbgmsg 004ea960 LIBC:crt0msg.obj - 0004:00007970 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 004ea970 LIBC:hooks.obj - 0004:00007974 ?__pTerminate@@3P6AXXZA 004ea974 LIBC:hooks.obj - 0004:00007978 ?__pUnexpected@@3P6AXXZA 004ea978 LIBC:hooks.obj - 0004:0000797c ?__pInconsistency@@3P6AXXZA 004ea97c LIBC:hooks.obj - 0004:00007980 __infinity 004ea980 LIBC:87tran.obj - 0004:0000798a __minfinity 004ea98a LIBC:87tran.obj - 0004:00007994 __logemax 004ea994 LIBC:87tran.obj - 0004:000079c4 __OP_POWjmptab 004ea9c4 LIBC:87tran.obj - 0004:00007a14 __OP_LOG10jmptab 004eaa14 LIBC:87tran.obj - 0004:00007a34 __OP_LOGjmptab 004eaa34 LIBC:87tran.obj - 0004:00007a54 __OP_EXPjmptab 004eaa54 LIBC:87tran.obj - 0004:00007a7c ___nullstring 004eaa7c LIBC:output.obj - 0004:00007a90 ___wnullstring 004eaa90 LIBC:output.obj - 0004:00007a94 __OP_SQRTjmptab 004eaa94 LIBC:87sqrt.obj - 0004:00007c68 __d_inf 004eac68 LIBC:util.obj - 0004:00007c70 __d_ind 004eac70 LIBC:util.obj - 0004:00007c78 __d_max 004eac78 LIBC:util.obj - 0004:00007c80 __d_min 004eac80 LIBC:util.obj - 0004:00007c88 __d_mzero 004eac88 LIBC:util.obj - 0004:00007c90 __newmode 004eac90 LIBC:_newmode.obj - 0004:00007c94 ___mb_cur_max 004eac94 LIBC:nlsdata1.obj - 0004:00007c9c ___decimal_point 004eac9c LIBC:nlsdata1.obj - 0004:00007ca0 ___decimal_point_length 004eaca0 LIBC:nlsdata1.obj - 0004:00007ca8 __pctype 004eaca8 LIBC:ctype.obj - 0004:00007cac __pwctype 004eacac LIBC:ctype.obj - 0004:00007cb0 __ctype 004eacb0 LIBC:ctype.obj - 0004:00007f74 __indefinite 004eaf74 LIBC:87disp.obj - 0004:00007f7e __piby2 004eaf7e LIBC:87disp.obj - 0004:00007f90 __cpower 004eaf90 LIBC:87disp.obj - 0004:00007fa8 __iob 004eafa8 LIBC:_file.obj - 0004:00008228 __lastiob 004eb228 LIBC:_file.obj - 0004:0000822c __matherr_flag 004eb22c LIBC:matherr.obj - 0004:000082d0 ___lc_handle 004eb2d0 LIBC:nlsdata2.obj - 0004:000082e8 ___lc_codepage 004eb2e8 LIBC:nlsdata2.obj - 0004:00008488 __cflush 004eb488 LIBC:fflush.obj - 0004:0000848c ___invalid_mb_chars 004eb48c LIBC:setmbval.obj - 0004:00008498 __pow10pos 004eb498 LIBC:constpow.obj - 0004:000085f8 __pow10neg 004eb5f8 LIBC:constpow.obj - 0004:00008758 _BrStdioFilesystem 004eb758 bren:stdfile.obj - 0004:0000878c __BrDefaultFilesystem 004eb78c bren:stdfile.obj - 0004:00008790 ??_C@_0M@FGJC@Standard?5IO?$AA@ 004eb790 bren:stdfile.obj - 0004:0000879c ??_C@_0CI@EKNG@BrStdFileOpenRead?3?5invalid?5open_@ 004eb79c bren:stdfile.obj - 0004:000087c4 ??_C@_02MMAH@rt?$AA@ 004eb7c4 bren:stdfile.obj - 0004:000087c8 ??_C@_0N@OGCO@BRENDER_PATH?$AA@ 004eb7c8 bren:stdfile.obj - 0004:000087d8 ??_C@_02JKAF@rb?$AA@ 004eb7d8 bren:stdfile.obj - 0004:000087dc ??_C@_02NGAF@wb?$AA@ 004eb7dc bren:stdfile.obj - 0004:000087e0 ??_C@_02IAAH@wt?$AA@ 004eb7e0 bren:stdfile.obj - 0004:000087e8 _BrStdioDiagHandler 004eb7e8 bren:stderr.obj - 0004:000087f4 __BrDefaultDiagHandler 004eb7f4 bren:stderr.obj - 0004:000087f8 ??_C@_0BC@DONA@Stdio?5DiagHandler?$AA@ 004eb7f8 bren:stderr.obj - 0004:0000880c ??_C@_0BA@NGPO@BRender?5Warning?$AA@ 004eb80c bren:stderr.obj - 0004:0000881c ??_C@_0BE@CABL@BRender?5Fatal?5Error?$AA@ 004eb81c bren:stderr.obj - 0004:00008830 _BrStdlibAllocator 004eb830 bren:stdmem.obj - 0004:00008840 __BrDefaultAllocator 004eb840 bren:stdmem.obj - 0004:00008844 ??_C@_06OCBH@malloc?$AA@ 004eb844 bren:stdmem.obj - 0004:0000969c __BrFilePrimsNull 004ec69c brfwmxr:datafile.obj - 0004:00009820 __stdbuf 004ec820 LIBC:_sftbuf.obj - 0004:0000982c __commode 004ec82c LIBC:ncommode.obj - 0004:00009830 ___fcntrlcomp 004ec830 LIBC:setfcntr.obj - 0004:00009894 __fmode 004ec894 LIBC:txtmode.obj - 0004:00009898 ___xc_a 004ec898 LIBC:crt0init.obj - 0004:00009a0c ___xc_z 004eca0c LIBC:crt0init.obj - 0004:00009a10 ___xi_a 004eca10 LIBC:crt0init.obj - 0004:00009a20 ___xi_z 004eca20 LIBC:crt0init.obj - 0004:00009a24 ___xp_a 004eca24 LIBC:crt0init.obj - 0004:00009a2c ___xp_z 004eca2c LIBC:crt0init.obj - 0004:00009a30 ___xt_a 004eca30 LIBC:crt0init.obj - 0004:00009a34 ___xt_z 004eca34 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 004ed000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 004ed014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 004ed028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 004ed03c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 004ed050 winmm:WINMM.dll - 0005:00000064 ADVAPI32_IMPORT_DESCRIPTOR 004ed064 advapi32:ADVAPI32.dll - 0005:00000078 MPR_IMPORT_DESCRIPTOR 004ed078 mpr:MPR.dll - 0005:0000008c MSVFW32_IMPORT_DESCRIPTOR 004ed08c vfw32:MSVFW32.dll - 0005:000000a0 AVIFIL32_IMPORT_DESCRIPTOR 004ed0a0 vfw32:AVIFIL32.dll - 0005:000000b4 __IMPORT_DESCRIPTOR_MSACM32 004ed0b4 audios:MSACM32.dll - 0005:000000c8 NULL_IMPORT_DESCRIPTOR 004ed0c8 kernel32:KERNEL32.dll - 0005:000000dc __NULL_IMPORT_DESCRIPTOR 004ed0dc audios:MSACM32.dll - 0005:00000640 __imp__RegCloseKey@4 004ed640 advapi32:ADVAPI32.dll - 0005:00000644 __imp__RegSetValueExA@24 004ed644 advapi32:ADVAPI32.dll - 0005:00000648 __imp__RegQueryValueExA@24 004ed648 advapi32:ADVAPI32.dll - 0005:0000064c __imp__RegCreateKeyExA@36 004ed64c advapi32:ADVAPI32.dll - 0005:00000650 __imp__RegEnumValueA@32 004ed650 advapi32:ADVAPI32.dll - 0005:00000654 \177ADVAPI32_NULL_THUNK_DATA 004ed654 advapi32:ADVAPI32.dll - 0005:00000658 __imp__AVIStreamStart@4 004ed658 vfw32:AVIFIL32.dll - 0005:0000065c __imp__AVIFileExit@0 004ed65c vfw32:AVIFIL32.dll - 0005:00000660 __imp__AVIFileRelease@4 004ed660 vfw32:AVIFIL32.dll - 0005:00000664 __imp__AVIStreamGetFrameOpen@8 004ed664 vfw32:AVIFIL32.dll - 0005:00000668 __imp__AVIFileInit@0 004ed668 vfw32:AVIFIL32.dll - 0005:0000066c __imp__AVIStreamRelease@4 004ed66c vfw32:AVIFIL32.dll - 0005:00000670 __imp__AVIStreamGetFrameClose@4 004ed670 vfw32:AVIFIL32.dll - 0005:00000674 __imp__AVIStreamLength@4 004ed674 vfw32:AVIFIL32.dll - 0005:00000678 __imp__AVIFileInfoA@12 004ed678 vfw32:AVIFIL32.dll - 0005:0000067c __imp__AVIFileGetStream@16 004ed67c vfw32:AVIFIL32.dll - 0005:00000680 __imp__AVIFileOpenA@16 004ed680 vfw32:AVIFIL32.dll - 0005:00000684 __imp__AVIStreamSampleToTime@8 004ed684 vfw32:AVIFIL32.dll - 0005:00000688 __imp__AVIStreamTimeToSample@8 004ed688 vfw32:AVIFIL32.dll - 0005:0000068c __imp__AVIStreamGetFrame@8 004ed68c vfw32:AVIFIL32.dll - 0005:00000690 \177AVIFIL32_NULL_THUNK_DATA 004ed690 vfw32:AVIFIL32.dll - 0005:00000694 __imp__GetStockObject@4 004ed694 gdi32:GDI32.dll - 0005:00000698 __imp__SetTextColor@8 004ed698 gdi32:GDI32.dll - 0005:0000069c __imp__SetBkMode@8 004ed69c gdi32:GDI32.dll - 0005:000006a0 __imp__GetTextMetricsA@8 004ed6a0 gdi32:GDI32.dll - 0005:000006a4 __imp__OffsetRgn@12 004ed6a4 gdi32:GDI32.dll - 0005:000006a8 __imp__SelectClipRgn@8 004ed6a8 gdi32:GDI32.dll - 0005:000006ac __imp__ExtCreateRegion@12 004ed6ac gdi32:GDI32.dll - 0005:000006b0 __imp__CreateRectRgn@16 004ed6b0 gdi32:GDI32.dll - 0005:000006b4 __imp__CreateEllipticRgn@16 004ed6b4 gdi32:GDI32.dll - 0005:000006b8 __imp__GetClipRgn@8 004ed6b8 gdi32:GDI32.dll - 0005:000006bc __imp__RealizePalette@4 004ed6bc gdi32:GDI32.dll - 0005:000006c0 __imp__SelectPalette@12 004ed6c0 gdi32:GDI32.dll - 0005:000006c4 __imp__GdiFlush@0 004ed6c4 gdi32:GDI32.dll - 0005:000006c8 __imp__SetPaletteEntries@16 004ed6c8 gdi32:GDI32.dll - 0005:000006cc __imp__GetSystemPaletteEntries@16 004ed6cc gdi32:GDI32.dll - 0005:000006d0 __imp__ResizePalette@8 004ed6d0 gdi32:GDI32.dll - 0005:000006d4 __imp__CreatePalette@4 004ed6d4 gdi32:GDI32.dll - 0005:000006d8 __imp__SetPolyFillMode@8 004ed6d8 gdi32:GDI32.dll - 0005:000006dc __imp__AnimatePalette@16 004ed6dc gdi32:GDI32.dll - 0005:000006e0 __imp__DeleteDC@4 004ed6e0 gdi32:GDI32.dll - 0005:000006e4 __imp__DeleteEnhMetaFile@4 004ed6e4 gdi32:GDI32.dll - 0005:000006e8 __imp__DeleteObject@4 004ed6e8 gdi32:GDI32.dll - 0005:000006ec __imp__CreateDIBSection@24 004ed6ec gdi32:GDI32.dll - 0005:000006f0 __imp__CreateCompatibleDC@4 004ed6f0 gdi32:GDI32.dll - 0005:000006f4 __imp__CloseEnhMetaFile@4 004ed6f4 gdi32:GDI32.dll - 0005:000006f8 __imp__CombineRgn@16 004ed6f8 gdi32:GDI32.dll - 0005:000006fc __imp__SetDIBColorTable@16 004ed6fc gdi32:GDI32.dll - 0005:00000700 __imp__FillRgn@12 004ed700 gdi32:GDI32.dll - 0005:00000704 __imp__Rectangle@20 004ed704 gdi32:GDI32.dll - 0005:00000708 __imp__IntersectClipRect@20 004ed708 gdi32:GDI32.dll - 0005:0000070c __imp__SetROP2@8 004ed70c gdi32:GDI32.dll - 0005:00000710 __imp__TextOutA@20 004ed710 gdi32:GDI32.dll - 0005:00000714 __imp__GetTextExtentPoint32A@16 004ed714 gdi32:GDI32.dll - 0005:00000718 __imp__SetBkColor@8 004ed718 gdi32:GDI32.dll - 0005:0000071c __imp__CreateBitmap@20 004ed71c gdi32:GDI32.dll - 0005:00000720 __imp__CreateSolidBrush@4 004ed720 gdi32:GDI32.dll - 0005:00000724 __imp__CreatePatternBrush@4 004ed724 gdi32:GDI32.dll - 0005:00000728 __imp__StretchBlt@44 004ed728 gdi32:GDI32.dll - 0005:0000072c __imp__SetStretchBltMode@8 004ed72c gdi32:GDI32.dll - 0005:00000730 __imp__SetTextAlign@8 004ed730 gdi32:GDI32.dll - 0005:00000734 __imp__GetObjectA@12 004ed734 gdi32:GDI32.dll - 0005:00000738 __imp__CreateFontIndirectA@4 004ed738 gdi32:GDI32.dll - 0005:0000073c __imp__EnumFontsA@16 004ed73c gdi32:GDI32.dll - 0005:00000740 __imp__GetDeviceCaps@8 004ed740 gdi32:GDI32.dll - 0005:00000744 __imp__CreateRectRgnIndirect@4 004ed744 gdi32:GDI32.dll - 0005:00000748 __imp__SelectObject@8 004ed748 gdi32:GDI32.dll - 0005:0000074c \177GDI32_NULL_THUNK_DATA 004ed74c gdi32:GDI32.dll - 0005:00000750 __imp__LockResource@4 004ed750 kernel32:KERNEL32.dll - 0005:00000754 __imp__FindClose@4 004ed754 kernel32:KERNEL32.dll - 0005:00000758 __imp__GetVersion@0 004ed758 kernel32:KERNEL32.dll - 0005:0000075c __imp__SetCurrentDirectoryA@4 004ed75c kernel32:KERNEL32.dll - 0005:00000760 __imp__GlobalMemoryStatus@4 004ed760 kernel32:KERNEL32.dll - 0005:00000764 __imp__CloseHandle@4 004ed764 kernel32:KERNEL32.dll - 0005:00000768 __imp__LoadResource@8 004ed768 kernel32:KERNEL32.dll - 0005:0000076c __imp__FindResourceA@12 004ed76c kernel32:KERNEL32.dll - 0005:00000770 __imp__LoadLibraryA@4 004ed770 kernel32:KERNEL32.dll - 0005:00000774 __imp__FreeLibrary@4 004ed774 kernel32:KERNEL32.dll - 0005:00000778 __imp__GetProcAddress@8 004ed778 kernel32:KERNEL32.dll - 0005:0000077c __imp__CreateProcessA@40 004ed77c kernel32:KERNEL32.dll - 0005:00000780 __imp__DeleteCriticalSection@4 004ed780 kernel32:KERNEL32.dll - 0005:00000784 __imp__WaitForSingleObject@8 004ed784 kernel32:KERNEL32.dll - 0005:00000788 __imp__lstrcatA@8 004ed788 kernel32:KERNEL32.dll - 0005:0000078c __imp__InitializeCriticalSection@4 004ed78c kernel32:KERNEL32.dll - 0005:00000790 __imp__SetEnvironmentVariableA@8 004ed790 kernel32:KERNEL32.dll - 0005:00000794 __imp__SetStdHandle@8 004ed794 kernel32:KERNEL32.dll - 0005:00000798 __imp__GlobalAlloc@8 004ed798 kernel32:KERNEL32.dll - 0005:0000079c __imp__GlobalSize@4 004ed79c kernel32:KERNEL32.dll - 0005:000007a0 __imp__OutputDebugStringA@4 004ed7a0 kernel32:KERNEL32.dll - 0005:000007a4 __imp__GetVersionExA@4 004ed7a4 kernel32:KERNEL32.dll - 0005:000007a8 __imp__GlobalLock@4 004ed7a8 kernel32:KERNEL32.dll - 0005:000007ac __imp__GlobalUnlock@4 004ed7ac kernel32:KERNEL32.dll - 0005:000007b0 __imp__CreateThread@24 004ed7b0 kernel32:KERNEL32.dll - 0005:000007b4 __imp__Sleep@4 004ed7b4 kernel32:KERNEL32.dll - 0005:000007b8 __imp__CreateEventA@16 004ed7b8 kernel32:KERNEL32.dll - 0005:000007bc __imp__SetEvent@4 004ed7bc kernel32:KERNEL32.dll - 0005:000007c0 __imp__SetThreadPriority@8 004ed7c0 kernel32:KERNEL32.dll - 0005:000007c4 __imp__ResumeThread@4 004ed7c4 kernel32:KERNEL32.dll - 0005:000007c8 __imp__CreateDirectoryA@8 004ed7c8 kernel32:KERNEL32.dll - 0005:000007cc __imp__FindNextFileA@8 004ed7cc kernel32:KERNEL32.dll - 0005:000007d0 __imp__GetLogicalDrives@0 004ed7d0 kernel32:KERNEL32.dll - 0005:000007d4 __imp__GetDriveTypeA@4 004ed7d4 kernel32:KERNEL32.dll - 0005:000007d8 __imp__MoveFileA@8 004ed7d8 kernel32:KERNEL32.dll - 0005:000007dc __imp__GetFileAttributesA@4 004ed7dc kernel32:KERNEL32.dll - 0005:000007e0 __imp__GetFullPathNameA@16 004ed7e0 kernel32:KERNEL32.dll - 0005:000007e4 __imp__GetTempPathA@8 004ed7e4 kernel32:KERNEL32.dll - 0005:000007e8 __imp__SetEndOfFile@4 004ed7e8 kernel32:KERNEL32.dll - 0005:000007ec __imp__WriteFile@20 004ed7ec kernel32:KERNEL32.dll - 0005:000007f0 __imp__ReadFile@20 004ed7f0 kernel32:KERNEL32.dll - 0005:000007f4 __imp__DeleteFileA@4 004ed7f4 kernel32:KERNEL32.dll - 0005:000007f8 __imp__SetFilePointer@16 004ed7f8 kernel32:KERNEL32.dll - 0005:000007fc __imp__FlushFileBuffers@4 004ed7fc kernel32:KERNEL32.dll - 0005:00000800 __imp__GetCommandLineA@0 004ed800 kernel32:KERNEL32.dll - 0005:00000804 __imp__CreateFileA@28 004ed804 kernel32:KERNEL32.dll - 0005:00000808 __imp__FatalAppExitA@8 004ed808 kernel32:KERNEL32.dll - 0005:0000080c __imp__CompareStringA@24 004ed80c kernel32:KERNEL32.dll - 0005:00000810 __imp__GetCurrentThreadId@0 004ed810 kernel32:KERNEL32.dll - 0005:00000814 __imp__WideCharToMultiByte@32 004ed814 kernel32:KERNEL32.dll - 0005:00000818 __imp__LeaveCriticalSection@4 004ed818 kernel32:KERNEL32.dll - 0005:0000081c __imp__GlobalReAlloc@12 004ed81c kernel32:KERNEL32.dll - 0005:00000820 __imp__EnterCriticalSection@4 004ed820 kernel32:KERNEL32.dll - 0005:00000824 __imp__CreateSemaphoreA@16 004ed824 kernel32:KERNEL32.dll - 0005:00000828 __imp__GlobalFree@4 004ed828 kernel32:KERNEL32.dll - 0005:0000082c __imp__GetLastError@0 004ed82c kernel32:KERNEL32.dll - 0005:00000830 __imp__GetModuleFileNameA@12 004ed830 kernel32:KERNEL32.dll - 0005:00000834 __imp__FindFirstFileA@8 004ed834 kernel32:KERNEL32.dll - 0005:00000838 __imp__GetStartupInfoA@4 004ed838 kernel32:KERNEL32.dll - 0005:0000083c __imp__RtlUnwind@16 004ed83c kernel32:KERNEL32.dll - 0005:00000840 __imp__SetErrorMode@4 004ed840 kernel32:KERNEL32.dll - 0005:00000844 __imp__GetPrivateProfileIntA@16 004ed844 kernel32:KERNEL32.dll - 0005:00000848 __imp___hwrite@12 004ed848 kernel32:KERNEL32.dll - 0005:0000084c __imp__DebugBreak@0 004ed84c kernel32:KERNEL32.dll - 0005:00000850 __imp___hread@12 004ed850 kernel32:KERNEL32.dll - 0005:00000854 __imp___llseek@12 004ed854 kernel32:KERNEL32.dll - 0005:00000858 __imp___lcreat@8 004ed858 kernel32:KERNEL32.dll - 0005:0000085c __imp__GetModuleHandleA@4 004ed85c kernel32:KERNEL32.dll - 0005:00000860 __imp__GetEnvironmentStrings@0 004ed860 kernel32:KERNEL32.dll - 0005:00000864 __imp___lclose@4 004ed864 kernel32:KERNEL32.dll - 0005:00000868 __imp___lopen@8 004ed868 kernel32:KERNEL32.dll - 0005:0000086c __imp__GlobalHandle@4 004ed86c kernel32:KERNEL32.dll - 0005:00000870 __imp__GetFileType@4 004ed870 kernel32:KERNEL32.dll - 0005:00000874 __imp__UnhandledExceptionFilter@4 004ed874 kernel32:KERNEL32.dll - 0005:00000878 __imp__VirtualFree@12 004ed878 kernel32:KERNEL32.dll - 0005:0000087c __imp__IsBadCodePtr@4 004ed87c kernel32:KERNEL32.dll - 0005:00000880 __imp__ExitProcess@4 004ed880 kernel32:KERNEL32.dll - 0005:00000884 __imp__GetACP@0 004ed884 kernel32:KERNEL32.dll - 0005:00000888 __imp__GetOEMCP@0 004ed888 kernel32:KERNEL32.dll - 0005:0000088c __imp__GetCPInfo@8 004ed88c kernel32:KERNEL32.dll - 0005:00000890 __imp__GetStdHandle@4 004ed890 kernel32:KERNEL32.dll - 0005:00000894 __imp__IsBadWritePtr@8 004ed894 kernel32:KERNEL32.dll - 0005:00000898 __imp__MultiByteToWideChar@24 004ed898 kernel32:KERNEL32.dll - 0005:0000089c __imp__VirtualAlloc@16 004ed89c kernel32:KERNEL32.dll - 0005:000008a0 __imp__RaiseException@16 004ed8a0 kernel32:KERNEL32.dll - 0005:000008a4 __imp__SetUnhandledExceptionFilter@4 004ed8a4 kernel32:KERNEL32.dll - 0005:000008a8 __imp__IsBadReadPtr@8 004ed8a8 kernel32:KERNEL32.dll - 0005:000008ac \177KERNEL32_NULL_THUNK_DATA 004ed8ac kernel32:KERNEL32.dll - 0005:000008b0 __imp__WNetGetLastErrorA@20 004ed8b0 mpr:MPR.dll - 0005:000008b4 __imp__WNetGetUserA@12 004ed8b4 mpr:MPR.dll - 0005:000008b8 \177MPR_NULL_THUNK_DATA 004ed8b8 mpr:MPR.dll - 0005:000008bc __imp__acmStreamClose@8 004ed8bc audios:MSACM32.dll - 0005:000008c0 __imp__acmStreamOpen@32 004ed8c0 audios:MSACM32.dll - 0005:000008c4 __imp__acmStreamUnprepareHeader@12 004ed8c4 audios:MSACM32.dll - 0005:000008c8 __imp__acmStreamSize@16 004ed8c8 audios:MSACM32.dll - 0005:000008cc __imp__acmFormatSuggest@20 004ed8cc audios:MSACM32.dll - 0005:000008d0 __imp__acmStreamPrepareHeader@12 004ed8d0 audios:MSACM32.dll - 0005:000008d4 __imp__acmMetrics@12 004ed8d4 audios:MSACM32.dll - 0005:000008d8 __imp__acmFormatTagDetailsA@12 004ed8d8 audios:MSACM32.dll - 0005:000008dc __imp__acmStreamConvert@12 004ed8dc audios:MSACM32.dll - 0005:000008e0 \177MSACM32_NULL_THUNK_DATA 004ed8e0 audios:MSACM32.dll - 0005:000008e4 __imp__DrawDibDraw@52 004ed8e4 vfw32:MSVFW32.dll - 0005:000008e8 __imp__ICInfo@12 004ed8e8 vfw32:MSVFW32.dll - 0005:000008ec __imp__DrawDibOpen@0 004ed8ec vfw32:MSVFW32.dll - 0005:000008f0 __imp__DrawDibClose@4 004ed8f0 vfw32:MSVFW32.dll - 0005:000008f4 \177MSVFW32_NULL_THUNK_DATA 004ed8f4 vfw32:MSVFW32.dll - 0005:000008f8 __imp__ReleaseCapture@0 004ed8f8 user32:USER32.dll - 0005:000008fc __imp__ChangeClipboardChain@8 004ed8fc user32:USER32.dll - 0005:00000900 __imp__TranslateMDISysAccel@8 004ed900 user32:USER32.dll - 0005:00000904 __imp__TranslateAcceleratorA@12 004ed904 user32:USER32.dll - 0005:00000908 __imp__TranslateMessage@4 004ed908 user32:USER32.dll - 0005:0000090c __imp__DispatchMessageA@4 004ed90c user32:USER32.dll - 0005:00000910 __imp__PeekMessageA@20 004ed910 user32:USER32.dll - 0005:00000914 __imp__GetCursorPos@4 004ed914 user32:USER32.dll - 0005:00000918 __imp__GetMessageA@16 004ed918 user32:USER32.dll - 0005:0000091c __imp__WindowFromPoint@8 004ed91c user32:USER32.dll - 0005:00000920 __imp__ScreenToClient@8 004ed920 user32:USER32.dll - 0005:00000924 __imp__ClientToScreen@8 004ed924 user32:USER32.dll - 0005:00000928 __imp__ScrollWindowEx@32 004ed928 user32:USER32.dll - 0005:0000092c __imp__GetUpdateRect@12 004ed92c user32:USER32.dll - 0005:00000930 __imp__ValidateRect@8 004ed930 user32:USER32.dll - 0005:00000934 __imp__CreateCursor@28 004ed934 user32:USER32.dll - 0005:00000938 __imp__DestroyCursor@4 004ed938 user32:USER32.dll - 0005:0000093c __imp__SetCapture@4 004ed93c user32:USER32.dll - 0005:00000940 __imp__GetClipboardOwner@0 004ed940 user32:USER32.dll - 0005:00000944 __imp__DefFrameProcA@20 004ed944 user32:USER32.dll - 0005:00000948 __imp__IsZoomed@4 004ed948 user32:USER32.dll - 0005:0000094c __imp__SetCursorPos@8 004ed94c user32:USER32.dll - 0005:00000950 __imp__ShowCursor@4 004ed950 user32:USER32.dll - 0005:00000954 __imp__GetAsyncKeyState@4 004ed954 user32:USER32.dll - 0005:00000958 __imp__GetKeyState@4 004ed958 user32:USER32.dll - 0005:0000095c __imp__SetCursor@4 004ed95c user32:USER32.dll - 0005:00000960 __imp__CharLowerBuffA@8 004ed960 user32:USER32.dll - 0005:00000964 __imp__CharUpperBuffA@8 004ed964 user32:USER32.dll - 0005:00000968 __imp__MessageBoxA@16 004ed968 user32:USER32.dll - 0005:0000096c __imp__CallWindowProcA@20 004ed96c user32:USER32.dll - 0005:00000970 __imp__BeginPaint@8 004ed970 user32:USER32.dll - 0005:00000974 __imp__GetDoubleClickTime@0 004ed974 user32:USER32.dll - 0005:00000978 __imp__GetMenuStringA@20 004ed978 user32:USER32.dll - 0005:0000097c __imp__SetClipboardViewer@4 004ed97c user32:USER32.dll - 0005:00000980 __imp__PostQuitMessage@4 004ed980 user32:USER32.dll - 0005:00000984 __imp__GetWindowRect@8 004ed984 user32:USER32.dll - 0005:00000988 __imp__GetCapture@0 004ed988 user32:USER32.dll - 0005:0000098c __imp__MapWindowPoints@16 004ed98c user32:USER32.dll - 0005:00000990 __imp__PostMessageA@16 004ed990 user32:USER32.dll - 0005:00000994 __imp__GetParent@4 004ed994 user32:USER32.dll - 0005:00000998 __imp__GetActiveWindow@0 004ed998 user32:USER32.dll - 0005:0000099c __imp__GetMessageTime@0 004ed99c user32:USER32.dll - 0005:000009a0 __imp__DefMDIChildProcA@16 004ed9a0 user32:USER32.dll - 0005:000009a4 __imp__UpdateWindow@4 004ed9a4 user32:USER32.dll - 0005:000009a8 __imp__EnableMenuItem@12 004ed9a8 user32:USER32.dll - 0005:000009ac __imp__GetWindowThreadProcessId@8 004ed9ac user32:USER32.dll - 0005:000009b0 __imp__PostThreadMessageA@16 004ed9b0 user32:USER32.dll - 0005:000009b4 __imp__wsprintfA 004ed9b4 user32:USER32.dll - 0005:000009b8 __imp__IsIconic@4 004ed9b8 user32:USER32.dll - 0005:000009bc __imp__SendDlgItemMessageA@20 004ed9bc user32:USER32.dll - 0005:000009c0 __imp__DialogBoxParamA@20 004ed9c0 user32:USER32.dll - 0005:000009c4 __imp__KillTimer@8 004ed9c4 user32:USER32.dll - 0005:000009c8 __imp__EndDialog@8 004ed9c8 user32:USER32.dll - 0005:000009cc __imp__SetScrollRange@20 004ed9cc user32:USER32.dll - 0005:000009d0 __imp__SetScrollPos@16 004ed9d0 user32:USER32.dll - 0005:000009d4 __imp__GetPropA@8 004ed9d4 user32:USER32.dll - 0005:000009d8 __imp__SetPropA@12 004ed9d8 user32:USER32.dll - 0005:000009dc __imp__RemovePropA@8 004ed9dc user32:USER32.dll - 0005:000009e0 __imp__GetCaretBlinkTime@0 004ed9e0 user32:USER32.dll - 0005:000009e4 __imp__SetClipboardData@8 004ed9e4 user32:USER32.dll - 0005:000009e8 __imp__EmptyClipboard@0 004ed9e8 user32:USER32.dll - 0005:000009ec __imp__OpenClipboard@4 004ed9ec user32:USER32.dll - 0005:000009f0 __imp__EnumClipboardFormats@4 004ed9f0 user32:USER32.dll - 0005:000009f4 __imp__EnableWindow@8 004ed9f4 user32:USER32.dll - 0005:000009f8 __imp__GetWindowLongA@8 004ed9f8 user32:USER32.dll - 0005:000009fc __imp__SetWindowLongA@12 004ed9fc user32:USER32.dll - 0005:00000a00 __imp__SetWindowPos@28 004eda00 user32:USER32.dll - 0005:00000a04 __imp__AdjustWindowRect@12 004eda04 user32:USER32.dll - 0005:00000a08 __imp__LoadIconA@8 004eda08 user32:USER32.dll - 0005:00000a0c __imp__GetClipboardData@4 004eda0c user32:USER32.dll - 0005:00000a10 __imp__CloseClipboard@0 004eda10 user32:USER32.dll - 0005:00000a14 __imp__MoveWindow@24 004eda14 user32:USER32.dll - 0005:00000a18 __imp__GetClientRect@8 004eda18 user32:USER32.dll - 0005:00000a1c __imp__GetDlgItem@8 004eda1c user32:USER32.dll - 0005:00000a20 __imp__LoadCursorA@8 004eda20 user32:USER32.dll - 0005:00000a24 __imp__RegisterClassA@4 004eda24 user32:USER32.dll - 0005:00000a28 __imp__CreateWindowExA@48 004eda28 user32:USER32.dll - 0005:00000a2c __imp__SetTimer@16 004eda2c user32:USER32.dll - 0005:00000a30 __imp__LoadAcceleratorsA@8 004eda30 user32:USER32.dll - 0005:00000a34 __imp__SetFocus@4 004eda34 user32:USER32.dll - 0005:00000a38 __imp__InvalidateRect@12 004eda38 user32:USER32.dll - 0005:00000a3c __imp__GetSystemMetrics@4 004eda3c user32:USER32.dll - 0005:00000a40 __imp__GetDC@4 004eda40 user32:USER32.dll - 0005:00000a44 __imp__ReleaseDC@8 004eda44 user32:USER32.dll - 0005:00000a48 __imp__FindWindowA@8 004eda48 user32:USER32.dll - 0005:00000a4c __imp__GetForegroundWindow@0 004eda4c user32:USER32.dll - 0005:00000a50 __imp__SetForegroundWindow@4 004eda50 user32:USER32.dll - 0005:00000a54 __imp__ShowWindow@8 004eda54 user32:USER32.dll - 0005:00000a58 __imp__LoadStringA@16 004eda58 user32:USER32.dll - 0005:00000a5c __imp__ClipCursor@4 004eda5c user32:USER32.dll - 0005:00000a60 __imp__InvertRect@8 004eda60 user32:USER32.dll - 0005:00000a64 __imp__GetWindow@8 004eda64 user32:USER32.dll - 0005:00000a68 __imp__FillRect@12 004eda68 user32:USER32.dll - 0005:00000a6c __imp__CheckDlgButton@12 004eda6c user32:USER32.dll - 0005:00000a70 __imp__IsDlgButtonChecked@8 004eda70 user32:USER32.dll - 0005:00000a74 __imp__GetDlgItemTextA@16 004eda74 user32:USER32.dll - 0005:00000a78 __imp__CheckRadioButton@16 004eda78 user32:USER32.dll - 0005:00000a7c __imp__SendMessageA@16 004eda7c user32:USER32.dll - 0005:00000a80 __imp__ModifyMenuA@20 004eda80 user32:USER32.dll - 0005:00000a84 __imp__InsertMenuA@20 004eda84 user32:USER32.dll - 0005:00000a88 __imp__DeleteMenu@12 004eda88 user32:USER32.dll - 0005:00000a8c __imp__CheckMenuItem@12 004eda8c user32:USER32.dll - 0005:00000a90 __imp__SetMenu@8 004eda90 user32:USER32.dll - 0005:00000a94 __imp__LoadMenuA@8 004eda94 user32:USER32.dll - 0005:00000a98 __imp__GetMenuItemCount@4 004eda98 user32:USER32.dll - 0005:00000a9c __imp__IsWindow@4 004eda9c user32:USER32.dll - 0005:00000aa0 __imp__SetWindowTextA@8 004edaa0 user32:USER32.dll - 0005:00000aa4 __imp__DestroyWindow@4 004edaa4 user32:USER32.dll - 0005:00000aa8 __imp__CreateMDIWindowA@40 004edaa8 user32:USER32.dll - 0005:00000aac __imp__ScrollDC@28 004edaac user32:USER32.dll - 0005:00000ab0 __imp__GetWindowTextA@12 004edab0 user32:USER32.dll - 0005:00000ab4 __imp__EndPaint@8 004edab4 user32:USER32.dll - 0005:00000ab8 __imp__GetMenuItemID@8 004edab8 user32:USER32.dll - 0005:00000abc __imp__GetSubMenu@8 004edabc user32:USER32.dll - 0005:00000ac0 __imp__SetDlgItemTextA@12 004edac0 user32:USER32.dll - 0005:00000ac4 __imp__SystemParametersInfoA@16 004edac4 user32:USER32.dll - 0005:00000ac8 \177USER32_NULL_THUNK_DATA 004edac8 user32:USER32.dll - 0005:00000acc __imp__midiOutUnprepareHeader@12 004edacc winmm:WINMM.dll - 0005:00000ad0 __imp__midiOutClose@4 004edad0 winmm:WINMM.dll - 0005:00000ad4 __imp__midiOutOpen@20 004edad4 winmm:WINMM.dll - 0005:00000ad8 __imp__midiOutReset@4 004edad8 winmm:WINMM.dll - 0005:00000adc __imp__midiOutShortMsg@8 004edadc winmm:WINMM.dll - 0005:00000ae0 __imp__midiOutPrepareHeader@12 004edae0 winmm:WINMM.dll - 0005:00000ae4 __imp__midiOutSetVolume@8 004edae4 winmm:WINMM.dll - 0005:00000ae8 __imp__midiOutGetVolume@8 004edae8 winmm:WINMM.dll - 0005:00000aec __imp__timeGetTime@0 004edaec winmm:WINMM.dll - 0005:00000af0 __imp__mciSendCommandA@16 004edaf0 winmm:WINMM.dll - 0005:00000af4 __imp__waveOutGetDevCapsA@12 004edaf4 winmm:WINMM.dll - 0005:00000af8 __imp__waveOutGetNumDevs@0 004edaf8 winmm:WINMM.dll - 0005:00000afc __imp__midiOutGetNumDevs@0 004edafc winmm:WINMM.dll - 0005:00000b00 __imp__waveOutSetVolume@8 004edb00 winmm:WINMM.dll - 0005:00000b04 __imp__waveOutGetPosition@12 004edb04 winmm:WINMM.dll - 0005:00000b08 __imp__waveOutGetPitch@8 004edb08 winmm:WINMM.dll - 0005:00000b0c __imp__timeSetEvent@20 004edb0c winmm:WINMM.dll - 0005:00000b10 __imp__timeGetDevCaps@8 004edb10 winmm:WINMM.dll - 0005:00000b14 __imp__timeKillEvent@4 004edb14 winmm:WINMM.dll - 0005:00000b18 __imp__waveOutClose@4 004edb18 winmm:WINMM.dll - 0005:00000b1c __imp__waveOutReset@4 004edb1c winmm:WINMM.dll - 0005:00000b20 __imp__waveOutGetID@8 004edb20 winmm:WINMM.dll - 0005:00000b24 __imp__waveOutOpen@24 004edb24 winmm:WINMM.dll - 0005:00000b28 __imp__waveOutGetVolume@8 004edb28 winmm:WINMM.dll - 0005:00000b2c __imp__waveOutPrepareHeader@12 004edb2c winmm:WINMM.dll - 0005:00000b30 __imp__waveOutUnprepareHeader@12 004edb30 winmm:WINMM.dll - 0005:00000b34 __imp__waveOutWrite@12 004edb34 winmm:WINMM.dll - 0005:00000b38 __imp__waveOutPause@4 004edb38 winmm:WINMM.dll - 0005:00000b3c __imp__waveOutRestart@4 004edb3c winmm:WINMM.dll - 0005:00000b40 __imp__waveOutBreakLoop@4 004edb40 winmm:WINMM.dll - 0005:00000b44 __imp__waveInClose@4 004edb44 winmm:WINMM.dll - 0005:00000b48 __imp__waveInAddBuffer@12 004edb48 winmm:WINMM.dll - 0005:00000b4c __imp__waveOutSetPitch@8 004edb4c winmm:WINMM.dll - 0005:00000b50 __imp__waveOutGetPlaybackRate@8 004edb50 winmm:WINMM.dll - 0005:00000b54 __imp__waveOutSetPlaybackRate@8 004edb54 winmm:WINMM.dll - 0005:00000b58 __imp__waveOutMessage@16 004edb58 winmm:WINMM.dll - 0005:00000b5c __imp__waveOutGetErrorTextA@12 004edb5c winmm:WINMM.dll - 0005:00000b60 __imp__waveInGetNumDevs@0 004edb60 winmm:WINMM.dll - 0005:00000b64 __imp__waveInStop@4 004edb64 winmm:WINMM.dll - 0005:00000b68 __imp__waveInPrepareHeader@12 004edb68 winmm:WINMM.dll - 0005:00000b6c __imp__waveInOpen@24 004edb6c winmm:WINMM.dll - 0005:00000b70 __imp__waveInUnprepareHeader@12 004edb70 winmm:WINMM.dll - 0005:00000b74 __imp__waveInReset@4 004edb74 winmm:WINMM.dll - 0005:00000b78 __imp__waveInStart@4 004edb78 winmm:WINMM.dll - 0005:00000b7c \177WINMM_NULL_THUNK_DATA 004edb7c winmm:WINMM.dll - 0005:00000b80 __imp__GetSaveFileNameA@4 004edb80 comdlg32:comdlg32.dll - 0005:00000b84 __imp__GetOpenFileNameA@4 004edb84 comdlg32:comdlg32.dll - 0005:00000b88 __imp__CommDlgExtendedError@0 004edb88 comdlg32:comdlg32.dll - 0005:00000b8c \177comdlg32_NULL_THUNK_DATA 004edb8c comdlg32:comdlg32.dll - - entry point at 0001:000c4e88 - - Static symbols - - 0001:00061040 _$$1000 00462040 f lex.obj - 0001:00061050 _$$8000 00462050 f lex.obj - 0001:00060f30 _$$1000 00461f30 f scrcom.obj - 0001:00061030 _$$8000 00462030 f scrcom.obj - 0001:00060970 _$$1000 00461970 f screxeg.obj - 0001:00060e70 _$$d200 00461e70 f screxeg.obj - 0001:00060e80 _$$8000 00461e80 f screxeg.obj - 0001:0005b2c0 _$$1000 0045c2c0 f kidspace.obj - 0001:0005d0b0 _$$8000 0045e0b0 f kidspace.obj - 0001:0005e830 _$$d200 0045f830 f kidspace.obj - 0001:000595f0 _$$1000 0045a5f0 f kidhelp.obj - 0001:0005af10 _$$d200 0045bf10 f kidhelp.obj - 0001:0005af20 _$$8000 0045bf20 f kidhelp.obj - 0001:000589e0 _$$1000 004599e0 f kidworld.obj - 0001:00059040 _$$d200 0045a040 f kidworld.obj - 0001:00059090 _$$8000 0045a090 f kidworld.obj - 0001:00056ab0 _$$1000 00457ab0 f text.obj - 0001:000585c0 _$$8000 004595c0 f text.obj - 0001:00058650 _$$9200 00459650 f text.obj - 0001:00056230 _$$1000 00457230 f dlgwin.obj - 0001:00056860 _$$9200 00457860 f dlgwin.obj - 0001:00056870 _$$8000 00457870 f dlgwin.obj - 0001:00055bc0 _$$1000 00456bc0 f dlg.obj - 0001:00055e50 _$$9200 00456e50 f dlg.obj - 0001:00055e80 _$$8000 00456e80 f dlg.obj - 0001:000549f0 _$$1000 004559f0 f stream.obj - 0001:00055810 _$$8000 00456810 f stream.obj - 0001:00054160 _$$1000 00455160 f ctl.obj - 0001:00054780 _$$9200 00455780 f ctl.obj - 0001:000547f0 _$$8000 004557f0 f ctl.obj - 0001:0004f880 _$$1000 00450880 f rtxt2.obj - 0001:00051a20 _$$8000 00452a20 f rtxt2.obj - 0001:00053e60 _$$9200 00454e60 f rtxt2.obj - 0001:0004b340 _$$1000 0044c340 f rtxt.obj - 0001:0004d020 _$$8000 0044e020 f rtxt.obj - 0001:0004f680 _$$9200 00450680 f rtxt.obj - 0001:0004ab10 _$$9200 0044bb10 f clip.obj - 0001:0004ad10 _$$1000 0044bd10 f clip.obj - 0001:0004b090 _$$a200 0044c090 f clip.obj - 0001:0004b0a0 _$$b200 0044c0a0 f clip.obj - 0001:0004b0b0 _$$c200 0044c0b0 f clip.obj - 0001:0004b0f0 _$$8000 0044c0f0 f clip.obj - 0001:00047fb0 _$$1000 00448fb0 f docb.obj - 0001:00049cc0 _$$8000 0044acc0 f docb.obj - 0001:0004a980 _$$9200 0044b980 f docb.obj - 0001:00045ca0 _$$1000 00446ca0 f screxe.obj - 0001:00047ce0 _$$8000 00448ce0 f screxe.obj - 0001:00044dd0 _$$9200 00445dd0 f video.obj - 0001:00044fc0 _$$1000 00445fc0 f video.obj - 0001:00045830 _$$a200 00446830 f video.obj - 0001:000458c0 _$$8000 004468c0 f video.obj - 0001:000443f0 _$$1000 004453f0 f midi.obj - 0001:00044c30 _$$9200 00445c30 f midi.obj - 0001:00044c80 _$$8000 00445c80 f midi.obj - 0001:00041bc0 _$$1000 00442bc0 f mididev2.obj - 0001:000436f0 _$$8000 004446f0 f mididev2.obj - 0001:00043e40 _$$9200 00444e40 f mididev2.obj - 0001:000416a0 _$$9200 004426a0 f mididev.obj - 0001:000418b0 _$$1000 004428b0 f mididev.obj - 0001:000418c0 _$$a200 004428c0 f mididev.obj - 0001:000418d0 _$$b200 004428d0 f mididev.obj - 0001:000418e0 _$$c200 004428e0 f mididev.obj - 0001:00041920 _$$8000 00442920 f mididev.obj - 0001:000405d0 _$$1000 004415d0 f sndam.obj - 0001:000415a0 _$$9200 004425a0 f sndam.obj - 0001:00041610 _$$8000 00442610 f sndam.obj - 0001:0003f1a0 _$$1000 004401a0 f sndm.obj - 0001:00040410 _$$9200 00441410 f sndm.obj - 0001:00040480 _$$8000 00441480 f sndm.obj - 0001:0003e550 _$$1000 0043f550 f mbmp.obj - 0001:0003eda0 _$$9200 0043fda0 f mbmp.obj - 0001:0003edd0 _$$8000 0043fdd0 f mbmp.obj - 0001:0003ccf0 _$$8000 0043dcf0 f fniwin.obj - 0001:0003cfc0 _$$1000 0043dfc0 f fniwin.obj - 0001:0003d9d0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0043e9d0 f fniwin.obj - 0001:0003e040 _$$9000 0043f040 f fniwin.obj - 0001:0003e050 _$$a000 0043f050 f fniwin.obj - 0001:0003e060 _$$b000 0043f060 f fniwin.obj - 0001:0003c580 ?_HfileOpen@@YGPAXPADHK@Z 0043d580 f filewin.obj - 0001:0003c850 _$$1000 0043d850 f filewin.obj - 0001:0003cce0 _$$8000 0043dce0 f filewin.obj - 0001:0003b0b0 _$$8000 0043c0b0 f file.obj - 0001:0003b320 _$$1000 0043c320 f file.obj - 0001:0003b5d0 ?_FRangeIn@@YGHJJJ@Z 0043c5d0 f file.obj - 0001:0003c510 _$$9000 0043d510 f file.obj - 0001:0003c520 _$$a000 0043d520 f file.obj - 0001:0003c530 _$$b000 0043d530 f file.obj - 0001:0003a0c0 _$$1000 0043b0c0 f crf.obj - 0001:0003b040 _$$8000 0043c040 f crf.obj - 0001:00033bf0 _$$1000 00434bf0 f codkauai.obj - 0001:00039e90 _$$8000 0043ae90 f codkauai.obj - 0001:000333a0 _$$1000 004343a0 f codec.obj - 0001:000336d0 _$$8000 004346d0 f codec.obj - 0001:0002efa0 _$$1000 0042ffa0 f chunk.obj - 0001:00033090 _$$8000 00434090 f chunk.obj - 0001:0002e400 _$$1000 0042f400 f groups2.obj - 0001:0002ee20 _$$8000 0042fe20 f groups2.obj - 0001:0002c210 _$$1000 0042d210 f groups.obj - 0001:0002df80 _$$8000 0042ef80 f groups.obj - 0001:0002bea0 _$$1000 0042cea0 f picwin.obj - 0001:0002beb0 _$$9200 0042ceb0 f picwin.obj - 0001:0002bec0 _$$8000 0042cec0 f picwin.obj - 0001:0002b170 _$$1000 0042c170 f menuwin.obj - 0001:0002bde0 _$$9200 0042cde0 f menuwin.obj - 0001:0002be10 _$$8000 0042ce10 f menuwin.obj - 0001:0002ac70 _$$1000 0042bc70 f gobwin.obj - 0001:0002ae20 _$$9200 0042be20 f gobwin.obj - 0001:0002ae30 _$$8000 0042be30 f gobwin.obj - 0001:00028b30 _$$1000 00429b30 f gfxwin.obj - 0001:0002a600 _$$8000 0042b600 f gfxwin.obj - 0001:0002a970 _$$a200 0042b970 f gfxwin.obj - 0001:00027370 _$$1000 00428370 f appbwin.obj - 0001:00028500 _$$9200 00429500 f appbwin.obj - 0001:00028510 _$$8000 00429510 f appbwin.obj - 0001:00026f00 _$$1000 00427f00 f pic.obj - 0001:00026f10 _$$9200 00427f10 f pic.obj - 0001:00026f20 _$$8000 00427f20 f pic.obj - 0001:00024d60 _$$1000 00425d60 f region.obj - 0001:00026d60 _$$9200 00427d60 f region.obj - 0001:00026e70 _$$8000 00427e70 f region.obj - 0001:00024840 _$$1000 00425840 f mbmpgui.obj - 0001:00024af0 _$$9200 00425af0 f mbmpgui.obj - 0001:00024b00 _$$8000 00425b00 f mbmpgui.obj - 0001:00021ed0 _$$1000 00422ed0 f gob.obj - 0001:00023fc0 _$$8000 00424fc0 f gob.obj - 0001:00024250 _$$9200 00425250 f gob.obj - 0001:0001eab0 _$$9200 0041fab0 f gfx.obj - 0001:0001ec60 _$$1000 0041fc60 f gfx.obj - 0001:000207e0 _$$8000 004217e0 f gfx.obj - 0001:00021be0 _$$a200 00422be0 f gfx.obj - 0001:00021bf0 _$$b200 00422bf0 f gfx.obj - 0001:00021c00 _$$c200 00422c00 f gfx.obj - 0001:0001e9d0 _$$1000 0041f9d0 f cursor.obj - 0001:0001e9f0 _$$9200 0041f9f0 f cursor.obj - 0001:0001ea20 _$$8000 0041fa20 f cursor.obj - 0001:0001d450 _$$1000 0041e450 f cmd.obj - 0001:0001e550 _$$9200 0041f550 f cmd.obj - 0001:0001e5a0 _$$8000 0041f5a0 f cmd.obj - 0001:0001ccd0 _$$9200 0041dcd0 f clok.obj - 0001:0001ce80 _$$1000 0041de80 f clok.obj - 0001:0001d140 _$$a200 0041e140 f clok.obj - 0001:0001d180 _$$8000 0041e180 f clok.obj - 0001:0001b0d0 _$$1000 0041c0d0 f appb.obj - 0001:0001cb60 _$$9200 0041db60 f appb.obj - 0001:0001cb90 _$$8000 0041db90 f appb.obj - 0001:0001ae80 _$$8000 0041be80 f memwin.obj - 0001:0001ae90 _$$1000 0041be90 f memwin.obj - 0001:00019d20 _$$1000 0041ad20 f utilstr.obj - 0001:0001acf0 _$$8000 0041bcf0 f utilstr.obj - 0001:000199d0 _$$1000 0041a9d0 f utilrnd.obj - 0001:00019ad0 _$$8000 0041aad0 f utilrnd.obj - 0001:000197a0 _$$8000 0041a7a0 f utilmem.obj - 0001:000197b0 _$$1000 0041a7b0 f utilmem.obj - 0001:00018a00 _$$1000 00419a00 f utilint.obj - 0001:00019590 _$$8000 0041a590 f utilint.obj - 0001:00018560 _$$8000 00419560 f utilerro.obj - 0001:00018790 _$$1000 00419790 f utilerro.obj - 0001:000187a0 _$$9000 004197a0 f utilerro.obj - 0001:000187c0 _$$a000 004197c0 f utilerro.obj - 0001:000187d0 _$$b000 004197d0 f utilerro.obj - 0001:000183e0 _$$1000 004193e0 f utilcopy.obj - 0001:00018550 _$$8000 00419550 f utilcopy.obj - 0001:00018200 _$$8000 00419200 f base.obj - 0001:00018210 _$$1000 00419210 f base.obj - 0001:00018040 _$$8000 00419040 f util.obj - 0001:00018050 _$$1000 00419050 f util.obj - 0001:00017f30 _$$8000 00418f30 f utilglob.obj - 0001:00017f90 _$$9000 00418f90 f utilglob.obj - 0001:00017fd0 _$$a000 00418fd0 f utilglob.obj - 0001:00017fe0 _$$b000 00418fe0 f utilglob.obj - 0001:00017ff0 _$$1000 00418ff0 f utilglob.obj - 0001:00017d80 _$$1000 00418d80 f mminstal.obj - 0001:00017d90 _$$d500 00418d90 f mminstal.obj - 0001:00017da0 _$$8000 00418da0 f mminstal.obj - 0001:00017e30 _$$6300 00418e30 f mminstal.obj - 0001:000160e0 _$$1000 004170e0 f portf.obj - 0001:000178c0 _$$d500 004188c0 f portf.obj - 0001:000178d0 _$$8000 004188d0 f portf.obj - 0001:00017960 _$$6300 00418960 f portf.obj - 0001:000159f0 _$$1000 004169f0 f tatr.obj - 0001:00015b30 _$$d500 00416b30 f tatr.obj - 0001:00015b60 _$$8000 00416b60 f tatr.obj - 0001:00015bf0 _$$6300 00416bf0 f tatr.obj - 0001:00015210 _$$1000 00416210 f popup.obj - 0001:00015550 _$$d500 00416550 f popup.obj - 0001:000155b0 _$$8000 004165b0 f popup.obj - 0001:00015640 _$$6300 00416640 f popup.obj - 0001:00013e10 _$$1000 00414e10 f ape.obj - 0001:00014d90 _$$d500 00415d90 f ape.obj - 0001:00014dc0 _$$8000 00415dc0 f ape.obj - 0001:00014e50 _$$6300 00415e50 f ape.obj - 0001:00011080 _$$1000 00412080 f esl.obj - 0001:000133a0 _$$8000 004143a0 f esl.obj - 0001:00013920 _$$d500 00414920 f esl.obj - 0001:00013a10 _$$6300 00414a10 f esl.obj - 0001:00010b20 _$$1000 00411b20 f tgob.obj - 0001:00010c80 _$$d500 00411c80 f tgob.obj - 0001:00010cc0 _$$8000 00411cc0 f tgob.obj - 0001:00010d50 _$$6300 00411d50 f tgob.obj - 0001:0000d8b0 _$$1000 0040e8b0 f studio.obj - 0001:0000f780 _$$8000 00410780 f studio.obj - 0001:00010480 _$$d500 00411480 f studio.obj - 0001:00010490 _$$6300 00411490 f studio.obj - 0001:0000ce80 _$$1000 0040de80 f stdiobrw.obj - 0001:0000d460 _$$d500 0040e460 f stdiobrw.obj - 0001:0000d470 _$$8000 0040e470 f stdiobrw.obj - 0001:0000d500 _$$6300 0040e500 f stdiobrw.obj - 0001:0000c270 _$$1000 0040d270 f stdioscb.obj - 0001:0000c5c0 _$$d500 0040d5c0 f stdioscb.obj - 0001:0000c5f0 _$$8000 0040d5f0 f stdioscb.obj - 0001:0000c680 _$$6300 0040d680 f stdioscb.obj - 0001:000064d0 _$$d500 004074d0 f utest.obj - 0001:00006ac0 _$$1000 00407ac0 f utest.obj - 0001:00008d20 _$$8000 00409d20 f utest.obj - 0001:0000a880 _$$6300 0040b880 f utest.obj - 0001:0000bb30 _$$e500 0040cb30 f utest.obj - 0001:0000bb70 _$$f500 0040cb70 f utest.obj - 0001:0000bb80 _$$0600 0040cb80 f utest.obj - 0001:000020d0 _$$1000 004030d0 f browser.obj - 0001:00003e20 _$$8000 00404e20 f browser.obj - 0001:00005a60 _$$6300 00406a60 f browser.obj - 0001:00006070 _$$d500 00407070 f browser.obj - 0001:000011c0 _$$1000 004021c0 f scnsort.obj - 0001:00001c30 _$$d500 00402c30 f scnsort.obj - 0001:00001ca0 _$$8000 00402ca0 f scnsort.obj - 0001:00001d40 _$$6300 00402d40 f scnsort.obj - 0001:00000620 _$$1000 00401620 f splot.obj - 0001:00000b40 _$$d500 00401b40 f splot.obj - 0001:00000bb0 _$$8000 00401bb0 f splot.obj - 0001:00000c60 _$$6300 00401c60 f splot.obj - 0001:000cc550 _$$1000 004cd550 f bren:tmap.obj - 0001:000cc560 _$$e200 004cd560 f bren:tmap.obj - 0001:000cc590 _$$8000 004cd590 f bren:tmap.obj - 0001:000cc220 _BrStdlibAllocate 004cd220 f bren:stdmem.obj - 0001:000cc240 _BrStdlibFree 004cd240 f bren:stdmem.obj - 0001:000cc250 _BrStdlibInquire 004cd250 f bren:stdmem.obj - 0001:000cc1e0 _BrStdioWarning 004cd1e0 f bren:stderr.obj - 0001:000cc200 _BrStdioError 004cd200 f bren:stderr.obj - 0001:000cbe30 _BrStdioAttributes 004cce30 f bren:stdfile.obj - 0001:000cc050 _BrStdioOpenWrite 004cd050 f bren:stdfile.obj - 0001:000cc070 _BrStdioClose 004cd070 f bren:stdfile.obj - 0001:000cc080 _BrStdioEof 004cd080 f bren:stdfile.obj - 0001:000cc090 _BrStdioGetChar 004cd090 f bren:stdfile.obj - 0001:000cc0c0 _BrStdioPutChar 004cd0c0 f bren:stdfile.obj - 0001:000cc0f0 _BrStdioRead 004cd0f0 f bren:stdfile.obj - 0001:000cc110 _BrStdioWrite 004cd110 f bren:stdfile.obj - 0001:000cc130 _BrStdioGetLine 004cd130 f bren:stdfile.obj - 0001:000cc1c0 _BrStdioAdvance 004cd1c0 f bren:stdfile.obj - 0001:00073f40 _$$1000 00474f40 f bren:zbmp.obj - 0001:000741e0 _$$e200 004751e0 f bren:zbmp.obj - 0001:00074210 _$$8000 00475210 f bren:zbmp.obj - 0001:00072e00 _$$1000 00473e00 f bren:bwld.obj - 0001:00073c50 _$$e200 00474c50 f bren:bwld.obj - 0001:00073c80 _$$8000 00474c80 f bren:bwld.obj - 0001:000c3bd0 _$$1000 004c4bd0 f engine:tdf.obj - 0001:000c3c90 _$$0400 004c4c90 f engine:tdf.obj - 0001:000c3cc0 _$$8000 004c4cc0 f engine:tdf.obj - 0001:000c3d50 _$$6300 004c4d50 f engine:tdf.obj - 0001:000c3770 _$$1000 004c4770 f engine:modl.obj - 0001:000c37c0 _$$0400 004c47c0 f engine:modl.obj - 0001:000c37f0 _$$8000 004c47f0 f engine:modl.obj - 0001:000c3880 _$$6300 004c4880 f engine:modl.obj - 0001:000c28a0 _$$1000 004c38a0 f engine:actrsave.obj - 0001:000c31b0 _$$0400 004c41b0 f engine:actrsave.obj - 0001:000c31c0 _$$8000 004c41c0 f engine:actrsave.obj - 0001:000c3250 _$$6300 004c4250 f engine:actrsave.obj - 0001:000c20e0 _$$1000 004c30e0 f engine:tagl.obj - 0001:000c22b0 _$$0400 004c32b0 f engine:tagl.obj - 0001:000c22e0 _$$8000 004c32e0 f engine:tagl.obj - 0001:000c2370 _$$6300 004c3370 f engine:tagl.obj - 0001:000c1910 _$$1000 004c2910 f engine:srec.obj - 0001:000c1cd0 _$$0400 004c2cd0 f engine:srec.obj - 0001:000c1d00 _$$8000 004c2d00 f engine:srec.obj - 0001:000c1d90 _$$6300 004c2d90 f engine:srec.obj - 0001:000c0a90 _$$1000 004c1a90 f engine:actrsnd.obj - 0001:000c14a0 _$$0400 004c24a0 f engine:actrsnd.obj - 0001:000c14b0 _$$8000 004c24b0 f engine:actrsnd.obj - 0001:000c1540 _$$6300 004c2540 f engine:actrsnd.obj - 0001:000ba130 _$$1000 004bb130 f engine:actor.obj - 0001:000bc150 _$$8000 004bd150 f engine:actor.obj - 0001:000bdc30 _$$6300 004bec30 f engine:actor.obj - 0001:000c07a0 _$$0400 004c17a0 f engine:actor.obj - 0001:000b6900 _$$1000 004b7900 f engine:tbox.obj - 0001:000b8960 _$$8000 004b9960 f engine:tbox.obj - 0001:000b9c80 _$$0400 004bac80 f engine:tbox.obj - 0001:000b9c90 _$$6300 004bac90 f engine:tbox.obj - 0001:000b4bd0 _$$1000 004b5bd0 f engine:actredit.obj - 0001:000b65f0 _$$0400 004b75f0 f engine:actredit.obj - 0001:000b6620 _$$8000 004b7620 f engine:actredit.obj - 0001:000b66d0 _$$6300 004b76d0 f engine:actredit.obj - 0001:000b2880 _$$1000 004b3880 f engine:tdt.obj - 0001:000b4660 _$$0400 004b5660 f engine:tdt.obj - 0001:000b4670 _$$8000 004b5670 f engine:tdt.obj - 0001:000b4700 _$$6300 004b5700 f engine:tdt.obj - 0001:000b1df0 _$$1000 004b2df0 f engine:mtrl.obj - 0001:000b2320 _$$0400 004b3320 f engine:mtrl.obj - 0001:000b2370 _$$8000 004b3370 f engine:mtrl.obj - 0001:000b2400 _$$6300 004b3400 f engine:mtrl.obj - 0001:000b05a0 _$$1000 004b15a0 f engine:tmpl.obj - 0001:000b16c0 _$$0400 004b26c0 f engine:tmpl.obj - 0001:000b1730 _$$8000 004b2730 f engine:tmpl.obj - 0001:000b17c0 _$$6300 004b27c0 f engine:tmpl.obj - 0001:000aee40 _$$1000 004afe40 f engine:body.obj - 0001:000aff40 _$$0400 004b0f40 f engine:body.obj - 0001:000aff90 _$$8000 004b0f90 f engine:body.obj - 0001:000b0020 _$$6300 004b1020 f engine:body.obj - 0001:000ae2d0 _$$1000 004af2d0 f engine:bkgd.obj - 0001:000ae990 _$$0400 004af990 f engine:bkgd.obj - 0001:000ae9c0 _$$8000 004af9c0 f engine:bkgd.obj - 0001:000aea50 _$$6300 004afa50 f engine:bkgd.obj - 0001:000a7ac0 _$$1000 004a8ac0 f engine:scene.obj - 0001:000a93c0 _$$8000 004aa3c0 f engine:scene.obj - 0001:000aaf70 _$$6300 004abf70 f engine:scene.obj - 0001:000adc10 _$$0400 004aec10 f engine:scene.obj - 0001:000a6310 _$$1000 004a7310 f engine:tagman.obj - 0001:000a7940 _$$0400 004a8940 f engine:tagman.obj - 0001:000a7970 _$$8000 004a8970 f engine:tagman.obj - 0001:000a7a00 _$$6300 004a8a00 f engine:tagman.obj - 0001:000a4e80 _$$1000 004a5e80 f engine:msnd.obj - 0001:000a5f40 _$$0400 004a6f40 f engine:msnd.obj - 0001:000a5f90 _$$8000 004a6f90 f engine:msnd.obj - 0001:000a6030 _$$6300 004a7030 f engine:msnd.obj - 0001:0009c8a0 _$$1000 0049d8a0 f engine:movie.obj - 0001:0009e6a0 _$$8000 0049f6a0 f engine:movie.obj - 0001:0009fe20 _$$6300 004a0e20 f engine:movie.obj - 0001:000a4b10 _$$0400 004a5b10 f engine:movie.obj - 0001:000d2b6b _findenv 004d3b6b f LIBC:setenv.obj - 0001:000d2bc8 _copy_environ 004d3bc8 f LIBC:setenv.obj - 0001:000d2672 _strncnt 004d3672 f LIBC:aw_cmp.obj - 0001:000d1542 _strtoxl 004d2542 f LIBC:strtol.obj - 0001:000cb812 _flsall 004cc812 f LIBC:fflush.obj - 0001:000cb567 _siglookup 004cc567 f LIBC:winsig.obj - 0001:000ca63b _strncnt 004cb63b f LIBC:aw_map.obj - 0001:000ca487 __before 004cb487 f LIBC:heapadd.obj - 0001:000c988a _$$1000 004ca88a f LIBC:unhandld.obj - 0001:000c98ef _$$2000 004ca8ef f LIBC:unhandld.obj - 0001:000c9004 __abstract_cw 004ca004 f LIBC:ieee87.obj - 0001:000c9097 __hw_cw 004ca097 f LIBC:ieee87.obj - 0001:000c8d57 __heap_new_region 004c9d57 f LIBC:heapgrow.obj - 0001:000c8a75 __get_fname 004c9a75 f LIBC:fpexcept.obj - 0001:000c8270 _write_char 004c9270 f LIBC:output.obj - 0001:000c82b0 _write_multi_char 004c92b0 f LIBC:output.obj - 0001:000c82e1 _write_string 004c92e1 f LIBC:output.obj - 0001:000c8318 _get_int_arg 004c9318 f LIBC:output.obj - 0001:000c8327 _get_int64_arg 004c9327 f LIBC:output.obj - 0001:000c833b _get_short_arg 004c933b f LIBC:output.obj - 0001:000c6b2b ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 004c7b2b f LIBC:frame.obj - 0001:000c6d79 ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 004c7d79 f LIBC:frame.obj - 0001:000c6e49 ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 004c7e49 f LIBC:frame.obj - 0001:000c6fa3 ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 004c7fa3 f LIBC:frame.obj - 0001:000c7030 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 004c8030 f LIBC:frame.obj - 0001:000c7138 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 004c8138 f LIBC:frame.obj - 0001:000c7163 ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 004c8163 f LIBC:frame.obj - 0001:000c7352 ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 004c8352 f LIBC:frame.obj - 0001:000c73be ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 004c83be f LIBC:frame.obj - 0001:000c6965 __heap_grow_emptylist 004c7965 f LIBC:heapinit.obj - 0001:000c6619 _getSystemCP 004c7619 f LIBC:mbctype.obj - 0001:000c6654 _CPtoLCID 004c7654 f LIBC:mbctype.obj - 0001:000c6693 _setSBCS 004c7693 f LIBC:mbctype.obj - 0001:000c644f _parse_cmdline 004c744f f LIBC:stdargv.obj - 0001:000c62b9 @x_ismbbtype@12 004c72b9 f LIBC:ismbbyte.obj - 0001:000c627e _xcptlookup 004c727e f LIBC:winxfltr.obj - 0001:000c5eb8 __cftoe_g 004c6eb8 f LIBC:cvt.obj - 0001:000c5fd9 __cftof_g 004c6fd9 f LIBC:cvt.obj - 0001:000c60f5 __shift 004c70f5 f LIBC:cvt.obj - 0001:000c5959 __heap_expand_block 004c6959 f LIBC:realloc.obj - 0001:000c57c4 _doexit 004c67c4 f LIBC:crt0dat.obj - 0001:000c5843 __initterm 004c6843 f LIBC:crt0dat.obj - 0001:000c5169 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 004c6169 f LIBC:trnsctrl.obj - 0001:000c525d ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 004c625d f LIBC:trnsctrl.obj - 0001:000c3e30 __unwind_handler 004c4e30 f LIBC:exsup.obj - -FIXUPS: c5efb 10 10 5 30 56 6 15 f 23 fffffe49 5 a fffff233 fffffff1 fffffff3 -FIXUPS: c4fa8 1e 12 44 13 13 fffffeed d 35 25 fffffe8e 1aeb 23 fffffe56 -FIXUPS: c679a 11 11 5d 12 fffffebf 10 2d 10 13 17 ffffff59 a fffffea7 20 -FIXUPS: c6481 20 fffffe29 a 18 a fffffdbf 4c 53 31 110 13 fffffc42 c f10 -FIXUPS: c6ed0 5a 28 1f 17 30 35 1d 36 47 11 2c 16 13 29 fffffa90 9a ffffff10 -FIXUPS: c6af6 fffffedb 2d f e c 3d 55 fffffdbe 16 33 1f d 19e3 f 1a d e -FIXUPS: c8320 7 10 5a 12 fffff622 fffffcff b8 78 44 10 fffffbb0 12 10 19 -FIXUPS: c7325 15 2a 11 ffffff3f fffffe73 fffffb55 21 c1 1c 48 13 f99 3b -FIXUPS: c7dd7 52 5c 46 6d 1a 21 14 39 23 15 21 e 77 4f 9 c 17 af 13 1d -FIXUPS: c8217 13 17 21 1d 13 1a a a 719 1f fffffcf0 3d 49 132 31 fffffc33 -FIXUPS: c8516 1d 5 55 3c 7 2f b2 15 fffffd87 72 fffff5bf 2b 2c 2b 1b 34 -FIXUPS: c7b95 c 25 3c 114 26 28 15ff fffff7c6 4c 9b 1d 6d 10 6b 4f 24 6b -FIXUPS: c8e5d 30 14 16 11 ab 17 ff 96 14 1c 2d 16 1d 1b cb 3a 37 fffff681 -FIXUPS: c8994 2b 1386 75 d 96 d c 32 fffffe42 ffffffc3 1c fffff6c3 1c 20 -FIXUPS: c93ec 9 2c b 10 124 133 ef 21 26 10d aa 1f 21 41 c d 15 b d44 1a -FIXUPS: ca30f 17 67 e 177 1a 1d 12 1f 20 d f 13 17 13 22 5b 16 22 f 22 -FIXUPS: ca6e8 fffffafe 64 ffffff44 ffffff99 fffffe9a 17 24 fffffd3d 1b7f -FIXUPS: cb5f2 38 fffffc2c 10 10 18 a1 3e 24 d 41 34 fffffc8b ffffffaf 26 -FIXUPS: caed8 f3 fffffdf8 78 10 18 e fffffe1b a4 22 fffffbfb a a ffffff59 -FIXUPS: ca8d5 1b 1bac fffffdf1 1a 65 1d 2b c 10 c fffff8cd c5 92 10e 49 -FIXUPS: cbfbd 4f fffff8ed 14 18 18 b0 9 e 9 29 4d fffffc51 c2 75 c 1e 77 -FIXUPS: d212e ffffff4f 1a ffffff09 20 ffffae01 ffffff8c c d 20 d ffffff40 -FIXUPS: cccde b 1b ffffff99 ffffffb7 fffffe41 47 3e 110 fffffcdd fffffe5e -FIXUPS: cc770 21 42 37 2f 19 2b e fffffbcd 6add 28 fffffe0f bd 21 fffffd74 -FIXUPS: d2cb9 fffffe14 fffffe57 35 fffffc0f c9 38 24 ee 17 fffffd4a 15 -FIXUPS: d2520 ffffff5a f e ffffff9c ffffff09 2d 32 fffffe82 18 ffffff19 -FIXUPS: d219e ffffff63 1a 1ada 12 14 fffffaf2 15 1a0 52 3e b fffffcf0 fffffe6f -FIXUPS: d350d 2b 29 33 1c 1a 14 e 14 e fffffc5e 2c ffffff28 64 fffffe4a -FIXUPS: d3119 2e fffffe48 45 46 29 fffd2ad3 5 9 d 13 d 13 d 2e288 8 c ffffff74 -FIXUPS: d3c41 2e 19 31 1e 2d 10 9 37 fffffc31 3a 2a 27 2b 2a 39 2d 37 4d -FIXUPS: d3b89 fffd1872 65 3f 47 1c 94 4c 9 10 8 25 8a 41 2f 36 57 23 9d -FIXUPS: a5916 4e d 6c 20 1a f 1f 1e 37 1d 25 1e 17 fffff16c 96 43 21 14 -FIXUPS: a4d9b 41 42 4d 21 8 70 23 df 34 3b 23 25 7a e 2f 2f 1b 16 27 b -FIXUPS: a5229 80 23 41 1d 3b fffff253 13 18 68 17 51 13 14 6b 17 51 13 -FIXUPS: a47d7 96 1c 20 5e 10 74 33 8 b2 56 4d 18 21 53 12 30 28 5 21 fffff552 -FIXUPS: a41b4 29 31 10 f 10 1e 30 12 18 e e 1d e 12 e 12 e 3b 13 3b 19 -FIXUPS: a43fc 3e 2f 26 49 1b 1b 42 17 fffff4fc 14 10 8e 12 f 3f 28 4e 1a -FIXUPS: a3c2c 2c 33 14 2c 2d 10 2d 10 31 5e 44 e8 1d 71 4d 13 e 25 7 12 -FIXUPS: a416b fffff091 23 b 26 27 b 30 9 17 9a 78 c7 128 23 3b e 31 42 -FIXUPS: a36c0 fe a e 64 26 b 81 87 10 1c 1f f 47 fffff07b 5d 46 44 3f 3f -FIXUPS: a2c2d 111 25 55 42 17 14 38 39 60 42 10 38 d 13 2a 44 24 24 25 -FIXUPS: a308b 10 1e 17 20 20 fffff36c 16 6a e 43 1b 5c 10 1c 24 d 1a 1b -FIXUPS: a2668 1e 43 1d 14 53 1c 11 29 3e 30 74 11 30 7 5d 17 52 f4 fffff59b -FIXUPS: a2066 32 1e 18 9 10 51 23 39 1a 2b 32 d 15 24 1c 8 15 1f 15 2d -FIXUPS: a2351 21 2e c 6 2a 8 14 2e 2b fffff556 f b 69 f 36 2d 30 24 3f -FIXUPS: a1b7a 39 13 88 37 f 2e 35 8 25 19 34 40 67 1c 38 35 a 3e a 92 4f -FIXUPS: a13ff f b6 1a 26 4c 11 19 19 86 29 14 27 18 12 15 17 29 49 b b -FIXUPS: a177f c8 1f 24 19 26 3b 13 2d 3a 15 fffff4c4 21 12 b 12 1c 2d d -FIXUPS: a0f71 36 d b 29 66 a 19 95 1c 1f 7 1d b 19 88 55 50 41 25 b 1c -FIXUPS: a137f 8 fffff5cf 31 17 27 17 4b 39 28 21 55 16 31 21 48 d d f 3b -FIXUPS: a0c2b 1f 3b 14 8 47 4e 2b 28 b 58 3c 12 b fffff7aa 3b 45 3c 1e -FIXUPS: a06de f 16 19 e 23 e 11 17 8 25 a e 16 14 16 28 7 37 43 f 10 2d -FIXUPS: a091e c 20 7 fffff7bb 38 32 2d 1d 7 42 a 1e 20 20 20 12 2e 30 19 -FIXUPS: a034b 29 18 49 1a 60 d 4a d 12 20 30 3a 2c 2c 2e fffff645 e 2f -FIXUPS: 9fc72 1a 20 1c 13 2a 7 d 2b 29 17 2f 35 12 28 22 11 11 22 11 57 -FIXUPS: 9ff03 9f 37 2e 21 f 17 72 fffff6b7 19 31 4d 10 32 35 1e 29 23 f -FIXUPS: 9f90d 20 29 23 15 2d 1d 35 2e 45 24 17 29 42 1c 20 2f 23 23 a 2c -FIXUPS: 9f2b2 26 18 1c 21 42 1b 19 56 1a 19 1d 22 43 22 e 13 e 2e 10 24 -FIXUPS: 9f57b 24 37 f 2a 1b 20 1a 17 c4 1d fffff73d 26 1e 2d 11 13 19 1c -FIXUPS: 9ef70 1e 12 26 2c 26 c 26 13 27 1b 10 e 26 7c f 13 d 9 c 21 44 -FIXUPS: 9f261 33 fffff76f 15 6a 25 23 47 22 2e d 2d 9 1e 15 52 7 1c 14 -FIXUPS: 9ec72 3f 9 36 1d 29 7 1b 13 12 4c 20 22 42 21 fffff5c7 17 5e 3a -FIXUPS: 9e503 5e 49 35 f 12 2c 1e 35 2a 7 38 22 e e 5a 1f 38 1e 38 28 57 -FIXUPS: 9e8c7 20 b 1d 9c 2f fffff507 7 21 30 16 52 11 6a 22 28 28 21 24 -FIXUPS: 9e0f5 12 17 2e a 9 16 7 3a 2e 42 2e 40 30 50 47 f 28 11 fffff633 -FIXUPS: 9d9e6 28 1a 18 1c 25 17 d 28 1c 27 4c 27 1d 1e 19 2c 18 1c e f -FIXUPS: 9dc7d 20 3e 25 1f 21 23 be 23 a 9126 d b7 12 b 12 21 12 b 12 1c -FIXUPS: 9d6f5 11 2f 11 2f 11 23 17 32 3f 25 75 a b 13 1e 30 13 29 2b 17 -FIXUPS: a69f7 ee 12 1c 21 12 6d 7 1e 18 7 a0 33 54 23 32 24 23 11 10 55 -FIXUPS: a6e5a 1d c 4e 39 2d a 5 5 9 d fffff5ce a a 30 11 1b 17 22 2e 20 -FIXUPS: a6646 29 1b 22 22 22 22 22 1d 12 a a 4c 18 30 1f 11 32 48 2a 28 -FIXUPS: a69e7 fffff62f 1a 12 18 13 33 35 1c c d 34 56 30 3b 1f f 14 c 17 -FIXUPS: a6275 27 72 81 33 1a 16 50 22 4f 15 14 2c fffff68d 11 2f 11 42 -FIXUPS: a5c35 2d 35 d 32 68 1a 11 13 1d 1f d d 31 1f 2b 18 37 42 d 38 26 -FIXUPS: a5f5c 9 15 48 24 24ed 17 17 1b d b 1c 5c 77 c 19 45 33 12 16 8 -FIXUPS: a877d 7a 14a 5 5 9 d a7 12 b 12 21 12 b 12 1c fffff53c c 30 2a -FIXUPS: a8051 49 19 2d 22 2e c 30 2a c 56 10 28 2b 31 17 11 19 b 24 19 -FIXUPS: a8320 1b 2c 4c 53 71 28 fffff69a 10 17 24 10 30 1c c 30 2a c 51 -FIXUPS: a7cbc 32 1b 2f 25 2d c 24 1e 24 33 c 30 2a c 57 19 38 1b 35 fffff743 -FIXUPS: a7710 2e 11 1d 18 20 2d 2b 35 10 45 c 22 17 18 27 26 1c 20 14 34 -FIXUPS: a79cc 19 32 1f 26 4b 3b c e 26 fffff674 15 3d c 22 ab a 15 6 b -FIXUPS: a7346 6d d 16 11 34 24 69 11 20 14 18 33 1b 34 11 59 2c 3e 25 2f -FIXUPS: a76c5 73e7 32 26 1c 58 1e 20 21 3a 5 5 17 12 d 13 d 13 d 13 d 13 -FIXUPS: aecd1 13 d 13 d ffff83f4 11 21 d 8 2a 74e6 44 45 17 e 11 e 28 28 -FIXUPS: ae785 13 19 11 a c d 12 2e 16 8 58 32 74 47 13 25 9 1b 6 2d 4e -FIXUPS: aea8b fffff7e1 24 1a 23 8 12 12 21 1c 16 11 1d 1d 1d d 41 16 17 -FIXUPS: ae441 2d 26 d 3f 38 1b 36 1b 12 28 26 d 56 fffff81d f 12 46 33 -FIXUPS: adf18 25 1d 28 39 3a e 16 12 23 35 31 d 5a 20 1a f 1f 1a 23 8 12 -FIXUPS: ae1ec 1d 18 1b e fffff842 26 d 16 1f d 2d 2a 29 25 1c 4e 1d 1b -FIXUPS: adc6d e 19 29 1f 12 12 e 26 d 5d 1a 2a a e 16 16 28 fffff885 15 -FIXUPS: ad719 24 3e 4c 2e 13 10 16 54 13 34 13 23 17 8 15 27 1d 9 28 1b -FIXUPS: ad9d0 f 19 17 14 17 1d d f fffff7f7 e 2b 18 15 18 26 36 28 16 19 -FIXUPS: ad3c0 25 41 72 12 18 29 13 19 19 d d 6b 13 10 16 6a e 18 29 13 -FIXUPS: ace6c 2d d 27 d 1d f 21 16 2b 18 28 1f 29 13 28 18 12 62 11 20 -FIXUPS: ad113 2b 20 27 d 1d 11 32 16 27 24 fffff878 7 2f e a d 1b 34 a -FIXUPS: acb85 d 28 16 9 2f 18 13 12 d b 18 15 1c 45 b 60 a 51 13 13 3b -FIXUPS: ace1e fffff796 17 1a 24 32 24 17 1a 7 2c 2f 24 17 17 3b 1c 1a 2d -FIXUPS: ac813 54 11 44 e 15 34 12 1f 53 6c 36 2e 25 fffff6d2 3a 13 30 43 -FIXUPS: ac25e 1d 2c 32 16 20 11 1d 11 27 2b 43 23 7 1e 35 20 7 1e 21 d -FIXUPS: ac4f4 6 1b d 3c 32 fffff77e 25 1a 27 16 25 1b 21 31 9 21 2c 53 -FIXUPS: abed8 b 2d f 3b 1e 12 b 12 21 12 b 12 1c 46 1e d 60 2a fffff80c -FIXUPS: ab92c 1b 20 f 13 1a 17 4f 1c e 28 20 19 20 16 16 24 26 e 3a 1c -FIXUPS: abb98 48 20 19 2b 14 3e c 27 2f fffff6bb 76 15 13 5e 1c 92 6c 2c -FIXUPS: ab60e 17 10 14 17 1f e 7 14 1e 2e 20 1f 2b 67 21 1c 14 13 44 1c -FIXUPS: ab8e0 29 fffff533 4b 11 12 1f 2d 30 2d 54 54 46 1e 49 4d 1e 37 -FIXUPS: ab15f 66 2f 13 1b 20 14 13 14 1b 23 24 2c 7 65 1b fffff5a8 12 c -FIXUPS: aa96d 3c 16 49 1c 39 b 12 c 21 7 38 25 3d 22 3b 2f 51 1b 29 d 34 -FIXUPS: aacc8 33 32 28 73 20 13 fffff782 1f f 11 11 11 1f d 1f b 26 d 59 -FIXUPS: aa6d6 31 57 2c 18 4f 12 37 14 f c 21 7 7 22 1b 2e 7 7 fffff724 -FIXUPS: aa060 10 20 13 c 44 5c 1b 24 1e 21 7 7 36 18 20 81 36 33 12 1c -FIXUPS: aa37e 21 cd 17 1c 32 2a 9 30 21 fffff659 2b e a 11 1e 5d 42 e 1d -FIXUPS: a9d14 e 25 18 52 17 1e 26 3a a 7 53 1a 4f 32 e 25 18 2a a 7 3f -FIXUPS: a95bf 13 15 65 1a f 18 1d 1e 34 25 1d 59 49 28 11b 1e 28 d 2b 3a -FIXUPS: a9a10 d 39 21 b 44 1a 4f 35 e 2a fffff585 18 d 27 18 14 6f 22 b -FIXUPS: a92b0 3f 35 a 10 15 29 23 a 10 11 f 3f 26 11 3d 14 15 4b a 57 13 -FIXUPS: a9589 fffff62d 2f 11 2f 11 2f 11 1e 58 10 11 19 13 13 7f 1f 28 -FIXUPS: a8e70 17 14 98 2f 7 7 59 4d 21 17 20 40 51 7 6659 12 a 39 66 18 -FIXUPS: af853 26 1a 10 81 6d 5 5 9 d a7 12 b 12 21 12 b 12 1c ffff8ff2 -FIXUPS: a8af6 2f 11 2f 11 2f 6710 50 19 41 7c 6 9 39 16 24 14 82 6 4b 9 -FIXUPS: af581 15 21 1e 11 13 14 23 1f 20 c 12 1d 25 2c 3f 12 fffff7c6 44 -FIXUPS: aef63 2f 4e 16 1a 11 12 1b 1f f 1f 20 11 13 1f 23 23 1c 19 20 6 -FIXUPS: af1cc 20 19 29 6 1f 1f c 14 1c98 17 5 5 9 d 13 d a7 12 b 12 21 -FIXUPS: b108a b 12 1c ffffdc72 11 2a 1a 1a 1a 1a 34 25 25 25 1b 1f 1f 1f -FIXUPS: b06f3 3d 12 77 1c 21 d b 6d 2b 29 76 29 9 42 13 1c 5b 17b 2f 2f -FIXUPS: b0cc8 11 2b 50 60 28 4c 22 18 3d 82 fffff080 6e 3c 5a 26 19 3b -FIXUPS: b0148 2e e 9 2f 30 7 d 5a 29 9c 15 1b 12 28 56 17 3b 1f 2e 26 5f -FIXUPS: b05ad 4b d0 219b ffffd2c2 11 2f 11 2e 75 a d 1f 33 1c 34 32 38 -FIXUPS: afd62 1f 1f 35 15 2f 46 d 11 10 b 23 2b 13 e 52 d 2525 20 34 1e -FIXUPS: b2520 1c 25 17 10 c 60 26 1a 40 45 8 5 5 9 d 13 d 13 d a7 12 b -FIXUPS: b27f7 21 12 b 12 fffff570 d 18 10 2c 6 12 d 6 18 6a 39 d 32 57 -FIXUPS: b1fbb 39 60 9d 16 22 61 12 14 f 55 65 a8 ab 1a 3d 47 fffff576 d -FIXUPS: b1a0e d 22 d 18 12 1b 6 1a d 22 d 18 12 1b 6 1f 3a 24 25 24 1e -FIXUPS: b1c31 f 12 1b 3d 71 5f 1b fffff7c8 6 9 18 5e 1c 1d 3a 15 24 20 -FIXUPS: b16ee e d 1a d be 1a 11 13 e 20 d 24 2f d 11 18 61 24 10 3c fffff8dd -FIXUPS: b12b6 11 13 e 20 d 24 1e d 24 d 1d 10 29 6 9 12 7 1f d 24 d 1d -FIXUPS: b149f 26 6 17 1c d 1d 12 1dad 7 33 5 5 9 d 13 d a7 12 b 12 21 12 -FIXUPS: b3475 12 1c ffffdc52 11 2f 11 1e d 1e 10 3d 20 d 9 d 27 1c14 c -FIXUPS: b2e70 2e 37 20 27 36 41 d 24 4a 1f 11 13 e 20 d 24 25 2c 18 d 20 -FIXUPS: b3153 33 4b 47 18 15 15 54 fffff6b6 35 36 94 3e d 2b 40 1f 11 13 -FIXUPS: b2b6a 20 d 24 a 13 1b 74 31 52 1c 11 f 19 1b 1a c 2d 13 15 67 26e1 -FIXUPS: b5526 9 a 11 1c 13 9 d 24 22 14 1c 1b 41 5 5 9d 12 b 12 21 12 b -FIXUPS: b5787 1c ffffd0f2 11 2f 11 4d 24 2812 20 52 b e 18 107 d 15 26 -FIXUPS: b5393 10 26 1d 9 9 a 11 1c 13 9 a 1c 18 9 9 14 22 9 9 c 11 fffff7db -FIXUPS: b4ce9 6e d e 1c 57 32 9 11 6d e e 9 59 b e 18 94 e 13 9 e 1f 18 -FIXUPS: b50b1 b e 18 5d e 13 fffff763 e 1d 9 11 1d 9 e 1e 2e 9 1d 54 e -FIXUPS: b4a1e 14 6d b e 18 73 e e 14 6d b e 18 3c 9 e 1d fffff823 114 b -FIXUPS: b45d1 18 34 8d d e 1c 37 15 9 9 2a 9 e 1d 9 e 1d 9 e 1a e 1d 1d -FIXUPS: b4862 14 14 13 1d fffff645 e 1c 6b 27 1c 1b 25 63 f 22 a8 18 63 -FIXUPS: b41f3 32 33 4b 7 15 51 4d 21 30 16 d 63 d 1b f 1b 9 fffff446 132 -FIXUPS: b3a4e e f 77 37 30 1f 2e 19 12 35 19 12 3b 7b 19 13 42 1f 2e 4e -FIXUPS: b3df2 1d 41 e 13 9 17 12 4f fffff691 d f 19 1b 2c 14 29 d 30 18 -FIXUPS: b36c2 3c 16 d 21 d 22 d 11 d 17 e 20 d 23 33 d 11 3c 11 d 3c23 -FIXUPS: b74f3 c 1a 1b 1d 1f 21 e 14 7 37 5 5 9 d a3 d 17 12 b 12 21 12 -FIXUPS: b7745 12 1c ffffbd62 11 45 13 2b 3a65 23 10 2b 10 62 19 10 2b 10 -FIXUPS: b714e 1b 10 2b 10 5c 25 12 41 12 11 3e 9 25 10 60 d af 1d 21 12 -FIXUPS: b74b8 fffff6af 21 12 25 21 7 a 49 1b 11 41 f 3f 28 22 2e 13 16 -FIXUPS: b6da9 17 31 3e 27 17 1e 33 17 51 1a 1e f 16 fffff77c c 1d 3b 2d -FIXUPS: b67a9 20 27 c 60 34 1c a e 58 3b 11 e 1e 10 d 58 16 f 24 38 31 -FIXUPS: b6ad1 19 2d 23 1f fffff780 1b e 19 13 e c 11 19 2c f 14 2d 29 14 -FIXUPS: b646a 20 26 40 2b 1d 1a 1e 6e 16 1b 39 25 10 1e 24 1c fffff2ab -FIXUPS: b59b3 61 38 12 a 9 14 20 34 18 1c 31 e 12 1b 7 6c b 42 294 d 38 -FIXUPS: b61f9 15 f e 37 8 14 e 35 4aa0 13 d 13 d 13 d 13 d 13 d 13 d 13 -FIXUPS: bae41 13 d 26 ffffa94e 11 28 2a 2a 23 17 1c 16 64 16 11 9 18 503a -FIXUPS: ba9c1 4e 16 16 14 26 16 e 46 15 11 79 4d e e c 10 9 75 5 5 d 12 -FIXUPS: bacb5 12 21 12 b 12 1c 21 fffff914 f 2a 33 d 3d 16 16 1d b f 12 -FIXUPS: ba7ab b f 14 2b d 51 b 2f 16 16 14 1e e 24 16 16 14 1e e fffff94b -FIXUPS: ba2ec 18 11 7 2f 15 15 30 3f 23 17 2b 25 11 15 d 3c 16 16 14 21 -FIXUPS: ba550 e 26 d 3f 16 16 14 41 9 fffff72d 15 26 14 1e 2a a b 53 e -FIXUPS: b9eb5 14 1b 2f 36 1c 19 5b 1c 19 5b 1c 19 5b 1c 19 55 4a 25 32 -FIXUPS: ba2ca 7 fffff53a b3 15 1e 1d ef 13 13 f 2b 1f 15 2a 28 15 bc e -FIXUPS: b9bd1 2c 13 26 c b 2c 7 3c 1f 18 25 e 15 28 fffff510 5a 30 51 10 -FIXUPS: b9396 2f 16 10 31 7f 58 15 4e 21 11 22 68 2e 1b 1d 11 13 1d 20 -FIXUPS: b96f5 d 15 11 17 38 6f fffff466 3b 3b 54 40 22 e c 1b c 9 21 1d -FIXUPS: b8ec5 2f 27 23 39 b 12 26 2e a2 14 1f 13 5c 1b 3b 50 19 3b fffff329 -FIXUPS: b86aa 1a f 22 4a 31 1a 20 1a 63 11 17 43 1d 18 e 10 d 19 8 25 2f -FIXUPS: b8998 2b 141 19 21 27 40 2a 31 fffff117 13 29 16 13 1a 16 13 62 -FIXUPS: b7e44 34 46 8 5b 2d 13 bb 171 e 42 33 d 28 c d 35 31 42 4e e 93 -FIXUPS: b8432 fffff4c4 3f 11 2f 11 2f 11 26 12 7c 6a d 32 c 2d 16 13 29 -FIXUPS: b7bc4 13 1a 16 13 c 3a 16 13 1a 16 13 c 29 9826 1e 72 d 21 64 8 -FIXUPS: c167c 23 30 1e 1f 1d 37 14 10 1d 5 5 9 d ffff5fe4 11 2f 11 2f 11 -FIXUPS: b7865 11 2f 11 2f 96f8 46 12 2a 5e 2b 11 1c 57 15 16 36 3d 34 2c -FIXUPS: c127d 3b 35 12 14 30 e 1e 1d 5b 18 13 15 29 26 1a 43 fffff62c e -FIXUPS: c0b33 27 20 b7 e 12 2f 24 1b d 25 b 10 4a 8 3a 28 27 9 1e 42 5e -FIXUPS: c0ee2 36 21 11 2a 1c a 27 fffff502 21 28 2a 95 14 67 14 36 26 11 -FIXUPS: c0704 25 6d 1a 3f 1d 1c 16 4d 60 d 12 1c 38 76 7 11 3a 3c 46 26 -FIXUPS: bfc86 5e 1b 41 f 1c 17 80 a5 8b 2b 29 26 b9 2a 1c 44 3d 4a 1f 16 -FIXUPS: c02a8 31 6c 59 57 1e 10 2f 2f 19 10 fffff172 6f d 16 24 3e 6f d -FIXUPS: bf7a2 24 3e 6a d 16 24 7d c c b4 97 b e 18 3d 8f b e 18 3d 55 b -FIXUPS: bfc6e fffff46e 62 f 10 36 21 78 1a f 12 12 26 1d 22 1f 14 13 40 -FIXUPS: bf37a f 12 12 44 e 67 2e 2c 19 1c 21 32 e fffff61d 48 7d 12 b 12 -FIXUPS: bec88 12 b 12 1c 47 12 1a 3a 43 12 1a 19 19 5f 38 12 32 b5 11 35 -FIXUPS: bf011 58 d e 1c fffff405 17 25 18 38 49 10 24 10 102 1e 52 27 11 -FIXUPS: be776 10 7e 18 e 33 60 46 20 39 42 27 e 4d 2b 24 40 58 fffff522 -FIXUPS: be046 1e 28 22 28 25 24 13 29 36 10 e 10 15 1a 17 18 7c d 12 24 -FIXUPS: be357 2b 28 7 a 2e 2d 15 e e fffff5d9 4d c 26 e 23 3a 47 19 1c -FIXUPS: bdb9a 2c 34 14 19 1c 10 3d 7e 12 12 b1 12 1b 20 61 19 85 77 1f -FIXUPS: bdfe4 25 fffff5da e 3f 1f 1f 19 62 1f c 3c 33 19 19 19 21 14 14 -FIXUPS: bd835 b e 41 1f e 17 c 65 1c c 12 27 e 35 fffff6c7 18 10 10 7 2f -FIXUPS: bd12a d3 5f 56 16 32 19 12 1b 21 12 15 7 1b 22 10 35 16 17 1d 9f -FIXUPS: bd51d 10 38 20 23 fffff658 19 16 9 15 1a 47 12 15 28 29 30 11 f -FIXUPS: bcd90 c 72 2c 18 11 f 1a c 5f 1e 27 1d 21 22 a 52 52 fffff706 10 -FIXUPS: bc77b 29 2c b 16 44 10 3c 2a 25 2d 19 22 25 1a 30 45 6 34 2b 48 -FIXUPS: bcaa8 1c 14 1e 88 3c d 9 10 fffff60e 12 d a5 29 33 13 1f 26 4f -FIXUPS: bc3cb 42 e 4d 16 11 11 13 2f 3e 1f 1f 60 10 e 4d 11 17 d 75 20 -FIXUPS: bc714 fffff7c2 7 e 36 12 e 17 16 18 d 22 d 37 11 d 21 23 10 2b -FIXUPS: bc0a5 15 24 19 15 d 11 15 1c 13 39 f 2f fffff708 c7 e 15 50 77 -FIXUPS: bbac7 13 22 56 e 14 40 86 74 19 4e 1c 3a 1a 28 33 15 1e 21 d 20 -FIXUPS: bbe7e 13 9 12 e fffff29b 2f 1f 4b 43 a1 23 12 41 18 24 37 78 b5 -FIXUPS: bb50a 31 19 52 e 1c 7d 4f 67 b8 2a 15 55 14 15 1e 39 f 6bc3 5 5 -FIXUPS: c2548 12 b 12 21 12 b 12 1c ffff88c2 11 1e 48 8b 2d 7 12 e 22 e -FIXUPS: bb076 16 b 18 2b 14 14 9 17 6cc9 10 3c 2c 22 20 6c 38 24 39 37 -FIXUPS: c1ff9 2c 28 28 16 36 16 35 15 30 6d 36 4a a0 4f 24 34 20 30 39 -FIXUPS: c246c fffff3ef 61 34 89 26 20 30 1c 19 e 14 1d 56 f 37 12 17 14 -FIXUPS: c1b65 5b 37 2f 15 16 1f 26 5e d 33 49 3a 19 c86 37 3a 65 7 1c 2f -FIXUPS: c2b96 1e 62 1e 10 31 e 4e 5 5 9 d a7 12 b 12 21 12 b 12 1c ffffe9ab -FIXUPS: c1810 10 2b 1a70 9 d a7 12 b 12 21 12 b 12 1c fffff202 11 1e d -FIXUPS: c2680 61 48 81 12 4c d 31 53 1a c 1f b 43 f 10 192a 12 21 12 b -FIXUPS: c42d7 1c ffffeb72 11 1e d 19 30 67 88 79 3c 20 20 34 2b 23 1d 3c -FIXUPS: c31e1 15 13 24 1f 16 4f 5 b46 14 1b e 19 1c 8 28 17 32 34 45 2d -FIXUPS: c3fc3 2d 23 19 19 d 15 29 21 2a 25 2d 10 1d 57 5 5 9d 12 fffff85d -FIXUPS: c3ae7 b 13 26 18 d 1a 12 20 6 9 20 18 d 1a 10 18 9 2d 6 a 52 6 -FIXUPS: c3d35 14 1b 11 1d 22 e 13 fffff922 25 1a 1b 28 b 17 21 15 21 11 -FIXUPS: c380f d 13 16 2a 4d 15 e 1f d 1f 12 41 1a 17 8d d 1e 17 1d 1a d20 -FIXUPS: c47e1 a7 12 b 12 21 12 b 12 1c ffffeb1e 1a d 2b 16 d 1c 1c 1d d -FIXUPS: c35b0 d 2e d 28 2e d 28 27 13 23 c7c 20 d 9 d 16 40 9 1b 25 28 -FIXUPS: c4495 25 15 2b 27 25 14 2c 2d 34 27 34 4d 49 7a 50 c a 9 5 5 265 -FIXUPS: c4a49 34 27 15 3d 1f 24 e 21 24 22 9 7 48 1e 6d 5 5 9 d a7 12 b -FIXUPS: c4d87 21 12 b 12 1c fffff532 11 fffc3c96 fffffff2 fffffff0 ffffffee -FIXUPS: 87f8a ffffff37 ffffffea ffffffca 69e ffffffe6 ffffffee ffffffee -FIXUPS: 884c3 ffffffe1 ffffffcc ffffffe2 ffffffb8 ffffff96 ffffff91 ffffff2a -FIXUPS: 8823e fffffff2 fffffff0 ffffffee ffffffee 3c759 11 27 d 2d d 16 -FIXUPS: 896fd 5c0 ffffffae 461 fffffefe ffffffea 696 ffffff47 ffffffe9 -FIXUPS: 8a296 901 66b ffffff7e ffffff97 ffffffe1 fffffff1 ffffffe6 ffffff7f -FIXUPS: 8af42 ffffffc3 ffffffb9 ffffffc0 ffffffd5 ffffd81f ffffffe1 ffffffec -FIXUPS: 88613 ffffffd9 fffffa90 ffffffd5 ffffffc4 ffffffd4 a652 ffffffee -FIXUPS: 92618 ffffffee 567 2a9 ffffa5c5 590 ffffffe8 ffffffde fffffffb -FIXUPS: 8d913 ffffff72 ffffe2d5 ffffffd4 ffffffd4 fffffa2f 342 ffffffe8 -FIXUPS: 8b856 fffffff9 ffffffd5 fffffffb ffffffe7 ffffff88 ffffd61d 237 -FIXUPS: 89672 ffffffea fffffded 4f7 ffffffea 7efd ffffffd8 fffffff4 ffffff5e -FIXUPS: 9167d ffffffc0 6dc fffffd64 64a 52d ffffffe9 ffffffcd ffffffef -FIXUPS: 9257d ffffffe4 fffffff3 fffffff0 fffffff0 ffffffed ffffffed ffffffdf -FIXUPS: 924cd ffffffe3 ffffffe3 ffffffe3 ffffffe9 4aa ffffffd8 fffffff4 -FIXUPS: 92833 ffffff27 ffffffc0 ffffdba9 ffffffef ffffffe4 ffffffe4 fffffff3 -FIXUPS: 9025d 702 fffffd96 ffffffd5 558 3c8 574 ffffffee ffffffef ffffffee -FIXUPS: 91517 ffffffe9 ffffffcd ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 -FIXUPS: 91457 ffffffed ffffffed ffffffdf ffffffe0 ffffffe3 ffffffe3 ffffffe3 -FIXUPS: 91382 ffffe097 ffffffbe ffffff33 ffffffee ffffffef ffffffee ffffffee -FIXUPS: 8f2ac 7b4 fffffd90 5f0 46d fffffff0 ffffffed ffffffdc ffffffe0 -FIXUPS: 901c9 ffffffe3 ffffffe0 ffffffe9 4b7 ffffffd2 fffffff4 ffffff54 -FIXUPS: 90473 ffffffc0 ffffff21 ffffffee ffffffef ffffffee ffffffee ffffffe9 -FIXUPS: 8dff9 ffffffe3 ffffffe0 ffffffe9 57a ffffffd5 ffffff63 ffffffd2 -FIXUPS: 8e41d ffffff54 68c fffffd63 636 4e3 ffffffef ffffffe4 ffffffe4 -FIXUPS: 8f223 fffffff0 fffffff0 ffffffed ffffffed ffffffdf ffffffe0 ffffffe3 -FIXUPS: 8f162 ffffffe3 ffffffe9 49a ffffffd8 fffffff4 ffffff5e 69af fffffef6 -FIXUPS: 95d5d 4ed ffffffd8 ffffff88 ffffffd8 ffffff88 ffffffd7 ffffff81 -FIXUPS: 965e1 ffffffc9 ffff7666 683 ffffffbe ffffff33 ffffffee ffffffef -FIXUPS: 8e14f ffffffee ffffffe9 ffffffcd ffffffef ffffffe4 ffffffe4 fffffff3 -FIXUPS: 8e08d fffffff0 fffffff0 ffffffed ffffffdc ffffffe0 6df1 ffffffea -FIXUPS: 94cea ffffffce 4d8 ffffffd8 ffffff88 ffffffd8 ffffff88 ffffffd7 -FIXUPS: 957f4 ffffff67 ffffff2f ffffffeb ffffffea ffffffeb ffffffed ffffffea -FIXUPS: 9551b ffffffce 4f3 ffffffd8 ffffff88 ffffffd8 ffffff88 ffffffd7 -FIXUPS: 95fd8 ffffff32 ffffffeb ffffffea ffffffeb ffffffed fffe0402 717 -FIXUPS: 76958 23a2e ffffff8e ffffff3f fffffff5 ffffffb5 ffffff4c ffffffd2 -FIXUPS: 94800 ffffff88 ffffffd7 ffffff81 ffffff72 ffffff40 ffffffeb ffffffea -FIXUPS: 94552 ffffffed ffffffea 43f ffffffd8 ffffff88 ffffffd8 ffffff88 -FIXUPS: 94fa8 ffffff72 ffffff40 ffffffeb ffffffea ffffffeb fffe217b fffffff5 -FIXUPS: 76f1e fffffff5 ffffff94 fffffff5 ba6 ffffff13 ffffff41 1fe ffffe816 -FIXUPS: 76299 fffffff2 fffffed6 ffffffee fffffe59 ffffffea ffffffe3 68c -FIXUPS: 765a9 ffffff98 ffffffec ffffff6f ffffff72 ffffffec ffffff95 ffffffd8 -FIXUPS: 7634a ffffffea ffffffea ffffffe3 ffffffe2 2535 74a ffffffec fffffff1 -FIXUPS: 78f1e fffffff4 ffffffd8 ffffffbd ffffffc5 ffffffbd ffffffb8 ffffffb9 -FIXUPS: 78d89 ffffffe2 fffffff4 ffffffea ffffffe0 ffffffe7 ffffff81 fffffff3 -FIXUPS: 78c70 ffffffb8 ffffff94 ffffffe9 fffffff1 6fc ffffffeb fffffef1 -FIXUPS: 790aa ffffff04 ffffe065 fffffff4 2df6 fffffff2 fffffff2 ffffff25 -FIXUPS: 79ce9 ffffffe5 ffffffea fffff70a ffffffb2 ffffffe8 ffffffde ffffffdf -FIXUPS: 7930f fffffff6 fffffff6 fffffff6 ffffffe4 fffff89d fffffff0 ffffffe1 -FIXUPS: 78b33 ffffffd9 ffffffe6 ffffffc7 ffffffc8 ffffffcd ffffffe2 fffffff0 -FIXUPS: 789bd fffffff5 ffffff88 ffffff9f 46ba ffffffec ffffff00 ffffff2d -FIXUPS: 7cd45 ffffffec ffffed10 5bc fffffff5 ffffe2c2 ffffffef fffffff2 -FIXUPS: 7a67a 314 364 3a7 ffffe777 ffffffb7 ffffffcf ffffffe1 ffffffe3 -FIXUPS: 7974c ffffff77 ffffff3c ffffffc7 601 ffffff52 fffffff2 fffffef8 -FIXUPS: 79850 64d fffffff4 4cd2 fffffff7 ffffffd3 fffffe4b ffffffdc ffffffee -FIXUPS: 7e8c9 ffffffcc ffffffcc ffffffc7 fffffefe ffffff3c ffffffe4 ffffffd1 -FIXUPS: 7e5f3 42f fffff9db ffffffea ffffffcc ffffffeb ffffffd5 ffffffeb -FIXUPS: 7df43 ffffffde fffff627 fffffd89 ffffffef fffffff2 4be 4f8 fffffd81 -FIXUPS: 7cffd 259c ffffffe8 ffffffe1 ffffffe4 69e ffffffde ffffffdb ffffffd6 -FIXUPS: 7fb58 ffffffe9 ffffffe0 ffffffdf ffffffe7 ffffffe8 fffffe67 fffff7ef -FIXUPS: 7f109 fffffeb3 ffffffd6 fffffff3 ffffff9e ffffffb0 ffffffea ffffffd9 -FIXUPS: 7ee6b ffffffc6 fffffe1e fffffff4 ffffffb9 fffffff0 ffffffb2 fffffff3 -FIXUPS: 7f344 ffffffb6 ffffffec ffffffe6 ffffffe8 ffffffe6 ffffffe5 ffffffe8 -FIXUPS: 7f23a ffffffb4 fffffff5 ffffffb5 ffffffec ffffffd6 fffffff5 7b0 -FIXUPS: 7f8cb ffffffb5 ffffffbe fffffff3 ffffffcc ffffff97 ffffffdc ffffffcc -FIXUPS: 7f721 ffffffe8 ffffffbf ffffffad ffffffba ffffffd3 ffffffcd ffffffe5 -FIXUPS: 7fc84 ffffffee ffffffec ffffffed ffffffee ffffffec 72e ffffffb7 -FIXUPS: 802d8 ffffffcd ffffffca fffffe17 39f fffffff7 ffffffcd fffffff7 -FIXUPS: 7f51a ffffffec ffffffec ffffffe8 ffffffe5 ffffffe8 ffffffe1 ffffffe4 -FIXUPS: 7f440 ffffffec ffffffec ffffffe8 ffffffe5 ffffffe8 ffffffd3 ffffffbc -FIXUPS: 81b5d ffffff97 ffffff20 ffffff9d ffffff88 ffffff81 75d ffffff9a -FIXUPS: 81ed2 ffffff8c ffffff83 ffffff7c ffffff8e ffffff5d 55d ffffff93 -FIXUPS: 8211f ffffff8b ffffdf1e ffffffbe ffffffd2 ffffff83 ffffff8e ffffffdd -FIXUPS: 7fe25 ffffffde ffffffdf ffffff6b ffffffc9 ffffffef ffffffb0 ffffffe2 -FIXUPS: 80a47 ffffffb4 ffffffe8 ffffffb0 ffffffe6 ffffff77 72d ffffff9d -FIXUPS: 80f42 ffffff81 ffffff8b ffffff9d ffffff9a ffffff52 ffffff9d 7ce -FIXUPS: 813c9 ffffff83 ffffff9a ffffff68 ffffff8b ffffff8a ffffff9a 73f -FIXUPS: 817c6 ffffff88 ffffff52 ffffff7c ffffff98 ffffff87 ffffff7b 71d -FIXUPS: 83143 ffffffe0 ffffff81 ffffffec ffffffe4 ffffffe8 ffffffec ffffffd4 -FIXUPS: 82ff4 ffffffe1 ffffffe6 ffffffee ffffffdb 472 fffff757 fffffeaa -FIXUPS: 829d9 fffffff2 ffffffca ffffffe0 fffffff2 ffffdebc ffffff52 ffffffa4 -FIXUPS: 80700 ffffff50 ffffffd0 ffffff40 ffffffce ffffffbe ffffff92 5e6 -FIXUPS: 852bb ffffffc0 ffffff12 ffffff8a ffffff92 ffffffd8 ffffeb5d fffffff6 -FIXUPS: 83bb5 ffffffe3 ffffff99 fffffbd1 ffffffd6 ffffffe5 ffffffd5 fffffeca -FIXUPS: 83aef ffffffe0 ffffff4a fffffef0 fffff318 ffffffef fffffff1 fffffff4 -FIXUPS: 82be2 ffffffec 66b fffffff2 fffffff4 fffffff4 ffffffec ffffffee -FIXUPS: 84525 ffffffec ffffffe1 ffffffbc ffffffe3 ffffffd8 728 ffffff1b -FIXUPS: 84a67 ffffffd0 ffffffd2 ffffff9c ffffff99 ffffff73 ffffffea 746 -FIXUPS: 84fc9 ffffff9e ffffffe1 ffffffc4 ffffffec ffffff9f ffffffea ffffffdc -FIXUPS: 84d84 ffffffe2 ffffff92 ffffffdb ffffffc0 ffffffe7 728 ffffffc3 -FIXUPS: 868fa ffffffdd ffffffce fffffff2 ffffffcd fffffff2 fffffeec ffffffa8 -FIXUPS: 86631 ffffee53 fbc ffffffe6 fffffff4 ffffffa3 ffffffb8 fffffff3 -FIXUPS: 86347 ffffdceb ffffffc8 ffffff99 48e ffffff6f fffffe87 ffffffdb -FIXUPS: 8406b 651 ffffffdb ffffff8c ffffffec ffffffd3 ffffffc8 ffffffe5 -FIXUPS: cf255 fffffff9 ffffffea ffffffe6 6f5 ffffff93 ffffff97 ffffffdf -FIXUPS: cf80d fffffff9 ffffffea ffffffe4 fffffff4 fffffff7 ffffffc0 ffffff60 -FIXUPS: cf6be fffffff1 fffffff9 ffffffea ffffffe2 ffffffb9 ffffe6ef fffb9359 -FIXUPS: 87591 60c ffffff99 9e ffffed9e ffffffed ffffffba fffffff2 48147 -FIXUPS: cf1ef ffffff9b ffffffd1 ffffff9b ffffffd1 ffffff9b ffffffd1 ffffff9a -FIXUPS: cef93 ffffff5b fffffff9 fffffff2 ffffffc7 fffffff2 ffffffc7 fffffff2 -FIXUPS: cee12 6ed ffffffdf fffffff1 fffffff9 ffffffea ffffffe4 fffffff4 -FIXUPS: cf481 ffffffc0 ffffffdb fffffefc ffffffb9 ffffffb4 ffffffdf fffff5fa -FIXUPS: ce840 ffffffe8 ffffffee ffffffec ffffffe9 ffffffd5 ffffffe0 ffffffd1 -FIXUPS: ce6ed ffffffc8 ffffffe1 fffffff4 ffffffc0 7ba ffffffc7 fffffff2 -FIXUPS: ced81 fffffff3 ffffffed ffffffc2 ffffffea ffffffa2 ffffffea ffffffa5 -FIXUPS: cec09 ffffffa1 fffffff2 ffffff95 fffffff4 ffffff7b ffffffe1 fffff4ab -FIXUPS: cdf1c ffffffdb 715 fffffff5 fffffff1 ffffffda ffffff71 ffffffd1 -FIXUPS: ce4fc ffffff9e ffffffea ffffffec ffffffee fffffff1 ffffff79 ffffffe2 -FIXUPS: ce397 ffffffdc ffffff75 ffffffe2 ffffffed ffffffdd fffffff0 ffffffd8 -FIXUPS: ce24e 748 ffffffea ffffffd6 ffffff7a ffffffd1 ffffffe9 2ef6 ffffffe6 -FIXUPS: d1cce fffffff7 ffffff3f ffffffe0 ffffffea ffffffc9 ffffffe5 ffffffe1 -FIXUPS: cfb03 ffffffef ffffffbb fffffff6 fffffff1 ffffe784 ffffffef ffffffee -FIXUPS: ce146 ffffffd8 ffffffde ffffffc8 fffffff1 ffffffea ffffffbe ffffffea -FIXUPS: ce02e ffffffdf ffffffa1 fffffff1 ffffffea ffffffba 34c6 ffffffea -FIXUPS: d13d6 fffffff0 ffffffef ffffffd4 6f2 ffffffc9 ffffffe1 ffffffe6 -FIXUPS: d19fe fffffff4 ffffffc2 ffffffd2 ffffffd8 ffffffed ffffffde ffffffef -FIXUPS: d18b6 fffffff2 ffffffe7 ffffffe1 ffffffd6 ffffffeb fffffff4 ffffffea -FIXUPS: d1803 ffffffd2 fffffff3 ffffffec ffffffed ffffffed fffff8ba ffffffc4 -FIXUPS: d0fec ffffffeb ffffff9e 7d0 fffffff4 ffffffda ffffffce ffffffdd -FIXUPS: d16aa ffffffbf ffffffe4 ffffffd3 ffffffec fffffff0 ffffffef ffffffe2 -FIXUPS: d15ba ffffffef ffffffc7 ffffffef ffffffcb ffffffe0 ffffffe6 ffffffe0 -FIXUPS: d14bd ffffffec fffffff2 ffffffea ffffffb2 fffffff4 fffff94e ffffffed -FIXUPS: d0d48 ffffffe6 ffffffe8 ffffffe9 ffffffe9 ffffffd6 ffffffeb ffffffe7 -FIXUPS: d0bd4 ffffffeb fffffff1 ffffffeb 7cb ffffffde fffffff5 ffffffea -FIXUPS: d1305 fffffff5 ffffffdf ffffffdc ffffffea fffffff7 ffffffea ffffffdf -FIXUPS: d124b ffffffe0 ffffffe4 ffffffdb ffffffb7 ffffffa3 fffff862 ffffffdd -FIXUPS: d095d ffffffdb ffffffd4 ffffffd4 ffffffdd ffffffe4 ffffffe3 ffffffc9 -FIXUPS: d082a ffffffe8 ffffffe8 ffffffcd ffffffe5 ffffffe7 7d0 fffffff4 -FIXUPS: d0ea5 fffffff5 ffffffdd fffffff5 ffffffed ffffffed ffffffe5 ffffffe8 -FIXUPS: d0e03 fffffff2 ffffffef ffffffeb ffffffdc ffffffed fffff2e6 ffffffef -FIXUPS: d005c ffffffef ffffff68 ffffffef 7d7 ffffffc7 ffffffd1 ffffff4b -FIXUPS: d0633 ffffffbf ffffffdd ffffffa5 ffffff02 ffffffb5 ffffffcb ffffffe6 -FIXUPS: d03ce fffffff2 fffffff2 790 ffffffe3 ffffffde ffffffee ffffffd4 -FIXUPS: d0ab8 ffffffe0 ffffffdd ffffffe2 ffffffba ffffffc5 fffff97b ffffffec -FIXUPS: d032f fffffff2 fffffff2 ffffffe1 ffffffec fffffff2 fffffff2 fffffff2 -FIXUPS: d02a4 fffffff2 fffffff2 fffffff2 fffffff2 fffffff2 fffffff2 fffffff2 -FIXUPS: d0233 ffffffec fffffff2 fffffff2 fffffff2 ffffffee fffffff2 fffffff2 -FIXUPS: d01b9 ffffffee fffffff2 ffffff2f fffffff3 fffffff2 fffa49cb 15 -FIXUPS: 74ab9 2c 24 17 9 21 a6 3a 27 5 e d 5b320 ffffffef ffffffef ffffffef -FIXUPS: cff4d ffffffe1 ffffffef ffffffef ffffffd7 ffffffef ffffffef fffffeaa -FIXUPS: cfd60 ffffff7b ffffffc6 ffffffa3 ffffffce ffffffaa fffa4974 9c -FIXUPS: 745e0 d 1e 34 1a 2d 16 7 27 1e 5 c 9 32 1c 14 d 1e d 40 19 17 15 -FIXUPS: 74840 1a 10a 2e 2c f 9 fffff110 58 c 16 c 1b 1e 90 36 8e 25 24 -FIXUPS: 73d90 3c 58 1f1 36 17 116 72 5 d6 11 43 37 13 e 22 76 43 9 f 9e9 -FIXUPS: 74e63 d 24 49 18 16 53 7 1c 36 29 17 e 1b 1d 17 130 1d 2d 13 5 -FIXUPS: 751f4 d ffffe7e4 11 21 d 29 34 9 3c 593ab 1c 1a 1a 15 8d 40 d 4e -FIXUPS: cd013 17 d 31 e 35 34 26 20 1d 4a 1d 24 fffa7b58 11 1f d 3c 27 -FIXUPS: 74ddc 20 d 8 fffee0c4 19 134 8 1c 10 10 6a20f 11 22 2e 24 7 d 2a -FIXUPS: cd349 1c 1f 1e 7a d 1e 2d 7 89 2b 32 5 e d fffffc96 fffffc48 fff95554 -FIXUPS: 623e4 18 62 68 61 20 37 d 44 32 77 34 34 80 b 3c 180 19 77 106 -FIXUPS: 62b0d 39 42 71 49 5b b0 21 35 25 82 146c 10 10 10 10 10 10 10 10 -FIXUPS: 64346 10 10 10 10 ffffed03 31 1c 10 5f c1 17f ffffedd5 58 38 5d -FIXUPS: 62279 31 79 17 10 2d 17 1947 3c 3a 3b 8 3b b2 8 78 8 78 8 78 8 -FIXUPS: 6407b 8 78 8 78 8 78 8 13 10 10 10 10 10 10 10 10 10 18b 5c b9 -FIXUPS: 6455c 31 fd 53 112 23 ffffef2e 5f 3e 3e 3e 3e 41 3e 41 3c 3a 3c -FIXUPS: 63a40 41 3c 37 41 3c 3a 3c 37 41 3c 2089 79 fffffc9c 31 1c 10 5f -FIXUPS: 65b57 d b 3f 16 fffffd92 10 5f ffffff50 fffffd4c 29 3d fffffb7e -FIXUPS: 652dd 63 7 53 62 20 7 fffff534 18c 244 178 fffff505 21b1 3d 71 -FIXUPS: 66612 19c fffff96b 2c 21 10 5f 4d 21 7b 3c 104 fffffb38 10 5f 62 -FIXUPS: 66014 b 42 18 fffffd7d 10 5f 59 11 4b fffffd2c 10 5f 1731 10 fffff443 -FIXUPS: 6686a bd 129 3a 16 86 13e 4e 21 29 30 38 21 ea d 61 74 26 1f b -FIXUPS: 67051 47 5e 10 10 fffff383 2c 21 10 19e4 48 16 25 1c 20 4e 1f 10 -FIXUPS: 68026 fffff3f3 31 68 35 d7 c 1a d6 1a 52 2c ad 160 2f 5d 1d 22 -FIXUPS: 67ae6 10 10 fffff691 23f e60 a 5e d 3a 4d 1b9 4e 43 98 2a 17b fc -FIXUPS: 688fb 15b 10 10 fffff0b3 36 e8 118 3e 1c 22 20 c 26 21 1c 16 1d -FIXUPS: 67ebe f3c a 23 41 b 46 a d 14 a d e e d 1a 65 e d 1b f 1d 86 e -FIXUPS: 690cb c 23 42 49 81 10 10 ffffeef1 19e3 4a 4c 3e 48 18 18 2a 257 -FIXUPS: 69fe6 10 10 fffff243 36 88 231 c4 12 f8 10 10 fffff373 31 59 74 -FIXUPS: 68cb4 20 9 d0 d a 29 37af c 27 32 12 f 40 d 2a f 2f 4b 6 37 4b -FIXUPS: 6c7bd 4a 1d 6 6 32 ffffd815 22a a5 10 10 fffff3e3 36 98 da bc 1a -FIXUPS: 6b832 31 57 67 26 80 6 c 9b 3a 6 9b 11 16 11 112 103 34 14 fe 39 -FIXUPS: 6bf44 10 120 13 43 10f 163 d b 1e 1f0 ffffea59 10 1d 20 10 24 10 -FIXUPS: 6b08f 16e 4c 34 2a 33 10 46 30 18 72 3a 51 3f 4c 44 51 3f 51 3f -FIXUPS: 6b6bf 40 8f b 38 fffff14a 23 4f 12 11 8 25 18 8 20 18 8 1d 30 15 -FIXUPS: 6aab0 20 18 10 3b 1d4 25 33 d 11 2b 55 10 a7 29 10 ad fffff732 -FIXUPS: 6a6f8 13 2a 11 c 17 6 6 d 29 6 d 6 6 6 18 d 7 8 15 19 e 6 17 6 -FIXUPS: 6a878 27 40 f 10 15 279c e 32 e 25 2d e 32 e 25 fffff731 13 b0 -FIXUPS: 6c9bc dd 13 3e a2 3a 32 1a 2d 2e 46 fffffbdd 21 ffffdc3c 173 11 -FIXUPS: 6a689 13 21 71aa fffff8d0 e6 2f 33 6a 25 94 ffffe997 16 45 63 70 -FIXUPS: 6fea6 54 10 f 6d 59b 310 7f0 ffffbdd0 7 2c 4c 28 28 28 25 7a d -FIXUPS: 6cfb5 5445 17 d d 5d 19 39 26 1a 19 b 7 d 18 33 1e9 7 70 19 122 -FIXUPS: 72a7c 112 1d 38 1b b9 23 17 3e 157 10 10 fffff208 16 14 d 25 10 -FIXUPS: 7213a e 22 13 1d 33 d 20 29 18 20 1c 16 1f 34 7 12 24 14 f 1b 25 -FIXUPS: 72393 27 1d d fff8f8d4 12 b 12 1c 71704 d0 254 65 a2 11 96 fffff64e -FIXUPS: 71a29 2c1 3a 21 73 67 22 32 16 d1 3f 22 3b 24 1e 14 d 22 10 fff8f7f3 -FIXUPS: 188b 7 1a 12 1c 15 c 2e 1c 1a 41 41 58 e ba b b b b 7 d 5 5 17 -FIXUPS: 1b82 12 d c7 12 b 12 fffff50a 3e 11 d 43 48 34 34 2d b7 25 78 4f -FIXUPS: 1556 5b 98 16 33 49 24 a 18 53 1f 1a 1e 22 12 18 22 12 18 135b -FIXUPS: 2c1c 15 5 5 24 d 18 d b7 12 b 12 21 12 b 12 1c ffffe232 11 29 a -FIXUPS: 106c f 3a a 12 c c c c c 161e 26 c 15 d f 57 92 c 2d 46 43 16 3a -FIXUPS: 2995 c f c 7 2e 94 11 23 50 7 10 23 11 17 11 27 9 fffff75f f 11 -FIXUPS: 237f 18 b 3d e b a 2f 40 58 1c 16 2b b 35 12 30 17 b 9 d b 44 b -FIXUPS: 2673 28 1b d b 4b3e d 23 d 23 d 1b d 13 d 3d 8 13 1b d ffffac74 -FIXUPS: 1fc6 23 39 2e 1f 25 21 35 a 15 52 d0 3d 11 3a d 4ad7 e 1c 16 b -FIXUPS: 6e15 5b 16 6e 6f 7 37 7 2d 36 66 5 5 9 d 3a 59 10 d 13 d 1b d 23 -FIXUPS: 71b9 23 d fffff611 47 c 10 28 37 7 9a 13 92 13 53 12 b 12 21 12 -FIXUPS: 6ad5 12 1c 6d 24 f ab 28 23 f 18 10 3f e 67 fffff6fb 50 42 c c -FIXUPS: 6535 11 c c 1b c 35 c 10 39 7 21 11 17 1d 25 20 1e 11 13 1d 1f -FIXUPS: 6758 19 26 47 c fffff801 55 c e 40 7 34 18 12 3c 29 30 17 12 3f -FIXUPS: 6224 29 9 64 2e 36 8 2e 17 12 3f 28 29 9 22 1d 18 fffff6a2 12 61 -FIXUPS: 5bac 2f 21 11 d 1a 37 1b 13 f 44 3f 13 24 31 2e d 12 41 26 5e 30 -FIXUPS: 5eed 12 56 33 28 16 1a fffff4fa 1d 31 32 1a 24 1a 14 3c 24 c7 22 -FIXUPS: 572c 11 28 8d 1c 1f 29 55 11 80 21 1b 35 75 7 14 45 2a b 3f fffff30d -FIXUPS: 4eeb 11 35 28 3f 1b a 3a 15 1b b 39 1c c 42 18 12 46 3c 29 43 24 -FIXUPS: 5252 1b 38 15 4b 15 68 54 e9 fffff3d1 16 21 17 1f c2 18 11 13 1d -FIXUPS: 4a37 4e 29 d 18 33 12 58 21 53 24 24 16 24 65 34 2d 12 16 d 5b -FIXUPS: 4dde fffff688 1e d 36 3c 32 2c 43 20 d 42 36 c c 11 c c 1b c 35 -FIXUPS: 46f2 1d 20 13 1d d 1e 11 28 3d c 2e fffff416 83 8 2f 1f 27 d4 a -FIXUPS: 3ea8 59 1c 56 48 60 6b 4c 45 8 72 2d 3a 1f 11 11 74 15 94 72 e -FIXUPS: 4419 17 11 ffffef64 16 7 f4 127 4b c2 14 16 b 3f 24 10 3c 22 7a -FIXUPS: 38ea 7 68 2b 16 6b 12 11 17 11 45 6d 67 44 1e 68 fffff2b2 11 2f -FIXUPS: 2f36 2f 11 2f 11 2f 11 2f 11 2f 11 2f 11 3f 11 2f 11 2f 11 2f 11 -FIXUPS: 31f5 11 29 3b 2a 45 12 ad 9406 1b 9b 15 20 20 2d 1e 6d 10 23 a1 -FIXUPS: ca7f 35 2a 24 61 13 b 5 5 5 5 f d 4a d ffff623d 20 11 2f 11 94a9 -FIXUPS: c378 d 18 e 32 13 d 12 11 23 3f 2d c 9 18 17 9 1e 24 26 42 1f f -FIXUPS: c611 1a 69 54 11 d 49 12 fffff852 21 19 100 11 12 30 38 9 11 c -FIXUPS: c1b2 e 19 10 11 13 f 8 f d 10 d 14 16 37 4d c 9 c d 18 fffff1d0 -FIXUPS: b542 12 9 12 1b 9 1b 2f d4 73 131 7 12 1a 12 b 12 21 12 b 12 1c -FIXUPS: b9a6 73 16 2f 38 f 2d 21b 1b fffff22f b 33 39 a0 10 10 79 3e 90 -FIXUPS: b1e9 32 16 a0 8a c 20 2a 21 11 13 3c 12 11 16 9 9 b 3e 20 7 2b -FIXUPS: a709 23 2b 23 79 74 81 83 a 3c 17 25 27 2c 31 e 2f 20 57 69 60 -FIXUPS: ac26 21 20 97 89 2a c c1 25 28 5b fffff1a5 28 10 2d 24 34 11 15 -FIXUPS: a1be 19 10 30 12 10 2d 19 14 78 19 3b de 50 c a8 15 45 2c a 36 -FIXUPS: a621 8e 15 fffff57d 53 30 c c 11f d 35 d 11 2a 2b a 12 23 b 39 -FIXUPS: 9f41 1b e 12 11 e 12 11 e 12 f 63 16 29 20 fffff727 c 2a 10 9 5c -FIXUPS: 98aa 2a 12 10 c 2a 10 9 52 6d 1d 12 18 15 c 37 5e 23 15 13 e 23 -FIXUPS: 9b96 31 a 20 fffff693 17 42 16 a 14 4b 17 d 12 f 14 1e 28 7c 1f -FIXUPS: 94b5 24 24 20 c1 2c d a f 32 1d 69 18 1b 99 12 fffff6b5 14 1e 1e -FIXUPS: 8ee1 12 13 1b 10 1d 27 2a 4f 73 12 13 11 15 16 82 10 38 1a d 1e -FIXUPS: 91e0 2c c e e 22 17 fffff665 1b 12 24 b 3e a e 20 1d e 13 73 39 -FIXUPS: 8ab0 d 38 33 2b 4d 17 98 100 7d 17 d 1c f 10 22 d 12 fffff295 2a -FIXUPS: 8164 13 93 dc 21e 5e 37 18 10 2c 18 10 14 26 c 23 1b 1f 88 21 28 -FIXUPS: 879c 1e 20 31 22 28 13 1e 20 fffff4be 17 9 34 7 a c 17 c 17 27 -FIXUPS: 7e4b 17 9 34 1a c 18 c 6c 19 40 15 f 9 30 1d 1d 30 5d 12 e fffff7cd -FIXUPS: 78c8 f f f f 13 16 24 9 45 2e 1e 63 f 7f 13 1d 1a 19 d 1e 25 8e -FIXUPS: 7c57 2d c 17 3c 14 31 27 fffff8ad 3e 1b 1e f 17 6c d d 21 7 b 14 -FIXUPS: 7775 f f 7 f f f f f f 27 19 f 13 9 f 1b 13 10 5c42 1a 13 b 63 -FIXUPS: d5c1 5 5 9 d a7 12 b 12 21 12 b 12 1c ffff9db6 a 3a a a a a a a -FIXUPS: 7585 11 2f 11 5812 10 147 100 e7 13 b 2a 22 7 37 1f 7 1d 13 b 67 -FIXUPS: d2b1 1f 1b 65 28 17 39 14 2f 25 1b 35 14 3c 13 e56 b1 18 15 e 12 -FIXUPS: e444 1d 5 5 9d 12 b 12 21 12 b 12 1c ffffe6b2 11 1e 2a 10 4e 23 -FIXUPS: cd4b a 10 3a 23 1c e37 18 20 21 3f 1d b 13 7d 153 6e 52 e 9 4f -FIXUPS: e031 9 39 39 d 41 12 9 26 4f 3d 18 15 37 44 47 a 3569 e 10 2d 15 -FIXUPS: d773 1a 1a 8d 1b 1b 3e 11 18 d 74 20 d 89 21 d 1f 83 18 d 28 4b -FIXUPS: db92 17 18 1b 22 38b7 12 21 12 b 12 1c 21 d 3a 6e 7b 15 b 10 10 -FIXUPS: 116d4 10 10 15 10 b 15 15 16 10 10 10 10 36 24 16 fffff389 89 53 -FIXUPS: 10d06 28 2a 2b 40 32d 22 50 4e 7c b 40 14 f 31 b 1e a6 14 36 c -FIXUPS: 11403 48 21 15 5 5 d 12 ffffef5c 77 34 34 34 34 4e 15 43 50 60 -FIXUPS: 10739 1d 10 c cd 55 3d 53 25 1b 12 21 49 25 1b 1d 17 71 16 3c 47 -FIXUPS: fcbb 55 1b 9 9 33 1b 9 9 1b 12 9 9 1c 1d 9 9 21 12 9 9 2da 3e 7c -FIXUPS: 1025c 39 8e 1e 41 28 20 13 fffff3a8 20 19 2f 2c 15 50 25 c 9 15 -FIXUPS: f913 c 9 15 4e e 22 30 3c 24 c 3e 13 c 6e 3a 18 26 12 12 4e fffff6af -FIXUPS: f2ce 13 13 13 13 13 13 13 13 13 20 13 13 13 13 cb 57 1e 6c 1c 3a -FIXUPS: f5f6 c 28 44 9 56 11 11 6f 18 fffff70d 23 5f 2f 25 4a b 7 16 9 -FIXUPS: eff2 2c 47 5a 15 2b 9 57 15 2b 9 28 20 20 13 13 13 13 13 13 13 -FIXUPS: f2a8 fffff508 cc 15 12 35 e 14 14 20 45 17 12 7e b2 9 3f 1a 33 -FIXUPS: eb77 10 29 21 7a 1d 3d 2c 4a 24 1d bb 20 26 2dbe 66 5 5 11 d af -FIXUPS: 11d6a b 12 21 12 b 12 1c ffffc7e2 11 2f 11 2a 1f a 12 17 1f 1d -FIXUPS: e6fe 1d 3a b c 16 62c5 21 12 b 12 1c ffffce12 11 23 4b d 24 e 4c -FIXUPS: 119da 15 29 34 12 1a 1a 1b 15 29 1d 75 1f 1e a 10 26 d 2bad d b -FIXUPS: 147db 1a 20 36 1e 1a 1d 1b 48 1e 5 5 9 d 13 d 13 d 13 d 13 d 13 -FIXUPS: 149e1 13 d 17 12 b fffff931 f3 7 26 55 48 f 22 16 11 1c 10 11 2c -FIXUPS: 145ef 11 1f 7 19 24 30 10 11 e 23 20 f 1a 15 23 26 18 fffff554 -FIXUPS: 13d12 21 22 1e 25 c2 17 4e 29 b 2d 26 b3 17 2b a9 17 12 f c 37 -FIXUPS: 141f5 12 10 68 a 22 1c 1e 1f 4d fffff522 16 22 46 5a 16 5f b b -FIXUPS: 139e1 b 7 ed 13 13 13 13 48 18 14 15 18 14 15 18 29 7 1a 21 22 -FIXUPS: 13cb5 21 fffff5b1 4a 1e 10 18 45 3a 24 2c 14 6b 1c 16 11 1b 1b -FIXUPS: 134f9 1b 3d 62 4d 3e 2b 3e 2b 3e 28 48 2d 48 16 22 fffff6c7 15 -FIXUPS: 12f25 2f 17 12 32 62 35 d 1b d e 10 d 21 15 c 7 10 d 67 22 a 15 -FIXUPS: 131c7 1c 1e 9 1d 10 3d fffff726 18 3c 16 52 14 26 5e 63 52 23 1a -FIXUPS: 12be7 14 21 1a 18 1d 26 3a 24 26 1f 93 21 12 4b 36 28 1d 18 c fffff54a -FIXUPS: 1243b f f 22 23 17 7 10 d 67 13 15 2a 14 9 aa e 65 3a 30 17 2b -FIXUPS: 127b2 31 14 91 27 3a 2f 50 f fffff6a9 24 66 2b 5 26 5 7 78 17 12 -FIXUPS: 121ee 63 4e d e 10 d 14 d 1b 14 d 1b 14 d 1b 2c f 1f 23 14 389c -FIXUPS: 15d13 21 5d 5 5 9 d a7 12 b 12 21 12 b 12 1c ffffbf32 11 2f 11 -FIXUPS: 11ea5 11 2f 11 2f 11 2f 11 2f 11 2f 387a 7 24 19 7 36 1b 37 32 -FIXUPS: 15971 2c 25 17 48 2c 5a 14 21 13 15 37 e 1c c 1c 41 12 7 34 1c -FIXUPS: 15c7b 7 fffff782 71 d 16 24 3d 1a 50 d 16 24 3c 28 1f 1a d 1e 29 -FIXUPS: 156b4 13 15 15 22 14 e 4f 21 30 13 2e 1d 13 fffff857 12 12 12 13 -FIXUPS: 150f9 13 16 7 7 3e a 12 12 12 1c 14 11 11 11 16 7 7 45 41 35 86 -FIXUPS: 15381 e 18 3d 11 fffff8f2 1b 56 e 14 c 6 14 7 c 23 e 57 9 60 7 -FIXUPS: 14f15 22 7 29 12 31 11 48 a 12 12 12 16 7 7 2c 1471 19 19 1b 5 -FIXUPS: 1655b 9 d 13 d b7 12 b 12 21 12 b 12 1c ffffe462 11 21 12 9 c 34 -FIXUPS: 14c2d 23 1f 2c 20 1a 1fa2 1c fffff2a2 11 2f 11 4c 1a 12 36 70 5f -FIXUPS: 16111 1d 3c 39 b2 28 19 62 1a 12 58 1b 23 34 25 23 12 2f 5a f 33e -FIXUPS: 16842 7 d 49 9 2a 38 20 28 14 a 22 8a 13 28 11 31 6b 16 17 5 5 -FIXUPS: 16b44 d a7 12 b 12 21 12 b 1937 21 18 103 14 1a c 15 c 19 17 5 -FIXUPS: 18793 12e 5 5 9d 12 b 12 21 12 b 12 1c ffffdd32 11 1e d 8 20 7e -FIXUPS: 180e8 16 10 26 11 13 68 12 3b 8d 14 26 1b 5 42 9c 9 23 34 2f 15 -FIXUPS: 1848b 15 c 20 13 14 24 20 1a e 18 ffffee71 c 16 e 2f 1d 29 2c c -FIXUPS: 17507 11 7e ea 19 10 f 15 c 1e 1d 5 35 16a a2 a2 416 48 14 20 215 -FIXUPS: 180bc 20 ffffece7 1d b8 24 93 c b6 1d 1c d 16 14 e 16 11 75 1c -FIXUPS: 17153 8f 14 21 7f 21 11 66 34 f e a 27 d 15 1ba5 a 1f 1e 18 b 5 -FIXUPS: 18feb 27 fffffa15 31 75 4d 4c 51 18 3b 187 5 5 9d 12 b 12 21 12 -FIXUPS: 18ea5 12 1c ffffde41 36 36 3811 21 ffffefb4 1f 11 1e 5c 1b6 b 5 -FIXUPS: 197db 21 fffffb12 10 7 8a 1c d8 ae fffffb24 11 ee 30 5d 23 d fffffe10 -FIXUPS: 18f05 11 2d c a 18fd 10 53 35 1b 28 19 21 e 2f 5e 1e d 3a 15 26 -FIXUPS: 1aad1 21 12 d fffffb4d ef 54 fffff086 559 49a 22a b 28 27 44 29 -FIXUPS: 1aff9 32 79 16 2e 2c 35 9c 40 50 20 3f 36 6f 12 f 25b 6d 201 63 -FIXUPS: 1b90f f 2e 73 1a0 3c 156 ffffeae4 11 2f 11 1e 32d1 4c 5 e d ffffe19b -FIXUPS: 1bdc4 6c 51 ffffecb1 20 32 26 9 54 4b 94 11 4e 33 36 f 1d f 27 -FIXUPS: 1ae32 4b 1e 28 be 29 15 2104 9 8b 2d 2d 37 2a 3c b1 4a 69 75 1e -FIXUPS: 1d461 31 37 1c6 6e 8f 46 52 48 2c 2e b 36 2a 86 19 11 2c 8d fffff156 -FIXUPS: 1cc1b 19 29 20 38 21 14 40 1e 2a 1e 12 11 10 b 69 14 67 14 12 7c -FIXUPS: 1cf64 37 2e 1d e 72 d 12 2d 5 fffff62d 1c 2c 3a eb 5 7 8a 50 d -FIXUPS: 1c957 c 9 26 a 55 1b 13 1e 20 28 43 22 29 27 9 14 24 1a 18 14 18 -FIXUPS: 1bfa6 f 2d a5 168 f 10 41 f 10 14 11 44 62 25 14 68 b 23 48 f 47 -FIXUPS: 1c4e6 6e f 2d 2c 2d 36 4a 2a 28 2e9b e d 13 d ffffe714 11 33 8b -FIXUPS: 1ddb4 3b 3c 84 9 2f 2b 33 24 67 12 6c 3f b4 5 5 9 d ffffdd54 11 -FIXUPS: 1bee6 3b 5d 2ac7 c 35 14 20 1f 18 23 53 7 c9 75 cd 3e 57 110 32 -FIXUPS: 1ef93 53 59 c 29 74 c2 1b 13 92 d2 100 13 3c c6 4b3 d ffffe824 -FIXUPS: 1e246 2f 11 7e 200 47 9f b 46 13 2d f 22 18 1f 3f 1c 11 5f 3b 3f -FIXUPS: 1e840 61 13 26 2e 3c 1c 11 4285 b 5 5 5 14 d 13 d ffffca04 11 34 -FIXUPS: 1f6dc 51 18 2d 59 18 10 6 12 6 21 f d 2f c 5a 21 73 7a 5 25d8 11 -FIXUPS: 21ff5 2c 1a 44 e 63 e 47 14 12 5b e 5a 22 21 3e 64 1d 22 15 364 -FIXUPS: 22744 2b 63 1d 22 15 32b 79 1c ffffedb3 5 1c 15 4c 10 5c d 37 70 -FIXUPS: 21b7a 16 34 91 46 11e 11 15 19 1b 1f 15 d 1e 21 5 d 26 7a 33 1f -FIXUPS: 21fb3 fffff2a3 5 bc 32 60 22 d0 1d 38 1e 116 5 3b 27 1a 15 5 2a -FIXUPS: 21709 6c 19 24 14 5 ec 1c 5 f 26 b 19 4c fffff2f2 74 17 21 5 79 -FIXUPS: 20dbf 50 a 32 56 1f 64 a 1d 1d 27 1d 5 1a 13 1c 5 87 ae 18 4c 11 -FIXUPS: 211b8 32 16 e fffff4ed 2d 15 1e 49 9 1b 12 a 29 62 35 11 a5 17 -FIXUPS: 2098e 15 c 1b 5 57 64 23 50 a 7e 69 22 e 17 1d 5 fffff3e8 e 23 -FIXUPS: 20082 88 15 18 10 50 f e0 17 c3 c 6d c c 61 5d d 11 4a 1b 33 42 -FIXUPS: 2060f 20 31 27 25 13 c fffff48a 11 af 1f 1a 27 1d 8 1a 1a c 79 -FIXUPS: 1fd6d 78 c e c e c 2d 31 1c 22 22 1f 40 1c 23 31 1f 1c 27 4d65 -FIXUPS: 24dca 33 1e 15 b 1b 15 22 21 2f 2f 1e 23 2c 1e 15 b1 5d 4a 8e 39 -FIXUPS: 25251 5 4e d 21 ffffa7e4 1f 11 2f 11 4b03 13 2d 13 c5 b c 18 3a -FIXUPS: 248b3 4c 54 23 84 15 a 22 c 19 7a 21 c 19 3b c 19 c6 a4 1f 25 13 -FIXUPS: 24d5a fffff152 13 11 59 11 12 20 12 14 2c 47 3f 38 44 59 22 66 -FIXUPS: 241e2 16 49 17 48 18 4a 22 2e 19 11 11 f3 27 82 fffff40f 40 15 -FIXUPS: 23999 13 18 63 4b 54 19 62 14 12 1c 19 77 1f 74 49 3e c a 13 1f -FIXUPS: 23d88 1b 18 5f 4b e 13 10 fffff43e 84 4a 52 2d 10 d 59 91 15 31 -FIXUPS: 23582 1b 30 e 2b 14 f e 12 19 e 12 e 67 25 21 2c 14 25 5f 47 2213 -FIXUPS: 25af1 5 ffffd17f 11 2f 11 be 38 e 9b 28 1e c 52 87 2d 1e 1b 9 10 -FIXUPS: 23024 32 1d 24 80 12 3c 76 7c 12 34 47b1 19 49 30 d 2d 152 4e 3e -FIXUPS: 27d01 54 c 5 e d ba 19 d ffffd4b0 5e 21 e 22 15 43 9 97 329 43 -FIXUPS: 258ad 1b e 1d35 9 22 9 9 29 9 20 25 2a f 16 b 9 22 9 9 2f 1c 64 -FIXUPS: 278bd 9 13 2d 9 2c 9 2d 9 10 31 2d fffff79f 9 21 d 9 1f 9 9 16 -FIXUPS: 2721d 16 b 9 2e 1c 64 cb 31 9 31 9 15 31 2d 66 19 4a 9 23 3f f -FIXUPS: 27600 fffff76b 9 1e d 9 16 f 16 b 9 2e 1c 5c 30 f 28 9 2b 6d 2b -FIXUPS: 26fd9 36 9 b 27 29 66 19 4e 9 25 10 fffff576 243 120 e 42 54 c -FIXUPS: 26b20 4c 65 9 1b d 9 26 10 17 10 9 9 16 f 16 b 9 27 9 2e 9 18 a -FIXUPS: 26d62 ffffeee2 16 83 d 53 3e 4e d0 b 17 39 28 27 50 15 25 1c 3b -FIXUPS: 26048 72 16a d 60 5b 27 bc 2b 1b5 c 2c 1c a1 2438 33 52 4f df 33 -FIXUPS: 28cd3 26 2d 2d 2d 2a 30 11c 86 98 f 23 28 1f 34 9e a5 55 2a8 5 -FIXUPS: 27f11 5 ffffdc8f 11 2f 11 5892 2f f 5c 18 37 26 126 39 28 35 40 -FIXUPS: 2b7ff 10 e 2a 17 73 32 c 62 5 e d ffffc653 d 292 10e 3e7 286 86 -FIXUPS: 28ab8 2041 43 91 1b 25 19f 101 12e a d 6b e 41 42 2f 70 a d 51 -FIXUPS: 2b203 41 38 37 7 89 15 e 3c 57 17 33 39 ffffecfb e 75 92 29 35 -FIXUPS: 2a312 aa 55 11 25 4d 30 bc 34 16 44 c 5f 72 ee 64 58 64 17 6f 30 -FIXUPS: 2a9ec 46 2b 23 47 10b8 158 53 36 28 99 5 ffffd82b 1f 4f 139 8f -FIXUPS: 2989b 9f 210 17 12 d f0 d 1d 3f 1a1 f a7 73 6 c9 e 5d 13 31 2864 -FIXUPS: 2c9b4 12 10 a 19 a c d 10 6a 17f 8 1e 1f 14 3e 5c 26 b3 5 e d ffffebb3 -FIXUPS: 2b9ce 15 19 42 18 23 11 19 432 11 3e d 54 116 b3 78 1c 2a 20 b -FIXUPS: 2c24f 49 76 4c 6a 1c 58 42 11b 4c 75 1c d8 4c 7a 44 3b 4b 5c 22 -FIXUPS: 2ec71 44 17 25 25 e 14 2f 2d 11 24 93 5d 18 96 1a 13 d 13 d 13 -FIXUPS: 2efe1 13 d 13 d 13 d 13 d ffffde50 5 1926 20 14 1d 12 19 29 a 1b -FIXUPS: 2e8b4 17 30 19 14 2f 2d 11 24 41 14 b 24 13 5a 31 2e 18 6d 19 1d -FIXUPS: 2ec1c 13 fffff35e 23 12 1d 43 b8 42 b9 44 e cd 31 77 11 40 40 1f -FIXUPS: 2e464 1b 17 7 42 40 55 23 85 2f 13 2d 1f aa 18 fffff02c 71 1d 2c -FIXUPS: 2d862 1b 3c 41 45 34 14 31 38 23 26 35 45 4d 19 10 1e 32 77 2a -FIXUPS: 2dcb5 4d 36 dc 53 95 35 1e fffff4bc a b 28 a b 4c 22 a b 24 a b -FIXUPS: 2d544 5b 6 15 b 17 c 22 1f 10 1e 32 d 1c 48 14 b 20 42 fffff7fb -FIXUPS: 2cfa5 11 2f 11 2f 11 2f 11 2f 11 2f 11 28 9 32 1c 14 1c 21 24 6e -FIXUPS: 2d276 2f 22 42 1f 12 38 23 38 20 262d 18 59 1a 12 26 a 4d 14 2f -FIXUPS: 2fba4 11 24 48 38 30 1c 19 60 31 23 10 34 36 8 1f e 13 d 13 d ffffd104 -FIXUPS: 2f22f 21 12 1d 43 101 14 15 7c 43 27 20 1c 18 2b 15 21 f 10 62 -FIXUPS: 2f681 37 45 30 4d 3e 4c 19 aa af 3f 20 4202 60 20 1e 38 3d 3b 26 -FIXUPS: 33db2 82 c8 47 49 2a 13 16 5b 57 13 d 13 d ffffafb4 11 2f 11 1e -FIXUPS: 2f1d7 7 11 1f 13 45c0 18 18 1e f 44 28 1d 13 25 41 9 9 31 9 2c -FIXUPS: 339d6 1f 15 21 10 1a 19 27 64 15 15 30 9 10 9 46 fffff6a7 21 a3 -FIXUPS: 33359 2a 28 d4 94 2a f 25 9 38 d 9 2e 12 9 1f 1c 36 1f 27 2a 2e -FIXUPS: 33731 17 1e 1f 22 16 f fffff588 1b 3a 30 2c 34 1f 10 3f 1b 20 18 -FIXUPS: 32f0a 5d 20 18 13 1d 3d 25 49 1b 37 1c 2e 1c 34 1c 2d 38 25 3d -FIXUPS: 328a1 1e c d 23 47 25 13 3b 48 37 2e 2c 2f 33 1b 2b 29 29 20 1a -FIXUPS: 32bfc 18 27 f c 10 22 2e 25 2c 3c fffff7eb 16 d 19 14 16 17 23 -FIXUPS: 325f0 29 2a 16 10 16 16 11 32 13 23 28 1c 2b 11 d 24 17 1f 17 17 -FIXUPS: 32858 1a 1c fffff8bc 24 d 24 13 9 11 7 9 15 22 26 1c 17 1f b 1b -FIXUPS: 322c9 f 3f 50 20 1b 1d 13 2d 3d 11 3a f 1f 4e fffff91b f 9 14 24 -FIXUPS: 31e7b 17 d 1a 10 9 15 12 9 39 2a 10 b 36 11 1d 1a 15 a 50 2c 20 -FIXUPS: 320de 8 16 a 33 fffff727 17 16 7b 19 41 b 15 24 11 1a 35 1e 35 -FIXUPS: 31a6c 37 33 1c 24 5d 4e 1a 16 a0 75 3d 45 1a 2b 1b d 1a fffff576 -FIXUPS: 3139c 23 1f 1c 1a 27 39 2a 9c 3c f b 9 13 11 40 29 48 f 20 32 21 -FIXUPS: 3171c 16 21 34 b 34 1b 22 40 fffff6bb 6 70 11 1c c 18 19 15 10 -FIXUPS: 3100e f 12 b 10 2a 39 1e 47 6 2c 30 24 52 a 9 19 75 60 28 6 38 -FIXUPS: 3091f 4d 13 13 26 27 17 2e 17 3a 2b 27 17 41 16 18 16 13 26 30 -FIXUPS: 30bf8 16 16 13 39 2a 4c d cc 48 51 54 fffff571 15 19 17 47 3e 23 -FIXUPS: 30557 16 11 18 18 16 5a 34 40 1f 45 1c 36 18 14 9 14 f b 1a 2d -FIXUPS: 307fa 1c 22 c8 fffff6fa 9 b d e b f a6 2b 7 b 2c 10 d d 101 c 10 -FIXUPS: 302a4 11 e 13 15 41 26 7 a f 2d 17 46 16 3cf4 2f f 7a 50 7f 20 -FIXUPS: 3435e 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d ffffb794 11 2f 11 -FIXUPS: 2fef4 12 88 2c 14 498c 55 11 d 81 6a 12 78 12 33 27 21 3994 1b -FIXUPS: 3859a 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9264 7974 -FIXUPS: 3bbce 78 75 49 d 20 52 72 c6 80 14 1c 46 79 17 13 d 13 d 13 d ffff8674 -FIXUPS: 34726 52 8 28 8 11c 18 3f 1b 6bd8 14 27 38 25 26 d 27 16 16 1b -FIXUPS: 3b65c 4a 5f 14 1b 3e d 2c 1c 16 3e 1c 16 46 1c 3a 16 41 16 1d 3e -FIXUPS: 3af26 2f 11 2f 11 1e 6e 17 68 3c 58 54 70 15 f 4d 35 1f 18 d 27 -FIXUPS: 3b330 40 9 1e d 2c 37 d 32 33 27 1d6e b 39 f 1e 19 d b 79 23 11 -FIXUPS: 3d368 c1 e 12 29 25 2c 16 26 27 b 5 5 9 d 13 d ffffd944 11 2f 20 -FIXUPS: 3ccc3 38 45 3e 10 17 61 14 15 20 d3 57 6 20 2b 3f 6 20 2b 4b 6 -FIXUPS: 3d0c8 18 1f 2d 27 6 1c 1d 3f 1a 12 fffff52d 27 34 1c 17 8 a a 28 -FIXUPS: 3c80d 15 8 8 48 125 29 57 23 23 13 1d 18 40 1f 17 31 50 40 28 18 -FIXUPS: 3cc64 40 fffff52e 23 14 14 25 11 18 3d 1c d 14 57 26 7 a f 2a 3e -FIXUPS: 3c44e dd 1d 15 12 b 8 29 69 2e 22 2e 4b 36 13b7 a 11 9 d 14 11 -FIXUPS: 3db30 1b 1d f 1f 1d 14 1f 10 10 4e 10 10 1e 10 3f ffffe3f4 11 2f -FIXUPS: 3c126 1e 12 22 21 25 2cde c f 12 f 11 e 96 9 7 9 85 2b b 5 5 17 -FIXUPS: 3f094 d ffffe59d 23 89 9e 5e a1 aa c a4 c 86 c 42 ebe 34 7 70 28 -FIXUPS: 3ea74 8 40 26 29 42 2e 34 19 92 a f d 20 3d 6b 1b 3a 1d 20 a f -FIXUPS: 3edff 11 58 b 18 fffff51b 3a b 1e 2d 1a 154 2a f 18 2b b e 11 29 -FIXUPS: 3e68b 40 15 11 5a 3d a 12 46 12 2b 15 9 13 19 89 1d fffff51f b -FIXUPS: 3de57 e 7 a8 d 2c 19 20 12 5d 26 11 24 1e 11 b 1e 82 10 28 e 64 -FIXUPS: 3e2ab c 24 b 4d 1a 22 24 15d8 113 1a d 11 19 2a 1c 17 63 28 3c -FIXUPS: 3fc11 49 22 78 a 2e 1e 57 5 e d ffffdf35 1f 11 2f 11 2e 15 28 7 -FIXUPS: 3f0d6 28 7 10 d ac 1f7 dc 52 17 7c 65 c 2f 19 14 2e 79 d 26 16 -FIXUPS: 3f765 29 10 1c 5d 95 20 d 8 50 1d 13cd 49 2d 21 38 1e 60 129 23 -FIXUPS: 41016 2a 61 1f 66 2e 6d 1f 66 28 63 70 71 25 3a 5 e d 13 d 13 d -FIXUPS: 3f0c5 14ac 55 4a 65 57 40 40 4c 50 5d 1a 23 16 185 34 a 3a 15 47 -FIXUPS: 40afb 3a 15 47 a 3a 15 46 a 5b 15 5d 9 18d1 13 d ffffd874 20 11 -FIXUPS: 3fed5 11 2f 11 3e 44 51 b 11 23 14 34 86 2c 50 3e 36 89 5e 44 4d -FIXUPS: 403b1 80 55 4b 55 1900 3f 98 15 30 39 47 16 9f 65 5 18 5b 33 16 -FIXUPS: 421c4 47 1f b 42 2f 42 46 6a a9 78 35 b3 5 e d 13 fffff410 12 b -FIXUPS: 41a19 10 d d 6 c 11 b 9 1a 50 51 1e b 1a c 10 14 52 b 1d 11e 21 -FIXUPS: 41d74 12 2e 25 11 b fffff730 11 2f 11 2f 11 37 10d 8c 6 23 22 68 -FIXUPS: 41883 41 7 e f 29 7 f 6 c e 18 c 8 14 e 13 e 25 34b9 d 13 d 21 -FIXUPS: 44ef4 d 13 d ffffd785 1f 11 1e 55 31 20 2b 1a 1c 43 b 8 16 b 54 -FIXUPS: 428d6 b 5 5 5 14 d 1f56 7 38 4e 2a 9b 15 13 2a 17 9e 1e 7 56 b -FIXUPS: 44b4f e6 9d 1a 29 2c 1c 1f 21 40 24 40 5 e d 13 d fffff04b 12 12 -FIXUPS: 43eff 12 42 17 22 8 1f 5b ab 15 13 16a 1b e0 7 5b b 47 8b 5c 22 -FIXUPS: 44549 9f 7d 26 10e 23 38 31 fffff0e9 1d 11 10 a0 16 1f c d7 c 15 -FIXUPS: 43b35 c 6e 31 10 16 3f 1f 15 1c 4e 32 46 40 39 47 11 12 2f 31 1c -FIXUPS: 4338d 12 7b 32 8c a3 11 e 30 2e c 3c 16 1a 43 18 19 8 49 46 12 -FIXUPS: 437b3 23 28 1a 2a a 31 39 6 2d 12 fffff515 26 10 3d 14 b 3c 31 -FIXUPS: 42f1f c 3d 14 18 3d 24 15 b 3f a2 2f 2b 15 47 5 18 5e 3d c5 b 11 -FIXUPS: 4336b 17 fffff6c3 11 2f 11 2f 11 2f 11 2f 11 1e 3b 2b b 2f d 44 -FIXUPS: 42c79 10 b 10 3b 1d 20 a 42 19 b e 47 9 10 2a52 1b 4e 5c 28 1f -FIXUPS: 459dc 67 1c 2e 26 1c 56 c b 32 10 17 8 4e 22 18 c 5 e d 13 d ffffcd54 -FIXUPS: 429d6 2f 11 264e 4d 3c 8b 61 27b 2a 7 15 b 18 11 c 37 13 14 16 -FIXUPS: 4556c 17 30 39 17 3a b 2b 15 b 28 25 84 33 8e d11 28 1d 30 28 62 -FIXUPS: 4664d 77 15 39 33 c 44 20 3e 3e 5 5 11 d 1b d 13 d ffffe6a4 11 -FIXUPS: 44f85 11 1e 31 43 2d f01 1a f 10 4e 9 c e0 12 99 d 34 31 17 37 -FIXUPS: 46246 c 57 3a 38 3e c 20 1a 46 20 17 21 23 27 43 44 2760 59 1a -FIXUPS: 48d0f d 18 d 13 d 13 d ffffcfa4 11 2f 11 2f 11 41 8 1a 20 b 1e -FIXUPS: 45e6f d d 5 d 44 f 3c 16 28b4 15 1f 2e 2a 18 18 2a 1c 10 d d 24 -FIXUPS: 4894a f 2b 4e 12 53 1e 16 1e 28 26 34 1d 29 38 18 1e 31 12 fffff6e7 -FIXUPS: 482f5 d e d 6c 15 4e f 12 51 1d 18 26 d 37 1b 20 30 d 41 25 d 28 -FIXUPS: 4861d 29 14 d 8b ba 18 1b fffff771 10 2c 25 10 9 34 1f 17 20 15 -FIXUPS: 4808e d 28 d 3c 1f 18 1b 15 25 d 28 d 33 15 23 d 1d 23 18 f fffff88f -FIXUPS: 47b51 9 a a 9 9 9 b b 33 1d d 144 d b 43 c 39 27 19 40 12 d 14 -FIXUPS: 47ea4 34 c 16 28 e 17 fffff96e d d c 9 c 10 33 11 14 14 17 61 1d -FIXUPS: 47a09 10 14 d c 10 16 c 25 34 20 c 9 11 c 9 9 9 fffff9a1 37 16 -FIXUPS: 47556 16 29 16 2c 16 2c 16 2c 16 2c 36 22 21 16 9 2d 3c 21 2c d -FIXUPS: 47819 16 1f d 21 16 9 d fffff7c3 2b 22 10 1e 11 83 19 23 16 23 -FIXUPS: 47205 24 1e 24 1e 24 32 31 31 16 25 16 25 16 23 16 23 16 23 32 -FIXUPS: 474aa fffff51c 2f 11 1e 58 7e 11 c6 14 32 12 15 bd 50 27 81 19 -FIXUPS: 46e1c 6 3a f e 24 f e 74 31 12 36 f 57 41 470b 1f 15 16 d 26 34 -FIXUPS: 4b84c 12 14 e2 24 9 5 e d 21 12 d 13 d 13 d 13 d 13 d 13 d ffffaef4 -FIXUPS: 46986 2f 4864 10 24 5 1c 10 26 35 4d 7 14 19 af 1e 5f 1e 13 2c -FIXUPS: 4b4ee 15 10 4d 13 42 36 2e 1d a3 2e 1a b 1d fffff327 25 10 2d 11b -FIXUPS: 4ac04 38 33 e 12 10 bf df 19 9 142 6c 59 10 f 29 17 39 7 10 64 -FIXUPS: 4b19e 7 1c 23 14 5 fffff240 19 41 73 15 3a 54 58 1c 47 3d 21 1e -FIXUPS: 4a707 3f 54 2f c 56 2e 2d 1a 2f 15 49 15 18 3b 4b 15 9 3c fffff213 -FIXUPS: 49c62 58 44 d 1e 16 27 2e 20 13 10 ca 13 107 46 13 b2 92 104 22 -FIXUPS: 4a287 22 2e 4f 7 18 2d 37 1d 43 22 fffff1cf 10 e 6 19 1e 12 17 -FIXUPS: 4968a e 12 2b 34 27 14 15 2c b 10 17 35 50 5b 30 39 19 5b 2a 43 -FIXUPS: 49a4a 37 b3 fffff3f1 11 2f 11 2f 21 91 2a 2c 5d 9 4e b 7 f 45 56 -FIXUPS: 49230 1d ce 9 4a 52 b0 1e 59 4a 30 1a 2f 19 1f 25b2 56 79 13 f -FIXUPS: 4bcfe 7f 3b 21 d3 1b 12d 16 42 5a b 5 5 5 22 ffffccc3 11 2f 11 -FIXUPS: 48e25 11 2f 11 2f 11 2f 11 7426 7 d 3a 10 2c 7f 1a 20 1b 20 61 -FIXUPS: 50516 e7 1b 10 21 38 5 e d 13 d 13 d ffffb404 11 20 e 2b 25 7 4195 -FIXUPS: 4fd9a 1c 17 17 17 20 20 9 24 42 1e 2d 19 1e d 1a 6 85 20 19 2c -FIXUPS: 50054 2f 15 1f 60 61 2d d 70 80 fffff377 26 25 26 8d f 52 52 3d -FIXUPS: 4f869 21 98 20 5a 83 2f 47 27 2c 57 1a e 15 19 1f 10 8d 18 33 18 -FIXUPS: 4fccf 1d ffffef94 2c 15 1d 6f c 16 e 10 10 9 e 18f 28 32 127 85 -FIXUPS: 4f174 15 28 84 b0 21 41 5d 21 67 1e 71 31 2c 3e fffff02f 1b 51 -FIXUPS: 4e60c 20 1c 28 30 3d 19 1e 3e 17 1f d 15a 14 12 11 9 23 49 3a c -FIXUPS: 4ea4b 54 35 8f 20 12 1f 12 fffff1ff 75 5d 44 31 2f 28 9 15 30 28 -FIXUPS: 4dfe5 e7 4b e 15 2c a4 37 49 15 53 c 24 c 3f 54 4c 54 40 35 8f -FIXUPS: 4d8dd d e 86 9 46 b 1e 1e 9 20 16 2f 1c 13 f 33 5c 39 16 1b 9 1d -FIXUPS: 4dbf8 9 26 4c 3f 41 1c 5b 43 fffff72c 20 19 3a 6 17 20 1c 4c 13 -FIXUPS: 4d615 2a 15 15 18 2f 15 15 15 35 3b e 10 17 e 17 19 48 26 21 3c -FIXUPS: 4d8b0 fffff756 10 7 21 89 15 f 17 35 38 68 17 1d 30 33 10 d 24 -FIXUPS: 4d2c0 13 1d 24 56 10 2f 31 1d 20 25 2f 23 12 fffff324 1b 4e a7 -FIXUPS: 4c979 34 1f 1e 5b b 16 27 4f 43 22 74 2b 24 23 32 29 20 48 43 77 -FIXUPS: 4cdde 7b 31 79 c5 1e 12 7e9c d ffff72f4 11 2f 11 2f 11 2f 11 2f -FIXUPS: 4c2a6 28 64 31 6b 15 b 57 28 1d c3 20 2a 46 76 30 3f 1c 31 59 10 -FIXUPS: 546a3 b 20 47 9b 81 21 f 33 50 28 f 21 41 26 5f c a 1c 200 25 45 -FIXUPS: 54caa a 18 f 19 18 155 5 e d fffff1ad 3f 15 69 30 26 27 4e 31 f -FIXUPS: 5420b 22 4e 7a 12 e f 12 17 37 44 33 28 2c 2b 72 50 56 30 2f 15 -FIXUPS: 5461f fffff1e5 f6 11 1d 4c 1c 55 2b 7f 18 1d 20 96 18 23 1d 21 -FIXUPS: 53c0c 17 30 26 1c 85 db 24 db 15 2a a 43 15 70 fffff264 1a 1c 105 -FIXUPS: 533dc 1f 5f 69 54 f 20 28 2b 1d 21 14 1a 2b 1f 1f e 47 25 15 2f -FIXUPS: 5374d f 2f 1d f 1b 1d fffff0f6 24 3a 2b 27 129 18 40 6b 4a 27 22 -FIXUPS: 52c61 b8 b 6a 3d 128 a5 33 1f 33 13 2e 6f 29 47 66 29 1c 1b b ffffec81 -FIXUPS: 51eb6 20 2f a9 9e b 56 2f 55 b 9c 4f d7 b a1 4f 49 d 38 9f e 4b -FIXUPS: 52615 45 29 125 15 2b 62 13 22 ffffe91d 92 3f 4a ed 28 26 ac 3e -FIXUPS: 51527 ed 28 15 28 17 2a dc 1c 46 18 16 6d 85 4f 13 15 1f a7 17f -FIXUPS: 51bf3 1f3 f ffffedf8 3f 87 34 22 32 20 27 23 b 1c 15 32 1a e 25 -FIXUPS: 50eee 1b 16 3f 29 d 32 31 d 26 f 5c 61 3a 11 35 4581 61 29 5 e -FIXUPS: 557a1 13 d 13 d ffffafa2 13 72 26 15 7c c8 22 3c 6a f 11 11 b 13 -FIXUPS: 50adb 24 11 11 b 39 79 42e7 11 2f 11 2f 11 23 47 84 e 8c 10 14 -FIXUPS: 55110 30 b8 1b 34 2a 5b 1c 41 1e 6d 3b c0 1b6 b 37 7 12 27 e5a -FIXUPS: 5655c 28 8 c a 36 2d 29 12 10 32 4a 1a e 2d 16 16 13 11 1c 10 d -FIXUPS: 567bb 1a e 14 1a 13 d 13 d fffff848 1b 16 28 2a 43 23 26 18 1d -FIXUPS: 561ee 31 1f 16 22 1c 38 21 1b 5c 21 2b 16 28 16 46 23 2f 40 16 -FIXUPS: 56514 e fffff54b 18 26 14 25 49 6b 7d 28 2e 2c 2c 42 54 2d e 2d -FIXUPS: 55dfc 57 2a 24 4e 34 49 1a 18 16 27 1b 2a 44 1b c6b 8 12 28 2e -FIXUPS: 56d64 c 11 17 a 8 d 25 26 1d 23 f 5 e d ffffea24 11 2f 11 1e 2a -FIXUPS: 55967 22 3c 13 3e 30 e62 21 10 21 68 19 a 15 f d 90 28 f 18 f 14 -FIXUPS: 56ac7 f a 1f 11 12 17 20 17 15 6a 55 39 2f a d 4e3 19 e8 d 1d 15 -FIXUPS: 572f6 1c 50 e e 6f 1e 40 67 1e 16 c7 56 5e 40 40 43 26 12 25 40 -FIXUPS: 57821 40 5 fffff00f 11 27cf 23 9d 2b 2d 27 31 94 24 10 157 23 2e -FIXUPS: 594b0 17 27 18 2d 79 a5 5 e d 13 d 13 d ffffd8f3 163 2c 58 15 16d4 -FIXUPS: 588a4 2a 31 32 124 43 a 5c a5 6 1f 6 19 6 54 6 1d 6 15 6 29 99 -FIXUPS: 58d78 15 144 19 6d 28 10 1f 5a ffffed6d b 154 7 b0 55 21 147 b -FIXUPS: 58237 29 77 11 22 1b 9b 16 12 b 72 20 5a 128 57 7e 21 17 1d 31 -FIXUPS: 587e7 3a 25 16ce 14 a5 15 45 1a 5 e d 13 d ffffd894 11 2f 11 2f -FIXUPS: 579a6 3c 80 68 65 41 26 d 4d 14 55 b8 15 22 b 10 1cec c f c f 8 -FIXUPS: 59a96 8 25 d 9 9 31 b b b 8 7 68 6b 20 16 34 44 42 49 100 b 14 -FIXUPS: 59eb7 2f a 1f67 ba 5 9e d 13 d 13 d 13 d ffffd6b4 20 11 2f 11 29 -FIXUPS: 59792 18 2b 27 9 2b 1d 9 d 18 38 9b 7 ea 7 200a f e 21 12 f e 1a -FIXUPS: 5bb17 26 e 34 11 e 79 e f 13 e 12 e c 2f 12 17 57 a 10 79 1b e -FIXUPS: 5be1a fffff27a 1c 36 18 14 31 2d 4b a 38 1c 44 2d 2a 2c 1b8 2d -FIXUPS: 5b581 cd 11e 2a 2b 6c 67 a 10 80 2b 2e 8e a 19 fffff130 15 d 12 -FIXUPS: 5abfc 61 1d 21 13 1e 1d 4c 2d 23 1f 1c 15 89 2f 1a 74 1e 20 15 -FIXUPS: 5af88 11 12 11 1a 3b 34 23 fffff628 c 34 15 15 6f e 14 23 44 1e -FIXUPS: 5a82b f 16 1f 15 d 19 15 45 24 48 14 b 5e 60 1d 43 26 4c 19 d fffff5f0 -FIXUPS: 5a146 2f 11 2f 11 2f 11 28 67 17 14 73 28 13 24 3f 11 13 10 18 -FIXUPS: 5a42c 20 28 2e 2b 13 68 41 48 4d 1f 4b6b 11 29 11 69 37 18 15 125 -FIXUPS: 5f3f2 6e 16 24 11 13 1d 1a 45 52 1b 28a 5 1c 12 d 13 d 13 d 13 -FIXUPS: 5f8d1 21 fffff2a9 4e 40 35 3a 18 5e 12 1f f 37 12 1f f 46 12 1f -FIXUPS: 5ee4b 37 12 1f f 30 12 1f f 95 18 c 19 e1 14 fffff364 3b 2d 90 -FIXUPS: 5e56e 16 d c4 9 f 5e 19 56 34 2e 1d 11 13 18 f 1d 189 d 13 d 17 -FIXUPS: 5ea0a 10 47 15 15 d0 ffffeced 75 fe dd fd d 18 e5 29 1c 88 26 20 -FIXUPS: 5de39 a2 2a0 2b 154 1b 11 13 18 f 20 11 11 d 2b 17 d 10 3c ffffe80e -FIXUPS: 5ccc9 16 3c 44 a6 45 13 6d 13 2d e ee 16 26 16 24 16 f7 37 1d 21 -FIXUPS: 5d237 5f c8 2f6 24 13b 4e 23 d c ffffe8f9 2f 11 2f 11 49 a 10 c0 -FIXUPS: 5c40b 15a 60 4e 3b 50 88 4d fa 9f 16 87 21 49 4e 6b 13 e 3d 16 -FIXUPS: 5cb5d 5e 24 4e09 26 11 12 13 1b 18e 31 50 18 21 e 8a 22 d d 13 -FIXUPS: 61d9b 5f 1f 1b 3d 5 9e d ffffa144 11 2f 11 2f 11 2f 52db 11 2a -FIXUPS: 6144c 2a 11 11 3b 11 2a 11 2a 11 29 11 2a 11 2a 11 2a 11 17 3d -FIXUPS: 616ba 11 2a 11 2e 11 2a 11 225 fffff620 69 11 2a 11 c 5f 11 2a -FIXUPS: 61131 20 1c 9 39 c 9 9 24 9 5b d 9 19 9 67 d 3b d c 48 28 11 fffff79f -FIXUPS: 60bc1 42 39 30 9 34 45 11 c 9 49 11 c 30 9 34 30 9 34 9 9 63 11 -FIXUPS: 60ee6 2a 41 11 c 9 39 c fffff7cb b 9 c b 9 c 51 11 c 9 31 19 21 -FIXUPS: 608ba c 45 5a 11 c 45 5a 11 c 5a 11 c 9 47 9 9 b fffff907 28 21 -FIXUPS: 60483 c 3f 28 55 11 c 9 39 c 8 10 9 9 b 6b 11 c 9 27 9 46 9 b 9 -FIXUPS: 6071a 1a 10 13 fffff8a9 11 e f 21 b b b 32 c 19 9 1a 22 e 18 6 -FIXUPS: 60143 8 97 25 11 c 44 9 62 9 5b 9 5b 9 58 fffff8d0 11 c 30 3b 11 -FIXUPS: 5fd71 13 2c 11 c 3b 11 c 2f 11 c 2a 9 e 2b 11 f 26 9 28 f 1a f -FIXUPS: 5ffa4 21 11 207b ffffff14 cc ffffd8e4 11 2c 40 20 24 a0 11 9 9 -FIXUPS: 5fae4 49 9 9 36 2a c 9 9 36 b e c 9 9 36 1d 1b e diff --git a/OBJ/WINS/BLDGHD.I b/OBJ/WINS/BLDGHD.I deleted file mode 100644 index 6dd76b19..00000000 --- a/OBJ/WINS/BLDGHD.I +++ /dev/null @@ -1,6533 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 11 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 17 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 23 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 26 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 31 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 32 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - -SET _dfmbmp = 0x00040000 SET _dfscr = 0x00040000 SET _dfanm = 0x00040000 SET _dffill = 0x00040000 SET _curgok = 0x00040000 SET _dfmask = 0x00040000 SET _dftile = 0x00040000 SET _dfwave = 0x00040000 SET _dfmidi = 0x00040000 SET _dfvid = 0x00040000 - - - -CHUNK( 'GLOP', 0, ) SCRIPT - - ::fInStudio = 0; - FilterCmdsGob(0x00010000, 50107, 0, 0xFFFFFFFF); - - kgobGoto = GetProp(0x23300); - - -; - ; - ; - - - EnqueueCid(50091, 0, 0,0,0,0); - - - - - 0x00010000->kstEntry = (GetProp(0x23302)); - RunScriptGob(0x00010000, 0x0021, kgobGoto, (0x00010000->kstEntry)); - - - - - FilterCmdsGob(0x00010000, 101, 0, 0x0026); - FilterCmdsGob(0x00010000, 100, 0, 0x0026); - FilterCmdsGob(0x00010000, 50110, 0, 0x0026); - - EndLongOp(1); - ; ; ; If (1); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 75 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\palette.cht" - - - - -CHUNK( 'GLCR', 0x00010000, ) PACK PALETTE "building\bitmaps\palette\socbase.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010001, ) PACK PALETTE "building\bitmaps\palette\imaginpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010002, ) PACK PALETTE "building\bitmaps\palette\ticketpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010003, ) PACK PALETTE "building\bitmaps\palette\lobbypl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010004, ) PACK PALETTE "building\bitmaps\palette\theatpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010005, ) PACK PALETTE "building\bitmaps\palette\bkstagpl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010006, ) PACK PALETTE "building\bitmaps\palette\insppl.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010008, ) PACK PALETTE "building\bitmaps\palette\projpal.bmp" ENDCHUNK -CHUNK( 'GLCR', 0x00010007, ) PACK PALETTE "building\bitmaps\palette\studiopl.bmp" ENDCHUNK - -CHUNK( 'GLCR', 0x00010009, ) PACK PALETTE "building\bitmaps\palette\streetpl.bmp" ENDCHUNK - -#line 81 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\navbars.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x00010108 CHUNK( 'GOKD', 0x00010108, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 400 - LONG 0 0 0xffffffff 0x00000005 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 50 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - plc = ::kgobCurrentPlace; - nxt = Match( plc, plc, - 0x00010600, 0x00010900, - 0x00010700, 0x00010800, - 0x00010900, 0x00010700, - 0x00010800, 0x00010600, - 0x00010d00, 0x00010c00, - 0x00010c00, 0x00010d00, - 0x00011000, 0x00011100, - 0x00011100, 0x00011000, - 0x00011800, 0x00011b00, - 0x00011900, 0x00011a00, - 0x00011a00, 0x00011800, - 0x00011b00, 0x00011900, - 0x00011400, 0x00011700, - 0x00011500, 0x00011600, - 0x00011600, 0x00011400, - 0x00011700, 0x00011500, - 0x00011c00, 0x00011f00, - 0x00011d00, 0x00011e00, - 0x00011e00, 0x00011c00, - 0x00011f00, 0x00011d00 - ); - ; - - Transition( 0, 0x05, 30, 0xffffffff, 0xFFFFFFFF ); - RunScriptGob(0x00010000, 0x0021, nxt, Match( nxt, 0x0001, 0x00010900, 0x0001, 0x00010800, 0x0001, 0x00010700, 0x0001, 0x00010600, 0x0002, 0x00010d00, 0x0001, 0x00010c00, 0x0004, 0x00011000, 0x0002, 0x00011100, 0x0001, 0x00011b00, 0x0001, 0x00011900, 0x0001, 0x00011800, 0x0001, 0x00011a00, 0x0001, 0x00011700, 0x0001, 0x00011500, 0x0001, 0x00011400, 0x0006, 0x00011600, 0x0001, 0x00010580, 0x0003, 0x00011f00, 0x0001, 0x00011d00, 0x0001, 0x00011c00, 0x0002, 0x00011e00, 0x0001 )); - -ENDCHUNK - -SET _curgok = 0x00010109 CHUNK( 'GOKD', 0x00010109, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 400 - LONG 0 0 0xffffffff 0x00000006 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 590 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - plc = ::kgobCurrentPlace; - nxt = Match( plc, plc, - 0x00010900, 0x00010600, - 0x00010800, 0x00010700, - 0x00010700, 0x00010900, - 0x00010600, 0x00010800, - 0x00010d00, 0x00010c00, - 0x00010c00, 0x00010d00 , - 0x00011000, 0x00011100, - 0x00011100, 0x00011000, - 0x00011b00, 0x00011800, - 0x00011900, 0x00011b00, - 0x00011800, 0x00011a00, - 0x00011a00, 0x00011900, - 0x00011700, 0x00011400, - 0x00011500, 0x00011700, - 0x00011400, 0x00011600, - 0x00011600, 0x00011500, - 0x00011f00, 0x00011c00, - 0x00011d00, 0x00011f00, - 0x00011c00, 0x00011e00, - 0x00011e00, 0x00011d00 - - ); - - ; - - Transition( 0, 0x00, 30, 0xffffffff, 0xFFFFFFFF ); - RunScriptGob(0x00010000, 0x0021, nxt, Match( nxt, 0x0001, 0x00010900, 0x0001, 0x00010800, 0x0001, 0x00010700, 0x0001, 0x00010600, 0x0002, 0x00010d00, 0x0001, 0x00010c00, 0x0004, 0x00011000, 0x0002, 0x00011100, 0x0001, 0x00011b00, 0x0001, 0x00011900, 0x0001, 0x00011800, 0x0001, 0x00011a00, 0x0001, 0x00011700, 0x0001, 0x00011500, 0x0001, 0x00011400, 0x0006, 0x00011600, 0x0001, 0x00010580, 0x0003, 0x00011f00, 0x0001, 0x00011d00, 0x0001, 0x00011c00, 0x0002, 0x00011e00, 0x0001 )); - -ENDCHUNK - -SET _curgok = 0x0001010a CHUNK( 'GOKD', 0x0001010a, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 430 400 - LONG 0 0 0xffffffff 0x00000009 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 50 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - plc = ::kgobCurrentPlace; - nxt = Match( plc, plc, - 0x00010900, 0x00010800, - 0x00010800, 0x00010900, - 0x00010700, 0x00010600, - 0x00010600, 0x00010700, - 0x00010c00, 0x00010d00, - 0x00010d00, 0x00010c00, - 0x00011000, 0x00011100, - 0x00011100, 0x00011000, - 0x00011800, 0x00011900, - 0x00011900, 0x00011800, - 0x00011a00, 0x00011b00, - 0x00011b00, 0x00011a00, - 0x00011400, 0x00011500, - 0x00011500, 0x00011400, - 0x00011600, 0x00011700, - 0x00011700, 0x00011600, - 0x00011c00, 0x00011d00, - 0x00011d00, 0x00011c00, - 0x00011e00, 0x00011f00, - 0x00011f00, 0x00011e00, - 0x00010580, 0x00010500 - - ); - - ; - Transition( 0, 0x0F, 30, 0xffffffff, 0xFFFFFFFF ); - RunScriptGob(0x00010000, 0x0021, nxt, Match( nxt, 0x0001, 0x00010900, 0x0001, 0x00010800, 0x0001, 0x00010700, 0x0001, 0x00010600, 0x0002, 0x00010d00, 0x0001, 0x00010c00, 0x0004, 0x00011000, 0x0002, 0x00011100, 0x0001, 0x00011b00, 0x0001, 0x00011900, 0x0001, 0x00011800, 0x0001, 0x00011a00, 0x0001, 0x00011700, 0x0001, 0x00011500, 0x0001, 0x00011400, 0x0006, 0x00011600, 0x0001, 0x00010580, 0x0003, 0x00011f00, 0x0001, 0x00011d00, 0x0001, 0x00011c00, 0x0002, 0x00011e00, 0x0001 )); - -ENDCHUNK - -#line 88 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\music.cht" - - - - -CHUNK( 'MIDS', 0x00010011, ) PACK MIDI "building\sound\backstag\bakstage.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010012, ) PACK MIDI "building\sound\ticket\boothjam.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010013, ) PACK MIDI "building\sound\imagin\closet.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010014, ) PACK MIDI "building\sound\imagin\coaster.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010015, ) PACK MIDI "building\sound\inspirat\ideas.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010016, ) PACK MIDI "building\sound\ticket\jamloop.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010017, ) PACK MIDI "building\sound\lobby\lobby.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010018, ) PACK MIDI "building\sound\projects\project.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x00010019, ) PACK MIDI "building\sound\snackbar\snack.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001a, ) PACK MIDI "building\sound\studio\studio.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001b, ) PACK MIDI "building\sound\login\tag.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001c, ) PACK MIDI "building\sound\theatre\theater.mid" ENDCHUNK; -CHUNK( 'MIDS', 0x0001001d, ) PACK MIDI "building\sound\imagin\coaster.mid" ENDCHUNK; -#line 89 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\portfol.cht" - - - -SET _curgok = 0x00010101 CHUNK( 'GOKD', 0x00010101, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 975 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - .kidCallObj = 0; - .chidCallScript = 0xFFFFFFFF; - - EnqueueCid(50080, 0, 1, 0, 1, 0); - - FilterCmdsThis(50082, 0, 0x0021); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT; - If(_parm[2] == 1); - - - RunScriptGob( 0x00010101->kidCallObj, 0x00010101->chidCallScript, 1 ); - Else; - RunScriptGob( 0x00010101->kidCallObj, 0x00010101->chidCallScript, 0 ); - End; - - DestroyGob( 0x00010101 ); - ENDCHUNK -#line 90 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\login.cht" - - - - -SET _curgok = 0x00010200 CHUNK( 'GOKD', 0x00010200, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\login\login.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010001); - 0x00010000->keys = ((0x00000002)); - 0x00010000->fTrans = (0); - CreateHelpThis( 0x00018542 ); - ENDCHUNK - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - If (_parm[2]); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - End; - ENDCHUNK - - -CHUNK( 'GLOP', 0x00018542, ) SCRIPT - If( _parm[0] == 0 ); - Exit(); - - Elif( _parm[0] == 1 ); - RunScriptGob(0x00010000, 0x0021, 0x00011800, 0x0002); - - Elif( _parm[0] == 2 ); - - - EnqueueCid(50080, 0, 1, 0, 0, 0); - - FilterCmdsGob( 0x00010200, 50082, 0, 0x0022); - - Elif( _parm[0] == 3 ); - RunScriptGob(0x00010000, 0x0021, 0x00010600, 0x0005); - - Elif( _parm[0] == 4 ); - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0005); - - Elif( _parm[0] == 5 ); - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0004); - - Elif( _parm[0] == 6 ); - RunScriptGob(0x00010000, 0x0021, 0x00010280, 0x0001); - - Elif( _parm[0] == 7 ); - EnqueueCid(106, 0, 0, 0, 0, 0);; - End; -ENDCHUNK - - - -#line 95 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\street.cht" - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x00010400 CHUNK( 'GOKD', 0x00010400, ) PACK SHORT BO OSK LONG 2 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\street\street1.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - 0x00010000->fTrans = (1); - RunScriptGob(0x00010000, 0x0027, 0x00010009); - Cell( 0x00000040, 0, 0, 60); - - SetColorTable( 0x00010009 ); - CreateChildThis( 0x00010401, 0x00010401 ); - Cell( 0x00000040, 0, 0, 30 ); - - - While( PlayingGob( 0x00010401 )); - Cell( 0x00000040, 0, 0, 30 ); - End; - RunScriptGob(0x00010000, 0x0021, 0x00010500, 0x0001); -ENDCHUNK - -SET _curgok = 0x00010401 CHUNK( 'GOKD', 0x00010401, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "mhole2.avi" ENDCHUNK -#line 100 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - - - - -SET _curgok = 0x00010500 CHUNK( 'GOKD', 0x00010500, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\ticket1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010002); - 0x00010000->keys = ((0x00000002)); - - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 1 ); - - CreateChildThis( 0x00010501, 0x00010501 ); - CreateChildThis( 0x00010502, 0x00010502 ); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010580, 0x0002); - ENDCHUNK - - - - - -SET _curgok = 0x00010580 CHUNK( 'GOKD', 0x00010580, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\ticket2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010002); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00010583, 0x00010583 ); - CreateChildThis( 0x00010581, 0x00010581 ); - CreateChildThis( 0x00010582, 0x00010582 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010586, 0x00010586 ); - ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x00010600 CHUNK( 'GOKD', 0x00010600, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\lobby\lobby1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - - .fExitLobby=0; - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010607, 0x00010607 ); - CreateChildThis( 0x00010603, 0x00010603 ); - CreateChildThis( 0x00010604, 0x00010604 ); - CreateChildThis( 0x00010608, 0x00010608 ); - CreateChildThis( 0x00010609, 0x00010609 ); - ENDCHUNK - - - - - - - - - - - - - - -SET _curgok = 0x00010700 CHUNK( 'GOKD', 0x00010700, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\lobby\lobby2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010703, 0x00010703 ); - CreateChildThis( 0x00010705, 0x00010705 ); - CreateChildThis( 0x00010704, 0x00010704 ); - ENDCHUNK - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\waiting.cht" - - - - - -SET _curgok = 0x00010900 CHUNK( 'GOKD', 0x00010900, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\waiting\waiting.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010706, 0x00010706 ); - CreateChildThis( 0x00010707, 0x00010707 ); - CreateChildThis( 0x00010708, 0x00010708 ); -ENDCHUNK - - - - -SET _curgok = 0x00010706 CHUNK( 'GOKD', 0x00010706, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby3m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((25 > 31) ? ( ::fBio2 & (1<<(25&31)) ) : ( ::fBio1 & (1<<(25&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (25 & 31); If (25 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 25; ::fBioCtrl = 0; CreateChildGob( 0x00010900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010707 CHUNK( 'GOKD', 0x00010707, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby3m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((26 > 31) ? ( ::fBio2 & (1<<(26&31)) ) : ( ::fBio1 & (1<<(26&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (26 & 31); If (26 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 26; ::fBioCtrl = 0; CreateChildGob( 0x00010900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010708 CHUNK( 'GOKD', 0x00010708, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby3m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((27 > 31) ? ( ::fBio2 & (1<<(27&31)) ) : ( ::fBio1 & (1<<(27&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (27 & 31); If (27 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 27; ::fBioCtrl = 0; CreateChildGob( 0x00010900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -#line 202 "H:\\BUILD\\SOC\\src\\building\\bldghd.cht" - - - - -SET _curgok = 0x00010800 CHUNK( 'GOKD', 0x00010800, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\snackbar\snackbr2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010003); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010017, 0 ); - CreateChildThis( 0x00010806, 0x00010806 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00010807, 0x00010807 ); - CreateChildThis( 0x00010808, 0x00010808 ); -ENDCHUNK - - - - - -SET _curgok = 0x00010c00 CHUNK( 'GOKD', 0x00010c00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\the1dark.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ; - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010c01, 0x00010c01 ); - CreateChildThis( 0x00010c02, 0x00010c02 ); - CreateChildThis( 0x00010c03, 0x00010c03 ); - ChangeStateThis(0x0002); - ENDCHUNK - - - - - - - - - - - - - - -SET _curgok = 0x00010d00 CHUNK( 'GOKD', 0x00010d00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010d01, 0x00010d01 ); - CreateChildThis( 0x00010d03, 0x00010d03 ); - CreateChildThis( 0x00010d02, 0x00010d02 ); - CreateChildThis( 0x00010d04, 0x00010d04 ); - CreateChildThis( 0x00010d05, 0x00010d05 ); - CreateChildThis( 0x00010d06, 0x00010d06 ); - ENDCHUNK - - - - - -SET _curgok = 0x00010e00 CHUNK( 'GOKD', 0x00010e00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre3.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - CreateChildThis( 0x00010e01, 0x00010e01 ); - CreateChildThis( 0x00010e02, 0x00010e02 ); - CreateChildThis( 0x00010e04, 0x00010e03 ); - CreateChildThis( 0x00010e03, 0x00010e04 ); - ENDCHUNK - - - - -SET _curgok = 0x00010f00 CHUNK( 'GOKD', 0x00010f00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\theatre4.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ; - ; - RunScriptGob(0x00010000, 0x0027, 0x00010004); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - - - - If ((0x00010000->kstEntry) == 0x0003); - .nxtPlcState = 0x0003; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - CreateChildThis( 0x00010f05, 0x00010f05 ); - Elif ((0x00010000->kstEntry) == 0x0004); - .nxtPlcState = 0x0006; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - CreateChildThis( 0x00010f05, 0x00010f05 ); - End; - - - CreateChildThis( 0x00010f01, 0x00010f01 ); - CreateChildThis( 0x00010f02, 0x00010f02 ); - CreateChildThis( 0x00010f04, 0x00010f03 ); - CreateChildThis( 0x00010f03, 0x00010f04 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, .nxtPlcState); - ENDCHUNK - - - - - - - - -SET _curgok = 0x00011000 CHUNK( 'GOKD', 0x00011000, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010005); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - - - - - - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00011001, 0x00011001 ); - CreateChildThis( 0x00011002, 0x00011002 ); - CreateChildThis( 0x00011003, 0x00011003 ); - CreateChildThis( 0x0001100a, 0x0001100a ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\backstag\backstg1.pbm" ENDCHUNK - - - - - - - - - - -SET _curgok = 0x00011100 CHUNK( 'GOKD', 0x00011100, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\backstag\backstg2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010005); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010011, 0 ); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00011104, 0x00011104 ); - CreateChildThis( 0x00011103, 0x00011103 ); - CreateChildThis( 0x00011106, 0x00011106 ); - CreateChildThis( 0x00011105, 0x00011105 ); - - CreateChildThis( 0x00011107, 0x00011107 ); - ENDCHUNK - - - - - - -SET _curgok = 0x00011103 CHUNK( 'GOKD', 0x00011103, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000005 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2ltdr2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0002); - ENDCHUNK - - -SET _curgok = 0x00011104 CHUNK( 'GOKD', 0x00011104, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000006 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2rtdr2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010e00, 0x0001); - ENDCHUNK - - -SET _curgok = 0x00011106 CHUNK( 'GOKD', 0x00011106, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - - -SET _curgok = 0x00011105 CHUNK( 'GOKD', 0x00011105, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bk2quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - -SET _curgok = 0x00011107 CHUNK( 'GOKD', 0x00011107, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\bkstg2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((40 > 31) ? ( ::fBio2 & (1<<(40&31)) ) : ( ::fBio1 & (1<<(40&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (40 & 31); If (40 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 40; ::fBioCtrl = 0; CreateChildGob( 0x00011100, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - - - -SET _curgok = 0x00011400 CHUNK( 'GOKD', 0x00011400, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob(0x00010000, 0x0027, 0x00010006); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011402, 0x00011402 ); - CreateChildThis( 0x00011403, 0x00011403 ); - CreateChildThis( 0x00011401, 0x00011401 ); - CreateChildThis( 0x00011404, 0x00011404 ); - - - - - - - 0x00010000->fBackstagePS = (0); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - - - ChangeStateGob(0x00011401, 0x0001); - ENDCHUNK - - - - -SET _curgok = 0x00011500 CHUNK( 'GOKD', 0x00011500, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010006); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011501, 0x00011501 ); - CreateChildThis( 0x00011503, 0x00011503 ); - CreateChildThis( 0x00011502, 0x00011502 ); - - CreateChildThis( 0x00011405, 0x00011405 ); -ENDCHUNK - - - - -SET _curgok = 0x00011600 CHUNK( 'GOKD', 0x00011600, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir3.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010006); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011406, 0x00011406 ); - CreateChildThis( 0x00011407, 0x00011407 ); - CreateChildThis( 0x00011408, 0x00011408 ); -ENDCHUNK - - - - -SET _curgok = 0x00011700 CHUNK( 'GOKD', 0x00011700, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\inspir4.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010006); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x0001140a, 0x0001140a ); - CreateChildThis( 0x0001140b, 0x0001140b ); - CreateChildThis( 0x0001140c, 0x0001140c ); - ENDCHUNK - - - - - - - -SET _curgok = 0x00011800 CHUNK( 'GOKD', 0x00011800, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio1b.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ; - - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011801, 0x00011801 ); - CreateChildThis( 0x00011802, 0x00011802 ); - CreateChildThis( 0x00011805, 0x00011805 ); - - - - - - - 0x00010000->fBackstagePS = (0); - - RunScriptThis(0x0020); - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - If ((0x00010000->kstEntry) == 0x0001); - - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - 0x00010000->fHelpOn = (0); - ChangeStateGob(0x00011802, 0x0002 ); - Else; - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - ChangeStateGob( 0x00011801, 0x0002 ); - End; -ENDCHUNK - - - - - - -SET _curgok = 0x00011900 CHUNK( 'GOKD', 0x00011900, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011901, 0x00011901 ); - CreateChildThis( 0x00011903, 0x00011903 ); - CreateChildThis( 0x00011904, 0x00011904); - CreateChildThis( 0x00011902, 0x00011902); - - CreateChildThis( 0x0001190c, 0x0001190c ); - CreateChildThis( 0x0001190d, 0x0001190d ); - CreateChildThis( 0x0001190e, 0x0001190e ); -ENDCHUNK - - - - - - -SET _curgok = 0x00011a00 CHUNK( 'GOKD', 0x00011a00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio3.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011909, 0x00011909 ); - CreateChildThis( 0x0001190a, 0x0001190a ); - CreateChildThis( 0x0001190b, 0x0001190b ); -ENDCHUNK - - - - - -SET _curgok = 0x00011b00 CHUNK( 'GOKD', 0x00011b00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\studio4.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010007); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011905, 0x00011905 ); - CreateChildThis( 0x00011906, 0x00011906 ); - CreateChildThis( 0x00011907, 0x00011907 ); - CreateChildThis( 0x00011908, 0x00011908 ); -ENDCHUNK - - - - - -SET _curgok = 0x00011c00 CHUNK( 'GOKD', 0x00011c00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project1.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - - - - - -; - - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - - CreateChildThis(0x00011b02, 0x00011b02); - CreateChildThis(0x00011b03, 0x00011b03); - CreateChildThis(0x00011c0d, 0x00011c0d ); - CreateChildThis(0x00011c0e, 0x00011c0e ); - CreateChildThis( 0x00011b07, 0x00011b07 ); - - - - CreateChildThis(0x00011b01, 0x00011b01); - - - - - - - 0x00010000->fBackstagePS = (0); - - - RunScriptThis(0x0020); - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - - enter = (0x00010000->kstEntry); - If( enter == 0x0004 ); - - EnqueueCid( 100008, 0x00011b02, 0,0,0,0 ); - Elif( enter == 0x0005 ); - - EnqueueCid( 100008, 0x00011b03, 0,0,0,0 ); - End; - - - - - - If ( enter != 0x0001 ); - 0x00010000->fHelpOn = (0); - End; - ChangeStateGob(0x00011b01, 0x0002); - -ENDCHUNK - - - - - - - -SET _curgok = 0x00011d00 CHUNK( 'GOKD', 0x00011d00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project2.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - CreateChildThis( 0x00011c01, 0x00011c01 ); - CreateChildThis( 0x00011c02, 0x00011c02 ); - CreateChildThis( 0x00011c03, 0x00011c03 ); - - CreateChildThis( 0x00011c04, 0x00011c04 ); - CreateChildThis( 0x00011c05, 0x00011c05 ); - CreateChildThis( 0x00011c06, 0x00011c06 ); - CreateChildThis( 0x00011c07, 0x00011c07 ); -ENDCHUNK - - - - - -SET _curgok = 0x00011e00 CHUNK( 'GOKD', 0x00011e00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project3.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); -ENDCHUNK - - - - - -SET _curgok = 0x00011f00 CHUNK( 'GOKD', 0x00011f00, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\projects\project4.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0027, 0x00010008); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildThis( 0x00010108, 0x00010108); - CreateChildThis( 0x0001010a, 0x0001010a ); - CreateChildThis( 0x00010109, 0x00010109 ); - - CreateChildThis( 0x00011c09, 0x00011c09 ); - CreateChildThis( 0x00011c0a, 0x00011c0a ); - CreateChildThis( 0x00011c0b, 0x00011c0b ); -ENDCHUNK - - -SET _curgok = 0x00010300 CHUNK( 'GOKD', 0x00010300, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x00010000->keys = ((0x00000002)); - RunScriptGob(0x00010000, 0x0027, 0x00010001); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00010301, 0x00010301 ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back2.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back3.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back4.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\imagin\back5.pbm" ENDCHUNK diff --git a/OBJ/WINS/BUILDING.I b/OBJ/WINS/BUILDING.I deleted file mode 100644 index 6a1c28f0..00000000 --- a/OBJ/WINS/BUILDING.I +++ /dev/null @@ -1,11411 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 22 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 28 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 34 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - - -SET _dfmbmp = 0x00030000 SET _dfscr = 0x00030000 SET _dfanm = 0x00030000 SET _dffill = 0x00030000 SET _curgok = 0x00030000 SET _dfmask = 0x00030000 SET _dftile = 0x00030000 SET _dfwave = 0x00030000 SET _dfmidi = 0x00030000 SET _dfvid = 0x00030000 - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 47 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 48 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 53 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 57 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\src\\building\\ticket.cht" - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018020, ) FILE "building\sound\ticket\TKTBTH.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801d, ) FILE "building\sound\ticket\TBCY2.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801f, ) FILE "building\sound\ticket\TBTH3.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001810f, ) FILE "building\sound\ticket\VO54.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018022, ) FILE "building\sound\ticket\VO56B.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018111, ) FILE "building\sound\ticket\tbfar.wav" ENDCHUNK - - - - - -SET _curgok = 0x00010501 CHUNK( 'GOKD', 0x00010501, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\ticket\tik1drs.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( GetProp(0x23510) && (0x00010000->fTicketPS) ); - 0x00010000->fTicketPS = (0); - RunScriptGob(0x00010000, 0x0021, 0x00010580, 0x0002); - Else; - RunScriptGob(0x00010000, 0x0021, 0x00010600, 0x0003); - End; - ENDCHUNK - - - - - -SET _curgok = 0x00010502 CHUNK( 'GOKD', 0x00010502, ) SHORT BO OSK LONG 2 LONG 0 0 0 15 LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018111, 0, 0x00010000, 1, 0, 998); - i = 5; - While( --i ); - cnt = 0x00000040; - While( cnt <= 0x00000055 ); - Cell( cnt++, 0, 0, 6 ); - End; - End; - RunScriptGob(0x00010000, 0x0021, 0x00010580, 0x0002); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\ticket1.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\ticket\tbth1_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\ticket\tbth1_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\ticket\tbth1_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\ticket\tbth1_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\ticket\tbth1_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\ticket\tbth1_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\ticket\tbth1_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\ticket\tbth1_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\ticket\tbth1_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\ticket\tbth1_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\ticket\tbth1_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\ticket\tbth1_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\ticket\tbth1_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\ticket\tbth1_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\ticket\tbth1_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\ticket\tbth1_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\ticket\tbth1_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\ticket\tbth1_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\ticket\tbth1_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\ticket\tbth1_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\ticket\tbth1_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\ticket\tbth1_22.pbm" ENDCHUNK -#line 59 "H:\\BUILD\\SOC\\src\\building\\ticket.cht" - - - - -SET _curgok = 0x00010582 CHUNK( 'GOKD', 0x00010582, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 155 97 236 158 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - - - - -SET _curgok = 0x00010581 CHUNK( 'GOKD', 0x00010581, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 173 31 223 61 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - - -SET _curgok = 0x00010583 CHUNK( 'GOKD', 0x00010583, ) SHORT BO OSK LONG 0 LONG 0 0 0 20 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ; - - .fWay = 0; - ChangeStateThis((0x00010000->kstEntry)); - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x00000040, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x00010587, 0x00010587 ); - Cell( 0x00000040,0,0, 100 ); - - - While( PlayingGob( 0x00010587 )); - Cell( 0x00000040, 0, 0, 10 ); - End; - DestroyGob( 0x00010587 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0003 ); - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x0000016c, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x00010588, 0x00010588 ); - Cell( 0x0000016c,0,0, 100 ); - - - While( PlayingGob( 0x00010588 )); - Cell( 0x0000016c, 0, 0, 10 ); - End; - DestroyGob( 0x00010588 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - CreateChildGob( 0x00010580, 0x00010584, 0x00010584 ); - CreateChildGob( 0x00010580, 0x00010585, 0x00010585 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell( 0x0000016c, 0,0,1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( !FGobExists( 0x00010584 ) ); - CreateChildGob( 0x00010580, 0x00010584, 0x00010584 ); - End; - - If( !FGobExists( 0x00010585 ) ); - CreateChildGob( 0x00010580, 0x00010585, 0x00010585 ); - End; - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00010580, 0x00018548 ); - Elif( (0x00010000->fTic1stHelp) ); - - 0x00010000->fTic1stHelp = (0); - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010580, 0x00018548 ); - End; - - - While( 1 ); - cnt=0x000001cf; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001801d, 0, 0x00010000, 1, 0, 998); - While( cnt <= 0x000001f7 ); - Cell( cnt++, 0, 0, 6); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - ; - - SetZThis( 900 ); - cnt=0x00000266; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001810f, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x00000280 ); - Cell( cnt++, 0, 0, 6 ); - End; - - CreateChildGob( 0x00010583, 0x00010101, 0x00010101 ); - 0x00010101->kidCallObj = 0x00010583; - 0x00010101->chidCallScript = 0x0021; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - ; - - cnt=0x0000027f; - While( cnt >= 0x00000266 ); - Cell( cnt--, 0, 0, 6 ); - End; - - If( .fWay ); - ; - 0x00010000->fMovie = (1); - RunScriptGob(0x00010000, 0x0021, 0x00010600, 0x0003); - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - SetZThis( 20 ); - ChangeStateThis( 0x0004 ); - End; - ENDCHUNK; - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - ; - - If( FGobExists( 0x00016007 ) ); - DestroyGob( 0x00016007 ); - End; - - SetZThis( 50 ); - - cnt = 0x00000234; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018022, 0, 0x00010000, 1, 0, 998); - While( cnt <= 0x0000024e ); - Cell( cnt++, 0,0, 6 ); - If( cnt == 0x0000023e ); - DestroyGob( 0x00010585 ); - End; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - 0x00010000->fTrans = (0); - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x000A); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( StateThis() != 0x0004 ); - ChangeStateThis( 0x0004 ); - 0x00010000->fHelpOn = (1); - Elif( (0x00010000->fHelpOn) ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - Else; - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010580, 0x00018548 ); - End; - ENDCHUNK - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If( _parm[0] == 0 ); - .fWay = 0; - Else; - .fWay = 1; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateThis( 0x0006 ); - ENDCHUNK - - - #line 1 "H:\\BUILD\\SOC\\src\\building\\ticket.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\ticket\mczee1.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\ticket\tkmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\ticket\tkmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\ticket\tkmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\ticket\tkmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\ticket\tkmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\ticket\tkmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\ticket\tkmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\ticket\tkmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\ticket\tkmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\ticket\tkmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\ticket\tkmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\ticket\tkmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\ticket\tkmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\ticket\tkmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\ticket\tkmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\ticket\tkmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\ticket\tkmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\ticket\tkmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\ticket\tkmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\ticket\tkmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\ticket\tkmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\ticket\tkmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\ticket\tkmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\ticket\tkmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\ticket\tkmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\ticket\tkmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000186 ) PACKEDFILE "building\pbm\ticket\tkmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000187 ) PACKEDFILE "building\pbm\ticket\tkmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000188 ) PACKEDFILE "building\pbm\ticket\tkmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000189 ) PACKEDFILE "building\pbm\ticket\tkmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018a ) PACKEDFILE "building\pbm\ticket\tkmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018b ) PACKEDFILE "building\pbm\ticket\tkmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018c ) PACKEDFILE "building\pbm\ticket\tkmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018d ) PACKEDFILE "building\pbm\ticket\tkmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018e ) PACKEDFILE "building\pbm\ticket\tkmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018f ) PACKEDFILE "building\pbm\ticket\tkmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000190 ) PACKEDFILE "building\pbm\ticket\tkmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000191 ) PACKEDFILE "building\pbm\ticket\tkmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000192 ) PACKEDFILE "building\pbm\ticket\tkmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000193 ) PACKEDFILE "building\pbm\ticket\tkmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000194 ) PACKEDFILE "building\pbm\ticket\tkmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000195 ) PACKEDFILE "building\pbm\ticket\tkmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000196 ) PACKEDFILE "building\pbm\ticket\tkmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000197 ) PACKEDFILE "building\pbm\ticket\tkmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000198 ) PACKEDFILE "building\pbm\ticket\tkmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000199 ) PACKEDFILE "building\pbm\ticket\tkmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019a ) PACKEDFILE "building\pbm\ticket\tkmz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019b ) PACKEDFILE "building\pbm\ticket\tkmz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019c ) PACKEDFILE "building\pbm\ticket\tkmz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\ticket\tkmz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\ticket\tkmz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\ticket\tkmz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\ticket\tkmz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\ticket\tkmz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\ticket\tkmz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\ticket\tkmz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\ticket\tkmz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\ticket\tkmz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\ticket\tkmz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\ticket\tkmz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\ticket\tkmz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\ticket\tkmz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\ticket\tkmz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\ticket\tkmz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\ticket\tkmz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\ticket\tkmz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\ticket\tkmz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\ticket\tkmz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\ticket\tkmz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\ticket\tkmz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b2 ) PACKEDFILE "building\pbm\ticket\tkmz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b3 ) PACKEDFILE "building\pbm\ticket\tkmz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b4 ) PACKEDFILE "building\pbm\ticket\tkmz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b5 ) PACKEDFILE "building\pbm\ticket\tkmz74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b6 ) PACKEDFILE "building\pbm\ticket\tkmz75.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\ticket\tkwait1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\ticket\tkwait2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\ticket\tkwait3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\ticket\tkwait4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\ticket\tkwait5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\ticket\tkwait6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\ticket\tkwait7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\ticket\tkwait8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\ticket\tkwait9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\ticket\tkwait10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\ticket\tkwait11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\ticket\tkwait12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\ticket\tkwait13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\ticket\tkwait14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\ticket\tkwait15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\ticket\tkwait16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\ticket\tkwait17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\ticket\tkwait18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\ticket\tkwait19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\ticket\tkwait20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e4 ) PACKEDFILE "building\pbm\ticket\tkwait21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e5 ) PACKEDFILE "building\pbm\ticket\tkwait22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e6 ) PACKEDFILE "building\pbm\ticket\tkwait23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e7 ) PACKEDFILE "building\pbm\ticket\tkwait24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e8 ) PACKEDFILE "building\pbm\ticket\tkwait25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e9 ) PACKEDFILE "building\pbm\ticket\tkwait26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ea ) PACKEDFILE "building\pbm\ticket\tkwait27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001eb ) PACKEDFILE "building\pbm\ticket\tkwait28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ec ) PACKEDFILE "building\pbm\ticket\tkwait29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ed ) PACKEDFILE "building\pbm\ticket\tkwait30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ee ) PACKEDFILE "building\pbm\ticket\tkwait31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ef ) PACKEDFILE "building\pbm\ticket\tkwait32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f0 ) PACKEDFILE "building\pbm\ticket\tkwait33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f1 ) PACKEDFILE "building\pbm\ticket\tkwait34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f2 ) PACKEDFILE "building\pbm\ticket\tkwait35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f3 ) PACKEDFILE "building\pbm\ticket\tkwait36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f4 ) PACKEDFILE "building\pbm\ticket\tkwait37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f5 ) PACKEDFILE "building\pbm\ticket\tkwait38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f6 ) PACKEDFILE "building\pbm\ticket\tkwait39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001f7 ) PACKEDFILE "building\pbm\ticket\tkwait40.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000234 ) PACKEDFILE "building\pbm\ticket\tbth5_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000235 ) PACKEDFILE "building\pbm\ticket\tbth5_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000236 ) PACKEDFILE "building\pbm\ticket\tbth5_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000237 ) PACKEDFILE "building\pbm\ticket\tbth5_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000238 ) PACKEDFILE "building\pbm\ticket\tbth5_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000239 ) PACKEDFILE "building\pbm\ticket\tbth5_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023a ) PACKEDFILE "building\pbm\ticket\tbth5_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023b ) PACKEDFILE "building\pbm\ticket\tbth5_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023c ) PACKEDFILE "building\pbm\ticket\tbth5_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023d ) PACKEDFILE "building\pbm\ticket\tbth5_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023e ) PACKEDFILE "building\pbm\ticket\tbth5_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023f ) PACKEDFILE "building\pbm\ticket\tbth5_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000240 ) PACKEDFILE "building\pbm\ticket\tbth5_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000241 ) PACKEDFILE "building\pbm\ticket\tbth5_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000242 ) PACKEDFILE "building\pbm\ticket\tbth5_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000243 ) PACKEDFILE "building\pbm\ticket\tbth5_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000244 ) PACKEDFILE "building\pbm\ticket\tbth5_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000245 ) PACKEDFILE "building\pbm\ticket\tbth5_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000246 ) PACKEDFILE "building\pbm\ticket\tbth5_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000247 ) PACKEDFILE "building\pbm\ticket\tbth5_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000248 ) PACKEDFILE "building\pbm\ticket\tbth5_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000249 ) PACKEDFILE "building\pbm\ticket\tbth5_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024a ) PACKEDFILE "building\pbm\ticket\tbth5_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024b ) PACKEDFILE "building\pbm\ticket\tbth5_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024c ) PACKEDFILE "building\pbm\ticket\tbth5_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024d ) PACKEDFILE "building\pbm\ticket\tbth5_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000024e ) PACKEDFILE "building\pbm\ticket\tbth5_27.pbm" ENDCHUNK - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000266 ) PACKEDFILE "building\pbm\ticket\tbth4_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000267 ) PACKEDFILE "building\pbm\ticket\tbth4_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000268 ) PACKEDFILE "building\pbm\ticket\tbth4_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000269 ) PACKEDFILE "building\pbm\ticket\tbth4_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026a ) PACKEDFILE "building\pbm\ticket\tbth4_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026b ) PACKEDFILE "building\pbm\ticket\tbth4_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026c ) PACKEDFILE "building\pbm\ticket\tbth4_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026d ) PACKEDFILE "building\pbm\ticket\tbth4_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026e ) PACKEDFILE "building\pbm\ticket\tbth4_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000026f ) PACKEDFILE "building\pbm\ticket\tbth4_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000270 ) PACKEDFILE "building\pbm\ticket\tbth4_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000271 ) PACKEDFILE "building\pbm\ticket\tbth4_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000272 ) PACKEDFILE "building\pbm\ticket\tbth4_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000273 ) PACKEDFILE "building\pbm\ticket\tbth4_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000274 ) PACKEDFILE "building\pbm\ticket\tbth4_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000275 ) PACKEDFILE "building\pbm\ticket\tbth4_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000276 ) PACKEDFILE "building\pbm\ticket\tbth4_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000277 ) PACKEDFILE "building\pbm\ticket\tbth4_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000278 ) PACKEDFILE "building\pbm\ticket\tbth4_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000279 ) PACKEDFILE "building\pbm\ticket\tbth4_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027a ) PACKEDFILE "building\pbm\ticket\tbth4_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027b ) PACKEDFILE "building\pbm\ticket\tbth4_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027c ) PACKEDFILE "building\pbm\ticket\tbth4_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027d ) PACKEDFILE "building\pbm\ticket\tbth4_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027e ) PACKEDFILE "building\pbm\ticket\tbth4_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000027f ) PACKEDFILE "building\pbm\ticket\tbth4_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000280 ) PACKEDFILE "building\pbm\ticket\tbth4_27.pbm" ENDCHUNK -#line 257 "H:\\BUILD\\SOC\\src\\building\\ticket.cht" - - - -SET _curgok = 0x00010587 CHUNK( 'GOKD', 0x00010587, ) SHORT BO OSK LONG 0 LONG 0 132 18 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "ticket1.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - StopThis(); - ENDCHUNK - -SET _curgok = 0x00010588 CHUNK( 'GOKD', 0x00010588, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "ticket2.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - StopThis(); - ENDCHUNK - - - - - - -CHUNK( 'GLOP', 0x00018548, ) SCRIPT - If( _parm[0] == 2 ); - ChangeStateGob( 0x00010583, 0x0005 ); - Elif( _parm[0] == 1 ); - ChangeStateGob( 0x00010583, 0x0007 ); - End; -ENDCHUNK - - - - -SET _curgok = 0x00010584 CHUNK( 'GOKD', 0x00010584, ) SHORT BO OSK LONG 0 LONG 0 0 0 30 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\tik2cans.pbm" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ChangeStateGob( 0x00010583, 0x0005 ); - ENDCHUNK - - - - - -SET _curgok = 0x00010585 CHUNK( 'GOKD', 0x00010585, ) SHORT BO OSK LONG 0 LONG 0 0 0 30 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\ticket\tik2cam.pbm" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateGob( 0x00010583, 0x0007 ); - ENDCHUNK - - - - - -SET _curgok = 0x00010586 CHUNK( 'GOKD', 0x00010586, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\ticket\tic1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((24 > 31) ? ( ::fBio2 & (1<<(24&31)) ) : ( ::fBio1 & (1<<(24&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (24 & 31); If (24 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 24; ::fBioCtrl = 0; CreateChildGob( 0x00010580, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 63 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\imagin.cht" - - - - - -SET _curgok = 0x00010280 CHUNK( 'GOKD', 0x00010280, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x00010000->keys = ((0x00000002)); - RunScriptGob(0x00010000, 0x0027, 0x00010001); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00010302, 0x00010302 ); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - - Cell( 0x00000040, 0,0, 1 ); - While( PlayingGob( 0x00010302 )); - Cell( 0x00000040, 0, 0, 10 ); - End; - RunScriptGob(0x00010000, 0x0021, 0x00010300, 0x0001); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\imagin\closet2.pbm" ENDCHUNK - - - - - -SET _curgok = 0x00010302 CHUNK( 'GOKD', 0x00010302, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "logn1.avi" ENDCHUNK - - - -CHUNK( 'WAVE', 0x00018110, ) FILE "building\sound\imagin\rllrcstr.wav" ENDCHUNK - - -SET _curgok = 0x00010301 CHUNK( 'GOKD', 0x00010301, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - cnt = 0x00000040; - Cell( cnt++, 0,0, 1 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018110, 0, 0x00010000, 1, 0, 998); - SetNoSlipThis( 1 ); - While( cnt < 0x000000a3 ); - - - If( cnt == 0x00000059 ); - ChangeStateGob( 0x00010300, 0x0002 ); - Elif( cnt == 0x00000067 ); - ChangeStateGob( 0x00010300, 0x0003 ); - Elif( cnt == 0x00000077 ); - ChangeStateGob( 0x00010300, 0x0004 ); - Elif( cnt == 0x0000007e ); - ChangeStateGob( 0x00010300, 0x0005 ); - End; - Cell( cnt, 0,0, 6 ); - ++cnt; - End; - RunScriptGob(0x00010000, 0x0021, 0x00010400, 0x0001); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzroller.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\imagin\cell1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\imagin\cell2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\imagin\cell3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\imagin\cell4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\imagin\cell5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\imagin\cell6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\imagin\cell7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\imagin\cell8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\imagin\cell9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\imagin\cell10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\imagin\cell11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\imagin\cell12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\imagin\cell13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\imagin\cell14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\imagin\cell15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\imagin\cell16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\imagin\cell17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\imagin\cell18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\imagin\cell19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\imagin\cell20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\imagin\cell21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\imagin\cell22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\imagin\cell23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\imagin\cell24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\imagin\cell25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\imagin\cell26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\imagin\cell27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\imagin\cell28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\imagin\cell29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\imagin\cell30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\imagin\cell31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\imagin\cell32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\imagin\cell33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\imagin\cell34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\imagin\cell35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\imagin\cell36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\imagin\cell37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\imagin\cell38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\imagin\cell39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\imagin\cell40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\imagin\cell41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\imagin\cell42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\imagin\cell43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\imagin\cell44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\imagin\cell45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\imagin\cell46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\imagin\cell47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\imagin\cell48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\imagin\cell49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\imagin\cell50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\imagin\cell51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\imagin\cell52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\imagin\cell53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\imagin\cell54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\imagin\cell55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\imagin\cell56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\imagin\cell57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\imagin\cell58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\imagin\cell59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\imagin\cell60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\imagin\cell61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\imagin\cell62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\imagin\cell63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\imagin\cell64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\imagin\cell65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\imagin\cell66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\imagin\cell67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\imagin\cell68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\imagin\cell69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\imagin\cell70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\imagin\cell71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\imagin\cell72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\imagin\cell73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\imagin\cell74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\imagin\cell75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\imagin\cell76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\imagin\cell77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\imagin\cell78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\imagin\cell79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\imagin\cell80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\imagin\cell81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\imagin\cell82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\imagin\cell83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\imagin\cell84.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\imagin\cell85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\imagin\cell86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\imagin\cell87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\imagin\cell88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\imagin\cell89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\imagin\cell90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\imagin\cell91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\imagin\cell92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\imagin\cell93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\imagin\cell94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\imagin\cell95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\imagin\cell96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\imagin\cell97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\imagin\cell98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\imagin\cell99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\imagin\cell100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\imagin\cell101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\imagin\cell102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\imagin\cell103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\imagin\cell104.pbm" ENDCHUNK - -#line 61 "H:\\BUILD\\SOC\\src\\building\\imagin.cht" -#line 64 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\lobby.cht" - - - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00010003, ) FILE "building\sound\lobby\bingo.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018015, ) FILE "building\sound\lobby\04_logn3.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018023, ) FILE "building\sound\lobby\VO57A.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001803c, ) FILE "building\sound\lobby\VO57aa.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018024, ) FILE "building\sound\lobby\VO58.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018025, ) FILE "building\sound\lobby\VO59.wav" ENDCHUNK - - - -SET _curgok = 0x00010608 CHUNK( 'GOKD', 0x00010608, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - -; - - fFirstLoop = 1; - - - - - - .f1sthelp=1; - .fLipsink = 0; - - If( (0x00010000->fLobby1PS) && (0x00010000->kstEntry) == 0x0002 ); - ChangeStateThis( 0x0003 ); - Else; - ChangeStateThis((0x00010000->kstEntry)); - End; - ENDCHUNK - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - Cell( 0x000000f7, 0,0, 6); - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00010600, 0x00018551 ); - Elif( (0x00010000->fLob1stHelp) ); - 0x00010000->fLob1stHelp = (0); - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010600, 0x00018551 ); - End; - - fFirstLoop = 1; - While( !0x00010600->fExitLobby ); - - - - - - - - - - - - - - - - - If( !fFirstLoop ); - If( .fLipsink ); - .fLipsink = 0; - cnt = 0x000001d0; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018025, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x000001e6 ); - Cell( cnt++, 0, 0, 6); - End; - Cell( 0x000000f3, 0, 0, 7); - Cell( 0x000000f4, 0, 0, 8); - Cell( 0x000000f5, 0, 0, 8); - Cell( 0x000000f6, 0, 0, 7); - Else; - cnt = 0x00000105; - While( cnt > 0x000000f7 ); - Cell( cnt--, 0, 0, 6); - End; - End; - End; - fFirstLoop = 0; - - cnt = 0x000000f7; - While( cnt < 0x00000107 ); - Cell( cnt++, 0, 0, 6); - End; - - - If( !0x00010600->fExitLobby ); - - If( Rnd(100) < 20 ); - While( cnt < 0x00000119 ); - Cell( cnt++, 0, 0, 6); - End; - - - - - - If( !0x00010600->fExitLobby ); - Cell( 0x0000010a, 0, 0, 6); - End; - End; - Else; - Cell( 0x0000010a, 0, 0, 6); - Cell( 0x00000044, 0, 0, 6); - Cell( 0x00000118, 0, 0, 6); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - - - ChangeStateThis( 0x0006 ); - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - If( !(0x00010000->fLobby1PS) ); - ; - If( (0x00010000->fMovie) ); - ; - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x000000f1, 0,0, 6); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - cnt = 0x000000f1; - While( cnt < 0x00000119 ); - Cell( cnt++, 0,0, 6); - End; - - ChangeStateThis( 0x0006 ); - Else; - ChangeStateThis( 0x0002 ); - End; - Else; - 0x00010000->fLobby1PS = (0); - If( (0x00010000->fMovie) ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - End; - cnt = 0x00000049; - Cell( 0x00000049, 0,0, 6); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - While( cnt < 0x000000b4 ); - If( cnt == 0x0000005e ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018023, 0, 0x00010000, 1, 0, 998); - Elif( cnt == 0x00000078 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001803c, 0, 0x00010000, 1, 0, 998); - End; - Cell( cnt++, 0,0, 6); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - If( (0x00010000->fMovie) ); - - cnt = 0x00000109; - While( cnt < 0x00000119 ); - Cell( cnt++, 0,0, 6); - End; - - ChangeStateThis( 0x0006 ); - Else; - ChangeStateThis( 0x0004 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - cnt = 0x000000b4; - Cell( 0x000000b4, 0,0, 1); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018024, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x000000f7 ); - Cell( cnt++, 0,0, 6); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - ChangeStateThis( 0x0002 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - Cell( 0x0000016d, 0, 0, 1); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00010600, 0x0001060a, 0x0001060a ); - - - Cell( 0x0000016d, 0,0, 100 ); - While( PlayingGob( 0x0001060a )); - Cell( 0x0000016d, 0, 0, 10 ); - End; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0007); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - cnt = 0x0000011a; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( cnt < 0x00000143 ); - Cell( cnt++, 0,0, 6); - End; - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0005); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ; - If( StateThis() != 0x0002 ); - ChangeStateThis( 0x0002 ); - 0x00010000->fHelpOn = (1); - Elif( (0x00010000->fHelpOn) ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - Else; - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00010600, 0x00018551 ); - End; - ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\lobby\fork217.pbm" ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzlobby.seq" - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\lobby\l1mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\lobby\l1mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\lobby\l1mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\lobby\l1mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\lobby\l1mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\lobby\l1mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\lobby\l1mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\lobby\l1mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\lobby\l1mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\lobby\l1mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\lobby\l1mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\lobby\l1mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\lobby\l1mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\lobby\l1mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\lobby\l1mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\lobby\l1mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\lobby\l1mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\lobby\l1mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\lobby\l1mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\lobby\l1mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\lobby\l1mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\lobby\l1mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\lobby\l1mz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\lobby\l1mz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\lobby\l1mz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\lobby\l1mz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\lobby\l1mz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\lobby\l1mz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\lobby\l1mz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\lobby\l1mz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\lobby\l1mz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\lobby\l1mz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\lobby\l1mz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\lobby\l1mz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\lobby\l1mz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\lobby\l1mz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\lobby\l1mz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\lobby\l1mz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\lobby\l1mz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\lobby\l1mz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\lobby\l1mz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\lobby\l1mz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\lobby\l1mz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\lobby\l1mz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\lobby\l1mz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\lobby\l1mz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\lobby\l1mz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\lobby\l1mz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\lobby\l1mz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\lobby\l1mz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\lobby\l1mz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\lobby\l1mz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\lobby\l1mz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\lobby\l1mz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\lobby\l1mz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\lobby\l1mz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\lobby\l1mz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\lobby\l1mz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\lobby\l1mz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\lobby\l1mz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\lobby\l1mz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\lobby\l1mz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\lobby\l1mz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\lobby\l1mz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\lobby\l1mz74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\lobby\l1mz75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\lobby\l1mz76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\lobby\l1mz77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\lobby\l1mz78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\lobby\l1mz79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\lobby\l1mz80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\lobby\l1mz81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\lobby\l1mz82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\lobby\l1mz83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\lobby\l1mz84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\lobby\l1mz85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\lobby\l1mz86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\lobby\l1mz87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\lobby\l1mz88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\lobby\l1mz89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\lobby\l1mz90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\lobby\l1mz91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\lobby\l1mz92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\lobby\l1mz93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\lobby\l1mz94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\lobby\l1mz95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\lobby\l1mz96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\lobby\l1mz97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\lobby\l1mz98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\lobby\l1mz99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\lobby\l1mz100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\lobby\l1mz101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\lobby\l1mz102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\lobby\l1mz103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\lobby\l1mz104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\lobby\l1mz105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\lobby\l1mz106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\lobby\l1mz107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\lobby\l1mz108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\lobby\l1mz109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\lobby\l1mz110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\lobby\l1mz111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\lobby\l1mz112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\lobby\l1mz113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\lobby\l1mz114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\lobby\l1mz115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\lobby\l1mz116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\lobby\l1mz117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\lobby\l1mz118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\lobby\l1mz119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\lobby\l1mz120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\lobby\l1mz121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\lobby\l1mz122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\lobby\l1mz123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\lobby\l1mz124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\lobby\l1mz125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\lobby\l1mz126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\lobby\l1mz127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\lobby\l1mz128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\lobby\l1mz129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\lobby\l1mz130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\lobby\l1mz131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\lobby\l1mz132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\lobby\l1mz133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\lobby\l1mz134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\lobby\l1mz135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\lobby\l1mz136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\lobby\l1mz137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\lobby\l1mz138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\lobby\l1mz139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\lobby\l1mz140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\lobby\l1mz141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\lobby\l1mz142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\lobby\l1mz143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\lobby\l1mz144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\lobby\l1mz145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\lobby\l1mz146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\lobby\l1mz147.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\lobby\l1mz148.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\lobby\l1mz149.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\lobby\l1mz150.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\lobby\l1mz151.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\lobby\l1mz152.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\lobby\l1mz153.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\lobby\l1mz154.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\lobby\l1mz155.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\lobby\l1mz156.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\lobby\l1mz157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\lobby\l1mz158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\lobby\l1mz159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\lobby\l1mz160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\lobby\l1mz161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\lobby\l1mz162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\lobby\l1mz163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\lobby\l1mz164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\lobby\l1mz165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\lobby\l1mz166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\lobby\l1mz167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\lobby\l1mz168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\lobby\l1mz169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e9 ) PACKEDFILE "building\pbm\lobby\l1mz170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ea ) PACKEDFILE "building\pbm\lobby\l1mz171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000eb ) PACKEDFILE "building\pbm\lobby\l1mz172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ec ) PACKEDFILE "building\pbm\lobby\l1mz173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ed ) PACKEDFILE "building\pbm\lobby\l1mz174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ee ) PACKEDFILE "building\pbm\lobby\l1mz175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ef ) PACKEDFILE "building\pbm\lobby\l1mz176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f0 ) PACKEDFILE "building\pbm\lobby\l1mz177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f1 ) PACKEDFILE "building\pbm\lobby\l1mz178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f2 ) PACKEDFILE "building\pbm\lobby\l1mz179.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f3 ) PACKEDFILE "building\pbm\lobby\l1mz180.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\lobby\l1mz181.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\lobby\l1mz182.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\lobby\l1mz183.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f7 ) PACKEDFILE "building\pbm\lobby\l1mz184.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f8 ) PACKEDFILE "building\pbm\lobby\l1mz185.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f9 ) PACKEDFILE "building\pbm\lobby\l1mz186.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fa ) PACKEDFILE "building\pbm\lobby\l1mz187.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fb ) PACKEDFILE "building\pbm\lobby\l1mz188.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fc ) PACKEDFILE "building\pbm\lobby\l1mz189.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fd ) PACKEDFILE "building\pbm\lobby\l1mz190.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fe ) PACKEDFILE "building\pbm\lobby\l1mz191.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ff ) PACKEDFILE "building\pbm\lobby\l1mz192.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000100 ) PACKEDFILE "building\pbm\lobby\l1mz193.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000101 ) PACKEDFILE "building\pbm\lobby\l1mz194.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000102 ) PACKEDFILE "building\pbm\lobby\l1mz195.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000103 ) PACKEDFILE "building\pbm\lobby\l1mz196.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000104 ) PACKEDFILE "building\pbm\lobby\l1mz197.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000105 ) PACKEDFILE "building\pbm\lobby\l1mz198.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000106 ) PACKEDFILE "building\pbm\lobby\l1mz199.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000107 ) PACKEDFILE "building\pbm\lobby\l1mz200.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\lobby\l1mz201.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\lobby\l1mz202.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\lobby\l1mz203.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\lobby\l1mz204.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\lobby\l1mz205.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\lobby\l1mz206.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\lobby\l1mz207.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\lobby\l1mz208.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\lobby\l1mz209.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\lobby\l1mz210.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\lobby\l1mz211.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\lobby\l1mz212.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\lobby\l1mz213.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\lobby\l1mz214.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\lobby\l1mz215.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\lobby\l1mz216.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\lobby\l1mz217.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\lobby\l1mz218.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\lobby\l1mz219.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\lobby\l1mz220.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011c ) PACKEDFILE "building\pbm\lobby\l1mz221.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011d ) PACKEDFILE "building\pbm\lobby\l1mz222.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011e ) PACKEDFILE "building\pbm\lobby\l1mz223.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011f ) PACKEDFILE "building\pbm\lobby\l1mz224.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000120 ) PACKEDFILE "building\pbm\lobby\l1mz225.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000121 ) PACKEDFILE "building\pbm\lobby\l1mz226.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000122 ) PACKEDFILE "building\pbm\lobby\l1mz227.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000123 ) PACKEDFILE "building\pbm\lobby\l1mz228.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000124 ) PACKEDFILE "building\pbm\lobby\l1mz229.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000125 ) PACKEDFILE "building\pbm\lobby\l1mz230.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000126 ) PACKEDFILE "building\pbm\lobby\l1mz231.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000127 ) PACKEDFILE "building\pbm\lobby\l1mz232.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000128 ) PACKEDFILE "building\pbm\lobby\l1mz233.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000129 ) PACKEDFILE "building\pbm\lobby\l1mz234.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012a ) PACKEDFILE "building\pbm\lobby\l1mz235.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012b ) PACKEDFILE "building\pbm\lobby\l1mz236.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012c ) PACKEDFILE "building\pbm\lobby\l1mz237.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012d ) PACKEDFILE "building\pbm\lobby\l1mz238.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012e ) PACKEDFILE "building\pbm\lobby\l1mz239.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012f ) PACKEDFILE "building\pbm\lobby\l1mz240.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000130 ) PACKEDFILE "building\pbm\lobby\l1mz241.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000131 ) PACKEDFILE "building\pbm\lobby\l1mz242.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000132 ) PACKEDFILE "building\pbm\lobby\l1mz243.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000133 ) PACKEDFILE "building\pbm\lobby\l1mz244.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000134 ) PACKEDFILE "building\pbm\lobby\l1mz245.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000135 ) PACKEDFILE "building\pbm\lobby\l1mz246.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000136 ) PACKEDFILE "building\pbm\lobby\l1mz247.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000137 ) PACKEDFILE "building\pbm\lobby\l1mz248.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000138 ) PACKEDFILE "building\pbm\lobby\l1mz249.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000139 ) PACKEDFILE "building\pbm\lobby\l1mz250.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\lobby\l1mz251.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\lobby\l1mz252.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\lobby\l1mz253.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\lobby\l1mz254.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\lobby\l1mz255.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\lobby\l1mz256.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\lobby\l1mz257.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\lobby\l1mz258.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\lobby\l1mz259.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\lobby\l1mz260.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\lobby\l3mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\lobby\l3mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\lobby\l3mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\lobby\l3mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\lobby\l3mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\lobby\l3mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\lobby\l3mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\lobby\l3mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\lobby\l3mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\lobby\l3mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\lobby\l3mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\lobby\l3mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\lobby\l3mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\lobby\l3mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\lobby\l3mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\lobby\l3mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\lobby\l3mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\lobby\l3mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\lobby\l3mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\lobby\l3mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\lobby\l3mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\lobby\l3mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\lobby\l3mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\lobby\l3mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\lobby\l3mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\lobby\l3mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000186 ) PACKEDFILE "building\pbm\lobby\l3mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000187 ) PACKEDFILE "building\pbm\lobby\l3mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000188 ) PACKEDFILE "building\pbm\lobby\l3mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000189 ) PACKEDFILE "building\pbm\lobby\l3mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018a ) PACKEDFILE "building\pbm\lobby\l3mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018b ) PACKEDFILE "building\pbm\lobby\l3mz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018c ) PACKEDFILE "building\pbm\lobby\l3mz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018d ) PACKEDFILE "building\pbm\lobby\l3mz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018e ) PACKEDFILE "building\pbm\lobby\l3mz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018f ) PACKEDFILE "building\pbm\lobby\l3mz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000190 ) PACKEDFILE "building\pbm\lobby\l3mz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000191 ) PACKEDFILE "building\pbm\lobby\l3mz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000192 ) PACKEDFILE "building\pbm\lobby\l3mz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000193 ) PACKEDFILE "building\pbm\lobby\l3mz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000194 ) PACKEDFILE "building\pbm\lobby\l3mz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000195 ) PACKEDFILE "building\pbm\lobby\l3mz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000196 ) PACKEDFILE "building\pbm\lobby\l3mz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000197 ) PACKEDFILE "building\pbm\lobby\l3mz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000198 ) PACKEDFILE "building\pbm\lobby\l3mz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000199 ) PACKEDFILE "building\pbm\lobby\l3mz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019a ) PACKEDFILE "building\pbm\lobby\l3mz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019b ) PACKEDFILE "building\pbm\lobby\l3mz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019c ) PACKEDFILE "building\pbm\lobby\l3mz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\lobby\l3mz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\lobby\l3mz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\lobby\l3mz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\lobby\l3mz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\lobby\l3mz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\lobby\l3mz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\lobby\l3mz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\lobby\l3mz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\lobby\l3mz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\lobby\l3mz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\lobby\l3mz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\lobby\l3mz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\lobby\l3mz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\lobby\l3mz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\lobby\l3mz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\lobby\l3mz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\lobby\l3mz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\lobby\l3mz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\lobby\l3mz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\lobby\l3mz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\lobby\l3mz70.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\lobby\lipsk157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\lobby\lipsk158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\lobby\lipsk159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\lobby\lipsk160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\lobby\lipsk161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\lobby\lipsk162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\lobby\lipsk163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\lobby\lipsk164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\lobby\lipsk165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\lobby\lipsk166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\lobby\lipsk167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\lobby\lipsk168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\lobby\lipsk169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\lobby\lipsk170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\lobby\lipsk171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\lobby\lipsk172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\lobby\lipsk173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\lobby\lipsk174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\lobby\lipsk175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\lobby\lipsk176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e4 ) PACKEDFILE "building\pbm\lobby\lipsk177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e5 ) PACKEDFILE "building\pbm\lobby\lipsk178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e6 ) PACKEDFILE "building\pbm\lobby\lipsk179.pbm" ENDCHUNK -#line 270 "H:\\BUILD\\SOC\\src\\building\\lobby.cht" - -SET _curgok = 0x0001060a CHUNK( 'GOKD', 0x0001060a, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "04logn3.avi" ENDCHUNK - - - -CHUNK( 'GLOP', 0x00018551, ) SCRIPT - If( _parm[0] == 0 ); - If( 0x00010608->f1sthelp ); - 0x00010608->fLipsink = 1; - 0x00010608->f1sthelp = 0; - End; - Exit(); - Elif( _parm[0] == 1 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - 0x00010600->fExitLobby=1; - - Elif( _parm[0] == 2 ); - - - - - RunScriptGob(0x00010000, 0x0021, 0x00010800, 0x0001); - End; -ENDCHUNK - -SET _curgok = 0x00010607 CHUNK( 'GOKD', 0x00010607, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lob1door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( !0x00010600->fExitLobby ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - If( (0x00010000->fHelpOn) ); - DestroyGob( 0x00016007 ); - End; - If( StateGob(0x00010608) != 0x0002 ); - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0005); - Else; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - 0x00010600->fExitLobby=1; - End; - End; - ENDCHUNK - - - -SET _curgok = 0x00010603 CHUNK( 'GOKD', 0x00010603, ) SHORT BO OSK LONG 0 LONG 0 0 0 45 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\poster3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((35 > 31) ? ( ::fBio2 & (1<<(35&31)) ) : ( ::fBio1 & (1<<(35&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (35 & 31); If (35 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 35; ::fBioCtrl = 0; CreateChildGob( 0x00010600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - -SET _curgok = 0x00010604 CHUNK( 'GOKD', 0x00010604, ) SHORT BO OSK LONG 0 LONG 0 0 0 45 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\poster4.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((36 > 31) ? ( ::fBio2 & (1<<(36&31)) ) : ( ::fBio1 & (1<<(36&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (36 & 31); If (36 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 36; ::fBioCtrl = 0; CreateChildGob( 0x00010600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - -SET _curgok = 0x00010703 CHUNK( 'GOKD', 0x00010703, ) SHORT BO OSK LONG 0 LONG 0 0 0 22 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lob2door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010500, 0x0001); - ENDCHUNK - -SET _curgok = 0x00010705 CHUNK( 'GOKD', 0x00010705, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lob2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010704 CHUNK( 'GOKD', 0x00010704, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 403 187 429 204 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - -SET _curgok = 0x00010609 CHUNK( 'GOKD', 0x00010609, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((30 > 31) ? ( ::fBio2 & (1<<(30&31)) ) : ( ::fBio1 & (1<<(30&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (30 & 31); If (30 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 30; ::fBioCtrl = 0; CreateChildGob( 0x00010600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 65 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\snackbar.cht" - - - - -CHUNK( 'WAVE', 0x00018026, ) FILE "building\sound\snackbar\VO60.wav" ENDCHUNK - -SET _curgok = 0x00010806 CHUNK( 'GOKD', 0x00010806, ) SHORT BO OSK LONG 0 - LONG 0 0 0 0 - LONG 0 0 0x00000002 0x00000001 0x0020 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - While( 1 ); - cnt=0x000000d5; - While( cnt <= 0x000000e3 ); - Cell( cnt++, 0, 0, 6 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018026, 0, 0x00010000, 1, 0, 998); - cnt=0x00000040; - While( cnt <= 0x000000d2 ); - Cell( cnt++, 0, 0, 6 ); - End; - - ChangeStateThis( 0x0001 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\snackbar.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\snackbar\mczee1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\snackbar\mczee2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\snackbar\mczee3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\snackbar\mczee4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\snackbar\mczee5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\snackbar\mczee6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\snackbar\mczee7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\snackbar\mczee8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\snackbar\mczee9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\snackbar\mczee10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\snackbar\mczee11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\snackbar\mczee12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\snackbar\mczee13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\snackbar\mczee14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\snackbar\mczee15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\snackbar\mczee16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\snackbar\mczee17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\snackbar\mczee18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\snackbar\mczee19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\snackbar\mczee20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\snackbar\mczee21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\snackbar\mczee22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\snackbar\mczee23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\snackbar\mczee24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\snackbar\mczee25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\snackbar\mczee26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\snackbar\mczee27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\snackbar\mczee28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\snackbar\mczee29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\snackbar\mczee30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\snackbar\mczee31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\snackbar\mczee32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\snackbar\mczee33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\snackbar\mczee34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\snackbar\mczee35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\snackbar\mczee36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\snackbar\mczee37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\snackbar\mczee38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\snackbar\mczee39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\snackbar\mczee40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\snackbar\mczee41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\snackbar\mczee42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\snackbar\mczee43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\snackbar\mczee44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\snackbar\mczee45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\snackbar\mczee46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\snackbar\mczee47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\snackbar\mczee48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\snackbar\mczee49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\snackbar\mczee50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\snackbar\mczee51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\snackbar\mczee52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\snackbar\mczee53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\snackbar\mczee54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\snackbar\mczee55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\snackbar\mczee56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\snackbar\mczee57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\snackbar\mczee58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\snackbar\mczee59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\snackbar\mczee60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\snackbar\mczee61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\snackbar\mczee62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\snackbar\mczee63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\snackbar\mczee64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\snackbar\mczee65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\snackbar\mczee66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\snackbar\mczee67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\snackbar\mczee68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\snackbar\mczee69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\snackbar\mczee70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\snackbar\mczee71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\snackbar\mczee72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\snackbar\mczee73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\snackbar\mczee74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\snackbar\mczee75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\snackbar\mczee76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\snackbar\mczee77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\snackbar\mczee78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\snackbar\mczee79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\snackbar\mczee80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\snackbar\mczee81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\snackbar\mczee82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\snackbar\mczee83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\snackbar\mczee84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\snackbar\mczee85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\snackbar\mczee86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\snackbar\mczee87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\snackbar\mczee88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\snackbar\mczee89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\snackbar\mczee90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\snackbar\mczee91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\snackbar\mczee92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\snackbar\mczee93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\snackbar\mczee94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\snackbar\mczee95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\snackbar\mczee96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\snackbar\mczee97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\snackbar\mczee98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\snackbar\mczee99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\snackbar\mczee100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\snackbar\mczee101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\snackbar\mczee102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\snackbar\mczee103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\snackbar\mczee104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\snackbar\mczee105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\snackbar\mczee106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\snackbar\mczee107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\snackbar\mczee108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\snackbar\mczee109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\snackbar\mczee110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\snackbar\mczee111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\snackbar\mczee112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\snackbar\mczee113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\snackbar\mczee114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\snackbar\mczee115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\snackbar\mczee116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\snackbar\mczee117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\snackbar\mczee118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\snackbar\mczee119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\snackbar\mczee120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\snackbar\mczee121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\snackbar\mczee122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\snackbar\mczee123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\snackbar\mczee124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\snackbar\mczee125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\snackbar\mczee126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\snackbar\mczee127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\snackbar\mczee128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\snackbar\mczee129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\snackbar\mczee130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\snackbar\mczee131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\snackbar\mczee132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\snackbar\mczee133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\snackbar\mczee134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\snackbar\mczee135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\snackbar\mczee136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\snackbar\mczee137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\snackbar\mczee138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\snackbar\mczee139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\snackbar\mczee140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\snackbar\mczee141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\snackbar\mczee142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\snackbar\mczee143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\snackbar\mczee144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\snackbar\mczee145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\snackbar\mczee146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\snackbar\mczee147.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\snackbar\cyc46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\snackbar\cyc47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\snackbar\cyc48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\snackbar\cyc49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\snackbar\cyc50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\snackbar\cyc51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\snackbar\cyc52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\snackbar\cyc53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\snackbar\cyc54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\snackbar\cyc55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\snackbar\cyc56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\snackbar\cyc57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\snackbar\cyc58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\snackbar\cyc59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\snackbar\cyc60.pbm" ENDCHUNK -#line 36 "H:\\BUILD\\SOC\\src\\building\\snackbar.cht" - -SET _curgok = 0x00010807 CHUNK( 'GOKD', 0x00010807, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((28 > 31) ? ( ::fBio2 & (1<<(28&31)) ) : ( ::fBio1 & (1<<(28&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (28 & 31); If (28 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 28; ::fBioCtrl = 0; CreateChildGob( 0x00010800, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010808 CHUNK( 'GOKD', 0x00010808, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\lobby\lobby2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((29 > 31) ? ( ::fBio2 & (1<<(29&31)) ) : ( ::fBio1 & (1<<(29&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (29 & 31); If (29 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 29; ::fBioCtrl = 0; CreateChildGob( 0x00010800, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -#line 66 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\theatre.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018107, ) FILE "building\sound\theatre\30_thr4.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018027, ) FILE "building\sound\theatre\21_thr1a.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018029, ) FILE "building\sound\theatre\VO74B.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018108, ) FILE "building\sound\theatre\VO75.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001802a, ) FILE "building\sound\theatre\VO76.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001810d, ) FILE "building\sound\theatre\21_thr1b.wav" ENDCHUNK - -SET _curgok = 0x00010c03 CHUNK( 'GOKD', 0x00010c03, ) SHORT BO OSK LONG 0 LONG 0 0 0 550 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x0000003f ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzthea.seq" - - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\thr2a1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\thr2a2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\theatre\thr2a3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\theatre\thr2a4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\theatre\thr2a5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\theatre\thr2a6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\theatre\thr2a7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\theatre\thr2a8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\theatre\thr2a9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\theatre\thr2a10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\theatre\thr2a11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\theatre\thr2a12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\theatre\thr2a13.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\theatre\thr2b1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\theatre\thr2b2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\theatre\thr2b3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\theatre\thr2b4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\theatre\thr2b5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\theatre\thr2b6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\theatre\thr2b7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\theatre\thr2b8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\theatre\thr2b9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\theatre\thr2b10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\theatre\thr2b11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\theatre\thr2b12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\theatre\thr2b13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\theatre\thr2b14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\theatre\thr2b15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\theatre\thr2b16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\theatre\thr2b17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\theatre\thr2b18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\theatre\thr2b19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\theatre\thr2b20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\theatre\thr2b21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\theatre\thr2b22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\theatre\thr2b23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\theatre\thr2b24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\theatre\thr2b25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\theatre\thr2b26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\theatre\thr2b27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\theatre\thr2b28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\theatre\thr2b29.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\theatre\thr2d1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\theatre\thr2d2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\theatre\thr2d3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\theatre\thr2d4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\theatre\thr2d5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\theatre\thr2d6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\theatre\thr2d7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\theatre\thr2d8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\theatre\thr2d9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\theatre\thr2d10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\theatre\thr2d11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\theatre\thr2d12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\theatre\thr2d13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\theatre\thr2d14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\theatre\thr2d15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\theatre\thr2d16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\theatre\thr2d17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\theatre\thr2d18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\theatre\thr2d19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\theatre\thr2d20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\theatre\thr2d21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\theatre\thr2d22.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\theatre\thr2e1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\theatre\thr2e2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\theatre\thr2e3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\theatre\thr2e4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\theatre\thr2e5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\theatre\thr2e6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\theatre\thr2e7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\theatre\thr2e8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\theatre\thr2e9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\theatre\thr2e10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\theatre\thr2e11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\theatre\thr2e12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\theatre\thr2e13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\theatre\thr2e14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\theatre\thr2e15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\theatre\thr2e16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\theatre\thr2e17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\theatre\thr2e18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\theatre\thr2e19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\theatre\thr2e20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\theatre\thr2e21.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\theatre\thr2f1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\theatre\thr2f2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\theatre\thr2f3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\theatre\thr2f4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\theatre\thr2f5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\theatre\thr2f6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\theatre\thr2f7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\theatre\thr2f8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\theatre\thr2f9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\theatre\thr2f10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\theatre\thr2f11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\theatre\thr2f12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\theatre\thr2f13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\theatre\thr2f14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\theatre\thr2f15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\theatre\thr2f16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\theatre\thr2f17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\theatre\thr2f18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\theatre\thr2f19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\theatre\thr2f20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\theatre\thr2f21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\theatre\thr2f22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\theatre\thr2f23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\theatre\thr2f24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\theatre\thr2f25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\theatre\thr2f26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\theatre\thr2f27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\theatre\thr2f28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\theatre\thr2f29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\theatre\thr2f30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\theatre\thr2f31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\theatre\thr2f32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\theatre\thr2f33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\theatre\thr2f34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\theatre\thr2f35.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\theatre\thrcy1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\theatre\thrcy2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\theatre\thrcy3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f7 ) PACKEDFILE "building\pbm\theatre\thrcy4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f8 ) PACKEDFILE "building\pbm\theatre\thrcy5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f9 ) PACKEDFILE "building\pbm\theatre\thrcy6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fa ) PACKEDFILE "building\pbm\theatre\thrcy7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fb ) PACKEDFILE "building\pbm\theatre\thrcy8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fc ) PACKEDFILE "building\pbm\theatre\thrcy9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fd ) PACKEDFILE "building\pbm\theatre\thrcy10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fe ) PACKEDFILE "building\pbm\theatre\thrcy11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ff ) PACKEDFILE "building\pbm\theatre\thrcy12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000100 ) PACKEDFILE "building\pbm\theatre\thrcy13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000101 ) PACKEDFILE "building\pbm\theatre\thrcy14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000102 ) PACKEDFILE "building\pbm\theatre\thrcy15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000103 ) PACKEDFILE "building\pbm\theatre\thrcy16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000104 ) PACKEDFILE "building\pbm\theatre\thrcy17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000105 ) PACKEDFILE "building\pbm\theatre\thrcy18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000106 ) PACKEDFILE "building\pbm\theatre\thrcy19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000107 ) PACKEDFILE "building\pbm\theatre\thrcy20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\theatre\thrcy21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\theatre\thrcy22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\theatre\thrcy23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\theatre\thrcy24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\theatre\thrcy25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\theatre\thrcy26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\theatre\thrcy27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\theatre\thrcy28.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\theatre\thr1_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\theatre\thr1_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\theatre\thr1_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\theatre\thr1_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\theatre\thr1_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\theatre\thr1_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\theatre\thr1_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\theatre\thr1_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\theatre\thr1_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\theatre\thr1_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000144 ) PACKEDFILE "building\pbm\theatre\thr1_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000145 ) PACKEDFILE "building\pbm\theatre\thr1_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000146 ) PACKEDFILE "building\pbm\theatre\thr1_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000147 ) PACKEDFILE "building\pbm\theatre\thr1_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000148 ) PACKEDFILE "building\pbm\theatre\thr1_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000149 ) PACKEDFILE "building\pbm\theatre\thr1_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014a ) PACKEDFILE "building\pbm\theatre\thr1_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014b ) PACKEDFILE "building\pbm\theatre\thr1_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014c ) PACKEDFILE "building\pbm\theatre\thr1_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014d ) PACKEDFILE "building\pbm\theatre\thr1_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014e ) PACKEDFILE "building\pbm\theatre\thr1_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014f ) PACKEDFILE "building\pbm\theatre\thr1_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000150 ) PACKEDFILE "building\pbm\theatre\thr1_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000151 ) PACKEDFILE "building\pbm\theatre\thr1_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000152 ) PACKEDFILE "building\pbm\theatre\thr1_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000153 ) PACKEDFILE "building\pbm\theatre\thr1_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000154 ) PACKEDFILE "building\pbm\theatre\thr1_27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000155 ) PACKEDFILE "building\pbm\theatre\thr1_28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000156 ) PACKEDFILE "building\pbm\theatre\thr1_29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000157 ) PACKEDFILE "building\pbm\theatre\thr1_30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000158 ) PACKEDFILE "building\pbm\theatre\thr1_31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000159 ) PACKEDFILE "building\pbm\theatre\thr1_32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015a ) PACKEDFILE "building\pbm\theatre\thr1_33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015b ) PACKEDFILE "building\pbm\theatre\thr1_34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015c ) PACKEDFILE "building\pbm\theatre\thr1_35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015d ) PACKEDFILE "building\pbm\theatre\thr1_36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015e ) PACKEDFILE "building\pbm\theatre\thr1_37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015f ) PACKEDFILE "building\pbm\theatre\thr1_38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000160 ) PACKEDFILE "building\pbm\theatre\thr1_39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000161 ) PACKEDFILE "building\pbm\theatre\thr1_40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000162 ) PACKEDFILE "building\pbm\theatre\thr1_41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000163 ) PACKEDFILE "building\pbm\theatre\thr1_42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000164 ) PACKEDFILE "building\pbm\theatre\thr1_43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000165 ) PACKEDFILE "building\pbm\theatre\thr1_44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000166 ) PACKEDFILE "building\pbm\theatre\thr1_45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000167 ) PACKEDFILE "building\pbm\theatre\thr1_46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000168 ) PACKEDFILE "building\pbm\theatre\thr1_47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000169 ) PACKEDFILE "building\pbm\theatre\thr1_48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016a ) PACKEDFILE "building\pbm\theatre\thr1_49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016b ) PACKEDFILE "building\pbm\theatre\thr1_50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\theatre\thr1_51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\theatre\thr1_52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\theatre\thr1_53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\theatre\thr1_54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\theatre\thr1_55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\theatre\thr1_56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\theatre\thr1_57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\theatre\thr1_58.pbm" ENDCHUNK - -#line 89 "H:\\BUILD\\SOC\\src\\building\\theatre.cht" - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ; - - - -; - - - 0x00010000->fHelpOn = (1); - - .fHelpState = 1; - - .fWay = 0; - - - .MzNextAction = 0; - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - If ((0x00010000->kstEntry) == 0x0007); - .MzNextAction = 0x0007; - 0x00010000->kstEntry = (0x0002); - End; - - ChangeStateThis((0x00010000->kstEntry)); - ENDCHUNK - - - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - cnt=0x00000040; - While( cnt <= 0x0000004c ); - Cell( cnt++, 0, 0, 6 ); - End; - ChangeStateThis( .MzNextAction ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - - cnt=0x0000004d; - While( cnt >= 0x00000040 ); - Cell( cnt--, 0, 0, 6 ); - End; - If (FGobExists(0x00012300)); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - End; - - If( .MzNextAction == 0x0014 ); - 0x00010000->kstEntry = (0x0003); - - - - If (FGobExists(0x00012300)); - EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - End; - If (1 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!1 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; ChangeStateGob(0x00010c00, 0x0003); CreateChildGob(0x00010c00, 0x00012300, 0x00012300); CreateChildGob(0x00010c00, 0x00010c0a, 0x00010c0a); CreateChildGob(0x00010c00, 0x00010c04, 0x00010c04); CreateChildGob(0x00010c00, 0x00010c06, 0x00010c06); - - Elif( .MzNextAction == 0x0015 ); - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0004); - Elif( .MzNextAction == 0x0016 ); - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0003); - Elif( .MzNextAction == 0x0017 ); - ChangeStateGob( 0x00012300, 0x0003 ); - Elif( .MzNextAction == 0x0018 ); - ChangeStateThis( 0x000c ); - End; - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - If (FGobExists(0x00012300)); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - Cell( 0x000000f4, 0, 0, 6 ); - If( (0x00010000->fHelpOn) == 1 ); - If( .fHelpState == 1 ); - CreateHelpGob( 0x00010c00, 0x00018552 ); - Elif( .fHelpState == 2); - CreateHelpGob( 0x00010c00, 0x00018553 ); - End; - End; - - - While( 1 ); - cnt = 0x000000f4; - While( cnt <= 0x0000010f); - Cell( cnt++, 0, 0, 6 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - If( (0x00010000->fMovie) == 1 ); - 0x00010000->fMovie = (0); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018027, 0, 0x00010000, 1, 0, 998); - cnt=0x0000013a; - While( cnt <= 0x00000173 ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - 0x00010000->kstEntry = (0x0003); - If (1 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!1 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; ChangeStateGob(0x00010c00, 0x0003); CreateChildGob(0x00010c00, 0x00012300, 0x00012300); CreateChildGob(0x00010c00, 0x00010c0a, 0x00010c0a); CreateChildGob(0x00010c00, 0x00010c04, 0x00010c04); CreateChildGob(0x00010c00, 0x00010c06, 0x00010c06); - Else; - .fHelpState=1; - - If( (0x00010000->fHelpOn) == 1 ); - .MzNextAction = 0x0006; - ChangeStateThis( 0x0002 ); - Else; - .MzNextAction = 0x0004; - ChangeStateThis( 0x0002 ); - End; - - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - Cell( 0x000000a4, 0, 0, 6 ); - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018108, 0, 0x00010000, 1, 0, 998); - - cnt=0x000000a5; - While( cnt <= 0x000000b8 ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - - cnt=0x0000007c; - While( cnt <= 0x00000090 ); - Cell( cnt++, 0, 0, 6 ); - End; - - - - EnqueueCid(50080, 0, 1, 0, 1, 0); - - - FilterCmdsThis(50082, 0, 0x0021); - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - .fHelpState=2; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - - ; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018029, 0, 0x00010000, 1, 0, 998); - cnt=0x00000054; - While( cnt <= 0x00000070 ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - 0x00010000->fHelpOn = (1); - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - .fHelpState=2; - - ; - - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018029, 0, 0x00010000, 1, 0, 998); - cnt=0x00000054; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x0000006f ); - Cell( cnt++, 0, 0, 6 ); - End; - SetNoSlipThis( 0); - Cell( cnt++, 0, 0, 6 ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - 0x00010000->fHelpOn = (1); - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000A SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - - DestroyGob( 0x00016009 ); - - - cnt=0x00000090; - While( cnt >= 0x0000007c ); - Cell( cnt--, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - If( .fWay == 1 ); - .MzNextAction = 0x0014; - ChangeStateThis( 0x0003 ); - Else; - 0x00010000->fHelpOn = (1); - ChangeStateThis( 0x0004 ); - End; - ENDCHUNK; - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000b SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001802a, 0, 0x00010000, 1, 0, 998); - cnt=0x000000c2; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x000000e3 ); - Cell( cnt++, 0, 0, 6 ); - End; - SetNoSlipThis( 0 ); - Cell( cnt++, 0, 0, 6 ); - - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000c SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - Cell( 0x0000003f, 0, 0, 0 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - .fWay = _parm[2]; - If (.fWay); - - ResizeGob(0x00012300, 0, 0); - End; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis(0x000A); - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ; - If( StateThis() != 0x0004 ); - 0x00010000->fHelpOn = (1); - ChangeStateThis( 0x0004 ); - Elif( (0x00010000->fHelpOn) == 0 ); - 0x00010000->fHelpOn = (1); - If( .fHelpState == 1 ); - CreateHelpGob( 0x00010c00, 0x00018552 ); - Elif( .fHelpState == 2); - CreateHelpGob( 0x00010c00, 0x00018553 ); - End; - End; - ENDCHUNK - -CHUNK( 'GLOP', 0x00018552, ) SCRIPT - If( _parm[0] == 0 ); - - Elif( _parm[0] == 1 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00010c03, 0x0007 ); - Elif( _parm[0] == 2 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00010c03, 0x000b ); - End; -ENDCHUNK - -CHUNK( 'GLOP', 0x00018553, ) SCRIPT - If( _parm[0] == 0 ); - - Elif( _parm[0] == 1 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->MzNextAction = 0x0015; - ChangeStateGob( 0x00010c03, 0x0003 ); - - Elif( _parm[0] == 2 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ; - EnqueueCid(50091, 0, 0,0,0,0); - EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->MzNextAction = 0x0016; - ChangeStateGob( 0x00010c03, 0x0003); - - Elif( _parm[0] == 3 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - - ; - EnqueueCid(50068, 0, 0, 0, 0, 0); - 0x00010c03->MzNextAction = 0x0017; - ChangeStateGob( 0x00010c03, 0x0003 ); - - Elif (_parm[0] == 4); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00010c03, 0x0007 ); - Elif( _parm[0] == 5 ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - ; - EnqueueCid(50091, 0, 0,0,0,0); - EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->fHelpState=1; - ChangeStateGob( 0x00010c03, 0x000b ); - End; -ENDCHUNK - -SET _curgok = 0x00010c01 CHUNK( 'GOKD', 0x00010c01, ) SHORT BO OSK LONG 0 LONG 0 0 0 450 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\leftdr.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010e00, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010c02 CHUNK( 'GOKD', 0x00010c02, ) SHORT BO OSK LONG 0 LONG 0 0 0 450 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\rightdr.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010f00, 0x0002); - ENDCHUNK - - - - - - -SET _curgok = 0x00012300 CHUNK( 'GOKD', 0x00012300, ) SHORT BO OSK LONG 0 LONG 0 0 0 400 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x00000043 ) LONG BO OSK 48 85 592 391 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ; - ; - - Cell( 0x00000043, 0, 0, 0 ); - - - FilterCmdsThis(50100, 0, 0x0022); - FilterCmdsThis(50101, 0, 0x0022); - - - - ; - EnqueueCid(50064, 0, 0x00012300, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - Cell( 0x00000043, 0, 0, 0 ); - - If( StateGob( 0x00010c03 ) != 0x000c ); - 0x00010c03->MzNextAction = 0x0018; - ChangeStateGob( 0x00010c03, 0x0003 ); - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - Cell( 0x00000043, 0, 0, 0 ); - ChangeStateGob( 0x00010c03, 0x000c ); - ChangeStateGob( 0x00010c04, 0x0002 ); - ChangeStateGob(0x00010c06, 0x0002); - If( .f1stMovie == 1 ); - .f1stMovie = 0; - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If (HeightGob(0x00012300) == 0); - ResizeGob(0x00012300, 592-48, 391-85); - End; - CreateChildThis( 0x00010c08, 0x00010c08 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x00010c08 )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x00010c08 ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - End; - ChangeStateThis( 0x0004 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - ChangeStateGob( 0x00010c04, 0x0002 ); - ChangeStateGob(0x00010c06, 0x0002); - - If( StateGob( 0x00010c03 ) != 0x000c ); - 0x00010c03->MzNextAction = 0x0018; - ChangeStateGob( 0x00010c03, 0x0003 ); - While( StateGob( 0x00010c03 ) != 0x000c ); - Cell( 0, 0, 0, 6 ); - End; - Else; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000002)); - End; - Cell( 0x00000043, 0, 0, 0 ); - - - - ; - EnqueueCid(50066, 0, 0, 0, 0, 0); - - - FilterCmdsThis(44011, 0, 0x0021); - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - Cell( 0x00000043, 0, 0, 0 ); - ChangeStateGob(0x00010c04, 0x0001); - ChangeStateGob(0x00010c06, 0x0001); - 0x00010c03->MzNextAction = 0x0009; - 0x00010c03->fHelpState = 2; - ChangeStateGob( 0x00010c03, 0x0002 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x00000043, 0, 0, 0 ); - - - - - ; - EnqueueCid(50067, 0, 0, 0, 0, 0); - 0x00010c03->MzNextAction = 0x0008; - 0x00010c03->fHelpState = 2; - ChangeStateGob( 0x00010c03, 0x0002 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (!_parm[2] && StateGob(0x00010c04) == 0x0002); - FilterCmdsThis(44011, 0, 0xFFFFFFFF); - ChangeStateThis(0x0005); - End; - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - If (_parm[2] == 0); - - - ; - ; - EnqueueCid(50091, 0, 0,0,0,0); - EnqueueCid(50069, 0, 0, 0, 0, 0); ChangeStateGob(0x00010c00, 0x0002); DestroyGob(0x00012300); DestroyGob(0x00010c0a); DestroyGob(0x00010c04); DestroyGob(0x00010c06); If (0 && !FGobExists(0x00010c09)); CreateChildGob(0x00010c00, 0x00010c09, 0x00010c09); 0x00010000->keys = ((0x00000002)); ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; Elif (!0 && FGobExists(0x00010c09)); DestroyGob(0x00010c09); 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; End; - 0x00010c03->fHelpState=1; - 0x00010000->fHelpOn = (1); - ChangeStateGob(0x00010c03, 0x0004); - Elif (_parm[1] == 50100); - ; - EnqueueCid(50065, 0, 0, 0, 0, 0); - Else; - .f1stMovie=1; - ChangeStateThis((0x00010000->kstEntry)); - End; - ENDCHUNK - -SET _curgok = 0x00010c08 CHUNK( 'GOKD', 0x00010c08, ) SHORT BO OSK LONG 0 LONG 0 0 1 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "CNTDWN5.AVI" ENDCHUNK - - - - - - - -SET _curgok = 0x00010c09 CHUNK( 'GOKD', 0x00010c09, ) SHORT BO OSK LONG 0 LONG 0 0 0 450 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x00010c07 CHUNK( 'GOKD', 0x00010c07, ) SHORT BO OSK LONG 3 LONG 0 0 0 451 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\theatre\thumb.pbm" ENDCHUNK - - - -SET _curgok = 0x00010c0a CHUNK( 'GOKD', 0x00010c0a, ) SHORT BO OSK LONG 0 LONG 0 9 110 451 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 12 74 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x00010c07, 0x00010c07 ); - - y = 62 -(( GetMasterVolume() * 62 )/ (2*0x00010000)); - MoveAbsGob( 0x00010c07, 0, y ); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis('WAVE', 0x00010004, 2, 0x00010000, 30000, 1, - 998); - While( 1 ); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif ( y > 62 ); - y =62; - End; - - - MoveAbsGob( 0x00010c07, 0, y ); - - - newvol = ( (2*0x00010000)* (62-y) ) / 62; - - - SetMasterVolume( newvol ); - - - Cell( 0 , 0,0, 10 ); - End; - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound( .siiLoop ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - -SET _curgok = 0x00010c04 CHUNK( 'GOKD', 0x00010c04, ) SHORT BO OSK LONG 0 LONG 0 318 7 451 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\play1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\theatre\play2.pbm" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - If( StateThis() == 0x0001 ); - - If( FGobExists( 0x00016008 ) ); - DestroyGob( 0x00016008 ); - Elif( FGobExists( 0x00016009 ) ); - DestroyGob( 0x00016009 ); - End; - - - - If( 0x00012300->f1stMovie == 1 ); - ChangeStateGob( 0x00012300, 0x0003 ); - Else; - ChangeStateGob( 0x00012300, 0x0004 ); - End; - ChangeStateThis( 0x0002 ); - ChangeStateGob(0x00010c06, 0x0002); - - Else; - - - ChangeStateGob( 0x00012300, 0x0006 ); - ChangeStateThis( 0x0001 ); - ChangeStateGob(0x00010c06, 0x0001); - End; - ENDCHUNK - -SET _curgok = 0x00010c06 CHUNK( 'GOKD', 0x00010c06, ) SHORT BO OSK LONG 0 - LONG 0 293 7 451 - LONG 0 0 0x00000002 0x00000001 0x0021 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\rewind1.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\rewind2.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - Cell (0x00000041, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - Cell (0x00000040, 0, 0, 0); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - ; - If( FGobExists( 0x00016009 ) ); - DestroyGob( 0x00016009 ); - End; - If (FGobExists(0x00016008)); - DestroyGob(0x00016008); - End; - - - - ChangeStateGob(0x00012300, 0x0002); - ; - EnqueueCid(50068, 0, 0, 0, 0, 0); - - ChangeStateGob( 0x00012300, 0x0004 ); - - ENDCHUNK - - -SET _curgok = 0x00010d01 CHUNK( 'GOKD', 0x00010d01, ) SHORT BO OSK LONG 0 LONG 0 0 0 50 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010700, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010d03 CHUNK( 'GOKD', 0x00010d03, ) SHORT BO OSK LONG 0 LONG 0 0 0 50 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010d02 CHUNK( 'GOKD', 0x00010d02, ) SHORT BO OSK LONG 0 LONG 0 0 0 50 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 420 194 445 206 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - -SET _curgok = 0x00010e01 CHUNK( 'GOKD', 0x00010e01, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000006 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\right.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0004); - ENDCHUNK - -SET _curgok = 0x00010e02 CHUNK( 'GOKD', 0x00010e02, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\bkleft.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010e04 CHUNK( 'GOKD', 0x00010e04, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the3map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010e03 CHUNK( 'GOKD', 0x00010e03, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the3quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - -SET _curgok = 0x00010f05 CHUNK( 'GOKD', 0x00010f05, ) SHORT BO OSK LONG 0 LONG 0 0 0 550 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018107, 0, 0x00010000, 1, 0, 998); - cnt = 0x00000040; - While( cnt <= 0x0000006b ); - If( cnt == 0x00000066 ); - CreateChildGob( 0x00010f00, 0x00010f06, 0x00010f06 ); - End; - Cell( cnt, 0, 0, 6 ); - cnt++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - DestroyThis(); - RunScriptGob( 0x00010f00, 0x0021 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzthea4.seq" - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\thr4_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\thr4_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\theatre\thr4_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\theatre\thr4_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\theatre\thr4_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\theatre\thr4_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\theatre\thr4_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\theatre\thr4_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\theatre\thr4_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\theatre\thr4_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\theatre\thr4_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\theatre\thr4_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\theatre\thr4_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\theatre\thr4_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\theatre\thr4_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\theatre\thr4_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\theatre\thr4_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\theatre\thr4_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\theatre\thr4_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\theatre\thr4_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\theatre\thr4_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\theatre\thr4_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\theatre\thr4_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\theatre\thr4_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\theatre\thr4_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\theatre\thr4_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\theatre\thr4_27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\theatre\thr4_28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\theatre\thr4_29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\theatre\thr4_30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\theatre\thr4_31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\theatre\thr4_32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\theatre\thr4_33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\theatre\thr4_34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\theatre\thr4_35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\theatre\thr4_36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\theatre\thr4_37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\theatre\thr4_38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\theatre\thr4_39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\theatre\thr4_40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\theatre\thr4_41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\theatre\thr4_42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\theatre\thr4_43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\theatre\thr4_44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\theatre\thr4_45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\theatre\thr4_46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\theatre\thr4_47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\theatre\thr4_48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\theatre\thr4_49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\theatre\thr4_50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\theatre\thr4_51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\theatre\thr4_52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\theatre\thr4_53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\theatre\thr4_54.pbm" ENDCHUNK -#line 796 "H:\\BUILD\\SOC\\src\\building\\theatre.cht" - -SET _curgok = 0x00010f06 CHUNK( 'GOKD', 0x00010f06, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x0001001c, 0 ); - cnt=0x00000040; - While( cnt <= 0x00000044 ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\theatre\Ldoor49.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\theatre\Ldoor50.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\theatre\Ldoor51.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\theatre\Ldoor52.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\theatre\Ldoor53.pbm" ENDCHUNK - -SET _curgok = 0x00010f01 CHUNK( 'GOKD', 0x00010f01, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000005 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\left.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00010c00, 0x0004); - ENDCHUNK - -SET _curgok = 0x00010f02 CHUNK( 'GOKD', 0x00010f02, ) SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\bkright.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); - ENDCHUNK - -SET _curgok = 0x00010f04 CHUNK( 'GOKD', 0x00010f04, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the4map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00010f03 CHUNK( 'GOKD', 0x00010f03, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the4quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - - -SET _curgok = 0x00010d04 CHUNK( 'GOKD', 0x00010d04, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((31 > 31) ? ( ::fBio2 & (1<<(31&31)) ) : ( ::fBio1 & (1<<(31&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (31 & 31); If (31 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 31; ::fBioCtrl = 0; CreateChildGob( 0x00010d00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010d05 CHUNK( 'GOKD', 0x00010d05, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((32 > 31) ? ( ::fBio2 & (1<<(32&31)) ) : ( ::fBio1 & (1<<(32&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (32 & 31); If (32 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 32; ::fBioCtrl = 0; CreateChildGob( 0x00010d00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00010d06 CHUNK( 'GOKD', 0x00010d06, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\theatre\the2m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((33 > 31) ? ( ::fBio2 & (1<<(33&31)) ) : ( ::fBio1 & (1<<(33&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (33 & 31); If (33 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 33; ::fBioCtrl = 0; CreateChildGob( 0x00010d00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - - - -#line 67 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" -CHUNK( 'WAVE', 0x0001801a, ) FILE "building\sound\backstag\GOIDA.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801b, ) FILE "building\sound\backstag\GOSTU.wav" ENDCHUNK -CHUNK( 'WAVE', 0x0001801c, ) FILE "building\sound\backstag\GOPRJ.wav" ENDCHUNK - -SET _curgok = 0x0001100a CHUNK( 'GOKD', 0x0001100a, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - -; - - - - - - - .f1sthelp=0; - .fLipsink = 0; - - - - If ((0x00010000->kstEntry) == 0x0006); - .nxtPlcState = 0x0002; - End; - - ChangeStateThis((0x00010000->kstEntry)); - - ENDCHUNK - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x00010011, 0 ); - - If( (0x00010000->fBackstagePS) ); - 0x00010000->keys = ((0x00000002)); - 0x00010000->fBackstagePS = (0); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x00011009, 0x00011009 ); - While( PlayingGob( 0x00011009 )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x00011009 ); - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - End; - - If( !FGobExists( 0x00011005 ) ); - CreateChildGob( 0x00011000, 0x00011005, 0x00011005 ); - End; - - Cell( 0x000000a4, 0, 0, 0 ); - - - - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00011000, 0x00018555 ); - Elif( (0x00010000->fBkstg1stHelp) ); - 0x00010000->fBkstg1stHelp = (0); - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00011000, 0x00018555 ); - End; - - While( 1 ); - If( .fLipsink ); - .fLipsink = 0; - cnt = 0x00000234; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018025, 0, 0x00010000, 1, 0, 998); - While( cnt < 0x00000247 ); - Cell( cnt++, 0, 0, 6); - End; - End; - - cnt = 0x00000040; - While( cnt <= 0x0000004b ); - Cell( cnt, 0,0, 6 ); - cnt++; - End; - - rnd=Rnd(10); - If( rnd == 0 ); - cnt = 0x00000054; - While( cnt <= 0x0000005f ); - Cell( cnt, 0,0, 6 ); - cnt++; - End; - Elif( rnd == 1 ); - cnt = 0x0000005f; - While( cnt >= 0x00000054 ); - Cell( cnt, 0,0, 6 ); - cnt--; - End; - Elif( rnd == 2 ); - - Cell( 0x00000054, 0,0, 11 ); - Cell( 0x00000055, 0,0, 10 ); - Cell( 0x00000056, 0,0, 9 ); - Cell( 0x00000057, 0,0, 8 ); - Cell( 0x00000058, 0,0, 7 ); - Cell( 0x00000059, 0,0, 6 ); - - Cell( 0x0000005a, 0,0, 4 ); - Cell( 0x0000005b, 0,0, 4 ); - Cell( 0x0000005c, 0,0, 4 ); - Cell( 0x0000005d, 0,0, 4 ); - Cell( 0x00000056, 0,0, 4 ); - Cell( 0x00000057, 0,0, 4 ); - Cell( 0x00000058, 0,0, 4 ); - Cell( 0x00000059, 0,0, 4 ); - - Cell( 0x0000005a, 0,0, 6 ); - Cell( 0x0000005b, 0,0, 7 ); - Cell( 0x0000005c, 0,0, 8 ); - Cell( 0x0000005d, 0,0, 9 ); - Cell( 0x0000005e, 0,0, 10 ); - Cell( 0x0000005f, 0,0, 11 ); - End; - End; - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x0001100d, 0x0001100d ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x0001100d )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100d ); - RunScriptGob(0x00010000, 0x0021, 0x00011800, 0x0002); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x0001100c, 0x0001100c ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x0001100c )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100c ); - RunScriptGob(0x00010000, 0x0021, 0x00011400, 0x0002); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( 0x00011000, 0x0001100b, 0x0001100b ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - While( PlayingGob( 0x0001100b )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100b ); - RunScriptGob(0x00010000, 0x0021, 0x00011c00, 0x0001); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell( 0x00000054, 0,0, 1 ); - If( !FGobExists( 0x00011005 ) ); - CreateChildGob( 0x00011000, 0x00011005, 0x00011005 ); - End; - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x0001001a, 0 ); - - CreateChildGob( 0x00011000, 0x00011010, 0x00011010 ); - While( PlayingGob( 0x00011010 )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x00011010 ); - RunScriptGob(0x00010000, 0x0021, 0x00011800, .nxtPlcState); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x00010015, 0 ); - CreateChildGob( 0x00011000, 0x0001100e, 0x0001100e ); - While( PlayingGob( 0x0001100e )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100e ); - RunScriptGob(0x00010000, 0x0021, 0x00011400, 0x0002); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - RunScriptGob( 0x00010000, 0x0024, 0x00010018, 0 ); - CreateChildGob( 0x00011000, 0x0001100f, 0x0001100f ); - While( PlayingGob( 0x0001100f )); - Cell( 0x0000003f, 0,0, 6 ); - End; - DestroyGob( 0x0001100f ); - RunScriptGob(0x00010000, 0x0021, 0x00011c00, 0x0001); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x000A SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell( 0x000001d0, 0,0, 6 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - RunScriptGob( 0x00010000, 0x0024, 0x00010011, 0 ); - cnt=0x000001d1; - While( cnt <= 0x000001e4 ); - Cell( cnt++, 0,0, 6 ); - End; - - - - - - - If( !(0x00010000->fBackstagePS) ); - cnt=0x00000202; - CreateChildGob( 0x00011000, 0x00011005, 0x00011005 ); - ChangeStateGob( 0x00011005, 0x0002 ); - CreateChildGob( 0x00011000, 0x00011008, 0x00011008 ); - While( cnt <= 0x00000223 ); - Cell( cnt++, 0,0, 8 ); - End; - End; - - ChangeStateThis( 0x0002 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( (0x00010000->fHelpOn) ); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016007 ); - Else; - 0x00010000->fHelpOn = (1); - CreateHelpGob( 0x00011000, 0x00018555 ); - End; - ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x0000003f ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzbkstg.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\lpcell1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\lpcell2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\lpcell3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\lpcell4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\lpcell5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\lpcell6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\lpcell7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\lpcell8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\lpcell9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\lpcell10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\lpcell11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\lpcell12.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\backstag\evcell1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\backstag\evcell2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\backstag\evcell3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\backstag\evcell4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\backstag\evcell5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\backstag\evcell6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\backstag\evcell7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\backstag\evcell8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\backstag\evcell9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\backstag\evcell10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\backstag\evcell11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\backstag\evcell12.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\backstag\idmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\backstag\idmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\backstag\idmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\backstag\idmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\backstag\idmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\backstag\idmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\backstag\idmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\backstag\idmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\backstag\idmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\backstag\idmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\backstag\idmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\backstag\idmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\backstag\idmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\backstag\idmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\backstag\idmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\backstag\idmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\backstag\idmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\backstag\idmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\backstag\idmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\backstag\idmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\backstag\idmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\backstag\idmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\backstag\idmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\backstag\idmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\backstag\idmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\backstag\idmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\backstag\idmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\backstag\idmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\backstag\idmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\backstag\idmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\backstag\idmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\backstag\idmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\backstag\idmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\backstag\idmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\backstag\idmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\backstag\idmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\backstag\idmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\backstag\idmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\backstag\idmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\backstag\idmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\backstag\idmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\backstag\idmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\backstag\idmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\backstag\idmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\backstag\idmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\backstag\idmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\backstag\idmz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\backstag\idmz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\backstag\idmz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\backstag\idmz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\backstag\idmz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\backstag\idmz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\backstag\idmz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\backstag\idmz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\backstag\idmz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\backstag\idmz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\backstag\idmz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\backstag\idmz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\backstag\idmz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\backstag\idmz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\backstag\idmz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\backstag\idmz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\backstag\idmz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\backstag\idmz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\backstag\idmz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\backstag\idmz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\backstag\idmz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\backstag\idmz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\backstag\idmz69.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\backstag\gostu1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\backstag\gostu2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\backstag\gostu3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\backstag\gostu4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\backstag\gostu5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\backstag\gostu6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\backstag\gostu7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\backstag\gostu8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\backstag\gostu9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\backstag\gostu10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\backstag\gostu11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\backstag\gostu12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\backstag\gostu13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\backstag\gostu14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\backstag\gostu15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\backstag\gostu16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\backstag\gostu17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\backstag\gostu18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\backstag\gostu19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\backstag\gostu20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011c ) PACKEDFILE "building\pbm\backstag\gostu21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011d ) PACKEDFILE "building\pbm\backstag\gostu22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011e ) PACKEDFILE "building\pbm\backstag\gostu23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011f ) PACKEDFILE "building\pbm\backstag\gostu24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000120 ) PACKEDFILE "building\pbm\backstag\gostu25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000121 ) PACKEDFILE "building\pbm\backstag\gostu26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000122 ) PACKEDFILE "building\pbm\backstag\gostu27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000123 ) PACKEDFILE "building\pbm\backstag\gostu28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000124 ) PACKEDFILE "building\pbm\backstag\gostu29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000125 ) PACKEDFILE "building\pbm\backstag\gostu30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000126 ) PACKEDFILE "building\pbm\backstag\gostu31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000127 ) PACKEDFILE "building\pbm\backstag\gostu32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000128 ) PACKEDFILE "building\pbm\backstag\gostu33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000129 ) PACKEDFILE "building\pbm\backstag\gostu34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012a ) PACKEDFILE "building\pbm\backstag\gostu35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012b ) PACKEDFILE "building\pbm\backstag\gostu36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012c ) PACKEDFILE "building\pbm\backstag\gostu37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012d ) PACKEDFILE "building\pbm\backstag\gostu38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012e ) PACKEDFILE "building\pbm\backstag\gostu39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012f ) PACKEDFILE "building\pbm\backstag\gostu40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000130 ) PACKEDFILE "building\pbm\backstag\gostu41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000131 ) PACKEDFILE "building\pbm\backstag\gostu42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000132 ) PACKEDFILE "building\pbm\backstag\gostu43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000133 ) PACKEDFILE "building\pbm\backstag\gostu44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000134 ) PACKEDFILE "building\pbm\backstag\gostu45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000135 ) PACKEDFILE "building\pbm\backstag\gostu46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000136 ) PACKEDFILE "building\pbm\backstag\gostu47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000137 ) PACKEDFILE "building\pbm\backstag\gostu48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000138 ) PACKEDFILE "building\pbm\backstag\gostu49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000139 ) PACKEDFILE "building\pbm\backstag\gostu50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\backstag\gostu51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\backstag\gostu52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\backstag\gostu53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\backstag\gostu54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\backstag\gostu55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\backstag\gostu56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\backstag\gostu57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\backstag\gostu58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\backstag\gostu59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\backstag\gostu60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000144 ) PACKEDFILE "building\pbm\backstag\gostu61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000145 ) PACKEDFILE "building\pbm\backstag\gostu62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000146 ) PACKEDFILE "building\pbm\backstag\gostu63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000147 ) PACKEDFILE "building\pbm\backstag\gostu64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000148 ) PACKEDFILE "building\pbm\backstag\gostu65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000149 ) PACKEDFILE "building\pbm\backstag\gostu66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014a ) PACKEDFILE "building\pbm\backstag\gostu67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014b ) PACKEDFILE "building\pbm\backstag\gostu68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014c ) PACKEDFILE "building\pbm\backstag\gostu69.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\backstag\gopmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\backstag\gopmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\backstag\gopmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\backstag\gopmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\backstag\gopmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\backstag\gopmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\backstag\gopmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\backstag\gopmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\backstag\gopmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\backstag\gopmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\backstag\gopmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\backstag\gopmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\backstag\gopmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\backstag\gopmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\backstag\gopmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\backstag\gopmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\backstag\gopmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\backstag\gopmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\backstag\gopmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\backstag\gopmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\backstag\gopmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\backstag\gopmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\backstag\gopmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\backstag\gopmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\backstag\gopmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\backstag\gopmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000186 ) PACKEDFILE "building\pbm\backstag\gopmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000187 ) PACKEDFILE "building\pbm\backstag\gopmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000188 ) PACKEDFILE "building\pbm\backstag\gopmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000189 ) PACKEDFILE "building\pbm\backstag\gopmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018a ) PACKEDFILE "building\pbm\backstag\gopmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018b ) PACKEDFILE "building\pbm\backstag\gopmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018c ) PACKEDFILE "building\pbm\backstag\gopmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018d ) PACKEDFILE "building\pbm\backstag\gopmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018e ) PACKEDFILE "building\pbm\backstag\gopmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000018f ) PACKEDFILE "building\pbm\backstag\gopmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000190 ) PACKEDFILE "building\pbm\backstag\gopmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000191 ) PACKEDFILE "building\pbm\backstag\gopmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000192 ) PACKEDFILE "building\pbm\backstag\gopmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000193 ) PACKEDFILE "building\pbm\backstag\gopmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000194 ) PACKEDFILE "building\pbm\backstag\gopmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000195 ) PACKEDFILE "building\pbm\backstag\gopmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000196 ) PACKEDFILE "building\pbm\backstag\gopmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000197 ) PACKEDFILE "building\pbm\backstag\gopmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000198 ) PACKEDFILE "building\pbm\backstag\gopmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000199 ) PACKEDFILE "building\pbm\backstag\gopmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019a ) PACKEDFILE "building\pbm\backstag\gopmz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019b ) PACKEDFILE "building\pbm\backstag\gopmz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019c ) PACKEDFILE "building\pbm\backstag\gopmz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\backstag\gopmz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\backstag\gopmz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\backstag\gopmz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\backstag\gopmz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\backstag\gopmz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\backstag\gopmz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\backstag\gopmz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\backstag\gopmz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\backstag\gopmz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\backstag\gopmz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\backstag\gopmz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\backstag\gopmz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\backstag\gopmz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\backstag\gopmz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\backstag\gopmz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\backstag\gopmz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\backstag\gopmz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\backstag\gopmz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\backstag\gopmz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\backstag\gopmz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\backstag\gopmz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b2 ) PACKEDFILE "building\pbm\backstag\gopmz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b3 ) PACKEDFILE "building\pbm\backstag\gopmz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b4 ) PACKEDFILE "building\pbm\backstag\gopmz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b5 ) PACKEDFILE "building\pbm\backstag\gopmz74.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\backstag\tbth5_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\backstag\tbth5_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\backstag\tbth5_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\backstag\tbth5_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\backstag\tbth5_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\backstag\tbth5_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\backstag\tbth5_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\backstag\tbth5_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\backstag\tbth5_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\backstag\tbth5_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\backstag\tbth5_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\backstag\tbth5_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\backstag\tbth5_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\backstag\tbth5_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\backstag\tbth5_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\backstag\tbth5_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\backstag\tbth5_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\backstag\tbth5_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\backstag\tbth5_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\backstag\tbth5_20.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000202 ) PACKEDFILE "building\pbm\backstag\tbth6_1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000203 ) PACKEDFILE "building\pbm\backstag\tbth6_2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000204 ) PACKEDFILE "building\pbm\backstag\tbth6_3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000205 ) PACKEDFILE "building\pbm\backstag\tbth6_4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000206 ) PACKEDFILE "building\pbm\backstag\tbth6_5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000207 ) PACKEDFILE "building\pbm\backstag\tbth6_6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000208 ) PACKEDFILE "building\pbm\backstag\tbth6_7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000209 ) PACKEDFILE "building\pbm\backstag\tbth6_8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020a ) PACKEDFILE "building\pbm\backstag\tbth6_9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020b ) PACKEDFILE "building\pbm\backstag\tbth6_10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020c ) PACKEDFILE "building\pbm\backstag\tbth6_11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020d ) PACKEDFILE "building\pbm\backstag\tbth6_12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020e ) PACKEDFILE "building\pbm\backstag\tbth6_13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020f ) PACKEDFILE "building\pbm\backstag\tbth6_14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000210 ) PACKEDFILE "building\pbm\backstag\tbth6_15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000211 ) PACKEDFILE "building\pbm\backstag\tbth6_16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000212 ) PACKEDFILE "building\pbm\backstag\tbth6_17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000213 ) PACKEDFILE "building\pbm\backstag\tbth6_18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000214 ) PACKEDFILE "building\pbm\backstag\tbth6_19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000215 ) PACKEDFILE "building\pbm\backstag\tbth6_20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000216 ) PACKEDFILE "building\pbm\backstag\tbth6_21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000217 ) PACKEDFILE "building\pbm\backstag\tbth6_22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000218 ) PACKEDFILE "building\pbm\backstag\tbth6_23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000219 ) PACKEDFILE "building\pbm\backstag\tbth6_24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021a ) PACKEDFILE "building\pbm\backstag\tbth6_25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021b ) PACKEDFILE "building\pbm\backstag\tbth6_26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021c ) PACKEDFILE "building\pbm\backstag\tbth6_27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021d ) PACKEDFILE "building\pbm\backstag\tbth6_28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021e ) PACKEDFILE "building\pbm\backstag\tbth6_29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021f ) PACKEDFILE "building\pbm\backstag\tbth6_30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000220 ) PACKEDFILE "building\pbm\backstag\tbth6_31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000221 ) PACKEDFILE "building\pbm\backstag\tbth6_32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000222 ) PACKEDFILE "building\pbm\backstag\tbth6_33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000223 ) PACKEDFILE "building\pbm\backstag\tbth6_34.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000234 ) PACKEDFILE "building\pbm\backstag\speak1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000235 ) PACKEDFILE "building\pbm\backstag\speak2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000236 ) PACKEDFILE "building\pbm\backstag\speak3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000237 ) PACKEDFILE "building\pbm\backstag\speak4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000238 ) PACKEDFILE "building\pbm\backstag\speak5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000239 ) PACKEDFILE "building\pbm\backstag\speak6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023a ) PACKEDFILE "building\pbm\backstag\speak7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023b ) PACKEDFILE "building\pbm\backstag\speak8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023c ) PACKEDFILE "building\pbm\backstag\speak9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023d ) PACKEDFILE "building\pbm\backstag\speak10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023e ) PACKEDFILE "building\pbm\backstag\speak11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023f ) PACKEDFILE "building\pbm\backstag\speak12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000240 ) PACKEDFILE "building\pbm\backstag\speak13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000241 ) PACKEDFILE "building\pbm\backstag\speak14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000242 ) PACKEDFILE "building\pbm\backstag\speak15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000243 ) PACKEDFILE "building\pbm\backstag\speak16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000244 ) PACKEDFILE "building\pbm\backstag\speak17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000245 ) PACKEDFILE "building\pbm\backstag\speak18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000246 ) PACKEDFILE "building\pbm\backstag\speak19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000247 ) PACKEDFILE "building\pbm\backstag\speak20.pbm" ENDCHUNK -#line 255 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - -CHUNK( 'GLOP', 0x00018555, ) SCRIPT - If( _parm[0] == 0 ); - If( !0x0001100a->f1sthelp ); - 0x0001100a->fLipsink = 1; - 0x0001100a->f1sthelp = 1; - End; - Elif( _parm[0] == 1 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ChangeStateGob( 0x0001100a, 0x0009 ); - - Elif( _parm[0] == 2 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ChangeStateGob( 0x0001100a, 0x0008 ); - - Elif( _parm[0] == 3 ); - DestroyGob( 0x00016007 ); - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - 0x0001100a->nxtPlcState = 0x0002; - ChangeStateGob( 0x0001100a, 0x0006 ); - End; -ENDCHUNK - -SET _curgok = 0x00011006 CHUNK( 'GOKD', 0x00011006, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x0000004f ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\PrDoor.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\Pdoor54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\Pdoor55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\Pdoor56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\Pdoor57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\Pdoor58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\Pdoor59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\Pdoor60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\Pdoor61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\Pdoor62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\Pdoor63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\Pdoor64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\Pdoor65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\Pdoor66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\Pdoor67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\Pdoor68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\Pdoor69.pbm" ENDCHUNK - -#line 289 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - -SET _curgok = 0x00011007 CHUNK( 'GOKD', 0x00011007, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x0000004f ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\StDoor.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\Sdoor49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\Sdoor50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\Sdoor51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\Sdoor52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\Sdoor53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\Sdoor54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\Sdoor55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\Sdoor56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\Sdoor57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\Sdoor58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\Sdoor59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\Sdoor60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\Sdoor61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\Sdoor62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\Sdoor63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\Sdoor64.pbm" ENDCHUNK - -#line 298 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - -SET _curgok = 0x00011004 CHUNK( 'GOKD', 0x00011004, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x00000051 ); - Cell( cnt++, 0,0, 6 ); - End; - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\IdDoor.seq" - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\door47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\door48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\door49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\door50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\door51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\door52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\door53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\door54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\door55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\door56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\door57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\door58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\door59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\door60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\door61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\door62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\backstag\door63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\backstag\door64.pbm" ENDCHUNK - -#line 307 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - SET _curgok = 0x00011005 CHUNK( 'GOKD', 0x00011005, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\backstag\bag12.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x00000053 ); - Cell( cnt++, 0,0, 8 ); - End; - ChangeStateThis( 0x0001 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\BkstgBag.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\bag1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\bag2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\bag3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\bag4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\bag5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\bag6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\bag7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\bag8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\bag9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\bag10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\bag11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\bag12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\bag13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\bag14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\bag15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\bag16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\backstag\bag17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\backstag\bag18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\backstag\bag19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\backstag\bag20.pbm" ENDCHUNK -#line 318 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - SET _curgok = 0x00011008 CHUNK( 'GOKD', 0x00011008, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt=0x00000040; - While( cnt <= 0x00000061 ); - Cell( cnt++, 0,0, 8 ); - End; - DestroyThis(); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\BkShdw.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\backstag\shdw1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\backstag\shdw2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\backstag\shdw3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\backstag\shdw4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\backstag\shdw5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\backstag\shdw6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\backstag\shdw7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\backstag\shdw8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\backstag\shdw9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\backstag\shdw10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\backstag\shdw11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\backstag\shdw12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\backstag\shdw13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\backstag\shdw14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\backstag\shdw15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\backstag\shdw16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\backstag\shdw17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\backstag\shdw18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\backstag\shdw19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\backstag\shdw20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\backstag\shdw21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\backstag\shdw22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\backstag\shdw23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\backstag\shdw24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\backstag\shdw25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\backstag\shdw26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\backstag\shdw27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\backstag\shdw28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\backstag\shdw29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\backstag\shdw30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\backstag\shdw31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\backstag\shdw32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\backstag\shdw33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\backstag\shdw34.pbm" ENDCHUNK - -#line 328 "H:\\BUILD\\SOC\\src\\building\\backstag.cht" - - - - -SET _curgok = 0x00011009 CHUNK( 'GOKD', 0x00011009, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "backstag.avi" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); - ENDCHUNK - -SET _curgok = 0x0001100b CHUNK( 'GOKD', 0x0001100b, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "05LOGN4.AVI" ENDCHUNK - -SET _curgok = 0x0001100c CHUNK( 'GOKD', 0x0001100c, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "LOGN5.AVI" ENDCHUNK - -SET _curgok = 0x0001100d CHUNK( 'GOKD', 0x0001100d, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "LOGN06.AVI" ENDCHUNK - -SET _curgok = 0x0001100e CHUNK( 'GOKD', 0x0001100e, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "GOIDA.AVI" ENDCHUNK - -SET _curgok = 0x0001100f CHUNK( 'GOKD', 0x0001100f, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "GOPRJ.AVI" ENDCHUNK - -SET _curgok = 0x00011010 CHUNK( 'GOKD', 0x00011010, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "GOSTU.AVI" ENDCHUNK - - - -SET _curgok = 0x00011001 CHUNK( 'GOKD', 0x00011001, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\Bkstgdr1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateGob( 0x0001100a, 0x0008 ); - ENDCHUNK - - -SET _curgok = 0x00011002 CHUNK( 'GOKD', 0x00011002, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\Bkstgdr2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - 0x0001100a->nxtPlcState = 0x0001; - ChangeStateGob( 0x0001100a, 0x0006 ); - ENDCHUNK - - -SET _curgok = 0x00011003 CHUNK( 'GOKD', 0x00011003, ) SHORT BO OSK LONG 0 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\backstag\Bkstgdr3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateGob( 0x0001100a, 0x0009 ); - ENDCHUNK - -#line 68 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\inspirat.cht" - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018032, ) FILE "building\sound\inspirat\idea1a.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018033, ) FILE "building\sound\inspirat\idea1b.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018034, ) FILE "building\sound\inspirat\idea2.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018035, ) FILE "building\sound\inspirat\idea3.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018036, ) FILE "building\sound\inspirat\idea4.wav" ENDCHUNK - -SET _curgok = 0x0001140d CHUNK( 'GOKD', 0x0001140d, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "idea2.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - StopThis(); - ENDCHUNK - - -SET _curgok = 0x0001140e CHUNK( 'GOKD', 0x0001140e, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "idea3.avi" ENDCHUNK - - - -SET _curgok = 0x0001140f CHUNK( 'GOKD', 0x0001140f, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "idea4.avi" ENDCHUNK - - -SET _curgok = 0x00011401 CHUNK( 'GOKD', 0x00011401, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\mzinsp.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\inspirat\lpmz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\lpmz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\lpmz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\lpmz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\inspirat\lpmz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\inspirat\lpmz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\inspirat\lpmz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\inspirat\lpmz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\inspirat\lpmz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\inspirat\lpmz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\inspirat\lpmz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\inspirat\lpmz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\inspirat\lpmz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\inspirat\lpmz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\inspirat\lpmz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\inspirat\lpmz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\inspirat\lpmz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\inspirat\lpmz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\inspirat\lpmz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\inspirat\lpmz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\inspirat\lpmz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\inspirat\lpmz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\inspirat\lpmz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\inspirat\lpmz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\inspirat\lpmz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\inspirat\lpmz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\inspirat\lpmz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\inspirat\lpmz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\inspirat\lpmz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\inspirat\lpmz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\inspirat\lpmz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\inspirat\lpmz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\inspirat\lpmz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\inspirat\lpmz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\inspirat\lpmz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\inspirat\lpmz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\inspirat\lpmz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\inspirat\lpmz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\inspirat\lpmz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\inspirat\lpmz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\inspirat\lpmz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\inspirat\lpmz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\inspirat\lpmz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\inspirat\lpmz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\inspirat\lpmz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\inspirat\lpmz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\inspirat\lpmz47.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\inspirat\sq2mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\inspirat\sq2mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\inspirat\sq2mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\inspirat\sq2mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\inspirat\sq2mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\inspirat\sq2mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\inspirat\sq2mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\inspirat\sq2mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\inspirat\sq2mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\inspirat\sq2mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\inspirat\sq2mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\inspirat\sq2mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\inspirat\sq2mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\inspirat\sq2mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\inspirat\sq2mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\inspirat\sq2mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\inspirat\sq2mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\inspirat\sq2mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\inspirat\sq2mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\inspirat\sq2mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\inspirat\sq2mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\inspirat\sq2mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\inspirat\sq2mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\inspirat\sq2mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\inspirat\sq2mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\inspirat\sq2mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\inspirat\sq2mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\inspirat\sq2mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\inspirat\sq2mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\inspirat\sq2mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\inspirat\sq2mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\inspirat\sq2mz32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\inspirat\sq2mz33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\inspirat\sq2mz34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\inspirat\sq2mz35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\inspirat\sq2mz36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\inspirat\sq2mz37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\inspirat\sq2mz38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\inspirat\sq2mz39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\inspirat\sq2mz40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\inspirat\sq2mz41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\inspirat\sq2mz42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\inspirat\sq2mz43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\inspirat\sq2mz44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\inspirat\sq2mz45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\inspirat\sq2mz46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\inspirat\sq2mz47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\inspirat\sq2mz48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\inspirat\sq2mz49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\inspirat\sq2mz50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\inspirat\sq2mz51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\inspirat\sq2mz52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\inspirat\sq2mz53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\inspirat\sq2mz54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\inspirat\sq2mz55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\inspirat\sq2mz56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\inspirat\sq2mz57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\inspirat\sq2mz58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\inspirat\sq2mz59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\inspirat\sq2mz60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\inspirat\sq2mz61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\inspirat\sq2mz62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\inspirat\sq2mz63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\inspirat\sq2mz64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\inspirat\sq2mz65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\inspirat\sq2mz66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\inspirat\sq2mz67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\inspirat\sq2mz68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\inspirat\sq2mz69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\inspirat\sq2mz70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e9 ) PACKEDFILE "building\pbm\inspirat\sq2mz71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ea ) PACKEDFILE "building\pbm\inspirat\sq2mz72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000eb ) PACKEDFILE "building\pbm\inspirat\sq2mz73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ec ) PACKEDFILE "building\pbm\inspirat\sq2mz74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ed ) PACKEDFILE "building\pbm\inspirat\sq2mz75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ee ) PACKEDFILE "building\pbm\inspirat\sq2mz76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ef ) PACKEDFILE "building\pbm\inspirat\sq2mz77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f0 ) PACKEDFILE "building\pbm\inspirat\sq2mz78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f1 ) PACKEDFILE "building\pbm\inspirat\sq2mz79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f2 ) PACKEDFILE "building\pbm\inspirat\sq2mz80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f3 ) PACKEDFILE "building\pbm\inspirat\sq2mz81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\inspirat\sq2mz82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\inspirat\sq2mz83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\inspirat\sq2mz84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f7 ) PACKEDFILE "building\pbm\inspirat\sq2mz85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f8 ) PACKEDFILE "building\pbm\inspirat\sq2mz86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f9 ) PACKEDFILE "building\pbm\inspirat\sq2mz87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fa ) PACKEDFILE "building\pbm\inspirat\sq2mz88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fb ) PACKEDFILE "building\pbm\inspirat\sq2mz89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fc ) PACKEDFILE "building\pbm\inspirat\sq2mz90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fd ) PACKEDFILE "building\pbm\inspirat\sq2mz91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000fe ) PACKEDFILE "building\pbm\inspirat\sq2mz92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ff ) PACKEDFILE "building\pbm\inspirat\sq2mz93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000100 ) PACKEDFILE "building\pbm\inspirat\sq2mz94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000101 ) PACKEDFILE "building\pbm\inspirat\sq2mz95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000102 ) PACKEDFILE "building\pbm\inspirat\sq2mz96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000103 ) PACKEDFILE "building\pbm\inspirat\sq2mz97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000104 ) PACKEDFILE "building\pbm\inspirat\sq2mz98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000105 ) PACKEDFILE "building\pbm\inspirat\sq2mz99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000106 ) PACKEDFILE "building\pbm\inspirat\sq2mz100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000107 ) PACKEDFILE "building\pbm\inspirat\sq2mz101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\inspirat\sq2mz102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\inspirat\sq2mz103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\inspirat\sq2mz104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\inspirat\sq2mz105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\inspirat\sq2mz106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\inspirat\sq2mz107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\inspirat\sq2mz108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\inspirat\sq2mz109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\inspirat\sq2mz110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\inspirat\sq2mz111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\inspirat\sq2mz112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\inspirat\sq2mz113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\inspirat\sq2mz114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\inspirat\sq2mz115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\inspirat\sq2mz116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\inspirat\sq2mz117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\inspirat\sq2mz118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\inspirat\sq2mz119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\inspirat\sq2mz120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\inspirat\sq2mz121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011c ) PACKEDFILE "building\pbm\inspirat\sq2mz122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011d ) PACKEDFILE "building\pbm\inspirat\sq2mz123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011e ) PACKEDFILE "building\pbm\inspirat\sq2mz124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011f ) PACKEDFILE "building\pbm\inspirat\sq2mz125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000120 ) PACKEDFILE "building\pbm\inspirat\sq2mz126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000121 ) PACKEDFILE "building\pbm\inspirat\sq2mz127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000122 ) PACKEDFILE "building\pbm\inspirat\sq2mz128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000123 ) PACKEDFILE "building\pbm\inspirat\sq2mz129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000124 ) PACKEDFILE "building\pbm\inspirat\sq2mz130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000125 ) PACKEDFILE "building\pbm\inspirat\sq2mz131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000126 ) PACKEDFILE "building\pbm\inspirat\sq2mz132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000127 ) PACKEDFILE "building\pbm\inspirat\sq2mz133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000128 ) PACKEDFILE "building\pbm\inspirat\sq2mz134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000129 ) PACKEDFILE "building\pbm\inspirat\sq2mz135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012a ) PACKEDFILE "building\pbm\inspirat\sq2mz136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012b ) PACKEDFILE "building\pbm\inspirat\sq2mz137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012c ) PACKEDFILE "building\pbm\inspirat\sq2mz138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012d ) PACKEDFILE "building\pbm\inspirat\sq2mz139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012e ) PACKEDFILE "building\pbm\inspirat\sq2mz140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000012f ) PACKEDFILE "building\pbm\inspirat\sq2mz141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000130 ) PACKEDFILE "building\pbm\inspirat\sq2mz142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000131 ) PACKEDFILE "building\pbm\inspirat\sq2mz143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000132 ) PACKEDFILE "building\pbm\inspirat\sq2mz144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000133 ) PACKEDFILE "building\pbm\inspirat\sq2mz145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000134 ) PACKEDFILE "building\pbm\inspirat\sq2mz146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000135 ) PACKEDFILE "building\pbm\inspirat\sq2mz147.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000136 ) PACKEDFILE "building\pbm\inspirat\sq2mz148.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000137 ) PACKEDFILE "building\pbm\inspirat\sq2mz149.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000138 ) PACKEDFILE "building\pbm\inspirat\sq2mz150.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000139 ) PACKEDFILE "building\pbm\inspirat\sq2mz151.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013a ) PACKEDFILE "building\pbm\inspirat\sq2mz152.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013b ) PACKEDFILE "building\pbm\inspirat\sq2mz153.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013c ) PACKEDFILE "building\pbm\inspirat\sq2mz154.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013d ) PACKEDFILE "building\pbm\inspirat\sq2mz155.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013e ) PACKEDFILE "building\pbm\inspirat\sq2mz156.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000013f ) PACKEDFILE "building\pbm\inspirat\sq2mz157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000140 ) PACKEDFILE "building\pbm\inspirat\sq2mz158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000141 ) PACKEDFILE "building\pbm\inspirat\sq2mz159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000142 ) PACKEDFILE "building\pbm\inspirat\sq2mz160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000143 ) PACKEDFILE "building\pbm\inspirat\sq2mz161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000144 ) PACKEDFILE "building\pbm\inspirat\sq2mz162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000145 ) PACKEDFILE "building\pbm\inspirat\sq2mz163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000146 ) PACKEDFILE "building\pbm\inspirat\sq2mz164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000147 ) PACKEDFILE "building\pbm\inspirat\sq2mz165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000148 ) PACKEDFILE "building\pbm\inspirat\sq2mz166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000149 ) PACKEDFILE "building\pbm\inspirat\sq2mz167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014a ) PACKEDFILE "building\pbm\inspirat\sq2mz168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014b ) PACKEDFILE "building\pbm\inspirat\sq2mz169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014c ) PACKEDFILE "building\pbm\inspirat\sq2mz170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014d ) PACKEDFILE "building\pbm\inspirat\sq2mz171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014e ) PACKEDFILE "building\pbm\inspirat\sq2mz172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000014f ) PACKEDFILE "building\pbm\inspirat\sq2mz173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000150 ) PACKEDFILE "building\pbm\inspirat\sq2mz174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000151 ) PACKEDFILE "building\pbm\inspirat\sq2mz175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000152 ) PACKEDFILE "building\pbm\inspirat\sq2mz176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000153 ) PACKEDFILE "building\pbm\inspirat\sq2mz177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000154 ) PACKEDFILE "building\pbm\inspirat\sq2mz178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000155 ) PACKEDFILE "building\pbm\inspirat\sq2mz179.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000156 ) PACKEDFILE "building\pbm\inspirat\sq2mz180.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000157 ) PACKEDFILE "building\pbm\inspirat\sq2mz181.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000158 ) PACKEDFILE "building\pbm\inspirat\sq2mz182.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000159 ) PACKEDFILE "building\pbm\inspirat\sq2mz183.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015a ) PACKEDFILE "building\pbm\inspirat\sq2mz184.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015b ) PACKEDFILE "building\pbm\inspirat\sq2mz185.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015c ) PACKEDFILE "building\pbm\inspirat\sq2mz186.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015d ) PACKEDFILE "building\pbm\inspirat\sq2mz187.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015e ) PACKEDFILE "building\pbm\inspirat\sq2mz188.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000015f ) PACKEDFILE "building\pbm\inspirat\sq2mz189.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000160 ) PACKEDFILE "building\pbm\inspirat\sq2mz190.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000161 ) PACKEDFILE "building\pbm\inspirat\sq2mz191.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000162 ) PACKEDFILE "building\pbm\inspirat\sq2mz192.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000163 ) PACKEDFILE "building\pbm\inspirat\sq2mz193.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000164 ) PACKEDFILE "building\pbm\inspirat\sq2mz194.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000165 ) PACKEDFILE "building\pbm\inspirat\sq2mz195.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000166 ) PACKEDFILE "building\pbm\inspirat\sq2mz196.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000167 ) PACKEDFILE "building\pbm\inspirat\sq2mz197.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000168 ) PACKEDFILE "building\pbm\inspirat\sq2mz198.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000169 ) PACKEDFILE "building\pbm\inspirat\sq2mz199.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016a ) PACKEDFILE "building\pbm\inspirat\sq2mz200.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016b ) PACKEDFILE "building\pbm\inspirat\sq2mz201.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019d ) PACKEDFILE "building\pbm\inspirat\sq3mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019e ) PACKEDFILE "building\pbm\inspirat\sq3mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000019f ) PACKEDFILE "building\pbm\inspirat\sq3mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a0 ) PACKEDFILE "building\pbm\inspirat\sq3mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a1 ) PACKEDFILE "building\pbm\inspirat\sq3mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a2 ) PACKEDFILE "building\pbm\inspirat\sq3mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a3 ) PACKEDFILE "building\pbm\inspirat\sq3mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a4 ) PACKEDFILE "building\pbm\inspirat\sq3mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a5 ) PACKEDFILE "building\pbm\inspirat\sq3mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a6 ) PACKEDFILE "building\pbm\inspirat\sq3mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a7 ) PACKEDFILE "building\pbm\inspirat\sq3mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a8 ) PACKEDFILE "building\pbm\inspirat\sq3mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001a9 ) PACKEDFILE "building\pbm\inspirat\sq3mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001aa ) PACKEDFILE "building\pbm\inspirat\sq3mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ab ) PACKEDFILE "building\pbm\inspirat\sq3mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ac ) PACKEDFILE "building\pbm\inspirat\sq3mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ad ) PACKEDFILE "building\pbm\inspirat\sq3mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ae ) PACKEDFILE "building\pbm\inspirat\sq3mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001af ) PACKEDFILE "building\pbm\inspirat\sq3mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b0 ) PACKEDFILE "building\pbm\inspirat\sq3mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b1 ) PACKEDFILE "building\pbm\inspirat\sq3mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b2 ) PACKEDFILE "building\pbm\inspirat\sq3mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b3 ) PACKEDFILE "building\pbm\inspirat\sq3mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b4 ) PACKEDFILE "building\pbm\inspirat\sq3mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b5 ) PACKEDFILE "building\pbm\inspirat\sq3mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b6 ) PACKEDFILE "building\pbm\inspirat\sq3mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b7 ) PACKEDFILE "building\pbm\inspirat\sq3mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b8 ) PACKEDFILE "building\pbm\inspirat\sq3mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001b9 ) PACKEDFILE "building\pbm\inspirat\sq3mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ba ) PACKEDFILE "building\pbm\inspirat\sq3mz30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001bb ) PACKEDFILE "building\pbm\inspirat\sq3mz31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001bc ) PACKEDFILE "building\pbm\inspirat\sq3mz32.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001cf ) PACKEDFILE "building\pbm\inspirat\sq4mz1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d0 ) PACKEDFILE "building\pbm\inspirat\sq4mz2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d1 ) PACKEDFILE "building\pbm\inspirat\sq4mz3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d2 ) PACKEDFILE "building\pbm\inspirat\sq4mz4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d3 ) PACKEDFILE "building\pbm\inspirat\sq4mz5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d4 ) PACKEDFILE "building\pbm\inspirat\sq4mz6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d5 ) PACKEDFILE "building\pbm\inspirat\sq4mz7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d6 ) PACKEDFILE "building\pbm\inspirat\sq4mz8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d7 ) PACKEDFILE "building\pbm\inspirat\sq4mz9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d8 ) PACKEDFILE "building\pbm\inspirat\sq4mz10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001d9 ) PACKEDFILE "building\pbm\inspirat\sq4mz11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001da ) PACKEDFILE "building\pbm\inspirat\sq4mz12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001db ) PACKEDFILE "building\pbm\inspirat\sq4mz13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dc ) PACKEDFILE "building\pbm\inspirat\sq4mz14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001dd ) PACKEDFILE "building\pbm\inspirat\sq4mz15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001de ) PACKEDFILE "building\pbm\inspirat\sq4mz16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001df ) PACKEDFILE "building\pbm\inspirat\sq4mz17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e0 ) PACKEDFILE "building\pbm\inspirat\sq4mz18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e1 ) PACKEDFILE "building\pbm\inspirat\sq4mz19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e2 ) PACKEDFILE "building\pbm\inspirat\sq4mz20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e3 ) PACKEDFILE "building\pbm\inspirat\sq4mz21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e4 ) PACKEDFILE "building\pbm\inspirat\sq4mz22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e5 ) PACKEDFILE "building\pbm\inspirat\sq4mz23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e6 ) PACKEDFILE "building\pbm\inspirat\sq4mz24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e7 ) PACKEDFILE "building\pbm\inspirat\sq4mz25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e8 ) PACKEDFILE "building\pbm\inspirat\sq4mz26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001e9 ) PACKEDFILE "building\pbm\inspirat\sq4mz27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ea ) PACKEDFILE "building\pbm\inspirat\sq4mz28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001eb ) PACKEDFILE "building\pbm\inspirat\sq4mz29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000001ec ) PACKEDFILE "building\pbm\inspirat\sq4mz30.pbm" ENDCHUNK -#line 53 "H:\\BUILD\\SOC\\src\\building\\inspirat.cht" - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, 0x00000099 ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - - If ((0x00010000->kstEntry) == 0x0006); - 0x00010000->kstEntry = (0x0002); - - - - - Else; - 0x00010000->fHelpOn = (0); - - End; - - .fEnableAccel = 0; - - ChangeStateThis((0x00010000->kstEntry)); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt=0x00000068; - Cell( cnt, 0,0, 0 ); - - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - - If( (0x00010000->fHelpOn) ); - CreateHelpGob( 0x00011400, 0x00018557 ); - End; - - While (1); - While( cnt <= 0x0000006e ); - Cell( cnt++, 0, 0, 9); - End; - - cnt = 0x0000006d; - While( cnt >= 0x00000069 ); - Cell( cnt--, 0, 0, 9); - End; - - SetNoSlipThis( 1 ); - rnd = Rnd( 100 ); - If( rnd < 20 ); - If( rnd < 14 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018032, 0, 0x00010000, 1, 0, 998); - cnt=0x00000040; - While( cnt < 0x0000004e ); - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - If( rnd > 5 ); - cnt=0x0000004e; - While( cnt <= 0x00000068 ); - If( cnt == 0x00000052 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018033, 0, 0x00010000, 1, 0, 998); - End; - Cell( cnt++, 0, 0, 6 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - End; - SetNoSlipThis( 0 ); - End; - - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x000000a4, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x0001140d, 0x0001140d ); - Cell( 0x000000a4,0,0, 100 ); - - - While( PlayingGob( 0x0001140d )); - Cell( 0x000000a4, 0, 0, 10 ); - End; - DestroyGob( 0x0001140d ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0002 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - - - - - - - - Cell( 0x00000068,0,0, 1 ); - - - While ( !FGobExists(0x00015100) && !FGobExists(0x00012205) ); - Cell( 0,0,0, 50 ); - End; - - While( FGobExists(0x00015100) || FGobExists(0x00012205) ); - - Cell( 0,0,0, 50 ); - End; - - - If (.fEnableAccel); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - .fEnableAccel = 0; - End; - - - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - ChangeStateThis( 0x0002 ); - ENDCHUNK; - - - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x0000019e, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x0001140e, 0x0001140e ); - Cell( 0x0000019e,0,0, 100 ); - - - While( PlayingGob( 0x0001140e )); - Cell( 0x0000019e, 0, 0, 10 ); - End; - DestroyGob( 0x0001140e ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - .fEnableAccel = 1; - - EnqueueCid(50095, 1, 0x00011400, 0x00012205, 0, 0); - ChangeStateThis( 0x0005 ); - ENDCHUNK; - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - Cell( 0x000001d0, 0,0, 1 ); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - CreateChildGob( GidParThis(), 0x0001140f, 0x0001140f ); - Cell( 0x000001d0,0,0, 100 ); - - - While( PlayingGob( 0x0001140f )); - Cell( 0x000001d0, 0, 0, 10 ); - End; - DestroyGob( 0x0001140f ); - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - Transition(3, 0, 60, 0xffffffff, 0xFFFFFFFF ); - - - ::nBioPage = 0; ::fBioCtrl = 1; CreateChildGob( 0x00011400, 0x00015100, 0x00015100 ); - ChangeStateThis( 0x0005 ); - ENDCHUNK; - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - SetNoSlipThis( 0 ); - If( (0x00010000->fHelpOn) == 0 ); - 0x00010000->fHelpOn = (1); - 0x00010000->fIdeasPS = (0); - ChangeStateGob( 0x00011401, 0x0003 ); - Elif( (0x00010000->fHelpOn) == 1 && StateThis() == 0x0002); - 0x00010000->fHelpOn = (0); - DestroyGob( 0x00016008 ); - Elif( (0x00010000->fHelpOn) == 1 ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateThis( 0x0002 ); - End; - ENDCHUNK - -CHUNK( 'GLOP', 0x00018557, ) SCRIPT - If( _parm[0] == 0 ); - - Elif( _parm[0] == 1 ); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00011401, 0x0007 ); - - Elif( _parm[0] == 2 ); - DestroyGob( 0x00016008 ); - ChangeStateGob( 0x00011401, 0x0008 ); - End; -ENDCHUNK - -SET _curgok = 0x00011402 CHUNK( 'GOKD', 0x00011402, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\SplotMsk.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - 0x00010000->fHelpOn = (0); - If( FGobExists( 0x00016008 ) ); - DestroyGob( 0x00016008 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateGob( 0x00011401, 0x0007 ); - ENDCHUNK - -SET _curgok = 0x00011403 CHUNK( 'GOKD', 0x00011403, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\TalntMsk.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - 0x00010000->fHelpOn = (0); - If( FGobExists( 0x00016008 ) ); - DestroyGob( 0x00016008 ); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateGob( 0x00011401, 0x0008 ); - ENDCHUNK - - -SET _curgok = 0x00011501 CHUNK( 'GOKD', 0x00011501, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\ins2door.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); - ENDCHUNK - -SET _curgok = 0x00011503 CHUNK( 'GOKD', 0x00011503, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\ins2map.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); - ENDCHUNK - -SET _curgok = 0x00011502 CHUNK( 'GOKD', 0x00011502, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\ins2quit.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; - ENDCHUNK - - - - -SET _curgok = 0x00012205 CHUNK( 'GOKD', 0x00012205, ) SHORT BO OSK LONG 0 LONG 0 0 0 1000 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\splot0.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - CreateChildThis( 0x00012206, 0x00012206 ); - CreateChildThis( 0x00012207, 0x00012207 ); - CreateChildThis( 0x00012208, 0x00012208 ); - CreateChildThis( 0x00012209, 0x00012209 ); - CreateChildThis( 0x0001220a, 0x0001220a ); - CreateChildThis( 0x0001220b, 0x0001220b ); - CreateChildThis( 0x0001220c, 0x0001220c ); - CreateChildThis( 0x0001220d, 0x0001220d ); - CreateHelpThis( 0x00018558 ); - EnqueueCid(50083, 0x00012205, 0x0001220d, 0, 0, 0); - CreateChildThis( 0x0001220e, 0x0001220e ); - ENDCHUNK - - -SET _curgok = 0x0001220e CHUNK( 'GOKD', 0x0001220e, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 48 95 591 401 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x0001220d CHUNK( 'GOKD', 0x0001220d, ) SHORT BO OSK LONG 1 - LONG 0 0 0 0 - LONG 0 0 0x00000000 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 48 95 591 401 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x00012206 CHUNK( 'GOKD', 0x00012206, ) SHORT BO OSK LONG 1 - LONG 0 600 194 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\bigarm2.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\bigarm3.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\bigarm4.pbm" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\bigarm1.pbm" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\bigarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob( 0x00012207, 0x0002 ); - ChangeStateGob( 0x00012208, 0x0002 ); - ChangeStateGob( 0x00012209, 0x0002 ); - ChangeStateGob( 0x0001220a, 0x0002 ); - - ChangeStateGob( 0x0001220b, 0x0002 ); - EnqueueCid(50084, 0x00012205, 1, 1, 1, 1); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - CreateHelpGob( GidParThis(), 0x00018559 ); - End; - ENDCHUNK - - - - - -SET _curgok = 0x00012207 CHUNK( 'GOKD', 0x00012207, ) SHORT BO OSK LONG 1 - LONG 0 427 2 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\actarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\actarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\actarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\actarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\actarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - EnqueueCid(50084, 0x00012205, 0, 0, 1, 0); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - -SET _curgok = 0x00012208 CHUNK( 'GOKD', 0x00012208, ) SHORT BO OSK LONG 1 - LONG 0 289 2 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\cmrarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\cmrarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\cmrarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\cmrarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\cmrarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50084, 0x00012205, 0, 1, 0, 0); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - -SET _curgok = 0x00012209 CHUNK( 'GOKD', 0x00012209, ) SHORT BO OSK LONG 1 - LONG 0 566 2 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\muscarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\muscarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\muscarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\muscarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\muscarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50084, 0x00012205, 0, 0, 0, 1); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - -SET _curgok = 0x0001220a CHUNK( 'GOKD', 0x0001220a, ) SHORT BO OSK LONG 1 - LONG 0 146 1 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) FILE "building\sound\inspirat\splthndl.wav" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\inspirat\scnarm2.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\inspirat\scnarm3.pbm" ENDCHUNK; - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\inspirat\scnarm4.pbm" ENDCHUNK; - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\scnarm1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\scnarm5.pbm" ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001B _st ) SCRIPT - Cell( 0x00000041, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000043, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001E _st ) SCRIPT - Cell( 0x00000043, 0, 0, 9 ); - Cell( 0x00000042, 0, 0, 9 ); - Cell( 0x00000041, 0, 0, 9 ); - Cell( SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 9 ); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50084, 0x00012205, 1, 0, 0, 0); - EnqueueCid(50085, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - - -SET _curgok = 0x0001220b CHUNK( 'GOKD', 0x0001220b, ) SHORT BO OSK LONG 1 - LONG 0 471 426 0 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\toolboxd.pbm" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\toolbox1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\toolbox2.pbm" ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - - EnqueueCid(50086, 0x00012205, 0, 0, 0, 0); - - - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - RunScriptGob(0x00010000, 0x0028, 0x00011400, 0x0002, 0xFFFFFFFF);; - ENDCHUNK - - - - -SET _curgok = 0x0001220c CHUNK( 'GOKD', 0x0001220c, ) SHORT BO OSK LONG 1 - LONG 0 521 426 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\inspirat\cancel1.pbm" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) PACKEDFILE "building\pbm\inspirat\cancel2.pbm" ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If( FGobExists( 0x00016019 ) ); - DestroyGob( 0x00016019 ); - End; - EnqueueCid(50087, 0x00012205, 0, 0, 0, 0); - ENDCHUNK - - - - - - - -SET _curgok = 0x00011404 CHUNK( 'GOKD', 0x00011404, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((39 > 31) ? ( ::fBio2 & (1<<(39&31)) ) : ( ::fBio1 & (1<<(39&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (39 & 31); If (39 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 39; ::fBioCtrl = 0; CreateChildGob( 0x00011400, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - -SET _curgok = 0x0001140a CHUNK( 'GOKD', 0x0001140a, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea4m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((7 > 31) ? ( ::fBio2 & (1<<(7&31)) ) : ( ::fBio1 & (1<<(7&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (7 & 31); If (7 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 7; ::fBioCtrl = 0; CreateChildGob( 0x00011700, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001140b CHUNK( 'GOKD', 0x0001140b, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea4m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If( ((8 > 31) ? ( ::fBio2 & (1<<(8&31)) ) : ( ::fBio1 & (1<<(8&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (8 & 31); If (8 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 8; ::fBioCtrl = 0; CreateChildGob( 0x00011700, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001140c CHUNK( 'GOKD', 0x0001140c, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea4m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((9 > 31) ? ( ::fBio2 & (1<<(9&31)) ) : ( ::fBio1 & (1<<(9&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (9 & 31); If (9 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 9; ::fBioCtrl = 0; CreateChildGob( 0x00011700, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011406 CHUNK( 'GOKD', 0x00011406, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea3m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((10 > 31) ? ( ::fBio2 & (1<<(10&31)) ) : ( ::fBio1 & (1<<(10&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (10 & 31); If (10 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 10; ::fBioCtrl = 0; CreateChildGob( 0x00011600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011407 CHUNK( 'GOKD', 0x00011407, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea3m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((11 > 31) ? ( ::fBio2 & (1<<(11&31)) ) : ( ::fBio1 & (1<<(11&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (11 & 31); If (11 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 11; ::fBioCtrl = 0; CreateChildGob( 0x00011600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011408 CHUNK( 'GOKD', 0x00011408, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea3m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((12 > 31) ? ( ::fBio2 & (1<<(12&31)) ) : ( ::fBio1 & (1<<(12&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (12 & 31); If (12 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 12; ::fBioCtrl = 0; CreateChildGob( 0x00011600, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011405 CHUNK( 'GOKD', 0x00011405, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\inspirat\idea2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((13 > 31) ? ( ::fBio2 & (1<<(13&31)) ) : ( ::fBio1 & (1<<(13&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (13 & 31); If (13 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 13; ::fBioCtrl = 0; CreateChildGob( 0x00011500, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 69 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - - - - - - - - -CHUNK( 'WAVE', 0x00018113, ) FILE "building\sound\studio\tvpop.wav" ENDCHUNK -SET _curgok = 0x00011801 CHUNK( 'GOKD', 0x00011801, ) SHORT BO OSK LONG 0 LONG 0 0 0 120 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\st1tbx.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - cnt = 0x00000040; - Cell( cnt++, 0,0, 6 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018113, 0, 0x00010000, 1, 0, 998); - CreateChildGob( 0x00011800, 0x00011804, 0x00011804 ); - While (cnt <= 0x00000045); - Cell(cnt++, 0,0, 6); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\studioBx.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\studio\box1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\studio\box2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\studio\box3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\studio\box4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\studio\box5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\studio\box6.pbm" ENDCHUNK -#line 30 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - -SET _curgok = 0x00011804 CHUNK( 'GOKD', 0x00011804, ) SHORT BO OSK LONG 0 LONG 0 0 0 810 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cnt = 0x00000040; - SetNoSlipThis( 1 ); - While (cnt <= 0x00000055); - Cell(cnt++, 0,0, 6); - End; - SetNoSlipThis( 0 ); - Cell( cnt, 0,0, 6 ); - ChangeStateGob( 0x00011802, 0x0004 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\studioTv.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\studio\tv1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\studio\tv2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\studio\tv3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\studio\tv4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\studio\tv5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\studio\tv6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\studio\tv7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\studio\tv8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\studio\tv9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\studio\tv10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\studio\tv11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\studio\tv12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\studio\tv13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\studio\tv14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\studio\tv15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\studio\tv16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\studio\tv17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\studio\tv18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\studio\tv19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\studio\tv20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\studio\tv21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\studio\tv22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\studio\tv23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\studio\tv24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\studio\tv25.pbm" ENDCHUNK -#line 44 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - - - - - -CHUNK( 'WAVE', 0x00018103, ) FILE "building\sound\studio\Std1A.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018104, ) FILE "building\sound\studio\VO97A.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018105, ) FILE "building\sound\studio\VO97B.wav" ENDCHUNK - -CHUNK( 'WAVE', 0x0001803a, ) FILE "building\sound\studio\Std1B.wav" ENDCHUNK - - -CHUNK( 'WAVE', 0x0001810e, ) FILE "building\sound\studio\STD4.wav" ENDCHUNK - - -SET _curgok = 0x00011803 CHUNK( 'GOKD', 0x00011803, ) SHORT BO OSK LONG 0 LONG 0 0 0 999 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "tools1.avi" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - - StopThis(); - ENDCHUNK - - - -SET _curgok = 0x00011802 CHUNK( 'GOKD', 0x00011802, ) SHORT BO OSK LONG 0 LONG 0 0 0 111 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - - - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(0x00000084, 0, 0, 120); - If( ::fTransition ); Cell( 0, 0, 0, 60 ); ::fTransition = 0; End; - While (1); - - iAnimRnd = Rnd(3); - If (iAnimRnd == 0); - kcellStart = 0x00000040; - kcellEnd = 0x00000082; - Elif (iAnimRnd == 1); - kcellStart = 0x00000063; - kcellEnd = 0x00000082; - Else; - kcellStart = 0x00000040; - kcellEnd = 0x00000069; - End; - - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018103 + iAnimRnd, 0, 0x00010000, 1, 0, 998); - - i = kcellStart; - Cell(i++, 0, 0, 6); - SetNoSlipThis( 1 ); - While (i < kcellEnd); - Cell(i, 0, 0, 6); - i++; - End; - SetNoSlipThis( 0 ); - Cell( kcellEnd, 0,0, 6 ); - - - i=0x00000202; - While (i <= 0x00000245); - Cell(i, 0, 0, 6); - i++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x0001803a, 0, 0x00010000, 1, 0, 998); - i = 0x00000084; - While (i <= 0x000000c9); - Cell(i, 0,0, 6); - i++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - 0x00010000->fHelpOn = (0); - DestroyGob(0x00016007); - ChangeStateThis(0x0002); - ENDCHUNK - - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0,0, 1 ); - DestroyGob( 0x00011804 ); - DestroyGob( 0x00011801 ); - ChangeStateGob( 0x00011800, 0x0002 ); - - If( ::fStdIntro ); - - - ChangeStateGob( 0x00011802, 0x0005 ); - Exit(); - End; - - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ::fStdIntro = 1; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - CreateChildGob( GidParThis(), 0x00011803, 0x00011803 ); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st,0,0, 100 ); - While( PlayingGob( 0x00011803 )); - Cell( SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st, 0, 0, 10 ); - End; - 0x00010000->fStudioPS = (0); - ChangeStateThis( 0x0005 ); - ENDCHUNK - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - DestroyThis(); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - - - SetProp(0x23502, GetProp(0x23502) | 1); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If (!(0x00010000->fHelpOn)); - 0x00010000->fHelpOn = (1); - CreateHelpGob(0x00011800, 0x0001855a); - ChangeStateThis(0x0003); - Else; - DestroyGob(0x00016007); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - 0x00010000->fHelpOn = (0); - ChangeStateThis(0x0002); - End; - ENDCHUNK -#line 1 "H:\\BUILD\\SOC\\src\\building\\mzstudio.seq" - - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\studio\mczee1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\studio\mczee2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\studio\mczee3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\studio\mczee4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\studio\mczee5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\studio\mczee6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\studio\mczee7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\studio\mczee8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\studio\mczee9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\studio\mczee10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\studio\mczee11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\studio\mczee12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\studio\mczee13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\studio\mczee14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\studio\mczee15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\studio\mczee16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\studio\mczee17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\studio\mczee18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\studio\mczee19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\studio\mczee20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\studio\mczee21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\studio\mczee22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\studio\mczee23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\studio\mczee24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\studio\mczee25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\studio\mczee26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\studio\mczee27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\studio\mczee28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\studio\mczee29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\studio\mczee30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\studio\mczee31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\studio\mczee32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\studio\mczee33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\studio\mczee34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\studio\mczee35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\studio\mczee36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\studio\mczee37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\studio\mczee38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\studio\mczee39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\studio\mczee40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\studio\mczee41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\studio\mczee42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\studio\mczee43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\studio\mczee44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\studio\mczee45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\studio\mczee46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\studio\mczee47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\studio\mczee48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\studio\mczee49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\studio\mczee50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\studio\mczee51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\studio\mczee52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\studio\mczee53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\studio\mczee54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\studio\mczee55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\studio\mczee56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\studio\mczee57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\studio\mczee58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\studio\mczee59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\studio\mczee60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\studio\mczee61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\studio\mczee62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\studio\mczee63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\studio\mczee64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\studio\mczee65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\studio\mczee66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\studio\mczee67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\studio\mczee68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\studio\mczee69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\studio\mczee70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\studio\mczee71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\studio\mczee72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\studio\mczee73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\studio\mczee74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\studio\mczee75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\studio\mczee76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\studio\mczee77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\studio\mczee78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\studio\mczee79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\studio\mczee80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\studio\mczee81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\studio\mczee82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\studio\mczee83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\studio\mczee84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\studio\mczee85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\studio\mczee86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\studio\mczee87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\studio\mczee88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\studio\mczee89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\studio\mczee90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\studio\mczee91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\studio\mczee92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\studio\mczee93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\studio\mczee94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\studio\mczee95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\studio\mczee96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\studio\mczee97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\studio\mczee98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\studio\mczee99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\studio\mczee100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\studio\mczee101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\studio\mczee102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\studio\mczee103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\studio\mczee104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\studio\mczee105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\studio\mczee106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\studio\mczee107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\studio\mczee108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\studio\mczee109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\studio\mczee110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\studio\mczee111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\studio\mczee112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\studio\mczee113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\studio\mczee114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\studio\mczee115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\studio\mczee116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\studio\mczee117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\studio\mczee118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\studio\mczee119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\studio\mczee120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\studio\mczee121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\studio\mczee122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\studio\mczee123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\studio\mczee124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\studio\mczee125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\studio\mczee126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\studio\mczee127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\studio\mczee128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\studio\mczee129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\studio\mczee130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\studio\mczee131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\studio\mczee132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\studio\mczee133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\studio\mczee134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\studio\mczee135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\studio\mczee136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\studio\mczee137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\studio\mczee138.pbm" ENDCHUNK - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000202 ) PACKEDFILE "building\pbm\studio\cyc1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000203 ) PACKEDFILE "building\pbm\studio\cyc2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000204 ) PACKEDFILE "building\pbm\studio\cyc3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000205 ) PACKEDFILE "building\pbm\studio\cyc4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000206 ) PACKEDFILE "building\pbm\studio\cyc5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000207 ) PACKEDFILE "building\pbm\studio\cyc6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000208 ) PACKEDFILE "building\pbm\studio\cyc7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000209 ) PACKEDFILE "building\pbm\studio\cyc8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020a ) PACKEDFILE "building\pbm\studio\cyc9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020b ) PACKEDFILE "building\pbm\studio\cyc10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020c ) PACKEDFILE "building\pbm\studio\cyc11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020d ) PACKEDFILE "building\pbm\studio\cyc12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020e ) PACKEDFILE "building\pbm\studio\cyc13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000020f ) PACKEDFILE "building\pbm\studio\cyc14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000210 ) PACKEDFILE "building\pbm\studio\cyc15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000211 ) PACKEDFILE "building\pbm\studio\cyc16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000212 ) PACKEDFILE "building\pbm\studio\cyc17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000213 ) PACKEDFILE "building\pbm\studio\cyc18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000214 ) PACKEDFILE "building\pbm\studio\cyc19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000215 ) PACKEDFILE "building\pbm\studio\cyc20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000216 ) PACKEDFILE "building\pbm\studio\cyc21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000217 ) PACKEDFILE "building\pbm\studio\cyc22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000218 ) PACKEDFILE "building\pbm\studio\cyc23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000219 ) PACKEDFILE "building\pbm\studio\cyc24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021a ) PACKEDFILE "building\pbm\studio\cyc25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021b ) PACKEDFILE "building\pbm\studio\cyc26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021c ) PACKEDFILE "building\pbm\studio\cyc27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021d ) PACKEDFILE "building\pbm\studio\cyc28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021e ) PACKEDFILE "building\pbm\studio\cyc29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000021f ) PACKEDFILE "building\pbm\studio\cyc30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000220 ) PACKEDFILE "building\pbm\studio\cyc31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000221 ) PACKEDFILE "building\pbm\studio\cyc32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000222 ) PACKEDFILE "building\pbm\studio\cyc33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000223 ) PACKEDFILE "building\pbm\studio\cyc34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000224 ) PACKEDFILE "building\pbm\studio\cyc35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000225 ) PACKEDFILE "building\pbm\studio\cyc36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000226 ) PACKEDFILE "building\pbm\studio\cyc37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000227 ) PACKEDFILE "building\pbm\studio\cyc38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000228 ) PACKEDFILE "building\pbm\studio\cyc39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000229 ) PACKEDFILE "building\pbm\studio\cyc40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022a ) PACKEDFILE "building\pbm\studio\cyc41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022b ) PACKEDFILE "building\pbm\studio\cyc42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022c ) PACKEDFILE "building\pbm\studio\cyc43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022d ) PACKEDFILE "building\pbm\studio\cyc44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022e ) PACKEDFILE "building\pbm\studio\cyc45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000022f ) PACKEDFILE "building\pbm\studio\cyc46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000230 ) PACKEDFILE "building\pbm\studio\cyc47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000231 ) PACKEDFILE "building\pbm\studio\cyc48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000232 ) PACKEDFILE "building\pbm\studio\cyc49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000233 ) PACKEDFILE "building\pbm\studio\cyc50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000234 ) PACKEDFILE "building\pbm\studio\cyc51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000235 ) PACKEDFILE "building\pbm\studio\cyc52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000236 ) PACKEDFILE "building\pbm\studio\cyc53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000237 ) PACKEDFILE "building\pbm\studio\cyc54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000238 ) PACKEDFILE "building\pbm\studio\cyc55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000239 ) PACKEDFILE "building\pbm\studio\cyc56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023a ) PACKEDFILE "building\pbm\studio\cyc57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023b ) PACKEDFILE "building\pbm\studio\cyc58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023c ) PACKEDFILE "building\pbm\studio\cyc59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023d ) PACKEDFILE "building\pbm\studio\cyc60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023e ) PACKEDFILE "building\pbm\studio\cyc61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000023f ) PACKEDFILE "building\pbm\studio\cyc62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000240 ) PACKEDFILE "building\pbm\studio\cyc63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000241 ) PACKEDFILE "building\pbm\studio\cyc64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000242 ) PACKEDFILE "building\pbm\studio\cyc65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000243 ) PACKEDFILE "building\pbm\studio\cyc66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000244 ) PACKEDFILE "building\pbm\studio\cyc67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000245 ) PACKEDFILE "building\pbm\studio\cyc68.pbm" ENDCHUNK -#line 187 "H:\\BUILD\\SOC\\src\\building\\studiobg.cht" - - -SET _curgok = 0x00011901 CHUNK( 'GOKD', 0x00011901, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\st2doors.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); -ENDCHUNK - -SET _curgok = 0x00011903 CHUNK( 'GOKD', 0x00011903, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\st2map.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); -ENDCHUNK - -SET _curgok = 0x00011902 CHUNK( 'GOKD', 0x00011902, ) SHORT BO OSK LONG 0 LONG 0 0 0 45 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "building\bitmaps\studio\st2exit.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; -ENDCHUNK - -SET _curgok = 0x00011904 CHUNK( 'GOKD', 0x00011904, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "building\pbm\studio\st2exit.pbm" ENDCHUNK - - - - - -SET _curgok = 0x00011805 CHUNK( 'GOKD', 0x00011805, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo1m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((38 > 31) ? ( ::fBio2 & (1<<(38&31)) ) : ( ::fBio1 & (1<<(38&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (38 & 31); If (38 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 38; ::fBioCtrl = 0; CreateChildGob( 0x00011800, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - - - -SET _curgok = 0x00011905 CHUNK( 'GOKD', 0x00011905, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((14 > 31) ? ( ::fBio2 & (1<<(14&31)) ) : ( ::fBio1 & (1<<(14&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (14 & 31); If (14 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 14; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011906 CHUNK( 'GOKD', 0x00011906, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((15 > 31) ? ( ::fBio2 & (1<<(15&31)) ) : ( ::fBio1 & (1<<(15&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (15 & 31); If (15 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 15; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011907 CHUNK( 'GOKD', 0x00011907, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((16 > 31) ? ( ::fBio2 & (1<<(16&31)) ) : ( ::fBio1 & (1<<(16&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (16 & 31); If (16 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 16; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011908 CHUNK( 'GOKD', 0x00011908, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo4m4.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((17 > 31) ? ( ::fBio2 & (1<<(17&31)) ) : ( ::fBio1 & (1<<(17&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (17 & 31); If (17 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 17; ::fBioCtrl = 0; CreateChildGob( 0x00011b00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x00011909 CHUNK( 'GOKD', 0x00011909, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo3m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((18 > 31) ? ( ::fBio2 & (1<<(18&31)) ) : ( ::fBio1 & (1<<(18&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (18 & 31); If (18 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 18; ::fBioCtrl = 0; CreateChildGob( 0x00011a00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190a CHUNK( 'GOKD', 0x0001190a, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo3m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((19 > 31) ? ( ::fBio2 & (1<<(19&31)) ) : ( ::fBio1 & (1<<(19&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (19 & 31); If (19 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 19; ::fBioCtrl = 0; CreateChildGob( 0x00011a00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190b CHUNK( 'GOKD', 0x0001190b, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo3m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((20 > 31) ? ( ::fBio2 & (1<<(20&31)) ) : ( ::fBio1 & (1<<(20&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (20 & 31); If (20 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 20; ::fBioCtrl = 0; CreateChildGob( 0x00011a00, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190c CHUNK( 'GOKD', 0x0001190c, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((21 > 31) ? ( ::fBio2 & (1<<(21&31)) ) : ( ::fBio1 & (1<<(21&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (21 & 31); If (21 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 21; ::fBioCtrl = 0; CreateChildGob( 0x00011900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190d CHUNK( 'GOKD', 0x0001190d, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((22 > 31) ? ( ::fBio2 & (1<<(22&31)) ) : ( ::fBio1 & (1<<(22&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (22 & 31); If (22 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 22; ::fBioCtrl = 0; CreateChildGob( 0x00011900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK - -SET _curgok = 0x0001190e CHUNK( 'GOKD', 0x0001190e, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\studio\stdo2m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((23 > 31) ? ( ::fBio2 & (1<<(23&31)) ) : ( ::fBio1 & (1<<(23&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (23 & 31); If (23 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 23; ::fBioCtrl = 0; CreateChildGob( 0x00011900, 0x00015100, 0x00015100 ); - End; - ENDCHUNK -#line 70 "H:\\BUILD\\SOC\\src\\building\\building.cht" -#line 1 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00018109, ) FILE "building\sound\projects\Prjt1.wav" ENDCHUNK - -CHUNK( 'WAVE', 0x00018112, ) FILE "building\sound\projects\monitor.wav" ENDCHUNK - -SET _curgok = 0x00011b08 CHUNK( 'GOKD', 0x00011b08, ) SHORT BO OSK LONG 2 - LONG 0 64 140 999 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "projt2.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - FilterCmdsThis( 100007, 0, 0x0021); - FilterCmdsThis( 40042, 0, 0x0021 ); - FilterCmdsThis( 100, 0, 0x0021 ); - FilterCmdsThis( 101, 0, 0x0021 ); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - StopThis(); - DestroyThis(); - Return( 0 ); - ENDCHUNK - - -SET _curgok = 0x00011b02 CHUNK( 'GOKD', 0x00011b02, ) SHORT BO OSK LONG 0 LONG 0 0 0 75 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\projects\prj1mon1.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ; - - DestroyGob( 0x00011c0d ); - - SetZThis( 2160 ); - If ( FGobExists(0x00016007)); - DestroyGob(0x00016007); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018112, 0, 0x00010000, 1, 0, 998); - cnt = 0x00000041; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x0000004f ); - Cell( cnt++, 0, 0, 6 ); - - End; - - CreateChildGob( 0x00011c00, 0x00011b05, 0x00011b05); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\PrjMon1.seq" -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\tvlan1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\projects\tvlan2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\projects\tvlan3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\projects\tvlan4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\projects\tvlan5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\projects\tvlan6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\projects\tvlan7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\projects\tvlan8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\projects\tvlan9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\projects\tvlan10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\projects\tvlan11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\projects\tvlan12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\projects\tvlan13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\projects\tvlan14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\projects\tvlan15.pbm" ENDCHUNK -#line 78 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - -SET _curgok = 0x00011c0d CHUNK( 'GOKD', 0x00011c0d, ) SHORT BO OSK LONG 2 LONG 0 0 0 150 LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "building\bitmaps\projects\holder1.bmp" ENDCHUNK - - -SET _curgok = 0x00011b03 CHUNK( 'GOKD', 0x00011b03, ) SHORT BO OSK LONG 0 LONG 0 0 0 155 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) PACKEDFILE "building\pbm\projects\prj1mon2.pbm" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - StartLongOp(); RunScriptGob( 0x00010000, 0x0023, (0x00000002) ); - ; - - DestroyGob( 0x00011c0e ); - - SetZThis( 2160 ); - - If ( FGobExists(0x00016007)); - DestroyGob(0x00016007); - End; - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018112, 0, 0x00010000, 1, 0, 998); - cnt = 0x00000041; - Cell( cnt++, 0, 0, 6 ); - SetNoSlipThis( 1 ); - While( cnt <= 0x0000004f ); - Cell( cnt++, 0, 0, 6 ); - End; - CreateChildGob(0x00011c00, 0x00011b06, 0x00011b06); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis( 0x0002 ); - ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\PrjMon2.seq" - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\tvran1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\projects\tvran2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\projects\tvran3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\projects\tvran4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\tvran5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\projects\tvran6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\projects\tvran7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\projects\tvran8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\projects\tvran9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\projects\tvran10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\projects\tvran11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\projects\tvran12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\projects\tvran13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\projects\tvran14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\projects\tvran15.pbm" ENDCHUNK -#line 110 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - -SET _curgok = 0x00011c0e CHUNK( 'GOKD', 0x00011c0e, ) SHORT BO OSK LONG 2 LONG 0 0 0 155 LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "building\bitmaps\projects\holder2.bmp" ENDCHUNK - - - - -SET _curgok = 0x00011b01 CHUNK( 'GOKD', 0x00011b01, ) SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - #line 1 "H:\\BUILD\\SOC\\src\\building\\melproj1.seq" - - - - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "building\pbm\projects\mel1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "building\pbm\projects\mel2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "building\pbm\projects\mel3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "building\pbm\projects\mel4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "building\pbm\projects\mel5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "building\pbm\projects\mel6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "building\pbm\projects\mel7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "building\pbm\projects\mel8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "building\pbm\projects\mel9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "building\pbm\projects\mel10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "building\pbm\projects\mel11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "building\pbm\projects\mel12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "building\pbm\projects\mel13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "building\pbm\projects\mel14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "building\pbm\projects\mel15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "building\pbm\projects\mel16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "building\pbm\projects\mel17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "building\pbm\projects\mel18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "building\pbm\projects\mel19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "building\pbm\projects\mel20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "building\pbm\projects\mel21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "building\pbm\projects\mel22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "building\pbm\projects\mel23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "building\pbm\projects\mel24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "building\pbm\projects\mel25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "building\pbm\projects\mel26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "building\pbm\projects\mel27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "building\pbm\projects\mel28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "building\pbm\projects\mel29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "building\pbm\projects\mel30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "building\pbm\projects\mel31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "building\pbm\projects\mel32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "building\pbm\projects\mel33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "building\pbm\projects\mel34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "building\pbm\projects\mel35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "building\pbm\projects\mel36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "building\pbm\projects\mel37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "building\pbm\projects\mel38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "building\pbm\projects\mel39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "building\pbm\projects\mel40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "building\pbm\projects\mel41.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000069 ) PACKEDFILE "building\pbm\projects\mel42.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006a ) PACKEDFILE "building\pbm\projects\mel43.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006b ) PACKEDFILE "building\pbm\projects\mel44.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006c ) PACKEDFILE "building\pbm\projects\mel45.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006d ) PACKEDFILE "building\pbm\projects\mel46.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006e ) PACKEDFILE "building\pbm\projects\mel47.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000006f ) PACKEDFILE "building\pbm\projects\mel48.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000070 ) PACKEDFILE "building\pbm\projects\mel49.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000071 ) PACKEDFILE "building\pbm\projects\mel50.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000072 ) PACKEDFILE "building\pbm\projects\mel51.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000073 ) PACKEDFILE "building\pbm\projects\mel52.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000074 ) PACKEDFILE "building\pbm\projects\mel53.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000075 ) PACKEDFILE "building\pbm\projects\mel54.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000076 ) PACKEDFILE "building\pbm\projects\mel55.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000077 ) PACKEDFILE "building\pbm\projects\mel56.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000078 ) PACKEDFILE "building\pbm\projects\mel57.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000079 ) PACKEDFILE "building\pbm\projects\mel58.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007a ) PACKEDFILE "building\pbm\projects\mel59.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007b ) PACKEDFILE "building\pbm\projects\mel60.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007c ) PACKEDFILE "building\pbm\projects\mel61.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007d ) PACKEDFILE "building\pbm\projects\mel62.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007e ) PACKEDFILE "building\pbm\projects\mel63.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000007f ) PACKEDFILE "building\pbm\projects\mel64.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000080 ) PACKEDFILE "building\pbm\projects\mel65.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000081 ) PACKEDFILE "building\pbm\projects\mel66.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000082 ) PACKEDFILE "building\pbm\projects\mel67.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000083 ) PACKEDFILE "building\pbm\projects\mel68.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000084 ) PACKEDFILE "building\pbm\projects\mel69.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000085 ) PACKEDFILE "building\pbm\projects\mel70.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000086 ) PACKEDFILE "building\pbm\projects\mel71.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000087 ) PACKEDFILE "building\pbm\projects\mel72.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000088 ) PACKEDFILE "building\pbm\projects\mel73.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000089 ) PACKEDFILE "building\pbm\projects\mel74.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008a ) PACKEDFILE "building\pbm\projects\mel75.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008b ) PACKEDFILE "building\pbm\projects\mel76.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008c ) PACKEDFILE "building\pbm\projects\mel77.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008d ) PACKEDFILE "building\pbm\projects\mel78.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008e ) PACKEDFILE "building\pbm\projects\mel79.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000008f ) PACKEDFILE "building\pbm\projects\mel80.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000090 ) PACKEDFILE "building\pbm\projects\mel81.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000091 ) PACKEDFILE "building\pbm\projects\mel82.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000092 ) PACKEDFILE "building\pbm\projects\mel83.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000093 ) PACKEDFILE "building\pbm\projects\mel84.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000094 ) PACKEDFILE "building\pbm\projects\mel85.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000095 ) PACKEDFILE "building\pbm\projects\mel86.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000096 ) PACKEDFILE "building\pbm\projects\mel87.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000097 ) PACKEDFILE "building\pbm\projects\mel88.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000098 ) PACKEDFILE "building\pbm\projects\mel89.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000099 ) PACKEDFILE "building\pbm\projects\mel90.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009a ) PACKEDFILE "building\pbm\projects\mel91.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009b ) PACKEDFILE "building\pbm\projects\mel92.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009c ) PACKEDFILE "building\pbm\projects\mel93.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009d ) PACKEDFILE "building\pbm\projects\mel94.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009e ) PACKEDFILE "building\pbm\projects\mel95.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000009f ) PACKEDFILE "building\pbm\projects\mel96.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a0 ) PACKEDFILE "building\pbm\projects\mel97.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a1 ) PACKEDFILE "building\pbm\projects\mel98.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a2 ) PACKEDFILE "building\pbm\projects\mel99.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a3 ) PACKEDFILE "building\pbm\projects\mel100.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a4 ) PACKEDFILE "building\pbm\projects\mel101.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a5 ) PACKEDFILE "building\pbm\projects\mel102.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a6 ) PACKEDFILE "building\pbm\projects\mel103.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a7 ) PACKEDFILE "building\pbm\projects\mel104.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a8 ) PACKEDFILE "building\pbm\projects\mel105.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000a9 ) PACKEDFILE "building\pbm\projects\mel106.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000aa ) PACKEDFILE "building\pbm\projects\mel107.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ab ) PACKEDFILE "building\pbm\projects\mel108.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ac ) PACKEDFILE "building\pbm\projects\mel109.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ad ) PACKEDFILE "building\pbm\projects\mel110.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ae ) PACKEDFILE "building\pbm\projects\mel111.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000af ) PACKEDFILE "building\pbm\projects\mel112.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b0 ) PACKEDFILE "building\pbm\projects\mel113.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b1 ) PACKEDFILE "building\pbm\projects\mel114.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b2 ) PACKEDFILE "building\pbm\projects\mel115.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b3 ) PACKEDFILE "building\pbm\projects\mel116.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b4 ) PACKEDFILE "building\pbm\projects\mel117.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b5 ) PACKEDFILE "building\pbm\projects\mel118.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b6 ) PACKEDFILE "building\pbm\projects\mel119.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b7 ) PACKEDFILE "building\pbm\projects\mel120.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b8 ) PACKEDFILE "building\pbm\projects\mel121.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000b9 ) PACKEDFILE "building\pbm\projects\mel122.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ba ) PACKEDFILE "building\pbm\projects\mel123.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bb ) PACKEDFILE "building\pbm\projects\mel124.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bc ) PACKEDFILE "building\pbm\projects\mel125.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bd ) PACKEDFILE "building\pbm\projects\mel126.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000be ) PACKEDFILE "building\pbm\projects\mel127.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000bf ) PACKEDFILE "building\pbm\projects\mel128.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c0 ) PACKEDFILE "building\pbm\projects\mel129.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c1 ) PACKEDFILE "building\pbm\projects\mel130.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c2 ) PACKEDFILE "building\pbm\projects\mel131.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c3 ) PACKEDFILE "building\pbm\projects\mel132.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c4 ) PACKEDFILE "building\pbm\projects\mel133.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c5 ) PACKEDFILE "building\pbm\projects\mel134.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c6 ) PACKEDFILE "building\pbm\projects\mel135.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c7 ) PACKEDFILE "building\pbm\projects\mel136.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c8 ) PACKEDFILE "building\pbm\projects\mel137.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000c9 ) PACKEDFILE "building\pbm\projects\mel138.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ca ) PACKEDFILE "building\pbm\projects\mel139.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cb ) PACKEDFILE "building\pbm\projects\mel140.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cc ) PACKEDFILE "building\pbm\projects\mel141.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cd ) PACKEDFILE "building\pbm\projects\mel142.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ce ) PACKEDFILE "building\pbm\projects\mel143.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000cf ) PACKEDFILE "building\pbm\projects\mel144.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d0 ) PACKEDFILE "building\pbm\projects\mel145.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d1 ) PACKEDFILE "building\pbm\projects\mel146.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d2 ) PACKEDFILE "building\pbm\projects\mel147.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d3 ) PACKEDFILE "building\pbm\projects\mel148.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d4 ) PACKEDFILE "building\pbm\projects\mel149.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d5 ) PACKEDFILE "building\pbm\projects\mel150.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d6 ) PACKEDFILE "building\pbm\projects\mel151.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d7 ) PACKEDFILE "building\pbm\projects\mel152.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d8 ) PACKEDFILE "building\pbm\projects\mel153.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000d9 ) PACKEDFILE "building\pbm\projects\mel154.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000da ) PACKEDFILE "building\pbm\projects\mel155.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000db ) PACKEDFILE "building\pbm\projects\mel156.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dc ) PACKEDFILE "building\pbm\projects\mel157.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000dd ) PACKEDFILE "building\pbm\projects\mel158.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000de ) PACKEDFILE "building\pbm\projects\mel159.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000df ) PACKEDFILE "building\pbm\projects\mel160.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e0 ) PACKEDFILE "building\pbm\projects\mel161.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e1 ) PACKEDFILE "building\pbm\projects\mel162.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e2 ) PACKEDFILE "building\pbm\projects\mel163.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e3 ) PACKEDFILE "building\pbm\projects\mel164.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e4 ) PACKEDFILE "building\pbm\projects\mel165.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e5 ) PACKEDFILE "building\pbm\projects\mel166.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e6 ) PACKEDFILE "building\pbm\projects\mel167.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e7 ) PACKEDFILE "building\pbm\projects\mel168.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e8 ) PACKEDFILE "building\pbm\projects\mel169.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000e9 ) PACKEDFILE "building\pbm\projects\mel170.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ea ) PACKEDFILE "building\pbm\projects\mel171.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000eb ) PACKEDFILE "building\pbm\projects\mel172.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ec ) PACKEDFILE "building\pbm\projects\mel173.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ed ) PACKEDFILE "building\pbm\projects\mel174.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ee ) PACKEDFILE "building\pbm\projects\mel175.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000ef ) PACKEDFILE "building\pbm\projects\mel176.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f0 ) PACKEDFILE "building\pbm\projects\mel177.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f1 ) PACKEDFILE "building\pbm\projects\mel178.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f2 ) PACKEDFILE "building\pbm\projects\mel179.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f3 ) PACKEDFILE "building\pbm\projects\mel180.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f4 ) PACKEDFILE "building\pbm\projects\mel181.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f5 ) PACKEDFILE "building\pbm\projects\mel182.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x000000f6 ) PACKEDFILE "building\pbm\projects\mel183.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000108 ) PACKEDFILE "building\pbm\projects\melcy1.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000109 ) PACKEDFILE "building\pbm\projects\melcy2.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010a ) PACKEDFILE "building\pbm\projects\melcy3.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010b ) PACKEDFILE "building\pbm\projects\melcy4.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010c ) PACKEDFILE "building\pbm\projects\melcy5.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010d ) PACKEDFILE "building\pbm\projects\melcy6.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010e ) PACKEDFILE "building\pbm\projects\melcy7.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000010f ) PACKEDFILE "building\pbm\projects\melcy8.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000110 ) PACKEDFILE "building\pbm\projects\melcy9.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000111 ) PACKEDFILE "building\pbm\projects\melcy10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000112 ) PACKEDFILE "building\pbm\projects\melcy11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000113 ) PACKEDFILE "building\pbm\projects\melcy12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000114 ) PACKEDFILE "building\pbm\projects\melcy13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000115 ) PACKEDFILE "building\pbm\projects\melcy14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000116 ) PACKEDFILE "building\pbm\projects\melcy15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000117 ) PACKEDFILE "building\pbm\projects\melcy16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000118 ) PACKEDFILE "building\pbm\projects\melcy17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000119 ) PACKEDFILE "building\pbm\projects\melcy18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011a ) PACKEDFILE "building\pbm\projects\melcy19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000011b ) PACKEDFILE "building\pbm\projects\melcy20.pbm" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016c ) PACKEDFILE "building\pbm\projects\mel301.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016d ) PACKEDFILE "building\pbm\projects\mel302.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016e ) PACKEDFILE "building\pbm\projects\mel303.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000016f ) PACKEDFILE "building\pbm\projects\mel304.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000170 ) PACKEDFILE "building\pbm\projects\mel305.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000171 ) PACKEDFILE "building\pbm\projects\mel306.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000172 ) PACKEDFILE "building\pbm\projects\mel307.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000173 ) PACKEDFILE "building\pbm\projects\mel308.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000174 ) PACKEDFILE "building\pbm\projects\mel309.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000175 ) PACKEDFILE "building\pbm\projects\mel310.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000176 ) PACKEDFILE "building\pbm\projects\mel311.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000177 ) PACKEDFILE "building\pbm\projects\mel312.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000178 ) PACKEDFILE "building\pbm\projects\mel313.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000179 ) PACKEDFILE "building\pbm\projects\mel314.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017a ) PACKEDFILE "building\pbm\projects\mel315.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017b ) PACKEDFILE "building\pbm\projects\mel316.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017c ) PACKEDFILE "building\pbm\projects\mel317.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017d ) PACKEDFILE "building\pbm\projects\mel318.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017e ) PACKEDFILE "building\pbm\projects\mel319.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000017f ) PACKEDFILE "building\pbm\projects\mel320.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000180 ) PACKEDFILE "building\pbm\projects\mel321.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000181 ) PACKEDFILE "building\pbm\projects\mel322.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000182 ) PACKEDFILE "building\pbm\projects\mel323.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000183 ) PACKEDFILE "building\pbm\projects\mel324.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000184 ) PACKEDFILE "building\pbm\projects\mel325.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000185 ) PACKEDFILE "building\pbm\projects\mel326.pbm" ENDCHUNK -#line 119 "H:\\BUILD\\SOC\\src\\building\\projects.cht" - - - - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - ; - Cell(0x00000108, 0, 0, 0); - - - If ((0x00010000->fHelpOn)); - ; - CreateHelpGob(0x00011c00, 0x00018556); - End; - - While( 1 ); - If( ::siiVoice ); StopSound( ::siiVoice ); End; ::siiVoice = PlaySoundThis('WAVE', 0x00018109, 0, 0x00010000, 1, 0, 998); - i = 0x00000108; - While (i <= 0x0000011c ); - Cell(i, 0, 0, 6); - i++; - End; - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - End; - ENDCHUNK - - - - - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ; - - - - CreateChildGob( 0x00011c00, 0x00011b08, 0x00011b08 ); - - - Cell( 0x00000040, 0,0, 100 ); - While( PlayingGob( 0x00011b08 )); - Cell( 0x00000040, 0, 0, 10 ); - End; - If( FGobExists( 0x00011b08 )); - DestroyGob( 0x00011b08 ); - End; - - - 0x00010000->fHelpOn = (1); - ChangeStateThis(0x0002); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - - If (StateThis() == 0x0003); - 0x00010000->fHelpOn = (1); - If( ::siiVoice ); StopSound( ::siiVoice ); ::siiVoice = 0; End;; - ChangeStateThis(0x0002); - - Elif (!(0x00010000->fHelpOn)); - ChangeStateThis(0x0003); - Else; - 0x00010000->fHelpOn = (0); - DestroyGob(0x00016007); - End; - ENDCHUNK - -CHUNK( 'GLOP', 0x00018556, ) SCRIPT - If (_parm[0] == 0); - ; - - Elif (_parm[0] == 1); - ChangeStateGob( 0x00011b02, 0x0002 ); - - Elif (_parm[0] == 2); - ChangeStateGob( 0x00011b03, 0x0002 ); - End; -ENDCHUNK - - -SET _curgok = 0x00011b05 CHUNK( 'GOKD', 0x00011b05, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - SetProp(0x23502, GetProp(0x23502) & 0xfffffffe); - DestroyGob(0x00016007); - RunScriptGob(0x00010000, 0x0028, 0x00011c00, 0x0002, 0x0028);; - ENDCHUNK - -SET _curgok = 0x00011b06 CHUNK( 'GOKD', 0x00011b06, ) SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ; - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - SetProp(0x23502, GetProp(0x23502) & 0xfffffffe); - DestroyGob(0x00016007); - RunScriptGob(0x00010000, 0x0028, 0x00011c00, 0x0002, 0x0024);; - ENDCHUNK - - - - - - -SET _curgok = 0x00011c03 CHUNK( 'GOKD', 0x00011c03, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prj2map.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - CreateChildGob( ::kgobCurrentPlace, 0x00012000, 0x00012000 ); -ENDCHUNK - -SET _curgok = 0x00011c02 CHUNK( 'GOKD', 0x00011c02, ) SHORT BO OSK LONG 0 LONG 0 0 0 44 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prj2exit.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(106, 0, 0, 0, 0, 0);; -ENDCHUNK - -SET _curgok = 0x00011c01 CHUNK( 'GOKD', 0x00011c01, ) SHORT BO OSK LONG 0 LONG 0 0 0 33 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prj2door.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00010000, 0x0021, 0x00011000, 0x0002); -ENDCHUNK - - - - - - -SET _curgok = 0x00011b07 CHUNK( 'GOKD', 0x00011b07, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\p1mask.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((37 > 31) ? ( ::fBio2 & (1<<(37&31)) ) : ( ::fBio1 & (1<<(37&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (37 & 31); If (37 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 37; ::fBioCtrl = 0; CreateChildGob( 0x00011c00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - - -SET _curgok = 0x00011c04 CHUNK( 'GOKD', 0x00011c04, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((34 > 31) ? ( ::fBio2 & (1<<(34&31)) ) : ( ::fBio1 & (1<<(34&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (34 & 31); If (34 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 34; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - - - -SET _curgok = 0x00011c05 CHUNK( 'GOKD', 0x00011c05, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((1 > 31) ? ( ::fBio2 & (1<<(1&31)) ) : ( ::fBio1 & (1<<(1&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (1 & 31); If (1 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 1; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c06 CHUNK( 'GOKD', 0x00011c06, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((2 > 31) ? ( ::fBio2 & (1<<(2&31)) ) : ( ::fBio1 & (1<<(2&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (2 & 31); If (2 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 2; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c07 CHUNK( 'GOKD', 0x00011c07, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt2m4.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((3 > 31) ? ( ::fBio2 & (1<<(3&31)) ) : ( ::fBio1 & (1<<(3&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (3 & 31); If (3 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 3; ::fBioCtrl = 0; CreateChildGob( 0x00011d00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c09 CHUNK( 'GOKD', 0x00011c09, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt4m1.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((4 > 31) ? ( ::fBio2 & (1<<(4&31)) ) : ( ::fBio1 & (1<<(4&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (4 & 31); If (4 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 4; ::fBioCtrl = 0; CreateChildGob( 0x00011f00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c0a CHUNK( 'GOKD', 0x00011c0a, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt4m2.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((5 > 31) ? ( ::fBio2 & (1<<(5&31)) ) : ( ::fBio1 & (1<<(5&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (5 & 31); If (5 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 5; ::fBioCtrl = 0; CreateChildGob( 0x00011f00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK - -SET _curgok = 0x00011c0b CHUNK( 'GOKD', 0x00011c0b, ) SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, 0, 0 ) "building\bitmaps\projects\prjt4m3.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(((6 > 31) ? ( ::fBio2 & (1<<(6&31)) ) : ( ::fBio1 & (1<<(6&31)) )) ); - - PlaySoundThis('WAVE', 0x00010045, 0, 0x00010000, 1, 0, - 998); - Else; - __t = 1<< (6 & 31); If (6 > 31 ); ::fBio2 |= __t; SetProp( 0x23501, ::fBio2 ); Else; ::fBio1 |= __t; SetProp( 0x23500, ::fBio1 ); End;; - ::nBioPage = 6; ::fBioCtrl = 0; CreateChildGob( 0x00011f00, 0x00015100, 0x00015100 ); - End; - - ENDCHUNK -#line 71 "H:\\BUILD\\SOC\\src\\building\\building.cht" - - diff --git a/OBJ/WINS/HELP.I b/OBJ/WINS/HELP.I deleted file mode 100644 index c8dbb64e..00000000 --- a/OBJ/WINS/HELP.I +++ /dev/null @@ -1,162247 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\help\\help.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 7 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 8 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 9 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 10 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 11 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 12 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 13 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 14 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 16 "H:\\BUILD\\SOC\\src\\help\\help.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -SET _help_48544F50_0= 0x00017040 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075500 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x00 0xF6 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x98 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xDA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x31 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x31 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x98 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5E 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x92 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x92 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x61 0x6D - 0x65 0x72 0x61 0x20 0x41 0x6E 0x67 0x6C - 0x65 0x73 0x0D 0x0A 0x49 0x6D 0x61 0x67 - 0x69 0x6E 0x65 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x61 0x72 0x65 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x73 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x65 0x64 0x20 0x61 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x65 0x74 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x73 0x20 0x79 0x6F - 0x75 0x20 0x61 0x72 0x65 0x6E 0x27 0x74 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x97 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x65 - 0x77 0x20 0x6F 0x66 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x65 0x77 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 195 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1= 0x00017041 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 203 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075501 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017086 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017089 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20285 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017085 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x30 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x0F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC1 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x09 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x11 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x09 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x11 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2E 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 0x65 - 0x73 0x0D 0x0A 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6D - 0x61 0x6E 0x79 0x20 0x64 0x69 0x66 0x66 - 0x65 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x73 0x21 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 - 0x63 0x65 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x4E 0x65 0x77 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x73 0x20 0x61 0x72 - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x61 0x64 0x64 0x65 0x64 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A - 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 371 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2= 0x00017042 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 379 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075502 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0x200000B - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017085 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b9 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3C 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x81 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xDB 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x4F 0x72 0x67 0x61 0x6E - 0x69 0x7A 0x65 0x72 0x0D 0x0A 0x53 0x68 - 0x6F 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x66 0x69 0x72 0x73 - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x3A 0x0D 0x0A - 0x95 0x09 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 0x72 - 0x0D 0x0A 0x95 0x09 0x41 0x64 0x64 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x62 0x65 0x74 0x77 - 0x65 0x65 0x6E 0x20 0x73 0x63 0x65 0x6E - 0x65 0x73 0x0D 0x0A 0x95 0x09 0x47 0x65 - 0x74 0x20 0x72 0x69 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x65 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x95 0x09 0x41 0x74 0x74 0x61 - 0x63 0x68 0x20 0x6F 0x6E 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 - 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F - 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 - 0x97 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 550 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3= 0x00017043 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 558 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075503 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x29 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017091 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x26 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x84 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x85 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x86 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x84 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x01 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 - 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 - 0x72 0x6F 0x77 0x2E 0x0D 0x0A 0x2D 0x2D - 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x95 0x09 - 0x44 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 693 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4= 0x00017044 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 701 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075504 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20049 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708a - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x60 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x53 0x74 0x61 - 0x72 0x74 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x72 0x61 - 0x74 0x63 0x68 0x21 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x74 0x61 0x72 0x74 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 - 0x6F 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4E 0x65 0x77 0x2E - 0x0D 0x0A 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 804 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5= 0x00017045 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 812 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075505 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_54=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) -AG(4) - ITEM LONG 0x2000007 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027D - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001708c - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708b -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF5 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x33 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x4B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x24 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x35 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x0D 0x0A 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x63 0x68 - 0x61 0x72 0x61 0x63 0x74 0x65 0x72 0x73 - 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x6F 0x6F 0x73 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F - 0x72 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2E 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 0x0D 0x0A 0x01 - 0x20 0x4D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x6D 0x6F 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 973 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6= 0x00017046 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 981 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075506 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_62=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708d - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20296 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_62=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x54 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x66 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_62=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x57 0x61 0x74 - 0x63 0x68 0x20 0x6F 0x72 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x6F 0x6E 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x6F 0x70 0x65 0x6E 0x20 0x61 0x6E 0x20 - 0x65 0x78 0x69 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x0D - 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x70 0x6F 0x72 - 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x70 0x65 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x53 0x68 0x6F 0x72 0x74 0x63 - 0x75 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 1085 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7= 0x00017047 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 1093 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075507 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027E - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708b - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001708c -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x42 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x58 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0A 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x33 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x44 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x72 0x6F - 0x70 0x73 0x0D 0x0A 0x41 0x64 0x64 0x20 - 0x70 0x72 0x6F 0x70 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x74 0x72 0x65 - 0x61 0x73 0x75 0x72 0x65 0x20 0x63 0x68 - 0x65 0x73 0x74 0x20 0x6F 0x72 0x20 0x68 - 0x6F 0x74 0x2D 0x61 0x69 0x72 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x21 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x61 0x20 0x70 0x72 0x6F - 0x70 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x73 0x20 0x26 0x20 0x50 0x72 0x6F - 0x70 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x64 0x64 0x20 0x61 0x20 0x70 - 0x72 0x6F 0x70 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x6F 0x70 0x2E 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x4D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6D 0x6F - 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1251 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_8= 0x00017048 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1259 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075508 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001708c - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708b - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x26 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x21 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x12 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x12 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x23 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x33 0x44 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x43 - 0x72 0x65 0x61 0x74 0x65 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x70 0x69 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x21 0x20 0x20 - 0x54 0x68 0x65 0x73 0x65 0x20 0x61 0x72 - 0x65 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x69 0x74 0x6C 0x65 0x73 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x2E 0x0D 0x0A 0x01 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x6D 0x6F 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1417 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_9= 0x00017049 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 1425 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075509 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_71=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_63=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20018 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_71=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_71=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x73 - 0x74 0x75 0x6D 0x65 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x72 0x0D 0x0A 0x43 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x77 0x61 0x79 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x21 0x20 0x20 - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x20 0x63 0x6F - 0x73 0x74 0x75 0x6D 0x65 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x6F 0x73 0x74 0x75 0x6D 0x65 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x72 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1567 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_A= 0x0001704a - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1575 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20021 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCC 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x67 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x69 0x7A 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x0D 0x0A - 0x52 0x65 0x73 0x69 0x7A 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x20 0x74 0x6F 0x6F 0x6C - 0x73 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x73 0x20 0x26 0x20 0x50 0x72 0x6F - 0x70 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x73 0x69 0x7A 0x69 0x6E 0x67 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2D 0x2D 0x79 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x69 0x74 0x20 0x75 0x6E 0x64 0x65 0x72 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x75 0x73 0x65 0x3A 0x20 - 0x20 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 - 0x65 0x6E 0x6C 0x79 0x2C 0x20 0x53 0x71 - 0x75 0x61 0x73 0x68 0x20 0x26 0x20 0x53 - 0x74 0x72 0x65 0x74 0x63 0x68 0x2C 0x20 - 0x6F 0x72 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x42 0x61 0x63 0x6B 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x6D 0x6F 0x72 - 0x65 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x65 0x61 - 0x63 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E - 0x20 0x57 0x61 0x69 0x74 0x2E 0x2E 0x2E - 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x67 - 0x65 0x74 0x20 0x61 0x20 0x64 0x65 0x73 - 0x63 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 - 0x20 0x74 0x6F 0x6F 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1735 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_B= 0x0001704b - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1743 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20021 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x09 0x00 0x00 0xFE 0xED 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x50 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x50 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x76 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x76 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x69 0x7A - 0x65 0x20 0x45 0x76 0x65 0x6E 0x6C 0x79 - 0x0D 0x0A 0x45 0x76 0x65 0x6E 0x6C 0x79 - 0x20 0x67 0x72 0x6F 0x77 0x20 0x6F 0x72 - 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x67 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x73 0x68 0x72 0x69 0x6E 0x6B 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x73 0x69 0x7A - 0x69 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D - 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x69 0x7A 0x65 0x20 - 0x45 0x76 0x65 0x6E 0x6C 0x79 0x2E 0x0D - 0x0A 0x35 0x09 0x54 0x6F 0x20 0x67 0x72 - 0x6F 0x77 0x20 0x73 0x6F 0x6D 0x65 0x74 - 0x68 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x75 0x70 0x2E 0x20 0x54 - 0x6F 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 0x67 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 1921 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_C= 0x0001704c - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1929 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_45=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20020 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x04 - 0x09 0x00 0x00 0xFE 0x0C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x76 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9E 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9E 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x71 0x75 - 0x61 0x73 0x68 0x20 0x26 0x20 0x53 0x74 - 0x72 0x65 0x74 0x63 0x68 0x0D 0x0A 0x4D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x73 - 0x68 0x6F 0x72 0x74 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x69 0x64 0x65 0x72 - 0x20 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6C - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x69 0x6E 0x6E 0x65 0x72 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x73 0x71 0x75 0x61 - 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x73 0x69 0x7A 0x69 - 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x69 0x7A 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D 0x2D - 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x53 0x71 0x75 0x61 0x73 0x68 - 0x20 0x26 0x20 0x53 0x74 0x72 0x65 0x74 - 0x63 0x68 0x2E 0x0D 0x0A 0x35 0x09 0x54 - 0x6F 0x20 0x73 0x71 0x75 0x61 0x73 0x68 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 0x67 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x20 0x54 - 0x6F 0x20 0x73 0x74 0x72 0x65 0x74 0x63 - 0x68 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x75 0x70 0x2E 0x20 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 2109 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_D= 0x0001704d - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 2117 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001708e - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20019 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x04 - 0x09 0x00 0x00 0xFE 0xF5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x05 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x05 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x42 0x61 0x63 0x6B - 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x61 0x63 0x6B - 0x20 0x74 0x6F 0x20 0x69 0x74 0x73 0x20 - 0x6F 0x72 0x69 0x67 0x69 0x6E 0x61 0x6C - 0x20 0x73 0x69 0x7A 0x65 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x73 0x69 0x7A - 0x69 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x42 0x61 0x63 0x6B 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 0x69 - 0x7A 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2279 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_E= 0x0001704e - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 2287 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x49 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBF 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDD 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x0E 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x75 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0xDD 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xDD 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x66 0x61 0x63 0x65 0x73 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x74 0x61 0x74 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x73 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x75 0x73 - 0x65 0x3A 0x20 0x20 0x54 0x69 0x70 0x20 - 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 - 0x6F 0x72 0x20 0x42 0x61 0x63 0x6B 0x2C - 0x20 0x54 0x75 0x72 0x6E 0x20 0x4C 0x65 - 0x66 0x74 0x20 0x6F 0x72 0x20 0x52 0x69 - 0x67 0x68 0x74 0x2C 0x20 0x54 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x4F 0x6E 0x65 0x20 - 0x53 0x69 0x64 0x65 0x2C 0x20 0x6F 0x72 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x42 0x61 0x63 0x6B 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x6D 0x6F 0x72 0x65 0x2C - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x65 0x61 0x63 0x68 - 0x20 0x74 0x6F 0x6F 0x6C 0x2E 0x20 0x20 - 0x57 0x61 0x69 0x74 0x2E 0x2E 0x2E 0x79 - 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x67 0x65 - 0x74 0x20 0x61 0x20 0x64 0x65 0x73 0x63 - 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 0x20 - 0x74 0x6F 0x6F 0x6C 0x2E 0x0D 0x0A 0x01 - 0x09 0x4D 0x61 0x69 0x6E 0x74 0x61 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x74 0x61 0x74 0x69 0x6F - 0x6E 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2463 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_F= 0x0001704f - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 2471 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007550F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_49=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001D - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA3 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x00 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x64 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x00 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x64 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xD3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x17 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA2 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA2 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x75 0x72 - 0x6E 0x20 0x4C 0x65 0x66 0x74 0x20 0x6F - 0x72 0x20 0x52 0x69 0x67 0x68 0x74 0x0D - 0x0A 0x54 0x75 0x72 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F 0x72 - 0x20 0x72 0x69 0x67 0x68 0x74 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x74 0x75 0x72 0x6E - 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F 0x72 - 0x20 0x72 0x69 0x67 0x68 0x74 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x6F - 0x74 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x54 0x75 0x72 - 0x6E 0x20 0x4C 0x65 0x66 0x74 0x20 0x6F - 0x72 0x20 0x52 0x69 0x67 0x68 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x74 0x75 0x72 0x6E 0x2E 0x0D 0x0A - 0x36 0x09 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x66 0x61 0x63 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x01 0x09 0x4D 0x61 - 0x69 0x6E 0x74 0x61 0x69 0x6E 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x61 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2647 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_10= 0x00017050 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 2655 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00076010 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001C - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBF 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB0 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xDD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAC 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAC 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x69 0x70 - 0x20 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x42 0x61 0x63 0x6B - 0x0D 0x0A 0x54 0x69 0x70 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x74 0x69 - 0x70 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x54 0x69 0x70 0x20 0x46 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 - 0x42 0x61 0x63 0x6B 0x2E 0x0D 0x0A 0x35 - 0x09 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 - 0x70 0x2E 0x0D 0x0A 0x36 0x09 0x44 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x69 - 0x73 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x01 0x20 - 0x4D 0x61 0x69 0x6E 0x74 0x61 0x69 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x72 0x6F 0x74 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2831 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_11= 0x00017051 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 2839 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075511 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017bf - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF8 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x57 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xCC 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9B 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x4F 0x6E 0x65 0x20 - 0x53 0x69 0x64 0x65 0x0D 0x0A 0x54 0x69 - 0x70 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x69 0x64 - 0x65 0x20 0x74 0x6F 0x20 0x73 0x69 0x64 - 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x74 - 0x69 0x70 0x20 0x74 0x6F 0x20 0x6F 0x6E - 0x65 0x20 0x73 0x69 0x64 0x65 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x6F - 0x74 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x54 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x4F 0x6E 0x65 0x20 - 0x53 0x69 0x64 0x65 0x0D 0x0A 0x35 0x09 - 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 - 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 0x70 - 0x2E 0x0D 0x0A 0x36 0x09 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x4D - 0x61 0x69 0x6E 0x74 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6D 0x6F 0x76 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 3015 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_12= 0x00017052 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 3023 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075512 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20271 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001708f -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x12 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x42 0x61 0x63 0x6B 0x0D - 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x77 - 0x61 0x79 0x20 0x69 0x74 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x72 0x6F 0x74 - 0x61 0x74 0x65 0x64 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x62 0x61 0x63 0x6B - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x42 0x61 - 0x63 0x6B 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3174 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_13= 0x00017053 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 3182 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075513 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_65=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x09 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_59=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001F - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017094 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017093 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_65=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB3 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC4 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x28 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x04 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1D 0x02 0x00 0x40 - 0x05 0x00 0x00 0x00 0x28 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x91 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_65=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x67 0x65 0x74 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x70 0x61 0x72 0x74 0x69 - 0x63 0x75 0x6C 0x61 0x72 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x73 0x79 0x6E 0x63 - 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x6F 0x6E 0x65 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x61 0x70 0x70 0x65 0x61 0x72 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x70 - 0x6F 0x74 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x69 - 0x73 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x73 - 0x70 0x6F 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x69 0x73 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x69 0x73 0x20 - 0x22 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x2E - 0x22 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 0x6F - 0x72 0x20 0x42 0x61 0x63 0x6B 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x74 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x73 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x69 0x6D 0x65 0x2E 0x0D 0x0A 0x36 - 0x09 0x54 0x6F 0x20 0x63 0x68 0x65 0x63 - 0x6B 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x73 0x2C 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3366 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_14= 0x00017054 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 3374 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075514 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017095 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170ba - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170bc -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6E 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x16 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x6A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x47 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x47 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x6C 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x93 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x73 0x20 0x70 - 0x61 0x74 0x68 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2E - 0x0D 0x0A 0x34 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x6F 0x6E - 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x70 0x61 0x74 0x68 -ENDCHUNK - - -ENDCHUNK -#line 3557 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_15= 0x00017055 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 3565 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075515 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x3A 0x20 0x20 - 0x53 0x65 0x6C 0x65 0x63 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3629 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_16= 0x00017056 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 3637 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075516 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x14 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDC 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x57 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDC 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x5B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDC 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x0D 0x0A 0x4D 0x61 - 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x21 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6D 0x6F 0x76 0x65 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x6D 0x6F - 0x76 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x2E 0x0D 0x0A 0x35 - 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2E 0x0D 0x0A 0x36 0x09 0x44 0x65 - 0x70 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x65 - 0x69 0x74 0x68 0x65 0x72 0x0D 0x0A 0x95 - 0x09 0x44 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x09 0x2D 0x2D 0x6F 0x72 0x2D 0x2D 0x0D - 0x0A 0x95 0x09 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3805 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_17= 0x00017057 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 3813 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075517 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017091 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x70 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x17 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x48 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x73 - 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x43 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x75 0x73 0x65 - 0x64 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x73 0x75 0x6D 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x72 - 0x65 0x63 0x6F 0x72 0x64 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x70 0x61 0x74 0x68 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x34 - 0x09 0x44 0x65 0x70 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x65 0x69 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3981 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_18= 0x00017058 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 3989 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075518 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x63 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001B - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001709b - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x33 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD3 0x01 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xF0 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x18 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x21 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x32 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x32 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x77 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF5 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x02 0x00 0x40 - 0x07 0x00 0x00 0x00 0x7D 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9A 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0xD3 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2A 0x02 0x00 0x80 - 0x00 0x00 0x03 0x00 0x6E 0x02 0x00 0x80 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xF0 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x6E 0x02 0x00 0xC0 - 0x09 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x20 0x52 0x65 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x50 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x50 0x61 0x74 0x68 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x72 0x65 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x27 0x73 0x20 0x70 0x61 - 0x74 0x68 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x6E 0x65 0x77 0x20 0x70 0x61 0x74 - 0x68 0x20 0x72 0x65 0x6A 0x6F 0x69 0x6E - 0x73 0x20 0x74 0x68 0x65 0x20 0x6F 0x6C - 0x64 0x20 0x70 0x61 0x74 0x68 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x73 0x74 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x2E 0x20 0x20 0x4F 0x74 - 0x68 0x65 0x72 0x77 0x69 0x73 0x65 0x2C - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x69 0x73 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x64 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x20 0x64 0x72 - 0x61 0x67 0x67 0x69 0x6E 0x67 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x2E 0x0D 0x0A - 0x33 0x09 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x52 0x65 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x50 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x50 0x61 - 0x74 0x68 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 0x74 - 0x68 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x69 0x73 0x20 0x70 0x75 0x73 - 0x68 0x65 0x64 0x20 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x67 0x68 0x74 0x20 0x69 0x73 0x20 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x53 0x61 - 0x6D 0x65 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x2D 0x01 0x0D 0x0A 0x35 0x09 0x44 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x73 0x74 0x6F - 0x70 0x20 0x64 0x72 0x61 0x67 0x67 0x69 - 0x6E 0x67 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6C 0x64 0x20 0x70 0x61 0x74 0x68 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x73 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x6F 0x66 0x66 0x2E 0x0D 0x0A - 0x01 0x20 0x20 0x53 0x68 0x6F 0x72 0x74 - 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 4205 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_19= 0x00017059 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 4213 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075519 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709a - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x37 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x67 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x92 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x68 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x96 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x97 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x86 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x67 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE3 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xE7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x31 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x95 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0xE1 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x95 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x67 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x92 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x46 0x61 0x6C - 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x69 0x73 0x20 0x69 0x73 0x20 0x22 - 0x6F 0x6E 0x2C 0x22 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x63 0x61 0x6E 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x68 0x65 0x20 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x73 0x75 0x72 0x66 - 0x61 0x63 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x66 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A - 0x33 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 - 0x73 0x20 0x70 0x61 0x74 0x68 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x70 0x61 0x74 - 0x68 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x33 - 0x09 0x54 0x75 0x72 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x46 0x61 0x6C - 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4418 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1A= 0x0001705a - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 4426 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x85 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_65=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017091 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001709e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x36 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x54 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x7F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA5 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1E 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x82 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA3 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x57 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x82 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x54 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x7F 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xDA 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x70 0x20 - 0x26 0x20 0x44 0x6F 0x77 0x6E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x75 0x70 0x20 0x61 0x6E - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x41 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 0x20 - 0x50 0x72 0x6F 0x70 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x75 - 0x70 0x20 0x61 0x6E 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x2E 0x0D 0x0A 0x33 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x3A 0x0D 0x0A - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x73 0x20 0x70 - 0x61 0x74 0x68 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2D 0x01 0x0D - 0x0A 0x43 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x20 0x70 0x61 0x74 0x68 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x34 0x09 0x54 0x75 - 0x72 0x6E 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x26 0x20 0x44 - 0x6F 0x77 0x6E 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x35 0x09 0x44 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 - 0x6F 0x72 0x74 0x63 0x75 0x74 0x20 0x6B - 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 4629 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1B= 0x0001705b - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 4637 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_40=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20016 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x61 0x6C - 0x65 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B - 0x0D 0x0A 0x47 0x69 0x76 0x65 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x6F 0x6F 0x70 0x20 0x6F 0x6E - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x21 0x0D 0x0A 0x4E 0x6F 0x74 0x65 - 0x3A 0x20 0x20 0x59 0x6F 0x75 0x20 0x77 - 0x6F 0x6E 0x27 0x74 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x54 0x61 0x6C - 0x65 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x27 0x76 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x73 0x73 - 0x69 0x6E 0x67 0x20 0x70 0x61 0x67 0x65 - 0x73 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x54 0x61 0x6C 0x65 0x6E 0x74 0x20 0x42 - 0x6F 0x6F 0x6B 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 - 0x72 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x54 0x61 0x6C - 0x65 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B - 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4765 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1C= 0x0001705c - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 4773 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC0 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x20 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x4C 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 - 0x6F 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x79 0x6F 0x75 0x27 0x76 - 0x65 0x20 0x75 0x73 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x59 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x73 - 0x65 0x6C 0x65 0x63 0x74 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x77 - 0x68 0x6F 0x20 0x69 0x73 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x73 0x6F 0x6D - 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 0x65 - 0x6C 0x73 0x65 0x20 0x6F 0x72 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 - 0x65 0x77 0x2E 0x20 0x20 0x4F 0x72 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x61 0x6D 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x69 0x6E 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x6C 0x69 0x73 - 0x74 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 0x2C - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x76 0x69 0x65 0x77 0x2C 0x20 0x6F - 0x72 0x20 0x72 0x65 0x75 0x73 0x65 0x2E - 0x0D 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x72 0x65 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x20 0x6F 0x6E 0x2D 0x73 0x74 - 0x61 0x67 0x65 0x2E 0x20 0x20 0x54 0x6F - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4913 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1D= 0x0001705d - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 4921 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_47=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xE1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4A 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x6F 0x70 0x20 0x4C - 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x61 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x74 0x68 0x61 0x74 0x20 - 0x69 0x73 0x20 0x62 0x65 0x68 0x69 0x6E - 0x64 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x65 0x6C 0x73 0x65 - 0x20 0x6F 0x72 0x20 0x6F 0x75 0x74 0x20 - 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 0x2E - 0x20 0x20 0x4F 0x72 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x61 - 0x6D 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x69 0x6E 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x72 0x6F 0x70 0x20 0x6C 0x69 0x73 - 0x74 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x70 - 0x72 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 - 0x74 0x2C 0x20 0x62 0x72 0x69 0x6E 0x67 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x76 0x69 0x65 0x77 0x2C - 0x20 0x6F 0x72 0x20 0x72 0x65 0x75 0x73 - 0x65 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x69 0x73 0x20 0x6F 0x75 - 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 0x65 - 0x77 0x2C 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x72 0x65 - 0x61 0x70 0x70 0x65 0x61 0x72 0x73 0x20 - 0x6F 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 - 0x2E 0x20 0x20 0x54 0x6F 0x20 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5077 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1E= 0x0001705e - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 5085 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x85 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004A - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001709f - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x53 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x21 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6F 0x72 0x74 0x66 - 0x6F 0x6C 0x69 0x6F 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x61 0x76 0x65 0x2E 0x0D 0x0A 0x01 0x20 - 0x53 0x68 0x6F 0x72 0x74 0x63 0x75 0x74 - 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 5187 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_1F= 0x0001705f - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 5195 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007551F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_61=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x31 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_57=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a1 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170a0 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b8 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b7 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_61=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB3 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD5 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF1 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x0F 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x12 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xB3 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xD5 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xF1 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_61=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x0D 0x0A 0x41 0x64 0x64 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x73 0x20 0x74 0x6F - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x21 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x63 0x68 - 0x6F 0x6F 0x73 0x65 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x6C 0x69 0x73 0x74 0x2C 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x77 0x6E 0x2C 0x20 0x6F - 0x72 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x20 0x45 - 0x66 0x66 0x65 0x63 0x74 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x65 0x66 0x66 0x65 0x63 0x74 0x20 - 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 0x41 - 0x74 0x74 0x61 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x69 0x6E 0x69 0x6E - 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 0x65 - 0x72 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 -ENDCHUNK - - -ENDCHUNK -#line 5394 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_20= 0x00017060 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 5402 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075520 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x26 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a1 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b8 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b7 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170a3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x28 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xE9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA6 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xC0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xF4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x84 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA6 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC2 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x70 0x65 - 0x65 0x63 0x68 0x0D 0x0A 0x4D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6B 0x21 - 0x20 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 - 0x6E 0x20 0x76 0x6F 0x69 0x63 0x65 0x2C - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x6F 0x72 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x20 0x6C 0x69 0x73 0x74 0x20 0x6F - 0x66 0x20 0x6C 0x69 0x6E 0x65 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x65 0x64 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x61 0x6C 0x6B 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x70 0x65 0x65 0x63 0x68 0x2E 0x0D 0x0A - 0x34 0x09 0x52 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 - 0x6E 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 - 0x75 0x65 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x61 0x6C 0x6B 0x2E 0x0D 0x0A 0x01 0x20 - 0x41 0x74 0x74 0x61 0x63 0x68 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x01 0x20 0x43 0x68 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 - 0x65 0x72 0x0D 0x0A 0x01 0x20 0x50 0x61 - 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x64 0x6F 0x6E 0x65 0x20 0x74 - 0x61 0x6C 0x6B 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 5591 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_21= 0x00017061 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 5599 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075521 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b3 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b8 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5C 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x90 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x90 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x5C 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x7C 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x75 0x73 - 0x69 0x63 0x0D 0x0A 0x41 0x74 0x74 0x61 - 0x63 0x68 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x21 0x20 0x20 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x20 0x6C 0x69 0x73 0x74 0x20 0x6F 0x72 - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4D 0x75 0x73 0x69 0x63 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x6F - 0x75 0x73 0x6C 0x79 0x0D 0x0A 0x01 0x20 - 0x53 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 5770 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_22= 0x00017062 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 5778 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075522 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_73=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_62=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20026 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170b7 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b4 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x000170b3 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_73=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x29 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x8F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xA3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x54 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x70 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x91 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_73=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x4F 0x6E 0x63 0x65 0x0D 0x0A - 0x41 0x74 0x74 0x61 0x63 0x68 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x69 0x74 0x20 0x6F 0x6E 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x74 0x74 0x61 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 - 0x65 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2C 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x69 0x6E 0x69 0x6E 0x67 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x01 0x20 0x48 0x6F 0x77 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 - 0x49 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x3F 0x0D 0x0A 0x01 0x20 0x53 0x74 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 5958 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_23= 0x00017063 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 5966 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075523 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_69=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b4 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170b6 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA7 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x88 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8A 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAB 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xBD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x8A 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAB 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x6F 0x6F - 0x70 0x0D 0x0A 0x41 0x74 0x74 0x61 0x63 - 0x68 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x6E 0x64 0x20 0x70 0x6C - 0x61 0x79 0x20 0x69 0x74 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 - 0x6C 0x79 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 0x20 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4C 0x6F 0x6F 0x70 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2C 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x6C 0x6F 0x6F - 0x70 0x2E 0x0D 0x0A 0x01 0x20 0x48 0x6F - 0x77 0x20 0x6D 0x61 0x6E 0x79 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x63 0x61 - 0x6E 0x20 0x49 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x3F 0x0D 0x0A 0x01 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 6138 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_24= 0x00017064 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 6146 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075524 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x18 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_50=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170b4 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170b6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x15 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x15 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x1D 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x13 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xFE 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 - 0x68 0x65 0x72 0x0D 0x0A 0x41 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x46 0x6F 0x72 - 0x20 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x72 0x75 0x6E 0x6E 0x69 0x6E - 0x67 0x20 0x6D 0x61 0x74 0x63 0x68 0x65 - 0x64 0x20 0x75 0x70 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x69 0x73 0x20 0x66 0x6F - 0x6F 0x74 0x73 0x74 0x65 0x70 0x73 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x20 0x4D - 0x61 0x74 0x63 0x68 0x65 0x72 0x2D 0x2D - 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x69 0x74 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E 0x0D 0x0A - 0x01 0x20 0x48 0x6F 0x77 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x63 0x61 0x6E 0x20 0x49 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 6326 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_25= 0x00017065 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 6334 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075525 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_74=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_71=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_74=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBC 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x94 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x35 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_74=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x69 0x73 - 0x74 0x65 0x6E 0x65 0x72 0x0D 0x0A 0x4C - 0x69 0x73 0x74 0x65 0x6E 0x20 0x74 0x6F - 0x2C 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x2C 0x20 0x6F 0x72 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x69 0x6E 0x64 0x69 0x76 0x69 - 0x64 0x75 0x61 0x6C 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x2E 0x20 0x0D 0x0A 0x54 - 0x6F 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x20 0x74 0x6F 0x6F 0x6C 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x73 0x2E 0x20 0x20 0x20 0x59 - 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x68 0x65 - 0x61 0x72 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x4C 0x69 0x73 0x74 - 0x65 0x6E 0x65 0x72 0x2E 0x0D 0x0A 0x34 - 0x09 0x54 0x6F 0x20 0x6C 0x69 0x73 0x74 - 0x65 0x6E 0x20 0x74 0x6F 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x2C 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x68 - 0x65 0x61 0x72 0x2E 0x0D 0x0A 0x2D 0x2D - 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x72 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x6F 0x72 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6507 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_26= 0x00017066 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 6515 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075526 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b5 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20297 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x53 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 - 0x6E 0x61 0x6D 0x65 0x2E 0x20 0x20 0x46 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x2C 0x20 0x79 0x6F 0x75 0x20 - 0x6D 0x61 0x79 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x73 0x61 0x76 0x65 - 0x20 0x61 0x20 0x63 0x6F 0x70 0x79 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x62 0x79 0x20 0x67 0x69 - 0x76 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 - 0x61 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x6E 0x61 0x6D 0x65 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x61 - 0x76 0x65 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 - 0x6F 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x61 0x76 0x65 - 0x20 0x41 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x54 0x79 0x70 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x77 0x20 0x6E 0x61 0x6D - 0x65 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6625 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_27= 0x00017067 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 6633 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075527 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_67=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_60=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20046 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017c2 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170a5 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170a7 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_67=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x27 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x00 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBA 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xC8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xBA 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xCA 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_67=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x6F 0x72 - 0x64 0x20 0x42 0x6F 0x78 0x0D 0x0A 0x43 - 0x72 0x65 0x61 0x74 0x65 0x20 0x61 0x20 - 0x62 0x6F 0x78 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x74 0x79 0x70 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x74 0x6F 0x72 0x79 0x20 - 0x6F 0x72 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x57 0x6F 0x72 0x64 - 0x20 0x42 0x6F 0x78 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 - 0x43 0x72 0x65 0x64 0x69 0x74 0x73 0x2E - 0x20 0x20 0x53 0x74 0x6F 0x72 0x79 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x64 0x6F - 0x6E 0x27 0x74 0x20 0x6D 0x6F 0x76 0x65 - 0x2E 0x20 0x20 0x43 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x73 0x63 0x72 0x6F 0x6C - 0x6C 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x21 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x20 0x20 0x54 0x79 0x70 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x54 0x79 - 0x70 0x69 0x6E 0x67 0x20 0x68 0x69 0x6E - 0x74 0x73 0x09 0x20 0x01 0x20 0x4D 0x61 - 0x6B 0x69 0x6E 0x67 0x20 0x63 0x72 0x65 - 0x64 0x69 0x74 0x73 0x20 0x73 0x63 0x72 - 0x6F 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 6818 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_28= 0x00017068 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 6826 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075528 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) -AG(4) - ITEM LONG 0x2000007 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20030 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017091 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xEC 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE4 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE8 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE4 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB1 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2D 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x49 0x6E 0x73 - 0x65 0x72 0x74 0x69 0x6F 0x6E 0x20 0x50 - 0x6F 0x69 0x6E 0x74 0x0D 0x0A 0x4D 0x6F - 0x76 0x65 0x2C 0x20 0x72 0x65 0x73 0x69 - 0x7A 0x65 0x2C 0x20 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2E 0x20 0x20 0x54 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x63 0x6C 0x65 0x61 0x72 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x57 0x6F 0x72 0x64 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x65 0x72 0x65 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x49 0x6E 0x73 0x65 0x72 0x74 0x69 - 0x6F 0x6E 0x20 0x50 0x6F 0x69 0x6E 0x74 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x49 0x6E 0x73 - 0x65 0x72 0x74 0x69 0x6F 0x6E 0x20 0x50 - 0x6F 0x69 0x6E 0x74 0x2E 0x0D 0x0A 0x34 - 0x09 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2E 0x0D 0x0A 0x35 0x09 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 - 0x69 0x64 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x68 0x61 - 0x6E 0x64 0x2E 0x20 0x20 0x20 0x44 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x62 - 0x6F 0x78 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x36 - 0x09 0x54 0x6F 0x20 0x72 0x65 0x73 0x69 - 0x7A 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2C 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 - 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x68 0x61 0x6E - 0x64 0x6C 0x65 0x20 0x28 0x61 0x20 0x6C - 0x69 0x74 0x74 0x6C 0x65 0x20 0x73 0x71 - 0x75 0x61 0x72 0x65 0x29 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x72 0x72 0x6F 0x77 0x2E 0x20 0x20 - 0x44 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x68 0x61 0x6E 0x64 0x6C 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x78 0x20 0x69 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x69 0x7A - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7029 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_29= 0x00017069 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 7037 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075529 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x34 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x85 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE4 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F 0x6F - 0x6B 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x65 0x74 0x74 0x65 0x72 0x73 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x66 0x6F - 0x6E 0x74 0x20 0x79 0x6F 0x75 0x20 0x6C - 0x69 0x6B 0x65 0x2E 0x0D 0x0A 0x35 0x09 - 0x49 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2C 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x73 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x73 0x74 0x79 - 0x6C 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7183 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2A= 0x0001706a - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 7191 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_75=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002D - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_75=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_75=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x74 0x79 - 0x6C 0x65 0x73 0x0D 0x0A 0x4D 0x61 0x6B - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x74 0x61 0x6E 0x64 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x62 0x6F 0x6C 0x64 0x20 - 0x6F 0x72 0x20 0x69 0x74 0x61 0x6C 0x69 - 0x63 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x79 0x6C 0x65 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x35 0x09 0x49 0x6E - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7340 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2B= 0x0001706b - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 7348 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20032 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x15 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x15 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x53 0x69 0x7A 0x65 - 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x69 0x7A - 0x65 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x20 0x73 0x69 0x7A - 0x65 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x65 0x74 0x74 0x65 0x72 0x20 0x53 - 0x69 0x7A 0x65 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E - 0x0D 0x0A 0x35 0x09 0x49 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x77 0x68 0x6F 0x73 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7495 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2C= 0x0001706c - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 7503 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_66=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002E - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_66=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x11 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_66=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F 0x72 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A - 0x35 0x09 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7649 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2D= 0x0001706d - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 7657 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_64=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_64=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_64=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x43 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x43 - 0x6F 0x6C 0x6F 0x72 0x2D 0x2D 0x79 0x6F - 0x75 0x27 0x6C 0x6C 0x20 0x66 0x69 0x6E - 0x64 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x6C 0x69 - 0x6B 0x65 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7802 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2E= 0x0001706e - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 7810 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2016D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170a7 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x25 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x4E 0x6F 0x6E 0x2D 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x73 - 0x63 0x72 0x6F 0x6C 0x6C 0x20 0x6F 0x72 - 0x20 0x73 0x74 0x61 0x79 0x20 0x73 0x74 - 0x69 0x6C 0x6C 0x21 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F - 0x6E 0x2D 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x2D 0x2D 0x79 0x6F 0x75 - 0x27 0x6C 0x6C 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E 0x0D 0x0A 0x35 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7968 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_2F= 0x0001706f - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 7976 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007552F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_64=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2016D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170a7 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017c2 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x85 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x87 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xDB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0xA8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0E 0x00 0x00 0x82 - 0x03 0x00 0x00 0x00 0x87 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x67 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x91 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x0D 0x0A - 0x4D 0x61 0x6B 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x2E - 0x20 0x20 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x61 0x72 0x65 0x20 0x67 0x72 - 0x65 0x61 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x63 0x72 0x65 0x64 0x69 0x74 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x6F 0x72 0x20 0x4E 0x6F 0x6E 0x2D 0x53 - 0x63 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 - 0x20 0x2D 0x2D 0x79 0x6F 0x75 0x27 0x6C - 0x6C 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 - 0x74 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 - 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x2E 0x0D - 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x4D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x63 0x72 0x65 0x64 - 0x69 0x74 0x73 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 8141 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_30= 0x00017070 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 8149 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075530 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A0 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x12 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4E 0x6F 0x6E - 0x2D 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x0D 0x0A 0x4D 0x61 0x6B 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x73 0x74 0x61 - 0x79 0x20 0x73 0x74 0x69 0x6C 0x6C 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x74 0x61 0x79 0x20 0x73 0x74 0x69 - 0x6C 0x6C 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F - 0x6E 0x2D 0x73 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x2D 0x2D 0x79 0x6F - 0x75 0x27 0x6C 0x6C 0x20 0x66 0x69 0x6E - 0x64 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x6F 0x6E 0x2D 0x53 0x63 0x72 0x6F - 0x6C 0x6C 0x69 0x6E 0x67 0x2E 0x0D 0x0A - 0x35 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8292 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_31= 0x00017071 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 8300 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075531 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017091 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017c0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB3 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA5 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xAD 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAD 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xDA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xDA 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x01 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x66 0x6F 0x72 0x77 0x61 0x72 0x64 0x73 - 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B - 0x77 0x61 0x72 0x64 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x20 0x20 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x2E 0x0D 0x0A 0x2D - 0x2D 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x95 - 0x09 0x44 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x72 0x2E 0x0D 0x0A 0x01 0x20 0x41 0x64 - 0x64 0x69 0x6E 0x67 0x20 0x65 0x78 0x74 - 0x72 0x61 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 8443 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_32= 0x00017072 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 8451 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075532 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_76=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_67=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170a8 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_76=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF7 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xF7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x44 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_76=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x20 0x57 0x61 0x69 0x74 0x20 0x46 - 0x6F 0x72 0x20 0x43 0x6C 0x69 0x63 0x6B - 0x0D 0x0A 0x50 0x61 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x69 0x73 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x27 0x76 0x65 - 0x20 0x61 0x64 0x64 0x65 0x64 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x74 0x6F 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x6D 0x6F 0x72 0x65 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x74 0x6F - 0x20 0x72 0x65 0x61 0x64 0x20 0x74 0x68 - 0x65 0x6D 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x6E 0x65 - 0x63 0x65 0x73 0x73 0x61 0x72 0x79 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x43 0x6C - 0x69 0x63 0x6B 0x2E 0x0D 0x0A 0x01 0x20 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 8598 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_33= 0x00017073 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 8606 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075533 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_70=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017085 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001709a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x29 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB4 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x55 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x5A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x19 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x57 0x61 0x69 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E - 0x64 0x0D 0x0A 0x50 0x61 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x61 0x6C 0x6C 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x68 0x61 0x76 0x65 0x20 0x66 0x69 0x6E - 0x69 0x73 0x68 0x65 0x64 0x2E 0x20 0x20 - 0x55 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x68 - 0x61 0x73 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x74 0x61 0x6C 0x6B - 0x69 0x6E 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x70 0x61 0x75 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2E 0x0D 0x0A 0x33 0x09 0x54 0x75 0x72 - 0x6E 0x20 0x6F 0x6E 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 - 0x6E 0x64 0x2D 0x2D 0x79 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x69 0x74 0x20 0x75 0x6E 0x64 0x65 0x72 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8779 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_34= 0x00017074 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 8787 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075534 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x80 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x14 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x20 0x44 0x6F 0x6E 0x27 0x74 0x20 - 0x57 0x61 0x69 0x74 0x0D 0x0A 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x70 0x61 0x75 0x73 0x65 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x70 0x61 0x75 0x73 0x65 - 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x44 0x6F 0x6E 0x27 - 0x74 0x20 0x57 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8910 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_35= 0x00017075 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 8918 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075535 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20284 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x9E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB8 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD5 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE8 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x20 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB8 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xD5 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xE6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x12 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x03 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x01 0x20 0x20 - 0x50 0x6C 0x61 0x79 0x2F 0x53 0x74 0x6F - 0x70 0x20 0x0D 0x0A 0x52 0x65 0x77 0x69 - 0x6E 0x64 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x73 0x20 0x79 0x6F - 0x75 0x72 0x20 0x65 0x6E 0x74 0x69 0x72 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x76 0x65 0x72 0x79 0x20 0x65 0x6E - 0x64 0x2E 0x20 0x20 0x4F 0x74 0x68 0x65 - 0x72 0x77 0x69 0x73 0x65 0x2C 0x20 0x70 - 0x6C 0x61 0x79 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x61 0x72 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x74 0x6F 0x20 - 0x53 0x74 0x6F 0x70 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x53 0x74 0x6F 0x70 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x74 0x6F 0x20 0x50 0x6C 0x61 - 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9073 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_36= 0x00017076 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 9081 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075536 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170a9 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20286 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017091 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x96 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x13 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x56 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x43 0x6F 0x6E 0x74 - 0x72 0x6F 0x6C 0x0D 0x0A 0x41 0x64 0x6A - 0x75 0x73 0x74 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x61 0x6C 0x6C 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x69 0x6E 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x2D 0x2D - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x2C 0x20 0x74 0x6F - 0x6F 0x6C 0x73 0x2C 0x20 0x4D 0x63 0x5A - 0x65 0x65 0x27 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 - 0x27 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x73 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x56 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x43 0x6F 0x6E 0x74 - 0x72 0x6F 0x6C 0x20 0x73 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x0D 0x0A - 0x01 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x69 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 - 0x61 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 9213 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_37= 0x00017077 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 9221 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075537 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170aa - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x99 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x99 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x02 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xE2 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x01 0x0D 0x0A 0x55 - 0x6E 0x64 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x69 0x64 0x21 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x69 0x6E 0x64 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x72 0x65 - 0x64 0x6F 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x75 0x6E 0x64 0x69 - 0x64 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x75 - 0x6E 0x64 0x6F 0x20 0x61 0x20 0x6D 0x69 - 0x73 0x74 0x61 0x6B 0x65 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x55 - 0x6E 0x64 0x6F 0x2E 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x52 0x65 0x64 0x6F - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 - 0x64 0x6F 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x75 0x6E 0x64 0x69 - 0x64 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x64 0x6F 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x74 0x6F 0x20 0x55 0x6E 0x64 - 0x6F 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 - 0x6F 0x72 0x74 0x63 0x75 0x74 0x20 0x6B - 0x65 0x79 0x73 -ENDCHUNK - - -ENDCHUNK -#line 9353 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_38= 0x00017078 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 9361 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075538 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x07 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x75 0x74 - 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x0D 0x0A 0x47 0x65 - 0x74 0x20 0x72 0x69 0x64 0x20 0x6F 0x66 - 0x2C 0x20 0x63 0x6F 0x70 0x79 0x2C 0x20 - 0x70 0x61 0x73 0x74 0x65 0x2C 0x20 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x6F 0x6E 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x74 0x6F 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x2C 0x20 0x63 0x6F 0x70 0x79 0x2C 0x20 - 0x6F 0x72 0x20 0x70 0x61 0x73 0x74 0x65 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x6D 0x6F 0x72 - 0x65 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x65 0x61 - 0x63 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E - 0x20 0x20 0x57 0x61 0x69 0x74 0x2E 0x2E - 0x2E 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x67 0x65 0x74 0x20 0x61 0x20 0x64 0x65 - 0x73 0x63 0x72 0x69 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x65 0x61 0x63 - 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9492 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_39= 0x00017079 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 9500 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075539 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_56=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20298 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA0 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x64 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x9A 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9A 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x42 - 0x65 0x66 0x6F 0x72 0x65 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x65 0x76 - 0x65 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x66 0x69 0x72 0x73 - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 0x76 - 0x65 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x6B 0x73 0x70 - 0x61 0x63 0x65 0x2E 0x0D 0x0A 0x41 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x73 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x61 0x72 - 0x65 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x64 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 9665 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3A= 0x0001707a - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 9673 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20299 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017084 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x73 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x77 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5F 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x94 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x94 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x94 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x41 - 0x66 0x74 0x65 0x72 0x0D 0x0A 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 - 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x66 0x74 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x66 0x74 0x65 - 0x72 0x0D 0x0A 0x31 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 - 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x45 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x41 0x66 0x74 - 0x65 0x72 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x61 0x6E 0x79 - 0x77 0x68 0x65 0x72 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E 0x0D - 0x0A 0x41 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x61 0x66 0x74 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x61 0x72 0x65 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x64 0x2E 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 9840 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3B= 0x0001707b - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 9848 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029A - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170ac - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x11 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x10 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x52 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x18 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x4D 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2D 0x2D 0x69 0x6E 0x63 0x6C - 0x75 0x64 0x69 0x6E 0x67 0x20 0x61 0x6C - 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x73 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x73 0x6F 0x20 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x31 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x45 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x01 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10004 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3C= 0x0001707c - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 10012 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_78=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029B - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_78=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC4 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x08 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x20 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x08 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x20 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAE 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x77 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0xA8 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xA8 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_78=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x33 0x44 0x20 0x4F - 0x62 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x0D - 0x0A 0x31 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x73 0x65 0x65 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x72 0x65 0x65 0x6E - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x33 0x44 0x20 0x4F - 0x62 0x6A 0x65 0x63 0x74 0x2E 0x0D 0x0A - 0x35 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x2E 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x69 - 0x73 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x74 0x69 0x72 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10179 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3D= 0x0001707d - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 10187 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x81 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4B 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x7B 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x7B 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x57 0x6F 0x72 0x64 - 0x20 0x42 0x6F 0x78 0x0D 0x0A 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x57 0x6F 0x72 0x64 0x20 0x42 0x6F 0x78 - 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x2E 0x0D 0x0A 0x54 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x69 0x73 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x64 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10349 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3E= 0x0001707e - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 10357 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20053 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x26 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBA 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x82 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB4 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBA 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x39 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xB4 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x70 - 0x79 0x20 0x50 0x61 0x74 0x68 0x0D 0x0A - 0x43 0x6F 0x70 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x69 - 0x74 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x6F - 0x70 0x79 0x20 0x61 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x20 0x63 0x6F 0x70 0x79 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x6F 0x70 - 0x79 0x20 0x50 0x61 0x74 0x68 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x70 0x61 0x74 0x68 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 - 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x36 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x50 0x61 0x73 0x74 0x65 0x2E - 0x0D 0x0A 0x37 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x70 0x70 0x6C 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10532 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_3F= 0x0001707f - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 10540 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x0007553F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20054 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000170ae - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x60 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xE2 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x50 0x61 0x73 0x74 - 0x65 0x20 0x77 0x68 0x61 0x74 0x65 0x76 - 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x72 0x65 0x63 0x65 - 0x6E 0x74 0x6C 0x79 0x20 0x63 0x75 0x74 - 0x20 0x6F 0x72 0x20 0x63 0x6F 0x70 0x69 - 0x65 0x64 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x61 0x73 0x74 0x65 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x50 0x61 0x73 0x74 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x61 0x73 0x74 - 0x65 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 - 0x6F 0x72 0x74 0x63 0x75 0x74 0x20 0x6B - 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 10683 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_40= 0x00017080 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 10691 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075540 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_68=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x55 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20055 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170af - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_68=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xED 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xED 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB4 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xB4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x9E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCB 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xFD 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xCB 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xCB 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_68=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x70 - 0x79 0x0D 0x0A 0x43 0x6F 0x70 0x79 0x20 - 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x75 - 0x70 0x6C 0x69 0x63 0x61 0x74 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 0x74 - 0x65 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6C 0x6F 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x6F 0x70 0x79 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x43 0x6F 0x70 0x79 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x2E 0x0D 0x0A 0x2D - 0x2D 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x65 0x64 0x67 0x65 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F - 0x72 0x2D 0x2D 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x2C 0x20 0x64 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x70 0x79 0x2E 0x0D 0x0A 0x01 0x20 0x43 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 10879 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_41= 0x00017081 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 10887 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075541 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_58=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000170b0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20056 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017090 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDD 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x64 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAF 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8B 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x8F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF6 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xBB 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC0 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xBB 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x75 0x74 - 0x0D 0x0A 0x43 0x75 0x74 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 - 0x72 0x69 0x64 0x20 0x6F 0x66 0x20 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x75 0x74 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x75 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x75 0x74 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x75 0x74 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x75 0x74 0x20 0x61 - 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x65 0x64 0x67 0x65 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x69 0x73 0x73 0x6F 0x72 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x2E 0x0D 0x0A 0x2D - 0x2D 0x6F 0x72 0x2D 0x2D 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x75 0x74 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x69 0x6E - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x75 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x43 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 11066 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_42= 0x00017082 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 11074 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075542 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x75 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6F 0x72 - 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x6B 0x65 0x65 0x70 - 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x77 0x6F 0x72 - 0x6B 0x2E 0x20 0x59 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x61 0x6C 0x73 0x6F 0x20 - 0x73 0x74 0x61 0x72 0x74 0x20 0x61 0x20 - 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x6F 0x70 0x65 0x6E 0x20 - 0x61 0x6E 0x20 0x65 0x78 0x69 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x73 0x61 0x76 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x77 0x6F 0x72 - 0x6B 0x2C 0x20 0x6F 0x72 0x20 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6E 0x61 0x6D 0x65 0x20 0x28 0x53 - 0x61 0x76 0x65 0x20 0x41 0x73 0x29 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x6F 0x70 0x65 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x0D - 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x3A 0x20 0x20 0x4E 0x65 0x77 0x2C - 0x20 0x4F 0x70 0x65 0x6E 0x2C 0x20 0x53 - 0x61 0x76 0x65 0x2C 0x20 0x6F 0x72 0x20 - 0x53 0x61 0x76 0x65 0x20 0x41 0x73 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x6F 0x75 0x74 0x20 0x6D 0x6F - 0x72 0x65 0x2C 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x65 - 0x61 0x63 0x68 0x20 0x74 0x6F 0x6F 0x6C - 0x2E 0x20 0x57 0x61 0x69 0x74 0x2E 0x2E - 0x2E 0x79 0x6F 0x75 0x27 0x6C 0x6C 0x20 - 0x67 0x65 0x74 0x20 0x61 0x20 0x64 0x65 - 0x73 0x63 0x72 0x69 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x65 0x61 0x63 - 0x68 0x20 0x74 0x6F 0x6F 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11218 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_43= 0x00017083 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 11226 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075543 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003D - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x83 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x01 0x0D 0x0A 0x51 0x75 0x69 - 0x74 0x20 0x77 0x6F 0x72 0x6B 0x69 0x6E - 0x67 0x21 0x0D 0x0A 0x54 0x6F 0x20 0x71 - 0x75 0x69 0x74 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x45 0x78 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x65 0x69 - 0x74 0x68 0x65 0x72 0x20 0x72 0x65 0x74 - 0x75 0x72 0x6E 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x72 0x6F 0x6F 0x6D 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6F 0x72 - 0x20 0x71 0x75 0x69 0x74 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x2E 0x0D 0x0A 0x01 - 0x20 0x53 0x68 0x6F 0x72 0x74 0x63 0x75 - 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 11328 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_44= 0x00017084 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 11336 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x69 0x6E 0x67 0x20 0x26 0x20 0x72 - 0x65 0x64 0x6F 0x69 0x6E 0x67 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 11438 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_45= 0x00017085 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 11446 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x46 0x72 0x61 0x6D - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 - 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 - 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11564 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_46= 0x00017086 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 11572 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x49 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A - 0x54 0x68 0x65 0x72 0x65 0x20 0x61 0x72 - 0x65 0x20 0x6D 0x61 0x6E 0x79 0x20 0x70 - 0x6F 0x73 0x73 0x69 0x62 0x6C 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x73 0x20 0x66 0x6F - 0x72 0x20 0x65 0x61 0x63 0x68 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11675 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_47= 0x00017087 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 11683 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075547 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_66=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20034 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000170b2 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x10 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x71 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x48 0x65 0x6C 0x70 - 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 - 0x0D 0x0A 0x46 0x69 0x6E 0x64 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 - 0x6E 0x73 0x77 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2D 0x6D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x71 0x75 0x65 0x73 - 0x74 0x69 0x6F 0x6E 0x73 0x21 0x20 0x20 - 0x20 0x20 0x0D 0x0A 0x54 0x6F 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x48 0x65 0x6C 0x70 0x20 0x4D 0x61 0x63 - 0x68 0x69 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x01 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 -ENDCHUNK - - -ENDCHUNK -#line 11798 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_48= 0x00017088 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 11806 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075548 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20035 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017c1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x08 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x7D 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x61 0x70 - 0x0D 0x0A 0x51 0x75 0x69 0x63 0x6B 0x6C - 0x79 0x20 0x7A 0x69 0x70 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x72 0x6F 0x6F - 0x6D 0x20 0x6F 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x6F 0x66 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x68 0x6F - 0x69 0x63 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x6F 0x70 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x70 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x67 0x6F 0x2E 0x0D 0x0A 0x01 - 0x20 0x53 0x68 0x6F 0x72 0x74 0x63 0x75 - 0x74 0x20 0x6B 0x65 0x79 -ENDCHUNK - - -ENDCHUNK -#line 11923 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_49= 0x00017089 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 11931 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xBA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 - 0x09 0x55 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A 0x01 - 0x0D 0x0A 0x4E 0x6F 0x74 0x65 0x3A 0x20 - 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x46 0x69 0x72 0x73 0x74 - 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 - 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 - 0x6F 0x72 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12052 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4A= 0x0001708a - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 12060 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_42=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x4E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12147 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4B= 0x0001708b - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 12155 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x46 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA2 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x74 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x61 0x6E - 0x64 0x20 0x69 0x74 0x73 0x20 0x70 0x61 - 0x74 0x68 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x09 0x09 0x09 0x09 0x09 0x09 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x75 0x70 - 0x09 0x09 0x09 0x74 0x68 0x65 0x20 0x55 - 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F 0x77 - 0x6E 0x0D 0x0A 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6E - 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 0x66 - 0x61 0x72 0x09 0x09 0x09 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x09 0x09 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x09 0x09 0x53 0x68 0x69 0x66 0x74 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12295 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4C= 0x0001708c - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 12303 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x09 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x4D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2D 0x01 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x69 0x6D 0x61 0x74 - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E 0x0D - 0x0A 0x34 0x09 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D - 0x2D 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x69 0x6D - 0x61 0x74 0x65 0x20 0x69 0x6E 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x2C 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x61 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12437 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4D= 0x0001708d - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 12445 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x4F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12529 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4E= 0x0001708e - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 12537 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x41 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_44=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20021 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x0D 0x0A 0x01 0x20 - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12612 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_4F= 0x0001708f - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 12620 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 12694 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_50= 0x00017090 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 12702 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_79=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_79=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_79=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12796 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_51= 0x00017091 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 12804 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12896 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_52= 0x00017092 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 12904 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_52=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13039 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_53= 0x00017093 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 13047 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x64 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_53=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x72 - 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x73 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x01 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x77 0x69 0x74 0x68 0x69 0x6E - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13149 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_54= 0x00017094 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 13157 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 13230 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_55= 0x00017095 - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 13238 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 0x6E - 0x67 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x70 0x61 0x74 0x68 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13339 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_56= 0x00017096 - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 13347 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x27 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x65 0x6C 0x65 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x54 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 - 0x74 0x20 0x61 0x6E 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x27 0x73 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x20 0x6F 0x72 - 0x20 0x50 0x72 0x6F 0x70 0x20 0x4C 0x69 - 0x73 0x74 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x65 0x64 0x20 0x6F 0x6E 0x20 0x65 0x69 - 0x74 0x68 0x65 0x72 0x20 0x73 0x69 0x64 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x61 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13445 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_57= 0x00017097 - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 13453 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x03 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA2 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x65 0x6C - 0x65 0x63 0x74 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x76 0x69 0x65 0x77 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x27 0x73 0x20 0x70 0x69 0x63 0x74 - 0x75 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x20 0x6F 0x72 0x20 0x50 0x72 0x6F 0x70 - 0x20 0x4C 0x69 0x73 0x74 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x65 0x64 0x20 0x6F 0x6E - 0x20 0x65 0x69 0x74 0x68 0x65 0x72 0x20 - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x67 - 0x65 0x2E 0x0D 0x0A 0x54 0x68 0x69 0x73 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x67 0x65 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13565 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_58= 0x00017098 - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 13573 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x16 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_41=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA2 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x65 0x74 - 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x61 0x72 0x74 0x69 0x6E - 0x67 0x20 0x70 0x6F 0x73 0x65 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x64 0x65 0x63 0x69 0x64 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x20 0x28 0x62 0x6F - 0x74 0x68 0x20 0x66 0x65 0x65 0x74 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 0x72 - 0x69 0x67 0x68 0x74 0x20 0x66 0x6F 0x6F - 0x74 0x20 0x75 0x70 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x29 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 - 0x6F 0x73 0x65 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2D 0x01 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x73 0x73 0x69 0x67 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6F - 0x66 0x20 0x53 0x65 0x74 0x20 0x53 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x50 - 0x6F 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13711 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_59= 0x00017099 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 13719 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x67 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x22 0x66 0x72 0x65 0x65 0x7A - 0x65 0x22 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x46 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x2C 0x20 0x69 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x61 0x69 0x72 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x64 0x72 - 0x61 0x67 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x22 0x66 0x6C 0x6F 0x61 - 0x74 0x69 0x6E 0x67 0x22 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13837 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5A= 0x0001709a - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 13845 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_72=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_72=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_72=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 - 0x75 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x61 0x20 0x72 0x65 - 0x64 0x20 0x6C 0x69 0x67 0x68 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x66 0x66 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x66 0x66 - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x6E - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x65 0x72 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x64 0x20 0x6C 0x69 0x67 - 0x68 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13940 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5B= 0x0001709b - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 13948 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_51=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x70 - 0x6C 0x61 0x63 0x69 0x6E 0x67 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A 0x95 - 0x09 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x2B 0x53 0x68 0x69 0x66 0x74 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14047 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5C= 0x00017c0 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 14055 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x48 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_79=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x77 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xFD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x64 0x64 0x69 - 0x6E 0x67 0x20 0x65 0x78 0x74 0x72 0x61 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x0D - 0x0A 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x31 0x09 0x55 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x77 0x68 0x69 0x63 0x68 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2D 0x01 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x31 - 0x09 0x55 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x74 0x6F - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x74 0x6F 0x20 0x77 0x68 0x69 0x63 - 0x68 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x4E 0x65 0x78 - 0x74 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14191 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5D= 0x00017bf - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 14199 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_48=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x61 0x69 - 0x6E 0x74 0x61 0x69 0x6E 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x72 0x6F 0x74 - 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x6D - 0x6F 0x76 0x65 0x73 0x0D 0x0A 0x54 0x6F - 0x20 0x6D 0x61 0x69 0x6E 0x74 0x61 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x61 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6D 0x6F 0x76 0x65 0x73 0x0D 0x0A 0x95 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x73 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 0x74 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x4E - 0x6F 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x6F 0x6E - 0x27 0x74 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x2C 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x74 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6C 0x61 0x73 - 0x74 0x73 0x20 0x66 0x6F 0x72 0x20 0x6F - 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14306 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5E= 0x0001709e - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 14314 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x46 0x39 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14397 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_5F= 0x0001709f - - -CHUNK('HTOP', _help_48544F50_5F, "") -SUBFILE -#line 14405 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_5F, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x4B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x53 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14490 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_60= 0x000170a0 - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 14498 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_75=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 0x0D - 0x0A 0x31 0x09 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4C 0x6F 0x6F 0x70 0x2D 0x01 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14607 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_61= 0x000170a1 - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 14615 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCD 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x74 0x74 0x61 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x61 - 0x74 0x74 0x61 0x63 0x68 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x20 0x4D - 0x61 0x74 0x63 0x68 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14740 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_62= 0x000170a2 - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 14748 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_60=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_60=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_60=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x33 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 0x6F - 0x74 0x74 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14857 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_63= 0x000170a3 - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 14865 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x30 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x1F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x20 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x01 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x1F 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x61 0x75 - 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 - 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 0x64 - 0x6F 0x6E 0x65 0x20 0x74 0x61 0x6C 0x6B - 0x69 0x6E 0x67 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 - 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 14986 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_64= 0x000170a4 - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 14994 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x55 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x50 0x61 0x75 0x73 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x79 0x6F - 0x75 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x61 0x64 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x79 0x6F - 0x75 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x61 0x64 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x0D 0x0A 0x31 - 0x09 0x49 0x66 0x20 0x6E 0x65 0x63 0x65 - 0x73 0x73 0x61 0x72 0x79 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x57 0x61 0x69 0x74 0x20 - 0x46 0x6F 0x72 0x20 0x43 0x6C 0x69 0x63 - 0x6B 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 15109 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_65= 0x000170a5 - - -CHUNK('HTOP', _help_48544F50_65, "") -SUBFILE -#line 15117 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_65, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x54 0x79 0x70 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x6E 0x74 0x73 - 0x0D 0x0A 0x95 0x09 0x54 0x68 0x65 0x20 - 0x62 0x6C 0x69 0x6E 0x6B 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 0x69 - 0x6F 0x6E 0x20 0x70 0x6F 0x69 0x6E 0x74 - 0x20 0x28 0x6C 0x29 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x73 0x68 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x67 0x6F 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x74 0x79 0x70 0x65 0x2E 0x0D 0x0A - 0x95 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x6D 0x69 0x73 0x74 0x61 0x6B 0x65 0x2C - 0x20 0x70 0x72 0x65 0x73 0x73 0x20 0x42 - 0x61 0x63 0x6B 0x73 0x70 0x61 0x63 0x65 - 0x2E 0x0D 0x0A 0x95 0x09 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x72 0x65 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x65 0x64 - 0x67 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x78 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x61 0x75 - 0x74 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 - 0x6C 0x6C 0x79 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x6C 0x69 0x6E - 0x65 0x2E 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 - 0x73 0x69 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15226 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_66= 0x000170a6 - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 15234 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2D 0x01 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x57 0x6F - 0x72 0x64 0x20 0x42 0x6F 0x78 0x2D 0x01 - 0x0D 0x0A 0x33 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x65 0x64 0x67 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x69 0x73 0x73 - 0x6F 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15348 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_67= 0x000170a7 - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 15356 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x73 0x63 0x72 0x6F 0x6C 0x6C - 0x0D 0x0A 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x72 0x6F 0x6C - 0x6C 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15430 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_68= 0x000170a8 - - -CHUNK('HTOP', _help_48544F50_68, "") -SUBFILE -#line 15438 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_68, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_70=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_68=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004D - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_70=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x22 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA5 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x0F 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA5 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xA8 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x22 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_70=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x70 - 0x61 0x75 0x73 0x65 0x0D 0x0A 0x31 0x09 - 0x49 0x66 0x20 0x6E 0x65 0x63 0x65 0x73 - 0x73 0x61 0x72 0x79 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x75 0x73 0x65 0x2E 0x0D 0x0A 0x01 - 0x0D 0x0A 0x01 0x0D 0x0A 0x4E 0x6F 0x74 - 0x65 0x3A 0x20 0x20 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x44 0x6F 0x6E 0x27 0x74 0x20 0x57 - 0x61 0x69 0x74 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 15578 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_69= 0x000170a9 - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 15586 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x58 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15690 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6A= 0x000170aa - - -CHUNK('HTOP', _help_48544F50_6A, "") -SUBFILE -#line 15698 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x69 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x73 0x0D 0x0A 0x54 0x6F 0x20 0x75 - 0x6E 0x64 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x20 0x64 - 0x69 0x64 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x43 0x74 0x72 0x6C 0x2B 0x5A 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x79 0x6F 0x75 0x20 0x75 0x6E 0x64 0x69 - 0x64 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x59 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15798 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6B= 0x000170ab - - -CHUNK('HTOP', _help_48544F50_6B, "") -SUBFILE -#line 15806 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6B, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 15881 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6C= 0x000170ac - - -CHUNK('HTOP', _help_48544F50_6C, "") -SUBFILE -#line 15889 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xB3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x55 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x01 - 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 - 0x74 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 - 0x73 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6F 0x72 0x20 0x64 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16007 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6D= 0x000170ad - - -CHUNK('HTOP', _help_48544F50_6D, "") -SUBFILE -#line 16015 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x99 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFE 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x04 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC5 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xFB 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 0x69 - 0x74 0x68 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x55 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x01 - 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 - 0x74 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 - 0x73 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6F 0x72 0x20 0x64 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x95 0x09 0x55 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E 0x0D 0x0A 0x01 0x0D 0x0A - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x2C - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C - 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16160 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6E= 0x000170ae - - -CHUNK('HTOP', _help_48544F50_6E, "") -SUBFILE -#line 16168 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6E, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_69=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_61=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_69=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_69=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x2B 0x56 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16252 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_6F= 0x000170af - - -CHUNK('HTOP', _help_48544F50_6F, "") -SUBFILE -#line 16260 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_6F, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x6F 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x73 - 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x53 - 0x68 0x69 0x66 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16355 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_70= 0x000170b0 - - -CHUNK('HTOP', _help_48544F50_70, "") -SUBFILE -#line 16363 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_70, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x75 0x74 - 0x74 0x69 0x6E 0x67 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x75 0x74 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x53 0x68 - 0x69 0x66 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16456 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_71= 0x000170b1 - - -CHUNK('HTOP', _help_48544F50_71, "") -SUBFILE -#line 16464 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_71, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x51 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16548 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_72= 0x000170b2 - - -CHUNK('HTOP', _help_48544F50_72, "") -SUBFILE -#line 16556 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_72, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_73=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x50 0x72 0x65 - 0x73 0x73 0x20 0x46 0x31 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16637 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_73= 0x000170b3 - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 16645 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x03 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_78=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x95 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA6 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xB0 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x74 0x6F 0x70 - 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x6F 0x70 0x3A 0x0D 0x0A 0x01 - 0x2D 0x53 0x6F 0x75 0x6E 0x64 0x20 0x45 - 0x66 0x66 0x65 0x63 0x74 0x73 0x0D 0x0A - 0x01 0x2D 0x53 0x70 0x65 0x65 0x63 0x68 - 0x0D 0x0A 0x01 0x2D 0x4D 0x75 0x73 0x69 - 0x63 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x53 0x74 0x6F 0x70 0x70 0x65 0x72 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16768 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_74= 0x000170b4 - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 16776 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_43=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x95 - 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x73 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x01 0x0D 0x0A - 0x95 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F - 0x20 0x61 0x64 0x64 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x01 -ENDCHUNK - - -ENDCHUNK -#line 16880 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_75= 0x000170b5 - - -CHUNK('HTOP', _help_48544F50_75, "") -SUBFILE -#line 16888 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_75, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x03 0x03 0x70 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 16961 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_76= 0x000170b6 - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 16969 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E - 0x20 0x49 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x3F 0x0D 0x0A 0x59 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x3A 0x0D 0x0A 0x95 0x09 0x54 - 0x77 0x6F 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x28 0x6F 0x6E 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x6E 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6F 0x6E 0x29 0x2E 0x0D 0x0A 0x95 - 0x09 0x54 0x77 0x6F 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x20 0x28 0x6F 0x6E 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x70 0x65 - 0x65 0x63 0x68 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x69 0x6E 0x67 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17068 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_77= 0x000170b7 - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 17076 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_76=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x69 0x6E 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x74 - 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x79 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 0x66 - 0x74 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x69 0x73 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x70 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x6C 0x79 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x2D 0x2D 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x27 0x74 0x20 0x69 0x6E - 0x73 0x65 0x72 0x74 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17198 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_78= 0x000170ba - - -CHUNK('HTOP', _help_48544F50_78, "") -SUBFILE -#line 17206 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_78, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_46=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x53 0x68 0x69 0x66 0x74 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17305 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_79= 0x000170b8 - - -CHUNK('HTOP', _help_48544F50_79, "") -SUBFILE -#line 17313 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_79, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_63=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_63=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_63=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x03 0x03 0x49 0x6D 0x70 0x6F 0x72 0x74 - 0x0D 0x0A 0x54 0x6F 0x20 0x75 0x73 0x65 - 0x20 0x61 0x20 0x66 0x69 0x6C 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x77 0x69 0x74 0x68 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17384 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7A= 0x000170b9 - - -CHUNK('HTOP', _help_48544F50_7A, "") -SUBFILE -#line 17392 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7A, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_72=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20291 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20292 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20293 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20294 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x03 0x03 0x74 0x72 0x61 0x6E 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x73 0x0D 0x0A 0x01 - 0x09 0x43 0x75 0x74 0x20 0x74 0x6F 0x20 - 0x62 0x6C 0x61 0x63 0x6B 0x0D 0x0A 0x01 - 0x09 0x44 0x69 0x73 0x73 0x6F 0x6C 0x76 - 0x65 0x0D 0x0A 0x01 0x09 0x44 0x69 0x73 - 0x73 0x6F 0x6C 0x76 0x65 0x20 0x77 0x69 - 0x74 0x68 0x20 0x62 0x6C 0x61 0x63 0x6B - 0x0D 0x0A 0x01 0x09 0x44 0x69 0x73 0x73 - 0x6F 0x6C 0x76 0x65 0x20 0x77 0x69 0x74 - 0x68 0x20 0x77 0x68 0x69 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 17491 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7B= 0x000170be - - -CHUNK('HTOP', _help_48544F50_7B, "") -SUBFILE -#line 17499 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7B, "") - BO OSK LONG 0x00016011 0x0 0x20161 0x000305F0 0x0 0x0 0x57415645 0x00075549 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_55=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017084 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017092 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170ab - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x85 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x85 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x62 0x65 0x67 0x69 0x6E 0x73 0x2E - 0x20 0x20 0x20 0x59 0x6F 0x75 0x27 0x6C - 0x6C 0x20 0x68 0x65 0x61 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2E 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 - 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 - 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 0x2E - 0x0D 0x0A 0x35 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 17665 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7C= 0x00017c1 - - -CHUNK('HTOP', _help_48544F50_7C, "") -SUBFILE -#line 17673 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_77=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x4D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17760 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_7D= 0x00017c2 - - -CHUNK('HTOP', _help_48544F50_7D, "") -SUBFILE -#line 17768 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_7D, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_80=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x21 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_80=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x26 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFC 0x00 0x00 0x82 - 0xFB 0xFF 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_80=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x03 0x03 0x01 0x09 0x4D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x73 0x63 0x72 0x6F 0x6C - 0x6C 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x0D 0x0A - 0x31 0x09 0x54 0x79 0x70 0x65 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6C 0x6C 0x20 0x75 0x70 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x62 0x6F 0x78 0x2E 0x0D - 0x0A 0x32 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x63 0x6F 0x6D 0x70 0x6C - 0x65 0x74 0x65 0x6C 0x79 0x20 0x6F 0x66 - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x61 0x64 - 0x64 0x20 0x62 0x6C 0x61 0x6E 0x6B 0x20 - 0x6C 0x69 0x6E 0x65 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x65 - 0x64 0x69 0x74 0x73 0x20 0x62 0x6F 0x78 - 0x20 0x62 0x79 0x20 0x70 0x72 0x65 0x73 - 0x73 0x69 0x6E 0x67 0x20 0x45 0x6E 0x74 - 0x65 0x72 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x6F 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x20 0x73 - 0x65 0x65 0x20 0x61 0x6E 0x79 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 17887 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_83= 0x000170bc - - -CHUNK('HTOP', _help_48544F50_83, "") -SUBFILE -#line 17895 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_83, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F - 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A 0x95 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x55 - 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F 0x77 - 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 - 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17992 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - - -SET _help_48544F50_92= 0x000170bd - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 18000 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_74=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x88 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x92 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x8F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 0x72 - 0x66 0x61 0x63 0x65 0x0D 0x0A 0x31 0x09 - 0x22 0x54 0x75 0x72 0x6E 0x20 0x6F 0x6E - 0x22 0x20 0x74 0x68 0x65 0x20 0x46 0x61 - 0x6C 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 0x74 - 0x68 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x69 0x73 0x20 0x70 0x75 0x73 - 0x68 0x65 0x64 0x20 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x20 0x6C 0x69 - 0x67 0x68 0x74 0x73 0x20 0x75 0x70 0x2E - 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 18122 "H:\\BUILD\\SOC\\src\\help\\toolhelp.cht" - -#line 18 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -SET _help_48544F50_0= 0x22334 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001602b 0x0 0x20005 0x000305F4 0x0 0x0 0x57415645 0x00076000 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 90 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1= 0x22340 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 98 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600d 0x0 0x20042 0x000305F4 0x0 0x0 0x57415645 0x00076001 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x43 0x68 0x6F 0x69 0x63 0x65 0x73 0x0D - 0x0A 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x6D 0x61 0x6E - 0x79 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 183 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2= 0x22318 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 191 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600d 0x0 0x20014 0x000305F4 0x0 0x0 0x57415645 0x00076002 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_40=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 0x0D - 0x0A 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x76 0x69 0x65 0x77 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 281 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3= 0x223B0 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 289 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600d 0x0 0x2008B 0x000305F4 0x0 0x0 0x57415645 0x00076003 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x4D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 374 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4= 0x22335 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 382 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001602b 0x0 0x20006 0x000305F4 0x0 0x0 0x57415645 0x00076004 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 440 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5= 0x22341 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 448 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600d 0x0 0x20075 0x000305F4 0x0 0x0 0x57415645 0x00076005 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x0D 0x0A 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x72 0x61 - 0x63 0x74 0x65 0x72 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 534 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_6= 0x22319 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 542 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600d 0x0 0x2003A 0x000305F4 0x0 0x0 0x57415645 0x00076006 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 - 0x72 0x20 0x61 0x6E 0x64 0x20 0x61 0x64 - 0x64 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 629 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_7= 0x22342 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 637 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600d 0x0 0x20076 0x000305F4 0x0 0x0 0x57415645 0x00076007 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x6F 0x70 0x73 0x20 - 0x0D 0x0A 0x41 0x64 0x64 0x20 0x70 0x72 - 0x6F 0x70 0x73 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x66 0x75 0x72 0x6E 0x69 0x74 0x75 - 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x61 0x72 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 723 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_8= 0x22343 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 731 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001600d 0x0 0x20077 0x000305F4 0x0 0x0 0x57415645 0x00076008 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x70 0x69 - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 819 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_9= 0x22320 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 827 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001600d 0x0 0x20018 0x000305F4 0x0 0x0 0x57415645 0x00076009 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 916 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_A= 0x22326 - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 924 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001600d 0x0 0x20065 0x000305F4 0x0 0x0 0x57415645 0x0007600A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_44=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x0D 0x0A 0x52 0x65 - 0x73 0x69 0x7A 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1011 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_B= 0x22314 - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1019 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001602e 0x0 0x20021 0x000305F4 0x0 0x0 0x57415645 0x0007600B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x65 0x20 0x45 - 0x76 0x65 0x6E 0x6C 0x79 0x0D 0x0A 0x45 - 0x76 0x65 0x6E 0x6C 0x79 0x20 0x67 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x73 0x68 - 0x72 0x69 0x6E 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1105 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_C= 0x22313 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1113 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001602e 0x0 0x20020 0x000305F4 0x0 0x0 0x57415645 0x0007600C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x92 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x53 0x71 0x75 0x61 0x73 0x68 - 0x20 0x26 0x20 0x53 0x74 0x72 0x65 0x74 - 0x63 0x68 0x0D 0x0A 0x4D 0x61 0x6B 0x65 - 0x20 0x73 0x68 0x6F 0x72 0x74 0x65 0x72 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x69 0x64 - 0x65 0x72 0x20 0x6F 0x72 0x20 0x74 0x61 - 0x6C 0x6C 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x69 0x6E 0x6E 0x65 0x72 - 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1201 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_D= 0x22315 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1209 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001602e 0x0 0x2006C 0x000305F4 0x0 0x0 0x57415645 0x0007600D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x42 0x61 0x63 0x6B 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x69 0x74 0x73 0x20 0x6F 0x72 0x69 - 0x67 0x69 0x6E 0x61 0x6C 0x20 0x73 0x69 - 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1299 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_E= 0x22325 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1307 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001600d 0x0 0x20064 0x000305F4 0x0 0x0 0x57415645 0x0007600E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x74 0x61 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x0D 0x0A - 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x64 0x69 0x72 0x65 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x66 0x61 0x63 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1395 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_F= 0x22310 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1403 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001600d 0x0 0x2001D 0x000305F4 0x0 0x0 0x57415645 0x0007600F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x4C - 0x65 0x66 0x74 0x20 0x6F 0x72 0x20 0x52 - 0x69 0x67 0x68 0x74 0x0D 0x0A 0x54 0x75 - 0x72 0x6E 0x20 0x6C 0x65 0x66 0x74 0x20 - 0x6F 0x72 0x20 0x72 0x69 0x67 0x68 0x74 - 0x2E 0x0D 0x0A 0x50 0x2E 0x53 0x2E 0x20 - 0x20 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x69 0x74 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1491 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_10= 0x2230F - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1499 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001600d 0x0 0x2001C 0x000305F4 0x0 0x0 0x57415645 0x00076010 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x20 0x46 0x6F - 0x72 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 - 0x20 0x42 0x61 0x63 0x6B 0x0D 0x0A 0x54 - 0x69 0x70 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x2E 0x0D 0x0A 0x50 0x2E 0x53 - 0x2E 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x69 0x74 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x6C 0x6F 0x6E 0x67 0x65 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1588 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_11= 0x22311 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1596 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001600d 0x0 0x2001E 0x000305F4 0x0 0x0 0x57415645 0x00076011 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x20 0x74 0x6F - 0x20 0x4F 0x6E 0x65 0x20 0x53 0x69 0x64 - 0x65 0x0D 0x0A 0x54 0x69 0x70 0x20 0x73 - 0x69 0x64 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x69 0x64 0x65 0x2E 0x0D 0x0A 0x50 0x2E - 0x53 0x2E 0x20 0x20 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x69 0x74 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x6C 0x6F 0x6E 0x67 0x65 - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1687 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_12= 0x22312 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1695 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001600d 0x0 0x2006B 0x000305F4 0x0 0x0 0x57415645 0x00076012 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x42 0x61 0x63 0x6B 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x69 0x74 0x20 0x77 0x61 0x73 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x6F 0x74 0x61 0x74 - 0x65 0x64 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1786 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_13= 0x22324 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1794 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001600d 0x0 0x2001F 0x000305F4 0x0 0x0 0x57415645 0x00076013 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x53 0x79 0x6E 0x63 0x68 0x72 - 0x6F 0x6E 0x69 0x7A 0x65 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x67 0x65 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x69 0x63 0x75 0x6C - 0x61 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1868 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_14= 0x2231F - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1876 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001600d 0x0 0x20017 0x000305F4 0x0 0x0 0x57415645 0x00076014 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x73 0x20 0x70 0x61 0x74 0x68 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1965 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_15= 0x2231D - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1973 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001600d 0x0 0x20015 0x000305F4 0x0 0x0 0x57415645 0x00076015 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 2031 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_16= 0x22321 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2039 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001600d 0x0 0x2007B 0x000305F4 0x0 0x0 0x57415645 0x00076016 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x0D 0x0A 0x4D 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x6D 0x6F - 0x76 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 2126 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_17= 0x22322 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2134 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001600d 0x0 0x20063 0x000305F4 0x0 0x0 0x57415645 0x00076017 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x73 0x75 0x6D 0x65 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x75 0x73 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2223 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_18= 0x22323 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2231 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001600d 0x0 0x2001B 0x000305F4 0x0 0x0 0x57415645 0x00076018 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 2292 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_19= 0x22328 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2300 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001600d 0x0 0x20024 0x000305F4 0x0 0x0 0x57415645 0x00076019 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x46 0x61 0x6C 0x6C 0x20 0x54 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x47 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 0x73 - 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E 0x2C - 0x22 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x63 0x61 0x6E - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x73 0x75 0x72 0x66 0x61 0x63 0x65 - 0x2E 0x20 0x20 0x4F 0x74 0x68 0x65 0x72 - 0x77 0x69 0x73 0x65 0x2C 0x20 0x69 0x74 - 0x20 0x63 0x61 0x6E 0x27 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2399 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1A= 0x22327 - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2407 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001600d 0x0 0x20022 0x000305F4 0x0 0x0 0x57415645 0x0007601A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x55 0x70 0x20 0x26 0x20 0x44 - 0x6F 0x77 0x6E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x69 - 0x73 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x28 0x69 0x6E 0x73 - 0x74 0x65 0x61 0x64 0x20 0x6F 0x66 0x20 - 0x6E 0x65 0x61 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x61 0x72 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2505 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1B= 0x2231E - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2513 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001600d 0x0 0x20016 0x000305F4 0x0 0x0 0x57415645 0x0007601B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_41=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x42 0x6F 0x6F 0x6B 0x0D 0x0A 0x47 - 0x69 0x76 0x65 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x6F - 0x6F 0x70 0x20 0x6F 0x6E 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x20 0x75 0x73 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 2600 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1C= 0x2236C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2608 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001600d 0x0 0x21100 0x000305F4 0x0 0x0 0x57415645 0x0007601C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x4C 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 - 0x6F 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x79 0x6F 0x75 0x27 0x76 - 0x65 0x20 0x75 0x73 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2693 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1D= 0x2238C - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2701 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001600d 0x0 0x21110 0x000305F4 0x0 0x0 0x57415645 0x0007601D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x6F 0x70 0x20 0x4C - 0x69 0x73 0x74 0x0D 0x0A 0x53 0x68 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2791 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1E= 0x22336 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2799 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001602b 0x0 0x20007 0x000305F4 0x0 0x0 0x57415645 0x0007601E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 2857 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_1F= 0x22344 - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2865 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001600d 0x0 0x20078 0x000305F4 0x0 0x0 0x57415645 0x0007601F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x45 0x66 0x66 0x65 0x63 0x74 0x73 0x0D - 0x0A 0x41 0x64 0x64 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x65 0x66 0x66 0x65 0x63 - 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2949 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_20= 0x22345 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2957 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001600d 0x0 0x22345 0x000305F4 0x0 0x0 0x57415645 0x00076020 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x65 0x65 0x63 0x68 - 0x0D 0x0A 0x4D 0x61 0x6B 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x61 0x6C 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 3040 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_21= 0x22346 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3048 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001600d 0x0 0x2007A 0x000305F4 0x0 0x0 0x57415645 0x00076021 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x69 0x63 0x0D - 0x0A 0x41 0x74 0x74 0x61 0x63 0x68 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x20 0x74 0x6F - 0x20 0x61 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3130 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_22= 0x22329 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3138 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001600d 0x0 0x20026 0x000305F4 0x0 0x0 0x57415645 0x00076022 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x4F - 0x6E 0x63 0x65 0x0D 0x0A 0x41 0x74 0x74 - 0x61 0x63 0x68 0x65 0x73 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x73 0x20 0x69 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x74 0x69 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3228 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_23= 0x2232B - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3236 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001600d 0x0 0x20029 0x000305F4 0x0 0x0 0x57415645 0x00076023 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4C 0x6F 0x6F 0x70 0x0D 0x0A - 0x41 0x74 0x74 0x61 0x63 0x68 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x6E - 0x64 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 - 0x69 0x74 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3323 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_24= 0x2232C - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3331 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001600d 0x0 0x2002A 0x000305F4 0x0 0x0 0x57415645 0x00076024 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 0x72 - 0x0D 0x0A 0x41 0x74 0x74 0x61 0x63 0x68 - 0x65 0x73 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3419 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_25= 0x2232A - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3427 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001600d 0x0 0x20027 0x000305F4 0x0 0x0 0x57415645 0x00076025 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x4C 0x69 0x73 0x74 - 0x65 0x6E 0x20 0x74 0x6F 0x2C 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2C 0x20 0x6F - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3519 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_26= 0x22337 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3527 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001602b 0x0 0x20008 0x000305F4 0x0 0x0 0x57415645 0x00076026 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 3585 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_27= 0x22347 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3593 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001600d 0x0 0x20046 0x000305F4 0x0 0x0 0x57415645 0x00076027 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x20 0x42 - 0x6F 0x78 0x0D 0x0A 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x62 0x6F 0x78 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x74 - 0x79 0x70 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 - 0x63 0x72 0x65 0x64 0x69 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3681 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_28= 0x22331 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3689 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001600d 0x0 0x20030 0x000305F4 0x0 0x0 0x57415645 0x00076028 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x73 0x65 0x72 0x74 - 0x69 0x6F 0x6E 0x20 0x50 0x6F 0x69 0x6E - 0x74 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x2C - 0x20 0x72 0x65 0x73 0x69 0x7A 0x65 0x2C - 0x20 0x6F 0x72 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3780 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_29= 0x22330 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3788 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001600d 0x0 0x2002F 0x000305F4 0x0 0x0 0x57415645 0x00076029 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_43=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x61 - 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x73 0x20 0x6C - 0x6F 0x6F 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 3871 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2A= 0x2232E - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3879 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001600d 0x0 0x2002D 0x000305F4 0x0 0x0 0x57415645 0x0007602A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x79 0x6C 0x65 0x73 - 0x0D 0x0A 0x4D 0x61 0x6B 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x73 0x74 0x61 - 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 0x77 - 0x69 0x74 0x68 0x20 0x73 0x74 0x79 0x6C - 0x65 0x73 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x62 0x6F 0x6C 0x64 0x20 0x6F 0x72 0x20 - 0x69 0x74 0x61 0x6C 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3966 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2B= 0x22332 - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3974 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001600d 0x0 0x20032 0x000305F4 0x0 0x0 0x57415645 0x0007602B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x20 0x53 0x69 0x7A 0x65 0x0D 0x0A 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4058 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2C= 0x2232F - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4066 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001600d 0x0 0x2002E 0x000305F4 0x0 0x0 0x57415645 0x0007602C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x20 0x43 0x6F 0x6C 0x6F 0x72 0x0D 0x0A - 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4150 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2D= 0x2232D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4158 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001600d 0x0 0x2002C 0x000305F4 0x0 0x0 0x57415645 0x0007602D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x43 0x6F 0x6C - 0x6F 0x72 0x0D 0x0A 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4245 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2E= 0x22333 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4253 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001600d 0x0 0x20069 0x000305F4 0x0 0x0 0x57415645 0x0007602E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E - 0x6F 0x6E 0x2D 0x53 0x63 0x72 0x6F 0x6C - 0x6C 0x69 0x6E 0x67 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x61 0x79 0x20 0x73 0x74 0x69 0x6C 0x6C - 0x21 -ENDCHUNK - - -ENDCHUNK -#line 4342 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_2F= 0x22316 - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4350 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001602e 0x0 0x20031 0x000305F4 0x0 0x0 0x57415645 0x0007602F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x72 0x6F 0x6C 0x6C - 0x69 0x6E 0x67 0x0D 0x0A 0x4D 0x61 0x6B - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 0x63 - 0x72 0x6F 0x6C 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4433 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_30= 0x22317 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4441 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001602e 0x0 0x20033 0x000305F4 0x0 0x0 0x57415645 0x00076030 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x6E 0x2D 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x0D - 0x0A 0x4D 0x61 0x6B 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x74 0x61 0x79 0x20 0x73 - 0x74 0x69 0x6C 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4525 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_31= 0x223B2 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4533 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001602e 0x0 0x20082 0x000305F4 0x0 0x0 0x57415645 0x00076031 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x0D 0x0A - 0x4D 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 - 0x64 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4620 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_32= 0x2231A - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4628 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001600d 0x0 0x2004C 0x000305F4 0x0 0x0 0x57415645 0x00076032 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 4689 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_33= 0x2231C - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4697 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001600d 0x0 0x2004E 0x000305F4 0x0 0x0 0x57415645 0x00076033 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x57 0x61 0x69 0x74 0x20 0x46 - 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 0x0D - 0x0A 0x50 0x61 0x75 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 0x73 - 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4787 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_34= 0x2231B - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4795 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001600d 0x0 0x2004D 0x000305F4 0x0 0x0 0x57415645 0x00076034 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x85 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4853 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_35= 0x2233D - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4861 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001602e 0x0 0x20039 0x000305F4 0x0 0x0 0x57415645 0x00076035 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x2F 0x53 - 0x74 0x6F 0x70 0x20 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x53 0x74 0x6F 0x70 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4946 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_36= 0x2233C - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4954 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x0001602e 0x0 0x20038 0x000305F4 0x0 0x0 0x57415645 0x00076036 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F 0x6C - 0x0D 0x0A 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5041 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_37= 0x2233B - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5049 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001602e 0x0 0x20037 0x000305F4 0x0 0x0 0x57415645 0x00076037 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x55 0x6E 0x64 0x6F 0x2F 0x52 - 0x65 0x64 0x6F 0x0D 0x0A 0x55 0x6E 0x64 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x69 0x64 - 0x21 0x20 0x20 0x52 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x21 -ENDCHUNK - - -ENDCHUNK -#line 5138 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_38= 0x2233A - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5146 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001602e 0x0 0x20036 0x000305F4 0x0 0x0 0x57415645 0x00076038 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x0D 0x0A 0x47 0x65 0x74 0x20 - 0x72 0x69 0x64 0x20 0x6F 0x66 0x2C 0x20 - 0x63 0x6F 0x70 0x79 0x2C 0x20 0x70 0x61 - 0x73 0x74 0x65 0x2C 0x20 0x6F 0x72 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x6F 0x6E 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x6F 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5239 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_39= 0x22308 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5247 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001600d 0x0 0x20062 0x000305F4 0x0 0x0 0x57415645 0x00076039 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x42 0x65 0x66 0x6F - 0x72 0x65 0x0D 0x0A 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5339 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3A= 0x22307 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5347 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001600d 0x0 0x20050 0x000305F4 0x0 0x0 0x57415645 0x0007603A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x58 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x41 0x66 0x74 0x65 - 0x72 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x65 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5439 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3B= 0x22309 - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5447 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602e 0x0 0x20051 0x000305F4 0x0 0x0 0x57415645 0x0007603B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5531 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3C= 0x2230A - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5539 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001602e 0x0 0x20052 0x000305F4 0x0 0x0 0x57415645 0x0007603C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x33 0x44 0x20 0x4F 0x62 0x6A 0x65 - 0x63 0x74 0x0D 0x0A 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5628 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3D= 0x223B5 - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5636 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001602e 0x0 0x20052 0x000305F4 0x0 0x0 0x57415645 0x0007603D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x57 0x6F 0x72 0x64 0x20 0x42 0x6F - 0x78 0x0D 0x0A 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5724 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3E= 0x2230B - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5732 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001602e 0x0 0x20053 0x000305F4 0x0 0x0 0x57415645 0x0007603E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x20 0x50 - 0x61 0x74 0x68 0x0D 0x0A 0x43 0x6F 0x70 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5819 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_3F= 0x2230C - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5827 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001602e 0x0 0x20054 0x000305F4 0x0 0x0 0x57415645 0x0007603F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x73 0x74 0x65 0x0D - 0x0A 0x50 0x61 0x73 0x74 0x65 0x20 0x77 - 0x68 0x61 0x74 0x65 0x76 0x65 0x72 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x73 0x74 - 0x20 0x72 0x65 0x63 0x65 0x6E 0x74 0x6C - 0x79 0x20 0x63 0x75 0x74 0x20 0x6F 0x72 - 0x20 0x63 0x6F 0x70 0x69 0x65 0x64 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5916 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_40= 0x2230D - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 5924 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x0001602e 0x0 0x20055 0x000305F4 0x0 0x0 0x57415645 0x00076040 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x0D 0x0A - 0x43 0x6F 0x70 0x79 0x20 0x77 0x68 0x61 - 0x74 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x70 0x61 0x73 0x74 - 0x65 0x20 0x69 0x74 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6017 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_41= 0x2230E - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 6025 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001602e 0x0 0x20056 0x000305F4 0x0 0x0 0x57415645 0x00076041 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x43 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x69 - 0x74 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6C 0x6F 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6119 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_42= 0x2233E - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 6127 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001602e 0x0 0x2003C 0x000305F4 0x0 0x0 0x57415645 0x00076042 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x50 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x0D 0x0A 0x53 0x74 0x61 - 0x72 0x74 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x6F 0x70 0x65 0x6E 0x20 0x61 0x6E 0x20 - 0x65 0x78 0x69 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x61 0x76 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 0x6F - 0x72 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6220 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_43= 0x22305 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 6228 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001602e 0x0 0x20049 0x000305F4 0x0 0x0 0x57415645 0x00076043 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x77 0x0D 0x0A 0x53 - 0x74 0x61 0x72 0x74 0x20 0x61 0x20 0x6E - 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x72 0x61 0x74 0x63 0x68 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6310 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_44= 0x22304 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 6318 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602e 0x0 0x20048 0x000305F4 0x0 0x0 0x57415645 0x00076044 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x4F 0x70 0x65 0x6E 0x0D 0x0A - 0x4F 0x70 0x65 0x6E 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x77 0x61 0x74 0x63 0x68 0x20 0x69 0x74 - 0x20 0x6F 0x72 0x20 0x77 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x69 0x74 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6404 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_45= 0x22306 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 6412 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602e 0x0 0x2004A 0x000305F4 0x0 0x0 0x57415645 0x00076045 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x63 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x53 0x61 0x76 0x65 0x0D 0x0A - 0x53 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x77 0x6F 0x72 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6493 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_46= 0x223B3 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 6501 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602e 0x0 0x20095 0x000305F4 0x0 0x0 0x57415645 0x00076046 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x53 0x61 0x76 0x65 0x20 0x41 - 0x73 0x0D 0x0A 0x53 0x61 0x76 0x65 0x20 - 0x61 0x20 0x63 0x6F 0x70 0x79 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x69 0x74 - 0x68 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 - 0x6E 0x61 0x6D 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6585 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_47= 0x22338 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 6593 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001602e 0x0 0x20034 0x000305F4 0x0 0x0 0x57415645 0x00076047 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6C 0x70 0x20 0x4D - 0x61 0x63 0x68 0x69 0x6E 0x65 0x0D 0x0A - 0x46 0x69 0x6E 0x64 0x20 0x61 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x20 0x61 0x6E 0x73 - 0x77 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2D 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x71 0x75 0x65 0x73 0x74 0x69 - 0x6F 0x6E 0x73 0x21 0x20 -ENDCHUNK - - -ENDCHUNK -#line 6681 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_48= 0x22339 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 6689 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001602e 0x0 0x20035 0x000305F4 0x0 0x0 0x57415645 0x00076048 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x70 0x0D 0x0A 0x51 - 0x75 0x69 0x63 0x6B 0x6C 0x79 0x20 0x7A - 0x69 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6F 0x6D 0x20 0x6F - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x68 0x6F 0x69 0x63 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6774 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_49= 0x2233F - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 6782 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602e 0x0 0x2003D 0x000305F4 0x0 0x0 0x57415645 0x00076049 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x69 0x74 0x0D 0x0A - 0x51 0x75 0x69 0x74 0x20 0x77 0x6F 0x72 - 0x6B 0x69 0x6E 0x67 0x21 -ENDCHUNK - - -ENDCHUNK -#line 6848 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4A= 0x2236D - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 6856 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001600d 0x0 0x21100 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x30 -ENDCHUNK - - -ENDCHUNK -#line 6914 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4B= 0x2236E - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 6922 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001600d 0x0 0x21101 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x31 -ENDCHUNK - - -ENDCHUNK -#line 6980 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4C= 0x2236F - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 6988 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x0001600d 0x0 0x21102 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x32 -ENDCHUNK - - -ENDCHUNK -#line 7046 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4D= 0x22370 - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 7054 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001600d 0x0 0x21103 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x38 0x33 -ENDCHUNK - - -ENDCHUNK -#line 7112 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4E= 0x2238D - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 7120 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001600d 0x0 0x21110 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x36 -ENDCHUNK - - -ENDCHUNK -#line 7178 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_4F= 0x2238E - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 7186 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001600d 0x0 0x21111 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x37 -ENDCHUNK - - -ENDCHUNK -#line 7244 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_50= 0x2238F - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 7252 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001600d 0x0 0x21112 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x38 -ENDCHUNK - - -ENDCHUNK -#line 7310 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_51= 0x22390 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 7318 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001600d 0x0 0x21113 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x7E 0x31 0x32 0x39 0x39 -ENDCHUNK - - -ENDCHUNK -#line 7376 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_52= 0x223D7 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 7384 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602e 0x0 0x2002B 0x000305F4 0x0 0x0 0x57415645 0x0007604A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x62 - 0x79 0x20 0x63 0x6C 0x69 0x63 0x6B 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x65 0x64 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7458 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_53= 0x223D8 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 7466 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x0001602e 0x0 0x20088 0x000305F4 0x0 0x0 0x57415645 0x0007604B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x72 0x73 0x74 0x0D - 0x0A 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7535 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_54= 0x223D9 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 7543 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x0001602e 0x0 0x20087 0x000305F4 0x0 0x0 0x57415645 0x0007604C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x0D 0x0A 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7613 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_55= 0x223DA - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 7621 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x0001602e 0x0 0x20085 0x000305F4 0x0 0x0 0x57415645 0x0007604D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x0D 0x0A - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7690 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_56= 0x223DB - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 7698 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x0001602e 0x0 0x20086 0x000305F4 0x0 0x0 0x57415645 0x0007604E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x4C 0x61 0x73 0x74 0x0D 0x0A - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7767 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_57= 0x223DC - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 7775 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x0001602e 0x0 0x20091 0x000305F4 0x0 0x0 0x57415645 0x0007604F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x72 0x73 0x74 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7842 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_58= 0x223DD - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 7850 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x0001602e 0x0 0x20090 0x000305F4 0x0 0x0 0x57415645 0x00076050 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7918 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_59= 0x223DE - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 7926 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x0001602e 0x0 0x2008E 0x000305F4 0x0 0x0 0x57415645 0x00076051 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7993 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5A= 0x223DF - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 8001 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00076052 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x4C 0x61 0x73 0x74 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8068 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5B= 0x22349 - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 8076 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x0001602e 0x0 0x2009C 0x000305F4 0x0 0x0 0x57415645 0x00076053 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x61 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x74 0x69 0x6D - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8144 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5C= 0x22348 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 8152 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602e 0x0 0x2009B 0x000305F4 0x0 0x0 0x57415645 0x00076054 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x60 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x63 0x6B 0x0D 0x0A - 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 - 0x69 0x6D 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8220 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5D= 0x223E1 - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 8228 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x0001602e 0x0 0x20089 0x000305F4 0x0 0x0 0x57415645 0x00076055 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x0D 0x0A 0x44 0x72 0x61 0x67 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x77 - 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8295 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - - -SET _help_48544F50_5E= 0x223E0 - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 8303 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x0001602e 0x0 0x20092 0x000305F4 0x0 0x0 0x57415645 0x00076056 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x0D 0x0A 0x44 0x72 0x61 0x67 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8371 "H:\\BUILD\\SOC\\src\\help\\tooltips.cht" - -#line 19 "H:\\BUILD\\SOC\\src\\help\\help.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -SET _help_48544F50_0= 0x20000108 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000008 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030002 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030003 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030007 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030010 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030008 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003000E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030009 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x43 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x99 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x00 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFF 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x09 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x1B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x99 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xD2 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xFF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x1B 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x43 0x68 - 0x6F 0x6F 0x73 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x97 0x63 0x6C 0x6F 0x73 - 0x65 0x20 0x75 0x70 0x2C 0x20 0x6C 0x6F - 0x6E 0x67 0x20 0x73 0x68 0x6F 0x74 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x73 0x6F 0x20 - 0x6F 0x6E 0x0D 0x0A 0x45 0x64 0x69 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x41 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x0D 0x0A 0x01 0x09 0x41 0x64 0x64 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x74 0x72 - 0x61 0x6E 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x62 0x65 0x74 0x77 0x65 0x65 0x6E - 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 0x97 - 0x63 0x75 0x74 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x69 0x73 0x73 0x6F 0x6C 0x76 - 0x65 0x73 0x0D 0x0A 0x01 0x09 0x41 0x74 - 0x74 0x61 0x63 0x68 0x69 0x6E 0x67 0x20 - 0x6F 0x6E 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 - 0x64 0x65 0x72 0x0D 0x0A 0x01 0x09 0x4D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 225 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_2= 0x20000109 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 233 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000007 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003000B - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003000C - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003000D - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003000F - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003000A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x30 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0x01 - 0x01 0x00 0x01 0x00 0xEE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xD5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xEE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA1 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xD7 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A - 0x01 0x09 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x01 0x09 0x52 0x65 0x6D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x69 0x6E 0x63 0x6C - 0x75 0x64 0x69 0x6E 0x67 0x20 0x61 0x6C - 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 0x6F - 0x70 0x73 0x0D 0x0A 0x01 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x01 0x09 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x73 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x01 0x09 0x55 0x6E 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 0x72 - 0x65 0x64 0x6F 0x69 0x6E 0x67 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 396 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_5= 0x2000010a - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 404 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030061 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030062 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030064 - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030063 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030060 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030065 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x0D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xAA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x20 0x09 0x43 - 0x68 0x6F 0x6F 0x73 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x6F 0x6F - 0x73 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 - 0x72 0x6F 0x70 0x0D 0x0A 0x01 0x09 0x43 - 0x72 0x65 0x61 0x74 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x01 0x09 0x55 0x73 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x61 0x6D 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x55 0x73 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x41 0x6E 0x69 0x6D 0x61 0x74 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x4D 0x61 - 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x6D 0x6F 0x76 0x65 0x97 0x61 0x73 0x73 - 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x63 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x73 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 568 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_6= 0x2000010b - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 576 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003006C - FREE - FREE - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003006A - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030068 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003006B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030066 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030067 - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x0003007A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x25 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA7 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x2C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x2E 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x98 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xCA 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x69 0x6D 0x61 0x74 - 0x69 0x6E 0x67 0x20 0x63 0x6F 0x6E 0x74 - 0x69 0x6E 0x75 0x65 0x64 0x2E 0x2E 0x2E - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 - 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x75 0x73 0x65 0x64 - 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x70 0x79 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x97 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 0x20 - 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x0D 0x0A 0x01 0x09 0x4D 0x61 - 0x6B 0x69 0x6E 0x67 0x20 0x74 0x77 0x6F - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x6D 0x65 0x65 0x74 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x73 0x70 0x6F 0x74 0x0D 0x0A 0x01 - 0x09 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 - 0x73 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x6F - 0x6B 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x79 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x97 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x73 0x2C 0x20 0x70 0x61 - 0x74 0x74 0x65 0x72 0x6E 0x73 0x2C 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x73 - 0x2C 0x20 0x6F 0x72 0x20 0x61 0x63 0x63 - 0x65 0x73 0x73 0x6F 0x72 0x69 0x65 0x73 - 0x21 -ENDCHUNK - - -ENDCHUNK -#line 750 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_7= 0x2000010c - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 758 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003006D - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003006E - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003006F - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030070 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030071 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030072 - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x00030073 - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x03 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xF4 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xA9 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xC4 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xDD 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xF4 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x26 0x20 0x70 - 0x61 0x73 0x74 0x69 0x6E 0x67 0x97 0x64 - 0x75 0x70 0x6C 0x69 0x63 0x61 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 - 0x09 0x43 0x75 0x74 0x74 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x70 0x61 0x73 0x74 0x69 - 0x6E 0x67 0x97 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 0x09 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x52 0x6F 0x74 0x61 0x74 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x09 0x54 0x69 0x70 - 0x70 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x0D 0x0A 0x01 0x09 - 0x54 0x75 0x72 0x6E 0x69 0x6E 0x67 0x20 - 0x6C 0x65 0x66 0x74 0x20 0x6F 0x72 0x20 - 0x72 0x69 0x67 0x68 0x74 0x0D 0x0A 0x01 - 0x09 0x54 0x69 0x70 0x70 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x73 0x69 0x64 0x65 0x0D 0x0A 0x01 0x09 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x62 0x61 0x63 0x6B -ENDCHUNK - - -ENDCHUNK -#line 906 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_8= 0x2000010d - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 914 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030076 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030077 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030078 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030079 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003000F - FREE - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030075 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE5 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xE5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x96 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xA7 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xC1 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xE5 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x53 - 0x65 0x6C 0x65 0x63 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x77 0x68 0x69 0x63 0x68 0x20 - 0x69 0x73 0x20 0x62 0x65 0x68 0x69 0x6E - 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6F 0x72 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 - 0x0D 0x0A 0x01 0x09 0x53 0x65 0x6C 0x65 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x69 0x63 0x68 0x20 0x69 0x73 - 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x6F 0x72 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A - 0x53 0x69 0x7A 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x09 0x53 0x69 0x7A 0x69 0x6E 0x67 - 0x20 0x65 0x76 0x65 0x6E 0x6C 0x79 0x0D - 0x0A 0x01 0x09 0x53 0x71 0x75 0x61 0x73 - 0x68 0x69 0x6E 0x67 0x20 0x26 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x62 0x61 - 0x63 0x6B 0x0D 0x0A 0x55 0x6E 0x64 0x6F - 0x69 0x6E 0x67 0x20 0x26 0x20 0x52 0x65 - 0x64 0x6F 0x69 0x6E 0x67 0x0D 0x0A 0x01 - 0x09 0x55 0x6E 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x72 0x65 0x64 0x6F 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1059 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_D= 0x2000010e - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1067 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030066 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003006A - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030068 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003006B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030065 - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003006C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x21 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0x23 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x69 0x6D 0x61 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x97 0x61 0x73 - 0x73 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x63 0x68 0x6F 0x6F 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x73 - 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x77 0x68 0x65 0x6E - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x67 0x65 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 - 0x61 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 - 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x75 0x73 0x65 - 0x64 0x0D 0x0A 0x01 0x09 0x43 0x6F 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 - 0x61 0x74 0x68 0x97 0x6D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 - 0x20 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x77 - 0x6F 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x6D 0x65 0x65 0x74 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x73 0x70 0x6F 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1220 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_11= 0x2000010f - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1228 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030021 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030022 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030023 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030024 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030020 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030025 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xEE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3A 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xEC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 - 0x63 0x74 0x73 0x97 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x20 0x6C 0x69 0x73 0x74 0x2C 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6F 0x77 0x6E 0x2C - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x0D - 0x0A 0x01 0x09 0x53 0x70 0x65 0x65 0x63 - 0x68 0x97 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x6C 0x69 0x73 0x74 0x2C 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x77 0x6E 0x2C 0x20 0x69 - 0x6D 0x70 0x6F 0x72 0x74 0x0D 0x0A 0x01 - 0x09 0x4D 0x75 0x73 0x69 0x63 0x97 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x20 0x6C 0x69 0x73 - 0x74 0x2C 0x20 0x69 0x6D 0x70 0x6F 0x72 - 0x74 0x0D 0x0A 0x41 0x74 0x74 0x61 0x63 - 0x68 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x6F 0x6E 0x63 0x65 0x0D 0x0A 0x01 0x09 - 0x4C 0x6F 0x6F 0x70 0x69 0x6E 0x67 0x97 - 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x6F - 0x75 0x73 0x6C 0x79 0x0D 0x0A 0x01 0x09 - 0x41 0x74 0x74 0x61 0x63 0x68 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x97 0x6D - 0x61 0x74 0x63 0x68 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x70 0x6F 0x73 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 1391 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_12= 0x20000110 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1399 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030029 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030027 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030026 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030027 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003002B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x29 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x28 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x62 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2A 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x62 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x41 0x74 0x74 0x61 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x63 0x6F 0x6E 0x74 - 0x69 0x6E 0x75 0x65 0x64 0x2E 0x2E 0x2E - 0x0D 0x0A 0x01 0x09 0x41 0x74 0x74 0x61 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x61 0x6E - 0x64 0x20 0x63 0x68 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x69 0x74 0x20 0x74 0x6F - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x79 0x20 0x70 0x6C - 0x61 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x45 0x64 0x69 0x74 0x69 0x6E 0x67 0x0D - 0x0A 0x01 0x09 0x41 0x64 0x6A 0x75 0x73 - 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x61 0x6C 0x6C 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x69 - 0x6E 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x97 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 0x74 - 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x27 0x73 0x20 0x61 0x6E - 0x64 0x20 0x4D 0x65 0x6C 0x61 0x6E 0x69 - 0x65 0x27 0x73 0x20 0x76 0x6F 0x69 0x63 - 0x65 0x73 0x0D 0x0A 0x01 0x09 0x41 0x64 - 0x6A 0x75 0x73 0x74 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x73 0x61 0x6D 0x65 0x20 0x74 0x69 - 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x61 0x6C 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x61 0x20 0x73 0x70 0x65 0x63 - 0x69 0x66 0x69 0x63 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1564 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_13= 0x20000111 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1572 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003000F - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003002A - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030005 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030028 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xCA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A - 0x01 0x20 0x09 0x53 0x74 0x6F 0x70 0x70 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x97 0x63 0x75 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x66 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x20 0x6F - 0x72 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x69 - 0x74 0x20 0x68 0x61 0x73 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x65 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x09 0x54 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x4D 0x63 0x5A 0x65 0x65 0x92 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x66 0x66 0x0D 0x0A 0x01 0x09 0x57 0x61 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 0x66 - 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 0x0D - 0x0A 0x55 0x6E 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x72 0x65 0x64 0x6F 0x69 - 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x55 0x6E - 0x64 0x6F 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x72 0x65 0x64 0x6F 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1702 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_15= 0x20000112 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1710 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003004B - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003004C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003004D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030040 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003004A - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030049 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x14 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0xEE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x0D 0x0A 0x01 0x09 0x43 0x72 0x65 0x61 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x97 - 0x74 0x79 0x70 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x73 0x74 0x6F 0x72 0x79 0x20 - 0x6F 0x72 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x0D 0x0A 0x45 0x64 0x69 0x74 - 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 0x54 - 0x79 0x70 0x69 0x6E 0x67 0x20 0x68 0x69 - 0x6E 0x74 0x73 0x97 0x77 0x68 0x61 0x74 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x6D 0x69 0x73 - 0x74 0x61 0x6B 0x65 0x0D 0x0A 0x01 0x09 - 0x43 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 - 0x26 0x20 0x70 0x61 0x73 0x74 0x69 0x6E - 0x67 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x09 0x43 0x6F 0x70 0x79 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x70 0x61 0x73 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x09 0x43 0x75 0x74 0x74 0x69 0x6E 0x67 - 0x20 0x26 0x20 0x70 0x61 0x73 0x74 0x69 - 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x01 0x09 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 1856 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_16= 0x20000113 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1864 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030043 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030041 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030044 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0003004E - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030042 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0xB7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x45 0x64 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A - 0x01 0x09 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x73 0x20 0x6C 0x6F 0x6F 0x6B - 0x0D 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x79 0x6C 0x65 0x97 0x62 - 0x6F 0x6C 0x64 0x2C 0x20 0x69 0x74 0x61 - 0x6C 0x69 0x63 0x0D 0x0A 0x01 0x09 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x73 0x69 0x7A 0x65 0x0D - 0x0A 0x01 0x09 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1997 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_17= 0x20000114 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2005 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030048 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030045 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030046 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030047 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003000F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0xAF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A - 0x01 0x09 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x52 - 0x65 0x73 0x69 0x7A 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x20 0x6F - 0x72 0x20 0x73 0x74 0x61 0x79 0x20 0x73 - 0x74 0x69 0x6C 0x6C 0x0D 0x0A 0x55 0x6E - 0x64 0x6F 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x72 0x65 0x64 0x6F 0x69 0x6E 0x67 0x0D - 0x0A 0x01 0x09 0x55 0x6E 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x26 0x20 0x72 0x65 0x64 - 0x6F 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 2140 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_19= 0x20000115 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2148 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030010 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003000F - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030009 - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003000A - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003000E - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030007 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x30 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xEF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x64 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x01 0x09 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x01 0x09 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x55 0x6E 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x26 0x20 0x72 0x65 0x64 - 0x6F 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x09 - 0x55 0x6E 0x64 0x6F 0x69 0x6E 0x67 0x20 - 0x26 0x20 0x72 0x65 0x64 0x6F 0x69 0x6E - 0x67 0x0D 0x0A 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x0D 0x0A 0x01 0x09 0x41 0x64 0x64 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x74 0x72 - 0x61 0x6E 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x6E 0x69 0x6E - 0x67 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x41 0x64 0x64 0x69 0x6E - 0x67 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x73 0x20 0x62 0x65 - 0x74 0x77 0x65 0x65 0x6E 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x73 0x97 0x63 0x75 0x74 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x69 - 0x73 0x73 0x6F 0x6C 0x76 0x65 0x73 0x0D - 0x0A 0x01 0x09 0x41 0x74 0x74 0x61 0x63 - 0x68 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x64 0x20 0x6F 0x66 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2318 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_1A= 0x20000116 - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2326 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003006E - FREE - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003006D - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003000C - FREE - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x0003006F - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003000D - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030008 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0003000B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x37 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x86 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x2C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0x86 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x65 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xA3 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xF2 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2E 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x65 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A 0x01 - 0x09 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 - 0x72 0x0D 0x0A 0x01 0x09 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x63 0x6C 0x75 0x64 0x69 0x6E 0x67 0x20 - 0x61 0x6C 0x6C 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x72 0x6F 0x70 0x73 0x0D 0x0A 0x01 0x09 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x0D 0x0A 0x01 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x2C 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x70 0x79 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 0x97 - 0x64 0x75 0x70 0x6C 0x69 0x63 0x61 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x01 0x09 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x97 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 - 0x09 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2518 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_1B= 0x20000117 - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2526 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003002B - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003002A - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030028 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030026 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030027 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xB9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xF1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x05 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x80 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x07 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5E 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x01 0x09 0x41 0x64 0x6A 0x75 - 0x73 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x66 0x6F 0x72 0x20 0x61 0x6C 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x97 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 - 0x74 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x27 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x4D 0x65 0x6C 0x61 0x6E - 0x69 0x65 0x27 0x73 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x73 0x0D 0x0A 0x01 0x09 0x41 - 0x64 0x6A 0x75 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x4C - 0x69 0x73 0x74 0x65 0x6E 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x61 0x6C 0x6C 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x61 - 0x74 0x74 0x61 0x63 0x68 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x73 0x70 0x65 - 0x63 0x69 0x66 0x69 0x63 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x01 0x09 0x53 0x74 0x6F 0x70 0x70 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x97 0x63 0x75 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x66 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x20 0x6F - 0x72 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x69 - 0x74 0x20 0x68 0x61 0x73 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x65 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x09 0x54 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x4D 0x63 0x5A 0x65 0x65 0x92 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x66 0x66 -ENDCHUNK - - -ENDCHUNK -#line 2689 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - - -SET _help_48544F50_1C= 0x20000118 - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2697 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015B 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x0003004E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030005 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0003004B - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x0003004D - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030049 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0003004A - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x0003004C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x14 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x40 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x14 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x14 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x65 0x64 0x2E 0x2E 0x2E 0x0D 0x0A 0x01 - 0x09 0x57 0x61 0x69 0x74 0x69 0x6E 0x67 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 - 0x73 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x65 0x64 0x0D 0x0A 0x57 0x6F 0x72 0x64 - 0x73 0x0D 0x0A 0x01 0x09 0x54 0x79 0x70 - 0x69 0x6E 0x67 0x20 0x68 0x69 0x6E 0x74 - 0x73 0x97 0x77 0x68 0x61 0x74 0x20 0x74 - 0x6F 0x20 0x64 0x6F 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x6D 0x69 0x73 0x74 0x61 - 0x6B 0x65 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x70 0x79 0x69 0x6E 0x67 0x20 0x26 0x20 - 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x69 0x6E - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x43 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x26 - 0x20 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x65 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 0x43 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x26 - 0x20 0x70 0x61 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 - 0x43 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 - 0x26 0x20 0x70 0x61 0x73 0x74 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2856 "H:\\BUILD\\SOC\\src\\help\\bkhowto.cht" - -#line 21 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -SET _help_48544F50_0= 0x2000012a - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x04 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x50 0x72 0x65 0x73 0x73 0x0D 0x0A - 0x4F 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x48 0x65 0x6C 0x70 0x20 0x4D 0x61 - 0x63 0x68 0x69 0x6E 0x65 0x09 0x09 0x09 - 0x09 0x09 0x09 0x46 0x31 0x09 0x0D 0x0A - 0x4F 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x61 0x70 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x43 0x74 0x72 - 0x6C 0x2B 0x4D 0x09 0x09 0x09 0x09 0x09 - 0x0D 0x0A 0x4F 0x70 0x65 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x43 - 0x74 0x72 0x6C 0x2B 0x4F 0x09 0x09 0x09 - 0x09 0x0D 0x0A 0x53 0x74 0x61 0x72 0x74 - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x43 0x74 0x72 0x6C - 0x2B 0x4E 0x09 0x09 0x09 0x0D 0x0A 0x53 - 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x43 0x74 - 0x72 0x6C 0x2B 0x53 0x09 0x09 0x09 0x0D - 0x0A 0x51 0x75 0x69 0x74 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x09 0x09 0x09 0x09 - 0x09 0x09 0x43 0x74 0x72 0x6C 0x2B 0x51 - 0x0D 0x0A 0x55 0x6E 0x64 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 0x6F - 0x75 0x20 0x64 0x69 0x64 0x20 0x09 0x09 - 0x09 0x09 0x43 0x74 0x72 0x6C 0x2B 0x5A - 0x0D 0x0A 0x52 0x65 0x64 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 0x6F - 0x75 0x20 0x75 0x6E 0x64 0x69 0x64 0x09 - 0x09 0x09 0x09 0x43 0x74 0x72 0x6C 0x2B - 0x59 0x0D 0x0A 0x44 0x69 0x73 0x70 0x6C - 0x61 0x79 0x20 0x74 0x68 0x65 0x20 0x54 - 0x61 0x73 0x6B 0x62 0x61 0x72 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x43 0x74 0x72 - 0x6C 0x2B 0x45 0x73 0x63 0x0D 0x0A 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 - 0x74 0x20 0x61 0x70 0x70 0x6C 0x69 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x09 0x09 0x09 - 0x09 0x41 0x6C 0x74 0x2B 0x54 0x61 0x62 -ENDCHUNK - - -ENDCHUNK -#line 166 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_2= 0x2000012b - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 174 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20055 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20056 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xCE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x57 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x97 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x47 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x16 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x01 0x00 0x82 - 0xF6 0xFF 0x00 0x00 0x8C 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x57 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x20 0x68 0x69 0x67 0x68 - 0x6C 0x69 0x67 0x68 0x74 0x65 0x64 0x20 - 0x69 0x74 0x65 0x6D 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x69 0x74 0x73 0x20 0x70 - 0x61 0x74 0x68 0x0D 0x0A 0x95 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x43 0x74 0x72 0x6C 0x2B 0x43 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x6F 0x70 0x79 - 0x20 0x61 0x20 0x68 0x69 0x67 0x68 0x6C - 0x69 0x67 0x68 0x74 0x65 0x64 0x20 0x69 - 0x74 0x65 0x6D 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x09 0x09 0x09 0x09 0x0D - 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x43 0x6F 0x70 0x79 0x2D 0x01 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x69 0x74 0x65 0x6D 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E 0x09 - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x20 0x68 0x69 0x67 0x68 0x6C - 0x69 0x67 0x68 0x74 0x65 0x64 0x20 0x69 - 0x74 0x65 0x6D 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x69 0x74 0x73 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x43 0x74 0x72 0x6C 0x2B 0x58 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x75 0x74 0x20 0x61 - 0x20 0x68 0x69 0x67 0x68 0x6C 0x69 0x67 - 0x68 0x74 0x65 0x64 0x20 0x69 0x74 0x65 - 0x6D 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x09 0x09 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x75 0x74 - 0x2D 0x01 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x53 0x68 0x69 0x66 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x69 0x74 0x65 0x6D - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x75 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 332 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_4= 0x2000012c - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 340 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x99 0x00 0x00 0x01 - 0x01 0xE7 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x47 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x9B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC1 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xF7 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x77 0x68 0x61 0x74 0x65 - 0x76 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 - 0x6D 0x6F 0x73 0x74 0x20 0x72 0x65 0x63 - 0x65 0x6E 0x74 0x6C 0x79 0x20 0x63 0x75 - 0x74 0x20 0x6F 0x72 0x20 0x63 0x6F 0x70 - 0x69 0x65 0x64 0x0D 0x0A 0x95 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x43 0x74 0x72 0x6C 0x2B 0x56 0x0D - 0x0A 0x54 0x6F 0x09 0x72 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2D 0x01 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 0x72 - 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F 0x09 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x66 0x6F 0x72 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x20 0x61 0x73 0x20 0x79 0x6F - 0x75 0x20 0x64 0x72 0x61 0x67 0x2E 0x0D - 0x0A 0x54 0x6F 0x09 0x72 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x6F 0x66 0x20 0x69 0x74 - 0x73 0x20 0x70 0x61 0x74 0x68 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x53 0x68 0x69 0x66 0x74 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 484 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_6= 0x2000012d - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 492 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x93 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x0E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x52 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5C 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBC 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x52 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5C 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xBC 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x52 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAD 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2D - 0x01 0x2C 0x20 0x74 0x75 0x72 0x6E 0x20 - 0x22 0x6F 0x6E 0x22 0x20 0x55 0x70 0x20 - 0x26 0x20 0x44 0x6F 0x77 0x6E 0x2D 0x01 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 - 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x09 0x72 0x65 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x73 0x75 - 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x01 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 - 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F - 0x09 0x72 0x65 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x70 0x61 0x74 0x68 0x97 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 - 0x70 0x61 0x74 0x68 0x20 0x72 0x65 0x6A - 0x6F 0x69 0x6E 0x73 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6C 0x64 0x20 0x70 0x61 0x74 - 0x68 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x73 0x74 - 0x20 0x70 0x6F 0x69 0x6E 0x74 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 0x4C - 0x61 0x73 0x74 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x2B - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x2E 0x0D 0x0A 0x54 0x6F 0x09 0x66 - 0x72 0x65 0x65 0x7A 0x65 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x61 0x20 - 0x70 0x61 0x74 0x68 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x53 0x68 0x69 0x66 0x74 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 663 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_8= 0x2000012e - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 671 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xBC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAC 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x71 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0xAE 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x71 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x73 0x75 - 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x01 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x55 0x70 0x20 - 0x6F 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A - 0x54 0x6F 0x09 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x73 0x74 0x61 - 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 0x4C - 0x61 0x73 0x74 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x20 0x20 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x66 0x6F - 0x72 0x74 0x68 0x20 0x62 0x65 0x74 0x77 - 0x65 0x65 0x6E 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x0D 0x0A - 0x95 0x09 0x50 0x72 0x65 0x73 0x73 0x20 - 0x46 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 827 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_A= 0x2000012f - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 835 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x67 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x84 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x03 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x83 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x86 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x06 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x86 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x06 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x03 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x83 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x6E 0x69 0x6E 0x67 - 0x20 0x6F 0x72 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x43 0x74 0x72 0x6C 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2D 0x01 - 0x20 0x6F 0x72 0x20 0x4E 0x65 0x78 0x74 - 0x2D 0x01 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 - 0x6C 0x65 0x20 0x28 0x74 0x68 0x65 0x72 - 0x65 0x20 0x61 0x72 0x65 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x73 0x20 0x66 0x6F 0x72 0x20 0x65 - 0x61 0x63 0x68 0x20 0x73 0x63 0x65 0x6E - 0x65 0x29 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x43 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 0x6E - 0x67 0x6C 0x65 0x73 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 0x74 - 0x72 0x61 0x6E 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x73 0x20 0x62 0x65 0x74 0x77 0x65 - 0x65 0x6E 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x73 0x20 0x6C 0x69 0x6B 0x65 0x20 0x63 - 0x75 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x69 0x73 0x73 0x6F 0x6C 0x76 0x65 - 0x73 0x0D 0x0A 0x20 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x4F 0x72 0x67 0x61 0x6E - 0x69 0x7A 0x65 0x72 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 990 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_10= 0x20000130 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 998 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0xE7 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD5 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xFE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x19 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD3 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD5 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x19 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1B 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD5 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x19 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xFE 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 - 0x64 0x65 0x72 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x4F 0x72 0x67 0x61 - 0x6E 0x69 0x7A 0x65 0x72 0x2D 0x01 0x0D - 0x0A 0x54 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x28 0x66 0x6F 0x72 0x20 0x65 0x78 - 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x74 0x68 0x65 0x20 0x73 - 0x61 0x6D 0x65 0x20 0x63 0x72 0x65 0x64 - 0x69 0x74 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x65 0x61 0x63 0x68 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x29 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6F - 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x2D - 0x01 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F - 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x6C 0x65 0x63 0x74 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x69 0x73 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x6F - 0x72 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A 0x95 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x74 0x73 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x50 0x72 0x6F 0x70 0x20 - 0x4C 0x69 0x73 0x74 0x97 0x6C 0x6F 0x63 - 0x61 0x74 0x65 0x64 0x20 0x6F 0x6E 0x20 - 0x65 0x69 0x74 0x68 0x65 0x72 0x20 0x73 - 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x6B 0x73 - 0x70 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1152 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_12= 0x20000131 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1160 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9F 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x25 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x66 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x2B 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x01 0x00 0x82 - 0xF6 0xFF 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x9B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x9E 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x61 0x6E 0x69 0x6D - 0x61 0x74 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x0D 0x0A 0x31 0x09 0x54 0x6F - 0x20 0x63 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E - 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x54 0x6F - 0x20 0x61 0x6E 0x69 0x6D 0x61 0x74 0x65 - 0x20 0x61 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2C 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2D 0x01 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x2E 0x20 - 0x20 0x44 0x65 0x70 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x75 0x70 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2C 0x20 0x65 0x69 0x74 - 0x68 0x65 0x72 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F 0x20 - 0x67 0x6F 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x73 0x65 0x64 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x73 - 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2D - 0x01 0x2E 0x20 0x20 0x4D 0x6F 0x76 0x65 - 0x20 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x2E 0x20 0x20 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x73 0x20 0x79 0x6F - 0x75 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1327 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_14= 0x20000132 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1335 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20018 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x28 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x02 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x39 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x01 0x00 0x01 - 0x05 0x00 0x00 0x00 0x7E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB2 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xE9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x81 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3B 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xA3 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD9 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3B 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x81 0x01 0x00 0x82 - 0xF6 0xFF 0x00 0x00 0x68 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x02 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB2 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x27 0x73 0x20 0x63 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 0x6F - 0x72 0x20 0x65 0x76 0x65 0x6E 0x20 0x61 - 0x64 0x64 0x20 0x61 0x63 0x63 0x65 0x73 - 0x73 0x6F 0x72 0x69 0x65 0x73 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x2D 0x01 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x6E - 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 0x66 - 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 0x75 - 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 - 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x2D 0x01 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x70 0x61 0x74 0x68 - 0x3F 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x2D 0x01 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1507 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_18= 0x20000133 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 1515 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20053 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xCC 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xCC 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x66 0x6F 0x6C - 0x6C 0x6F 0x77 0x20 0x65 0x61 0x63 0x68 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2D 0x01 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x43 - 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 0x68 - 0x2D 0x01 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x70 0x79 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x20 0x6F 0x66 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x74 0x68 0x20 0x6F 0x6E 0x74 - 0x6F 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6F 0x70 0x79 0x20 0x61 0x20 0x70 0x61 - 0x74 0x68 0x2C 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6F 0x70 0x79 0x20 0x6F 0x6E 0x6C - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x2D 0x2D 0x6E 0x6F 0x74 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x74 0x6F 0x20 0x77 - 0x61 0x6C 0x6B 0x20 0x73 0x69 0x64 0x65 - 0x2D 0x62 0x79 0x2D 0x73 0x69 0x64 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x67 0x69 - 0x76 0x65 0x20 0x62 0x6F 0x74 0x68 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x57 0x61 0x6C 0x6B - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x4E 0x6F 0x74 0x65 0x3A 0x20 - 0x20 0x42 0x69 0x67 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x74 0x65 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x77 0x61 0x6C 0x6B - 0x20 0x66 0x61 0x73 0x74 0x65 0x72 0x20 - 0x74 0x68 0x61 0x6E 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x2E 0x20 0x20 0x54 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x66 0x66 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 - 0x6E 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x67 0x69 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x69 0x67 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x57 - 0x61 0x6C 0x6B 0x20 0x53 0x6C 0x6F 0x77 - 0x6C 0x79 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x69 0x74 0x74 0x6C 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x57 0x61 0x6C 0x6B 0x20 - 0x46 0x61 0x73 0x74 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1672 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_1A= 0x20000134 - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 1680 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x88 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0x13 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x77 0x68 0x65 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 - 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2E 0x0D 0x0A 0x32 - 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x2D 0x01 0x2E 0x20 0x20 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x65 0x65 0x7A 0x65 0x20 0x69 - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x33 0x09 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x61 0x72 0x72 0x69 0x76 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x69 0x6F 0x6E 0x20 0x6C - 0x61 0x74 0x65 0x72 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x77 0x61 0x72 0x64 0x20 - 0x69 0x6E 0x20 0x74 0x69 0x6D 0x65 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x6F 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x20 0x65 0x61 0x72 0x6C 0x69 0x65 - 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x42 0x61 0x63 - 0x6B 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x77 0x61 - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x69 0x6D 0x65 0x2E 0x20 0x20 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x61 0x6E 0x79 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x6F 0x20 - 0x22 0x75 0x6E 0x66 0x72 0x65 0x65 0x7A - 0x65 0x22 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1828 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_1C= 0x20000135 - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 1836 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20020 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB6 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x40 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x65 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x14 0x00 0x00 0x00 0xB6 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x95 0x09 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x53 0x71 0x75 0x61 - 0x73 0x68 0x20 0x26 0x20 0x53 0x74 0x72 - 0x65 0x74 0x63 0x68 0x2D 0x01 0x0D 0x0A - 0x95 0x09 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x77 0x61 0x74 0x63 0x68 0x20 0x61 - 0x73 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x73 0x20 0x6F 0x72 0x20 - 0x73 0x74 0x72 0x65 0x74 0x63 0x68 0x65 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x76 0x65 - 0x72 0x79 0x20 0x65 0x79 0x65 0x73 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 0x20 - 0x50 0x72 0x6F 0x70 0x73 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2D 0x01 0x2E 0x20 0x20 0x43 0x68 - 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x47 0x72 0x6F 0x77 0x20 0x6F 0x72 - 0x20 0x53 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1964 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_1E= 0x20000136 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 1972 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20295 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x6A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x84 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x13 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x0F 0x00 0x00 0x00 0x4B 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x84 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x13 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x0D 0x0A 0x31 0x09 0x43 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x74 0x79 0x70 0x65 0x20 0x6F - 0x66 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x3A 0x0D 0x0A 0x01 0x2D 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 - 0x65 0x63 0x74 0x73 0x20 0x6F 0x72 0x20 - 0x09 0x01 0x2D 0x53 0x70 0x65 0x65 0x63 - 0x68 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2D 0x01 0x0D 0x0A 0x54 0x6F - 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x73 0x74 0x20 0x71 - 0x75 0x61 0x6C 0x69 0x74 0x79 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x63 0x72 0x6F 0x70 - 0x68 0x6F 0x6E 0x65 0x20 0x66 0x6F 0x75 - 0x6E 0x64 0x20 0x69 0x6E 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 - 0x63 0x74 0x73 0x20 0x72 0x61 0x74 0x68 - 0x65 0x72 0x20 0x74 0x68 0x61 0x6E 0x20 - 0x53 0x70 0x65 0x65 0x63 0x68 0x20 0x28 - 0x74 0x68 0x69 0x73 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x74 0x61 0x6B 0x65 0x20 0x75 - 0x70 0x20 0x6D 0x6F 0x72 0x65 0x20 0x64 - 0x69 0x73 0x6B 0x20 0x73 0x70 0x61 0x63 - 0x65 0x29 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x66 0x61 0x76 0x6F 0x72 0x69 0x74 - 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x45 0x66 0x66 0x65 0x63 0x74 0x73 - 0x20 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 - 0x6F 0x6E 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x62 0x6F 0x6F 0x6D 0x20 0x62 0x6F - 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2117 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_20= 0x20000137 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2125 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x01 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xD1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xFC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xD1 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFE 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x60 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x8E 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xD1 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x60 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0xD1 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x45 0x76 0x65 0x72 0x79 0x74 - 0x69 0x6D 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x20 0x6F - 0x72 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x69 0x74 0x20 0x69 0x73 0x20 - 0x61 0x64 0x64 0x65 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x20 0x6F 0x72 0x20 0x53 0x70 - 0x65 0x65 0x63 0x68 0x20 0x63 0x68 0x6F - 0x69 0x63 0x65 0x73 0x2E 0x20 0x20 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x68 0x61 0x76 - 0x65 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 - 0x65 0x64 0x20 0x6F 0x72 0x20 0x69 0x6D - 0x70 0x6F 0x72 0x74 0x65 0x64 0x0D 0x0A - 0x95 0x09 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x70 0x72 0x65 0x73 - 0x73 0x20 0x74 0x68 0x65 0x20 0x44 0x65 - 0x6C 0x65 0x74 0x65 0x20 0x6B 0x65 0x79 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x74 0x77 0x6F 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x70 0x6C - 0x61 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x95 0x09 0x41 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x43 0x74 0x72 0x6C 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x63 0x6F 0x6E 0x64 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x75 0x6E 0x74 - 0x69 0x6C 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x69 0x73 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x65 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 - 0x6E 0x64 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2271 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - - -SET _help_48544F50_22= 0x20000138 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2279 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xEF 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4B 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x77 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3A 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xC7 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEF 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3A 0x01 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x69 0x6E 0x64 0x69 0x76 0x69 - 0x64 0x75 0x61 0x6C 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x73 - 0x74 0x61 0x72 0x74 0x73 0x2E 0x0D 0x0A - 0x32 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2C - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4C 0x69 0x73 0x74 0x65 0x6E 0x65 0x72 - 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x64 0x6A 0x75 0x73 0x74 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x75 0x74 0x2C - 0x20 0x63 0x6F 0x70 0x79 0x2C 0x20 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x77 0x68 0x6F 0x6C 0x65 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x95 0x09 0x4D 0x61 0x6B 0x65 0x20 - 0x73 0x75 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x20 0x65 0x64 0x67 0x65 0x73 - 0x2C 0x20 0x4E 0x4F 0x54 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x73 0x69 0x64 0x65 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x69 - 0x6E 0x73 0x69 0x64 0x65 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2419 "H:\\BUILD\\SOC\\src\\help\\bktips.cht" - -#line 22 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -SET _help_48544F50_0= 0x20000105 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x20000105 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD6 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x82 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x05 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x05 - 0x02 0x00 0x00 0x00 0x7B 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x05 - 0x01 0x00 0x00 0x00 0xF5 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x05 - 0x02 0x00 0x00 0x00 0x82 0x01 0x00 0x05 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x82 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x6F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xEA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x78 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x84 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xEA 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x78 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x42 0x61 0x73 0x69 - 0x63 0x73 0x2E 0x2E 0x2E 0x0D 0x0A 0x46 - 0x69 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x61 0x72 0x74 0x20 0x61 0x20 0x6E - 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x6F 0x70 0x65 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x73 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x77 0x6F 0x72 0x6B 0x2C 0x20 - 0x67 0x65 0x74 0x20 0x68 0x65 0x6C 0x70 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x71 0x75 0x69 0x74 0x2E 0x0D - 0x0A 0x01 0x09 0x20 0x48 0x6F 0x77 0x20 - 0x54 0x6F 0x2E 0x2E 0x2E 0x0D 0x0A 0x43 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x63 0x61 0x74 0x65 0x67 0x6F 0x72 0x79 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x74 0x61 0x73 0x6B 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x77 0x69 0x74 - 0x68 0x2E 0x20 0x20 0x49 0x27 0x6C 0x6C - 0x20 0x67 0x75 0x69 0x64 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x65 0x61 0x63 0x68 0x20 - 0x74 0x61 0x73 0x6B 0x20 0x73 0x74 0x65 - 0x70 0x2D 0x62 0x79 0x2D 0x73 0x74 0x65 - 0x70 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x2E 0x2E 0x0D - 0x0A 0x53 0x68 0x6F 0x77 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x75 0x73 0x65 0x20 0x74 0x6F 0x20 - 0x63 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x54 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x6D 0x6F 0x72 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x20 0x20 0x54 0x69 0x70 - 0x73 0x2E 0x2E 0x2E 0x0D 0x0A 0x46 0x65 - 0x61 0x74 0x75 0x72 0x69 0x6E 0x67 0x20 - 0x6D 0x79 0x20 0x70 0x65 0x72 0x73 0x6F - 0x6E 0x61 0x6C 0x20 0x66 0x61 0x76 0x6F - 0x72 0x69 0x74 0x65 0x73 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x27 0x6C 0x6C 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x65 0x65 0x20 - 0x61 0x20 0x6C 0x69 0x73 0x74 0x20 0x6F - 0x66 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x68 0x6F 0x72 0x74 0x63 - 0x75 0x74 0x20 0x6B 0x65 0x79 0x73 0x21 -ENDCHUNK - - -ENDCHUNK -#line 225 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - -SET _help_48544F50_2= 0x20000106 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 233 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00030522 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00030523 - ITEM LONG 0xC0000007 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00030524 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x00030525 - ITEM LONG 0x40000001 - VAR BYTE 7 LONG 0x00030526 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030520 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030521 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x3C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x93 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8D 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x12 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x47 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x5B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x93 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x9F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xAF 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x50 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x20 0x62 0x61 0x73 0x69 - 0x63 0x73 0x0D 0x0A 0x01 0x09 0x53 0x74 - 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x01 0x09 0x4F 0x70 - 0x65 0x6E 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x65 0x78 0x69 0x73 0x74 0x69 0x6E - 0x67 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x53 0x61 0x76 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x0D 0x0A 0x01 0x09 0x43 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x61 0x76 0x69 0x6E - 0x67 0x20 0x69 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6E 0x61 0x6D 0x65 0x0D 0x0A 0x48 - 0x65 0x6C 0x70 0x0D 0x0A 0x01 0x09 0x54 - 0x6F 0x6F 0x6C 0x74 0x69 0x70 0x73 0x0D - 0x0A 0x01 0x09 0x47 0x65 0x74 0x74 0x69 - 0x6E 0x67 0x20 0x68 0x65 0x6C 0x70 0x0D - 0x0A 0x01 0x09 0x54 0x75 0x72 0x6E 0x69 - 0x6E 0x67 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x27 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x20 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F - 0x66 0x66 -ENDCHUNK - - -ENDCHUNK -#line 407 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - - -SET _help_48544F50_3= 0x20000107 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 415 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00030527 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00030528 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x47 0x65 0x74 0x74 0x69 0x6E - 0x67 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x65 - 0x61 0x74 0x65 0x72 0x0D 0x0A 0x01 0x09 - 0x55 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x70 0x0D 0x0A 0x47 - 0x65 0x74 0x74 0x69 0x6E 0x67 0x20 0x61 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x74 0x68 0x65 0x61 0x74 0x65 - 0x72 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 - 0x74 0x74 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 528 "H:\\BUILD\\SOC\\src\\help\\bktocbas.cht" - -#line 23 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -SET _help_48544F50_0= 0x20000119 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000014 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017040 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017041 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017042 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20285 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20298 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20299 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017079 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001707a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x4B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x01 0x00 0x01 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD6 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x22 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x23 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x47 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0x33 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x72 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x35 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xC2 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xFC 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x35 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 - 0x65 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x63 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x64 - 0x69 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 - 0x20 0x63 0x61 0x74 0x65 0x67 0x6F 0x72 - 0x69 0x65 0x73 0x09 0x0D 0x0A 0x01 0x09 - 0x09 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x41 0x6E 0x67 0x6C 0x65 0x73 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x76 0x69 0x65 0x77 0x73 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x01 0x09 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 0x76 - 0x65 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x01 0x09 - 0x09 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x45 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x41 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x01 - 0x09 0x09 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6F - 0x72 0x64 0x65 0x72 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x73 0x2C 0x20 0x61 0x64 0x64 - 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x73 -ENDCHUNK - - -ENDCHUNK -#line 244 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_4= 0x2000011a - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 252 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000011 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027D - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017045 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017047 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017054 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017048 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00017056 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x4A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x01 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x25 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x59 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x76 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x95 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAC 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB3 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB8 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x01 0x00 0x40 - 0x07 0x00 0x00 0x00 0x6A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x01 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xB8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x6C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x8D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xD7 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x1F 0x01 0x00 0xC0 - 0x0D 0x00 0x00 0x00 0x6C 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x72 0x61 - 0x63 0x74 0x65 0x72 0x73 0x0D 0x0A 0x01 - 0x09 0x09 0x50 0x72 0x6F 0x70 0x73 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x66 0x75 0x72 0x6E 0x69 0x74 0x75 - 0x72 0x65 0x2C 0x20 0x63 0x61 0x72 0x73 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 0x6F - 0x20 0x6F 0x6E 0x09 0x09 0x09 0x09 0x0D - 0x0A 0x01 0x09 0x09 0x33 0x44 0x20 0x57 - 0x6F 0x72 0x64 0x73 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x70 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6D 0x6F 0x76 0x65 0x0D - 0x0A 0x01 0x09 0x09 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x01 0x09 - 0x09 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F - 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 474 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_5= 0x2000011b - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 482 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000009 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001704e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017049 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017057 - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001704f - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20167 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20018 - FREE - FREE - ITEM LONG 0xC0000002 - VAR LONG 'MBMP' 0x2001D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x35 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x40 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x51 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x82 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x90 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA8 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xA8 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0xAA 0x00 0x00 0xC0 - 0x0B 0x00 0x00 0x00 0x06 0x01 0x00 0xC0 - 0x0E 0x00 0x00 0x00 0x6D 0x01 0x00 0xC0 - 0x0E 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x52 0x65 0x73 - 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x20 0x20 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 0x73 - 0x65 0x64 0x0D 0x0A 0x01 0x09 0x09 0x43 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x65 0x72 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x0D 0x0A - 0x01 0x09 0x09 0x52 0x6F 0x74 0x61 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x20 0x20 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x66 0x61 0x63 0x65 0x73 0x0D 0x0A 0x01 - 0x09 0x09 0x54 0x75 0x72 0x6E 0x20 0x4C - 0x65 0x66 0x74 0x20 0x6F 0x72 0x20 0x52 - 0x69 0x67 0x68 0x74 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x74 0x75 0x72 0x6E - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x6F 0x72 0x20 0x72 0x69 0x67 - 0x68 0x74 -ENDCHUNK - - -ENDCHUNK -#line 679 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_6= 0x2000011c - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 687 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0x2000010 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017050 - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20019 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001C - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001E - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017051 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017052 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001705a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x40 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xDF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x36 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x48 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x67 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAA 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x84 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xCF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x40 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x40 - 0x0D 0x00 0x00 0x00 0xAA 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x84 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xD1 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x42 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x54 0x69 0x70 - 0x20 0x46 0x6F 0x72 0x77 0x61 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x42 0x61 0x63 0x6B - 0x2E 0x2E 0x2E 0x2E 0x2E 0x74 0x69 0x70 - 0x20 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x0D 0x0A 0x01 0x09 - 0x09 0x54 0x69 0x70 0x20 0x74 0x6F 0x20 - 0x4F 0x6E 0x65 0x20 0x53 0x69 0x64 0x65 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x74 0x69 - 0x70 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x69 0x64 - 0x65 0x20 0x74 0x6F 0x20 0x73 0x69 0x64 - 0x65 0x0D 0x0A 0x01 0x09 0x09 0x43 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x42 0x61 0x63 - 0x6B 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x69 0x74 0x20 0x77 0x61 0x73 0x20 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x20 0x20 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x6F 0x74 0x61 0x74 0x65 0x64 0x20 - 0x69 0x74 0x0D 0x0A 0x01 0x09 0x09 0x55 - 0x70 0x20 0x26 0x20 0x44 0x6F 0x77 0x6E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x22 0x6F 0x6E - 0x22 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x77 0x6E -ENDCHUNK - - -ENDCHUNK -#line 895 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_7= 0x2000011d - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 903 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x2000011 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017059 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001704a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001704b - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001704c - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0xC0000002 - VAR LONG 'MBMP' 0x20021 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20020 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x46 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x04 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x35 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x73 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7B 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x86 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBE 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC6 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC7 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD9 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x01 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6B 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x86 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xFF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x66 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xD9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x68 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xB8 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x68 0x01 0x00 0xC0 - 0x09 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x46 0x61 0x6C - 0x6C 0x20 0x54 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x47 0x72 0x6F 0x75 0x6E 0x64 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x77 0x68 - 0x65 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x69 0x73 0x20 0x22 0x6F 0x6E 0x22 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x20 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x73 0x75 0x72 0x66 0x61 0x63 0x65 - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x72 0x65 0x73 0x69 0x7A 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x01 0x09 0x09 0x53 0x69 - 0x7A 0x65 0x20 0x45 0x76 0x65 0x6E 0x6C - 0x79 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x65 0x76 0x65 0x6E 0x6C 0x79 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x20 0x6F - 0x72 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x71 0x75 - 0x61 0x73 0x68 0x20 0x26 0x20 0x53 0x74 - 0x72 0x65 0x74 0x63 0x68 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x73 - 0x68 0x6F 0x72 0x74 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x20 0x20 0x20 - 0x77 0x69 0x64 0x65 0x72 0x20 0x6F 0x72 - 0x20 0x74 0x61 0x6C 0x6C 0x65 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x69 0x6E - 0x6E 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1118 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_8= 0x2000011e - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1126 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0x200000B - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017053 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20271 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2001F - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001705b - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20016 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001704d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x31 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC7 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x64 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x88 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA5 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAF 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF3 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCE 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0xAF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xCE 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x3F 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x50 0x72 0x6F 0x70 0x20 0x26 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x42 0x61 0x63 0x6B - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x69 0x74 0x20 0x77 - 0x61 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x64 0x20 0x69 0x74 - 0x73 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x01 0x09 0x09 0x53 0x79 0x6E 0x63 0x68 - 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x70 0x61 0x74 0x68 0x20 - 0x74 0x69 0x6D 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F 0x0D - 0x0A 0x01 0x09 0x09 0x54 0x61 0x6C 0x65 - 0x6E 0x74 0x20 0x42 0x6F 0x6F 0x6B 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x67 0x69 0x76 - 0x65 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x6F 0x6F 0x70 - 0x20 0x6F 0x6E 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x79 0x6F 0x75 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1313 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_B= 0x2000011f - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1321 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001705f - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017060 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017061 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20026 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017062 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x00017063 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x31 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xDE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x47 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDE 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x01 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x1B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xA9 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0xDE 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x1B 0x01 0x00 0xC0 - 0x0B 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x61 0x64 0x64 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x73 0x09 0x0D 0x0A 0x01 - 0x09 0x09 0x53 0x70 0x65 0x65 0x63 0x68 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x61 0x6C - 0x6B 0x0D 0x0A 0x01 0x09 0x09 0x4D 0x75 - 0x73 0x69 0x63 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x61 0x64 0x64 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D 0x0A - 0x01 0x09 0x09 0x50 0x6C 0x61 0x79 0x20 - 0x4F 0x6E 0x63 0x65 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x6F 0x6E 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x0D 0x0A 0x01 0x09 0x09 - 0x4C 0x6F 0x6F 0x70 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 - 0x6C 0x79 -ENDCHUNK - - -ENDCHUNK -#line 1506 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_C= 0x20000120 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1514 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000005 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017073 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017065 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017064 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x2B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x99 0x00 0x00 0x01 - 0x00 0xFB 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x41 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xC6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x88 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xC6 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x97 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x09 0x09 0x4C 0x69 0x73 - 0x74 0x65 0x6E 0x65 0x72 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x6C 0x69 0x73 0x74 - 0x65 0x6E 0x20 0x74 0x6F 0x2C 0x20 0x61 - 0x64 0x6A 0x75 0x73 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x01 0x09 0x09 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 - 0x68 0x65 0x72 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 0x74 0x63 - 0x68 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x01 0x09 0x09 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x09 0x09 0x09 0x74 0x6F - 0x20 0x45 0x6E 0x64 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x70 - 0x61 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1682 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_E= 0x20000121 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1690 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x2000006 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001706a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017069 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20030 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20046 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017068 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017067 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xCB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x0C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x50 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xC8 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x0E 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x73 0x97 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x09 0x09 0x57 0x6F 0x72 0x64 - 0x20 0x42 0x6F 0x78 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x61 0x64 0x64 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x63 - 0x72 0x65 0x64 0x69 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 0x09 - 0x09 0x49 0x6E 0x73 0x65 0x72 0x74 0x69 - 0x6F 0x6E 0x20 0x50 0x6F 0x69 0x6E 0x74 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x6F 0x76 - 0x65 0x2C 0x20 0x72 0x65 0x73 0x69 0x7A - 0x65 0x2C 0x20 0x6F 0x72 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x0D 0x0A 0x01 0x09 0x09 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x77 0x61 0x79 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x0D 0x0A - 0x01 0x09 0x09 0x53 0x74 0x79 0x6C 0x65 - 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x20 0x62 0x6F 0x6C 0x64 - 0x20 0x6F 0x72 0x20 0x69 0x74 0x61 0x6C - 0x69 0x63 -ENDCHUNK - - -ENDCHUNK -#line 1870 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_F= 0x20000122 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1878 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x200000C - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001706c - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20032 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001706d - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001706e - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001706b - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2016D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x42 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x99 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xCE 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFF 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x02 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB1 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x06 0x00 0x00 0x00 0x5B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xB1 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x04 0x01 0x00 0xC0 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x73 0x97 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x09 0x09 0x4C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x53 0x69 0x7A 0x65 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x0D 0x0A 0x01 0x09 0x09 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x0D 0x0A 0x01 0x09 0x09 0x42 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x43 0x6F 0x6C 0x6F 0x72 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x62 0x6F 0x78 0x0D 0x0A 0x01 0x09 - 0x09 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F - 0x6E 0x2D 0x09 0x09 0x09 0x09 0x0D 0x0A - 0x09 0x09 0x09 0x53 0x63 0x72 0x6F 0x6C - 0x6C 0x69 0x6E 0x67 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x20 - 0x6F 0x72 0x20 0x73 0x74 0x61 0x79 0x20 - 0x73 0x74 0x69 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 2075 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_10= 0x20000123 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 2083 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A0 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001706f - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029F - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017070 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xAF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x72 0x64 0x73 0x97 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x09 0x09 0x53 0x63 0x72 0x6F - 0x6C 0x6C 0x69 0x6E 0x67 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x61 - 0x6B 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x72 - 0x6F 0x6C 0x6C 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x20 0x20 0x20 0x20 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x01 0x09 0x09 0x4E 0x6F 0x6E 0x2D - 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 0x6E - 0x67 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x6D 0x61 0x6B 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x74 0x61 0x79 0x20 0x73 - 0x74 0x69 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 2221 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_12= 0x20000124 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 2229 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017071 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017043 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017075 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x35 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xA2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xA2 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0xF4 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x0D 0x0A 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x09 0x09 0x0D 0x0A 0x01 0x0D 0x0A 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x0D 0x0A 0x01 0x09 - 0x50 0x6C 0x61 0x79 0x2F 0x53 0x74 0x6F - 0x70 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x74 0x6F 0x70 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2386 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_13= 0x20000125 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 2394 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x200000A - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017081 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017076 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017077 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017076 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20286 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20056 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017078 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x38 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xFB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x02 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x28 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x29 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x68 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xEE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x36 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xEC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x34 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x36 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x36 0x01 0x00 0x82 - 0x08 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x0A 0x00 0x00 0x00 0x82 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xEE 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x36 0x01 0x00 0xC0 - 0x0B 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x56 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F - 0x6C 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x61 0x64 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x61 0x6C 0x6C 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x0D 0x0A 0x01 0x09 0x09 0x55 - 0x6E 0x64 0x6F 0x2F 0x52 0x65 0x64 0x6F - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x75 0x6E 0x64 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x69 0x64 0x2C 0x20 0x6F 0x72 - 0x20 0x72 0x65 0x64 0x6F 0x20 0x77 0x68 - 0x61 0x74 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x20 0x20 0x20 - 0x20 0x09 0x20 0x20 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x01 0x09 0x09 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x67 - 0x65 0x74 0x20 0x72 0x69 0x64 0x20 0x6F - 0x66 0x2C 0x20 0x63 0x6F 0x70 0x79 0x2C - 0x20 0x70 0x61 0x73 0x74 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x0D 0x0A - 0x01 0x09 0x09 0x43 0x75 0x74 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x63 0x75 - 0x74 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x65 0x6C 0x73 - 0x65 0x77 0x68 0x65 0x72 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2590 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_14= 0x20000126 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 2598 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x200000E - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001707e - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029A - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20054 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20053 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20055 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017080 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001707f - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001707b -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x44 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x49 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x69 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x7A 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x87 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x96 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9D 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xBD 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC7 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD1 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x72 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x8F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x05 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x07 0x01 0x00 0x40 - 0x0D 0x00 0x00 0x00 0x6F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x01 0x00 0x40 - 0x0E 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x71 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x0B 0x00 0x00 0x00 0x91 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0x07 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x71 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x43 0x6F 0x70 0x79 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x63 0x6F 0x70 0x79 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x69 0x74 0x20 - 0x65 0x6C 0x73 0x65 0x77 0x68 0x65 0x72 - 0x65 0x0D 0x0A 0x01 0x09 0x09 0x43 0x6F - 0x70 0x79 0x20 0x50 0x61 0x74 0x68 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x20 0x70 0x61 0x74 0x68 0x20 0x61 0x6E - 0x64 0x20 0x70 0x61 0x73 0x74 0x65 0x20 - 0x69 0x74 0x20 0x6F 0x6E 0x74 0x6F 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x20 0x20 0x20 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D - 0x0A 0x01 0x09 0x09 0x50 0x61 0x73 0x74 - 0x65 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x70 0x61 0x73 0x74 - 0x65 0x20 0x77 0x68 0x61 0x74 0x65 0x76 - 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x72 0x65 0x63 0x65 - 0x6E 0x74 0x6C 0x79 0x20 0x63 0x75 0x74 - 0x20 0x6F 0x72 0x20 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x20 - 0x20 0x20 0x20 0x63 0x6F 0x70 0x69 0x65 - 0x64 0x0D 0x0A 0x01 0x09 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x45 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 0x6E - 0x63 0x6C 0x75 0x64 0x69 0x6E 0x67 0x20 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x20 0x20 0x20 0x61 - 0x6C 0x6C 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 - 0x6F 0x70 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2816 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_15= 0x20000127 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2824 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x200000A - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001707d - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017082 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003C - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029B - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001707c - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000170be -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x37 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x36 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x50 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0x99 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x9B 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xA3 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA6 0x01 0x00 0x02 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCD 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x0B 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x0C 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x5F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x09 0x00 0x00 0x00 0xA2 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x19 0x01 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x5F 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x33 0x44 0x20 0x4F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x20 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x01 0x09 0x09 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x20 0x20 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x01 0x09 0x09 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x20 0x42 0x6F 0x78 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x01 0x09 0x09 0x50 0x6F 0x72 0x74 - 0x66 0x6F 0x6C 0x69 0x6F 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x73 0x74 0x61 0x72 0x74 0x20 - 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x6F 0x70 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x6F 0x6C 0x64 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x09 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x20 0x20 - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x77 0x6F 0x72 0x6B -ENDCHUNK - - -ENDCHUNK -#line 3026 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_16= 0x20000128 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 3034 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001705e - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00017066 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017044 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20296 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004A - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20297 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017046 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20049 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0xDC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x0A 0x00 0x00 0x00 0x72 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0xAB 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xDC 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x73 0x74 0x61 0x72 0x74 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x0D 0x0A 0x01 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x6F 0x70 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x65 0x78 0x69 - 0x73 0x74 0x69 0x6E 0x67 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x01 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x77 0x6F 0x72 0x6B 0x0D 0x0A 0x01 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x73 - 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x77 0x6F 0x72 0x6B 0x20 0x75 0x6E - 0x64 0x65 0x72 0x20 0x61 0x20 0x20 0x6E - 0x65 0x77 0x20 0x6E 0x61 0x6D 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3183 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - - -SET _help_48544F50_17= 0x20000129 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 3191 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00003025 0x00003025 0x0 0x2000015A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00017088 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00017083 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20035 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003D - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20034 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00017087 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xEA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x07 0x00 0x00 0x00 0x9C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xEA 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x73 0x74 0x65 0x72 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x97 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x70 0x69 0x63 0x74 0x75 0x72 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x09 0x09 0x09 0x48 0x65 0x6C 0x70 - 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x61 0x6E 0x73 0x77 0x65 0x72 0x73 - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2D 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x09 0x09 - 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x20 0x20 0x71 0x75 0x65 0x73 0x74 - 0x69 0x6F 0x6E 0x73 0x0D 0x0A 0x01 0x09 - 0x09 0x09 0x4D 0x61 0x70 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x71 0x75 0x69 0x63 - 0x6B 0x6C 0x79 0x20 0x7A 0x69 0x70 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x6F 0x6D 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x68 0x6F 0x69 - 0x63 0x65 0x0D 0x0A 0x01 0x09 0x09 0x45 - 0x78 0x69 0x74 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E 0x2E - 0x2E 0x2E 0x71 0x75 0x69 0x74 0x20 0x77 - 0x6F 0x72 0x6B 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 3329 "H:\\BUILD\\SOC\\src\\help\\bktools.cht" - -#line 24 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -SET _help_48544F50_A= 0x000121aa - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00003027 0x00003027 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x48 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x20 0x7E 0x31 0x20 0x6F 0x66 - 0x20 0x7E 0x32 -ENDCHUNK - - -ENDCHUNK -#line 94 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_C= 0x000121a0 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 102 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x61 0x62 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x43 0x6F 0x6E 0x74 0x65 - 0x6E 0x74 0x73 -ENDCHUNK - - -ENDCHUNK -#line 180 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_D= 0x000121a1 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 188 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x73 0x69 0x63 0x73 -ENDCHUNK - - -ENDCHUNK -#line 264 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_E= 0x000121a2 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 272 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x53 0x63 0x65 0x6E 0x65 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 350 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_F= 0x000121a3 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 358 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 438 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_10= 0x000121a4 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 446 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 524 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_11= 0x000121a5 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 532 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x53 0x6F 0x75 0x6E 0x64 - 0x73 -ENDCHUNK - - -ENDCHUNK -#line 610 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_12= 0x000121a6 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 618 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x57 0x6F 0x72 0x64 0x73 -ENDCHUNK - - -ENDCHUNK -#line 695 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_13= 0x000121a7 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 703 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x54 0x6F - 0x2E 0x2E 0x2E 0x45 0x64 0x69 0x74 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 781 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_14= 0x000121a8 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 789 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x6F 0x6C 0x73 -ENDCHUNK - - -ENDCHUNK -#line 866 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_15= 0x000121a9 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 874 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00003024 0x00003024 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x73 -ENDCHUNK - - -ENDCHUNK -#line 950 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_16= 0x0001703b - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 958 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001602e 0x0 0x00003015 0x000305F0 0x0 0x0 0x57415645 0x00076057 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x6F 0x73 0x65 0x0D - 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x48 0x65 0x6C 0x70 - 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1026 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_17= 0x0001703c - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1034 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001602e 0x0 0x00003013 0x000305F0 0x0 0x0 0x57415645 0x00076058 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x20 0x53 - 0x63 0x72 0x65 0x65 0x6E 0x0D 0x0A 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1102 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_18= 0x0001703d - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 1110 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001602e 0x0 0x00003014 0x000305F0 0x0 0x0 0x57415645 0x00076059 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x53 0x63 0x72 0x65 0x65 - 0x6E 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1193 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_19= 0x0001703e - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 1201 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001602e 0x0 0x00003011 0x000305F0 0x0 0x0 0x57415645 0x0007605A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F 0x6C - 0x0D 0x0A 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x65 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1287 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_1A= 0x0001703f - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 1295 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001602e 0x0 0x00003012 0x000305F0 0x0 0x0 0x57415645 0x0007605B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x62 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x56 0x6F 0x69 0x63 0x65 0x0D - 0x0A 0x54 0x75 0x72 0x6E 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x27 0x73 0x20 0x76 0x6F - 0x69 0x63 0x65 0x20 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6F 0x66 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1381 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_1B= 0x1B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 1389 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0xFFFFFFFF 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x88 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x89 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x79 0x3F 0x20 0x20 - 0x45 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x4F 0x4B 0x3F 0x0D 0x0A - 0x54 0x6F 0x20 0x67 0x65 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x61 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x48 0x65 - 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 - 0x6E 0x65 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x61 0x20 0x74 0x6F 0x70 0x69 0x63 0x2E - 0x20 0x20 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x68 - 0x65 0x6C 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1483 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - - -SET _help_48544F50_1C= 0x1C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 1491 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0xFFFFFFFF 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x69 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x65 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 - 0x69 0x6E 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1562 "H:\\BUILD\\SOC\\src\\help\\booktpc.cht" - -#line 25 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -SET _help_48544F50_0= 0x200056E0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075480 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x74 0x61 - 0x72 0x74 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6F 0x72 0x74 0x66 0x6F - 0x6C 0x69 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 99 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_1= 0x200056E1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 107 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016018 0x00030601 0x20049 0x000305F0 0x0 0x0 0x57415645 0x00075481 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x41 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x65 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 170 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_2= 0x200056E2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 178 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075482 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6F 0x70 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x65 0x78 0x69 - 0x73 0x74 0x69 0x6E 0x67 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 246 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_3= 0x200056E3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 254 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016018 0x00030601 0x20048 0x000305F0 0x0 0x0 0x57415645 0x00075483 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x70 0x65 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 317 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_4= 0x200056E4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 325 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075484 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 392 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_5= 0x200056E5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 400 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016018 0x00030601 0x2004A 0x000305F0 0x0 0x0 0x57415645 0x00075485 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x61 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 463 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_6= 0x200056E6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 471 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030601 0x2003C 0x000305F0 0x0 0x0 0x57415645 0x00075486 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 - 0x76 0x65 0x20 0x69 0x74 0x20 0x75 0x6E - 0x64 0x65 0x72 0x20 0x61 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x6E 0x61 0x6D 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6F 0x72 0x74 0x66 0x6F 0x6C 0x69 - 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 542 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_7= 0x200056E7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 550 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016018 0x00030601 0x20095 0x000305F0 0x0 0x0 0x57415645 0x00075487 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x61 0x76 0x65 0x20 0x41 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 615 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_8= 0x200056E8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 623 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x00075488 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056E9 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x61 0x20 0x74 0x6F 0x6F 0x6C 0x20 - 0x74 0x69 0x70 0x2C 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x74 0x6F 0x6F 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x68 0x65 0x6C 0x70 0x20 0x6F - 0x6E 0x2E 0x20 0x20 0x57 0x61 0x69 0x74 - 0x2E 0x2E 0x2E 0x61 0x20 0x62 0x72 0x69 - 0x65 0x66 0x20 0x64 0x65 0x73 0x63 0x72 - 0x69 0x70 0x74 0x69 0x6F 0x6E 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x6F 0x6C 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x2E 0x0D 0x0A 0x01 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 716 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_9= 0x200056E9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 724 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075489 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 0x0D 0x0A - 0x54 0x6F 0x20 0x67 0x65 0x74 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 0x65 - 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 - 0x6E 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x6F 0x75 0x74 - 0x20 0x6D 0x6F 0x72 0x65 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x73 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x63 0x68 0x69 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 817 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_A= 0x200056EA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 825 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601a 0x00030601 0x20034 0x000305F0 0x0 0x0 0x57415645 0x0007548A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056EB -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x67 0x65 0x74 - 0x20 0x68 0x65 0x6C 0x70 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x48 0x65 0x6C 0x70 0x20 0x4D 0x61 - 0x63 0x68 0x69 0x6E 0x65 0x2E 0x0D 0x0A - 0x01 0x20 0x54 0x6F 0x6F 0x6C 0x74 0x69 - 0x70 0x73 -ENDCHUNK - - -ENDCHUNK -#line 909 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_B= 0x200056EB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 917 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007548B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x6C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x54 0x6F 0x6F - 0x6C 0x74 0x69 0x70 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x61 0x20 - 0x62 0x72 0x69 0x65 0x66 0x20 0x64 0x65 - 0x73 0x63 0x72 0x69 0x70 0x74 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x61 0x20 0x74 - 0x6F 0x6F 0x6C 0x0D 0x0A 0x95 0x09 0x4D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 - 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x6F 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 0x61 - 0x69 0x74 0x2E 0x2E 0x2E 0x61 0x20 0x62 - 0x72 0x69 0x65 0x66 0x20 0x64 0x65 0x73 - 0x63 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x6F 0x6C 0x20 0x61 0x70 0x70 - 0x65 0x61 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1013 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_C= 0x200056EC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1021 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601a 0x00030601 0x20034 0x000305F0 0x0 0x0 0x57415645 0x0007548C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F 0x66 - 0x66 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x48 0x65 0x6C - 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1091 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_D= 0x200056ED - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1099 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001601b 0x00030601 0x00003012 0x000305F0 0x0 0x0 0x57415645 0x0007548D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x66 0x66 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x69 0x73 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x20 - 0x20 0x54 0x6F 0x20 0x74 0x75 0x72 0x6E - 0x20 0x68 0x69 0x73 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x20 0x6F 0x6E 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1172 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_E= 0x200056EE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1180 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601a 0x00030601 0x20035 0x000305F0 0x0 0x0 0x57415645 0x0007548E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x71 0x75 0x69 - 0x63 0x6B 0x6C 0x79 0x20 0x7A 0x69 0x70 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x6F 0x6F 0x6D 0x20 0x6F 0x72 0x20 - 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x63 0x68 0x6F 0x69 0x63 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x4D 0x61 0x70 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x67 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1255 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_F= 0x200056EF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1263 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601a 0x00030601 0x2003D 0x000305F0 0x0 0x0 0x57415645 0x0007548F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x71 0x75 0x69 - 0x74 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x20 0x45 0x78 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1330 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - - -SET _help_48544F50_10= 0x200056F0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1338 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030601 0x00003015 0x000305F0 0x0 0x0 0x57415645 0x00075490 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x48 - 0x65 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 - 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x6C 0x6F 0x73 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1406 "H:\\BUILD\\SOC\\src\\help\\basics.cht" - -#line 26 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -SET _help_48544F50_0= 0x20005215 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030601 0x20005 0x000305F0 0x0 0x0 0x57415645 0x00075030 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1= 0x20005216 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 103 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016016 0x00030601 0x20042 0x000305F0 0x0 0x0 0x57415645 0x00075031 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xC2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x94 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x74 0x69 0x6D 0x65 0x0D - 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x43 - 0x68 0x6F 0x69 0x63 0x65 0x73 0x2E 0x0D - 0x0A 0x49 0x66 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x61 0x64 0x64 0x65 0x64 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x64 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x77 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 222 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2= 0x20005217 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 230 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xAA 0x0 0x57415645 0x00075032 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 293 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_3= 0x20005218 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 301 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075033 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x87 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x75 0x73 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 390 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_4= 0x20005219 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 398 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075034 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005256 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005249 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005241 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005242 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x09 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x20 0x65 0x78 0x74 0x72 0x61 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 - 0x72 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 520 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_5= 0x2000521A - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 528 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x20014 0x000305F0 0x0 0x0 0x57415645 0x00075035 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 632 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_6= 0x2000521B - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 640 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075036 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x65 0x77 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 703 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_7= 0x2000521C - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 711 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075037 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 805 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_8= 0x2000521D - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 813 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016017 0x00030601 0x2004C 0x000305F0 0x0 0x0 0x57415645 0x00075038 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 874 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_9= 0x2000521E - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 882 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075039 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 946 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_A= 0x2000521F - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 954 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016017 0x00030601 0x2004E 0x000305F0 0x0 0x0 0x57415645 0x0007503A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005248 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x60 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x94 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x61 0x6C 0x6C 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x66 - 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x57 0x61 - 0x69 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x45 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1072 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_B= 0x20005220 - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1080 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007503B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005244 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x57 0x61 0x69 0x74 0x69 0x6E - 0x67 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x69 0x73 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x75 0x73 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1184 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_C= 0x20005221 - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1192 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00016017 0x00030601 0x2004D 0x000305F0 0x0 0x0 0x57415645 0x0007503C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1258 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_D= 0x20005222 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1266 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x0007503D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x62 0x65 - 0x74 0x77 0x65 0x65 0x6E 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x73 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 - 0x67 0x61 0x6E 0x69 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1339 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_E= 0x20005223 - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1347 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601c 0x00030601 0x0 0x000305F0 0xD2 0x6E 0x57415645 0x0007503F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000523C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x65 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x25 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x34 0x20 0x74 0x72 0x61 - 0x6E 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x63 0x68 0x6F 0x69 0x63 0x65 0x73 0x20 - 0x6C 0x69 0x73 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x6F 0x66 0x20 0x65 - 0x61 0x63 0x68 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x64 0x6F 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1436 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_F= 0x20005224 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1444 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075040 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x72 0x61 0x6E 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x73 0x20 0x62 0x65 0x74 - 0x77 0x65 0x65 0x6E 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x73 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1533 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_10= 0x20005225 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1541 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x00075041 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 - 0x64 0x65 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 0x67 - 0x61 0x6E 0x69 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1613 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_11= 0x20005226 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1621 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075042 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x27 0x72 0x65 0x20 0x64 0x6F - 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1705 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_12= 0x20005227 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1713 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075043 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x6F 0x72 0x64 - 0x65 0x72 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1801 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_13= 0x20005228 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1809 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030601 0x2008B 0x000305F0 0x12 0x5 0x57415645 0x00075044 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x76 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x20 0x74 - 0x68 0x65 0x20 0x46 0x69 0x72 0x73 0x74 - 0x2C 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 - 0x2C 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x72 0x72 0x6F 0x77 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1928 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_14= 0x20005229 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1936 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075045 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2025 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_15= 0x2000522A - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2033 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030601 0x20082 0x000305F0 0x1A 0x5 0x57415645 0x00075046 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000524B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x8D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x87 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x87 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x46 0x72 - 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E 0x0D 0x0A 0x95 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x2C - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C - 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x72 0x72 0x6F 0x77 0x2E 0x0D - 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D 0x0D - 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2154 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_16= 0x2000522B - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2162 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075047 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005246 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2250 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_17= 0x2000522C - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2258 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075048 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x83 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2356 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_18= 0x2000522D - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2364 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x00075049 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2430 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_19= 0x2000522E - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2438 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007504A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2531 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1A= 0x2000522F - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2539 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016017 0x00030601 0x20062 0x000305F0 0x0 0x0 0x57415645 0x0007504B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x25 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x40 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x6D 0x6F 0x76 0x65 0x20 0x45 0x76 0x65 - 0x72 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x42 0x65 0x66 0x6F 0x72 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2643 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1B= 0x20005230 - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2651 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20062 0x000305F0 0x0 0x0 0x57415645 0x0007504C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x63 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2715 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1C= 0x20005231 - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2723 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007504D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x22 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x6E 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x2E 0x0D 0x0A 0x41 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x61 0x72 0x65 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2802 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1D= 0x20005232 - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2810 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007504E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2905 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1E= 0x20000233 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2913 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016017 0x00030601 0x20050 0x000305F0 0x0 0x0 0x57415645 0x0007504F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005240 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x45 0x76 0x65 0x72 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x41 0x66 - 0x74 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3017 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_1F= 0x20005234 - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3025 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20050 0x000305F0 0x0 0x0 0x57415645 0x00075050 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3089 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_20= 0x20005235 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3097 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075051 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x22 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x6E 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x2E 0x0D 0x0A 0x41 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x73 0x20 0x61 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x61 0x72 0x65 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3176 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_21= 0x20005236 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3184 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075052 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x35 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x61 0x66 0x74 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3281 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_22= 0x20005237 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3289 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x00075053 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x6F 0x6E 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x20 0x6F 0x66 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x4F 0x72 0x67 - 0x61 0x6E 0x69 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3361 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_23= 0x20005238 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3369 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030601 0x200B1 0x000305F0 0x0 0x0 0x57415645 0x00075054 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6F 0x72 0x74 - 0x66 0x6F 0x6C 0x69 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3437 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_24= 0x20005239 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3445 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601a 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075055 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2D 0x2D 0x67 - 0x6F 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 - 0x6E 0x64 0x61 0x72 0x64 0x20 0x69 0x6D - 0x70 0x6F 0x72 0x74 0x20 0x61 0x75 0x64 - 0x69 0x6F -ENDCHUNK - - -ENDCHUNK -#line 3512 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_25= 0x2000523A - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3520 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075056 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x69 0x73 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x54 - 0x6F 0x20 0x72 0x65 0x74 0x75 0x72 0x6E - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3593 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_26= 0x2000523B - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3601 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601b 0x00030601 0x20037 0x000305F0 0x0 0x0 0x57415645 0x00075057 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x75 0x6E 0x64 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x69 0x64 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x55 0x6E 0x64 0x6F 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D - 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x52 0x65 0x64 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3683 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_27= 0x2000523C - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3691 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075058 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20291 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20292 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20293 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20294 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x30 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x47 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x49 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x32 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x34 0x20 0x74 0x72 0x61 0x6E - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 0x63 - 0x68 0x6F 0x69 0x63 0x65 0x73 0x0D 0x0A - 0x01 0x09 0x43 0x75 0x74 0x20 0x74 0x6F - 0x20 0x62 0x6C 0x61 0x63 0x6B 0x0D 0x0A - 0x01 0x09 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 0x0D 0x0A 0x01 0x09 0x44 0x69 - 0x73 0x73 0x6F 0x6C 0x76 0x65 0x20 0x77 - 0x69 0x74 0x68 0x20 0x62 0x6C 0x61 0x63 - 0x6B 0x0D 0x0A 0x01 0x09 0x44 0x69 0x73 - 0x73 0x6F 0x6C 0x76 0x65 0x20 0x77 0x69 - 0x74 0x68 0x20 0x77 0x68 0x69 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3791 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_28= 0x2000523D - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3799 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075059 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3863 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_29= 0x2000523E - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3871 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007505A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x41 0x74 0x74 0x61 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x20 0x6F 0x66 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x2D 0x2D 0x20 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3968 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2A= 0x2000523F - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3976 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007505B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005243 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x55 0x6E 0x64 0x6F 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 - 0x64 0x6F 0x69 0x6E 0x67 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 4062 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2B= 0x20005240 - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 4070 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4205 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2C= 0x20005241 - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4213 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x34 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2003A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x6F 0x72 0x64 0x65 0x72 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x6F 0x72 0x64 0x65 0x72 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x20 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A - 0x65 0x72 0x2D 0x01 0x0D 0x0A 0x33 0x09 - 0x44 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4316 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2D= 0x20005242 - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4324 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4426 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2E= 0x20005243 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4434 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007505F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x04 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x31 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x50 0x6C 0x61 - 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x75 0x74 - 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 0x6C - 0x6C 0x79 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4573 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_2F= 0x20005244 - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4581 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075060 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - FREE - FREE - FREE - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x97 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x60 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x61 0x75 0x73 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x70 0x61 0x75 0x73 0x65 - 0x0D 0x0A 0x95 0x09 0x54 0x75 0x72 0x6E - 0x20 0x6F 0x66 0x66 0x20 0x57 0x61 0x69 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x45 - 0x6E 0x64 0x20 0x62 0x79 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x69 0x6E 0x67 0x20 0x69 - 0x74 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x6F 0x66 0x66 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x6F 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x72 - 0x65 0x64 0x20 0x6C 0x69 0x67 0x68 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4688 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_30= 0x20005245 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4696 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075061 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 4756 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_31= 0x20005246 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4764 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075062 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000004 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x22 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x3A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xB9 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 0x09 - 0x55 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x0D 0x0A 0x01 0x20 - 0x20 0x4E 0x6F 0x74 0x65 0x3A 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x2C - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C - 0x20 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4885 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_32= 0x2000524C - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4893 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016017 0x00030601 0x20014 0x000305F0 0x0 0x0 0x57415645 0x00075068 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4957 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_33= 0x2000524D - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4965 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x73 0x0D - 0x0A 0x54 0x68 0x65 0x72 0x65 0x20 0x61 - 0x72 0x65 0x20 0x6D 0x61 0x6E 0x79 0x20 - 0x64 0x69 0x66 0x66 0x65 0x72 0x65 0x6E - 0x74 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x65 0x61 0x63 0x68 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x20 0x63 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 0x2C - 0x20 0x79 0x6F 0x75 0x20 0x61 0x72 0x65 - 0x6E 0x27 0x74 0x20 0x63 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2D 0x2D - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x6A - 0x75 0x73 0x74 0x20 0x63 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x69 0x65 0x77 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5049 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_34= 0x2000524E - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 5057 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016016 0x00030601 0x20005 0x000305F0 0x0 0x0 0x57415645 0x00075069 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5131 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_35= 0x2000524F - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 5139 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016018 0x00030601 0x0 0x000305F0 0x168 0x18B 0x57415645 0x0007506A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x31 0x09 0x49 0x66 0x20 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x4E 0x65 0x78 0x74 - 0x20 0x61 0x72 0x72 0x6F 0x77 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x6C 0x61 0x63 0x6B 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6C 0x61 0x63 0x6B 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5218 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_36= 0x20005250 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 5226 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x0007506B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x4F 0x72 0x67 0x61 0x6E 0x69 - 0x7A 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5294 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_37= 0x20005251 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5302 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601c 0x00030601 0x0 0x000305F0 0x82 0x0 0x57415645 0x0007506C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000523C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x53 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x31 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x62 0x6C 0x61 - 0x63 0x6B 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x69 0x73 0x20 0x73 0x6C - 0x6F 0x74 0x2E 0x20 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x34 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x63 0x68 - 0x6F 0x69 0x63 0x65 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6C 0x61 0x63 0x6B 0x20 - 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x2E 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5394 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_38= 0x20005252 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5402 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016017 0x00030601 0x2003A 0x000305F0 0x0 0x0 0x57415645 0x0007506D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5462 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_39= 0x20005253 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5470 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030601 0x200B5 0x000305F0 0x0 0x0 0x57415645 0x0007506E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5532 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_3A= 0x20005254 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5540 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007506F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005247 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005243 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 5634 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_3B= 0x20005255 - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5642 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075070 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x61 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5708 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_44= 0x20005247 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 5716 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075063 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5819 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_45= 0x20005248 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 5827 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075064 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x46 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 - 0x20 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 - 0x64 0x73 0x20 0x77 0x69 0x74 0x68 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x0D 0x0A 0x95 0x09 0x55 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x46 0x72 0x61 - 0x6D 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 - 0x72 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x4E - 0x6F 0x74 0x65 0x3A 0x20 0x20 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x20 0x74 0x68 0x65 - 0x20 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 - 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 - 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 - 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5947 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_46= 0x20005249 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 5955 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075065 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20014 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A 0x54 - 0x68 0x65 0x72 0x65 0x20 0x61 0x72 0x65 - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x70 0x6F - 0x73 0x73 0x69 0x62 0x6C 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x65 0x61 0x63 0x68 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x20 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6058 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_49= 0x2000524A - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 6066 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075066 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x99 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x70 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 - 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x77 0x69 0x74 0x68 0x69 0x6E - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x0D 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x46 0x72 0x61 0x6D - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x0D 0x0A 0x01 0x0D 0x0A 0x4E 0x6F 0x74 - 0x65 0x3A 0x20 0x20 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6184 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_51= 0x2000524B - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 6192 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075067 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 6286 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - - -SET _help_48544F50_5C= 0x20005256 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 6294 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x0 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x83 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x0D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x01 0x00 0x01 - 0x01 0xFE 0x00 0x00 0x11 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xDD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x7F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x0D 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x64 0x64 0x69 - 0x6E 0x67 0x20 0x65 0x78 0x74 0x72 0x61 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x95 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x20 0x28 - 0x6C 0x6F 0x63 0x61 0x74 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x77 0x65 0x72 0x2D 0x6C 0x65 0x66 - 0x74 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 - 0x29 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x73 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x4E 0x65 0x78 0x74 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D 0x01 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6421 "H:\\BUILD\\SOC\\src\\help\\htscenes.cht" - -#line 27 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -SET _help_48544F50_0= 0x20005200 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F2 0x140 0xF0 0x57415645 0x00075000 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x69 0x73 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x20 0x6C - 0x6F 0x67 0x6F 0x97 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x66 0x6C 0x79 0x20 0x6F 0x6E - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x21 - 0x0D 0x0A 0x46 0x6F 0x72 0x20 0x65 0x78 - 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x63 0x6F 0x6D 0x70 0x61 - 0x6E 0x79 0x20 0x6E 0x61 0x6D 0x65 0x20 - 0x6F 0x72 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x33 0x44 0x20 0x74 - 0x69 0x74 0x6C 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 136 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_1= 0x20005201 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 144 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016017 0x00030603 0x20014 0x000305F2 0x0 0x0 0x57415645 0x00075001 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 208 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_2= 0x20005202 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 216 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016016 0x00030603 0x20042 0x000305F2 0x0 0x0 0x57415645 0x00075002 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x63 0x68 0x6F 0x69 - 0x63 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 283 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_3= 0x20005203 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 291 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0xAA 0x0 0x57415645 0x00075004 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 354 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_4= 0x20005204 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 362 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x00075005 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 427 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_5= 0x20005205 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 435 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F2 0x0 0x0 0x57415645 0x00075006 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C 0x6F - 0x67 0x6F 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 506 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_6= 0x20005206 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 514 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016017 0x00030603 0x20077 0x000305F2 0x0 0x0 0x57415645 0x00075007 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x2E 0x2E 0x2E 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x57 0x6F 0x72 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 581 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_7= 0x20005207 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 589 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x00075008 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x68 0x65 0x72 0x65 0x2E 0x20 - 0x20 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x6D - 0x69 0x73 0x74 0x61 0x6B 0x65 0x2C 0x20 - 0x70 0x72 0x65 0x73 0x73 0x20 0x42 0x61 - 0x63 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 660 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_8= 0x20005208 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 668 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016017 0x00030603 0x20077 0x000305F2 0x0 0x0 0x57415645 0x00075009 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x61 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x69 0x73 0x20 0x70 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x2E 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x33 0x44 - 0x20 0x57 0x6F 0x72 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 738 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_9= 0x20005209 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 746 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C 0x6F - 0x67 0x6F 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x61 0x70 0x70 0x65 - 0x61 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x67 - 0x6F 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 827 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_A= 0x2000520a - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 835 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F2 0x0 0x0 0x57415645 0x0007500B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x6C - 0x6F 0x67 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 905 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_B= 0x2000520b - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 913 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x6F 0x67 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 975 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_C= 0x2000520c - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 983 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1054 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_11= 0x2000520f - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1062 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F2 0x140 0x6E 0x57415645 0x0007500E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005211 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x6F 0x67 0x6F 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x20 0x74 0x6F 0x20 0x67 0x6F 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1160 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_12= 0x20005210 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1168 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F2 0x140 0xF0 0x57415645 0x0007500F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x82 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x47 0x72 0x65 0x61 0x74 0x21 - 0x20 0x20 0x59 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x64 0x6F 0x6E 0x65 0x21 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x79 0x6F 0x75 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 0x64 - 0x6F 0x20 0x6E 0x6F 0x77 0x3F 0x0D 0x0A - 0x01 0x09 0x57 0x6F 0x72 0x6B 0x20 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F - 0x77 0x6E 0x3F 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x65 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6C 0x6F 0x67 0x6F - 0x3F 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x52 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x51 0x75 - 0x69 0x74 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1290 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - - -SET _help_48544F50_5C= 0x20005211 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 1298 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x46 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x67 - 0x6F 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x0D 0x0A 0x95 0x09 - 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x55 0x70 - 0x20 0x6F 0x72 0x20 0x44 0x6F 0x77 0x6E - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B - 0x65 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1394 "H:\\BUILD\\SOC\\src\\help\\logo.cht" - -#line 28 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -SET _help_48544F50_0= 0x20005270 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000750B0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x77 0x61 0x73 0x6E - 0x27 0x74 0x20 0x65 0x78 0x70 0x65 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x20 0x74 0x6F 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x72 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x3F 0x0D 0x0A 0x01 0x09 - 0x57 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 0x6E - 0x3F 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x72 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x51 0x75 - 0x69 0x74 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 - 0x68 0x69 0x73 0x20 0x70 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x77 0x69 0x74 0x68 - 0x20 0x6D 0x79 0x20 0x68 0x65 0x6C 0x70 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 165 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_1= 0x20005271 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 173 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000750B1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x52 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x51 0x75 - 0x69 0x74 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x77 - 0x6F 0x72 0x6B 0x69 0x6E 0x67 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 287 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_2= 0x20005272 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 295 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602d 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000750B2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x68 0x65 - 0x6C 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 0x65 - 0x6C 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 - 0x6E 0x65 0x20 0x6F 0x72 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x70 0x6F 0x69 - 0x6E 0x74 0x65 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x6F 0x6C 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x6F 0x6E 0x21 -ENDCHUNK - - -ENDCHUNK -#line 369 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_3= 0x20005273 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 377 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601e 0x00030603 0x20160 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750B3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x6D - 0x79 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 446 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_4= 0x20005274 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 454 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030604 0x0 0x20005274 0x140 0xF0 0x57415645 0x000750B4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x3F 0x0D 0x0A 0x01 0x09 - 0x57 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6F 0x77 0x6E - 0x3F 0x0D 0x0A 0x01 0x09 0x47 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x73 0x20 0x72 0x6F 0x6F - 0x6D 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x74 - 0x68 0x69 0x73 0x20 0x70 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x77 0x69 0x74 0x68 - 0x20 0x6D 0x79 0x20 0x68 0x65 0x6C 0x70 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 570 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - - -SET _help_48544F50_5= 0x20005275 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 578 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601e 0x00030604 0x0 0x20005275 0x140 0xF0 0x57415645 0x000750B5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x53 0x65 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x01 0x09 0x43 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x65 0x20 0x77 0x6F 0x72 0x6B 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x69 0x73 0x20 0x70 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 679 "H:\\BUILD\\SOC\\src\\help\\prjalert.cht" - -#line 29 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -SET _help_48544F50_0= 0x20005280 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601f 0x00030603 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750C8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x41 0x75 0x64 0x69 0x6F 0x20 - 0x6F 0x6E 0x6C 0x79 0x2D 0x2D 0x2D 0x0D - 0x0A 0x48 0x69 0x21 0x20 0x20 0x57 0x65 - 0x6C 0x63 0x6F 0x6D 0x65 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x73 0x20 0x52 0x6F - 0x6F 0x6D 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x6D 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x6F 0x77 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x61 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x20 0x6C - 0x6F 0x67 0x6F 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x72 0x65 0x65 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x66 - 0x74 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x27 0x64 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x63 0x6F - 0x6F 0x6C 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2D 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x65 0x63 0x68 0x6E 0x69 0x71 0x75 - 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 118 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - -SET _help_48544F50_1= 0x20005281 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 126 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601f 0x00030603 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750C9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x75 0x6C 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x3A 0x0D 0x0A 0x01 0x09 - 0x4D 0x61 0x6B 0x65 0x20 0x61 0x20 0x66 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x6C 0x6F - 0x67 0x6F 0x3F 0x0D 0x0A 0x01 0x09 0x4C - 0x65 0x61 0x72 0x6E 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x74 0x65 0x63 - 0x68 0x6E 0x69 0x71 0x75 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 209 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - -SET _help_48544F50_2= 0x20005282 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 217 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601f 0x00030603 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750CA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x41 0x75 0x64 0x69 0x6F 0x20 - 0x6F 0x6E 0x6C 0x79 0x2E 0x2E 0x2E 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x20 0x73 0x68 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x39 0x20 - 0x64 0x69 0x66 0x66 0x65 0x72 0x65 0x6E - 0x74 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2D - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 - 0x65 0x63 0x68 0x6E 0x69 0x71 0x75 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 285 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - - -SET _help_48544F50_3= 0x20005283 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 293 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x00003047 0x140 0xF0 0x57415645 0x000750CB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x96 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x4D 0x79 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x68 0x65 0x6C 0x70 0x20 0x79 0x6F - 0x75 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x36 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x73 0x74 0x65 0x70 0x2D 0x62 - 0x79 0x2D 0x73 0x74 0x65 0x70 0x2E 0x20 - 0x20 0x49 0x27 0x76 0x65 0x20 0x6D 0x61 - 0x64 0x65 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x65 0x61 0x63 0x68 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x2E 0x20 0x20 - 0x55 0x73 0x65 0x20 0x6D 0x79 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x20 0x74 0x6F - 0x20 0x68 0x65 0x6C 0x70 0x20 0x79 0x6F - 0x75 0x20 0x64 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x73 0x74 0x21 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 391 "H:\\BUILD\\SOC\\src\\help\\prjintro.cht" - -#line 30 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -SET _help_48544F50_0= 0x00017033 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001602e 0x0 0x00003034 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075550 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F 0x6C - 0x0D 0x0A 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x65 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 116 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_1= 0x00017034 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 124 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001602e 0x0 0x00003037 0xFFFFFFFF 0xB9 0x14 0x57415645 0x00075551 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x78 0x74 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 205 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_2= 0x00017035 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 213 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602e 0x0 0x00003039 0xFFFFFFFF 0xC9 0x14 0x57415645 0x00075552 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x0D 0x0A 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 295 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_3= 0x00017036 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 303 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600d 0x0 0x00003033 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075553 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x42 - 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 384 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_4= 0x00017037 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 392 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600d 0x0 0x0000303D 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075554 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x87 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x77 0x20 0x42 0x75 - 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x65 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 473 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_5= 0x00017038 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 481 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600d 0x0 0x00003036 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075555 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x6F 0x73 0x65 0x20 - 0x42 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 564 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_6= 0x00017039 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 572 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600d 0x0 0x00003035 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075556 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6C 0x61 0x6E 0x69 - 0x65 0x27 0x73 0x20 0x56 0x6F 0x69 0x63 - 0x65 0x0D 0x0A 0x54 0x75 0x72 0x6E 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F 0x66 - 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 655 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - - -SET _help_48544F50_7= 0x0001703a - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 663 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600d 0x0 0x0000303E 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075557 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x0D 0x0A 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x6C 0x65 0x61 0x72 0x6E 0x20 0x6D 0x6F - 0x72 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 743 "H:\\BUILD\\SOC\\src\\help\\prjtips.cht" - -#line 31 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -SET _help_48544F50_0= 0x20005430 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075270 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 100 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1= 0x20005431 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 108 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075271 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005462 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D - 0x0A 0x01 0x20 0x4D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6B -ENDCHUNK - - -ENDCHUNK -#line 197 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2= 0x20005432 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 205 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075272 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x64 0x20 0x79 0x6F - 0x75 0x20 0x65 0x76 0x65 0x72 0x20 0x77 - 0x6F 0x6E 0x64 0x65 0x72 0x20 0x68 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6D 0x61 0x74 - 0x63 0x68 0x20 0x77 0x68 0x61 0x74 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 0x73 - 0x61 0x79 0x20 0x74 0x6F 0x20 0x77 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x79 0x20 - 0x64 0x6F 0x3F 0x20 0x20 0x49 0x74 0x27 - 0x73 0x20 0x6E 0x6F 0x74 0x20 0x61 0x73 - 0x20 0x65 0x61 0x73 0x79 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x6C 0x6F 0x6F 0x6B - 0x73 0x2E 0x20 0x20 0x57 0x61 0x74 0x63 - 0x68 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x2E 0x20 0x20 0x4E 0x6F 0x74 0x69 - 0x63 0x65 0x20 0x68 0x6F 0x77 0x20 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x27 0x73 0x20 0x61 0x72 0x6D - 0x73 0x20 0x73 0x74 0x61 0x72 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x74 0x68 - 0x65 0x79 0x20 0x73 0x74 0x61 0x72 0x74 - 0x20 0x73 0x70 0x65 0x61 0x6B 0x69 0x6E - 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 292 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_3= 0x20005433 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 300 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075273 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x6A 0x75 0x73 0x74 0x20 0x73 - 0x61 0x69 0x64 0x2C 0x20 0x93 0x49 0x92 - 0x6C 0x6C 0x20 0x74 0x72 0x61 0x64 0x65 - 0x20 0x61 0x20 0x6D 0x61 0x67 0x69 0x63 - 0x20 0x74 0x72 0x69 0x63 0x6B 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x76 0x61 0x73 - 0x65 0x2E 0x94 0x0D 0x0A 0x4E 0x6F 0x77 - 0x20 0x69 0x74 0x92 0x73 0x20 0x79 0x6F - 0x75 0x72 0x20 0x74 0x75 0x72 0x6E 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x92 0x73 - 0x20 0x54 0x61 0x6C 0x6B 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 400 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_4= 0x20005434 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 408 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075274 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x54 0x61 - 0x6C 0x6B 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 475 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_5= 0x20005435 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 483 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075275 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 544 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_6= 0x20005436 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 552 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075276 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x54 0x61 0x6C 0x6B - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 614 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_7= 0x20005437 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 622 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x00075277 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 683 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_8= 0x20005438 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 691 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075278 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x73 - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x62 0x79 0x20 0x68 - 0x65 0x72 0x20 0x73 0x69 0x64 0x65 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 777 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_9= 0x20005439 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 785 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075279 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x43 0x6C 0x61 - 0x75 0x64 0x69 0x61 0x20 0x73 0x74 0x61 - 0x72 0x74 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x68 0x65 0x72 0x20 - 0x68 0x61 0x6E 0x64 0x73 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x92 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 881 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_A= 0x2000543A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 889 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x0007527A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 960 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_B= 0x2000543B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 968 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007527B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x92 0x73 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1038 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_C= 0x2000543C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1046 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007527C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x27 0x73 0x20 0x54 0x61 0x6C 0x6B - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x70 0x75 0x6C 0x6C 0x73 0x20 0x79 0x6F - 0x75 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x6F 0x63 0x75 0x73 0x65 0x73 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x61 0x74 - 0x74 0x65 0x6E 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x6E 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x2E 0x20 0x20 0x4E 0x6F 0x77 - 0x20 0x77 0x65 0x20 0x6E 0x65 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x6E 0x65 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1121 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_D= 0x2000543D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1129 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007527D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1195 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_E= 0x2000543E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1203 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016017 0x00030603 0x20079 0x000305F1 0x0 0x0 0x57415645 0x0007527E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x70 0x65 0x65 0x63 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1269 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_F= 0x2000543F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1277 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007527F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x4F 0x68 0x2C 0x20 0x49 0x20 0x64 - 0x6F 0x6E 0x92 0x74 0x20 0x6B 0x6E 0x6F - 0x77 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1342 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_10= 0x20005440 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1350 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075280 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1411 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_11= 0x20005441 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1419 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601a 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075281 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x20 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1498 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_12= 0x20005442 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1506 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075282 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1576 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_13= 0x20005443 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1584 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075283 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x76 0x65 0x72 - 0x73 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 - 0x61 0x72 0x65 0x20 0x66 0x69 0x6C 0x6D - 0x65 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x93 0x6F 0x76 0x65 0x72 0x2D 0x74 0x68 - 0x65 0x2D 0x73 0x68 0x6F 0x75 0x6C 0x64 - 0x65 0x72 0x94 0x20 0x73 0x68 0x6F 0x74 - 0x73 0x2E 0x20 0x20 0x50 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x73 0x2C 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x61 0x75 0x64 0x69 0x65 0x6E 0x63 0x65 - 0x20 0x69 0x73 0x20 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x73 0x68 0x6F - 0x75 0x6C 0x64 0x65 0x72 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x77 0x68 0x6F 0x20 0x69 - 0x73 0x20 0x6C 0x69 0x73 0x74 0x65 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x63 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x77 0x68 0x6F 0x20 0x69 - 0x73 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1673 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_14= 0x20005444 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1681 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00016016 0x00030603 0x20005 0x000305F1 0x0 0x0 0x57415645 0x00075284 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005445 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x20 0x63 - 0x68 0x6F 0x69 0x63 0x65 0x73 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x73 0x2E 0x0D 0x0A 0x01 - 0x20 0x20 0x53 0x63 0x65 0x6E 0x65 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 1769 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_15= 0x20005445 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1777 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075285 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x73 0x0D 0x0A 0x41 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 0x69 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6F 0x76 - 0x65 0x72 0x61 0x6C 0x6C 0x20 0x65 0x6E - 0x76 0x69 0x72 0x6F 0x6E 0x6D 0x65 0x6E - 0x74 0x20 0x69 0x6E 0x20 0x77 0x68 0x69 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x73 0x20 0x61 0x72 0x65 - 0x20 0x73 0x68 0x6F 0x74 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x76 0x61 0x73 0x65 - 0x20 0x62 0x6F 0x6F 0x74 0x68 0x20 0x69 - 0x73 0x20 0x61 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x61 0x72 0x6B 0x65 - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1872 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_16= 0x20005446 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1880 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016017 0x00030603 0x20014 0x000305F1 0x0 0x0 0x57415645 0x00075286 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1945 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_17= 0x20005447 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1953 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x43 0x0 0x57415645 0x00075287 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 - 0x92 0x73 0x20 0x66 0x61 0x63 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x69 0x73 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2019 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_18= 0x20005448 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2027 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x00075288 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x92 0x73 0x20 - 0x54 0x61 0x6C 0x6B 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2099 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_19= 0x20005449 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2107 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016017 0x00030603 0x20063 0x000305F1 0x0 0x0 0x57415645 0x00075289 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000544A - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 0x4C - 0x61 0x73 0x74 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x73 0x75 0x6D 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 2192 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1A= 0x2000544A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2200 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007528A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x73 0x75 - 0x6D 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x75 0x73 0x65 - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2294 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1B= 0x2000544B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2302 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007528B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x78 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x73 - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x27 0x73 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x62 0x79 0x20 0x68 - 0x69 0x73 0x20 0x73 0x69 0x64 0x65 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2388 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1C= 0x2000544C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2396 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x0007528C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x20 0x73 0x74 0x61 0x72 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x68 0x69 0x73 0x20 0x68 - 0x61 0x6E 0x64 0x73 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2492 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1D= 0x2000544D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2500 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007528D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x92 0x73 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2570 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1E= 0x2000544E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2578 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007528E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x27 0x73 0x20 0x70 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x73 0x65 0x6E - 0x74 0x65 0x6E 0x63 0x65 0x20 0x77 0x61 - 0x73 0x20 0x73 0x68 0x6F 0x72 0x74 0x20 - 0x73 0x6F 0x20 0x77 0x65 0x20 0x6B 0x65 - 0x70 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x6F 0x6E - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x61 0x20 0x73 0x65 - 0x6E 0x74 0x65 0x6E 0x63 0x65 0x20 0x69 - 0x73 0x20 0x6C 0x6F 0x6E 0x67 0x2C 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x27 0x73 0x20 0x6E - 0x65 0x78 0x74 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x20 0x6E 0x65 0x61 0x72 0x20 0x74 - 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x65 - 0x6E 0x74 0x65 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2660 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_1F= 0x2000544F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2668 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007528F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2734 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_20= 0x20005450 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2742 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x00075290 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2863 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_21= 0x20005451 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2871 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075291 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x72 - 0x72 0x6F 0x77 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2963 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_22= 0x20005452 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2971 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075292 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005451 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 3060 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_23= 0x20005453 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3068 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075293 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x49 0x92 0x6C 0x6C 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x79 0x6F 0x75 0x2E 0x2E - 0x2E 0x22 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3133 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_24= 0x20005454 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3141 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075294 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3203 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_25= 0x20005455 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3211 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075295 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3278 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_26= 0x20005456 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3286 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075296 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x67 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x38 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x6D 0x6F 0x73 0x74 0x20 0x66 0x69 0x6E - 0x69 0x73 0x68 0x65 0x64 0x20 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x68 0x69 0x73 - 0x20 0x68 0x61 0x6E 0x64 0x73 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x72 0x65 0x61 - 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 - 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3381 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_27= 0x20005457 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3389 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075297 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3459 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_28= 0x20005458 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3467 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075298 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x61 0x73 0x74 0x20 0x6E - 0x6F 0x74 0x69 0x63 0x65 0x61 0x62 0x6C - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x2E - 0x20 0x20 0x49 0x74 0x92 0x73 0x20 0x61 - 0x20 0x6D 0x61 0x74 0x74 0x65 0x72 0x20 - 0x6F 0x66 0x20 0x74 0x69 0x6D 0x69 0x6E - 0x67 0x3A 0x20 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E - 0x67 0x6C 0x65 0x20 0x6F 0x6E 0x20 0x61 - 0x20 0x6B 0x65 0x79 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x61 0x6E 0x20 0x69 0x64 - 0x65 0x61 0x20 0x6F 0x72 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x61 0x20 0x68 0x61 0x6E - 0x64 0x20 0x67 0x65 0x73 0x74 0x75 0x72 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3546 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_29= 0x20005459 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3554 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x43 0x0 0x57415645 0x00075299 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x92 0x73 0x20 0x66 0x61 0x63 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x69 0x73 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3620 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2A= 0x2000545A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3628 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007529A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3693 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2B= 0x2000545B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3701 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x0007529B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x92 0x73 0x20 - 0x54 0x61 0x6C 0x6B 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3771 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2C= 0x2000545C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3779 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007529C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x78 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x73 - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 0x73 - 0x20 0x69 0x74 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x27 0x73 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E 0x64 - 0x20 0x75 0x70 0x20 0x62 0x79 0x20 0x68 - 0x65 0x72 0x20 0x73 0x69 0x64 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x20 0x73 0x6F 0x20 0x66 0x61 0x72 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3864 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2D= 0x2000545D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3872 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007529D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x92 0x73 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3942 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2E= 0x2000545E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3950 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007529E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x68 0x61 0x73 - 0x20 0x61 0x64 0x76 0x61 0x6E 0x63 0x65 - 0x64 0x3A 0x20 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x69 0x73 0x20 0x77 - 0x69 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x6E 0x65 0x67 0x6F 0x74 0x69 - 0x61 0x74 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 - 0x2E 0x20 0x20 0x44 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x65 0x20 0x6F 0x72 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x3F 0x20 - 0x20 0x49 0x74 0x92 0x73 0x20 0x75 0x70 - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x21 - 0x20 0x20 0x46 0x69 0x72 0x73 0x74 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x61 0x64 0x64 0x20 0x6D 0x6F 0x72 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x6F 0x72 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4032 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_2F= 0x2000545F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4040 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007529F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x4F 0x4B 0x2C 0x20 0x79 0x6F 0x75 - 0x92 0x76 0x65 0x20 0x67 0x6F 0x74 0x2E - 0x2E 0x2E 0x94 0x20 0x0D 0x0A 0x54 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4105 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_30= 0x20005460 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4113 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752AA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4180 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_31= 0x20005461 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4188 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752AB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x43 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x6E - 0x65 0x78 0x74 0x20 0x73 0x74 0x65 0x70 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x47 0x61 0x64 0x67 - 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4270 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_32= 0x20005462 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4278 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x61 0x6C - 0x6B 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x74 0x61 0x6C 0x6B - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x61 0x64 - 0x64 0x20 0x73 0x70 0x65 0x65 0x63 0x68 - 0x2E 0x0D 0x0A 0x31 0x09 0x4D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x54 0x61 0x6C 0x6B 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x32 0x09 0x52 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x73 - 0x74 0x61 0x72 0x74 0x73 0x20 0x74 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A - 0x33 0x09 0x41 0x74 0x74 0x61 0x63 0x68 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2E 0x0D - 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4393 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - - -SET _help_48544F50_33= 0x20005463 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4401 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xB8 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x74 0x6F 0x6F 0x20 0x66 - 0x61 0x72 0x2E 0x2E 0x2E 0x0D 0x0A 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x74 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x20 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x67 - 0x6F 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x4E 0x65 0x78 0x74 0x2D - 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 - 0x67 0x6F 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4513 "H:\\BUILD\\SOC\\src\\help\\project1.cht" - -#line 32 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -SET _help_48544F50_0= 0x20005470 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x000752B0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000549D - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 121 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_1= 0x20005471 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 129 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752B1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 199 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_2= 0x20005472 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 207 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752B2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4D 0x69 0x6D 0x69 0x27 0x73 - 0x20 0x72 0x75 0x6E 0x20 0x69 0x73 0x20 - 0x73 0x6C 0x6F 0x77 0x65 0x72 0x20 0x74 - 0x68 0x61 0x6E 0x20 0x43 0x68 0x61 0x72 - 0x6C 0x69 0x65 0x27 0x73 0x20 0x72 0x75 - 0x6E 0x2C 0x20 0x73 0x6F 0x20 0x69 0x66 - 0x20 0x74 0x68 0x65 0x79 0x20 0x73 0x74 - 0x61 0x72 0x74 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x43 0x68 0x61 - 0x72 0x6C 0x69 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x61 0x72 0x72 0x69 0x76 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x2E 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x79 0x6E 0x63 0x68 0x72 0x6F - 0x6E 0x69 0x7A 0x65 0x20 0x74 0x6F 0x6F - 0x6C 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x4D 0x69 - 0x6D 0x69 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 290 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_3= 0x20005473 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 298 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000752B3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x59 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x4D 0x69 0x6D 0x69 0x20 0x72 - 0x75 0x6E 0x73 0x20 0x74 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x74 0x6F 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x92 0x73 0x20 - 0x73 0x75 0x72 0x70 0x72 0x69 0x73 0x65 - 0x20 0x70 0x61 0x72 0x74 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x2E 0x20 0x20 - 0x4D 0x69 0x6D 0x69 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x6B 0x6E 0x6F - 0x77 0x20 0x69 0x74 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 - 0x65 0x20 0x69 0x73 0x20 0x68 0x69 0x64 - 0x69 0x6E 0x67 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x61 0x20 0x67 0x72 0x61 - 0x76 0x65 0x73 0x74 0x6F 0x6E 0x65 0x2E - 0x20 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 - 0x65 0x20 0x6A 0x75 0x6D 0x70 0x73 0x20 - 0x75 0x70 0x2C 0x20 0x72 0x61 0x63 0x65 - 0x73 0x20 0x4D 0x69 0x6D 0x69 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x72 0x72 0x69 - 0x76 0x65 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x70 0x61 0x72 0x74 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x73 0x68 0x65 0x20 0x64 0x6F 0x65 0x73 - 0x2E 0x0D 0x0A 0x4E 0x6F 0x77 0x20 0x69 - 0x74 0x92 0x73 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x74 0x75 0x72 0x6E 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x4D 0x69 0x6D 0x69 0x92 0x73 0x20 0x61 - 0x72 0x72 0x69 0x76 0x61 0x6C 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x73 0x68 0x65 0x20 - 0x67 0x65 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x72 0x74 - 0x79 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x21 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 420 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_4= 0x20005474 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 428 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752B4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x42 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x77 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 502 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_5= 0x20005475 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 510 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601c 0x00030603 0x20096 0x000305F1 0x2E 0x8B 0x57415645 0x000752B5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054A1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x4D 0x69 0x6D 0x69 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x68 0x65 - 0x72 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C - 0x69 0x73 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x6C 0x6F 0x6F 0x6B 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 0x20 - 0x79 0x65 0x6C 0x6C 0x6F 0x77 0x20 0x6F - 0x75 0x74 0x6C 0x69 0x6E 0x65 0x20 0x69 - 0x6E 0x73 0x69 0x64 0x65 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x61 0x76 0x65 0x20 - 0x63 0x68 0x61 0x6D 0x62 0x65 0x72 0x2E - 0x0D 0x0A 0x01 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 603 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_6= 0x20005476 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 611 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016017 0x00030603 0x2001F 0x000305F1 0x0 0x0 0x57415645 0x000752B6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005477 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x4D 0x69 0x6D 0x69 0x20 0x61 - 0x72 0x72 0x69 0x76 0x65 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x43 0x68 0x61 - 0x72 0x6C 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x79 0x6E 0x63 - 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x2E - 0x0D 0x0A 0x01 0x20 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 -ENDCHUNK - - -ENDCHUNK -#line 697 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_7= 0x20005477 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 705 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752B7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x79 0x6E 0x63 - 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x53 0x79 0x6E - 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A 0x65 - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x6C 0x65 - 0x74 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x67 0x65 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x69 0x63 0x75 0x6C - 0x61 0x72 0x20 0x6C 0x6F 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 791 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_8= 0x20005478 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 799 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752B8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005479 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x69 0x6E 0x73 0x69 0x64 0x65 0x20 0x4D - 0x69 0x6D 0x69 0x27 0x73 0x20 0x79 0x65 - 0x6C 0x6C 0x6F 0x77 0x20 0x6F 0x75 0x74 - 0x6C 0x69 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x22 0x66 0x72 0x65 0x65 0x7A 0x65 0x22 - 0x20 0x68 0x65 0x72 0x20 0x69 0x6E 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x2E 0x0D 0x0A - 0x01 0x20 0x57 0x68 0x69 0x63 0x68 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x74 0x6F - 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 888 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_9= 0x20005479 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 896 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752B9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x69 - 0x63 0x68 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x66 0x72 0x65 0x65 - 0x7A 0x65 0x3F 0x0D 0x0A 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x6F 0x6E 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x72 0x72 - 0x65 0x63 0x74 0x20 0x73 0x70 0x6F 0x74 - 0x2E 0x20 0x20 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x53 0x79 0x6E 0x63 0x68 - 0x72 0x6F 0x6E 0x69 0x7A 0x65 0x20 0x74 - 0x6F 0x6F 0x6C 0x20 0x74 0x6F 0x20 0x22 - 0x66 0x72 0x65 0x65 0x7A 0x65 0x22 0x20 - 0x74 0x68 0x61 0x74 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x69 0x6E 0x20 0x70 0x6C - 0x61 0x63 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x42 0x61 0x63 - 0x6B 0x20 0x6F 0x72 0x20 0x46 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x73 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x77 0x69 0x6E 0x64 0x20 0x6F 0x72 - 0x20 0x61 0x64 0x76 0x61 0x6E 0x63 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x20 0x20 0x4B 0x65 0x65 - 0x70 0x20 0x63 0x6C 0x69 0x63 0x6B 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x72 0x72 0x6F 0x77 0x73 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x63 0x6F 0x6E 0x64 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x2C 0x20 - 0x61 0x68 0x65 0x61 0x64 0x20 0x6F 0x66 - 0x2C 0x20 0x6F 0x72 0x20 0x6D 0x65 0x65 - 0x74 0x73 0x20 0x74 0x68 0x65 0x20 0x22 - 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x22 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1009 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_A= 0x2000547A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1017 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016019 0x00030603 0x2009B 0x000305F1 0xFFFFFFDC 0x10 0x57415645 0x000752BA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x42 0x61 0x63 0x6B - 0x20 0x41 0x72 0x72 0x6F 0x77 0x20 0x31 - 0x32 0x20 0x74 0x69 0x6D 0x65 0x73 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x20 0x61 0x70 - 0x70 0x65 0x61 0x72 0x73 0x20 0x6F 0x75 - 0x74 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x67 0x72 0x61 - 0x76 0x65 0x20 0x63 0x68 0x61 0x6D 0x62 - 0x65 0x72 0x20 0x65 0x6E 0x74 0x72 0x61 - 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1088 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_B= 0x2000547B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1096 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x20088 0x000305F1 0x0 0x0 0x57415645 0x000752BB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x4F 0x6E 0x63 0x65 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x69 - 0x73 0x20 0x6F 0x75 0x74 0x73 0x69 0x64 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x67 0x72 0x61 0x76 0x65 0x20 0x63 - 0x68 0x61 0x6D 0x62 0x65 0x72 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x46 0x69 0x72 0x73 0x74 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D 0x01 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x31 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1182 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_C= 0x2000547C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1190 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752BC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6E 0x65 - 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1257 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_D= 0x2000547D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1265 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001601b 0x00030603 0x20088 0x000305F1 0x0 0x0 0x57415645 0x000752BD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x61 0x67 0x61 0x69 0x6E 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x31 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1342 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_E= 0x2000547E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1350 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030603 0x20085 0x000305F1 0x0 0x0 0x57415645 0x000752BE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000547F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4E 0x65 0x78 0x74 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x64 0x76 0x61 0x6E 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x74 0x69 0x74 0x6C 0x65 0x2C - 0x20 0x93 0x53 0x75 0x72 0x70 0x72 0x69 - 0x73 0x65 0x94 0x20 0x66 0x69 0x72 0x73 - 0x74 0x20 0x61 0x70 0x70 0x65 0x61 0x72 - 0x73 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E 0x0D 0x0A 0x01 0x20 0x57 0x61 - 0x74 0x63 0x68 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x6E 0x6F 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1458 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_F= 0x2000547F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1466 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752BF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x57 0x61 0x74 0x63 - 0x68 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x6E 0x6F 0x74 0x65 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x6E 0x6F 0x74 0x65 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x46 0x72 0x61 0x6D - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x69 0x73 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x77 0x61 0x79 0x20 - 0x74 0x6F 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x72 0x69 0x67 0x69 0x6E - 0x61 0x6C 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x49 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x63 0x61 - 0x73 0x65 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x20 0x6E 0x6F - 0x74 0x65 0x20 0x69 0x6E 0x64 0x69 0x63 - 0x61 0x74 0x65 0x73 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x69 0x73 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x69 0x73 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1563 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_10= 0x20005480 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1571 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x000752C0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1642 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_11= 0x20005481 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1650 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752C1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x65 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x74 0x69 - 0x74 0x6C 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1724 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_12= 0x20005482 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1732 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752C2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x74 0x72 0x61 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x62 0x65 0x20 0x75 0x73 0x65 - 0x66 0x75 0x6C 0x2C 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x70 0x6C 0x61 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x61 - 0x74 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x2E 0x20 0x20 0x46 0x6F 0x72 0x20 0x65 - 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x69 0x67 0x68 - 0x74 0x20 0x77 0x61 0x6E 0x74 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x6F 0x63 0x63 0x75 - 0x72 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x74 0x69 0x74 - 0x6C 0x65 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x20 0x74 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x20 0x63 - 0x65 0x72 0x74 0x61 0x69 0x6E 0x20 0x6D - 0x6F 0x6F 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1816 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_13= 0x20005483 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1824 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016016 0x00030603 0x20005 0x000305F1 0x0 0x0 0x57415645 0x000752C3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x65 0x76 0x65 0x72 - 0x79 0x74 0x68 0x69 0x6E 0x67 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x75 0x72 0x72 0x65 0x6E - 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1893 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_14= 0x20005484 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1901 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00016017 0x00030603 0x20062 0x000305F1 0x0 0x0 0x57415645 0x000752C4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x45 - 0x76 0x65 0x72 0x79 0x74 0x68 0x69 0x6E - 0x67 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1968 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_15= 0x20005485 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1976 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752C5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2038 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_16= 0x20005486 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2046 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752C6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x31 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x77 0x68 - 0x6F 0x6C 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 - 0x65 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 - 0x74 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2127 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_2B= 0x2000549B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 2135 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x000752DB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2257 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_2D= 0x2000549D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 2265 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752DD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x72 - 0x72 0x6F 0x77 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2357 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_30= 0x200054A0 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 2365 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752E0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2445 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - - -SET _help_48544F50_31= 0x200054A1 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 2453 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 0x0D - 0x0A 0x54 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 0x20 - 0x6B 0x65 0x65 0x70 0x73 0x20 0x74 0x72 - 0x61 0x63 0x6B 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x73 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x49 0x66 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x73 0x20 0x6F 0x75 0x74 - 0x2D 0x6F 0x66 0x2D 0x76 0x69 0x65 0x77 - 0x20 0x6F 0x72 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x4C 0x69 0x73 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x72 0x65 - 0x61 0x70 0x70 0x65 0x61 0x72 0x20 0x6F - 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2552 "H:\\BUILD\\SOC\\src\\help\\project2.cht" - -#line 33 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -SET _help_48544F50_0= 0x20005400 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075250 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000541F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 122 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1= 0x20005401 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 130 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075251 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 200 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_2= 0x20005402 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 208 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075252 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x65 0x6E 0x20 0x4E - 0x61 0x6B 0x69 0x74 0x61 0x20 0x73 0x65 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x72 - 0x61 0x74 0x2C 0x20 0x68 0x65 0x72 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x73 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x52 0x75 0x6E 0x20 - 0x28 0x72 0x75 0x6E 0x6E 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x65 - 0x72 0x20 0x61 0x72 0x6D 0x73 0x20 0x62 - 0x79 0x20 0x68 0x65 0x72 0x20 0x73 0x69 - 0x64 0x65 0x29 0x20 0x74 0x6F 0x20 0x52 - 0x75 0x6E 0x20 0x53 0x63 0x61 0x72 0x65 - 0x64 0x20 0x28 0x72 0x75 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 0x20 - 0x68 0x65 0x72 0x20 0x61 0x72 0x6D 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x69 0x6E 0x20 - 0x66 0x72 0x6F 0x6E 0x74 0x20 0x6F 0x66 - 0x20 0x68 0x65 0x72 0x29 0x2E 0x20 0x20 - 0x57 0x61 0x74 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x20 0x74 0x6F - 0x20 0x73 0x65 0x65 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x64 0x69 0x66 0x66 0x65 0x72 0x65 - 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 294 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_3= 0x20005403 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 302 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075253 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x10 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x41 0x20 0x72 0x61 0x74 0x20 - 0x6A 0x75 0x73 0x74 0x20 0x63 0x72 0x6F - 0x73 0x73 0x65 0x64 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x70 0x61 - 0x74 0x68 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x74 0x61 0x72 0x74 0x6C 0x65 0x64 0x20 - 0x68 0x65 0x72 0x2E 0x20 0x20 0x49 0x20 - 0x61 0x64 0x64 0x65 0x64 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x27 0x73 0x20 0x72 - 0x75 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2C 0x20 0x77 0x68 0x69 0x63 0x68 - 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x0D 0x0A 0x4E 0x6F 0x77 0x20 - 0x69 0x74 0x92 0x73 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x74 0x75 0x72 0x6E 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x27 - 0x73 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x52 0x75 - 0x6E 0x2A 0x20 0x74 0x6F 0x20 0x52 0x75 - 0x6E 0x20 0x53 0x63 0x61 0x72 0x65 0x64 - 0x2A 0x2C 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x52 0x75 0x6E 0x20 - 0x53 0x63 0x61 0x72 0x65 0x64 0x2A 0x20 - 0x74 0x6F 0x20 0x59 0x65 0x6C 0x6C 0x2E - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 414 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_4= 0x20005404 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 422 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075254 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x4E 0x61 0x6B 0x69 - 0x74 0x61 0x27 0x73 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 492 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_5= 0x20005405 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 500 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075255 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 561 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_6= 0x20005406 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 569 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075256 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005424 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x16 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x52 0x75 0x6E 0x20 0x53 0x63 0x61 - 0x72 0x65 0x64 0x2A 0x2E 0x94 0x0D 0x0A - 0x01 0x20 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x2A 0x20 0x6D 0x65 - 0x61 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 651 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_7= 0x20005407 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 659 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x00075257 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 720 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_8= 0x20005408 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 728 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075258 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x73 0x74 0x6F - 0x21 0x20 0x20 0x54 0x68 0x65 0x20 0x6E - 0x65 0x77 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x69 0x73 0x20 0x61 0x70 0x70 - 0x6C 0x69 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x69 0x73 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F - 0x6E 0x2E 0x20 0x20 0x54 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x77 0x20 0x65 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 806 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_9= 0x20005409 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 814 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075259 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005423 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB4 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x03 - 0xF0 0x00 0x00 0xFD 0xC7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x61 0x72 - 0x6D 0x73 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x68 0x65 0x72 - 0x20 0x73 0x69 0x64 0x65 0x20 0x74 0x6F - 0x20 0x6F 0x75 0x74 0x20 0x69 0x6E 0x20 - 0x66 0x72 0x6F 0x6E 0x74 0x20 0x6F 0x66 - 0x20 0x68 0x65 0x72 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E 0x0D 0x0A 0x01 - 0x20 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x6F 0x6F 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 931 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_A= 0x2000540A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 939 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007525A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x92 0x73 0x20 0x6C - 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1009 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_B= 0x2000540B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1017 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007525B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7E 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x36 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA0 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x70 0x65 0x61 - 0x6B 0x0D 0x0A 0x31 0x09 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D 0x0A - 0x32 0x20 0x20 0x52 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x73 - 0x74 0x61 0x72 0x74 0x73 0x20 0x74 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A - 0x33 0x20 0x20 0x41 0x74 0x74 0x61 0x63 - 0x68 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 - 0x75 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x2E - 0x0D 0x0A 0x34 0x20 0x20 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1106 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_C= 0x2000540C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1114 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007525C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x95 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1182 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_D= 0x2000540D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1190 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007525D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B9 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x01 0xFD 0x00 0x00 0xFB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x01 0x00 0x01 - 0x01 0xFD 0x00 0x00 0x2F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFB 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2F 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x79 - 0x3F 0x0D 0x0A 0x54 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x61 0x6C 0x6C 0x6F - 0x77 0x73 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x73 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x73 0x20 0x77 0x69 0x74 - 0x68 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x2E 0x20 0x20 0x54 0x6F - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 - 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 - 0x2C 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 - 0x6F 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x73 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x72 0x2E 0x0D 0x0A 0x95 0x09 0x54 - 0x6F 0x20 0x67 0x6F 0x20 0x66 0x6F 0x72 - 0x77 0x61 0x72 0x64 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x4E 0x65 0x78 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x2D 0x01 0x0D 0x0A - 0x95 0x09 0x54 0x6F 0x20 0x67 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x65 0x76 0x69 0x6F - 0x75 0x73 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1312 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_E= 0x2000540E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1320 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007525E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 - 0x92 0x73 0x20 0x6C 0x69 0x6E 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1386 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_F= 0x2000540F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1394 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016017 0x00030603 0x20079 0x000305F1 0x0 0x0 0x57415645 0x0007525F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x70 0x65 0x65 0x63 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1458 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_10= 0x20005410 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1466 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075260 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x4F 0x68 0x20 0x6E 0x6F 0x21 0x20 - 0x20 0x41 0x20 0x72 0x61 0x74 0x21 0x94 - 0x20 0x54 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1530 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_11= 0x20005411 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1538 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075261 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 1596 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_12= 0x20005412 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1604 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075262 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4E 0x61 0x6B 0x69 - 0x74 0x61 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1666 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_13= 0x20005413 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1674 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075263 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1743 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_14= 0x20005414 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1751 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075264 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x59 0x65 - 0x6C 0x6C 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x27 0x73 - 0x20 0x61 0x72 0x6D 0x73 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x75 0x70 0x20 0x74 0x6F - 0x20 0x68 0x65 0x72 0x20 0x6D 0x6F 0x75 - 0x74 0x68 0x20 0x61 0x73 0x20 0x69 0x66 - 0x20 0x73 0x68 0x65 0x20 0x69 0x73 0x20 - 0x79 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x48 0x65 0x72 0x20 0x61 0x72 - 0x6D 0x20 0x6D 0x6F 0x76 0x65 0x6D 0x65 - 0x6E 0x74 0x20 0x61 0x64 0x64 0x73 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x77 0x65 - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2C - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x73 0x20 0x6D 0x61 0x64 - 0x65 0x20 0x62 0x79 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x61 0x72 - 0x6D 0x20 0x6D 0x6F 0x76 0x65 0x6D 0x65 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1841 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_15= 0x20005415 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1849 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075265 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x27 0x73 0x20 0x61 0x72 - 0x6D 0x73 0x20 0x73 0x74 0x61 0x72 0x74 - 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x75 0x70 0x20 0x74 0x6F 0x20 0x68 - 0x65 0x72 0x20 0x6D 0x6F 0x75 0x74 0x68 - 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x72 - 0x65 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 - 0x74 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1946 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_16= 0x20005416 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1954 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x00075266 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2024 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_17= 0x20005417 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2032 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075267 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2098 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_18= 0x20005418 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2106 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075268 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x22 0x59 0x65 0x6C - 0x6C 0x22 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2169 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_19= 0x20005419 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2177 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075269 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x6E 0x2C 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 - 0x69 0x74 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x27 - 0x73 0x20 0x61 0x72 0x6D 0x73 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x75 0x70 0x20 0x74 - 0x6F 0x20 0x68 0x65 0x72 0x20 0x6D 0x6F - 0x75 0x74 0x68 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x6F 0x20 0x68 0x65 0x72 0x20 0x73 0x69 - 0x64 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x6F 0x20 0x66 0x61 0x72 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2263 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1A= 0x2000541A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2271 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007526A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x92 0x73 0x20 0x6C - 0x69 0x6E 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 - 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2341 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1B= 0x2000541B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2349 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007526B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x21 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x6D 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x73 0x20 0x6E - 0x65 0x65 0x64 0x20 0x64 0x69 0x61 0x6C - 0x6F 0x67 0x75 0x65 0x20 0x74 0x6F 0x20 - 0x66 0x75 0x6C 0x6C 0x79 0x20 0x63 0x6F - 0x6D 0x6D 0x75 0x6E 0x69 0x63 0x61 0x74 - 0x65 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 - 0x61 0x2E 0x20 0x20 0x46 0x6F 0x72 0x20 - 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x20 0x79 0x65 0x6C - 0x6C 0x73 0x2C 0x20 0x69 0x74 0x20 0x73 - 0x65 0x74 0x73 0x20 0x75 0x70 0x20 0x74 - 0x68 0x65 0x20 0x73 0x69 0x74 0x75 0x61 - 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x77 0x65 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 - 0x27 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x22 0x57 - 0x61 0x69 0x74 0x20 0x75 0x70 0x2C 0x20 - 0x57 0x61 0x6E 0x64 0x61 0x22 0x20 0x74 - 0x6F 0x20 0x75 0x6E 0x64 0x65 0x72 0x73 - 0x74 0x61 0x6E 0x64 0x20 0x77 0x68 0x61 - 0x74 0x27 0x73 0x20 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x73 0x68 0x61 0x72 0x65 0x20 0x69 0x6E - 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x69 0x73 0x20 0x61 0x20 0x73 - 0x75 0x63 0x63 0x65 0x73 0x73 0x66 0x75 - 0x6C 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2443 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1C= 0x2000541C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2451 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x0007526C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x54 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x4E - 0x61 0x6B 0x69 0x74 0x61 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x79 0x65 0x6C 0x6C 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x62 - 0x65 0x6C 0x6F 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2522 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1D= 0x2000541D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2530 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007526D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x20 0x57 0x61 0x69 0x74 0x20 0x75 - 0x70 0x2C 0x20 0x57 0x61 0x6E 0x64 0x61 - 0x21 0x94 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2595 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1E= 0x20005424 - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2603 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 0x2A - 0x20 0x6D 0x65 0x61 0x6E 0x3F 0x0D 0x0A - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x20 - 0x6D 0x61 0x72 0x6B 0x65 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x6E 0x20 0x61 - 0x73 0x74 0x65 0x72 0x69 0x73 0x6B 0x20 - 0x28 0x2A 0x29 0x20 0x6D 0x65 0x61 0x6E - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x73 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x77 0x6F 0x72 0x6B - 0x20 0x62 0x65 0x73 0x74 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2696 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_1F= 0x2000541E - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2704 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x0007526F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2826 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_20= 0x2000541F - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2834 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752A0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 0x72 - 0x72 0x6F 0x77 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2925 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_21= 0x20005420 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2933 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752A1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3003 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_22= 0x20005421 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3011 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x000752A2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x74 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x6E - 0x65 0x78 0x74 0x20 0x73 0x74 0x65 0x70 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3080 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_23= 0x20005422 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3088 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x000752A3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3157 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - - -SET _help_48544F50_24= 0x20005423 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3165 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xB8 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x74 0x6F 0x6F 0x20 0x66 - 0x61 0x72 0x2E 0x2E 0x2E 0x0D 0x0A 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x20 0x74 0x6F 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E 0x20 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x67 - 0x6F 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x4E 0x65 0x78 0x74 0x2D - 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 - 0x67 0x6F 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x50 0x72 0x65 0x76 0x69 0x6F 0x75 - 0x73 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3277 "H:\\BUILD\\SOC\\src\\help\\project3.cht" - -#line 34 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -SET _help_48544F50_0= 0x200054B0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x000752F0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054D5 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 121 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1= 0x200054B1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 129 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752F1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 199 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2= 0x200054B2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 207 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752F2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x52 0x6F - 0x74 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x20 0x61 0x6C 0x6C 0x6F 0x77 - 0x20 0x79 0x6F 0x75 0x20 0x74 0x6F 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x77 0x69 0x74 - 0x68 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x70 - 0x6C 0x61 0x79 0x65 0x64 0x2C 0x20 0x74 - 0x68 0x65 0x79 0x20 0x6C 0x6F 0x6F 0x6B - 0x20 0x62 0x65 0x6C 0x69 0x65 0x76 0x61 - 0x62 0x6C 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x27 0x74 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x74 0x6F - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x63 0x6F - 0x6D 0x70 0x6C 0x65 0x74 0x65 0x6C 0x79 - 0x20 0x72 0x65 0x61 0x6C 0x69 0x73 0x74 - 0x69 0x63 0x2E 0x20 0x20 0x4F 0x75 0x72 - 0x20 0x6D 0x69 0x6E 0x64 0x73 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x66 0x69 0x6C 0x6C - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x67 0x61 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 289 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3= 0x200054B3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 297 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x000752F3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x69 0x73 0x20 0x74 0x69 0x72 - 0x65 0x64 0x20 0x6F 0x66 0x20 0x77 0x61 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x66 0x6F - 0x72 0x20 0x68 0x69 0x73 0x20 0x70 0x61 - 0x72 0x65 0x6E 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x63 0x72 0x61 0x77 0x6C 0x73 - 0x20 0x6F 0x66 0x66 0x20 0x74 0x6F 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x72 0x65 0x2E - 0x20 0x20 0x48 0x65 0x20 0x6D 0x61 0x6B - 0x65 0x73 0x20 0x69 0x74 0x20 0x61 0x73 - 0x20 0x66 0x61 0x72 0x20 0x61 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x62 0x69 0x67 0x20 0x68 - 0x6F 0x6C 0x65 0x2E 0x0D 0x0A 0x4E 0x6F - 0x77 0x20 0x69 0x74 0x92 0x73 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x74 0x75 0x72 0x6E - 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x47 0x61 0x62 0x72 0x69 0x65 0x6C 0x92 - 0x73 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 406 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_4= 0x200054B4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 414 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030603 0x20064 0x000305F1 0x0 0x0 0x57415645 0x000752F4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x73 0x6F 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x68 0x65 0x20 - 0x69 0x73 0x20 0x66 0x61 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x68 - 0x6F 0x6C 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x52 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 489 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_5= 0x200054B5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 497 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601d 0x00030603 0x2001C 0x000305F1 0x0 0x0 0x57415645 0x000752F5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x69 0x70 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 564 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_6= 0x200054B6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 572 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752F6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x9F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x27 0x73 - 0x20 0x68 0x65 0x61 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x73 0x6F 0x20 0x69 0x74 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x68 0x65 0x20 0x69 - 0x73 0x20 0x73 0x74 0x61 0x72 0x74 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x66 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x68 - 0x6F 0x6C 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 670 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_7= 0x200054B7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 678 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x000752F7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 750 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_8= 0x200054B8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 758 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x000752F8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 828 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_9= 0x200054B9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 836 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752F9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x92 0x73 0x20 0x66 0x61 0x6C 0x6C - 0x20 0x69 0x73 0x20 0x63 0x6F 0x6D 0x62 - 0x69 0x6E 0x65 0x64 0x20 0x77 0x69 0x74 - 0x68 0x20 0x74 0x77 0x6F 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x65 0x6C 0x65 0x6D - 0x65 0x6E 0x74 0x73 0x97 0x74 0x68 0x65 - 0x20 0x6C 0x6F 0x75 0x64 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x72 0x75 0x73 0x68 0x69 - 0x6E 0x67 0x20 0x77 0x61 0x74 0x65 0x72 - 0x20 0x62 0x65 0x6C 0x6F 0x77 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x75 0x73 0x65 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x92 0x73 0x20 0x66 0x61 0x6C - 0x6C 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x63 0x6F 0x6D 0x62 0x69 0x6E 0x61 0x74 - 0x69 0x6F 0x6E 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x72 0x65 0x65 - 0x20 0x65 0x6C 0x65 0x6D 0x65 0x6E 0x74 - 0x73 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x73 0x20 0x61 0x6E 0x74 0x69 0x63 0x69 - 0x70 0x61 0x74 0x69 0x6F 0x6E 0x20 0x6F - 0x66 0x20 0x77 0x68 0x61 0x74 0x92 0x73 - 0x20 0x74 0x6F 0x20 0x66 0x6F 0x6C 0x6C - 0x6F 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 922 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_A= 0x200054BA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 930 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x000752FA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x66 0x61 0x6C 0x6C 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 996 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_B= 0x200054BB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1004 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x000752FB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x47 0x61 0x62 0x72 0x69 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1065 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_C= 0x200054BC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1073 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x000752FC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x48 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x46 0x6C 0x79 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 1135 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_D= 0x200054BD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1143 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030603 0x20024 0x000305F1 0x0 0x0 0x57415645 0x000752FD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x39 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1206 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_E= 0x200054BE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1214 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000752FE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1274 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_F= 0x200054BF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1282 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016017 0x00030603 0x20022 0x000305F1 0x0 0x0 0x57415645 0x000752FF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EB - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054C0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x07 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x07 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x64 0x72 0x61 - 0x67 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x64 0x6F 0x77 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x55 0x70 - 0x20 0x26 0x20 0x44 0x6F 0x77 0x6E 0x2E - 0x0D 0x0A 0x01 0x20 0x55 0x70 0x20 0x26 - 0x20 0x44 0x6F 0x77 0x6E -ENDCHUNK - - -ENDCHUNK -#line 1373 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_10= 0x200054C0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1381 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075300 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x70 0x20 - 0x26 0x20 0x44 0x6F 0x77 0x6E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x69 0x73 0x20 0x93 0x6F 0x6E 0x2C - 0x94 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x20 0x20 - 0x4F 0x74 0x68 0x65 0x72 0x77 0x69 0x73 - 0x65 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x61 0x6E - 0x64 0x20 0x66 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1474 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_11= 0x200054C1 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1482 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075301 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x66 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x27 0x72 0x65 0x20 0x72 0x65 0x61 - 0x64 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1571 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_12= 0x200054C2 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1579 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x20085 0x000305F1 0x0 0x0 0x57415645 0x00075302 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054C3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x61 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xAE 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x65 0x78 0x74 0x72 0x61 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x68 0x6F 0x74 0x20 0x61 0x69 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E - 0x20 0x61 0x70 0x70 0x65 0x61 0x72 0x73 - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x4E - 0x65 0x78 0x74 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x20 0x31 0x30 0x20 - 0x74 0x69 0x6D 0x65 0x73 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E 0x0D 0x0A - 0x01 0x20 0x4E 0x65 0x78 0x74 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 1686 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_13= 0x200054C3 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1694 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075303 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x4E 0x65 0x78 0x74 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x70 0x61 - 0x75 0x73 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x64 0x72 0x61 0x6D 0x61 - 0x74 0x69 0x63 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x4E 0x65 0x78 0x74 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x65 0x78 0x74 0x72 - 0x61 0x20 0x66 0x72 0x61 0x6D 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x73 0x68 0x6F - 0x72 0x74 0x20 0x70 0x61 0x75 0x73 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x20 0x66 0x65 0x77 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x2E 0x20 - 0x20 0x54 0x6F 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x6C 0x6F 0x6E - 0x67 0x65 0x72 0x20 0x70 0x61 0x75 0x73 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x6D 0x61 0x6E 0x79 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1799 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_14= 0x200054C4 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1807 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075304 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1876 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_15= 0x200054C5 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1884 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075305 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x74 0x72 0x6F 0x64 - 0x75 0x63 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x73 0x75 - 0x63 0x68 0x20 0x61 0x73 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x74 0x2D 0x61 0x69 - 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x2C 0x20 0x69 0x73 0x20 0x75 0x6E - 0x65 0x78 0x70 0x65 0x63 0x74 0x65 0x64 - 0x20 0x62 0x75 0x74 0x20 0x61 0x64 0x64 - 0x73 0x20 0x68 0x75 0x6D 0x6F 0x72 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x45 - 0x76 0x65 0x6E 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x20 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x6C 0x61 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x68 0x6F 0x74 0x20 - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x20 0x6D 0x69 0x67 0x68 - 0x74 0x20 0x62 0x65 0x20 0x66 0x61 0x72 - 0x66 0x65 0x74 0x63 0x68 0x65 0x64 0x2C - 0x20 0x49 0x92 0x6D 0x20 0x72 0x65 0x6C - 0x69 0x65 0x76 0x65 0x64 0x2E 0x20 0x20 - 0x41 0x72 0x65 0x6E 0x27 0x74 0x20 0x79 - 0x6F 0x75 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1968 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_16= 0x200054C6 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1976 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016017 0x00030603 0x20076 0x000305F1 0x0 0x0 0x57415645 0x00075306 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x45 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2039 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_17= 0x200054C7 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2047 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x25 0x0 0x57415645 0x00075307 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x92 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2110 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_18= 0x200054C8 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2118 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075308 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x65 0x66 0x74 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x72 0x69 0x64 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2184 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_19= 0x200054C9 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2192 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016017 0x00030603 0x20022 0x000305F1 0x0 0x0 0x57415645 0x00075309 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x6F 0x20 0x69 0x74 - 0x73 0x20 0x73 0x74 0x61 0x72 0x74 0x69 - 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x55 0x70 0x20 0x26 0x20 - 0x44 0x6F 0x77 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2262 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1A= 0x200054CA - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2270 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007530A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x74 0x74 0x6F 0x6D - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 0x77 - 0x69 0x74 0x68 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x70 - 0x20 0x65 0x64 0x67 0x65 0x20 0x73 0x68 - 0x6F 0x77 0x69 0x6E 0x67 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x92 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2365 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1B= 0x200054CB - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2373 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007530B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2442 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1C= 0x200054CC - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2450 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007530C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x64 0x20 0x76 0x61 - 0x72 0x69 0x65 0x74 0x79 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x62 0x79 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x70 0x61 0x63 0x65 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D 0x61 - 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x73 0x70 0x69 0x6E 0x73 - 0x2C 0x20 0x69 0x74 0x20 0x61 0x64 0x64 - 0x73 0x20 0x61 0x20 0x73 0x65 0x6E 0x73 - 0x65 0x20 0x6F 0x66 0x20 0x63 0x61 0x6C - 0x6D 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2524 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1D= 0x200054CD - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2532 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007530D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x74 0x2D 0x61 0x69 0x72 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x20 0x73 0x70 - 0x69 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2600 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1E= 0x200054CE - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2608 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007530E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D - 0x61 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2671 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_1F= 0x200054CF - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2679 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007530F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x70 0x69 0x6E 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 2740 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_20= 0x200054D0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2748 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x00075310 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2809 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_21= 0x200054D1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2817 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075311 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x74 0x2D 0x61 - 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x73 0x74 0x72 0x61 0x69 - 0x67 0x68 0x74 0x20 0x75 0x70 0x20 0x61 - 0x6E 0x64 0x20 0x6F 0x66 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x72 0x65 0x65 - 0x6E 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 0x6F - 0x20 0x66 0x61 0x72 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2908 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_22= 0x200054D2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2916 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075312 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCC 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xDA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x73 0x65 - 0x65 0x20 0x74 0x68 0x65 0x20 0x69 0x6E - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x6C 0x6C - 0x6F 0x6F 0x6E 0x27 0x73 0x20 0x62 0x61 - 0x73 0x6B 0x65 0x74 0x20 0x61 0x73 0x20 - 0x69 0x74 0x20 0x66 0x6C 0x6F 0x61 0x74 - 0x73 0x20 0x75 0x70 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x72 0x61 - 0x76 0x69 0x6E 0x65 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3018 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_23= 0x200054D3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3026 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075313 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x27 0x73 0x20 0x63 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x48 0x6F - 0x77 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3097 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_24= 0x200054D4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3105 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075314 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x27 0x73 0x20 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x20 0x73 0x61 0x79 0x73 - 0x20 0x69 0x74 0x20 0x61 0x6C 0x6C 0x21 - 0x20 0x20 0x48 0x65 0x27 0x73 0x20 0x79 - 0x6F 0x75 0x6E 0x67 0x2C 0x20 0x69 0x6E - 0x76 0x69 0x6E 0x63 0x69 0x62 0x6C 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6F - 0x6C 0x2E 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x74 0x65 0x6C 0x6C - 0x20 0x61 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x64 0x6F - 0x6E 0x27 0x74 0x20 0x66 0x6F 0x72 0x67 - 0x65 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x2C 0x20 0x73 - 0x75 0x63 0x68 0x20 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6C 0x6F 0x74 0x68 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 - 0x77 0x65 0x61 0x72 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3188 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_25= 0x200054D5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3196 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075315 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x69 - 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3292 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_26= 0x200054D6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3300 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075316 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3361 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_27= 0x200054D7 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3369 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601c 0x00030603 0x20096 0x000305F1 0x2E 0x8B 0x57415645 0x00075317 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054D8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x20 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x68 0x69 - 0x73 0x20 0x70 0x69 0x63 0x74 0x75 0x72 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C - 0x69 0x73 0x74 0x2E 0x0D 0x0A 0x01 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C 0x69 - 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3458 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_28= 0x200054D8 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3466 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075318 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 0x20 0x6B - 0x65 0x65 0x70 0x73 0x20 0x74 0x72 0x61 - 0x63 0x6B 0x20 0x6F 0x66 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x69 0x73 0x20 0x6F 0x75 0x74 0x2D - 0x6F 0x66 0x2D 0x76 0x69 0x65 0x77 0x20 - 0x6F 0x72 0x20 0x62 0x65 0x68 0x69 0x6E - 0x64 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 0x4C - 0x69 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x77 0x69 0x6C 0x6C 0x20 0x72 - 0x65 0x61 0x70 0x70 0x65 0x61 0x72 0x20 - 0x6F 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 - 0x2C 0x20 0x77 0x69 0x74 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C - 0x20 0x72 0x6F 0x74 0x61 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x69 0x74 0x20 - 0x6C 0x65 0x66 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3573 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_29= 0x200054D9 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3581 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075319 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x20 0x77 0x69 0x74 0x68 0x20 0x68 - 0x69 0x73 0x20 0x68 0x65 0x61 0x64 0x20 - 0x66 0x61 0x63 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3649 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2A= 0x200054DA - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3657 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016017 0x00030603 0x20018 0x000305F1 0x0 0x0 0x57415645 0x0007531A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x92 0x73 0x20 0x63 0x6F - 0x73 0x74 0x75 0x6D 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x6F 0x73 0x74 0x75 0x6D 0x65 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3726 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2B= 0x200054DB - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3734 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x0 0x57415645 0x0007531B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 - 0x20 0x63 0x68 0x6F 0x69 0x63 0x65 0x73 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x73 0x74 0x75 0x6D 0x65 0x73 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x47 0x61 0x62 - 0x72 0x69 0x65 0x6C 0x27 0x73 0x20 0x73 - 0x68 0x69 0x72 0x74 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x65 0x65 0x20 0x61 0x63 - 0x63 0x65 0x73 0x73 0x6F 0x72 0x79 0x20 - 0x63 0x68 0x6F 0x69 0x63 0x65 0x73 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 - 0x63 0x63 0x65 0x73 0x73 0x6F 0x72 0x69 - 0x65 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x27 0x73 - 0x20 0x68 0x65 0x61 0x64 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3817 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2C= 0x200054DC - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3825 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007531C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3897 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2D= 0x200054DD - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3905 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007531D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x87 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x61 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x75 0x64 0x69 - 0x65 0x6E 0x63 0x65 0x20 0x77 0x6F 0x6E - 0x64 0x65 0x72 0x69 0x6E 0x67 0x20 0x77 - 0x68 0x61 0x74 0x92 0x73 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x66 0x6F 0x72 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x2E 0x20 - 0x20 0x43 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x6E 0x20 0x65 0x6E 0x64 0x69 0x6E - 0x67 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x63 0x61 0x72 0x72 - 0x79 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x69 0x6D 0x61 0x67 0x69 0x6E 0x61 0x74 - 0x69 0x6F 0x6E 0x73 0x20 0x62 0x65 0x79 - 0x6F 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3982 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2E= 0x200054DE - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3990 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007531E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x92 0x73 0x20 0x73 0x70 0x69 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4057 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_2F= 0x200054DF - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4065 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x0 0x0 0x57415645 0x0007531F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x72 0x72 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x70 0x61 - 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4130 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_30= 0x200054E0 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4138 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075320 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x70 0x69 0x6E 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 4199 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_31= 0x200054E1 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4207 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075321 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x74 0x20 0x61 0x69 - 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x28 0x73 0x6F 0x20 0x47 0x61 - 0x62 0x72 0x69 0x65 0x6C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x20 0x63 0x61 - 0x6E 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 0x29 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4284 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_32= 0x200054E2 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4292 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030603 0x20053 0x000305F1 0x0 0x0 0x57415645 0x00075322 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 - 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4359 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_33= 0x200054E3 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4367 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075323 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4438 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_34= 0x200054E4 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4446 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001601b 0x00030603 0x20054 0x000305F1 0x0 0x0 0x57415645 0x00075324 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4512 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_35= 0x200054E5 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4520 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016017 0x00030603 0x20022 0x000305F1 0x0 0x0 0x57415645 0x00075325 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x20 0x64 0x6F 0x77 0x6E 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x74 0x2D 0x61 0x69 0x72 0x20 - 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x55 - 0x70 0x20 0x26 0x20 0x44 0x6F 0x77 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4591 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_36= 0x200054E6 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4599 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016017 0x00030603 0x20017 0x000305F1 0x0 0x0 0x57415645 0x00075326 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4665 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_37= 0x200054E7 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 4673 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075327 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054EA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAB 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x27 - 0x73 0x20 0x62 0x61 0x73 0x6B 0x65 0x74 - 0x2E 0x20 0x20 0x49 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x63 0x6F 0x76 0x65 0x72 0x73 - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x2C 0x20 0x70 0x72 0x65 0x73 0x73 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 0x61 - 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4774 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_38= 0x200054E8 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 4782 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075328 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4850 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_39= 0x200054E9 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4858 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075329 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4938 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3A= 0x200054EA - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 4946 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007532A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 5040 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3B= 0x200054EB - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5048 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007532B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 5142 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3C= 0x200054EC - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5150 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x0007532C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 5272 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3D= 0x200054ED - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5280 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00016017 0x00030603 0x20017 0x000305F1 0x0 0x0 0x57415645 0x0007532D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5346 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3E= 0x200054EE - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5354 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601c 0x00030603 0x20096 0x000305F1 0x2E 0x8B 0x57415645 0x0007532E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x68 0x69 0x73 0x20 0x70 - 0x69 0x63 0x74 0x75 0x72 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5423 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - - -SET _help_48544F50_3F= 0x200054EF - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5431 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007532F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5493 "H:\\BUILD\\SOC\\src\\help\\project4.cht" - -#line 35 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -SET _help_48544F50_0= 0x200054F0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016017 0x00030603 0x20075 0x000305F1 0x0 0x0 0x57415645 0x00075330 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1= 0x200054F1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 105 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075331 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200054F3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x46 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 194 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2= 0x200054F2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 202 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075332 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 272 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3= 0x200054F3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 280 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075333 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x69 - 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 374 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4= 0x200054F4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 382 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075334 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x20 0x53 0x71 - 0x75 0x61 0x73 0x68 0x2C 0x20 0x53 0x74 - 0x72 0x65 0x74 0x63 0x68 0x2C 0x20 0x53 - 0x68 0x72 0x69 0x6E 0x6B 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x47 0x72 0x6F 0x77 0x20 - 0x61 0x72 0x65 0x20 0x64 0x69 0x66 0x66 - 0x65 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x53 - 0x69 0x7A 0x65 0x20 0x74 0x6F 0x6F 0x6C - 0x73 0x2E 0x20 0x20 0x54 0x68 0x65 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x20 0x6E 0x6F 0x74 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x73 0x68 0x61 0x70 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x69 0x7A 0x65 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x6F 0x72 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x74 0x68 0x65 - 0x79 0x20 0x72 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6F 0x72 0x20 0x70 0x72 - 0x6F 0x70 0x27 0x73 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x62 0x79 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x76 0x61 0x72 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x63 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 - 0x6D 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x69 0x74 0x68 0x20 0x74 0x68 0x65 0x20 - 0x74 0x77 0x6F 0x20 0x73 0x70 0x65 0x65 - 0x64 0x73 0x3A 0x20 0x20 0x53 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x61 0x6E 0x64 0x20 - 0x53 0x68 0x72 0x69 0x6E 0x6B 0x20 0x46 - 0x61 0x73 0x74 0x2C 0x20 0x47 0x72 0x6F - 0x77 0x20 0x61 0x6E 0x64 0x20 0x47 0x72 - 0x6F 0x77 0x20 0x46 0x61 0x73 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 482 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_5= 0x200054F5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 490 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075335 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x01 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x20 - 0x77 0x61 0x6E 0x74 0x73 0x20 0x61 0x20 - 0x6E 0x65 0x77 0x20 0x69 0x64 0x65 0x6E - 0x74 0x69 0x74 0x79 0x2E 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x74 0x68 0x65 - 0x20 0x61 0x62 0x73 0x65 0x6E 0x74 0x2D - 0x6D 0x69 0x6E 0x64 0x65 0x64 0x20 0x70 - 0x72 0x6F 0x66 0x65 0x73 0x73 0x6F 0x72 - 0x20 0x68 0x61 0x73 0x20 0x61 0x67 0x72 - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x65 0x6C 0x70 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x65 0x78 0x70 0x65 0x72 0x69 - 0x6D 0x65 0x6E 0x74 0x20 0x73 0x74 0x61 - 0x72 0x74 0x65 0x64 0x20 0x77 0x69 0x74 - 0x68 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x3A 0x20 0x20 - 0x53 0x71 0x75 0x61 0x73 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x53 0x74 0x72 0x65 0x74 - 0x63 0x68 0x2E 0x0D 0x0A 0x4E 0x6F 0x77 - 0x20 0x69 0x74 0x92 0x73 0x20 0x79 0x6F - 0x75 0x72 0x20 0x74 0x75 0x72 0x6E 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x53 - 0x71 0x75 0x61 0x73 0x68 0x2C 0x20 0x53 - 0x74 0x72 0x65 0x74 0x63 0x68 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x53 0x68 0x72 0x69 - 0x6E 0x6B 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 600 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_6= 0x200054F6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 608 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075336 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x92 0x73 - 0x20 0x53 0x71 0x75 0x61 0x73 0x68 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 676 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_7= 0x200054F7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 684 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075337 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x47 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 746 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_8= 0x200054F8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 754 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x0 0x0 0x57415645 0x00075338 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x89 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 814 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_9= 0x200054F9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 822 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075339 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x57 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x53 0x71 0x75 0x61 0x73 0x68 0x2E - 0x94 -ENDCHUNK - - -ENDCHUNK -#line 884 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_A= 0x200054FA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 892 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x17 0xFFFFFFCE 0x57415645 0x0007533A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 953 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_B= 0x200054FB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 961 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007533B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x9B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x92 0x73 0x20 0x68 - 0x65 0x61 0x64 0x20 0x69 0x73 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x65 0x64 0x20 - 0x62 0x65 0x6C 0x6F 0x77 0x20 0x74 0x68 - 0x65 0x20 0x74 0x61 0x62 0x6C 0x65 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1045 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_C= 0x200054FC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1053 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007533C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x92 0x73 - 0x20 0x53 0x74 0x72 0x65 0x74 0x63 0x68 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x41 - 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1120 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_D= 0x200054FD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1128 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007533D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x62 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x53 0x74 0x72 0x65 0x74 0x63 0x68 - 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 1190 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_E= 0x200054FE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1198 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007533E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x92 0x73 0x20 0x68 - 0x65 0x61 0x64 0x20 0x69 0x73 0x20 0x6F - 0x75 0x74 0x2D 0x6F 0x66 0x2D 0x76 0x69 - 0x65 0x77 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x77 0x68 0x61 0x74 - 0x20 0x79 0x6F 0x75 0x92 0x76 0x65 0x20 - 0x64 0x6F 0x6E 0x65 0x20 0x73 0x6F 0x20 - 0x66 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1280 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_F= 0x200054FF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1288 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x0007533F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x73 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x20 0x68 0x61 0x72 - 0x64 0x6C 0x79 0x20 0x73 0x65 0x65 0x20 - 0x68 0x69 0x6D 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1358 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_10= 0x20005500 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1366 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075340 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x53 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x46 0x61 0x73 0x74 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 1428 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_11= 0x20005501 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1436 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075341 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x20 0x69 0x73 0x20 - 0x76 0x65 0x72 0x79 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x73 0x6F 0x20 0x66 0x61 0x72 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1519 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_12= 0x20005502 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1527 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075342 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x42 0x6F 0x6E - 0x67 0x6F 0x20 0x69 0x73 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x2E 0x0D 0x0A - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x92 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1623 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_13= 0x20005503 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1631 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x00075343 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1702 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_14= 0x20005504 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1710 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075344 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1780 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_15= 0x20005505 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1788 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075345 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x73 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x61 0x73 0x74 0x20 0x6E 0x6F 0x74 0x69 - 0x63 0x65 0x61 0x62 0x6C 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x2D 0x2D 0x69 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x63 0x61 - 0x73 0x65 0x2C 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x20 0x6F 0x66 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x20 - 0x20 0x52 0x65 0x63 0x6F 0x72 0x64 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x69 0x6E 0x20 0x66 0x75 - 0x6C 0x6C 0x2C 0x20 0x72 0x65 0x77 0x69 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x92 0x64 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x61 0x20 0x63 0x75 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1873 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_16= 0x20005506 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1881 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016016 0x00030603 0x20042 0x000305F1 0x0 0x0 0x57415645 0x00075346 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 - 0x6C 0x65 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1948 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_17= 0x20005507 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1956 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016017 0x00030603 0x20014 0x000305F1 0x0 0x0 0x57415645 0x00075347 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x61 0x6D 0x65 0x72 0x61 0x20 0x41 - 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2023 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_18= 0x20005508 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2031 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x43 0x0 0x57415645 0x00075348 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x69 0x73 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2094 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_19= 0x20005509 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2102 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075349 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 - 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2183 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1A= 0x2000550A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2191 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007534A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2261 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1B= 0x2000550B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2269 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007534B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x45 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x20 0x70 0x72 0x6F 0x70 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x65 0x61 - 0x76 0x65 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x69 0x6E 0x20 0x61 0x77 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 2334 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1C= 0x2000550C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2342 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x0007534C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x6F 0x70 0x73 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2409 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1D= 0x2000550D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2417 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016017 0x00030603 0x20076 0x000305F1 0x0 0x0 0x57415645 0x0007534D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x43 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2483 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1E= 0x2000550E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2491 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x25 0x0 0x57415645 0x0007534E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2553 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_1F= 0x2000550F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2561 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007534F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x77 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x74 0x68 0x65 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 0x6F - 0x6E 0x20 0x69 0x6E 0x20 0x66 0x72 0x6F - 0x6E 0x74 0x20 0x6F 0x66 0x20 0x42 0x6F - 0x6E 0x67 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2626 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_20= 0x20005510 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2634 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016017 0x00030603 0x20065 0x000305F1 0x0 0x0 0x57415645 0x00075350 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x64 - 0x75 0x63 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x69 0x7A 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2703 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_21= 0x20005511 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2711 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00016019 0x00030603 0x20021 0x000305F1 0x0 0xFFFFFFEC 0x57415645 0x00075351 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2776 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_22= 0x20005512 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2784 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075352 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x72 0x61 0x67 0x20 0x69 0x6E 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x69 0x73 0x20 0x74 0x68 - 0x65 0x20 0x73 0x61 0x6D 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x20 0x61 0x73 0x20 0x42 - 0x6F 0x6E 0x67 0x6F 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2868 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_23= 0x20005513 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 2876 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075353 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2935 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_24= 0x20005514 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 2943 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075354 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3012 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_25= 0x20005515 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3020 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075355 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x69 0x73 0x20 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x20 0x63 0x6F 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x6C 0x69 0x66 0x65 0x20 - 0x62 0x79 0x20 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x69 0x74 0x20 0x67 0x72 0x6F - 0x77 0x20 0x66 0x61 0x73 0x74 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x66 0x61 0x73 - 0x74 0x65 0x72 0x20 0x73 0x70 0x65 0x65 - 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x47 0x72 0x6F 0x77 0x20 0x46 0x61 - 0x73 0x74 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x2D 0x2D 0x63 0x6F 0x6D 0x70 0x61 - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x47 0x72 0x6F 0x77 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x2D - 0x6D 0x61 0x6B 0x65 0x73 0x20 0x74 0x68 - 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x20 0x62 0x65 0x6C 0x69 - 0x65 0x76 0x61 0x62 0x6C 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x6D 0x6F 0x72 0x65 0x20 - 0x64 0x72 0x61 0x6D 0x61 0x74 0x69 0x63 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3104 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_26= 0x20005516 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3112 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075356 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x74 0x68 0x65 0x20 0x47 0x72 0x6F - 0x77 0x20 0x46 0x61 0x73 0x74 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3179 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_27= 0x20005517 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3187 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075357 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x76 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3249 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_28= 0x20005518 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3257 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075358 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x47 0x72 0x6F 0x77 0x20 0x46 0x61 - 0x73 0x74 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 3319 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_29= 0x20005519 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3327 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075359 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x73 0x69 0x6F 0x6E 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x73 0x69 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x62 - 0x69 0x67 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3410 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2A= 0x2000551A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3418 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x0007535A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x62 0x65 0x6C 0x6F 0x77 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x73 0x69 0x6F 0x6E 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x2E 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 - 0x20 0x72 0x65 0x61 0x64 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x6E - 0x65 0x78 0x74 0x20 0x73 0x74 0x65 0x70 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x20 0x47 0x61 0x64 0x67 - 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3502 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2B= 0x2000551B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3510 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007535B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3580 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2C= 0x2000551C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3588 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007535C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x73 0x2C - 0x20 0x73 0x75 0x63 0x68 0x20 0x61 0x73 - 0x20 0x93 0x45 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x20 0x42 0x69 0x67 0x2C - 0x94 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x73 0x69 0x6F 0x6E 0x20 0x69 0x6D 0x70 - 0x6F 0x72 0x74 0x61 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x61 0x64 0x64 0x20 0x73 - 0x75 0x73 0x70 0x65 0x6E 0x73 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x69 0x73 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2D 0x70 - 0x61 0x63 0x6B 0x65 0x64 0x20 0x73 0x65 - 0x71 0x75 0x65 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3662 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2D= 0x2000551D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3670 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016017 0x00030603 0x20007 0x000305F1 0x0 0x0 0x57415645 0x0007535D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x65 0x66 0x66 0x65 0x63 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3737 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2E= 0x2000551E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3745 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016017 0x00030603 0x20078 0x000305F1 0x0 0x0 0x57415645 0x0007535E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 - 0x66 0x65 0x63 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3812 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_2F= 0x2000551F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 3820 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007535F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x62 0x69 0x67 0x2E 0x94 - 0x20 0x54 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3884 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_30= 0x20005520 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 3892 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075360 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3961 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_31= 0x20005521 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 3969 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075361 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x72 0x6F 0x6F 0x6D 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x2C - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x65 0x78 - 0x70 0x6C 0x6F 0x73 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4043 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_32= 0x20005522 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4051 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030603 0x20056 0x000305F1 0x0 0x0 0x57415645 0x00075362 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x39 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4114 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_33= 0x20005523 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4122 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075363 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 - 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 - 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4193 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_34= 0x20005524 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4201 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075364 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4270 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_35= 0x20005525 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4278 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075365 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x73 0x74 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x72 0x66 0x65 0x63 0x74 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6C 0x69 0x6D - 0x61 0x78 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x62 0x69 0x67 0x20 0x63 - 0x68 0x61 0x6C 0x6C 0x65 0x6E 0x67 0x65 - 0x21 0x20 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x61 0x72 0x65 0x20 0x74 0x77 - 0x6F 0x20 0x65 0x78 0x74 0x72 0x65 0x6D - 0x65 0x73 0x2E 0x20 0x20 0x43 0x6F 0x6D - 0x65 0x64 0x79 0x20 0x74 0x68 0x72 0x69 - 0x76 0x65 0x73 0x20 0x6F 0x6E 0x20 0x63 - 0x6F 0x6D 0x70 0x61 0x72 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x72 0x61 0x73 0x74 0x69 0x6E 0x67 - 0x20 0x6F 0x70 0x70 0x6F 0x73 0x69 0x74 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4359 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_36= 0x20005526 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4367 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016017 0x00030603 0x20006 0x000305F1 0x0 0x0 0x57415645 0x00075366 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x87 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x26 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4433 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_37= 0x20005527 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 4441 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x25 0x0 0x57415645 0x00075367 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4504 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_38= 0x20005528 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 4512 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075368 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x58 0x2C 0x20 0x66 0x61 0x63 - 0x69 0x6E 0x67 0x20 0x57 0x69 0x6C 0x6C - 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4579 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_39= 0x20005529 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4587 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016017 0x00030603 0x20065 0x000305F1 0x0 0x0 0x57415645 0x00075369 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x64 - 0x75 0x63 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x69 0x7A 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4657 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3A= 0x2000552A - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 4665 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007536A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 4759 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3B= 0x2000552B - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 4767 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007536B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 4861 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3C= 0x2000552C - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 4869 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00016019 0x00030603 0x20021 0x000305F1 0x0 0xFFFFFFEC 0x57415645 0x0007536C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4936 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3D= 0x2000552D - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 4944 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007536D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x69 0x6E 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E - 0x20 0x69 0x73 0x20 0x76 0x65 0x72 0x79 - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x72 0x65 0x61 - 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 0x20 - 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5026 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3E= 0x2000552E - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5034 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007536E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5103 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_3F= 0x2000552F - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5111 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007536F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x47 0x72 - 0x6F 0x77 0x20 0x46 0x61 0x73 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x74 0x68 0x65 0x20 0x61 0x75 0x64 - 0x69 0x65 0x6E 0x63 0x65 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 - 0x6C 0x65 0x74 0x6F 0x6E 0x20 0x69 0x73 - 0x20 0x93 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x94 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x65 0x78 - 0x70 0x6C 0x6F 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5183 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_40= 0x20005530 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 5191 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075370 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x74 0x68 0x65 0x20 0x47 0x72 0x6F - 0x77 0x20 0x46 0x61 0x73 0x74 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5258 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_41= 0x20005531 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 5266 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075381 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x47 0x72 0x6F 0x77 0x20 0x46 0x61 - 0x73 0x74 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 5328 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_42= 0x20005532 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 5336 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075382 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 - 0x6F 0x6E 0x20 0x69 0x73 0x20 0x68 0x69 - 0x73 0x20 0x6F 0x72 0x69 0x67 0x69 0x6E - 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x92 0x76 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5418 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_43= 0x20005533 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 5426 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075383 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x68 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x64 0x64 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5495 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_44= 0x20005534 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 5503 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075384 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x92 0x73 - 0x20 0x57 0x61 0x6C 0x6B 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x69 0x73 0x20 0x65 0x78 0x69 - 0x74 0x20 0x6F 0x66 0x66 0x2D 0x73 0x74 - 0x61 0x67 0x65 0x20 0x61 0x72 0x65 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x20 0x77 - 0x61 0x79 0x73 0x20 0x74 0x6F 0x20 0x69 - 0x6E 0x64 0x69 0x63 0x61 0x74 0x65 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x6F - 0x72 0x2C 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x69 0x73 0x20 0x63 0x61 0x73 0x65 0x2C - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5579 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_45= 0x20005535 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 5587 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x00016017 0x00030603 0x2007B 0x000305F1 0x0 0x0 0x57415645 0x00075385 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 - 0x6C 0x65 0x74 0x6F 0x6E 0x92 0x73 0x20 - 0x57 0x61 0x6C 0x6B 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5656 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_46= 0x20005536 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 5664 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075386 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x53 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x57 0x61 0x6C 0x6B 0x2E 0x94 -ENDCHUNK - - -ENDCHUNK -#line 5725 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_47= 0x20005537 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 5733 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075387 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000552A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C 0x65 - 0x74 0x6F 0x6E 0x20 0x6C 0x65 0x66 0x74 - 0x2C 0x20 0x6F 0x66 0x66 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x74 0x66 0x6F - 0x72 0x6D 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x75 0x74 0x2D 0x6F 0x66 0x2D 0x76 - 0x69 0x65 0x77 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5826 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_48= 0x20005538 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 5834 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075388 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xB2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x73 0x74 0x61 0x72 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x77 0x61 0x6C 0x6B - 0x20 0x62 0x75 0x74 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x73 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5931 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_49= 0x20005539 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 5939 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075389 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x72 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 - 0x6F 0x6E 0x20 0x77 0x61 0x6C 0x6B 0x20 - 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 0x74 - 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 0x6D - 0x65 0x64 0x20 0x73 0x69 0x7A 0x65 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6012 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4A= 0x2000553A - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 6020 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007538A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x03 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 0x6E - 0x20 0x68 0x69 0x73 0x20 0x74 0x72 0x61 - 0x6E 0x73 0x66 0x6F 0x72 0x6D 0x65 0x64 - 0x20 0x73 0x74 0x61 0x74 0x65 0x2C 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x6F 0x66 0x20 0x68 0x69 0x73 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x69 0x7A 0x65 0x20 0x74 - 0x6F 0x6F 0x6C 0x73 0x20 0x74 0x6F 0x20 - 0x67 0x72 0x6F 0x77 0x2C 0x20 0x72 0x65 - 0x64 0x75 0x63 0x65 0x2C 0x20 0x73 0x71 - 0x75 0x61 0x73 0x68 0x20 0x6F 0x72 0x20 - 0x73 0x74 0x72 0x65 0x74 0x63 0x68 0x20 - 0x68 0x69 0x6D 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x73 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x65 0x64 0x20 0x73 - 0x69 0x7A 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6105 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4B= 0x2000553B - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 6113 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x00016017 0x00030603 0x20065 0x000305F1 0x0 0x0 0x57415645 0x0007538B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x20 0x74 - 0x61 0x6C 0x6C 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x69 0x7A 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6181 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4C= 0x2000553C - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 6189 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x00016019 0x00030603 0x20021 0x000305F1 0x0 0xFFFFFFEC 0x57415645 0x0007538C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6254 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4D= 0x2000553D - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 6262 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007538D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x65 0x6E 0x6C 0x61 0x72 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x20 0x74 - 0x6F 0x20 0x68 0x69 0x73 0x20 0x6F 0x72 - 0x69 0x67 0x69 0x6E 0x61 0x6C 0x20 0x73 - 0x69 0x7A 0x65 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x65 - 0x6E 0x64 0x69 0x6E 0x67 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6347 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4E= 0x2000553E - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 6355 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007538E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 - 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6436 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_4F= 0x2000553F - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 6444 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007538F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6524 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_50= 0x20005540 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 6532 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x00075390 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 6654 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - - -SET _help_48544F50_51= 0x20005541 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 6662 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x00075391 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6B 0x65 0x6C - 0x65 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6724 "H:\\BUILD\\SOC\\src\\help\\project5.cht" - -#line 36 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -SET _help_48544F50_0= 0x200056A0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075440 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 100 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1= 0x200056A1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 108 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016016 0x00030603 0x00003033 0x000305F1 0x0 0x0 0x57415645 0x00075441 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056A3 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x69 0x73 0x20 0x73 0x75 - 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x01 0x20 0x41 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x6A - 0x65 0x63 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 200 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2= 0x200056A2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 208 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075442 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 278 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_3= 0x200056A3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 286 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075443 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x3F 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x70 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x72 0x6F 0x77 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x73 0x69 - 0x64 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x20 0x47 0x61 0x64 0x67 0x65 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 381 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_4= 0x200056A4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 389 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075444 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x68 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x6D 0x62 0x69 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x20 0x6F 0x66 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x69 0x74 0x20 0x62 - 0x75 0x69 0x6C 0x64 0x73 0x20 0x73 0x75 - 0x73 0x70 0x65 0x6E 0x73 0x65 0x20 0x73 - 0x6C 0x6F 0x77 0x6C 0x79 0x2E 0x20 0x20 - 0x41 0x66 0x74 0x65 0x72 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x20 0x74 0x68 0x69 0x73 0x20 0x70 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x2C 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x72 0x79 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x63 - 0x6F 0x6D 0x62 0x69 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x73 0x2E 0x20 0x20 0x44 0x69 - 0x73 0x63 0x6F 0x76 0x65 0x72 0x20 0x68 - 0x6F 0x77 0x20 0x64 0x69 0x66 0x66 0x65 - 0x72 0x65 0x6E 0x74 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x6F 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 478 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_5= 0x200056A5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 486 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016015 0x00030603 0x0 0x000305F1 0x140 0xF0 0x57415645 0x00075445 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x30 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x49 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x42 0x65 0x6E 0x65 0x64 0x69 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x75 0x6D 0x6D 0x79 0x2C 0x20 0x68 - 0x61 0x73 0x20 0x72 0x65 0x74 0x75 0x72 - 0x6E 0x65 0x64 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x20 0x6A 0x6F 0x67 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6C 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x6D 0x75 0x73 0x65 0x75 0x6D 0x2E - 0x20 0x20 0x48 0x65 0x20 0x6D 0x75 0x73 - 0x74 0x20 0x67 0x65 0x74 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x66 0x66 0x69 0x6E 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F - 0x75 0x74 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x67 0x6F 0x6E 0x65 0x2E 0x0D 0x0A - 0x4E 0x6F 0x77 0x20 0x69 0x74 0x92 0x73 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x6E 0x69 0x73 0x68 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x75 0x63 0x68 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x6D - 0x75 0x73 0x69 0x63 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x74 0x65 0x6E 0x73 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x73 0x75 - 0x73 0x70 0x65 0x6E 0x73 0x65 0x2E 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 603 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_6= 0x200056A6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 611 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075446 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056CF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x42 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x77 0x65 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 0x61 - 0x72 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x49 0x6E 0x64 - 0x69 0x63 0x61 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 702 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_7= 0x200056A7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 710 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030603 0x20088 0x000305F1 0x0 0x0 0x57415645 0x00075447 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x69 0x72 0x73 - 0x74 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2D 0x01 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x77 0x69 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x31 0x2E -ENDCHUNK - - -ENDCHUNK -#line 788 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_8= 0x200056A8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 796 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016017 0x00030603 0x2007A 0x000305F1 0x0 0x0 0x57415645 0x00075448 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x84 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x69 0x65 0x63 0x65 0x20 0x6F - 0x66 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x63 - 0x68 0x61 0x69 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4D 0x75 0x73 0x69 - 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 866 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_9= 0x200056A9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 874 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075449 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x83 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x72 0x75 0x6E 0x20 0x61 0x77 0x61 - 0x79 0x20 0x31 0x2E 0x22 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 938 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_A= 0x200056AA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 946 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601b 0x00030603 0x21012 0x000305F1 0x0 0x0 0x57415645 0x0007544A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1008 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_B= 0x200056AB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1016 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007544B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056AC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x61 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x69 0x73 - 0x20 0x70 0x69 0x65 0x63 0x65 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x73 - 0x65 0x71 0x75 0x65 0x6E 0x63 0x65 0x2C - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x01 0x43 0x68 0x61 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x4D 0x75 0x73 - 0x69 0x63 -ENDCHUNK - - -ENDCHUNK -#line 1107 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_C= 0x200056AC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1115 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007544C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x43 0x74 0x72 0x6C - 0x20 0x6B 0x65 0x79 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x61 0x72 0x65 0x20 0x63 0x68 - 0x61 0x69 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x6E 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x6E 0x65 0x77 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x70 0x6C 0x61 0x79 - 0x73 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x63 0x68 0x61 0x69 - 0x6E 0x2D 0x2D 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x27 0x74 0x20 0x69 0x6E 0x73 - 0x65 0x72 0x74 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C - 0x65 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 - 0x65 0x72 0x2C 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x64 0x6F 0x20 0x69 0x74 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x77 0x61 0x73 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x65 0x64 0x20 0x28 0x69 - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x63 - 0x61 0x73 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x31 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1227 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_D= 0x200056AD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1235 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030603 0x2007A 0x000305F1 0x0 0x0 0x57415645 0x0007544D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x70 0x69 0x65 0x63 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4D 0x75 0x73 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1301 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_E= 0x200056AE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1309 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007544E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x77 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x72 0x75 0x6E 0x20 0x61 0x77 0x61 - 0x79 0x20 0x32 0x2E 0x22 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1373 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_F= 0x200056AF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1381 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007544F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1447 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_10= 0x200056B0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1455 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075450 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x61 0x74 0x74 0x61 0x63 0x6B 0x2E - 0x22 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1519 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_11= 0x200056B1 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1527 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00016017 0x00030603 0x2007A 0x000305F1 0x0 0x0 0x57415645 0x00075451 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x70 0x69 0x65 0x63 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4D 0x75 0x73 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1594 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_12= 0x200056B2 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1602 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075452 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x65 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x6D 0x6F 0x6E 0x73 0x74 0x65 0x72 - 0x2E 0x22 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1666 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_13= 0x200056B3 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1674 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075453 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1742 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_14= 0x200056B4 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1750 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601b 0x00030603 0x20087 0x000305F1 0x0 0x0 0x57415645 0x00075454 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20289 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFC 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xB7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x72 0x65 0x76 - 0x69 0x6F 0x75 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x72 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x47 0x75 0x73 - 0x74 0x61 0x76 0x65 0x20 0x68 0x61 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x63 0x6F - 0x6D 0x65 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x72 0x6F 0x6F - 0x6D 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1848 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_15= 0x200056B5 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1856 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601a 0x00030603 0x20160 0x000305F1 0x0 0x0 0x57415645 0x00075455 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x2C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x92 0x72 0x65 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x78 0x74 0x20 0x73 0x74 0x65 0x70 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 - 0x63 0x74 0x20 0x47 0x61 0x64 0x67 0x65 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1927 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_16= 0x200056B6 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1935 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075456 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2006 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_17= 0x200056B7 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2014 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075457 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x4D 0x61 0x74 - 0x63 0x68 0x65 0x72 0x20 0x69 0x73 0x20 - 0x61 0x20 0x75 0x73 0x65 0x66 0x75 0x6C - 0x20 0x74 0x6F 0x6F 0x6C 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x65 - 0x6D 0x70 0x68 0x61 0x73 0x69 0x7A 0x65 - 0x20 0x61 0x20 0x73 0x70 0x65 0x63 0x69 - 0x66 0x69 0x63 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x42 0x79 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x27 0x73 0x20 0x66 0x6F - 0x6F 0x74 0x73 0x74 0x65 0x70 0x2C 0x20 - 0x49 0x27 0x6D 0x20 0x64 0x72 0x61 0x77 - 0x69 0x6E 0x67 0x20 0x61 0x74 0x74 0x65 - 0x6E 0x74 0x69 0x6F 0x6E 0x20 0x74 0x6F - 0x20 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 - 0x65 0x6D 0x65 0x6E 0x74 0x20 0x61 0x6E - 0x64 0x20 0x77 0x68 0x61 0x74 0x27 0x73 - 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x68 0x61 0x70 0x70 0x65 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x47 0x75 - 0x73 0x74 0x61 0x76 0x65 0x20 0x72 0x65 - 0x74 0x75 0x72 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2100 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_18= 0x200056B8 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2108 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016017 0x00030603 0x20078 0x000305F1 0x0 0x0 0x57415645 0x00075458 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x61 0x20 0x66 0x6F 0x6F 0x74 - 0x73 0x74 0x65 0x70 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x45 0x66 0x66 0x65 0x63 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2175 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_19= 0x200056B9 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2183 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x00075459 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x73 0x74 0x65 0x70 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x20 0x72 0x69 0x67 0x68 - 0x74 0x2E 0x94 0x0D 0x0A 0x54 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2248 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1A= 0x200056BA - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2256 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016017 0x00030603 0x2002A 0x000305F1 0x0 0x0 0x57415645 0x0007545A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 0x68 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2322 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1B= 0x200056BB - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2330 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007545B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2391 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1C= 0x200056BC - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2399 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20085 0x000305F1 0x0 0x0 0x57415645 0x0007545C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20287 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x4E 0x65 0x78 0x74 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x01 0x20 0x32 0x20 0x74 0x6F 0x20 0x33 - 0x20 0x74 0x69 0x6D 0x65 0x73 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x67 0x65 0x74 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x27 - 0x73 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x66 0x6F 0x6F 0x74 0x20 0x68 0x69 0x74 - 0x73 0x20 0x74 0x68 0x65 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2497 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1D= 0x200056BD - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2505 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x0007545D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x6D - 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x48 0x6F 0x77 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2576 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1E= 0x200056BE - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2584 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007545E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x6F - 0x66 0x20 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x92 0x73 0x20 0x66 0x6F 0x6F 0x74 - 0x73 0x74 0x65 0x70 0x73 0x20 0x61 0x72 - 0x65 0x20 0x6D 0x65 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x64 0x72 0x61 0x77 0x20 - 0x61 0x74 0x74 0x65 0x6E 0x74 0x69 0x6F - 0x6E 0x20 0x74 0x6F 0x20 0x68 0x69 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x61 0x62 - 0x6F 0x75 0x74 0x73 0x2C 0x20 0x77 0x68 - 0x79 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x42 0x65 0x6E 0x65 0x64 0x69 - 0x63 0x74 0x20 0x68 0x61 0x76 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F - 0x6E 0x6E 0x65 0x63 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 0x66 - 0x6F 0x6F 0x74 0x73 0x74 0x65 0x70 0x73 - 0x3F 0x20 0x20 0x42 0x65 0x6E 0x65 0x64 - 0x69 0x63 0x74 0x20 0x69 0x73 0x20 0x74 - 0x72 0x79 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x71 0x75 0x69 0x65 - 0x74 0x2E 0x20 0x20 0x49 0x6E 0x20 0x63 - 0x6F 0x6E 0x74 0x72 0x61 0x73 0x74 0x2C - 0x20 0x68 0x69 0x73 0x20 0x66 0x6F 0x6F - 0x74 0x73 0x74 0x65 0x70 0x73 0x20 0x61 - 0x72 0x65 0x20 0x73 0x69 0x6C 0x65 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2671 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_1F= 0x200056BF - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2679 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030603 0x21009 0x000305F1 0x0 0xFFFFFFF7 0x57415645 0x0007545F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x93 0x73 0x74 0x65 0x70 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x20 0x6C 0x65 0x66 0x74 - 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2744 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_20= 0x200056C0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2752 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075460 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2833 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_21= 0x200056C1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2841 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075461 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x20 0x66 0x6F 0x72 0x20 0x70 0x61 - 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 0x64 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2915 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_22= 0x200056C2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2923 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075462 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x57 0x61 0x69 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 0x20 - 0x61 0x6C 0x6C 0x6F 0x77 0x73 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x69 0x74 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x65 0x73 - 0x20 0x69 0x6E 0x73 0x74 0x65 0x61 0x64 - 0x20 0x6F 0x66 0x20 0x63 0x75 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 0x6F - 0x66 0x66 0x2E 0x20 0x20 0x54 0x68 0x69 - 0x73 0x20 0x69 0x73 0x20 0x75 0x73 0x65 - 0x66 0x75 0x6C 0x20 0x65 0x73 0x70 0x65 - 0x63 0x69 0x61 0x6C 0x6C 0x79 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x27 0x76 0x65 - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x65 - 0x64 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x73 0x74 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3005 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_23= 0x200056C3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3013 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016017 0x00030603 0x20005 0x000305F1 0x0 0x0 0x57415645 0x00075463 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 3073 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_24= 0x200056C4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3081 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x00016017 0x00030603 0x2004E 0x000305F1 0x0 0x0 0x57415645 0x00075464 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200056CE -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x6E 0x20 0x57 0x61 - 0x69 0x74 0x20 0x66 0x6F 0x72 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x45 0x6E 0x64 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 0x65 - 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x72 0x6F - 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 0x64 - 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3175 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_25= 0x200056C5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3183 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x00075465 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x69 0x66 0x20 0x69 0x74 0x20 0x77 - 0x6F 0x72 0x6B 0x65 0x64 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x72 0x65 0x61 0x64 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x73 0x74 - 0x65 0x70 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x72 - 0x6F 0x6A 0x65 0x63 0x74 0x20 0x47 0x61 - 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3262 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_26= 0x200056C6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3270 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601c 0x00030603 0x0000303D 0x000305F1 0x0 0x0 0x57415645 0x00075466 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x66 0x6F 0x72 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x48 0x6F 0x77 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3339 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_27= 0x200056C7 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3347 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075467 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x68 0x61 - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x65 0x73 0x74 0x20 - 0x69 0x6D 0x70 0x61 0x63 0x74 0x20 0x61 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x65 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x65 0x6C 0x6C 0x20 0x75 0x73 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x6E 0x65 0x77 0x2E 0x20 - 0x20 0x4D 0x79 0x20 0x6C 0x69 0x6E 0x65 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x65 0x6C 0x6C 0x73 0x20 0x75 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x69 0x73 0x20 0x6F - 0x76 0x65 0x72 0x2C 0x20 0x77 0x68 0x69 - 0x63 0x68 0x20 0x69 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x77 0x65 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x6B 0x6E 0x6F 0x77 0x2E - 0x20 0x20 0x4C 0x65 0x74 0x27 0x73 0x20 - 0x67 0x65 0x74 0x20 0x72 0x69 0x64 0x20 - 0x6F 0x66 0x20 0x69 0x74 0x21 -ENDCHUNK - - -ENDCHUNK -#line 3431 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_28= 0x200056C8 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3439 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030603 0x20036 0x000305F1 0x0 0x0 0x57415645 0x00075468 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3507 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_29= 0x200056C9 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3515 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030603 0x20052 0x000305F1 0x0 0x0 0x57415645 0x00075469 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3579 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2A= 0x200056CA - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3587 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x6E 0x57415645 0x0007546A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x66 0x66 - 0x69 0x6E 0x2D 0x2D 0x49 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x6D - 0x79 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x69 0x73 0x20 - 0x70 0x72 0x6F 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3654 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2B= 0x200056CB - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3662 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601b 0x00030603 0x0 0x000305F1 0x140 0x0 0x57415645 0x0007546B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x67 0x65 0x74 - 0x20 0x72 0x69 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6F 0x74 0x74 0x6F 0x6D 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x92 0x72 0x65 0x20 0x64 0x6F 0x6E - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3734 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2C= 0x200056CC - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3742 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601b 0x00030603 0x20039 0x000305F1 0x0 0x0 0x57415645 0x0007546C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x68 0x6F - 0x6C 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x73 0x74 0x65 0x70 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 0x74 - 0x20 0x47 0x61 0x64 0x67 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3821 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2D= 0x200056CD - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3829 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601e 0x00030603 0x0 0x000305F1 0x258 0x1C2 0x57415645 0x0007546D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x67 0x72 0x61 - 0x74 0x75 0x6C 0x61 0x74 0x69 0x6F 0x6E - 0x73 0x21 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 0x21 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 0x6B - 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x3F 0x0D 0x0A 0x01 - 0x09 0x53 0x74 0x61 0x72 0x74 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x6A 0x65 0x63 0x74 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x50 0x72 0x6F 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x3F - 0x0D 0x0A 0x01 0x09 0x51 0x75 0x69 0x74 - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 3951 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_2E= 0x200056CF - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3959 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x14 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x49 0x6E 0x64 0x69 0x63 - 0x61 0x74 0x6F 0x72 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x61 0x74 0x20 0x61 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x68 - 0x61 0x76 0x65 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x65 0x64 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2C 0x20 0x79 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x73 0x65 0x65 0x20 0x61 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x6E - 0x6F 0x74 0x65 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6C 0x69 0x64 0x69 - 0x6E 0x67 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 - 0x64 0x65 0x72 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x2C 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4060 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - - -SET _help_48544F50_4F= 0x200056CE - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 4068 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001602d 0x00030604 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007546E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x95 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x95 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 - 0x75 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x69 - 0x73 0x20 0x70 0x75 0x73 0x68 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x67 0x68 - 0x74 0x20 0x69 0x73 0x20 0x6F 0x6E 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x66 0x66 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x66 0x66 - 0x2C 0x22 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x70 0x6F - 0x70 0x73 0x20 0x6F 0x75 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x67 0x68 0x74 0x20 0x69 0x73 0x20 - 0x6F 0x66 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4167 "H:\\BUILD\\SOC\\src\\help\\project6.cht" - -#line 37 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -SET _help_48544F50_0= 0x20005700 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x63 0x6F 0x6E 0x76 0x65 - 0x72 0x73 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_1= 0x20005701 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 104 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 168 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_2= 0x20005702 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 176 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 240 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_3= 0x20005703 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 248 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 312 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_4= 0x20005704 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 320 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 384 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_5= 0x20005705 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 392 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x35 - 0x3A 0x20 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 456 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_6= 0x20005706 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 464 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x36 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 528 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - - -SET _help_48544F50_7= 0x20005707 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 536 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x63 0x6F 0x6E 0x76 0x65 - 0x72 0x73 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 600 "H:\\BUILD\\SOC\\src\\help\\gadget1.cht" - -#line 38 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -SET _help_48544F50_0= 0x2000570E - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x27 0x73 0x20 0x61 0x72 0x72 0x69 - 0x76 0x61 0x6C 0x20 0x74 0x69 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 98 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - -SET _help_48544F50_1= 0x2000570F - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 106 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x14 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x53 0x79 0x6E 0x63 0x68 - 0x72 0x6F 0x6E 0x69 0x7A 0x65 -ENDCHUNK - - -ENDCHUNK -#line 170 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - -SET _help_48544F50_2= 0x20005710 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 178 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x45 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x42 0x65 0x66 - 0x6F 0x72 0x65 -ENDCHUNK - - -ENDCHUNK -#line 244 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - - -SET _help_48544F50_3= 0x20005711 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 252 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x66 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x27 0x73 0x20 0x61 0x72 0x72 0x69 - 0x76 0x61 0x6C 0x20 0x74 0x69 0x6D 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 318 "H:\\BUILD\\SOC\\src\\help\\gadget2.cht" - -#line 39 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -SET _help_48544F50_0= 0x20005708 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x77 0x69 0x74 0x68 0x6F - 0x75 0x74 0x20 0x64 0x72 0x61 0x67 0x67 - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 98 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_1= 0x20005709 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 106 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 170 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_2= 0x2000570A - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 178 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 242 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_3= 0x2000570B - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 250 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 314 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_4= 0x2000570C - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 322 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x53 0x70 0x65 0x65 0x63 - 0x68 -ENDCHUNK - - -ENDCHUNK -#line 386 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - - -SET _help_48544F50_5= 0x2000570D - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 394 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x77 0x69 0x74 0x68 0x6F - 0x75 0x74 0x20 0x64 0x72 0x61 0x67 0x67 - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 460 "H:\\BUILD\\SOC\\src\\help\\gadget3.cht" - -#line 40 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -SET _help_48544F50_0= 0x20005724 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x6F 0x67 0x65 0x74 - 0x68 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_1= 0x20005725 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 105 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 169 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_2= 0x20005726 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 177 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x50 0x72 0x6F 0x70 -ENDCHUNK - - -ENDCHUNK -#line 240 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_3= 0x20005727 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 248 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 312 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_4= 0x20005728 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 320 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x43 0x6F 0x70 0x79 0x20 - 0x50 0x61 0x74 0x68 -ENDCHUNK - - -ENDCHUNK -#line 384 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - - -SET _help_48544F50_7= 0x20005729 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 392 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x6F 0x67 0x65 0x74 - 0x68 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 457 "H:\\BUILD\\SOC\\src\\help\\gadget4.cht" - -#line 41 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -SET _help_48544F50_0= 0x20005719 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_1= 0x2000571A - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 104 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 168 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_2= 0x2000571B - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 176 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x43 0x61 0x6D 0x65 0x72 - 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 0x73 -ENDCHUNK - - -ENDCHUNK -#line 240 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_3= 0x2000571C - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 248 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x20 0x50 0x72 0x6F 0x70 -ENDCHUNK - - -ENDCHUNK -#line 311 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_4= 0x2000571D - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 319 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 383 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_5= 0x2000571E - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 391 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x35 - 0x3A 0x20 0x20 0x53 0x6F 0x75 0x6E 0x64 - 0x20 0x45 0x66 0x66 0x65 0x63 0x74 0x73 -ENDCHUNK - - -ENDCHUNK -#line 455 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_6= 0x2000571F - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 463 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x36 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 526 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_7= 0x20005720 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 534 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x37 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 598 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_8= 0x20005721 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 606 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x38 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 670 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_9= 0x20005722 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 678 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x39 - 0x3A 0x20 0x20 0x53 0x69 0x7A 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 -ENDCHUNK - - -ENDCHUNK -#line 742 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - - -SET _help_48544F50_A= 0x20005723 - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 750 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 814 "H:\\BUILD\\SOC\\src\\help\\gadget5.cht" - -#line 42 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -SET _help_48544F50_0= 0x20005712 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x65 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x74 0x65 - 0x6E 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_1= 0x20005713 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 105 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x31 - 0x3A 0x20 0x20 0x4D 0x75 0x73 0x69 0x63 -ENDCHUNK - - -ENDCHUNK -#line 168 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_2= 0x20005714 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 176 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x32 - 0x3A 0x20 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 241 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_3= 0x20005715 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 249 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x33 - 0x3A 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 313 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_4= 0x20005716 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 321 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x34 - 0x3A 0x0D 0x0A 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 386 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_5= 0x20005717 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 394 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x65 0x70 0x20 0x35 - 0x3A 0x20 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x53 0x6F 0x75 0x6E - 0x64 -ENDCHUNK - - -ENDCHUNK -#line 459 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - - -SET _help_48544F50_6= 0x20005718 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 467 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001600c 0x00030607 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x70 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x65 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x74 0x65 - 0x6E 0x73 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 532 "H:\\BUILD\\SOC\\src\\help\\gadget6.cht" - -#line 43 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -SET _help_48544F50_0= 0x20005600 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x00075400 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - FREE - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000562F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x65 0x61 0x63 0x68 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x20 0x20 0x54 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x6F 0x72 0x64 0x65 0x72 0x2C 0x20 - 0x64 0x72 0x61 0x67 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 135 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1= 0x20005601 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 143 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075401 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 202 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2= 0x2235B - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 210 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075402 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x20 0x74 0x6F - 0x20 0x42 0x6C 0x61 0x63 0x6B -ENDCHUNK - - -ENDCHUNK -#line 273 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3= 0x2235C - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 281 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075403 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 -ENDCHUNK - - -ENDCHUNK -#line 344 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_4= 0x2235D - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 352 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075404 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x71 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x42 0x6C 0x61 0x63 0x6B -ENDCHUNK - - -ENDCHUNK -#line 416 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_5= 0x2235E - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 424 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075405 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x75 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x44 0x69 0x73 0x73 0x6F 0x6C - 0x76 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x57 0x68 0x69 0x74 0x65 -ENDCHUNK - - -ENDCHUNK -#line 488 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_6= 0x22363 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 496 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075406 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x72 0x0D - 0x0A 0x44 0x72 0x61 0x67 0x20 0x61 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x6C - 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 579 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_7= 0x22364 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 587 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075407 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x45 0x6E 0x74 0x69 0x72 0x65 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 674 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_8= 0x22365 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 682 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001602e 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075408 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x46 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 753 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_9= 0x223D6 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 761 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075409 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x43 0x6C 0x6F 0x73 0x65 0x20 - 0x77 0x69 0x74 0x68 0x6F 0x75 0x74 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 829 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_A= 0x223D5 - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 837 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x43 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x6C 0x6C - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 904 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_B= 0x2000560B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 912 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x0007540B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x54 0x79 0x70 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x69 0x73 0x74 - 0x61 0x6B 0x65 0x2C 0x20 0x70 0x72 0x65 - 0x73 0x73 0x20 0x42 0x61 0x63 0x6B 0x73 - 0x70 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 987 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_C= 0x2000560C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 995 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007540C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x15 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 0x0D 0x0A - 0x54 0x6F 0x20 0x67 0x65 0x74 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 - 0x0D 0x0A 0x95 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x68 0x65 0x6C 0x70 0x20 0x6F - 0x6E 0x2E 0x20 0x20 0x57 0x61 0x69 0x74 - 0x2E 0x2E 0x2E 0x61 0x20 0x64 0x65 0x73 - 0x63 0x72 0x69 0x70 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x70 0x70 0x65 0x61 0x72 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1089 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_D= 0x22352 - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1097 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x77 0x61 - 0x79 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x21 -ENDCHUNK - - -ENDCHUNK -#line 1179 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_E= 0x2234D - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1187 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x53 0x68 0x61 0x70 0x65 0x0D - 0x0A 0x57 0x61 0x72 0x70 0x20 0x79 0x6F - 0x75 0x72 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x68 0x61 0x70 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1270 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_F= 0x2234C - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1278 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007540F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x74 0x74 0x65 0x72 - 0x6E 0x73 0x20 0x26 0x20 0x43 0x6F 0x6C - 0x6F 0x72 0x73 -ENDCHUNK - - -ENDCHUNK -#line 1343 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_10= 0x2234B - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1351 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075410 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x40 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6F 0x6C 0x20 0x49 - 0x64 0x65 0x61 0x73 -ENDCHUNK - - -ENDCHUNK -#line 1414 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_11= 0x2234E - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1422 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075411 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x65 - 0x77 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x72 0x65 0x70 0x65 0x61 0x74 0x65 - 0x64 0x6C 0x79 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x77 0x68 0x61 0x74 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x6C 0x6F - 0x6F 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1494 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_12= 0x20005612 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1502 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075412 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x85 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x46 - 0x69 0x6E 0x64 0x20 0x50 0x61 0x74 0x74 - 0x65 0x72 0x6E 0x73 0x20 0x26 0x20 0x43 - 0x6F 0x6C 0x6F 0x72 0x73 0x0D 0x0A 0x46 - 0x69 0x6E 0x64 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x61 0x74 0x74 0x65 0x72 - 0x6E 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x70 0x70 0x6C 0x79 0x20 0x74 0x6F 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x46 0x69 0x6E 0x65 - 0x20 0x41 0x72 0x74 0x69 0x73 0x74 0x20 - 0x70 0x69 0x63 0x74 0x75 0x72 0x65 0x73 - 0x2C 0x20 0x2E 0x62 0x6D 0x70 0x20 0x61 - 0x6E 0x64 0x20 0x2E 0x77 0x6D 0x66 0x20 - 0x66 0x69 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1589 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_13= 0x20005613 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1597 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x140 0x154 0x57415645 0x00075413 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000563B - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x65 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x65 0x64 0x2E - 0x20 0x20 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1703 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_14= 0x223B6 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1711 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075414 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x6C 0x69 0x64 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1773 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_15= 0x20005615 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 1781 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075415 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 0x63 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x22 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x22 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1861 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_16= 0x22356 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 1869 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075416 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x41 0x63 0x63 0x65 0x73 0x73 - 0x6F 0x72 0x69 0x65 0x73 0x0D 0x0A 0x41 - 0x64 0x64 0x20 0x61 0x63 0x63 0x65 0x73 - 0x73 0x6F 0x72 0x69 0x65 0x73 0x97 0x68 - 0x61 0x74 0x73 0x2C 0x20 0x67 0x6C 0x61 - 0x73 0x73 0x65 0x73 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x97 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1943 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_17= 0x22355 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1951 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075417 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x76 0x69 0x65 - 0x77 0x0D 0x0A 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x72 0x65 0x70 0x65 0x61 0x74 0x65 - 0x64 0x6C 0x79 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x65 0x20 0x77 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x6C 0x6C 0x20 0x61 0x6E 0x67 0x6C - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2024 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_18= 0x22354 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2032 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075418 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x73 0x0D 0x0A 0x43 0x68 0x61 0x6E - 0x67 0x65 0x20 0x63 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x73 0x20 0x62 0x79 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x6F 0x72 0x20 0x70 0x72 0x6F - 0x70 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 - 0x61 0x20 0x63 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x79 0x6F 0x75 0x20 0x6C 0x69 - 0x6B 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2106 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_19= 0x20005619 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2114 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xF1 0x0 0x57415645 0x00075419 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6E 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2187 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1A= 0x2236A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2195 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x59 0x6F 0x75 0x72 0x20 0x4F 0x77 - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 2259 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1B= 0x2236B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2267 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x61 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 - 0x65 0x63 0x74 0x73 0x0D 0x0A 0x46 0x69 - 0x6E 0x64 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 - 0x66 0x66 0x65 0x63 0x74 0x73 0x2E 0x20 - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x57 0x61 0x76 0x65 0x20 0x6F 0x72 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x20 0x66 0x69 0x6C - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2342 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1C= 0x2000561C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2350 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2416 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1D= 0x2000561D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2424 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007541D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2490 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1E= 0x2000561E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2498 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x0007541E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2D 0x01 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x53 0x74 0x6F 0x70 - 0x2E 0x0D 0x0A 0x32 0x09 0x54 0x6F 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x69 0x6E 0x67 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x6F 0x70 0x2E 0x0D 0x0A 0x33 0x09 0x54 - 0x79 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2599 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_1F= 0x223CD - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 2607 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007541F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4D 0x69 0x63 0x72 0x6F 0x70 - 0x68 0x6F 0x6E 0x65 0x0D 0x0A 0x52 0x65 - 0x63 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x28 0x75 0x70 0x20 - 0x74 0x6F 0x20 0x31 0x30 0x20 0x73 0x65 - 0x63 0x6F 0x6E 0x64 0x73 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2676 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_20= 0x223CE - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 2684 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075420 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x0D 0x0A - 0x50 0x6C 0x61 0x79 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x77 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x65 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2751 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_21= 0x20005621 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 2759 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075421 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x4E 0x61 0x6D 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 0x79 - 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 0x6D - 0x65 0x20 0x66 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x72 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x6D 0x69 0x73 0x74 0x61 0x6B 0x65 - 0x2C 0x20 0x70 0x72 0x65 0x73 0x73 0x20 - 0x42 0x61 0x63 0x6B 0x73 0x70 0x61 0x63 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2832 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_22= 0x20005622 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 2840 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075422 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2906 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_23= 0x20005623 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 2914 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075423 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2980 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_24= 0x20005624 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 2988 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xF1 0x0 0x57415645 0x00075424 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x51 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x6E 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x20 0x20 0x4F 0x72 0x2C 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x20 0x79 0x6F 0x75 0x72 0x20 0x6F - 0x77 0x6E 0x20 0x64 0x69 0x61 0x6C 0x6F - 0x67 0x75 0x65 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F 0x6E - 0x65 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x64 0x6F 0x6E 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3063 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_25= 0x223E2 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3071 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075425 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x44 - 0x69 0x61 0x6C 0x6F 0x67 0x75 0x65 0x0D - 0x0A 0x46 0x69 0x6E 0x64 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x64 0x69 0x61 0x6C - 0x6F 0x67 0x75 0x65 0x2E 0x20 0x20 0x59 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x69 - 0x6D 0x70 0x6F 0x72 0x74 0x20 0x57 0x61 - 0x76 0x65 0x20 0x6F 0x72 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3145 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_26= 0x20005626 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3153 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075426 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3219 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_27= 0x20005627 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3227 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075427 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3293 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_28= 0x20005628 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 3301 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075428 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x63 0x6F 0x72 0x64 - 0x20 0x59 0x6F 0x75 0x72 0x20 0x4F 0x77 - 0x6E -ENDCHUNK - - -ENDCHUNK -#line 3365 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_29= 0x20005629 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 3373 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0xF1 0x0 0x57415645 0x00075429 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 - 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x65 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3445 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2A= 0x223E3 - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 3453 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x0007542A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x46 0x69 0x6E 0x64 0x20 0x4D - 0x75 0x73 0x69 0x63 0x0D 0x0A 0x46 0x69 - 0x6E 0x64 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x2E 0x20 - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x4D 0x49 - 0x44 0x49 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3524 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2B= 0x2000562B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 3532 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007542B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x55 0x73 0x65 0x20 0x74 0x6F - 0x70 0x69 0x63 0x20 0x23 0x39 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3598 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2C= 0x2000562C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 3606 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007542C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x54 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x55 0x73 - 0x65 0x20 0x74 0x6F 0x70 0x69 0x63 0x20 - 0x23 0x31 0x30 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3672 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2D= 0x2000562D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 3680 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x0007542D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005695 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16104 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x01 0x09 0x57 0x68 - 0x61 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x2A 0x20 0x6D 0x65 - 0x61 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 3768 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2E= 0x2000562E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 3776 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007542E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x39 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x69 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x66 0x72 0x61 0x6D 0x65 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 - 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 - 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 - 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 - 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 - 0x72 0x61 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3892 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_2F= 0x2000562F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 3900 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007542F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3994 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_30= 0x20005630 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4002 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075430 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x27 0x73 0x20 0x6F - 0x72 0x20 0x70 0x72 0x6F 0x70 0x27 0x73 - 0x20 0x6E 0x61 0x6D 0x65 0x2C 0x20 0x74 - 0x79 0x70 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x77 0x20 0x6E 0x61 0x6D 0x65 - 0x20 0x68 0x65 0x72 0x65 0x2E 0x20 0x20 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x6D 0x69 - 0x73 0x74 0x61 0x6B 0x65 0x2C 0x20 0x70 - 0x72 0x65 0x73 0x73 0x20 0x42 0x61 0x63 - 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4074 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_31= 0x20005631 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4082 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001600d 0x0 0x0 0x000305F4 0x0 0x0 0x57415645 0x00075431 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x65 0x64 0x20 0x6F 0x72 0x20 0x69 - 0x6D 0x70 0x6F 0x72 0x74 0x65 0x64 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x69 0x73 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4156 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_32= 0x20005632 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4164 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x67 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000562F - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x4F 0x72 0x67 0x61 0x6E 0x69 0x7A 0x65 - 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x72 0x73 0x74 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x65 0x61 0x63 0x68 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2E 0x20 0x20 0x54 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x6F 0x72 0x64 0x65 0x72 0x2C 0x20 - 0x64 0x72 0x61 0x67 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E 0x20 - 0x20 0x01 0x20 0x4D 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4273 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_33= 0x20005633 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 4281 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x0D 0x0A 0x54 0x79 0x70 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x69 0x73 0x74 - 0x61 0x6B 0x65 0x2C 0x20 0x70 0x72 0x65 - 0x73 0x73 0x20 0x42 0x61 0x63 0x6B 0x73 - 0x70 0x61 0x63 0x65 0x2E 0x0D 0x0A 0x01 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x68 0x65 - 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4372 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_34= 0x20005634 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 4380 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x186 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000560C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000562F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x53 0x68 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x65 0x64 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x65 0x64 0x2E - 0x20 0x20 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2E 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4487 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_35= 0x20005635 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 4495 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x73 0x74 0x75 0x6D - 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 - 0x72 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x61 0x20 0x63 - 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x22 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x22 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x2E 0x20 0x01 - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x68 0x65 - 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4592 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_36= 0x20005636 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 4600 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x65 0x66 0x66 0x65 0x63 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6E 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E - 0x20 0x20 0x01 0x20 0x4D 0x6F 0x72 0x65 - 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4688 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_37= 0x20005637 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 4696 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x9E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x4D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2D 0x01 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x53 0x74 0x6F 0x70 - 0x2E 0x0D 0x0A 0x32 0x09 0x54 0x6F 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x69 0x6E 0x67 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x6F 0x70 0x2E 0x0D 0x0A 0x33 0x09 0x54 - 0x79 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4F 0x4B 0x2E 0x0D 0x0A - 0x01 0x20 0x4D 0x6F 0x72 0x65 0x20 0x68 - 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4805 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_38= 0x20005638 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 4813 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x63 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6F 0x77 0x6E 0x20 0x64 0x69 0x61 - 0x6C 0x6F 0x67 0x75 0x65 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 - 0x6F 0x6E 0x65 0x2E 0x0D 0x0A 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 0x72 - 0x65 0x20 0x64 0x6F 0x6E 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B - 0x2E 0x20 0x20 0x01 0x20 0x4D 0x6F 0x72 - 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4899 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_39= 0x20005639 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4907 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000560C - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 - 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x65 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x4F 0x4B 0x2E 0x20 0x20 0x01 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 4993 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3A= 0x2000563A - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5001 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00016032 0x00030601 0x0 0xFFFFFFFF 0x140 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16104 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000560C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005695 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x01 0x09 0x57 0x68 - 0x61 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x2A 0x20 0x6D 0x65 - 0x61 0x6E 0x3F 0x0D 0x0A 0x01 0x20 0x4D - 0x6F 0x72 0x65 0x20 0x68 0x65 0x6C 0x70 -ENDCHUNK - - -ENDCHUNK -#line 5099 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3B= 0x2000563B - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5107 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x15 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x30 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x95 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5196 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3C= 0x2000563F - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5204 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x4F 0x4B 0x0D 0x0A 0x43 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x6C 0x6C - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5271 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3D= 0x2000563E - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5279 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6E 0x63 0x65 0x6C - 0x0D 0x0A 0x43 0x6C 0x6F 0x73 0x65 0x20 - 0x77 0x69 0x74 0x68 0x6F 0x75 0x74 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x79 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5347 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3E= 0x223BB - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 5355 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001600d 0x0 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075432 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5422 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - - -SET _help_48544F50_3F= 0x20005695 - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 5430 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 0x74 - 0x68 0x65 0x20 0x2A 0x20 0x6D 0x65 0x61 - 0x6E 0x3F 0x0D 0x0A 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x66 0x6F 0x6C 0x6C - 0x6F 0x77 0x65 0x64 0x20 0x62 0x79 0x20 - 0x61 0x6E 0x20 0x61 0x73 0x74 0x65 0x72 - 0x69 0x73 0x6B 0x20 0x28 0x2A 0x29 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x62 0x65 0x73 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x64 0x72 0x61 0x67 0x2E 0x20 - 0x20 0x4F 0x74 0x68 0x65 0x72 0x77 0x69 - 0x73 0x65 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x61 0x6E 0x69 0x6D 0x61 0x74 - 0x65 0x73 0x20 0x69 0x6E 0x20 0x70 0x6C - 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5531 "H:\\BUILD\\SOC\\src\\help\\easelhp.cht" - -#line 44 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -SET _help_48544F50_0= 0x20005800 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x87 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x66 - 0x72 0x65 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 - 0x61 0x6D 0x73 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x2A 0x20 0x20 0x4F 0x72 0x2C 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x72 0x20 0x74 0x77 - 0x6F 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 145 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_1= 0x20005801 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 153 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x86 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC4 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x66 - 0x72 0x65 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 - 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x4F 0x72 0x2C 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x72 0x20 0x74 0x77 0x6F - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 266 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2= 0x20005802 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 274 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x86 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC4 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC4 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x66 - 0x72 0x65 0x65 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x4F 0x72 0x2C 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x72 0x20 0x74 0x77 0x6F - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x6F 0x72 0x20 0x70 0x72 0x6F 0x70 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 387 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3= 0x20005857 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 395 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x74 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4A 0x75 0x73 0x74 0x20 0x73 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x6B 0x6E - 0x6F 0x77 0x2E 0x2E 0x2E 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x70 0x61 0x73 0x74 0x65 0x64 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x6E 0x6F 0x74 0x20 - 0x68 0x61 0x76 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x77 0x65 0x72 - 0x65 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x69 - 0x74 0x73 0x20 0x6F 0x72 0x69 0x67 0x69 - 0x6E 0x61 0x6C 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 489 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4= 0x20005803 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 497 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xFA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x71 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF8 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x71 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x73 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x20 0x57 0x65 0x20 0x68 0x61 0x64 0x20 - 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 0x20 - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x69 0x73 0x20 0x66 0x69 0x6C 0x65 0x2E - 0x0D 0x0A 0x0D 0x0A 0x42 0x65 0x66 0x6F - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x72 0x79 0x20 0x61 0x67 0x61 0x69 0x6E - 0x2C 0x20 0x63 0x68 0x65 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x73 0x65 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x0D 0x0A 0x2A 0x20 0x20 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 - 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x66 0x6C 0x6F 0x70 0x70 0x79 0x20 - 0x64 0x69 0x73 0x6B 0x2C 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x73 0x75 0x72 0x65 0x20 - 0x69 0x74 0x20 0x69 0x73 0x20 0x63 0x6F - 0x72 0x72 0x65 0x63 0x74 0x6C 0x79 0x20 - 0x69 0x6E 0x73 0x65 0x72 0x74 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x64 0x72 0x69 0x76 0x65 0x2E 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x4D 0x61 0x6B - 0x65 0x20 0x73 0x75 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x4D 0x6F - 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 - 0x72 0x20 0x43 0x44 0x20 0x69 0x73 0x20 - 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 0x6C - 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x72 0x69 0x76 0x65 0x2E - 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x68 0x61 0x72 0x64 0x20 0x64 0x72 0x69 - 0x76 0x65 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6C 0x6C 0x2E 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E - 0x6E 0x65 0x63 0x65 0x73 0x73 0x61 0x72 - 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 636 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_5= 0x20005810 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 644 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA4 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xE8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x81 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x84 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA2 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x35 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x83 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x6F 0x70 0x65 0x6E 0x20 0x74 0x68 - 0x69 0x73 0x20 0x66 0x69 0x6C 0x65 0x2E - 0x0D 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 - 0x74 0x68 0x65 0x20 0x66 0x6F 0x6C 0x6C - 0x6F 0x77 0x69 0x6E 0x67 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x0D 0x0A 0x2A 0x20 0x20 0x4D - 0x61 0x6B 0x65 0x20 0x73 0x75 0x72 0x65 - 0x20 0x61 0x6E 0x79 0x20 0x64 0x69 0x73 - 0x6B 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 - 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 0x69 - 0x73 0x20 0x63 0x6F 0x72 0x72 0x65 0x63 - 0x74 0x6C 0x79 0x20 0x69 0x6E 0x73 0x65 - 0x72 0x74 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x69 0x74 0x73 0x20 0x64 0x72 0x69 0x76 - 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x75 0x6E 0x6E 0x63 0x65 - 0x73 0x73 0x61 0x72 0x79 0x20 0x66 0x69 - 0x6C 0x65 0x73 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x4F 0x74 0x68 0x65 0x72 0x77 0x69 - 0x73 0x65 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x6C 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x63 0x6F 0x72 0x72 - 0x75 0x70 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x69 0x74 0x20 0x69 0x73 0x20 0x6E 0x6F - 0x74 0x20 0x61 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x66 0x69 0x6C 0x65 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 788 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_6= 0x20005812 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 796 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEA 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xEC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x39 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA6 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x39 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x3B 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x48 0x75 0x6D 0x6D 0x2E 0x20 - 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x73 0x65 0x65 0x6D 0x20 0x74 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x74 0x68 - 0x69 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x54 0x72 0x79 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x6C 0x6C 0x6F 0x77 0x69 0x6E - 0x67 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x74 0x72 0x79 0x20 - 0x73 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x6C 0x65 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A - 0x2A 0x20 0x20 0x4D 0x61 0x6B 0x65 0x20 - 0x73 0x75 0x72 0x65 0x20 0x61 0x6E 0x79 - 0x20 0x64 0x69 0x73 0x6B 0x20 0x79 0x6F - 0x75 0x27 0x72 0x65 0x20 0x75 0x73 0x69 - 0x6E 0x67 0x20 0x69 0x73 0x20 0x63 0x6F - 0x72 0x72 0x65 0x63 0x74 0x6C 0x79 0x20 - 0x69 0x6E 0x73 0x65 0x72 0x74 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x69 0x74 0x73 0x20 - 0x64 0x72 0x69 0x76 0x65 0x2E 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 - 0x6E 0x6E 0x63 0x65 0x73 0x73 0x61 0x72 - 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 928 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_7= 0x20005814 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 936 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB4 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x1D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x92 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x95 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x95 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x95 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB4 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x92 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x94 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x57 0x65 0x20 0x61 0x72 0x65 0x20 0x68 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 0x72 - 0x6F 0x75 0x62 0x6C 0x65 0x20 0x67 0x65 - 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x69 0x6E 0x66 0x6F 0x72 0x6D - 0x61 0x74 0x69 0x6F 0x6E 0x20 0x77 0x65 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x20 0x66 0x69 0x6C - 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x72 - 0x79 0x20 0x74 0x68 0x65 0x20 0x66 0x6F - 0x6C 0x6C 0x6F 0x77 0x69 0x6E 0x67 0x20 - 0x73 0x75 0x67 0x67 0x65 0x73 0x74 0x69 - 0x6F 0x6E 0x73 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x4D 0x61 0x6B 0x65 0x20 0x73 0x75 - 0x72 0x65 0x20 0x61 0x6E 0x79 0x20 0x64 - 0x69 0x73 0x6B 0x20 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x75 0x73 0x69 0x6E 0x67 - 0x20 0x69 0x73 0x20 0x63 0x6F 0x72 0x72 - 0x65 0x63 0x74 0x6C 0x79 0x20 0x69 0x6E - 0x73 0x65 0x72 0x74 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x69 0x74 0x73 0x20 0x64 0x72 - 0x69 0x76 0x65 0x2E 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x27 0x73 0x20 0x6D 0x65 0x6D 0x6F 0x72 - 0x79 0x20 0x6D 0x61 0x79 0x20 0x62 0x65 - 0x20 0x6C 0x6F 0x77 0x2E 0x20 0x53 0x77 - 0x69 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 - 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 - 0x28 0x70 0x72 0x65 0x73 0x73 0x20 0x43 - 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x2A - 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 - 0x73 0x20 0x68 0x61 0x72 0x64 0x20 0x64 - 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x66 0x75 0x6C 0x6C - 0x2E 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x6F 0x72 - 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 - 0x75 0x6E 0x6E 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1079 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_8= 0x20005858 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1087 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x96 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x0D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x01 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0B 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x0D 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x57 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x6E 0x27 0x74 0x20 0x63 0x6F - 0x70 0x79 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x0D - 0x0A 0x2A 0x20 0x20 0x59 0x6F 0x75 0x72 - 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 - 0x72 0x27 0x73 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x6C 0x6F 0x77 0x2E 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x2A 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x27 0x73 0x20 0x68 0x61 0x72 0x64 0x20 - 0x64 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 - 0x79 0x20 0x62 0x65 0x20 0x66 0x75 0x6C - 0x6C 0x2E 0x20 0x53 0x77 0x69 0x74 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E - 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 - 0x65 0x73 0x73 0x20 0x43 0x54 0x52 0x4C - 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 0x6E - 0x64 0x20 0x6D 0x6F 0x76 0x65 0x20 0x6F - 0x72 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 - 0x20 0x75 0x6E 0x6E 0x63 0x65 0x73 0x73 - 0x61 0x72 0x79 0x20 0x66 0x69 0x6C 0x65 - 0x73 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1208 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_D= 0x2000580D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1216 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x85 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xBA 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x69 0x6C 0x65 - 0x6E 0x61 0x6D 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x67 0x61 0x76 0x65 0x20 0x62 0x65 - 0x6C 0x6F 0x6E 0x67 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x73 0x70 0x65 0x63 0x69 - 0x61 0x6C 0x20 0x66 0x69 0x6C 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x6E 0x65 0x65 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x77 0x6F 0x72 0x6B - 0x20 0x70 0x72 0x6F 0x70 0x65 0x72 0x6C - 0x79 0x2E 0x20 0x49 0x74 0x20 0x69 0x73 - 0x20 0x75 0x73 0x65 0x64 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x62 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 0x74 - 0x65 0x72 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 - 0x72 0x79 0x20 0x74 0x79 0x70 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x61 0x67 0x61 0x69 0x6E - 0x2C 0x20 0x6F 0x72 0x20 0x74 0x79 0x70 - 0x65 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6E 0x61 0x6D 0x65 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1323 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_17= 0x20005817 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 1331 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x83 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x72 - 0x65 0x65 0x20 0x73 0x6F 0x6D 0x65 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x3A 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 - 0x4F 0x72 0x2C 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x6F 0x6E 0x65 0x20 0x6F - 0x72 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x6F 0x72 0x20 - 0x70 0x72 0x6F 0x70 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1444 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_1E= 0x2000581E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 1452 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x83 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xBF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x21 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x72 - 0x65 0x65 0x20 0x73 0x6F 0x6D 0x65 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x3A 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 - 0x4F 0x72 0x2C 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x6F 0x6E 0x65 0x20 0x6F - 0x72 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x20 0x6F 0x72 0x20 - 0x70 0x72 0x6F 0x70 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1565 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_1F= 0x2000581F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 1573 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0xB3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x01 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0x1A 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x01 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0x91 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x01 0x00 0x01 - 0x01 0x00 0xFB 0xFF 0xDD 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDE 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xDD 0x01 0x00 0x80 - 0x00 0x00 0x02 0x02 0xDE 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x73 0x61 0x76 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x72 0x69 0x67 0x68 0x74 0x20 - 0x6E 0x6F 0x77 0x2E 0x0D 0x0A 0x0D 0x0A - 0x54 0x72 0x79 0x20 0x74 0x68 0x65 0x73 - 0x65 0x20 0x73 0x75 0x67 0x67 0x65 0x73 - 0x74 0x69 0x6F 0x6E 0x73 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x74 0x72 0x79 0x20 0x73 0x61 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x67 0x61 0x69 0x6E - 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x42 - 0x65 0x20 0x73 0x75 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x68 0x61 0x76 0x65 0x20 - 0x61 0x74 0x20 0x6C 0x65 0x61 0x73 0x74 - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x20 0x6D - 0x61 0x79 0x20 0x62 0x65 0x20 0x6C 0x6F - 0x77 0x2E 0x20 0x53 0x77 0x69 0x74 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E - 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 - 0x65 0x73 0x73 0x20 0x43 0x54 0x52 0x4C - 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x68 0x61 0x72 0x64 0x20 0x64 0x72 0x69 - 0x76 0x65 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6C 0x6C 0x2E 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E - 0x6E 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x0D - 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x73 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x61 0x20 0x66 0x6C 0x6F 0x70 - 0x70 0x79 0x20 0x64 0x69 0x73 0x6B 0x2C - 0x20 0x62 0x65 0x20 0x73 0x75 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x64 0x69 0x73 - 0x6B 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x72 0x69 0x76 - 0x65 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x20 - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1723 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_25= 0x20005825 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 1731 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2D 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x98 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE3 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2D 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0xE3 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE3 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6E - 0x6F 0x77 0x2E 0x20 0x54 0x68 0x69 0x73 - 0x20 0x6D 0x61 0x79 0x20 0x6D 0x65 0x61 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x64 0x6F - 0x6E 0x27 0x74 0x20 0x68 0x61 0x76 0x65 - 0x20 0x70 0x65 0x72 0x6D 0x69 0x73 0x73 - 0x69 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x6F 0x72 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x69 0x73 0x6E 0x27 0x74 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 0x73 - 0x70 0x61 0x63 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x61 0x76 0x65 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 - 0x74 0x68 0x65 0x73 0x65 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x69 0x6F 0x6E - 0x73 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 - 0x49 0x66 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x69 0x73 0x20 - 0x22 0x52 0x65 0x61 0x64 0x20 0x4F 0x6E - 0x6C 0x79 0x2C 0x22 0x20 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x50 0x6F 0x72 0x74 - 0x66 0x6F 0x6C 0x69 0x6F 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x61 0x76 - 0x65 0x20 0x41 0x73 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 0x74 - 0x79 0x70 0x65 0x20 0x61 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x6E 0x61 0x6D 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x20 0x41 - 0x6C 0x73 0x6F 0x2C 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C - 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E 0x65 - 0x63 0x65 0x73 0x73 0x61 0x72 0x79 0x20 - 0x66 0x69 0x6C 0x65 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x2A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x73 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x61 0x20 0x66 0x6C 0x6F 0x70 0x70 - 0x79 0x20 0x64 0x69 0x73 0x6B 0x2C 0x20 - 0x62 0x65 0x20 0x73 0x75 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x64 0x69 0x73 0x6B - 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x72 0x69 0x76 0x65 - 0x2E 0x20 0x20 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 1878 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_27= 0x20005827 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 1886 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xC1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x8A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2D 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x89 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x89 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x73 0x77 0x69 0x74 0x63 0x68 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D - 0x0A 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F - 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 0x73 - 0x20 0x68 0x61 0x72 0x64 0x20 0x64 0x72 - 0x69 0x76 0x65 0x20 0x69 0x73 0x20 0x66 - 0x75 0x6C 0x6C 0x2E 0x20 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 0x20 - 0x75 0x6E 0x6E 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x20 0x66 0x69 0x6C 0x65 0x73 - 0x20 0x6F 0x72 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F - 0x20 0x66 0x6C 0x6F 0x70 0x70 0x79 0x20 - 0x64 0x69 0x73 0x6B 0x2E 0x20 0x20 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x6D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x54 0x61 - 0x73 0x6B 0x20 0x42 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x72 0x79 0x20 0x73 - 0x77 0x69 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x73 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2024 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_28= 0x20005828 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 2032 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x17 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x73 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x72 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x72 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 - 0x20 0x63 0x68 0x6F 0x70 0x20 0x74 0x68 - 0x69 0x73 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6E - 0x6F 0x77 0x2E 0x0D 0x0A 0x0D 0x0A 0x4D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x27 0x73 0x20 0x68 0x61 0x72 - 0x64 0x20 0x64 0x72 0x69 0x76 0x65 0x20 - 0x69 0x73 0x20 0x66 0x75 0x6C 0x6C 0x2E - 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 - 0x69 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 - 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 - 0x28 0x70 0x72 0x65 0x73 0x73 0x20 0x43 - 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 - 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C - 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E 0x65 - 0x63 0x65 0x73 0x73 0x61 0x72 0x79 0x20 - 0x66 0x69 0x6C 0x65 0x73 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x6D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 0x68 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x54 0x61 - 0x73 0x6B 0x20 0x42 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x72 0x79 0x20 0x63 - 0x68 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2167 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_29= 0x20005829 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 2175 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xD1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x74 0x72 0x69 0x65 - 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 0x77 - 0x65 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x66 - 0x69 0x6C 0x65 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x49 0x74 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x6C 0x65 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x6F 0x73 0x65 0x20 0x69 0x73 0x20 - 0x62 0x72 0x6F 0x6B 0x65 0x6E 0x2C 0x20 - 0x6F 0x72 0x20 0x69 0x73 0x20 0x6E 0x6F - 0x74 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x66 0x69 0x6C 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x69 0x74 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x27 0x74 0x20 0x68 0x61 - 0x76 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x77 0x65 0x20 0x63 0x61 0x6E - 0x20 0x63 0x6F 0x70 0x79 0x2E 0x0D 0x0A - 0x0D 0x0A 0x54 0x72 0x79 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x66 0x69 0x6C 0x65 0x20 0x69 - 0x6E 0x73 0x74 0x65 0x61 0x64 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2284 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2A= 0x2000582A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 2292 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x57 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x21 0x20 0x20 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 0x65 - 0x78 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x74 0x65 0x78 0x74 0x20 0x62 0x6F 0x78 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x68 0x61 - 0x76 0x65 0x20 0x74 0x6F 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x66 - 0x69 0x72 0x73 0x74 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2382 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2B= 0x2000582B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 2390 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x44 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x64 0x6F 0x20 - 0x74 0x68 0x69 0x73 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x66 0x69 0x72 0x73 0x74 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2477 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2C= 0x2000582C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 2485 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x56 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x95 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xFE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x01 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x01 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xFE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x53 0x68 0x65 0x77 0x21 0x20 - 0x20 0x53 0x69 0x6E 0x63 0x65 0x20 0x73 - 0x70 0x61 0x63 0x65 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x68 0x65 0x72 0x65 - 0x20 0x69 0x73 0x20 0x67 0x65 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x69 0x67 0x68 - 0x74 0x2C 0x20 0x77 0x65 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x6E 0x6F 0x74 0x20 0x62 - 0x65 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 - 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 0x74 - 0x68 0x69 0x73 0x2E 0x0D 0x0A 0x0D 0x0A - 0x4A 0x75 0x73 0x74 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x73 0x61 0x66 0x65 0x2C - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x6E 0x6F 0x77 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x2B 0x53 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 - 0x68 0x65 0x6E 0x20 0x66 0x72 0x65 0x65 - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x73 0x70 - 0x61 0x63 0x65 0x20 0x6F 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2613 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2D= 0x2000582D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 2621 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x93 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x91 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x93 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 0x64 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x61 0x64 0x64 0x20 0x61 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x0D 0x0A 0x31 0x20 0x20 - 0x49 0x6E 0x20 0x74 0x68 0x65 0x20 0x53 - 0x74 0x75 0x64 0x69 0x6F 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x20 0x43 0x68 0x6F 0x69 0x63 - 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2723 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2E= 0x2000582E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 2731 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xBE 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x57 0x65 0x20 0x74 0x72 0x69 - 0x65 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x77 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x6E 0x27 0x74 0x20 0x6F 0x70 0x65 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x49 0x74 0x20 - 0x77 0x61 0x73 0x20 0x63 0x72 0x65 0x61 - 0x74 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x65 0x72 0x20 0x76 - 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 0x6F - 0x66 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x69 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x20 0x76 0x65 0x72 0x73 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x20 0x69 0x6E 0x20 0x77 - 0x68 0x69 0x63 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x61 0x73 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x64 0x2E 0x20 0x0D 0x0A 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2838 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_2F= 0x2000582F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 2846 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xBF 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x72 0x65 0x27 0x73 0x20 - 0x6E 0x6F 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 - 0x2E 0x2E 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 - 0x72 0x79 0x20 0x67 0x6F 0x69 0x6E 0x67 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x61 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x20 0x6F 0x72 - 0x20 0x73 0x6F 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x54 0x68 0x65 0x6E 0x20 0x75 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x43 - 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 0x68 - 0x20 0x54 0x6F 0x6F 0x6C 0x20 0x28 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x29 0x20 0x74 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6F 0x72 0x20 0x77 0x6F - 0x72 0x64 0x2E 0x20 0x20 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 2955 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_30= 0x20005830 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 2963 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x62 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xB5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x74 0x68 0x65 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x73 0x6C 0x69 0x64 0x65 - 0x72 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x73 0x68 0x6F 0x77 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x61 0x6C 0x20 0x6C 0x65 - 0x6E 0x67 0x74 0x68 0x20 0x6F 0x66 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x6D 0x65 0x6D 0x6F 0x72 - 0x79 0x20 0x69 0x73 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x6F 0x77 0x21 - 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 - 0x72 0x65 0x65 0x20 0x6D 0x65 0x6D 0x6F - 0x72 0x79 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3069 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_31= 0x20005831 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 3077 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x30 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x17 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x66 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x69 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xD4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x15 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x66 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x68 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x61 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x6E 0x6F 0x77 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x59 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 - 0x73 0x20 0x68 0x61 0x72 0x64 0x20 0x64 - 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x66 0x75 0x6C 0x6C - 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 - 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x6D - 0x61 0x79 0x62 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A 0x20 - 0x20 0x53 0x77 0x69 0x74 0x63 0x68 0x20 - 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F - 0x77 0x73 0x20 0x28 0x70 0x72 0x65 0x73 - 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 - 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x54 0x68 0x65 0x6E 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x54 0x61 0x73 0x6B 0x20 - 0x42 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x72 0x79 0x20 0x67 0x6F 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3213 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_32= 0x20005832 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 3221 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x9A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x08 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x57 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x98 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x06 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x57 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x59 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x64 0x65 0x6C 0x65 0x74 0x65 - 0x20 0x74 0x68 0x61 0x74 0x2E 0x0D 0x0A - 0x0D 0x0A 0x59 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x27 - 0x73 0x20 0x68 0x61 0x72 0x64 0x20 0x64 - 0x72 0x69 0x76 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x62 0x65 0x20 0x66 0x75 0x6C 0x6C - 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 0x65 - 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E 0x6E - 0x65 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 - 0x6D 0x61 0x79 0x62 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 - 0x74 0x65 0x72 0x20 0x69 0x73 0x20 0x6C - 0x6F 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 - 0x6D 0x6F 0x72 0x79 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x54 - 0x61 0x73 0x6B 0x20 0x42 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x72 0x79 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3355 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_33= 0x20005833 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 3363 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xB5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE5 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xE7 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE7 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xE7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xB7 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xE7 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x69 0x73 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x64 0x6F 0x65 0x73 0x6E - 0x27 0x74 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 0x64 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x2E 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x74 0x68 0x69 0x73 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x6B 0x6E 0x6F 0x77 - 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F 0x20 - 0x64 0x6F 0x0D 0x0A 0x31 0x20 0x20 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E 0x20 0x0D 0x0A - 0x32 0x20 0x20 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2E 0x0D 0x0A 0x33 0x20 0x20 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x72 0x65 - 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 0x0D - 0x0A 0x34 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x4F 0x4B 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3480 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_34= 0x20005834 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 3488 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x39 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDF 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2C - 0x20 0x62 0x75 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x69 - 0x73 0x20 0x68 0x65 0x72 0x65 0x2D 0x2D - 0x69 0x74 0x20 0x77 0x6F 0x6E 0x27 0x74 - 0x20 0x73 0x74 0x69 0x63 0x6B 0x2E 0x0D - 0x0A 0x0D 0x0A 0x54 0x72 0x79 0x20 0x70 - 0x61 0x73 0x74 0x69 0x6E 0x67 0x20 0x69 - 0x74 0x20 0x6F 0x6E 0x20 0x73 0x6F 0x6D - 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x61 0x74 0x20 0x69 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 - 0x6F 0x75 0x27 0x72 0x65 0x20 0x70 0x61 - 0x73 0x74 0x69 0x6E 0x67 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x46 0x6F 0x72 0x20 0x65 - 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x70 0x61 0x73 0x74 0x65 0x20 0x74 0x65 - 0x78 0x74 0x20 0x69 0x6E 0x20 0x77 0x69 - 0x74 0x68 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x74 0x65 0x78 0x74 0x2E 0x20 0x42 - 0x75 0x74 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x27 0x74 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x74 0x65 0x78 0x74 0x20 - 0x6F 0x6E 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 3602 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_35= 0x20005835 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 3610 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x39 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x59 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x59 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x53 0x6F 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x69 0x73 0x20 0x33 0x44 0x20 0x66 - 0x6F 0x6E 0x74 0x20 0x61 0x72 0x65 0x20 - 0x6D 0x69 0x73 0x73 0x69 0x6E 0x67 0x0D - 0x0A 0x0D 0x0A 0x50 0x6C 0x65 0x61 0x73 - 0x65 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x66 0x6F 0x6E 0x74 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3704 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_36= 0x20005836 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 3712 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x41 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x69 0x73 0x20 0x6E - 0x61 0x6D 0x65 0x20 0x69 0x73 0x20 0x74 - 0x6F 0x6F 0x6F 0x6F 0x6F 0x20 0x6C 0x6F - 0x6F 0x6F 0x6F 0x6F 0x6E 0x67 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x50 0x6C 0x65 0x61 - 0x73 0x65 0x20 0x74 0x79 0x70 0x65 0x20 - 0x61 0x20 0x73 0x68 0x6F 0x72 0x74 0x65 - 0x72 0x20 0x6E 0x61 0x6D 0x65 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3803 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_37= 0x20005837 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 3811 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x1E 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x54 0x65 0x78 0x74 0x20 0x62 - 0x6F 0x78 0x20 0x69 0x73 0x20 0x74 0x6F - 0x6F 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x0D - 0x0A 0x0D 0x0A 0x43 0x55 0x54 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 3892 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_38= 0x20005838 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 3900 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x53 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDC 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xDE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x6F 0x70 0x73 - 0x2E 0x20 0x53 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x27 0x73 0x20 0x6D 0x69 - 0x73 0x73 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x72 0x65 0x2E 0x20 0x53 0x6F 0x6D 0x65 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x20 0x77 - 0x65 0x20 0x6E 0x65 0x65 0x64 0x20 0x61 - 0x72 0x65 0x20 0x6D 0x69 0x73 0x73 0x69 - 0x6E 0x67 0x20 0x6F 0x72 0x20 0x61 0x72 - 0x65 0x20 0x62 0x72 0x6F 0x6B 0x65 0x6E - 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x66 0x69 0x78 0x20 0x74 0x68 0x69 0x73 - 0x20 0x70 0x72 0x6F 0x62 0x6C 0x65 0x6D - 0x2C 0x20 0x70 0x6C 0x65 0x61 0x73 0x65 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x45 - 0x78 0x69 0x74 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x72 0x75 - 0x6E 0x20 0x4D 0x69 0x63 0x72 0x6F 0x73 - 0x6F 0x66 0x74 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x53 0x65 0x74 0x75 0x70 - 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E 0x20 - 0x28 0x53 0x65 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6A 0x65 0x77 0x65 0x6C 0x63 - 0x61 0x73 0x65 0x20 0x62 0x6F 0x6F 0x6B - 0x6C 0x65 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x69 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x2E 0x29 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4011 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_39= 0x20005839 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 4019 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x3F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x62 0x65 0x20 0x35 - 0x30 0x20 0x63 0x68 0x61 0x72 0x61 0x63 - 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F 0x6E - 0x67 0x0D 0x0A 0x4E 0x4F 0x20 0x4C 0x4F - 0x4E 0x47 0x45 0x52 0x20 0x41 0x50 0x50 - 0x4C 0x49 0x43 0x41 0x42 0x4C 0x45 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4104 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3A= 0x2000583A - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 4112 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x40 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x74 0x68 0x69 0x73 0x20 0x33 0x44 0x20 - 0x66 0x6F 0x6E 0x74 0x20 0x69 0x73 0x20 - 0x62 0x72 0x6F 0x6B 0x65 0x6E 0x2E 0x0D - 0x0A 0x0D 0x0A 0x50 0x6C 0x65 0x61 0x73 - 0x65 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x66 0x6F 0x6E 0x74 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4203 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3B= 0x2000583B - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 4211 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x41 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x79 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xF9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xF9 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2C 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x27 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x77 0x69 0x74 0x68 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x2C 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x77 0x69 0x74 - 0x68 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x73 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x69 0x73 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E 0x0D - 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 0x69 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x73 0x20 - 0x6F 0x72 0x20 0x73 0x70 0x65 0x65 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x74 0x68 0x69 - 0x73 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x53 0x70 0x65 0x65 0x63 0x68 - 0x20 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x45 0x66 0x66 0x65 0x63 0x74 - 0x73 0x20 0x54 0x6F 0x6F 0x6C 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4327 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3C= 0x2000583C - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 4335 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xC0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC0 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xC0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x41 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x6F 0x6E 0x64 0x65 0x72 0x69 0x6E - 0x67 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x74 0x68 0x6F 0x73 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x61 0x72 0x65 0x3F 0x0D 0x0A 0x0D - 0x0A 0x43 0x68 0x61 0x6E 0x63 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x77 0x61 0x73 0x20 0x6C - 0x6F 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 - 0x6D 0x6F 0x72 0x79 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x77 0x65 0x20 0x62 0x72 0x6F - 0x75 0x67 0x68 0x74 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x54 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x68 0x6F 0x77 0x20 0x75 0x70 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x72 0x65 0x73 0x74 0x61 0x72 - 0x74 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4443 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3D= 0x2000583D - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 4451 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x61 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xFC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x61 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xFA 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xFC 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x48 0x75 0x6D 0x6D 0x6D 0x2E - 0x20 0x41 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x6F 0x6E 0x64 0x65 0x72 0x69 - 0x6E 0x67 0x20 0x77 0x68 0x79 0x20 0x74 - 0x68 0x65 0x73 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x61 0x72 0x65 0x20 - 0x73 0x74 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x6F 0x77 0x69 0x6E 0x67 0x20 0x75 0x70 - 0x20 0x61 0x66 0x74 0x65 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x65 0x6C 0x65 0x74 - 0x65 0x64 0x20 0x74 0x68 0x65 0x69 0x72 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x3F 0x0D - 0x0A 0x0D 0x0A 0x43 0x68 0x61 0x6E 0x63 - 0x65 0x73 0x20 0x61 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x20 0x77 0x61 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x65 0x6C 0x65 0x74 0x65 0x64 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E - 0x20 0x44 0x6F 0x6E 0x27 0x74 0x20 0x77 - 0x6F 0x72 0x72 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x6D 0x61 0x79 0x20 0x73 0x74 0x69 0x6C - 0x6C 0x20 0x61 0x70 0x70 0x65 0x61 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x74 0x68 - 0x65 0x79 0x20 0x77 0x6F 0x6E 0x27 0x74 - 0x20 0x62 0x65 0x20 0x75 0x73 0x65 0x64 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4567 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3E= 0x2000583E - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 4575 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x84 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC3 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0xD6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x1A 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x1C 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x2C - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x73 0x6F 0x72 0x74 0x65 - 0x72 0x20 0x64 0x69 0x64 0x6E 0x27 0x74 - 0x20 0x77 0x6F 0x72 0x6B 0x20 0x63 0x6F - 0x72 0x72 0x65 0x63 0x74 0x6C 0x79 0x2E - 0x0D 0x0A 0x0D 0x0A 0x54 0x68 0x69 0x73 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x62 0x65 0x63 0x61 0x75 0x73 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x63 - 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 0x20 - 0x69 0x73 0x20 0x6C 0x6F 0x77 0x20 0x6F - 0x6E 0x20 0x6D 0x65 0x6D 0x6F 0x72 0x79 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x53 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D - 0x0A 0x31 0x20 0x20 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 - 0x72 0x6C 0x2B 0x53 0x20 0x74 0x6F 0x20 - 0x73 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x0D 0x0A 0x32 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x20 0x2B 0x45 0x53 0x43 0x29 - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x73 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4703 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_3F= 0x2000583F - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 4711 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x72 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x0A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x34 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB1 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0xC4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x08 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x0A 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x44 0x75 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x63 0x68 0x6E 0x69 0x63 - 0x61 0x6C 0x20 0x64 0x69 0x66 0x66 0x69 - 0x63 0x75 0x6C 0x74 0x69 0x65 0x73 0x2C - 0x20 0x77 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x73 0x6F 0x72 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x73 0x2E 0x0D 0x0A - 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x53 0x61 0x76 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x70 0x72 0x6F 0x67 - 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x31 - 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x2B 0x53 0x20 0x74 0x6F 0x20 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x0D 0x0A - 0x32 0x20 0x20 0x53 0x77 0x69 0x74 0x63 - 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E - 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 - 0x65 0x73 0x73 0x20 0x43 0x54 0x52 0x4C - 0x20 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4838 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_40= 0x20005840 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 4846 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA7 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x43 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xAC 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xEA 0x00 0x00 0x03 - 0x0E 0x00 0x00 0xFD 0xFD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x43 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0xAC 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0xAC 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x73 0x74 0x61 0x72 0x74 0x20 - 0x74 0x68 0x65 0x20 0x53 0x70 0x6C 0x6F - 0x74 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E - 0x65 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x62 0x65 - 0x20 0x73 0x75 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x43 0x44 0x20 0x69 0x73 0x20 - 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 0x6C - 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x72 0x69 0x76 0x65 0x2E - 0x20 0x49 0x66 0x20 0x69 0x74 0x20 0x69 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x69 0x74 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x20 0x69 0x73 0x20 - 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 0x6D - 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x73 0x0D 0x0A - 0x31 0x20 0x20 0x48 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 - 0x6C 0x2B 0x53 0x20 0x74 0x6F 0x20 0x73 - 0x61 0x76 0x65 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x0D - 0x0A 0x32 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x20 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x49 0x66 0x20 - 0x74 0x68 0x69 0x73 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x27 0x74 0x20 0x77 0x6F 0x72 - 0x6B 0x2C 0x20 0x74 0x72 0x79 0x20 0x72 - 0x65 0x69 0x6E 0x73 0x74 0x61 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x20 0x28 0x73 0x65 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6A 0x65 0x77 - 0x65 0x6C 0x63 0x61 0x73 0x65 0x20 0x62 - 0x6F 0x6F 0x6B 0x6C 0x65 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x69 0x6E 0x73 0x74 0x72 - 0x75 0x63 0x74 0x69 0x6F 0x6E 0x73 0x29 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4996 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_41= 0x20005841 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 5004 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x7B 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x7D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x6C 0x6C 0x20 - 0x79 0x6F 0x75 0x20 0x67 0x6F 0x74 0x20 - 0x77 0x61 0x73 0x20 0x73 0x69 0x6C 0x65 - 0x6E 0x63 0x65 0x3F 0x20 0x0D 0x0A 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x63 0x6F - 0x72 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x2C 0x20 0x79 0x6F 0x75 0x20 0x6E - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x69 - 0x6E 0x73 0x74 0x61 0x6C 0x6C 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 - 0x61 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x69 0x63 0x72 0x6F 0x70 0x68 0x6F - 0x6E 0x65 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5102 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_43= 0x20005843 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 5110 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x11 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x87 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x87 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x88 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x0F 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x87 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x87 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x6F 0x70 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x50 0x6F 0x72 0x74 0x66 - 0x6F 0x6C 0x69 0x6F 0x2E 0x0D 0x0A 0x0D - 0x0A 0x43 0x68 0x61 0x6E 0x63 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x6F 0x6D 0x70 0x75 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x6C 0x6F - 0x77 0x20 0x6F 0x6E 0x20 0x6D 0x65 0x6D - 0x6F 0x72 0x79 0x2C 0x20 0x6F 0x72 0x20 - 0x79 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x72 0x65 0x69 0x6E - 0x73 0x74 0x61 0x6C 0x6C 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x2E 0x0D 0x0A 0x2A - 0x20 0x20 0x53 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x57 0x69 0x6E 0x64 - 0x6F 0x77 0x73 0x20 0x28 0x70 0x72 0x65 - 0x73 0x73 0x20 0x43 0x54 0x52 0x4C 0x2B - 0x45 0x53 0x43 0x29 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x72 0x6F - 0x67 0x72 0x61 0x6D 0x73 0x2E 0x0D 0x0A - 0x2A 0x20 0x20 0x46 0x6F 0x72 0x20 0x69 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x6F 0x6E 0x20 0x72 - 0x65 0x69 0x6E 0x73 0x74 0x61 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x33 0x44 0x20 0x4D - 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 0x6B - 0x65 0x72 0x2C 0x20 0x73 0x65 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6A 0x65 0x77 - 0x65 0x6C 0x63 0x61 0x73 0x65 0x20 0x62 - 0x6F 0x6F 0x6B 0x6C 0x65 0x74 0x2E 0x0D - 0x0A 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x20 0x66 0x69 0x6E 0x69 - 0x73 0x68 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x54 0x61 0x73 0x6B 0x20 0x42 0x61 0x72 - 0x2C 0x20 0x6F 0x72 0x20 0x72 0x65 0x73 - 0x74 0x61 0x72 0x74 0x20 0x74 0x68 0x65 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x50 0x6F 0x72 - 0x74 0x66 0x6F 0x6C 0x69 0x6F 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5245 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_44= 0x20005844 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 5253 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF0 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xF2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x35 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x01 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x8F 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x91 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xF0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x33 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x91 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x91 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x53 0x74 0x75 0x64 - 0x69 0x6F 0x2E 0x0D 0x0A 0x0D 0x0A 0x46 - 0x69 0x72 0x73 0x74 0x2C 0x20 0x62 0x65 - 0x20 0x73 0x75 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x43 0x44 0x20 0x69 0x73 0x20 - 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 0x6C - 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x72 0x69 0x76 0x65 0x2E - 0x20 0x49 0x66 0x20 0x69 0x74 0x20 0x69 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x69 0x74 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D 0x70 - 0x75 0x74 0x65 0x72 0x27 0x73 0x20 0x68 - 0x61 0x72 0x64 0x20 0x64 0x72 0x69 0x76 - 0x65 0x20 0x69 0x73 0x20 0x66 0x75 0x6C - 0x6C 0x2E 0x20 0x0D 0x0A 0x2A 0x20 0x20 - 0x53 0x77 0x69 0x74 0x63 0x68 0x20 0x74 - 0x6F 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 - 0x73 0x20 0x28 0x70 0x72 0x65 0x73 0x73 - 0x20 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 - 0x43 0x29 0x20 0x61 0x6E 0x64 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x6F 0x72 0x20 0x64 - 0x65 0x6C 0x65 0x74 0x65 0x20 0x75 0x6E - 0x6E 0x63 0x65 0x73 0x73 0x61 0x72 0x79 - 0x20 0x66 0x69 0x6C 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x2A 0x20 0x20 0x53 - 0x77 0x69 0x74 0x63 0x68 0x20 0x74 0x6F - 0x20 0x57 0x69 0x6E 0x64 0x6F 0x77 0x73 - 0x20 0x28 0x70 0x72 0x65 0x73 0x73 0x20 - 0x43 0x54 0x52 0x4C 0x2B 0x45 0x53 0x43 - 0x29 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 - 0x6D 0x73 0x2E 0x0D 0x0A 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x54 0x61 0x73 0x6B - 0x20 0x42 0x61 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x72 0x79 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x53 0x74 0x75 0x64 0x69 0x6F - 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5395 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_45= 0x20005845 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 5403 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA0 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xA2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 0x6D - 0x69 0x67 0x68 0x74 0x20 0x62 0x65 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5507 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_46= 0x20005846 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 5515 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xA2 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x54 0x68 0x69 0x73 0x20 0x6D - 0x69 0x67 0x68 0x74 0x20 0x62 0x65 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6C 0x6F 0x77 0x20 0x6F 0x6E 0x20 - 0x6D 0x65 0x6D 0x6F 0x72 0x79 0x2E 0x0D - 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 0x74 - 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 0x70 - 0x72 0x65 0x73 0x73 0x20 0x43 0x54 0x52 - 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x73 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5618 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_47= 0x20005848 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 5626 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x29 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x21 0x20 0x20 0x50 - 0x6C 0x65 0x61 0x73 0x65 0x20 0x74 0x79 - 0x70 0x65 0x20 0x61 0x20 0x6E 0x61 0x6D - 0x65 0x20 0x66 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x72 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5712 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_48= 0x20005849 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 5720 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xA3 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xA5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xA5 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x73 0x79 0x20 0x73 - 0x69 0x67 0x6E 0x61 0x6C 0x21 0x20 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x61 0x72 0x64 0x20 - 0x69 0x73 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x62 0x65 0x69 0x6E 0x67 - 0x20 0x75 0x73 0x65 0x64 0x20 0x62 0x79 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x2E 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x77 0x69 0x74 0x68 0x20 0x33 - 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 - 0x4D 0x61 0x6B 0x65 0x72 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x61 0x77 0x61 0x79 - 0x2C 0x20 0x73 0x77 0x69 0x74 0x63 0x68 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x20 - 0x69 0x74 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5823 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_49= 0x2000584E - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 5831 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x37 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCC 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xCE 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xD0 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x6F 0x61 0x21 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6D 0x6F 0x74 - 0x69 0x6F 0x6E 0x2D 0x6D 0x61 0x74 0x63 - 0x68 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x73 0x2E 0x0D 0x0A 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x4D 0x6F 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x20 0x54 - 0x6F 0x6F 0x6C 0x2C 0x20 0x66 0x69 0x72 - 0x73 0x74 0x2C 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x28 - 0x69 0x6E 0x73 0x74 0x65 0x61 0x64 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x29 0x20 0x74 0x6F 0x20 0x6D 0x61 - 0x74 0x63 0x68 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x6E 0x64 0x20 0x6D 0x6F - 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5940 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4A= 0x20005851 - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 5948 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xBA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x01 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x37 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x37 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x37 0x01 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x57 0x65 0x27 0x72 0x65 0x20 - 0x68 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 - 0x72 0x6F 0x75 0x62 0x6C 0x65 0x20 0x63 - 0x6F 0x70 0x79 0x69 0x6E 0x67 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x69 0x6E 0x66 0x6F - 0x72 0x6D 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x43 0x44 0x2D 0x52 0x4F 0x4D 0x20 - 0x74 0x6F 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x2E 0x20 0x0D 0x0A 0x0D 0x0A 0x54 0x68 - 0x69 0x73 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x62 0x65 0x63 0x61 0x75 0x73 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x43 - 0x44 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 - 0x20 0x63 0x6F 0x72 0x72 0x65 0x63 0x74 - 0x6C 0x79 0x20 0x69 0x6E 0x73 0x65 0x72 - 0x74 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x72 0x69 0x76 0x65 - 0x2C 0x20 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x43 0x44 0x2D 0x52 0x4F 0x4D 0x20 - 0x68 0x61 0x73 0x20 0x64 0x75 0x73 0x74 - 0x20 0x6F 0x6E 0x20 0x69 0x74 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x4F 0x72 0x2C 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x75 0x74 0x65 0x72 0x27 0x73 0x20 - 0x68 0x61 0x72 0x64 0x20 0x64 0x72 0x69 - 0x76 0x65 0x20 0x6D 0x61 0x79 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6C 0x6C 0x2E 0x20 - 0x0D 0x0A 0x2A 0x20 0x20 0x53 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x57 - 0x69 0x6E 0x64 0x6F 0x77 0x73 0x20 0x28 - 0x70 0x72 0x65 0x73 0x73 0x20 0x43 0x54 - 0x52 0x4C 0x2B 0x45 0x53 0x43 0x29 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x6F 0x72 0x20 0x64 0x65 0x6C 0x65 - 0x74 0x65 0x20 0x75 0x6E 0x6E 0x63 0x65 - 0x73 0x73 0x61 0x72 0x79 0x20 0x66 0x69 - 0x6C 0x65 0x73 0x2E 0x20 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6072 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4B= 0x20005852 - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 6080 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x5E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x7F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x5A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x7F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x79 0x70 0x65 0x64 0x20 0x77 0x6F 0x6E - 0x27 0x74 0x20 0x77 0x6F 0x72 0x6B 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x69 0x74 0x20 0x69 0x73 0x20 0x74 0x6F - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x68 0x61 0x73 0x20 0x63 0x68 - 0x61 0x72 0x61 0x63 0x74 0x65 0x72 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x63 0x61 - 0x6E 0x27 0x74 0x20 0x62 0x65 0x20 0x75 - 0x73 0x65 0x64 0x2E 0x0D 0x0A 0x0D 0x0A - 0x50 0x6C 0x65 0x61 0x73 0x65 0x20 0x74 - 0x79 0x70 0x65 0x20 0x61 0x20 0x64 0x69 - 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 0x20 - 0x6E 0x61 0x6D 0x65 0x2E 0x0D 0x0A 0x0D - 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6178 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4D= 0x20005850 - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 6186 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0xE4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE4 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0xE4 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x2E 0x20 - 0x4F 0x6E 0x65 0x20 0x6F 0x72 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x66 0x6F 0x6E 0x74 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x33 0x44 - 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D - 0x61 0x6B 0x65 0x72 0x20 0x6E 0x65 0x65 - 0x64 0x73 0x20 0x61 0x72 0x65 0x20 0x6D - 0x69 0x73 0x73 0x69 0x6E 0x67 0x2E 0x20 - 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 0x72 - 0x65 0x70 0x6C 0x61 0x63 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x73 0x73 0x69 - 0x6E 0x67 0x20 0x66 0x6F 0x6E 0x74 0x73 - 0x2C 0x20 0x64 0x65 0x2D 0x69 0x6E 0x73 - 0x74 0x61 0x6C 0x6C 0x20 0x4D 0x69 0x63 - 0x72 0x6F 0x73 0x6F 0x66 0x74 0x20 0x33 - 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 - 0x4D 0x61 0x6B 0x65 0x72 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x72 0x75 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x53 0x65 0x74 0x75 0x70 0x20 0x70 0x72 - 0x6F 0x67 0x72 0x61 0x6D 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x20 0x28 0x73 0x65 0x65 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6A 0x65 - 0x77 0x65 0x6C 0x63 0x61 0x73 0x65 0x20 - 0x62 0x6F 0x6F 0x6B 0x6C 0x65 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x69 0x6E 0x73 0x74 - 0x72 0x75 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x29 0x2E 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6296 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4E= 0x2000584D - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 6304 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x87 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x86 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x27 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x62 0x72 0x6F - 0x6B 0x65 0x6E 0x2E 0x0D 0x0A 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x62 - 0x72 0x6F 0x6B 0x65 0x6E 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x73 0x2C 0x20 0x72 0x75 - 0x6E 0x20 0x53 0x65 0x74 0x75 0x70 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x20 0x28 0x73 - 0x65 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6A 0x65 0x77 0x65 0x6C 0x63 0x61 0x73 - 0x65 0x20 0x62 0x6F 0x6F 0x6B 0x6C 0x65 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x69 0x6E - 0x73 0x74 0x72 0x75 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x29 0x2E 0x0D 0x0A 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6404 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_4F= 0x2000584F - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 6412 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x71 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x73 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x63 0x61 0x6E 0x27 - 0x74 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x61 0x74 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x66 0x69 0x6C 0x65 0x2E 0x0D 0x0A - 0x0D 0x0A 0x54 0x72 0x79 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x66 0x69 0x6C 0x65 0x20 0x6F - 0x72 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x2E - 0x0D 0x0A 0x20 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6509 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_50= 0x2000584C - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 6517 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7E 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x80 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x80 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7E 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x80 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x27 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x20 0x61 0x72 0x65 0x20 0x6D 0x69 0x73 - 0x73 0x69 0x6E 0x67 0x2E 0x0D 0x0A 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x70 0x6C - 0x61 0x63 0x65 0x20 0x68 0x65 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2C 0x20 - 0x72 0x75 0x6E 0x20 0x53 0x65 0x74 0x75 - 0x70 0x20 0x61 0x67 0x61 0x69 0x6E 0x20 - 0x28 0x73 0x65 0x65 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6A 0x65 0x77 0x65 0x6C 0x63 - 0x61 0x73 0x65 0x20 0x62 0x6F 0x6F 0x6B - 0x6C 0x65 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x69 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 - 0x69 0x6F 0x6E 0x73 0x29 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6617 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_51= 0x2000584A - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 6625 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x3F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x99 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x98 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x57 0x65 0x20 0x74 0x72 0x69 0x65 - 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x6E 0x27 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x77 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x75 0x73 0x65 0x2E 0x0D 0x0A 0x0D - 0x0A 0x54 0x72 0x79 0x20 0x75 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x66 0x69 0x6C 0x65 0x2C 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x66 - 0x69 0x6C 0x65 0x2C 0x20 0x6F 0x72 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x33 - 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 0x20 - 0x4D 0x61 0x6B 0x65 0x72 0x2E 0x0D 0x0A - 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6727 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_52= 0x20005853 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 6735 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x94 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x96 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x27 0x74 0x20 0x67 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x53 0x74 0x75 - 0x64 0x69 0x6F 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x68 0x65 0x72 0x65 0x20 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x65 0x74 0x68 0x6F 0x64 0x2E - 0x20 0x0D 0x0A 0x0D 0x0A 0x54 0x6F 0x20 - 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x53 0x74 0x75 0x64 0x69 0x6F - 0x2C 0x20 0x63 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x6F 0x20 0x65 0x69 0x74 0x68 - 0x65 0x72 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x6F 0x72 0x20 0x77 - 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 0x61 - 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x0D 0x0A - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6837 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_53= 0x20005854 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 6845 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x6A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x2E - 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 0x6E - 0x27 0x74 0x20 0x67 0x65 0x74 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x4D 0x61 - 0x70 0x20 0x66 0x72 0x6F 0x6D 0x20 0x68 - 0x65 0x72 0x65 0x2E 0x20 0x20 0x20 0x0D - 0x0A 0x0D 0x0A 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x72 0x6F 0x6F 0x6D - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x62 0x75 0x69 0x6C 0x64 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x64 0x20 0x74 0x72 - 0x79 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6942 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_54= 0x20005855 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 6950 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x01 0x00 0xFC 0xFF 0xFF 0x00 0x00 0x01 - 0x00 0x00 0xFC 0xFF 0x01 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x05 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x01 0x01 0x00 0x80 - 0x00 0x00 0x00 0x02 0x01 0x01 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x73 0x79 0x20 0x73 - 0x69 0x67 0x6E 0x61 0x6C 0x21 0x20 0x41 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x20 0x69 - 0x73 0x20 0x75 0x73 0x69 0x6E 0x67 0x20 - 0x4D 0x49 0x44 0x49 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x6E 0x6F 0x77 0x2C 0x20 - 0x6F 0x72 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x63 0x61 - 0x72 0x64 0x20 0x6D 0x61 0x79 0x20 0x6E - 0x6F 0x74 0x20 0x62 0x65 0x20 0x73 0x65 - 0x74 0x20 0x75 0x70 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x4D 0x49 0x44 - 0x49 0x2E 0x0D 0x0A 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x63 0x61 0x72 0x64 - 0x20 0x69 0x73 0x20 0x73 0x65 0x74 0x20 - 0x75 0x70 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x4D 0x49 0x44 0x49 0x20 - 0x61 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x75 0x73 0x65 0x20 0x4D 0x49 0x44 0x49 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 - 0x69 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x61 - 0x77 0x61 0x79 0x2C 0x20 0x73 0x77 0x69 - 0x74 0x63 0x68 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x70 0x72 0x6F 0x67 0x72 0x61 0x6D - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x20 0x69 0x74 0x2E 0x20 0x0D - 0x0A 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 7065 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - - -SET _help_48544F50_55= 0x20005856 - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 7073 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x00016050 0x0 0x0 0x00016051 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016103 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x23 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x20 0x69 0x6E 0x74 - 0x65 0x72 0x6E 0x61 0x6C 0x20 0x65 0x72 - 0x72 0x6F 0x72 0x20 0x6F 0x63 0x63 0x75 - 0x72 0x72 0x65 0x64 0x3A 0x20 0x7E 0x31 - 0x33 0x32 0x31 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 7153 "H:\\BUILD\\SOC\\src\\help\\errors.cht" - -#line 45 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -SET _help_48544F50_0= 0x20005290 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016016 0x00030605 0x20042 0x000305F3 0x0 0x0 0x57415645 0x00075090 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016105 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x80 - 0x00 0x00 0x00 0x02 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x20 0x63 0x68 0x6F 0x6F - 0x73 0x65 0x20 0x66 0x72 0x6F 0x6D 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x63 0x65 0x6E 0x65 0x20 0x43 0x68 0x6F - 0x69 0x63 0x65 0x73 0x2E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 121 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_1= 0x20005291 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 129 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0xAA 0x32 0x57415645 0x00075091 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 192 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_2= 0x20005292 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 200 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x32 0x57415645 0x00075092 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 - 0x61 0x6E 0x67 0x6C 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x73 0x65 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x6F - 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 269 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_3= 0x20005294 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 277 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016017 0x00030605 0x20006 0x000305F3 0x0 0x0 0x57415645 0x00075093 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x92 0x72 0x65 0x20 0x72 0x65 - 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x26 0x20 0x50 0x72 0x6F 0x70 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 348 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_4= 0x20005293 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 356 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016017 0x00030605 0x20075 0x000305F3 0x0 0x0 0x57415645 0x00075094 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 421 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_5= 0x20005295 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 429 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0xAA 0x32 0x57415645 0x00075095 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 492 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_6= 0x20005296 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 500 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x6E 0x57415645 0x00075096 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 579 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_7= 0x20005297 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 587 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016017 0x00030605 0x2007B 0x000305F3 0x0 0x0 0x57415645 0x00075097 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x20 0x6D 0x6F 0x76 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 655 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_8= 0x20005298 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 663 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x6E 0x57415645 0x00075098 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 725 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_9= 0x20005299 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 733 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x32 0x57415645 0x00075099 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000529D - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x65 0x76 0x69 0x65 0x77 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x6E 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x01 0x20 0x20 0x53 - 0x65 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 0x65 -ENDCHUNK - - -ENDCHUNK -#line 823 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_A= 0x2000529A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 831 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601b 0x00030605 0x0 0x000305F3 0x140 0x6E 0x57415645 0x0007509A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200052A3 - FREE - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000529E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x31 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x81 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D - 0x2D 0x0D 0x0A 0x4D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x2E 0x0D 0x0A 0x01 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F 0x72 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F - 0x72 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 939 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_B= 0x2000529B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 947 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030605 0x20039 0x000305F3 0x0 0x0 0x57415645 0x0007509B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x61 0x74 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x73 0x6F 0x20 0x66 - 0x61 0x72 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 0x6C - 0x61 0x79 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1017 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_C= 0x2000529C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1025 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030605 0x0 0x000305F3 0x140 0xF0 0x57415645 0x0007509C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x49 0x66 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x2B 0x53 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1099 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_D= 0x2000529D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1107 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x65 0x74 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x65 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x64 0x65 0x63 0x69 0x64 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x20 0x28 0x62 0x6F 0x74 - 0x68 0x20 0x66 0x65 0x65 0x74 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x2C 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x66 0x6F 0x6F 0x74 - 0x20 0x75 0x70 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x29 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x61 - 0x72 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F - 0x73 0x65 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x72 0x72 0x6F 0x77 0x73 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x6F 0x66 0x20 0x53 - 0x65 0x74 0x20 0x53 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x50 0x6F 0x73 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x72 - 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1219 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_E= 0x2000529E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1227 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 1321 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_F= 0x2000529F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1329 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x31 0x09 0x4D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x73 0x74 0x61 0x72 0x74 0x69 0x6E - 0x67 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1441 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_10= 0x200052A5 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1449 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016017 0x00030605 0x20014 0x000305F3 0x0 0x0 0x57415645 0x000750A3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200052A6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x2C 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x43 0x61 0x6D 0x65 - 0x72 0x61 0x20 0x41 0x6E 0x67 0x6C 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1530 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_11= 0x200052A6 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1538 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA6 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x65 0x72 0x61 - 0x20 0x61 0x6E 0x67 0x6C 0x65 0x0D 0x0A - 0x45 0x61 0x63 0x68 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x68 0x61 0x73 0x20 0x6D - 0x61 0x6E 0x79 0x20 0x64 0x69 0x66 0x66 - 0x65 0x72 0x65 0x6E 0x74 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x20 0x61 0x6E 0x67 - 0x6C 0x65 0x73 0x2E 0x20 0x20 0x57 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x63 0x61 0x6D 0x65 0x72 0x61 0x20 0x61 - 0x6E 0x67 0x6C 0x65 0x2C 0x20 0x79 0x6F - 0x75 0x20 0x61 0x72 0x65 0x6E 0x27 0x74 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x97 0x79 0x6F 0x75 0x27 - 0x72 0x65 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x65 - 0x77 0x20 0x6F 0x66 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1622 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_59= 0x200052A0 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 1630 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x67 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x22 0x66 0x72 0x65 0x65 0x7A - 0x65 0x22 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x46 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x2C 0x20 0x69 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x61 0x69 0x72 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x64 0x72 - 0x61 0x67 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 0x65 - 0x20 0x61 0x20 0x22 0x66 0x6C 0x6F 0x61 - 0x74 0x69 0x6E 0x67 0x22 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x66 0x72 0x65 0x65 0x7A 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1748 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_5C= 0x200052A3 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 1756 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x46 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1858 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - - -SET _help_48544F50_92= 0x200052A4 - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 1866 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x0001602c 0x00030606 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 1928 "H:\\BUILD\\SOC\\src\\help\\guidhelp.cht" - -#line 46 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -SET _help_48544F50_0= 0x200052C0 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016017 0x00030601 0x20006 0x000305F0 0x0 0x0 0x57415645 0x000750D0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x81 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x6F 0x72 0x73 0x20 0x26 - 0x20 0x50 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1= 0x200052C1 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 104 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016017 0x00030601 0x20075 0x000305F0 0x0 0x0 0x57415645 0x000750D1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x7A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x61 - 0x72 0x61 0x63 0x74 0x65 0x72 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x63 0x68 0x6F 0x6F 0x73 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x61 - 0x64 0x64 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 213 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2= 0x200052C2 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 221 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x000750D2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x56 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 284 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3= 0x200052C3 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 292 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750D3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x88 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 371 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4= 0x200052C4 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 379 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750D4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x41 0x73 0x73 0x69 - 0x67 0x6E 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 486 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5= 0x200052C5 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 494 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x20076 0x000305F0 0x0 0x0 0x57415645 0x000750D5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x70 0x72 0x6F - 0x70 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x63 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x70 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 - 0x72 0x6F 0x70 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 602 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6= 0x200052C6 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 610 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x000750D6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_91=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_91=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_91=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 673 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7= 0x200052C7 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 681 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750D7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x29 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 - 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 759 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8= 0x200052C8 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 767 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750D8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x70 0x72 0x6F - 0x70 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x41 0x73 0x73 0x69 0x67 0x6E 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x0D 0x0A 0x01 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 873 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_9= 0x200052C9 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 881 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016017 0x00030601 0x20077 0x000305F0 0x0 0x0 0x57415645 0x000750D9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x61 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x72 0x65 0x61 0x74 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x33 0x44 0x20 0x57 - 0x6F 0x72 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 985 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_A= 0x200052CA - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 993 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750DA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x33 0x44 0x20 - 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1058 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_B= 0x200052CB - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1066 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750DB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1145 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_C= 0x200052CC - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1153 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750DC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x41 0x73 0x73 0x69 - 0x67 0x6E 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1259 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_D= 0x200052CD - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1267 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x20018 0x000305F0 0x0 0x0 0x57415645 0x000750DD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_55=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x76 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x20 0x43 0x68 0x61 0x6E - 0x67 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1374 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_E= 0x200052CE - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1382 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750DE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x33 0x44 0x20 - 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1447 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_F= 0x200052CF - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1455 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750DF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x20 0x65 0x61 0x73 0x65 0x6C - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1521 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_10= 0x200052D0 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1529 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750E0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x50 0x72 0x6F - 0x70 0x20 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1594 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_11= 0x200052D1 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1602 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750E1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_49=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 1687 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_12= 0x200052D2 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1695 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601c 0x00030601 0x20096 0x000305F0 0x2E 0x8B 0x57415645 0x000750E2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_68=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_68=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x46 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x89 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_68=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x69 0x6E 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x64 0x64 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x27 0x76 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x27 0x73 0x20 0x70 - 0x69 0x63 0x74 0x75 0x72 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x41 0x63 - 0x74 0x6F 0x72 0x20 0x4C 0x69 0x73 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1798 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_13= 0x200052D3 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1806 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750E3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x55 0x70 0x20 0x6F - 0x72 0x20 0x44 0x6F 0x77 0x6E 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1885 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_14= 0x200052D4 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 1893 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750E4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_46=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x42 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x4E 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x41 0x73 - 0x73 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x0D 0x0A 0x01 0x20 0x52 0x65 - 0x6D 0x6F 0x76 0x69 0x6E 0x67 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 1999 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_15= 0x200052D5 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2007 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601a 0x00030601 0x20097 0x000305F0 0x24E 0x82 0x57415645 0x000750E5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x50 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x75 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x27 0x76 0x65 0x20 - 0x75 0x73 0x65 0x64 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x50 0x72 0x6F 0x70 0x20 0x4C 0x69 - 0x73 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2114 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_16= 0x200052D6 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2122 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750E6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x72 0x6F 0x70 - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x72 - 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 0x70 - 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E - 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2203 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_17= 0x200052D7 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2211 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750E7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005339 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x67 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x55 0x73 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x73 0x61 0x6D 0x65 - 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x41 0x73 0x73 0x69 0x67 0x6E 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x70 0x6F - 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 0x6E - 0x67 -ENDCHUNK - - -ENDCHUNK -#line 2319 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_18= 0x200052D8 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2327 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00016016 0x00030601 0x2007B 0x000305F0 0x0 0x0 0x57415645 0x000750E8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x81 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x6D 0x6F 0x76 - 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x6E 0x69 - 0x6D 0x61 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F - 0x6E 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2434 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_19= 0x200052D9 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2442 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750E9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_74=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_74=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_74=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x6E 0x69 0x6D 0x61 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2509 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1A= 0x200052DA - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2517 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750EA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x73 0x74 0x61 - 0x6E 0x64 0x61 0x72 0x64 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x42 0x72 0x6F - 0x77 0x73 0x65 0x72 0x20 0x62 0x61 0x6C - 0x6C 0x6F 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2582 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1B= 0x200052DB - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2590 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750EB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_71=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x17 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_45=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000533E - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533D - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_71=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x35 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x58 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB7 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x60 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xD9 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_71=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x70 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 - 0x6C 0x65 0x63 0x74 0x65 0x64 0x2C 0x20 - 0x65 0x69 0x74 0x68 0x65 0x72 0x3A 0x0D - 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 0x2E - 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D 0x2D - 0x0D 0x0A 0x95 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x69 0x74 0x2E 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2729 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1C= 0x200052DC - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2737 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x000750EC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533C - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005341 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005349 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x6D 0x6F 0x76 0x65 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x0D 0x0A 0x01 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x69 - 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 2852 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1D= 0x200052DD - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2860 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016016 0x00030601 0x2007B 0x000305F0 0x0 0x0 0x57415645 0x000750ED -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x97 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x52 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x87 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x61 0x73 0x73 0x69 0x67 - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2970 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1E= 0x200052DE - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 2978 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750EE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_95=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_95=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_95=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3047 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_1F= 0x200052DF - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3055 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750EF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_93=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005341 - FREE - FREE - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000533E - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x2000533C - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_93=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x81 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x97 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xAD 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_93=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x64 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x20 0x66 - 0x6F 0x72 0x77 0x61 0x72 0x64 0x2E 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 3184 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_20= 0x200052E0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3192 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016016 0x00030601 0x20017 0x000305F0 0x0 0x0 0x57415645 0x000750F0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_73=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_73=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x35 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x99 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA3 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x48 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_73=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x74 0x73 0x20 0x70 0x61 0x74 0x68 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x73 0x20 0x70 0x61 0x74 0x68 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x52 0x65 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3303 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_21= 0x200052E1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3311 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750F1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - FREE - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005345 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005343 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005344 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xFD 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xDC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDE 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xC3 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xDE 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x49 - 0x66 0x20 0x79 0x6F 0x75 0x20 0x68 0x61 - 0x76 0x65 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x64 0x20 0x61 0x20 0x70 0x61 0x74 - 0x68 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x20 0x6D 0x6F - 0x76 0x65 0x73 0x20 0x77 0x69 0x74 0x68 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x6F 0x6E 0x2E 0x0D 0x0A - 0x01 0x20 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 - 0x66 0x61 0x72 0x0D 0x0A 0x01 0x20 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 - 0x20 0x66 0x72 0x61 0x6D 0x65 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 0x69 - 0x72 0x65 0x20 0x70 0x61 0x74 0x68 -ENDCHUNK - - -ENDCHUNK -#line 3444 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_22= 0x200052E2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3452 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750F2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3547 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_23= 0x200052E3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3555 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016017 0x00030601 0x20063 0x000305F0 0x0 0x0 0x57415645 0x000750F3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x58 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x94 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x65 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x75 0x73 0x65 0x64 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x73 0x74 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x73 0x75 0x6D 0x65 0x20 0x4C 0x61 0x73 - 0x74 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3668 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_24= 0x200052E4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3676 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000750F4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_36=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000533E - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005352 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533D - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x2000533F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x27 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xDF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xCB 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xE1 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x70 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x65 0x69 0x74 0x68 0x65 0x72 - 0x3A 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 - 0x2D 0x2D 0x0D 0x0A 0x95 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x2E 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x61 0x72 0x74 0x69 - 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x01 0x20 0x46 - 0x72 0x65 0x65 0x7A 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x26 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 -ENDCHUNK - - -ENDCHUNK -#line 3813 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_25= 0x200052E5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3821 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750F5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_80=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_80=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x30 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_80=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x61 0x6D 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3915 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_26= 0x200052E6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3923 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 3983 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_27= 0x200052E7 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3991 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4051 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_28= 0x200052E8 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 4059 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_88=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_88=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_88=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4123 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_29= 0x200052E9 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 4131 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750F9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B 0x0D - 0x0A -ENDCHUNK - - -ENDCHUNK -#line 4197 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2A= 0x200052EA - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 4205 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00016017 0x00030601 0x2001B 0x000305F0 0x0 0x0 0x57415645 0x000750FA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005346 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x27 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xCB 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x7F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x97 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x27 0x73 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x74 0x68 0x2E 0x0D 0x0A - 0x32 0x09 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x20 0x52 0x65 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x50 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x50 0x61 0x74 0x68 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x69 - 0x73 0x20 0x70 0x75 0x73 0x68 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x20 0x6C 0x69 0x67 0x68 0x74 - 0x73 0x20 0x75 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4328 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2B= 0x200052EB - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 4336 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x24E 0xF0 0x57415645 0x000750FB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x35 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005349 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005352 - ITEM LONG 0x40000001 - VAR BYTE 6 LONG 0x2000533F - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x2000533E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6D 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x90 0x01 0x00 0x40 - 0x08 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xCD 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB0 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x55 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x6D 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x28 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x55 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x6D 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x90 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xA7 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 0xCD 0x01 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x44 - 0x65 0x70 0x65 0x6E 0x64 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x65 0x69 0x74 0x68 0x65 0x72 0x3A - 0x0D 0x0A 0x95 0x09 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F 0x72 0x2D - 0x2D 0x0D 0x0A 0x95 0x09 0x4D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x63 0x75 0x72 0x73 - 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 0x2E - 0x0D 0x0A 0x4E 0x6F 0x74 0x65 0x3A 0x20 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x22 0x57 - 0x61 0x6C 0x6B 0x22 0x20 0x61 0x6E 0x64 - 0x20 0x22 0x52 0x75 0x6E 0x22 0x20 0x77 - 0x6F 0x72 0x6B 0x20 0x62 0x65 0x73 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x64 0x72 0x61 0x67 0x2E 0x20 - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x22 0x47 - 0x72 0x65 0x65 0x74 0x2C 0x22 0x20 0x22 - 0x54 0x61 0x6C 0x6B 0x2C 0x22 0x20 0x61 - 0x6E 0x64 0x20 0x22 0x4C 0x61 0x79 0x20 - 0x44 0x6F 0x77 0x6E 0x22 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x62 0x65 0x73 0x74 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x69 0x74 0x2E 0x0D 0x0A 0x01 - 0x20 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x01 - 0x20 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x61 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x01 0x20 0x20 0x46 0x72 0x65 - 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D - 0x0A 0x01 0x20 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A 0x01 - 0x20 0x20 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x26 0x20 0x6E 0x65 - 0x61 0x72 0x20 0x6F 0x72 0x20 0x66 0x61 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4510 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2C= 0x200052EC - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4518 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000750FC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016101 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005338 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005342 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005341 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000533C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x94 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xDE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xFC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFE 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x0D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE0 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xCF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xE0 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFE 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x52 - 0x65 0x70 0x6C 0x61 0x63 0x69 0x6E 0x67 - 0x20 0x50 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x50 0x61 0x74 - 0x68 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x4E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x70 - 0x61 0x74 0x68 0x20 0x72 0x65 0x6A 0x6F - 0x69 0x6E 0x73 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6C 0x64 0x20 0x70 0x61 0x74 0x68 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x73 0x74 0x20 - 0x70 0x6F 0x69 0x6E 0x74 0x2E 0x20 0x0D - 0x0A 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x72 0x65 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x61 0x6E 0x20 0x65 0x6E 0x74 0x69 0x72 - 0x65 0x20 0x70 0x61 0x74 0x68 0x2C 0x20 - 0x74 0x75 0x72 0x6E 0x20 0x6F 0x66 0x66 - 0x20 0x74 0x68 0x65 0x20 0x52 0x65 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x50 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x50 0x61 0x74 - 0x68 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x62 0x79 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A - 0x20 0x01 0x20 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x69 0x6E 0x67 -ENDCHUNK - - -ENDCHUNK -#line 4654 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2D= 0x200052ED - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4662 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750FD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_67=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_67=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_67=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x03 0x03 -ENDCHUNK - - -ENDCHUNK -#line 4726 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2E= 0x200052EE - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4734 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750FE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_89=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_89=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_89=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4794 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_2F= 0x200052EF - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4802 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000750FF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 4866 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_30= 0x200052F0 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4874 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00016018 0x00030601 0x2001F 0x000305F0 0x0 0x0 0x57415645 0x00075100 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA0 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x77 0x68 0x65 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 - 0x20 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x61 0x70 - 0x70 0x65 0x61 0x72 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x73 0x70 0x6F 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x53 0x79 0x6E 0x63 0x68 0x72 - 0x6F 0x6E 0x69 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4985 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_31= 0x200052F1 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4993 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075101 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x69 0x73 0x20 0x22 - 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x2E 0x22 -ENDCHUNK - - -ENDCHUNK -#line 5061 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_32= 0x200052F2 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 5069 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075102 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x94 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x20 0x41 0x72 0x72 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 - 0x62 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x69 0x6D - 0x65 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x65 0x63 0x6B 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x2C 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5150 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_33= 0x200052F3 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 5158 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075103 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x67 0x65 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x70 0x61 0x72 - 0x74 0x69 0x63 0x75 0x6C 0x61 0x72 0x20 - 0x6C 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x4D 0x6F 0x76 - 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 5260 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_34= 0x200052F4 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 5268 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00016018 0x00030601 0x2001F 0x000305F0 0x0 0x0 0x57415645 0x00075104 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDC 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x54 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD4 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x70 0x61 0x74 0x68 - 0x20 0x74 0x69 0x6D 0x69 0x6E 0x67 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x77 0x6F 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x20 0x6D 0x65 0x65 0x74 - 0x20 0x75 0x70 0x20 0x77 0x69 0x74 0x68 - 0x20 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x68 0x65 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x2E 0x20 0x20 0x4E 0x6F 0x74 - 0x65 0x3A 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x73 0x20 0x6D - 0x75 0x73 0x74 0x20 0x61 0x6C 0x72 0x65 - 0x61 0x64 0x79 0x20 0x62 0x65 0x20 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x65 - 0x64 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x79 - 0x6E 0x63 0x68 0x72 0x6F 0x6E 0x69 0x7A - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5388 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_35= 0x200052F5 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 5396 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075105 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_79=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_79=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_79=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x73 0x70 0x6F 0x74 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x69 0x73 0x20 - 0x22 0x66 0x72 0x6F 0x7A 0x65 0x6E 0x2E - 0x22 -ENDCHUNK - - -ENDCHUNK -#line 5468 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_36= 0x200052F6 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 5476 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075106 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x20 0x41 0x72 0x72 0x6F - 0x77 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x69 0x73 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x65 0x63 0x6B 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x2C 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5556 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_37= 0x200052F7 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5564 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075107 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x77 0x6F 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x6D 0x65 0x65 0x74 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x59 0x6F 0x75 0x72 0x20 0x4D 0x6F 0x76 - 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 5660 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_38= 0x200052F8 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5668 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075108 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC3 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x65 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x74 0x68 0x20 0x6F 0x66 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x69 0x74 0x20 0x6F 0x6E - 0x74 0x6F 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x33 0x44 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x20 0x63 0x6F - 0x70 0x79 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x74 0x68 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x43 0x75 0x74 - 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 - 0x26 0x20 0x50 0x61 0x73 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5783 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_39= 0x200052F9 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5791 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030601 0x20053 0x000305F0 0x0 0x0 0x57415645 0x00075109 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x64 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x20 0x50 0x61 0x74 - 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5856 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3A= 0x200052FA - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5864 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007510A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x93 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x70 0x61 0x74 0x68 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5934 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3B= 0x200052FB - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5942 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007510B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_44=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x74 0x68 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6039 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3C= 0x200052FC - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 6047 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x0007510C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x46 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6113 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3D= 0x200052FD - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 6121 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007510D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x70 0x70 0x6C 0x79 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x74 0x68 0x20 0x74 - 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6191 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3E= 0x200052FE - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 6199 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007510E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005349 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x24 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x70 0x61 0x74 0x68 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E -ENDCHUNK - - -ENDCHUNK -#line 6293 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_3F= 0x200052FF - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 6301 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007510F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_42=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x97 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x98 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6415 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_40= 0x20005300 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 6423 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x0001601b 0x00030601 0x20055 0x000305F0 0x0 0x0 0x57415645 0x00075110 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x43 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6488 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_41= 0x20005301 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 6496 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075111 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6565 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_42= 0x20005302 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 6573 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075112 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x77 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x20 0x70 0x61 - 0x73 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6681 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_43= 0x20005303 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 6689 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x00075113 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6755 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_44= 0x20005304 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 6763 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075114 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_83=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_83=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_83=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6846 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_45= 0x20005305 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 6854 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075115 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 6940 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_46= 0x20005306 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 6948 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075116 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0B 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x75 0x74 0x20 0x61 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7059 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_47= 0x20005307 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 7067 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001601b 0x00030601 0x20056 0x000305F0 0x0 0x0 0x57415645 0x00075117 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7131 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_48= 0x20005308 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 7139 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075118 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x96 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7208 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_49= 0x20005309 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 7216 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075119 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x77 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x20 0x70 0x61 - 0x73 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7323 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4A= 0x2000530A - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 7331 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x0007511A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7396 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4B= 0x2000530B - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 7404 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007511B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_77=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_77=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_77=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x61 0x73 0x74 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x2E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6B 0x65 0x79 0x20 0x62 - 0x65 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7487 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4C= 0x2000530C - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 7495 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007511C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 7581 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4D= 0x2000530D - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 7589 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007511D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x84 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA8 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x84 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 - 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 - 0x61 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F - 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7703 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4E= 0x2000530E - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 7711 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x0007511E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x92 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x33 - 0x44 0x20 0x4F 0x62 0x6A 0x65 0x63 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7777 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_4F= 0x2000530F - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 7785 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007511F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7857 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_50= 0x20005310 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 7865 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075120 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_69=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_39=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_69=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_69=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 7953 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_51= 0x20005311 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 7961 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x00075121 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x44 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x69 0x70 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x66 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 - 0x69 0x70 0x20 0x74 0x68 0x65 0x20 0x33 - 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x52 - 0x6F 0x74 0x61 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8072 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_52= 0x20005312 - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 8080 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001601d 0x00030601 0x2001C 0x000305F0 0x0 0x2 0x57415645 0x00075122 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_66=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_66=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_66=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x69 0x70 0x20 0x46 0x6F 0x72 0x77 - 0x61 0x72 0x64 0x20 0x6F 0x72 0x20 0x42 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8148 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_53= 0x20005313 - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 8156 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075123 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_72=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_59=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_72=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_72=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 0x70 - 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8252 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_54= 0x20005314 - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 8260 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075124 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x25 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x70 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x77 0x61 0x72 - 0x64 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 8354 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_55= 0x20005315 - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 8362 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x00075125 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x79 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x43 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x77 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x6F 0x72 0x20 0x72 0x69 0x67 - 0x68 0x74 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x61 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x52 0x6F 0x74 - 0x61 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8473 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_56= 0x20005316 - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 8481 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x0001601d 0x00030601 0x2001D 0x000305F0 0x0 0x2 0x57415645 0x00075126 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x94 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x75 0x72 0x6E 0x20 0x4C 0x65 0x66 - 0x74 0x20 0x6F 0x72 0x20 0x52 0x69 0x67 - 0x68 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8549 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_57= 0x20005317 - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 8557 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075127 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x69 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8650 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_58= 0x20005318 - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 8658 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075128 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F - 0x72 0x20 0x72 0x69 0x67 0x68 0x74 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 8753 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_59= 0x20005319 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 8761 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x00075129 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x40 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x69 0x70 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x74 0x6F 0x20 0x6F - 0x6E 0x65 0x20 0x73 0x69 0x64 0x65 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x74 0x69 0x70 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8871 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5A= 0x2000531A - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 8879 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x0001601d 0x00030601 0x2001E 0x000305F0 0x0 0x2 0x57415645 0x0007512A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x82 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x54 0x69 0x70 0x20 0x74 0x6F 0x20 0x4F - 0x6E 0x65 0x20 0x53 0x69 0x64 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8946 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5B= 0x2000531B - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 8954 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007512B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_62=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_40=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_62=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x90 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_62=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x74 0x69 0x70 - 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x61 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x69 0x73 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9048 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5C= 0x2000531C - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 9056 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x0007512C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x54 0x69 0x70 0x70 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x6F 0x6E 0x65 - 0x20 0x73 0x69 0x64 0x65 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x50 0x6C 0x61 - 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 9151 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5D= 0x2000531D - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 9159 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x00016017 0x00030601 0x20064 0x000305F0 0x0 0x0 0x57415645 0x0007512D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_61=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x01 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_61=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x93 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAB 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x64 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x64 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x93 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_61=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x77 0x61 0x79 0x20 0x69 - 0x74 0x20 0x77 0x61 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x72 0x6F 0x74 0x61 0x74 0x65 0x64 - 0x20 0x69 0x74 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 0x61 - 0x63 0x6B 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x52 0x6F 0x74 0x61 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9273 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5E= 0x2000531E - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 9281 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x0001601d 0x00030601 0x2006B 0x000305F0 0x0 0x2 0x57415645 0x0007512E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x42 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9348 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_5F= 0x2000531F - - -CHUNK('HTOP', _help_48544F50_5F, "") -SUBFILE -#line 9356 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_5F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007512F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9425 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_60= 0x20005320 - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 9433 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075130 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_60=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_60=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_60=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 9527 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_61= 0x20005321 - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 9535 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x00016017 0x00030601 0x20015 0x000305F0 0x0 0x0 0x57415645 0x00075131 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x80 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x6C 0x65 0x63 0x74 0x20 0x61 0x20 - 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x65 0x6C 0x65 - 0x63 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9646 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_62= 0x20005322 - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 9654 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x24E 0xF0 0x57415645 0x00075132 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_82=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_82=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_82=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x6C 0x65 0x63 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9721 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_63= 0x20005323 - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 9729 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075133 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_63=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_48=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000534D - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000534E - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_63=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_63=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x4E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x53 0x65 0x6C 0x65 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x62 - 0x65 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A 0x01 - 0x20 0x53 0x65 0x6C 0x65 0x63 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x6E 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 -ENDCHUNK - - -ENDCHUNK -#line 9827 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_64= 0x20005324 - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 9835 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x0001601c 0x00030601 0x20096 0x000305F0 0x2E 0x6E 0x57415645 0x00075134 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x74 0x68 0x61 - 0x74 0x20 0x69 0x73 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 - 0x65 0x77 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 0x65 - 0x6C 0x65 0x63 0x74 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x27 0x73 0x20 0x70 0x69 0x63 - 0x74 0x75 0x72 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x4C 0x69 0x73 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 9948 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_65= 0x20005325 - - -CHUNK('HTOP', _help_48544F50_65, "") -SUBFILE -#line 9956 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_65, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075135 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_43=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 0x69 - 0x65 0x77 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x4E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x49 0x66 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x76 0x69 0x65 0x77 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x72 0x65 0x61 0x70 0x70 0x65 0x61 0x72 - 0x73 0x20 0x6F 0x6E 0x2D 0x73 0x74 0x61 - 0x67 0x65 0x2E 0x20 0x20 0x4D 0x6F 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x79 0x6F 0x75 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x70 0x75 0x74 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x2E 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10063 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_66= 0x20005326 - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 10071 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x0001601a 0x00030601 0x20097 0x000305F0 0x24E 0x85 0x57415645 0x00075136 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x92 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x54 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x54 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x61 0x20 0x70 0x72 - 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x74 0x68 - 0x61 0x74 0x20 0x69 0x73 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 - 0x69 0x65 0x77 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x6C 0x65 0x63 0x74 0x20 0x74 0x68 - 0x65 0x20 0x70 0x72 0x6F 0x70 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x73 0x20 - 0x70 0x69 0x63 0x74 0x75 0x72 0x65 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x50 - 0x72 0x6F 0x70 0x20 0x4C 0x69 0x73 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10186 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_67= 0x20005327 - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 10194 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075137 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x53 0x65 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 0x72 - 0x6F 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x6F 0x72 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x76 - 0x69 0x65 0x77 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 0x20 - 0x70 0x72 0x6F 0x70 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x61 0x73 0x20 0x6F 0x75 0x74 0x20 - 0x6F 0x66 0x20 0x76 0x69 0x65 0x77 0x2C - 0x20 0x74 0x68 0x65 0x20 0x70 0x72 0x6F - 0x70 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x72 0x65 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x6F - 0x6E 0x2D 0x73 0x74 0x61 0x67 0x65 0x2E - 0x20 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F - 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x70 0x75 0x74 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 10307 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_68= 0x20005328 - - -CHUNK('HTOP', _help_48544F50_68, "") -SUBFILE -#line 10315 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_68, "") - BO OSK LONG 0x00016018 0x00030601 0x20065 0x000305F0 0x0 0x0 0x57415645 0x00075138 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_65=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_65=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x95 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x46 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x96 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_65=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x65 0x76 0x65 - 0x6E 0x6C 0x79 0x20 0x67 0x72 0x6F 0x77 - 0x20 0x6F 0x72 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x73 0x69 0x7A 0x69 0x6E 0x67 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10426 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_69= 0x20005329 - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 10434 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x00016019 0x00030601 0x20021 0x000305F0 0x0 0xFFFFFFEC 0x57415645 0x00075139 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x69 0x7A 0x65 0x20 0x45 0x76 0x65 - 0x6E 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10499 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6A= 0x2000532A - - -CHUNK('HTOP', _help_48544F50_6A, "") -SUBFILE -#line 10507 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007513A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_78=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005354 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_78=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x56 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x53 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_78=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x69 0x7A 0x65 0x2E 0x0D 0x0A 0x54 0x6F - 0x20 0x67 0x72 0x6F 0x77 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x75 0x70 - 0x2E 0x20 0x54 0x6F 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x73 0x6F 0x6D 0x65 - 0x74 0x68 0x69 0x6E 0x67 0x2C 0x20 0x64 - 0x72 0x61 0x67 0x20 0x64 0x6F 0x77 0x6E - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10599 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6B= 0x2000532B - - -CHUNK('HTOP', _help_48544F50_6B, "") -SUBFILE -#line 10607 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6B, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007513B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x2000534F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x7A 0x69 0x6E 0x67 - 0x20 0x65 0x76 0x65 0x6E 0x6C 0x79 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x53 0x68 0x72 - 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x69 0x6D 0x65 -ENDCHUNK - - -ENDCHUNK -#line 10702 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6C= 0x2000532C - - -CHUNK('HTOP', _help_48544F50_6C, "") -SUBFILE -#line 10710 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6C, "") - BO OSK LONG 0x00016018 0x00030601 0x20065 0x000305F0 0x0 0x0 0x57415645 0x0007513C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x24 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x96 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xAE 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x96 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x73 0x68 0x6F - 0x72 0x74 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x69 0x64 0x65 0x72 0x20 0x6F - 0x72 0x20 0x74 0x61 0x6C 0x6C 0x65 0x72 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x69 - 0x6E 0x6E 0x65 0x72 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x73 - 0x69 0x7A 0x69 0x6E 0x67 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x2E 0x0D 0x0A - 0x20 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x53 0x69 0x7A - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10823 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6D= 0x2000532D - - -CHUNK('HTOP', _help_48544F50_6D, "") -SUBFILE -#line 10831 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6D, "") - BO OSK LONG 0x00016019 0x00030601 0x20020 0x000305F0 0x0 0xFFFFFFEC 0x57415645 0x0007513D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x71 0x75 0x61 0x73 0x68 0x20 0x26 - 0x20 0x53 0x74 0x72 0x65 0x74 0x63 0x68 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10897 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6E= 0x2000532E - - -CHUNK('HTOP', _help_48544F50_6E, "") -SUBFILE -#line 10905 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007513E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_75=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_52=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00075164 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_75=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x57 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_75=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x73 0x71 0x75 0x61 0x73 - 0x68 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 - 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 0x61 - 0x67 0x20 0x64 0x6F 0x77 0x6E 0x2E 0x20 - 0x54 0x6F 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x20 0x73 0x6F 0x6D 0x65 0x74 - 0x68 0x69 0x6E 0x67 0x2C 0x20 0x64 0x72 - 0x61 0x67 0x20 0x75 0x70 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10999 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_6F= 0x2000532F - - -CHUNK('HTOP', _help_48544F50_6F, "") -SUBFILE -#line 11007 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_6F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007513F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_92=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_53=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005350 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_92=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x22 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_92=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x03 0x03 0x53 0x71 0x75 0x61 0x73 0x68 - 0x69 0x6E 0x67 0x20 0x26 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x53 0x71 - 0x75 0x61 0x73 0x68 0x69 0x6E 0x67 0x20 - 0x6F 0x72 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x69 0x6D 0x65 -ENDCHUNK - - -ENDCHUNK -#line 11103 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_70= 0x20005330 - - -CHUNK('HTOP', _help_48544F50_70, "") -SUBFILE -#line 11111 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_70, "") - BO OSK LONG 0x00016018 0x00030601 0x20065 0x000305F0 0x0 0x0 0x57415645 0x00075140 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x97 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x52 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x69 - 0x74 0x73 0x20 0x6F 0x72 0x69 0x67 0x69 - 0x6E 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 - 0x0D 0x0A 0x20 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x69 0x6E 0x67 0x20 0x73 0x69 0x7A 0x69 - 0x6E 0x67 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x73 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x53 0x69 0x7A 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11224 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_71= 0x20005331 - - -CHUNK('HTOP', _help_48544F50_71, "") -SUBFILE -#line 11232 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_71, "") - BO OSK LONG 0x00016019 0x00030601 0x2006C 0x000305F0 0x0 0xFFFFFFEC 0x57415645 0x00075141 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_87=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x6F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_87=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_87=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x42 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11299 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_72= 0x20005332 - - -CHUNK('HTOP', _help_48544F50_72, "") -SUBFILE -#line 11307 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_72, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075142 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11376 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_73= 0x20005333 - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 11384 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075143 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005341 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 11477 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_74= 0x20005334 - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 11485 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x00016017 0x00030601 0x20018 0x000305F0 0x0 0x0 0x57415645 0x00075144 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_70=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x31 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005353 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_70=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x45 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x75 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_70=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x73 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11598 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_75= 0x20005335 - - -CHUNK('HTOP', _help_48544F50_75, "") -SUBFILE -#line 11606 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_75, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075145 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11673 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_76= 0x20005336 - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 11681 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075146 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_76=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_76=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_76=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x0D - 0x0A 0x20 0x49 0x66 0x20 0x74 0x68 0x65 - 0x79 0x20 0x63 0x6C 0x69 0x63 0x6B 0x65 - 0x64 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x20 0x6F 0x72 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x64 0x69 0x73 0x70 - 0x6C 0x61 0x79 0x20 0x73 0x74 0x61 0x6E - 0x64 0x61 0x72 0x64 0x20 0x43 0x6F 0x73 - 0x74 0x75 0x6D 0x65 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x65 0x72 0x20 0x62 0x61 0x6C - 0x6C 0x6F 0x6F 0x6E 0x2E 0x0D 0x0A 0x0D - 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 0x79 - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x65 0x64 - 0x20 0x61 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x2C 0x20 0x64 0x69 0x73 0x70 - 0x6C 0x61 0x79 0x20 0x73 0x74 0x61 0x6E - 0x64 0x61 0x72 0x64 0x20 0x33 0x44 0x20 - 0x57 0x6F 0x72 0x64 0x20 0x45 0x61 0x73 - 0x65 0x6C 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11761 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_77= 0x20005337 - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 11769 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075147 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005338 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 11855 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_78= 0x20005338 - - -CHUNK('HTOP', _help_48544F50_78, "") -SUBFILE -#line 11863 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_78, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075148 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_94=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_47=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_94=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_94=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 11965 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_79= 0x20005339 - - -CHUNK('HTOP', _help_48544F50_79, "") -SUBFILE -#line 11973 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_79, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075149 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x27 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_41=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x41 0x73 - 0x73 0x69 0x67 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x61 0x73 - 0x73 0x69 0x67 0x6E 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x41 0x63 - 0x74 0x69 0x6F 0x6E 0x73 0x2D 0x01 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x73 0x73 0x69 0x67 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12076 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7A= 0x2000533A - - -CHUNK('HTOP', _help_48544F50_7A, "") -SUBFILE -#line 12084 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7A, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x69 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20022 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x10 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x51 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC3 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC3 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x66 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8A 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x69 0x74 0x73 0x20 0x70 0x61 0x74 0x68 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 0x70 - 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E 0x2D - 0x01 0x0D 0x0A 0x32 0x09 0x22 0x54 0x75 - 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 0x74 - 0x68 0x65 0x20 0x55 0x70 0x20 0x26 0x20 - 0x44 0x6F 0x77 0x6E 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x6E 0x2C - 0x22 0x20 0x74 0x68 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x69 0x73 0x20 - 0x70 0x75 0x73 0x68 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 - 0x20 0x6C 0x69 0x67 0x68 0x74 0x73 0x20 - 0x75 0x70 0x2E 0x0D 0x0A 0x33 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x75 - 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F 0x77 - 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12208 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7B= 0x2000533B - - -CHUNK('HTOP', _help_48544F50_7B, "") -SUBFILE -#line 12216 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x79 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_54=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029B -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 - 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 - 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x33 0x44 0x20 0x4F 0x62 - 0x6A 0x65 0x63 0x74 0x2D 0x01 0x0D 0x0A - 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x33 0x44 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x72 0x69 - 0x64 0x20 0x6F 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12331 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7C= 0x2000533C - - -CHUNK('HTOP', _help_48544F50_7C, "") -SUBFILE -#line 12339 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x74 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20017 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x77 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x62 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x64 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xC2 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x61 0x6E - 0x64 0x20 0x69 0x74 0x73 0x20 0x70 0x61 - 0x74 0x68 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x63 0x75 0x72 0x72 - 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E 0x0D 0x0A 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x09 0x09 0x09 0x09 0x09 0x09 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x0D 0x0A 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x75 - 0x70 0x09 0x09 0x09 0x09 0x74 0x68 0x65 - 0x20 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 - 0x6F 0x77 0x6E 0x0D 0x0A 0x6F 0x72 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 - 0x20 0x66 0x61 0x72 0x09 0x09 0x09 0x09 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A - 0x52 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x6F 0x6E 0x65 0x20 0x66 0x72 0x61 0x6D - 0x65 0x09 0x09 0x09 0x43 0x74 0x72 0x6C - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x2E 0x0D 0x0A 0x52 - 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x70 0x61 0x74 - 0x68 0x09 0x09 0x09 0x53 0x68 0x69 0x66 - 0x74 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12482 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7D= 0x2000533D - - -CHUNK('HTOP', _help_48544F50_7D, "") -SUBFILE -#line 12490 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7D, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_51=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x01 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x03 0x01 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x03 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x46 0x72 - 0x65 0x65 0x7A 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x67 - 0x65 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x22 0x66 0x72 0x65 0x65 - 0x7A 0x65 0x22 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 - 0x46 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D - 0x70 0x6C 0x65 0x2C 0x20 0x69 0x66 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x75 0x70 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x61 0x69 - 0x72 0x2C 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x66 0x72 0x65 0x65 0x7A - 0x65 0x20 0x74 0x68 0x65 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x63 0x6F - 0x6E 0x74 0x69 0x6E 0x75 0x65 0x20 0x64 - 0x72 0x61 0x67 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x22 0x66 0x6C 0x6F - 0x61 0x74 0x69 0x6E 0x67 0x22 0x20 0x65 - 0x66 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A - 0x54 0x6F 0x20 0x66 0x72 0x65 0x65 0x7A - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x48 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x53 0x68 0x69 0x66 0x74 0x20 0x61 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12609 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7E= 0x2000533E - - -CHUNK('HTOP', _help_48544F50_7E, "") -SUBFILE -#line 12617 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x54 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 0x09 - 0x4D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 - 0x75 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x73 0x74 0x61 0x72 - 0x74 0x69 0x6E 0x67 0x20 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12728 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_7F= 0x2000533F - - -CHUNK('HTOP', _help_48544F50_7F, "") -SUBFILE -#line 12736 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_7F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007514F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_50=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x6F - 0x72 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12837 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_80= 0x20005340 - - -CHUNK('HTOP', _help_48544F50_80, "") -SUBFILE -#line 12845 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_80, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075150 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x42 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF7 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x07 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x01 0x00 0x01 - 0x01 0xFB 0x00 0x00 0x76 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xF5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x8E 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xF7 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x8E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x91 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x07 0x01 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x20 0x61 0x73 - 0x73 0x69 0x67 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 - 0x77 0x6F 0x72 0x64 0x2E 0x20 0x0D 0x0A - 0x01 0x0D 0x0A 0x01 0x0D 0x0A 0x54 0x6F - 0x20 0x6D 0x6F 0x76 0x65 0x20 0x77 0x69 - 0x74 0x68 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x46 0x72 - 0x61 0x6D 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E 0x0D 0x0A 0x54 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x73 0x63 0x65 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 - 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x77 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 12989 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_81= 0x20005341 - - -CHUNK('HTOP', _help_48544F50_81, "") -SUBFILE -#line 12997 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_81, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075151 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x04 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x31 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x50 0x6C 0x61 - 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x75 0x74 - 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 0x6C - 0x6C 0x79 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13136 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_82= 0x20005342 - - -CHUNK('HTOP', _help_48544F50_82, "") -SUBFILE -#line 13144 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_82, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075152 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x50 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 13203 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_83= 0x20005343 - - -CHUNK('HTOP', _help_48544F50_83, "") -SUBFILE -#line 13211 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_83, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075153 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x4D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 0x20 - 0x6F 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x6F 0x72 0x20 0x66 0x61 0x72 0x0D 0x0A - 0x95 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x70 0x20 0x6F 0x72 0x20 0x44 0x6F - 0x77 0x6E 0x20 0x41 0x72 0x72 0x6F 0x77 - 0x20 0x6B 0x65 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13309 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_84= 0x20005344 - - -CHUNK('HTOP', _help_48544F50_84, "") -SUBFILE -#line 13317 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_84, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075154 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_84=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_56=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_84=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_84=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x66 0x72 0x61 0x6D 0x65 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x70 0x6F 0x73 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x6F 0x6E 0x6C - 0x79 0x20 0x6F 0x6E 0x65 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x27 0x73 0x20 0x70 0x61 0x74 - 0x68 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x61 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13407 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_85= 0x20005345 - - -CHUNK('HTOP', _help_48544F50_85, "") -SUBFILE -#line 13415 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_85, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075155 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x52 0x65 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x74 0x69 0x72 0x65 0x20 0x70 - 0x61 0x74 0x68 0x0D 0x0A 0x54 0x6F 0x20 - 0x72 0x65 0x70 0x6F 0x73 0x69 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x70 0x61 - 0x74 0x68 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x53 0x68 0x69 0x66 0x74 0x20 0x61 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 - 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13504 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_86= 0x20005346 - - -CHUNK('HTOP', _help_48544F50_86, "") -SUBFILE -#line 13512 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_86, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075156 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x68 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2F 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7D 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 - 0x75 0x72 0x6E 0x20 0x6F 0x6E 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D - 0x0A 0x57 0x68 0x65 0x6E 0x20 0x22 0x6F - 0x6E 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 - 0x73 0x65 0x65 0x20 0x61 0x20 0x72 0x65 - 0x64 0x20 0x6C 0x69 0x67 0x68 0x74 0x2E - 0x0D 0x0A 0x54 0x6F 0x20 0x22 0x74 0x75 - 0x72 0x6E 0x20 0x6F 0x66 0x66 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x0D 0x0A 0x95 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x69 0x74 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x2E 0x0D 0x0A 0x57 - 0x68 0x65 0x6E 0x20 0x22 0x6F 0x66 0x66 - 0x2C 0x22 0x20 0x79 0x6F 0x75 0x20 0x6E - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x65 0x72 - 0x20 0x73 0x65 0x65 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x64 0x20 0x6C 0x69 0x67 - 0x68 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13607 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_87= 0x20005347 - - -CHUNK('HTOP', _help_48544F50_87, "") -SUBFILE -#line 13615 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_87, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075157 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x10 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x53 0x68 0x6F 0x72 - 0x74 0x63 0x75 0x74 0x20 0x6B 0x65 0x79 - 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x46 0x39 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13699 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_88= 0x20005348 - - -CHUNK('HTOP', _help_48544F50_88, "") -SUBFILE -#line 13707 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_88, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075158 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_86=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_58=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_86=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_86=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x6E 0x65 0x61 0x72 - 0x20 0x6F 0x72 0x20 0x66 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x75 0x70 0x20 0x6F - 0x72 0x20 0x64 0x6F 0x77 0x6E 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x6E 0x65 0x61 0x72 0x20 0x6F 0x72 0x20 - 0x66 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 0x6F - 0x77 0x6E 0x0D 0x0A 0x95 0x09 0x48 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x44 0x6F 0x77 0x6E - 0x20 0x6F 0x72 0x20 0x55 0x70 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 0x79 - 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13802 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_89= 0x20005349 - - -CHUNK('HTOP', _help_48544F50_89, "") -SUBFILE -#line 13810 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_89, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075159 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x66 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xDC 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x54 0x6F 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x61 0x73 0x73 0x69 0x67 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x0D 0x0A - 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x41 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2D - 0x01 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 - 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 - 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4F 0x4B 0x2E 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x69 0x73 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x64 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x75 0x72 - 0x72 0x65 0x6E 0x74 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13930 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8A= 0x2000534A - - -CHUNK('HTOP', _help_48544F50_8A, "") -SUBFILE -#line 13938 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8A, "") - BO OSK LONG 0x00016015 0x00030602 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007515A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x65 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x03 0x03 0x42 0x6C 0x61 0x6E 0x6B -ENDCHUNK - - -ENDCHUNK -#line 13996 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8B= 0x2000534B - - -CHUNK('HTOP', _help_48544F50_8B, "") -SUBFILE -#line 14004 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x77 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x0D 0x0A 0x95 0x09 0x54 0x6F 0x20 0x72 - 0x65 0x77 0x69 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x73 0x2E 0x0D 0x0A 0x01 0x0D 0x0A 0x01 - 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x77 0x69 0x74 0x68 0x69 0x6E - 0x20 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2C 0x20 0x75 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x73 0x63 - 0x65 0x6E 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x53 0x63 - 0x65 0x6E 0x65 0x20 0x53 0x6C 0x69 0x64 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14106 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8C= 0x2000534C - - -CHUNK('HTOP', _help_48544F50_8C, "") -SUBFILE -#line 14114 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8C, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_57=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x0D 0x0A 0x01 -ENDCHUNK - - -ENDCHUNK -#line 14187 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8D= 0x2000534D - - -CHUNK('HTOP', _help_48544F50_8D, "") -SUBFILE -#line 14195 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8D, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x23 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x53 0x65 - 0x6C 0x65 0x63 0x74 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 0x6C - 0x65 0x63 0x74 0x20 0x61 0x6E 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x0D 0x0A 0x95 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x27 0x73 0x20 0x70 0x69 0x63 0x74 0x75 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x6F 0x72 0x20 - 0x6F 0x72 0x20 0x50 0x72 0x6F 0x70 0x20 - 0x4C 0x69 0x73 0x74 0x2D 0x2D 0x6C 0x6F - 0x63 0x61 0x74 0x65 0x64 0x20 0x6F 0x6E - 0x20 0x65 0x69 0x74 0x68 0x65 0x72 0x20 - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x67 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14295 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8E= 0x2000534E - - -CHUNK('HTOP', _help_48544F50_8E, "") -SUBFILE -#line 14303 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x49 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_38=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC6 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA4 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC4 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x53 0x65 - 0x6C 0x65 0x63 0x74 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 - 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 - 0x20 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x76 0x69 0x65 0x77 0x0D 0x0A - 0x31 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x27 0x73 0x20 0x70 0x69 0x63 - 0x74 0x75 0x72 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x6F - 0x72 0x20 0x6F 0x72 0x20 0x50 0x72 0x6F - 0x70 0x20 0x4C 0x69 0x73 0x74 0x2D 0x2D - 0x6C 0x6F 0x63 0x61 0x74 0x65 0x64 0x20 - 0x6F 0x6E 0x20 0x65 0x69 0x74 0x68 0x65 - 0x72 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x61 0x67 0x65 0x2E 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x72 0x65 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x20 0x6F 0x6E 0x2D 0x73 0x74 - 0x61 0x67 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x54 0x6F 0x20 0x70 0x6F 0x73 0x69 0x74 - 0x69 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 - 0x63 0x74 0x2C 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14424 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_8F= 0x2000534F - - -CHUNK('HTOP', _help_48544F50_8F, "") -SUBFILE -#line 14432 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_8F, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007515F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_81=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_81=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x48 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x48 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_81=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x72 - 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x69 0x6D 0x65 0x0D 0x0A 0x54 0x6F 0x20 - 0x73 0x68 0x72 0x69 0x6E 0x6B 0x20 0x6F - 0x72 0x20 0x67 0x72 0x6F 0x77 0x20 0x61 - 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x69 - 0x6D 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 0x68 - 0x72 0x69 0x6E 0x6B 0x20 0x6F 0x72 0x20 - 0x67 0x72 0x6F 0x77 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x73 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x6F 0x72 0x20 0x67 - 0x72 0x6F 0x77 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x69 0x6D 0x65 0x2E 0x0D 0x0A - 0x34 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x68 0x72 0x69 0x6E 0x6B 0x22 - 0x20 0x6F 0x72 0x20 0x22 0x47 0x72 0x6F - 0x77 0x2C 0x22 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14567 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_90= 0x20005350 - - -CHUNK('HTOP', _help_48544F50_90, "") -SUBFILE -#line 14575 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_90, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075160 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_90, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x37 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2029C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x01 0xFB 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x20 0x53 0x71 - 0x75 0x61 0x73 0x68 0x69 0x6E 0x67 0x20 - 0x6F 0x72 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x69 0x6D 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x73 0x71 0x75 0x61 - 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x72 0x65 0x74 0x63 0x68 0x20 0x61 0x6E - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x69 0x6D - 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x20 0x6F 0x72 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x2D 0x01 0x0D 0x0A 0x33 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x20 0x6F 0x72 - 0x20 0x73 0x74 0x72 0x65 0x74 0x63 0x68 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x69 - 0x6D 0x65 0x2E 0x0D 0x0A 0x34 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x22 0x53 0x71 - 0x75 0x61 0x73 0x68 0x22 0x20 0x6F 0x72 - 0x20 0x22 0x53 0x74 0x72 0x65 0x74 0x63 - 0x68 0x2C 0x22 0x20 0x74 0x68 0x65 0x6E - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x4F - 0x4B 0x2E 0x0D 0x0A 0x35 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x68 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x69 0x74 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14712 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_91= 0x20005351 - - -CHUNK('HTOP', _help_48544F50_91, "") -SUBFILE -#line 14720 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_91, "") - BO OSK LONG 0x00016017 0x00030601 0x20063 0x000305F0 0x0 0x0 0x57415645 0x00075161 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x52 0x65 0x73 0x75 0x6D 0x65 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x63 0x74 - 0x69 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14787 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_92= 0x20005352 - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 14795 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075162 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_85=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20024 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_85=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x90 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x63 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x93 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xC9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x90 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_85=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 - 0x75 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 - 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 0x6F - 0x72 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 0x75 - 0x72 0x66 0x61 0x63 0x65 0x0D 0x0A 0x31 - 0x09 0x22 0x54 0x75 0x72 0x6E 0x20 0x6F - 0x6E 0x22 0x20 0x74 0x68 0x65 0x20 0x46 - 0x61 0x6C 0x6C 0x20 0x54 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x47 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x2D 0x01 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x22 0x6F 0x6E 0x2C 0x22 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x69 0x73 0x20 0x70 0x75 - 0x73 0x68 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x69 0x74 0x20 0x6C - 0x69 0x67 0x68 0x74 0x73 0x20 0x75 0x70 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x44 0x6F 0x77 0x6E 0x20 - 0x41 0x72 0x72 0x6F 0x77 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x73 0x20 0x79 0x6F 0x75 - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x33 0x44 0x20 0x6F 0x62 0x6A - 0x65 0x63 0x74 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x73 - 0x75 0x72 0x66 0x61 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14915 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_93= 0x20005353 - - -CHUNK('HTOP', _help_48544F50_93, "") -SUBFILE -#line 14923 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_93, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075163 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15058 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - - -SET _help_48544F50_94= 0x20005354 - - -CHUNK('HTOP', _help_48544F50_94, "") -SUBFILE -#line 15066 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -CHUNK('HTOP', _help_48544F50_94, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075164 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_64=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_64=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_64=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 15160 "H:\\BUILD\\SOC\\src\\help\\htactors.cht" - -#line 47 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -SET _help_48544F50_0= 0x20005288 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000750C0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20285 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x64 0x6F 0x20 0x61 0x6E 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x65 0x6C 0x73 0x65 - 0x2C 0x20 0x79 0x6F 0x75 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x61 0x64 - 0x64 0x20 0x61 0x20 0x73 0x63 0x65 0x6E - 0x65 0x2E 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x53 0x63 0x65 - 0x6E 0x65 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x65 0x6E 0x65 0x20 0x43 0x68 - 0x6F 0x69 0x63 0x65 0x73 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 130 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - -SET _help_48544F50_1= 0x20005289 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 138 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000750C1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027D - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2027F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xD3 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xB1 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xD3 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xE9 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x6F 0x6C 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C - 0x20 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F - 0x72 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2E 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x41 0x63 0x74 - 0x6F 0x72 0x73 0x20 0x26 0x20 0x50 0x72 - 0x6F 0x70 0x73 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x65 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A - 0x32 0x09 0x54 0x6F 0x09 0x09 0x09 0x09 - 0x09 0x09 0x09 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x0D 0x0A 0x41 0x64 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 0x09 - 0x09 0x09 0x09 0x01 0x0D 0x0A 0x41 0x64 - 0x64 0x20 0x61 0x20 0x70 0x72 0x6F 0x70 - 0x09 0x09 0x09 0x09 0x09 0x01 0x0D 0x0A - 0x43 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x09 0x09 0x09 0x01 -ENDCHUNK - - -ENDCHUNK -#line 263 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - -SET _help_48544F50_2= 0x2000528A - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 271 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000750C2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20046 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x4F 0x6F 0x70 0x73 0x21 0x20 - 0x20 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x63 0x61 0x6E 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x6F 0x6C 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6E 0x65 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2E 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x57 0x6F 0x72 - 0x64 0x73 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x63 0x72 0x65 - 0x65 0x6E 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x69 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 0x20 - 0x42 0x6F 0x78 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 368 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - - -SET _help_48544F50_3= 0x2000528B - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 376 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x72 0x72 0x79 0x21 - 0x20 0x20 0x59 0x6F 0x75 0x20 0x63 0x61 - 0x6E 0x27 0x74 0x20 0x75 0x73 0x65 0x20 - 0x55 0x6E 0x64 0x6F 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x6E 0x6F 0x77 0x2E -ENDCHUNK - - -ENDCHUNK -#line 443 "H:\\BUILD\\SOC\\src\\help\\htalerts.cht" - -#line 48 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -SET _help_48544F50_0= 0x20005380 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016017 0x00030601 0x20007 0x000305F0 0x0 0x0 0x57415645 0x00075200 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x6F 0x75 0x6E 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1= 0x20005381 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 103 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016017 0x00030601 0x20078 0x000305F0 0x0 0x0 0x57415645 0x00075201 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x12 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x7E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x75 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x65 0x66 0x66 0x65 0x63 - 0x74 0x73 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x63 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x20 0x45 0x66 0x66 - 0x65 0x63 0x74 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 213 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2= 0x20005382 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 221 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075202 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x53 0x6F 0x75 - 0x6E 0x64 0x20 0x45 0x66 0x66 0x65 0x63 - 0x74 0x73 0x20 0x62 0x72 0x6F 0x77 0x73 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 288 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_3= 0x20005383 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 296 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075203 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B3 - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AB - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x57 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x79 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x95 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x20 0x74 0x6F 0x2E 0x0D - 0x0A 0x01 0x20 0x41 0x74 0x74 0x61 0x63 - 0x68 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F - 0x6E 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 - 0x6F 0x75 0x73 0x6C 0x79 -ENDCHUNK - - -ENDCHUNK -#line 406 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_4= 0x20005384 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 414 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075204 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x75 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x4F 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x65 0x66 0x66 0x65 0x63 0x74 0x73 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D - 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x01 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 527 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_5= 0x20005385 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 535 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x20079 0x000305F0 0x0 0x0 0x57415645 0x00075205 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x55 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x60 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x22 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x52 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x70 0x65 0x65 - 0x63 0x68 0x2E -ENDCHUNK - - -ENDCHUNK -#line 641 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_6= 0x20005386 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 649 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x00075206 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x53 0x70 0x65 - 0x65 0x63 0x68 0x20 0x62 0x72 0x6F 0x77 - 0x73 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 715 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_7= 0x20005387 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 723 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075207 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B3 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x74 0x61 - 0x6C 0x6B 0x2E 0x0D 0x0A 0x01 0x20 0x41 - 0x74 0x74 0x61 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x69 0x6E 0x69 0x6E - 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x67 0x65 0x74 0x68 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 818 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_8= 0x20005388 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 826 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075208 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x2C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053AD - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x48 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x8E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7C 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x14 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x1C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x65 0x65 0x63 0x68 - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x01 0x20 0x50 0x61 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x61 0x6E 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 0x20 - 0x64 0x6F 0x6E 0x65 0x20 0x74 0x61 0x6C - 0x6B 0x69 0x6E 0x67 0x0D 0x0A 0x01 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 944 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_9= 0x20005389 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 952 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016017 0x00030601 0x2007A 0x000305F0 0x0 0x0 0x57415645 0x00075209 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x02 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x59 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x64 0x64 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x75 - 0x73 0x69 0x63 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1056 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_A= 0x2000538A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1064 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x0007520A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x4D 0x75 0x73 - 0x69 0x63 0x20 0x42 0x72 0x6F 0x77 0x73 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1130 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_B= 0x2000538B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1138 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007520B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AB -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x37 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x74 0x6F 0x2E 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 -ENDCHUNK - - -ENDCHUNK -#line 1226 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_C= 0x2000538C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1234 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007520C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x09 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x19 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x47 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x13 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x1B 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x47 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x5B 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x69 0x63 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D - 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x01 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1348 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_D= 0x2000538D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1356 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x0007520D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x39 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x7F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x7F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x69 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x74 0x69 0x6D 0x65 - 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1460 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_E= 0x2000538E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1468 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007520E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B2 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x8B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x69 - 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x0D 0x0A 0x01 0x20 - 0x48 0x6F 0x77 0x20 0x6D 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x63 0x61 0x6E 0x20 0x49 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1569 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_F= 0x2000538F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1577 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007520F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x56 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x22 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x56 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x6A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x6F 0x6E 0x63 0x65 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 - 0x69 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D 0x0A - 0x01 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x01 0x20 0x53 0x74 - 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 1693 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_10= 0x20005390 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1701 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075210 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x12 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x8D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x83 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x69 0x74 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x6F - 0x75 0x73 0x6C 0x79 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1805 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_11= 0x20005391 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1813 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075211 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053B2 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E - 0x0D 0x0A 0x01 0x20 0x48 0x6F 0x77 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 - 0x49 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1904 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_12= 0x20005392 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1912 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075212 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x200053B0 - FREE - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053A7 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053AD -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x69 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x69 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xB5 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x9F 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0xB3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0xC7 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC9 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x9F 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x6B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x73 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x9F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xB5 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0xC9 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 0x6E - 0x75 0x6F 0x75 0x73 0x6C 0x79 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x4E 0x6F 0x74 0x65 - 0x3A 0x20 0x20 0x59 0x6F 0x75 0x20 0x77 - 0x6F 0x6E 0x27 0x74 0x20 0x68 0x65 0x61 - 0x72 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x6C 0x6F 0x6F 0x70 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2E 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C 0x75 - 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 0x6E - 0x64 0x69 0x76 0x69 0x64 0x75 0x61 0x6C - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x0D - 0x0A 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x01 0x20 0x53 0x74 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 2048 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_13= 0x20005393 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 2056 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075213 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x2000003 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x04 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x31 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x65 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2174 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_14= 0x20005394 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 2182 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075214 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053B2 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x6F 0x72 0x20 0x33 0x44 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x6F 0x2E 0x0D 0x0A 0x01 0x20 - 0x48 0x6F 0x77 0x20 0x6D 0x61 0x6E 0x79 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x63 0x61 0x6E 0x20 0x49 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 2272 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_15= 0x20005395 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2280 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075215 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x14 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053AF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x200053AD - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x200053B0 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x60 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x60 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x74 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x41 0x74 0x74 0x61 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x6E 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 - 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 - 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x01 0x20 - 0x53 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 -ENDCHUNK - - -ENDCHUNK -#line 2396 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_16= 0x20005396 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2404 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x0001601b 0x00030601 0x20038 0x000305F0 0x0 0x0 0x57415645 0x00075216 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x50 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x50 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x6C 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x20 0x69 0x6E - 0x20 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 - 0x65 0x20 0x4D 0x61 0x6B 0x65 0x72 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x56 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F - 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2481 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_17= 0x20005397 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2489 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030601 0x20038 0x000305F0 0x0 0x0 0x57415645 0x00075217 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A9 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x56 0x6F 0x6C 0x75 0x6D - 0x65 0x20 0x43 0x6F 0x6E 0x74 0x72 0x6F - 0x6C 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 - 0x20 0x75 0x70 0x20 0x6F 0x72 0x20 0x64 - 0x6F 0x77 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2571 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_18= 0x20005398 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2579 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075218 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x22 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x5B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x31 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x41 0x64 0x6A 0x75 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x6C 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 -ENDCHUNK - - -ENDCHUNK -#line 2674 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_19= 0x20005399 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2682 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00016017 0x00030601 0x20027 0x000305F0 0x0 0x0 0x57415645 0x00075219 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - FREE - ITEM LONG 0x2000002 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x43 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x52 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6C 0x69 0x73 - 0x74 0x65 0x6E 0x20 0x74 0x6F 0x2C 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x65 0x2C 0x20 - 0x6F 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x6C 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x69 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 - 0x61 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x62 0x65 0x67 0x69 0x6E - 0x73 0x2E 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x68 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x61 0x73 0x20 0x79 0x6F - 0x75 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x66 0x72 0x61 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x66 0x72 0x61 - 0x6D 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x4C 0x69 0x73 0x74 0x65 0x6E 0x65 - 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2799 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1A= 0x2000539A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2807 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007521A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xEC 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6C 0x69 0x73 - 0x74 0x65 0x6E 0x20 0x74 0x6F 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2C 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 - 0x72 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F - 0x70 0x2C 0x20 0x6F 0x72 0x20 0x33 0x44 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x61 0x72 0x2E 0x0D 0x0A 0x2D 0x2D 0x6F - 0x72 0x2D 0x2D 0x0D 0x0A 0x54 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x6F 0x72 0x20 0x72 0x65 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x33 0x44 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 0x6F - 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x6F 0x72 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2899 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1B= 0x2000539B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2907 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00016015 0x00030601 0x0 0x000305F0 0x0 0x0 0x57415645 0x0007521B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x74 0x65 0x20 0x74 - 0x6F 0x20 0x54 0x6F 0x6E 0x79 0x3A 0x20 - 0x20 0x55 0x73 0x65 0x20 0x74 0x65 0x78 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x79 - 0x20 0x75 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x4C 0x69 0x73 0x74 0x65 0x6E 0x65 - 0x72 0x20 0x65 0x61 0x73 0x65 0x6C 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2973 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1C= 0x2000539C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2981 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007521C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x4F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x51 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x73 0x74 0x65 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x2C 0x20 - 0x72 0x65 0x6D 0x6F 0x76 0x69 0x6E 0x67 - 0x2C 0x20 0x6F 0x72 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F -ENDCHUNK - - -ENDCHUNK -#line 3076 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1D= 0x2000539D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 3084 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x0001601a 0x00030601 0x20034 0x000305F0 0x0 0x0 0x57415645 0x0007521D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x74 0x75 0x72 - 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 0x20 - 0x6F 0x6E 0x20 0x6F 0x72 0x20 0x6F 0x66 - 0x66 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x48 0x65 0x6C - 0x70 0x20 0x4D 0x61 0x63 0x68 0x69 0x6E - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3156 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1E= 0x2000539E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 3164 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x0001601a 0x00030601 0x00003012 0x000305F0 0x0 0x0 0x57415645 0x0007521E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x65 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x69 0x73 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3226 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_1F= 0x2000539F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3234 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601a 0x00030601 0x00003015 0x000305F0 0x0 0x0 0x57415645 0x0007521F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6C 0x6F 0x73 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3295 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_20= 0x200053A0 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3303 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075220 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x73 0x6F 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x79 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x6F 0x6E - 0x65 0x20 0x61 0x66 0x74 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3410 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_21= 0x200053A1 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3418 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00016017 0x00030601 0x20026 0x000305F0 0x0 0x0 0x57415645 0x00075221 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5D 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3483 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_22= 0x200053A2 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3491 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075222 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x09 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x43 0x74 0x72 0x6C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F - 0x75 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x69 0x73 0x20 0x63 - 0x68 0x61 0x69 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x79 0x6F 0x75 0x20 0x70 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x6C 0x79 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x62 0x6A 0x65 0x63 0x74 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x6E 0x65 0x77 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x70 - 0x6C 0x61 0x79 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x65 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x68 0x61 0x69 0x6E 0x2D 0x2D 0x79 0x6F - 0x75 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x69 0x6E 0x73 0x65 0x72 0x74 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3587 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_23= 0x200053A3 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3595 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00016017 0x00030601 0x0 0x000305F0 0x1AF 0x30 0x57415645 0x00075223 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x13 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053B1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x22 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x56 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x54 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x73 0x74 0x6F - 0x70 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x74 0x6F - 0x70 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x68 0x6F 0x6F 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x73 0x74 0x6F - 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3697 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_24= 0x200053A4 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3705 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x2002B 0x000305F0 0x140 0x0 0x57415645 0x00075224 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x86 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x22 0x53 0x6F 0x75 0x6E 0x64 0x20 0x53 - 0x74 0x6F 0x70 0x70 0x65 0x72 0x2C 0x22 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x63 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3770 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_25= 0x200053A5 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3778 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075225 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053A7 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x26 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x6F 0x70 0x70 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3876 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_26= 0x200053A6 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3884 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075226 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x200053A7 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A8 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x39 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x69 0x6E 0x69 - 0x6E 0x67 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F 0x0D 0x0A 0x01 - 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 3982 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_27= 0x200053B4 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3990 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075234 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053AA -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x91 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x24 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x62 0x65 0x67 - 0x69 0x6E 0x73 0x2E 0x20 0x20 0x59 0x6F - 0x75 0x27 0x6C 0x6C 0x20 0x68 0x65 0x61 - 0x72 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 0x72 - 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 0x66 - 0x72 0x61 0x6D 0x65 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4097 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_28= 0x200053B5 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 4105 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x00075235 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x73 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x53 - 0x6F 0x75 0x6E 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4171 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_29= 0x200053B6 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 4179 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075236 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9C 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 0x2C - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 - 0x65 0x6D 0x6F 0x76 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4248 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2A= 0x200053B7 - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 4256 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075237 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xBC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x200053A7 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x2D 0x2D 0x57 0x68 0x61 0x74 - 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A - 0x01 0x20 0x50 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 -ENDCHUNK - - -ENDCHUNK -#line 4346 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2C= 0x200053B8 - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4354 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00016017 0x00030601 0x20029 0x000305F0 0x0 0x0 0x57415645 0x00075238 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x6F 0x6F 0x70 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4438 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2D= 0x200053B9 - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4446 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00016017 0x00030601 0x2002A 0x000305F0 0x0 0x0 0x57415645 0x00075239 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x9A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x41 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x4D 0x61 0x74 0x63 0x68 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4533 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_2E= 0x200053A7 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4541 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075227 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x58 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x01 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x7A 0x01 0x00 0x02 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE7 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x80 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xE9 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x04 0x01 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x04 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x80 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x01 0x01 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x0D 0x0A 0x31 0x09 0x55 - 0x73 0x65 0x20 0x74 0x68 0x65 0x20 0x46 - 0x72 0x61 0x6D 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 0x53 - 0x6C 0x69 0x64 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x77 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2E - 0x0D 0x0A 0x01 0x0D 0x0A 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 0x61 - 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C 0x20 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x46 0x72 0x61 0x6D 0x65 0x20 0x53 0x6C - 0x69 0x64 0x65 0x72 0x2E 0x0D 0x0A 0x54 - 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x65 0x6E - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x53 0x63 0x65 0x6E - 0x65 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x62 0x75 0x74 0x74 - 0x6F 0x6E 0x2D 0x01 0x0D 0x0A 0x4E 0x6F - 0x74 0x65 0x3A 0x20 0x20 0x49 0x66 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x66 0x72 0x61 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x50 0x6C 0x61 - 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x61 0x75 0x74 - 0x6F 0x6D 0x61 0x74 0x69 0x63 0x61 0x6C - 0x6C 0x79 0x20 0x72 0x65 0x77 0x69 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x67 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4680 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_44= 0x200053A8 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 4688 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075228 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 4789 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_51= 0x200053A9 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 4797 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075229 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 4891 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_52= 0x200053AA - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 4899 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x41 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5034 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_60= 0x200053AB - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 5042 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20029 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6C 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6C 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6E - 0x74 0x69 0x6E 0x75 0x6F 0x75 0x73 0x6C - 0x79 0x0D 0x0A 0x54 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x6F 0x75 0x73 0x6C 0x79 0x0D - 0x0A 0x31 0x09 0x43 0x68 0x6F 0x6F 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x2C 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x4C 0x6F 0x6F 0x70 0x2D 0x01 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x70 0x72 0x6F 0x70 - 0x2C 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 - 0x64 0x2C 0x20 0x6F 0x72 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 - 0x61 0x63 0x68 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5150 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_61= 0x200053AC - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 5158 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xE4 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xFF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xFF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x41 0x74 0x74 - 0x61 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x54 0x6F 0x20 - 0x61 0x74 0x74 0x61 0x63 0x68 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x72 0x72 0x65 0x6E 0x74 0x20 0x61 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x70 0x6F 0x73 - 0x69 0x74 0x69 0x6F 0x6E 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x61 0x74 0x74 0x61 0x63 0x68 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x61 0x63 0x74 0x69 0x6F 0x6E 0x20 - 0x70 0x6F 0x73 0x69 0x74 0x69 0x6F 0x6E - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x68 0x6F - 0x6F 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4D 0x6F 0x72 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E 0x0D 0x0A 0x34 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x41 0x63 0x74 0x69 0x6F 0x6E - 0x20 0x4D 0x61 0x74 0x63 0x68 0x65 0x72 - 0x2D 0x01 0x0D 0x0A 0x35 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 0x70 - 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 0x20 - 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x74 0x74 0x61 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5284 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_62= 0x200053AD - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 5292 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BD - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x65 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAD 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x28 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x4D 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x52 0x65 0x6D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x61 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x52 0x65 0x6D 0x6F 0x76 0x65 - 0x20 0x53 0x6F 0x75 0x6E 0x64 0x2D 0x01 - 0x0D 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x33 0x44 - 0x20 0x6F 0x62 0x6A 0x65 0x63 0x74 0x20 - 0x6F 0x72 0x20 0x62 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 - 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x34 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 0x6F - 0x74 0x74 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5411 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_63= 0x200053AE - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 5419 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004E -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC1 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xDF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xE0 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x68 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xDF 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x50 0x61 0x75 - 0x73 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x75 - 0x6E 0x74 0x69 0x6C 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x20 0x69 0x73 - 0x20 0x64 0x6F 0x6E 0x65 0x20 0x74 0x61 - 0x6C 0x6B 0x69 0x6E 0x67 0x0D 0x0A 0x54 - 0x6F 0x20 0x70 0x61 0x75 0x73 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x69 0x73 0x20 0x64 0x6F 0x6E 0x65 - 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E 0x67 - 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x61 0x75 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x0D 0x0A 0x32 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4D 0x6F - 0x72 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x57 0x61 0x69 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x45 0x6E 0x64 - 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 5533 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_69= 0x200053AF - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 5541 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x0007522F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20027 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x58 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA9 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 - 0x20 0x6F 0x66 0x20 0x69 0x6E 0x64 0x69 - 0x76 0x69 0x64 0x75 0x61 0x6C 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x73 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x20 0x74 0x68 0x65 0x20 0x76 0x6F 0x6C - 0x75 0x6D 0x65 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x64 0x69 0x76 0x69 0x64 0x75 0x61 - 0x6C 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x4C 0x69 - 0x73 0x74 0x65 0x6E 0x65 0x72 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x20 0x76 0x6F 0x6C 0x75 0x6D 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5645 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_73= 0x200053B0 - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 5653 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075230 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x01 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x97 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xA5 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xAF 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xBA 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDD 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x96 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xBA 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x96 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xA7 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0xB1 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x74 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x61 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x6E 0x64 0x20 0x6F 0x66 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x3A 0x0D 0x0A - 0x01 0x2D 0x53 0x6F 0x75 0x6E 0x64 0x20 - 0x45 0x66 0x66 0x65 0x63 0x74 0x73 0x0D - 0x0A 0x01 0x2D 0x53 0x70 0x65 0x65 0x63 - 0x68 0x0D 0x0A 0x01 0x2D 0x4D 0x75 0x73 - 0x69 0x63 0x0D 0x0A 0x33 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x53 0x6F 0x75 0x6E - 0x64 0x20 0x53 0x74 0x6F 0x70 0x70 0x65 - 0x72 0x2E 0x0D 0x0A 0x34 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4F 0x4B 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5775 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_74= 0x200053B1 - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 5783 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075231 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20281 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20282 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20283 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x5F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x78 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x7B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x5F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x78 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x6F 0x6F 0x73 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x95 - 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 - 0x66 0x65 0x63 0x74 0x73 0x2C 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x01 0x0D 0x0A - 0x95 0x09 0x54 0x6F 0x20 0x61 0x64 0x64 - 0x20 0x64 0x69 0x61 0x6C 0x6F 0x67 0x75 - 0x65 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x01 0x0D 0x0A 0x95 0x09 0x54 0x6F - 0x20 0x61 0x64 0x64 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x2C 0x20 0x63 0x6C 0x69 0x63 - 0x6B 0x20 0x01 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 5888 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_76= 0x200053B2 - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 5896 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075232 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x48 0x6F 0x77 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x73 0x20 0x63 0x61 0x6E 0x20 - 0x49 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x3F 0x0D 0x0A 0x59 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x61 0x74 0x74 0x61 0x63 - 0x68 0x3A 0x0D 0x0A 0x95 0x09 0x54 0x77 - 0x6F 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x62 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x28 0x6F 0x6E 0x65 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 0x65 - 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x6E 0x65 0x20 0x6D 0x75 0x73 0x69 0x63 - 0x20 0x73 0x65 0x6C 0x65 0x63 0x74 0x69 - 0x6F 0x6E 0x29 0x2E 0x0D 0x0A 0x95 0x09 - 0x54 0x77 0x6F 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x74 0x6F 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x70 0x72 0x6F 0x70 0x2C 0x20 0x6F 0x72 - 0x20 0x33 0x44 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x20 0x28 0x6F 0x6E 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x65 0x66 0x66 - 0x65 0x63 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x6E 0x65 0x20 0x73 0x70 0x65 0x65 - 0x63 0x68 0x20 0x72 0x65 0x63 0x6F 0x72 - 0x64 0x69 0x6E 0x67 0x29 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5995 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - - -SET _help_48544F50_77= 0x200053B3 - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 6003 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x00075233 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x61 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xBE 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x1D 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x73 0x6F - 0x75 0x6E 0x64 0x73 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x0D 0x0A 0x54 - 0x6F 0x20 0x63 0x68 0x61 0x69 0x6E 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 0x74 - 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x79 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x6F 0x6E 0x65 0x20 0x61 0x66 - 0x74 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x50 - 0x6C 0x61 0x79 0x20 0x4F 0x6E 0x63 0x65 - 0x2E 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x20 0x77 0x68 0x65 0x6E - 0x20 0x79 0x6F 0x75 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x6F - 0x62 0x6A 0x65 0x63 0x74 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x74 0x74 0x61 0x63 0x68 - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x6F 0x2E 0x0D 0x0A - 0x54 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x69 0x73 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x70 0x72 0x65 0x76 0x69 - 0x6F 0x75 0x73 0x6C 0x79 0x20 0x61 0x74 - 0x74 0x61 0x63 0x68 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x6F 0x62 - 0x6A 0x65 0x63 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x2D 0x2D 0x79 0x6F 0x75 0x20 - 0x63 0x61 0x6E 0x27 0x74 0x20 0x69 0x6E - 0x73 0x65 0x72 0x74 0x20 0x61 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6125 "H:\\BUILD\\SOC\\src\\help\\htsounds.cht" - -#line 49 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -SET _help_48544F50_0= 0x20005640 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016018 0x00030601 0x20008 0x000305F0 0x0 0x0 0x57415645 0x00075170 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x57 0x6F 0x72 0x64 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1= 0x20005641 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 103 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016018 0x00030601 0x20046 0x000305F0 0x0 0x0 0x57415645 0x00075171 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x91 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x50 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x72 0x65 - 0x61 0x74 0x65 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x63 0x61 0x6E 0x20 0x74 0x79 0x70 - 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 0x20 - 0x63 0x72 0x65 0x64 0x69 0x74 0x73 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x61 0x64 0x64 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x57 0x6F 0x72 0x64 0x20 - 0x42 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 212 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2= 0x20005642 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 220 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x0 0x57415645 0x00075172 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x44 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x74 0x6F 0x72 0x79 0x20 0x6F 0x72 - 0x20 0x43 0x72 0x65 0x64 0x69 0x74 0x73 - 0x2E 0x0D 0x0A 0x95 0x09 0x53 0x74 0x6F - 0x72 0x79 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x64 0x6F 0x6E 0x27 0x74 0x20 0x6D - 0x6F 0x76 0x65 0x2E 0x0D 0x0A 0x95 0x09 - 0x43 0x72 0x65 0x64 0x69 0x74 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x20 0x74 - 0x6F 0x77 0x61 0x72 0x64 0x73 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x70 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x79 0x6F 0x75 0x20 0x70 0x6C - 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 318 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3= 0x20005643 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 326 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075173 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_34=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005691 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x43 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E 0x20 0x20 0x49 0x66 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x6D 0x69 0x73 0x74 0x61 0x6B - 0x65 0x2C 0x20 0x70 0x72 0x65 0x73 0x73 - 0x20 0x42 0x61 0x63 0x6B 0x73 0x70 0x61 - 0x63 0x65 0x2E 0x0D 0x0A 0x01 0x09 0x4D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x63 0x72 - 0x65 0x64 0x69 0x74 0x73 0x20 0x73 0x63 - 0x72 0x6F 0x6C 0x6C -ENDCHUNK - - -ENDCHUNK -#line 413 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_4= 0x20005644 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 421 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075174 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_35=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000568E - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005682 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005684 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x61 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A 0x01 - 0x4D 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x0D 0x0A 0x01 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 532 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_5= 0x20005645 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 540 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016017 0x00030601 0x2002F 0x000305F0 0x0 0x0 0x57415645 0x00075175 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x67 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x36 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x67 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x79 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x6C 0x6F 0x6F 0x6B 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x4C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 647 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_6= 0x20005646 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 655 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x14E 0xD3 0x57415645 0x00075176 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B - 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 721 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_7= 0x20005647 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 729 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075177 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 814 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_8= 0x20005648 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 822 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075178 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x11 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005689 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x47 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x5C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5E 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x49 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0xC0 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x77 - 0x61 0x79 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 -ENDCHUNK - - -ENDCHUNK -#line 933 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_9= 0x20005649 - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 941 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00016017 0x00030601 0x2002D 0x000305F0 0x0 0x0 0x57415645 0x00075179 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x03 0x00 0x00 0x00 0x2F 0x00 0x00 0x01 - 0x05 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x82 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2F 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x81 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x82 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x42 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x42 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x82 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x73 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x79 0x6C 0x65 0x2C 0x20 0x66 - 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D 0x70 - 0x6C 0x65 0x20 0x62 0x6F 0x6C 0x64 0x20 - 0x6F 0x72 0x20 0x69 0x74 0x61 0x6C 0x69 - 0x63 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 0x79 - 0x6C 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1045 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_A= 0x2000564A - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1053 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x0001601d 0x00030601 0x0 0x000305F0 0x19C 0x91 0x57415645 0x0007517A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x98 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x79 0x6C - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1118 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_B= 0x2000564B - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1126 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007517B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1213 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_C= 0x2000564C - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1221 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007517C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005685 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005688 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x20 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x3E 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x06 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A - 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 1332 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_D= 0x2000564D - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 1340 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00016017 0x00030601 0x20032 0x000305F0 0x0 0x0 0x57415645 0x0007517D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x65 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x71 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 0x73 - 0x69 0x7A 0x65 0x0D 0x0A 0x31 0x09 0x47 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x4C - 0x65 0x74 0x74 0x65 0x72 0x20 0x53 0x69 - 0x7A 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1437 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_E= 0x2000564E - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 1445 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x11D 0xDB 0x57415645 0x0007517E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1510 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_F= 0x2000564F - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 1518 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007517F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1605 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_10= 0x20005650 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 1613 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075180 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005685 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005688 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x3D 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x69 0x7A 0x65 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x79 0x6C 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 1725 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_11= 0x20005651 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 1733 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00016017 0x00030601 0x2002E 0x000305F0 0x0 0x0 0x57415645 0x00075181 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x61 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x4C 0x65 0x74 0x74 0x65 0x72 0x20 0x43 - 0x6F 0x6C 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1829 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_12= 0x20005652 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 1837 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x157 0xBC 0x57415645 0x00075182 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x91 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1902 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_13= 0x20005653 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 1910 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075183 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x4E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 0x63 - 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1997 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_14= 0x20005654 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 2005 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075184 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005689 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005688 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x17 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x2D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x2F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x7B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x79 0x6C 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 2126 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_15= 0x20005655 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 2134 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00016017 0x00030601 0x2002C 0x000305F0 0x0 0x0 0x57415645 0x00075185 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x10 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x78 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x89 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x70 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x43 0x6F 0x6C - 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2234 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_16= 0x20005656 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 2242 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x1A2 0xBD 0x57415645 0x00075186 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x6C 0x6F - 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2307 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_17= 0x20005657 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 2315 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075187 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x99 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x32 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2385 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_18= 0x20005658 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 2393 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075188 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_37=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005685 - ITEM LONG 0xC0000005 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x20005687 - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005686 - ITEM LONG 0x40000001 - VAR BYTE 5 LONG 0x20005688 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x18 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x29 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x08 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x79 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x50 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x65 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x7B 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 - 0x65 0x72 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x0D 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A 0x01 - 0x20 0x43 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x79 0x6C 0x65 0x0D 0x0A 0x01 0x20 0x43 - 0x68 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x20 - 0x6C 0x65 0x74 0x74 0x65 0x72 0x73 0x20 - 0x6C 0x6F 0x6F 0x6B -ENDCHUNK - - -ENDCHUNK -#line 2516 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_19= 0x20005659 - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 2524 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075189 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x87 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x25 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAC 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x87 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA8 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xAC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0xA6 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x6D 0x6F 0x76 0x65 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x0D 0x0A 0x32 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x69 0x64 0x65 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x73 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x68 0x61 0x6E 0x64 0x2E 0x0D 0x0A - 0x33 0x09 0x44 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x62 0x6F 0x78 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 0x74 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2637 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1A= 0x2000565A - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 2645 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007518A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005682 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1F 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x4D 0x6F 0x76 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2D 0x2D 0x57 0x68 0x61 - 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F 0x0D - 0x0A 0x01 0x20 0x55 0x6E 0x64 0x6F 0x0D - 0x0A 0x01 0x20 0x43 0x68 0x61 0x6E 0x67 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x73 0x69 0x7A 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2740 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1B= 0x2000565B - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 2748 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007518B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568B - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBD 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xC1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x27 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x5C 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xBF 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x73 - 0x69 0x7A 0x65 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x73 0x69 0x7A 0x65 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2E 0x0D 0x0A 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x68 0x61 0x6E 0x64 - 0x6C 0x65 0x20 0x28 0x61 0x20 0x6C 0x69 - 0x74 0x74 0x6C 0x65 0x20 0x73 0x71 0x75 - 0x61 0x72 0x65 0x29 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x72 0x72 0x6F 0x77 0x2E 0x20 0x0D - 0x0A 0x32 0x09 0x44 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x68 0x61 0x6E 0x64 - 0x6C 0x65 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x62 0x6F 0x78 - 0x20 0x69 0x73 0x20 0x74 0x68 0x65 0x20 - 0x73 0x69 0x7A 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 2868 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1C= 0x2000565C - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 2876 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007518C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005684 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x73 0x69 0x7A 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D 0x57 - 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 - 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 2971 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1D= 0x2000565D - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 2979 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00016018 0x00030601 0x20069 0x000305F0 0x0 0x0 0x57415645 0x0007518D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x43 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x90 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x9D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x29 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 - 0x6F 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x72 0x64 0x73 0x20 0x73 0x63 0x72 - 0x6F 0x6C 0x6C 0x20 0x6F 0x72 0x20 0x73 - 0x74 0x61 0x79 0x20 0x73 0x74 0x69 0x6C - 0x6C 0x0D 0x0A 0x31 0x09 0x47 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x53 0x63 0x72 - 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x6F - 0x72 0x20 0x4E 0x6F 0x6E 0x2D 0x53 0x63 - 0x72 0x6F 0x6C 0x6C 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3090 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1E= 0x2000565E - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 3098 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00016019 0x00030601 0x0 0x000305F0 0x1E0 0x90 0x57415645 0x0007518E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x20 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x6F 0x72 0x20 0x4E 0x6F 0x6E - 0x2D 0x53 0x63 0x72 0x6F 0x6C 0x6C 0x69 - 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3166 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_1F= 0x2000565F - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 3174 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007518F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x78 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x26 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3242 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_20= 0x20005660 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 3250 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075190 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005691 - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x16102 0xFFFFFFFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x44 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x5D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x43 0x68 0x61 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x73 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x6F 0x72 0x20 0x73 0x74 - 0x61 0x79 0x20 0x73 0x74 0x69 0x6C 0x6C - 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E - 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x09 - 0x4D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x63 - 0x72 0x65 0x64 0x69 0x74 0x73 0x20 0x73 - 0x63 0x72 0x6F 0x6C 0x6C 0x0D 0x0A 0x01 - 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 3352 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_21= 0x20005661 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 3360 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x00075191 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6E 0x74 0x73 0x0D 0x0A - 0x95 0x09 0x54 0x68 0x65 0x20 0x62 0x6C - 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x73 0x65 0x72 0x74 0x69 0x6F 0x6E - 0x20 0x70 0x6F 0x69 0x6E 0x74 0x20 0x28 - 0x6C 0x29 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x20 0x73 0x68 0x6F 0x77 0x73 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x72 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x67 0x6F 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x79 0x6F 0x75 0x20 0x74 - 0x79 0x70 0x65 0x2E 0x0D 0x0A 0x95 0x09 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x6D 0x69 - 0x73 0x74 0x61 0x6B 0x65 0x2C 0x20 0x70 - 0x72 0x65 0x73 0x73 0x20 0x42 0x61 0x63 - 0x6B 0x73 0x70 0x61 0x63 0x65 0x2E 0x0D - 0x0A 0x95 0x09 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x20 0x72 0x65 0x61 0x63 - 0x68 0x20 0x74 0x68 0x65 0x20 0x72 0x69 - 0x67 0x68 0x74 0x20 0x65 0x64 0x67 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6F 0x78 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x61 - 0x75 0x74 0x6F 0x6D 0x61 0x74 0x69 0x63 - 0x61 0x6C 0x6C 0x79 0x20 0x6D 0x6F 0x76 - 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x6C 0x69 - 0x6E 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3454 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_22= 0x20005662 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 3462 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xC8 0x57415645 0x00075192 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x59 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_33=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005682 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x20005684 - ITEM LONG 0xC0000004 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x2000568E - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x16 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x18 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x6A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x6A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x22 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x40 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x54 0x79 0x70 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6E 0x74 0x73 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 0x6E - 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x43 0x68 - 0x61 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x73 0x69 0x7A 0x65 - 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x01 - 0x20 0x52 0x65 0x6D 0x6F 0x76 0x69 0x6E - 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 3574 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_23= 0x20005663 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 3582 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075193 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x64 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x38 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x66 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x81 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x81 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x66 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3694 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_24= 0x20005664 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 3702 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x0001601b 0x00030601 0x20055 0x000305F0 0x0 0x0 0x57415645 0x00075194 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x40 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3765 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_25= 0x20005665 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 3773 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075195 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3856 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_26= 0x20005666 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 3864 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x00075196 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_29=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x72 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x29 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x49 0x66 - 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 0x61 - 0x72 0x79 0x2C 0x20 0x67 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x73 0x2E 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x43 0x75 0x74 0x2C - 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 - 0x20 0x50 0x61 0x73 0x74 0x65 0x20 0x54 - 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 3968 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_27= 0x20005667 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 3976 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x00075197 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4043 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_28= 0x20005668 - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 4051 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075198 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4116 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_29= 0x20005669 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 4124 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x00075199 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1A, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4194 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2A= 0x2000566A - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 4202 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x0007519A -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x75 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x25 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x2D 0x2D 0x57 0x68 0x61 0x74 0x20 - 0x6E 0x65 0x78 0x74 0x3F 0x0D 0x0A 0x01 - 0x20 0x55 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 4289 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2B= 0x2000566B - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 4297 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007519B -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x76 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x6F 0x70 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x70 0x79 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 - 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 - 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4407 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2C= 0x2000566C - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 4415 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x0001601b 0x00030601 0x20055 0x000305F0 0x0 0x0 0x57415645 0x0007519C -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4478 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2D= 0x2000566D - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 4486 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x0007519D -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x70 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4554 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2E= 0x2000566E - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 4562 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x0007519E -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_30=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4668 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_2F= 0x2000566F - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 4676 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x0007519F -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x4A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4742 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_30= 0x20005690 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 4750 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751A0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005684 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x76 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x79 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x69 0x73 0x20 0x70 0x61 0x73 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F 0x0D 0x0A 0x01 0x20 0x4D - 0x6F 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 4850 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_31= 0x20005670 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 4858 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751A1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x88 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x24 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x66 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x6F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x87 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x31 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x75 0x74 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x43 0x75 0x74 0x2C 0x20 0x43 0x6F - 0x70 0x79 0x2C 0x20 0x26 0x20 0x50 0x61 - 0x73 0x74 0x65 0x20 0x54 0x6F 0x6F 0x6C - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 4967 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_32= 0x20005671 - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 4975 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x0001601b 0x00030601 0x20056 0x000305F0 0x0 0x0 0x57415645 0x000751A2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x20 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5040 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_33= 0x20005672 - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 5048 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751A3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568A -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x13 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x13 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x64 0x72 0x61 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5131 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_34= 0x20005673 - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 5139 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751A4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x73 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x74 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2A 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x20 0x70 0x61 - 0x73 0x74 0x65 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 - 0x61 0x72 0x79 0x2C 0x20 0x67 0x6F 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 - 0x61 0x73 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x43 0x75 0x74 - 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C 0x20 - 0x26 0x20 0x50 0x61 0x73 0x74 0x65 0x20 - 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5243 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_35= 0x20005674 - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 5251 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x000751A5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x46 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5316 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_36= 0x20005675 - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 5324 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751A6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x37 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2C - 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x70 0x61 0x73 0x74 0x65 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5394 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_37= 0x20005676 - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 5402 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751A7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x97 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x33 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x77 0x6F 0x72 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2D - 0x2D 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 - 0x78 0x74 0x3F 0x0D 0x0A 0x01 0x20 0x55 - 0x6E 0x64 0x6F -ENDCHUNK - - -ENDCHUNK -#line 5491 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_38= 0x20005677 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 5499 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751A8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x6B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x8D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x36 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x63 0x75 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x61 0x73 - 0x74 0x65 0x20 0x61 0x6E 0x20 0x65 0x6E - 0x74 0x69 0x72 0x65 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x63 0x75 0x74 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x2E - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 0x75 - 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 0x2C - 0x20 0x26 0x20 0x50 0x61 0x73 0x74 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5608 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_39= 0x20005678 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 5616 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x0001601b 0x00030601 0x20056 0x000305F0 0x0 0x0 0x57415645 0x000751A9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x43 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5679 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3A= 0x20005679 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 5687 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751AA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x90 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x61 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x79 - 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x63 0x75 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5755 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3B= 0x2000567A - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 5763 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751AB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x75 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x76 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x1B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x51 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x70 0x61 0x73 - 0x74 0x65 0x0D 0x0A 0x31 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x73 0x74 0x65 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x2E 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 0x43 - 0x75 0x74 0x2C 0x20 0x43 0x6F 0x70 0x79 - 0x2C 0x20 0x26 0x20 0x50 0x61 0x73 0x74 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5868 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3C= 0x2000567B - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 5876 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x0001601b 0x00030601 0x20054 0x000305F0 0x0 0x0 0x57415645 0x000751AC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x44 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x50 0x61 0x73 0x74 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 5942 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3D= 0x2000567C - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 5950 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751AD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x20005684 - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x59 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x61 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x74 0x69 0x6E - 0x67 0x20 0x26 0x20 0x70 0x61 0x73 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x2D 0x2D - 0x57 0x68 0x61 0x74 0x20 0x6E 0x65 0x78 - 0x74 0x3F 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x20 0x69 0x73 0x20 0x70 0x61 0x73 0x74 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F 0x0D 0x0A 0x01 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 -ENDCHUNK - - -ENDCHUNK -#line 6050 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3E= 0x2000567D - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 6058 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x0001601b 0x00030601 0x20036 0x000305F0 0x0 0x0 0x57415645 0x000751AE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0x2000001 - VAR - BYTE - 0x0B 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x2000568C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x03 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x7D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x89 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA1 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xA2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x46 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x72 0x65 0x6D - 0x6F 0x76 0x65 0x20 0x61 0x6E 0x20 0x65 - 0x6E 0x74 0x69 0x72 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A 0x31 - 0x09 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x2E 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6169 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_3F= 0x2000567E - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 6177 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x0001601b 0x00030601 0x20052 0x000305F0 0x0 0x0 0x57415645 0x000751AF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x8E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x6D 0x6F 0x76 0x65 0x20 0x57 - 0x6F 0x72 0x64 0x20 0x42 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6241 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_40= 0x2000567F - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 6249 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x0001601b 0x00030601 0x0 0x000305F0 0x140 0x6E 0x57415645 0x000751B0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x88 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x20 0x67 0x65 0x74 0x20 0x72 0x69 0x64 - 0x20 0x6F 0x66 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6314 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_41= 0x20005680 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 6322 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x0001601e 0x00030601 0x0 0x000305F0 0x140 0xF0 0x57415645 0x000751B1 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x20005683 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016102 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x36 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x67 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x6F 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x69 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x6D 0x6F 0x76 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x75 0x72 0x72 0x65 0x6E 0x74 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2D 0x2D 0x57 0x68 - 0x61 0x74 0x20 0x6E 0x65 0x78 0x74 0x3F - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x69 - 0x73 0x20 0x72 0x65 0x6D 0x6F 0x76 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x63 0x75 0x72 0x72 0x65 - 0x6E 0x74 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x0D 0x0A 0x01 0x20 0x55 0x6E 0x64 - 0x6F -ENDCHUNK - - -ENDCHUNK -#line 6418 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_42= 0x20005681 - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 6426 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0x000751B2 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x7E 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B3 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x24 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x21 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x22 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x53 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x20 0x4B 0x65 - 0x79 0x0D 0x0A 0x95 0x09 0x48 0x6F 0x6C - 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 0x43 - 0x74 0x72 0x6C 0x2B 0x56 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6510 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_43= 0x20005682 - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 6518 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B3 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0B 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x44 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x84 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xA5 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x43 0x68 0x61 0x6E - 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x73 0x69 - 0x7A 0x65 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 - 0x0D 0x0A 0x31 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x20 0x68 0x61 0x6E 0x64 0x6C 0x65 - 0x20 0x28 0x61 0x20 0x6C 0x69 0x74 0x74 - 0x6C 0x65 0x20 0x73 0x71 0x75 0x61 0x72 - 0x65 0x29 0x2E 0x20 0x0D 0x0A 0x54 0x68 - 0x65 0x20 0x63 0x75 0x72 0x73 0x6F 0x72 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x20 0x61 - 0x72 0x72 0x6F 0x77 0x2E 0x0D 0x0A 0x32 - 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 0x74 - 0x74 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x68 0x61 0x6E 0x64 0x6C 0x65 0x20 - 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x62 0x6F 0x78 0x20 0x69 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x69 0x7A - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6627 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_44= 0x20005683 - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 6635 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B4 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20037 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202BC -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x63 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x0E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3E 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x54 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x56 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x63 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x55 0x6E 0x64 - 0x6F 0x2F 0x52 0x65 0x64 0x6F 0x0D 0x0A - 0x54 0x6F 0x20 0x75 0x6E 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x55 0x6E 0x64 0x6F 0x2D 0x01 0x0D 0x0A - 0x54 0x6F 0x20 0x72 0x65 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x20 0x75 0x6E 0x64 0x69 0x64 0x0D 0x0A - 0x95 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x52 0x65 0x64 0x6F 0x2D 0x01 -ENDCHUNK - - -ENDCHUNK -#line 6736 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_45= 0x20005684 - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 6744 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B5 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x03 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x78 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x78 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x4D 0x6F 0x76 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A - 0x54 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x0D 0x0A 0x31 0x09 0x4D 0x6F - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x63 0x75 0x72 - 0x73 0x6F 0x72 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x73 0x69 0x64 0x65 - 0x2E 0x0D 0x0A 0x54 0x68 0x65 0x20 0x63 - 0x75 0x72 0x73 0x6F 0x72 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x68 0x61 0x6E 0x64 0x2E - 0x0D 0x0A 0x32 0x09 0x48 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x62 0x6F 0x78 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6847 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_46= 0x20005685 - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 6855 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B6 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002E - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x33 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x48 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x33 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x49 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x4B 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 0x48 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x6C - 0x65 0x74 0x74 0x65 0x72 0x20 0x63 0x6F - 0x6C 0x6F 0x72 0x0D 0x0A 0x31 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x4C 0x65 0x74 - 0x74 0x65 0x72 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x2D 0x01 0x0D 0x0A 0x32 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 0x2E - 0x0D 0x0A 0x33 0x09 0x49 0x6E 0x20 0x61 - 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 0x6F - 0x78 0x2C 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 - 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x64 0x72 0x61 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 0x72 - 0x73 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6965 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_47= 0x20005686 - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 6973 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B7 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20032 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x45 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x31 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x45 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x31 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x48 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x45 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x0D 0x0A - 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x20 0x73 0x69 0x7A - 0x65 0x0D 0x0A 0x31 0x09 0x43 0x6C 0x69 - 0x63 0x6B 0x20 0x4C 0x65 0x74 0x74 0x65 - 0x72 0x20 0x53 0x69 0x7A 0x65 0x2D 0x01 - 0x0D 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x73 0x69 - 0x7A 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x2E 0x0D 0x0A 0x33 0x09 - 0x49 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x2C 0x20 0x68 - 0x6F 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x62 0x75 0x74 0x74 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7084 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_48= 0x20005687 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 7092 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B8 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002D -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x3B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x3E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3B 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 0x0D - 0x0A 0x54 0x6F 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x79 0x6C 0x65 0x0D 0x0A 0x31 0x09 - 0x43 0x6C 0x69 0x63 0x6B 0x20 0x53 0x74 - 0x79 0x6C 0x65 0x73 0x2D 0x01 0x0D 0x0A - 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x79 0x6C - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x2E 0x0D 0x0A 0x33 0x09 0x49 - 0x6E 0x20 0x61 0x20 0x77 0x6F 0x72 0x64 - 0x20 0x62 0x6F 0x78 0x2C 0x20 0x68 0x6F - 0x6C 0x64 0x20 0x64 0x6F 0x77 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 0x61 - 0x67 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 0x74 - 0x74 0x65 0x72 0x73 0x20 0x77 0x68 0x6F - 0x73 0x65 0x20 0x73 0x74 0x79 0x6C 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x63 0x68 0x61 - 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7199 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_49= 0x20005688 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 7207 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751B9 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x52 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x55 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x71 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x79 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F - 0x6F 0x6B 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x79 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x73 0x20 0x6C 0x6F - 0x6F 0x6B 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4C 0x65 0x74 0x74 - 0x65 0x72 0x73 0x2D 0x01 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x66 0x6F 0x6E 0x74 0x20 - 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E 0x74 - 0x2E 0x0D 0x0A 0x33 0x09 0x49 0x6E 0x20 - 0x61 0x20 0x77 0x6F 0x72 0x64 0x20 0x62 - 0x6F 0x78 0x2C 0x20 0x68 0x6F 0x6C 0x64 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x73 0x65 0x20 - 0x62 0x75 0x74 0x74 0x6F 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x64 0x72 0x61 0x67 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x65 0x74 0x74 0x65 - 0x72 0x73 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7316 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_4A= 0x20005689 - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 7324 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BA -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2002C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x03 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x57 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x70 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x42 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x70 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x42 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x90 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x90 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x70 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x20 0x43 0x68 0x61 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x0D 0x0A 0x54 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x0D 0x0A 0x31 0x09 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x4D 0x6F 0x72 0x65 - 0x20 0x54 0x6F 0x6F 0x6C 0x73 0x2E 0x0D - 0x0A 0x32 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x43 0x6F 0x6C 0x6F - 0x72 0x2D 0x01 0x0D 0x0A 0x33 0x09 0x43 - 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x6C 0x6F 0x72 0x20 0x79 - 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 0x2E - 0x0D 0x0A 0x34 0x09 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x20 0x62 0x6F 0x78 0x20 0x77 - 0x68 0x6F 0x73 0x65 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x79 0x6F 0x75 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7431 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_4B= 0x20005691 - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 7439 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x21 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_31=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20039 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x02 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFC 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0x26 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x27 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2E 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2E 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFC 0x00 0x00 0x82 - 0xFB 0xFF 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x01 0x09 0x4D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x73 0x63 0x72 0x6F 0x6C - 0x6C 0x0D 0x0A 0x54 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x73 0x63 0x72 0x6F 0x6C 0x6C 0x0D 0x0A - 0x31 0x09 0x54 0x79 0x70 0x65 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x77 0x6F - 0x72 0x64 0x73 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6C 0x6C 0x20 0x75 0x70 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x65 0x64 0x69 - 0x74 0x73 0x20 0x62 0x6F 0x78 0x2E 0x0D - 0x0A 0x32 0x09 0x49 0x66 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x72 0x6F - 0x6C 0x6C 0x20 0x63 0x6F 0x6D 0x70 0x6C - 0x65 0x74 0x65 0x6C 0x79 0x20 0x6F 0x66 - 0x66 0x20 0x74 0x68 0x65 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2C 0x20 0x61 0x64 - 0x64 0x20 0x62 0x6C 0x61 0x6E 0x6B 0x20 - 0x6C 0x69 0x6E 0x65 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x65 - 0x64 0x69 0x74 0x73 0x20 0x62 0x6F 0x78 - 0x20 0x62 0x79 0x20 0x70 0x72 0x65 0x73 - 0x73 0x69 0x6E 0x67 0x20 0x45 0x6E 0x74 - 0x65 0x72 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x6E 0x6F 0x20 - 0x6C 0x6F 0x6E 0x67 0x65 0x72 0x20 0x73 - 0x65 0x65 0x20 0x61 0x6E 0x79 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x2E 0x0D 0x0A 0x33 0x09 - 0x57 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x64 0x6F 0x6E 0x65 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6C 0x61 0x79 - 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E 0x2D - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 7558 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_50= 0x2000568A - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 7566 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BB -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 7660 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_51= 0x2000568B - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 7668 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BC -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD0 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x79 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x88 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x06 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x79 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x67 0x0D 0x0A - 0x31 0x09 0x48 0x6F 0x6C 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x62 0x75 - 0x74 0x74 0x6F 0x6E 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x2E 0x0D 0x0A 0x32 0x09 0x57 - 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 0x27 - 0x76 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x64 0x72 0x61 0x67 - 0x67 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x65 - 0x74 0x20 0x67 0x6F 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x73 - 0x65 0x20 0x62 0x75 0x74 0x74 0x6F 0x6E - 0x2E 0x0D 0x0A 0x54 0x69 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x3A 0x20 0x20 0x59 0x6F 0x75 0x27 - 0x6C 0x6C 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x62 0x65 0x73 0x74 0x20 - 0x72 0x65 0x73 0x75 0x6C 0x74 0x73 0x20 - 0x69 0x66 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x6F 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x75 0x73 0x65 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x72 0x61 0x67 - 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 7762 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_52= 0x2000568C - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 7770 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BD -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x38 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x0C 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20290 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2028F -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x5C 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0xF8 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0xB9 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0xEF 0x00 0x00 0x80 - 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0xEF 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x47 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x73 0x20 0x6F 0x72 0x20 0x62 - 0x61 0x63 0x6B 0x77 0x61 0x72 0x64 0x73 - 0x20 0x77 0x69 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D - 0x0A 0x95 0x09 0x55 0x73 0x65 0x20 0x74 - 0x68 0x65 0x20 0x46 0x72 0x61 0x6D 0x65 - 0x20 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E - 0x20 0x0D 0x0A 0x01 0x0D 0x0A 0x43 0x6C - 0x69 0x63 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x46 0x69 0x72 0x73 0x74 0x2C 0x20 0x50 - 0x72 0x65 0x76 0x69 0x6F 0x75 0x73 0x2C - 0x20 0x4E 0x65 0x78 0x74 0x2C 0x20 0x6F - 0x72 0x20 0x4C 0x61 0x73 0x74 0x20 0x41 - 0x72 0x72 0x6F 0x77 0x20 0x6F 0x72 0x20 - 0x64 0x72 0x61 0x67 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6C 0x69 0x64 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x62 0x61 0x72 - 0x2E 0x0D 0x0A 0x54 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x73 0x63 0x65 0x6E 0x65 0x0D 0x0A - 0x95 0x09 0x55 0x73 0x65 0x20 0x74 0x68 - 0x65 0x20 0x53 0x63 0x65 0x6E 0x65 0x20 - 0x53 0x6C 0x69 0x64 0x65 0x72 0x2E 0x0D - 0x0A 0x01 0x0D 0x0A 0x43 0x6C 0x69 0x63 - 0x6B 0x20 0x74 0x68 0x65 0x20 0x46 0x69 - 0x72 0x73 0x74 0x2C 0x20 0x50 0x72 0x65 - 0x76 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4E - 0x65 0x78 0x74 0x2C 0x20 0x6F 0x72 0x20 - 0x4C 0x61 0x73 0x74 0x20 0x41 0x72 0x72 - 0x6F 0x77 0x20 0x6F 0x72 0x20 0x64 0x72 - 0x61 0x67 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6C 0x69 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 - 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7905 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_64= 0x2000568D - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 7913 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BE -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x58 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) -AG(4) - FREE - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x2004C -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x12 0x00 0x00 0x00 0x05 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x00 0x00 0x01 - 0x01 0xF1 0x00 0x00 0xEE 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEF 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x05 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x71 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xEF 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x73 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0xEE 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x0D 0x0A 0x50 - 0x61 0x75 0x73 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x73 0x6F 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x69 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x72 0x65 0x61 - 0x64 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x54 0x6F 0x20 - 0x70 0x61 0x75 0x73 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x73 0x6F 0x20 0x79 0x6F 0x75 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x69 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x72 0x65 0x61 - 0x64 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x64 0x73 0x0D 0x0A 0x31 0x09 0x49 - 0x66 0x20 0x6E 0x65 0x63 0x65 0x73 0x73 - 0x61 0x72 0x79 0x2C 0x20 0x63 0x6C 0x69 - 0x63 0x6B 0x20 0x53 0x63 0x65 0x6E 0x65 - 0x73 0x2E 0x0D 0x0A 0x32 0x09 0x47 0x6F - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x70 0x61 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x0D - 0x0A 0x33 0x09 0x43 0x6C 0x69 0x63 0x6B - 0x20 0x57 0x61 0x69 0x74 0x20 0x46 0x6F - 0x72 0x20 0x43 0x6C 0x69 0x63 0x6B 0x2D - 0x01 -ENDCHUNK - - -ENDCHUNK -#line 8030 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_66= 0x2000568E - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 8038 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751BF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x00 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_32=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - FREE - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x20036 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202A3 - ITEM LONG 0xC0000001 - VAR LONG 'MBMP' 0x202B0 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x01 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0xF6 0x00 0x00 0x6D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x02 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2D 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xD2 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBD 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x02 0x00 0x00 0x00 0x6D 0x00 0x00 0xC0 - 0x03 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x01 0x20 0x52 0x65 0x6D 0x6F - 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 0x77 - 0x6F 0x72 0x64 0x20 0x62 0x6F 0x78 0x0D - 0x0A 0x54 0x6F 0x20 0x72 0x65 0x6D 0x6F - 0x76 0x65 0x20 0x61 0x20 0x77 0x6F 0x72 - 0x64 0x20 0x62 0x6F 0x78 0x0D 0x0A 0x31 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x43 0x75 0x74 0x2C 0x20 - 0x43 0x6F 0x70 0x79 0x2C 0x20 0x26 0x20 - 0x50 0x61 0x73 0x74 0x65 0x20 0x54 0x6F - 0x6F 0x6C 0x73 0x2D 0x01 0x0D 0x0A 0x32 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x52 - 0x65 0x6D 0x6F 0x76 0x65 0x20 0x57 0x6F - 0x72 0x64 0x20 0x42 0x6F 0x78 0x2D 0x01 - 0x0D 0x0A 0x33 0x09 0x4D 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 - 0x73 0x65 0x20 0x63 0x75 0x72 0x73 0x6F - 0x72 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x20 0x65 0x64 0x67 0x65 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x79 - 0x6F 0x75 0x20 0x73 0x65 0x65 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x69 0x73 0x73 - 0x6F 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x34 - 0x09 0x43 0x6C 0x69 0x63 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x64 0x20 - 0x62 0x6F 0x78 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8153 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - - -SET _help_48544F50_67= 0x2000568F - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 8161 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x0001602c 0x00030602 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0x000751C0 -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x73 0x63 0x72 0x6F 0x6C 0x6C - 0x0D 0x0A 0x57 0x6F 0x72 0x64 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x72 0x6F 0x6C - 0x6C 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x70 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x63 0x72 0x65 0x65 0x6E 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x79 0x6F 0x75 - 0x20 0x70 0x6C 0x61 0x79 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8235 "H:\\BUILD\\SOC\\src\\help\\htwords.cht" - -#line 50 "H:\\BUILD\\SOC\\src\\help\\help.cht" -#line 1 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -SET _help_48544F50_0= 0x20000160 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x0001602a 0x20000161 0x0 0x20000160 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x2B 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x20 0x53 0x61 0x76 - 0x65 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x7E 0x31 0x33 - 0x31 0x37 0x3F 0x0D 0x0A 0x01 0x20 0x47 - 0x65 0x74 0x20 0x72 0x69 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 131 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_1= 0x20000162 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 139 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x0001602a 0x20000163 0x0 0x20000160 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x14 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x29 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x44 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x60 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x20 0x53 0x61 0x76 - 0x65 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x7E 0x31 0x33 - 0x31 0x37 0x3F 0x0D 0x0A 0x01 0x20 0x47 - 0x65 0x74 0x20 0x72 0x69 0x64 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x61 0x6E 0x67 0x65 0x73 0x3F 0x0D 0x0A - 0x01 0x20 0x4B 0x65 0x65 0x70 0x20 0x77 - 0x6F 0x72 0x6B 0x69 0x6E 0x67 0x97 0x73 - 0x61 0x76 0x65 0x20 0x6C 0x61 0x74 0x65 - 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 250 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_2= 0x20000168 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 258 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x0001602a 0x20000169 0x0 0x20000168 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x3A 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x40 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3A 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x0A 0x00 0x00 0x00 0x2E 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x35 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x72 0x69 0x64 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x69 0x73 0x20 - 0x73 0x6F 0x75 0x6E 0x64 0x3F 0x0D 0x0A - 0x7E 0x31 0x33 0x31 0x39 0x0D 0x0A 0x01 - 0x20 0x59 0x65 0x73 0x0D 0x0A 0x01 0x20 - 0x4E 0x6F -ENDCHUNK - - -ENDCHUNK -#line 356 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_3= 0x20000164 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 364 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x0001602a 0x20000165 0x0 0x20000164 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x06 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x11 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x57 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2A 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x57 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x59 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x71 0x75 0x69 0x74 0x20 0x33 0x44 0x20 - 0x4D 0x6F 0x76 0x69 0x65 0x20 0x4D 0x61 - 0x6B 0x65 0x72 0x3F 0x0D 0x0A 0x01 0x20 - 0x59 0x65 0x73 0x2E 0x0D 0x0A 0x01 0x20 - 0x4E 0x6F 0x20 0x77 0x61 0x79 0x21 0x20 - 0x20 0x49 0x27 0x6D 0x20 0x68 0x61 0x76 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x6F 0x20 - 0x6D 0x75 0x63 0x68 0x20 0x66 0x75 0x6E - 0x21 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 467 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_4= 0x2000016E - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 475 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x0001602a 0x2000016F 0x0 0x2000016C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x13 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x55 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x81 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0xAA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x53 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x55 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x83 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x83 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x20 0x72 0x65 - 0x63 0x6F 0x72 0x64 0x65 0x64 0x20 0x6F - 0x72 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x65 0x64 0x20 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x79 - 0x6F 0x75 0x20 0x64 0x69 0x64 0x6E 0x27 - 0x74 0x20 0x75 0x73 0x65 0x20 0x69 0x6E - 0x20 0x79 0x6F 0x75 0x72 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E 0x20 0x20 0x44 0x6F - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x3A 0x0D 0x0A 0x01 - 0x20 0x20 0x47 0x65 0x74 0x20 0x72 0x69 - 0x64 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x63 0x6C 0x6F 0x73 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x01 0x20 0x20 - 0x4C 0x65 0x61 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x75 0x6E 0x75 0x73 0x65 0x64 - 0x20 0x73 0x6F 0x75 0x6E 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x66 - 0x69 0x6C 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 585 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_5= 0x2000016A - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 593 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x0001602a 0x2000016B 0x0 0x2000016A 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x43 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x60 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x6E 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x24 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x41 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x60 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6E 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x43 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x79 0x21 0x20 0x20 - 0x49 0x20 0x63 0x61 0x6E 0x27 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x69 - 0x73 0x20 0x43 0x44 0x21 0x0D 0x0A 0x7E - 0x31 0x33 0x31 0x38 0x0D 0x0A 0x44 0x6F - 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 0x6E - 0x74 0x20 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x6C 0x6F 0x6F 0x6B 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x3F 0x0D 0x0A 0x01 0x20 0x59 - 0x65 0x73 0x20 0x70 0x6C 0x65 0x61 0x73 - 0x65 0x2C 0x20 0x69 0x74 0x27 0x73 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x6E 0x6F - 0x77 0x2E 0x0D 0x0A 0x01 0x20 0x4E 0x6F - 0x20 0x74 0x68 0x61 0x6E 0x6B 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 697 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_6= 0x2000016C - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 705 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x0001602a 0x2000016D 0x0 0x2000016C 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x29 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x10 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x50 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x72 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x30 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x32 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x50 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x52 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x32 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x52 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x54 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x7E 0x31 0x33 0x32 - 0x30 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x65 0x78 0x69 0x73 0x74 0x73 - 0x2E 0x0D 0x0A 0x44 0x6F 0x20 0x79 0x6F - 0x75 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 - 0x6F 0x3A 0x0D 0x0A 0x01 0x20 0x20 0x52 - 0x65 0x70 0x6C 0x61 0x63 0x65 0x20 0x69 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x74 - 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x3F 0x0D 0x0A 0x01 0x20 0x20 0x47 - 0x69 0x76 0x65 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x61 - 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 0x6E - 0x61 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 810 "H:\\BUILD\\SOC\\src\\help\\app.cht" - - -SET _help_48544F50_7= 0x20000166 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 818 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x0001602a 0x20000167 0x0 0x20000166 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) -AG(4) - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x13 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x34 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x4D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0x01 - 0x01 0x05 0x00 0x00 0x68 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x36 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x4F 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x6F - 0x3F 0x0D 0x0A 0x01 0x20 0x20 0x47 0x6F - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x62 0x75 0x69 - 0x6C 0x64 0x69 0x6E 0x67 0x3F 0x0D 0x0A - 0x01 0x20 0x20 0x51 0x75 0x69 0x74 0x20 - 0x33 0x44 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x4D 0x61 0x6B 0x65 0x72 0x3F 0x0D - 0x0A 0x01 0x20 0x20 0x43 0x6F 0x6E 0x74 - 0x69 0x6E 0x75 0x65 0x20 0x77 0x6F 0x72 - 0x6B 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 - 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 929 "H:\\BUILD\\SOC\\src\\help\\app.cht" - -#line 51 "H:\\BUILD\\SOC\\src\\help\\help.cht" - - -#line 1 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -SET _help_48544F50_0= 0x00018553 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00016008 0x00016008 0x0 0x00018553 0x17C 0xB4 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xAF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000003 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x05 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x15 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x89 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5A 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x70 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x89 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x28 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x3F 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x5A 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 0x72 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x57 0x6F 0x72 - 0x6B 0x20 0x6F 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F - 0x0D 0x0A 0x01 0x09 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F 0x0D - 0x0A 0x01 0x09 0x57 0x61 0x74 0x63 0x68 - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x3F 0x0D 0x0A 0x01 0x09 0x57 0x61 - 0x74 0x63 0x68 0x20 0x61 0x6E 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x3F 0x0D 0x0A 0x01 0x09 0x53 0x74 - 0x6F 0x70 0x20 0x77 0x61 0x74 0x63 0x68 - 0x69 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 163 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_1= 0x00018552 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 171 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00016008 0x00016008 0x0 0x00018552 0x140 0x96 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB6 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x27 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x27 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x75 0x6C 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F - 0x0D 0x0A 0x01 0x09 0x59 0x65 0x73 0x0D - 0x0A 0x01 0x09 0x4E 0x6F -ENDCHUNK - - -ENDCHUNK -#line 267 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_2= 0x00018559 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 275 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00016019 0x00016019 0x0 0x00018559 0x1D7 0x1C2 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xA2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x49 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x49 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x6C 0x69 0x63 0x6B 0x20 - 0x68 0x65 0x72 0x65 0x20 0x74 0x6F 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x2C 0x20 0x6F 0x72 0x20 0x63 - 0x6C 0x69 0x63 0x6B 0x20 0x43 0x61 0x6E - 0x63 0x65 0x6C 0x20 0x74 0x6F 0x20 0x67 - 0x6F 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 345 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_3= 0x00018555 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 353 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x00018555 0x142 0x90 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x35 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x53 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x6B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x19 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x37 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x53 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x6F - 0x3F 0x0D 0x0A 0x01 0x09 0x4D 0x61 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x69 0x74 0x68 0x20 0x4D - 0x65 0x6C 0x61 0x6E 0x69 0x65 0x3F 0x0D - 0x0A 0x01 0x09 0x47 0x65 0x74 0x20 0x61 - 0x6E 0x20 0x69 0x64 0x65 0x61 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x01 0x09 0x43 - 0x72 0x65 0x61 0x74 0x65 0x20 0x79 0x6F - 0x75 0x72 0x20 0x6F 0x77 0x6E 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 465 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_4= 0x00018556 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 473 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x00018556 0x1AA 0x140 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0xC0000001 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x37 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x39 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x59 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x39 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x20 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x39 0x00 0x00 0xC0 - 0x04 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x57 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x79 0x6F 0x75 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x64 0x6F 0x20 0x6E 0x6F 0x77 0x3F - 0x0D 0x0A 0x01 0x09 0x43 0x72 0x65 0x61 - 0x74 0x65 0x20 0x61 0x20 0x66 0x6C 0x79 - 0x69 0x6E 0x67 0x20 0x6C 0x6F 0x67 0x6F - 0x3F 0x0D 0x0A 0x01 0x09 0x4C 0x65 0x61 - 0x72 0x6E 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2D 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x74 0x65 0x63 0x68 0x6E 0x69 0x71 0x75 - 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 577 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_5= 0x00018557 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 585 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00016008 0x00016008 0x0 0x00018557 0x168 0x50 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x16 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x62 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x36 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x38 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x09 0x47 0x65 0x74 - 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 - 0x65 0x20 0x53 0x70 0x6C 0x6F 0x74 0x20 - 0x4D 0x61 0x63 0x68 0x69 0x6E 0x65 0x3F - 0x0D 0x0A 0x01 0x09 0x52 0x65 0x61 0x64 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 0x72 - 0xE9 0x73 0x75 0x6D 0xE9 0x73 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 - 0x54 0x61 0x6C 0x65 0x6E 0x74 0x20 0x42 - 0x6F 0x6F 0x6B 0x3F -ENDCHUNK - - -ENDCHUNK -#line 688 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_6= 0x0001855a - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 696 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x0001855a 0x1AA 0x78 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x18 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x1E 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x50 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x57 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x58 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x79 0x21 0x20 0x59 - 0x6F 0x75 0x20 0x6D 0x61 0x64 0x65 0x20 - 0x69 0x74 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x53 0x74 0x75 0x64 0x69 0x6F - 0x21 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 0x72 - 0x65 0x61 0x64 0x79 0x20 0x74 0x6F 0x20 - 0x63 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x63 0x6C 0x69 0x63 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x54 0x6F 0x6F 0x6C 0x62 0x6F - 0x78 0x21 -ENDCHUNK - - -ENDCHUNK -#line 772 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_7= 0x00018558 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 780 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00016019 0x00016019 0x0 0x00018558 0x244 0xEB 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5B 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x21 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x20 0x67 0x65 0x74 - 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 - 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B 0x20 - 0x74 0x68 0x69 0x73 0x20 0x6C 0x65 0x76 - 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 845 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16042= 0x00018542 - - -CHUNK('HTOP', _help_48544F50_16042, "") -SUBFILE -#line 853 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16042, "") - BO OSK LONG 0x00016003 0x00016003 0x0 0x00018542 0x28 0x8C 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16042, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xED 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0xC0000006 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x200000B - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x06 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x03 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x04 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0xC0000001 - VAR LONG 'GOKD' 0x00016100 0xFFFFFFFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x05 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x07 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x45 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x10 0x00 0x04 0x00 0x00 0x01 - 0x01 0x00 0x0C 0x00 0x27 0x00 0x00 0x01 - 0x00 0x00 0x08 0x00 0x2C 0x00 0x00 0x01 - 0x01 0x00 0x0C 0x00 0xB7 0x00 0x00 0x01 - 0x00 0x00 0x0C 0x00 0xB9 0x00 0x00 0x01 - 0x01 0x00 0x0C 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x0C 0x00 0xDC 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x0A 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x1C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x1E 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x25 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x27 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x29 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x2E 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x64 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x69 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x6B 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x72 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0x92 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x93 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xB1 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xB2 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xCB 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x02 - 0x02 0x00 0x00 0x00 0xDC 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x08 0x00 0x00 0x03 - 0x22 0x00 0x00 0xFD 0x25 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x29 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0xDA 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x05 - 0x05 0x00 0x00 0x00 0x41 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x05 - 0x02 0x00 0x00 0x00 0x72 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x05 - 0x03 0x00 0x00 0x00 0x93 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x05 - 0x04 0x00 0x00 0x00 0xB2 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0xB5 0x00 0x00 0x05 - 0x05 0x00 0x00 0x00 0xB7 0x00 0x00 0x05 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0x05 - 0x05 0x00 0x00 0x00 0xD8 0x00 0x00 0x05 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x41 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x46 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x5D 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x00 0x00 0x40 - 0x06 0x00 0x00 0x00 0x72 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x77 0x00 0x00 0x40 - 0x07 0x00 0x00 0x00 0x93 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x98 0x00 0x00 0x40 - 0x09 0x00 0x00 0x00 0xB2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB7 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xCC 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD1 0x00 0x00 0x40 - 0x0A 0x00 0x00 0x00 0xD8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x02 0x00 0x00 0x80 - 0x12 0x00 0x00 0x00 0xDE 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x2C 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x46 0x00 0x00 0xC0 - 0x08 0x00 0x00 0x00 0x62 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x77 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x98 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xB7 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0xD1 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x0D 0x0A 0x0D 0x0A 0x09 0x20 - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x64 - 0x6F 0x20 0x79 0x6F 0x75 0x20 0x77 0x61 - 0x6E 0x74 0x20 0x74 0x6F 0x20 0x64 0x6F - 0x20 0x74 0x6F 0x64 0x61 0x79 0x3F 0x0D - 0x0A 0x0D 0x0A 0x09 0x09 0x09 0x01 0x09 - 0x43 0x72 0x65 0x61 0x74 0x65 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x09 0x09 0x09 - 0x01 0x09 0x57 0x6F 0x72 0x6B 0x20 0x6F - 0x6E 0x20 0x61 0x6E 0x20 0x6F 0x6C 0x64 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x3F 0x0D - 0x0A 0x09 0x09 0x09 0x01 0x09 0x57 0x61 - 0x74 0x63 0x68 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x3F 0x0D 0x0A 0x09 0x09 - 0x09 0x01 0x09 0x4D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x77 0x69 0x74 0x68 0x20 0x4D 0x65 0x6C - 0x61 0x6E 0x69 0x65 0x3F 0x0D 0x0A 0x09 - 0x09 0x09 0x01 0x09 0x47 0x65 0x74 0x20 - 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 0x20 - 0x66 0x6F 0x72 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x3F 0x0D 0x0A 0x09 0x09 - 0x09 0x01 0x09 0x47 0x6F 0x20 0x74 0x6F - 0x20 0x49 0x6D 0x61 0x67 0x69 0x6E 0x6F - 0x70 0x6F 0x6C 0x69 0x73 0x3F 0x0D 0x0A - 0x09 0x09 0x09 0x01 0x09 0x51 0x75 0x69 - 0x74 0x3F 0x0D 0x0A 0x0D 0x0A 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 1056 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16047= 0x00018547 - - -CHUNK('HTOP', _help_48544F50_16047, "") -SUBFILE -#line 1064 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16047, "") - BO OSK LONG 0x00012003 0x00012003 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16047, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x5A 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x2000002 - VAR - BYTE - 0x10 0x00 0x00 0x00 0x03 0x03 0x03 0x03 - 0x0D 0x43 0x6F 0x6D 0x69 0x63 0x20 0x53 - 0x61 0x6E 0x73 0x20 0x4D 0x53 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x08 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0xFF 0xFF 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x08 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x09 0x00 0x00 0x02 - 0x01 0x00 0x00 0x00 0x0C 0x00 0x00 0x02 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x20 0x61 0x72 - 0x65 0x20 0x68 0x65 0x72 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 1144 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16048= 0x00018548 - - -CHUNK('HTOP', _help_48544F50_16048, "") -SUBFILE -#line 1152 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16048, "") - BO OSK LONG 0x00016007 0x00016007 0x00010583 0x00018548 0x190 0x64 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16048, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x80 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x34 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x21 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x23 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x34 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x12 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x11 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x23 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x44 0x6F 0x20 0x79 0x6F 0x75 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F - 0x3A 0x0D 0x0A 0x01 0x20 0x20 0x4D 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x3F 0x0D 0x0A 0x01 0x20 0x20 - 0x57 0x61 0x74 0x63 0x68 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1250 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - - -SET _help_48544F50_16051= 0x00018551 - - -CHUNK('HTOP', _help_48544F50_16051, "") -SUBFILE -#line 1258 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -CHUNK('HTOP', _help_48544F50_16051, "") - BO OSK LONG 0x00016007 0x00016007 0x0 0x00018551 0x17C 0xB4 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16051, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xB3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) -AG(4) - ITEM LONG 0xC0000002 - VAR - BYTE - 0x44 0x4B 0x4F 0x47 0x00 0x61 0x01 0x00 - 0xFF 0xFF 0xFF 0xFF 0x03 0x03 0x0F 0x6B - 0x67 0x6F 0x62 - ITEM LONG 0x40000001 - VAR - BYTE - 0x01 0xFF 0xFF 0xFF 0xFF - ITEM LONG 0x40000001 - VAR - BYTE - 0x02 0xFF 0xFF 0xFF 0xFF -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x28 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2A 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x44 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x14 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 0x2A 0x00 0x00 0xC0 - 0x01 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x57 0x6F 0x75 0x6C 0x64 0x20 - 0x79 0x6F 0x75 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x3A 0x0D 0x0A 0x01 0x09 - 0x47 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x74 0x68 0x65 0x61 0x74 0x65 - 0x72 0x3F 0x0D 0x0A 0x01 0x09 0x43 0x68 - 0x65 0x63 0x6B 0x20 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6E 0x61 0x63 - 0x6B 0x20 0x62 0x61 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 1357 "H:\\BUILD\\SOC\\src\\help\\topics1.cht" - -#line 54 "H:\\BUILD\\SOC\\src\\help\\help.cht" - - - -#line 1 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - - - - - -#line 10 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - -#line 15 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - -#line 20 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - - - -#line 25 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -SET _help_48544F50_0= 0x00015201 - - -CHUNK('HTOP', _help_48544F50_0, "") -SUBFILE -#line 32 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_0, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_86=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_86=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x0E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x10 0x00 0x16 0x00 0x00 0x01 - 0x03 0x00 0x0A 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x0A 0x00 0x38 0x00 0x00 0x01 - 0x01 0x00 0x01 0x00 0x36 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x16 0x00 0x00 0x03 - 0x24 0x00 0x00 0xFD 0x18 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x38 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x36 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xCF 0x00 0x00 0x02 0x16 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x02 0x38 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_86=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_86, 0x0) - BYTE - 0x03 0x03 0x4D 0x63 0x5A 0x65 0x65 0x27 - 0x73 0x20 0x54 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x42 0x6F 0x6F 0x6B 0x20 0x0D 0x0A - 0x20 0x20 0x59 0x6F 0x75 0x72 0x20 0x4D - 0x69 0x73 0x73 0x69 0x6F 0x6E 0x3A 0x20 - 0x20 0x46 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x67 0x65 0x73 0x21 - 0x0D 0x0A 0x41 0x63 0x74 0x6F 0x72 0x73 - 0x27 0x20 0x72 0xE9 0x73 0x75 0x6D 0xE9 - 0x73 0x20 0x61 0x72 0x65 0x20 0x73 0x63 - 0x61 0x74 0x74 0x65 0x72 0x65 0x64 0x20 - 0x74 0x68 0x72 0x6F 0x75 0x67 0x68 0x6F - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x69 0x6C 0x64 0x69 0x6E 0x67 0x21 - 0x20 0x20 0x48 0x65 0x6C 0x70 0x20 0x6D - 0x65 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6D 0x21 0x0D 0x0A 0x0D 0x0A - 0x54 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x67 0x65 - 0x73 0x2C 0x20 0x63 0x6C 0x69 0x63 0x6B - 0x20 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x69 0x6C 0x64 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x4F 0x6E 0x63 0x65 0x20 0x79 - 0x6F 0x75 0x27 0x76 0x65 0x20 0x72 0x65 - 0x61 0x64 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x67 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x64 0x20 0x69 - 0x74 0x2C 0x20 0x49 0x27 0x6C 0x6C 0x20 - 0x70 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x67 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x54 0x61 0x6C 0x65 - 0x6E 0x74 0x20 0x62 0x6F 0x6F 0x6B 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x27 0x6C 0x6C - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x54 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x62 0x6F 0x6F 0x6B 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x49 0x64 0x65 - 0x61 0x73 0x20 0x52 0x6F 0x6F 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 142 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1= 0x00015202 - - -CHUNK('HTOP', _help_48544F50_1, "") -SUBFILE -#line 150 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_12=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015302 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015303 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015305 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015304 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x00 0x00 0x01 - 0x01 0x00 0x03 0x00 0x18 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF7 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x04 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x04 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x26 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x85 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x85 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x11 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1E 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x18 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2, 0x0) - BYTE - 0x03 0x03 0x41 0x4C 0x45 0x58 0x41 0x4E - 0x44 0x45 0x52 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x0D 0x0A 0x41 0x6C 0x65 0x78 0x61 0x6E - 0x64 0x65 0x72 0x20 0x77 0x61 0x73 0x20 - 0x61 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x48 0x6F 0x6C 0x6C 0x61 - 0x6E 0x64 0x2C 0x20 0x6B 0x6E 0x6F 0x77 - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x6D 0x61 0x6B 0x65 - 0x73 0x20 0x6F 0x66 0x20 0x56 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x20 0x50 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x74 0x75 0x6E 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x66 0x61 - 0x6E 0x63 0x79 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x20 0x73 0x74 0x65 0x70 0x73 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x66 0x74 0x65 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x65 0x6C 0x65 0x76 0x69 - 0x73 0x69 0x6F 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x6F 0x6E 0x20 0x73 0x65 0x76 - 0x65 0x72 0x61 0x6C 0x20 0x45 0x75 0x72 - 0x6F 0x70 0x65 0x61 0x6E 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x63 0x6F 0x6D 0x70 - 0x65 0x74 0x69 0x74 0x69 0x6F 0x6E 0x73 - 0x2C 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6D 0x20 0x61 0x20 0x6D - 0x75 0x73 0x69 0x63 0x20 0x68 0x65 0x72 - 0x6F 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x63 0x6F 0x75 0x6E 0x74 0x72 0x79 - 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x4C 0x69 0x62 0x72 0x61 0x72 0x69 0x61 - 0x6E 0x3B 0x20 0x46 0x6F 0x6F 0x64 0x20 - 0x43 0x72 0x69 0x74 0x69 0x63 0x3B 0x20 - 0x45 0x78 0x70 0x6C 0x6F 0x72 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 295 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2= 0x00015203 - - -CHUNK('HTOP', _help_48544F50_2, "") -SUBFILE -#line 303 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_26=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_D2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015307 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015308 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015309 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015306 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x24 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x17 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xC8 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD4 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD4 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xDF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xC8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF2 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF4 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x09 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC8 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF4 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x09 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D2, 0x0) - BYTE - 0x03 0x03 0x41 0x55 0x47 0x55 0x53 0x54 - 0x49 0x4E 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 0x0D - 0x0A 0x41 0x75 0x67 0x75 0x73 0x74 0x69 - 0x6E 0x20 0x65 0x6D 0x65 0x72 0x67 0x65 - 0x64 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x20 0x64 0x75 0x73 0x74 0x79 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x63 0x61 0x70 0x73 - 0x75 0x6C 0x65 0x20 0x34 0x32 0x20 0x79 - 0x65 0x61 0x72 0x73 0x20 0x61 0x67 0x6F - 0x2E 0x20 0x48 0x65 0x27 0x73 0x20 0x6F - 0x72 0x69 0x67 0x69 0x6E 0x61 0x6C 0x6C - 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x6E 0x63 0x69 0x65 0x6E 0x74 0x20 0x52 - 0x6F 0x6D 0x65 0x2C 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x68 0x65 0x20 0x73 0x61 - 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x65 0x6D 0x70 0x65 0x72 - 0x6F 0x72 0x73 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x77 0x61 - 0x72 0x20 0x73 0x74 0x61 0x72 0x74 0x65 - 0x64 0x2C 0x20 0x73 0x6F 0x20 0x68 0x65 - 0x20 0x74 0x6F 0x6F 0x6B 0x20 0x64 0x65 - 0x65 0x70 0x20 0x62 0x72 0x65 0x61 0x74 - 0x68 0x73 0x20 0x75 0x6E 0x74 0x69 0x6C - 0x20 0x68 0x65 0x20 0x73 0x68 0x72 0x75 - 0x6E 0x6B 0x20 0x73 0x6F 0x20 0x73 0x6D - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x63 0x72 0x61 0x77 0x6C 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 0x6A - 0x61 0x72 0x2E 0x20 0x0D 0x0A 0x43 0x65 - 0x6E 0x74 0x75 0x72 0x69 0x65 0x73 0x20 - 0x6C 0x61 0x74 0x65 0x72 0x2C 0x20 0x61 - 0x20 0x6C 0x69 0x74 0x74 0x6C 0x65 0x20 - 0x49 0x74 0x61 0x6C 0x69 0x61 0x6E 0x20 - 0x6B 0x69 0x64 0x20 0x61 0x63 0x63 0x69 - 0x64 0x65 0x6E 0x74 0x61 0x6C 0x6C 0x79 - 0x20 0x64 0x75 0x67 0x20 0x75 0x70 0x20 - 0x74 0x68 0x65 0x20 0x6A 0x61 0x72 0x2E - 0x20 0x20 0x49 0x74 0x20 0x74 0x6F 0x6F - 0x6B 0x20 0x41 0x75 0x67 0x75 0x73 0x74 - 0x69 0x6E 0x20 0x61 0x77 0x68 0x69 0x6C - 0x65 0x20 0x74 0x6F 0x20 0x61 0x64 0x6A - 0x75 0x73 0x74 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x64 0x65 0x72 - 0x6E 0x20 0x77 0x6F 0x72 0x6C 0x64 0x2D - 0x2D 0x65 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x6C 0x79 0x20 0x54 0x56 0x2E 0x20 - 0x20 0x45 0x76 0x65 0x6E 0x74 0x75 0x61 - 0x6C 0x6C 0x79 0x20 0x41 0x75 0x67 0x75 - 0x73 0x74 0x69 0x6E 0x20 0x67 0x6F 0x74 - 0x20 0x61 0x20 0x6A 0x6F 0x62 0x20 0x64 - 0x65 0x6C 0x69 0x76 0x65 0x72 0x69 0x6E - 0x67 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x74 0x65 0x6C 0x65 0x67 0x72 - 0x61 0x6D 0x73 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x4F 0x70 0x65 0x72 0x61 - 0x20 0x53 0x69 0x6E 0x67 0x65 0x72 0x3B - 0x20 0x43 0x6F 0x70 0x3B 0x20 0x48 0x6F - 0x6D 0x65 0x20 0x53 0x61 0x66 0x65 0x74 - 0x79 0x20 0x49 0x6E 0x73 0x70 0x65 0x63 - 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 478 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3= 0x00015204 - - -CHUNK('HTOP', _help_48544F50_3, "") -SUBFILE -#line 486 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AE=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_17=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_AE, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001530a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001530b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001530c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001530d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AE=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAB 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB6 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xDE 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE0 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x44 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC7 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xDE 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE0 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0xAB 0x01 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AE=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AE, 0x0) - BYTE - 0x03 0x03 0x42 0x45 0x4C 0x4C 0x41 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x42 0x65 0x6C - 0x6C 0x61 0x20 0x69 0x73 0x20 0x61 0x20 - 0x6D 0x61 0x74 0x68 0x20 0x74 0x65 0x61 - 0x63 0x68 0x65 0x72 0x2E 0x20 0x41 0x74 - 0x20 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x2C - 0x20 0x73 0x68 0x65 0x20 0x69 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x6A - 0x75 0x73 0x74 0x20 0x73 0x6F 0x97 0x73 - 0x68 0x65 0x20 0x73 0x6D 0x69 0x6C 0x65 - 0x73 0x20 0x70 0x6F 0x6C 0x69 0x74 0x65 - 0x6C 0x79 0x2C 0x20 0x73 0x70 0x65 0x61 - 0x6B 0x73 0x20 0x70 0x6F 0x6C 0x69 0x74 - 0x65 0x6C 0x79 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x65 0x61 0x63 0x68 0x65 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 0x68 - 0x65 0x20 0x72 0x69 0x67 0x68 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 0x69 - 0x6E 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 - 0x68 0x65 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x77 0x61 0x79 0x2E 0x20 0x42 0x75 - 0x74 0x20 0x61 0x77 0x61 0x79 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x2C 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x69 0x73 0x20 0x64 0x69 0x66 - 0x66 0x65 0x72 0x65 0x6E 0x74 0x2E 0x20 - 0x53 0x68 0x65 0x20 0x64 0x6F 0x65 0x73 - 0x20 0x77 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x2C - 0x20 0x77 0x68 0x69 0x63 0x68 0x20 0x69 - 0x73 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x2E 0x20 - 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x2C 0x20 - 0x6E 0x6F 0x74 0x20 0x65 0x76 0x65 0x6E - 0x20 0x68 0x65 0x72 0x20 0x70 0x61 0x72 - 0x65 0x6E 0x74 0x73 0x2C 0x20 0x6B 0x6E - 0x6F 0x77 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x61 0x20 0x63 0x6F - 0x6D 0x65 0x64 0x79 0x20 0x61 0x63 0x74 - 0x20 0x74 0x68 0x72 0x65 0x65 0x20 0x6E - 0x69 0x67 0x68 0x74 0x73 0x20 0x61 0x20 - 0x77 0x65 0x65 0x6B 0x20 0x61 0x74 0x20 - 0x61 0x20 0x6C 0x6F 0x63 0x61 0x6C 0x20 - 0x4D 0x65 0x78 0x69 0x63 0x61 0x6E 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x2E 0x20 0x4E 0x6F 0x20 0x77 - 0x6F 0x6E 0x64 0x65 0x72 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 - 0x73 0x6F 0x20 0x74 0x69 0x72 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x63 0x6C 0x61 0x73 - 0x73 0x21 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x4D 0x61 0x64 0x61 0x6D 0x65 - 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x3B - 0x20 0x53 0x74 0x72 0x65 0x65 0x74 0x20 - 0x46 0x61 0x69 0x72 0x20 0x45 0x6E 0x74 - 0x65 0x72 0x74 0x61 0x69 0x6E 0x65 0x72 - 0x3B 0x20 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 -ENDCHUNK - - -ENDCHUNK -#line 649 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4= 0x00015205 - - -CHUNK('HTOP', _help_48544F50_4, "") -SUBFILE -#line 657 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_32=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001530e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001530f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015310 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015311 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_32=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x54 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x73 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x75 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x83 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x92 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5F 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x68 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x73 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x75 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x83 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x61 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_32=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_32, 0x0) - BYTE - 0x03 0x03 0x42 0x45 0x4E 0x45 0x44 0x49 - 0x43 0x54 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x42 0x65 0x6E 0x65 0x64 0x69 0x63 0x74 - 0x20 0x69 0x73 0x20 0x33 0x31 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x74 0x20 0x69 0x73 - 0x20 0x61 0x20 0x6D 0x69 0x72 0x61 0x63 - 0x6C 0x65 0x2E 0x20 0x46 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x74 0x69 0x6D - 0x65 0x20 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x6B 0x69 0x64 0x2C 0x20 - 0x68 0x65 0x20 0x6C 0x6F 0x76 0x65 0x64 - 0x20 0x63 0x68 0x65 0x6D 0x69 0x73 0x74 - 0x72 0x79 0x2E 0x20 0x48 0x69 0x73 0x20 - 0x63 0x6F 0x6E 0x63 0x6F 0x63 0x74 0x69 - 0x6F 0x6E 0x73 0x20 0x62 0x75 0x62 0x62 - 0x6C 0x65 0x64 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x70 0x65 0x77 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x62 0x6C 0x75 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x67 0x72 0x65 0x65 - 0x6E 0x73 0x2E 0x20 0x54 0x68 0x65 0x6E - 0x2C 0x20 0x69 0x6E 0x20 0x61 0x20 0x68 - 0x69 0x67 0x68 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x20 0x63 0x68 0x65 0x6D 0x69 - 0x73 0x74 0x72 0x79 0x20 0x6C 0x61 0x62 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x62 0x6C - 0x75 0x65 0x2D 0x67 0x72 0x65 0x65 0x6E - 0x20 0x68 0x61 0x7A 0x65 0x20 0x74 0x75 - 0x72 0x6E 0x65 0x64 0x20 0x62 0x6C 0x61 - 0x63 0x6B 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x77 0x61 0x73 0x20 0x61 - 0x6E 0x20 0x61 0x77 0x65 0x73 0x6F 0x6D - 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x2E 0x20 0x42 0x65 0x6E - 0x65 0x64 0x69 0x63 0x74 0x27 0x73 0x20 - 0x62 0x75 0x72 0x6E 0x73 0x20 0x61 0x72 - 0x65 0x20 0x73 0x74 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x61 0x6C 0x69 0x6E 0x67 0x2C - 0x20 0x62 0x75 0x74 0x20 0x68 0x65 0x92 - 0x73 0x20 0x67 0x6C 0x61 0x64 0x20 0x68 - 0x65 0x20 0x73 0x75 0x72 0x76 0x69 0x76 - 0x65 0x64 0x2E 0x20 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x2D - 0x74 0x6F 0x2D 0x4C 0x69 0x66 0x65 0x20 - 0x4D 0x75 0x6D 0x6D 0x79 0x3B 0x20 0x49 - 0x6E 0x6A 0x75 0x72 0x65 0x64 0x20 0x56 - 0x69 0x63 0x74 0x69 0x6D 0x3B 0x20 0x41 - 0x6E 0x63 0x69 0x65 0x6E 0x74 0x20 0x4D - 0x75 0x6D 0x6D 0x79 -ENDCHUNK - - -ENDCHUNK -#line 809 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5= 0x00015206 - - -CHUNK('HTOP', _help_48544F50_5, "") -SUBFILE -#line 817 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_5=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015312 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015313 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015314 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015315 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA7 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x99 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB0 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB2 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCE 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x99 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB2 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBB 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xCE 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2A, 0x0) - BYTE - 0x03 0x03 0x42 0x49 0x4C 0x4C 0x59 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x42 0x69 0x6C - 0x6C 0x79 0x20 0x69 0x73 0x20 0x61 0x20 - 0x63 0x6F 0x6F 0x6B 0x20 0x61 0x74 0x20 - 0x61 0x20 0x73 0x65 0x61 0x66 0x6F 0x6F - 0x64 0x20 0x72 0x65 0x73 0x74 0x61 0x75 - 0x72 0x61 0x6E 0x74 0x20 0x69 0x6E 0x20 - 0x54 0x6F 0x72 0x6F 0x6E 0x74 0x6F 0x2E - 0x20 0x48 0x65 0x20 0x6C 0x69 0x76 0x65 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x62 0x69 0x67 0x20 0x63 0x69 0x74 - 0x79 0x20 0x6E 0x6F 0x77 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x68 0x65 0x20 0x63 0x6F - 0x6D 0x65 0x73 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x20 0x66 0x69 0x73 0x68 0x65 - 0x72 0x6D 0x61 0x6E 0x27 0x73 0x20 0x66 - 0x61 0x6D 0x69 0x6C 0x79 0x20 0x69 0x6E - 0x20 0x61 0x20 0x74 0x69 0x6E 0x79 0x20 - 0x74 0x6F 0x77 0x6E 0x20 0x69 0x6E 0x20 - 0x4E 0x6F 0x76 0x61 0x20 0x53 0x63 0x6F - 0x74 0x69 0x61 0x2E 0x20 0x41 0x74 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x73 0x74 - 0x61 0x75 0x72 0x61 0x6E 0x74 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x70 0x72 0x65 0x70 0x61 - 0x72 0x65 0x20 0x66 0x69 0x73 0x68 0x2C - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x69 0x74 0x20 0x72 0x65 0x6D 0x69 - 0x6E 0x64 0x73 0x20 0x68 0x69 0x6D 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x64 - 0x61 0x79 0x73 0x20 0x66 0x69 0x73 0x68 - 0x69 0x6E 0x67 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x73 0x20 0x66 0x61 0x6D - 0x69 0x6C 0x79 0x2E 0x20 0x48 0x69 0x73 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x6F 0x66 - 0x20 0x66 0x69 0x73 0x68 0x20 0x69 0x73 - 0x20 0x73 0x65 0x63 0x6F 0x6E 0x64 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x74 0x6F 0x20 - 0x68 0x69 0x73 0x20 0x74 0x72 0x75 0x65 - 0x20 0x70 0x61 0x73 0x73 0x69 0x6F 0x6E - 0x2C 0x20 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x2E 0x20 0x42 0x69 0x6C 0x6C 0x79 - 0x27 0x73 0x20 0x73 0x75 0x63 0x68 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x72 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x79 0x20 - 0x73 0x61 0x79 0x20 0x68 0x65 0x20 0x63 - 0x61 0x6E 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x68 0x69 0x73 - 0x20 0x66 0x69 0x73 0x68 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x47 0x65 0x6E 0x65 0x72 - 0x61 0x6C 0x3B 0x20 0x46 0x6F 0x72 0x65 - 0x6D 0x61 0x6E 0x3B 0x20 0x46 0x6C 0x65 - 0x61 0x20 0x4D 0x61 0x72 0x6B 0x65 0x74 - 0x20 0x4D 0x61 0x6E 0x61 0x67 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 977 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6= 0x00015207 - - -CHUNK('HTOP', _help_48544F50_6, "") -SUBFILE -#line 985 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_0=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015317 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015318 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015319 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015316 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0D 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x19 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x7F 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x8A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x43 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x7D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x91 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x8C 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xB3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0D 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x19 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2C, 0x0) - BYTE - 0x03 0x03 0x42 0x49 0x4E 0x4F 0x20 0x42 - 0x65 0x47 0x4F 0x4F 0x44 0x0D 0x0A 0x42 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x42 0x69 0x6E 0x6F 0x20 - 0x69 0x73 0x20 0x32 0x34 0x20 0x79 0x65 - 0x61 0x72 0x73 0x20 0x6F 0x6C 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6F 0x6D 0x65 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x6E 0x20 0x49 0x62 0x6F 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x69 0x6E 0x20 - 0x4E 0x69 0x67 0x65 0x72 0x69 0x61 0x2E - 0x20 0x57 0x68 0x69 0x6C 0x65 0x20 0x64 - 0x61 0x62 0x62 0x6C 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x20 0x61 0x6D 0x61 0x74 0x65 - 0x75 0x72 0x20 0x74 0x68 0x65 0x61 0x74 - 0x65 0x72 0x20 0x70 0x72 0x6F 0x64 0x75 - 0x63 0x74 0x69 0x6F 0x6E 0x73 0x2C 0x20 - 0x68 0x65 0x20 0x6D 0x61 0x64 0x65 0x20 - 0x68 0x69 0x73 0x20 0x72 0x65 0x61 0x6C - 0x20 0x6C 0x69 0x76 0x69 0x6E 0x67 0x20 - 0x73 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x6F 0x74 0x68 0x70 0x61 0x73 - 0x74 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x68 0x69 0x73 0x20 0x66 0x61 0x6D 0x69 - 0x6C 0x79 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x72 0x6B 0x65 0x74 - 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 0x6F - 0x66 0x20 0x68 0x69 0x73 0x20 0x68 0x6F - 0x6D 0x65 0x74 0x6F 0x77 0x6E 0x2E 0x20 - 0x4F 0x6E 0x63 0x65 0x20 0x68 0x65 0x20 - 0x73 0x61 0x76 0x65 0x64 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x20 0x6D 0x6F 0x6E - 0x65 0x79 0x2C 0x20 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x55 0x6E 0x69 0x74 - 0x65 0x64 0x20 0x53 0x74 0x61 0x74 0x65 - 0x73 0x97 0x4E 0x65 0x77 0x20 0x59 0x6F - 0x72 0x6B 0x20 0x43 0x69 0x74 0x79 0x21 - 0x97 0x68 0x6F 0x70 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6E 0x74 0x69 - 0x6E 0x75 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x65 0x61 0x74 - 0x65 0x72 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x6C 0x61 0x6E 0x64 0x65 0x64 0x20 0x61 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x69 0x6E - 0x20 0x61 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x66 0x69 0x6C 0x6D 0x20 0x69 0x6E - 0x73 0x74 0x65 0x61 0x64 0x21 0x20 0x0D - 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 - 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x54 0x75 - 0x74 0x6F 0x72 0x3B 0x20 0x53 0x74 0x72 - 0x65 0x65 0x74 0x20 0x45 0x6E 0x74 0x65 - 0x72 0x74 0x61 0x69 0x6E 0x65 0x72 0x3B - 0x20 0x4D 0x75 0x73 0x69 0x63 0x20 0x4D - 0x61 0x73 0x74 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1143 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7= 0x00015208 - - -CHUNK('HTOP', _help_48544F50_7, "") -SUBFILE -#line 1151 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_81=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001531b - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001531a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001531c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001531d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_81=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0E 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x60 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6B 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x5E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x74 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x7F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x91 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x5E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6D 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x7F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x81 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x91 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x04 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x10 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_81=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_81, 0x0) - BYTE - 0x03 0x03 0x42 0x4F 0x0D 0x0A 0x42 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x42 0x6F 0x20 0x69 0x73 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x41 0x66 0x72 - 0x69 0x63 0x61 0x2E 0x20 0x45 0x76 0x65 - 0x6E 0x20 0x61 0x73 0x20 0x61 0x20 0x62 - 0x61 0x62 0x79 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x6C 0x69 0x74 0x74 0x6C 0x65 0x2E - 0x20 0x48 0x65 0x20 0x61 0x74 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6E 0x61 0x74 - 0x75 0x72 0x61 0x6C 0x20 0x66 0x6F 0x6F - 0x64 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x77 0x72 0x65 0x73 0x74 0x6C 0x65 0x20 - 0x77 0x69 0x74 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x62 - 0x6F 0x79 0x73 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x74 0x6F 0x77 0x6E 0x2E - 0x20 0x42 0x6F 0x20 0x77 0x61 0x73 0x20 - 0x73 0x6F 0x20 0x67 0x6F 0x6F 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x67 0x72 0x65 0x77 - 0x20 0x73 0x6F 0x20 0x73 0x74 0x72 0x6F - 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 0x20 - 0x68 0x65 0x20 0x62 0x65 0x63 0x61 0x6D - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x61 0x6D 0x70 0x69 0x6F 0x6E 0x20 0x6B - 0x69 0x63 0x6B 0x20 0x62 0x6F 0x78 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x74 0x6F 0x77 0x6E 0x2E 0x20 0x42 - 0x75 0x74 0x20 0x42 0x6F 0x20 0x77 0x61 - 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x2C 0x20 0x6E 0x6F 0x74 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x61 0x73 0x20 0x61 0x20 - 0x6B 0x69 0x63 0x6B 0x20 0x62 0x6F 0x78 - 0x65 0x72 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x61 0x73 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x74 0x61 0x72 0x2E - 0x20 0x42 0x75 0x74 0x20 0x68 0x6F 0x77 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x68 - 0x65 0x20 0x62 0x65 0x20 0x64 0x69 0x73 - 0x63 0x6F 0x76 0x65 0x72 0x65 0x64 0x3F - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x44 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x3B 0x20 - 0x41 0x73 0x74 0x72 0x6F 0x6E 0x61 0x75 - 0x74 0x3B 0x20 0x54 0x6F 0x75 0x72 0x20 - 0x43 0x6F 0x6F 0x72 0x64 0x69 0x6E 0x61 - 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1305 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8= 0x00015209 - - -CHUNK('HTOP', _help_48544F50_8, "") -SUBFILE -#line 1313 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_11=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_16=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) -AG(4) - FREE - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015320 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015321 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001531e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_11=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA8 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB3 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x20 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE2 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x20 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA6 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC3 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD3 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_11=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_11, 0x0) - BYTE - 0x03 0x03 0x42 0x4F 0x4E 0x47 0x4F 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x42 0x6F 0x6E - 0x67 0x6F 0x20 0x63 0x61 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x55 - 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 0x74 - 0x61 0x74 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x47 0x65 0x72 0x6D 0x61 0x6E - 0x79 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6C 0x6C 0x65 - 0x67 0x65 0x2E 0x20 0x20 0x42 0x65 0x63 - 0x61 0x75 0x73 0x65 0x20 0x68 0x69 0x73 - 0x20 0x72 0x65 0x61 0x6C 0x20 0x6E 0x61 - 0x6D 0x65 0x20 0x77 0x61 0x73 0x20 0x73 - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x61 0x72 0x64 0x20 - 0x74 0x6F 0x20 0x70 0x72 0x6F 0x6E 0x6F - 0x75 0x6E 0x63 0x65 0x2C 0x20 0x66 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x6E 0x69 - 0x63 0x6B 0x6E 0x61 0x6D 0x65 0x64 0x20 - 0x68 0x69 0x6D 0x20 0x42 0x2E 0x4F 0x2E - 0x4E 0x2E 0x47 0x2E 0x4F 0x2E 0x20 0x20 - 0x20 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x64 - 0x61 0x79 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x20 0x74 0x6F 0x20 0x76 0x69 - 0x73 0x69 0x74 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x27 0x73 0x20 0x64 0x72 0x61 0x6D 0x61 - 0x20 0x63 0x6C 0x61 0x73 0x73 0x65 0x73 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x20 0x74 0x68 - 0x61 0x74 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x68 0x61 0x64 0x20 0x72 0x65 0x61 - 0x6C 0x20 0x74 0x61 0x6C 0x65 0x6E 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x64 0x65 0x63 - 0x69 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x66 0x65 0x61 0x74 0x75 0x72 0x65 0x20 - 0x68 0x69 0x6D 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 - 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x77 0x61 - 0x73 0x20 0x74 0x68 0x72 0x69 0x6C 0x6C - 0x65 0x64 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x27 0x73 0x20 0x61 0x75 - 0x74 0x6F 0x67 0x72 0x61 0x70 0x68 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x69 0x73 0x20 - 0x66 0x61 0x6D 0x69 0x6C 0x79 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x54 - 0x77 0x69 0x6E 0x20 0x42 0x72 0x6F 0x74 - 0x68 0x65 0x72 0x3B 0x20 0x50 0x6F 0x6C - 0x69 0x63 0x65 0x20 0x4F 0x66 0x66 0x69 - 0x63 0x65 0x72 0x3B 0x20 0x50 0x72 0x69 - 0x76 0x61 0x74 0x65 0x20 0x43 0x61 0x72 - 0x72 0x69 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 1475 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9= 0x0001520a - - -CHUNK('HTOP', _help_48544F50_9, "") -SUBFILE -#line 1483 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_21=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015323 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015324 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015325 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015322 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3A 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x45 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x90 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x51 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x66 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x86 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x90 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x38 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x47 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x4F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x51 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x66 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8E, 0x0) - BYTE - 0x03 0x03 0x20 0x20 0x43 0x48 0x41 0x52 - 0x4C 0x49 0x45 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x69 0x6E 0x20 0x48 0x61 0x72 - 0x6C 0x65 0x6D 0x2C 0x20 0x4E 0x65 0x77 - 0x20 0x59 0x6F 0x72 0x6B 0x20 0x43 0x69 - 0x74 0x79 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x6D 0x61 0x6B 0x65 0x73 0x20 0x73 0x74 - 0x72 0x61 0x69 0x67 0x68 0x74 0x20 0x41 - 0x92 0x73 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x73 0x20 0x73 0x75 0x63 0x68 0x20 0x61 - 0x6E 0x20 0x65 0x78 0x63 0x65 0x70 0x74 - 0x69 0x6F 0x6E 0x61 0x6C 0x20 0x61 0x74 - 0x68 0x6C 0x65 0x74 0x65 0x2C 0x20 0x68 - 0x65 0x20 0x68 0x61 0x73 0x20 0x61 0x20 - 0x62 0x61 0x73 0x6B 0x65 0x74 0x62 0x61 - 0x6C 0x6C 0x20 0x20 0x73 0x63 0x68 0x6F - 0x6C 0x61 0x72 0x73 0x68 0x69 0x70 0x20 - 0x74 0x6F 0x20 0x53 0x79 0x72 0x61 0x63 - 0x75 0x73 0x65 0x20 0x55 0x6E 0x69 0x76 - 0x65 0x72 0x73 0x69 0x74 0x79 0x2E 0x20 - 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x20 0x69 0x73 0x20 0x67 0x6F 0x6F 0x64 - 0x20 0x61 0x74 0x20 0x74 0x68 0x72 0x6F - 0x77 0x69 0x6E 0x67 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x68 0x65 0x92 0x73 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x61 0x74 0x20 0x6A 0x75 - 0x6D 0x70 0x69 0x6E 0x67 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 0x6A - 0x75 0x6D 0x70 0x20 0x73 0x6F 0x20 0x68 - 0x69 0x67 0x68 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x6F 0x75 0x63 0x68 0x20 0x74 0x68 - 0x65 0x20 0x63 0x65 0x69 0x6C 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x20 0x61 0x6E 0x79 - 0x20 0x62 0x75 0x69 0x6C 0x64 0x69 0x6E - 0x67 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 - 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D - 0x0A 0x53 0x6B 0x65 0x6C 0x65 0x74 0x6F - 0x6E 0x3B 0x20 0x4C 0x61 0x76 0x61 0x20 - 0x4C 0x61 0x6D 0x70 0x20 0x53 0x61 0x6C - 0x65 0x73 0x70 0x65 0x72 0x73 0x6F 0x6E - 0x3B 0x20 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1633 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A= 0x0001520b - - -CHUNK('HTOP', _help_48544F50_A, "") -SUBFILE -#line 1641 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_42=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_6=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015327 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015328 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015329 - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015326 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_42=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xEB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0C 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xF8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x51 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFA 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x00 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x02 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0C 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x17 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x43 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x51 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFA 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x00 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x02 0x02 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0C 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x02 0x00 0x40 - 0x03 0x00 0x00 0x00 0x17 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0C 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x18 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_42=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_42, 0x0) - BYTE - 0x03 0x03 0x20 0x43 0x48 0x52 0x49 0x53 - 0x54 0x49 0x4E 0x41 0x0D 0x0A 0x42 0x61 - 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x0D 0x0A 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x68 0x61 0x73 0x20 - 0x73 0x70 0x65 0x6E 0x74 0x20 0x33 0x20 - 0x6F 0x66 0x20 0x68 0x65 0x72 0x20 0x32 - 0x33 0x20 0x79 0x65 0x61 0x72 0x73 0x20 - 0x61 0x73 0x20 0x61 0x20 0x6D 0x75 0x73 - 0x65 0x75 0x6D 0x20 0x63 0x75 0x72 0x61 - 0x74 0x6F 0x72 0x20 0x20 0x69 0x6E 0x20 - 0x4E 0x65 0x77 0x20 0x59 0x6F 0x72 0x6B - 0x20 0x43 0x69 0x74 0x79 0x2E 0x20 0x20 - 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x77 0x68 0x69 0x6C 0x65 0x20 0x43 0x68 - 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 - 0x77 0x61 0x73 0x20 0x61 0x64 0x6D 0x69 - 0x72 0x69 0x6E 0x67 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x50 0x69 0x63 0x61 0x73 0x73 - 0x6F 0x73 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x62 0x75 0x6D 0x70 0x65 0x64 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x73 0x6F 0x6D 0x65 - 0x6F 0x6E 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x61 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x75 0x73 0x65 0x75 - 0x6D 0x20 0x66 0x69 0x6C 0x6D 0x69 0x6E - 0x67 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x20 0x49 0x74 0x20 0x77 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x66 - 0x61 0x6D 0x6F 0x75 0x73 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x4D 0x65 0x6C 0x61 0x6E - 0x69 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x79 0x20 0x73 0x74 0x61 0x72 0x74 0x65 - 0x64 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x61 0x72 0x74 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x65 0x6E 0x64 0x65 0x64 0x20 0x75 - 0x70 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 - 0x20 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 - 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x69 - 0x6E 0x61 0x20 0x68 0x61 0x64 0x20 0x61 - 0x20 0x6C 0x6F 0x74 0x20 0x6F 0x66 0x20 - 0x67 0x72 0x65 0x61 0x74 0x20 0x69 0x64 - 0x65 0x61 0x73 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x2E 0x20 - 0x4E 0x6F 0x77 0x20 0x43 0x68 0x72 0x69 - 0x73 0x74 0x69 0x6E 0x61 0x20 0x6C 0x69 - 0x76 0x65 0x73 0x20 0x69 0x6E 0x20 0x49 - 0x6D 0x61 0x67 0x69 0x6E 0x6F 0x70 0x6F - 0x6C 0x69 0x73 0x2C 0x20 0x64 0x6F 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x74 - 0x68 0x69 0x6E 0x67 0x73 0x20 0x73 0x68 - 0x65 0x20 0x64 0x69 0x64 0x20 0x69 0x6E - 0x20 0x72 0x65 0x61 0x6C 0x20 0x6C 0x69 - 0x66 0x65 0x97 0x6F 0x6E 0x20 0x63 0x61 - 0x6D 0x65 0x72 0x61 0x21 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x53 0x69 0x6E 0x67 - 0x65 0x72 0x3B 0x20 0x48 0x6F 0x6D 0x65 - 0x20 0x4F 0x77 0x6E 0x65 0x72 0x3B 0x20 - 0x44 0x65 0x74 0x65 0x63 0x74 0x69 0x76 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 1813 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B= 0x0001520c - - -CHUNK('HTOP', _help_48544F50_B, "") -SUBFILE -#line 1821 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_B=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001532b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001532c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001532d - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001532a -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x6C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x74 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x79 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x80 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1D 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x74 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x79 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x7B 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x80 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6, 0x0) - BYTE - 0x03 0x03 0x43 0x4C 0x41 0x55 0x44 0x49 - 0x41 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 0x77 - 0x61 0x73 0x20 0x62 0x6F 0x72 0x6E 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x2C 0x20 0x6F 0x75 0x74 0x2D - 0x6F 0x66 0x2D 0x74 0x68 0x65 0x2D 0x77 - 0x61 0x79 0x20 0x76 0x69 0x6C 0x6C 0x61 - 0x67 0x65 0x20 0x69 0x6E 0x20 0x49 0x6E - 0x64 0x69 0x61 0x20 0x33 0x33 0x20 0x79 - 0x65 0x61 0x72 0x73 0x20 0x61 0x67 0x6F - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x20 0x6C 0x6F 0x6E 0x67 - 0x20 0x6C 0x69 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x73 0x74 0x6F 0x72 0x79 0x2D 0x74 - 0x65 0x6C 0x6C 0x65 0x72 0x73 0x2E 0x20 - 0x20 0x49 0x6E 0x20 0x66 0x61 0x63 0x74 - 0x2C 0x20 0x68 0x65 0x72 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x73 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x20 0x68 0x6F 0x6C 0x64 0x69 0x6E - 0x67 0x20 0x73 0x74 0x6F 0x72 0x79 0x2D - 0x74 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x62 0x61 0x7A 0x61 0x61 0x72 0x73 0x2E - 0x20 0x20 0x45 0x76 0x65 0x6E 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x20 0x43 0x6C - 0x61 0x75 0x64 0x69 0x61 0x20 0x6C 0x6F - 0x76 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x6F 0x72 0x69 0x65 0x73 0x20 - 0x73 0x68 0x65 0x20 0x67 0x72 0x65 0x77 - 0x20 0x75 0x70 0x20 0x77 0x69 0x74 0x68 - 0x2C 0x20 0x73 0x68 0x65 0x20 0x77 0x61 - 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 0x6C - 0x69 0x76 0x65 0x20 0x64 0x61 0x6E 0x67 - 0x65 0x72 0x6F 0x75 0x73 0x6C 0x79 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x92 0x6C - 0x6C 0x20 0x68 0x61 0x76 0x65 0x20 0x77 - 0x69 0x6C 0x64 0x20 0x73 0x74 0x6F 0x72 - 0x69 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x68 0x65 0x72 0x20 - 0x63 0x68 0x69 0x6C 0x64 0x72 0x65 0x6E - 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x48 0x69 0x70 0x70 0x69 0x65 0x3B 0x20 - 0x43 0x6F 0x70 0x3B 0x20 0x50 0x69 0x6C - 0x6F 0x74 -ENDCHUNK - - -ENDCHUNK -#line 1976 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C= 0x0001520d - - -CHUNK('HTOP', _help_48544F50_C, "") -SUBFILE -#line 1984 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001532f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015330 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015331 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001532e -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4B 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x04 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0x4B 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x04 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x06 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x16 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7, 0x0) - BYTE - 0x03 0x03 0x43 0x52 0x41 0x53 0x48 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x43 0x72 0x61 - 0x73 0x68 0x20 0x77 0x6F 0x6B 0x65 0x20 - 0x75 0x70 0x20 0x33 0x33 0x20 0x79 0x65 - 0x61 0x72 0x73 0x20 0x61 0x67 0x6F 0x20 - 0x6F 0x6E 0x20 0x61 0x20 0x64 0x65 0x73 - 0x65 0x72 0x74 0x65 0x64 0x20 0x74 0x72 - 0x6F 0x70 0x69 0x63 0x61 0x6C 0x20 0x69 - 0x73 0x6C 0x61 0x6E 0x64 0x2E 0x20 0x48 - 0x65 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x6B 0x6E 0x6F 0x77 0x20 0x68 - 0x6F 0x77 0x20 0x68 0x65 0x20 0x67 0x6F - 0x74 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x6F 0x72 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x2E 0x20 0x48 - 0x65 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x20 0x61 0x20 0x66 0x61 0x6D 0x6F - 0x75 0x73 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x61 0x79 0x62 0x65 0x20 0x68 - 0x69 0x73 0x20 0x69 0x6E 0x76 0x65 0x6E - 0x74 0x6F 0x72 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x65 0x65 0x20 0x68 0x69 0x6D - 0x20 0x61 0x6E 0x64 0x20 0x63 0x61 0x6C - 0x6C 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x57 0x69 0x6C 0x6C 0x79 0x27 - 0x73 0x20 0x49 0x6E 0x76 0x65 0x6E 0x74 - 0x69 0x6F 0x6E 0x3B 0x20 0x52 0x6F 0x62 - 0x6F 0x74 0x20 0x43 0x6F 0x70 0x3B 0x20 - 0x46 0x6C 0x69 0x67 0x68 0x74 0x20 0x41 - 0x74 0x74 0x65 0x6E 0x64 0x61 0x6E 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2125 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_D= 0x0001520e - - -CHUNK('HTOP', _help_48544F50_D, "") -SUBFILE -#line 2133 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_D, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CF=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_3=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_CF, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015332 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015334 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015335 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015333 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CF=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD4 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD6 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE1 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xD2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xE9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEB 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF2 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE3 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CF=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CF, 0x0) - BYTE - 0x03 0x03 0x45 0x4C 0x49 0x5A 0x41 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x6C 0x69 0x76 0x65 0x73 - 0x20 0x69 0x6E 0x20 0x43 0x61 0x6E 0x63 - 0x75 0x6E 0x2C 0x20 0x4D 0x65 0x78 0x69 - 0x63 0x6F 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x77 0x61 0x74 - 0x65 0x72 0x20 0x69 0x73 0x20 0x74 0x75 - 0x72 0x71 0x75 0x6F 0x69 0x73 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6C 0x65 0x61 - 0x72 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x69 0x73 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6C 0x64 0x65 0x73 0x74 0x20 0x6F 0x66 - 0x20 0x6E 0x69 0x6E 0x65 0x20 0x63 0x68 - 0x69 0x6C 0x64 0x72 0x65 0x6E 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x69 0x73 0x6E 0x92 0x74 0x20 - 0x68 0x65 0x6C 0x70 0x69 0x6E 0x67 0x20 - 0x68 0x65 0x72 0x20 0x6D 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x73 0x74 0x6F 0x72 - 0x65 0x2C 0x20 0x73 0x68 0x65 0x20 0x70 - 0x72 0x61 0x63 0x74 0x69 0x63 0x65 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x64 0x61 0x6E - 0x63 0x69 0x6E 0x67 0x2E 0x20 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x48 0x69 0x70 - 0x70 0x69 0x65 0x3B 0x20 0x4E 0x75 0x72 - 0x73 0x65 0x3B 0x20 0x45 0x78 0x70 0x6C - 0x6F 0x72 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2269 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_E= 0x0001520f - - -CHUNK('HTOP', _help_48544F50_E, "") -SUBFILE -#line 2277 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_E, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_8=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015336 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015338 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015339 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015337 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xDD 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x09 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDD 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE8 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA8 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEA 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF4 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF6 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFD 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFF 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x09 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEA 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xF4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF6 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xFD 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFF 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x09 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3, 0x0) - BYTE - 0x03 0x03 0x46 0x52 0x41 0x4E 0x4B 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x46 0x72 0x61 - 0x6E 0x6B 0x20 0x6C 0x6F 0x6F 0x6B 0x73 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 0x20 - 0x6B 0x69 0x64 0x97 0x68 0x65 0x92 0x73 - 0x20 0x73 0x68 0x6F 0x72 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x65 0x20 0x77 0x65 - 0x61 0x72 0x73 0x20 0x68 0x69 0x73 0x20 - 0x68 0x61 0x69 0x72 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x74 0x65 - 0x73 0x74 0x20 0x63 0x75 0x74 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x68 0x65 0x27 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x34 0x32 0x2E 0x20 0x46 0x72 0x61 - 0x6E 0x6B 0x20 0x61 0x6C 0x73 0x6F 0x20 - 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x73 0x61 - 0x64 0x2C 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x92 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x6D 0x69 0x73 - 0x75 0x6E 0x64 0x65 0x72 0x73 0x74 0x6F - 0x6F 0x64 0x20 0x61 0x6C 0x6C 0x20 0x68 - 0x69 0x73 0x20 0x6C 0x69 0x66 0x65 0x2E - 0x20 0x20 0x45 0x76 0x65 0x6E 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x20 0x68 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x20 0x74 0x6F - 0x75 0x67 0x68 0x20 0x67 0x75 0x79 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x65 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x6C - 0x6F 0x6F 0x6B 0x20 0x76 0x65 0x72 0x79 - 0x20 0x73 0x6D 0x61 0x72 0x74 0x2C 0x20 - 0x68 0x65 0x92 0x73 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x61 0x20 0x73 0x65 - 0x6E 0x73 0x69 0x74 0x69 0x76 0x65 0x2C - 0x20 0x67 0x65 0x6E 0x74 0x6C 0x65 0x20 - 0x67 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x6E 0x6F 0x74 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x73 0x6D 0x61 0x72 - 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x65 0x63 0x72 - 0x65 0x74 0x6C 0x79 0x20 0x77 0x72 0x69 - 0x74 0x65 0x73 0x20 0x73 0x6F 0x6E 0x67 - 0x73 0x20 0x97 0x20 0x75 0x73 0x75 0x61 - 0x6C 0x6C 0x79 0x20 0x73 0x61 0x64 0x20 - 0x73 0x6F 0x6E 0x67 0x73 0x2E 0x20 0x48 - 0x65 0x92 0x64 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x73 0x20 0x73 0x6F 0x6E - 0x67 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x62 0x65 0x63 0x61 0x75 0x73 0x65 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x6F 0x73 0x65 - 0x20 0x61 0x6C 0x6D 0x6F 0x73 0x74 0x20 - 0x63 0x6F 0x76 0x65 0x72 0x73 0x20 0x68 - 0x69 0x73 0x20 0x75 0x70 0x70 0x65 0x72 - 0x20 0x6C 0x69 0x70 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x64 0x73 0x20 - 0x63 0x6F 0x6D 0x65 0x20 0x6F 0x75 0x74 - 0x20 0x61 0x6C 0x6C 0x20 0x77 0x72 0x6F - 0x6E 0x67 0x2E 0x20 0x20 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x47 0x75 0x69 0x6E - 0x65 0x61 0x20 0x50 0x69 0x67 0x3B 0x20 - 0x56 0x69 0x6C 0x6C 0x69 0x61 0x6E 0x3B - 0x20 0x4A 0x75 0x6E 0x67 0x6C 0x65 0x20 - 0x4D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 2447 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_F= 0x00015210 - - -CHUNK('HTOP', _help_48544F50_F, "") -SUBFILE -#line 2455 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_F, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001533a - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001533c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001533d - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001533b -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x57 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x21 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x2C 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x43 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x49 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x57 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2E 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x43 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x45 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x49 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x57 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x15 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 0x74 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B, 0x0) - BYTE - 0x03 0x03 0x47 0x41 0x42 0x52 0x49 0x45 - 0x4C 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x69 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x56 - 0x65 0x6E 0x69 0x63 0x65 0x20 0x42 0x65 - 0x61 0x63 0x68 0x2C 0x20 0x43 0x61 0x6C - 0x69 0x66 0x6F 0x72 0x6E 0x69 0x61 0x2E - 0x20 0x20 0x41 0x74 0x20 0x61 0x67 0x65 - 0x20 0x6F 0x6E 0x65 0x2C 0x20 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x63 0x6C 0x65 - 0x61 0x72 0x6C 0x79 0x20 0x73 0x61 0x79 - 0x2C 0x20 0x93 0x57 0x61 0x79 0x20 0x63 - 0x6F 0x6F 0x6C 0x2C 0x20 0x64 0x75 0x64 - 0x65 0x21 0x94 0x20 0x0D 0x0A 0x48 0x69 - 0x73 0x20 0x70 0x61 0x72 0x65 0x6E 0x74 - 0x73 0x20 0x67 0x61 0x76 0x65 0x20 0x75 - 0x70 0x20 0x74 0x72 0x79 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x6B 0x65 0x65 0x70 - 0x20 0x61 0x6E 0x20 0x65 0x79 0x65 0x20 - 0x6F 0x6E 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x36 - 0x20 0x6D 0x6F 0x6E 0x74 0x68 0x73 0x20 - 0x6F 0x6C 0x64 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x61 0x6C 0x72 0x65 0x61 - 0x64 0x79 0x20 0x63 0x72 0x61 0x77 0x6C - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x79 0x20 0x6F - 0x6E 0x20 0x6E 0x65 0x77 0x20 0x6E 0x65 - 0x6F 0x6E 0x20 0x74 0x2D 0x73 0x68 0x69 - 0x72 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x6D 0x61 0x74 0x63 0x68 0x69 0x6E 0x67 - 0x20 0x64 0x69 0x61 0x70 0x65 0x72 0x73 - 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x27 0x73 - 0x20 0x59 0x6F 0x75 0x6E 0x67 0x65 0x73 - 0x74 0x20 0x53 0x6F 0x6E 0x3B 0x20 0x53 - 0x74 0x61 0x72 0x3B 0x20 0x59 0x6F 0x75 - 0x6E 0x67 0x20 0x4E 0x61 0x74 0x69 0x76 - 0x65 -ENDCHUNK - - -ENDCHUNK -#line 2605 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_10= 0x00015211 - - -CHUNK('HTOP', _help_48544F50_10, "") -SUBFILE -#line 2613 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_10, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_10=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001533e - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015340 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015341 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001533f -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x39 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3C 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x47 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x39 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x51 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x60 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x39 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x49 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x51 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x53 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x60 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x62 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x49 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A, 0x0) - BYTE - 0x03 0x03 0x47 0x52 0x45 0x47 0x4F 0x52 - 0x59 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x69 - 0x73 0x20 0x61 0x20 0x74 0x79 0x70 0x69 - 0x63 0x61 0x6C 0x20 0x31 0x34 0x2D 0x79 - 0x65 0x61 0x72 0x2D 0x6F 0x6C 0x64 0x20 - 0x63 0x6C 0x61 0x73 0x73 0x20 0x63 0x6C - 0x6F 0x77 0x6E 0x2E 0x20 0x48 0x65 0x20 - 0x6B 0x65 0x65 0x70 0x73 0x20 0x68 0x69 - 0x73 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x74 0x65 - 0x61 0x63 0x68 0x65 0x72 0x73 0x20 0x6C - 0x61 0x75 0x67 0x68 0x69 0x6E 0x67 0x20 - 0x77 0x69 0x74 0x68 0x20 0x68 0x69 0x73 - 0x20 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x69 0x6D 0x69 0x74 0x61 - 0x74 0x69 0x6F 0x6E 0x73 0x2E 0x20 0x48 - 0x65 0x20 0x61 0x6C 0x73 0x6F 0x20 0x6C - 0x69 0x6B 0x65 0x73 0x20 0x70 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x77 0x69 0x74 - 0x68 0x20 0x72 0x61 0x64 0x69 0x6F 0x2D - 0x63 0x6F 0x6E 0x74 0x72 0x6F 0x6C 0x6C - 0x65 0x64 0x20 0x63 0x61 0x72 0x73 0x2C - 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x62 0x61 0x73 0x65 - 0x62 0x61 0x6C 0x6C 0x20 0x63 0x61 0x72 - 0x64 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x62 0x61 0x73 0x6B 0x65 0x74 0x62 0x61 - 0x6C 0x6C 0x2E 0x20 0x48 0x69 0x73 0x20 - 0x66 0x61 0x76 0x6F 0x72 0x69 0x74 0x65 - 0x20 0x73 0x75 0x62 0x6A 0x65 0x63 0x74 - 0x73 0x20 0x69 0x6E 0x20 0x73 0x63 0x68 - 0x6F 0x6F 0x6C 0x20 0x61 0x72 0x65 0x20 - 0x73 0x6F 0x63 0x69 0x61 0x6C 0x20 0x73 - 0x74 0x75 0x64 0x69 0x65 0x73 0x2C 0x20 - 0x67 0x65 0x6F 0x67 0x72 0x61 0x70 0x68 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x61 0x6D 0x61 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x4D 0x61 0x67 0x69 0x63 - 0x69 0x61 0x6E 0x3B 0x20 0x4E 0x65 0x77 - 0x73 0x70 0x61 0x70 0x65 0x72 0x20 0x42 - 0x6F 0x79 0x3B 0x20 0x42 0x6F 0x79 0x20 - 0x53 0x63 0x6F 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 2763 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_11= 0x00015212 - - -CHUNK('HTOP', _help_48544F50_11, "") -SUBFILE -#line 2771 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_11, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_11, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015342 - FREE - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015345 - ITEM LONG 0x40000001 - VAR BYTE 66 LONG 0x00015343 - ITEM LONG 0x40000001 - VAR BYTE 67 LONG 0x00015344 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1D 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFE 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x09 0x02 0x00 0x03 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0B 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x11 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x13 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1E 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x20 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x28 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x77 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0B 0x02 0x00 0x40 - 0x04 0x00 0x00 0x00 0x11 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x13 0x02 0x00 0x40 - 0x05 0x00 0x00 0x00 0x1E 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x20 0x02 0x00 0x40 - 0x03 0x00 0x00 0x00 0x28 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4B, 0x0) - BYTE - 0x03 0x03 0x47 0x55 0x53 0x54 0x41 0x56 - 0x45 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x20 0x69 - 0x73 0x20 0x61 0x20 0x66 0x75 0x6E 0x2D - 0x6C 0x6F 0x76 0x69 0x6E 0x67 0x20 0x49 - 0x74 0x61 0x6C 0x69 0x61 0x6E 0x2E 0x20 - 0x20 0x41 0x73 0x20 0x61 0x20 0x73 0x68 - 0x6F 0x65 0x20 0x73 0x61 0x6C 0x65 0x73 - 0x6D 0x61 0x6E 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6D 0x61 0x6C 0x6C - 0x20 0x74 0x6F 0x77 0x6E 0x20 0x6F 0x66 - 0x20 0x50 0x6F 0x72 0x74 0x6F 0x66 0x69 - 0x6E 0x6F 0x2C 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x20 0x73 0x6F 0x6C 0x64 - 0x20 0x74 0x68 0x69 0x63 0x6B 0x2D 0x73 - 0x6F 0x6C 0x65 0x64 0x2C 0x20 0x69 0x6E - 0x64 0x75 0x73 0x74 0x72 0x69 0x61 0x6C - 0x2D 0x71 0x75 0x61 0x6C 0x69 0x74 0x79 - 0x20 0x73 0x68 0x6F 0x65 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x61 0x6C 0x77 0x61 - 0x79 0x73 0x20 0x77 0x61 0x6E 0x74 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x62 0x72 0x65 - 0x61 0x6B 0x20 0x6C 0x6F 0x6F 0x73 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x68 0x61 0x76 - 0x65 0x20 0x46 0x55 0x4E 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x68 0x65 0x20 0x68 0x61 - 0x64 0x20 0x68 0x69 0x73 0x20 0x72 0x65 - 0x70 0x75 0x74 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x6F 0x20 0x75 0x70 0x68 0x6F - 0x6C 0x64 0x2E 0x0D 0x0A 0x4F 0x6E 0x65 - 0x20 0x64 0x61 0x79 0x2C 0x20 0x47 0x75 - 0x73 0x74 0x61 0x76 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x20 0x70 0x61 - 0x69 0x72 0x20 0x6F 0x66 0x20 0x73 0x68 - 0x6F 0x65 0x73 0x20 0x77 0x69 0x74 0x68 - 0x20 0x70 0x6F 0x69 0x6E 0x74 0x79 0x20 - 0x74 0x6F 0x65 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x6E 0x64 0x73 0x6F 0x6D - 0x65 0x20 0x6C 0x65 0x61 0x74 0x68 0x65 - 0x72 0x20 0x73 0x6F 0x6C 0x65 0x73 0x2E - 0x20 0x48 0x65 0x20 0x74 0x72 0x69 0x65 - 0x64 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x73 0x68 0x6F 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x75 0x64 0x64 0x65 - 0x6E 0x6C 0x79 0x20 0x62 0x65 0x67 0x61 - 0x6E 0x20 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x97 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x61 0x69 - 0x73 0x6C 0x65 0x73 0x2C 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6E 0x74 0x65 0x72 0x20 0x74 0x6F 0x70 - 0x73 0x97 0x68 0x65 0x20 0x65 0x76 0x65 - 0x6E 0x20 0x64 0x61 0x6E 0x63 0x65 0x64 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x20 0x6C 0x61 0x64 - 0x79 0x2E 0x20 0x47 0x75 0x73 0x74 0x61 - 0x76 0x65 0x20 0x6B 0x65 0x70 0x74 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x6F 0x75 0x74 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x72 - 0x65 0x65 0x74 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x68 0x65 0x20 0x67 0x6F 0x74 - 0x20 0x68 0x6F 0x6D 0x65 0x2E 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x42 0x75 0x74 - 0x6C 0x65 0x72 0x3B 0x20 0x43 0x61 0x66 - 0x65 0x20 0x57 0x61 0x69 0x74 0x65 0x72 - 0x3B 0x20 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 2943 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_12= 0x00015213 - - -CHUNK('HTOP', _help_48544F50_12, "") -SUBFILE -#line 2951 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_12, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_10=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_15=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001534a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001534b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001534c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001534d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_10=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA0 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x32 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x6E 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x85 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9B 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA0 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x32 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x4C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4E 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x6E 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x70 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_10=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_10, 0x0) - BYTE - 0x03 0x03 0x48 0x49 0x52 0x4F 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x48 0x69 0x72 0x6F - 0x20 0x67 0x72 0x65 0x77 0x20 0x75 0x70 - 0x20 0x69 0x6E 0x20 0x61 0x6E 0x20 0x6F - 0x72 0x70 0x68 0x61 0x6E 0x61 0x67 0x65 - 0x20 0x69 0x6E 0x20 0x53 0x65 0x6E 0x64 - 0x61 0x69 0x2C 0x20 0x4A 0x61 0x70 0x61 - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6E - 0x65 0x76 0x65 0x72 0x20 0x6B 0x6E 0x65 - 0x77 0x20 0x68 0x69 0x73 0x20 0x70 0x61 - 0x72 0x65 0x6E 0x74 0x73 0x2E 0x20 0x20 - 0x4E 0x6F 0x74 0x20 0x6F 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x64 0x77 0x65 0x6C 0x6C - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x67 0x61 0x74 0x69 0x76 0x65 - 0x20 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 - 0x20 0x6C 0x69 0x66 0x65 0x2C 0x20 0x68 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x74 0x65 0x6C 0x6C 0x20 0x6A 0x6F 0x6B - 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x75 0x74 0x20 0x6F 0x6E 0x20 0x70 0x6C - 0x61 0x79 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x72 0x70 0x68 0x61 - 0x6E 0x61 0x67 0x65 0x20 0x74 0x6F 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x6B 0x65 0x65 - 0x70 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x6B 0x69 0x64 0x73 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x65 0x64 0x2E 0x20 0x20 0x48 - 0x69 0x73 0x20 0x64 0x72 0x65 0x61 0x6D - 0x20 0x77 0x61 0x73 0x20 0x74 0x6F 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x65 0x6E 0x74 - 0x65 0x72 0x74 0x61 0x69 0x6E 0x20 0x6B - 0x69 0x64 0x73 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x46 0x6F 0x6F 0x64 0x20 - 0x54 0x65 0x73 0x74 0x65 0x72 0x3B 0x20 - 0x4D 0x65 0x6D 0x62 0x65 0x72 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x4B 0x69 - 0x64 0x73 0x27 0x20 0x4D 0x79 0x73 0x74 - 0x65 0x72 0x79 0x20 0x43 0x6C 0x75 0x62 - 0x3B 0x20 0x48 0x6F 0x74 0x2D 0x61 0x69 - 0x72 0x20 0x42 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x50 0x69 0x6C 0x6F 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3104 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_13= 0x00015214 - - -CHUNK('HTOP', _help_48544F50_13, "") -SUBFILE -#line 3112 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_13, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_27=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_23=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001534e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001534f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015350 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015351 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_27=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x96 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x19 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC0 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC2 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x19 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x93 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC2 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x08 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_27=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_27, 0x0) - BYTE - 0x03 0x03 0x4A 0x45 0x52 0x45 0x4D 0x59 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4A 0x65 - 0x72 0x65 0x6D 0x79 0x20 0x77 0x61 0x73 - 0x20 0x62 0x6F 0x72 0x6E 0x20 0x69 0x6E - 0x20 0x43 0x6F 0x6E 0x6E 0x65 0x63 0x74 - 0x69 0x63 0x75 0x74 0x2C 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x55 0x6E 0x69 - 0x74 0x65 0x64 0x20 0x53 0x74 0x61 0x74 - 0x65 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x68 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 - 0x20 0x74 0x6F 0x20 0x65 0x78 0x65 0x72 - 0x63 0x69 0x73 0x65 0x2E 0x20 0x20 0x41 - 0x74 0x20 0x32 0x39 0x2C 0x20 0x68 0x65 - 0x92 0x73 0x20 0x61 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x61 0x74 0x68 0x6C 0x65 - 0x74 0x65 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x61 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 - 0x69 0x6E 0x74 0x65 0x72 0x76 0x69 0x65 - 0x77 0x65 0x64 0x20 0x6F 0x6E 0x20 0x73 - 0x70 0x6F 0x72 0x74 0x73 0x20 0x74 0x65 - 0x6C 0x65 0x76 0x69 0x73 0x69 0x6F 0x6E - 0x20 0x73 0x68 0x6F 0x77 0x73 0x20 0x73 - 0x65 0x76 0x65 0x72 0x61 0x6C 0x20 0x74 - 0x69 0x6D 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x77 0x69 0x6E 0x6E 0x69 0x6E 0x67 - 0x20 0x72 0x61 0x63 0x65 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x61 0x63 0x74 0x20 - 0x69 0x6E 0x20 0x63 0x6F 0x6D 0x6D 0x65 - 0x72 0x63 0x69 0x61 0x6C 0x73 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x65 0x6E 0x6E 0x69 - 0x73 0x20 0x73 0x68 0x6F 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x72 0x75 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x63 0x6C 0x6F 0x74 - 0x68 0x65 0x73 0x2C 0x20 0x61 0x20 0x66 - 0x65 0x77 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x70 0x72 0x6F 0x64 0x75 0x63 0x65 - 0x72 0x73 0x20 0x74 0x68 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x92 0x64 0x20 - 0x62 0x65 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x70 0x61 0x72 0x74 0x73 0x20 0x69 0x6E - 0x20 0x66 0x69 0x6C 0x6D 0x73 0x2C 0x20 - 0x74 0x68 0x61 0x6E 0x6B 0x73 0x20 0x74 - 0x6F 0x20 0x68 0x69 0x73 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x61 0x6C 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x62 0x69 - 0x6C 0x69 0x74 0x79 0x2E 0x20 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x43 0x6F 0x6F - 0x6B 0x3B 0x20 0x53 0x74 0x72 0x65 0x65 - 0x74 0x20 0x46 0x61 0x69 0x72 0x20 0x50 - 0x61 0x72 0x74 0x69 0x63 0x69 0x70 0x61 - 0x6E 0x74 0x3B 0x20 0x50 0x72 0x65 0x68 - 0x69 0x73 0x74 0x6F 0x72 0x69 0x63 0x20 - 0x4D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 3275 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_14= 0x00015215 - - -CHUNK('HTOP', _help_48544F50_14, "") -SUBFILE -#line 3283 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_14, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_57=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015352 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015353 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015354 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015355 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_57=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x83 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB5 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x90 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x9A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA7 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xC3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9C 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA9 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_57=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_57, 0x0) - BYTE - 0x03 0x03 0x4A 0x45 0x52 0x5A 0x59 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x4A 0x65 0x72 - 0x7A 0x79 0x20 0x69 0x73 0x20 0x61 0x20 - 0x70 0x6F 0x74 0x61 0x74 0x6F 0x20 0x66 - 0x61 0x72 0x6D 0x65 0x72 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x63 0x65 0x6E 0x74 0x72 - 0x61 0x6C 0x20 0x50 0x6F 0x6C 0x61 0x6E - 0x64 0x2E 0x20 0x20 0x48 0x65 0x20 0x68 - 0x61 0x73 0x20 0x65 0x61 0x74 0x65 0x6E - 0x20 0x6D 0x75 0x63 0x68 0x20 0x6F 0x66 - 0x20 0x77 0x68 0x61 0x74 0x20 0x68 0x65 - 0x92 0x73 0x20 0x67 0x72 0x6F 0x77 0x6E - 0x2C 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6E 0x6F 0x77 0x20 0x68 0x65 - 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 - 0x73 0x61 0x79 0x73 0x2C 0x20 0x93 0x4F - 0x6F 0x6D 0x70 0x68 0x94 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x6B 0x6E - 0x65 0x65 0x6C 0x73 0x20 0x74 0x6F 0x20 - 0x64 0x69 0x67 0x20 0x70 0x6F 0x74 0x61 - 0x74 0x6F 0x65 0x73 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x65 0x6C 0x6C 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 0x6E - 0x64 0x20 0x64 0x61 0x6E 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x6F 0x6C 0x64 0x20 0x50 - 0x6F 0x6C 0x69 0x73 0x68 0x20 0x66 0x6F - 0x6C 0x6B 0x20 0x73 0x6F 0x6E 0x67 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x69 - 0x73 0x20 0x6E 0x65 0x69 0x67 0x68 0x62 - 0x6F 0x72 0x73 0x2C 0x20 0x61 0x20 0x77 - 0x6F 0x6D 0x61 0x6E 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x54 0x65 0x78 0x61 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x20 0x6D 0x61 - 0x6E 0x20 0x66 0x72 0x6F 0x6D 0x20 0x49 - 0x72 0x65 0x6C 0x61 0x6E 0x64 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x62 - 0x6F 0x79 0x2C 0x20 0x68 0x65 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x65 0x64 0x20 0x6F - 0x66 0x20 0x62 0x65 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x66 0x61 0x6D - 0x6F 0x75 0x73 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x74 0x61 0x72 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x74 0x68 0x61 0x74 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6C - 0x6F 0x6E 0x67 0x20 0x74 0x69 0x6D 0x65 - 0x20 0x61 0x67 0x6F 0x2E 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x47 0x61 0x72 0x64 - 0x65 0x6E 0x65 0x72 0x3B 0x20 0x54 0x61 - 0x78 0x69 0x20 0x44 0x72 0x69 0x76 0x65 - 0x72 0x3B 0x20 0x41 0x72 0x63 0x68 0x65 - 0x6F 0x6C 0x6F 0x67 0x69 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 3444 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_15= 0x00015216 - - -CHUNK('HTOP', _help_48544F50_15, "") -SUBFILE -#line 3452 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_15, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_28=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015357 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015358 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015359 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015356 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4B 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x56 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x3D 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x48 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x63 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x77 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x79 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x86 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3D 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0x48 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x65 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x77 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x79 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x86 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x58 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7A, 0x0) - BYTE - 0x03 0x03 0x4A 0x4F 0x53 0x45 0x50 0x48 - 0x49 0x4E 0x45 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x4A 0x6F 0x73 0x65 0x70 0x68 0x69 - 0x6E 0x65 0x20 0x69 0x73 0x20 0x32 0x37 - 0x20 0x79 0x65 0x61 0x72 0x73 0x20 0x6F - 0x6C 0x64 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x42 0x61 0x6E 0x67 0x61 0x6C - 0x6F 0x72 0x65 0x2C 0x20 0x49 0x6E 0x64 - 0x69 0x61 0x2E 0x20 0x42 0x61 0x6E 0x67 - 0x61 0x6C 0x6F 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x76 0x65 0x72 0x79 0x20 - 0x70 0x72 0x6F 0x67 0x72 0x65 0x73 0x73 - 0x69 0x76 0x65 0x20 0x63 0x69 0x74 0x79 - 0x20 0x69 0x6E 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x20 0x61 0x6E 0x64 0x20 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x20 - 0x68 0x61 0x73 0x20 0x74 0x72 0x69 0x65 - 0x64 0x20 0x6D 0x61 0x6E 0x79 0x20 0x64 - 0x69 0x66 0x66 0x65 0x72 0x65 0x6E 0x74 - 0x20 0x63 0x61 0x72 0x65 0x65 0x72 0x73 - 0x20 0x74 0x68 0x65 0x72 0x65 0x3A 0x20 - 0x6D 0x6F 0x64 0x65 0x6C 0x69 0x6E 0x67 - 0x2C 0x20 0x73 0x61 0x6C 0x65 0x73 0x2C - 0x20 0x77 0x72 0x69 0x74 0x69 0x6E 0x67 - 0x2C 0x20 0x61 0x63 0x74 0x69 0x6E 0x67 - 0x2E 0x2E 0x2E 0x20 0x62 0x75 0x74 0x20 - 0x75 0x70 0x6F 0x6E 0x20 0x61 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x68 - 0x65 0x72 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x70 - 0x61 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x66 0x69 0x6C 0x6D 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x6B 0x6E 0x65 0x77 0x20 - 0x73 0x68 0x65 0x20 0x68 0x61 0x64 0x20 - 0x66 0x6F 0x75 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x20 0x74 0x72 0x75 0x65 0x20 0x64 - 0x65 0x73 0x74 0x69 0x6E 0x79 0x97 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x73 0x74 0x61 - 0x72 0x21 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x50 0x61 0x6C 0x6D 0x20 0x52 - 0x65 0x61 0x64 0x65 0x72 0x3B 0x20 0x49 - 0x6D 0x70 0x6F 0x72 0x74 0x20 0x53 0x61 - 0x6C 0x65 0x73 0x70 0x65 0x72 0x73 0x6F - 0x6E 0x3B 0x20 0x41 0x72 0x74 0x20 0x43 - 0x6F 0x6C 0x6C 0x65 0x63 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 3604 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_16= 0x00015217 - - -CHUNK('HTOP', _help_48544F50_16, "") -SUBFILE -#line 3612 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_16, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_20=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001535a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001535b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001535c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001535d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x03 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x0F 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD8 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE8 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xCA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0x0A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0C 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x05 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x11 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1B, 0x0) - BYTE - 0x03 0x03 0x4B 0x49 0x4D 0x0D 0x0A 0x42 - 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x0D 0x0A 0x4B 0x69 0x6D 0x20 0x69 - 0x73 0x20 0x73 0x75 0x70 0x70 0x6F 0x73 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x61 0x20 0x71 0x75 0x69 0x65 0x74 - 0x2C 0x20 0x70 0x72 0x6F 0x70 0x65 0x72 - 0x2C 0x20 0x31 0x32 0x2D 0x79 0x65 0x61 - 0x72 0x2D 0x6F 0x6C 0x64 0x20 0x4A 0x61 - 0x70 0x61 0x6E 0x65 0x73 0x65 0x20 0x67 - 0x69 0x72 0x6C 0x20 0x77 0x68 0x6F 0x20 - 0x62 0x65 0x68 0x61 0x76 0x65 0x73 0x20 - 0x68 0x65 0x72 0x73 0x65 0x6C 0x66 0x2E - 0x20 0x20 0x57 0x72 0x6F 0x6E 0x67 0x2E - 0x20 0x4B 0x69 0x6D 0x20 0x77 0x69 0x67 - 0x67 0x6C 0x65 0x73 0x20 0x63 0x6F 0x6E - 0x73 0x74 0x61 0x6E 0x74 0x6C 0x79 0x2C - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x74 0x72 - 0x79 0x20 0x61 0x6E 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x63 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x20 0x6B 0x69 0x64 0x20 0x73 0x74 - 0x75 0x6E 0x74 0x20 0x61 0x63 0x74 0x72 - 0x65 0x73 0x73 0x2E 0x20 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x46 0x6F 0x72 0x74 - 0x75 0x6E 0x65 0x20 0x54 0x65 0x6C 0x6C - 0x65 0x72 0x3B 0x20 0x4D 0x65 0x6D 0x62 - 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x4B 0x69 0x64 0x73 0x27 0x20 - 0x4D 0x79 0x73 0x74 0x65 0x72 0x79 0x20 - 0x43 0x6C 0x75 0x62 0x3B 0x20 0x50 0x72 - 0x65 0x68 0x69 0x73 0x74 0x6F 0x72 0x69 - 0x63 0x20 0x47 0x69 0x72 0x6C -ENDCHUNK - - -ENDCHUNK -#line 3750 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_17= 0x00015218 - - -CHUNK('HTOP', _help_48544F50_17, "") -SUBFILE -#line 3758 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_17, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1D=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B2, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001535e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001535f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015360 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015361 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x35 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x40 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x56 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x61 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x80 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x42 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x56 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x58 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x80 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x08 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x42 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B2, 0x0) - BYTE - 0x03 0x03 0x4D 0x41 0x52 0x54 0x48 0x41 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4D 0x61 - 0x72 0x74 0x68 0x61 0x20 0x77 0x61 0x73 - 0x20 0x62 0x6F 0x72 0x6E 0x20 0x69 0x6E - 0x20 0x50 0x61 0x64 0x75 0x63 0x61 0x68 - 0x2C 0x20 0x54 0x65 0x78 0x61 0x73 0x2C - 0x20 0x61 0x20 0x6C 0x69 0x74 0x74 0x6C - 0x65 0x20 0x74 0x6F 0x77 0x6E 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x69 - 0x64 0x64 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x6E 0x6F 0x77 0x68 0x65 0x72 0x65 0x2E - 0x20 0x42 0x65 0x69 0x6E 0x67 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x6F 0x77 0x6E - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6D - 0x69 0x73 0x74 0x61 0x6B 0x65 0x2E 0x20 - 0x4D 0x6F 0x73 0x74 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x77 0x65 0x72 0x65 0x20 0x71 - 0x75 0x69 0x65 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x64 0x20 0x93 0x67 0x6F - 0x6F 0x64 0x20 0x73 0x65 0x6E 0x73 0x65 - 0x2E 0x94 0x20 0x4E 0x6F 0x74 0x20 0x4D - 0x61 0x72 0x74 0x68 0x61 0x97 0x73 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x77 0x61 - 0x63 0x6B 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x72 0x65 0x61 0x74 0x69 0x76 0x65 - 0x2C 0x20 0x77 0x69 0x6C 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x75 0x6E 0x70 0x72 0x65 - 0x64 0x69 0x63 0x74 0x61 0x62 0x6C 0x65 - 0x2E 0x20 0x54 0x68 0x65 0x20 0x66 0x6F - 0x6C 0x6B 0x73 0x20 0x69 0x6E 0x20 0x54 - 0x65 0x78 0x61 0x73 0x20 0x73 0x74 0x69 - 0x6C 0x6C 0x20 0x72 0x65 0x6D 0x65 0x6D - 0x62 0x65 0x72 0x20 0x68 0x65 0x72 0x20 - 0x61 0x73 0x20 0x93 0x74 0x68 0x61 0x74 - 0x20 0x77 0x69 0x6C 0x64 0x20 0x74 0x68 - 0x69 0x6E 0x67 0x2E 0x94 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x41 0x20 0x43 0x72 - 0x65 0x65 0x70 0x79 0x2C 0x20 0x53 0x63 - 0x61 0x72 0x79 0x20 0x41 0x75 0x6E 0x74 - 0x3B 0x20 0x4D 0x61 0x6E 0x6E 0x65 0x71 - 0x75 0x69 0x6E 0x3B 0x20 0x48 0x69 0x67 - 0x68 0x2D 0x46 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x4D 0x61 0x72 0x6B 0x65 0x74 0x69 - 0x6E 0x67 0x20 0x4D 0x61 0x6E 0x61 0x67 - 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 3909 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_18= 0x00015219 - - -CHUNK('HTOP', _help_48544F50_18, "") -SUBFILE -#line 3917 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_18, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_25=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_27=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015362 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015363 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015364 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015365 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_25=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x23 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x15 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x47 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x27 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBB 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x29 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x32 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x47 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xBB 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x1C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x29 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x32 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x34 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x3D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x47 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x29 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_25=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_25, 0x0) - BYTE - 0x03 0x03 0x4D 0x49 0x43 0x48 0x41 0x45 - 0x4C 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x6A - 0x75 0x73 0x74 0x20 0x67 0x72 0x61 0x64 - 0x75 0x61 0x74 0x65 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x68 0x69 0x67 0x68 0x20 - 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x20 0x69 - 0x6E 0x20 0x43 0x68 0x69 0x63 0x61 0x67 - 0x6F 0x20 0x61 0x6E 0x64 0x20 0x69 0x73 - 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x67 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x6C 0x6C 0x2E 0x20 0x20 - 0x42 0x75 0x74 0x20 0x74 0x68 0x69 0x73 - 0x20 0x73 0x75 0x6D 0x6D 0x65 0x72 0x2C - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x20 0x69 0x73 0x20 0x63 0x6F 0x6E 0x63 - 0x65 0x6E 0x74 0x72 0x61 0x74 0x69 0x6E - 0x67 0x20 0x6F 0x6E 0x20 0x77 0x72 0x69 - 0x74 0x69 0x6E 0x67 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x2E 0x20 0x20 0x4D 0x61 0x69 - 0x6E 0x6C 0x79 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6C 0x75 0x65 0x73 0x2E 0x20 0x20 - 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 - 0x73 0x68 0x6F 0x75 0x6C 0x64 0x20 0x68 - 0x61 0x76 0x65 0x20 0x62 0x65 0x65 0x6E - 0x20 0x62 0x6F 0x72 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x4D 0x69 0x73 - 0x73 0x69 0x73 0x73 0x69 0x70 0x70 0x69 - 0x20 0x44 0x65 0x6C 0x74 0x61 0x97 0x74 - 0x68 0x61 0x74 0x92 0x73 0x20 0x68 0x6F - 0x77 0x20 0x67 0x6F 0x6F 0x64 0x20 0x68 - 0x69 0x73 0x20 0x62 0x6C 0x75 0x65 0x73 - 0x20 0x74 0x75 0x6E 0x65 0x73 0x20 0x61 - 0x72 0x65 0x2E 0x20 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x53 0x6F 0x75 0x73 0x2D - 0x43 0x68 0x65 0x66 0x3B 0x20 0x4D 0x65 - 0x73 0x73 0x65 0x6E 0x67 0x65 0x72 0x3B - 0x20 0x45 0x78 0x70 0x6C 0x6F 0x72 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4066 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_19= 0x0001521a - - -CHUNK('HTOP', _help_48544F50_19, "") -SUBFILE -#line 4074 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_19, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_18=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015366 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015367 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015368 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015369 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF5 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x00 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x26 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x24 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x26 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x1C 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x26 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x02 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x24 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x26 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x2D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x2F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x3A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x02 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4D, 0x0) - BYTE - 0x03 0x03 0x4D 0x49 0x4D 0x49 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x4D 0x69 0x6D 0x69 - 0x20 0x69 0x73 0x20 0x61 0x20 0x74 0x72 - 0x61 0x63 0x6B 0x20 0x73 0x74 0x61 0x72 - 0x20 0x61 0x74 0x20 0x68 0x65 0x72 0x20 - 0x68 0x69 0x67 0x68 0x20 0x73 0x63 0x68 - 0x6F 0x6F 0x6C 0x20 0x69 0x6E 0x20 0x50 - 0x6F 0x75 0x67 0x68 0x6B 0x65 0x65 0x70 - 0x73 0x69 0x65 0x2C 0x20 0x4E 0x65 0x77 - 0x20 0x59 0x6F 0x72 0x6B 0x2E 0x20 0x53 - 0x6F 0x6D 0x65 0x74 0x69 0x6D 0x65 0x73 - 0x20 0x73 0x68 0x65 0x20 0x72 0x75 0x6E - 0x73 0x20 0x73 0x6F 0x20 0x66 0x61 0x73 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x69 - 0x74 0x20 0x74 0x61 0x6B 0x65 0x73 0x20 - 0x68 0x65 0x72 0x20 0x61 0x20 0x63 0x6F - 0x75 0x70 0x6C 0x65 0x20 0x6F 0x66 0x20 - 0x63 0x69 0x74 0x79 0x20 0x62 0x6C 0x6F - 0x63 0x6B 0x73 0x20 0x74 0x6F 0x20 0x73 - 0x6C 0x6F 0x77 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 0x6F - 0x70 0x2E 0x20 0x53 0x6F 0x6D 0x65 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x20 0x63 - 0x6C 0x61 0x69 0x6D 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x68 0x65 0x92 0x73 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x73 0x74 - 0x65 0x73 0x74 0x20 0x68 0x75 0x6D 0x61 - 0x6E 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6C 0x64 0x2E 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x54 0x72 0x69 0x63 - 0x6B 0x2D 0x6F 0x72 0x2D 0x54 0x72 0x65 - 0x61 0x74 0x65 0x72 0x20 0x44 0x72 0x65 - 0x73 0x73 0x65 0x64 0x20 0x61 0x73 0x20 - 0x50 0x69 0x72 0x61 0x74 0x65 0x3B 0x20 - 0x54 0x6F 0x75 0x72 0x69 0x73 0x74 0x3B - 0x20 0x54 0x72 0x61 0x63 0x6B 0x20 0x43 - 0x6F 0x61 0x63 0x68 -ENDCHUNK - - -ENDCHUNK -#line 4216 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1A= 0x0001521b - - -CHUNK('HTOP', _help_48544F50_1A, "") -SUBFILE -#line 4224 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1A, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_91=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1F=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001536a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001536b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001536c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001536d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_91=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1F 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAE 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB0 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCB 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD4 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD6 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE0 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA7 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB0 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCB 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD4 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD6 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xE0 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB0 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_91=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_91, 0x0) - BYTE - 0x03 0x03 0x4D 0x41 0x52 0x49 0x42 0x45 - 0x4C 0x4C 0x41 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x4D 0x61 0x72 0x69 0x62 0x65 0x6C - 0x6C 0x61 0x20 0x77 0x61 0x73 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x31 0x34 0x20 0x79 - 0x65 0x61 0x72 0x73 0x20 0x61 0x67 0x6F - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x67 0x20 0x6F 0x66 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x4C 0x6F - 0x6E 0x64 0x6F 0x6E 0x92 0x73 0x20 0x69 - 0x6E 0x6E 0x65 0x72 0x20 0x62 0x6F 0x72 - 0x6F 0x75 0x67 0x68 0x73 0x2E 0x20 0x4D - 0x61 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 - 0x20 0x69 0x73 0x20 0x62 0x72 0x69 0x67 - 0x68 0x74 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x75 0x6E 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x73 0x68 0x65 0x20 0x68 0x61 0x73 0x20 - 0x6F 0x6E 0x65 0x20 0x70 0x72 0x6F 0x62 - 0x6C 0x65 0x6D 0x97 0x73 0x68 0x65 0x20 - 0x6C 0x6F 0x76 0x65 0x73 0x20 0x74 0x6F - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x77 0x68 - 0x65 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x65 0x76 0x65 0x72 0x79 0x74 0x68 0x69 - 0x6E 0x67 0x2E 0x20 0x20 0x46 0x6F 0x72 - 0x20 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 - 0x2C 0x20 0x6C 0x61 0x73 0x74 0x20 0x41 - 0x75 0x67 0x75 0x73 0x74 0x20 0x73 0x68 - 0x65 0x20 0x74 0x6F 0x6F 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x75 0x72 0x20 - 0x6F 0x66 0x20 0x42 0x75 0x63 0x6B 0x69 - 0x6E 0x67 0x68 0x61 0x6D 0x20 0x50 0x61 - 0x6C 0x61 0x63 0x65 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x74 - 0x68 0x72 0x6F 0x77 0x6E 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x67 0x75 0x61 0x72 0x64 0x20 0x63 - 0x61 0x75 0x67 0x68 0x74 0x20 0x68 0x65 - 0x72 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6C 0x6F 0x73 0x65 0x74 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x70 0x72 0x69 0x76 - 0x61 0x74 0x65 0x20 0x72 0x6F 0x6F 0x6D - 0x2E 0x20 0x41 0x6E 0x64 0x20 0x6E 0x6F - 0x74 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 - 0x6E 0x79 0x20 0x72 0x6F 0x6F 0x6D 0x2E - 0x20 0x20 0x49 0x74 0x20 0x77 0x61 0x73 - 0x20 0x74 0x68 0x65 0x20 0x62 0x65 0x64 - 0x72 0x6F 0x6F 0x6D 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x71 0x75 0x65 0x65 - 0x6E 0x21 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x44 0x61 0x75 0x67 0x68 0x74 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x20 0x46 0x61 0x6D - 0x69 0x6C 0x79 0x3B 0x20 0x4D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x3B 0x20 - 0x47 0x69 0x72 0x6C 0x20 0x53 0x63 0x6F - 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 4388 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1B= 0x0001521c - - -CHUNK('HTOP', _help_48544F50_1B, "") -SUBFILE -#line 4396 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1B, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_14=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001536e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001536f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015370 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015371 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x18 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x23 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC2 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x25 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x3F 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x4D 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x66 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBC 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xC2 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x25 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x3F 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x41 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x4D 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x66 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x08 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x14 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x25 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7E, 0x0) - BYTE - 0x03 0x03 0x4E 0x41 0x4B 0x49 0x54 0x41 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 - 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x20 0x67 0x72 0x65 - 0x77 0x20 0x75 0x70 0x20 0x77 0x69 0x74 - 0x68 0x20 0x65 0x69 0x67 0x68 0x74 0x20 - 0x6F 0x6C 0x64 0x65 0x72 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x73 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x72 0x74 0x20 0x63 0x69 0x74 0x79 0x20 - 0x6F 0x66 0x20 0x53 0x74 0x2E 0x20 0x50 - 0x65 0x74 0x65 0x72 0x73 0x62 0x75 0x72 - 0x67 0x2C 0x20 0x52 0x75 0x73 0x73 0x69 - 0x61 0x20 0x61 0x6E 0x64 0x20 0x6C 0x65 - 0x61 0x72 0x6E 0x65 0x64 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x76 0x65 0x72 0x79 - 0x20 0x74 0x6F 0x75 0x67 0x68 0x2E 0x20 - 0x20 0x54 0x6F 0x20 0x6B 0x65 0x65 0x70 - 0x20 0x68 0x65 0x72 0x20 0x62 0x72 0x6F - 0x74 0x68 0x65 0x72 0x73 0x20 0x69 0x6E - 0x20 0x6C 0x69 0x6E 0x65 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x65 0x76 0x65 0x6E 0x74 - 0x75 0x61 0x6C 0x6C 0x79 0x20 0x74 0x6F - 0x6F 0x6B 0x20 0x75 0x70 0x20 0x6B 0x61 - 0x72 0x61 0x74 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 - 0x74 0x68 0x65 0x20 0x79 0x6F 0x75 0x6E - 0x67 0x65 0x73 0x74 0x20 0x52 0x75 0x73 - 0x73 0x69 0x61 0x6E 0x20 0x6B 0x61 0x72 - 0x61 0x74 0x65 0x20 0x63 0x68 0x61 0x6D - 0x70 0x69 0x6F 0x6E 0x20 0x65 0x76 0x65 - 0x72 0x21 0x20 0x20 0x4E 0x6F 0x77 0x20 - 0x6E 0x6F 0x62 0x6F 0x64 0x79 0x20 0x70 - 0x69 0x63 0x6B 0x73 0x20 0x6F 0x6E 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x50 - 0x72 0x69 0x76 0x61 0x74 0x65 0x20 0x41 - 0x65 0x72 0x6F 0x62 0x69 0x63 0x20 0x49 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x6F - 0x72 0x3B 0x20 0x56 0x65 0x6C 0x63 0x72 - 0x6F 0x20 0x57 0x6F 0x6D 0x61 0x6E 0x3B - 0x20 0x53 0x63 0x75 0x62 0x61 0x20 0x44 - 0x69 0x76 0x69 0x6E 0x67 0x20 0x49 0x6E - 0x73 0x74 0x72 0x75 0x63 0x74 0x6F 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4543 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1C= 0x0001521d - - -CHUNK('HTOP', _help_48544F50_1C, "") -SUBFILE -#line 4551 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1C, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_9=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015372 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015374 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015375 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015373 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCE 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD9 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x81 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE6 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF5 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFF 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x78 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0x81 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xE6 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xF5 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF7 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xFF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4, 0x0) - BYTE - 0x03 0x03 0x50 0x41 0x54 0x52 0x49 0x43 - 0x4B 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x50 - 0x61 0x74 0x72 0x69 0x63 0x6B 0x20 0x77 - 0x61 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x74 0x68 0x65 0x20 0x63 0x65 - 0x6E 0x74 0x65 0x72 0x20 0x6F 0x66 0x20 - 0x61 0x74 0x74 0x65 0x6E 0x74 0x69 0x6F - 0x6E 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x68 - 0x6F 0x6D 0x65 0x74 0x6F 0x77 0x6E 0x20 - 0x6F 0x66 0x20 0x44 0x75 0x6E 0x6D 0x6F - 0x72 0x65 0x2C 0x20 0x49 0x72 0x65 0x6C - 0x61 0x6E 0x64 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x6F 0x76 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 - 0x61 0x69 0x6E 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x77 0x68 - 0x69 0x6C 0x65 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6B 0x65 0x64 0x20 0x61 0x73 - 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 0x67 - 0x75 0x69 0x64 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x6C 0x6F 0x63 0x61 0x6C - 0x20 0x67 0x6C 0x61 0x73 0x73 0x20 0x66 - 0x61 0x63 0x74 0x6F 0x72 0x79 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x66 0x61 0x63 - 0x74 0x6F 0x72 0x79 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x6D 0x61 0x6A 0x6F 0x72 - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x20 0x61 0x74 0x74 0x72 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 - 0x73 0x68 0x6F 0x72 0x74 0x20 0x66 0x69 - 0x6C 0x6D 0x20 0x77 0x61 0x73 0x20 0x6D - 0x61 0x64 0x65 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x69 0x74 0x2C 0x20 0x50 0x61 - 0x74 0x72 0x69 0x63 0x6B 0x20 0x73 0x74 - 0x6F 0x6C 0x65 0x20 0x74 0x68 0x65 0x20 - 0x73 0x68 0x6F 0x77 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x72 0x65 0x61 0x6C 0x69 0x7A - 0x65 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x6E 0x27 0x74 0x20 0x6C - 0x69 0x76 0x69 0x6E 0x67 0x20 0x75 0x70 - 0x20 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 - 0x66 0x75 0x6C 0x6C 0x20 0x70 0x6F 0x74 - 0x65 0x6E 0x74 0x69 0x61 0x6C 0x20 0x69 - 0x6E 0x20 0x44 0x75 0x6E 0x6D 0x6F 0x72 - 0x65 0x2C 0x20 0x73 0x6F 0x20 0x68 0x65 - 0x20 0x64 0x65 0x63 0x69 0x64 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x55 0x6E - 0x69 0x74 0x65 0x64 0x20 0x53 0x74 0x61 - 0x74 0x65 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x69 0x74 0x20 0x69 - 0x6E 0x20 0x48 0x6F 0x6C 0x6C 0x79 0x77 - 0x6F 0x6F 0x64 0x2E 0x20 0x20 0x0D 0x0A - 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F - 0x6C 0x65 0x73 0x0D 0x0A 0x52 0x69 0x63 - 0x68 0x20 0x43 0x6F 0x75 0x73 0x69 0x6E - 0x3B 0x20 0x4B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x45 0x78 0x70 0x65 0x72 0x74 0x3B - 0x20 0x45 0x78 0x70 0x6C 0x6F 0x72 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4719 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1D= 0x0001521e - - -CHUNK('HTOP', _help_48544F50_1D, "") -SUBFILE -#line 4727 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1D, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1A=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015376 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015377 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015378 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015379 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0x81 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x4F 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x5A 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5C 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x68 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x6A 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x76 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x81 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x5C 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x68 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x6A 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x76 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x81 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1C, 0x0) - BYTE - 0x03 0x03 0x52 0x41 0x4D 0x55 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x52 0x61 0x6D 0x75 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6C - 0x65 0x61 0x64 0x69 0x6E 0x67 0x20 0x64 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x69 - 0x6E 0x20 0x4A 0x61 0x69 0x70 0x75 0x72 - 0x2C 0x20 0x49 0x6E 0x64 0x69 0x61 0x20 - 0x66 0x6F 0x72 0x20 0x73 0x65 0x76 0x65 - 0x72 0x61 0x6C 0x20 0x79 0x65 0x61 0x72 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x65 - 0x76 0x65 0x6C 0x6F 0x70 0x65 0x64 0x20 - 0x61 0x6E 0x20 0x69 0x6E 0x74 0x65 0x72 - 0x6E 0x61 0x74 0x69 0x6F 0x6E 0x61 0x6C - 0x20 0x72 0x65 0x70 0x75 0x74 0x61 0x74 - 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x42 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x77 0x20 0x69 0x74 0x2C - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x63 0x74 0x72 - 0x65 0x73 0x73 0x65 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x48 0x6F 0x6C 0x6C 0x79 - 0x77 0x6F 0x6F 0x64 0x20 0x77 0x65 0x72 - 0x65 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x66 0x6C 0x69 - 0x67 0x68 0x74 0x20 0x74 0x6F 0x20 0x49 - 0x6E 0x64 0x69 0x61 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x65 - 0x72 0x66 0x65 0x63 0x74 0x20 0x22 0x52 - 0x61 0x6D 0x75 0x20 0x73 0x6D 0x69 0x6C - 0x65 0x2E 0x22 0x20 0x20 0x42 0x75 0x73 - 0x69 0x6E 0x65 0x73 0x73 0x20 0x77 0x61 - 0x73 0x20 0x73 0x6F 0x20 0x67 0x6F 0x6F - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x52 - 0x61 0x6D 0x75 0x20 0x6D 0x6F 0x76 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x48 0x6F 0x6C - 0x6C 0x79 0x77 0x6F 0x6F 0x64 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x68 0x65 0x20 - 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 0x93 - 0x44 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x53 - 0x74 0x61 0x72 0x73 0x2E 0x94 0x20 0x0D - 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 0x52 - 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x4E 0x6F - 0x69 0x73 0x79 0x20 0x54 0x65 0x6E 0x61 - 0x6E 0x74 0x3B 0x20 0x43 0x61 0x72 0x20 - 0x53 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E - 0x3B 0x20 0x53 0x6B 0x79 0x20 0x44 0x69 - 0x76 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 4880 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1E= 0x0001521f - - -CHUNK('HTOP', _help_48544F50_1E, "") -SUBFILE -#line 4888 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1E, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_7=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001537a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001537b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001537c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001537d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC9 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xEE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF0 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x12 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA3 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xEE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF0 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xF9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xFB 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0x12 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4E, 0x0) - BYTE - 0x03 0x03 0x52 0x41 0x4E 0x44 0x4F 0x4C - 0x50 0x48 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x52 0x61 0x6E 0x64 0x6F 0x6C 0x70 0x68 - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x34 0x37 0x20 0x79 0x65 0x61 - 0x72 0x73 0x20 0x61 0x67 0x6F 0x20 0x69 - 0x6E 0x20 0x42 0x72 0x69 0x73 0x74 0x6F - 0x6C 0x2C 0x20 0x45 0x6E 0x67 0x6C 0x61 - 0x6E 0x64 0x2E 0x20 0x20 0x46 0x72 0x6F - 0x6D 0x20 0x61 0x20 0x79 0x6F 0x75 0x6E - 0x67 0x20 0x61 0x67 0x65 0x2C 0x20 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x66 0x61 - 0x73 0x63 0x69 0x6E 0x61 0x74 0x65 0x64 - 0x20 0x62 0x79 0x20 0x74 0x68 0x65 0x20 - 0x77 0x65 0x61 0x74 0x68 0x65 0x72 0x2C - 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 0x64 - 0x65 0x63 0x69 0x64 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x70 0x75 0x72 0x73 0x75 0x65 - 0x20 0x61 0x20 0x63 0x61 0x72 0x65 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x6D 0x65 0x74 - 0x65 0x6F 0x72 0x6F 0x6C 0x6F 0x67 0x79 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x62 0x65 - 0x63 0x61 0x6D 0x65 0x20 0x61 0x20 0x77 - 0x65 0x61 0x74 0x68 0x65 0x72 0x20 0x6D - 0x61 0x6E 0x2E 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x4D 0x72 0x2E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x46 0x61 0x74 0x68 0x65 0x72 - 0x3B 0x20 0x42 0x6F 0x64 0x79 0x67 0x75 - 0x61 0x72 0x64 0x3B 0x20 0x4C 0x69 0x66 - 0x65 0x20 0x49 0x6E 0x73 0x75 0x72 0x61 - 0x6E 0x63 0x65 0x20 0x53 0x61 0x6C 0x65 - 0x73 0x6D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 5027 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_1F= 0x00015220 - - -CHUNK('HTOP', _help_48544F50_1F, "") -SUBFILE -#line 5035 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_1F, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_19=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1E=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001537e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001537f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015380 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015381 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_19=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x37 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xFD 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x08 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x15 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x25 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x37 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xFA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0A 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x15 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x17 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x25 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x27 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x37 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_19=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_19, 0x0) - BYTE - 0x03 0x03 0x52 0x4F 0x58 0x41 0x4E 0x4E - 0x45 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x69 - 0x73 0x20 0x32 0x32 0x20 0x61 0x6E 0x64 - 0x20 0x67 0x72 0x65 0x77 0x20 0x75 0x70 - 0x20 0x69 0x6E 0x20 0x42 0x65 0x69 0x6A - 0x69 0x6E 0x67 0x2C 0x20 0x43 0x68 0x69 - 0x6E 0x61 0x2E 0x20 0x20 0x48 0x65 0x72 - 0x20 0x6D 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 0x20 - 0x52 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 - 0x68 0x61 0x64 0x20 0x6D 0x6F 0x72 0x65 - 0x20 0x79 0x61 0x6E 0x67 0x20 0x74 0x68 - 0x61 0x6E 0x20 0x79 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x66 0x65 0x64 0x20 0x68 - 0x65 0x72 0x20 0x63 0x75 0x63 0x75 0x6D - 0x62 0x65 0x72 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x72 0x75 0x69 0x74 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x72 0x72 0x65 0x63 - 0x74 0x20 0x74 0x68 0x69 0x73 0x20 0x69 - 0x6D 0x62 0x61 0x6C 0x61 0x6E 0x63 0x65 - 0x2E 0x20 0x20 0x49 0x74 0x20 0x64 0x69 - 0x64 0x6E 0x92 0x74 0x20 0x77 0x6F 0x72 - 0x6B 0x2E 0x20 0x52 0x6F 0x78 0x61 0x6E - 0x6E 0x65 0x20 0x66 0x69 0x6E 0x69 0x73 - 0x68 0x65 0x64 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x20 0x61 0x6E 0x64 0x20 0x62 - 0x65 0x63 0x61 0x6D 0x65 0x20 0x61 0x20 - 0x73 0x65 0x6C 0x66 0x2D 0x64 0x65 0x66 - 0x65 0x6E 0x73 0x65 0x20 0x65 0x78 0x70 - 0x65 0x72 0x74 0x2E 0x20 0x0D 0x0A 0x44 - 0x72 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C - 0x65 0x73 0x0D 0x0A 0x48 0x61 0x69 0x72 - 0x64 0x72 0x65 0x73 0x73 0x65 0x72 0x3B - 0x20 0x55 0x6E 0x64 0x65 0x72 0x63 0x6F - 0x76 0x65 0x72 0x20 0x43 0x6F 0x70 0x3B - 0x20 0x43 0x6F 0x63 0x6B 0x61 0x74 0x6F - 0x6F 0x20 0x57 0x61 0x74 0x63 0x68 0x65 - 0x72 -ENDCHUNK - - -ENDCHUNK -#line 5177 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_20= 0x00015221 - - -CHUNK('HTOP', _help_48544F50_20, "") -SUBFILE -#line 5185 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_20, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_76=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_2=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015382 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015383 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015384 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015385 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_76=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x94 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x08 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0A 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x14 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x16 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x33 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x3E 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xFD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x30 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x40 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x61 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x83 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x94 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xFD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x30 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x40 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x61 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x83 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0A 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x16 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_76=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_76, 0x0) - BYTE - 0x03 0x03 0x53 0x41 0x4C 0x56 0x41 0x44 - 0x4F 0x52 0x0D 0x0A 0x42 0x61 0x63 0x6B - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A - 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x31 0x34 0x20 0x79 0x65 0x61 - 0x72 0x73 0x20 0x61 0x67 0x6F 0x20 0x69 - 0x6E 0x20 0x4D 0x61 0x64 0x72 0x69 0x64 - 0x2E 0x20 0x48 0x65 0x20 0x68 0x61 0x73 - 0x20 0x73 0x70 0x65 0x6E 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x66 0x69 0x76 0x65 0x20 0x79 0x65 0x61 - 0x72 0x73 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x61 0x20 0x76 0x65 - 0x72 0x79 0x20 0x63 0x6F 0x6F 0x6C 0x20 - 0x74 0x65 0x65 0x6E 0x61 0x67 0x65 0x72 - 0x2E 0x20 0x48 0x65 0x20 0x69 0x73 0x20 - 0x73 0x65 0x72 0x69 0x6F 0x75 0x73 0x6C - 0x79 0x20 0x67 0x6F 0x6F 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x20 - 0x63 0x6F 0x6D 0x70 0x75 0x74 0x65 0x72 - 0x20 0x67 0x61 0x6D 0x65 0x73 0x2C 0x20 - 0x68 0x65 0x20 0x68 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x74 0x65 0x73 - 0x74 0x20 0x68 0x61 0x69 0x72 0x63 0x75 - 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x67 - 0x69 0x72 0x6C 0x73 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x73 0x70 0x65 0x63 0x69 0x61 0x6C 0x2E - 0x20 0x42 0x75 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x64 0x6F 0x6E 0x92 0x74 0x20 - 0x6B 0x6E 0x6F 0x77 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x73 0x70 - 0x65 0x63 0x69 0x61 0x6C 0x20 0x53 0x61 - 0x6C 0x76 0x61 0x64 0x6F 0x72 0x20 0x69 - 0x73 0x2E 0x20 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x5A 0x6F - 0x72 0x72 0x6F 0x3B 0x20 0x4D 0x65 0x6D - 0x62 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x4B 0x69 0x64 0x73 0x27 - 0x20 0x4D 0x79 0x73 0x74 0x65 0x72 0x79 - 0x20 0x43 0x6C 0x75 0x62 0x3B 0x20 0x50 - 0x72 0x65 0x68 0x69 0x73 0x74 0x6F 0x72 - 0x69 0x63 0x20 0x42 0x6F 0x79 -ENDCHUNK - - -ENDCHUNK -#line 5340 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_21= 0x00015222 - - -CHUNK('HTOP', _help_48544F50_21, "") -SUBFILE -#line 5348 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_21, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_56=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_13=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015386 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015387 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015388 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015389 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_56=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0C 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x20 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x2B 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAD 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xB9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0x0C 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x0E 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x20 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x22 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0x2B 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_56=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_56, 0x0) - BYTE - 0x03 0x03 0x53 0x45 0x42 0x41 0x53 0x54 - 0x49 0x41 0x4E 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x69 0x73 0x20 0x31 0x35 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x6F 0x76 - 0x65 0x73 0x20 0x62 0x61 0x73 0x65 0x62 - 0x61 0x6C 0x6C 0x20 0x6D 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x61 0x6E 0x20 0x61 0x6E - 0x79 0x74 0x68 0x69 0x6E 0x67 0x2E 0x20 - 0x4D 0x6F 0x73 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x74 0x69 0x6D 0x65 - 0x20 0x68 0x65 0x20 0x70 0x6C 0x61 0x79 - 0x73 0x20 0x73 0x61 0x6E 0x64 0x2D 0x6C - 0x6F 0x74 0x20 0x67 0x61 0x6D 0x65 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x66 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x73 0x63 0x68 0x6F 0x6F - 0x6C 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 - 0x65 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x20 0x6F 0x66 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x61 0x20 0x70 - 0x72 0x6F 0x66 0x65 0x73 0x73 0x69 0x6F - 0x6E 0x61 0x6C 0x20 0x62 0x61 0x73 0x65 - 0x62 0x61 0x6C 0x6C 0x20 0x70 0x6C 0x61 - 0x79 0x65 0x72 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x66 0x65 0x77 0x20 0x79 0x65 0x61 - 0x72 0x73 0x2E 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x61 0x6E - 0x20 0x41 0x6C 0x69 0x65 0x6E 0x3B 0x20 - 0x50 0x69 0x7A 0x7A 0x61 0x20 0x44 0x65 - 0x6C 0x69 0x76 0x65 0x72 0x79 0x20 0x42 - 0x6F 0x79 0x3B 0x20 0x42 0x6F 0x79 0x20 - 0x53 0x63 0x6F 0x75 0x74 -ENDCHUNK - - -ENDCHUNK -#line 5492 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_22= 0x00015223 - - -CHUNK('HTOP', _help_48544F50_22, "") -SUBFILE -#line 5500 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_22, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BE=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_4=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_BE, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001538e - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001538f - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015390 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015391 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BE=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x22 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x98 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD6 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xA5 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x0F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x16 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD6 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x0F 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x16 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x9A 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA7 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xB3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB5 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xC3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC5 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xD6 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA7 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BE=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BE, 0x0) - BYTE - 0x03 0x03 0x53 0x4C 0x41 0x4D 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x53 0x6C 0x61 0x6D - 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 0x75 - 0x72 0x6E 0x65 0x64 0x20 0x31 0x38 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x61 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x63 0x6F 0x75 0x70 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x47 0x65 0x72 0x6D - 0x61 0x6E 0x2D 0x6D 0x61 0x64 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x6B - 0x69 0x64 0x20 0x68 0x65 0x20 0x61 0x74 - 0x74 0x65 0x6E 0x64 0x65 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x72 0x74 0x73 0x20 0x61 - 0x63 0x61 0x64 0x65 0x6D 0x79 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x72 0x65 0x63 0x65 - 0x6E 0x74 0x6C 0x79 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x73 0x70 0x6F 0x74 - 0x74 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x74 0x61 0x6C 0x65 0x6E 0x74 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x20 0x61 0x74 - 0x20 0x61 0x20 0x66 0x61 0x73 0x74 0x2D - 0x66 0x6F 0x6F 0x64 0x20 0x72 0x65 0x73 - 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 0x20 - 0x69 0x6E 0x20 0x42 0x65 0x72 0x6C 0x69 - 0x6E 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x64 0x72 0x65 0x77 - 0x20 0x68 0x75 0x67 0x65 0x20 0x63 0x72 - 0x6F 0x77 0x64 0x73 0x20 0x6F 0x66 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x20 0x61 - 0x73 0x20 0x68 0x65 0x20 0x66 0x6C 0x69 - 0x70 0x70 0x65 0x64 0x20 0x74 0x68 0x65 - 0x20 0x62 0x75 0x72 0x67 0x65 0x72 0x73 - 0x20 0x69 0x6E 0x20 0x66 0x61 0x6E 0x63 - 0x79 0x20 0x74 0x72 0x69 0x70 0x6C 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x71 0x75 0x61 - 0x64 0x72 0x75 0x70 0x6C 0x65 0x20 0x66 - 0x6C 0x69 0x70 0x73 0x2E 0x20 0x0D 0x0A - 0x53 0x6F 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x73 0x20 0x68 0x65 0x27 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x69 0x6E 0x20 - 0x61 0x72 0x65 0x20 0x93 0x52 0x75 0x6E - 0x2C 0x20 0x42 0x75 0x72 0x67 0x65 0x72 - 0x6D 0x61 0x6E 0x2C 0x20 0x52 0x75 0x6E - 0x94 0x20 0x61 0x6E 0x64 0x20 0x93 0x48 - 0x69 0x67 0x68 0x20 0x53 0x63 0x68 0x6F - 0x6F 0x6C 0x20 0x46 0x6C 0x69 0x70 0x70 - 0x69 0x6E 0x92 0x20 0x46 0x6F 0x6F 0x6C - 0x2E 0x94 0x0D 0x0A 0x44 0x72 0x65 0x61 - 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D - 0x0A 0x45 0x78 0x74 0x65 0x72 0x6D 0x69 - 0x6E 0x61 0x74 0x6F 0x72 0x3B 0x20 0x42 - 0x75 0x72 0x67 0x65 0x72 0x20 0x46 0x6C - 0x69 0x70 0x70 0x65 0x72 0x3B 0x20 0x43 - 0x72 0x6F 0x63 0x6F 0x64 0x69 0x6C 0x65 - 0x20 0x54 0x72 0x61 0x69 0x6E 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 5665 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_23= 0x00015224 - - -CHUNK('HTOP', _help_48544F50_23, "") -SUBFILE -#line 5673 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_23, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BA=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_24=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_BA, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015392 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015393 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015394 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015395 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BA=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xCA 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xD5 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD7 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE3 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE5 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xBE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD7 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xE3 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE5 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xED 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xF9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x09 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x15 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xD7 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BA=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BA, 0x0) - BYTE - 0x03 0x03 0x54 0x49 0x4D 0x4F 0x54 0x48 - 0x59 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x0D 0x0A 0x54 - 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 0x69 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x41 - 0x74 0x68 0x65 0x6E 0x73 0x2C 0x20 0x47 - 0x72 0x65 0x65 0x63 0x65 0x2E 0x20 0x48 - 0x69 0x73 0x20 0x66 0x61 0x6D 0x69 0x6C - 0x79 0x20 0x6F 0x77 0x6E 0x73 0x20 0x6D - 0x69 0x6C 0x6C 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6D 0x61 0x6B 0x65 0x20 0x6D - 0x61 0x74 0x65 0x72 0x69 0x61 0x6C 0x20 - 0x66 0x6F 0x72 0x20 0x63 0x6C 0x6F 0x74 - 0x68 0x65 0x73 0x2E 0x20 0x20 0x54 0x69 - 0x6D 0x6F 0x74 0x68 0x79 0x20 0x6D 0x61 - 0x6E 0x61 0x67 0x65 0x73 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x69 0x6C 0x6C 0x73 0x2E 0x20 - 0x20 0x47 0x72 0x6F 0x77 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 0x41 - 0x74 0x68 0x65 0x6E 0x73 0x2C 0x20 0x54 - 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 0x73 - 0x61 0x77 0x20 0x6D 0x61 0x6E 0x79 0x20 - 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 0x73 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 0x61 - 0x72 0x2D 0x61 0x77 0x61 0x79 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x4B 0x61 0x6E 0x73 0x61 - 0x73 0x2C 0x20 0x4C 0x6F 0x73 0x20 0x41 - 0x6E 0x67 0x65 0x6C 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x41 0x72 0x6B 0x61 - 0x6E 0x73 0x61 0x73 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x6C 0x69 0x6B 0x65 0x64 0x20 - 0x74 0x68 0x65 0x69 0x72 0x20 0x62 0x72 - 0x69 0x67 0x68 0x74 0x20 0x63 0x6C 0x6F - 0x74 0x68 0x65 0x73 0x20 0x62 0x75 0x74 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x27 - 0x74 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x79 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x69 0x6E 0x20 - 0x41 0x74 0x68 0x65 0x6E 0x73 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x64 0x65 - 0x63 0x69 0x64 0x65 0x64 0x20 0x74 0x6F - 0x20 0x63 0x72 0x65 0x61 0x74 0x65 0x20 - 0x68 0x69 0x73 0x20 0x6F 0x77 0x6E 0x20 - 0x66 0x61 0x62 0x72 0x69 0x63 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x61 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6D 0x20 0x74 0x61 - 0x69 0x6C 0x6F 0x72 0x65 0x64 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x73 0x75 0x69 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x6D 0x61 0x74 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 0x73 - 0x20 0x77 0x6F 0x72 0x65 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x61 0x20 0x63 0x68 0x69 0x6C - 0x64 0x2E 0x0D 0x0A 0x44 0x72 0x65 0x61 - 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D - 0x0A 0x53 0x70 0x6F 0x6F 0x6B 0x20 0x53 - 0x6C 0x65 0x75 0x74 0x68 0x3B 0x20 0x52 - 0x65 0x70 0x6F 0x72 0x74 0x65 0x72 0x3B - 0x20 0x4E 0x61 0x74 0x75 0x72 0x61 0x6C - 0x69 0x73 0x74 -ENDCHUNK - - -ENDCHUNK -#line 5839 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_24= 0x00015225 - - -CHUNK('HTOP', _help_48544F50_24, "") -SUBFILE -#line 5847 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_24, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_15=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_19=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x00015396 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x00015397 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x00015398 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x00015399 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_15=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x1E 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xED 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x15 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x17 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB8 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xC3 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xAE 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE1 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xED 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xAA 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xAE 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC5 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xD6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xE1 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE3 0x00 0x00 0x40 - 0x04 0x00 0x00 0x00 0xED 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x0B 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x17 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_15=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_15, 0x0) - BYTE - 0x03 0x03 0x56 0x41 0x4C 0x45 0x4E 0x54 - 0x49 0x4E 0x45 0x0D 0x0A 0x42 0x61 0x63 - 0x6B 0x67 0x72 0x6F 0x75 0x6E 0x64 0x0D - 0x0A 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 - 0x6E 0x65 0x20 0x77 0x61 0x73 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x69 0x6E 0x20 0x4D - 0x61 0x72 0x73 0x65 0x69 0x6C 0x6C 0x65 - 0x73 0x2C 0x20 0x46 0x72 0x61 0x6E 0x63 - 0x65 0x20 0x73 0x6F 0x6D 0x65 0x20 0x33 - 0x30 0x20 0x79 0x65 0x61 0x72 0x73 0x20 - 0x61 0x67 0x6F 0x2E 0x20 0x48 0x65 0x20 - 0x6C 0x65 0x66 0x74 0x20 0x4D 0x61 0x72 - 0x73 0x65 0x69 0x6C 0x6C 0x65 0x73 0x20 - 0x6F 0x6E 0x20 0x68 0x69 0x73 0x20 0x32 - 0x30 0x74 0x68 0x20 0x62 0x69 0x72 0x74 - 0x68 0x64 0x61 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x43 0x61 0x6E 0x6E 0x65 0x73 - 0x2C 0x20 0x46 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x68 0x6F 0x70 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x69 0x73 0x20 - 0x62 0x69 0x67 0x20 0x66 0x69 0x6C 0x6D - 0x20 0x64 0x65 0x62 0x75 0x74 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x41 - 0x6E 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 - 0x4E 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 - 0x3B 0x20 0x44 0x65 0x74 0x65 0x63 0x74 - 0x69 0x76 0x65 0x3B 0x20 0x56 0x6F 0x6F - 0x64 0x6F 0x6F 0x20 0x4D 0x61 0x6E -ENDCHUNK - - -ENDCHUNK -#line 5979 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_25= 0x00015226 - - -CHUNK('HTOP', _help_48544F50_25, "") -SUBFILE -#line 5987 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_25, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_25, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_1C=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_B0, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001539a - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001539b - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x0001539c - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x0001539d -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xE6 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xE9 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xF5 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xEF 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xF1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x06 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0x08 0x02 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x0F 0x02 0x00 0x04 - 0x00 0x00 0x00 0x00 0xE9 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xF5 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xE8 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xEF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xF1 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0x06 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x08 0x02 0x00 0x40 - 0x04 0x00 0x00 0x00 0x0F 0x02 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B0, 0x0) - BYTE - 0x03 0x03 0x56 0x45 0x4E 0x49 0x45 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x56 0x65 0x6E - 0x69 0x65 0x20 0x77 0x61 0x73 0x20 0x62 - 0x6F 0x72 0x6E 0x20 0x69 0x6E 0x20 0x4E - 0x61 0x70 0x6C 0x65 0x73 0x2C 0x20 0x49 - 0x74 0x61 0x6C 0x79 0x2E 0x20 0x20 0x41 - 0x73 0x20 0x61 0x20 0x63 0x68 0x69 0x6C - 0x64 0x20 0x68 0x65 0x20 0x77 0x61 0x74 - 0x63 0x68 0x65 0x64 0x20 0x63 0x6F 0x75 - 0x6E 0x74 0x6C 0x65 0x73 0x73 0x20 0x44 - 0x72 0x61 0x63 0x75 0x6C 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x56 0x65 0x6E - 0x69 0x65 0x20 0x77 0x61 0x73 0x20 0x69 - 0x6E 0x20 0x68 0x69 0x73 0x20 0x65 0x61 - 0x72 0x6C 0x79 0x20 0x32 0x30 0x73 0x2C - 0x20 0x68 0x65 0x20 0x64 0x65 0x63 0x69 - 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x68 0x69 0x73 0x20 - 0x66 0x72 0x6F 0x6E 0x74 0x20 0x74 0x65 - 0x65 0x74 0x68 0x20 0x63 0x61 0x70 0x70 - 0x65 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x76 0x61 0x6D 0x70 0x69 0x72 0x65 0x20 - 0x66 0x61 0x6E 0x67 0x73 0x2E 0x20 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x66 0x61 0x6E 0x63 0x69 - 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x61 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x6F 0x70 0x65 0x72 0x61 - 0x20 0x73 0x69 0x6E 0x67 0x65 0x72 0x2E - 0x20 0x20 0x55 0x6E 0x66 0x6F 0x72 0x74 - 0x75 0x6E 0x61 0x74 0x65 0x6C 0x79 0x2C - 0x20 0x56 0x69 0x6E 0x6E 0x69 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x6C - 0x79 0x20 0x56 0x65 0x6E 0x69 0x65 0x2C - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 - 0x68 0x65 0x20 0x73 0x69 0x6E 0x67 0x73 - 0x20 0x77 0x65 0x6C 0x6C 0x2E 0x20 0x20 - 0x49 0x6E 0x20 0x66 0x61 0x63 0x74 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x73 0x69 0x6E 0x67 - 0x73 0x2C 0x20 0x64 0x6F 0x67 0x73 0x20 - 0x68 0x6F 0x77 0x6C 0x20 0x69 0x6E 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x73 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x73 0x68 0x72 0x69 0x65 - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x72 0x75 - 0x6E 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x20 0x65 0x61 - 0x72 0x20 0x70 0x6C 0x75 0x67 0x73 0x2E - 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 - 0x68 0x61 0x73 0x20 0x61 0x20 0x76 0x69 - 0x73 0x69 0x6F 0x6E 0x20 0x6F 0x66 0x20 - 0x73 0x6F 0x6D 0x65 0x64 0x61 0x79 0x20 - 0x64 0x6F 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x6D 0x75 0x73 0x69 0x63 0x61 0x6C 0x20 - 0x76 0x65 0x72 0x73 0x69 0x6F 0x6E 0x20 - 0x6F 0x66 0x20 0x44 0x72 0x61 0x63 0x75 - 0x6C 0x61 0x2E 0x0D 0x0A 0x44 0x72 0x65 - 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 0x73 - 0x0D 0x0A 0x44 0x72 0x61 0x63 0x75 0x6C - 0x61 0x3B 0x20 0x53 0x74 0x72 0x65 0x65 - 0x74 0x20 0x46 0x61 0x69 0x72 0x20 0x50 - 0x65 0x72 0x66 0x6F 0x72 0x6D 0x65 0x72 - 0x3B 0x20 0x53 0x74 0x75 0x64 0x65 0x6E - 0x74 -ENDCHUNK - - -ENDCHUNK -#line 6158 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_26= 0x00015227 - - -CHUNK('HTOP', _help_48544F50_26, "") -SUBFILE -#line 6166 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_26, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_11=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x0001539e - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000153a0 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000153a1 - FREE - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x0001539f -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x13 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA4 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xAF 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xE3 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBF 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC1 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xCA 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xCC 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xD2 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xDD 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xE3 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB1 0x01 0x00 0x40 - 0x05 0x00 0x00 0x00 0xBF 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC1 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0xCA 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xCC 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xD2 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C, 0x0) - BYTE - 0x03 0x03 0x57 0x41 0x4E 0x44 0x41 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x57 0x61 0x6E - 0x64 0x61 0x20 0x69 0x73 0x20 0x61 0x20 - 0x66 0x65 0x6D 0x61 0x6C 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x20 0x69 0x6E 0x76 - 0x65 0x6E 0x74 0x65 0x64 0x20 0x62 0x79 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x67 0x72 0x65 0x65 - 0x6E 0x20 0x67 0x65 0x6E 0x69 0x75 0x73 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x73 0x68 0x65 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x68 0x75 - 0x6D 0x61 0x6E 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x64 0x6F - 0x20 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 - 0x68 0x75 0x6D 0x61 0x6E 0x73 0x20 0x63 - 0x61 0x6E 0x92 0x74 0x20 0x64 0x6F 0x2C - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x68 0x69 0x67 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 0x20 - 0x61 0x6C 0x6C 0x20 0x73 0x71 0x75 0x61 - 0x73 0x68 0x65 0x64 0x20 0x75 0x70 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x68 0x61 0x73 0x20 0x70 - 0x6F 0x77 0x65 0x72 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x57 0x69 0x6C 0x6C 0x79 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x6B 0x6E 0x6F 0x77 0x20 0x73 0x68 - 0x65 0x20 0x68 0x61 0x73 0x2E 0x20 0x0D - 0x0A 0x57 0x61 0x6E 0x64 0x61 0x20 0x69 - 0x73 0x20 0x67 0x72 0x61 0x74 0x65 0x66 - 0x75 0x6C 0x20 0x74 0x6F 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x66 0x6F 0x72 0x20 - 0x70 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x73 0x68 0x65 0x27 0x73 0x20 - 0x72 0x65 0x61 0x64 0x79 0x20 0x74 0x6F - 0x20 0x73 0x74 0x72 0x69 0x6B 0x65 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x6E 0x20 0x68 - 0x65 0x72 0x20 0x6F 0x77 0x6E 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x61 0x6E 0x20 0x61 0x70 - 0x61 0x72 0x74 0x6D 0x65 0x6E 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x74 0x61 0x72 - 0x74 0x20 0x68 0x65 0x72 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x63 0x61 0x72 - 0x65 0x65 0x72 0x2E 0x0D 0x0A 0x44 0x72 - 0x65 0x61 0x6D 0x20 0x52 0x6F 0x6C 0x65 - 0x73 0x0D 0x0A 0x4D 0x65 0x63 0x68 0x61 - 0x6E 0x69 0x63 0x61 0x6C 0x20 0x54 0x6F - 0x79 0x3B 0x20 0x52 0x6F 0x62 0x6F 0x74 - 0x20 0x43 0x6F 0x70 0x3B 0x20 0x44 0x61 - 0x6E 0x63 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 6330 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_27= 0x00015228 - - -CHUNK('HTOP', _help_48544F50_27, "") -SUBFILE -#line 6338 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_27, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_27, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_25=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000153a2 - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000153a3 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000153a4 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000153a5 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x21 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x76 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x05 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x07 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x11 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x78 0x01 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x83 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x63 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0x92 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xB1 0x01 0x00 0x04 - 0x00 0x00 0x00 0x00 0x5F 0x01 0x00 0x40 - 0x01 0x00 0x00 0x00 0x63 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x85 0x01 0x00 0x40 - 0x02 0x00 0x00 0x00 0x92 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x94 0x01 0x00 0x40 - 0x03 0x00 0x00 0x00 0xA1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0xA3 0x01 0x00 0x40 - 0x04 0x00 0x00 0x00 0xB1 0x01 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x07 0x00 0x00 0x80 - 0xBD 0x00 0x00 0x00 0x13 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x85 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2B, 0x0) - BYTE - 0x03 0x03 0x57 0x49 0x4C 0x4C 0x59 0x0D - 0x0A 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F - 0x75 0x6E 0x64 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x79 0x20 0x69 0x73 0x20 0x61 0x20 - 0x67 0x65 0x6E 0x69 0x75 0x73 0x2C 0x20 - 0x6E 0x6F 0x20 0x71 0x75 0x65 0x73 0x74 - 0x69 0x6F 0x6E 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x69 0x74 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x65 0x76 0x65 0x72 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x20 0x61 0x62 0x6F - 0x75 0x74 0x20 0x68 0x6F 0x77 0x20 0x73 - 0x74 0x72 0x61 0x6E 0x67 0x65 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x2E - 0x20 0x20 0x48 0x65 0x20 0x68 0x61 0x73 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x69 0x6D 0x70 0x6F 0x72 0x74 - 0x61 0x6E 0x74 0x20 0x74 0x68 0x69 0x6E - 0x67 0x73 0x2C 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x69 0x66 0x20 0x77 0x68 0x69 0x74 - 0x65 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 - 0x20 0x61 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x2C 0x20 0x74 0x68 0x65 0x6E 0x20 0x69 - 0x73 0x20 0x62 0x6C 0x61 0x63 0x6B 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6C 0x6F 0x72 0x73 0x20 0x70 - 0x75 0x74 0x20 0x74 0x6F 0x67 0x65 0x74 - 0x68 0x65 0x72 0x3F 0x20 0x20 0x48 0x65 - 0x20 0x65 0x76 0x65 0x6E 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x73 0x6C 0x65 0x65 - 0x70 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x79 0x20 - 0x62 0x72 0x61 0x69 0x6E 0x2D 0x63 0x79 - 0x63 0x6C 0x65 0x73 0x2E 0x20 0x20 0x55 - 0x6E 0x66 0x6F 0x72 0x74 0x75 0x6E 0x61 - 0x74 0x65 0x6C 0x79 0x2C 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x69 0x73 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x69 0x6E 0x67 0x20 - 0x6D 0x61 0x64 0x65 0x20 0x68 0x69 0x73 - 0x20 0x6E 0x6F 0x73 0x65 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x68 0x61 0x72 0x70 0x2E 0x20 - 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D 0x20 - 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A 0x4D - 0x61 0x64 0x20 0x53 0x63 0x69 0x65 0x6E - 0x74 0x69 0x73 0x74 0x3B 0x20 0x50 0x61 - 0x72 0x6B 0x69 0x6E 0x67 0x20 0x56 0x61 - 0x6C 0x65 0x74 0x3B 0x20 0x4E 0x61 0x74 - 0x69 0x76 0x65 0x20 0x53 0x74 0x75 0x64 - 0x65 0x6E 0x74 -ENDCHUNK - - -ENDCHUNK -#line 6498 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_28= 0x0001522d - - -CHUNK('HTOP', _help_48544F50_28, "") -SUBFILE -#line 6506 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_28, "") - BO OSK LONG 0x00015106 0x0001522d 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_24=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x42 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_24=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0A 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_24=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_24, 0x0) - BYTE - 0x03 0x03 0x20 0x7E 0x31 0x30 0x30 0x20 - 0x2F 0x20 0x34 0x30 -ENDCHUNK - - -ENDCHUNK -#line 6567 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_29= 0x00015229 - - -CHUNK('HTOP', _help_48544F50_29, "") -SUBFILE -#line 6575 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_29, "") - BO OSK LONG 0x00015106 0x00015106 0x0 0x0001522e 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_41475041_22=_help_cno -CHUNK('AGPA', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) -AG(4) - ITEM LONG 0x40000001 - VAR BYTE 2 LONG 0x000153a7 - ITEM LONG 0x40000001 - VAR BYTE 3 LONG 0x000153a8 - ITEM LONG 0x40000001 - VAR BYTE 4 LONG 0x000153a9 - FREE - ITEM LONG 0x40000001 - VAR BYTE 1 LONG 0x000153a6 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x20 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9C 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDA 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x04 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x06 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0x10 0x00 0x00 0x03 - 0x0B 0x00 0x00 0xFD 0x12 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xA9 0x00 0x00 0x03 - 0x0A 0x00 0x00 0xFD 0xB4 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xA6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xBD 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xC6 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x04 - 0x0D 0x00 0x00 0xFE 0xDA 0x00 0x00 0x04 - 0x00 0x00 0x00 0x00 0x9D 0x00 0x00 0x40 - 0x05 0x00 0x00 0x00 0xA6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xB6 0x00 0x00 0x40 - 0x01 0x00 0x00 0x00 0xBD 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xBF 0x00 0x00 0x40 - 0x02 0x00 0x00 0x00 0xC6 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0xC8 0x00 0x00 0x40 - 0x03 0x00 0x00 0x00 0xDA 0x00 0x00 0x40 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x02 0x06 0x00 0x00 0x80 - 0xF7 0xFF 0x00 0x00 0x12 0x00 0x00 0x80 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB6 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1E, 0x0) - BYTE - 0x03 0x03 0x5A 0x41 0x43 0x4B 0x0D 0x0A - 0x42 0x61 0x63 0x6B 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x0D 0x0A 0x5A 0x61 0x63 0x6B - 0x20 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x72 0x61 - 0x69 0x73 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x4D 0x61 0x64 0x72 0x69 0x64 0x2C 0x20 - 0x53 0x70 0x61 0x69 0x6E 0x2E 0x20 0x4E - 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x6B 0x6E - 0x6F 0x77 0x73 0x20 0x68 0x69 0x73 0x20 - 0x72 0x65 0x61 0x6C 0x20 0x61 0x67 0x65 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x92 0x73 0x20 0x67 0x6F 0x74 0x74 0x61 - 0x20 0x62 0x65 0x20 0x61 0x74 0x20 0x6C - 0x65 0x61 0x73 0x74 0x20 0x34 0x30 0x2E - 0x20 0x48 0x65 0x20 0x63 0x6F 0x6D 0x65 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 - 0x20 0x66 0x61 0x6D 0x69 0x6C 0x79 0x20 - 0x6F 0x66 0x20 0x6F 0x75 0x74 0x73 0x74 - 0x61 0x6E 0x64 0x69 0x6E 0x67 0x20 0x6D - 0x61 0x74 0x61 0x64 0x6F 0x72 0x73 0x2E - 0x20 0x0D 0x0A 0x44 0x72 0x65 0x61 0x6D - 0x20 0x52 0x6F 0x6C 0x65 0x73 0x0D 0x0A - 0x50 0x68 0x61 0x6E 0x74 0x6F 0x6D 0x3B - 0x20 0x56 0x69 0x6C 0x6C 0x69 0x61 0x6E - 0x3B 0x20 0x43 0x61 0x6D 0x6F 0x75 0x66 - 0x6C 0x61 0x67 0x65 0x64 0x20 0x48 0x75 - 0x6E 0x74 0x65 0x72 -ENDCHUNK - - -ENDCHUNK -#line 6708 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2A= 0x00015302 - - -CHUNK('HTOP', _help_48544F50_2A, "") -SUBFILE -#line 6716 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2E, 0x0) - BYTE - 0x03 0x03 0x66 0x61 0x6E 0x63 0x79 0x20 - 0x64 0x61 0x6E 0x63 0x65 0x20 0x73 0x74 - 0x65 0x70 0x73 0x0D 0x0A 0x49 0x74 0x20 - 0x77 0x61 0x73 0x20 0x41 0x6C 0x65 0x78 - 0x61 0x6E 0x64 0x65 0x72 0x92 0x73 0x20 - 0x66 0x61 0x6E 0x63 0x79 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x73 0x74 0x65 0x70 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x67 - 0x6F 0x74 0x20 0x68 0x69 0x6D 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x62 0x75 - 0x73 0x69 0x6E 0x65 0x73 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x77 0x61 0x73 0x20 - 0x72 0x65 0x63 0x72 0x75 0x69 0x74 0x65 - 0x64 0x20 0x61 0x73 0x20 0x61 0x20 0x63 - 0x68 0x6F 0x72 0x65 0x6F 0x67 0x72 0x61 - 0x70 0x68 0x65 0x72 0x20 0x66 0x6F 0x72 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x76 - 0x69 0x64 0x65 0x6F 0x73 0x20 0x62 0x75 - 0x74 0x20 0x61 0x74 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x77 0x61 0x73 0x6E 0x92 - 0x74 0x20 0x63 0x6F 0x6E 0x73 0x69 0x64 - 0x65 0x72 0x65 0x64 0x20 0x67 0x6F 0x6F - 0x64 0x2D 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x6F 0x20 0x61 0x63 0x74 0x75 - 0x61 0x6C 0x6C 0x79 0x20 0x70 0x65 0x72 - 0x66 0x6F 0x72 0x6D 0x20 0x6F 0x6E 0x20 - 0x66 0x69 0x6C 0x6D 0x2E 0x20 0x20 0x44 - 0x75 0x72 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x66 0x69 0x6C 0x6D 0x69 0x6E - 0x67 0x20 0x6F 0x66 0x20 0x6F 0x6E 0x65 - 0x20 0x76 0x69 0x64 0x65 0x6F 0x2C 0x20 - 0x68 0x6F 0x77 0x65 0x76 0x65 0x72 0x2C - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x61 - 0x72 0x20 0x64 0x61 0x6E 0x63 0x65 0x72 - 0x20 0x63 0x61 0x75 0x67 0x68 0x74 0x20 - 0x6F 0x6E 0x20 0x66 0x69 0x72 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x65 0x72 0x73 0x6F - 0x6E 0x20 0x77 0x68 0x6F 0x20 0x6B 0x6E - 0x65 0x77 0x20 0x74 0x68 0x65 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x20 0x73 0x74 0x65 - 0x70 0x73 0x20 0x77 0x61 0x73 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x2E 0x0D 0x0A 0x41 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x64 - 0x65 0x6F 0x20 0x77 0x61 0x73 0x20 0x73 - 0x68 0x6F 0x77 0x6E 0x20 0x6F 0x6E 0x20 - 0x54 0x56 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x65 0x6C 0x65 0x76 0x69 0x73 0x69 - 0x6F 0x6E 0x20 0x73 0x74 0x61 0x74 0x69 - 0x6F 0x6E 0x20 0x77 0x61 0x73 0x20 0x66 - 0x6C 0x6F 0x6F 0x64 0x65 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x66 0x61 0x6E 0x20 - 0x6D 0x61 0x69 0x6C 0x20 0x66 0x6F 0x72 - 0x20 0x41 0x6C 0x65 0x78 0x61 0x6E 0x64 - 0x65 0x72 0x21 0x20 0x20 0x48 0x65 0x20 - 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 0x61 - 0x6E 0x20 0x69 0x6E 0x73 0x74 0x61 0x6E - 0x74 0x20 0x73 0x74 0x61 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x73 0x20 0x73 - 0x6F 0x6F 0x6E 0x20 0x6D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 6844 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2B= 0x00015303 - - -CHUNK('HTOP', _help_48544F50_2B, "") -SUBFILE -#line 6852 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x09 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xB1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4C, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x62 0x72 0x61 0x72 - 0x69 0x61 0x6E 0x0D 0x0A 0x41 0x6C 0x65 - 0x78 0x61 0x6E 0x64 0x65 0x72 0x20 0x77 - 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x69 0x62 0x72 0x61 0x72 0x69 - 0x61 0x6E 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x6C 0x61 0x72 0x67 0x65 0x2C 0x20 0x63 - 0x72 0x65 0x65 0x70 0x79 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x41 0x73 0x20 - 0x68 0x65 0x20 0x73 0x69 0x74 0x73 0x20 - 0x61 0x74 0x20 0x68 0x69 0x73 0x20 0x64 - 0x65 0x73 0x6B 0x2C 0x20 0x61 0x20 0x67 - 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x61 0x20 0x6D 0x75 0x6D 0x6D - 0x79 0x20 0x77 0x61 0x6C 0x6B 0x73 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x77 0x61 0x6C 0x6C 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x74 0x61 0x6E 0x64 - 0x73 0x20 0x62 0x65 0x73 0x69 0x64 0x65 - 0x20 0x68 0x69 0x6D 0x21 0x20 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x69 0x73 0x20 0x73 0x74 0x75 0x6E - 0x6E 0x65 0x64 0x20 0x61 0x73 0x20 0x68 - 0x65 0x20 0x6C 0x69 0x73 0x74 0x65 0x6E - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x92 0x73 - 0x20 0x77 0x61 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x6C 0x65 0x61 0x76 - 0x65 0x20 0x68 0x69 0x73 0x20 0x6A 0x6F - 0x62 0x20 0x61 0x73 0x20 0x61 0x20 0x6C - 0x69 0x62 0x72 0x61 0x72 0x69 0x61 0x6E - 0x20 0x6F 0x72 0x20 0x66 0x61 0x63 0x65 - 0x20 0x68 0x6F 0x72 0x72 0x69 0x62 0x6C - 0x65 0x20 0x64 0x69 0x73 0x61 0x73 0x74 - 0x65 0x72 0x2E 0x20 0x0D 0x0A 0x57 0x68 - 0x79 0x20 0x6D 0x75 0x73 0x74 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x6C 0x65 0x61 0x76 0x65 0x20 0x68 - 0x69 0x73 0x20 0x6A 0x6F 0x62 0x3F 0x20 - 0x20 0x49 0x73 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x78 0x63 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x6E 0x65 0x65 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x71 0x75 0x69 - 0x74 0x20 0x68 0x69 0x73 0x20 0x6A 0x6F - 0x62 0x20 0x61 0x6E 0x64 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x20 0x6C 0x69 0x76 0x69 0x6E 0x67 - 0x3F 0x20 0x20 0x57 0x68 0x79 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x4D 0x75 0x6D 0x6D 0x79 0x20 0x63 0x61 - 0x72 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 6971 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2C= 0x00015304 - - -CHUNK('HTOP', _help_48544F50_2C, "") -SUBFILE -#line 6979 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_26=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_26=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x09 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xD9 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDB 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 - 0x0F 0x00 0x00 0xFD 0x0B 0x00 0x00 0x03 - 0x00 0x00 0x00 0x00 0xDB 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x89 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_26=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_26, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x6F 0x64 0x20 0x43 - 0x72 0x69 0x74 0x69 0x63 0x0D 0x0A 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x61 0x20 0x66 0x6F - 0x6F 0x64 0x20 0x63 0x72 0x69 0x74 0x69 - 0x63 0x20 0x77 0x68 0x6F 0x20 0x77 0x61 - 0x6C 0x6B 0x73 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x72 - 0x65 0x73 0x74 0x61 0x75 0x72 0x61 0x6E - 0x74 0x20 0x74 0x6F 0x20 0x72 0x65 0x76 - 0x69 0x65 0x77 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x6F 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x68 0x69 0x73 0x20 0x64 0x61 0x69 - 0x6C 0x79 0x20 0x6E 0x65 0x77 0x73 0x70 - 0x61 0x70 0x65 0x72 0x20 0x63 0x6F 0x6C - 0x75 0x6D 0x6E 0x2E 0x20 0x20 0x4E 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x65 0x65 - 0x6D 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x77 0x61 - 0x6C 0x6B 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6E 0x74 - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x61 0x6B 0x65 0x73 0x20 0x61 0x20 0x73 - 0x65 0x61 0x74 0x2E 0x20 0x20 0x41 0x20 - 0x77 0x61 0x69 0x74 0x65 0x72 0x20 0x65 - 0x76 0x65 0x6E 0x74 0x75 0x61 0x6C 0x6C - 0x79 0x20 0x63 0x6F 0x6D 0x65 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x63 0x68 - 0x65 0x6E 0x20 0x74 0x6F 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x68 0x69 0x73 0x20 0x6F - 0x72 0x64 0x65 0x72 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x73 0x74 0x6F 0x70 0x73 0x20 - 0x69 0x6E 0x20 0x73 0x68 0x6F 0x63 0x6B - 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x73 0x65 0x65 0x73 0x20 0x41 0x6C - 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 0x2E - 0x20 0x20 0x41 0x6C 0x65 0x78 0x61 0x6E - 0x64 0x65 0x72 0x20 0x69 0x73 0x20 0x65 - 0x71 0x75 0x61 0x6C 0x6C 0x79 0x20 0x73 - 0x74 0x75 0x6E 0x6E 0x65 0x64 0x3B 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x69 0x74 - 0x65 0x72 0x20 0x6C 0x6F 0x6F 0x6B 0x73 - 0x20 0x65 0x78 0x61 0x63 0x74 0x6C 0x79 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x41 0x6C - 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 0x21 - 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x63 - 0x61 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x62 0x65 0x3F 0x20 0x20 0x57 0x68 0x6F - 0x20 0x69 0x73 0x20 0x74 0x68 0x69 0x73 - 0x20 0x6C 0x6F 0x6F 0x6B 0x2D 0x61 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x6F 0x6F 0x6B - 0x65 0x64 0x20 0x75 0x70 0x20 0x74 0x68 - 0x69 0x73 0x20 0x73 0x69 0x6E 0x69 0x73 - 0x74 0x65 0x72 0x20 0x70 0x6C 0x6F 0x74 - 0x3F 0x0D 0x0A 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 7105 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2D= 0x00015305 - - -CHUNK('HTOP', _help_48544F50_2D, "") -SUBFILE -#line 7113 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_29=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_29=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3F 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_29=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_29, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x41 0x6C 0x65 0x78 - 0x61 0x6E 0x64 0x65 0x72 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x6E 0x20 0x65 0x78 0x70 0x6C - 0x6F 0x72 0x65 0x72 0x20 0x73 0x65 0x61 - 0x72 0x63 0x68 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x63 0x61 0x74 - 0x20 0x77 0x68 0x69 0x63 0x68 0x2C 0x20 - 0x6C 0x65 0x67 0x65 0x6E 0x64 0x20 0x68 - 0x61 0x73 0x20 0x69 0x74 0x2C 0x20 0x63 - 0x61 0x6E 0x20 0x74 0x65 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x75 0x74 0x75 - 0x72 0x65 0x21 0x20 0x20 0x41 0x6C 0x65 - 0x78 0x61 0x6E 0x64 0x65 0x72 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x68 0x65 0x20 0x68 0x61 - 0x73 0x20 0x66 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x6C 0x6C - 0x61 0x67 0x65 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x74 0x20 0x77 0x61 0x73 0x20 0x6C 0x61 - 0x73 0x74 0x20 0x73 0x70 0x6F 0x74 0x74 - 0x65 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x68 0x69 0x73 0x20 0x72 0x69 0x76 0x61 - 0x6C 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x20 0x69 0x73 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x68 0x6F 0x74 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x61 0x69 0x6C 0x2E 0x20 0x0D 0x0A 0x44 - 0x6F 0x65 0x73 0x20 0x73 0x75 0x63 0x68 - 0x20 0x61 0x20 0x63 0x61 0x74 0x20 0x61 - 0x63 0x74 0x75 0x61 0x6C 0x6C 0x79 0x20 - 0x65 0x78 0x69 0x73 0x74 0x20 0x61 0x6E - 0x64 0x20 0x77 0x69 0x6C 0x6C 0x20 0x41 - 0x6C 0x65 0x78 0x61 0x6E 0x64 0x65 0x72 - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x69 0x74 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7216 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2E= 0x00015306 - - -CHUNK('HTOP', _help_48544F50_2E, "") -SUBFILE -#line 7224 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_23=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC8 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_23=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x05 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0xE1 0x01 0x00 0x03 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x37 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_23=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_23, 0x0) - BYTE - 0x03 0x03 0x74 0x65 0x6C 0x65 0x67 0x72 - 0x61 0x6D 0x0D 0x0A 0x4F 0x6B 0x61 0x79 - 0x2C 0x20 0x73 0x6F 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x72 0x6F 0x63 0x6B - 0x20 0x73 0x74 0x61 0x72 0x20 0x69 0x6E - 0x20 0x49 0x74 0x61 0x6C 0x79 0x2C 0x20 - 0x6F 0x72 0x20 0x62 0x65 0x74 0x74 0x65 - 0x72 0x20 0x79 0x65 0x74 0x2C 0x20 0x61 - 0x20 0x62 0x69 0x67 0x67 0x65 0x72 0x2D - 0x74 0x68 0x61 0x6E 0x2D 0x6C 0x69 0x66 - 0x65 0x20 0x73 0x74 0x61 0x72 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x61 0x6C 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 - 0x20 0x68 0x69 0x73 0x20 0x61 0x67 0x65 - 0x20 0x6D 0x69 0x67 0x68 0x74 0x20 0x62 - 0x65 0x20 0x61 0x20 0x70 0x72 0x6F 0x62 - 0x6C 0x65 0x6D 0x2C 0x20 0x74 0x68 0x6F - 0x75 0x67 0x68 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x2C 0x20 0x65 0x69 0x74 0x68 0x65 0x72 - 0x20 0x73 0x6C 0x6F 0x77 0x6C 0x79 0x20 - 0x6F 0x72 0x20 0x71 0x75 0x69 0x63 0x6B - 0x6C 0x79 0x2C 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x72 0x65 0x63 0x6F 0x72 0x64 0x69 0x6E - 0x67 0x20 0x73 0x74 0x75 0x64 0x69 0x6F - 0x73 0x20 0x61 0x6E 0x64 0x20 0x6C 0x69 - 0x73 0x74 0x65 0x6E 0x20 0x74 0x6F 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 0x69 - 0x6E 0x67 0x65 0x72 0x73 0x20 0x66 0x6F - 0x72 0x20 0x69 0x6E 0x73 0x70 0x69 0x72 - 0x61 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x20 0x68 0x65 0x20 0x73 0x68 0x72 0x75 - 0x6E 0x6B 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x76 0x65 0x72 0x79 0x20 - 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x61 0x6E - 0x64 0x20 0x63 0x72 0x61 0x77 0x6C 0x65 - 0x64 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x65 0x74 0x2E 0x20 0x20 0x4A 0x75 0x73 - 0x74 0x20 0x61 0x73 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x67 0x72 0x6F 0x77 - 0x69 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B - 0x2C 0x20 0x61 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x73 0x70 0x6F - 0x74 0x74 0x65 0x64 0x20 0x68 0x69 0x6D - 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 0x69 - 0x64 0x2C 0x20 0x93 0x57 0x65 0x20 0x67 - 0x6F 0x74 0x74 0x61 0x20 0x68 0x61 0x76 - 0x65 0x20 0x79 0x6F 0x75 0x20 0x64 0x6F - 0x20 0x74 0x68 0x61 0x74 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x21 0x94 0x20 -ENDCHUNK - - -ENDCHUNK -#line 7347 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_2F= 0x00015307 - - -CHUNK('HTOP', _help_48544F50_2F, "") -SUBFILE -#line 7355 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_2F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2F, 0x0) - BYTE - 0x03 0x03 0x4F 0x70 0x65 0x72 0x61 0x20 - 0x53 0x69 0x6E 0x67 0x65 0x72 0x0D 0x0A - 0x53 0x69 0x6E 0x63 0x65 0x20 0x6F 0x70 - 0x65 0x72 0x61 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x61 0x20 0x73 0x74 0x6F 0x72 - 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x69 0x6E 0x63 0x65 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x68 0x61 - 0x73 0x20 0x6C 0x6F 0x74 0x73 0x20 0x6F - 0x66 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x6F 0x6C 0x64 0x20 0x73 0x63 0x61 - 0x72 0x79 0x20 0x73 0x74 0x6F 0x72 0x69 - 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 0x65 - 0x6C 0x6C 0x2C 0x20 0x68 0x65 0x92 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x73 0x74 0x61 0x72 0x20 0x61 0x73 - 0x20 0x61 0x6E 0x20 0x6F 0x70 0x65 0x72 - 0x61 0x20 0x73 0x69 0x6E 0x67 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x67 0x72 - 0x61 0x76 0x65 0x79 0x61 0x72 0x64 0x2E - 0x20 0x20 0x48 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x6B 0x6E 0x65 0x65 0x6C - 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 - 0x61 0x20 0x67 0x72 0x61 0x76 0x65 0x73 - 0x74 0x6F 0x6E 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x63 0x69 0x65 0x6E 0x74 0x20 0x6F 0x70 - 0x65 0x72 0x61 0x73 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6C 0x6F 0x77 0x2C 0x20 0x63 - 0x72 0x65 0x65 0x70 0x79 0x20 0x76 0x6F - 0x69 0x63 0x65 0x20 0x61 0x73 0x20 0x6B - 0x69 0x64 0x73 0x20 0x77 0x61 0x6C 0x6B - 0x65 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x61 0x76 0x65 0x79 0x61 0x72 0x64 - 0x20 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 - 0x74 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 0x73 - 0x20 0x68 0x65 0x20 0x67 0x65 0x74 0x73 - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x2C 0x20 0x68 0x65 0x20 0x68 0x65 0x61 - 0x72 0x73 0x20 0x61 0x20 0x76 0x6F 0x69 - 0x63 0x65 0x20 0x73 0x69 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x73 0x6F - 0x6E 0x67 0x20 0x73 0x65 0x65 0x6D 0x73 - 0x20 0x74 0x6F 0x20 0x63 0x6F 0x6D 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x6E 0x65 0x61 0x72 0x62 0x79 0x20 0x67 - 0x72 0x61 0x76 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x73 0x69 0x6E 0x67 0x73 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x76 0x65 0x72 0x73 0x65 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x76 - 0x6F 0x69 0x63 0x65 0x20 0x73 0x69 0x6E - 0x67 0x73 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x77 0x69 0x74 0x68 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x76 0x65 - 0x72 0x73 0x65 0x2E 0x20 0x0D 0x0A 0x49 - 0x73 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x61 0x6E 0x63 0x69 0x65 0x6E 0x74 0x20 - 0x70 0x65 0x72 0x73 0x6F 0x6E 0x20 0x74 - 0x72 0x61 0x70 0x70 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x67 0x72 - 0x61 0x76 0x65 0x79 0x61 0x72 0x64 0x3F - 0x20 0x57 0x68 0x6F 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x69 0x74 0x20 0x62 0x65 - 0x3F 0x20 0x49 0x66 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x73 0x68 - 0x72 0x69 0x6E 0x6B 0x73 0x20 0x74 0x6F - 0x20 0x61 0x20 0x74 0x69 0x6E 0x79 0x20 - 0x73 0x69 0x7A 0x65 0x2C 0x20 0x63 0x61 - 0x6E 0x20 0x68 0x65 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x76 0x6F - 0x69 0x63 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x6C 0x65 0x61 0x73 0x65 0x20 - 0x69 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_30= 0x00015308 - - -CHUNK('HTOP', _help_48544F50_30, "") -SUBFILE -#line 7503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_30, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_34=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x14 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_34=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7F 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_34=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_34, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x0D 0x0A 0x41 - 0x75 0x67 0x75 0x73 0x74 0x69 0x6E 0x20 - 0x73 0x65 0x65 0x73 0x20 0x68 0x69 0x6D - 0x73 0x65 0x6C 0x66 0x20 0x70 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x53 0x75 0x70 0x65 0x72 0x20 0x53 - 0x68 0x72 0x69 0x6E 0x6B 0x69 0x6E 0x67 - 0x20 0x43 0x6F 0x70 0x97 0x61 0x20 0x63 - 0x6F 0x70 0x20 0x77 0x68 0x6F 0x20 0x63 - 0x61 0x6E 0x20 0x73 0x68 0x72 0x69 0x6E - 0x6B 0x20 0x73 0x6F 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x61 0x74 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x6E 0x79 0x77 - 0x68 0x65 0x72 0x65 0x2C 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x68 0x69 0x64 0x65 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x68 0x6F 0x75 0x6C 0x64 0x65 0x72 0x73 - 0x20 0x6F 0x66 0x20 0x63 0x72 0x69 0x6D - 0x69 0x6E 0x61 0x6C 0x73 0x20 0x74 0x6F - 0x20 0x6F 0x76 0x65 0x72 0x68 0x65 0x61 - 0x72 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x70 0x6C 0x61 0x6E 0x73 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x67 0x65 - 0x74 0x73 0x20 0x74 0x68 0x65 0x20 0x64 - 0x65 0x74 0x61 0x69 0x6C 0x73 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x6E 0x97 0x70 0x6F 0x6F 0x66 0x21 - 0x97 0x68 0x65 0x20 0x67 0x72 0x6F 0x77 - 0x73 0x20 0x71 0x75 0x69 0x63 0x6B 0x6C - 0x79 0x20 0x74 0x6F 0x20 0x6E 0x6F 0x72 - 0x6D 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 0x6F - 0x70 0x73 0x20 0x74 0x68 0x65 0x20 0x63 - 0x72 0x69 0x6D 0x69 0x6E 0x61 0x6C 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x74 0x72 0x61 0x63 0x6B 0x73 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x2C - 0x20 0x77 0x68 0x65 0x6E 0x20 0x41 0x75 - 0x67 0x75 0x73 0x74 0x69 0x6E 0x20 0x69 - 0x73 0x20 0x68 0x61 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x6F 0x75 0x74 0x20 0x73 0x70 - 0x79 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 - 0x63 0x72 0x69 0x6D 0x69 0x6E 0x61 0x6C - 0x73 0x2C 0x20 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x64 0x20 0x63 0x61 0x6E 0x92 0x74 0x20 - 0x73 0x74 0x6F 0x70 0x2E 0x20 0x20 0x48 - 0x69 0x73 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x20 0x69 0x73 0x20 0x73 0x6D 0x61 0x6C - 0x6C 0x2C 0x20 0x62 0x75 0x74 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x69 0x6D 0x69 - 0x6E 0x61 0x6C 0x73 0x20 0x68 0x65 0x61 - 0x72 0x20 0x69 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x74 0x61 0x72 0x74 0x20 0x6C - 0x6F 0x6F 0x6B 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x75 0x6E 0x64 0x2E 0x20 0x20 0x41 - 0x75 0x67 0x75 0x73 0x74 0x69 0x6E 0x20 - 0x66 0x61 0x6C 0x6C 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x68 0x69 0x73 0x20 0x68 - 0x69 0x64 0x69 0x6E 0x67 0x20 0x70 0x6C - 0x61 0x63 0x65 0x20 0x6F 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x66 0x6C 0x6F - 0x6F 0x72 0x2E 0x20 0x20 0x41 0x20 0x63 - 0x72 0x69 0x6D 0x69 0x6E 0x61 0x6C 0x20 - 0x77 0x69 0x74 0x68 0x20 0x68 0x75 0x67 - 0x65 0x20 0x66 0x65 0x65 0x74 0x20 0x77 - 0x61 0x6C 0x6B 0x73 0x20 0x73 0x6C 0x6F - 0x77 0x6C 0x79 0x20 0x74 0x6F 0x77 0x61 - 0x72 0x64 0x20 0x41 0x75 0x67 0x75 0x73 - 0x74 0x69 0x6E 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x69 0x73 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x65 0x70 0x20 0x6F - 0x6E 0x20 0x68 0x69 0x6D 0x2E 0x20 0x0D - 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x41 0x75 0x67 0x75 0x73 0x74 - 0x69 0x6E 0x20 0x67 0x65 0x74 0x20 0x6F - 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x69 0x73 0x20 0x66 0x69 0x78 0x20 0x77 - 0x69 0x74 0x68 0x6F 0x75 0x74 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x66 0x6F 0x75 - 0x6E 0x64 0x20 0x6F 0x75 0x74 0x3F 0x20 - 0x20 0x49 0x66 0x20 0x68 0x65 0x20 0x73 - 0x75 0x64 0x64 0x65 0x6E 0x6C 0x79 0x20 - 0x67 0x72 0x6F 0x77 0x73 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x74 0x6F 0x20 0x6E 0x6F - 0x72 0x6D 0x61 0x6C 0x20 0x73 0x69 0x7A - 0x65 0x2C 0x20 0x68 0x65 0x92 0x6C 0x6C - 0x20 0x62 0x6C 0x6F 0x77 0x20 0x68 0x69 - 0x73 0x20 0x64 0x69 0x73 0x67 0x75 0x69 - 0x73 0x65 0x2E 0x20 0x57 0x68 0x61 0x74 - 0x20 0x57 0x49 0x4C 0x4C 0x20 0x68 0x65 - 0x20 0x64 0x6F 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7663 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_31= 0x00015309 - - -CHUNK('HTOP', _help_48544F50_31, "") -SUBFILE -#line 7671 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_31, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_82=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_82=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_82=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_82, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6D 0x65 0x20 0x53 - 0x61 0x66 0x65 0x74 0x79 0x20 0x49 0x6E - 0x73 0x70 0x65 0x63 0x74 0x6F 0x72 0x0D - 0x0A 0x41 0x75 0x67 0x75 0x73 0x74 0x69 - 0x6E 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x72 0x6F - 0x6C 0x65 0x20 0x69 0x6E 0x20 0x77 0x68 - 0x69 0x63 0x68 0x20 0x68 0x65 0x20 0x69 - 0x73 0x20 0x64 0x69 0x73 0x67 0x75 0x69 - 0x73 0x65 0x64 0x20 0x61 0x73 0x20 0x73 - 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x69 0x6E 0x73 0x70 0x65 - 0x63 0x74 0x73 0x20 0x68 0x6F 0x6D 0x65 - 0x73 0x20 0x66 0x6F 0x72 0x20 0x73 0x61 - 0x66 0x65 0x74 0x79 0x20 0x76 0x69 0x6F - 0x6C 0x61 0x74 0x69 0x6F 0x6E 0x73 0x2E - 0x20 0x20 0x48 0x65 0x27 0x64 0x20 0x67 - 0x65 0x74 0x20 0x74 0x6F 0x20 0x69 0x6E - 0x73 0x70 0x65 0x63 0x74 0x20 0x61 0x6C - 0x6C 0x20 0x6B 0x69 0x6E 0x64 0x73 0x20 - 0x6F 0x66 0x20 0x70 0x6C 0x61 0x63 0x65 - 0x73 0x2C 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x68 0x75 - 0x74 0x73 0x20 0x74 0x6F 0x20 0x62 0x69 - 0x67 0x2C 0x20 0x63 0x72 0x65 0x65 0x70 - 0x79 0x20 0x68 0x6F 0x75 0x73 0x65 0x73 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x68 - 0x69 0x73 0x20 0x72 0x6F 0x6C 0x65 0x20 - 0x61 0x73 0x20 0x69 0x6E 0x73 0x70 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x70 0x72 0x6F - 0x76 0x69 0x64 0x65 0x73 0x20 0x68 0x69 - 0x6D 0x20 0x77 0x69 0x74 0x68 0x20 0x61 - 0x20 0x64 0x69 0x73 0x67 0x75 0x69 0x73 - 0x65 0x20 0x66 0x6F 0x72 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x20 0x6D - 0x69 0x73 0x73 0x69 0x6F 0x6E 0x2C 0x20 - 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x61 0x20 0x6C 0x6F 0x73 0x74 0x20 0x63 - 0x61 0x74 0x2E 0x20 0x20 0x4E 0x6F 0x74 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 0x6E - 0x79 0x20 0x6C 0x6F 0x73 0x74 0x20 0x63 - 0x61 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x63 0x68 - 0x20 0x63 0x61 0x74 0x20 0x77 0x68 0x6F - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x61 0x20 0x66 0x61 0x6D 0x6F 0x75 - 0x73 0x20 0x63 0x68 0x61 0x69 0x6E 0x20 - 0x6F 0x66 0x20 0x6B 0x69 0x74 0x74 0x79 - 0x20 0x66 0x61 0x73 0x74 0x20 0x66 0x6F - 0x6F 0x64 0x20 0x63 0x61 0x66 0xE9 0x73 - 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x41 0x75 0x67 - 0x75 0x73 0x74 0x69 0x6E 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x73 0x74 0x20 0x63 0x61 0x74 0x3F - 0x20 0x20 0x41 0x6E 0x64 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x69 0x6E 0x73 0x70 0x65 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x68 0x6F - 0x6D 0x65 0x73 0x20 0x67 0x69 0x76 0x65 - 0x20 0x41 0x75 0x67 0x75 0x73 0x74 0x69 - 0x6E 0x20 0x61 0x20 0x63 0x68 0x61 0x6E - 0x63 0x65 0x20 0x74 0x6F 0x20 0x66 0x75 - 0x6C 0x66 0x69 0x6C 0x6C 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x64 0x72 - 0x65 0x61 0x6D 0x97 0x68 0x69 0x73 0x20 - 0x64 0x65 0x73 0x69 0x72 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x61 0x6E 0x20 - 0x69 0x6E 0x74 0x65 0x72 0x69 0x6F 0x72 - 0x20 0x64 0x65 0x73 0x69 0x67 0x6E 0x65 - 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 7802 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_32= 0x0001530a - - -CHUNK('HTOP', _help_48544F50_32, "") -SUBFILE -#line 7810 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_32, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_31=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_32, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_31=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x9E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_31=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_31, 0x0) - BYTE - 0x03 0x03 0x63 0x6F 0x6D 0x65 0x64 0x79 - 0x0D 0x0A 0x42 0x65 0x6C 0x6C 0x61 0x27 - 0x73 0x20 0x61 0x63 0x74 0x20 0x69 0x73 - 0x20 0x61 0x74 0x20 0x61 0x20 0x4D 0x65 - 0x78 0x69 0x63 0x61 0x6E 0x20 0x72 0x65 - 0x73 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x65 0x6C 0x73 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x69 0x72 0x65 0x20 - 0x61 0x20 0x74 0x65 0x61 0x63 0x68 0x65 - 0x72 0x20 0x77 0x68 0x6F 0x20 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x20 0x73 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x61 0x20 0x63 0x6F 0x6D - 0x65 0x64 0x69 0x61 0x6E 0x2E 0x20 0x20 - 0x41 0x74 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x73 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x73 0x63 0x61 0x72 0x65 0x64 0x20 - 0x6F 0x6E 0x20 0x73 0x74 0x61 0x67 0x65 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x66 0x69 0x67 0x75 - 0x72 0x65 0x64 0x20 0x73 0x68 0x65 0x20 - 0x68 0x61 0x64 0x20 0x6E 0x6F 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x6C - 0x6F 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x63 - 0x75 0x74 0x20 0x6C 0x6F 0x6F 0x73 0x65 - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x65 0x20 0x6A 0x6F 0x6B 0x65 0x73 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x73 0x61 - 0x69 0x64 0x20 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x73 0x20 0x73 0x68 0x65 0x92 0x64 0x20 - 0x6E 0x65 0x76 0x65 0x72 0x20 0x73 0x61 - 0x69 0x64 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x66 0x75 0x6E 0x6E - 0x79 0x20 0x77 0x61 0x79 0x2E 0x20 0x20 - 0x41 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x64 0x20 0x6F 0x66 0x20 0x68 0x65 - 0x72 0x20 0x61 0x63 0x74 0x2C 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x73 0x20 0x62 0x6F 0x6C 0x64 - 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x61 0x79 0x73 0x2C 0x20 0x93 0x54 0x68 - 0x61 0x6E 0x6B 0x20 0x79 0x6F 0x75 0x20 - 0x61 0x6C 0x6C 0x20 0x76 0x65 0x72 0x79 - 0x2C 0x20 0x76 0x65 0x72 0x79 0x20 0x6D - 0x75 0x63 0x68 0x21 0x22 0x20 0x50 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x6C 0x6F 0x76 - 0x65 0x20 0x68 0x65 0x72 0x2E 0x0D 0x0A - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x2C - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x92 0x73 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x73 0x2C - 0x20 0x73 0x61 0x77 0x20 0x68 0x65 0x72 - 0x20 0x61 0x63 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x61 0x72 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x63 0x6F 0x6D 0x65 0x64 0x79 0x2E 0x20 - 0x4E 0x6F 0x77 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 - 0x61 0x76 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x68 0x65 0x72 0x20 - 0x70 0x61 0x72 0x65 0x6E 0x74 0x73 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x68 0x65 - 0x72 0x20 0x73 0x65 0x63 0x72 0x65 0x74 - 0x20 0x63 0x61 0x72 0x65 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 7943 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_33= 0x0001530b - - -CHUNK('HTOP', _help_48544F50_33, "") -SUBFILE -#line 7951 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_33, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x08 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_0, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x64 0x61 0x6D 0x65 - 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x0D - 0x0A 0x57 0x69 0x74 0x68 0x20 0x68 0x65 - 0x72 0x20 0x77 0x69 0x74 0x63 0x68 0x20 - 0x6C 0x61 0x75 0x67 0x68 0x2C 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x66 0x69 0x6E 0x65 0x20 0x68 - 0x6F 0x73 0x74 0x65 0x73 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x61 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x73 0x65 0x65 0x20 0x69 0x74 - 0x20 0x61 0x6C 0x6C 0x20 0x6E 0x6F 0x77 - 0x97 0x73 0x68 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x61 0x76 0x65 0x20 - 0x66 0x61 0x6E 0x67 0x73 0x20 0x61 0x6E - 0x64 0x20 0x67 0x72 0x65 0x65 0x74 0x20 - 0x65 0x61 0x63 0x68 0x20 0x6B 0x69 0x64 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x6F 0x72 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x65 0x72 0x20 0x73 0x70 - 0x6F 0x6F 0x6B 0x79 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x2E 0x20 0x20 0x54 0x65 0x6C - 0x6C 0x69 0x6E 0x67 0x20 0x61 0x77 0x66 - 0x75 0x6C 0x20 0x6A 0x6F 0x6B 0x65 0x73 - 0x2C 0x20 0x73 0x68 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x65 0x61 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x74 0x63 0x68 0x65 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x63 - 0x75 0x70 0x20 0x6F 0x66 0x20 0x68 0x65 - 0x72 0x20 0x68 0x6F 0x74 0x2C 0x20 0x73 - 0x75 0x67 0x61 0x72 0x79 0x2C 0x20 0x6C - 0x65 0x6D 0x6F 0x6E 0x61 0x64 0x65 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x72 0x61 0x74 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x64 0x72 0x6F 0x70 0x20 - 0x64 0x6F 0x77 0x6E 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x62 0x6F 0x76 0x65 0x2C - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x74 0x20 0x70 0x6F 0x74 0x20 - 0x6F 0x66 0x20 0x6C 0x65 0x6D 0x6F 0x6E - 0x61 0x64 0x65 0x2E 0x20 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x68 0x6F 0x77 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x73 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x74 0x68 0x65 - 0x20 0x72 0x61 0x74 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x74 0x3F 0x20 0x20 0x57 0x6F - 0x75 0x6C 0x64 0x20 0x74 0x68 0x65 0x79 - 0x20 0x6E 0x65 0x65 0x64 0x20 0x74 0x6F - 0x20 0x68 0x61 0x76 0x65 0x20 0x61 0x20 - 0x63 0x65 0x72 0x65 0x6D 0x6F 0x6E 0x79 - 0x20 0x6F 0x66 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x6F 0x6E 0x67 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x76 0x65 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x74 0x68 0x65 0x20 0x76 0x6F 0x6F 0x64 - 0x6F 0x6F 0x20 0x6D 0x61 0x6E 0x20 0x70 - 0x65 0x72 0x66 0x6F 0x72 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x72 0x69 0x74 0x75 0x61 - 0x6C 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8078 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_34= 0x0001530c - - -CHUNK('HTOP', _help_48544F50_34, "") -SUBFILE -#line 8086 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_34, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_38=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_34, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xEB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_38=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCD 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_38=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_38, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x46 0x61 0x69 0x72 0x20 0x45 0x6E - 0x74 0x65 0x72 0x74 0x61 0x69 0x6E 0x65 - 0x72 0x0D 0x0A 0x4A 0x75 0x73 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x66 0x75 0x6E 0x2C - 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 - 0x72 0x20 0x61 0x73 0x20 0x61 0x20 0x73 - 0x74 0x72 0x65 0x65 0x74 0x20 0x66 0x61 - 0x69 0x72 0x20 0x65 0x6E 0x74 0x65 0x72 - 0x74 0x61 0x69 0x6E 0x65 0x72 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x27 0x64 0x20 0x68 - 0x61 0x76 0x65 0x20 0x68 0x65 0x72 0x20 - 0x6F 0x77 0x6E 0x20 0x73 0x70 0x6F 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x62 0x69 0x67 0x20 0x63 - 0x6C 0x6F 0x63 0x6B 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x69 0x6E 0x74 0x65 - 0x72 0x73 0x65 0x63 0x74 0x69 0x6F 0x6E - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6F 0x6B - 0x65 0x20 0x66 0x75 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x73 0x68 0x65 0x20 - 0x73 0x65 0x65 0x73 0x20 0x70 0x61 0x73 - 0x73 0x69 0x6E 0x67 0x20 0x62 0x79 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x6F 0x6E - 0x65 0x20 0x73 0x6D 0x69 0x6C 0x65 0x2C - 0x20 0x65 0x76 0x65 0x6E 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x77 0x68 0x6F - 0x20 0x61 0x72 0x65 0x20 0x61 0x6E 0x67 - 0x72 0x79 0x20 0x6F 0x72 0x20 0x74 0x6F - 0x6F 0x20 0x62 0x75 0x73 0x79 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x68 0x61 0x70 - 0x70 0x79 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x61 0x6C - 0x73 0x6F 0x20 0x68 0x61 0x76 0x65 0x20 - 0x73 0x70 0x65 0x63 0x69 0x61 0x6C 0x20 - 0x70 0x6F 0x77 0x65 0x72 0x73 0x97 0x73 - 0x6F 0x6D 0x65 0x74 0x69 0x6D 0x65 0x73 - 0x20 0x73 0x68 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x73 0x65 0x65 0x20 0x70 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x63 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x72 0x65 - 0x73 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 - 0x20 0x61 0x66 0x74 0x65 0x72 0x20 0x65 - 0x61 0x74 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x6F 0x20 0x6D 0x75 0x63 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x69 0x6E 0x67 0x2C 0x20 0x93 0x74 0x68 - 0x65 0x72 0x65 0x20 0x69 0x73 0x20 0x6E - 0x6F 0x20 0x77 0x61 0x79 0x20 0x49 0x20 - 0x63 0x61 0x6E 0x20 0x77 0x61 0x6C 0x6B - 0x20 0x62 0x61 0x63 0x6B 0x20 0x68 0x6F - 0x6D 0x65 0x2E 0x2E 0x2E 0x49 0x20 0x77 - 0x69 0x73 0x68 0x20 0x49 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x67 0x65 0x74 0x20 0x61 0x20 0x63 - 0x61 0x62 0x20 0x61 0x6E 0x64 0x20 0x67 - 0x65 0x74 0x20 0x68 0x6F 0x6D 0x65 0x2E - 0x2E 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 - 0x69 0x72 0x20 0x77 0x69 0x73 0x68 0x65 - 0x73 0x20 0x63 0x6F 0x6D 0x65 0x20 0x74 - 0x72 0x75 0x65 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 - 0x74 0x68 0x65 0x79 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x61 0x20 0x63 0x61 0x62 0x2E - 0x20 0x20 0x45 0x76 0x65 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x73 0x74 0x20 0x63 0x72 0x6F 0x77 0x64 - 0x65 0x64 0x20 0x73 0x74 0x72 0x65 0x65 - 0x74 0x73 0x2C 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x69 0x73 0x20 0x61 0x62 0x6C - 0x65 0x20 0x74 0x6F 0x20 0x68 0x61 0x69 - 0x6C 0x20 0x61 0x20 0x74 0x61 0x78 0x69 - 0x97 0x6A 0x75 0x73 0x74 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x74 0x68 0x61 0x74 0x21 - 0x20 0x20 0x42 0x75 0x74 0x20 0x77 0x68 - 0x61 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 - 0x20 0x42 0x65 0x6C 0x6C 0x61 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x6E 0x65 0x65 0x64 0x73 0x20 0x61 0x20 - 0x63 0x61 0x62 0x3F 0x20 0x20 0x43 0x61 - 0x6E 0x20 0x73 0x68 0x65 0x20 0x67 0x65 - 0x74 0x20 0x6F 0x6E 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 8237 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_35= 0x0001530d - - -CHUNK('HTOP', _help_48544F50_35, "") -SUBFILE -#line 8245 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_35, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_36=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_36=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAA 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_36=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_36, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x0D 0x0A 0x42 0x65 0x6C 0x6C 0x61 - 0x20 0x6C 0x69 0x6B 0x65 0x73 0x20 0x68 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x74 0x77 - 0x6F 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x20 0x6C 0x69 0x76 0x65 - 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 0x74 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x66 0x75 0x6E 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 - 0x64 0x6F 0x75 0x62 0x6C 0x65 0x20 0x6C - 0x69 0x66 0x65 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 0x6E - 0x20 0x6F 0x72 0x64 0x69 0x6E 0x61 0x72 - 0x79 0x20 0x74 0x65 0x61 0x63 0x68 0x65 - 0x72 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 - 0x6F 0x6E 0x20 0x76 0x61 0x63 0x61 0x74 - 0x69 0x6F 0x6E 0x20 0x77 0x69 0x74 0x68 - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x74 0x65 0x61 0x63 - 0x68 0x65 0x72 0x73 0x2E 0x20 0x20 0x4F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x69 0x70 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6C 0x61 0x6E 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x73 0x20 0x74 0x6F 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x20 0x61 0x6E - 0x64 0x20 0x65 0x76 0x65 0x72 0x79 0x6F - 0x6E 0x65 0x20 0x70 0x61 0x6E 0x69 0x63 - 0x73 0x2E 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x74 - 0x65 0x61 0x63 0x68 0x65 0x72 0x73 0x20 - 0x66 0x61 0x69 0x6E 0x74 0x73 0x97 0x62 - 0x75 0x74 0x20 0x6E 0x6F 0x74 0x20 0x42 - 0x65 0x6C 0x6C 0x61 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x73 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 - 0x73 0x65 0x63 0x6F 0x6E 0x64 0x2C 0x20 - 0x72 0x75 0x6E 0x73 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x66 0x72 0x6F 0x6E - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x75 0x64 0x64 - 0x65 0x6E 0x6C 0x79 0x20 0x73 0x74 0x61 - 0x72 0x74 0x73 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x69 0x6E 0x67 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x73 0x20 0x65 0x6E 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x61 0x74 0x20 - 0x73 0x68 0x65 0x20 0x64 0x69 0x73 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x2C 0x20 - 0x63 0x72 0x61 0x77 0x6C 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x65 0x6E 0x67 0x69 0x6E 0x65 0x2C 0x20 - 0x66 0x69 0x78 0x65 0x73 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x74 0x6F 0x70 0x73 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x63 - 0x72 0x61 0x73 0x68 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x74 0x68 - 0x65 0x6E 0x2C 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x73 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x69 0x73 0x20 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C - 0x20 0x69 0x74 0x20 0x68 0x69 0x74 0x73 - 0x20 0x61 0x6E 0x20 0x61 0x69 0x72 0x20 - 0x70 0x6F 0x63 0x6B 0x65 0x74 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x77 0x68 0x6F 0x6C 0x65 0x20 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x6A 0x75 0x6D 0x70 - 0x73 0x2E 0x20 0x20 0x42 0x65 0x6C 0x6C - 0x61 0x20 0x73 0x74 0x6F 0x70 0x73 0x20 - 0x67 0x72 0x6F 0x77 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x64 0x20 0x69 0x73 0x20 0x73 - 0x74 0x75 0x63 0x6B 0x2E 0x20 0x20 0x48 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x42 0x65 0x6C 0x6C 0x61 0x20 0x67 0x65 - 0x74 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C - 0x20 0x73 0x69 0x7A 0x65 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8392 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_36= 0x0001530e - - -CHUNK('HTOP', _help_48544F50_36, "") -SUBFILE -#line 8400 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_36, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_35=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_36, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_35=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_35=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_35, 0x0) - BYTE - 0x03 0x03 0x63 0x68 0x65 0x6D 0x69 0x73 - 0x74 0x72 0x79 0x0D 0x0A 0x45 0x76 0x65 - 0x6E 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 - 0x20 0x42 0x65 0x6E 0x6E 0x79 0x20 0x77 - 0x61 0x73 0x20 0x69 0x6E 0x6A 0x75 0x72 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 - 0x69 0x6F 0x6E 0x2C 0x20 0x68 0x65 0x20 - 0x73 0x74 0x69 0x6C 0x6C 0x20 0x6C 0x6F - 0x76 0x65 0x64 0x20 0x63 0x68 0x65 0x6D - 0x69 0x73 0x74 0x72 0x79 0x2E 0x20 0x20 - 0x42 0x75 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x6F 0x6C 0x64 0x65 0x72 0x2C 0x20 0x68 - 0x65 0x20 0x68 0x61 0x64 0x20 0x74 0x6F - 0x20 0x65 0x61 0x72 0x6E 0x20 0x61 0x20 - 0x6C 0x69 0x76 0x69 0x6E 0x67 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x65 0x64 0x20 0x6D 0x69 - 0x78 0x69 0x6E 0x67 0x20 0x70 0x65 0x72 - 0x66 0x75 0x6D 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x62 0x61 0x73 0x65 - 0x6D 0x65 0x6E 0x74 0x20 0x6C 0x61 0x62 - 0x6F 0x72 0x61 0x74 0x6F 0x72 0x79 0x2E - 0x20 0x20 0x48 0x69 0x73 0x20 0x70 0x65 - 0x72 0x66 0x75 0x6D 0x65 0x20 0x77 0x61 - 0x73 0x20 0x61 0x20 0x68 0x69 0x74 0x2E - 0x20 0x20 0x41 0x20 0x66 0x61 0x6D 0x6F - 0x75 0x73 0x20 0x61 0x63 0x74 0x72 0x65 - 0x73 0x73 0x20 0x63 0x61 0x6C 0x6C 0x65 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x68 0x69 0x6D 0x20 - 0x74 0x6F 0x20 0x63 0x72 0x65 0x61 0x74 - 0x65 0x20 0x61 0x20 0x70 0x65 0x72 0x66 - 0x75 0x6D 0x65 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 - 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x6D 0x65 0x74 0x20 - 0x42 0x65 0x6E 0x6E 0x79 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x74 0x68 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x68 0x69 0x73 0x20 0x75 - 0x6E 0x69 0x71 0x75 0x65 0x20 0x6C 0x6F - 0x6F 0x6B 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x70 0x65 0x72 0x66 - 0x65 0x63 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x68 0x65 0x72 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 - 0x20 0x42 0x65 0x6E 0x6E 0x79 0x20 0x77 - 0x61 0x73 0x6E 0x27 0x74 0x20 0x73 0x75 - 0x72 0x65 0x20 0x74 0x68 0x61 0x74 0x20 - 0x61 0x63 0x74 0x69 0x6E 0x67 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x6D 0x6F 0x72 0x65 0x20 0x66 0x75 0x6E - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x69 0x6E 0x67 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x20 0x73 0x61 0x69 0x64 0x20 0x68 0x65 - 0x27 0x64 0x20 0x74 0x72 0x79 0x20 0x69 - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 8521 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_37= 0x0001530f - - -CHUNK('HTOP', _help_48544F50_37, "") -SUBFILE -#line 8529 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_37, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_37=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_37=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x14 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_37=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_37, 0x0) - BYTE - 0x03 0x03 0x42 0x61 0x63 0x6B 0x2D 0x74 - 0x6F 0x2D 0x4C 0x69 0x66 0x65 0x20 0x4D - 0x75 0x6D 0x6D 0x79 0x0D 0x0A 0x42 0x65 - 0x6E 0x6E 0x79 0x20 0x62 0x65 0x6C 0x69 - 0x65 0x76 0x65 0x73 0x20 0x6E 0x6F 0x20 - 0x6F 0x6E 0x65 0x20 0x77 0x61 0x73 0x20 - 0x62 0x65 0x74 0x74 0x65 0x72 0x20 0x61 - 0x74 0x20 0x63 0x68 0x65 0x6D 0x69 0x73 - 0x74 0x72 0x79 0x20 0x74 0x68 0x61 0x6E - 0x20 0x74 0x68 0x65 0x20 0x61 0x6E 0x63 - 0x69 0x65 0x6E 0x74 0x20 0x45 0x67 0x79 - 0x70 0x74 0x69 0x61 0x6E 0x73 0x2E 0x20 - 0x20 0x49 0x74 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x61 0x20 0x6C - 0x6F 0x74 0x20 0x6F 0x66 0x20 0x66 0x75 - 0x6E 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 - 0x72 0x20 0x61 0x73 0x20 0x61 0x20 0x70 - 0x72 0x65 0x73 0x65 0x72 0x76 0x65 0x64 - 0x20 0x45 0x67 0x79 0x70 0x74 0x69 0x61 - 0x6E 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x6C 0x69 0x66 0x65 0x2E 0x20 0x20 - 0x48 0x65 0x27 0x73 0x20 0x61 0x6C 0x72 - 0x65 0x61 0x64 0x79 0x20 0x64 0x72 0x65 - 0x73 0x73 0x65 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x70 0x61 0x72 - 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x65 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x65 0x73 0x20 0x64 0x6F 0x77 0x6E - 0x2E 0x20 0x20 0x48 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x77 0x61 0x6C 0x6B 0x20 0x73 - 0x6C 0x6F 0x77 0x6C 0x79 0x2C 0x20 0x66 - 0x61 0x69 0x6E 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x66 0x61 0x6C 0x6C 0x20 0x64 - 0x6F 0x77 0x6E 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x6F 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x66 0x61 0x6C 0x6C 0x73 0x20 0x64 - 0x6F 0x77 0x6E 0x2C 0x20 0x68 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x75 0x70 0x20 0x71 0x75 0x69 - 0x63 0x6B 0x6C 0x79 0x20 0x74 0x6F 0x20 - 0x73 0x63 0x61 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x6B - 0x69 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8638 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_38= 0x00015310 - - -CHUNK('HTOP', _help_48544F50_38, "") -SUBFILE -#line 8646 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_38, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_38, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD5 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x77 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3A, 0x0) - BYTE - 0x03 0x03 0x49 0x6E 0x6A 0x75 0x72 0x65 - 0x64 0x20 0x56 0x69 0x63 0x74 0x69 0x6D - 0x0D 0x0A 0x41 0x20 0x63 0x68 0x65 0x6D - 0x69 0x73 0x74 0x72 0x79 0x20 0x74 0x65 - 0x61 0x63 0x68 0x65 0x72 0x20 0x73 0x75 - 0x67 0x67 0x65 0x73 0x74 0x65 0x64 0x20 - 0x42 0x65 0x6E 0x6E 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x70 - 0x65 0x72 0x73 0x6F 0x6E 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6C 0x6C 0x20 0x69 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x20 0x77 0x65 - 0x6E 0x74 0x20 0x62 0x61 0x64 0x6C 0x79 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x66 - 0x69 0x72 0x73 0x74 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x73 0x68 0x6F 0x77 0x20 0x61 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x20 0x61 0x63 - 0x74 0x6F 0x72 0x20 0x64 0x6F 0x69 0x6E - 0x67 0x20 0x61 0x20 0x64 0x61 0x72 0x69 - 0x6E 0x67 0x20 0x66 0x61 0x6C 0x6C 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 0x70 - 0x6C 0x61 0x6E 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x73 0x65 - 0x63 0x6F 0x6E 0x64 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x68 0x61 0x76 0x65 0x20 0x42 0x65 - 0x6E 0x6E 0x79 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x62 0x61 0x6E 0x64 0x61 - 0x67 0x65 0x73 0x2C 0x20 0x77 0x61 0x6C - 0x6B 0x69 0x6E 0x67 0x20 0x73 0x6C 0x6F - 0x77 0x6C 0x79 0x2C 0x20 0x6F 0x62 0x76 - 0x69 0x6F 0x75 0x73 0x6C 0x79 0x20 0x69 - 0x6E 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x70 0x61 0x69 0x6E 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x65 0x74 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x6A 0x75 0x69 0x63 0x69 0x65 0x72 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x6E 0x6F 0x62 - 0x6F 0x64 0x79 0x20 0x72 0x65 0x61 0x6C - 0x69 0x7A 0x65 0x64 0x20 0x74 0x68 0x61 - 0x74 0x20 0x42 0x65 0x6E 0x6E 0x79 0x20 - 0x77 0x61 0x73 0x20 0x6E 0x6F 0x74 0x20 - 0x74 0x68 0x65 0x20 0x69 0x6E 0x6A 0x75 - 0x72 0x65 0x64 0x20 0x73 0x74 0x75 0x6E - 0x74 0x20 0x61 0x63 0x74 0x6F 0x72 0x20 - 0x61 0x74 0x20 0x61 0x6C 0x6C 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x6E 0x20 0x69 - 0x6E 0x6E 0x6F 0x63 0x65 0x6E 0x74 0x20 - 0x62 0x79 0x73 0x74 0x61 0x6E 0x64 0x65 - 0x72 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 - 0x62 0x61 0x6E 0x64 0x61 0x67 0x65 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x6F 0x6E 0x65 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x20 0x68 0x65 0x20 0x69 0x73 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x63 0x6F - 0x76 0x65 0x72 0x69 0x6E 0x67 0x20 0x64 - 0x61 0x72 0x65 0x64 0x65 0x76 0x69 0x6C - 0x20 0x73 0x74 0x75 0x6E 0x74 0x20 0x6D - 0x61 0x6E 0x21 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x74 0x68 0x65 0x6E 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x69 0x73 0x20 - 0x74 0x68 0x65 0x20 0x69 0x6E 0x6A 0x75 - 0x72 0x65 0x64 0x20 0x64 0x61 0x72 0x65 - 0x64 0x65 0x76 0x69 0x6C 0x3F 0x20 0x20 - 0x43 0x61 0x6E 0x20 0x42 0x65 0x6E 0x6E - 0x79 0x20 0x75 0x73 0x65 0x20 0x68 0x69 - 0x73 0x20 0x73 0x6B 0x69 0x6C 0x6C 0x73 - 0x20 0x74 0x6F 0x20 0x6D 0x69 0x78 0x20 - 0x61 0x20 0x74 0x72 0x75 0x74 0x68 0x20 - 0x73 0x65 0x72 0x75 0x6D 0x20 0x74 0x68 - 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x68 0x69 0x6D - 0x20 0x72 0x65 0x76 0x65 0x61 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x61 0x6C - 0x20 0x76 0x69 0x63 0x74 0x69 0x6D 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 8787 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_39= 0x00015311 - - -CHUNK('HTOP', _help_48544F50_39, "") -SUBFILE -#line 8795 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_39, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_39=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_39=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_39=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_39, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x63 0x69 0x65 0x6E - 0x74 0x20 0x4D 0x75 0x6D 0x6D 0x79 0x0D - 0x0A 0x49 0x74 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x6F 0x74 - 0x61 0x6C 0x6C 0x79 0x20 0x66 0x75 0x6E - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x6D 0x75 0x6D 0x6D 0x79 - 0x97 0x69 0x6E 0x20 0x61 0x6E 0x63 0x69 - 0x65 0x6E 0x74 0x20 0x45 0x67 0x79 0x70 - 0x74 0x21 0x20 0x20 0x42 0x65 0x6E 0x6E - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x65 0x73 0x20 0x64 0x6F 0x77 0x6E - 0x2C 0x20 0x68 0x65 0x20 0x63 0x61 0x6E - 0x20 0x66 0x61 0x69 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x66 0x61 0x6C 0x6C 0x20 - 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x68 0x65 0x20 0x63 0x61 0x6E - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x6E 0x20 0x45 - 0x67 0x79 0x70 0x74 0x69 0x61 0x6E 0x2E - 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x69 0x66 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x6F 0x73 0x65 0x20 0x45 0x67 0x79 0x70 - 0x74 0x69 0x61 0x6E 0x20 0x67 0x72 0x61 - 0x76 0x65 0x20 0x72 0x6F 0x62 0x62 0x65 - 0x72 0x73 0x20 0x73 0x70 0x6F 0x74 0x74 - 0x65 0x64 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x6F 0x6F 0x6B 0x20 - 0x68 0x69 0x6D 0x20 0x62 0x61 0x63 0x6B - 0x20 0x74 0x6F 0x20 0x45 0x67 0x79 0x70 - 0x74 0x3F 0x20 0x20 0x48 0x6F 0x77 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x42 0x65 - 0x6E 0x6E 0x79 0x20 0x67 0x65 0x74 0x20 - 0x61 0x77 0x61 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 8892 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3A= 0x00015312 - - -CHUNK('HTOP', _help_48544F50_3A, "") -SUBFILE -#line 8900 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x02 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3B, 0x0) - BYTE - 0x03 0x03 0x64 0x61 0x6E 0x63 0x65 0x0D - 0x0A 0x42 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x62 0x65 0x63 0x6F 0x6D 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x63 0x6F 0x6F 0x6B 0x2C - 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 0x66 - 0x6F 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x20 - 0x66 0x61 0x6D 0x69 0x6C 0x79 0x20 0x74 - 0x72 0x61 0x64 0x69 0x74 0x69 0x6F 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x77 0x6F 0x72 - 0x6B 0x65 0x64 0x20 0x61 0x73 0x20 0x61 - 0x20 0x66 0x69 0x73 0x68 0x65 0x72 0x6D - 0x61 0x6E 0x2E 0x20 0x20 0x48 0x65 0x27 - 0x73 0x20 0x73 0x74 0x72 0x6F 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x6D 0x75 0x73 - 0x63 0x75 0x6C 0x61 0x72 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x68 0x61 0x75 0x6C 0x20 0x69 0x6E - 0x20 0x73 0x6F 0x6D 0x65 0x20 0x62 0x69 - 0x67 0x20 0x63 0x61 0x74 0x63 0x68 0x65 - 0x73 0x2E 0x20 0x4F 0x6E 0x65 0x20 0x64 - 0x61 0x79 0x20 0x42 0x69 0x6C 0x6C 0x79 - 0x20 0x77 0x61 0x73 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x65 0x63 0x6B - 0x2C 0x20 0x77 0x68 0x69 0x63 0x68 0x20 - 0x68 0x61 0x70 0x70 0x65 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 0x75 - 0x6E 0x75 0x73 0x75 0x61 0x6C 0x6C 0x79 - 0x20 0x73 0x6C 0x69 0x70 0x70 0x65 0x72 - 0x79 0x2E 0x20 0x48 0x65 0x20 0x6C 0x6F - 0x73 0x74 0x20 0x63 0x6F 0x6E 0x74 0x72 - 0x6F 0x6C 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x73 0x20 0x6C 0x65 0x67 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x68 0x69 0x6C - 0x65 0x20 0x68 0x65 0x20 0x74 0x72 0x69 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x63 0x61 - 0x74 0x63 0x68 0x20 0x68 0x69 0x73 0x20 - 0x62 0x61 0x6C 0x61 0x6E 0x63 0x65 0x2C - 0x20 0x68 0x69 0x73 0x20 0x66 0x61 0x6D - 0x69 0x6C 0x79 0x20 0x73 0x74 0x6F 0x70 - 0x70 0x65 0x64 0x20 0x74 0x6F 0x20 0x77 - 0x61 0x74 0x63 0x68 0x20 0x68 0x69 0x6D - 0x2E 0x20 0x20 0x4F 0x74 0x68 0x65 0x72 - 0x20 0x66 0x69 0x73 0x68 0x65 0x72 0x6D - 0x65 0x6E 0x20 0x64 0x72 0x69 0x66 0x74 - 0x69 0x6E 0x67 0x20 0x62 0x79 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x74 0x6F 0x70 - 0x70 0x65 0x64 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x61 0x72 0x65 0x2E 0x20 0x20 0x49 - 0x74 0x20 0x77 0x61 0x73 0x20 0x61 0x20 - 0x6D 0x61 0x67 0x6E 0x69 0x66 0x69 0x63 - 0x65 0x6E 0x74 0x20 0x22 0x64 0x61 0x6E - 0x63 0x65 0x21 0x22 0x20 0x41 0x66 0x74 - 0x65 0x72 0x20 0x61 0x20 0x67 0x72 0x61 - 0x6E 0x64 0x20 0x66 0x69 0x6E 0x61 0x6C - 0x65 0x2C 0x20 0x42 0x69 0x6C 0x6C 0x79 - 0x27 0x73 0x20 0x66 0x61 0x74 0x68 0x65 - 0x72 0x20 0x73 0x61 0x69 0x64 0x20 0x22 - 0x53 0x6F 0x6E 0x2C 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x6E 0x6F 0x20 0x66 - 0x69 0x73 0x68 0x65 0x72 0x6D 0x61 0x6E - 0x97 0x79 0x6F 0x75 0x27 0x72 0x65 0x20 - 0x61 0x20 0x64 0x61 0x6E 0x63 0x65 0x72 - 0x2E 0x22 0x20 0x0D 0x0A 0x42 0x69 0x6C - 0x6C 0x79 0x20 0x64 0x65 0x63 0x69 0x64 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x74 0x6F 0x20 0x54 0x6F - 0x72 0x6F 0x6E 0x74 0x6F 0x20 0x74 0x6F - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x20 0x73 0x63 0x68 - 0x6F 0x6F 0x6C 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x64 0x69 0x73 0x63 0x6F 0x76 0x65 - 0x72 0x65 0x64 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 0x66 - 0x6C 0x6F 0x6F 0x72 0x20 0x77 0x61 0x73 - 0x20 0x75 0x6E 0x75 0x73 0x75 0x61 0x6C - 0x6C 0x79 0x20 0x73 0x6C 0x69 0x70 0x70 - 0x65 0x72 0x79 0x20 0x6F 0x6E 0x65 0x20 - 0x65 0x76 0x65 0x6E 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 0x73 - 0x20 0x68 0x61 0x76 0x69 0x6E 0x67 0x20 - 0x64 0x69 0x6E 0x6E 0x65 0x72 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x61 0x74 0x63 - 0x68 0x65 0x64 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x20 0x70 0x72 0x65 0x70 0x61 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x73 0x68 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x6F 0x20 0x68 0x69 0x73 0x20 0x22 0x64 - 0x61 0x6E 0x63 0x65 0x2E 0x22 0x20 0x20 - 0x4E 0x6F 0x77 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x27 0x73 0x20 0x61 0x20 0x73 0x74 - 0x61 0x72 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9057 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3B= 0x00015313 - - -CHUNK('HTOP', _help_48544F50_3B, "") -SUBFILE -#line 9065 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_28=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_28=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA3 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_28=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_28, 0x0) - BYTE - 0x03 0x03 0x47 0x65 0x6E 0x65 0x72 0x61 - 0x6C 0x0D 0x0A 0x42 0x69 0x6C 0x6C 0x79 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 - 0x68 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x61 0x6E 0x20 0x61 - 0x77 0x65 0x73 0x6F 0x6D 0x65 0x20 0x22 - 0x67 0x65 0x6E 0x65 0x72 0x61 0x6C 0x20 - 0x77 0x69 0x74 0x68 0x20 0x61 0x6E 0x20 - 0x61 0x74 0x74 0x69 0x74 0x75 0x64 0x65 - 0x22 0x20 0x69 0x6E 0x20 0x61 0x20 0x74 - 0x68 0x72 0x69 0x6C 0x6C 0x65 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 - 0x53 0x68 0x6F 0x72 0x74 0x20 0x61 0x6E - 0x64 0x20 0x73 0x74 0x72 0x6F 0x6E 0x67 - 0x20 0x61 0x73 0x20 0x61 0x20 0x74 0x61 - 0x6E 0x6B 0x2C 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x77 0x61 0x6C 0x6B 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x73 0x6C 0x6F 0x77 - 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x74 0x66 0x75 - 0x6C 0x6C 0x79 0x20 0x77 0x68 0x69 0x6C - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x61 - 0x74 0x74 0x61 0x63 0x6B 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x68 0x69 0x73 0x20 0x74 0x72 0x6F 0x6F - 0x70 0x73 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x77 0x69 0x6E 0x20 0x61 0x6E 0x20 - 0x69 0x6D 0x70 0x6F 0x72 0x74 0x61 0x6E - 0x74 0x20 0x62 0x61 0x74 0x74 0x6C 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x66 0x61 - 0x72 0x20 0x61 0x77 0x61 0x79 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x4E 0x6F 0x72 0x74 0x68 0x20 - 0x41 0x66 0x72 0x69 0x63 0x61 0x2E 0x20 - 0x20 0x4F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x72 0x63 0x68 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x4E 0x6F 0x72 0x74 0x68 - 0x20 0x41 0x66 0x72 0x69 0x63 0x61 0x6E - 0x20 0x76 0x69 0x6C 0x6C 0x61 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x66 0x61 0x63 0x65 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x65 - 0x6D 0x79 0x92 0x73 0x20 0x6C 0x65 0x61 - 0x64 0x65 0x72 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x64 0x65 0x72 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x64 0x6F 0x65 0x73 0x6E - 0x92 0x74 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x27 0x73 0x20 - 0x77 0x65 0x61 0x70 0x6F 0x6E 0x97 0x74 - 0x68 0x61 0x74 0x20 0x77 0x68 0x65 0x6E - 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 0x64 - 0x61 0x6E 0x63 0x65 0x73 0x2C 0x20 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x6D 0x61 - 0x6B 0x65 0x20 0x70 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x66 0x6F 0x72 0x67 0x65 0x74 - 0x20 0x77 0x68 0x79 0x20 0x74 0x68 0x65 - 0x79 0x20 0x77 0x65 0x72 0x65 0x20 0x66 - 0x69 0x67 0x68 0x74 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x66 - 0x69 0x72 0x73 0x74 0x20 0x70 0x6C 0x61 - 0x63 0x65 0x2E 0x0D 0x0A 0x42 0x69 0x6C - 0x6C 0x79 0x20 0x63 0x61 0x6E 0x20 0x61 - 0x76 0x6F 0x69 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x65 0x61 0x64 0x65 0x72 0x27 - 0x73 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x6B 0x69 0x63 0x6B 0x73 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x68 0x6F 0x77 0x20 - 0x63 0x61 0x6E 0x20 0x68 0x65 0x20 0x66 - 0x69 0x6E 0x61 0x6C 0x6C 0x79 0x20 0x6F - 0x75 0x74 0x77 0x69 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x64 0x65 0x72 - 0x20 0x74 0x6F 0x20 0x77 0x69 0x6E 0x20 - 0x74 0x6F 0x74 0x61 0x6C 0x20 0x76 0x69 - 0x63 0x74 0x6F 0x72 0x79 0x3F 0x20 0x20 - 0x44 0x6F 0x65 0x73 0x20 0x42 0x69 0x6C - 0x6C 0x79 0x92 0x73 0x20 0x75 0x6E 0x69 - 0x66 0x6F 0x72 0x6D 0x20 0x67 0x69 0x76 - 0x65 0x20 0x68 0x69 0x6D 0x20 0x73 0x70 - 0x65 0x63 0x69 0x61 0x6C 0x20 0x70 0x6F - 0x77 0x65 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 9211 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3C= 0x00015314 - - -CHUNK('HTOP', _help_48544F50_3C, "") -SUBFILE -#line 9219 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x42 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3C, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x72 0x65 0x6D 0x61 - 0x6E 0x0D 0x0A 0x42 0x69 0x6C 0x6C 0x79 - 0x27 0x73 0x20 0x75 0x6E 0x63 0x6C 0x65 - 0x20 0x77 0x61 0x73 0x20 0x61 0x20 0x63 - 0x6F 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x77 0x6F 0x72 0x6B - 0x65 0x72 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x68 0x61 - 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x66 0x6F 0x6C 0x6C 0x6F - 0x77 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x75 0x6E 0x63 0x6C 0x65 0x27 0x73 - 0x20 0x66 0x6F 0x6F 0x74 0x73 0x74 0x65 - 0x70 0x73 0x97 0x61 0x74 0x20 0x6C 0x65 - 0x61 0x73 0x74 0x20 0x6F 0x6E 0x20 0x66 - 0x69 0x6C 0x6D 0x2E 0x20 0x20 0x48 0x65 - 0x27 0x64 0x20 0x6C 0x6F 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x61 0x72 0x20 - 0x61 0x73 0x20 0x61 0x20 0x63 0x6F 0x6E - 0x73 0x74 0x72 0x75 0x63 0x74 0x69 0x6F - 0x6E 0x20 0x77 0x6F 0x72 0x6B 0x65 0x72 - 0x20 0x77 0x68 0x6F 0x20 0x62 0x75 0x69 - 0x6C 0x64 0x73 0x20 0x61 0x20 0x63 0x6F - 0x7A 0x79 0x20 0x63 0x61 0x62 0x69 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x6C - 0x6F 0x63 0x61 0x6C 0x20 0x6D 0x69 0x6C - 0x6C 0x69 0x6F 0x6E 0x61 0x69 0x72 0x65 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x6C 0x6C 0x69 0x6F 0x6E 0x61 - 0x69 0x72 0x65 0x20 0x64 0x69 0x73 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x67 0x65 - 0x74 0x73 0x20 0x67 0x65 0x74 0x73 0x20 - 0x74 0x61 0x6E 0x67 0x6C 0x65 0x64 0x20 - 0x75 0x70 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x69 0x6F 0x75 0x73 0x20 0x64 0x69 0x73 - 0x61 0x70 0x70 0x65 0x61 0x72 0x61 0x6E - 0x63 0x65 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x73 0x65 0x61 0x72 0x63 0x68 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E - 0x92 0x73 0x20 0x63 0x61 0x62 0x69 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x63 0x6C 0x75 - 0x65 0x73 0x2E 0x20 0x20 0x4F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x6C 0x6C - 0x20 0x69 0x73 0x20 0x61 0x20 0x6D 0x61 - 0x73 0x6B 0x20 0x77 0x68 0x6F 0x73 0x65 - 0x20 0x65 0x79 0x65 0x73 0x20 0x73 0x65 - 0x65 0x6D 0x20 0x74 0x6F 0x20 0x66 0x6F - 0x6C 0x6C 0x6F 0x77 0x20 0x68 0x69 0x73 - 0x20 0x65 0x76 0x65 0x72 0x79 0x20 0x6D - 0x6F 0x76 0x65 0x2E 0x20 0x4F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x74 0x61 0x62 0x6C - 0x65 0x20 0x69 0x73 0x20 0x61 0x20 0x6D - 0x61 0x70 0x2E 0x20 0x0D 0x0A 0x48 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6F 0x77 - 0x6E 0x65 0x72 0x20 0x62 0x65 0x65 0x6E - 0x20 0x6B 0x69 0x64 0x6E 0x61 0x70 0x70 - 0x65 0x64 0x2C 0x20 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x68 0x65 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x69 0x6E 0x20 0x4D 0x69 0x61 - 0x6D 0x69 0x20 0x6F 0x6E 0x20 0x61 0x20 - 0x62 0x75 0x73 0x69 0x6E 0x65 0x73 0x73 - 0x20 0x74 0x72 0x69 0x70 0x3F 0x20 0x20 - 0x43 0x61 0x6E 0x20 0x42 0x69 0x6C 0x6C - 0x79 0x92 0x73 0x20 0x20 0x64 0x61 0x6E - 0x63 0x69 0x6E 0x67 0x20 0x73 0x6B 0x69 - 0x6C 0x6C 0x73 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x68 0x69 0x6D 0x20 0x73 0x61 0x76 - 0x65 0x20 0x68 0x69 0x73 0x20 0x62 0x6F - 0x73 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9353 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3D= 0x00015315 - - -CHUNK('HTOP', _help_48544F50_3D, "") -SUBFILE -#line 9361 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x26 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB0 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3D, 0x0) - BYTE - 0x03 0x03 0x46 0x6C 0x65 0x61 0x20 0x4D - 0x61 0x72 0x6B 0x65 0x74 0x20 0x4D 0x61 - 0x6E 0x61 0x67 0x65 0x72 0x0D 0x0A 0x41 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 - 0x6E 0x61 0x67 0x65 0x72 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x66 0x6C 0x65 0x61 0x20 - 0x6D 0x61 0x72 0x6B 0x65 0x74 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x73 0x68 0x6F 0x77 - 0x20 0x6F 0x66 0x66 0x20 0x68 0x69 0x73 - 0x20 0x72 0x65 0x61 0x6C 0x20 0x74 0x61 - 0x6C 0x65 0x6E 0x74 0x2E 0x20 0x20 0x42 - 0x69 0x6C 0x6C 0x79 0x20 0x64 0x72 0x65 - 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 0x68 - 0x61 0x76 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x63 0x6F 0x6F 0x6C 0x20 0x63 0x61 0x72 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x73 0x2C - 0x20 0x74 0x72 0x69 0x6E 0x6B 0x65 0x74 - 0x73 0x2C 0x20 0x70 0x6F 0x70 0x63 0x6F - 0x72 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x77 0x65 0x65 0x74 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x65 0x72 0x20 0x6C - 0x61 0x64 0x79 0x20 0x77 0x69 0x74 0x68 - 0x20 0x61 0x20 0x63 0x61 0x74 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x74 0x6F 0x20 - 0x62 0x75 0x79 0x20 0x73 0x6F 0x6D 0x65 - 0x20 0x63 0x6F 0x74 0x74 0x6F 0x6E 0x20 - 0x63 0x61 0x6E 0x64 0x79 0x2C 0x20 0x68 - 0x65 0x72 0x20 0x63 0x61 0x74 0x20 0x72 - 0x75 0x6E 0x73 0x20 0x61 0x77 0x61 0x79 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x79 - 0x65 0x6C 0x6C 0x73 0x2C 0x20 0x93 0x63 - 0x61 0x74 0x63 0x68 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x63 0x61 0x74 0x63 0x68 0x20 - 0x68 0x69 0x6D 0x2C 0x20 0x61 0x6C 0x6C - 0x20 0x6D 0x79 0x20 0x6D 0x6F 0x6E 0x65 - 0x79 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x63 0x6F 0x6C 0x6C - 0x61 0x72 0x21 0x94 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x61 0x74 0x20 0x72 0x75 - 0x6E 0x73 0x20 0x73 0x63 0x61 0x72 0x65 - 0x64 0x2C 0x20 0x6A 0x75 0x6D 0x70 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x62 0x65 0x6E 0x63 0x68 0x20 0x74 0x6F - 0x20 0x62 0x65 0x6E 0x63 0x68 0x2C 0x20 - 0x63 0x72 0x61 0x77 0x6C 0x69 0x6E 0x67 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x42 - 0x69 0x6C 0x6C 0x79 0x92 0x73 0x20 0x63 - 0x61 0x72 0x74 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x64 0x61 - 0x73 0x68 0x69 0x6E 0x67 0x20 0x6F 0x66 - 0x66 0x20 0x61 0x67 0x61 0x69 0x6E 0x2E - 0x0D 0x0A 0x57 0x69 0x6C 0x6C 0x20 0x42 - 0x69 0x6C 0x6C 0x79 0x92 0x73 0x20 0x64 - 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 0x74 - 0x61 0x6C 0x65 0x6E 0x74 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x68 0x69 0x6D 0x20 0x64 - 0x69 0x73 0x74 0x72 0x61 0x63 0x74 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x72 0x65 0x63 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x6D 0x61 0x6E 0x92 0x73 0x20 - 0x6D 0x6F 0x6E 0x65 0x79 0x3F 0x20 0x20 - 0x41 0x6E 0x64 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x68 0x65 0x20 0x6F 0x66 0x66 - 0x65 0x72 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x20 0x72 0x65 0x77 0x61 0x72 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 9491 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3E= 0x00015316 - - -CHUNK('HTOP', _help_48544F50_3E, "") -SUBFILE -#line 9499 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2C 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3E, 0x0) - BYTE - 0x03 0x03 0x49 0x62 0x6F 0x0D 0x0A 0x42 - 0x69 0x6E 0x6F 0x92 0x73 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x69 0x73 0x20 - 0x76 0x65 0x72 0x79 0x20 0x6C 0x61 0x72 - 0x67 0x65 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x79 0x20 0x61 0x6C 0x6C 0x20 - 0x68 0x61 0x76 0x65 0x20 0x62 0x65 0x61 - 0x75 0x74 0x69 0x66 0x75 0x6C 0x20 0x77 - 0x68 0x69 0x74 0x65 0x20 0x74 0x65 0x65 - 0x74 0x68 0x2C 0x20 0x77 0x68 0x69 0x63 - 0x68 0x20 0x69 0x73 0x20 0x61 0x20 0x67 - 0x6F 0x6F 0x64 0x20 0x73 0x65 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x70 0x6F 0x69 0x6E - 0x74 0x20 0x69 0x66 0x20 0x79 0x6F 0x75 - 0x27 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x6F 0x74 0x68 - 0x70 0x61 0x73 0x74 0x65 0x20 0x62 0x75 - 0x73 0x69 0x6E 0x65 0x73 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x67 0x72 0x6F - 0x77 0x69 0x6E 0x67 0x20 0x75 0x70 0x2C - 0x20 0x74 0x68 0x65 0x72 0x65 0x20 0x77 - 0x61 0x73 0x20 0x61 0x20 0x62 0x69 0x67 - 0x20 0x6C 0x69 0x6E 0x65 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x62 0x61 - 0x74 0x68 0x72 0x6F 0x6F 0x6D 0x20 0x65 - 0x61 0x63 0x68 0x20 0x6D 0x6F 0x72 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x65 0x61 0x63 0x68 0x20 0x6E 0x69 0x67 - 0x68 0x74 0x20 0x77 0x68 0x69 0x6C 0x65 - 0x20 0x42 0x69 0x6E 0x6F 0x20 0x77 0x61 - 0x69 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x62 0x72 0x75 0x73 0x68 0x20 0x68 0x69 - 0x73 0x20 0x74 0x65 0x65 0x74 0x68 0x2E - 0x20 0x20 0x48 0x69 0x73 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x20 0x74 0x6F 0x6F - 0x6B 0x20 0x74 0x68 0x61 0x74 0x20 0x74 - 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x6C 0x61 0x70 0x20 0x6F 0x75 - 0x74 0x20 0x63 0x6F 0x6D 0x70 0x6C 0x65 - 0x78 0x20 0x72 0x68 0x79 0x74 0x68 0x6D - 0x73 0x2E 0x20 0x20 0x54 0x68 0x65 0x6E - 0x20 0x42 0x69 0x6E 0x6F 0x20 0x61 0x6E - 0x64 0x20 0x68 0x69 0x73 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x73 0x20 0x73 - 0x61 0x6E 0x67 0x20 0x74 0x68 0x65 0x73 - 0x65 0x20 0x73 0x6F 0x6E 0x67 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x61 0x72 0x6B 0x65 0x74 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x77 0x68 0x69 0x6C 0x65 - 0x20 0x68 0x69 0x73 0x20 0x66 0x61 0x74 - 0x68 0x65 0x72 0x20 0x73 0x6F 0x6C 0x64 - 0x20 0x74 0x6F 0x6F 0x74 0x68 0x70 0x61 - 0x73 0x74 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x79 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x67 0x61 0x74 0x68 0x65 0x72 - 0x65 0x64 0x20 0x71 0x75 0x69 0x74 0x65 - 0x20 0x61 0x20 0x63 0x72 0x6F 0x77 0x64 - 0x2E 0x20 0x20 0x42 0x69 0x6E 0x6F 0x20 - 0x6C 0x6F 0x76 0x65 0x64 0x20 0x74 0x68 - 0x65 0x20 0x61 0x74 0x74 0x65 0x6E 0x74 - 0x69 0x6F 0x6E 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x64 0x65 0x63 0x69 0x64 0x65 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x61 0x20 - 0x6C 0x69 0x66 0x65 0x20 0x61 0x73 0x20 - 0x61 0x6E 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x77 0x61 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x68 0x69 0x6D 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9630 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_3F= 0x00015317 - - -CHUNK('HTOP', _help_48544F50_3F, "") -SUBFILE -#line 9638 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_3F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_44=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x26 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_44=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3F 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDB 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_44=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_44, 0x0) - BYTE - 0x03 0x03 0x54 0x75 0x74 0x6F 0x72 0x0D - 0x0A 0x42 0x69 0x6E 0x6F 0x20 0x74 0x75 - 0x74 0x6F 0x72 0x65 0x64 0x20 0x6D 0x61 - 0x6E 0x79 0x20 0x79 0x6F 0x75 0x6E 0x67 - 0x65 0x72 0x20 0x62 0x72 0x6F 0x74 0x68 - 0x65 0x72 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x75 0x73 0x69 0x6E 0x73 0x20 - 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 0x66 - 0x61 0x6D 0x69 0x6C 0x79 0x20 0x77 0x68 - 0x69 0x6C 0x65 0x20 0x74 0x68 0x65 0x79 - 0x20 0x77 0x65 0x72 0x65 0x20 0x69 0x6E - 0x20 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x74 0x75 - 0x74 0x6F 0x72 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x62 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x74 0x65 0x61 0x63 0x68 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x61 0x6E 0x63 0x69 - 0x65 0x6E 0x74 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x6C 0x61 0x63 0x65 0x73 0x20 0x62 0x79 - 0x20 0x61 0x63 0x74 0x75 0x61 0x6C 0x6C - 0x79 0x20 0x67 0x6F 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x72 0x65 0x2C 0x20 0x6F - 0x6E 0x20 0x61 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x21 0x20 0x20 0x4B 0x69 0x64 0x73 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x42 0x69 0x6E 0x6F - 0x20 0x61 0x73 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x74 0x75 0x74 0x6F 0x72 0x97 - 0x77 0x69 0x74 0x68 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x6C 0x65 0x61 0x72 0x6E 0x69 - 0x6E 0x67 0x20 0x69 0x73 0x20 0x61 0x6E - 0x20 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 - 0x72 0x65 0x2E 0x20 0x0D 0x0A 0x42 0x69 - 0x6E 0x6F 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x76 0x69 0x73 0x69 0x74 0x20 0x74 - 0x68 0x65 0x20 0x53 0x70 0x6F 0x6F 0x6B - 0x79 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x74 0x75 0x74 0x6F - 0x72 0x2E 0x20 0x20 0x46 0x69 0x72 0x73 - 0x74 0x20 0x74 0x68 0x65 0x79 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x70 0x72 0x65 0x68 0x69 0x73 0x74 - 0x6F 0x72 0x69 0x63 0x20 0x63 0x61 0x76 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x61 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x74 0x68 0x65 0x6D 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x63 0x61 0x76 - 0x65 0x20 0x70 0x61 0x69 0x6E 0x74 0x69 - 0x6E 0x67 0x73 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x69 0x73 0x20 0x61 0x20 0x62 0x69 0x67 - 0x20 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x79 0x20 0x68 0x61 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x72 0x75 0x6E 0x20 - 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 0x62 - 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x2E 0x20 0x0D 0x0A 0x4E 0x65 0x78 0x74 - 0x20 0x74 0x68 0x65 0x79 0x20 0x6C 0x61 - 0x6E 0x64 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x61 0x20 0x74 0x72 0x6F 0x70 0x69 0x63 - 0x61 0x6C 0x20 0x68 0x75 0x74 0x20 0x77 - 0x68 0x65 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x72 0x65 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x61 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x20 0x63 - 0x68 0x65 0x73 0x74 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x62 0x79 0x20 0x61 0x6E 0x63 - 0x69 0x65 0x6E 0x74 0x20 0x65 0x78 0x70 - 0x6C 0x6F 0x72 0x65 0x72 0x73 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x61 0x20 0x63 0x68 - 0x61 0x74 0x74 0x65 0x72 0x69 0x6E 0x67 - 0x20 0x73 0x6B 0x75 0x6C 0x6C 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x74 0x68 0x65 0x6D 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x6F 0x75 - 0x74 0x21 0x20 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x20 0x42 0x69 0x6E 0x6F 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x73 - 0x74 0x75 0x64 0x65 0x6E 0x74 0x73 0x20 - 0x73 0x74 0x61 0x79 0x20 0x74 0x6F 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x74 0x72 0x65 0x61 0x73 0x75 0x72 - 0x65 0x20 0x63 0x68 0x65 0x73 0x74 0x20 - 0x6F 0x72 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x79 0x20 0x67 0x6F 0x20 - 0x6F 0x6E 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x6E 0x65 0x78 0x74 0x20 0x6C - 0x6F 0x63 0x61 0x74 0x69 0x6F 0x6E 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9804 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_40= 0x00015318 - - -CHUNK('HTOP', _help_48544F50_40, "") -SUBFILE -#line 9812 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_40, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC7 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x45 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x65 0x72 0x0D 0x0A 0x0A 0x42 - 0x61 0x73 0x65 0x64 0x20 0x6F 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x65 0x78 0x70 0x65 - 0x72 0x69 0x65 0x6E 0x63 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 - 0x72 0x6B 0x65 0x74 0x70 0x6C 0x61 0x63 - 0x65 0x73 0x20 0x6F 0x66 0x20 0x49 0x62 - 0x6F 0x6C 0x61 0x6E 0x64 0x2C 0x20 0x42 - 0x69 0x6E 0x6F 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x61 0x6E 0x20 - 0x65 0x78 0x63 0x65 0x6C 0x6C 0x65 0x6E - 0x74 0x20 0x73 0x74 0x72 0x65 0x65 0x74 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x65 0x72 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x43 0x72 0x6F 0x77 0x64 0x73 - 0x20 0x67 0x61 0x74 0x68 0x65 0x72 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x72 0x79 0x20 0x74 0x6F 0x20 0x69 0x6D - 0x69 0x74 0x61 0x74 0x65 0x20 0x68 0x69 - 0x73 0x20 0x64 0x61 0x6E 0x63 0x65 0x20 - 0x6D 0x6F 0x76 0x65 0x73 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x61 0x6E 0x20 0x61 0x6C 0x69 - 0x65 0x6E 0x20 0x73 0x70 0x61 0x63 0x65 - 0x73 0x68 0x69 0x70 0x20 0x6C 0x61 0x6E - 0x64 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x72 0x65 0x65 0x74 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x77 0x6F 0x20 - 0x61 0x6C 0x69 0x65 0x6E 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x73 0x20 0x77 0x61 0x6E - 0x74 0x20 0x42 0x69 0x6E 0x6F 0x20 0x74 - 0x6F 0x20 0x63 0x6F 0x6D 0x65 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x70 0x6C 0x61 0x6E 0x65 0x74 0x20 0x74 - 0x6F 0x20 0x74 0x65 0x61 0x63 0x68 0x20 - 0x65 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 - 0x20 0x74 0x68 0x65 0x72 0x65 0x20 0x68 - 0x6F 0x77 0x20 0x74 0x6F 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x2C 0x20 0x63 0x61 0x6E - 0x20 0x68 0x65 0x20 0x72 0x75 0x6E 0x20 - 0x74 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x65 0x73 0x63 - 0x61 0x70 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 9923 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_41= 0x00015319 - - -CHUNK('HTOP', _help_48544F50_41, "") -SUBFILE -#line 9931 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_41, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_41=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_41=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_41=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_41, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x69 0x63 0x20 - 0x4D 0x61 0x73 0x74 0x65 0x72 0x0D 0x0A - 0x42 0x69 0x6E 0x6F 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x6D 0x75 0x73 - 0x69 0x63 0x69 0x61 0x6E 0x20 0x77 0x68 - 0x6F 0x20 0x67 0x65 0x74 0x73 0x20 0x66 - 0x6F 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x20 - 0x62 0x79 0x20 0x66 0x61 0x6E 0x73 0x20 - 0x65 0x76 0x65 0x72 0x79 0x77 0x68 0x65 - 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x68 - 0x61 0x76 0x65 0x20 0x61 0x20 0x6D 0x6F - 0x6D 0x65 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x64 0x61 0x6E 0x63 0x65 0x72 - 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 0x68 - 0x69 0x73 0x20 0x62 0x61 0x6E 0x64 0x20 - 0x67 0x65 0x74 0x73 0x20 0x73 0x69 0x63 - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x42 0x69 - 0x6E 0x6F 0x20 0x6D 0x75 0x73 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x61 0x20 0x72 - 0x65 0x70 0x6C 0x61 0x63 0x65 0x6D 0x65 - 0x6E 0x74 0x2C 0x20 0x68 0x65 0x20 0x66 - 0x6C 0x69 0x65 0x73 0x20 0x61 0x6C 0x6C - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x77 0x6F 0x72 0x6C 0x64 0x20 - 0x74 0x6F 0x20 0x68 0x6F 0x6C 0x64 0x20 - 0x74 0x72 0x79 0x6F 0x75 0x74 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x6C 0x69 - 0x6E 0x65 0x20 0x75 0x70 0x20 0x66 0x6F - 0x72 0x20 0x6D 0x69 0x6C 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x69 0x6C 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x64 0x61 0x6E - 0x63 0x65 0x20 0x69 0x6E 0x20 0x66 0x72 - 0x6F 0x6E 0x74 0x20 0x6F 0x66 0x20 0x42 - 0x69 0x6E 0x6F 0x2E 0x20 0x57 0x68 0x6F - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10039 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_42= 0x0001531a - - -CHUNK('HTOP', _help_48544F50_42, "") -SUBFILE -#line 10047 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_42, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_40=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_42, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_40=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x12 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC2 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_40=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_40, 0x0) - BYTE - 0x03 0x03 0x64 0x69 0x73 0x63 0x6F 0x76 - 0x65 0x72 0x65 0x64 0x0D 0x0A 0x4C 0x61 - 0x74 0x65 0x20 0x61 0x74 0x20 0x6E 0x69 - 0x67 0x68 0x74 0x2C 0x20 0x42 0x6F 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x77 0x72 - 0x69 0x74 0x65 0x20 0x73 0x74 0x6F 0x72 - 0x69 0x65 0x73 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x41 0x66 0x72 0x69 0x63 0x61 - 0x20 0x61 0x6E 0x64 0x20 0x69 0x74 0x73 - 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 0x2E - 0x20 0x20 0x48 0x65 0x92 0x64 0x20 0x73 - 0x65 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x6F 0x72 0x69 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x4E 0x65 0x77 0x20 0x59 - 0x6F 0x72 0x6B 0x20 0x61 0x6E 0x64 0x20 - 0x43 0x61 0x6C 0x69 0x66 0x6F 0x72 0x6E - 0x69 0x61 0x20 0x74 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x69 0x66 0x20 0x61 0x6E 0x79 - 0x6F 0x6E 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x70 0x75 0x62 0x6C 0x69 0x73 - 0x68 0x20 0x74 0x68 0x65 0x6D 0x20 0x6F - 0x72 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x0D 0x0A 0x4F 0x6E 0x65 0x20 - 0x64 0x61 0x79 0x2C 0x20 0x68 0x65 0x20 - 0x67 0x6F 0x74 0x20 0x61 0x20 0x6C 0x65 - 0x74 0x74 0x65 0x72 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x20 0x62 0x6F 0x6F 0x6B - 0x20 0x63 0x6F 0x6D 0x70 0x61 0x6E 0x79 - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x61 - 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x6D 0x61 0x6B 0x65 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 - 0x73 0x74 0x6F 0x72 0x69 0x65 0x73 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 0x62 - 0x6F 0x6F 0x6B 0x2E 0x20 0x20 0x42 0x6F - 0x20 0x66 0x6C 0x65 0x77 0x20 0x74 0x6F - 0x20 0x4E 0x65 0x77 0x20 0x59 0x6F 0x72 - 0x6B 0x2C 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x6E 0x20 0x54 0x69 0x6D 0x65 0x73 0x20 - 0x53 0x71 0x75 0x61 0x72 0x65 0x20 0x68 - 0x65 0x20 0x6D 0x65 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x72 0x6F 0x64 0x75 0x63 0x65 0x72 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x2C 0x20 0x77 - 0x68 0x6F 0x20 0x77 0x61 0x6E 0x74 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x42 0x6F 0x27 0x73 0x20 0x73 - 0x74 0x6F 0x72 0x79 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x74 0x6F 0x6F 0x2E 0x20 - 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 0x74 - 0x6F 0x6F 0x6B 0x20 0x6F 0x6E 0x65 0x20 - 0x6C 0x6F 0x6F 0x6B 0x20 0x61 0x74 0x20 - 0x68 0x69 0x6D 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x65 0x61 0x6C 0x69 0x7A 0x65 0x64 - 0x20 0x42 0x6F 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x61 0x6C 0x73 0x6F 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x72 0x66 0x65 0x63 0x74 0x20 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x61 0x72 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x97 0x61 0x73 0x20 0x68 0x69 0x6D - 0x73 0x65 0x6C 0x66 -ENDCHUNK - - -ENDCHUNK -#line 10175 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_43= 0x0001531b - - -CHUNK('HTOP', _help_48544F50_43, "") -SUBFILE -#line 10183 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_43, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_43=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_43=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFF 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_43=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_43, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x0D 0x0A 0x42 0x6F 0x20 0x69 0x6D - 0x61 0x67 0x69 0x6E 0x65 0x73 0x20 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x64 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x61 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x41 0x66 0x74 0x65 0x72 0x20 - 0x6B 0x69 0x64 0x73 0x20 0x68 0x61 0x64 - 0x20 0x67 0x6F 0x6E 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x61 0x20 - 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x20 0x61 0x6E - 0x64 0x20 0x65 0x61 0x74 0x65 0x6E 0x20 - 0x6C 0x6F 0x74 0x73 0x20 0x6F 0x66 0x20 - 0x63 0x61 0x6E 0x64 0x79 0x2C 0x20 0x68 - 0x65 0x27 0x64 0x20 0x67 0x72 0x65 0x65 - 0x74 0x20 0x74 0x68 0x65 0x6D 0x20 0x62 - 0x79 0x20 0x73 0x61 0x79 0x69 0x6E 0x67 - 0x2C 0x20 0x93 0x59 0x6F 0x2C 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x77 0x69 0x64 0x65 - 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x75 - 0x70 0x20 0x61 0x74 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6F - 0x70 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x92 0x73 0x20 0x6D 0x6F - 0x75 0x74 0x68 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x73 0x20 0x62 0x6F 0x78 - 0x69 0x6E 0x67 0x20 0x67 0x6C 0x6F 0x76 - 0x65 0x73 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x61 0x73 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x6B 0x69 0x64 0x20 0x73 - 0x74 0x65 0x70 0x73 0x20 0x75 0x70 0x20 - 0x74 0x6F 0x20 0x42 0x6F 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x76 0x69 0x6C 0x20 - 0x74 0x6F 0x6F 0x74 0x68 0x20 0x66 0x61 - 0x69 0x72 0x79 0x2C 0x20 0x64 0x72 0x65 - 0x73 0x73 0x65 0x64 0x20 0x61 0x73 0x20 - 0x61 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x77 - 0x6F 0x6D 0x61 0x6E 0x20 0x6E 0x61 0x6D - 0x65 0x64 0x20 0x4D 0x61 0x72 0x74 0x68 - 0x61 0x2C 0x20 0x64 0x61 0x6E 0x63 0x65 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 0x20 - 0x6B 0x69 0x63 0x6B 0x73 0x20 0x42 0x6F - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x77 0x61 0x79 0x2E - 0x20 0x20 0x42 0x6F 0x20 0x66 0x61 0x69 - 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E 0x20 0x20 0x4D 0x61 0x72 0x74 - 0x68 0x61 0x20 0x77 0x61 0x6C 0x6B 0x73 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x2C 0x20 0x70 0x6C - 0x61 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x70 0x75 0x6C 0x6C 0x20 0x61 - 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6B 0x69 0x64 0x92 0x73 0x20 - 0x74 0x65 0x65 0x74 0x68 0x2E 0x20 0x0D - 0x0A 0x57 0x68 0x6F 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 - 0x68 0x65 0x20 0x77 0x69 0x63 0x6B 0x65 - 0x64 0x20 0x74 0x6F 0x6F 0x74 0x68 0x20 - 0x66 0x61 0x69 0x72 0x79 0x3F 0x20 0x20 - 0x49 0x73 0x20 0x42 0x6F 0x20 0x74 0x6F - 0x6F 0x20 0x62 0x69 0x67 0x20 0x74 0x6F - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x75 0x70 - 0x20 0x61 0x6E 0x64 0x20 0x67 0x65 0x74 - 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x77 0x61 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 10320 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_44= 0x0001531c - - -CHUNK('HTOP', _help_48544F50_44, "") -SUBFILE -#line 10328 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_44, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_93=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_44, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_93=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_93=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_93, 0x0) - BYTE - 0x03 0x03 0x41 0x73 0x74 0x72 0x6F 0x6E - 0x61 0x75 0x74 0x0D 0x0A 0x45 0x76 0x65 - 0x6E 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 - 0x20 0x68 0x65 0x20 0x64 0x6F 0x65 0x73 - 0x6E 0x92 0x74 0x20 0x6C 0x6F 0x6F 0x6B - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x2C 0x20 0x42 0x6F 0x20 0x69 0x73 - 0x20 0x70 0x72 0x65 0x74 0x74 0x79 0x20 - 0x67 0x6F 0x6F 0x64 0x20 0x61 0x74 0x20 - 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x48 0x65 0x20 0x6C 0x65 0x61 - 0x72 0x6E 0x65 0x64 0x20 0x69 0x74 0x20 - 0x6B 0x69 0x63 0x6B 0x20 0x62 0x6F 0x78 - 0x69 0x6E 0x67 0x2E 0x20 0x20 0x53 0x6F - 0x20 0x69 0x74 0x20 0x73 0x65 0x65 0x6D - 0x73 0x20 0x6E 0x61 0x74 0x75 0x72 0x61 - 0x6C 0x20 0x66 0x6F 0x72 0x20 0x42 0x6F - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x6E 0x20 0x61 0x73 0x74 0x72 - 0x6F 0x6E 0x61 0x75 0x74 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x6F 0x75 0x6E - 0x63 0x65 0x20 0x61 0x6C 0x6F 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x6E - 0x64 0x73 0x63 0x61 0x70 0x65 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x20 0x62 0x69 - 0x67 0x20 0x72 0x75 0x62 0x62 0x65 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x61 0x20 0x66 - 0x75 0x6E 0x6E 0x79 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x20 0x6D 0x69 0x67 0x68 0x74 - 0x20 0x68 0x61 0x70 0x70 0x65 0x6E 0x2E - 0x20 0x42 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x69 0x73 0x20 0x77 - 0x65 0x69 0x67 0x68 0x74 0x6C 0x65 0x73 - 0x73 0x2C 0x20 0x42 0x6F 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x73 0x20 0x74 0x6F 0x20 - 0x73 0x74 0x72 0x65 0x74 0x63 0x68 0x20 - 0x77 0x69 0x74 0x68 0x20 0x65 0x76 0x65 - 0x72 0x79 0x20 0x62 0x6F 0x75 0x6E 0x63 - 0x65 0x2E 0x20 0x20 0x49 0x66 0x20 0x68 - 0x65 0x20 0x6B 0x65 0x65 0x70 0x73 0x20 - 0x74 0x68 0x69 0x73 0x20 0x75 0x70 0x2C - 0x20 0x68 0x65 0x20 0x77 0x6F 0x6E 0x92 - 0x74 0x20 0x66 0x69 0x74 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x63 0x6B 0x65 0x74 0x20 0x66 0x6F - 0x72 0x20 0x68 0x69 0x73 0x20 0x72 0x69 - 0x64 0x65 0x20 0x68 0x6F 0x6D 0x65 0x2E - 0x20 0x20 0x43 0x61 0x6E 0x20 0x42 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x62 0x6F - 0x75 0x6E 0x63 0x69 0x6E 0x67 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x68 0x72 0x69 0x6E - 0x6B 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x6F 0x20 0x66 0x69 0x74 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10449 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_45= 0x0001531d - - -CHUNK('HTOP', _help_48544F50_45, "") -SUBFILE -#line 10457 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_45, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_46=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_46=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x6D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_46=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_46, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x20 0x43 - 0x6F 0x6F 0x72 0x64 0x69 0x6E 0x61 0x74 - 0x6F 0x72 0x0D 0x0A 0x42 0x6F 0x20 0x77 - 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 0x20 - 0x67 0x75 0x69 0x64 0x65 0x2E 0x20 0x48 - 0x65 0x20 0x69 0x6D 0x61 0x67 0x69 0x6E - 0x65 0x73 0x20 0x68 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x6F 0x6F 0x6B - 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x53 - 0x6F 0x75 0x74 0x68 0x20 0x6F 0x66 0x20 - 0x46 0x72 0x61 0x6E 0x63 0x65 0x20 0x74 - 0x6F 0x20 0x76 0x69 0x65 0x77 0x20 0x63 - 0x61 0x76 0x65 0x20 0x64 0x72 0x61 0x77 - 0x69 0x6E 0x67 0x73 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x74 0x68 0x65 0x72 0x65 - 0x20 0x69 0x73 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x20 0x6C 0x75 0x72 0x6B - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x76 0x65 0x2E - 0x20 0x20 0x53 0x6F 0x6D 0x65 0x20 0x74 - 0x68 0x69 0x65 0x76 0x65 0x73 0x20 0x68 - 0x61 0x76 0x65 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x73 0x74 0x6F 0x6C 0x65 0x6E 0x20 - 0x61 0x20 0x53 0x70 0x61 0x6E 0x69 0x73 - 0x68 0x20 0x41 0x72 0x6D 0x61 0x64 0x61 - 0x20 0x74 0x72 0x65 0x61 0x73 0x75 0x72 - 0x65 0x20 0x63 0x68 0x65 0x73 0x74 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 0x6E - 0x65 0x61 0x72 0x62 0x79 0x20 0x6D 0x75 - 0x73 0x65 0x75 0x6D 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x61 0x72 0x65 0x20 0x68 0x69 - 0x64 0x69 0x6E 0x67 0x20 0x6F 0x75 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x76 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x42 0x6F 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x67 - 0x72 0x6F 0x75 0x70 0x20 0x61 0x72 0x72 - 0x69 0x76 0x65 0x2C 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x72 0x65 0x20 0x69 0x6E - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x62 - 0x69 0x67 0x20 0x73 0x75 0x72 0x70 0x72 - 0x69 0x73 0x65 0x2E 0x20 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x42 0x6F 0x2C 0x20 0x77 - 0x69 0x74 0x68 0x20 0x68 0x69 0x73 0x20 - 0x63 0x72 0x65 0x61 0x74 0x69 0x76 0x65 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x6E 0x64 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x61 0x6C 0x20 0x6B 0x69 - 0x63 0x6B 0x20 0x62 0x6F 0x78 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x73 0x74 0x69 0x6E - 0x63 0x74 0x2C 0x20 0x73 0x61 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x74 0x6F 0x75 - 0x72 0x69 0x73 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x3F 0x20 - 0x20 0x57 0x68 0x61 0x74 0x20 0x68 0x61 - 0x70 0x70 0x65 0x6E 0x73 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x42 0x6F 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x74 0x6F - 0x75 0x72 0x69 0x73 0x74 0x73 0x20 0x65 - 0x6D 0x65 0x72 0x67 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x76 0x65 0x3F 0x20 0x20 0x54 0x68 - 0x65 0x79 0x20 0x61 0x72 0x65 0x6E 0x27 - 0x74 0x20 0x69 0x6E 0x20 0x46 0x72 0x61 - 0x6E 0x63 0x65 0x20 0x61 0x6E 0x79 0x20 - 0x6D 0x6F 0x72 0x65 0x2E 0x2E 0x2E 0x62 - 0x75 0x74 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x61 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x3F 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x79 0x20 0x67 0x65 0x74 - 0x20 0x68 0x6F 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 10595 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_46= 0x0001531e - - -CHUNK('HTOP', _help_48544F50_46, "") -SUBFILE -#line 10603 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_46, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_2D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_46, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_2D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x60 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x47 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_2D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_2D, 0x0) - BYTE - 0x03 0x03 0x74 0x61 0x6C 0x65 0x6E 0x74 - 0x0D 0x0A 0x42 0x61 0x63 0x6B 0x20 0x69 - 0x6E 0x20 0x47 0x65 0x72 0x6D 0x61 0x6E - 0x79 0x2C 0x20 0x42 0x65 0x6E 0x6A 0x61 - 0x6D 0x69 0x6E 0x20 0x4F 0x6C 0x69 0x76 - 0x65 0x72 0x20 0x4E 0x65 0x77 0x6D 0x61 - 0x6E 0x20 0x47 0x65 0x6F 0x72 0x67 0x65 - 0x20 0x4F 0x6C 0x64 0x68 0x61 0x75 0x73 - 0x20 0x77 0x61 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x6F 0x6E 0x20 0x6F 0x66 0x20 - 0x74 0x77 0x6F 0x20 0x63 0x69 0x72 0x63 - 0x75 0x73 0x20 0x70 0x65 0x72 0x66 0x6F - 0x72 0x6D 0x65 0x72 0x73 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x62 0x6F 0x72 0x6E - 0x2C 0x20 0x68 0x69 0x73 0x20 0x70 0x61 - 0x72 0x65 0x6E 0x74 0x73 0x20 0x28 0x61 - 0x20 0x74 0x72 0x61 0x70 0x65 0x7A 0x65 - 0x20 0x61 0x72 0x74 0x69 0x73 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x20 0x66 0x69 - 0x72 0x65 0x20 0x73 0x77 0x61 0x6C 0x6C - 0x6F 0x77 0x65 0x72 0x29 0x20 0x75 0x73 - 0x65 0x64 0x20 0x74 0x68 0x65 0x20 0x6E - 0x61 0x6D 0x65 0x73 0x20 0x6F 0x66 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x20 0x66 0x6F 0x72 0x20 0x42 0x6F - 0x6E 0x67 0x6F 0x20 0x61 0x6E 0x64 0x20 - 0x68 0x61 0x64 0x20 0x6E 0x6F 0x6E 0x65 - 0x20 0x6C 0x65 0x66 0x74 0x20 0x66 0x6F - 0x72 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x92 - 0x73 0x20 0x74 0x77 0x69 0x6E 0x20 0x62 - 0x72 0x6F 0x74 0x68 0x65 0x72 0x2C 0x20 - 0x73 0x6F 0x20 0x74 0x68 0x65 0x79 0x20 - 0x6E 0x61 0x6D 0x65 0x64 0x20 0x68 0x69 - 0x6D 0x20 0x45 0x64 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x68 0x6F 0x72 0x74 0x65 - 0x73 0x74 0x20 0x6E 0x61 0x6D 0x65 0x20 - 0x74 0x68 0x65 0x79 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x20 0x6F 0x66 0x2E 0x20 0x20 0x20 0x0D - 0x0A 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x61 - 0x6E 0x64 0x20 0x45 0x64 0x20 0x77 0x65 - 0x72 0x65 0x20 0x76 0x65 0x72 0x79 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x45 0x64 0x20 0x77 0x61 - 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x67 0x65 0x74 0x74 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 0x72 - 0x6F 0x75 0x62 0x6C 0x65 0x20 0x61 0x6E - 0x64 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x20 - 0x77 0x61 0x73 0x20 0x6D 0x75 0x63 0x68 - 0x20 0x73 0x6D 0x61 0x72 0x74 0x65 0x72 - 0x2E 0x20 0x42 0x6F 0x6E 0x67 0x6F 0x20 - 0x6F 0x66 0x74 0x65 0x6E 0x20 0x70 0x72 - 0x65 0x74 0x65 0x6E 0x64 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x45 0x64 - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x67 0x65 0x74 0x20 0x45 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x20 0x68 0x6F 0x6D - 0x65 0x20 0x6C 0x61 0x74 0x65 0x2E 0x20 - 0x20 0x54 0x68 0x61 0x74 0x92 0x73 0x20 - 0x68 0x6F 0x77 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x64 0x65 0x76 0x65 0x6C 0x6F - 0x70 0x65 0x64 0x20 0x73 0x75 0x63 0x68 - 0x20 0x61 0x20 0x74 0x61 0x6C 0x65 0x6E - 0x74 0x20 0x66 0x6F 0x72 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x97 0x62 0x79 0x20 - 0x69 0x6D 0x69 0x74 0x61 0x74 0x69 0x6E - 0x67 0x20 0x68 0x69 0x73 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x70 0x6F - 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 10741 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_47= 0x0001531f - - -CHUNK('HTOP', _help_48544F50_47, "") -SUBFILE -#line 10749 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_47, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_47=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_47=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x51 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFB 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_47=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_47, 0x0) - BYTE - 0x03 0x03 0x54 0x77 0x69 0x6E 0x20 0x42 - 0x72 0x6F 0x74 0x68 0x65 0x72 0x0D 0x0A - 0x42 0x6F 0x6E 0x67 0x6F 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x73 0x20 0x62 0x72 0x6F - 0x74 0x68 0x65 0x72 0x2C 0x20 0x45 0x64 - 0x2E 0x20 0x20 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x74 0x77 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x45 0x64 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x74 0x68 0x65 0x20 0x65 0x76 0x69 0x6C - 0x20 0x74 0x77 0x69 0x6E 0x2E 0x20 0x20 - 0x54 0x6F 0x67 0x65 0x74 0x68 0x65 0x72 - 0x20 0x74 0x68 0x65 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x74 0x72 0x79 0x20 - 0x74 0x6F 0x20 0x6F 0x75 0x74 0x73 0x6D - 0x61 0x72 0x74 0x20 0x65 0x61 0x63 0x68 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x67 0x65 0x74 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 - 0x20 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x69 0x72 0x20 0x77 - 0x61 0x79 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x61 0x20 0x68 0x61 0x75 0x6E - 0x74 0x65 0x64 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x20 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x61 0x70 0x61 0x72 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x72 0x65 0x27 0x73 0x20 0x74 0x72 - 0x6F 0x75 0x62 0x6C 0x65 0x3F 0x20 0x20 - 0x54 0x68 0x61 0x74 0x27 0x73 0x20 0x45 - 0x64 0x2C 0x20 0x72 0x69 0x67 0x68 0x74 - 0x3F 0x20 0x20 0x4F 0x72 0x20 0x69 0x73 - 0x20 0x69 0x74 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 10853 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_48= 0x00015320 - - -CHUNK('HTOP', _help_48544F50_48, "") -SUBFILE -#line 10861 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_48, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_48=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_48=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x88 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_48=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_48, 0x0) - BYTE - 0x03 0x03 0x50 0x6F 0x6C 0x69 0x63 0x65 - 0x20 0x4F 0x66 0x66 0x69 0x63 0x65 0x72 - 0x0D 0x0A 0x42 0x65 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x2D 0x6E - 0x61 0x74 0x75 0x72 0x65 0x64 0x20 0x6B - 0x69 0x6E 0x64 0x20 0x6F 0x66 0x20 0x67 - 0x75 0x79 0x2C 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x6C 0x79 0x20 0x70 0x6F 0x6C 0x69 - 0x63 0x65 0x20 0x6F 0x66 0x66 0x69 0x63 - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x6F 0x6C 0x76 0x65 0x20 0x6D 0x79 0x73 - 0x74 0x65 0x72 0x69 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x49 0x66 0x20 0x74 0x68 0x65 - 0x72 0x65 0x27 0x73 0x20 0x61 0x20 0x74 - 0x68 0x65 0x66 0x74 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x63 0x72 0x69 0x6D 0x69 0x6E 0x61 - 0x6C 0x20 0x65 0x73 0x63 0x61 0x70 0x65 - 0x73 0x20 0x6F 0x6E 0x20 0x61 0x20 0x70 - 0x6C 0x61 0x6E 0x65 0x2C 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x42 0x6F 0x6E 0x67 - 0x6F 0x20 0x63 0x61 0x74 0x63 0x68 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x6F 0x6F - 0x6B 0x3F 0x20 0x20 0x57 0x6F 0x75 0x6C - 0x64 0x20 0x68 0x65 0x20 0x68 0x61 0x76 - 0x65 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x63 0x6F 0x76 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 0x6F - 0x6C 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x79 0x73 0x74 0x65 0x72 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 10958 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_49= 0x00015321 - - -CHUNK('HTOP', _help_48544F50_49, "") -SUBFILE -#line 10966 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_49, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_49=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_49=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB4 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF5 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_49=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_49, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x69 0x76 0x61 0x74 - 0x65 0x20 0x43 0x61 0x72 0x72 0x69 0x65 - 0x72 0x0D 0x0A 0x42 0x6F 0x6E 0x67 0x6F - 0x20 0x66 0x65 0x65 0x6C 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x61 0x73 0x20 0x61 - 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x70 0x72 0x69 - 0x76 0x61 0x74 0x65 0x20 0x61 0x69 0x72 - 0x6C 0x69 0x6E 0x65 0x20 0x63 0x61 0x72 - 0x72 0x69 0x65 0x72 0x2C 0x20 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x6F 0x66 0x66 0x20 0x68 - 0x69 0x73 0x20 0x61 0x62 0x69 0x6C 0x69 - 0x74 0x79 0x20 0x74 0x6F 0x20 0x63 0x72 - 0x65 0x61 0x74 0x65 0x20 0x61 0x64 0x76 - 0x65 0x6E 0x74 0x75 0x72 0x65 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x66 0x6C 0x79 0x20 0x74 0x6F - 0x20 0x65 0x78 0x6F 0x74 0x69 0x63 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x69 0x63 0x6B 0x20 - 0x75 0x70 0x20 0x68 0x69 0x73 0x20 0x70 - 0x61 0x73 0x73 0x65 0x6E 0x67 0x65 0x72 - 0x73 0x97 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x20 0x73 0x70 0x6F 0x72 0x74 0x73 0x20 - 0x66 0x69 0x67 0x75 0x72 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x6D 0x61 0x79 0x62 - 0x65 0x20 0x65 0x76 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x70 0x72 0x65 0x73 0x69 - 0x64 0x65 0x6E 0x74 0x21 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x69 0x66 0x20 0x68 0x65 0x20 0x67 0x65 - 0x74 0x73 0x20 0x6C 0x6F 0x73 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x74 0x69 0x6D - 0x65 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x6D 0x65 0x65 0x74 0x73 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x70 0x72 0x65 0x68 0x69 0x73 0x74 - 0x6F 0x72 0x69 0x63 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x61 0x72 0x67 0x75 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6C 0x61 0x6E 0x67 0x75 0x61 0x67 - 0x65 0x20 0x68 0x65 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x73 0x74 0x61 0x6E 0x64 0x3F - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x79 0x20 0x74 0x61 0x6B 0x65 - 0x20 0x6F 0x76 0x65 0x72 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C - 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x68 0x65 0x20 0x67 0x65 0x74 - 0x20 0x68 0x6F 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 11082 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4A= 0x00015322 - - -CHUNK('HTOP', _help_48544F50_4A, "") -SUBFILE -#line 11090 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x30 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5, 0x0) - BYTE - 0x03 0x03 0x62 0x61 0x73 0x6B 0x65 0x74 - 0x62 0x61 0x6C 0x6C 0x0D 0x0A 0x0D 0x0A - 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 - 0x66 0x69 0x6C 0x6D 0x20 0x64 0x69 0x72 - 0x65 0x63 0x74 0x6F 0x72 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x77 0x61 0x73 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x68 0x6F 0x6F 0x6C 0x20 0x67 0x79 - 0x6D 0x20 0x73 0x68 0x6F 0x6F 0x74 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x62 0x61 0x73 - 0x6B 0x65 0x74 0x62 0x61 0x6C 0x6C 0x20 - 0x64 0x6F 0x63 0x75 0x6D 0x65 0x6E 0x74 - 0x61 0x72 0x79 0x2C 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x69 0x67 0x68 0x74 0x73 0x20 0x69 - 0x6E 0x20 0x63 0x65 0x6E 0x74 0x65 0x72 - 0x20 0x63 0x6F 0x75 0x72 0x74 0x20 0x62 - 0x75 0x72 0x6E 0x65 0x64 0x20 0x6F 0x75 - 0x74 0x2E 0x20 0x20 0x4E 0x6F 0x20 0x6F - 0x6E 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x72 0x65 0x61 0x63 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x69 0x67 0x68 0x74 - 0x20 0x65 0x78 0x63 0x65 0x70 0x74 0x20 - 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x68 - 0x61 0x64 0x20 0x61 0x6E 0x20 0x69 0x64 - 0x65 0x61 0x21 0x20 0x20 0x57 0x69 0x74 - 0x68 0x20 0x61 0x20 0x6C 0x69 0x67 0x68 - 0x74 0x20 0x62 0x75 0x6C 0x62 0x20 0x69 - 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x68 0x61 - 0x6E 0x64 0x2C 0x20 0x43 0x68 0x61 0x72 - 0x6C 0x69 0x65 0x20 0x6C 0x65 0x61 0x70 - 0x74 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x61 0x69 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x75 0x74 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x62 0x75 - 0x6C 0x62 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6F 0x63 0x6B 0x65 0x74 - 0x2E 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x20 0x6A 0x75 0x6D 0x70 0x65 0x64 - 0x20 0x61 0x67 0x61 0x69 0x6E 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x70 0x75 0x6E 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x75 0x72 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x75 0x6C 0x62 0x2E - 0x20 0x48 0x65 0x20 0x6B 0x65 0x70 0x74 - 0x20 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x73 0x70 0x69 - 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x75 0x6E - 0x74 0x69 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x62 0x75 0x6C 0x62 0x20 0x77 0x61 0x73 - 0x20 0x63 0x6F 0x6D 0x70 0x6C 0x65 0x74 - 0x65 0x6C 0x79 0x20 0x73 0x63 0x72 0x65 - 0x77 0x65 0x64 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x73 0x6F 0x63 - 0x6B 0x65 0x74 0x2E 0x20 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x73 0x61 0x69 0x64 - 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x2C 0x20 0x93 0x54 0x68 - 0x69 0x73 0x20 0x6B 0x69 0x64 0x20 0x69 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 - 0x6E 0x67 0x21 0x94 0x20 0x61 0x6E 0x64 - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x66 0x69 0x6C 0x6D - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11220 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4B= 0x00015323 - - -CHUNK('HTOP', _help_48544F50_4B, "") -SUBFILE -#line 11228 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4A, 0x0) - BYTE - 0x03 0x03 0x53 0x6B 0x65 0x6C 0x65 0x74 - 0x6F 0x6E 0x0D 0x0A 0x43 0x68 0x61 0x72 - 0x6C 0x69 0x65 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x70 0x6C - 0x61 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E - 0x20 0x6E 0x61 0x6D 0x65 0x64 0x20 0x93 - 0x42 0x6F 0x6E 0x65 0x73 0x94 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x73 0x63 0x61 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 0x20 0x49 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 - 0x61 0x20 0x6B 0x6E 0x69 0x67 0x68 0x74 - 0x20 0x6F 0x77 0x6E 0x73 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x2C 0x20 0x63 0x72 - 0x65 0x65 0x70 0x79 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x6B 0x6E 0x69 0x67 0x68 0x74 0x20 - 0x68 0x61 0x73 0x20 0x6E 0x6F 0x74 0x20 - 0x73 0x6C 0x65 0x70 0x74 0x20 0x69 0x6E - 0x20 0x79 0x65 0x61 0x72 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x61 0x6E 0x64 0x65 - 0x72 0x73 0x20 0x61 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 - 0x69 0x67 0x68 0x62 0x6F 0x72 0x68 0x6F - 0x6F 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x69 0x67 0x68 0x74 0x2E 0x20 0x20 - 0x48 0x69 0x73 0x20 0x6C 0x6F 0x75 0x64 - 0x20 0x63 0x6C 0x61 0x6E 0x6B 0x69 0x6E - 0x67 0x20 0x6B 0x65 0x65 0x70 0x73 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x65 0x6E 0x61 0x6E 0x74 0x73 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x68 - 0x6F 0x75 0x73 0x65 0x20 0x61 0x77 0x61 - 0x6B 0x65 0x2E 0x20 0x20 0x42 0x6F 0x6E - 0x65 0x73 0x20 0x69 0x73 0x20 0x64 0x65 - 0x74 0x65 0x72 0x6D 0x69 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x6E 0x69 - 0x67 0x68 0x74 0x20 0x74 0x69 0x72 0x65 - 0x64 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 - 0x20 0x74 0x6F 0x20 0x73 0x6C 0x65 0x65 - 0x70 0x2E 0x20 0x20 0x42 0x6F 0x6E 0x65 - 0x73 0x20 0x73 0x6E 0x65 0x61 0x6B 0x73 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x6E 0x69 - 0x67 0x68 0x74 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x20 0x61 0x20 0x74 0x68 0x69 0x65 - 0x66 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6B 0x6E 0x69 0x67 0x68 0x74 0x20 0x63 - 0x68 0x61 0x73 0x65 0x73 0x20 0x42 0x6F - 0x6E 0x65 0x73 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x74 0x72 0x79 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x63 0x61 0x74 - 0x63 0x68 0x20 0x68 0x69 0x6D 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x42 0x6F 0x6E 0x65 - 0x73 0x20 0x73 0x69 0x6D 0x70 0x6C 0x79 - 0x20 0x6A 0x75 0x6D 0x70 0x73 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x6E 0x69 0x67 0x68 0x74 0x2E 0x20 - 0x20 0x57 0x69 0x6C 0x6C 0x20 0x42 0x6F - 0x6E 0x65 0x73 0x20 0x77 0x65 0x61 0x72 - 0x20 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x6E 0x69 0x67 0x68 0x74 0x3F - 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x69 0x67 0x68 - 0x62 0x6F 0x72 0x68 0x6F 0x6F 0x64 0x20 - 0x73 0x6C 0x65 0x65 0x70 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 11364 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4C= 0x00015324 - - -CHUNK('HTOP', _help_48544F50_4C, "") -SUBFILE -#line 11372 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_13=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x07 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_13=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2F 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_13=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_13, 0x0) - BYTE - 0x03 0x03 0x4C 0x61 0x76 0x61 0x20 0x4C - 0x61 0x6D 0x70 0x20 0x53 0x61 0x6C 0x65 - 0x73 0x70 0x65 0x72 0x73 0x6F 0x6E 0x0D - 0x0A 0x41 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x69 0x73 0x20 0x61 0x20 0x6C 0x61 - 0x76 0x61 0x20 0x6C 0x61 0x6D 0x70 0x20 - 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E - 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 0x63 - 0x6F 0x6D 0x70 0x61 0x6E 0x79 0x20 0x73 - 0x65 0x6E 0x64 0x73 0x20 0x68 0x69 0x6D - 0x20 0x74 0x6F 0x20 0x4A 0x61 0x6D 0x61 - 0x69 0x63 0x61 0x20 0x74 0x6F 0x20 0x73 - 0x65 0x6C 0x6C 0x20 0x6C 0x61 0x76 0x61 - 0x20 0x6C 0x61 0x6D 0x70 0x73 0x2E 0x20 - 0x20 0x50 0x72 0x65 0x74 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x73 0x61 0x6C 0x65 - 0x73 0x6D 0x61 0x6E 0x20 0x69 0x73 0x20 - 0x61 0x20 0x70 0x65 0x72 0x66 0x65 0x63 - 0x74 0x20 0x72 0x6F 0x6C 0x65 0x20 0x62 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x77 0x61 - 0x6E 0x74 0x73 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x79 0x73 - 0x74 0x65 0x72 0x69 0x6F 0x75 0x73 0x20 - 0x4A 0x61 0x6D 0x61 0x69 0x63 0x61 0x6E - 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E 0x67 - 0x20 0x73 0x6B 0x75 0x6C 0x6C 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x73 0x6B 0x75 - 0x6C 0x6C 0x20 0x69 0x73 0x20 0x76 0x65 - 0x72 0x79 0x20 0x6F 0x6C 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x6B 0x6E 0x6F 0x77 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x65 0x63 - 0x72 0x65 0x74 0x20 0x69 0x6E 0x67 0x72 - 0x65 0x64 0x69 0x65 0x6E 0x74 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x62 0x61 0x6E 0x61 - 0x6E 0x61 0x2D 0x73 0x74 0x72 0x61 0x77 - 0x62 0x65 0x72 0x72 0x79 0x2D 0x70 0x69 - 0x6E 0x65 0x61 0x70 0x70 0x6C 0x65 0x20 - 0x70 0x65 0x61 0x6E 0x75 0x74 0x20 0x62 - 0x75 0x74 0x74 0x65 0x72 0x2E 0x20 0x20 - 0x49 0x66 0x20 0x43 0x68 0x61 0x72 0x6C - 0x69 0x65 0x20 0x67 0x65 0x74 0x73 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x63 0x69 - 0x70 0x65 0x2C 0x20 0x68 0x65 0x92 0x6C - 0x6C 0x20 0x73 0x65 0x6C 0x6C 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x61 0x77 0x65 - 0x73 0x6F 0x6D 0x65 0x20 0x70 0x65 0x61 - 0x6E 0x75 0x74 0x20 0x62 0x75 0x74 0x74 - 0x65 0x72 0x20 0x74 0x6F 0x20 0x65 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x61 - 0x74 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x67 - 0x65 0x2E 0x20 0x20 0x41 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x6F 0x63 0x61 0x6C - 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 0x43 - 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 0x67 - 0x65 0x74 0x73 0x20 0x61 0x20 0x74 0x61 - 0x78 0x69 0x20 0x61 0x6E 0x64 0x20 0x67 - 0x6F 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x73 0x65 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x6D 0x6F 0x75 - 0x6E 0x74 0x61 0x69 0x6E 0x20 0x74 0x6F - 0x20 0x73 0x65 0x61 0x72 0x63 0x68 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x73 0x6B 0x75 0x6C 0x6C 0x2E 0x20 0x20 - 0x53 0x6F 0x6F 0x6E 0x20 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x61 0x6E - 0x20 0x6F 0x6C 0x64 0x20 0x77 0x6F 0x6F - 0x64 0x65 0x6E 0x20 0x62 0x72 0x69 0x64 - 0x67 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x61 0x20 0x63 0x61 0x76 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x65 0x6E 0x64 0x2E - 0x20 0x20 0x48 0x65 0x92 0x73 0x20 0x61 - 0x66 0x72 0x61 0x69 0x64 0x20 0x74 0x68 - 0x65 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 0x20 - 0x73 0x74 0x72 0x6F 0x6E 0x67 0x20 0x65 - 0x6E 0x6F 0x75 0x67 0x68 0x20 0x74 0x6F - 0x20 0x68 0x6F 0x6C 0x64 0x20 0x68 0x69 - 0x6D 0x2C 0x20 0x62 0x75 0x74 0x20 0x6D - 0x75 0x73 0x74 0x20 0x67 0x65 0x74 0x20 - 0x61 0x63 0x72 0x6F 0x73 0x73 0x2E 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x43 0x68 0x61 - 0x72 0x6C 0x69 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 - 0x69 0x64 0x65 0x3F 0x20 0x41 0x6E 0x64 - 0x2C 0x20 0x69 0x66 0x20 0x68 0x65 0x20 - 0x6D 0x61 0x6B 0x65 0x73 0x20 0x69 0x74 - 0x2C 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 - 0x65 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x74 0x61 0x6C 0x6B 0x69 - 0x6E 0x67 0x20 0x73 0x6B 0x75 0x6C 0x6C - 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x76 0x65 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 11536 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4D= 0x00015325 - - -CHUNK('HTOP', _help_48544F50_4D, "") -SUBFILE -#line 11544 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A3, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x0D 0x0A 0x43 0x68 0x61 0x72 0x6C - 0x69 0x65 0x20 0x61 0x6C 0x73 0x6F 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F - 0x66 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x74 0x6F 0x75 0x72 - 0x69 0x73 0x74 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x76 0x61 0x63 0x61 0x74 0x69 - 0x6F 0x6E 0x20 0x74 0x75 0x72 0x6E 0x73 - 0x20 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 - 0x68 0x75 0x67 0x65 0x20 0x61 0x64 0x76 - 0x65 0x6E 0x74 0x75 0x72 0x65 0x21 0x20 - 0x20 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 - 0x20 0x69 0x73 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x61 0x69 0x72 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x77 0x68 0x65 0x6E - 0x20 0x73 0x75 0x64 0x64 0x65 0x6E 0x6C - 0x79 0x20 0x74 0x68 0x65 0x79 0x20 0x66 - 0x6C 0x79 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x61 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x69 0x6F 0x75 0x73 0x2C 0x20 0x68 0x65 - 0x61 0x76 0x79 0x20 0x66 0x6F 0x67 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x66 0x6F - 0x67 0x20 0x67 0x6F 0x65 0x73 0x20 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x6F 0x6E - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x74 - 0x68 0x65 0x79 0x20 0x72 0x75 0x6E 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x67 - 0x61 0x73 0x20 0x61 0x6E 0x64 0x20 0x61 - 0x72 0x65 0x20 0x66 0x6F 0x72 0x63 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x6C 0x61 0x6E - 0x64 0x2E 0x20 0x20 0x42 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6F 0x67 0x20 0x62 0x6C 0x6F 0x63 - 0x6B 0x65 0x64 0x20 0x6E 0x61 0x76 0x69 - 0x67 0x61 0x74 0x69 0x6F 0x6E 0x20 0x73 - 0x69 0x67 0x6E 0x61 0x6C 0x73 0x2C 0x20 - 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x74 0x68 0x65 0x79 0x20 - 0x61 0x72 0x65 0x2E 0x20 0x20 0x45 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x73 0x20 0x74 0x6F 0x20 - 0x43 0x68 0x61 0x72 0x6C 0x69 0x65 0x20 - 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x68 0x6F 0x6D 0x65 - 0x20 0x73 0x61 0x66 0x65 0x6C 0x79 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x43 0x68 - 0x61 0x72 0x6C 0x69 0x65 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x6E 0x6F 0x20 0x73 - 0x69 0x67 0x6E 0x73 0x20 0x6F 0x66 0x20 - 0x6C 0x69 0x66 0x65 0x20 0x61 0x6E 0x79 - 0x77 0x68 0x65 0x72 0x65 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x6E 0x2C 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x6E 0x6F 0x77 0x68 0x65 - 0x72 0x65 0x2C 0x20 0x61 0x6E 0x20 0x61 - 0x6C 0x69 0x65 0x6E 0x20 0x73 0x70 0x61 - 0x63 0x65 0x73 0x68 0x69 0x70 0x20 0x63 - 0x6F 0x6D 0x65 0x73 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x73 0x69 0x67 0x68 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x73 0x20 0x63 0x69 0x72 0x63 0x6C - 0x69 0x6E 0x67 0x20 0x73 0x6C 0x6F 0x77 - 0x6C 0x79 0x20 0x61 0x62 0x6F 0x76 0x65 - 0x20 0x74 0x68 0x65 0x6D 0x2E 0x20 0x48 - 0x61 0x76 0x65 0x20 0x74 0x68 0x65 0x79 - 0x20 0x6C 0x61 0x6E 0x64 0x65 0x64 0x20 - 0x6F 0x6E 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x74 0x3F 0x20 0x43 0x61 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x70 0x61 0x63 0x65 - 0x73 0x68 0x69 0x70 0x20 0x68 0x65 0x6C - 0x70 0x20 0x73 0x61 0x76 0x65 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x6F 0x72 0x20 0x69 - 0x73 0x20 0x69 0x74 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x74 0x6F 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x68 0x6F 0x73 0x74 0x61 0x67 0x65 0x3F - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x43 0x68 0x61 0x72 0x6C - 0x69 0x65 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x70 - 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x65 0x61 0x72 0x74 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 11689 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4E= 0x00015326 - - -CHUNK('HTOP', _help_48544F50_4E, "") -SUBFILE -#line 11697 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_75=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x22 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_75=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4C 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAF 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_75=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_75, 0x0) - BYTE - 0x03 0x03 0x4D 0x75 0x73 0x65 0x75 0x6D - 0x20 0x43 0x75 0x72 0x61 0x74 0x6F 0x72 - 0x0D 0x0A 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x69 0x73 0x20 0x64 - 0x65 0x76 0x6F 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x69 0x6E - 0x67 0x20 0x20 0x69 0x6D 0x61 0x67 0x69 - 0x6E 0x61 0x74 0x69 0x76 0x65 0x2C 0x20 - 0x6F 0x66 0x66 0x62 0x65 0x61 0x74 0x2C - 0x20 0x65 0x63 0x6C 0x65 0x63 0x74 0x69 - 0x63 0x20 0x61 0x72 0x74 0x97 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x20 0x63 0x68 0x65 0x73 - 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 0x61 - 0x72 0x6D 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x74 0x6F 0x74 0x65 0x6D 0x20 0x70 0x6F - 0x6C 0x65 0x73 0x2E 0x20 0x20 0x46 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x73 0x61 - 0x79 0x20 0x73 0x68 0x65 0x27 0x73 0x20 - 0x71 0x75 0x69 0x65 0x74 0x2C 0x20 0x74 - 0x61 0x6C 0x65 0x6E 0x74 0x65 0x64 0x2C - 0x20 0x63 0x75 0x72 0x69 0x6F 0x75 0x73 - 0x2C 0x20 0x67 0x6C 0x69 0x74 0x7A 0x79 - 0x2C 0x20 0x67 0x6C 0x61 0x6D 0x6F 0x72 - 0x6F 0x75 0x73 0x2C 0x20 0x61 0x77 0x65 - 0x73 0x6F 0x6D 0x65 0x2C 0x20 0x77 0x69 - 0x6C 0x64 0x2C 0x20 0x61 0x6E 0x64 0x2C - 0x20 0x73 0x6F 0x6D 0x65 0x74 0x69 0x6D - 0x65 0x73 0x2C 0x20 0x93 0x6E 0x6F 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x69 0x73 - 0x20 0x77 0x6F 0x72 0x6C 0x64 0x2E 0x94 - 0x20 0x20 0x48 0x6F 0x77 0x20 0x63 0x61 - 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x20 0x62 0x65 0x20 - 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x73 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x3F 0x20 0x20 0x57 0x65 - 0x6C 0x6C 0x2C 0x20 0x43 0x68 0x72 0x69 - 0x73 0x74 0x69 0x6E 0x61 0x20 0x68 0x61 - 0x73 0x20 0x61 0x20 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x20 0x74 0x61 0x6C 0x65 - 0x6E 0x74 0x2E 0x20 0x20 0x41 0x6C 0x6C - 0x20 0x73 0x68 0x65 0x20 0x68 0x61 0x73 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x69 - 0x73 0x20 0x66 0x6F 0x63 0x75 0x73 0x20 - 0x6F 0x6E 0x20 0x61 0x20 0x70 0x69 0x65 - 0x63 0x65 0x20 0x6F 0x66 0x20 0x61 0x72 - 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x68 0x65 0x20 0x61 0x63 0x74 0x75 0x61 - 0x6C 0x6C 0x79 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x73 0x68 - 0x65 0x27 0x73 0x20 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x61 0x74 0x2E 0x0D - 0x0A 0x49 0x66 0x20 0x73 0x68 0x65 0x20 - 0x66 0x6F 0x63 0x75 0x73 0x65 0x73 0x20 - 0x6F 0x6E 0x20 0x61 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x2C 0x20 0x66 0x6F 0x72 0x20 - 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 0x2C - 0x20 0x73 0x75 0x64 0x64 0x65 0x6E 0x6C - 0x79 0x20 0x73 0x68 0x65 0x20 0x62 0x65 - 0x63 0x6F 0x6D 0x65 0x73 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x21 - 0x20 0x20 0x53 0x68 0x65 0x92 0x6C 0x6C - 0x20 0x20 0x74 0x61 0x6C 0x6B 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x61 0x20 0x6D 0x75 - 0x6D 0x6D 0x79 0x2C 0x20 0x77 0x61 0x6C - 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 - 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x2C 0x20 - 0x65 0x76 0x65 0x6E 0x20 0x6C 0x6F 0x6F - 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 - 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x2E 0x20 - 0x20 0x4F 0x72 0x20 0x73 0x68 0x65 0x92 - 0x6C 0x6C 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x20 0x61 0x20 0x74 0x6F 0x74 0x65 - 0x6D 0x20 0x70 0x6F 0x6C 0x65 0x2E 0x20 - 0x20 0x4F 0x72 0x20 0x61 0x20 0x73 0x6B - 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x21 0x20 - 0x20 0x53 0x6F 0x6D 0x65 0x74 0x69 0x6D - 0x65 0x73 0x20 0x68 0x65 0x72 0x20 0x74 - 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 0x6D - 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 0x68 - 0x61 0x70 0x70 0x65 0x6E 0x20 0x77 0x69 - 0x74 0x68 0x20 0x61 0x20 0x6C 0x6F 0x75 - 0x64 0x20 0x4B 0x41 0x42 0x4F 0x4F 0x4D - 0x2C 0x20 0x77 0x68 0x69 0x63 0x68 0x20 - 0x69 0x73 0x20 0x65 0x6D 0x62 0x61 0x72 - 0x72 0x61 0x73 0x73 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x46 0x75 0x6E 0x6E 0x79 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x69 0x73 - 0x2C 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 - 0x20 0x65 0x6C 0x73 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x73 - 0x65 0x75 0x6D 0x20 0x73 0x65 0x65 0x6D - 0x73 0x20 0x74 0x6F 0x20 0x6E 0x6F 0x74 - 0x69 0x63 0x65 0x21 0x20 0x20 0x46 0x72 - 0x69 0x65 0x6E 0x64 0x73 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x69 0x74 0x92 0x73 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x68 0x65 - 0x72 0x20 0x76 0x69 0x76 0x69 0x64 0x20 - 0x69 0x6D 0x61 0x67 0x69 0x6E 0x61 0x74 - 0x69 0x6F 0x6E 0x2E 0x20 0x4F 0x6E 0x6C - 0x79 0x20 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x6B 0x6E 0x6F 0x77 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x75 0x74 0x68 0x2E 0x2E 0x2E -ENDCHUNK - - -ENDCHUNK -#line 11864 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_4F= 0x00015327 - - -CHUNK('HTOP', _help_48544F50_4F, "") -SUBFILE -#line 11872 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_4F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_4F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_4F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC7 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x05 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_4F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_4F, 0x0) - BYTE - 0x03 0x03 0x53 0x69 0x6E 0x67 0x65 0x72 - 0x0D 0x0A 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x68 0x61 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x77 - 0x61 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x61 0x20 0x73 0x69 - 0x6E 0x67 0x65 0x72 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x92 0x73 0x20 0x63 0x6F 0x6E - 0x73 0x69 0x64 0x65 0x72 0x65 0x64 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x6A 0x61 0x7A 0x7A 0x20 0x73 0x69 0x6E - 0x67 0x65 0x72 0x20 0x6F 0x6E 0x20 0x61 - 0x20 0x93 0x63 0x72 0x75 0x69 0x73 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2E 0x94 - 0x20 0x20 0x45 0x76 0x65 0x72 0x20 0x68 - 0x65 0x61 0x72 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x63 0x72 0x75 0x69 0x73 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x3F 0x20 - 0x20 0x49 0x74 0x92 0x73 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x72 0x75 - 0x69 0x73 0x65 0x20 0x73 0x68 0x69 0x70 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x61 0x69 0x72 0x70 - 0x6C 0x61 0x6E 0x65 0x2E 0x20 0x20 0x20 - 0x43 0x68 0x72 0x69 0x73 0x74 0x69 0x6E - 0x61 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 - 0x20 0x61 0x69 0x72 0x6C 0x69 0x6E 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 0x20 - 0x61 0x72 0x65 0x20 0x66 0x69 0x6E 0x65 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x74 0x61 - 0x69 0x6E 0x6D 0x65 0x6E 0x74 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x6C 0x69 0x76 0x65 - 0x20 0x6D 0x75 0x73 0x69 0x63 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x61 0x74 - 0x65 0x72 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x62 0x65 0x73 0x74 0x21 0x20 0x20 0x43 - 0x68 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x93 0x72 0x65 0x64 - 0x20 0x65 0x79 0x65 0x94 0x20 0x66 0x6C - 0x69 0x67 0x68 0x74 0x73 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x92 0x64 0x20 0x74 0x69 - 0x74 0x6C 0x65 0x20 0x68 0x65 0x72 0x20 - 0x67 0x69 0x67 0x20 0x93 0x4C 0x61 0x74 - 0x65 0x20 0x4E 0x69 0x67 0x68 0x74 0x20 - 0x77 0x69 0x74 0x68 0x20 0x43 0x68 0x72 - 0x69 0x73 0x74 0x69 0x6E 0x61 0x94 0x97 - 0x73 0x69 0x74 0x20 0x62 0x61 0x63 0x6B - 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 0x6C - 0x61 0x78 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x70 0x61 0x72 0x65 0x6E 0x74 0x73 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x6F 0x76 0x65 0x20 0x69 0x74 0x97 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x62 0x69 0x65 0x73 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x73 0x6C 0x65 0x65 0x70 0x20 0x69 0x6E - 0x20 0x6D 0x69 0x6E 0x75 0x74 0x65 0x73 - 0x2E 0x20 0x20 0x49 0x74 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x62 - 0x65 0x74 0x74 0x65 0x72 0x20 0x74 0x68 - 0x61 0x6E 0x20 0x61 0x20 0x6C 0x75 0x6C - 0x6C 0x61 0x62 0x79 0x21 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x61 0x70 - 0x70 0x65 0x6E 0x20 0x77 0x68 0x65 0x6E - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x69 - 0x6E 0x61 0x20 0x64 0x69 0x73 0x63 0x6F - 0x76 0x65 0x72 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x68 0x65 0x92 0x73 0x20 - 0x61 0x66 0x72 0x61 0x69 0x64 0x20 0x6F - 0x66 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x64 0x20 0x73 0x68 0x65 - 0x20 0x66 0x61 0x69 0x6E 0x74 0x73 0x3F - 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x72 0x65 0x20 0x62 0x65 0x20 - 0x61 0x6E 0x79 0x6F 0x6E 0x65 0x20 0x65 - 0x6C 0x73 0x65 0x20 0x6F 0x6E 0x20 0x62 - 0x6F 0x61 0x72 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x61 0x6B 0x65 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x68 0x65 0x72 0x20 0x61 0x63 - 0x74 0x3F 0x20 0x20 0x4D 0x61 0x79 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x65 0x20 0x62 0x61 0x62 0x79 0x20 0x74 - 0x68 0x61 0x74 0x20 0x69 0x73 0x6E 0x92 - 0x74 0x20 0x61 0x6C 0x72 0x65 0x61 0x64 - 0x79 0x20 0x61 0x73 0x6C 0x65 0x65 0x70 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12023 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_50= 0x00015328 - - -CHUNK('HTOP', _help_48544F50_50, "") -SUBFILE -#line 12031 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_50, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_50=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_50=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDE 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_50=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_50, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x6D 0x65 0x20 0x4F - 0x77 0x6E 0x65 0x72 0x0D 0x0A 0x43 0x68 - 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 - 0x68 0x61 0x73 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x65 0x64 0x20 0x6F 0x66 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x61 0x20 0x68 - 0x6F 0x6D 0x65 0x20 0x6F 0x77 0x6E 0x65 - 0x72 0x2E 0x20 0x20 0x41 0x20 0x73 0x6D - 0x61 0x6C 0x6C 0x20 0x4E 0x65 0x77 0x20 - 0x59 0x6F 0x72 0x6B 0x20 0x61 0x70 0x61 - 0x72 0x74 0x6D 0x65 0x6E 0x74 0x20 0x69 - 0x73 0x20 0x61 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x61 0x66 - 0x66 0x6F 0x72 0x64 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x43 0x68 0x72 0x69 0x73 0x74 - 0x69 0x6E 0x61 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x61 0x20 0x62 0x69 0x67 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x2C 0x20 0x6F - 0x6E 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x65 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x69 0x73 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x20 0x6F 0x6E 0x65 - 0x20 0x72 0x6F 0x6F 0x66 0x97 0x61 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x74 0x6F - 0x20 0x72 0x65 0x61 0x64 0x2C 0x20 0x63 - 0x6F 0x6F 0x6B 0x2C 0x20 0x68 0x6F 0x73 - 0x74 0x20 0x63 0x6F 0x6E 0x63 0x65 0x72 - 0x74 0x73 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x69 0x6C 0x64 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x65 0x74 0x20 0x75 0x70 0x20 0x61 - 0x20 0x63 0x6F 0x6E 0x73 0x65 0x72 0x76 - 0x61 0x74 0x69 0x6F 0x6E 0x20 0x6C 0x61 - 0x62 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6C 0x61 0x62 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x74 0x75 0x72 0x72 - 0x65 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 0x2C - 0x20 0x73 0x6F 0x20 0x73 0x68 0x65 0x27 - 0x64 0x20 0x68 0x61 0x76 0x65 0x20 0x61 - 0x20 0x76 0x69 0x65 0x77 0x2E 0x20 0x20 - 0x4D 0x6F 0x73 0x74 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x61 0x20 0x76 0x69 0x65 0x77 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x75 0x6E 0x74 0x61 0x69 0x6E 0x73 - 0x20 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x77 0x61 0x74 0x65 0x72 0x3B 0x20 0x43 - 0x68 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x61 - 0x20 0x76 0x69 0x65 0x77 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x67 0x72 0x61 0x76 0x65 - 0x79 0x61 0x72 0x64 0x2E 0x20 0x20 0x57 - 0x69 0x74 0x68 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x6F 0x73 0x65 0x20 0x73 0x70 - 0x69 0x72 0x69 0x74 0x73 0x2C 0x20 0x73 - 0x68 0x65 0x92 0x64 0x20 0x6E 0x65 0x76 - 0x65 0x72 0x20 0x67 0x65 0x74 0x20 0x6C - 0x6F 0x6E 0x65 0x6C 0x79 0x2E 0x0D 0x0A - 0x42 0x75 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x69 - 0x6E 0x61 0x92 0x73 0x20 0x64 0x72 0x65 - 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x68 0x61 0x70 0x70 0x79 0x20 0x68 - 0x6F 0x6D 0x65 0x20 0x74 0x75 0x72 0x6E - 0x20 0x73 0x63 0x61 0x72 0x79 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x69 0x7A 0x65 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x68 0x65 - 0x72 0x20 0x6E 0x65 0x69 0x67 0x68 0x62 - 0x6F 0x72 0x73 0x20 0x61 0x72 0x65 0x20 - 0x61 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x2C - 0x20 0x61 0x20 0x70 0x72 0x65 0x68 0x69 - 0x73 0x74 0x6F 0x72 0x69 0x63 0x20 0x6D - 0x61 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x61 0x20 0x62 0x61 0x62 0x79 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x6E 0x20 0x61 - 0x74 0x74 0x69 0x74 0x75 0x64 0x65 0x3F - 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 0x43 - 0x68 0x72 0x69 0x73 0x74 0x69 0x6E 0x61 - 0x20 0x64 0x65 0x63 0x69 0x64 0x65 0x20 - 0x74 0x6F 0x20 0x6D 0x6F 0x76 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x4E 0x65 0x77 0x20 0x59 0x6F 0x72 0x6B - 0x2C 0x20 0x6F 0x72 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x73 0x68 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x77 0x20 0x61 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x70 0x61 0x72 0x74 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x68 0x65 - 0x72 0x20 0x6E 0x65 0x77 0x20 0x6E 0x65 - 0x69 0x67 0x68 0x62 0x6F 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12184 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_51= 0x00015329 - - -CHUNK('HTOP', _help_48544F50_51, "") -SUBFILE -#line 12192 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_51, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_51=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_51=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF4 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x21 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_51=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_51, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x74 0x65 0x63 0x74 - 0x69 0x76 0x65 0x0D 0x0A 0x43 0x68 0x72 - 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 0x68 - 0x61 0x73 0x20 0x61 0x6E 0x20 0x65 0x79 - 0x65 0x20 0x66 0x6F 0x72 0x20 0x64 0x65 - 0x74 0x61 0x69 0x6C 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x61 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x64 0x65 0x74 0x65 0x63 - 0x74 0x69 0x76 0x65 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 0x72 - 0x6F 0x6C 0x65 0x2C 0x20 0x43 0x68 0x72 - 0x69 0x73 0x74 0x69 0x6E 0x61 0x20 0x66 - 0x69 0x6E 0x64 0x73 0x20 0x4E 0x65 0x77 - 0x20 0x59 0x6F 0x72 0x6B 0x92 0x73 0x20 - 0x6C 0x6F 0x6E 0x67 0x20 0x6C 0x6F 0x73 - 0x74 0x20 0x74 0x72 0x65 0x61 0x73 0x75 - 0x72 0x65 0x20 0x63 0x68 0x65 0x73 0x74 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x72 0x61 - 0x6D 0x62 0x6C 0x69 0x6E 0x67 0x20 0x67 - 0x72 0x61 0x76 0x65 0x79 0x61 0x72 0x64 - 0x20 0x6E 0x6F 0x72 0x74 0x68 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x69 - 0x74 0x79 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x61 0x72 0x65 0x61 0x20 0x77 0x61 - 0x73 0x20 0x6F 0x6E 0x63 0x65 0x20 0x61 - 0x20 0x73 0x74 0x6F 0x6D 0x70 0x69 0x6E - 0x67 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x66 0x6F 0x72 0x20 0x49 0x6E 0x64 - 0x69 0x61 0x6E 0x20 0x63 0x61 0x76 0x65 - 0x20 0x64 0x77 0x65 0x6C 0x6C 0x65 0x72 - 0x73 0x2E 0x20 0x20 0x43 0x68 0x72 0x69 - 0x73 0x74 0x69 0x6E 0x61 0x20 0x68 0x61 - 0x70 0x70 0x65 0x6E 0x73 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x61 0x76 0x65 - 0x79 0x61 0x72 0x64 0x20 0x6F 0x6E 0x65 - 0x20 0x64 0x61 0x79 0x20 0x73 0x74 0x75 - 0x64 0x79 0x69 0x6E 0x67 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x92 0x73 0x20 0x67 0x72 - 0x61 0x76 0x65 0x73 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x73 0x74 0x75 0x6D 0x62 - 0x6C 0x65 0x73 0x20 0x75 0x70 0x6F 0x6E - 0x20 0x61 0x6E 0x20 0x6F 0x6C 0x64 0x20 - 0x63 0x61 0x76 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x69 0x74 0x74 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 - 0x20 0x69 0x73 0x20 0x61 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x20 0x63 - 0x68 0x65 0x73 0x74 0x20 0x6F 0x66 0x20 - 0x67 0x6F 0x6C 0x64 0x21 0x20 0x20 0x48 - 0x65 0x72 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x61 0x74 0x69 0x6F - 0x6E 0x61 0x6C 0x20 0x6E 0x65 0x77 0x73 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 0x68 - 0x65 0x20 0x67 0x65 0x74 0x73 0x20 0x63 - 0x61 0x6C 0x6C 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 - 0x20 0x63 0x68 0x69 0x65 0x66 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x68 0x65 0x72 - 0x69 0x66 0x66 0x73 0x20 0x65 0x76 0x65 - 0x72 0x79 0x77 0x68 0x65 0x72 0x65 0x20 - 0x62 0x65 0x67 0x67 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 0x20 - 0x73 0x6C 0x65 0x75 0x74 0x68 0x69 0x6E - 0x67 0x20 0x73 0x6B 0x69 0x6C 0x6C 0x73 - 0x2E 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x43 0x68 0x72 0x69 0x73 0x74 0x69 0x6E - 0x61 0x20 0x6E 0x65 0x65 0x64 0x73 0x20 - 0x74 0x6F 0x20 0x75 0x6E 0x63 0x6F 0x76 - 0x65 0x72 0x20 0x61 0x20 0x72 0x69 0x6E - 0x67 0x20 0x6F 0x66 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x20 0x73 0x6D 0x75 0x67 0x67 - 0x6C 0x65 0x72 0x73 0x2C 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 0x75 - 0x73 0x65 0x20 0x68 0x65 0x72 0x20 0x73 - 0x6B 0x69 0x6C 0x6C 0x20 0x61 0x74 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 - 0x6D 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 - 0x73 0x65 0x6C 0x66 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x61 0x72 0x74 0x3F 0x20 0x20 - 0x49 0x66 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6D 0x75 0x67 0x67 0x6C 0x65 0x72 0x73 - 0x20 0x64 0x6F 0x6E 0x92 0x74 0x20 0x72 - 0x65 0x61 0x6C 0x69 0x7A 0x65 0x20 0x74 - 0x68 0x61 0x74 0x20 0x73 0x68 0x65 0x20 - 0x69 0x73 0x6E 0x92 0x74 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x61 0x20 0x6D - 0x75 0x6D 0x6D 0x79 0x2C 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 - 0x74 0x72 0x79 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x65 0x61 0x6C 0x20 0x68 0x65 0x72 - 0x2C 0x20 0x74 0x6F 0x6F 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12348 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_52= 0x0001532a - - -CHUNK('HTOP', _help_48544F50_52, "") -SUBFILE -#line 12356 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_52, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_53=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_53=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x66 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_53=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_53, 0x0) - BYTE - 0x03 0x03 0x6C 0x69 0x76 0x65 0x20 0x64 - 0x61 0x6E 0x67 0x65 0x72 0x6F 0x75 0x73 - 0x6C 0x79 0x0D 0x0A 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x68 0x61 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x62 - 0x65 0x65 0x6E 0x20 0x61 0x20 0x76 0x65 - 0x72 0x79 0x20 0x6D 0x6F 0x64 0x65 0x72 - 0x6E 0x20 0x49 0x6E 0x64 0x69 0x61 0x6E - 0x20 0x6C 0x61 0x64 0x79 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x73 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x65 0x78 0x63 - 0x69 0x74 0x65 0x64 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x73 0x68 0x65 0x20 0x67 0x6F - 0x74 0x20 0x61 0x20 0x73 0x63 0x68 0x6F - 0x6C 0x61 0x72 0x73 0x68 0x69 0x70 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x75 0x64 0x79 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x55 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 - 0x74 0x61 0x74 0x65 0x73 0x2E 0x20 0x20 - 0x54 0x68 0x61 0x74 0x92 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x73 - 0x74 0x61 0x72 0x74 0x65 0x64 0x20 0x6C - 0x69 0x76 0x69 0x6E 0x67 0x20 0x64 0x61 - 0x6E 0x67 0x65 0x72 0x6F 0x75 0x73 0x6C - 0x79 0x2E 0x20 0x20 0x53 0x68 0x65 0x92 - 0x73 0x20 0x74 0x72 0x69 0x65 0x64 0x20 - 0x77 0x61 0x6C 0x6B 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x74 0x69 0x67 0x68 0x74 0x2D - 0x72 0x6F 0x70 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x63 0x69 0x72 0x63 0x75 0x73 - 0x2C 0x20 0x70 0x61 0x72 0x61 0x63 0x68 - 0x75 0x74 0x69 0x6E 0x67 0x20 0x6F 0x75 - 0x74 0x20 0x6F 0x66 0x20 0x61 0x69 0x72 - 0x70 0x6C 0x61 0x6E 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x74 0x75 0x6E - 0x74 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x69 0x72 0x20 0x73 - 0x68 0x6F 0x77 0x73 0x2E 0x20 0x0D 0x0A - 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x73 0x68 0x65 0x20 0x64 0x65 0x63 0x69 - 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x72 0x79 0x20 0x70 0x61 0x72 0x61 0x63 - 0x68 0x75 0x74 0x69 0x6E 0x67 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x61 0x20 0x68 0x6F - 0x74 0x20 0x61 0x69 0x72 0x20 0x62 0x61 - 0x6C 0x6C 0x6F 0x6F 0x6E 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x66 0x61 0x6C 0x6C 0x20 - 0x77 0x65 0x6E 0x74 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x66 0x69 0x6E 0x65 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x6C 0x61 0x6E 0x64 - 0x65 0x64 0x20 0x72 0x69 0x67 0x68 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x69 0x64 0x64 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x73 0x65 0x74 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x68 0x61 0x64 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x72 - 0x69 0x70 0x74 0x20 0x72 0x65 0x77 0x72 - 0x69 0x74 0x74 0x65 0x6E 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x70 0x6F - 0x74 0x20 0x74 0x6F 0x20 0x69 0x6E 0x63 - 0x6C 0x75 0x64 0x65 0x20 0x43 0x6C 0x61 - 0x75 0x64 0x69 0x61 0x92 0x73 0x20 0x73 - 0x74 0x75 0x6E 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x61 0x74 0x92 0x73 0x20 0x68 0x6F - 0x77 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 - 0x61 0x20 0x66 0x65 0x6C 0x6C 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x63 0x74 0x69 - 0x6E 0x67 0x2E 0x20 0x41 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x27 0x73 0x20 0x62 0x65 - 0x65 0x6E 0x20 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x69 0x74 0x20 0x65 0x76 0x65 0x72 - 0x20 0x73 0x69 0x6E 0x63 0x65 0x2E 0x20 - 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 12495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_53= 0x0001532b - - -CHUNK('HTOP', _help_48544F50_53, "") -SUBFILE -#line 12503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_53, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_52=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_53, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x36 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_52=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xED 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_52=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_52, 0x0) - BYTE - 0x03 0x03 0x48 0x69 0x70 0x70 0x69 0x65 - 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x72 0x6F 0x6C - 0x65 0x73 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x69 0x73 - 0x20 0x61 0x20 0x68 0x69 0x70 0x70 0x69 - 0x65 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 - 0x65 0x72 0x20 0x68 0x69 0x70 0x70 0x69 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x63 0x6F 0x76 0x65 0x72 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x72 0x20 - 0x72 0x65 0x61 0x6C 0x20 0x6D 0x69 0x73 - 0x73 0x69 0x6F 0x6E 0x97 0x74 0x6F 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x68 0x69 0x70 - 0x70 0x69 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x64 0x69 0x73 0x61 0x70 0x70 0x65 0x61 - 0x72 0x65 0x64 0x20 0x62 0x61 0x63 0x6B - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x36 0x30 0x73 0x20 0x69 0x6E 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x73 0x6F 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x66 0x75 0x6E 0x6B - 0x79 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 - 0x64 0x20 0x68 0x6F 0x75 0x73 0x65 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x68 0x69 - 0x70 0x70 0x69 0x65 0x92 0x73 0x20 0x6E - 0x61 0x6D 0x65 0x20 0x77 0x61 0x73 0x20 - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x6E 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x2D 0x74 0x65 0x6C 0x6C 0x65 0x72 0x73 - 0x20 0x77 0x68 0x6F 0x20 0x6D 0x65 0x74 - 0x20 0x68 0x69 0x6D 0x20 0x72 0x65 0x6D - 0x65 0x6D 0x62 0x65 0x72 0x20 0x68 0x6F - 0x77 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x73 0x6D 0x65 0x6C 0x6C - 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 - 0x92 0x73 0x20 0x66 0x75 0x74 0x75 0x72 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x69 0x72 0x20 0x68 0x61 0x69 0x72 0x2E - 0x20 0x20 0x53 0x6F 0x2C 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x67 0x72 0x6F 0x6F 0x76 - 0x79 0x2C 0x20 0x43 0x6C 0x61 0x75 0x64 - 0x69 0x61 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x68 0x61 0x75 0x6E 0x74 - 0x65 0x64 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x65 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x6F 0x77 - 0x6E 0x65 0x72 0x20 0x74 0x68 0x61 0x74 - 0x20 0x73 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x6C 0x61 0x74 0x65 0x2D - 0x62 0x6C 0x6F 0x6F 0x6D 0x69 0x6E 0x67 - 0x20 0x62 0x75 0x74 0x20 0x68 0x6F 0x6D - 0x65 0x6C 0x65 0x73 0x73 0x20 0x68 0x69 - 0x70 0x70 0x69 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x61 0x73 0x6B 0x20 0x69 0x66 - 0x20 0x73 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x73 0x70 0x65 0x6E 0x64 - 0x20 0x6A 0x75 0x73 0x74 0x20 0x6F 0x6E - 0x65 0x20 0x6E 0x69 0x67 0x68 0x74 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x65 0x76 - 0x69 0x6C 0x20 0x6F 0x77 0x6E 0x65 0x72 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x6C 0x61 0x64 0x6C 0x79 0x20 0x69 0x6E - 0x76 0x69 0x74 0x65 0x20 0x68 0x65 0x72 - 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 0x2C - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x69 0x6E - 0x67 0x20 0x68 0x65 0x20 0x68 0x61 0x64 - 0x20 0x63 0x61 0x70 0x74 0x75 0x72 0x65 - 0x64 0x20 0x79 0x65 0x74 0x20 0x61 0x6E - 0x6F 0x74 0x68 0x65 0x72 0x20 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6F - 0x77 0x6E 0x65 0x72 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6E 0x6F 0x74 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x74 0x68 0x61 0x74 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x68 0x72 - 0x69 0x6E 0x6B 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x71 0x75 0x61 0x73 0x68 0x20 0x73 - 0x6F 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x61 0x74 0x20 0x73 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x61 0x6C 0x6D 0x6F 0x73 - 0x74 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 - 0x72 0x65 0x20 0x77 0x69 0x74 0x68 0x6F - 0x75 0x74 0x20 0x61 0x6E 0x79 0x6F 0x6E - 0x65 0x20 0x73 0x65 0x65 0x69 0x6E 0x67 - 0x20 0x68 0x65 0x72 0x2E 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x74 0x69 0x6E 0x79 - 0x20 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x62 0x65 0x20 0x73 0x6E 0x69 0x66 - 0x66 0x65 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x62 0x79 0x20 0x74 0x68 0x65 0x20 0x6F - 0x77 0x6E 0x65 0x72 0x73 0x20 0x64 0x69 - 0x72 0x74 0x79 0x20 0x72 0x61 0x74 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x62 0x65 0x63 - 0x6F 0x6D 0x65 0x20 0x70 0x61 0x72 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x64 0x69 0x6E 0x6E 0x65 0x72 - 0x3F 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 - 0x67 0x65 0x74 0x20 0x66 0x72 0x65 0x65 - 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x73 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x4A 0x65 0x72 0x65 0x6D 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12677 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_54= 0x0001532c - - -CHUNK('HTOP', _help_48544F50_54, "") -SUBFILE -#line 12685 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_54, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_54=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_54=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE1 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_54=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_54, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x70 0x0D 0x0A 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 0x6C - 0x6F 0x76 0x65 0x73 0x20 0x64 0x61 0x6E - 0x67 0x65 0x72 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x73 0x68 0x65 0x20 0x68 0x61 0x74 - 0x65 0x73 0x20 0x76 0x69 0x6F 0x6C 0x65 - 0x6E 0x63 0x65 0x2E 0x20 0x20 0x53 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x68 0x65 0x72 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x20 0x72 0x6F 0x6C 0x65 0x73 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x63 0x6F 0x70 0x20 0x77 - 0x68 0x6F 0x20 0x68 0x61 0x73 0x20 0x61 - 0x20 0x73 0x70 0x65 0x63 0x69 0x61 0x6C - 0x20 0x74 0x69 0x65 0x20 0x74 0x68 0x61 - 0x74 0x20 0x70 0x75 0x74 0x73 0x20 0x62 - 0x61 0x64 0x20 0x67 0x75 0x79 0x73 0x20 - 0x73 0x68 0x65 0x20 0x63 0x61 0x74 0x63 - 0x68 0x65 0x73 0x20 0x74 0x6F 0x20 0x73 - 0x6C 0x65 0x65 0x70 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x65 0x6C 0x73 0x20 0x62 - 0x65 0x73 0x69 0x64 0x65 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x61 0x6E 0x64 0x20 0x72 - 0x65 0x63 0x69 0x74 0x65 0x73 0x20 0x61 - 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x73 0x74 - 0x6F 0x72 0x79 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x49 0x6E 0x64 0x69 0x61 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x68 0x65 0x79 0x20 0x6E 0x65 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6C 0x64 0x20 0x69 0x6E 0x73 - 0x74 0x65 0x61 0x64 0x20 0x6F 0x66 0x20 - 0x68 0x75 0x72 0x74 0x69 0x6E 0x67 0x20 - 0x69 0x74 0x2E 0x20 0x20 0x57 0x68 0x65 - 0x6E 0x20 0x74 0x68 0x65 0x79 0x20 0x77 - 0x61 0x6B 0x65 0x20 0x75 0x70 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x69 0x6D - 0x69 0x6E 0x61 0x6C 0x73 0x20 0x61 0x72 - 0x65 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x65 0x64 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x73 0x20 0x74 0x6F 0x20 0x67 - 0x6F 0x6F 0x64 0x20 0x67 0x75 0x79 0x73 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x73 - 0x6F 0x6D 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x73 0x20 0x63 0x61 0x74 0x63 - 0x68 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x68 - 0x65 0x72 0x20 0x74 0x72 0x69 0x63 0x6B - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x72 - 0x65 0x61 0x74 0x65 0x6E 0x20 0x74 0x6F - 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B 0x20 - 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x20 0x63 - 0x61 0x6E 0x92 0x74 0x20 0x74 0x72 0x61 - 0x6E 0x73 0x66 0x6F 0x72 0x6D 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x74 0x6F 0x6F 0x2E - 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x73 0x74 0x6F 0x70 - 0x20 0x74 0x68 0x65 0x69 0x72 0x20 0x70 - 0x6C 0x61 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x20 - 0x68 0x65 0x72 0x20 0x70 0x6F 0x77 0x65 - 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 12814 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_55= 0x0001532d - - -CHUNK('HTOP', _help_48544F50_55, "") -SUBFILE -#line 12822 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_55, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_59=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_59=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x4D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xCB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_59=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_59, 0x0) - BYTE - 0x03 0x03 0x50 0x69 0x6C 0x6F 0x74 0x0D - 0x0A 0x43 0x6C 0x61 0x75 0x64 0x69 0x61 - 0x20 0x69 0x6D 0x61 0x67 0x69 0x6E 0x65 - 0x73 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x70 0x61 0x63 - 0x65 0x20 0x63 0x6F 0x70 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x79 0x65 0x61 - 0x72 0x20 0x32 0x30 0x38 0x30 0x2E 0x20 - 0x20 0x42 0x79 0x20 0x74 0x68 0x65 0x6E - 0x2C 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x70 0x73 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x64 0x72 0x69 0x76 - 0x65 0x20 0x73 0x70 0x61 0x63 0x65 0x20 - 0x72 0x6F 0x63 0x6B 0x65 0x74 0x73 0x20 - 0x69 0x6E 0x73 0x74 0x65 0x61 0x64 0x20 - 0x6F 0x66 0x20 0x70 0x61 0x74 0x72 0x6F - 0x6C 0x20 0x63 0x61 0x72 0x73 0x2E 0x20 - 0x20 0x49 0x6E 0x20 0x74 0x68 0x69 0x73 - 0x20 0x72 0x6F 0x6C 0x65 0x2C 0x20 0x43 - 0x6C 0x61 0x75 0x64 0x69 0x61 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 0x70 - 0x74 0x75 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x53 0x71 0x75 0x61 0x73 0x68 0x65 - 0x72 0x2C 0x20 0x74 0x68 0x65 0x20 0x77 - 0x65 0x69 0x72 0x64 0x20 0x67 0x75 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x92 0x74 0x20 0x73 0x74 0x61 0x6E 0x64 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x61 0x6E - 0x64 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 - 0x6F 0x72 0x6D 0x73 0x20 0x65 0x76 0x65 - 0x72 0x79 0x20 0x6B 0x69 0x64 0x20 0x68 - 0x65 0x20 0x73 0x65 0x65 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x20 0x73 0x71 - 0x75 0x61 0x73 0x68 0x65 0x64 0x20 0x6D - 0x65 0x73 0x73 0x2E 0x20 0x0D 0x0A 0x53 - 0x68 0x65 0x20 0x73 0x70 0x6F 0x74 0x73 - 0x20 0x53 0x71 0x75 0x61 0x73 0x68 0x65 - 0x72 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x73 0x20 0x6A 0x65 0x74 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x61 0x6B 0x65 - 0x73 0x20 0x6F 0x66 0x66 0x20 0x69 0x6E - 0x20 0x68 0x65 0x72 0x20 0x72 0x6F 0x63 - 0x6B 0x65 0x74 0x20 0x74 0x6F 0x20 0x63 - 0x61 0x74 0x63 0x68 0x20 0x68 0x69 0x6D - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x6E 0x2C 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x61 0x73 0x20 0x73 0x68 0x65 - 0x20 0x6C 0x61 0x6E 0x64 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x68 0x75 0x67 0x65 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 0x6F - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x53 0x71 0x75 0x61 0x73 - 0x68 0x65 0x72 0x20 0x69 0x73 0x20 0x6E - 0x6F 0x77 0x68 0x65 0x72 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x73 0x65 0x65 - 0x6E 0x2E 0x20 0x0D 0x0A 0x48 0x61 0x73 - 0x20 0x74 0x68 0x65 0x20 0x53 0x71 0x75 - 0x61 0x73 0x68 0x65 0x72 0x20 0x67 0x6F - 0x74 0x74 0x65 0x6E 0x20 0x61 0x77 0x61 - 0x79 0x20 0x61 0x67 0x61 0x69 0x6E 0x3F - 0x20 0x20 0x44 0x69 0x64 0x20 0x68 0x65 - 0x20 0x70 0x61 0x72 0x61 0x63 0x68 0x75 - 0x74 0x65 0x20 0x74 0x6F 0x20 0x73 0x61 - 0x66 0x65 0x74 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x73 0x69 0x6F - 0x6E 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x63 0x61 0x6E 0x20 0x43 0x6C 0x61 0x75 - 0x64 0x69 0x61 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x61 0x6E 0x64 - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x68 - 0x69 0x6D 0x20 0x69 0x6E 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 12957 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_56= 0x0001532e - - -CHUNK('HTOP', _help_48544F50_56, "") -SUBFILE -#line 12965 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_56, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_55=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_56, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_55=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_55=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_55, 0x0) - BYTE - 0x03 0x03 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x0D 0x0A 0x43 0x72 0x61 0x73 0x68 0x20 - 0x69 0x73 0x20 0x6D 0x61 0x64 0x65 0x20 - 0x6F 0x66 0x20 0x6D 0x65 0x74 0x61 0x6C - 0x2C 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x92 0x74 - 0x20 0x73 0x77 0x69 0x6D 0x20 0x6F 0x66 - 0x66 0x20 0x74 0x68 0x65 0x20 0x69 0x73 - 0x6C 0x61 0x6E 0x64 0x2E 0x20 0x20 0x49 - 0x6E 0x73 0x74 0x65 0x61 0x64 0x20 0x68 - 0x65 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x65 0x64 0x20 0x72 0x75 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 0x2E - 0x20 0x20 0x4D 0x61 0x79 0x62 0x65 0x20 - 0x77 0x69 0x74 0x68 0x20 0x68 0x69 0x73 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x20 0x6C - 0x65 0x67 0x73 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x65 0x78 0x74 0x20 0x69 0x73 - 0x6C 0x61 0x6E 0x64 0x21 0x20 0x0D 0x0A - 0x48 0x65 0x20 0x6A 0x75 0x6D 0x70 0x65 - 0x64 0x20 0x66 0x61 0x72 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x2C 0x20 0x61 0x6C - 0x6C 0x20 0x72 0x69 0x67 0x68 0x74 0x97 - 0x61 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 - 0x65 0x64 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x6F 0x72 0x20 0x6F - 0x66 0x20 0x61 0x20 0x66 0x61 0x6D 0x6F - 0x75 0x73 0x20 0x43 0x68 0x69 0x6E 0x65 - 0x73 0x65 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x61 0x20 0x67 0x72 - 0x6F 0x75 0x70 0x20 0x6F 0x66 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x73 0x74 0x61 - 0x72 0x73 0x20 0x77 0x65 0x72 0x65 0x20 - 0x65 0x61 0x74 0x69 0x6E 0x67 0x2E 0x20 - 0x20 0x45 0x76 0x65 0x72 0x79 0x6F 0x6E - 0x65 0x20 0x63 0x72 0x6F 0x77 0x64 0x65 - 0x64 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x77 0x69 0x74 - 0x68 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x63 0x68 0x6F 0x70 0x73 0x74 0x69 0x63 - 0x6B 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x61 0x63 0x74 0x6F - 0x72 0x20 0x73 0x6E 0x65 0x61 0x6B 0x65 - 0x64 0x20 0x75 0x70 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x43 0x72 0x61 0x73 - 0x68 0x20 0x61 0x6E 0x64 0x20 0x77 0x68 - 0x69 0x73 0x6B 0x65 0x64 0x20 0x68 0x69 - 0x6D 0x20 0x61 0x77 0x61 0x79 0x20 0x74 - 0x6F 0x20 0x73 0x65 0x65 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 - 0x64 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13083 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_57= 0x0001532f - - -CHUNK('HTOP', _help_48544F50_57, "") -SUBFILE -#line 13091 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_57, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_57, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x77 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8, 0x0) - BYTE - 0x03 0x03 0x57 0x69 0x6C 0x6C 0x79 0x92 - 0x73 0x20 0x49 0x6E 0x76 0x65 0x6E 0x74 - 0x69 0x6F 0x6E 0x0D 0x0A 0x4D 0x6F 0x73 - 0x74 0x6C 0x79 0x2C 0x20 0x43 0x72 0x61 - 0x73 0x68 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x61 0x20 0x66 0x61 0x74 0x68 0x65 - 0x72 0x20 0x66 0x69 0x67 0x75 0x72 0x65 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 0x72 - 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x68 - 0x65 0x92 0x64 0x20 0x62 0x65 0x20 0x69 - 0x6E 0x76 0x65 0x6E 0x74 0x65 0x64 0x20 - 0x62 0x79 0x20 0x61 0x20 0x73 0x63 0x69 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x6E - 0x61 0x6D 0x65 0x64 0x20 0x57 0x69 0x6C - 0x6C 0x79 0x2C 0x20 0x61 0x20 0x67 0x72 - 0x65 0x65 0x6E 0x20 0x73 0x63 0x69 0x65 - 0x6E 0x74 0x69 0x73 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x43 0x72 0x61 0x73 0x68 0x20 0x74 0x6F - 0x20 0x68 0x65 0x6C 0x70 0x20 0x68 0x69 - 0x6D 0x20 0x67 0x75 0x61 0x72 0x64 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 0x6F - 0x72 0x61 0x74 0x6F 0x72 0x79 0x20 0x61 - 0x67 0x61 0x69 0x6E 0x73 0x74 0x20 0x61 - 0x20 0x67 0x69 0x61 0x6E 0x74 0x20 0x72 - 0x61 0x74 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x72 0x61 0x74 0x20 0x68 0x61 0x73 - 0x20 0x67 0x72 0x6F 0x77 0x6E 0x20 0x73 - 0x6F 0x20 0x6C 0x61 0x72 0x67 0x65 0x20 - 0x62 0x79 0x20 0x64 0x72 0x69 0x6E 0x6B - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x57 0x69 0x6C 0x6C 0x79 - 0x92 0x73 0x20 0x73 0x63 0x69 0x65 0x6E - 0x63 0x65 0x20 0x65 0x78 0x70 0x65 0x72 - 0x69 0x6D 0x65 0x6E 0x74 0x73 0x2E 0x20 - 0x42 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x74 0x20 0x69 0x73 0x20 0x74 - 0x77 0x69 0x63 0x65 0x20 0x74 0x68 0x65 - 0x20 0x73 0x69 0x7A 0x65 0x20 0x6F 0x66 - 0x20 0x43 0x72 0x61 0x73 0x68 0x20 0x61 - 0x6E 0x64 0x20 0x6D 0x69 0x67 0x68 0x74 - 0x20 0x67 0x65 0x74 0x20 0x65 0x76 0x65 - 0x6E 0x20 0x62 0x69 0x67 0x67 0x65 0x72 - 0x97 0x66 0x61 0x73 0x74 0x2E 0x20 0x0D - 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x43 0x72 0x61 0x73 0x68 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x20 - 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x69 0x6E 0x76 0x65 0x6E 0x74 0x6F 0x72 - 0x20 0x66 0x61 0x74 0x68 0x65 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x74 0x68 0x65 - 0x20 0x72 0x61 0x74 0x20 0x61 0x74 0x74 - 0x61 0x63 0x6B 0x3F 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x68 0x69 0x73 0x20 0x6A - 0x75 0x6D 0x70 0x69 0x6E 0x67 0x20 0x73 - 0x6B 0x69 0x6C 0x6C 0x73 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x68 0x69 0x6D 0x20 0x6F - 0x75 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13214 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_58= 0x00015330 - - -CHUNK('HTOP', _help_48544F50_58, "") -SUBFILE -#line 13222 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_58, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_58=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_58=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x79 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_58=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_58, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x62 0x6F 0x74 0x20 - 0x43 0x6F 0x70 0x0D 0x0A 0x43 0x72 0x61 - 0x73 0x68 0x20 0x73 0x65 0x65 0x73 0x20 - 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 0x20 - 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x66 0x61 0x72 0x2D 0x6F 0x75 - 0x74 0x20 0x63 0x6F 0x70 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x79 0x65 0x61 - 0x72 0x20 0x32 0x30 0x32 0x30 0x97 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x6E 0x64 0x20 - 0x6F 0x66 0x20 0x63 0x6F 0x70 0x20 0x77 - 0x68 0x6F 0x20 0x63 0x61 0x6E 0x20 0x77 - 0x61 0x6C 0x6B 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x77 0x61 0x6C 0x6C - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x6F 0x70 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x66 - 0x6C 0x6F 0x6F 0x72 0x20 0x74 0x6F 0x20 - 0x63 0x61 0x74 0x63 0x68 0x20 0x62 0x61 - 0x64 0x20 0x67 0x75 0x79 0x73 0x2E 0x20 - 0x20 0x48 0x69 0x73 0x20 0x70 0x61 0x72 - 0x74 0x6E 0x65 0x72 0x20 0x68 0x61 0x73 - 0x20 0x62 0x65 0x65 0x6E 0x20 0x63 0x61 - 0x70 0x74 0x75 0x72 0x65 0x64 0x20 0x62 - 0x79 0x20 0x63 0x72 0x6F 0x6F 0x6B 0x73 - 0x20 0x77 0x68 0x6F 0x20 0x77 0x61 0x6E - 0x74 0x20 0x24 0x31 0x20 0x6D 0x69 0x6C - 0x6C 0x69 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x66 0x72 0x65 0x65 0x2E 0x20 0x20 0x43 - 0x72 0x61 0x73 0x68 0x20 0x70 0x6C 0x61 - 0x6E 0x73 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6C 0x6F 0x63 0x6B 0x20 0x74 0x6F 0x77 - 0x65 0x72 0x20 0x61 0x74 0x20 0x6D 0x69 - 0x64 0x6E 0x69 0x67 0x68 0x74 0x2C 0x20 - 0x61 0x6C 0x6F 0x6E 0x65 0x2C 0x20 0x77 - 0x69 0x74 0x68 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x6E 0x65 0x79 0x2E 0x20 0x20 - 0x41 0x74 0x20 0x6D 0x69 0x64 0x6E 0x69 - 0x67 0x68 0x74 0x2C 0x20 0x43 0x72 0x61 - 0x73 0x68 0x20 0x69 0x73 0x20 0x73 0x75 - 0x72 0x72 0x6F 0x75 0x6E 0x64 0x65 0x64 - 0x20 0x62 0x79 0x20 0x33 0x20 0x6D 0x65 - 0x61 0x6E 0x2D 0x6C 0x6F 0x6F 0x6B 0x69 - 0x6E 0x67 0x20 0x67 0x75 0x79 0x73 0x2E - 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x43 0x72 0x61 0x73 - 0x68 0x20 0x64 0x65 0x66 0x65 0x6E 0x64 - 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 - 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x20 0x67 0x65 0x74 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x74 0x6F 0x20 0x62 - 0x6C 0x61 0x62 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x74 0x68 0x65 0x79 0x92 0x76 0x65 0x20 - 0x68 0x69 0x64 0x64 0x65 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x70 0x61 0x72 0x74 0x6E - 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13344 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_59= 0x00015331 - - -CHUNK('HTOP', _help_48544F50_59, "") -SUBFILE -#line 13352 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_59, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_59, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDC 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xEB 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5A, 0x0) - BYTE - 0x03 0x03 0x46 0x6C 0x69 0x67 0x68 0x74 - 0x20 0x41 0x74 0x74 0x65 0x6E 0x64 0x61 - 0x6E 0x74 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x66 0x6C 0x61 - 0x77 0x20 0x69 0x6E 0x20 0x43 0x72 0x61 - 0x73 0x68 0x92 0x73 0x20 0x72 0x6F 0x62 - 0x6F 0x74 0x20 0x64 0x65 0x73 0x69 0x67 - 0x6E 0x20 0x69 0x73 0x20 0x68 0x69 0x73 - 0x20 0x62 0x61 0x74 0x74 0x65 0x72 0x79 - 0x2E 0x20 0x20 0x49 0x66 0x20 0x68 0x65 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x73 0x74 0x61 0x79 0x20 0x63 0x68 - 0x61 0x72 0x67 0x65 0x64 0x2C 0x20 0x68 - 0x65 0x20 0x66 0x61 0x69 0x6E 0x74 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x66 0x61 0x6C - 0x6C 0x73 0x20 0x6F 0x76 0x65 0x72 0x2E - 0x20 0x20 0x43 0x72 0x61 0x73 0x68 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F - 0x66 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E - 0x67 0x20 0x61 0x20 0x66 0x6C 0x69 0x67 - 0x68 0x74 0x20 0x61 0x74 0x74 0x65 0x6E - 0x64 0x61 0x6E 0x74 0x20 0x6F 0x6E 0x20 - 0x61 0x20 0x70 0x6C 0x61 0x6E 0x65 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x6F 0x2D 0x70 - 0x69 0x6C 0x6F 0x74 0x20 0x61 0x72 0x65 - 0x20 0x62 0x61 0x74 0x74 0x65 0x72 0x79 - 0x2D 0x70 0x6F 0x77 0x65 0x72 0x65 0x64 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x73 0x2C - 0x20 0x74 0x6F 0x6F 0x2E 0x20 0x20 0x43 - 0x72 0x61 0x73 0x68 0x92 0x73 0x20 0x6A - 0x6F 0x62 0x20 0x69 0x73 0x20 0x74 0x6F - 0x20 0x67 0x72 0x65 0x65 0x74 0x20 0x70 - 0x61 0x73 0x73 0x65 0x6E 0x67 0x65 0x72 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 - 0x74 0x63 0x68 0x20 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x77 0x69 0x6E 0x64 - 0x6F 0x77 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x69 - 0x6F 0x75 0x73 0x20 0x74 0x72 0x6F 0x70 - 0x69 0x63 0x61 0x6C 0x20 0x69 0x73 0x6C - 0x61 0x6E 0x64 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x20 0x68 0x61 0x73 0x20 0x61 0x20 0x63 - 0x61 0x76 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x61 0x20 0x6D 0x61 0x67 0x69 0x63 - 0x20 0x70 0x6F 0x77 0x65 0x72 0x20 0x62 - 0x6F 0x78 0x20 0x69 0x6E 0x73 0x69 0x64 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x72 0x65 0x63 0x68 - 0x61 0x72 0x67 0x65 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x6C 0x69 0x66 0x65 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x79 0x20 0x6F 0x6E 0x6C 0x79 - 0x20 0x68 0x61 0x76 0x65 0x20 0x61 0x20 - 0x66 0x65 0x77 0x20 0x68 0x6F 0x75 0x72 - 0x73 0x20 0x6C 0x65 0x66 0x74 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x62 0x61 0x74 0x74 0x65 0x72 0x69 0x65 - 0x73 0x2E 0x20 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x69 0x73 0x6C 0x61 0x6E 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x76 0x65 0x20 0x62 0x65 0x66 0x6F - 0x72 0x65 0x20 0x74 0x68 0x65 0x79 0x20 - 0x72 0x75 0x6E 0x20 0x6F 0x75 0x74 0x20 - 0x6F 0x66 0x20 0x70 0x2D 0x6F 0x2D 0x77 - 0x2D 0x65 0x2D 0x72 0x2E 0x2E 0x2E 0x3F - 0x20 0x20 0x57 0x69 0x74 0x68 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x73 0x65 0x63 0x6F - 0x6E 0x64 0x73 0x20 0x6C 0x65 0x66 0x74 - 0x2C 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x73 0x20 0x67 0x65 - 0x74 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x77 0x69 - 0x6E 0x67 0x69 0x6E 0x67 0x20 0x62 0x72 - 0x69 0x64 0x67 0x65 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x76 0x65 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13496 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5A= 0x00015332 - - -CHUNK('HTOP', _help_48544F50_5A, "") -SUBFILE -#line 13504 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x02 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B6, 0x0) - BYTE - 0x03 0x03 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x0D 0x0A 0x48 0x65 0x72 0x20 0x6D - 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 0x61 - 0x79 0x73 0x20 0x69 0x74 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x68 0x61 0x70 0x70 0x65 0x6E 0x2C - 0x20 0x62 0x75 0x74 0x20 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x64 0x72 0x65 0x61 0x6D - 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 0x63 - 0x6F 0x6D 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x20 0x61 0x63 0x74 0x72 0x65 0x73 0x73 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x20 0x74 0x61 0x6B 0x65 0x20 0x6F 0x6E - 0x20 0x61 0x6E 0x79 0x20 0x70 0x61 0x72 - 0x74 0x2E 0x20 0x20 0x45 0x76 0x65 0x72 - 0x79 0x20 0x64 0x61 0x79 0x20 0x73 0x68 - 0x65 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x65 0x73 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x65 0x73 0x20 0x73 0x68 - 0x65 0x20 0x6D 0x69 0x67 0x68 0x74 0x20 - 0x6E 0x65 0x65 0x64 0x2C 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x66 0x61 0x69 0x6E 0x74 - 0x69 0x6E 0x67 0x2C 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x69 0x6E 0x67 0x2C 0x20 0x66 - 0x61 0x6C 0x6C 0x69 0x6E 0x67 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x6B 0x61 0x72 0x61 - 0x74 0x65 0x20 0x6B 0x69 0x63 0x6B 0x69 - 0x6E 0x67 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x73 0x68 0x65 0x20 0x73 0x70 - 0x65 0x6E 0x64 0x73 0x20 0x6D 0x6F 0x73 - 0x74 0x20 0x6F 0x66 0x20 0x68 0x65 0x72 - 0x20 0x74 0x69 0x6D 0x65 0x20 0x70 0x72 - 0x61 0x63 0x74 0x69 0x63 0x69 0x6E 0x67 - 0x20 0x68 0x65 0x72 0x20 0x64 0x61 0x6E - 0x63 0x69 0x6E 0x67 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x27 0x73 0x20 0x73 0x6F 0x20 - 0x74 0x61 0x6C 0x65 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x74 0x6F 0x20 0x64 - 0x6F 0x20 0x61 0x20 0x73 0x6F 0x6C 0x6F - 0x20 0x64 0x61 0x6E 0x63 0x65 0x20 0x72 - 0x6F 0x75 0x74 0x69 0x6E 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x4D 0x65 0x78 - 0x69 0x63 0x61 0x6E 0x20 0x74 0x68 0x65 - 0x61 0x74 0x65 0x72 0x20 0x67 0x72 0x6F - 0x75 0x70 0x20 0x74 0x68 0x61 0x74 0x20 - 0x77 0x61 0x73 0x20 0x74 0x6F 0x75 0x72 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x55 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 - 0x74 0x61 0x74 0x65 0x73 0x2E 0x20 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x2C - 0x20 0x77 0x68 0x6F 0x20 0x69 0x73 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x6C - 0x6F 0x6F 0x6B 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x6E 0x65 0x77 0x20 0x74 - 0x61 0x6C 0x65 0x6E 0x74 0x2C 0x20 0x73 - 0x61 0x77 0x20 0x45 0x6C 0x69 0x7A 0x61 - 0x92 0x73 0x20 0x73 0x6F 0x6C 0x6F 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x73 0x6B 0x65 - 0x64 0x20 0x68 0x65 0x72 0x20 0x74 0x6F - 0x20 0x61 0x75 0x64 0x69 0x74 0x69 0x6F - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 13630 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5B= 0x00015333 - - -CHUNK('HTOP', _help_48544F50_5B, "") -SUBFILE -#line 13638 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5B, 0x0) - BYTE - 0x03 0x03 0x48 0x69 0x70 0x70 0x69 0x65 - 0x0D 0x0A 0x54 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x36 0x30 0x73 0x20 0x68 0x69 0x70 0x70 - 0x69 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x70 0x65 0x72 0x66 - 0x65 0x63 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x45 0x6C 0x69 0x7A 0x61 0x2C 0x20 0x73 - 0x68 0x65 0x20 0x74 0x68 0x69 0x6E 0x6B - 0x73 0x2E 0x20 0x53 0x68 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x6F 0x76 0x79 0x20 0x63 0x6C - 0x6F 0x74 0x68 0x65 0x73 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x73 0x65 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x74 0x61 0x72 0x74 - 0x69 0x6E 0x67 0x20 0x61 0x74 0x20 0x68 - 0x65 0x72 0x20 0x61 0x75 0x6E 0x74 0x20 - 0x4D 0x61 0x72 0x74 0x68 0x61 0x92 0x73 - 0x20 0x6F 0x6C 0x64 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x2E 0x20 0x0D 0x0A 0x4C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x74 0x72 0x75 - 0x65 0x20 0x68 0x69 0x70 0x70 0x69 0x65 - 0x2C 0x20 0x45 0x6C 0x69 0x7A 0x61 0x20 - 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 0x75 - 0x6E 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x74 0x68 0x65 0x20 0x75 0x6E 0x69 0x76 - 0x65 0x72 0x73 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x73 0x65 0x6E 0x73 0x65 0x73 0x20 0x65 - 0x76 0x69 0x6C 0x20 0x66 0x6F 0x72 0x63 - 0x65 0x73 0x20 0x61 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 0x2C - 0x20 0x73 0x68 0x65 0x20 0x6B 0x6E 0x65 - 0x65 0x6C 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x65 0x64 0x69 0x74 0x61 0x74 0x65 0x20 - 0x61 0x77 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x65 0x76 0x69 0x6C 0x2E 0x20 0x20 - 0x4A 0x75 0x73 0x74 0x20 0x74 0x68 0x65 - 0x6E 0x2C 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x69 0x62 0x72 0x61 0x72 0x79 0x2C - 0x20 0x74 0x68 0x65 0x20 0x6C 0x69 0x64 - 0x20 0x6F 0x6E 0x20 0x61 0x20 0x77 0x6F - 0x6F 0x64 0x65 0x6E 0x20 0x63 0x6F 0x66 - 0x66 0x69 0x6E 0x20 0x63 0x72 0x65 0x61 - 0x6B 0x73 0x20 0x6F 0x70 0x65 0x6E 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6F 0x75 0x74 - 0x20 0x63 0x6F 0x6D 0x65 0x73 0x20 0x61 - 0x20 0x67 0x68 0x6F 0x73 0x74 0x2D 0x77 - 0x68 0x69 0x74 0x65 0x20 0x67 0x75 0x79 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x20 - 0x62 0x61 0x67 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x68 0x69 0x73 0x20 0x68 0x65 0x61 - 0x64 0x2E 0x20 0x20 0x49 0x73 0x20 0x74 - 0x68 0x69 0x73 0x20 0x61 0x20 0x70 0x68 - 0x61 0x6E 0x74 0x6F 0x6D 0x3F 0x20 0x20 - 0x53 0x68 0x65 0x20 0x6C 0x6F 0x6F 0x6B - 0x73 0x20 0x61 0x67 0x61 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x67 0x69 - 0x6E 0x73 0x20 0x77 0x61 0x6C 0x6B 0x69 - 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x2E 0x20 0x54 0x68 0x65 - 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F 0x6D - 0x20 0x77 0x61 0x6C 0x6B 0x73 0x20 0x74 - 0x6F 0x77 0x61 0x72 0x64 0x20 0x68 0x65 - 0x72 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x45 0x6C - 0x69 0x7A 0x61 0x20 0x64 0x65 0x61 0x6C - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x69 0x73 0x20 0x62 0x61 0x67 0x2D 0x68 - 0x65 0x61 0x64 0x3F 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x68 0x65 0x72 0x20 0x70 - 0x65 0x61 0x63 0x65 0x20 0x6E 0x65 0x63 - 0x6B 0x6C 0x61 0x63 0x65 0x20 0x70 0x72 - 0x6F 0x74 0x65 0x63 0x74 0x20 0x68 0x65 - 0x72 0x2C 0x20 0x6F 0x72 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 0x6E - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x75 - 0x73 0x65 0x20 0x6B 0x61 0x72 0x61 0x74 - 0x65 0x20 0x74 0x6F 0x20 0x73 0x63 0x61 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x63 0x61 0x72 0x79 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13785 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5C= 0x00015334 - - -CHUNK('HTOP', _help_48544F50_5C, "") -SUBFILE -#line 13793 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x71 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE8 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5D, 0x0) - BYTE - 0x03 0x03 0x4E 0x75 0x72 0x73 0x65 0x0D - 0x0A 0x45 0x6C 0x69 0x7A 0x61 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 - 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x73 0x75 0x70 0x65 0x72 - 0x20 0x6E 0x75 0x72 0x73 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x63 0x61 0x6E 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x20 0x6F 0x72 - 0x20 0x67 0x72 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x68 0x65 0x6C 0x70 0x20 0x67 0x65 - 0x74 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x63 0x63 0x69 0x64 0x65 0x6E 0x74 - 0x73 0x2C 0x20 0x6F 0x72 0x20 0x66 0x65 - 0x65 0x6C 0x20 0x62 0x65 0x74 0x74 0x65 - 0x72 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x79 0x27 0x72 0x65 0x20 0x68 - 0x75 0x72 0x74 0x2E 0x20 0x20 0x49 0x6E - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x2C 0x20 0x45 0x6C 0x69 0x7A - 0x61 0x20 0x67 0x65 0x74 0x73 0x20 0x61 - 0x20 0x63 0x61 0x6C 0x6C 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x77 0x62 0x6F 0x79 0x20 0x63 0x61 - 0x66 0xE9 0x2E 0x20 0x41 0x20 0x6D 0x61 - 0x6E 0x20 0x69 0x73 0x20 0x63 0x68 0x6F - 0x6B 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 - 0x61 0x20 0x54 0x2D 0x62 0x6F 0x6E 0x65 - 0x21 0x20 0x20 0x53 0x68 0x65 0x20 0x6A - 0x75 0x6D 0x70 0x73 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x61 0x6D 0x62 0x75 - 0x6C 0x61 0x6E 0x63 0x65 0x20 0x77 0x69 - 0x74 0x68 0x6F 0x75 0x74 0x20 0x77 0x61 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x66 0x6F - 0x72 0x20 0x74 0x68 0x65 0x20 0x64 0x72 - 0x69 0x76 0x65 0x72 0x2E 0x20 0x0D 0x0A - 0x41 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x66 0xE9 0x2C 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x20 0x61 0x72 0x65 0x20 - 0x63 0x72 0x6F 0x77 0x64 0x65 0x64 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x67 0x75 0x79 0x20 0x6C - 0x79 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x66 0x6C 0x6F 0x6F - 0x72 0x2E 0x20 0x45 0x6C 0x69 0x7A 0x61 - 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B 0x73 - 0x20 0x66 0x61 0x73 0x74 0x2C 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x73 0x20 0x62 0x65 - 0x74 0x77 0x65 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x67 0x73 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x63 0x72 - 0x6F 0x77 0x64 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x67 0x72 - 0x6F 0x77 0x73 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x2E 0x20 0x20 0x4A 0x75 0x73 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x72 0x65 0x61 0x6C 0x69 0x7A - 0x65 0x73 0x20 0x74 0x68 0x65 0x20 0x93 - 0x67 0x75 0x79 0x94 0x20 0x69 0x73 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x61 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x21 0x20 - 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 0x73 - 0x61 0x76 0x65 0x20 0x61 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x3F 0x20 0x20 0x4F 0x72 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x70 0x75 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x69 0x6E 0x2D 0x6D 0x61 - 0x6E 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x61 0x6D 0x62 0x75 0x6C 0x61 0x6E - 0x63 0x65 0x20 0x61 0x6E 0x64 0x20 0x71 - 0x75 0x69 0x63 0x6B 0x6C 0x79 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x69 0x6E 0x76 0x65 0x6E 0x74 0x6F 0x72 - 0x2C 0x20 0x61 0x20 0x67 0x65 0x6E 0x69 - 0x75 0x73 0x20 0x67 0x72 0x65 0x65 0x6E - 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 - 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 13933 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5D= 0x00015335 - - -CHUNK('HTOP', _help_48544F50_5D, "") -SUBFILE -#line 13941 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_68=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_68=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBC 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1A 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_68=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_68, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x43 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x4D 0x65 0x78 0x69 0x63 0x61 0x6E 0x20 - 0x76 0x69 0x6C 0x6C 0x61 0x67 0x65 0x2C - 0x20 0x45 0x6C 0x69 0x7A 0x61 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 - 0x20 0x73 0x74 0x61 0x72 0x72 0x69 0x6E - 0x67 0x20 0x69 0x6E 0x20 0x61 0x64 0x76 - 0x65 0x6E 0x74 0x75 0x72 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x61 0x6B 0x65 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 0x66 - 0x61 0x72 0x2D 0x61 0x77 0x61 0x79 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 0x77 - 0x69 0x74 0x68 0x20 0x68 0x65 0x72 0x20 - 0x62 0x65 0x73 0x74 0x20 0x66 0x72 0x69 - 0x65 0x6E 0x64 0x2C 0x20 0x61 0x20 0x63 - 0x61 0x74 0x20 0x77 0x68 0x6F 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x73 0x65 0x63 - 0x72 0x65 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x75 0x6E 0x6C 0x6F 0x63 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x6C 0x6C 0x20 0x6B 0x69 - 0x6E 0x64 0x73 0x20 0x6F 0x66 0x20 0x74 - 0x72 0x65 0x61 0x73 0x75 0x72 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x45 0x6C 0x69 0x7A - 0x61 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x20 0x63 0x61 0x74 0x20 0x66 0x6C - 0x79 0x20 0x6F 0x66 0x66 0x20 0x74 0x6F - 0x20 0x61 0x20 0x64 0x69 0x73 0x74 0x61 - 0x6E 0x74 0x20 0x6D 0x6F 0x75 0x6E 0x74 - 0x61 0x69 0x6E 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x69 0x73 0x20 0x73 0x61 0x69 0x64 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x61 0x20 - 0x63 0x61 0x62 0x69 0x6E 0x20 0x77 0x69 - 0x74 0x68 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x20 0x69 0x6E 0x73 0x69 - 0x64 0x65 0x2E 0x20 0x20 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x65 0x6E 0x74 0x65 0x72 - 0x73 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x62 0x69 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x65 0x61 0x72 0x63 0x68 0x65 0x73 - 0x20 0x65 0x76 0x65 0x72 0x79 0x77 0x68 - 0x65 0x72 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x74 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x65 0x73 0x20 0x74 0x6F 0x77 - 0x61 0x72 0x64 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x61 0x64 0x64 0x65 0x72 0x2E 0x20 - 0x20 0x45 0x6C 0x69 0x7A 0x61 0x20 0x77 - 0x61 0x6C 0x6B 0x73 0x20 0x73 0x6C 0x6F - 0x77 0x6C 0x79 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x61 0x64 0x64 0x65 - 0x72 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x61 0x72 0x73 0x20 0x74 0x65 0x72 0x72 - 0x69 0x62 0x6C 0x65 0x20 0x6E 0x6F 0x69 - 0x73 0x65 0x73 0x2E 0x20 0x20 0x41 0x20 - 0x6D 0x61 0x73 0x6B 0x20 0x69 0x73 0x20 - 0x67 0x75 0x61 0x72 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x74 0x72 0x65 - 0x61 0x73 0x75 0x72 0x65 0x20 0x63 0x68 - 0x65 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x72 0x6E 0x69 0x6E 0x67 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x61 0x79 0x20 0x61 0x77 0x61 0x79 - 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x45 0x6C 0x69 - 0x7A 0x61 0x20 0x67 0x65 0x74 0x20 0x70 - 0x61 0x73 0x74 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x73 0x6B 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x3F 0x20 0x20 0x41 - 0x6E 0x64 0x20 0x68 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 - 0x70 0x65 0x72 0x73 0x75 0x61 0x64 0x65 - 0x20 0x68 0x65 0x72 0x20 0x74 0x65 0x72 - 0x72 0x69 0x66 0x69 0x65 0x64 0x20 0x63 - 0x61 0x74 0x20 0x74 0x6F 0x20 0x63 0x6F - 0x6D 0x65 0x20 0x6F 0x75 0x74 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x62 0x65 0x68 0x69 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x74 0x65 0x6D 0x20 0x70 0x6F 0x6C - 0x65 0x20 0x61 0x6E 0x64 0x20 0x6F 0x70 - 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 0x74 - 0x72 0x65 0x61 0x73 0x75 0x72 0x65 0x20 - 0x63 0x68 0x65 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14090 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5E= 0x00015336 - - -CHUNK('HTOP', _help_48544F50_5E, "") -SUBFILE -#line 14098 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5E, 0x0) - BYTE - 0x03 0x03 0x6D 0x69 0x73 0x75 0x6E 0x64 - 0x65 0x72 0x73 0x74 0x6F 0x6F 0x64 0x0D - 0x0A 0x50 0x65 0x6F 0x70 0x6C 0x65 0x20 - 0x64 0x6F 0x6E 0x92 0x74 0x20 0x75 0x6E - 0x64 0x65 0x72 0x73 0x74 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x46 0x72 - 0x61 0x6E 0x6B 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x69 0x73 0x6E 0x92 0x74 - 0x20 0x61 0x20 0x74 0x6F 0x75 0x67 0x68 - 0x20 0x67 0x75 0x79 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x46 0x72 0x61 0x6E 0x6B - 0x20 0x68 0x61 0x73 0x20 0x75 0x73 0x65 - 0x64 0x20 0x74 0x68 0x69 0x73 0x20 0x6D - 0x69 0x73 0x75 0x6E 0x64 0x65 0x72 0x73 - 0x74 0x61 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x6C 0x6F 0x74 0x73 0x20 0x6F 0x66 0x20 - 0x6D 0x6F 0x6E 0x65 0x79 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x2E 0x20 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x32 0x30 0x2C 0x20 0x68 - 0x65 0x20 0x74 0x72 0x69 0x65 0x64 0x20 - 0x6F 0x75 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x70 0x61 - 0x72 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x65 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 - 0x20 0x73 0x61 0x69 0x64 0x20 0x68 0x6F - 0x77 0x20 0x6D 0x75 0x63 0x68 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x65 0x64 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 0x20 - 0x62 0x6F 0x64 0x79 0x20 0x67 0x75 0x61 - 0x72 0x64 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x67 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 - 0x20 0x53 0x69 0x6E 0x63 0x65 0x20 0x74 - 0x68 0x65 0x6E 0x2C 0x20 0x68 0x65 0x92 - 0x73 0x20 0x70 0x6C 0x61 0x79 0x65 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x61 - 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x64 0x6F 0x7A 0x65 0x6E 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x73 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x6E 0x6F 0x77 0x20 0x69 0x74 - 0x27 0x73 0x20 0x74 0x6F 0x6F 0x20 0x65 - 0x61 0x73 0x79 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x70 - 0x61 0x72 0x74 0x73 0x20 0x77 0x68 0x65 - 0x72 0x65 0x20 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x64 0x6F 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x93 0x72 0x65 0x61 0x6C 0x94 - 0x20 0x61 0x63 0x74 0x69 0x6E 0x67 0x2E - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 14210 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_5F= 0x00015337 - - -CHUNK('HTOP', _help_48544F50_5F, "") -SUBFILE -#line 14218 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_5F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xDE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5F, 0x0) - BYTE - 0x03 0x03 0x47 0x75 0x69 0x6E 0x65 0x61 - 0x20 0x50 0x69 0x67 0x0D 0x0A 0x4A 0x75 - 0x73 0x74 0x20 0x66 0x6F 0x72 0x20 0x66 - 0x75 0x6E 0x2C 0x20 0x46 0x72 0x61 0x6E - 0x6B 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x74 0x68 - 0x65 0x20 0x67 0x75 0x79 0x20 0x77 0x68 - 0x6F 0x20 0x69 0x73 0x20 0x61 0x6C 0x77 - 0x61 0x79 0x73 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x72 0x73 0x74 0x20 0x74 0x6F - 0x20 0x74 0x72 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x74 0x65 0x73 0x74 0x20 - 0x62 0x75 0x62 0x62 0x6C 0x69 0x6E 0x67 - 0x20 0x64 0x72 0x69 0x6E 0x6B 0x20 0x63 - 0x6F 0x6F 0x6B 0x65 0x64 0x20 0x75 0x70 - 0x20 0x62 0x79 0x20 0x74 0x68 0x65 0x20 - 0x77 0x69 0x66 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x65 0x76 0x69 0x6C - 0x20 0x6F 0x77 0x6E 0x65 0x72 0x20 0x6F - 0x66 0x20 0x61 0x20 0x68 0x61 0x75 0x6E - 0x74 0x65 0x64 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x73 0x74 0x61 0x72 - 0x74 0x20 0x6F 0x75 0x74 0x20 0x77 0x69 - 0x74 0x68 0x20 0x46 0x72 0x61 0x6E 0x6B - 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E 0x67 - 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C 0x2E - 0x20 0x20 0x54 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x27 0x64 0x20 0x67 0x65 0x74 0x20 - 0x61 0x20 0x77 0x68 0x69 0x66 0x66 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x64 - 0x72 0x69 0x6E 0x6B 0x2C 0x20 0x61 0x6E - 0x64 0x97 0x62 0x61 0x6D 0x21 0x97 0x74 - 0x75 0x72 0x6E 0x20 0x67 0x72 0x65 0x65 - 0x6E 0x2C 0x20 0x66 0x61 0x69 0x6E 0x74 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x66 0x61 - 0x6C 0x6C 0x20 0x66 0x6C 0x61 0x74 0x20 - 0x6F 0x6E 0x20 0x68 0x69 0x73 0x20 0x66 - 0x61 0x63 0x65 0x2E 0x20 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x70 0x72 0x6F 0x62 0x6C - 0x65 0x6D 0x20 0x69 0x73 0x2C 0x20 0x46 - 0x72 0x61 0x6E 0x6B 0x20 0x68 0x61 0x73 - 0x6E 0x92 0x74 0x20 0x66 0x69 0x67 0x75 - 0x72 0x65 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x68 0x6F 0x77 0x20 0x68 0x65 0x92 0x64 - 0x20 0x63 0x68 0x61 0x6E 0x67 0x65 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x6F 0x72 0x6D - 0x61 0x6C 0x20 0x63 0x6F 0x6C 0x6F 0x72 - 0x2E 0x20 0x20 0x57 0x6F 0x75 0x6C 0x64 - 0x20 0x68 0x65 0x20 0x63 0x68 0x61 0x6E - 0x67 0x65 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x73 0x65 0x65 0x73 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 0x3F - 0x20 0x20 0x4F 0x72 0x20 0x6D 0x61 0x79 - 0x62 0x65 0x20 0x61 0x20 0x67 0x69 0x72 - 0x6C 0x66 0x72 0x69 0x65 0x6E 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14339 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_60= 0x00015338 - - -CHUNK('HTOP', _help_48544F50_60, "") -SUBFILE -#line 14347 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_60, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_61=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_61=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xED 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_61=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_61, 0x0) - BYTE - 0x03 0x03 0x56 0x69 0x6C 0x6C 0x61 0x69 - 0x6E 0x0D 0x0A 0x46 0x72 0x61 0x6E 0x6B - 0x73 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x73 0x74 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x20 0x65 0x76 0x65 0x72 0x2E - 0x20 0x48 0x65 0x92 0x73 0x20 0x73 0x68 - 0x6F 0x72 0x74 0x2C 0x20 0x73 0x6F 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x62 - 0x65 0x20 0x76 0x65 0x72 0x79 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x79 0x20 0x61 0x6E - 0x64 0x20 0x71 0x75 0x69 0x63 0x6B 0x2C - 0x20 0x65 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x77 0x65 0x61 0x72 - 0x73 0x20 0x68 0x69 0x73 0x20 0x76 0x69 - 0x6C 0x6C 0x61 0x69 0x6E 0x92 0x73 0x20 - 0x76 0x65 0x73 0x74 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x68 0x65 0x27 0x64 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x62 0x65 0x20 - 0x61 0x20 0x62 0x61 0x64 0x20 0x67 0x75 - 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x64 0x20 0x67 0x75 0x79 - 0x73 0x2C 0x20 0x73 0x69 0x6E 0x63 0x65 - 0x20 0x68 0x65 0x92 0x64 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x62 0x65 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x69 - 0x6E 0x67 0x20 0x6B 0x69 0x64 0x73 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x73 0x74 0x20 - 0x62 0x75 0x6C 0x6C 0x69 0x65 0x73 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x77 0x65 0x61 0x72 0x20 - 0x68 0x69 0x73 0x20 0x76 0x65 0x73 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x68 0x61 0x6E - 0x67 0x20 0x6F 0x75 0x74 0x20 0x61 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 0x73 - 0x74 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 - 0x70 0x75 0x6E 0x6B 0x73 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 - 0x79 0x20 0x65 0x76 0x65 0x72 0x20 0x77 - 0x65 0x6E 0x74 0x20 0x69 0x6E 0x73 0x69 - 0x64 0x65 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x69 - 0x66 0x20 0x61 0x20 0x62 0x75 0x6E 0x63 - 0x68 0x20 0x6F 0x66 0x20 0x74 0x68 0x75 - 0x67 0x73 0x20 0x73 0x68 0x6F 0x77 0x65 - 0x64 0x20 0x75 0x70 0x3F 0x20 0x20 0x57 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 0x73 - 0x20 0x76 0x65 0x73 0x74 0x20 0x67 0x69 - 0x76 0x65 0x20 0x68 0x69 0x6D 0x20 0x73 - 0x70 0x65 0x63 0x69 0x61 0x6C 0x20 0x70 - 0x6F 0x77 0x65 0x72 0x73 0x20 0x74 0x6F - 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 - 0x65 0x6D 0x3F 0x20 0x41 0x6E 0x64 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 - 0x73 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E - 0x67 0x20 0x68 0x65 0x6C 0x70 0x20 0x68 - 0x69 0x6D 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x61 0x20 0x74 0x69 0x67 0x68 - 0x74 0x20 0x73 0x70 0x6F 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14470 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_61= 0x00015339 - - -CHUNK('HTOP', _help_48544F50_61, "") -SUBFILE -#line 14478 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_61, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_60=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_61, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_60=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x07 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x80 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_60=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_60, 0x0) - BYTE - 0x03 0x03 0x4A 0x75 0x6E 0x67 0x6C 0x65 - 0x20 0x4D 0x61 0x6E 0x0D 0x0A 0x57 0x68 - 0x61 0x74 0x20 0x69 0x66 0x20 0x46 0x72 - 0x61 0x6E 0x6B 0x20 0x77 0x65 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x6F - 0x6C 0x65 0x73 0x74 0x20 0x6A 0x75 0x6E - 0x67 0x6C 0x65 0x20 0x6D 0x61 0x6E 0x20 - 0x69 0x6E 0x20 0x5A 0x61 0x6D 0x62 0x69 - 0x61 0x2C 0x20 0x41 0x66 0x72 0x69 0x63 - 0x61 0x3F 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x64 0x61 0x79 0x2C 0x20 0x68 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x64 0x6F 0x67 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x67 0x65 0x74 0x20 0x75 0x70 - 0x20 0x65 0x61 0x72 0x6C 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x65 0x78 0x70 0x6C 0x6F - 0x72 0x65 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x76 0x69 0x6C 0x6C 0x61 - 0x67 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x79 0x27 0x64 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x20 0x77 0x6F 0x6F 0x64 0x65 - 0x6E 0x20 0x67 0x61 0x74 0x65 0x77 0x61 - 0x79 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x72 0x61 0x6E 0x63 0x65 0x20 0x74 0x6F - 0x20 0x61 0x20 0x63 0x61 0x62 0x69 0x6E - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x63 - 0x61 0x62 0x69 0x6E 0x20 0x6D 0x69 0x67 - 0x68 0x74 0x20 0x62 0x65 0x20 0x65 0x6D - 0x70 0x74 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x69 0x6C 0x65 0x6E 0x74 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x6F 0x6E 0x20 0x61 - 0x20 0x74 0x61 0x62 0x6C 0x65 0x2C 0x20 - 0x61 0x20 0x63 0x61 0x6E 0x64 0x6C 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x62 0x75 0x72 0x6E 0x69 0x6E - 0x67 0x20 0x6E 0x65 0x78 0x74 0x20 0x74 - 0x6F 0x20 0x61 0x20 0x6D 0x61 0x70 0x2E - 0x20 0x20 0x54 0x68 0x65 0x72 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x62 0x69 0x67 0x2C 0x20 - 0x72 0x65 0x64 0x20 0x58 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x70 - 0x2C 0x20 0x6E 0x65 0x61 0x72 0x20 0x74 - 0x68 0x65 0x20 0x43 0x68 0x61 0x6D 0x62 - 0x65 0x7A 0x69 0x20 0x72 0x69 0x76 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6E 0x6F 0x72 0x74 0x68 0x2E 0x20 - 0x0D 0x0A 0x57 0x68 0x79 0x20 0x77 0x61 - 0x73 0x20 0x74 0x68 0x69 0x73 0x20 0x73 - 0x70 0x6F 0x74 0x20 0x6D 0x61 0x72 0x6B - 0x65 0x64 0x3F 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x68 0x61 0x70 0x70 0x65 0x6E - 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x70 0x65 0x72 0x73 0x6F 0x6E - 0x20 0x77 0x68 0x6F 0x20 0x6C 0x69 0x76 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x62 0x69 0x6E 0x3F - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x46 0x72 0x61 0x6E - 0x6B 0x20 0x61 0x6E 0x64 0x20 0x68 0x69 - 0x73 0x20 0x64 0x6F 0x67 0x20 0x73 0x6E - 0x69 0x66 0x66 0x20 0x6F 0x75 0x74 0x20 - 0x74 0x68 0x65 0x73 0x65 0x20 0x6D 0x79 - 0x73 0x74 0x65 0x72 0x69 0x65 0x73 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 14605 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_62= 0x0001533a - - -CHUNK('HTOP', _help_48544F50_62, "") -SUBFILE -#line 14613 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_62, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_30=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_30=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_30=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_30, 0x0) - BYTE - 0x03 0x03 0x63 0x72 0x61 0x77 0x6C 0x69 - 0x6E 0x67 0x0D 0x0A 0x53 0x6F 0x20 0x6A - 0x75 0x73 0x74 0x20 0x68 0x6F 0x77 0x20 - 0x64 0x6F 0x65 0x73 0x20 0x47 0x61 0x62 - 0x72 0x69 0x65 0x6C 0x20 0x6B 0x65 0x65 - 0x70 0x20 0x66 0x72 0x6F 0x6D 0x20 0x67 - 0x65 0x74 0x74 0x69 0x6E 0x67 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x64 - 0x20 0x6F 0x72 0x20 0x6D 0x75 0x67 0x67 - 0x65 0x64 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x92 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x6F 0x72 0x20 0x62 0x65 0x61 0x63 - 0x68 0x3F 0x20 0x20 0x57 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x77 0x61 0x73 0x20 - 0x79 0x6F 0x75 0x6E 0x67 0x65 0x72 0x2C - 0x20 0x68 0x65 0x20 0x6C 0x65 0x61 0x72 - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x73 - 0x70 0x69 0x6E 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x73 0x6F 0x20 0x66 0x61 - 0x73 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x74 0x6F 0x75 - 0x63 0x68 0x20 0x68 0x69 0x6D 0x2E 0x20 - 0x20 0x41 0x66 0x74 0x65 0x72 0x20 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x72 0x6E 0x65 - 0x64 0x20 0x74 0x6F 0x20 0x77 0x61 0x6C - 0x6B 0x2C 0x20 0x68 0x65 0x20 0x73 0x74 - 0x69 0x6C 0x6C 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x70 0x69 0x6E 0x20 0x66 - 0x61 0x73 0x74 0x20 0x69 0x66 0x20 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x69 0x6E - 0x20 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 0x69 - 0x64 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x61 0x63 0x68 0x20 0x6F 0x6E 0x65 0x20 - 0x61 0x66 0x74 0x65 0x72 0x6E 0x6F 0x6F - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x70 0x72 0x61 0x79 0x65 0x64 0x20 0x73 - 0x61 0x6E 0x64 0x20 0x61 0x6C 0x6C 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x4D 0x63 0x5A - 0x65 0x65 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x2E 0x20 - 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 0x72 - 0x65 0x61 0x6C 0x69 0x7A 0x65 0x64 0x20 - 0x74 0x68 0x69 0x73 0x20 0x77 0x61 0x73 - 0x20 0x72 0x61 0x77 0x2C 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x74 0x61 0x6C 0x65 - 0x6E 0x74 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x76 0x69 0x6E 0x63 0x65 - 0x64 0x20 0x47 0x61 0x62 0x72 0x69 0x65 - 0x6C 0x92 0x73 0x20 0x70 0x61 0x72 0x65 - 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 0x6C - 0x65 0x74 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x62 0x65 0x20 0x69 0x6E - 0x20 0x68 0x69 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 14733 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_63= 0x0001533b - - -CHUNK('HTOP', _help_48544F50_63, "") -SUBFILE -#line 14741 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_63, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_63=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_63=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x72 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_63=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_63, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x6F 0x6F 0x6B 0x79 - 0x92 0x73 0x20 0x59 0x6F 0x75 0x6E 0x67 - 0x65 0x73 0x74 0x20 0x53 0x6F 0x6E 0x0D - 0x0A 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x73 0x65 0x72 - 0x69 0x6F 0x75 0x73 0x6C 0x79 0x20 0x63 - 0x6F 0x6F 0x6C 0x20 0x44 0x61 0x64 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x64 0x72 0x65 0x61 0x6D - 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x79 - 0x6F 0x75 0x6E 0x67 0x65 0x73 0x74 0x20 - 0x73 0x6F 0x6E 0x2E 0x20 0x20 0x47 0x61 - 0x62 0x72 0x69 0x65 0x6C 0x20 0x73 0x65 - 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x74 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x6C 0x6C 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x69 0x6D 0x20 0x61 0x6E - 0x64 0x20 0x68 0x61 0x76 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6D 0x20 0x74 0x72 0x79 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x74 0x74 0x65 0x73 0x74 0x20 - 0x62 0x61 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x73 0x75 0x69 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x73 0x68 0x6F 0x72 0x74 0x73 - 0x2E 0x20 0x20 0x57 0x68 0x69 0x6C 0x65 - 0x20 0x53 0x70 0x6F 0x6F 0x6B 0x79 0x20 - 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x6F 0x72 0x65 0x2C - 0x20 0x47 0x61 0x62 0x72 0x69 0x65 0x6C - 0x20 0x77 0x61 0x6E 0x64 0x65 0x72 0x73 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x6F 0x75 0x74 0x73 0x69 0x64 0x65 0x2E - 0x20 0x20 0x53 0x75 0x64 0x64 0x65 0x6E - 0x6C 0x79 0x20 0x47 0x61 0x62 0x72 0x69 - 0x65 0x6C 0x20 0x68 0x65 0x61 0x72 0x73 - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x6F - 0x72 0x65 0x20 0x63 0x6C 0x65 0x72 0x6B - 0x20 0x79 0x65 0x6C 0x6C 0x2C 0x20 0x93 - 0x53 0x74 0x6F 0x70 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x69 0x65 0x66 0x21 - 0x94 0x20 0x0D 0x0A 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x73 0x70 0x6F 0x74 - 0x73 0x20 0x74 0x68 0x65 0x20 0x74 0x68 - 0x69 0x65 0x66 0x20 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x77 - 0x61 0x79 0x2E 0x20 0x20 0x43 0x61 0x6E - 0x20 0x68 0x65 0x20 0x73 0x74 0x6F 0x70 - 0x20 0x61 0x20 0x67 0x72 0x6F 0x77 0x6E - 0x20 0x6D 0x61 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14857 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_64= 0x0001533c - - -CHUNK('HTOP', _help_48544F50_64, "") -SUBFILE -#line 14865 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_64, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_67=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_67=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_67=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_67, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x61 0x72 0x0D 0x0A - 0x57 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x6C 0x64 0x20 0x6E - 0x65 0x65 0x64 0x73 0x20 0x69 0x73 0x20 - 0x61 0x6E 0x20 0x69 0x6E 0x66 0x61 0x6E - 0x74 0x20 0x73 0x74 0x61 0x72 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x73 0x74 0x61 0x72 0x2E 0x20 0x20 - 0x4E 0x6F 0x74 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x6E 0x79 0x20 0x63 0x72 0x61 - 0x6E 0x6B 0x79 0x20 0x62 0x61 0x62 0x79 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x20 0x62 0x61 - 0x62 0x79 0x21 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x69 0x6D 0x61 0x67 - 0x69 0x6E 0x65 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x68 0x69 0x73 0x20 0x64 0x69 - 0x61 0x70 0x65 0x72 0x73 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x70 0x72 0x6F 0x74 - 0x65 0x63 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x6C 0x6C - 0x20 0x66 0x61 0x6C 0x6C 0x73 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x6F 0x75 0x74 0x20 0x61 0x20 0x77 - 0x69 0x6E 0x64 0x6F 0x77 0x2C 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x20 0x75 0x70 - 0x2C 0x20 0x72 0x65 0x74 0x75 0x72 0x6E - 0x20 0x74 0x6F 0x20 0x6E 0x6F 0x72 0x6D - 0x61 0x6C 0x20 0x73 0x69 0x7A 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x72 0x75 0x6E - 0x20 0x61 0x77 0x61 0x79 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x77 0x68 0x61 - 0x74 0x20 0x69 0x66 0x20 0x68 0x65 0x20 - 0x6A 0x75 0x6D 0x70 0x65 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x6C 0x61 0x6E 0x64 0x65 - 0x64 0x20 0x72 0x69 0x67 0x68 0x74 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x74 0x68 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x74 0x61 0x78 0x69 0x20 0x63 0x61 - 0x62 0x20 0x61 0x73 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x72 0x65 0x74 0x75 - 0x72 0x6E 0x69 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C 0x20 - 0x73 0x69 0x7A 0x65 0x3F 0x20 0x20 0x47 - 0x61 0x62 0x72 0x69 0x65 0x6C 0x20 0x63 - 0x61 0x6E 0x20 0x73 0x71 0x75 0x61 0x73 - 0x68 0x20 0x61 0x6E 0x64 0x20 0x67 0x72 - 0x6F 0x77 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x63 0x61 0x6E 0x20 0x68 0x65 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x3F -ENDCHUNK - - -ENDCHUNK -#line 14981 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_65= 0x0001533d - - -CHUNK('HTOP', _help_48544F50_65, "") -SUBFILE -#line 14989 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_65, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_65=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_65=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5E 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_65=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_65, 0x0) - BYTE - 0x03 0x03 0x59 0x6F 0x75 0x6E 0x67 0x20 - 0x4E 0x61 0x74 0x69 0x76 0x65 0x0D 0x0A - 0x41 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x20 0x47 0x61 - 0x62 0x72 0x69 0x65 0x6C 0x20 0x68 0x61 - 0x73 0x20 0x69 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x62 0x61 0x62 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x68 0x61 0x73 0x20 - 0x62 0x65 0x65 0x6E 0x20 0x72 0x61 0x69 - 0x73 0x65 0x64 0x20 0x62 0x79 0x20 0x77 - 0x69 0x6C 0x64 0x20 0x61 0x6E 0x69 0x6D - 0x61 0x6C 0x73 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6A 0x75 0x6E 0x67 0x6C - 0x65 0x2E 0x20 0x20 0x48 0x65 0x20 0x73 - 0x65 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x6A 0x75 0x6D 0x70 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x72 0x65 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x71 0x75 0x61 0x73 - 0x68 0x69 0x6E 0x67 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x6C 0x61 0x6E - 0x64 0x73 0x2C 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x61 0x20 0x6D 0x6F 0x6E 0x6B 0x65 - 0x79 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x68 0x65 0x20 0x69 0x73 0x20 0x61 0x62 - 0x64 0x75 0x63 0x74 0x65 0x64 0x20 0x62 - 0x79 0x20 0x6E 0x61 0x74 0x69 0x76 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x74 0x61 - 0x6B 0x65 0x6E 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x69 0x72 0x20 0x76 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x6F 0x76 0x65 0x72 0x68 0x65 - 0x61 0x72 0x73 0x20 0x74 0x68 0x65 0x20 - 0x76 0x69 0x6C 0x6C 0x61 0x67 0x65 0x72 - 0x73 0x20 0x70 0x6C 0x61 0x6E 0x6E 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x63 0x61 - 0x70 0x74 0x75 0x72 0x65 0x20 0x74 0x68 - 0x65 0x20 0x77 0x69 0x6C 0x64 0x20 0x61 - 0x6E 0x69 0x6D 0x61 0x6C 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x65 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x6D 0x2E 0x20 0x0D 0x0A - 0x43 0x61 0x6E 0x20 0x47 0x61 0x62 0x72 - 0x69 0x65 0x6C 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x20 0x77 0x61 0x79 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 - 0x68 0x65 0x6D 0x3F 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x68 0x69 0x73 0x20 0x70 - 0x61 0x63 0x69 0x66 0x69 0x65 0x72 0x20 - 0x67 0x69 0x76 0x65 0x20 0x68 0x69 0x6D - 0x20 0x73 0x70 0x65 0x63 0x69 0x61 0x6C - 0x20 0x70 0x6F 0x77 0x65 0x72 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15104 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_66= 0x0001533e - - -CHUNK('HTOP', _help_48544F50_66, "") -SUBFILE -#line 15112 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_66, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_64=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_64=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x58 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_64=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_64, 0x0) - BYTE - 0x03 0x03 0x64 0x72 0x61 0x6D 0x61 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x20 0x69 0x6E 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x27 0x73 0x20 0x64 0x72 - 0x61 0x6D 0x61 0x20 0x63 0x6C 0x61 0x73 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x20 0x66 0x69 0x6C - 0x6D 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x63 0x61 0x6D 0x65 0x20 0x74 0x6F - 0x20 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6C 0x61 0x73 0x73 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x68 0x6F - 0x77 0x20 0x68 0x65 0x20 0x6D 0x61 0x6B - 0x65 0x73 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x2E 0x20 0x20 0x41 0x66 0x74 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x6C 0x65 - 0x63 0x74 0x75 0x72 0x65 0x2C 0x20 0x73 - 0x65 0x76 0x65 0x72 0x61 0x6C 0x20 0x73 - 0x74 0x75 0x64 0x65 0x6E 0x74 0x73 0x20 - 0x64 0x69 0x64 0x20 0x61 0x20 0x73 0x6B - 0x69 0x74 0x20 0x74 0x68 0x65 0x79 0x27 - 0x64 0x20 0x77 0x72 0x69 0x74 0x74 0x65 - 0x6E 0x20 0x66 0x6F 0x72 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x2E 0x20 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x20 0x77 0x61 - 0x73 0x20 0x61 0x20 0x62 0x75 0x6D 0x62 - 0x6C 0x69 0x6E 0x67 0x20 0x64 0x65 0x74 - 0x65 0x63 0x74 0x69 0x76 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x66 0x61 0x6C 0x6C 0x73 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x61 0x20 - 0x6C 0x6F 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x68 0x61 0x73 0x20 0x61 0x20 0x6B 0x6E - 0x61 0x63 0x6B 0x20 0x66 0x6F 0x72 0x20 - 0x66 0x69 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x74 0x72 0x6F 0x75 0x62 0x6C 0x65 0x2E - 0x20 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x6C 0x6F 0x76 0x65 0x64 0x20 0x69 0x74 - 0x2E 0x20 0x48 0x65 0x20 0x61 0x73 0x6B - 0x65 0x64 0x20 0x47 0x72 0x65 0x67 0x6F - 0x72 0x79 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x66 0x69 0x6C - 0x6D 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15217 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_67= 0x0001533f - - -CHUNK('HTOP', _help_48544F50_67, "") -SUBFILE -#line 15225 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_67, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_66=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_67, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_66=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_66=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_66, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x67 0x69 0x63 0x69 - 0x61 0x6E 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x75 0x6C 0x74 0x69 0x6D 0x61 0x74 0x65 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x66 0x6F - 0x72 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x20 0x6D 0x61 0x67 - 0x69 0x63 0x69 0x61 0x6E 0x2E 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6C 0x65 0x2C 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x20 0x6C 0x69 0x76 0x65 - 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 0x64 - 0x6F 0x6F 0x72 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x6F - 0x77 0x6E 0x65 0x64 0x20 0x62 0x79 0x20 - 0x61 0x20 0x63 0x72 0x65 0x65 0x70 0x79 - 0x20 0x6D 0x61 0x6E 0x2E 0x20 0x20 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x66 - 0x72 0x69 0x65 0x6E 0x64 0x73 0x20 0x64 - 0x65 0x63 0x69 0x64 0x65 0x20 0x74 0x6F - 0x20 0x69 0x6E 0x76 0x65 0x73 0x74 0x69 - 0x67 0x61 0x74 0x65 0x20 0x74 0x68 0x65 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x6F - 0x6E 0x65 0x20 0x61 0x66 0x74 0x65 0x72 - 0x6E 0x6F 0x6F 0x6E 0x2E 0x20 0x20 0x4F - 0x6E 0x63 0x65 0x20 0x69 0x6E 0x73 0x69 - 0x64 0x65 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x62 0x72 0x61 0x72 0x79 0x2C 0x20 - 0x73 0x74 0x72 0x61 0x6E 0x67 0x65 0x20 - 0x67 0x72 0x6F 0x61 0x6E 0x73 0x20 0x63 - 0x6F 0x6D 0x65 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x62 0x6F 0x6F 0x6B 0x73 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 0x68 - 0x65 0x6C 0x76 0x65 0x73 0x2E 0x20 0x0D - 0x0A 0x43 0x61 0x6E 0x20 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x20 0x75 0x73 0x65 - 0x20 0x68 0x69 0x73 0x20 0x6D 0x61 0x67 - 0x69 0x63 0x61 0x6C 0x20 0x70 0x6F 0x77 - 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x20 0x6F 0x72 - 0x20 0x67 0x72 0x6F 0x77 0x20 0x68 0x69 - 0x6D 0x73 0x65 0x6C 0x66 0x20 0x61 0x6E - 0x64 0x20 0x67 0x65 0x74 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x2E 0x2E 0x61 0x6C - 0x69 0x76 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15338 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_68= 0x00015340 - - -CHUNK('HTOP', _help_48544F50_68, "") -SUBFILE -#line 15346 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_68, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_69=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_68, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD3 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_69=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_69=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_69, 0x0) - BYTE - 0x03 0x03 0x4E 0x65 0x77 0x73 0x70 0x61 - 0x70 0x65 0x72 0x20 0x42 0x6F 0x79 0x0D - 0x0A 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 - 0x69 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x63 0x6F 0x6F 0x6C - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x6E 0x65 0x77 0x73 0x70 - 0x61 0x70 0x65 0x72 0x20 0x62 0x6F 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x77 0x69 0x74 - 0x6E 0x65 0x73 0x73 0x65 0x73 0x20 0x61 - 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 0x79 - 0x2E 0x20 0x20 0x42 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x62 0x62 0x65 0x72 0x20 0x6A 0x75 0x6D - 0x70 0x73 0x20 0x6F 0x75 0x74 0x20 0x61 - 0x20 0x77 0x69 0x6E 0x64 0x6F 0x77 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x68 0x69 0x73 0x20 0x65 0x73 0x63 0x61 - 0x70 0x65 0x2C 0x20 0x68 0x65 0x20 0x63 - 0x61 0x74 0x63 0x68 0x65 0x73 0x20 0x61 - 0x20 0x67 0x6C 0x69 0x6D 0x70 0x73 0x65 - 0x20 0x6F 0x66 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x47 - 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 0x73 - 0x61 0x77 0x20 0x68 0x69 0x6D 0x2E 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x62 0x79 0x73 - 0x74 0x61 0x6E 0x64 0x65 0x72 0x73 0x20 - 0x74 0x65 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x73 0x61 0x77 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x63 0x65 - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x63 0x72 0x69 0x6D 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6E 0x6F 0x77 - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x70 - 0x73 0x20 0x74 0x68 0x69 0x6E 0x6B 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 - 0x64 0x69 0x64 0x20 0x69 0x74 0x2E 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 - 0x68 0x61 0x73 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x64 0x65 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x70 0x6F 0x6C - 0x69 0x63 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x61 0x6C - 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 0x20 - 0x77 0x68 0x69 0x6C 0x65 0x20 0x68 0x65 - 0x20 0x66 0x69 0x67 0x75 0x72 0x65 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x6F 0x20 0x70 0x72 0x6F 0x76 - 0x65 0x20 0x77 0x68 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 - 0x20 0x69 0x73 0x2E 0x20 0x0D 0x0A 0x57 - 0x69 0x6C 0x6C 0x20 0x47 0x72 0x65 0x67 - 0x6F 0x72 0x79 0x20 0x62 0x65 0x20 0x61 - 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 0x70 - 0x72 0x6F 0x76 0x65 0x20 0x68 0x69 0x73 - 0x20 0x69 0x6E 0x6E 0x6F 0x63 0x65 0x6E - 0x63 0x65 0x3F 0x20 0x20 0x43 0x61 0x6E - 0x20 0x68 0x65 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x6C 0x65 0x61 0x64 0x20 0x74 0x68 - 0x65 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x20 0x72 0x6F 0x62 - 0x62 0x65 0x72 0x20 0x77 0x69 0x74 0x68 - 0x6F 0x75 0x74 0x20 0x62 0x65 0x69 0x6E - 0x67 0x20 0x61 0x72 0x72 0x65 0x73 0x74 - 0x65 0x64 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x2C 0x20 0x6F 0x72 0x20 0x77 - 0x6F 0x72 0x73 0x65 0x2C 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x20 0x66 0x6F 0x75 0x6E - 0x64 0x20 0x62 0x79 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x62 0x62 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15483 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_69= 0x00015341 - - -CHUNK('HTOP', _help_48544F50_69, "") -SUBFILE -#line 15491 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_69, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_73=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_69, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_73=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x87 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_73=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_73, 0x0) - BYTE - 0x03 0x03 0x42 0x6F 0x79 0x20 0x53 0x63 - 0x6F 0x75 0x74 0x0D 0x0A 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x20 0x69 0x6D 0x61 - 0x67 0x69 0x6E 0x65 0x73 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x69 0x6E - 0x20 0x77 0x68 0x69 0x63 0x68 0x20 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 - 0x61 0x20 0x62 0x6F 0x79 0x20 0x73 0x63 - 0x6F 0x75 0x74 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x74 0x72 0x6F 0x6F 0x70 0x20 - 0x74 0x72 0x61 0x76 0x65 0x6C 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x69 - 0x73 0x6C 0x61 0x6E 0x64 0x20 0x6F 0x66 - 0x20 0x46 0x69 0x6A 0x69 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x74 0x72 0x6F 0x6F - 0x70 0x20 0x76 0x69 0x73 0x69 0x74 0x73 - 0x20 0x61 0x20 0x74 0x72 0x69 0x62 0x61 - 0x6C 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x6F 0x6E 0x63 0x65 0x20 0x75 0x73 0x65 - 0x64 0x20 0x62 0x79 0x20 0x69 0x73 0x6C - 0x61 0x6E 0x64 0x20 0x63 0x68 0x69 0x65 - 0x66 0x73 0x2E 0x20 0x20 0x47 0x72 0x65 - 0x67 0x6F 0x72 0x79 0x20 0x62 0x75 0x6D - 0x70 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x61 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x2C 0x20 0x77 0x68 - 0x69 0x63 0x68 0x20 0x74 0x61 0x6C 0x6B - 0x73 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D - 0x21 0x20 0x20 0x54 0x68 0x65 0x20 0x70 - 0x6F 0x6C 0x65 0x20 0x74 0x65 0x6C 0x6C - 0x73 0x20 0x47 0x72 0x65 0x67 0x6F 0x72 - 0x79 0x20 0x6F 0x66 0x20 0x61 0x20 0x62 - 0x75 0x72 0x69 0x65 0x64 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x20 0x63 - 0x68 0x65 0x73 0x74 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x61 0x73 0x20 0x73 0x74 - 0x6F 0x6C 0x65 0x6E 0x20 0x6C 0x6F 0x6E - 0x67 0x20 0x61 0x67 0x6F 0x2E 0x20 0x20 - 0x49 0x74 0x20 0x61 0x73 0x6B 0x73 0x20 - 0x47 0x72 0x65 0x67 0x6F 0x72 0x79 0x20 - 0x74 0x6F 0x20 0x62 0x72 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x63 0x68 0x65 - 0x73 0x74 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x76 - 0x69 0x6C 0x6C 0x61 0x67 0x65 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x77 0x61 0x72 0x6E - 0x73 0x2C 0x20 0x22 0x54 0x68 0x65 0x72 - 0x65 0x20 0x69 0x73 0x20 0x67 0x72 0x65 - 0x61 0x74 0x20 0x64 0x61 0x6E 0x67 0x65 - 0x72 0x20 0x69 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6A 0x6F 0x75 0x72 0x6E 0x65 - 0x79 0x2E 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x6D 0x75 0x73 0x74 0x20 0x63 0x72 0x6F - 0x73 0x73 0x20 0x61 0x6E 0x20 0x6F 0x6C - 0x64 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x66 0x69 - 0x67 0x68 0x74 0x20 0x61 0x20 0x62 0x69 - 0x67 0x20 0x6D 0x61 0x6E 0x2E 0x20 0x20 - 0x49 0x66 0x20 0x79 0x6F 0x75 0x20 0x63 - 0x61 0x6E 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x66 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x72 0x69 0x64 0x67 0x65 0x2C 0x20 - 0x79 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 - 0x63 0x6F 0x6E 0x74 0x69 0x6E 0x75 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x76 0x65 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x76 0x65 0x20 0x79 0x6F 0x75 0x20 0x6D - 0x75 0x73 0x74 0x20 0x6C 0x61 0x75 0x67 - 0x68 0x20 0x74 0x77 0x69 0x63 0x65 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6B 0x65 0x6C 0x65 0x74 0x6F 0x6E 0x2E - 0x20 0x20 0x4F 0x6E 0x6C 0x79 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x79 0x6F 0x75 0x20 0x62 0x65 0x20 - 0x61 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x74 0x61 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x2E 0x22 0x20 0x0D - 0x0A 0x57 0x69 0x6C 0x6C 0x20 0x47 0x72 - 0x65 0x67 0x6F 0x72 0x79 0x20 0x68 0x65 - 0x65 0x64 0x20 0x74 0x68 0x69 0x73 0x20 - 0x61 0x64 0x76 0x69 0x63 0x65 0x3F 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x68 0x65 0x20 - 0x6D 0x61 0x6E 0x61 0x67 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 - 0x74 0x68 0x65 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x20 0x63 0x68 0x65 - 0x73 0x74 0x20 0x73 0x61 0x66 0x65 0x6C - 0x79 0x20 0x62 0x61 0x63 0x6B 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x76 0x69 - 0x6C 0x6C 0x61 0x67 0x65 0x3F 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x68 0x69 0x73 - 0x20 0x73 0x63 0x6F 0x75 0x74 0x20 0x6D - 0x6F 0x74 0x74 0x6F 0x20 0x22 0x42 0x65 - 0x20 0x70 0x72 0x65 0x70 0x61 0x72 0x65 - 0x64 0x22 0x20 0x62 0x65 0x20 0x65 0x6E - 0x6F 0x75 0x67 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15652 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6A= 0x00015342 - - -CHUNK('HTOP', _help_48544F50_6A, "") -SUBFILE -#line 15660 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCB 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x35 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF6 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6A, 0x0) - BYTE - 0x03 0x03 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x0D 0x0A 0x41 0x73 0x20 0x61 0x20 - 0x63 0x68 0x69 0x6C 0x64 0x2C 0x20 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x20 0x6D - 0x65 0x6D 0x6F 0x72 0x69 0x7A 0x65 0x64 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x64 0x61 0x6E 0x63 0x65 0x73 0x20 - 0x69 0x6E 0x20 0x6F 0x6C 0x64 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x2E 0x20 0x20 - 0x41 0x6E 0x64 0x20 0x61 0x73 0x20 0x68 - 0x65 0x20 0x67 0x6F 0x74 0x20 0x6F 0x6C - 0x64 0x65 0x72 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x61 0x74 0x63 0x68 0x65 0x64 0x20 - 0x64 0x61 0x6E 0x63 0x65 0x72 0x73 0x20 - 0x69 0x6E 0x20 0x41 0x6D 0x65 0x72 0x69 - 0x63 0x61 0x6E 0x20 0x6D 0x75 0x73 0x69 - 0x63 0x20 0x76 0x69 0x64 0x65 0x6F 0x73 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x64 0x65 - 0x66 0x69 0x6E 0x69 0x74 0x65 0x6C 0x79 - 0x20 0x6B 0x6E 0x65 0x77 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x65 0x73 0x2E - 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x6D 0x6F - 0x72 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x2C 0x20 - 0x6E 0x6F 0x77 0x20 0x6A 0x6F 0x62 0x6C - 0x65 0x73 0x73 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x77 0x65 0x61 0x72 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x73 0x68 0x6F 0x65 0x73 0x2C 0x20 0x74 - 0x77 0x6F 0x2D 0x73 0x74 0x65 0x70 0x70 - 0x65 0x64 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x72 0x65 0x65 0x74 0x73 0x20 0x6F - 0x66 0x20 0x50 0x6F 0x72 0x74 0x6F 0x66 - 0x69 0x6E 0x6F 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x69 0x72 0x65 0x63 0x74 0x6C 0x79 - 0x20 0x6F 0x6E 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x73 0x65 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x6E 0x65 0x77 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x97 0x72 0x69 0x67 - 0x68 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x64 0x64 0x6C 0x65 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x6C 0x6F - 0x76 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 - 0x2E 0x20 0x20 0x45 0x76 0x65 0x72 0x79 - 0x6F 0x6E 0x65 0x20 0x79 0x65 0x6C 0x6C - 0x65 0x64 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x6D 0x20 0x74 0x6F 0x20 0x6D 0x6F - 0x76 0x65 0x20 0x69 0x74 0x2E 0x20 0x20 - 0x45 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 - 0x20 0x65 0x78 0x63 0x65 0x70 0x74 0x20 - 0x4D 0x65 0x6C 0x61 0x6E 0x69 0x65 0x2C - 0x20 0x61 0x20 0x79 0x6F 0x75 0x6E 0x67 - 0x20 0x64 0x69 0x72 0x65 0x63 0x74 0x6F - 0x72 0x20 0x77 0x68 0x6F 0x20 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x20 0x47 0x75 - 0x73 0x74 0x61 0x76 0x65 0x20 0x77 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x68 0x69 - 0x70 0x70 0x65 0x73 0x74 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x72 0x20 0x73 0x68 0x65 - 0x92 0x64 0x20 0x65 0x76 0x65 0x72 0x20 - 0x73 0x65 0x65 0x6E 0x2E 0x20 0x0D 0x0A - 0x4F 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x70 0x6F 0x74 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x73 0x69 0x67 0x6E 0x65 0x64 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x61 0x72 0x20 - 0x69 0x6E 0x20 0x68 0x65 0x72 0x20 0x6E - 0x65 0x78 0x74 0x20 0x72 0x6F 0x63 0x6B - 0x20 0x76 0x69 0x64 0x65 0x6F 0x2E -ENDCHUNK - - -ENDCHUNK -#line 15792 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6B= 0x00015343 - - -CHUNK('HTOP', _help_48544F50_6B, "") -SUBFILE -#line 15800 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x74 0x6C 0x65 0x72 - 0x0D 0x0A 0x41 0x6E 0x20 0x69 0x64 0x65 - 0x61 0x6C 0x20 0x72 0x6F 0x6C 0x65 0x20 - 0x66 0x6F 0x72 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x75 0x74 0x6C 0x65 0x72 0x20 - 0x61 0x74 0x20 0x61 0x20 0x68 0x61 0x75 - 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x2E 0x20 0x49 0x6E 0x20 0x74 - 0x68 0x69 0x73 0x20 0x72 0x6F 0x6C 0x65 - 0x2C 0x20 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x20 0x69 0x73 0x20 0x6E 0x6F 0x74 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x61 0x20 0x62 0x75 0x74 0x6C 0x65 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 0x20 - 0x73 0x65 0x63 0x72 0x65 0x74 0x20 0x61 - 0x67 0x65 0x6E 0x74 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x62 0x75 0x74 0x6C 0x65 0x72 - 0x20 0x64 0x69 0x73 0x67 0x75 0x69 0x73 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x20 0x69 0x73 - 0x20 0x6F 0x77 0x6E 0x65 0x64 0x20 0x62 - 0x79 0x20 0x61 0x6E 0x20 0x65 0x76 0x69 - 0x6C 0x20 0x6D 0x61 0x6E 0x20 0x77 0x68 - 0x6F 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 - 0x74 0x20 0x6C 0x69 0x6B 0x65 0x20 0x63 - 0x68 0x69 0x6C 0x64 0x72 0x65 0x6E 0x2E - 0x20 0x20 0x48 0x65 0x20 0x68 0x61 0x73 - 0x20 0x61 0x20 0x74 0x65 0x72 0x72 0x69 - 0x62 0x6C 0x65 0x20 0x70 0x6C 0x6F 0x74 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x61 - 0x77 0x61 0x79 0x20 0x77 0x69 0x74 0x68 - 0x20 0x63 0x68 0x6F 0x63 0x6F 0x6C 0x61 - 0x74 0x65 0x20 0x61 0x6E 0x64 0x20 0x48 - 0x61 0x6C 0x6C 0x6F 0x77 0x65 0x65 0x6E - 0x20 0x63 0x61 0x6E 0x64 0x79 0x20 0x66 - 0x6F 0x72 0x65 0x76 0x65 0x72 0x2E 0x20 - 0x0D 0x0A 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x20 0x6D 0x75 0x73 0x74 0x20 0x73 - 0x74 0x6F 0x70 0x20 0x68 0x69 0x6D 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x68 0x6F - 0x77 0x3F 0x20 0x20 0x4F 0x72 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x65 0x76 0x69 0x6C 0x20 0x6F 0x77 0x6E - 0x65 0x72 0x20 0x67 0x65 0x74 0x20 0x68 - 0x69 0x73 0x20 0x77 0x61 0x79 0x3F 0x20 - 0x20 0x57 0x69 0x6C 0x6C 0x20 0x61 0x6E - 0x79 0x6F 0x6E 0x65 0x20 0x65 0x6C 0x73 - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x68 - 0x65 0x6C 0x70 0x20 0x47 0x75 0x73 0x74 - 0x61 0x76 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 15916 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6C= 0x00015344 - - -CHUNK('HTOP', _help_48544F50_6C, "") -SUBFILE -#line 15924 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA9 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6C, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x66 0x65 0x20 0x57 - 0x61 0x69 0x74 0x65 0x72 0x0D 0x0A 0x47 - 0x75 0x73 0x74 0x61 0x76 0x65 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 - 0x20 0x73 0x6F 0x6C 0x76 0x69 0x6E 0x67 - 0x20 0x63 0x72 0x69 0x6D 0x65 0x73 0x20 - 0x77 0x68 0x69 0x6C 0x65 0x20 0x68 0x65 - 0x20 0x70 0x72 0x65 0x74 0x65 0x6E 0x64 - 0x73 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E - 0x67 0x2F 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x20 0x77 0x61 0x69 0x74 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x63 0x61 - 0x66 0x65 0x2E 0x20 0x20 0x4D 0x61 0x79 - 0x62 0x65 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x74 0x65 0x65 - 0x6E 0x61 0x67 0x65 0x72 0x20 0x77 0x68 - 0x6F 0x20 0x64 0x69 0x73 0x61 0x70 0x70 - 0x65 0x61 0x72 0x65 0x64 0x20 0x61 0x20 - 0x66 0x65 0x77 0x20 0x77 0x65 0x65 0x6B - 0x73 0x20 0x61 0x67 0x6F 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x20 0x6E 0x65 0x61 - 0x72 0x62 0x79 0x20 0x46 0x72 0x65 0x6E - 0x63 0x68 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x2E 0x20 0x20 - 0x43 0x75 0x73 0x74 0x6F 0x6D 0x65 0x72 - 0x73 0x20 0x6B 0x65 0x65 0x70 0x20 0x68 - 0x65 0x61 0x72 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x77 0x65 0x61 0x6B 0x20 0x63 0x72 - 0x79 0x20 0x66 0x6F 0x72 0x20 0x68 0x65 - 0x6C 0x70 0x2E 0x20 0x20 0x57 0x68 0x61 - 0x74 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x68 0x61 0x76 0x65 0x20 0x68 0x61 0x70 - 0x70 0x65 0x6E 0x65 0x64 0x97 0x77 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x62 0x6F - 0x79 0x20 0x63 0x61 0x70 0x74 0x75 0x72 - 0x65 0x64 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x68 0x72 0x75 0x6E 0x6B 0x3F 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x47 0x75 0x73 - 0x74 0x61 0x76 0x65 0x20 0x6E 0x65 0x65 - 0x64 0x20 0x68 0x65 0x6C 0x70 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x61 0x20 0x73 0x6E - 0x69 0x66 0x66 0x69 0x6E 0x67 0x20 0x64 - 0x6F 0x67 0x20 0x77 0x68 0x6F 0x20 0x6C - 0x6F 0x76 0x65 0x73 0x20 0x46 0x72 0x65 - 0x6E 0x63 0x68 0x20 0x66 0x6F 0x6F 0x64 - 0x3F 0x20 0x20 0x41 0x6E 0x64 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x65 0x20 0x73 0x6E 0x65 0x61 0x6B - 0x20 0x61 0x20 0x64 0x6F 0x67 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 16039 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6D= 0x00015345 - - -CHUNK('HTOP', _help_48544F50_6D, "") -SUBFILE -#line 16047 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC2 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0A 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6D, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x6D 0x6F 0x73 0x74 0x20 0x66 0x75 0x6E - 0x2C 0x20 0x47 0x75 0x73 0x74 0x61 0x76 - 0x65 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 - 0x2C 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x61 0x6E 0x20 0x65 0x78 - 0x70 0x6C 0x6F 0x72 0x65 0x72 0x2E 0x20 - 0x47 0x75 0x73 0x74 0x61 0x76 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 0x6F - 0x20 0x73 0x6F 0x6D 0x65 0x77 0x68 0x65 - 0x72 0x65 0x20 0x6D 0x79 0x73 0x74 0x65 - 0x72 0x69 0x6F 0x75 0x73 0x2C 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x4D 0x65 0x78 0x69 - 0x63 0x6F 0x20 0x43 0x69 0x74 0x79 0x2C - 0x20 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x68 0x69 0x73 0x20 0x6C 0x6F 0x73 - 0x74 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x2C 0x20 0x42 0x65 0x6E 0x65 0x64 0x69 - 0x63 0x74 0x2E 0x20 0x20 0x42 0x65 0x6E - 0x65 0x64 0x69 0x63 0x74 0x20 0x68 0x61 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x6D - 0x69 0x73 0x73 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x32 0x20 0x6D 0x6F 0x6E - 0x74 0x68 0x73 0x2C 0x20 0x61 0x62 0x64 - 0x75 0x63 0x74 0x65 0x64 0x20 0x62 0x79 - 0x20 0x67 0x61 0x6E 0x67 0x73 0x74 0x65 - 0x72 0x73 0x2E 0x20 0x50 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x69 0x6E 0x20 0x4D 0x65 - 0x78 0x69 0x63 0x6F 0x20 0x43 0x69 0x74 - 0x79 0x20 0x73 0x61 0x79 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x41 - 0x6D 0x65 0x72 0x69 0x63 0x61 0x6E 0x20 - 0x69 0x73 0x20 0x62 0x65 0x69 0x6E 0x67 - 0x20 0x68 0x65 0x6C 0x64 0x20 0x69 0x6E - 0x20 0x61 0x6E 0x20 0x49 0x6E 0x64 0x69 - 0x61 0x6E 0x20 0x68 0x75 0x74 0x20 0x67 - 0x75 0x61 0x72 0x64 0x65 0x64 0x20 0x62 - 0x79 0x20 0x61 0x6E 0x63 0x69 0x65 0x6E - 0x74 0x20 0x74 0x75 0x73 0x6B 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x61 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x77 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 - 0x71 0x75 0x61 0x73 0x68 0x20 0x69 0x6E - 0x74 0x72 0x75 0x64 0x65 0x72 0x73 0x2E - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x47 0x75 0x73 0x74 0x61 - 0x76 0x65 0x20 0x66 0x72 0x65 0x65 0x20 - 0x68 0x69 0x73 0x20 0x66 0x72 0x69 0x65 - 0x6E 0x64 0x3F 0x20 0x20 0x57 0x69 0x6C - 0x6C 0x20 0x68 0x69 0x73 0x20 0x65 0x79 - 0x65 0x2D 0x70 0x61 0x74 0x63 0x68 0x20 - 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x74 0x75 0x73 - 0x6B 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 16165 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6E= 0x00015346 - - -CHUNK('HTOP', _help_48544F50_6E, "") -SUBFILE -#line 16173 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x13 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D1, 0x0) - BYTE - 0x03 0x03 0x43 0x75 0x74 0x2E 0x2E 0x2E - 0x48 0x65 0x6E 0x72 0x79 0x2D 0x2D 0x70 - 0x6F 0x70 0x75 0x70 0x31 -ENDCHUNK - - -ENDCHUNK -#line 16236 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_6F= 0x00015347 - - -CHUNK('HTOP', _help_48544F50_6F, "") -SUBFILE -#line 16244 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_6F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6F, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6E 0x72 0x79 0x2D - 0x2D 0x70 0x6F 0x70 0x75 0x70 0x32 -ENDCHUNK - - -ENDCHUNK -#line 16306 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_70= 0x00015348 - - -CHUNK('HTOP', _help_48544F50_70, "") -SUBFILE -#line 16314 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_70, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_70=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_70=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_70=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_70, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6E 0x72 0x79 0x2D - 0x2D 0x70 0x6F 0x70 0x75 0x70 0x33 -ENDCHUNK - - -ENDCHUNK -#line 16376 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_71= 0x00015349 - - -CHUNK('HTOP', _help_48544F50_71, "") -SUBFILE -#line 16384 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_71, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_71=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_71=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0D 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_71=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_71, 0x0) - BYTE - 0x03 0x03 0x48 0x65 0x6E 0x72 0x79 0x2D - 0x2D 0x70 0x6F 0x70 0x75 0x70 0x34 -ENDCHUNK - - -ENDCHUNK -#line 16446 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_72= 0x0001534a - - -CHUNK('HTOP', _help_48544F50_72, "") -SUBFILE -#line 16454 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_72, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_3F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_3F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_3F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_3F, 0x0) - BYTE - 0x03 0x03 0x6A 0x6F 0x6B 0x65 0x73 0x0D - 0x0A 0x48 0x69 0x72 0x6F 0x92 0x73 0x20 - 0x61 0x62 0x69 0x6C 0x69 0x74 0x79 0x20 - 0x74 0x6F 0x20 0x74 0x65 0x6C 0x6C 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 0x6E - 0x64 0x20 0x77 0x72 0x69 0x74 0x65 0x20 - 0x66 0x75 0x6E 0x6E 0x79 0x20 0x70 0x6C - 0x61 0x79 0x73 0x20 0x6D 0x61 0x64 0x65 - 0x20 0x68 0x69 0x6D 0x20 0x70 0x6F 0x70 - 0x75 0x6C 0x61 0x72 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 - 0x68 0x6F 0x6F 0x64 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x72 0x65 0x20 0x77 0x65 0x72 - 0x65 0x20 0x61 0x20 0x6C 0x6F 0x74 0x20 - 0x6F 0x66 0x20 0x67 0x61 0x6E 0x67 0x73 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x61 0x72 0x65 0x61 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x6F 0x20 0x6B 0x65 0x65 - 0x70 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x61 0x63 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 - 0x73 0x74 0x20 0x74 0x68 0x65 0x20 0x67 - 0x61 0x6E 0x67 0x20 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x70 0x6C 0x61 0x79 0x73 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x73 0x65 - 0x20 0x70 0x6C 0x61 0x79 0x73 0x20 0x62 - 0x65 0x63 0x61 0x6D 0x65 0x20 0x73 0x6F - 0x20 0x70 0x6F 0x70 0x75 0x6C 0x61 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x76 - 0x65 0x72 0x20 0x4A 0x61 0x70 0x61 0x6E - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x73 0x68 0x6F 0x77 0x69 0x6E 0x67 - 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x70 0x6F 0x6F 0x72 0x20 - 0x6E 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 - 0x68 0x6F 0x6F 0x64 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x48 0x69 0x72 0x6F 0x92 0x73 0x20 - 0x6D 0x61 0x73 0x74 0x65 0x72 0x66 0x75 - 0x6C 0x20 0x63 0x6F 0x6D 0x65 0x64 0x69 - 0x65 0x73 0x2E 0x20 0x0D 0x0A 0x4D 0x65 - 0x6C 0x61 0x6E 0x69 0x65 0x20 0x77 0x61 - 0x73 0x20 0x76 0x69 0x73 0x69 0x74 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x73 0x20 0x69 0x6E 0x20 0x4A 0x61 - 0x70 0x61 0x6E 0x20 0x77 0x68 0x65 0x6E - 0x20 0x73 0x68 0x65 0x20 0x68 0x65 0x61 - 0x72 0x64 0x20 0x6F 0x66 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x48 0x69 0x72 0x6F - 0x20 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 - 0x20 0x70 0x6C 0x61 0x79 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x73 0x61 0x77 0x20 0x68 0x69 - 0x73 0x20 0x77 0x6F 0x72 0x6B 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x65 0x61 0x72 0x64 - 0x20 0x74 0x68 0x65 0x20 0x65 0x6E 0x74 - 0x69 0x72 0x65 0x20 0x6E 0x65 0x69 0x67 - 0x68 0x62 0x6F 0x72 0x68 0x6F 0x6F 0x64 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x69 0x6E - 0x67 0x2C 0x20 0x73 0x68 0x65 0x20 0x6B - 0x6E 0x65 0x77 0x20 0x74 0x68 0x61 0x74 - 0x20 0x48 0x69 0x72 0x6F 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x20 0x74 0x6F 0x20 - 0x77 0x6F 0x72 0x6B 0x20 0x77 0x69 0x74 - 0x68 0x20 0x6F 0x6E 0x20 0x61 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x48 - 0x69 0x72 0x6F 0x20 0x77 0x61 0x73 0x20 - 0x74 0x68 0x72 0x69 0x6C 0x6C 0x65 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x61 0x67 0x72 - 0x65 0x65 0x64 0x20 0x69 0x6D 0x6D 0x65 - 0x64 0x69 0x61 0x74 0x65 0x6C 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 16591 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_73= 0x0001534b - - -CHUNK('HTOP', _help_48544F50_73, "") -SUBFILE -#line 16599 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_73, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AD=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_73, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AD=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x92 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AD=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AD, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x6F 0x64 0x20 0x54 - 0x65 0x73 0x74 0x65 0x72 0x0D 0x0A 0x48 - 0x69 0x72 0x6F 0x20 0x6C 0x6F 0x76 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x65 0x61 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x73 0x20 0x69 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x63 0x6F 0x6F 0x6C 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x66 - 0x6F 0x6F 0x64 0x20 0x74 0x65 0x73 0x74 - 0x65 0x72 0x20 0x66 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x77 0x6E 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x70 - 0x72 0x6F 0x62 0x6C 0x65 0x6D 0x20 0x69 - 0x73 0x20 0x74 0x68 0x61 0x74 0x20 0x48 - 0x69 0x72 0x6F 0x20 0x69 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6E 0x65 0x77 0x65 0x73 - 0x74 0x20 0x6F 0x66 0x20 0x74 0x68 0x72 - 0x65 0x65 0x20 0x66 0x6F 0x6F 0x64 0x20 - 0x74 0x65 0x73 0x74 0x65 0x72 0x73 0x20 - 0x77 0x68 0x6F 0x20 0x68 0x61 0x76 0x65 - 0x20 0x62 0x65 0x65 0x6E 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 0x74 - 0x68 0x72 0x65 0x65 0x20 0x64 0x61 0x79 - 0x73 0x2E 0x20 0x20 0x4F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6F - 0x74 0x68 0x65 0x72 0x20 0x66 0x6F 0x6F - 0x64 0x20 0x74 0x65 0x73 0x74 0x65 0x72 - 0x73 0x20 0x6C 0x65 0x66 0x74 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x74 0x77 0x6F - 0x20 0x64 0x61 0x79 0x73 0x20 0x77 0x69 - 0x74 0x68 0x20 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x6C 0x6C 0x61 0x72 0x20 0x70 0x75 - 0x6C 0x6C 0x65 0x64 0x20 0x75 0x70 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x6F 0x73 0x65 0x2E - 0x20 0x20 0x41 0x6E 0x6F 0x74 0x68 0x65 - 0x72 0x20 0x74 0x65 0x73 0x74 0x65 0x72 - 0x20 0x6C 0x65 0x66 0x74 0x20 0x61 0x66 - 0x74 0x65 0x72 0x20 0x6F 0x6E 0x6C 0x79 - 0x20 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x77 0x72 0x61 - 0x70 0x70 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x62 0x61 0x6E 0x64 0x61 0x67 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x57 0x68 0x61 0x74 - 0x20 0x69 0x73 0x20 0x69 0x74 0x20 0x77 - 0x69 0x74 0x68 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6F 0x6B 0x20 0x74 0x68 0x61 - 0x74 0x27 0x73 0x20 0x63 0x61 0x75 0x73 - 0x69 0x6E 0x67 0x20 0x61 0x6C 0x6C 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x74 - 0x65 0x73 0x74 0x65 0x72 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x20 0x22 0x53 - 0x65 0x65 0x20 0x79 0x61 0x21 0x22 0x3F - 0x20 0x20 0x57 0x68 0x79 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x92 0x74 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x2C 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x77 0x6E 0x65 0x72 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2C 0x20 0x74 0x72 0x75 - 0x73 0x74 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x6F 0x6B 0x20 0x6F 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6F 0x75 0x73 0x2D - 0x63 0x68 0x65 0x66 0x3F 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x48 0x69 0x72 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x92 0x73 - 0x20 0x73 0x70 0x6F 0x69 0x6C 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x73 0x6F - 0x75 0x70 0x2C 0x20 0x6F 0x72 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x48 0x69 0x72 0x6F - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6E 0x65 0x78 0x74 0x20 0x74 0x6F 0x20 - 0x67 0x6F 0x3F -ENDCHUNK - - -ENDCHUNK -#line 16740 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_74= 0x0001534c - - -CHUNK('HTOP', _help_48544F50_74, "") -SUBFILE -#line 16748 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_74, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_74=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_74=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x32 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDE 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_74=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_74, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6D 0x62 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x4B 0x69 0x64 0x73 0x27 0x20 0x4D 0x79 - 0x73 0x74 0x65 0x72 0x79 0x20 0x43 0x6C - 0x75 0x62 0x0D 0x0A 0x48 0x69 0x72 0x6F - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x61 0x20 0x6D 0x65 - 0x6D 0x62 0x65 0x72 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x4B 0x69 0x64 0x73 - 0x27 0x20 0x4D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x20 0x43 0x6C 0x75 0x62 0x2C 0x20 - 0x61 0x20 0x67 0x72 0x6F 0x75 0x70 0x20 - 0x6F 0x66 0x20 0x79 0x6F 0x75 0x6E 0x67 - 0x20 0x64 0x65 0x74 0x65 0x63 0x74 0x69 - 0x76 0x65 0x73 0x20 0x77 0x68 0x6F 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x74 0x6F 0x20 - 0x73 0x6F 0x6C 0x76 0x65 0x20 0x6D 0x79 - 0x73 0x74 0x65 0x72 0x69 0x65 0x73 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x68 0x65 - 0x69 0x72 0x20 0x74 0x6F 0x20 0x61 0x20 - 0x73 0x6F 0x66 0x74 0x20 0x64 0x72 0x69 - 0x6E 0x6B 0x20 0x66 0x6F 0x72 0x74 0x75 - 0x6E 0x65 0x20 0x68 0x61 0x73 0x20 0x62 - 0x65 0x65 0x6E 0x20 0x6B 0x69 0x64 0x6E - 0x61 0x70 0x70 0x65 0x64 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x4B 0x69 - 0x64 0x73 0x20 0x4D 0x79 0x73 0x74 0x65 - 0x72 0x79 0x20 0x43 0x6C 0x75 0x62 0x20 - 0x69 0x73 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x53 0x69 0x6E - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6F 0x64 0x61 0x20 0x6B 0x69 0x6E 0x67 - 0x20 0x77 0x61 0x73 0x20 0x6C 0x61 0x73 - 0x74 0x20 0x73 0x70 0x6F 0x74 0x74 0x65 - 0x64 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x6B 0x20 0x6E 0x65 - 0x61 0x72 0x20 0x74 0x68 0x65 0x20 0x77 - 0x61 0x74 0x65 0x72 0x66 0x72 0x6F 0x6E - 0x74 0x2C 0x20 0x48 0x69 0x72 0x6F 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 0x20 - 0x62 0x65 0x67 0x69 0x6E 0x20 0x61 0x73 - 0x6B 0x69 0x6E 0x67 0x20 0x71 0x75 0x65 - 0x73 0x74 0x69 0x6F 0x6E 0x73 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x61 0x74 0x20 0x61 - 0x72 0x65 0x61 0x2E 0x20 0x0D 0x0A 0x55 - 0x6E 0x66 0x6F 0x72 0x74 0x75 0x6E 0x61 - 0x74 0x65 0x6C 0x79 0x2C 0x20 0x6E 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x65 0x65 - 0x6D 0x73 0x20 0x74 0x6F 0x20 0x6B 0x6E - 0x6F 0x77 0x20 0x61 0x6E 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 - 0x64 0x6E 0x61 0x70 0x70 0x69 0x6E 0x67 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x43 - 0x6C 0x75 0x62 0x20 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x73 0x20 0x73 0x70 0x65 0x6E - 0x64 0x20 0x68 0x6F 0x75 0x72 0x73 0x20 - 0x61 0x73 0x6B 0x69 0x6E 0x67 0x20 0x71 - 0x75 0x65 0x73 0x74 0x69 0x6F 0x6E 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x6F 0x6F - 0x6B 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 - 0x20 0x63 0x6C 0x75 0x65 0x73 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6E 0x6F 0x74 0x68 0x69 0x6E 0x67 - 0x2E 0x20 0x4A 0x75 0x73 0x74 0x20 0x61 - 0x73 0x20 0x74 0x68 0x65 0x79 0x20 0x61 - 0x72 0x65 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x64 0x69 0x73 0x63 - 0x6F 0x75 0x72 0x61 0x67 0x65 0x64 0x2C - 0x20 0x74 0x68 0x65 0x79 0x20 0x68 0x65 - 0x61 0x72 0x20 0x61 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x76 0x6F 0x69 0x63 0x65 - 0x20 0x63 0x61 0x6C 0x6C 0x20 0x6F 0x75 - 0x74 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x6D 0x2E 0x20 0x20 0x54 0x68 0x65 0x79 - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x6F 0x77 0x61 0x72 - 0x64 0x20 0x74 0x68 0x65 0x69 0x72 0x20 - 0x66 0x65 0x65 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x69 0x6E 0x64 0x2C 0x20 0x6D - 0x75 0x63 0x68 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x69 0x72 0x20 0x61 0x73 0x74 - 0x6F 0x6E 0x69 0x73 0x68 0x6D 0x65 0x6E - 0x74 0x2C 0x20 0x61 0x20 0x6D 0x69 0x6E - 0x69 0x61 0x74 0x75 0x72 0x65 0x20 0x77 - 0x6F 0x6D 0x61 0x6E 0x2C 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x61 0x20 0x66 0x65 0x77 - 0x20 0x69 0x6E 0x63 0x68 0x65 0x73 0x20 - 0x74 0x61 0x6C 0x6C 0x21 0x20 0x0D 0x0A - 0x57 0x68 0x6F 0x20 0x69 0x73 0x20 0x74 - 0x68 0x69 0x73 0x20 0x77 0x6F 0x6D 0x61 - 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 0x69 - 0x73 0x20 0x73 0x68 0x65 0x20 0x63 0x6F - 0x6E 0x6E 0x65 0x63 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x73 0x61 0x70 0x70 0x65 0x61 0x72 - 0x61 0x6E 0x63 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x6F 0x66 0x74 - 0x20 0x64 0x72 0x69 0x6E 0x6B 0x20 0x68 - 0x65 0x69 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 16912 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_75= 0x0001534d - - -CHUNK('HTOP', _help_48544F50_75, "") -SUBFILE -#line 16920 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_75, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_75, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x33 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x03 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7C, 0x0) - BYTE - 0x03 0x03 0x48 0x6F 0x74 0x2D 0x41 0x69 - 0x72 0x20 0x42 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x20 0x50 0x69 0x6C 0x6F 0x74 0x0D - 0x0A 0x48 0x69 0x72 0x6F 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x68 0x6F 0x74 0x2D 0x61 0x69 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E - 0x20 0x70 0x69 0x6C 0x6F 0x74 0x20 0x77 - 0x68 0x6F 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x63 0x72 0x61 0x73 0x68 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x65 0x65 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x72 0x65 0x67 0x61 - 0x69 0x6E 0x69 0x6E 0x67 0x20 0x63 0x6F - 0x6E 0x73 0x63 0x69 0x6F 0x75 0x73 0x6E - 0x65 0x73 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x72 0x79 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x6D 0x65 0x6D 0x62 - 0x65 0x72 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x69 0x73 0x2C 0x20 - 0x68 0x6F 0x77 0x20 0x68 0x65 0x20 0x61 - 0x72 0x72 0x69 0x76 0x65 0x64 0x20 0x68 - 0x65 0x72 0x65 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x68 - 0x69 0x73 0x20 0x68 0x6F 0x74 0x2D 0x61 - 0x69 0x72 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x20 0x69 0x73 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x6C 0x61 0x73 0x74 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x20 0x72 0x65 0x6D 0x65 0x6D 0x62 0x65 - 0x72 0x73 0x20 0x69 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x67 0x68 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x61 0x69 0x72 - 0x20 0x61 0x62 0x6F 0x76 0x65 0x20 0x74 - 0x68 0x65 0x20 0x6A 0x75 0x6E 0x67 0x6C - 0x65 0x2E 0x20 0x20 0x48 0x65 0x20 0x73 - 0x69 0x6D 0x70 0x6C 0x79 0x20 0x63 0x61 - 0x6E 0x92 0x74 0x20 0x72 0x65 0x6D 0x65 - 0x6D 0x62 0x65 0x72 0x20 0x77 0x68 0x61 - 0x74 0x20 0x68 0x61 0x70 0x70 0x65 0x6E - 0x65 0x64 0x20 0x61 0x66 0x74 0x65 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x6F 0x72 - 0x20 0x68 0x6F 0x77 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x75 0x6E 0x63 0x6F 0x6E - 0x73 0x63 0x69 0x6F 0x75 0x73 0x2E 0x20 - 0x20 0x48 0x69 0x72 0x6F 0x20 0x73 0x65 - 0x65 0x73 0x20 0x61 0x20 0x73 0x6D 0x61 - 0x6C 0x6C 0x20 0x76 0x69 0x6C 0x6C 0x61 - 0x67 0x65 0x20 0x6E 0x65 0x61 0x72 0x62 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x64 0x65 - 0x63 0x69 0x64 0x65 0x73 0x20 0x74 0x6F - 0x20 0x73 0x65 0x65 0x20 0x69 0x66 0x20 - 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x73 0x6F 0x6D 0x65 - 0x6F 0x6E 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x68 0x69 - 0x73 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F - 0x6E 0x2E 0x20 0x20 0x57 0x69 0x74 0x68 - 0x6F 0x75 0x74 0x20 0x69 0x74 0x2C 0x20 - 0x48 0x69 0x72 0x6F 0x20 0x77 0x6F 0x6E - 0x64 0x65 0x72 0x73 0x20 0x68 0x6F 0x77 - 0x20 0x68 0x65 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x65 0x76 0x65 0x72 0x20 0x67 0x65 - 0x74 0x20 0x68 0x6F 0x6D 0x65 0x2E 0x0D - 0x0A 0x41 0x73 0x20 0x68 0x65 0x20 0x65 - 0x6E 0x74 0x65 0x72 0x73 0x20 0x74 0x68 - 0x65 0x20 0x76 0x69 0x6C 0x6C 0x61 0x67 - 0x65 0x2C 0x20 0x48 0x69 0x72 0x6F 0x20 - 0x73 0x65 0x65 0x73 0x20 0x73 0x65 0x76 - 0x65 0x72 0x61 0x6C 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x2C 0x20 0x61 0x6C 0x6C - 0x20 0x75 0x6E 0x63 0x6F 0x6E 0x73 0x63 - 0x69 0x6F 0x75 0x73 0x2C 0x20 0x6C 0x79 - 0x69 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E 0x20 0x20 0x48 0x69 0x72 0x6F - 0x20 0x63 0x61 0x6E 0x20 0x74 0x65 0x6C - 0x6C 0x20 0x74 0x68 0x61 0x74 0x20 0x74 - 0x68 0x65 0x72 0x65 0x20 0x69 0x73 0x20 - 0x73 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E - 0x67 0x20 0x76 0x65 0x72 0x79 0x20 0x77 - 0x72 0x6F 0x6E 0x67 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x68 0x65 0x61 0x72 0x73 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x74 0x65 - 0x72 0x20 0x63 0x6F 0x6D 0x69 0x6E 0x67 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x68 0x75 0x74 0x73 0x20 0x61 0x6E - 0x64 0x20 0x64 0x65 0x63 0x69 0x64 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x73 0x65 0x65 - 0x20 0x77 0x68 0x6F 0x20 0x69 0x74 0x20 - 0x69 0x73 0x2E 0x20 0x0D 0x0A 0x57 0x68 - 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x48 0x69 0x72 0x6F 0x20 0x66 0x69 0x6E - 0x64 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x68 0x61 - 0x74 0x20 0x68 0x61 0x73 0x20 0x68 0x61 - 0x70 0x70 0x65 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x76 0x69 0x6C 0x6C - 0x61 0x67 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 17095 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_76= 0x0001534e - - -CHUNK('HTOP', _help_48544F50_76, "") -SUBFILE -#line 17103 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_76, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_22=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_76, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_22=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6F 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_22=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_22, 0x0) - BYTE - 0x03 0x03 0x72 0x75 0x6E 0x6E 0x69 0x6E - 0x67 0x0D 0x0A 0x57 0x68 0x65 0x6E 0x20 - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 0x69 - 0x73 0x20 0x69 0x6E 0x74 0x65 0x72 0x76 - 0x69 0x65 0x77 0x65 0x64 0x2C 0x20 0x68 - 0x65 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x6A 0x6F 0x6B 0x65 0x73 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x69 0x6B 0x65 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x20 0x74 0x68 - 0x61 0x74 0x20 0x68 0x65 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x93 0x77 0x69 - 0x6E 0x73 0x20 0x62 0x79 0x20 0x61 0x20 - 0x6E 0x6F 0x73 0x65 0x94 0x20 0x6F 0x72 - 0x20 0x93 0x77 0x68 0x65 0x6E 0x20 0x49 - 0x20 0x72 0x75 0x6E 0x2C 0x20 0x6D 0x79 - 0x20 0x6E 0x6F 0x73 0x65 0x20 0x69 0x73 - 0x20 0x72 0x75 0x6E 0x6E 0x69 0x6E 0x67 - 0x2C 0x20 0x74 0x6F 0x6F 0x2E 0x94 0x20 - 0x20 0x4F 0x72 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x68 0x61 - 0x64 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x6F 0x73 0x65 - 0x20 0x93 0x6B 0x65 0x65 0x70 0x73 0x20 - 0x6D 0x79 0x20 0x6C 0x6F 0x77 0x65 0x72 - 0x20 0x62 0x6F 0x64 0x79 0x20 0x63 0x6F - 0x6F 0x6C 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x49 0x20 0x77 0x6F 0x72 0x6B 0x20 0x6F - 0x75 0x74 0x2E 0x94 0x20 0x20 0x48 0x69 - 0x73 0x20 0x6E 0x6F 0x73 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x75 0x72 0x6E 0x65 - 0x64 0x20 0x6F 0x75 0x74 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x61 0x20 0x67 0x72 - 0x65 0x61 0x74 0x20 0x61 0x73 0x73 0x65 - 0x74 0x2C 0x20 0x73 0x65 0x74 0x74 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x70 0x61 0x72 0x74 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 0x62 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x69 - 0x74 0x20 0x69 0x73 0x20 0x75 0x6E 0x69 - 0x71 0x75 0x65 0x97 0x61 0x6E 0x64 0x20 - 0x67 0x65 0x74 0x73 0x20 0x68 0x69 0x6D - 0x20 0x6E 0x6F 0x74 0x69 0x63 0x65 0x64 - 0x2E -ENDCHUNK - - -ENDCHUNK -#line 17211 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_77= 0x0001534f - - -CHUNK('HTOP', _help_48544F50_77, "") -SUBFILE -#line 17219 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_77, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_5C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_5C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x41 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_5C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_5C, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x6F 0x6B 0x0D 0x0A - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 0x6E - 0x20 0x65 0x78 0x63 0x65 0x6C 0x6C 0x65 - 0x6E 0x74 0x20 0x63 0x6F 0x6F 0x6B 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6E 0x6F 0x20 - 0x77 0x6F 0x6E 0x64 0x65 0x72 0x20 0x77 - 0x69 0x74 0x68 0x20 0x73 0x75 0x63 0x68 - 0x20 0x61 0x20 0x66 0x69 0x6E 0x65 0x20 - 0x6E 0x6F 0x73 0x65 0x20 0x66 0x6F 0x72 - 0x20 0x73 0x6D 0x65 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x61 0x72 0x6F 0x6D 0x61 0x73 - 0x21 0x20 0x20 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x68 0x61 0x70 0x70 - 0x65 0x6E 0x73 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x6D 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x20 0x69 0x73 0x20 0x68 0x69 - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x63 - 0x6F 0x6F 0x6B 0x20 0x66 0x6F 0x72 0x20 - 0x74 0x68 0x65 0x20 0x53 0x70 0x6F 0x6F - 0x6B 0x79 0x20 0x66 0x61 0x6D 0x69 0x6C - 0x79 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x73 0x20 0x61 0x20 - 0x63 0x6F 0x6C 0x64 0x20 0x61 0x6E 0x64 - 0x20 0x63 0x61 0x6E 0x92 0x74 0x20 0x73 - 0x6D 0x65 0x6C 0x6C 0x3F 0x20 0x20 0x57 - 0x68 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x79 0x20 0x64 0x6F - 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D 0x20 - 0x61 0x66 0x74 0x65 0x72 0x20 0x74 0x68 - 0x65 0x79 0x20 0x77 0x61 0x69 0x74 0x20 - 0x61 0x6E 0x20 0x68 0x6F 0x75 0x72 0x20 - 0x66 0x6F 0x72 0x20 0x64 0x69 0x6E 0x6E - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x68 0x69 0x64 - 0x69 0x6E 0x67 0x20 0x73 0x6F 0x6D 0x65 - 0x77 0x68 0x65 0x72 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 - 0x73 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 17321 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_78= 0x00015350 - - -CHUNK('HTOP', _help_48544F50_78, "") -SUBFILE -#line 17329 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_78, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_77=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_77=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_77=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_77, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x46 0x61 0x69 0x72 0x20 0x50 0x61 - 0x72 0x74 0x69 0x63 0x69 0x70 0x61 0x6E - 0x74 0x0D 0x0A 0x4A 0x65 0x72 0x65 0x6D - 0x79 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x66 0x6F 0x72 0x74 0x75 0x6E - 0x65 0x20 0x74 0x65 0x6C 0x6C 0x65 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 0x74 - 0x72 0x65 0x65 0x74 0x20 0x66 0x61 0x69 - 0x72 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 - 0x67 0x69 0x66 0x74 0x20 0x69 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6E 0x20 0x73 0x6D 0x65 0x6C - 0x6C 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x92 0x73 0x20 0x66 0x75 0x74 0x75 - 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x68 0x61 0x69 0x72 - 0x2E 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x68 0x61 0x70 0x70 - 0x65 0x6E 0x73 0x20 0x77 0x68 0x65 0x6E - 0x20 0x68 0x65 0x20 0x6D 0x65 0x65 0x74 - 0x73 0x20 0x74 0x68 0x65 0x20 0x67 0x69 - 0x72 0x6C 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x73 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x97 0x68 0x6F 0x77 0x20 0x64 0x6F 0x65 - 0x73 0x20 0x68 0x65 0x20 0x63 0x6F 0x6E - 0x76 0x69 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x72 0x20 0x74 0x68 0x61 0x74 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x20 0x72 0x69 0x67 0x68 0x74 0x20 0x6F - 0x6E 0x65 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x65 0x72 0x20 0x61 0x66 0x74 0x65 0x72 - 0x20 0x68 0x65 0x20 0x73 0x6D 0x65 0x6C - 0x6C 0x73 0x20 0x68 0x65 0x72 0x20 0x68 - 0x61 0x69 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x20 0x72 0x75 0x6E 0x73 - 0x20 0x61 0x77 0x61 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 17431 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_79= 0x00015351 - - -CHUNK('HTOP', _help_48544F50_79, "") -SUBFILE -#line 17439 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_79, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_78=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_78=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_78=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_78, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x4D 0x61 - 0x6E 0x0D 0x0A 0x4A 0x65 0x72 0x65 0x6D - 0x79 0x20 0x75 0x73 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x77 0x61 0x74 0x63 0x68 0x20 - 0x61 0x20 0x6C 0x6F 0x74 0x20 0x6F 0x66 - 0x20 0x63 0x61 0x76 0x65 0x6D 0x61 0x6E - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x72 0x61 0x63 - 0x74 0x69 0x63 0x65 0x20 0x70 0x72 0x65 - 0x68 0x69 0x73 0x74 0x6F 0x72 0x69 0x63 - 0x20 0x74 0x61 0x6C 0x6B 0x2C 0x20 0x6D - 0x6F 0x73 0x74 0x6C 0x79 0x20 0x67 0x72 - 0x75 0x6E 0x74 0x69 0x6E 0x67 0x2E 0x20 - 0x20 0x48 0x65 0x92 0x64 0x20 0x62 0x65 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x67 0x6F 0x6F 0x64 0x20 0x61 0x73 0x20 - 0x61 0x20 0x70 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x6D 0x61 - 0x6E 0x20 0x77 0x68 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x61 0x20 0x6D 0x75 - 0x6D 0x6D 0x79 0x2E 0x20 0x20 0x48 0x65 - 0x92 0x73 0x20 0x76 0x65 0x72 0x79 0x20 - 0x65 0x78 0x63 0x69 0x74 0x65 0x64 0x2C - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x68 - 0x65 0x20 0x64 0x69 0x73 0x63 0x6F 0x76 - 0x65 0x72 0x73 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x20 0x63 0x6F 0x6D 0x65 0x73 - 0x20 0x77 0x69 0x74 0x68 0x20 0x61 0x20 - 0x63 0x75 0x72 0x73 0x65 0x97 0x74 0x68 - 0x65 0x20 0x6D 0x75 0x6D 0x6D 0x79 0x20 - 0x66 0x6F 0x6C 0x6C 0x6F 0x77 0x73 0x20 - 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 0x65 - 0x76 0x65 0x72 0x79 0x77 0x68 0x65 0x72 - 0x65 0x20 0x68 0x65 0x20 0x67 0x6F 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x69 0x6D - 0x69 0x74 0x61 0x74 0x65 0x73 0x20 0x68 - 0x69 0x73 0x20 0x65 0x76 0x65 0x72 0x79 - 0x20 0x6D 0x6F 0x76 0x65 0x2E 0x0D 0x0A - 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x4A 0x65 0x72 0x65 0x6D 0x79 0x20 - 0x65 0x78 0x70 0x6C 0x61 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x75 0x6D 0x6D - 0x79 0x20 0x74 0x6F 0x20 0x68 0x69 0x73 - 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 0x73 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x62 0x72 - 0x65 0x61 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x63 0x75 0x72 0x73 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 17548 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7A= 0x00015352 - - -CHUNK('HTOP', _help_48544F50_7A, "") -SUBFILE -#line 17556 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC0 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_E, 0x0) - BYTE - 0x03 0x03 0x6A 0x6F 0x6B 0x65 0x73 0x0D - 0x0A 0x4A 0x65 0x72 0x7A 0x79 0x20 0x68 - 0x61 0x73 0x20 0x77 0x6F 0x72 0x6B 0x65 - 0x64 0x20 0x76 0x65 0x72 0x79 0x20 0x68 - 0x61 0x72 0x64 0x20 0x66 0x6F 0x72 0x20 - 0x35 0x34 0x20 0x79 0x65 0x61 0x72 0x73 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 0x6C - 0x69 0x66 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x68 - 0x61 0x73 0x20 0x61 0x20 0x6E 0x65 0x77 - 0x20 0x73 0x69 0x6C 0x6C 0x79 0x20 0x6A - 0x6F 0x6B 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 0x75 - 0x70 0x20 0x6E 0x65 0x77 0x20 0x6A 0x6F - 0x6B 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x72 0x61 0x63 0x74 0x69 0x63 0x65 - 0x73 0x20 0x68 0x69 0x73 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x73 0x74 0x65 0x70 - 0x73 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x92 0x73 0x20 0x61 0x6C 0x6F 0x6E - 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x65 0x6C 0x64 0x2E 0x20 - 0x0D 0x0A 0x4F 0x6E 0x65 0x20 0x6D 0x6F - 0x72 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x77 0x6F 0x72 0x6B 0x69 - 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x66 0x69 0x65 0x6C 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x64 0x61 0x6E 0x63 - 0x69 0x6E 0x67 0x2C 0x20 0x68 0x65 0x20 - 0x73 0x65 0x6E 0x73 0x65 0x64 0x20 0x73 - 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x73 - 0x74 0x61 0x6E 0x64 0x69 0x6E 0x67 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x49 0x74 0x20 - 0x77 0x61 0x73 0x20 0x61 0x20 0x67 0x6F - 0x6F 0x66 0x79 0x2D 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x66 0x6F 0x72 0x65 - 0x69 0x67 0x6E 0x65 0x72 0x20 0x6E 0x61 - 0x6D 0x65 0x64 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x2E 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x66 0x69 - 0x6C 0x6D 0x20 0x64 0x69 0x72 0x65 0x63 - 0x74 0x6F 0x72 0x2C 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x73 0x63 0x6F - 0x75 0x74 0x69 0x6E 0x67 0x20 0x6C 0x6F - 0x63 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 - 0x66 0x6F 0x72 0x20 0x61 0x20 0x6E 0x65 - 0x77 0x20 0x66 0x69 0x6C 0x6D 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x72 0x61 0x6E 0x20 0x61 0x63 0x72 - 0x6F 0x73 0x73 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x2C 0x20 0x68 0x65 0x20 0x6B 0x6E - 0x65 0x77 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x68 0x61 0x64 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x66 0x61 - 0x63 0x65 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x77 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 17678 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7B= 0x00015353 - - -CHUNK('HTOP', _help_48544F50_7B, "") -SUBFILE -#line 17686 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_79=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_79=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x62 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_79=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_79, 0x0) - BYTE - 0x03 0x03 0x47 0x61 0x72 0x64 0x65 0x6E - 0x65 0x72 0x0D 0x0A 0x4E 0x6F 0x77 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x92 - 0x73 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x20 0x64 0x72 0x65 0x61 0x6D 0x73 - 0x20 0x6F 0x66 0x20 0x62 0x65 0x69 0x6E - 0x67 0x20 0x61 0x20 0x67 0x61 0x72 0x64 - 0x65 0x6E 0x65 0x72 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 0x63 - 0x61 0x72 0x79 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 - 0x67 0x61 0x72 0x64 0x65 0x6E 0x65 0x72 - 0x20 0x69 0x73 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x61 0x20 0x73 0x75 0x70 - 0x65 0x72 0x2D 0x61 0x67 0x65 0x6E 0x74 - 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 0x6E - 0x61 0x74 0x69 0x6F 0x6E 0x61 0x6C 0x20 - 0x73 0x65 0x63 0x75 0x72 0x69 0x74 0x79 - 0x20 0x61 0x67 0x65 0x6E 0x63 0x79 0x2E - 0x20 0x20 0x52 0x75 0x6D 0x6F 0x72 0x20 - 0x68 0x61 0x73 0x20 0x69 0x74 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x65 0x76 0x69 0x6C 0x20 0x6F 0x77 0x6E - 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x68 0x61 0x73 0x20 0x62 0x75 0x72 0x69 - 0x65 0x64 0x20 0x61 0x20 0x74 0x61 0x6C - 0x6B 0x69 0x6E 0x67 0x20 0x73 0x6B 0x75 - 0x6C 0x6C 0x20 0x74 0x68 0x61 0x74 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x77 0x68 - 0x6F 0x20 0x73 0x74 0x6F 0x6C 0x65 0x20 - 0x74 0x68 0x65 0x20 0x61 0x6C 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x64 0x6F 0x75 0x67 - 0x68 0x6E 0x75 0x74 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x64 - 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 0x20 - 0x73 0x74 0x6F 0x72 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C - 0x6C 0x2E 0x20 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x20 0x6D 0x75 0x73 0x74 0x20 0x75 - 0x6E 0x63 0x6F 0x76 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x73 0x6B 0x75 0x6C 0x6C - 0x2E 0x20 0x0D 0x0A 0x48 0x65 0x20 0x6B - 0x6E 0x65 0x65 0x6C 0x73 0x20 0x64 0x6F - 0x77 0x6E 0x20 0x74 0x6F 0x20 0x64 0x69 - 0x67 0x2C 0x20 0x62 0x75 0x74 0x20 0x66 - 0x69 0x6E 0x64 0x73 0x20 0x74 0x68 0x65 - 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x69 0x73 0x20 0x74 0x6F 0x6F 0x20 0x68 - 0x61 0x72 0x64 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x68 0x65 0x61 0x72 0x73 0x20 0x74 - 0x68 0x65 0x20 0x63 0x68 0x61 0x74 0x74 - 0x65 0x72 0x69 0x6E 0x67 0x20 0x6F 0x66 - 0x20 0x74 0x65 0x65 0x74 0x68 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6B 0x6E 0x6F - 0x77 0x73 0x20 0x74 0x68 0x65 0x20 0x73 - 0x6B 0x75 0x6C 0x6C 0x20 0x69 0x73 0x20 - 0x6E 0x65 0x61 0x72 0x62 0x79 0x2E 0x20 - 0x20 0x49 0x73 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x61 0x6E 0x79 0x20 0x77 0x61 - 0x79 0x20 0x68 0x65 0x20 0x63 0x61 0x6E - 0x20 0x67 0x65 0x74 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x20 0x74 0x68 0x65 0x20 0x67 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x77 0x69 - 0x74 0x68 0x6F 0x75 0x74 0x20 0x64 0x69 - 0x67 0x67 0x69 0x6E 0x67 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 17817 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7C= 0x00015354 - - -CHUNK('HTOP', _help_48544F50_7C, "") -SUBFILE -#line 17825 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFA 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7D, 0x0) - BYTE - 0x03 0x03 0x54 0x61 0x78 0x69 0x20 0x44 - 0x72 0x69 0x76 0x65 0x72 0x0D 0x0A 0x42 - 0x65 0x63 0x61 0x75 0x73 0x65 0x20 0x4A - 0x65 0x72 0x7A 0x79 0x20 0x6E 0x65 0x76 - 0x65 0x72 0x20 0x6C 0x65 0x61 0x72 0x6E - 0x65 0x64 0x20 0x74 0x6F 0x20 0x64 0x72 - 0x69 0x76 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x68 - 0x65 0x27 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x74 - 0x61 0x78 0x69 0x20 0x64 0x72 0x69 0x76 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x6E 0x92 0x74 0x20 0x68 0x61 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x6F 0x62 0x65 0x79 - 0x20 0x61 0x6E 0x79 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x72 0x75 0x6C 0x65 - 0x73 0x20 0x62 0x65 0x63 0x61 0x75 0x73 - 0x65 0x20 0x68 0x65 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x6B 0x6E 0x6F - 0x77 0x20 0x74 0x68 0x65 0x6D 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x70 0x69 0x63 0x6B 0x20 0x75 - 0x70 0x20 0x70 0x65 0x6F 0x70 0x6C 0x65 - 0x20 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x2C 0x20 0x67 0x72 0x65 0x65 - 0x74 0x20 0x74 0x68 0x65 0x6D 0x20 0x77 - 0x69 0x74 0x68 0x20 0x61 0x20 0x6C 0x69 - 0x74 0x74 0x6C 0x65 0x20 0x50 0x6F 0x6C - 0x69 0x73 0x68 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6F - 0x76 0x65 0x72 0x68 0x65 0x61 0x72 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 0x74 - 0x68 0x65 0x79 0x20 0x74 0x65 0x6C 0x6C - 0x20 0x65 0x61 0x63 0x68 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x73 0x65 0x61 0x74 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x6F 0x6E 0x65 0x20 0x65 - 0x76 0x65 0x6E 0x69 0x6E 0x67 0x2C 0x20 - 0x68 0x65 0x20 0x6F 0x76 0x65 0x72 0x68 - 0x65 0x61 0x72 0x73 0x20 0x73 0x6F 0x6D - 0x65 0x20 0x62 0x75 0x72 0x67 0x6C 0x61 - 0x72 0x73 0x20 0x70 0x6C 0x61 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x65 0x61 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x63 0x6F 0x77 0x62 0x6F 0x79 0x20 - 0x63 0x61 0x66 0xE9 0x20 0x73 0x61 0x66 - 0x65 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x6F 0x70 0x20 0x69 0x74 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x62 - 0x61 0x6C 0x63 0x6F 0x6E 0x79 0x20 0x62 - 0x65 0x68 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x72 0x65 0x73 0x74 0x61 0x75 - 0x72 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x61 0x20 0x77 0x61 0x69 0x74 0x69 0x6E - 0x67 0x20 0x63 0x61 0x72 0x20 0x62 0x65 - 0x6C 0x6F 0x77 0x2E 0x20 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 - 0x65 0x6D 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 17950 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7D= 0x00015355 - - -CHUNK('HTOP', _help_48544F50_7D, "") -SUBFILE -#line 17958 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_83=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x20 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_83=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x65 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_83=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_83, 0x0) - BYTE - 0x03 0x03 0x41 0x72 0x63 0x68 0x65 0x6F - 0x6C 0x6F 0x67 0x69 0x73 0x74 0x0D 0x0A - 0x41 0x73 0x20 0x61 0x20 0x79 0x6F 0x75 - 0x6E 0x67 0x20 0x62 0x6F 0x79 0x2C 0x20 - 0x4A 0x65 0x72 0x7A 0x79 0x20 0x77 0x6F - 0x72 0x6B 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x50 0x6F 0x6C 0x69 - 0x73 0x68 0x20 0x63 0x6F 0x61 0x6C 0x20 - 0x6D 0x69 0x6E 0x65 0x73 0x2C 0x20 0x73 - 0x6F 0x20 0x68 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x73 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x6E 0x61 0x74 0x75 0x72 0x61 - 0x6C 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x72 0x63 0x68 0x65 0x6F - 0x6C 0x6F 0x67 0x69 0x73 0x74 0x2E 0x20 - 0x20 0x4A 0x65 0x72 0x7A 0x79 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 0x70 - 0x61 0x72 0x74 0x6E 0x65 0x72 0x2C 0x20 - 0x42 0x69 0x6C 0x6C 0x79 0x2C 0x20 0x73 - 0x65 0x74 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x75 0x6E 0x63 0x6F 0x76 0x65 - 0x72 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F - 0x73 0x74 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x73 0x20 0x6F 0x66 0x20 - 0x52 0x6F 0x6D 0x65 0x2E 0x20 0x20 0x4A - 0x65 0x72 0x7A 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 0x74 - 0x72 0x79 0x20 0x74 0x6F 0x20 0x73 0x68 - 0x61 0x72 0x65 0x20 0x61 0x20 0x73 0x69 - 0x6E 0x67 0x6C 0x65 0x20 0x74 0x65 0x6E - 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 0x74 - 0x68 0x65 0x79 0x20 0x61 0x72 0x65 0x20 - 0x62 0x6F 0x74 0x68 0x20 0x74 0x6F 0x6F - 0x20 0x62 0x69 0x67 0x2E 0x20 0x20 0x53 - 0x6F 0x20 0x4A 0x65 0x72 0x7A 0x79 0x20 - 0x73 0x6C 0x65 0x65 0x70 0x73 0x20 0x6F - 0x75 0x74 0x73 0x69 0x64 0x65 0x20 0x74 - 0x68 0x65 0x20 0x72 0x75 0x69 0x6E 0x73 - 0x20 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 - 0x74 0x2E 0x20 0x20 0x41 0x73 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x6C 0x79 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x6F 0x6E 0x65 0x20 0x65 0x76 0x65 - 0x6E 0x69 0x6E 0x67 0x2C 0x20 0x68 0x65 - 0x20 0x68 0x65 0x61 0x72 0x73 0x20 0x61 - 0x20 0x6C 0x6F 0x75 0x64 0x20 0x73 0x77 - 0x6F 0x6F 0x73 0x68 0x20 0x61 0x6E 0x64 - 0x20 0x77 0x61 0x74 0x63 0x68 0x65 0x73 - 0x20 0x61 0x20 0x73 0x70 0x61 0x63 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 - 0x6C 0x61 0x6E 0x64 0x20 0x62 0x65 0x73 - 0x69 0x64 0x65 0x20 0x68 0x69 0x6D 0x2E - 0x20 0x20 0x4F 0x75 0x74 0x20 0x63 0x6F - 0x6D 0x65 0x73 0x20 0x61 0x20 0x67 0x6F - 0x6F 0x66 0x79 0x20 0x67 0x75 0x79 0x20 - 0x77 0x69 0x74 0x68 0x20 0x61 0x20 0x70 - 0x61 0x70 0x65 0x72 0x20 0x73 0x61 0x63 - 0x6B 0x20 0x6F 0x76 0x65 0x72 0x20 0x68 - 0x69 0x73 0x20 0x68 0x65 0x61 0x64 0x2E - 0x20 0x20 0x42 0x69 0x6C 0x6C 0x79 0x20 - 0x77 0x61 0x6B 0x65 0x73 0x20 0x75 0x70 - 0x2C 0x20 0x73 0x65 0x65 0x73 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x67 0x2D 0x67 - 0x75 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x75 0x6E 0x73 0x20 0x61 0x77 0x61 - 0x79 0x20 0x73 0x63 0x72 0x65 0x61 0x6D - 0x69 0x6E 0x67 0x2E 0x20 0x42 0x75 0x74 - 0x20 0x6E 0x6F 0x74 0x20 0x4A 0x65 0x72 - 0x7A 0x79 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x62 0x61 0x67 0x2D 0x68 0x65 0x61 - 0x64 0x20 0x67 0x75 0x79 0x20 0x74 0x65 - 0x6C 0x6C 0x73 0x20 0x4A 0x65 0x72 0x7A - 0x79 0x20 0x74 0x68 0x61 0x74 0x20 0x74 - 0x68 0x65 0x79 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x66 0x69 0x6E 0x64 0x20 0x6D - 0x6F 0x72 0x65 0x20 0x74 0x68 0x61 0x6E - 0x20 0x6C 0x6F 0x73 0x74 0x20 0x74 0x72 - 0x65 0x61 0x73 0x75 0x72 0x65 0x73 0x20 - 0x69 0x66 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x63 0x61 0x6D 0x65 0x20 0x77 0x69 - 0x74 0x68 0x20 0x68 0x69 0x6D 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x63 0x6B 0x65 0x74 0x2E 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x4A 0x65 0x72 0x7A 0x79 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x74 0x72 0x75 0x73 0x74 0x20 0x61 0x20 - 0x67 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x65 0x61 0x72 0x73 0x20 0x68 0x69 - 0x73 0x20 0x6C 0x75 0x6E 0x63 0x68 0x20 - 0x62 0x61 0x67 0x20 0x6F 0x76 0x65 0x72 - 0x20 0x68 0x69 0x73 0x20 0x68 0x65 0x61 - 0x64 0x3F 0x20 0x20 0x49 0x66 0x20 0x4A - 0x65 0x72 0x7A 0x79 0x20 0x67 0x6F 0x65 - 0x73 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x79 0x20 0x6C 0x61 0x6E 0x64 0x3F - 0x20 0x20 0x4F 0x72 0x20 0x63 0x61 0x6E - 0x20 0x74 0x68 0x65 0x79 0x20 0x66 0x6C - 0x79 0x20 0x66 0x61 0x73 0x74 0x65 0x72 - 0x20 0x74 0x68 0x61 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x69 0x74 0x73 0x65 0x6C - 0x66 0x20 0x61 0x6E 0x64 0x20 0x65 0x6E - 0x64 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x70 0x6C 0x61 0x63 0x65 0x20 0x61 0x6E - 0x64 0x20 0x74 0x69 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 18127 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7E= 0x00015356 - - -CHUNK('HTOP', _help_48544F50_7E, "") -SUBFILE -#line 18135 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_95=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_95=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAE 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_95=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_95, 0x0) - BYTE - 0x03 0x03 0x6D 0x6F 0x76 0x69 0x65 0x20 - 0x73 0x74 0x61 0x72 0x0D 0x0A 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x20 - 0x76 0x6F 0x6C 0x75 0x6E 0x74 0x65 0x65 - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x63 0x6F 0x73 0x74 - 0x75 0x6D 0x65 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x20 0x74 0x68 0x61 0x74 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x66 0x69 0x6C 0x6D 0x65 0x64 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6C 0x6F 0x63 0x61 - 0x74 0x69 0x6F 0x6E 0x20 0x6E 0x65 0x61 - 0x72 0x20 0x68 0x65 0x72 0x20 0x6A 0x6F - 0x62 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x61 0x6C 0x6C 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 - 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6C 0x6C 0x20 0x69 0x6E 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x6E 0x20 0x61 0x63 - 0x74 0x72 0x65 0x73 0x73 0x20 0x77 0x68 - 0x6F 0x20 0x68 0x61 0x64 0x20 0x71 0x75 - 0x69 0x74 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x62 0x6F 0x6C 0x64 0x6C 0x79 0x20 0x74 - 0x6F 0x6F 0x6B 0x20 0x74 0x68 0x65 0x20 - 0x73 0x74 0x61 0x67 0x65 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x73 0x20 0x73 0x75 - 0x72 0x70 0x72 0x69 0x73 0x65 0x64 0x20 - 0x61 0x74 0x20 0x68 0x6F 0x77 0x20 0x65 - 0x61 0x73 0x69 0x6C 0x79 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x63 0x61 0x6D - 0x65 0x20 0x74 0x6F 0x20 0x68 0x65 0x72 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x6C - 0x6F 0x76 0x65 0x64 0x20 0x74 0x68 0x65 - 0x20 0x61 0x74 0x74 0x65 0x6E 0x74 0x69 - 0x6F 0x6E 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x6D 0x65 0x72 - 0x61 0x73 0x20 0x61 0x6E 0x64 0x20 0x6C - 0x69 0x67 0x68 0x74 0x73 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x6B 0x65 0x70 0x74 - 0x20 0x74 0x72 0x79 0x69 0x6E 0x67 0x20 - 0x6F 0x75 0x74 0x20 0x66 0x6F 0x72 0x20 - 0x62 0x69 0x67 0x67 0x65 0x72 0x20 0x61 - 0x6E 0x64 0x20 0x62 0x69 0x67 0x67 0x65 - 0x72 0x20 0x70 0x61 0x72 0x74 0x73 0x20 - 0x69 0x6E 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 - 0x6F 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 - 0x73 0x68 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x61 0x20 0x6C 0x65 0x61 0x64 0x69 0x6E - 0x67 0x20 0x72 0x6F 0x6C 0x65 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x20 0x66 0x69 0x6C 0x6D 0x21 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18250 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_7F= 0x00015357 - - -CHUNK('HTOP', _help_48544F50_7F, "") -SUBFILE -#line 18258 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_7F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7B, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x6C 0x6D 0x20 0x52 - 0x65 0x61 0x64 0x65 0x72 0x0D 0x0A 0x4A - 0x6F 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x61 0x6D 0x61 0x7A - 0x69 0x6E 0x67 0x20 0x73 0x74 0x6F 0x72 - 0x69 0x65 0x73 0x20 0x70 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x70 0x61 0x6C 0x6D 0x20 0x72 - 0x65 0x61 0x64 0x65 0x72 0x20 0x69 0x6E - 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x2E 0x20 0x20 0x50 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x69 0x6E 0x65 0x20 0x75 0x70 0x20 - 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x69 0x72 0x20 0x66 0x75 - 0x74 0x75 0x72 0x65 0x73 0x20 0x70 0x72 - 0x65 0x64 0x69 0x63 0x74 0x65 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x28 0x61 - 0x6C 0x6D 0x6F 0x73 0x74 0x29 0x20 0x61 - 0x6C 0x77 0x61 0x79 0x73 0x20 0x74 0x65 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x77 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 - 0x2E 0x20 0x20 0x4F 0x6E 0x65 0x20 0x64 - 0x61 0x79 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x6D 0x65 0x65 0x74 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x77 0x68 - 0x6F 0x73 0x65 0x20 0x64 0x65 0x73 0x74 - 0x69 0x6E 0x79 0x20 0x63 0x6F 0x6C 0x6C - 0x69 0x64 0x65 0x73 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x65 0x72 0x20 0x6F 0x77 - 0x6E 0x2E 0x20 0x20 0x57 0x68 0x61 0x74 - 0x20 0x73 0x68 0x65 0x20 0x73 0x65 0x65 - 0x73 0x20 0x69 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x73 0x6F 0x6D 0x65 0x77 0x68 - 0x65 0x72 0x65 0x20 0x74 0x68 0x65 0x72 - 0x65 0x20 0x69 0x73 0x20 0x61 0x20 0x62 - 0x61 0x62 0x79 0x20 0x63 0x72 0x61 0x77 - 0x6C 0x69 0x6E 0x67 0x20 0x61 0x63 0x72 - 0x6F 0x73 0x73 0x20 0x61 0x20 0x72 0x6F - 0x61 0x64 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x6F 0x67 - 0x65 0x74 0x68 0x65 0x72 0x20 0x74 0x68 - 0x65 0x79 0x20 0x6D 0x75 0x73 0x74 0x20 - 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x63 0x68 0x69 0x6C 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x61 0x76 0x65 0x20 - 0x69 0x74 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x61 0x6E 0x20 0x61 0x6D 0x62 0x75 0x6C - 0x61 0x6E 0x63 0x65 0x20 0x7A 0x6F 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6C 0x6F 0x73 0x65 0x72 0x2E 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x79 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x62 0x61 0x62 0x79 0x20 - 0x69 0x6E 0x20 0x74 0x69 0x6D 0x65 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18381 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_80= 0x00015358 - - -CHUNK('HTOP', _help_48544F50_80, "") -SUBFILE -#line 18389 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_80, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_7F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_7F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8A 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE9 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_7F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_7F, 0x0) - BYTE - 0x03 0x03 0x49 0x6D 0x70 0x6F 0x72 0x74 - 0x20 0x53 0x61 0x6C 0x65 0x73 0x70 0x65 - 0x72 0x73 0x6F 0x6E 0x0D 0x0A 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x20 - 0x68 0x61 0x73 0x20 0x77 0x6F 0x72 0x6B - 0x65 0x64 0x20 0x69 0x6E 0x20 0x73 0x61 - 0x6C 0x65 0x73 0x20 0x62 0x65 0x66 0x6F - 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x65 0x78 0x63 0x65 0x6C 0x6C 0x65 0x6E - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x20 0x69 0x6D 0x70 0x6F - 0x72 0x74 0x20 0x73 0x61 0x6C 0x65 0x73 - 0x70 0x65 0x72 0x73 0x6F 0x6E 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x73 0x65 0x6C - 0x6C 0x73 0x20 0x61 0x6E 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x6F 0x76 0x65 0x73 0x3A 0x20 - 0x20 0x63 0x61 0x72 0x73 0x2C 0x20 0x74 - 0x61 0x78 0x69 0x73 0x2C 0x20 0x73 0x70 - 0x61 0x63 0x65 0x73 0x68 0x69 0x70 0x73 - 0x2C 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 - 0x73 0x2C 0x20 0x61 0x6D 0x62 0x75 0x6C - 0x61 0x6E 0x63 0x65 0x73 0x2C 0x20 0x68 - 0x6F 0x74 0x2D 0x61 0x69 0x72 0x20 0x62 - 0x61 0x6C 0x6C 0x6F 0x6F 0x6E 0x73 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6A 0x65 0x74 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x73 0x2E - 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x72 0x20 - 0x70 0x6F 0x74 0x65 0x6E 0x74 0x69 0x61 - 0x6C 0x20 0x63 0x75 0x73 0x74 0x6F 0x6D - 0x65 0x72 0x73 0x20 0x72 0x65 0x61 0x6C - 0x69 0x7A 0x65 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x73 0x65 0x20 0x76 - 0x65 0x68 0x69 0x63 0x6C 0x65 0x73 0x20 - 0x61 0x72 0x65 0x20 0x6E 0x6F 0x74 0x20 - 0x68 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x6C 0x6C 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x69 0x73 0x20 0x61 0x20 0x73 - 0x63 0x61 0x6D 0x20 0x61 0x72 0x74 0x69 - 0x73 0x74 0x2C 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x67 0x65 0x74 0x20 - 0x61 0x77 0x61 0x79 0x20 0x62 0x65 0x66 - 0x6F 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x6F 0x6C 0x69 0x63 0x65 0x20 0x61 - 0x72 0x72 0x65 0x73 0x74 0x20 0x68 0x65 - 0x72 0x3F 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18500 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_81= 0x00015359 - - -CHUNK('HTOP', _help_48544F50_81, "") -SUBFILE -#line 18508 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_81, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_80=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_81, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_80=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xCF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_80=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_80, 0x0) - BYTE - 0x03 0x03 0x41 0x72 0x74 0x20 0x43 0x6F - 0x6C 0x6C 0x65 0x63 0x74 0x6F 0x72 0x0D - 0x0A 0x50 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x70 0x61 0x72 - 0x74 0x20 0x6F 0x66 0x20 0x61 0x6E 0x20 - 0x61 0x72 0x74 0x20 0x63 0x6F 0x6C 0x6C - 0x65 0x63 0x74 0x6F 0x72 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x71 - 0x75 0x69 0x74 0x65 0x20 0x61 0x6E 0x20 - 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 - 0x65 0x20 0x66 0x6F 0x72 0x20 0x4A 0x6F - 0x73 0x65 0x70 0x68 0x69 0x6E 0x65 0x21 - 0x20 0x53 0x68 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x61 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x61 0x76 0x65 - 0x6C 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x74 0x72 0x6F 0x70 0x69 0x63 0x73 - 0x2C 0x20 0x73 0x74 0x61 0x79 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x68 0x75 0x74 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x77 0x6F 0x72 - 0x6B 0x20 0x77 0x69 0x74 0x68 0x20 0x61 - 0x20 0x67 0x75 0x69 0x64 0x65 0x20 0x77 - 0x68 0x6F 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x65 0x61 0x64 0x20 0x68 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x61 0x20 0x73 - 0x65 0x74 0x20 0x6F 0x66 0x20 0x70 0x72 - 0x69 0x63 0x65 0x6C 0x65 0x73 0x73 0x20 - 0x74 0x6F 0x74 0x65 0x6D 0x20 0x70 0x6F - 0x6C 0x65 0x73 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x73 - 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x73 0x20 0x68 0x61 - 0x76 0x65 0x20 0x61 0x20 0x63 0x75 0x72 - 0x73 0x65 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x6D 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x73 0x6B 0x65 - 0x6C 0x65 0x74 0x6F 0x6E 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x68 0x61 0x74 0x74 - 0x65 0x72 0x69 0x6E 0x67 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x73 0x20 0x73 0x74 0x61 - 0x72 0x74 0x20 0x70 0x6F 0x70 0x70 0x69 - 0x6E 0x67 0x20 0x75 0x70 0x20 0x65 0x76 - 0x65 0x72 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x65 0x6C 0x6C - 0x20 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x6F 0x75 0x74 0x2C - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x73 0x74 0x69 0x63 0x6B 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x3F 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x72 0x20 0x67 0x75 0x69 0x64 0x65 0x20 - 0x64 0x69 0x73 0x61 0x70 0x70 0x65 0x61 - 0x72 0x73 0x2C 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 0x6C - 0x70 0x20 0x68 0x65 0x72 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x68 0x69 0x6D 0x3F 0x20 - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 18628 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_82= 0x0001535a - - -CHUNK('HTOP', _help_48544F50_82, "") -SUBFILE -#line 18636 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_82, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_82, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6B, 0x0) - BYTE - 0x03 0x03 0x73 0x74 0x75 0x6E 0x74 0x20 - 0x61 0x63 0x74 0x72 0x65 0x73 0x73 0x0D - 0x0A 0x4B 0x69 0x6D 0x20 0x74 0x72 0x69 - 0x65 0x64 0x20 0x68 0x65 0x72 0x20 0x66 - 0x69 0x72 0x73 0x74 0x20 0x73 0x74 0x75 - 0x6E 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x77 0x61 0x73 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x35 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x6C 0x6F 0x76 - 0x65 0x64 0x20 0x66 0x6C 0x79 0x69 0x6E - 0x67 0x20 0x6B 0x69 0x74 0x65 0x73 0x2C - 0x20 0x73 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x77 0x69 0x6E 0x64 0x79 0x20 0x64 0x61 - 0x79 0x2C 0x20 0x73 0x68 0x65 0x20 0x74 - 0x69 0x65 0x64 0x20 0x74 0x6F 0x67 0x65 - 0x74 0x68 0x65 0x72 0x20 0x61 0x6C 0x6C - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x74 0x65 0x73 0x20 0x69 0x6E - 0x20 0x68 0x65 0x72 0x20 0x63 0x6F 0x6C - 0x6C 0x65 0x63 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 - 0x68 0x65 0x20 0x72 0x61 0x6E 0x20 0x74 - 0x6F 0x20 0x67 0x65 0x74 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x66 0x6C 0x79 0x69 0x6E - 0x67 0x2C 0x20 0x61 0x20 0x67 0x75 0x73 - 0x74 0x20 0x6F 0x66 0x20 0x77 0x69 0x6E - 0x64 0x20 0x74 0x6F 0x6F 0x6B 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x65 0x73 - 0x20 0x75 0x70 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x6F 0x6F 0x6B 0x20 0x4B 0x69 0x6D - 0x20 0x75 0x70 0x20 0x72 0x69 0x67 0x68 - 0x74 0x20 0x61 0x6C 0x6F 0x6E 0x67 0x20 - 0x77 0x69 0x74 0x68 0x20 0x74 0x68 0x65 - 0x6D 0x2C 0x20 0x68 0x65 0x72 0x20 0x63 - 0x65 0x72 0x65 0x6D 0x6F 0x6E 0x69 0x61 - 0x6C 0x20 0x6B 0x69 0x6D 0x6F 0x6E 0x6F - 0x20 0x66 0x6C 0x79 0x69 0x6E 0x67 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x20 0x68 - 0x65 0x72 0x20 0x6B 0x6E 0x65 0x65 0x73 - 0x2E 0x20 0x0D 0x0A 0x41 0x20 0x6E 0x65 - 0x77 0x73 0x20 0x63 0x72 0x65 0x77 0x20 - 0x63 0x61 0x75 0x67 0x68 0x74 0x20 0x4B - 0x69 0x6D 0x20 0x69 0x6E 0x20 0x66 0x6C - 0x69 0x67 0x68 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x6D 0x61 0x6E 0x79 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x20 0x63 0x6F 0x6D - 0x70 0x61 0x6E 0x69 0x65 0x73 0x20 0x63 - 0x61 0x6C 0x6C 0x65 0x64 0x20 0x68 0x65 - 0x72 0x20 0x68 0x6F 0x75 0x73 0x65 0x2C - 0x20 0x77 0x61 0x6E 0x74 0x69 0x6E 0x67 - 0x20 0x4B 0x69 0x6D 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x61 0x20 0x73 0x74 0x61 - 0x72 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x68 0x65 0x72 0x20 0x70 0x61 0x72 0x65 - 0x6E 0x74 0x73 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x6E 0x92 0x74 0x20 0x6C 0x65 0x74 - 0x20 0x68 0x65 0x72 0x20 0x6D 0x61 0x6B - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x20 0x75 0x6E 0x74 0x69 0x6C 0x20 0x73 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x61 - 0x74 0x20 0x6C 0x65 0x61 0x73 0x74 0x20 - 0x31 0x32 0x2E 0x20 0x20 0x57 0x65 0x6C - 0x6C 0x2C 0x20 0x6E 0x6F 0x77 0x20 0x73 - 0x68 0x65 0x27 0x73 0x20 0x31 0x32 0x20 - 0x61 0x6E 0x64 0x20 0x72 0x65 0x61 0x64 - 0x79 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x20 0x73 0x74 0x61 0x72 0x21 -ENDCHUNK - - -ENDCHUNK -#line 18764 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_83= 0x0001535b - - -CHUNK('HTOP', _help_48544F50_83, "") -SUBFILE -#line 18772 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_83, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_85=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_83, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_85=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7B 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x23 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_85=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_85, 0x0) - BYTE - 0x03 0x03 0x46 0x6F 0x72 0x74 0x75 0x6E - 0x65 0x20 0x54 0x65 0x6C 0x6C 0x65 0x72 - 0x0D 0x0A 0x49 0x66 0x20 0x4B 0x69 0x6D - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x63 - 0x68 0x6F 0x6F 0x73 0x65 0x20 0x61 0x20 - 0x70 0x61 0x72 0x74 0x2C 0x20 0x73 0x68 - 0x65 0x92 0x64 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x56 0x69 0x72 0x74 0x75 - 0x61 0x6C 0x20 0x52 0x65 0x61 0x6C 0x69 - 0x74 0x79 0x20 0x46 0x6F 0x72 0x74 0x75 - 0x6E 0x65 0x20 0x54 0x65 0x6C 0x6C 0x65 - 0x72 0x2E 0x20 0x20 0x54 0x68 0x61 0x74 - 0x20 0x77 0x61 0x79 0x20 0x73 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 - 0x61 0x6B 0x65 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x69 0x72 0x20 0x66 0x75 0x74 0x75 - 0x72 0x65 0x73 0x2E 0x20 0x20 0x53 0x68 - 0x65 0x20 0x69 0x6D 0x61 0x67 0x69 0x6E - 0x65 0x73 0x20 0x64 0x6F 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x72 0x65 0x61 0x64 0x69 - 0x6E 0x67 0x20 0x66 0x6F 0x72 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x67 0x72 0x65 0x65 0x6E 0x20 - 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x2E 0x20 0x20 0x54 0x68 0x65 0x79 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x66 0x75 0x74 0x75 0x72 0x65 0x2C - 0x20 0x77 0x68 0x65 0x72 0x65 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x69 0x6E 0x76 0x65 0x6E - 0x74 0x20 0x61 0x20 0x72 0x6F 0x63 0x6B - 0x65 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x70 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x6F 0x6E 0x20 0x76 0x61 0x63 - 0x61 0x74 0x69 0x6F 0x6E 0x73 0x20 0x74 - 0x6F 0x20 0x4D 0x61 0x72 0x73 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x64 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x74 0x65 0x73 0x74 - 0x20 0x66 0x6C 0x69 0x67 0x68 0x74 0x2E - 0x20 0x42 0x75 0x74 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x74 0x68 0x65 0x79 0x20 - 0x74 0x61 0x6B 0x65 0x20 0x6F 0x66 0x66 - 0x2C 0x20 0x74 0x68 0x65 0x79 0x20 0x62 - 0x6F 0x74 0x68 0x20 0x72 0x65 0x61 0x6C - 0x69 0x7A 0x65 0x20 0x74 0x68 0x61 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x66 0x75 0x74 0x75 0x72 0x65 0x20 0x61 - 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x73 0x74 0x2C 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x66 0x6F 0x72 - 0x67 0x6F 0x74 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x67 0x75 0x72 0x65 0x20 0x6F 0x75 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x72 0x65 0x63 0x68 0x61 0x72 0x67 - 0x65 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x63 0x6B 0x65 0x74 0x20 0x62 0x6F 0x6F - 0x73 0x74 0x65 0x72 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x67 0x65 0x74 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 - 0x74 0x6F 0x20 0x66 0x6C 0x79 0x20 0x68 - 0x6F 0x6D 0x65 0x20 0x61 0x67 0x61 0x69 - 0x6E 0x2E 0x20 0x0D 0x0A 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4B 0x69 - 0x6D 0x20 0x61 0x6E 0x64 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x67 0x65 0x74 0x20 - 0x68 0x6F 0x6D 0x65 0x3F 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x4B 0x69 0x6D 0x20 0x6E - 0x65 0x65 0x64 0x20 0x74 0x6F 0x20 0x74 - 0x72 0x79 0x20 0x73 0x6F 0x6D 0x65 0x20 - 0x73 0x74 0x75 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x68 0x65 0x6C 0x70 0x20 0x74 - 0x68 0x65 0x6D 0x20 0x67 0x65 0x74 0x20 - 0x62 0x61 0x63 0x6B 0x3F -ENDCHUNK - - -ENDCHUNK -#line 18913 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_84= 0x0001535c - - -CHUNK('HTOP', _help_48544F50_84, "") -SUBFILE -#line 18921 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_84, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_84=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_84=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x6D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAE 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_84=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_84, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6D 0x62 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x4B 0x69 0x64 0x73 - 0x92 0x20 0x4D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x20 0x43 0x6C 0x75 0x62 0x0D 0x0A - 0x4B 0x69 0x6D 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x70 0x6C - 0x61 0x79 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x65 0x61 0x64 0x20 0x70 - 0x61 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x4B 0x69 0x64 0x73 0x92 0x20 0x4D - 0x79 0x73 0x74 0x65 0x72 0x79 0x20 0x43 - 0x6C 0x75 0x62 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x63 0x61 0x6E 0x20 0x73 0x65 0x65 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x6F 0x72 - 0x79 0x20 0x6E 0x6F 0x77 0x2E 0x20 0x20 - 0x42 0x6F 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x62 0x69 0x67 0x20 0x67 0x75 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x67 0x75 0x61 0x72 - 0x64 0x73 0x20 0x74 0x68 0x65 0x20 0x63 - 0x72 0x65 0x65 0x70 0x79 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x74 0x72 - 0x65 0x65 0x74 0x2C 0x20 0x6B 0x65 0x65 - 0x70 0x73 0x20 0x74 0x65 0x6C 0x6C 0x69 - 0x6E 0x67 0x20 0x65 0x76 0x65 0x72 0x79 - 0x6F 0x6E 0x65 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x73 0x61 0x77 0x20 - 0x61 0x20 0x55 0x46 0x4F 0x20 0x66 0x6C - 0x79 0x69 0x6E 0x67 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x63 0x72 0x65 0x65 0x70 0x79 0x20 0x68 - 0x6F 0x75 0x73 0x65 0x20 0x61 0x74 0x20 - 0x6E 0x69 0x67 0x68 0x74 0x2E 0x20 0x20 - 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x62 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x64 0x73 0x20 0x62 0x65 0x6C 0x69 - 0x65 0x76 0x65 0x20 0x68 0x69 0x6D 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x4B 0x69 0x6D - 0x20 0x69 0x73 0x20 0x64 0x65 0x74 0x65 - 0x72 0x6D 0x69 0x6E 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x70 0x72 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x92 - 0x73 0x20 0x74 0x65 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x74 0x68 0x65 0x20 0x74 0x72 - 0x75 0x74 0x68 0x2E 0x20 0x20 0x53 0x6F - 0x2C 0x20 0x6F 0x6E 0x65 0x20 0x6E 0x69 - 0x67 0x68 0x74 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x73 0x20 0x6B 0x6E 0x65 - 0x65 0x6C 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6F 0x66 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x69 0x74 0x2E 0x20 0x0D 0x0A - 0x41 0x72 0x6F 0x75 0x6E 0x64 0x20 0x6D - 0x69 0x64 0x6E 0x69 0x67 0x68 0x74 0x2C - 0x20 0x74 0x68 0x65 0x79 0x20 0x73 0x65 - 0x65 0x20 0x74 0x69 0x6E 0x79 0x20 0x6C - 0x69 0x67 0x68 0x74 0x73 0x20 0x66 0x6C - 0x61 0x73 0x68 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x64 0x69 - 0x73 0x74 0x61 0x6E 0x63 0x65 0x2E 0x20 - 0x57 0x68 0x61 0x74 0x20 0x69 0x73 0x20 - 0x69 0x74 0x3F 0x20 0x20 0x49 0x66 0x20 - 0x69 0x74 0x92 0x73 0x20 0x61 0x20 0x55 - 0x46 0x4F 0x2C 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x62 0x65 0x20 0x6B 0x69 0x64 - 0x6E 0x61 0x70 0x70 0x65 0x64 0x3F 0x20 - 0x20 0x4F 0x72 0x20 0x69 0x73 0x20 0x69 - 0x74 0x20 0x6A 0x75 0x73 0x74 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x65 0x65 0x6E - 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 - 0x73 0x74 0x2C 0x20 0x57 0x69 0x6C 0x6C - 0x79 0x2C 0x20 0x77 0x6F 0x72 0x6B 0x69 - 0x6E 0x67 0x20 0x6F 0x6E 0x20 0x61 0x20 - 0x6E 0x65 0x77 0x20 0x65 0x78 0x70 0x65 - 0x72 0x69 0x6D 0x65 0x6E 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 19060 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_85= 0x0001535d - - -CHUNK('HTOP', _help_48544F50_85, "") -SUBFILE -#line 19068 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_85, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_6E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_85, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDF 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_6E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3B 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_6E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_6E, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x47 0x69 - 0x72 0x6C 0x0D 0x0A 0x4B 0x69 0x6D 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 - 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x61 0x20 0x74 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x66 0x75 0x6E 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x20 0x70 0x61 0x72 0x74 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x68 0x69 0x73 0x74 0x6F 0x72 0x79 0x20 - 0x67 0x65 0x74 0x73 0x20 0x61 0x6C 0x6C - 0x20 0x6D 0x69 0x78 0x65 0x64 0x20 0x75 - 0x70 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x70 0x72 0x65 0x68 0x69 - 0x73 0x74 0x6F 0x72 0x69 0x63 0x20 0x67 - 0x69 0x72 0x6C 0x20 0x77 0x68 0x6F 0x73 - 0x65 0x20 0x66 0x61 0x74 0x68 0x65 0x72 - 0x20 0x68 0x61 0x73 0x20 0x61 0x20 0x77 - 0x65 0x69 0x72 0x64 0x20 0x6D 0x75 0x6D - 0x6D 0x79 0x20 0x66 0x6F 0x6C 0x6C 0x6F - 0x77 0x69 0x6E 0x67 0x20 0x68 0x69 0x6D - 0x20 0x65 0x76 0x65 0x72 0x79 0x77 0x68 - 0x65 0x72 0x65 0x2E 0x20 0x20 0x4B 0x69 - 0x6D 0x92 0x73 0x20 0x6A 0x6F 0x62 0x20 - 0x69 0x73 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x61 0x20 0x77 0x61 0x79 - 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x74 0x6F 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x64 0x69 0x66 0x66 0x65 0x72 0x65 - 0x6E 0x74 0x20 0x74 0x69 0x6D 0x65 0x2E - 0x20 0x20 0x4F 0x6E 0x65 0x20 0x6D 0x6F - 0x72 0x6E 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x72 0x20 0x64 0x6F 0x67 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x62 0x61 0x72 - 0x6B 0x69 0x6E 0x67 0x2C 0x20 0x73 0x6F - 0x20 0x73 0x68 0x65 0x20 0x66 0x6F 0x6C - 0x6C 0x6F 0x77 0x73 0x20 0x68 0x69 0x6D - 0x2C 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 - 0x6E 0x20 0x61 0x62 0x61 0x6E 0x64 0x6F - 0x6E 0x65 0x64 0x20 0x74 0x61 0x78 0x69 - 0x20 0x63 0x61 0x62 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x69 0x64 0x64 - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x6E 0x6F - 0x77 0x68 0x65 0x72 0x65 0x2E 0x20 0x20 - 0x53 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x73 0x20 0x74 0x68 0x65 0x20 0x6B 0x65 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 - 0x61 0x72 0x74 0x73 0x20 0x74 0x68 0x65 - 0x20 0x74 0x61 0x78 0x69 0x2E 0x20 0x54 - 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x67 0x65 0x74 0x73 0x20 0x68 0x65 0x72 - 0x20 0x66 0x61 0x74 0x68 0x65 0x72 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x79 0x20 0x74 0x61 0x6B 0x65 0x20 0x6F - 0x66 0x66 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x74 0x68 0x65 0x6E 0x2C 0x20 0x69 - 0x6E 0x20 0x68 0x65 0x72 0x20 0x72 0x65 - 0x61 0x72 0x2D 0x76 0x69 0x65 0x77 0x20 - 0x6D 0x69 0x72 0x72 0x6F 0x72 0x2C 0x20 - 0x73 0x68 0x65 0x20 0x73 0x65 0x65 0x73 - 0x20 0x61 0x20 0x67 0x75 0x79 0x20 0x69 - 0x6E 0x20 0x62 0x61 0x6E 0x64 0x61 0x67 - 0x65 0x73 0x20 0x66 0x6F 0x6C 0x6C 0x6F - 0x77 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x69 0x6E 0x20 0x61 0x6E 0x20 - 0x61 0x6D 0x62 0x75 0x6C 0x61 0x6E 0x63 - 0x65 0x2E 0x20 0x0D 0x0A 0x57 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x65 - 0x76 0x65 0x72 0x20 0x67 0x65 0x74 0x20 - 0x61 0x77 0x61 0x79 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x68 0x69 0x6D 0x3F 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x4B 0x69 0x6D - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x20 0x74 0x68 0x69 0x6E - 0x67 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x63 0x61 0x6E 0x20 0x68 0x65 0x6C 0x70 - 0x20 0x74 0x68 0x65 0x6D 0x20 0x65 0x73 - 0x63 0x61 0x70 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 19212 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_86= 0x0001535e - - -CHUNK('HTOP', _help_48544F50_86, "") -SUBFILE -#line 19220 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_86, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_86, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x58 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8C 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xE9 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8B, 0x0) - BYTE - 0x03 0x03 0x77 0x69 0x6C 0x64 0x0D 0x0A - 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 0x77 - 0x61 0x6E 0x64 0x65 0x72 0x65 0x64 0x20 - 0x74 0x68 0x65 0x20 0x67 0x6C 0x6F 0x62 - 0x65 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x20 0x22 0x73 - 0x6F 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x6C 0x64 0x2E 0x22 0x20 - 0x20 0x53 0x68 0x65 0x20 0x73 0x6F 0x6F - 0x6E 0x20 0x66 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x64 0x6F 0x20 0x62 0x65 0x73 0x74 - 0x20 0x77 0x61 0x73 0x20 0x6A 0x75 0x6D - 0x70 0x2E 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x20 0x6E 0x6F 0x74 0x69 - 0x63 0x65 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x66 0x61 0x72 - 0x74 0x68 0x65 0x72 0x20 0x73 0x68 0x65 - 0x20 0x6A 0x75 0x6D 0x70 0x65 0x64 0x2C - 0x20 0x74 0x68 0x65 0x20 0x62 0x69 0x67 - 0x67 0x65 0x72 0x20 0x73 0x68 0x65 0x20 - 0x67 0x6F 0x74 0x2E 0x20 0x20 0x53 0x68 - 0x65 0x20 0x77 0x61 0x73 0x20 0x74 0x77 - 0x69 0x63 0x65 0x20 0x61 0x73 0x20 0x62 - 0x69 0x67 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x69 0x72 0x20 0x61 0x73 - 0x20 0x73 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2E 0x0D - 0x0A 0x53 0x6F 0x20 0x4D 0x61 0x72 0x74 - 0x68 0x61 0x20 0x6A 0x75 0x6D 0x70 0x65 - 0x64 0x20 0x65 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x97 0x74 0x65 0x6E - 0x74 0x73 0x2C 0x20 0x63 0x61 0x72 0x73 - 0x2C 0x20 0x65 0x76 0x65 0x6E 0x20 0x61 - 0x69 0x72 0x70 0x6C 0x61 0x6E 0x65 0x73 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x67 0x65 0x74 0x74 0x69 - 0x6E 0x67 0x20 0x6F 0x6C 0x64 0x65 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x4D 0x61 - 0x72 0x74 0x68 0x61 0x20 0x73 0x74 0x69 - 0x6C 0x6C 0x20 0x77 0x6F 0x6E 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x6A 0x75 0x6D - 0x70 0x69 0x6E 0x67 0x20 0x63 0x6F 0x6E - 0x74 0x65 0x73 0x74 0x20 0x73 0x68 0x65 - 0x20 0x65 0x6E 0x74 0x65 0x72 0x65 0x64 - 0x2E 0x20 0x57 0x69 0x74 0x68 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x6E 0x65 0x79 0x20 0x4D 0x61 0x72 - 0x74 0x68 0x61 0x20 0x77 0x6F 0x6E 0x20 - 0x69 0x6E 0x20 0x6A 0x75 0x6D 0x70 0x69 - 0x6E 0x67 0x20 0x63 0x6F 0x6E 0x74 0x65 - 0x73 0x74 0x73 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x6F 0x70 0x65 0x6E 0x65 0x64 0x20 - 0x75 0x70 0x20 0x61 0x20 0x63 0x68 0x61 - 0x69 0x6E 0x20 0x6F 0x66 0x20 0x72 0x65 - 0x73 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 - 0x73 0x2E 0x20 0x20 0x4F 0x66 0x20 0x63 - 0x6F 0x75 0x72 0x73 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x66 0x69 0x72 0x73 0x74 - 0x20 0x6F 0x6E 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x20 0x54 0x65 0x78 0x2D 0x4D - 0x65 0x78 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x64 0x6F - 0x6E 0x65 0x20 0x61 0x6C 0x6C 0x20 0x69 - 0x6E 0x20 0x63 0x6F 0x77 0x68 0x69 0x64 - 0x65 0x2E 0x20 0x20 0x41 0x6E 0x64 0x20 - 0x73 0x68 0x65 0x20 0x62 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x72 0x73 0x65 - 0x6C 0x66 0x20 0x61 0x20 0x66 0x61 0x6E - 0x63 0x79 0x20 0x63 0x61 0x72 0x20 0x77 - 0x69 0x74 0x68 0x20 0x6C 0x6F 0x6E 0x67 - 0x20 0x68 0x6F 0x72 0x6E 0x73 0x20 0x61 - 0x73 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x6F 0x64 0x20 0x6F 0x72 0x6E 0x61 0x6D - 0x65 0x6E 0x74 0x2E 0x20 0x20 0x41 0x74 - 0x20 0x43 0x68 0x72 0x69 0x73 0x74 0x6D - 0x61 0x73 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x68 0x61 0x6E 0x67 0x73 0x20 0x61 0x20 - 0x67 0x72 0x65 0x65 0x6E 0x20 0x77 0x72 - 0x65 0x61 0x74 0x68 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x72 0x6E 0x73 0x2E 0x20 0x0D 0x0A 0x4F - 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 0x61 - 0x20 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x54 - 0x56 0x20 0x73 0x74 0x61 0x74 0x69 0x6F - 0x6E 0x20 0x73 0x70 0x6F 0x74 0x74 0x65 - 0x64 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x75 0x74 - 0x20 0x68 0x65 0x72 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6E 0x65 0x77 0x73 - 0x21 0x0D 0x0A 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x63 0x61 0x6D 0x65 - 0x20 0x61 0x20 0x62 0x69 0x67 0x20 0x73 - 0x75 0x72 0x70 0x72 0x69 0x73 0x65 0x97 - 0x62 0x69 0x67 0x2D 0x6E 0x61 0x6D 0x65 - 0x20 0x64 0x69 0x72 0x65 0x63 0x74 0x6F - 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x63 0x61 0x6C 0x6C 0x65 0x64 0x20 0x61 - 0x6E 0x64 0x20 0x61 0x73 0x6B 0x65 0x64 - 0x20 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 - 0x6A 0x75 0x6D 0x70 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x65 0x77 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x22 0x4A - 0x75 0x6D 0x70 0x69 0x6E 0x27 0x20 0x66 - 0x6F 0x72 0x20 0x4A 0x6F 0x79 0x2E 0x22 - 0x20 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x20 0x77 0x61 0x73 0x20 0x6F 0x66 0x66 - 0x20 0x6F 0x6E 0x20 0x68 0x65 0x72 0x20 - 0x77 0x69 0x6C 0x64 0x65 0x73 0x74 0x20 - 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 - 0x65 0x20 0x79 0x65 0x74 0x2E -ENDCHUNK - - -ENDCHUNK -#line 19395 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_87= 0x0001535f - - -CHUNK('HTOP', _help_48544F50_87, "") -SUBFILE -#line 19403 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_87, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_87=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_87=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x91 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x41 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_87=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_87, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x65 0x65 0x70 0x79 - 0x2C 0x20 0x53 0x63 0x61 0x72 0x79 0x20 - 0x41 0x75 0x6E 0x74 0x0D 0x0A 0x4F 0x6E - 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 0x72 - 0x65 0x61 0x6C 0x6C 0x79 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x63 0x6F - 0x6F 0x6C 0x97 0x65 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x6C 0x79 0x20 0x61 0x74 - 0x20 0x68 0x65 0x72 0x20 0x61 0x67 0x65 - 0x97 0x69 0x73 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x63 0x61 0x72 0x79 0x20 - 0x61 0x75 0x6E 0x74 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 - 0x64 0x20 0x68 0x6F 0x75 0x73 0x65 0x2E - 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x62 0x69 0x67 0x20 0x6B 0x69 - 0x64 0x73 0x20 0x74 0x72 0x69 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x61 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6C 0x69 - 0x74 0x74 0x6C 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x2C 0x20 0x73 0x68 0x65 0x27 0x64 - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x6F 0x75 - 0x74 0x20 0x6F 0x66 0x20 0x64 0x61 0x72 - 0x6B 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 - 0x73 0x2C 0x20 0x73 0x74 0x72 0x65 0x74 - 0x63 0x68 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x64 0x20 0x67 0x72 0x6F 0x77 0x69 0x6E - 0x67 0x20 0x77 0x69 0x6C 0x64 0x6C 0x79 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x74 0x65 0x61 - 0x63 0x68 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x68 0x6F - 0x77 0x20 0x74 0x6F 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x73 0x6F 0x20 0x68 0x69 0x67 - 0x68 0x20 0x74 0x68 0x65 0x79 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x66 0x6C 0x79 - 0x2E 0x0D 0x0A 0x42 0x75 0x74 0x20 0x68 - 0x6F 0x77 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x73 0x68 0x65 0x20 0x73 0x63 0x61 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x62 - 0x75 0x6C 0x6C 0x69 0x65 0x73 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x77 0x69 0x74 0x68 - 0x6F 0x75 0x74 0x20 0x73 0x63 0x61 0x72 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x74 0x68 0x65 0x72 0x20 0x6B 0x69 - 0x64 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 19515 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_88= 0x00015360 - - -CHUNK('HTOP', _help_48544F50_88, "") -SUBFILE -#line 19523 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_88, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_88=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_88=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x44 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_88=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_88, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6E 0x6E 0x65 0x71 - 0x75 0x69 0x6E 0x0D 0x0A 0x42 0x65 0x73 - 0x69 0x64 0x65 0x73 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x20 0x6E 0x65 0x61 0x72 0x6C - 0x79 0x20 0x74 0x68 0x65 0x20 0x62 0x65 - 0x73 0x74 0x20 0x6A 0x75 0x6D 0x70 0x65 - 0x72 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x27 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 - 0x74 0x20 0x73 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x71 0x75 0x69 0x74 0x65 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x73 0x68 - 0x69 0x6F 0x6E 0x20 0x70 0x6C 0x61 0x74 - 0x65 0x2E 0x20 0x20 0x48 0x65 0x72 0x20 - 0x73 0x65 0x63 0x72 0x65 0x74 0x20 0x64 - 0x65 0x73 0x69 0x72 0x65 0x20 0x69 0x73 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x66 0x61 0x73 0x68 0x69 - 0x6F 0x6E 0x20 0x6D 0x61 0x6E 0x6E 0x65 - 0x71 0x75 0x69 0x6E 0x2E 0x20 0x20 0x4E - 0x6F 0x74 0x20 0x61 0x6E 0x20 0x6F 0x72 - 0x64 0x69 0x6E 0x61 0x72 0x79 0x2C 0x20 - 0x64 0x6F 0x2D 0x6E 0x6F 0x74 0x68 0x69 - 0x6E 0x67 0x2C 0x20 0x64 0x65 0x70 0x61 - 0x72 0x74 0x6D 0x65 0x6E 0x74 0x20 0x73 - 0x74 0x6F 0x72 0x65 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x20 0x6D 0x61 - 0x6E 0x6E 0x65 0x71 0x75 0x69 0x6E 0x20 - 0x77 0x68 0x6F 0x20 0x73 0x65 0x65 0x73 - 0x20 0x65 0x76 0x65 0x72 0x79 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x74 0x6F 0x70 0x20 0x73 - 0x68 0x6F 0x70 0x6C 0x69 0x66 0x74 0x65 - 0x72 0x73 0x20 0x77 0x69 0x74 0x68 0x20 - 0x61 0x20 0x73 0x69 0x6E 0x67 0x6C 0x65 - 0x20 0x73 0x77 0x69 0x66 0x74 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x20 0x6B 0x69 - 0x63 0x6B 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x73 0x68 0x65 0x20 - 0x6D 0x61 0x69 0x6E 0x74 0x61 0x69 0x6E - 0x20 0x68 0x65 0x72 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x20 0x64 - 0x69 0x73 0x67 0x75 0x69 0x73 0x65 0x20 - 0x65 0x76 0x65 0x72 0x79 0x20 0x64 0x61 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x6D 0x61 0x6E 0x6E 0x65 - 0x71 0x75 0x69 0x6E 0x2D 0x64 0x65 0x74 - 0x65 0x63 0x74 0x69 0x76 0x65 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x73 0x61 - 0x6D 0x65 0x20 0x74 0x69 0x6D 0x65 0x3F - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 19639 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_89= 0x00015361 - - -CHUNK('HTOP', _help_48544F50_89, "") -SUBFILE -#line 19647 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_89, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_89=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_89=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x65 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x66 0x01 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF6 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x68 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_89=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_89, 0x0) - BYTE - 0x03 0x03 0x48 0x69 0x67 0x68 0x2D 0x46 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x4D 0x61 - 0x72 0x6B 0x65 0x74 0x69 0x6E 0x67 0x20 - 0x4D 0x61 0x6E 0x61 0x67 0x65 0x72 0x0D - 0x0A 0x4D 0x61 0x72 0x74 0x68 0x61 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x72 0x65 - 0x61 0x6C 0x6C 0x79 0x20 0x6A 0x75 0x6D - 0x70 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x63 0x68 0x61 0x6E 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x20 0x6D 0x61 0x72 0x6B 0x65 0x74 - 0x69 0x6E 0x67 0x20 0x6D 0x61 0x6E 0x61 - 0x67 0x65 0x72 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x6E 0x20 0x61 0x64 0x76 0x65 0x6E - 0x74 0x75 0x72 0x65 0x20 0x74 0x72 0x61 - 0x76 0x65 0x6C 0x20 0x63 0x6F 0x6D 0x70 - 0x61 0x6E 0x79 0x2E 0x20 0x20 0x53 0x68 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6C 0x61 0x6E 0x20 0x65 0x78 0x63 - 0x69 0x74 0x69 0x6E 0x67 0x20 0x65 0x73 - 0x63 0x61 0x70 0x61 0x64 0x65 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x62 - 0x65 0x73 0x74 0x2C 0x20 0x66 0x61 0x72 - 0x2D 0x61 0x77 0x61 0x79 0x20 0x70 0x6C - 0x61 0x63 0x65 0x73 0x97 0x6C 0x69 0x6B - 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x73 0x20 0x77 0x69 0x74 0x68 0x20 0x72 - 0x69 0x63 0x6B 0x65 0x74 0x79 0x20 0x62 - 0x72 0x69 0x64 0x67 0x65 0x73 0x20 0x73 - 0x74 0x72 0x65 0x74 0x63 0x68 0x65 0x64 - 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 0x20 - 0x64 0x65 0x65 0x70 0x20 0x63 0x61 0x6E - 0x79 0x6F 0x6E 0x73 0x2C 0x20 0x6D 0x79 - 0x73 0x74 0x65 0x72 0x69 0x6F 0x75 0x73 - 0x20 0x63 0x61 0x76 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x64 0x64 - 0x65 0x6E 0x20 0x74 0x72 0x65 0x61 0x73 - 0x75 0x72 0x65 0x73 0x20 0x77 0x72 0x69 - 0x74 0x74 0x65 0x6E 0x20 0x61 0x62 0x6F - 0x75 0x74 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x73 0x20 0x6F 0x66 - 0x20 0x61 0x6E 0x63 0x69 0x65 0x6E 0x74 - 0x20 0x63 0x69 0x76 0x69 0x6C 0x69 0x7A - 0x61 0x74 0x69 0x6F 0x6E 0x73 0x2E 0x20 - 0x0D 0x0A 0x4D 0x61 0x72 0x74 0x68 0x61 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x73 0x61 0x66 0x65 0x6C 0x79 0x20 - 0x67 0x65 0x74 0x20 0x68 0x65 0x72 0x20 - 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 - 0x65 0x72 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E - 0x64 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 - 0x6F 0x77 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x74 0x68 0x65 0x79 0x20 0x62 0x72 - 0x69 0x6E 0x67 0x20 0x62 0x61 0x63 0x6B - 0x20 0x74 0x68 0x65 0x20 0x74 0x72 0x65 - 0x61 0x73 0x75 0x72 0x65 0x20 0x74 0x68 - 0x61 0x74 0x20 0x69 0x73 0x20 0x66 0x69 - 0x65 0x72 0x63 0x65 0x6C 0x79 0x20 0x67 - 0x75 0x61 0x72 0x64 0x65 0x64 0x20 0x62 - 0x79 0x20 0x72 0x61 0x74 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 19773 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8A= 0x00015362 - - -CHUNK('HTOP', _help_48544F50_8A, "") -SUBFILE -#line 19781 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x28 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8A, 0x0) - BYTE - 0x03 0x03 0x62 0x6C 0x75 0x65 0x73 0x0D - 0x0A 0x54 0x6F 0x20 0x65 0x61 0x72 0x6E - 0x20 0x6D 0x6F 0x6E 0x65 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x63 0x6F 0x6C 0x6C 0x65 - 0x67 0x65 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x61 0x62 0x6C - 0x65 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 - 0x77 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x6C 0x6F 0x76 0x65 0x73 0x2C 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x73 - 0x69 0x6E 0x67 0x73 0x20 0x74 0x68 0x65 - 0x20 0x62 0x6C 0x75 0x65 0x73 0x20 0x69 - 0x6E 0x20 0x43 0x68 0x69 0x63 0x61 0x67 - 0x6F 0x27 0x73 0x20 0x77 0x61 0x74 0x65 - 0x72 0x66 0x72 0x6F 0x6E 0x74 0x20 0x70 - 0x61 0x72 0x6B 0x73 0x2E 0x20 0x20 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x61 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x63 0x69 0x74 0x79 0x20 0x67 - 0x61 0x74 0x68 0x65 0x72 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x73 0x69 - 0x6E 0x67 0x73 0x2E 0x20 0x20 0x45 0x76 - 0x65 0x6E 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x2C 0x20 0x68 0x65 - 0x61 0x72 0x64 0x20 0x4D 0x69 0x63 0x68 - 0x61 0x65 0x6C 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x6E 0x20 0x61 0x70 0x70 0x65 0x61 0x72 - 0x61 0x6E 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x72 0x20 0x74 - 0x77 0x6F 0x20 0x75 0x70 0x63 0x6F 0x6D - 0x69 0x6E 0x67 0x20 0x66 0x69 0x6C 0x6D - 0x73 0x2E -ENDCHUNK - - -ENDCHUNK -#line 19880 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8B= 0x00015363 - - -CHUNK('HTOP', _help_48544F50_8B, "") -SUBFILE -#line 19888 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_14=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_14=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x9B 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_14=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_14, 0x0) - BYTE - 0x03 0x03 0x53 0x6F 0x75 0x73 0x2D 0x43 - 0x68 0x65 0x66 0x0D 0x0A 0x57 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x64 0x72 0x65 - 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x61 0x20 0x73 - 0x74 0x61 0x72 0x2C 0x20 0x4D 0x69 0x63 - 0x68 0x61 0x65 0x6C 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x73 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x68 0x6F 0x77 0x20 0x67 0x6F - 0x6F 0x64 0x20 0x68 0x65 0x92 0x64 0x20 - 0x62 0x65 0x20 0x61 0x74 0x20 0x70 0x6C - 0x61 0x79 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x73 0x6F 0x75 0x73 0x2D 0x63 0x68 0x65 - 0x66 0x2E 0x20 0x20 0x41 0x73 0x20 0x61 - 0x20 0x73 0x74 0x75 0x64 0x65 0x6E 0x74 - 0x20 0x63 0x68 0x65 0x66 0x2C 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x72 0x69 0x67 0x68 0x74 0x20 0x74 0x68 - 0x65 0x72 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x63 0x68 - 0x65 0x6E 0x20 0x74 0x6F 0x20 0x66 0x69 - 0x67 0x75 0x72 0x65 0x20 0x6F 0x75 0x74 - 0x20 0x77 0x68 0x79 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x77 0x68 - 0x6F 0x20 0x63 0x6F 0x6D 0x65 0x20 0x74 - 0x72 0x69 0x63 0x6B 0x2D 0x6F 0x72 0x2D - 0x74 0x72 0x65 0x61 0x74 0x69 0x6E 0x67 - 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 - 0x6C 0x69 0x65 0x20 0x64 0x6F 0x77 0x6E - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6C 0x6F 0x6F 0x72 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6C 0x65 0x65 0x70 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x6F 0x75 0x72 - 0x73 0x20 0x61 0x66 0x74 0x65 0x72 0x20 - 0x64 0x72 0x69 0x6E 0x6B 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x68 0x6F 0x74 - 0x20 0x6C 0x65 0x6D 0x6F 0x6E 0x61 0x64 - 0x65 0x20 0x63 0x6F 0x6F 0x6B 0x65 0x64 - 0x20 0x62 0x79 0x20 0x4D 0x61 0x64 0x61 - 0x6D 0x65 0x20 0x53 0x70 0x6F 0x6F 0x6B - 0x79 0x2E 0x20 0x0D 0x0A 0x57 0x68 0x61 - 0x74 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x73 0x68 0x65 0x20 0x62 0x65 0x20 0x70 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x64 0x72 - 0x69 0x6E 0x6B 0x73 0x3F 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x4D 0x69 0x63 0x68 - 0x61 0x65 0x6C 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x65 0x20 0x61 0x20 0x73 0x6C 0x65 - 0x65 0x70 0x69 0x6E 0x67 0x20 0x76 0x69 - 0x63 0x74 0x69 0x6D 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20001 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8C= 0x00015364 - - -CHUNK('HTOP', _help_48544F50_8C, "") -SUBFILE -#line 20009 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x12 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x11 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x53 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8C, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x73 0x73 0x65 0x6E - 0x67 0x65 0x72 0x0D 0x0A 0x4D 0x69 0x63 - 0x68 0x61 0x65 0x6C 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x73 0x74 - 0x61 0x72 0x20 0x61 0x73 0x20 0x61 0x20 - 0x64 0x65 0x6C 0x69 0x76 0x65 0x72 0x79 - 0x20 0x62 0x6F 0x79 0x2E 0x20 0x48 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x74 0x61 0x72 0x74 0x20 0x6F 0x75 0x74 - 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 0x72 - 0x69 0x6E 0x67 0x20 0x62 0x6F 0x72 0x69 - 0x6E 0x67 0x20 0x6D 0x65 0x73 0x73 0x61 - 0x67 0x65 0x73 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 - 0x20 0x62 0x65 0x20 0x70 0x72 0x6F 0x6D - 0x6F 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x43 0x68 0x69 0x63 0x61 0x67 0x6F 0x20 - 0x50 0x69 0x7A 0x7A 0x61 0x20 0x44 0x65 - 0x6C 0x69 0x76 0x65 0x72 0x79 0x20 0x4D - 0x61 0x6E 0x2E 0x20 0x20 0x4D 0x69 0x63 - 0x68 0x61 0x65 0x6C 0x20 0x68 0x61 0x73 - 0x20 0x68 0x69 0x73 0x20 0x6F 0x77 0x6E - 0x20 0x74 0x61 0x78 0x69 0x20 0x63 0x61 - 0x62 0x20 0x66 0x6F 0x72 0x20 0x64 0x65 - 0x6C 0x69 0x76 0x65 0x72 0x69 0x65 0x73 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x68 0x69 0x6D 0x20 0x6D 0x6F - 0x72 0x65 0x20 0x74 0x68 0x61 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x70 0x69 0x7A 0x7A - 0x61 0x2C 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x20 0x75 0x73 - 0x75 0x61 0x6C 0x6C 0x79 0x20 0x66 0x6F - 0x72 0x67 0x65 0x74 0x73 0x20 0x74 0x6F - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x70 0x69 0x7A 0x7A 0x61 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x69 - 0x6D 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x20 0x6D 0x61 0x6B 0x65 0x73 0x20 - 0x61 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 - 0x72 0x79 0x21 0x20 0x0D 0x0A 0x45 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x67 0x61 0x6E 0x67 0x73 0x74 - 0x65 0x72 0x73 0x20 0x6C 0x6F 0x76 0x65 - 0x20 0x70 0x69 0x7A 0x7A 0x61 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x77 0x68 0x65 0x6E - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x20 0x72 0x65 0x63 0x65 0x69 0x76 0x65 - 0x73 0x20 0x61 0x20 0x70 0x69 0x7A 0x7A - 0x61 0x20 0x6F 0x72 0x64 0x65 0x72 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x6F 0x6E 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x65 0x61 0x6E 0x65 0x73 0x74 0x20 - 0x67 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 - 0x73 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x2C 0x20 0x69 0x74 0x27 0x73 0x20 0x68 - 0x69 0x73 0x20 0x63 0x68 0x61 0x6E 0x63 - 0x65 0x20 0x74 0x6F 0x20 0x63 0x61 0x74 - 0x63 0x68 0x20 0x74 0x68 0x65 0x20 0x67 - 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 0x20 - 0x74 0x68 0x65 0x20 0x77 0x68 0x6F 0x6C - 0x65 0x20 0x63 0x69 0x74 0x79 0x20 0x69 - 0x73 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x62 0x6F 0x75 0x74 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x69 0x66 - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x27 0x73 0x20 0x74 0x61 0x78 0x69 0x20 - 0x77 0x6F 0x6E 0x27 0x74 0x20 0x73 0x74 - 0x61 0x72 0x74 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x6E 0x27 0x74 0x20 0x62 0x65 - 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x62 0x75 0x73 0x74 0x20 0x74 0x68 - 0x65 0x20 0x67 0x61 0x6E 0x67 0x73 0x74 - 0x65 0x72 0x2E 0x0D 0x0A 0x43 0x61 0x6E - 0x20 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x6E 0x79 0x6F 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x69 0x78 0x20 - 0x68 0x69 0x73 0x20 0x63 0x61 0x72 0x3F - 0x20 0x20 0x4F 0x72 0x20 0x63 0x61 0x6E - 0x20 0x68 0x65 0x20 0x62 0x6F 0x72 0x72 - 0x6F 0x77 0x20 0x74 0x68 0x65 0x20 0x43 - 0x61 0x64 0x69 0x6C 0x6C 0x61 0x63 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x68 0x69 0x73 - 0x20 0x41 0x75 0x6E 0x74 0x20 0x4D 0x61 - 0x72 0x74 0x68 0x61 0x20 0x77 0x68 0x6F - 0x27 0x73 0x20 0x69 0x6E 0x20 0x74 0x6F - 0x77 0x6E 0x20 0x66 0x6F 0x72 0x20 0x61 - 0x20 0x76 0x69 0x73 0x69 0x74 0x3F 0x20 - 0x20 0x57 0x68 0x61 0x74 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x67 - 0x61 0x6E 0x67 0x73 0x74 0x65 0x72 0x20 - 0x64 0x6F 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 - 0x73 0x68 0x6F 0x77 0x73 0x20 0x75 0x70 - 0x20 0x77 0x69 0x74 0x68 0x6F 0x75 0x74 - 0x20 0x74 0x68 0x65 0x20 0x70 0x69 0x7A - 0x7A 0x61 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20169 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8D= 0x00015365 - - -CHUNK('HTOP', _help_48544F50_8D, "") -SUBFILE -#line 20177 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_92=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xCD 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_92=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x70 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFC 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_92=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_92, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x49 0x66 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x6E 0x20 0x65 0x78 0x70 - 0x6C 0x6F 0x72 0x65 0x72 0x2C 0x20 0x68 - 0x69 0x73 0x20 0x64 0x72 0x65 0x61 0x6D - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x63 - 0x6F 0x6D 0x65 0x20 0x74 0x72 0x75 0x65 - 0x2E 0x20 0x20 0x48 0x69 0x73 0x20 0x64 - 0x72 0x65 0x61 0x6D 0x20 0x69 0x73 0x20 - 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x74 0x61 0x6C 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x74 0x65 - 0x6D 0x20 0x70 0x6F 0x6C 0x65 0x20 0x72 - 0x75 0x6D 0x6F 0x72 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x66 0x6F 0x75 - 0x6E 0x64 0x20 0x6F 0x6E 0x20 0x61 0x20 - 0x6C 0x6F 0x73 0x74 0x20 0x69 0x73 0x6C - 0x61 0x6E 0x64 0x20 0x72 0x65 0x73 0x6F - 0x72 0x74 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 0x70 - 0x6F 0x6C 0x65 0x20 0x6B 0x6E 0x6F 0x77 - 0x73 0x20 0x74 0x68 0x65 0x20 0x73 0x65 - 0x63 0x72 0x65 0x74 0x20 0x6F 0x66 0x20 - 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x6C 0x64 - 0x92 0x73 0x20 0x62 0x65 0x73 0x74 0x20 - 0x54 0x65 0x78 0x61 0x73 0x20 0x73 0x61 - 0x6C 0x73 0x61 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x68 0x65 0x20 0x73 0x65 0x63 0x72 0x65 - 0x74 0x2E 0x20 0x20 0x48 0x65 0x92 0x73 - 0x20 0x61 0x20 0x70 0x6F 0x6F 0x72 0x20 - 0x73 0x74 0x75 0x64 0x65 0x6E 0x74 0x2C - 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 0x70 - 0x65 0x72 0x73 0x75 0x61 0x64 0x65 0x73 - 0x20 0x74 0x68 0x65 0x20 0x6C 0x6F 0x63 - 0x61 0x6C 0x20 0x62 0x61 0x6C 0x6C 0x6F - 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x63 0x6C - 0x75 0x62 0x20 0x74 0x6F 0x20 0x6C 0x65 - 0x74 0x20 0x68 0x69 0x6D 0x20 0x74 0x61 - 0x6B 0x65 0x20 0x61 0x20 0x68 0x6F 0x74 - 0x2D 0x61 0x69 0x72 0x20 0x62 0x61 0x6C - 0x6C 0x6F 0x6F 0x6E 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x72 0x65 0x73 0x6F - 0x72 0x74 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 - 0x20 0x6C 0x61 0x6E 0x64 0x73 0x2C 0x20 - 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 0x73 - 0x20 0x61 0x20 0x67 0x72 0x69 0x6D 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x20 0x67 0x75 - 0x61 0x72 0x64 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D - 0x20 0x70 0x6F 0x6C 0x65 0x2E 0x20 0x20 - 0x41 0x73 0x20 0x6C 0x6F 0x6E 0x67 0x20 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x20 0x69 0x73 0x20 - 0x74 0x68 0x65 0x72 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D - 0x20 0x70 0x6F 0x6C 0x65 0x20 0x63 0x61 - 0x6E 0x6E 0x6F 0x74 0x20 0x73 0x70 0x65 - 0x61 0x6B 0x2E 0x20 0x0D 0x0A 0x48 0x6F - 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4D - 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 0x67 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x62 0x6F 0x74 0x20 0x74 0x6F 0x20 - 0x6C 0x65 0x61 0x76 0x65 0x3F 0x20 0x20 - 0x43 0x61 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x69 0x6C 0x69 0x74 0x79 0x20 - 0x68 0x65 0x6C 0x70 0x20 0x68 0x69 0x6D - 0x3F 0x20 0x20 0x43 0x61 0x6E 0x20 0x68 - 0x65 0x20 0x73 0x68 0x72 0x69 0x6E 0x6B - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x72 0x6F 0x62 0x6F - 0x74 0x92 0x73 0x20 0x73 0x69 0x67 0x68 - 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20317 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8E= 0x00015366 - - -CHUNK('HTOP', _help_48544F50_8E, "") -SUBFILE -#line 20325 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE3 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x5B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8D, 0x0) - BYTE - 0x03 0x03 0x74 0x72 0x61 0x63 0x6B 0x20 - 0x73 0x74 0x61 0x72 0x0D 0x0A 0x4F 0x6E - 0x65 0x20 0x64 0x61 0x79 0x20 0x61 0x74 - 0x20 0x61 0x20 0x74 0x72 0x61 0x63 0x6B - 0x20 0x6D 0x65 0x65 0x74 0x2C 0x20 0x4D - 0x69 0x6D 0x69 0x20 0x77 0x61 0x73 0x20 - 0x72 0x75 0x6E 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x6E 0x20 0x38 0x38 0x30 0x2D 0x6D - 0x65 0x74 0x65 0x72 0x20 0x73 0x70 0x72 - 0x69 0x6E 0x74 0x20 0x61 0x6E 0x64 0x2C - 0x20 0x61 0x73 0x20 0x75 0x73 0x75 0x61 - 0x6C 0x2C 0x20 0x73 0x68 0x65 0x20 0x62 - 0x6C 0x65 0x77 0x20 0x70 0x61 0x73 0x74 - 0x20 0x68 0x65 0x72 0x20 0x63 0x6F 0x6D - 0x70 0x65 0x74 0x69 0x74 0x69 0x6F 0x6E - 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x63 0x72 0x6F 0x73 - 0x73 0x65 0x64 0x20 0x74 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x69 0x73 0x68 0x20 0x6C - 0x69 0x6E 0x65 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x92 - 0x74 0x20 0x73 0x74 0x6F 0x70 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x72 0x61 0x6E - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x64 - 0x69 0x75 0x6D 0x20 0x61 0x6E 0x64 0x20 - 0x6F 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x20 0x73 - 0x65 0x74 0x20 0x6F 0x66 0x20 0x66 0x69 - 0x6C 0x6D 0x20 0x64 0x69 0x72 0x65 0x63 - 0x74 0x6F 0x72 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x92 0x73 0x20 0x6C 0x61 0x74 0x65 - 0x73 0x74 0x20 0x70 0x72 0x6F 0x64 0x75 - 0x63 0x74 0x69 0x6F 0x6E 0x2E 0x20 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x68 0x61 - 0x64 0x20 0x6E 0x65 0x76 0x65 0x72 0x20 - 0x73 0x65 0x65 0x6E 0x20 0x73 0x75 0x63 - 0x68 0x20 0x73 0x70 0x65 0x65 0x64 0x20 - 0x61 0x6E 0x64 0x20 0x6B 0x6E 0x65 0x77 - 0x20 0x74 0x68 0x61 0x74 0x20 0x4D 0x69 - 0x6D 0x69 0x20 0x68 0x61 0x64 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x66 0x69 0x6C 0x6D - 0x73 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x61 0x73 0x6B 0x20 0x68 0x65 0x72 - 0x2C 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x68 0x61 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x69 0x6C 0x20 0x61 0x20 0x74 0x61 - 0x78 0x69 0x20 0x74 0x6F 0x20 0x63 0x61 - 0x74 0x63 0x68 0x20 0x75 0x70 0x20 0x77 - 0x69 0x74 0x68 0x20 0x4D 0x69 0x6D 0x69 - 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 0x77 - 0x61 0x73 0x6E 0x27 0x74 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x62 0x72 0x65 0x61 0x74 0x68 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x73 0x68 - 0x65 0x20 0x61 0x63 0x63 0x65 0x70 0x74 - 0x65 0x64 0x20 0x68 0x69 0x73 0x20 0x6F - 0x66 0x66 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 20447 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_8F= 0x00015367 - - -CHUNK('HTOP', _help_48544F50_8F, "") -SUBFILE -#line 20455 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_8F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5E 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x2A 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x50 0x69 - 0x72 0x61 0x74 0x65 0x0D 0x0A 0x57 0x68 - 0x61 0x74 0x20 0x61 0x20 0x72 0x6F 0x6C - 0x65 0x21 0x20 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x70 0x69 0x72 0x61 0x74 0x65 0x20 - 0x74 0x72 0x69 0x63 0x6B 0x2D 0x6F 0x72 - 0x2D 0x74 0x72 0x65 0x61 0x74 0x65 0x72 - 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 0x74 - 0x68 0x65 0x72 0x65 0x92 0x73 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x6F 0x6E 0x65 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6E 0x65 0x69 - 0x67 0x68 0x62 0x6F 0x72 0x68 0x6F 0x6F - 0x64 0x2C 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x73 0x61 - 0x79 0x20 0x69 0x74 0x92 0x73 0x20 0x68 - 0x61 0x75 0x6E 0x74 0x65 0x64 0x2E 0x20 - 0x20 0x44 0x65 0x74 0x65 0x72 0x6D 0x69 - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x67 - 0x65 0x74 0x20 0x68 0x65 0x72 0x20 0x73 - 0x68 0x61 0x72 0x65 0x20 0x6F 0x66 0x20 - 0x63 0x61 0x6E 0x64 0x79 0x2C 0x20 0x4D - 0x69 0x6D 0x69 0x20 0x6B 0x6E 0x6F 0x63 - 0x6B 0x73 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x6F 0x72 0x2E 0x20 - 0x20 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x61 0x6E 0x73 0x77 0x65 0x72 0x73 0x2C - 0x20 0x62 0x75 0x74 0x20 0x74 0x68 0x65 - 0x20 0x64 0x6F 0x6F 0x72 0x20 0x73 0x6C - 0x6F 0x77 0x6C 0x79 0x20 0x63 0x72 0x65 - 0x61 0x6B 0x73 0x20 0x6F 0x70 0x65 0x6E - 0x2E 0x20 0x20 0x4D 0x69 0x6D 0x69 0x20 - 0x73 0x6C 0x6F 0x77 0x6C 0x79 0x20 0x77 - 0x61 0x6C 0x6B 0x73 0x20 0x69 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x79 0x65 0x6C 0x6C - 0x73 0x2C 0x20 0x93 0x74 0x72 0x69 0x63 - 0x6B 0x20 0x6F 0x72 0x20 0x74 0x72 0x65 - 0x61 0x74 0x3F 0x94 0x20 0x20 0x53 0x68 - 0x65 0x20 0x77 0x61 0x6E 0x64 0x65 0x72 - 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x6B 0x69 0x74 0x63 0x68 - 0x65 0x6E 0x20 0x61 0x6E 0x64 0x20 0x73 - 0x65 0x65 0x73 0x20 0x61 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x74 0x6F 0x20 0x61 0x20 0x6C 0x61 - 0x72 0x67 0x65 0x20 0x62 0x75 0x74 0x63 - 0x68 0x65 0x72 0x20 0x6B 0x6E 0x69 0x66 - 0x65 0x20 0x6F 0x6E 0x20 0x61 0x20 0x63 - 0x75 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 - 0x61 0x62 0x6C 0x65 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x73 0x6B 0x75 0x6C 0x6C - 0x20 0x61 0x73 0x6B 0x73 0x2C 0x20 0x93 - 0x57 0x69 0x6C 0x6C 0x20 0x79 0x6F 0x75 - 0x20 0x68 0x65 0x6C 0x70 0x20 0x6D 0x65 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6D 0x79 - 0x20 0x62 0x6F 0x64 0x79 0x3F 0x94 0x20 - 0x20 0x4D 0x69 0x6D 0x69 0x20 0x74 0x75 - 0x72 0x6E 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x72 0x75 0x6E 0x73 0x20 0x66 0x61 0x73 - 0x74 0x65 0x72 0x20 0x74 0x68 0x61 0x6E - 0x20 0x61 0x20 0x62 0x75 0x6C 0x6C 0x65 - 0x74 0x20 0x74 0x72 0x61 0x69 0x6E 0x20 - 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x2E 0x20 0x0D 0x0A 0x54 0x68 0x65 0x20 - 0x73 0x6B 0x75 0x6C 0x6C 0x20 0x75 0x73 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x72 0x69 - 0x67 0x69 0x6E 0x61 0x6C 0x20 0x6F 0x77 - 0x6E 0x65 0x72 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x63 0x6C - 0x75 0x65 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6B 0x75 0x6C 0x6C 0x20 - 0x68 0x75 0x6D 0x61 0x6E 0x20 0x61 0x67 - 0x61 0x69 0x6E 0x20 0x61 0x72 0x65 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C - 0x69 0x62 0x72 0x61 0x72 0x79 0x2E 0x20 - 0x49 0x66 0x20 0x74 0x68 0x69 0x73 0x20 - 0x70 0x75 0x7A 0x7A 0x6C 0x65 0x20 0x69 - 0x73 0x20 0x73 0x6F 0x6C 0x76 0x65 0x64 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x75 0x72 0x6E 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x70 0x65 0x72 0x73 - 0x6F 0x6E 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 - 0x20 0x68 0x65 0x20 0x77 0x61 0x73 0x20 - 0x74 0x75 0x72 0x6E 0x65 0x64 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x20 0x73 0x6B - 0x75 0x6C 0x6C 0x2E 0x20 0x20 0x48 0x6F - 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4D - 0x69 0x6D 0x69 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x6F 0x75 0x74 0x20 0x77 0x68 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E - 0x20 0x75 0x73 0x65 0x64 0x20 0x74 0x6F - 0x20 0x62 0x65 0x3F 0x20 0x20 0x41 0x6E - 0x64 0x20 0x77 0x68 0x65 0x72 0x65 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x20 0x66 0x6F - 0x72 0x20 0x63 0x6C 0x75 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20624 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_90= 0x00015368 - - -CHUNK('HTOP', _help_48544F50_90, "") -SUBFILE -#line 20632 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_90, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_90=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_90, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xDE 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_90=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_90, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x8D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_90=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_90, 0x0) - BYTE - 0x03 0x03 0x54 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x0D 0x0A 0x41 0x66 0x74 0x65 0x72 - 0x20 0x61 0x20 0x6C 0x6F 0x6E 0x67 0x20 - 0x74 0x72 0x61 0x63 0x6B 0x20 0x73 0x65 - 0x61 0x73 0x6F 0x6E 0x2C 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x4D 0x69 0x6D - 0x69 0x27 0x73 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x69 0x73 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 - 0x65 0x20 0x72 0x65 0x6C 0x61 0x78 0x69 - 0x6E 0x67 0x20 0x72 0x6F 0x6C 0x65 0x20 - 0x6F 0x66 0x20 0x61 0x20 0x74 0x6F 0x75 - 0x72 0x69 0x73 0x74 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x64 0x65 0x63 0x69 0x64 - 0x65 0x73 0x20 0x74 0x6F 0x20 0x67 0x6F - 0x20 0x74 0x6F 0x20 0x42 0x65 0x72 0x6D - 0x75 0x64 0x61 0x2C 0x20 0x66 0x6C 0x79 - 0x69 0x6E 0x67 0x20 0x61 0x63 0x72 0x6F - 0x73 0x73 0x20 0x74 0x68 0x65 0x20 0x6D - 0x79 0x73 0x74 0x65 0x72 0x69 0x6F 0x75 - 0x73 0x20 0x42 0x65 0x72 0x6D 0x75 0x64 - 0x61 0x20 0x54 0x72 0x69 0x61 0x6E 0x67 - 0x6C 0x65 0x2E 0x20 0x20 0x4F 0x6E 0x65 - 0x20 0x6D 0x6F 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x61 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x20 0x66 0x6C 0x69 0x65 0x73 0x20 0x6F - 0x76 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x72 0x74 0x79 0x61 0x72 - 0x64 0x20 0x6F 0x66 0x20 0x4D 0x69 0x6D - 0x69 0x92 0x73 0x20 0x6D 0x6F 0x74 0x65 - 0x6C 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x6E 0x20 0x64 0x69 0x73 0x61 0x70 - 0x70 0x65 0x61 0x72 0x73 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x69 0x6E 0x20 - 0x61 0x69 0x72 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x70 0x6C 0x61 0x6E 0x65 0x20 - 0x77 0x61 0x73 0x20 0x72 0x75 0x6D 0x6F - 0x72 0x65 0x64 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x61 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x73 0x74 0x61 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x65 0x72 0x20 - 0x70 0x68 0x6F 0x74 0x6F 0x67 0x72 0x61 - 0x70 0x68 0x65 0x72 0x20 0x68 0x75 0x73 - 0x62 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x20 - 0x62 0x6F 0x61 0x72 0x64 0x2E 0x20 0x20 - 0x53 0x6F 0x6D 0x65 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x20 0x74 0x68 0x65 0x20 0x70 - 0x6C 0x61 0x6E 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x68 0x61 0x76 0x65 0x20 0x63 0x72 - 0x61 0x73 0x68 0x65 0x64 0x20 0x6F 0x6E - 0x20 0x61 0x20 0x72 0x65 0x6D 0x6F 0x74 - 0x65 0x20 0x73 0x69 0x64 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x69 0x73 - 0x6C 0x61 0x6E 0x64 0x2E 0x20 0x20 0x4E - 0x6F 0x20 0x72 0x6F 0x61 0x64 0x73 0x20 - 0x6C 0x65 0x61 0x64 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x69 0x73 0x20 0x73 0x69 0x64 - 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 0x2C - 0x20 0x73 0x6F 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x69 0x73 0x20 0x74 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x6F 0x6E 0x65 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E - 0x20 0x67 0x65 0x74 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x61 0x73 - 0x68 0x20 0x73 0x69 0x74 0x65 0x20 0x71 - 0x75 0x69 0x63 0x6B 0x6C 0x79 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x64 0x69 0x64 - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x6E 0x65 0x20 0x63 0x72 0x61 0x73 0x68 - 0x3F 0x20 0x20 0x4F 0x72 0x20 0x64 0x69 - 0x64 0x20 0x69 0x74 0x20 0x73 0x69 0x6D - 0x70 0x6C 0x79 0x2E 0x2E 0x2E 0x64 0x69 - 0x73 0x61 0x70 0x70 0x65 0x61 0x72 0x3F - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x72 0x65 0x6D - 0x6F 0x74 0x65 0x20 0x73 0x69 0x64 0x65 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x69 0x73 0x6C 0x61 0x6E 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 20775 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_91= 0x00015369 - - -CHUNK('HTOP', _help_48544F50_91, "") -SUBFILE -#line 20783 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_91, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_91, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE1 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x73 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0D 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A2, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x61 0x63 0x6B 0x20 - 0x43 0x6F 0x61 0x63 0x68 0x0D 0x0A 0x4D - 0x69 0x6D 0x69 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x67 0x75 0x69 0x64 0x65 0x20 0x77 0x68 - 0x6F 0x20 0x69 0x73 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 0x65 - 0x65 0x20 0x61 0x20 0x72 0x65 0x2D 0x63 - 0x72 0x65 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6F - 0x72 0x69 0x67 0x69 0x6E 0x61 0x6C 0x20 - 0x4F 0x6C 0x79 0x6D 0x70 0x69 0x63 0x20 - 0x47 0x61 0x6D 0x65 0x73 0x20 0x69 0x6E - 0x20 0x41 0x74 0x68 0x65 0x6E 0x73 0x2C - 0x20 0x47 0x72 0x65 0x65 0x63 0x65 0x2E - 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 0x73 - 0x68 0x65 0x20 0x61 0x72 0x72 0x69 0x76 - 0x65 0x73 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x61 0x72 0x65 0x6E 0x61 0x2C - 0x20 0x73 0x68 0x65 0x92 0x73 0x20 0x74 - 0x6F 0x6C 0x64 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x73 0x74 0x61 0x72 - 0x20 0x6D 0x61 0x72 0x61 0x74 0x68 0x6F - 0x6E 0x20 0x72 0x75 0x6E 0x6E 0x65 0x72 - 0x73 0x20 0x69 0x73 0x20 0x74 0x6F 0x6F - 0x20 0x73 0x69 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x72 0x75 0x6E 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x20 0x4F 0x6C 0x79 0x6D 0x70 - 0x69 0x63 0x20 0x43 0x6F 0x6D 0x6D 0x69 - 0x74 0x74 0x65 0x65 0x20 0x69 0x73 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x70 0x61 0x6E - 0x69 0x63 0x2E 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x79 0x20 0x72 0x65 0x70 0x6C 0x61 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x73 - 0x74 0x61 0x72 0x20 0x61 0x74 0x74 0x72 - 0x61 0x63 0x74 0x69 0x6F 0x6E 0x3F 0x20 - 0x20 0x57 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x6D 0x6D 0x69 0x74 - 0x74 0x65 0x65 0x20 0x6C 0x65 0x61 0x72 - 0x6E 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x61 0x20 0x55 0x2E 0x53 0x2E 0x20 0x74 - 0x72 0x61 0x63 0x6B 0x20 0x73 0x74 0x61 - 0x72 0x20 0x69 0x73 0x20 0x69 0x6E 0x20 - 0x47 0x72 0x65 0x65 0x63 0x65 0x2C 0x20 - 0x74 0x68 0x65 0x79 0x20 0x61 0x73 0x6B - 0x20 0x4D 0x69 0x6D 0x69 0x20 0x69 0x66 - 0x20 0x73 0x68 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x72 0x75 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x72 0x61 0x74 0x68 - 0x6F 0x6E 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x74 0x68 0x65 0x72 0x65 0x92 0x73 - 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 - 0x20 0x77 0x68 0x6F 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x77 0x61 0x6E - 0x74 0x20 0x4D 0x69 0x6D 0x69 0x20 0x74 - 0x6F 0x20 0x72 0x75 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x72 0x61 0x74 0x68 - 0x6F 0x6E 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x69 0x73 0x20 0x73 0x6F 0x6D - 0x65 0x6F 0x6E 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x64 0x6F 0x20 0x61 0x6E 0x79 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x73 0x74 - 0x6F 0x70 0x20 0x68 0x65 0x72 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x72 0x75 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x63 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x6F 0x92 0x73 0x20 0x74 0x72 0x79 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x6F 0x70 0x20 0x4D 0x69 0x6D 0x69 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x68 0x79 - 0x3F 0x20 0x20 0x57 0x69 0x6C 0x6C 0x20 - 0x4D 0x69 0x6D 0x69 0x20 0x77 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x72 - 0x61 0x74 0x68 0x6F 0x6E 0x20 0x72 0x61 - 0x63 0x65 0x3F 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 20923 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_92= 0x0001536a - - -CHUNK('HTOP', _help_48544F50_92, "") -SUBFILE -#line 20931 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_92, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_96=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_92, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_96=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_96, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x17 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_96=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_96, 0x0) - BYTE - 0x03 0x03 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x0D 0x0A 0x4D 0x61 0x72 0x69 0x62 - 0x65 0x6C 0x6C 0x61 0x20 0x63 0x61 0x6E - 0x92 0x74 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x77 0x61 0x6E 0x74 0x69 0x6E 0x67 0x20 - 0x74 0x6F 0x20 0x73 0x65 0x65 0x20 0x77 - 0x68 0x61 0x74 0x92 0x73 0x20 0x62 0x65 - 0x68 0x69 0x6E 0x64 0x20 0x63 0x6C 0x6F - 0x73 0x65 0x64 0x20 0x64 0x6F 0x6F 0x72 - 0x73 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x61 0x6C - 0x6C 0x20 0x6B 0x69 0x6E 0x64 0x73 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x73 0x20 0x62 0x79 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x69 0x6E 0x67 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6E 0x6F 0x6F 0x70 0x69 - 0x6E 0x67 0x2E 0x20 0x20 0x57 0x68 0x65 - 0x6E 0x20 0x73 0x68 0x65 0x20 0x73 0x6E - 0x6F 0x6F 0x70 0x65 0x64 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x68 0x65 - 0x72 0x20 0x67 0x72 0x61 0x6E 0x64 0x2D - 0x20 0x66 0x61 0x74 0x68 0x65 0x72 0x92 - 0x73 0x20 0x75 0x6E 0x64 0x65 0x72 0x77 - 0x65 0x61 0x72 0x20 0x64 0x72 0x61 0x77 - 0x65 0x72 0x2C 0x20 0x73 0x68 0x65 0x20 - 0x66 0x6F 0x75 0x6E 0x64 0x20 0x68 0x69 - 0x73 0x20 0x73 0x6F 0x63 0x6B 0x20 0x67 - 0x61 0x72 0x74 0x65 0x72 0x73 0x2C 0x20 - 0x77 0x68 0x69 0x63 0x68 0x20 0x65 0x78 - 0x70 0x6C 0x61 0x69 0x6E 0x65 0x64 0x20 - 0x77 0x68 0x79 0x20 0x68 0x69 0x73 0x20 - 0x73 0x6F 0x63 0x6B 0x73 0x20 0x6E 0x65 - 0x76 0x65 0x72 0x20 0x73 0x61 0x67 0x67 - 0x65 0x64 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x68 0x65 0x72 0x20 0x62 0x69 - 0x67 0x67 0x65 0x73 0x74 0x20 0x73 0x6E - 0x6F 0x6F 0x70 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x20 0x77 0x61 0x73 0x20 0x6F - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x4A - 0x75 0x73 0x74 0x20 0x61 0x73 0x20 0x73 - 0x68 0x65 0x20 0x77 0x61 0x73 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x20 0x73 - 0x74 0x61 0x72 0x92 0x73 0x20 0x64 0x72 - 0x65 0x73 0x73 0x69 0x6E 0x67 0x20 0x72 - 0x6F 0x6F 0x6D 0x2C 0x20 0x4D 0x65 0x6C - 0x61 0x6E 0x69 0x65 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x2C 0x20 0x63 0x61 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x72 0x2E 0x20 - 0x20 0x53 0x69 0x6E 0x63 0x65 0x20 0x4D - 0x61 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 - 0x20 0x77 0x61 0x73 0x20 0x73 0x6F 0x20 - 0x67 0x6F 0x6F 0x64 0x20 0x61 0x74 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x63 0x75 - 0x72 0x69 0x6F 0x75 0x73 0x2C 0x20 0x4D - 0x65 0x6C 0x61 0x6E 0x69 0x65 0x20 0x64 - 0x65 0x63 0x69 0x64 0x65 0x64 0x20 0x73 - 0x68 0x65 0x27 0x64 0x20 0x62 0x65 0x20 - 0x67 0x72 0x65 0x61 0x74 0x20 0x61 0x73 - 0x20 0x61 0x20 0x64 0x65 0x74 0x65 0x63 - 0x74 0x69 0x76 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E - 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21060 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_93= 0x0001536b - - -CHUNK('HTOP', _help_48544F50_93, "") -SUBFILE -#line 21068 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_93, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_17=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_93, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_17=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x56 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x1B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_17=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_17, 0x0) - BYTE - 0x03 0x03 0x44 0x61 0x75 0x67 0x68 0x74 - 0x65 0x72 0x20 0x69 0x6E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x20 0x46 0x61 0x6D - 0x69 0x6C 0x79 0x0D 0x0A 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x74 - 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 0x74 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 - 0x65 0x20 0x73 0x6F 0x6F 0x6F 0x20 0x66 - 0x75 0x6E 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x74 0x68 0x65 0x20 0x64 - 0x61 0x75 0x67 0x68 0x74 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x66 0x61 0x6D - 0x69 0x6C 0x79 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6C 0x69 0x76 0x65 0x73 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x70 0x6F 0x73 0x73 - 0x65 0x73 0x73 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x72 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x74 0x6F 0x6E - 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x20 0x74 0x6F 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x2C 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x69 0x6E 0x20 0x74 0x68 0x61 - 0x74 0x20 0x77 0x6F 0x6F 0x64 0x65 0x6E - 0x20 0x63 0x6F 0x66 0x66 0x69 0x6E 0x3F - 0x20 0x20 0x57 0x68 0x61 0x74 0x27 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x73 0x61 0x66 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x69 0x62 0x72 - 0x61 0x72 0x79 0x3F 0x20 0x20 0x41 0x6E - 0x64 0x20 0x69 0x73 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x61 0x20 0x74 0x72 0x65 0x61 - 0x73 0x75 0x72 0x65 0x20 0x63 0x68 0x65 - 0x73 0x74 0x20 0x68 0x69 0x64 0x64 0x65 - 0x6E 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 - 0x6F 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x61 0x76 0x65 - 0x73 0x74 0x6F 0x6E 0x65 0x73 0x20 0x6F - 0x75 0x74 0x73 0x69 0x64 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21172 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_94= 0x0001536c - - -CHUNK('HTOP', _help_48544F50_94, "") -SUBFILE -#line 21180 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_94, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_62=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_62=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x78 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_62=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_62, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x6E 0x6E 0x65 0x71 - 0x75 0x69 0x6E 0x0D 0x0A 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x77 - 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x6D 0x61 0x6E 0x6E 0x65 - 0x71 0x75 0x69 0x6E 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x61 0x20 0x6D 0x6F 0x76 0x69 - 0x65 0x2C 0x20 0x69 0x74 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x74 - 0x68 0x65 0x20 0x70 0x65 0x72 0x66 0x65 - 0x63 0x74 0x20 0x64 0x69 0x73 0x67 0x75 - 0x69 0x73 0x65 0x20 0x74 0x6F 0x20 0x73 - 0x6F 0x6C 0x76 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x79 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x64 0x69 0x73 0x61 0x70 0x70 0x65 0x61 - 0x72 0x69 0x6E 0x67 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x73 0x2E - 0x20 0x20 0x46 0x6F 0x72 0x20 0x77 0x65 - 0x65 0x6B 0x73 0x20 0x74 0x65 0x65 0x6E - 0x61 0x67 0x65 0x20 0x6D 0x61 0x6E 0x6E - 0x65 0x71 0x75 0x69 0x6E 0x73 0x20 0x68 - 0x61 0x76 0x65 0x20 0x62 0x65 0x65 0x6E - 0x97 0x70 0x6F 0x6F 0x66 0x21 0x97 0x64 - 0x69 0x73 0x61 0x70 0x70 0x65 0x61 0x72 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x6F - 0x6C 0x20 0x73 0x74 0x6F 0x72 0x65 0x73 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x73 0x68 - 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 0x63 - 0x6F 0x6D 0x70 0x6C 0x65 0x78 0x2E 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x6E 0x6F 0x6F 0x70 0x20 0x68 - 0x65 0x72 0x20 0x77 0x61 0x79 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x74 0x68 - 0x69 0x65 0x66 0x3F 0x20 0x20 0x4F 0x72 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x4D 0x61 - 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 0x2C - 0x20 0x74 0x68 0x65 0x20 0x6D 0x61 0x6E - 0x6E 0x65 0x71 0x75 0x69 0x6E 0x2C 0x20 - 0x62 0x65 0x20 0x73 0x74 0x6F 0x6C 0x65 - 0x6E 0x20 0x68 0x65 0x72 0x73 0x65 0x6C - 0x66 0x3F -ENDCHUNK - - -ENDCHUNK -#line 21289 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_95= 0x0001536d - - -CHUNK('HTOP', _help_48544F50_95, "") -SUBFILE -#line 21297 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_95, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_95, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x16 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1D, 0x0) - BYTE - 0x03 0x03 0x47 0x69 0x72 0x6C 0x20 0x53 - 0x63 0x6F 0x75 0x74 0x0D 0x0A 0x4D 0x61 - 0x72 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x74 0x6F 0x20 0x70 0x6C - 0x61 0x79 0x20 0x74 0x68 0x65 0x20 0x70 - 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x20 0x67 0x69 0x72 0x6C 0x20 0x73 0x63 - 0x6F 0x75 0x74 0x20 0x65 0x61 0x72 0x6E - 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 0x20 - 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 0x66 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x62 0x61 - 0x64 0x67 0x65 0x2E 0x20 0x20 0x49 0x6E - 0x20 0x74 0x68 0x69 0x73 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x2C 0x20 0x73 0x68 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x67 - 0x65 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x6F 0x75 0x74 0x20 - 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x61 0x6B 0x65 0x20 - 0x6F 0x66 0x66 0x20 0x74 0x6F 0x20 0x65 - 0x78 0x70 0x6C 0x6F 0x72 0x65 0x20 0x61 - 0x6E 0x79 0x74 0x68 0x69 0x6E 0x67 0x2C - 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 0x72 - 0x65 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x72 - 0x69 0x6E 0x67 0x20 0x68 0x65 0x72 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x2C 0x20 - 0x4B 0x69 0x6D 0x2C 0x20 0x77 0x69 0x74 - 0x68 0x20 0x68 0x65 0x72 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x43 0x61 0x76 0x65 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x4C 0x6F - 0x73 0x74 0x20 0x44 0x6F 0x75 0x67 0x68 - 0x6E 0x75 0x74 0x2E 0x20 0x20 0x52 0x75 - 0x6D 0x6F 0x72 0x20 0x68 0x61 0x73 0x20 - 0x69 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x61 0x20 0x63 0x72 0x61 0x7A 0x79 0x20 - 0x63 0x6F 0x6F 0x6B 0x20 0x62 0x6C 0x65 - 0x77 0x20 0x75 0x70 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x76 0x65 - 0x20 0x77 0x68 0x69 0x6C 0x65 0x20 0x69 - 0x6E 0x76 0x65 0x6E 0x74 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6C 0x64 0x92 0x73 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x64 0x6F 0x75 0x67 0x68 - 0x6E 0x75 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x6F 0x6F 0x6B 0x20 0x68 - 0x61 0x73 0x6E 0x92 0x74 0x20 0x62 0x65 - 0x65 0x6E 0x20 0x73 0x65 0x65 0x6E 0x20 - 0x73 0x69 0x6E 0x63 0x65 0x2E 0x20 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x4D 0x61 0x72 - 0x69 0x62 0x65 0x6C 0x6C 0x61 0x20 0x61 - 0x6E 0x64 0x20 0x4B 0x69 0x6D 0x20 0x66 - 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x63 0x61 0x76 0x65 0x3F 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 0x79 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x73 0x73 0x69 0x6E - 0x67 0x20 0x63 0x6F 0x6F 0x6B 0x3F 0x20 - 0x20 0x41 0x6E 0x64 0x2C 0x20 0x6D 0x6F - 0x73 0x74 0x20 0x69 0x6D 0x70 0x6F 0x72 - 0x74 0x61 0x6E 0x74 0x2C 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x72 0x65 - 0x20 0x62 0x65 0x20 0x61 0x6E 0x79 0x20 - 0x64 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 - 0x73 0x20 0x6C 0x65 0x66 0x74 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21425 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_96= 0x0001536e - - -CHUNK('HTOP', _help_48544F50_96, "") -SUBFILE -#line 21433 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_96, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_18=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_96, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_18=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_18=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_18, 0x0) - BYTE - 0x03 0x03 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x0D 0x0A 0x45 0x76 0x65 0x6E 0x74 0x75 - 0x61 0x6C 0x6C 0x79 0x2C 0x20 0x4E 0x61 - 0x6B 0x69 0x74 0x61 0x20 0x65 0x6E 0x74 - 0x65 0x72 0x65 0x64 0x20 0x74 0x68 0x65 - 0x20 0x52 0x75 0x73 0x73 0x69 0x61 0x6E - 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 0x20 - 0x63 0x68 0x61 0x6D 0x70 0x69 0x6F 0x6E - 0x73 0x68 0x69 0x70 0x73 0x2E 0x20 0x54 - 0x68 0x65 0x20 0x6A 0x75 0x64 0x67 0x65 - 0x73 0x20 0x6E 0x6F 0x74 0x69 0x63 0x65 - 0x64 0x20 0x74 0x68 0x65 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x67 0x69 0x72 0x6C - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x65 0x20 0x61 0x6D 0x61 0x7A 0x69 0x6E - 0x67 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x6B 0x69 0x63 0x6B 0x2E 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6A 0x75 0x64 0x67 0x65 0x73 0x20 - 0x64 0x69 0x64 0x6E 0x27 0x74 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x77 0x61 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x20 0x77 0x61 0x73 0x20 - 0x61 0x6C 0x73 0x6F 0x20 0x61 0x6E 0x20 - 0x61 0x73 0x70 0x69 0x72 0x69 0x6E 0x67 - 0x20 0x70 0x6F 0x65 0x74 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 - 0x20 0x77 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x66 0x69 0x6E 0x61 0x6C 0x20 0x72 - 0x6F 0x75 0x6E 0x64 0x2C 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x61 0x75 0x67 0x68 0x65 - 0x64 0x20 0x61 0x6E 0x64 0x20 0x72 0x65 - 0x63 0x69 0x74 0x65 0x64 0x20 0x6F 0x6E - 0x65 0x20 0x6F 0x66 0x20 0x68 0x65 0x72 - 0x20 0x70 0x6F 0x65 0x6D 0x73 0x2E 0x0D - 0x0A 0x4F 0x6E 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x61 0x75 0x64 0x69 0x65 0x6E - 0x63 0x65 0x20 0x77 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x66 0x61 0x6D 0x6F 0x75 - 0x73 0x20 0x64 0x69 0x72 0x65 0x63 0x74 - 0x6F 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x2C 0x20 0x77 0x68 0x6F 0x20 0x77 0x61 - 0x73 0x20 0x73 0x6F 0x20 0x69 0x6D 0x70 - 0x72 0x65 0x73 0x73 0x65 0x64 0x20 0x77 - 0x69 0x74 0x68 0x20 0x4E 0x61 0x6B 0x69 - 0x74 0x61 0x27 0x73 0x20 0x63 0x6F 0x6D - 0x62 0x69 0x6E 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x6F 0x66 0x20 0x62 0x72 0x75 0x74 - 0x65 0x20 0x73 0x74 0x72 0x65 0x6E 0x67 - 0x74 0x68 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x6F 0x65 0x74 0x69 0x63 0x20 0x67 0x65 - 0x6E 0x69 0x75 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x68 0x65 0x20 0x61 0x73 0x6B - 0x65 0x64 0x20 0x68 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x21 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x74 0x68 0x61 - 0x74 0x92 0x73 0x20 0x68 0x6F 0x77 0x20 - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 0x73 - 0x74 0x61 0x72 0x74 0x65 0x64 0x20 0x6F - 0x75 0x74 0x20 0x69 0x6E 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x2E -ENDCHUNK - - -ENDCHUNK -#line 21559 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_97= 0x0001536f - - -CHUNK('HTOP', _help_48544F50_97, "") -SUBFILE -#line 21567 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_97, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_97=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_97, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_97=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_97, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xBF 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_97=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_97, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x69 0x76 0x61 0x74 - 0x65 0x20 0x41 0x65 0x72 0x6F 0x62 0x69 - 0x63 0x20 0x49 0x6E 0x73 0x74 0x72 0x75 - 0x63 0x74 0x6F 0x72 0x0D 0x0A 0x53 0x6F - 0x6D 0x65 0x64 0x61 0x79 0x4E 0x61 0x6B - 0x69 0x74 0x61 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x6C 0x69 0x6B 0x65 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x70 0x72 0x69 0x76 0x61 0x74 0x65 - 0x20 0x61 0x65 0x72 0x6F 0x62 0x69 0x63 - 0x20 0x69 0x6E 0x73 0x74 0x72 0x75 0x63 - 0x74 0x6F 0x72 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x73 0x75 0x6D 0x6D 0x6F - 0x6E 0x65 0x64 0x20 0x74 0x6F 0x20 0x61 - 0x20 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x73 0x70 0x65 - 0x63 0x69 0x61 0x6C 0x20 0x63 0x6C 0x69 - 0x65 0x6E 0x74 0x2E 0x20 0x20 0x54 0x68 - 0x69 0x73 0x20 0x63 0x6C 0x69 0x65 0x6E - 0x74 0x20 0x74 0x75 0x72 0x6E 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x67 0x69 0x61 0x6E - 0x74 0x20 0x72 0x61 0x74 0x21 0x20 0x0D - 0x0A 0x53 0x75 0x72 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x72 0x61 0x74 0x20 0x6E - 0x65 0x65 0x64 0x73 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x69 0x6E 0x20 0x73 - 0x68 0x61 0x70 0x65 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x6B - 0x69 0x6E 0x64 0x20 0x6F 0x66 0x20 0x69 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x69 - 0x6F 0x6E 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x74 0x68 0x69 0x73 0x20 0x72 0x61 0x74 - 0x20 0x68 0x61 0x76 0x65 0x20 0x69 0x6E - 0x20 0x6D 0x69 0x6E 0x64 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x68 0x79 0x20 0x69 - 0x73 0x6E 0x27 0x74 0x20 0x61 0x6E 0x79 - 0x6F 0x6E 0x65 0x20 0x65 0x6C 0x73 0x65 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 21669 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_98= 0x00015370 - - -CHUNK('HTOP', _help_48544F50_98, "") -SUBFILE -#line 21677 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_98, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_98=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_98, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_98=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_98, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_98=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_98, 0x0) - BYTE - 0x03 0x03 0x56 0x65 0x6C 0x63 0x72 0x6F - 0x20 0x57 0x6F 0x6D 0x61 0x6E 0x0D 0x0A - 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 0x68 - 0x61 0x73 0x20 0x61 0x6C 0x77 0x61 0x79 - 0x73 0x20 0x64 0x72 0x65 0x61 0x6D 0x65 - 0x64 0x20 0x6F 0x66 0x20 0x70 0x6C 0x61 - 0x79 0x69 0x6E 0x67 0x20 0x56 0x65 0x6C - 0x63 0x72 0x6F 0x20 0x57 0x6F 0x6D 0x61 - 0x6E 0x2C 0x20 0x61 0x20 0x66 0x61 0x6D - 0x6F 0x75 0x73 0x20 0x74 0x68 0x69 0x65 - 0x66 0x20 0x77 0x68 0x6F 0x73 0x65 0x20 - 0x6E 0x61 0x6D 0x65 0x20 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x63 0x74 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x67 0x65 0x74 0x73 0x20 0x73 0x74 - 0x75 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 - 0x6F 0x75 0x67 0x68 0x20 0x73 0x69 0x74 - 0x75 0x61 0x74 0x69 0x6F 0x6E 0x73 0x2E - 0x20 0x0D 0x0A 0x49 0x6E 0x20 0x6F 0x6E - 0x65 0x20 0x73 0x63 0x65 0x6E 0x65 0x2C - 0x20 0x4E 0x61 0x6B 0x69 0x74 0x61 0x20 - 0x69 0x73 0x20 0x62 0x65 0x69 0x6E 0x67 - 0x20 0x63 0x68 0x61 0x73 0x65 0x64 0x20 - 0x62 0x79 0x20 0x61 0x20 0x70 0x6F 0x6C - 0x69 0x63 0x65 0x6D 0x61 0x6E 0x20 0x74 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 - 0x68 0x65 0x20 0x73 0x74 0x72 0x65 0x65 - 0x74 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x63 0x69 0x74 0x79 0x2E 0x20 - 0x20 0x41 0x66 0x74 0x65 0x72 0x20 0x61 - 0x20 0x66 0x75 0x72 0x69 0x6F 0x75 0x73 - 0x20 0x63 0x68 0x61 0x73 0x65 0x2C 0x20 - 0x73 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x73 0x20 0x68 0x65 0x72 0x73 0x65 0x6C - 0x66 0x20 0x74 0x72 0x61 0x70 0x70 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x61 0x20 0x64 - 0x65 0x61 0x64 0x2D 0x65 0x6E 0x64 0x20 - 0x61 0x6C 0x6C 0x65 0x79 0x2E 0x20 0x0D - 0x0A 0x57 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x73 0x75 0x72 0x72 0x65 0x6E - 0x64 0x65 0x72 0x2C 0x20 0x6F 0x72 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 - 0x20 0x75 0x73 0x65 0x20 0x68 0x65 0x72 - 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 0x20 - 0x73 0x6B 0x69 0x6C 0x6C 0x73 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x67 0x68 0x74 0x20 - 0x68 0x65 0x72 0x20 0x77 0x61 0x79 0x20 - 0x6F 0x75 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 21789 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_99= 0x00015371 - - -CHUNK('HTOP', _help_48544F50_99, "") -SUBFILE -#line 21797 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_99, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9A=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_99, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9A=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x85 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x19 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9A=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9A, 0x0) - BYTE - 0x03 0x03 0x53 0x63 0x75 0x62 0x61 0x20 - 0x44 0x69 0x76 0x69 0x6E 0x67 0x20 0x49 - 0x6E 0x73 0x74 0x72 0x75 0x63 0x74 0x6F - 0x72 0x0D 0x0A 0x4E 0x61 0x6B 0x69 0x74 - 0x61 0x20 0x63 0x6F 0x6D 0x65 0x73 0x20 - 0x66 0x72 0x6F 0x6D 0x20 0x61 0x20 0x63 - 0x69 0x74 0x79 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x77 0x61 0x74 0x65 0x72 - 0x2C 0x20 0x73 0x6F 0x20 0x6E 0x61 0x74 - 0x75 0x72 0x61 0x6C 0x6C 0x79 0x20 0x73 - 0x68 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 - 0x73 0x63 0x75 0x62 0x61 0x20 0x64 0x69 - 0x76 0x69 0x6E 0x67 0x20 0x69 0x6E 0x73 - 0x74 0x72 0x75 0x63 0x74 0x6F 0x72 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x6F 0x6D 0x65 - 0x73 0x20 0x75 0x70 0x6F 0x6E 0x20 0x61 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x69 - 0x6F 0x75 0x73 0x20 0x63 0x61 0x76 0x65 - 0x2E 0x20 0x20 0x54 0x68 0x69 0x6E 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x68 0x61 0x74 - 0x20 0x73 0x68 0x65 0x20 0x6D 0x61 0x79 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 0x20 - 0x73 0x74 0x72 0x65 0x61 0x6D 0x20 0x74 - 0x6F 0x20 0x65 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x2C 0x20 0x73 0x68 0x65 0x20 0x65 - 0x6E 0x74 0x65 0x72 0x73 0x20 0x74 0x68 - 0x65 0x20 0x63 0x61 0x76 0x65 0x20 0x61 - 0x6E 0x64 0x20 0x6C 0x6F 0x6F 0x6B 0x73 - 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 0x2E - 0x20 0x49 0x6E 0x73 0x74 0x65 0x61 0x64 - 0x2C 0x20 0x73 0x68 0x65 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x68 0x75 0x6D 0x61 - 0x6E 0x20 0x62 0x6F 0x6E 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x61 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x62 0x6F 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x63 0x61 0x6E 0x92 - 0x74 0x20 0x73 0x74 0x6F 0x70 0x20 0x6C - 0x61 0x75 0x67 0x68 0x69 0x6E 0x67 0x2E - 0x20 0x57 0x68 0x61 0x74 0x20 0x69 0x73 - 0x20 0x69 0x74 0x20 0x74 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x73 0x20 0x73 0x6F 0x20 0x66 0x75 0x6E - 0x6E 0x79 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x68 0x6F 0x73 0x65 0x20 0x62 0x6F - 0x6E 0x65 0x73 0x20 0x61 0x72 0x65 0x20 - 0x74 0x68 0x65 0x73 0x65 0x2C 0x20 0x61 - 0x6E 0x79 0x77 0x61 0x79 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 21907 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9A= 0x00015372 - - -CHUNK('HTOP', _help_48544F50_9A, "") -SUBFILE -#line 21915 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9A, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9E=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9A, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9E=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x19 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9E=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9E, 0x0) - BYTE - 0x03 0x03 0x65 0x6E 0x74 0x65 0x72 0x74 - 0x61 0x69 0x6E 0x0D 0x0A 0x50 0x61 0x74 - 0x72 0x69 0x63 0x6B 0x20 0x6C 0x6F 0x76 - 0x65 0x64 0x20 0x74 0x6F 0x20 0x65 0x6E - 0x74 0x65 0x72 0x74 0x61 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x66 0x61 0x6D 0x69 - 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x72 0x69 0x65 0x6E 0x64 0x73 0x2E 0x20 - 0x20 0x57 0x68 0x65 0x72 0x65 0x76 0x65 - 0x72 0x20 0x68 0x65 0x20 0x77 0x65 0x6E - 0x74 0x20 0x68 0x65 0x20 0x6D 0x61 0x64 - 0x65 0x20 0x61 0x20 0x73 0x70 0x65 0x63 - 0x74 0x61 0x63 0x6C 0x65 0x20 0x6F 0x66 - 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x70 0x72 0x61 0x63 - 0x74 0x69 0x63 0x65 0x20 0x69 0x6E 0x20 - 0x61 0x20 0x6D 0x69 0x72 0x72 0x6F 0x72 - 0x20 0x69 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x72 0x6F 0x6F 0x6D 0x20 0x74 0x72 0x79 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x63 - 0x72 0x65 0x61 0x74 0x65 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x73 0x74 0x20 0x64 - 0x61 0x7A 0x7A 0x6C 0x69 0x6E 0x67 0x20 - 0x73 0x6D 0x69 0x6C 0x65 0x2E 0x20 0x20 - 0x57 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x77 0x65 0x6E 0x74 0x20 0x63 0x6C 0x6F - 0x74 0x68 0x65 0x73 0x20 0x73 0x68 0x6F - 0x70 0x70 0x69 0x6E 0x67 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x74 0x61 0x79 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x72 0x65 0x73 0x73 - 0x69 0x6E 0x67 0x20 0x72 0x6F 0x6F 0x6D - 0x20 0x66 0x6F 0x72 0x20 0x68 0x6F 0x75 - 0x72 0x73 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x69 0x72 0x72 0x6F 0x72 - 0x2E 0x20 0x20 0x48 0x65 0x27 0x64 0x20 - 0x70 0x72 0x61 0x63 0x74 0x69 0x63 0x65 - 0x20 0x68 0x69 0x73 0x20 0x64 0x61 0x6E - 0x63 0x65 0x20 0x6D 0x6F 0x76 0x65 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x6E 0x20 0x67 0x6F 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x61 0x72 0x62 0x6C 0x65 0x20 0x66 - 0x6C 0x6F 0x6F 0x72 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x64 0x61 0x6E - 0x63 0x65 0x2E 0x20 0x20 0x41 0x6D 0x61 - 0x7A 0x69 0x6E 0x67 0x6C 0x79 0x2C 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x64 0x61 0x6E - 0x63 0x65 0x20 0x77 0x69 0x74 0x68 0x20 - 0x68 0x69 0x6D 0x21 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x6D 0x61 0x6C 0x6C 0x20 - 0x73 0x65 0x63 0x75 0x72 0x69 0x74 0x79 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x70 - 0x6F 0x6C 0x69 0x74 0x65 0x6C 0x79 0x20 - 0x61 0x73 0x6B 0x20 0x68 0x69 0x6D 0x20 - 0x74 0x6F 0x20 0x6C 0x65 0x61 0x76 0x65 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x69 0x6D 0x65 0x73 0x20 - 0x68 0x65 0x27 0x64 0x20 0x63 0x6F 0x6E - 0x76 0x69 0x6E 0x63 0x65 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x74 0x6F 0x20 0x64 0x61 - 0x6E 0x63 0x65 0x20 0x77 0x69 0x74 0x68 - 0x20 0x68 0x69 0x6D 0x2C 0x20 0x74 0x6F - 0x6F 0x21 0x20 -ENDCHUNK - - -ENDCHUNK -#line 22044 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9B= 0x00015373 - - -CHUNK('HTOP', _help_48544F50_9B, "") -SUBFILE -#line 22052 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9B, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9B=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9B=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9B, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x72 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x38 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9B=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9B, 0x0) - BYTE - 0x03 0x03 0x52 0x69 0x63 0x68 0x20 0x43 - 0x6F 0x75 0x73 0x69 0x6E 0x0D 0x0A 0x4F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x50 0x61 0x74 - 0x72 0x69 0x63 0x6B 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x69 0x73 0x20 0x61 0x20 0x72 0x69 0x63 - 0x68 0x20 0x63 0x6F 0x75 0x73 0x69 0x6E - 0x20 0x74 0x6F 0x20 0x73 0x6F 0x6D 0x65 - 0x20 0x76 0x65 0x72 0x79 0x20 0x64 0x69 - 0x73 0x74 0x61 0x6E 0x74 0x2C 0x20 0x76 - 0x65 0x72 0x79 0x20 0x77 0x65 0x69 0x72 - 0x64 0x20 0x72 0x65 0x6C 0x61 0x74 0x69 - 0x76 0x65 0x73 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x79 0x27 0x72 0x65 0x20 0x6A 0x65 - 0x61 0x6C 0x6F 0x75 0x73 0x20 0x62 0x65 - 0x63 0x61 0x75 0x73 0x65 0x20 0x68 0x65 - 0x27 0x73 0x20 0x73 0x75 0x63 0x68 0x20 - 0x61 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x64 0x61 0x6E 0x63 0x65 0x72 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x61 0x76 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x73 0x20 0x74 - 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 0x68 - 0x69 0x6D 0x20 0x64 0x69 0x73 0x61 0x70 - 0x70 0x65 0x61 0x72 0x20 0x66 0x6F 0x72 - 0x65 0x76 0x65 0x72 0x21 0x20 0x20 0x54 - 0x68 0x65 0x79 0x20 0x68 0x61 0x76 0x65 - 0x20 0x69 0x6E 0x76 0x69 0x74 0x65 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x6F 0x76 0x65 - 0x72 0x20 0x66 0x6F 0x72 0x20 0x61 0x20 - 0x76 0x61 0x63 0x61 0x74 0x69 0x6F 0x6E - 0x20 0x62 0x75 0x74 0x20 0x74 0x68 0x65 - 0x79 0x20 0x74 0x72 0x79 0x20 0x74 0x6F - 0x20 0x67 0x65 0x74 0x20 0x68 0x69 0x6D - 0x20 0x6C 0x6F 0x73 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x76 0x65 0x72 0x20 0x68 - 0x65 0x20 0x67 0x6F 0x65 0x73 0x2E 0x20 - 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x68 0x65 0x20 0x65 0x73 - 0x63 0x61 0x70 0x65 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x61 0x6E 0x64 0x6F 0x6E 0x65 - 0x64 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x63 0x61 0x72 0x79 0x20 0x63 0x61 0x76 - 0x65 0x3F 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 22160 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9C= 0x00015374 - - -CHUNK('HTOP', _help_48544F50_9C, "") -SUBFILE -#line 22168 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9C, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9D=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9D=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9D=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9D, 0x0) - BYTE - 0x03 0x03 0x4B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x45 0x78 0x70 0x65 0x72 0x74 0x0D - 0x0A 0x41 0x66 0x74 0x65 0x72 0x20 0x61 - 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x61 0x74 0x20 0x70 0x72 0x61 0x63 0x74 - 0x69 0x63 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x69 0x72 0x72 0x6F - 0x72 0x2C 0x20 0x50 0x61 0x74 0x72 0x69 - 0x63 0x6B 0x20 0x68 0x61 0x73 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x76 0x65 0x73 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x61 0x20 0x6B 0x61 - 0x72 0x61 0x74 0x65 0x20 0x65 0x78 0x70 - 0x65 0x72 0x74 0x2E 0x20 0x20 0x57 0x68 - 0x65 0x6E 0x65 0x76 0x65 0x72 0x20 0x64 - 0x61 0x6E 0x67 0x65 0x72 0x20 0x69 0x73 - 0x20 0x6E 0x65 0x61 0x72 0x2C 0x20 0x68 - 0x65 0x20 0x64 0x6F 0x65 0x73 0x20 0x61 - 0x20 0x71 0x75 0x69 0x63 0x6B 0x20 0x63 - 0x68 0x61 0x6E 0x67 0x65 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x68 0x69 0x73 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x20 0x72 0x6F - 0x62 0x65 0x20 0x61 0x6E 0x64 0x20 0x6B - 0x69 0x63 0x6B 0x73 0x20 0x68 0x69 0x73 - 0x20 0x77 0x61 0x79 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 0x64 - 0x6F 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x6F 0x70 0x70 0x6F 0x6E - 0x65 0x6E 0x74 0x20 0x69 0x73 0x20 0x61 - 0x20 0x62 0x6F 0x78 0x65 0x72 0x3F 0x20 - 0x20 0x4F 0x72 0x20 0x61 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x3F 0x20 0x20 0x4F 0x72 - 0x20 0x61 0x20 0x62 0x61 0x62 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22265 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9D= 0x00015375 - - -CHUNK('HTOP', _help_48544F50_9D, "") -SUBFILE -#line 22273 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9D, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9C=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9D, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9C=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9C, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x5C 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB8 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9C=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9C, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x70 0x6C 0x6F 0x72 - 0x65 0x72 0x0D 0x0A 0x41 0x73 0x20 0x68 - 0x65 0x20 0x67 0x75 0x69 0x64 0x65 0x64 - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x73 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x67 0x6C - 0x61 0x73 0x73 0x20 0x66 0x61 0x63 0x74 - 0x6F 0x72 0x79 0x2C 0x20 0x50 0x61 0x74 - 0x72 0x69 0x63 0x6B 0x20 0x73 0x6F 0x6D - 0x65 0x74 0x69 0x6D 0x65 0x73 0x20 0x69 - 0x6D 0x61 0x67 0x69 0x6E 0x65 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x61 0x6E 0x20 0x65 - 0x78 0x70 0x6C 0x6F 0x72 0x65 0x72 0x20 - 0x6C 0x65 0x61 0x64 0x69 0x6E 0x67 0x20 - 0x61 0x20 0x74 0x65 0x61 0x6D 0x20 0x6F - 0x66 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x73 0x20 0x6F 0x6E 0x20 - 0x61 0x6E 0x20 0x61 0x64 0x76 0x65 0x6E - 0x74 0x75 0x72 0x65 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x20 0x61 0x20 0x74 - 0x72 0x6F 0x70 0x69 0x63 0x61 0x6C 0x20 - 0x76 0x69 0x6C 0x6C 0x61 0x67 0x65 0x2E - 0x0D 0x0A 0x49 0x6E 0x20 0x74 0x68 0x69 - 0x73 0x20 0x72 0x6F 0x6C 0x65 0x2C 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x74 0x68 - 0x65 0x20 0x76 0x69 0x6C 0x6C 0x61 0x67 - 0x65 0x20 0x63 0x6F 0x6D 0x70 0x6C 0x65 - 0x74 0x65 0x6C 0x79 0x20 0x64 0x65 0x73 - 0x65 0x72 0x74 0x65 0x64 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x63 0x69 0x65 0x6E - 0x74 0x69 0x73 0x74 0x73 0x20 0x64 0x69 - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x66 - 0x6F 0x6F 0x64 0x20 0x70 0x6F 0x69 0x73 - 0x6F 0x6E 0x69 0x6E 0x67 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x20 0x72 0x65 0x73 - 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 0x2C - 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x68 0x65 0x20 0x66 0x69 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x63 0x75 - 0x6C 0x70 0x72 0x69 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22378 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9E= 0x00015376 - - -CHUNK('HTOP', _help_48544F50_9E, "") -SUBFILE -#line 22386 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9E, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9E, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x79 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0C 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B9, 0x0) - BYTE - 0x03 0x03 0x61 0x63 0x74 0x72 0x65 0x73 - 0x73 0x65 0x73 0x20 0x0D 0x0A 0x52 0x61 - 0x6D 0x75 0x92 0x73 0x20 0x66 0x72 0x69 - 0x65 0x6E 0x64 0x6C 0x79 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x65 0x6E 0x73 0x65 0x20 0x6F - 0x66 0x20 0x68 0x75 0x6D 0x6F 0x72 0x20 - 0x6D 0x61 0x64 0x65 0x20 0x68 0x69 0x6D - 0x20 0x74 0x68 0x65 0x20 0x66 0x61 0x76 - 0x6F 0x72 0x69 0x74 0x65 0x20 0x6F 0x66 - 0x20 0x6D 0x61 0x6E 0x79 0x20 0x6C 0x65 - 0x61 0x64 0x69 0x6E 0x67 0x20 0x61 0x63 - 0x74 0x72 0x65 0x73 0x73 0x65 0x73 0x2E - 0x20 0x20 0x53 0x65 0x76 0x65 0x72 0x61 - 0x6C 0x20 0x73 0x74 0x61 0x72 0x6C 0x65 - 0x74 0x73 0x20 0x62 0x65 0x67 0x61 0x6E - 0x20 0x6D 0x61 0x6B 0x69 0x6E 0x67 0x20 - 0x61 0x70 0x70 0x6F 0x69 0x6E 0x74 0x6D - 0x65 0x6E 0x74 0x73 0x20 0x66 0x6F 0x72 - 0x20 0x77 0x65 0x65 0x6B 0x6C 0x79 0x20 - 0x63 0x68 0x65 0x63 0x6B 0x75 0x70 0x73 - 0x21 0x20 0x20 0x48 0x6F 0x6C 0x6C 0x79 - 0x77 0x6F 0x6F 0x64 0x20 0x77 0x61 0x73 - 0x20 0x73 0x6F 0x6F 0x6E 0x20 0x62 0x75 - 0x7A 0x7A 0x69 0x6E 0x67 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x67 0x65 0x6E 0x74 0x6C 0x65 0x6D 0x61 - 0x6E 0x20 0x64 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x20 0x77 0x68 0x6F 0x6D 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x6C 0x65 0x61 - 0x64 0x69 0x6E 0x67 0x20 0x6C 0x61 0x64 - 0x79 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x6B 0x69 0x73 0x73 - 0x2E 0x20 0x20 0x4D 0x6F 0x76 0x69 0x65 - 0x20 0x65 0x78 0x65 0x63 0x75 0x74 0x69 - 0x76 0x65 0x73 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x74 0x20 0x74 0x68 0x61 0x74 - 0x20 0x52 0x61 0x6D 0x75 0x20 0x6D 0x75 - 0x73 0x74 0x20 0x68 0x61 0x76 0x65 0x20 - 0x73 0x6F 0x6D 0x65 0x20 0x76 0x65 0x72 - 0x79 0x20 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x20 0x71 0x75 0x61 0x6C 0x69 0x74 - 0x69 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x6E 0x76 0x69 0x6E 0x63 0x65 - 0x64 0x20 0x68 0x69 0x6D 0x20 0x74 0x6F - 0x20 0x67 0x69 0x76 0x65 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x61 0x20 0x74 - 0x72 0x79 0x2E -ENDCHUNK - - -ENDCHUNK -#line 22495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_9F= 0x00015377 - - -CHUNK('HTOP', _help_48544F50_9F, "") -SUBFILE -#line 22503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_9F, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_9F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_9F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_9F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_9F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_9F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_9F, 0x0) - BYTE - 0x03 0x03 0x4E 0x6F 0x69 0x73 0x79 0x20 - 0x54 0x65 0x6E 0x61 0x6E 0x74 0x0D 0x0A - 0x49 0x6E 0x20 0x74 0x68 0x69 0x73 0x20 - 0x64 0x72 0x65 0x61 0x6D 0x20 0x72 0x6F - 0x6C 0x65 0x2C 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x68 0x61 0x73 0x20 - 0x62 0x65 0x63 0x6F 0x6D 0x65 0x20 0x61 - 0x20 0x62 0x6F 0x61 0x72 0x64 0x69 0x6E - 0x67 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x65 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x74 - 0x65 0x6E 0x61 0x6E 0x74 0x73 0x20 0x69 - 0x73 0x20 0x70 0x61 0x72 0x74 0x69 0x63 - 0x75 0x6C 0x61 0x72 0x6C 0x79 0x20 0x6E - 0x6F 0x69 0x73 0x79 0x3B 0x20 0x69 0x74 - 0x92 0x73 0x20 0x52 0x61 0x6D 0x75 0x20 - 0x61 0x73 0x20 0x74 0x68 0x65 0x20 0x67 - 0x68 0x6F 0x73 0x74 0x20 0x74 0x65 0x6E - 0x61 0x6E 0x74 0x21 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x6F 0x6F 0x6B 0x73 0x20 0x6A - 0x75 0x73 0x74 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x61 0x6E 0x20 0x6F 0x72 0x64 0x69 - 0x6E 0x61 0x72 0x79 0x20 0x70 0x65 0x72 - 0x73 0x6F 0x6E 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x20 0x66 0x6C 0x6F - 0x6F 0x72 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x77 0x68 - 0x61 0x74 0x20 0x70 0x65 0x6F 0x70 0x6C - 0x65 0x20 0x61 0x72 0x65 0x20 0x64 0x6F - 0x69 0x6E 0x67 0x20 0x65 0x76 0x65 0x6E - 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 0x68 - 0x65 0x79 0x27 0x72 0x65 0x20 0x6E 0x6F - 0x74 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x2E 0x20 0x20 0x48 0x65 0x92 0x73 0x20 - 0x64 0x65 0x63 0x69 0x64 0x65 0x64 0x20 - 0x68 0x65 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x74 0x68 0x65 0x20 0x77 0x68 0x6F - 0x6C 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x61 0x6E 0x64 0x20 - 0x73 0x65 0x74 0x73 0x20 0x6F 0x75 0x74 - 0x20 0x74 0x6F 0x20 0x73 0x63 0x61 0x72 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 - 0x68 0x65 0x72 0x73 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x6C 0x65 0x61 0x76 0x69 0x6E - 0x67 0x2E 0x20 0x20 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x74 - 0x65 0x6E 0x61 0x6E 0x74 0x73 0x20 0x72 - 0x65 0x61 0x63 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x52 0x61 0x6D 0x75 0x20 0x6D - 0x65 0x65 0x74 0x73 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x73 0x79 - 0x63 0x68 0x69 0x63 0x20 0x67 0x68 0x6F - 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 0x66 - 0x61 0x6C 0x6C 0x73 0x20 0x6D 0x61 0x64 - 0x6C 0x79 0x20 0x69 0x6E 0x20 0x6C 0x6F - 0x76 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22625 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A0= 0x00015378 - - -CHUNK('HTOP', _help_48544F50_A0, "") -SUBFILE -#line 22633 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x84 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0E 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A0, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x72 0x20 0x53 0x61 - 0x6C 0x65 0x73 0x6D 0x61 0x6E 0x0D 0x0A - 0x52 0x61 0x6D 0x75 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x74 0x68 0x65 0x20 0x67 0x72 0x65 0x61 - 0x74 0x65 0x73 0x74 0x20 0x63 0x61 0x72 - 0x20 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 - 0x6E 0x20 0x6F 0x6E 0x20 0x65 0x61 0x72 - 0x74 0x68 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x69 0x73 0x20 0x73 0x75 0x63 0x68 0x20 - 0x61 0x20 0x67 0x6F 0x6F 0x64 0x20 0x73 - 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E 0x2C - 0x20 0x74 0x68 0x65 0x20 0x66 0x61 0x63 - 0x74 0x20 0x74 0x68 0x61 0x74 0x20 0x68 - 0x65 0x20 0x68 0x61 0x73 0x20 0x6E 0x6F - 0x20 0x63 0x61 0x72 0x73 0x20 0x6E 0x65 - 0x76 0x65 0x72 0x20 0x73 0x74 0x6F 0x70 - 0x73 0x20 0x68 0x69 0x6D 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x6D 0x61 0x6B 0x69 0x6E - 0x67 0x20 0x61 0x20 0x73 0x61 0x6C 0x65 - 0x21 0x20 0x20 0x48 0x65 0x20 0x73 0x74 - 0x61 0x6E 0x64 0x73 0x20 0x6F 0x6E 0x20 - 0x61 0x20 0x73 0x74 0x72 0x65 0x65 0x74 - 0x20 0x63 0x6F 0x72 0x6E 0x65 0x72 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x65 0x6C 0x6C - 0x73 0x20 0x63 0x61 0x72 0x73 0x2C 0x20 - 0x70 0x6F 0x74 0x74 0x65 0x72 0x79 0x2C - 0x20 0x6C 0x61 0x6D 0x70 0x70 0x6F 0x73 - 0x74 0x73 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x61 0x6E 0x79 0x74 0x68 0x69 0x6E 0x67 - 0x20 0x65 0x6C 0x73 0x65 0x20 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x74 0x68 0x69 - 0x6E 0x6B 0x20 0x6F 0x66 0x20 0x74 0x6F - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x73 0x20 0x61 0x73 0x20 0x74 0x68 0x65 - 0x79 0x20 0x77 0x61 0x6C 0x6B 0x20 0x62 - 0x79 0x2E 0x20 0x20 0x57 0x69 0x6C 0x6C - 0x20 0x68 0x65 0x20 0x62 0x65 0x20 0x61 - 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 0x63 - 0x68 0x61 0x72 0x6D 0x20 0x68 0x69 0x73 - 0x20 0x77 0x61 0x79 0x20 0x6F 0x75 0x74 - 0x20 0x6F 0x66 0x20 0x67 0x6F 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x6A 0x61 0x69 - 0x6C 0x20 0x77 0x68 0x65 0x6E 0x20 0x61 - 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 0x6D - 0x61 0x6E 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x73 0x75 0x73 0x70 0x69 - 0x63 0x69 0x6F 0x75 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22743 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A1= 0x00015379 - - -CHUNK('HTOP', _help_48544F50_A1, "") -SUBFILE -#line 22751 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A1, 0x0) - BYTE - 0x03 0x03 0x53 0x6B 0x79 0x20 0x44 0x69 - 0x76 0x65 0x72 0x0D 0x0A 0x52 0x61 0x6D - 0x75 0x20 0x68 0x61 0x73 0x20 0x61 0x6C - 0x77 0x61 0x79 0x73 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 0x20 - 0x70 0x61 0x72 0x74 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x73 0x6B 0x79 0x64 0x69 0x76 - 0x65 0x72 0x2E 0x20 0x20 0x41 0x73 0x20 - 0x61 0x20 0x67 0x72 0x65 0x61 0x74 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x72 0x65 0x72 - 0x2C 0x20 0x68 0x65 0x20 0x73 0x6B 0x79 - 0x20 0x64 0x69 0x76 0x65 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x20 0x72 0x65 - 0x6D 0x6F 0x74 0x65 0x20 0x6A 0x75 0x6E - 0x67 0x6C 0x65 0x20 0x69 0x6E 0x20 0x73 - 0x65 0x61 0x72 0x63 0x68 0x20 0x6F 0x66 - 0x20 0x61 0x20 0x6C 0x6F 0x73 0x74 0x20 - 0x61 0x6E 0x74 0x68 0x72 0x6F 0x70 0x6F - 0x6C 0x6F 0x67 0x69 0x73 0x74 0x2E 0x20 - 0x20 0x55 0x6E 0x66 0x6F 0x72 0x74 0x75 - 0x6E 0x61 0x74 0x65 0x6C 0x79 0x2C 0x20 - 0x68 0x69 0x73 0x20 0x70 0x61 0x72 0x61 - 0x63 0x68 0x75 0x74 0x65 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x92 0x74 0x20 0x77 0x6F - 0x72 0x6B 0x20 0x61 0x6E 0x64 0x20 0x68 - 0x65 0x20 0x6C 0x61 0x6E 0x64 0x73 0x20 - 0x66 0x6C 0x61 0x74 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6A 0x75 0x6E 0x67 - 0x6C 0x65 0x20 0x66 0x6C 0x6F 0x6F 0x72 - 0x21 0x20 0x20 0x53 0x70 0x6C 0x61 0x74 - 0x21 0x20 0x20 0x4C 0x75 0x63 0x6B 0x69 - 0x6C 0x79 0x2C 0x20 0x6E 0x6F 0x20 0x62 - 0x6F 0x6E 0x65 0x73 0x20 0x61 0x72 0x65 - 0x20 0x62 0x72 0x6F 0x6B 0x65 0x6E 0x2C - 0x20 0x73 0x6F 0x20 0x68 0x65 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x73 0x20 0x68 0x69 - 0x73 0x20 0x73 0x65 0x61 0x72 0x63 0x68 - 0x2E 0x20 0x20 0x41 0x73 0x20 0x68 0x65 - 0x20 0x61 0x70 0x70 0x72 0x6F 0x61 0x63 - 0x68 0x65 0x73 0x20 0x61 0x20 0x77 0x6F - 0x6F 0x64 0x65 0x6E 0x20 0x62 0x72 0x69 - 0x64 0x67 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x68 0x65 0x61 0x72 0x73 0x20 0x6D 0x75 - 0x73 0x69 0x63 0x20 0x63 0x6F 0x6D 0x69 - 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x73 0x6F 0x6D 0x65 0x77 0x68 0x65 0x72 - 0x65 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 - 0x69 0x64 0x65 0x2E 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x70 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x68 0x65 - 0x20 0x66 0x69 0x6E 0x64 0x73 0x20 0x74 - 0x68 0x65 0x72 0x65 0x20 0x62 0x65 0x20 - 0x66 0x72 0x69 0x65 0x6E 0x64 0x6C 0x79 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x61 0x6E 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x61 0x62 0x6F - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x73 0x74 0x20 0x61 0x6E 0x74 0x68 - 0x72 0x6F 0x70 0x6F 0x6C 0x6F 0x67 0x69 - 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 22875 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A2= 0x0001537a - - -CHUNK('HTOP', _help_48544F50_A2, "") -SUBFILE -#line 22883 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A2, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE4 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x93 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8B 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A4, 0x0) - BYTE - 0x03 0x03 0x6D 0x65 0x74 0x65 0x6F 0x72 - 0x6F 0x6C 0x6F 0x67 0x79 0x0D 0x0A 0x52 - 0x61 0x6E 0x64 0x6F 0x6C 0x70 0x68 0x20 - 0x6D 0x6F 0x76 0x65 0x64 0x20 0x74 0x6F - 0x20 0x4C 0x6F 0x6E 0x64 0x6F 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x63 0x61 - 0x6D 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x70 0x6F 0x70 0x75 - 0x6C 0x61 0x72 0x20 0x77 0x65 0x61 0x74 - 0x68 0x65 0x72 0x20 0x6D 0x61 0x6E 0x20 - 0x69 0x6E 0x20 0x45 0x6E 0x67 0x6C 0x61 - 0x6E 0x64 0x2E 0x20 0x20 0x48 0x69 0x73 - 0x20 0x66 0x69 0x76 0x65 0x2D 0x64 0x61 - 0x79 0x20 0x66 0x6F 0x72 0x65 0x63 0x61 - 0x73 0x74 0x73 0x20 0x77 0x65 0x72 0x65 - 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 - 0x72 0x69 0x67 0x68 0x74 0x2E 0x20 0x53 - 0x6F 0x6F 0x6E 0x20 0x68 0x69 0x73 0x20 - 0x70 0x6F 0x70 0x75 0x6C 0x61 0x72 0x69 - 0x74 0x79 0x20 0x62 0x65 0x63 0x61 0x6D - 0x65 0x20 0x75 0x6E 0x62 0x65 0x61 0x72 - 0x61 0x62 0x6C 0x65 0x2E 0x20 0x20 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x6F 0x75 0x74 - 0x20 0x45 0x75 0x72 0x6F 0x70 0x65 0x20 - 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x6B 0x6E 0x6F 0x77 0x20 0x77 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x77 0x65 0x61 0x74 0x68 0x65 0x72 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x6C 0x69 0x6B 0x65 0x20 0x69 0x6E - 0x20 0x74 0x77 0x6F 0x20 0x77 0x65 0x65 - 0x6B 0x73 0x2C 0x20 0x69 0x6E 0x20 0x61 - 0x20 0x6D 0x6F 0x6E 0x74 0x68 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x65 0x76 0x65 0x6E - 0x20 0x69 0x6E 0x20 0x61 0x20 0x79 0x65 - 0x61 0x72 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x70 0x72 0x65 0x73 0x73 0x75 0x72 - 0x65 0x20 0x77 0x61 0x73 0x20 0x74 0x6F - 0x6F 0x20 0x6D 0x75 0x63 0x68 0x20 0x66 - 0x6F 0x72 0x20 0x52 0x61 0x6E 0x64 0x6F - 0x6C 0x70 0x68 0x2E 0x20 0x48 0x65 0x20 - 0x6C 0x65 0x66 0x74 0x20 0x4C 0x6F 0x6E - 0x64 0x6F 0x6E 0x2C 0x20 0x45 0x6E 0x67 - 0x6C 0x61 0x6E 0x64 0x20 0x61 0x6E 0x64 - 0x20 0x6D 0x6F 0x76 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x4E 0x65 0x77 0x20 0x4C 0x6F - 0x6E 0x64 0x6F 0x6E 0x2C 0x20 0x43 0x6F - 0x6E 0x6E 0x65 0x63 0x74 0x69 0x63 0x75 - 0x74 0x2E 0x20 0x0D 0x0A 0x41 0x66 0x72 - 0x61 0x69 0x64 0x20 0x6F 0x66 0x20 0x62 - 0x65 0x69 0x6E 0x67 0x20 0x72 0x65 0x63 - 0x6F 0x67 0x6E 0x69 0x7A 0x65 0x64 0x20 - 0x62 0x79 0x20 0x68 0x69 0x73 0x20 0x61 - 0x64 0x6D 0x69 0x72 0x65 0x72 0x73 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x55 - 0x6E 0x69 0x74 0x65 0x64 0x20 0x53 0x74 - 0x61 0x74 0x65 0x73 0x2C 0x20 0x65 0x61 - 0x63 0x68 0x20 0x64 0x61 0x79 0x20 0x68 - 0x65 0x20 0x70 0x72 0x65 0x74 0x65 0x6E - 0x64 0x65 0x64 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x20 0x64 0x69 0x66 0x66 0x65 0x72 - 0x65 0x6E 0x74 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x6F 0x76 0x65 0x64 0x20 0x70 - 0x72 0x65 0x74 0x65 0x6E 0x64 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 - 0x65 0x6C 0x73 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x73 0x6F 0x6F 0x6E 0x20 0x72 - 0x65 0x61 0x6C 0x69 0x7A 0x65 0x64 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x61 0x20 0x63 0x61 0x72 0x65 0x65 0x72 - 0x20 0x6F 0x75 0x74 0x20 0x6F 0x66 0x20 - 0x69 0x74 0x21 0x20 0x20 0x54 0x68 0x61 - 0x74 0x92 0x73 0x20 0x68 0x6F 0x77 0x20 - 0x52 0x61 0x6E 0x64 0x6F 0x6C 0x70 0x68 - 0x20 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 - 0x61 0x20 0x70 0x72 0x6F 0x66 0x65 0x73 - 0x73 0x69 0x6F 0x6E 0x61 0x6C 0x20 0x61 - 0x63 0x74 0x6F 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 23027 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A3= 0x0001537b - - -CHUNK('HTOP', _help_48544F50_A3, "") -SUBFILE -#line 23035 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A3, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_94=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_94=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB3 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_94=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_94, 0x0) - BYTE - 0x03 0x03 0x4D 0x72 0x2E 0x20 0x53 0x70 - 0x6F 0x6F 0x6B 0x79 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x46 0x61 0x74 0x68 0x65 0x72 - 0x0D 0x0A 0x52 0x61 0x6E 0x64 0x6F 0x6C - 0x70 0x68 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x66 0x61 0x74 0x68 - 0x65 0x72 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x6F 0x6F - 0x6C 0x65 0x73 0x74 0x20 0x64 0x61 0x64 - 0x97 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x6F 0x76 0x65 - 0x20 0x74 0x6F 0x20 0x68 0x61 0x76 0x65 - 0x20 0x68 0x69 0x6D 0x20 0x61 0x73 0x20 - 0x74 0x68 0x65 0x69 0x72 0x20 0x66 0x61 - 0x74 0x68 0x65 0x72 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x61 0x20 0x66 0x61 0x74 - 0x68 0x65 0x72 0x20 0x77 0x69 0x74 0x68 - 0x20 0x75 0x6E 0x62 0x65 0x6C 0x69 0x65 - 0x76 0x61 0x62 0x6C 0x65 0x20 0x6B 0x6E - 0x6F 0x77 0x6C 0x65 0x64 0x67 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x67 0x72 0x65 0x61 - 0x74 0x20 0x73 0x74 0x6F 0x72 0x69 0x65 - 0x73 0x20 0x74 0x6F 0x20 0x74 0x65 0x6C - 0x6C 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 - 0x68 0x69 0x73 0x20 0x74 0x72 0x69 0x70 - 0x73 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6C 0x64 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x66 0x61 0x74 0x68 0x65 - 0x72 0x20 0x77 0x68 0x6F 0x20 0x69 0x73 - 0x20 0x75 0x70 0x2D 0x74 0x6F 0x2D 0x64 - 0x61 0x74 0x65 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x64 0x6F 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x64 0x6F 0x6E 0x92 0x74 - 0x73 0x20 0x6F 0x66 0x20 0x66 0x61 0x73 - 0x68 0x69 0x6F 0x6E 0x2E 0x20 0x20 0x4D - 0x6F 0x73 0x74 0x20 0x6F 0x66 0x20 0x61 - 0x6C 0x6C 0x2C 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x66 0x61 0x74 0x68 0x65 0x72 - 0x20 0x77 0x68 0x6F 0x20 0x64 0x6F 0x65 - 0x73 0x6E 0x92 0x74 0x20 0x65 0x6D 0x62 - 0x61 0x72 0x72 0x61 0x73 0x73 0x20 0x68 - 0x69 0x73 0x20 0x6B 0x69 0x64 0x73 0x20 - 0x69 0x6E 0x20 0x66 0x72 0x6F 0x6E 0x74 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x2E 0x20 0x0D 0x0A 0x49 0x73 0x20 - 0x74 0x68 0x69 0x73 0x20 0x61 0x73 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x6F 0x20 - 0x6D 0x75 0x63 0x68 0x3F 0x20 0x43 0x6F - 0x75 0x6C 0x64 0x20 0x52 0x61 0x6E 0x64 - 0x6F 0x6C 0x70 0x68 0x20 0x6C 0x6F 0x73 - 0x65 0x20 0x68 0x69 0x73 0x20 0x93 0x63 - 0x6F 0x6F 0x6C 0x20 0x64 0x75 0x64 0x65 - 0x94 0x20 0x72 0x65 0x70 0x75 0x74 0x61 - 0x74 0x69 0x6F 0x6E 0x20 0x62 0x79 0x20 - 0x73 0x75 0x72 0x70 0x72 0x69 0x73 0x69 - 0x6E 0x67 0x20 0x68 0x69 0x73 0x20 0x6B - 0x69 0x64 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23164 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A4= 0x0001537c - - -CHUNK('HTOP', _help_48544F50_A4, "") -SUBFILE -#line 23172 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A4, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC6 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x63 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A5, 0x0) - BYTE - 0x03 0x03 0x42 0x6F 0x64 0x79 0x67 0x75 - 0x61 0x72 0x64 0x0D 0x0A 0x52 0x61 0x6E - 0x64 0x6F 0x6C 0x70 0x68 0x92 0x73 0x20 - 0x64 0x65 0x73 0x69 0x72 0x65 0x20 0x74 - 0x6F 0x20 0x62 0x65 0x63 0x6F 0x6D 0x65 - 0x20 0x61 0x20 0x62 0x6F 0x64 0x79 0x67 - 0x75 0x61 0x72 0x64 0x20 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x68 0x69 0x73 0x20 0x64 0x61 0x79 0x73 - 0x20 0x61 0x73 0x20 0x61 0x20 0x66 0x61 - 0x6D 0x6F 0x75 0x73 0x20 0x77 0x65 0x61 - 0x74 0x68 0x65 0x72 0x20 0x6D 0x61 0x6E - 0x20 0x62 0x61 0x63 0x6B 0x20 0x69 0x6E - 0x20 0x4C 0x6F 0x6E 0x64 0x6F 0x6E 0x2C - 0x20 0x45 0x6E 0x67 0x6C 0x61 0x6E 0x64 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x77 0x69 - 0x73 0x68 0x65 0x73 0x20 0x68 0x65 0x92 - 0x64 0x20 0x68 0x61 0x64 0x20 0x73 0x6F - 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x74 0x6F - 0x20 0x70 0x72 0x6F 0x74 0x65 0x63 0x74 - 0x20 0x68 0x69 0x6D 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x6F 0x73 0x65 0x20 0x61 - 0x6E 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 - 0x77 0x65 0x61 0x74 0x68 0x65 0x72 0x20 - 0x66 0x61 0x6E 0x73 0x2E 0x20 0x20 0x49 - 0x6D 0x61 0x67 0x69 0x6E 0x65 0x21 0x20 - 0x20 0x4E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x74 0x6F 0x20 0x70 0x75 0x73 0x68 0x20 - 0x79 0x6F 0x75 0x2C 0x20 0x73 0x74 0x65 - 0x70 0x20 0x6F 0x6E 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x74 0x6F 0x65 0x73 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x62 0x65 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x61 0x75 0x74 0x6F 0x67 0x72 0x61 - 0x70 0x68 0x2E 0x20 0x20 0x52 0x61 0x6E - 0x64 0x6F 0x6C 0x70 0x68 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x74 0x68 0x65 - 0x20 0x70 0x65 0x72 0x66 0x65 0x63 0x74 - 0x20 0x62 0x6F 0x64 0x79 0x67 0x75 0x61 - 0x72 0x64 0x20 0x73 0x68 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x6B 0x6E 0x6F - 0x77 0x6C 0x65 0x64 0x67 0x65 0x61 0x62 - 0x6C 0x65 0x97 0x68 0x65 0x20 0x73 0x68 - 0x6F 0x75 0x6C 0x64 0x20 0x6B 0x6E 0x6F - 0x77 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x73 0x68 0x6F - 0x72 0x74 0x63 0x75 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x61 0x76 0x6F 0x69 0x64 0x20 - 0x62 0x69 0x67 0x20 0x63 0x72 0x6F 0x77 - 0x64 0x73 0x2E 0x20 0x20 0x41 0x20 0x62 - 0x6F 0x64 0x79 0x67 0x75 0x61 0x72 0x64 - 0x20 0x73 0x68 0x6F 0x75 0x6C 0x64 0x20 - 0x61 0x6C 0x73 0x6F 0x20 0x62 0x65 0x20 - 0x77 0x69 0x73 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x62 0x72 0x61 0x76 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x68 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 0x62 - 0x6C 0x65 0x20 0x74 0x6F 0x20 0x73 0x74 - 0x61 0x79 0x20 0x61 0x6C 0x65 0x72 0x74 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x74 0x69 0x6D 0x65 0x3A 0x20 0x6E - 0x6F 0x20 0x6E 0x61 0x70 0x73 0x20 0x61 - 0x6C 0x6C 0x6F 0x77 0x65 0x64 0x2E 0x20 - 0x20 0x4F 0x6E 0x65 0x20 0x6D 0x6F 0x72 - 0x65 0x20 0x74 0x68 0x69 0x6E 0x67 0x3A - 0x20 0x6E 0x6F 0x20 0x67 0x6F 0x6F 0x64 - 0x20 0x62 0x6F 0x64 0x79 0x67 0x75 0x61 - 0x72 0x64 0x20 0x73 0x68 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x61 0x66 0x72 - 0x61 0x69 0x64 0x20 0x6F 0x66 0x20 0x68 - 0x65 0x69 0x67 0x68 0x74 0x73 0x2E 0x20 - 0x20 0x54 0x68 0x61 0x74 0x20 0x69 0x6E - 0x63 0x6C 0x75 0x64 0x65 0x73 0x20 0x64 - 0x75 0x72 0x69 0x6E 0x67 0x20 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x74 0x72 0x69 0x70 - 0x73 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 - 0x20 0x52 0x61 0x6E 0x64 0x6F 0x6C 0x70 - 0x68 0x20 0x66 0x6F 0x72 0x67 0x6F 0x74 - 0x20 0x74 0x68 0x61 0x74 0x20 0x61 0x20 - 0x70 0x65 0x72 0x66 0x65 0x63 0x74 0x20 - 0x62 0x6F 0x64 0x79 0x67 0x75 0x61 0x72 - 0x64 0x20 0x63 0x61 0x6E 0x92 0x74 0x20 - 0x6C 0x61 0x75 0x67 0x68 0x2E 0x20 0x20 - 0x43 0x6F 0x75 0x6C 0x64 0x20 0x74 0x68 - 0x69 0x73 0x20 0x70 0x75 0x74 0x20 0x73 - 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x92 0x73 - 0x20 0x6C 0x69 0x66 0x65 0x20 0x69 0x6E - 0x20 0x64 0x61 0x6E 0x67 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23322 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A5= 0x0001537d - - -CHUNK('HTOP', _help_48544F50_A5, "") -SUBFILE -#line 23330 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A5, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x80 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x82 0x02 0x00 0x01 - 0x01 0x00 0x00 0x00 0xAF 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x82 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A6, 0x0) - BYTE - 0x03 0x03 0x4C 0x69 0x66 0x65 0x20 0x49 - 0x6E 0x73 0x75 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x53 0x61 0x6C 0x65 0x73 0x6D 0x61 - 0x6E 0x0D 0x0A 0x52 0x61 0x6E 0x64 0x6F - 0x6C 0x70 0x68 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x64 0x61 0x79 0x20 0x77 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x20 0x73 0x75 0x70 0x65 0x72 0x68 - 0x65 0x72 0x6F 0x2E 0x20 0x20 0x57 0x68 - 0x61 0x74 0x20 0x64 0x6F 0x65 0x73 0x20 - 0x61 0x20 0x6C 0x69 0x66 0x65 0x20 0x69 - 0x6E 0x73 0x75 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 - 0x6E 0x20 0x68 0x61 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x64 0x6F 0x20 0x77 0x69 0x74 - 0x68 0x20 0x73 0x75 0x70 0x65 0x72 0x68 - 0x65 0x72 0x6F 0x65 0x73 0x2C 0x20 0x79 - 0x6F 0x75 0x20 0x6D 0x61 0x79 0x20 0x61 - 0x73 0x6B 0x3F 0x20 0x20 0x57 0x65 0x27 - 0x72 0x65 0x20 0x6E 0x6F 0x74 0x20 0x74 - 0x61 0x6C 0x6B 0x69 0x6E 0x67 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x6F 0x72 0x64 0x69 0x6E 0x61 - 0x72 0x79 0x20 0x64 0x6F 0x6F 0x72 0x2D - 0x74 0x6F 0x2D 0x64 0x6F 0x6F 0x72 0x20 - 0x73 0x61 0x6C 0x65 0x73 0x6D 0x61 0x6E - 0x2E 0x20 0x20 0x57 0x65 0x27 0x72 0x65 - 0x20 0x74 0x61 0x6C 0x6B 0x69 0x6E 0x67 - 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 0x73 - 0x65 0x6C 0x6C 0x69 0x6E 0x67 0x20 0x69 - 0x6E 0x73 0x75 0x72 0x61 0x6E 0x63 0x65 - 0x20 0x74 0x6F 0x20 0x61 0x6E 0x79 0x6F - 0x6E 0x65 0x2C 0x20 0x61 0x6E 0x79 0x77 - 0x68 0x65 0x72 0x65 0x2C 0x20 0x61 0x6E - 0x79 0x74 0x69 0x6D 0x65 0x2E 0x20 0x20 - 0x59 0x6F 0x75 0x20 0x63 0x6F 0x75 0x6C - 0x64 0x20 0x62 0x65 0x20 0x73 0x6C 0x69 - 0x70 0x70 0x69 0x6E 0x67 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x66 0x6C 0x6F - 0x6F 0x72 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 - 0x70 0x61 0x73 0x73 0x69 0x6E 0x67 0x20 - 0x6F 0x75 0x74 0x20 0x61 0x66 0x74 0x65 - 0x72 0x20 0x61 0x20 0x6D 0x65 0x61 0x6C - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x64 0x69 - 0x6E 0x65 0x72 0x2C 0x20 0x6F 0x72 0x20 - 0x66 0x61 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x6F 0x66 0x66 0x20 0x61 0x20 0x62 0x72 - 0x69 0x64 0x67 0x65 0x2E 0x20 0x20 0x44 - 0x6F 0x6E 0x92 0x74 0x20 0x77 0x6F 0x72 - 0x72 0x79 0x21 0x20 0x20 0x52 0x61 0x6E - 0x64 0x6F 0x6C 0x70 0x68 0x2C 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x6C 0x69 0x66 0x65 - 0x20 0x69 0x6E 0x73 0x75 0x72 0x61 0x6E - 0x63 0x65 0x20 0x73 0x61 0x6C 0x65 0x73 - 0x6D 0x61 0x6E 0x2C 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x69 0x6E 0x74 0x65 0x72 0x72 - 0x75 0x70 0x74 0x20 0x79 0x6F 0x75 0x72 - 0x20 0x66 0x61 0x6C 0x6C 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x69 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x74 0x6F 0x20 0x6F 0x66 - 0x66 0x65 0x72 0x20 0x79 0x6F 0x75 0x20 - 0x74 0x68 0x65 0x20 0x62 0x65 0x73 0x74 - 0x20 0x63 0x6F 0x6D 0x62 0x6F 0x20 0x6C - 0x69 0x66 0x65 0x20 0x69 0x6E 0x73 0x75 - 0x72 0x61 0x6E 0x63 0x65 0x20 0x70 0x61 - 0x63 0x6B 0x61 0x67 0x65 0x2E 0x20 0x20 - 0x57 0x68 0x69 0x63 0x68 0x20 0x69 0x73 - 0x2C 0x20 0x62 0x79 0x20 0x74 0x68 0x65 - 0x20 0x77 0x61 0x79 0x2C 0x20 0x61 0x6C - 0x6D 0x6F 0x73 0x74 0x20 0x70 0x65 0x72 - 0x66 0x65 0x63 0x74 0x2E 0x20 0x20 0x54 - 0x68 0x65 0x72 0x65 0x92 0x73 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x6F 0x6E 0x65 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x61 0x74 0x20 0x69 0x73 0x6E 0x92 0x74 - 0x20 0x63 0x6F 0x76 0x65 0x72 0x65 0x64 - 0x2E 0x20 0x0D 0x0A 0x49 0x73 0x20 0x69 - 0x74 0x20 0x74 0x68 0x65 0x20 0x70 0x6C - 0x61 0x6E 0x65 0x20 0x63 0x72 0x61 0x73 - 0x68 0x20 0x6F 0x72 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x75 0x67 0x68 0x69 0x6E - 0x67 0x20 0x61 0x74 0x74 0x61 0x63 0x6B - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23480 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A6= 0x0001537e - - -CHUNK('HTOP', _help_48544F50_A6, "") -SUBFILE -#line 23488 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A6, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1A 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x00 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x07 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A7, 0x0) - BYTE - 0x03 0x03 0x73 0x65 0x6C 0x66 0x2D 0x64 - 0x65 0x66 0x65 0x6E 0x73 0x65 0x20 0x65 - 0x78 0x70 0x65 0x72 0x74 0x0D 0x0A 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x64 - 0x69 0x64 0x6E 0x92 0x74 0x20 0x70 0x6C - 0x61 0x6E 0x20 0x74 0x6F 0x20 0x62 0x65 - 0x20 0x61 0x20 0x6B 0x61 0x72 0x61 0x74 - 0x65 0x20 0x74 0x65 0x61 0x63 0x68 0x65 - 0x72 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x67 0x6F 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 - 0x61 0x6E 0x20 0x65 0x6E 0x67 0x69 0x6E - 0x65 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x65 0x73 0x69 0x67 0x6E 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x77 0x61 0x6C - 0x6C 0x20 0x6F 0x66 0x20 0x43 0x68 0x69 - 0x6E 0x61 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x73 0x68 0x65 - 0x20 0x6D 0x65 0x74 0x20 0x74 0x68 0x69 - 0x73 0x20 0x67 0x75 0x79 0x20 0x69 0x6E - 0x20 0x73 0x63 0x68 0x6F 0x6F 0x6C 0x20 - 0x77 0x68 0x6F 0x20 0x74 0x61 0x75 0x67 - 0x68 0x74 0x20 0x68 0x65 0x72 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x2E 0x20 0x20 - 0x50 0x72 0x65 0x74 0x74 0x79 0x20 0x73 - 0x6F 0x6F 0x6E 0x20 0x73 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x61 0x74 0x20 0x68 0x69 0x6D 0x2C 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x20 0x74 - 0x68 0x6F 0x75 0x67 0x68 0x74 0x20 0x6B - 0x61 0x72 0x61 0x74 0x65 0x20 0x6D 0x75 - 0x73 0x74 0x20 0x62 0x65 0x20 0x68 0x65 - 0x72 0x20 0x64 0x65 0x73 0x74 0x69 0x6E - 0x79 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x73 0x68 0x65 0x20 0x68 0x61 0x73 0x20 - 0x6D 0x61 0x6E 0x79 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x74 0x61 0x6C 0x65 0x6E - 0x74 0x73 0x2E 0x0D 0x0A 0x52 0x6F 0x78 - 0x61 0x6E 0x6E 0x65 0x20 0x6C 0x65 0x61 - 0x72 0x6E 0x65 0x64 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 - 0x20 0x6D 0x65 0x64 0x69 0x63 0x69 0x6E - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x20 0x68 - 0x65 0x72 0x20 0x67 0x72 0x61 0x6E 0x64 - 0x66 0x61 0x74 0x68 0x65 0x72 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x6B 0x6E 0x6F - 0x77 0x73 0x20 0x68 0x6F 0x77 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x72 0x61 0x70 0x65 - 0x20 0x72 0x68 0x69 0x6E 0x6F 0x63 0x65 - 0x72 0x6F 0x73 0x20 0x68 0x6F 0x72 0x6E - 0x73 0x20 0x66 0x6F 0x72 0x20 0x66 0x65 - 0x76 0x65 0x72 0x20 0x6D 0x65 0x64 0x69 - 0x63 0x69 0x6E 0x65 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 0x69 - 0x67 0x65 0x72 0x2D 0x62 0x6F 0x6E 0x65 - 0x20 0x77 0x69 0x6E 0x65 0x20 0x66 0x6F - 0x72 0x20 0x61 0x63 0x68 0x65 0x73 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x61 0x69 0x6E - 0x73 0x2E 0x20 0x20 0x53 0x6F 0x6D 0x65 - 0x74 0x69 0x6D 0x65 0x73 0x20 0x73 0x68 - 0x65 0x20 0x75 0x73 0x65 0x73 0x20 0x74 - 0x68 0x69 0x73 0x20 0x73 0x74 0x75 0x66 - 0x66 0x20 0x6F 0x6E 0x20 0x68 0x65 0x72 - 0x20 0x68 0x61 0x69 0x72 0x2E 0x20 0x0D - 0x0A 0x53 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x73 0x63 0x72 0x61 0x70 0x69 0x6E - 0x67 0x20 0x61 0x20 0x72 0x68 0x69 0x6E - 0x6F 0x20 0x68 0x6F 0x72 0x6E 0x20 0x6F - 0x6E 0x65 0x20 0x64 0x61 0x79 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 0x6C - 0x6B 0x65 0x64 0x20 0x75 0x70 0x20 0x62 - 0x65 0x68 0x69 0x6E 0x64 0x20 0x68 0x65 - 0x72 0x20 0x76 0x65 0x72 0x79 0x20 0x71 - 0x75 0x69 0x65 0x74 0x6C 0x79 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x20 0x6A 0x75 0x6D - 0x70 0x65 0x64 0x2C 0x20 0x74 0x68 0x72 - 0x65 0x77 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E - 0x20 0x61 0x73 0x6B 0x65 0x64 0x20 0x77 - 0x68 0x6F 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x2E 0x20 0x20 0x4D 0x63 0x5A 0x65 - 0x65 0x20 0x68 0x69 0x72 0x65 0x64 0x20 - 0x68 0x65 0x72 0x20 0x6F 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x73 0x70 0x6F 0x74 0x2C - 0x20 0x77 0x68 0x69 0x63 0x68 0x2C 0x20 - 0x61 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x6D 0x6F 0x6D 0x65 0x6E 0x74 0x2C 0x20 - 0x68 0x61 0x70 0x70 0x65 0x6E 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x6F 0x75 0x6E - 0x64 0x2E -ENDCHUNK - - -ENDCHUNK -#line 23646 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A7= 0x0001537f - - -CHUNK('HTOP', _help_48544F50_A7, "") -SUBFILE -#line 23654 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A7, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x25 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x55 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A8, 0x0) - BYTE - 0x03 0x03 0x48 0x61 0x69 0x72 0x64 0x72 - 0x65 0x73 0x73 0x65 0x72 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x77 0x61 0x79 0x20 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x66 - 0x69 0x67 0x75 0x72 0x65 0x73 0x20 0x69 - 0x74 0x2C 0x20 0x73 0x68 0x65 0x92 0x64 - 0x20 0x62 0x65 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6F 0x6C 0x65 0x73 0x74 0x20 - 0x73 0x70 0x6F 0x6F 0x6B 0x79 0x20 0x68 - 0x61 0x69 0x72 0x64 0x72 0x65 0x73 0x73 - 0x65 0x72 0x20 0x4D 0x63 0x5A 0x65 0x65 - 0x20 0x68 0x61 0x73 0x20 0x65 0x76 0x65 - 0x72 0x20 0x73 0x65 0x65 0x6E 0x2E 0x20 - 0x20 0x49 0x6E 0x20 0x74 0x68 0x69 0x73 - 0x20 0x72 0x6F 0x6C 0x65 0x2C 0x20 0x73 - 0x68 0x65 0x27 0x64 0x20 0x61 0x70 0x70 - 0x65 0x61 0x72 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x20 0x61 0x20 0x68 0x61 0x69 0x72 - 0x64 0x72 0x65 0x73 0x73 0x65 0x72 0x20 - 0x62 0x75 0x74 0x20 0x73 0x68 0x65 0x92 - 0x64 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 - 0x20 0x77 0x61 0x6E 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6A 0x6F 0x62 0x20 0x6A 0x75 - 0x73 0x74 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x65 - 0x76 0x69 0x6C 0x20 0x6F 0x77 0x6E 0x65 - 0x72 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 - 0x20 0x73 0x70 0x6F 0x6F 0x6B 0x20 0x68 - 0x6F 0x75 0x73 0x65 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 0x68 - 0x69 0x73 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x68 - 0x69 0x73 0x20 0x68 0x61 0x69 0x72 0x20 - 0x73 0x6F 0x20 0x73 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C - 0x6F 0x6F 0x6B 0x6F 0x75 0x74 0x20 0x66 - 0x6F 0x72 0x20 0x74 0x68 0x61 0x74 0x20 - 0x63 0x72 0x61 0x7A 0x79 0x20 0x70 0x68 - 0x61 0x6E 0x74 0x6F 0x6D 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x2E 0x20 0x20 0x57 0x68 - 0x6F 0x20 0x65 0x76 0x65 0x72 0x20 0x68 - 0x65 0x61 0x72 0x64 0x20 0x6F 0x66 0x20 - 0x61 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x2C 0x20 0x61 0x6E 0x79 0x77 0x61 - 0x79 0x3F 0x20 0x20 0x53 0x68 0x65 0x92 - 0x64 0x20 0x70 0x72 0x6F 0x76 0x65 0x20 - 0x74 0x68 0x61 0x74 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x61 0x6E 0x20 0x6F 0x72 0x64 0x69 0x6E - 0x61 0x72 0x79 0x20 0x67 0x75 0x79 0x2E - 0x20 0x53 0x6F 0x20 0x77 0x68 0x61 0x74 - 0x20 0x69 0x66 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x64 - 0x72 0x6F 0x70 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x66 0x6C 0x6F 0x6F 0x72 0x20 0x61 0x6E - 0x64 0x20 0x77 0x61 0x6C 0x6B 0x20 0x74 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x77 - 0x61 0x6C 0x6C 0x73 0x3F 0x20 0x20 0x52 - 0x6F 0x78 0x61 0x6E 0x6E 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x61 0x79 - 0x20 0x68 0x69 0x6D 0x20 0x6F 0x75 0x74 - 0x20 0x77 0x69 0x74 0x68 0x20 0x6F 0x6E - 0x65 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x6B 0x69 0x63 0x6B 0x20 0x62 0x65 - 0x66 0x6F 0x72 0x65 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x70 0x75 0x6C 0x6C 0x69 0x6E - 0x67 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x68 0x69 0x73 0x20 0x73 0x74 0x75 - 0x6E 0x74 0x73 0x2E 0x20 0x0D 0x0A 0x54 - 0x68 0x65 0x20 0x6F 0x6E 0x6C 0x79 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x20 0x52 0x6F - 0x78 0x61 0x6E 0x6E 0x65 0x20 0x64 0x69 - 0x64 0x6E 0x92 0x74 0x20 0x63 0x6F 0x75 - 0x6E 0x74 0x20 0x6F 0x6E 0x20 0x69 0x73 - 0x20 0x74 0x68 0x61 0x74 0x20 0x5A 0x61 - 0x63 0x6B 0x20 0x68 0x61 0x73 0x20 0x6C - 0x65 0x61 0x72 0x6E 0x65 0x64 0x20 0x61 - 0x20 0x6E 0x65 0x77 0x20 0x74 0x72 0x69 - 0x63 0x6B 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x63 0x61 0x6E 0x20 0x73 0x68 0x72 0x69 - 0x6E 0x6B 0x2E 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x52 0x6F - 0x78 0x61 0x6E 0x6E 0x65 0x20 0x66 0x69 - 0x67 0x68 0x74 0x20 0x61 0x20 0x6D 0x69 - 0x64 0x67 0x65 0x74 0x20 0x77 0x68 0x6F - 0x20 0x63 0x61 0x6E 0x20 0x66 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x3F 0x20 0x20 0x43 0x61 - 0x6E 0x20 0x74 0x68 0x61 0x74 0x20 0x73 - 0x74 0x75 0x66 0x66 0x20 0x73 0x68 0x65 - 0x20 0x70 0x75 0x74 0x73 0x20 0x6F 0x6E - 0x20 0x68 0x65 0x72 0x20 0x68 0x61 0x69 - 0x72 0x20 0x68 0x65 0x6C 0x70 0x20 0x68 - 0x65 0x72 0x20 0x6F 0x75 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23816 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A8= 0x00015380 - - -CHUNK('HTOP', _help_48544F50_A8, "") -SUBFILE -#line 23824 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A8, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_99=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_99=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_99, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x52 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_99=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_99, 0x0) - BYTE - 0x03 0x03 0x55 0x6E 0x64 0x65 0x72 0x63 - 0x6F 0x76 0x65 0x72 0x20 0x43 0x6F 0x70 - 0x0D 0x0A 0x49 0x6E 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x72 0x6F 0x6C - 0x65 0x20 0x52 0x6F 0x78 0x61 0x6E 0x6E - 0x65 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 0x2C - 0x20 0x73 0x68 0x65 0x92 0x64 0x20 0x62 - 0x65 0x20 0x61 0x6E 0x20 0x75 0x6E 0x64 - 0x65 0x72 0x63 0x6F 0x76 0x65 0x72 0x20 - 0x63 0x6F 0x70 0x20 0x61 0x63 0x74 0x69 - 0x6E 0x67 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x61 0x20 0x77 0x61 0x69 0x74 0x72 0x65 - 0x73 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x77 0x62 0x6F 0x79 - 0x20 0x63 0x61 0x66 0xE9 0x2E 0x20 0x20 - 0x48 0x65 0x72 0x20 0x6D 0x69 0x73 0x73 - 0x69 0x6F 0x6E 0x20 0x69 0x73 0x20 0x74 - 0x6F 0x20 0x63 0x61 0x74 0x63 0x68 0x20 - 0x5A 0x61 0x63 0x6B 0x2C 0x20 0x74 0x68 - 0x65 0x20 0x73 0x6C 0x69 0x70 0x70 0x65 - 0x72 0x79 0x20 0x62 0x61 0x64 0x20 0x67 - 0x75 0x79 0x20 0x77 0x68 0x6F 0x20 0x73 - 0x74 0x6F 0x6C 0x65 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x6E 0x65 0x74 0x20 - 0x65 0x61 0x72 0x74 0x68 0x20 0x61 0x6E - 0x64 0x20 0x69 0x73 0x20 0x6B 0x65 0x65 - 0x70 0x69 0x6E 0x67 0x20 0x69 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x74 0x65 0x6E - 0x74 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x43 0x68 0x69 - 0x6E 0x65 0x73 0x65 0x20 0x72 0x65 0x73 - 0x74 0x61 0x75 0x72 0x61 0x6E 0x74 0x2E - 0x20 0x20 0x57 0x69 0x74 0x68 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x64 0x61 0x79 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x65 0x61 0x72 0x74 0x68 0x20 - 0x69 0x73 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x74 0x65 0x6E 0x74 0x2C 0x20 - 0x69 0x74 0x20 0x73 0x68 0x72 0x69 0x6E - 0x6B 0x73 0x20 0x61 0x20 0x6C 0x69 0x74 - 0x74 0x6C 0x65 0x20 0x6D 0x6F 0x72 0x65 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x74 0x68 0x65 0x20 0x74 0x65 0x6E 0x74 - 0x20 0x69 0x73 0x20 0x67 0x75 0x61 0x72 - 0x64 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x68 0x69 0x73 0x73 0x69 0x6E 0x67 - 0x20 0x63 0x61 0x74 0x20 0x74 0x68 0x61 - 0x74 0x20 0x67 0x72 0x6F 0x77 0x73 0x20 - 0x74 0x6F 0x20 0x61 0x20 0x68 0x75 0x67 - 0x65 0x20 0x73 0x69 0x7A 0x65 0x20 0x77 - 0x68 0x65 0x6E 0x65 0x76 0x65 0x72 0x20 - 0x69 0x74 0x20 0x73 0x65 0x65 0x73 0x20 - 0x61 0x20 0x63 0x6F 0x70 0x2C 0x20 0x65 - 0x73 0x70 0x65 0x63 0x69 0x61 0x6C 0x6C - 0x79 0x20 0x61 0x20 0x43 0x68 0x69 0x6E - 0x65 0x73 0x65 0x20 0x66 0x65 0x6D 0x61 - 0x6C 0x65 0x20 0x63 0x6F 0x70 0x2E 0x20 - 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x52 0x6F 0x78 0x61 0x6E 0x6E - 0x65 0x20 0x63 0x61 0x70 0x74 0x75 0x72 - 0x65 0x20 0x5A 0x61 0x63 0x6B 0x3F 0x20 - 0x20 0x43 0x61 0x6E 0x20 0x73 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x70 0x61 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x74 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x65 - 0x61 0x72 0x74 0x68 0x3F -ENDCHUNK - - -ENDCHUNK -#line 23953 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_A9= 0x00015381 - - -CHUNK('HTOP', _help_48544F50_A9, "") -SUBFILE -#line 23961 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_A9, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AF=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_A9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x1E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AF=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8B 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AF=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AF, 0x0) - BYTE - 0x03 0x03 0x43 0x6F 0x63 0x6B 0x61 0x74 - 0x6F 0x6F 0x20 0x57 0x61 0x74 0x63 0x68 - 0x65 0x72 0x0D 0x0A 0x54 0x68 0x61 0x6E - 0x6B 0x73 0x20 0x74 0x6F 0x20 0x6B 0x61 - 0x72 0x61 0x74 0x65 0x2C 0x20 0x52 0x6F - 0x78 0x61 0x6E 0x6E 0x65 0x20 0x69 0x73 - 0x20 0x69 0x6E 0x20 0x67 0x72 0x65 0x61 - 0x74 0x20 0x73 0x68 0x61 0x70 0x65 0x2E - 0x20 0x20 0x53 0x68 0x65 0x27 0x64 0x20 - 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x70 0x61 0x73 0x73 0x20 0x61 0x6C 0x6F - 0x6E 0x67 0x20 0x68 0x65 0x72 0x20 0x68 - 0x65 0x61 0x6C 0x74 0x68 0x79 0x20 0x68 - 0x61 0x62 0x69 0x74 0x73 0x20 0x74 0x6F - 0x20 0x61 0x75 0x64 0x69 0x65 0x6E 0x63 - 0x65 0x73 0x20 0x65 0x76 0x65 0x72 0x79 - 0x77 0x68 0x65 0x72 0x65 0x20 0x62 0x79 - 0x20 0x73 0x74 0x61 0x72 0x72 0x69 0x6E - 0x67 0x20 0x61 0x73 0x20 0x61 0x20 0x6D - 0x61 0x6C 0x6C 0x20 0x77 0x61 0x6C 0x6B - 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 0x63 - 0x6F 0x63 0x6B 0x61 0x74 0x6F 0x6F 0x20 - 0x77 0x61 0x74 0x63 0x68 0x65 0x72 0x2E - 0x20 0x20 0x54 0x68 0x65 0x20 0x6D 0x61 - 0x6C 0x6C 0x20 0x69 0x73 0x20 0x64 0x65 - 0x73 0x65 0x72 0x74 0x65 0x64 0x2C 0x20 - 0x73 0x6F 0x20 0x65 0x76 0x65 0x72 0x79 - 0x20 0x6D 0x6F 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x52 0x6F 0x78 0x61 0x6E 0x6E 0x65 - 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 0x73 - 0x70 0x65 0x65 0x64 0x2D 0x77 0x61 0x6C - 0x6B 0x20 0x70 0x61 0x73 0x74 0x20 0x74 - 0x68 0x65 0x20 0x73 0x68 0x6F 0x70 0x73 - 0x2C 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x65 0x20 0x6B 0x61 0x72 0x61 0x74 - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x70 - 0x72 0x65 0x74 0x65 0x6E 0x64 0x20 0x74 - 0x6F 0x20 0x77 0x61 0x74 0x63 0x68 0x20 - 0x63 0x6F 0x63 0x6B 0x61 0x74 0x6F 0x6F - 0x73 0x2E 0x20 0x20 0x53 0x68 0x65 0x20 - 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x6C - 0x61 0x74 0x65 0x73 0x74 0x20 0x61 0x6E - 0x64 0x20 0x67 0x72 0x65 0x61 0x74 0x65 - 0x73 0x74 0x20 0x72 0x6F 0x63 0x6B 0x65 - 0x74 0x20 0x69 0x73 0x20 0x6F 0x6E 0x20 - 0x64 0x69 0x73 0x70 0x6C 0x61 0x79 0x20 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x6D - 0x61 0x6C 0x6C 0x2E 0x20 0x52 0x6F 0x78 - 0x61 0x6E 0x6E 0x65 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x62 0x6F - 0x72 0x72 0x6F 0x77 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 0x20 - 0x74 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x68 0x65 0x72 0x20 0x68 0x69 0x70 0x70 - 0x69 0x65 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x20 0x4A 0x65 0x72 0x65 0x6D 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x72 0x61 - 0x73 0x68 0x65 0x64 0x20 0x68 0x69 0x73 - 0x20 0x68 0x6F 0x74 0x2D 0x61 0x69 0x72 - 0x20 0x62 0x61 0x6C 0x6C 0x6F 0x6F 0x6E - 0x20 0x73 0x6F 0x6D 0x65 0x77 0x68 0x65 - 0x72 0x65 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x61 0x20 0x64 0x65 0x73 0x65 0x72 0x74 - 0x65 0x64 0x20 0x63 0x61 0x62 0x69 0x6E - 0x20 0x69 0x6E 0x20 0x61 0x20 0x72 0x65 - 0x6D 0x6F 0x74 0x65 0x20 0x6D 0x6F 0x75 - 0x6E 0x74 0x61 0x69 0x6E 0x20 0x6A 0x75 - 0x6E 0x67 0x6C 0x65 0x2E 0x20 0x20 0x4A - 0x65 0x72 0x65 0x6D 0x79 0x20 0x68 0x61 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x73 - 0x65 0x6E 0x64 0x69 0x6E 0x67 0x20 0x6F - 0x75 0x74 0x20 0x72 0x61 0x64 0x69 0x6F - 0x20 0x73 0x69 0x67 0x6E 0x61 0x6C 0x73 - 0x20 0x66 0x6F 0x72 0x20 0x77 0x65 0x65 - 0x6B 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 0x68 - 0x61 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 - 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x61 0x72 0x65 - 0x61 0x2E 0x20 0x0D 0x0A 0x52 0x6F 0x78 - 0x61 0x6E 0x6E 0x65 0x20 0x69 0x73 0x20 - 0x61 0x6C 0x72 0x65 0x61 0x64 0x79 0x20 - 0x61 0x20 0x6B 0x61 0x72 0x61 0x74 0x65 - 0x20 0x63 0x68 0x61 0x6D 0x70 0x69 0x6F - 0x6E 0x20 0x61 0x6E 0x64 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x66 0x65 0x73 0x73 0x69 - 0x6F 0x6E 0x61 0x6C 0x20 0x6D 0x61 0x6C - 0x6C 0x20 0x77 0x61 0x6C 0x6B 0x65 0x72 - 0x97 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x62 0x65 0x63 0x6F 0x6D 0x65 - 0x20 0x74 0x68 0x65 0x20 0x66 0x69 0x72 - 0x73 0x74 0x20 0x66 0x65 0x6D 0x61 0x6C - 0x65 0x20 0x72 0x6F 0x63 0x6B 0x65 0x74 - 0x20 0x72 0x65 0x73 0x63 0x75 0x65 0x20 - 0x70 0x65 0x72 0x73 0x6F 0x6E 0x3F 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x68 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 - 0x65 0x20 0x6C 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x72 0x6F 0x63 0x6B 0x65 - 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 0x6A - 0x75 0x6E 0x67 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x66 0x69 0x6E 0x64 0x20 0x4A 0x65 - 0x72 0x65 0x6D 0x79 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 24127 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AA= 0x00015382 - - -CHUNK('HTOP', _help_48544F50_AA, "") -SUBFILE -#line 24135 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AA, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_A9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_A9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_A9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xFD 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC4 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_A9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_A9, 0x0) - BYTE - 0x03 0x03 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x0D 0x0A 0x53 0x61 0x6C 0x76 0x61 - 0x64 0x6F 0x72 0x20 0x68 0x61 0x73 0x20 - 0x61 0x20 0x73 0x65 0x63 0x72 0x65 0x74 - 0x2E 0x20 0x48 0x65 0x20 0x63 0x61 0x6E - 0x20 0x66 0x6C 0x79 0x2E 0x20 0x4E 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x73 0x20 0x66 0x72 0x69 0x65 0x6E 0x64 - 0x73 0x20 0x6B 0x6E 0x6F 0x77 0x2E 0x20 - 0x48 0x65 0x20 0x64 0x69 0x64 0x6E 0x92 - 0x74 0x20 0x65 0x76 0x65 0x6E 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x68 0x65 0x20 0x77 0x61 0x73 - 0x20 0x61 0x62 0x6F 0x75 0x74 0x20 0x31 - 0x30 0x20 0x61 0x6E 0x64 0x20 0x66 0x65 - 0x6C 0x6C 0x20 0x6F 0x66 0x66 0x20 0x61 - 0x20 0x62 0x75 0x6E 0x6B 0x20 0x62 0x65 - 0x64 0x2E 0x20 0x48 0x65 0x20 0x77 0x61 - 0x73 0x20 0x73 0x6F 0x20 0x61 0x66 0x72 - 0x61 0x69 0x64 0x20 0x6F 0x66 0x20 0x68 - 0x69 0x74 0x74 0x69 0x6E 0x67 0x20 0x74 - 0x68 0x65 0x20 0x66 0x6C 0x6F 0x6F 0x72 - 0x2C 0x20 0x68 0x65 0x20 0x93 0x74 0x68 - 0x6F 0x75 0x67 0x68 0x74 0x94 0x20 0x68 - 0x69 0x6D 0x73 0x65 0x6C 0x66 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x66 0x6C 0x79 0x69 - 0x6E 0x67 0x2E 0x20 0x54 0x68 0x65 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x70 0x72 0x6F - 0x62 0x6C 0x65 0x6D 0x20 0x69 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x53 0x61 0x6C - 0x76 0x61 0x64 0x6F 0x72 0x20 0x63 0x61 - 0x6E 0x92 0x74 0x20 0x66 0x6C 0x79 0x20 - 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 0x74 - 0x97 0x73 0x6F 0x20 0x68 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x6F 0x20 0x70 0x72 - 0x61 0x63 0x74 0x69 0x63 0x65 0x20 0x64 - 0x75 0x72 0x69 0x6E 0x67 0x20 0x74 0x68 - 0x65 0x20 0x64 0x61 0x79 0x2E 0x20 0x4F - 0x6E 0x65 0x20 0x6D 0x6F 0x72 0x6E 0x69 - 0x6E 0x67 0x2C 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x20 0x70 0x72 0x61 0x63 0x74 - 0x69 0x63 0x69 0x6E 0x67 0x20 0x68 0x69 - 0x73 0x20 0x73 0x6C 0x6F 0x77 0x20 0x66 - 0x6C 0x69 0x67 0x68 0x74 0x20 0x70 0x61 - 0x74 0x74 0x65 0x72 0x6E 0x20 0x61 0x6E - 0x64 0x20 0x66 0x6C 0x65 0x77 0x20 0x6F - 0x76 0x65 0x72 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x73 0x65 0x74 0x2E - 0x20 0x54 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x73 0x20 0x63 0x61 0x75 - 0x67 0x68 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x64 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 - 0x20 0x6D 0x6F 0x74 0x69 0x6F 0x6E 0x65 - 0x64 0x20 0x68 0x69 0x6D 0x20 0x64 0x6F - 0x77 0x6E 0x2E 0x20 0x0D 0x0A 0x4E 0x65 - 0x65 0x64 0x6C 0x65 0x73 0x73 0x20 0x74 - 0x6F 0x20 0x73 0x61 0x79 0x2C 0x20 0x53 - 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 0x20 - 0x62 0x65 0x63 0x61 0x6D 0x65 0x20 0x53 - 0x70 0x61 0x69 0x6E 0x92 0x73 0x20 0x6E - 0x65 0x77 0x65 0x73 0x74 0x20 0x6B 0x69 - 0x64 0x20 0x73 0x74 0x61 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 24260 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AB= 0x00015383 - - -CHUNK('HTOP', _help_48544F50_AB, "") -SUBFILE -#line 24268 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AB, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_16=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_16=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x75 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xDA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_16=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_16, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x5A 0x6F - 0x72 0x72 0x6F 0x0D 0x0A 0x53 0x61 0x6C - 0x76 0x61 0x64 0x6F 0x72 0x20 0x74 0x68 - 0x69 0x6E 0x6B 0x73 0x20 0x68 0x65 0x92 - 0x64 0x20 0x6D 0x61 0x6B 0x65 0x20 0x61 - 0x20 0x67 0x72 0x65 0x61 0x74 0x20 0x5A - 0x6F 0x72 0x72 0x6F 0x20 0x54 0x72 0x69 - 0x63 0x6B 0x2D 0x6F 0x72 0x2D 0x54 0x72 - 0x65 0x61 0x74 0x65 0x72 0x2E 0x20 0x48 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x6F 0x6F 0x6B 0x20 0x6C 0x69 0x6B - 0x65 0x20 0x61 0x6E 0x79 0x20 0x6F 0x72 - 0x64 0x69 0x6E 0x61 0x72 0x79 0x20 0x74 - 0x65 0x65 0x6E 0x61 0x67 0x65 0x72 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x5A 0x6F 0x72 - 0x72 0x6F 0x20 0x63 0x6F 0x73 0x74 0x75 - 0x6D 0x65 0x2C 0x20 0x75 0x6E 0x74 0x69 - 0x6C 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x77 0x61 0x73 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x2E 0x20 0x54 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x92 0x64 0x20 0x66 - 0x6C 0x79 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x72 0x65 0x73 0x63 0x75 0x65 - 0x2E 0x20 0x42 0x75 0x74 0x20 0x77 0x68 - 0x61 0x74 0x20 0x53 0x61 0x6C 0x76 0x61 - 0x64 0x6F 0x72 0x20 0x68 0x61 0x73 0x6E - 0x92 0x74 0x20 0x74 0x68 0x6F 0x75 0x67 - 0x68 0x74 0x20 0x61 0x62 0x6F 0x75 0x74 - 0x20 0x69 0x73 0x20 0x74 0x68 0x65 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x6F 0x66 0x20 - 0x64 0x61 0x79 0x2E 0x20 0x53 0x6F 0x20 - 0x77 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 - 0x67 0x65 0x74 0x73 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x72 0x65 0x65 - 0x70 0x79 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x20 0x64 0x6F 0x77 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x73 0x74 0x72 0x65 0x65 0x74 - 0x2C 0x20 0x6E 0x69 0x67 0x68 0x74 0x20 - 0x69 0x73 0x20 0x62 0x65 0x67 0x69 0x6E - 0x6E 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 - 0x66 0x61 0x6C 0x6C 0x20 0x61 0x73 0x20 - 0x68 0x65 0x20 0x68 0x65 0x61 0x72 0x73 - 0x20 0x63 0x72 0x69 0x65 0x73 0x20 0x63 - 0x6F 0x6D 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x72 - 0x6F 0x6F 0x66 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 0x65 - 0x2E 0x20 0x4A 0x75 0x73 0x74 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x6F 0x72 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x68 0x6F 0x75 0x73 - 0x65 0x20 0x63 0x72 0x65 0x61 0x6B 0x73 - 0x20 0x6F 0x70 0x65 0x6E 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x61 0x20 0x72 0x61 0x74 - 0x20 0x72 0x75 0x6E 0x73 0x20 0x74 0x6F - 0x77 0x61 0x72 0x64 0x20 0x68 0x69 0x6D - 0x2E 0x20 0x0D 0x0A 0x57 0x69 0x6C 0x6C - 0x20 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F - 0x72 0x20 0x66 0x69 0x67 0x68 0x74 0x20 - 0x6F 0x66 0x66 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x74 0x20 0x77 0x69 0x74 0x68 - 0x20 0x65 0x6E 0x6F 0x75 0x67 0x68 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x6C 0x65 0x66 - 0x74 0x20 0x74 0x6F 0x20 0x73 0x61 0x76 - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x68 - 0x69 0x6C 0x64 0x72 0x65 0x6E 0x20 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6F 0x66 0x20 0x62 0x65 0x66 0x6F 0x72 - 0x65 0x20 0x64 0x61 0x72 0x6B 0x3F 0x20 - 0x57 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 - 0x73 0x6F 0x6D 0x65 0x68 0x6F 0x77 0x20 - 0x6F 0x76 0x65 0x72 0x63 0x6F 0x6D 0x65 - 0x20 0x68 0x69 0x73 0x20 0x70 0x72 0x6F - 0x62 0x6C 0x65 0x6D 0x20 0x77 0x69 0x74 - 0x68 0x20 0x6E 0x69 0x67 0x68 0x74 0x20 - 0x66 0x6C 0x79 0x69 0x6E 0x67 0x3F -ENDCHUNK - - -ENDCHUNK -#line 24408 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AC= 0x00015384 - - -CHUNK('HTOP', _help_48544F50_AC, "") -SUBFILE -#line 24416 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AC, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AB=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AB=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x38 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x00 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AB=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AB, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x6D 0x62 0x65 0x72 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x4B 0x69 0x64 0x73 0x92 0x20 0x4D 0x79 - 0x73 0x74 0x65 0x72 0x79 0x20 0x43 0x6C - 0x75 0x62 0x0D 0x0A 0x53 0x61 0x6C 0x76 - 0x61 0x64 0x6F 0x72 0x20 0x68 0x61 0x73 - 0x20 0x73 0x65 0x65 0x6E 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x4D 0x79 - 0x73 0x74 0x65 0x72 0x79 0x20 0x43 0x6C - 0x75 0x62 0x20 0x6D 0x6F 0x76 0x69 0x65 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x64 0x72 - 0x65 0x61 0x6D 0x73 0x20 0x6F 0x66 0x20 - 0x73 0x74 0x61 0x72 0x72 0x69 0x6E 0x67 - 0x20 0x69 0x6E 0x20 0x6F 0x6E 0x65 0x2E - 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x6C 0x65 0x61 0x64 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6C 0x75 0x62 0x20 - 0x69 0x6E 0x20 0x66 0x69 0x6E 0x64 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x70 - 0x65 0x72 0x73 0x6F 0x6E 0x20 0x77 0x68 - 0x6F 0x20 0x6B 0x6E 0x65 0x65 0x6C 0x73 - 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6C 0x6F 0x63 - 0x6B 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x73 0x71 0x75 0x61 0x72 0x65 0x20 - 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x6A 0x75 0x6D - 0x70 0x73 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x63 0x61 0x72 0x65 0x20 - 0x70 0x65 0x6F 0x70 0x6C 0x65 0x2E 0x20 - 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 - 0x20 0x73 0x65 0x65 0x73 0x20 0x68 0x69 - 0x6D 0x73 0x65 0x6C 0x66 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 - 0x64 0x73 0x20 0x6C 0x79 0x69 0x6E 0x67 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x67 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x77 0x61 0x69 0x74 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x65 0x6C 0x69 0x6E 0x67 - 0x20 0x70 0x65 0x72 0x73 0x6F 0x6E 0x20 - 0x74 0x6F 0x20 0x61 0x70 0x70 0x65 0x61 - 0x72 0x2E 0x20 0x54 0x68 0x65 0x6E 0x20 - 0x61 0x20 0x67 0x75 0x79 0x20 0x69 0x6E - 0x20 0x62 0x61 0x6E 0x64 0x61 0x67 0x65 - 0x73 0x20 0x73 0x6E 0x65 0x61 0x6B 0x73 - 0x20 0x75 0x70 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x63 0x6C 0x6F 0x63 0x6B - 0x2E 0x20 0x54 0x68 0x65 0x20 0x6B 0x69 - 0x64 0x73 0x20 0x6A 0x75 0x6D 0x70 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x69 0x72 - 0x20 0x66 0x65 0x65 0x74 0x20 0x61 0x6E - 0x64 0x20 0x72 0x75 0x6E 0x20 0x74 0x6F - 0x20 0x63 0x61 0x70 0x74 0x75 0x72 0x65 - 0x20 0x68 0x69 0x6D 0x2E 0x20 0x42 0x75 - 0x74 0x20 0x73 0x75 0x64 0x64 0x65 0x6E - 0x6C 0x79 0x20 0x74 0x68 0x65 0x20 0x67 - 0x75 0x79 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x73 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x61 0x20 0x62 0x61 0x72 - 0x6B 0x69 0x6E 0x67 0x20 0x64 0x6F 0x67 - 0x20 0x74 0x68 0x61 0x74 0x20 0x72 0x75 - 0x6E 0x73 0x20 0x61 0x77 0x61 0x79 0x20 - 0x73 0x63 0x61 0x72 0x65 0x64 0x2E 0x20 - 0x0D 0x0A 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 - 0x65 0x76 0x65 0x72 0x20 0x74 0x72 0x61 - 0x70 0x20 0x74 0x68 0x65 0x20 0x64 0x6F - 0x67 0x20 0x61 0x6E 0x64 0x20 0x74 0x72 - 0x61 0x6E 0x73 0x66 0x6F 0x72 0x6D 0x20 - 0x68 0x69 0x6D 0x20 0x62 0x61 0x63 0x6B - 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 24549 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AD= 0x00015385 - - -CHUNK('HTOP', _help_48544F50_AD, "") -SUBFILE -#line 24557 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AD, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AC=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AC=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x7A 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x09 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AC=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AC, 0x0) - BYTE - 0x03 0x03 0x50 0x72 0x65 0x68 0x69 0x73 - 0x74 0x6F 0x72 0x69 0x63 0x20 0x42 0x6F - 0x79 0x0D 0x0A 0x53 0x61 0x6C 0x76 0x61 - 0x64 0x6F 0x72 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x67 0x6F 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x69 0x6E 0x20 - 0x74 0x69 0x6D 0x65 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x61 0x20 0x63 - 0x61 0x76 0x65 0x2D 0x62 0x6F 0x79 0x2C - 0x20 0x62 0x75 0x74 0x20 0x61 0x20 0x63 - 0x61 0x76 0x65 0x20 0x62 0x6F 0x79 0x20 - 0x77 0x68 0x6F 0x20 0x6B 0x6E 0x6F 0x77 - 0x73 0x20 0x65 0x76 0x65 0x72 0x79 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x53 0x61 0x6C - 0x76 0x61 0x64 0x6F 0x72 0x20 0x6B 0x6E - 0x6F 0x77 0x73 0x20 0x74 0x6F 0x64 0x61 - 0x79 0x20 0x61 0x6E 0x64 0x20 0x75 0x73 - 0x65 0x73 0x20 0x69 0x74 0x20 0x74 0x6F - 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F - 0x72 0x6D 0x20 0x68 0x69 0x73 0x74 0x6F - 0x72 0x79 0x2E 0x20 0x49 0x66 0x20 0x74 - 0x68 0x65 0x79 0x20 0x6B 0x6E 0x65 0x77 - 0x20 0x74 0x68 0x65 0x6E 0x20 0x77 0x68 - 0x61 0x74 0x20 0x77 0x65 0x20 0x6B 0x6E - 0x6F 0x77 0x20 0x6E 0x6F 0x77 0x2C 0x20 - 0x53 0x61 0x6C 0x76 0x61 0x64 0x6F 0x72 - 0x20 0x74 0x68 0x69 0x6E 0x6B 0x73 0x2C - 0x20 0x77 0x65 0x92 0x64 0x20 0x62 0x65 - 0x20 0x6D 0x75 0x63 0x68 0x20 0x66 0x75 - 0x72 0x74 0x68 0x65 0x72 0x20 0x61 0x6C - 0x6F 0x6E 0x67 0x20 0x69 0x6E 0x20 0x6C - 0x69 0x66 0x65 0x2E 0x20 0x46 0x6F 0x72 - 0x20 0x65 0x78 0x61 0x6D 0x70 0x6C 0x65 - 0x2C 0x20 0x53 0x61 0x6C 0x76 0x61 0x64 - 0x6F 0x72 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x69 0x6E 0x74 0x72 0x6F 0x64 0x75 - 0x63 0x65 0x20 0x74 0x68 0x65 0x20 0x63 - 0x61 0x72 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x77 0x6F 0x72 0x6C 0x64 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x74 0x68 0x65 0x79 - 0x20 0x68 0x61 0x64 0x6E 0x92 0x74 0x20 - 0x65 0x76 0x65 0x6E 0x20 0x69 0x6E 0x76 - 0x65 0x6E 0x74 0x65 0x64 0x20 0x74 0x68 - 0x65 0x20 0x77 0x68 0x65 0x65 0x6C 0x20 - 0x79 0x65 0x74 0x2E 0x20 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x74 0x68 0x69 0x6E 0x67 - 0x73 0x20 0x67 0x6F 0x20 0x77 0x72 0x6F - 0x6E 0x67 0x2E 0x20 0x49 0x6E 0x73 0x74 - 0x65 0x61 0x64 0x20 0x6F 0x66 0x20 0x65 - 0x76 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x68 0x61 - 0x70 0x70 0x79 0x20 0x74 0x6F 0x20 0x68 - 0x61 0x76 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x6E 0x6F 0x77 0x6C 0x65 0x64 0x67 - 0x65 0x20 0x53 0x61 0x6C 0x76 0x61 0x64 - 0x6F 0x72 0x20 0x62 0x72 0x69 0x6E 0x67 - 0x73 0x2C 0x20 0x74 0x68 0x65 0x79 0x20 - 0x61 0x72 0x65 0x20 0x73 0x63 0x61 0x72 - 0x65 0x64 0x20 0x6F 0x66 0x20 0x68 0x69 - 0x6D 0x2E 0x20 0x54 0x68 0x65 0x79 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x20 0x68 0x65 - 0x20 0x69 0x73 0x20 0x65 0x76 0x69 0x6C - 0x20 0x61 0x6E 0x64 0x20 0x70 0x6C 0x6F - 0x74 0x20 0x74 0x6F 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x20 0x68 0x69 0x6D 0x2E - 0x20 0x0D 0x0A 0x54 0x68 0x65 0x20 0x63 - 0x72 0x6F 0x77 0x64 0x20 0x63 0x69 0x72 - 0x63 0x6C 0x65 0x73 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x53 0x61 0x6C 0x76 - 0x61 0x64 0x6F 0x72 0x97 0x68 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x66 0x72 0x65 - 0x65 0x3F 0x20 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x6E 0x76 0x69 0x6E 0x63 0x65 0x20 - 0x74 0x68 0x65 0x6D 0x20 0x74 0x6F 0x20 - 0x61 0x63 0x63 0x65 0x70 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x68 - 0x61 0x73 0x20 0x74 0x6F 0x20 0x6F 0x66 - 0x66 0x65 0x72 0x3F -ENDCHUNK - - -ENDCHUNK -#line 24698 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AE= 0x00015386 - - -CHUNK('HTOP', _help_48544F50_AE, "") -SUBFILE -#line 24706 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AE, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0C 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3D 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xC9 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C4, 0x0) - BYTE - 0x03 0x03 0x70 0x72 0x6F 0x66 0x65 0x73 - 0x73 0x69 0x6F 0x6E 0x61 0x6C 0x0D 0x0A - 0x53 0x65 0x62 0x61 0x73 0x74 0x69 0x61 - 0x6E 0x20 0x69 0x73 0x20 0x70 0x72 0x65 - 0x74 0x74 0x79 0x20 0x73 0x75 0x72 0x65 - 0x20 0x68 0x65 0x92 0x6C 0x6C 0x20 0x62 - 0x65 0x63 0x6F 0x6D 0x65 0x20 0x61 0x20 - 0x70 0x72 0x6F 0x66 0x65 0x73 0x73 0x69 - 0x6F 0x6E 0x61 0x6C 0x20 0x62 0x61 0x73 - 0x65 0x62 0x61 0x6C 0x6C 0x20 0x73 0x74 - 0x61 0x72 0x20 0x62 0x65 0x63 0x61 0x75 - 0x73 0x65 0x20 0x68 0x65 0x20 0x68 0x61 - 0x73 0x20 0x61 0x20 0x73 0x65 0x63 0x72 - 0x65 0x74 0x2E 0x20 0x20 0x57 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x74 0x75 0x72 - 0x6E 0x73 0x20 0x68 0x69 0x73 0x20 0x68 - 0x61 0x74 0x20 0x73 0x69 0x64 0x65 0x77 - 0x61 0x79 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x67 0x72 0x69 0x74 0x73 0x20 0x68 0x65 - 0x20 0x74 0x65 0x65 0x74 0x68 0x20 0x6A - 0x75 0x73 0x74 0x20 0x73 0x6F 0x2C 0x20 - 0x68 0x65 0x20 0x68 0x69 0x74 0x73 0x20 - 0x61 0x20 0x68 0x6F 0x6D 0x65 0x20 0x72 - 0x75 0x6E 0x20 0x39 0x20 0x74 0x69 0x6D - 0x65 0x73 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x31 0x30 0x2E 0x20 0x20 0x41 - 0x6E 0x64 0x2C 0x20 0x61 0x73 0x20 0x61 - 0x6E 0x20 0x6F 0x75 0x74 0x66 0x69 0x65 - 0x6C 0x64 0x65 0x72 0x2C 0x20 0x68 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x73 0x70 0x69 - 0x6E 0x20 0x61 0x72 0x6F 0x75 0x6E 0x64 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x66 0x61 0x73 0x74 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 0x6A - 0x75 0x6D 0x70 0x20 0x73 0x6F 0x20 0x68 - 0x69 0x67 0x68 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6E 0x6F 0x20 0x68 0x69 0x67 0x68 - 0x20 0x66 0x6C 0x79 0x20 0x62 0x61 0x6C - 0x6C 0x20 0x69 0x73 0x20 0x6F 0x75 0x74 - 0x73 0x69 0x64 0x65 0x20 0x68 0x69 0x73 - 0x20 0x67 0x72 0x61 0x73 0x70 0x2E 0x20 - 0x20 0x4F 0x6E 0x65 0x20 0x64 0x61 0x79 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x67 0x75 - 0x79 0x73 0x20 0x77 0x65 0x72 0x65 0x20 - 0x62 0x61 0x74 0x74 0x69 0x6E 0x67 0x20 - 0x62 0x61 0x6C 0x6C 0x73 0x20 0x61 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x68 0x69 0x74 0x20 0x61 - 0x20 0x62 0x61 0x6C 0x6C 0x20 0x63 0x6C - 0x65 0x61 0x6E 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x74 0x68 0x65 0x20 - 0x77 0x69 0x6E 0x64 0x6F 0x77 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x74 0x68 - 0x65 0x61 0x74 0x65 0x72 0x20 0x61 0x63 - 0x72 0x6F 0x73 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x72 0x65 0x65 0x74 0x2E - 0x20 0x0D 0x0A 0x49 0x6E 0x73 0x74 0x65 - 0x61 0x64 0x20 0x6F 0x66 0x20 0x72 0x75 - 0x6E 0x6E 0x69 0x6E 0x67 0x20 0x61 0x77 - 0x61 0x79 0x2C 0x20 0x53 0x65 0x62 0x61 - 0x73 0x74 0x69 0x61 0x6E 0x20 0x77 0x61 - 0x6C 0x6B 0x65 0x64 0x20 0x72 0x69 0x67 - 0x68 0x74 0x20 0x75 0x70 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x65 - 0x61 0x74 0x65 0x72 0x20 0x6D 0x61 0x6E - 0x61 0x67 0x65 0x72 0x2C 0x20 0x61 0x70 - 0x6F 0x6C 0x6F 0x67 0x69 0x7A 0x65 0x64 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6F 0x66 - 0x66 0x65 0x72 0x65 0x64 0x20 0x74 0x6F - 0x20 0x70 0x61 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x74 0x68 0x65 0x20 0x64 0x61 0x6D - 0x61 0x67 0x65 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x61 0x6E 0x67 0x72 0x79 0x20 - 0x6D 0x61 0x6E 0x61 0x67 0x65 0x72 0x20 - 0x63 0x61 0x6C 0x6D 0x65 0x64 0x20 0x64 - 0x6F 0x77 0x6E 0x2C 0x20 0x62 0x75 0x74 - 0x20 0x61 0x20 0x77 0x65 0x69 0x72 0x64 - 0x2D 0x6C 0x6F 0x6F 0x6B 0x69 0x6E 0x67 - 0x20 0x67 0x75 0x79 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x68 0x69 0x6D 0x20 - 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 0x74 - 0x6F 0x20 0x74 0x61 0x6C 0x6B 0x20 0x74 - 0x6F 0x20 0x53 0x65 0x62 0x61 0x73 0x74 - 0x69 0x61 0x6E 0x2E 0x20 0x54 0x75 0x72 - 0x6E 0x73 0x20 0x6F 0x75 0x74 0x20 0x74 - 0x68 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x66 0x61 0x6D 0x6F 0x75 0x73 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 - 0x73 0x20 0x6C 0x6F 0x6F 0x6B 0x69 0x6E - 0x67 0x20 0x66 0x6F 0x72 0x20 0x79 0x6F - 0x75 0x6E 0x67 0x20 0x61 0x63 0x74 0x6F - 0x72 0x73 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x2C 0x20 0x93 - 0x42 0x69 0x67 0x20 0x4C 0x65 0x61 0x67 - 0x75 0x65 0x2E 0x94 0x20 0x20 0x48 0x65 - 0x20 0x74 0x68 0x6F 0x75 0x67 0x68 0x74 - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x67 0x72 0x65 0x61 - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x6D 0x6F 0x76 0x69 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 24871 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_AF= 0x00015387 - - -CHUNK('HTOP', _help_48544F50_AF, "") -SUBFILE -#line 24879 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_AF, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_45=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_AF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_45=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xD9 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x50 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_45=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_45, 0x0) - BYTE - 0x03 0x03 0x54 0x72 0x69 0x63 0x6B 0x2D - 0x6F 0x72 0x2D 0x54 0x72 0x65 0x61 0x74 - 0x65 0x72 0x20 0x44 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x61 0x73 0x20 0x61 0x6E - 0x20 0x41 0x6C 0x69 0x65 0x6E 0x0D 0x0A - 0x53 0x65 0x62 0x61 0x73 0x74 0x69 0x61 - 0x6E 0x20 0x68 0x61 0x73 0x20 0x77 0x61 - 0x74 0x63 0x68 0x65 0x64 0x20 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x20 0x53 0x74 - 0x61 0x72 0x20 0x54 0x72 0x65 0x6B 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x20 0x61 - 0x6E 0x64 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x20 0x6C 0x69 0x6B 0x65 0x20 0x53 - 0x70 0x6F 0x63 0x6B 0x2E 0x20 0x48 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x68 - 0x61 0x76 0x65 0x20 0x73 0x70 0x65 0x63 - 0x69 0x61 0x6C 0x20 0x70 0x6F 0x77 0x65 - 0x72 0x73 0x2C 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 0x61 - 0x62 0x6C 0x65 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x61 0x6D 0x20 0x68 0x69 0x6D 0x73 - 0x65 0x6C 0x66 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 - 0x20 0x65 0x6C 0x73 0x65 0x27 0x73 0x20 - 0x62 0x6F 0x64 0x79 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x70 0x6F - 0x77 0x65 0x72 0x20 0x74 0x6F 0x20 0x73 - 0x68 0x72 0x69 0x6E 0x6B 0x20 0x68 0x69 - 0x6D 0x73 0x65 0x6C 0x66 0x20 0x73 0x6F - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x73 0x70 0x79 - 0x20 0x6F 0x6E 0x20 0x65 0x6E 0x65 0x6D - 0x79 0x20 0x61 0x6C 0x69 0x65 0x6E 0x73 - 0x2E 0x20 0x0D 0x0A 0x53 0x65 0x62 0x61 - 0x73 0x74 0x69 0x61 0x6E 0x20 0x73 0x65 - 0x65 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x70 0x6C 0x61 0x79 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x73 0x70 0x61 - 0x63 0x65 0x20 0x61 0x6C 0x69 0x65 0x6E - 0x20 0x77 0x68 0x6F 0x20 0x63 0x6F 0x6D - 0x65 0x73 0x20 0x74 0x6F 0x20 0x65 0x61 - 0x72 0x74 0x68 0x2E 0x20 0x48 0x65 0x27 - 0x73 0x20 0x74 0x68 0x65 0x72 0x65 0x20 - 0x74 0x6F 0x20 0x73 0x74 0x6F 0x70 0x20 - 0x61 0x6E 0x20 0x65 0x76 0x69 0x6C 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x20 0x73 0x65 - 0x6E 0x74 0x20 0x62 0x79 0x20 0x74 0x68 - 0x65 0x20 0x65 0x6E 0x65 0x6D 0x79 0x20 - 0x74 0x6F 0x20 0x63 0x6C 0x6F 0x73 0x65 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 - 0x20 0x74 0x6F 0x79 0x20 0x73 0x74 0x6F - 0x72 0x65 0x73 0x20 0x6F 0x6E 0x20 0x65 - 0x61 0x72 0x74 0x68 0x2E 0x20 0x54 0x68 - 0x65 0x20 0x72 0x6F 0x62 0x6F 0x74 0x20 - 0x77 0x61 0x6C 0x6B 0x73 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x61 0x6C 0x6C 0x2C 0x20 - 0x6C 0x6F 0x6F 0x6B 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x74 0x6F 0x79 0x20 - 0x73 0x74 0x6F 0x72 0x65 0x73 0x2E 0x20 - 0x49 0x74 0x20 0x73 0x70 0x6F 0x74 0x73 - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x69 0x6E 0x20 0x68 0x69 - 0x73 0x20 0x61 0x6C 0x69 0x65 0x6E 0x20 - 0x63 0x6F 0x73 0x74 0x75 0x6D 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x6B 0x6E 0x6F - 0x77 0x73 0x20 0x68 0x65 0x92 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x74 0x6F 0x20 0x73 - 0x74 0x6F 0x70 0x20 0x69 0x74 0x2E 0x20 - 0x0D 0x0A 0x53 0x65 0x62 0x61 0x73 0x74 - 0x69 0x61 0x6E 0x20 0x68 0x61 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x61 0x6E 0x73 - 0x66 0x6F 0x72 0x6D 0x20 0x68 0x69 0x6D - 0x73 0x65 0x6C 0x66 0x20 0x71 0x75 0x69 - 0x63 0x6B 0x6C 0x79 0x2C 0x20 0x62 0x75 - 0x74 0x20 0x77 0x68 0x6F 0x20 0x73 0x68 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x65 0x20 - 0x62 0x65 0x63 0x6F 0x6D 0x65 0x2C 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 0x65 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x20 0x66 - 0x72 0x6F 0x6D 0x20 0x64 0x65 0x73 0x74 - 0x72 0x6F 0x79 0x69 0x6E 0x67 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x74 - 0x6F 0x79 0x20 0x73 0x74 0x6F 0x72 0x65 - 0x73 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 25032 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B0= 0x00015388 - - -CHUNK('HTOP', _help_48544F50_B0, "") -SUBFILE -#line 25040 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_AA=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0D 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_AA=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_AA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1B 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB2 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_AA=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_AA, 0x0) - BYTE - 0x03 0x03 0x50 0x69 0x7A 0x7A 0x61 0x20 - 0x44 0x65 0x6C 0x69 0x76 0x65 0x72 0x79 - 0x20 0x42 0x6F 0x79 0x0D 0x0A 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 - 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x79 - 0x20 0x61 0x20 0x70 0x69 0x7A 0x7A 0x61 - 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 0x72 - 0x79 0x20 0x62 0x6F 0x79 0x20 0x77 0x68 - 0x6F 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 - 0x72 0x73 0x20 0x70 0x69 0x7A 0x7A 0x61 - 0x20 0x66 0x6F 0x72 0x20 0x64 0x69 0x6E - 0x6E 0x65 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 - 0x73 0x20 0x66 0x6F 0x72 0x20 0x64 0x65 - 0x73 0x73 0x65 0x72 0x74 0x2E 0x20 0x20 - 0x48 0x65 0x27 0x64 0x20 0x68 0x61 0x76 - 0x65 0x20 0x74 0x68 0x69 0x73 0x20 0x63 - 0x6F 0x6F 0x6C 0x20 0x54 0x65 0x78 0x61 - 0x73 0x20 0x43 0x61 0x64 0x69 0x6C 0x6C - 0x61 0x63 0x20 0x77 0x69 0x74 0x68 0x20 - 0x6C 0x6F 0x6E 0x67 0x68 0x6F 0x72 0x6E - 0x73 0x2C 0x20 0x73 0x6F 0x20 0x69 0x66 - 0x20 0x68 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x73 0x74 0x75 0x63 0x6B 0x20 0x69 0x6E - 0x20 0x74 0x72 0x61 0x66 0x66 0x69 0x63 - 0x2C 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x6A 0x75 0x73 0x74 0x20 - 0x68 0x6F 0x72 0x6E 0x20 0x68 0x69 0x73 - 0x20 0x77 0x61 0x79 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x2E 0x20 0x0D 0x0A - 0x42 0x75 0x74 0x20 0x77 0x68 0x61 0x74 - 0x20 0x68 0x65 0x20 0x72 0x65 0x61 0x6C - 0x6C 0x79 0x20 0x77 0x61 0x6E 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 0x69 - 0x73 0x20 0x64 0x65 0x6C 0x69 0x76 0x65 - 0x72 0x20 0x70 0x69 0x7A 0x7A 0x61 0x20 - 0x61 0x6E 0x64 0x20 0x64 0x6F 0x75 0x67 - 0x68 0x6E 0x75 0x74 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 - 0x6F 0x72 0x61 0x74 0x6F 0x72 0x79 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x61 0x74 0x20 - 0x73 0x69 0x6C 0x6C 0x79 0x20 0x67 0x72 - 0x65 0x65 0x6E 0x20 0x73 0x63 0x69 0x65 - 0x6E 0x74 0x69 0x73 0x74 0x2C 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x2E 0x20 0x20 0x45 - 0x76 0x65 0x6E 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x6C - 0x61 0x62 0x20 0x69 0x73 0x20 0x67 0x75 - 0x61 0x72 0x64 0x65 0x64 0x20 0x62 0x79 - 0x20 0x66 0x69 0x6C 0x74 0x68 0x79 0x20 - 0x72 0x61 0x74 0x73 0x2C 0x20 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x68 - 0x65 0x20 0x63 0x61 0x6E 0x20 0x67 0x69 - 0x76 0x65 0x20 0x74 0x68 0x65 0x20 0x64 - 0x6F 0x75 0x67 0x68 0x6E 0x75 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x72 0x61 0x74 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x67 0x65 0x74 0x20 0x70 0x61 0x73 - 0x74 0x20 0x74 0x68 0x65 0x6D 0x2C 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x66 0x69 0x6E - 0x64 0x20 0x57 0x69 0x6C 0x6C 0x79 0x92 - 0x73 0x20 0x70 0x6F 0x74 0x69 0x6F 0x6E - 0x20 0x74 0x68 0x61 0x74 0x20 0x69 0x73 - 0x20 0x74 0x75 0x72 0x6E 0x69 0x6E 0x67 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x77 0x6F 0x6F 0x64 0x65 - 0x6E 0x20 0x74 0x6F 0x74 0x65 0x6D 0x20 - 0x70 0x6F 0x6C 0x65 0x73 0x2E 0x20 0x57 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x66 - 0x69 0x6E 0x64 0x73 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6F 0x74 0x69 0x6F 0x6E 0x2C - 0x20 0x53 0x65 0x62 0x61 0x73 0x74 0x69 - 0x61 0x6E 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x68 0x61 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x74 0x72 0x69 0x63 0x6B 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x69 0x6E 0x74 0x6F - 0x20 0x74 0x65 0x6C 0x6C 0x69 0x6E 0x67 - 0x20 0x68 0x69 0x6D 0x20 0x68 0x6F 0x77 - 0x20 0x74 0x6F 0x20 0x74 0x75 0x72 0x6E - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x62 0x61 0x63 0x6B 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x6B 0x69 0x64 0x73 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x77 0x68 0x65 0x72 0x65 0x20 0x68 0x61 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x68 0x69 0x64 0x64 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x6F 0x74 0x65 0x6D - 0x2D 0x70 0x6F 0x6C 0x65 0x20 0x6B 0x69 - 0x64 0x73 0x3F 0x20 0x20 0x41 0x6E 0x64 - 0x20 0x68 0x6F 0x77 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x53 0x65 0x62 0x61 0x73 0x74 - 0x69 0x61 0x6E 0x20 0x67 0x65 0x74 0x20 - 0x74 0x68 0x65 0x20 0x73 0x65 0x63 0x72 - 0x65 0x74 0x20 0x72 0x65 0x6D 0x65 0x64 - 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 25201 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B1= 0x00015389 - - -CHUNK('HTOP', _help_48544F50_B1, "") -SUBFILE -#line 25209 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x91 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B1, 0x0) - BYTE - 0x03 0x03 0x42 0x6F 0x79 0x20 0x53 0x63 - 0x6F 0x75 0x74 0x0D 0x0A 0x53 0x65 0x62 - 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 0x61 - 0x6C 0x73 0x6F 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x20 0x62 0x6F 0x79 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x2E 0x20 0x20 - 0x4E 0x6F 0x74 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x61 0x6E 0x79 0x20 0x62 0x6F 0x79 - 0x20 0x73 0x63 0x6F 0x75 0x74 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x61 0x20 0x73 0x75 - 0x70 0x65 0x72 0x20 0x62 0x6F 0x79 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x75 0x73 0x65 0x73 0x20 0x68 - 0x69 0x73 0x20 0x73 0x70 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x61 0x6E 0x64 0x20 - 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 0x20 - 0x73 0x6B 0x69 0x6C 0x6C 0x73 0x20 0x74 - 0x6F 0x20 0x72 0x65 0x73 0x63 0x75 0x65 - 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 0x73 - 0x63 0x6F 0x75 0x74 0x73 0x2E 0x20 0x20 - 0x49 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x73 - 0x63 0x65 0x6E 0x65 0x2C 0x20 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x73 0x63 0x6F 0x75 0x74 0x20 0x70 0x61 - 0x63 0x6B 0x20 0x61 0x72 0x65 0x20 0x6F - 0x75 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x75 0x6E 0x74 0x61 - 0x69 0x6E 0x73 0x20 0x6A 0x75 0x6D 0x70 - 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x61 0x6E 0x20 0x61 0x69 0x72 0x70 - 0x6C 0x61 0x6E 0x65 0x20 0x74 0x6F 0x20 - 0x67 0x65 0x74 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x70 0x61 0x72 0x61 0x63 0x68 - 0x75 0x74 0x69 0x6E 0x67 0x20 0x62 0x61 - 0x64 0x67 0x65 0x73 0x2E 0x20 0x53 0x65 - 0x62 0x61 0x73 0x74 0x69 0x61 0x6E 0x20 - 0x6C 0x61 0x6E 0x64 0x73 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x77 0x61 0x74 0x63 0x68 0x65 0x73 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 - 0x72 0x73 0x20 0x63 0x6F 0x6D 0x65 0x20 - 0x64 0x6F 0x77 0x6E 0x2E 0x20 0x42 0x75 - 0x74 0x20 0x74 0x68 0x65 0x6E 0x20 0x68 - 0x69 0x73 0x20 0x66 0x72 0x69 0x65 0x6E - 0x64 0x20 0x4D 0x69 0x63 0x68 0x61 0x65 - 0x6C 0x20 0x6A 0x75 0x73 0x74 0x20 0x73 - 0x74 0x6F 0x70 0x73 0x20 0x69 0x6E 0x20 - 0x6D 0x69 0x64 0x2D 0x61 0x69 0x72 0x21 - 0x20 0x0D 0x0A 0x43 0x61 0x6E 0x20 0x53 - 0x65 0x62 0x61 0x73 0x74 0x69 0x61 0x6E - 0x20 0x73 0x70 0x69 0x6E 0x20 0x66 0x61 - 0x73 0x74 0x20 0x65 0x6E 0x6F 0x75 0x67 - 0x68 0x20 0x61 0x6E 0x64 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x68 0x69 0x67 0x68 0x20 - 0x65 0x6E 0x6F 0x75 0x67 0x68 0x20 0x74 - 0x6F 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 - 0x4D 0x69 0x63 0x68 0x61 0x65 0x6C 0x20 - 0x62 0x61 0x63 0x6B 0x20 0x74 0x6F 0x20 - 0x65 0x61 0x72 0x74 0x68 0x3F 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x69 0x66 0x20 - 0x74 0x68 0x65 0x79 0x20 0x62 0x6F 0x74 - 0x68 0x20 0x67 0x65 0x74 0x20 0x73 0x74 - 0x75 0x63 0x6B 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 25335 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B2= 0x0001538a - - -CHUNK('HTOP', _help_48544F50_B2, "") -SUBFILE -#line 25343 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B2, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_72=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_72=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_72=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_72, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x31 -ENDCHUNK - - -ENDCHUNK -#line 25406 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B3= 0x0001538b - - -CHUNK('HTOP', _help_48544F50_B3, "") -SUBFILE -#line 25414 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B3, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B3, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x32 -ENDCHUNK - - -ENDCHUNK -#line 25477 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B4= 0x0001538c - - -CHUNK('HTOP', _help_48544F50_B4, "") -SUBFILE -#line 25485 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B4, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B4=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B4=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B4=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B4, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x33 -ENDCHUNK - - -ENDCHUNK -#line 25548 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B5= 0x0001538d - - -CHUNK('HTOP', _help_48544F50_B5, "") -SUBFILE -#line 25556 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B5, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x0 0x0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x0F 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B5, 0x0) - BYTE - 0x03 0x03 0x53 0x27 0x6B 0x65 0x6C 0x6C - 0x79 0x2D 0x2D 0x70 0x6F 0x70 0x75 0x70 - 0x34 -ENDCHUNK - - -ENDCHUNK -#line 25619 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B6= 0x0001538e - - -CHUNK('HTOP', _help_48544F50_B6, "") -SUBFILE -#line 25627 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B6, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_33=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xFA 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_33=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x24 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_33=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_33, 0x0) - BYTE - 0x03 0x03 0x62 0x75 0x72 0x67 0x65 0x72 - 0x73 0x0D 0x0A 0x49 0x74 0x20 0x61 0x6C - 0x6C 0x20 0x73 0x74 0x61 0x72 0x74 0x65 - 0x64 0x20 0x77 0x68 0x65 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x72 0x65 0x73 0x74 0x61 - 0x75 0x72 0x61 0x6E 0x74 0x20 0x68 0x65 - 0x20 0x77 0x6F 0x72 0x6B 0x65 0x64 0x20 - 0x66 0x6F 0x72 0x20 0x73 0x74 0x61 0x72 - 0x74 0x65 0x64 0x20 0x6C 0x6F 0x73 0x69 - 0x6E 0x67 0x20 0x62 0x75 0x73 0x69 0x6E - 0x65 0x73 0x73 0x20 0x62 0x65 0x63 0x61 - 0x75 0x73 0x65 0x20 0x61 0x20 0x70 0x69 - 0x7A 0x7A 0x61 0x20 0x70 0x6C 0x61 0x63 - 0x65 0x20 0x6D 0x6F 0x76 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x61 0x63 0x72 0x6F 0x73 - 0x73 0x20 0x74 0x68 0x65 0x20 0x73 0x74 - 0x72 0x65 0x65 0x74 0x2E 0x20 0x20 0x43 - 0x72 0x6F 0x77 0x64 0x73 0x20 0x77 0x65 - 0x72 0x65 0x20 0x67 0x61 0x74 0x68 0x65 - 0x72 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x65 0x20 - 0x70 0x69 0x7A 0x7A 0x61 0x20 0x6D 0x61 - 0x6B 0x65 0x72 0x73 0x20 0x74 0x6F 0x73 - 0x73 0x20 0x61 0x6E 0x64 0x20 0x73 0x70 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x70 - 0x69 0x7A 0x7A 0x61 0x20 0x64 0x6F 0x75 - 0x67 0x68 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x20 0x53 0x6C 0x61 0x6D 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x6E 0x92 0x74 0x20 0x6C - 0x6F 0x73 0x65 0x20 0x68 0x69 0x73 0x20 - 0x6A 0x6F 0x62 0x3B 0x20 0x69 0x74 0x20 - 0x77 0x61 0x73 0x20 0x68 0x65 0x6C 0x70 - 0x69 0x6E 0x67 0x20 0x68 0x69 0x6D 0x20 - 0x70 0x61 0x79 0x20 0x68 0x69 0x73 0x20 - 0x77 0x61 0x79 0x20 0x74 0x68 0x72 0x6F - 0x75 0x67 0x68 0x20 0x73 0x63 0x68 0x6F - 0x6F 0x6C 0x21 0x20 0x0D 0x0A 0x53 0x6F - 0x20 0x68 0x65 0x20 0x74 0x6F 0x6F 0x6B - 0x20 0x68 0x69 0x73 0x20 0x73 0x70 0x61 - 0x74 0x75 0x6C 0x61 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x74 0x61 0x72 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x70 0x72 0x61 0x63 - 0x74 0x69 0x63 0x65 0x20 0x66 0x6C 0x69 - 0x70 0x70 0x69 0x6E 0x67 0x20 0x62 0x75 - 0x72 0x67 0x65 0x72 0x73 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x64 0x69 0x64 0x20 0x73 - 0x69 0x6E 0x67 0x6C 0x65 0x20 0x66 0x6C - 0x69 0x70 0x73 0x2C 0x20 0x64 0x6F 0x75 - 0x62 0x6C 0x65 0x20 0x66 0x6C 0x69 0x70 - 0x73 0x2C 0x20 0x74 0x72 0x69 0x70 0x6C - 0x65 0x20 0x66 0x6C 0x69 0x70 0x73 0x2C - 0x20 0x61 0x63 0x72 0x6F 0x73 0x73 0x2D - 0x74 0x68 0x65 0x2D 0x73 0x68 0x6F 0x75 - 0x6C 0x64 0x65 0x72 0x20 0x61 0x6E 0x64 - 0x20 0x69 0x6E 0x74 0x6F 0x2D 0x74 0x68 - 0x65 0x2D 0x6F 0x74 0x68 0x65 0x72 0x2D - 0x68 0x61 0x6E 0x64 0x20 0x66 0x6C 0x69 - 0x70 0x73 0x2C 0x20 0x62 0x65 0x74 0x77 - 0x65 0x65 0x6E 0x2D 0x74 0x68 0x65 0x2D - 0x6C 0x65 0x67 0x73 0x20 0x61 0x6E 0x64 - 0x20 0x73 0x70 0x69 0x72 0x61 0x6C 0x6C - 0x69 0x6E 0x67 0x20 0x73 0x70 0x69 0x6E - 0x20 0x66 0x6C 0x69 0x70 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x77 0x61 0x73 0x20 - 0x61 0x6E 0x20 0x69 0x6E 0x73 0x74 0x61 - 0x6E 0x74 0x20 0x73 0x75 0x63 0x63 0x65 - 0x73 0x73 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x77 0x61 0x73 0x20 0x66 0x65 0x61 0x74 - 0x75 0x72 0x65 0x64 0x20 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x6F 0x63 0x61 - 0x6C 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x61 0x6C 0x2C 0x20 0x6E 0x65 - 0x77 0x73 0x20 0x61 0x73 0x20 0x61 0x6E - 0x20 0x61 0x74 0x74 0x72 0x61 0x63 0x74 - 0x69 0x6F 0x6E 0x20 0x6E 0x6F 0x74 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x6D 0x69 - 0x73 0x73 0x65 0x64 0x2E 0x20 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x77 0x61 0x73 0x20 - 0x70 0x72 0x61 0x63 0x74 0x69 0x63 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x6F 0x72 0x6C - 0x64 0x2D 0x66 0x61 0x6D 0x6F 0x75 0x73 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x20 0x65 0x76 0x65 0x72 0x20 - 0x67 0x6F 0x74 0x20 0x61 0x20 0x70 0x61 - 0x72 0x74 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x66 0x69 0x6C 0x6D 0x21 -ENDCHUNK - - -ENDCHUNK -#line 25775 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B7= 0x0001538f - - -CHUNK('HTOP', _help_48544F50_B7, "") -SUBFILE -#line 25783 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B7, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x3C 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x3D 0x02 0x00 0x01 - 0x01 0x00 0x00 0x00 0x64 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x17 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B7, 0x0) - BYTE - 0x03 0x03 0x45 0x78 0x74 0x65 0x72 0x6D - 0x69 0x6E 0x61 0x74 0x6F 0x72 0x0D 0x0A - 0x53 0x6C 0x61 0x6D 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x69 0x6B 0x65 - 0x73 0x20 0x62 0x75 0x67 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x68 0x61 0x73 0x20 - 0x61 0x20 0x63 0x6F 0x6C 0x6C 0x65 0x63 - 0x74 0x69 0x6F 0x6E 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x62 0x75 0x67 0x73 - 0x20 0x68 0x65 0x20 0x66 0x6F 0x75 0x6E - 0x64 0x20 0x61 0x74 0x20 0x74 0x68 0x65 - 0x20 0x72 0x65 0x73 0x74 0x61 0x75 0x72 - 0x61 0x6E 0x74 0x20 0x77 0x68 0x65 0x72 - 0x65 0x20 0x68 0x65 0x20 0x77 0x6F 0x72 - 0x6B 0x65 0x64 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x65 0x65 0x6C 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x69 - 0x73 0x20 0x70 0x65 0x72 0x66 0x65 0x63 - 0x74 0x20 0x66 0x6F 0x72 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x74 0x20 0x6F - 0x66 0x20 0x61 0x6E 0x20 0x65 0x78 0x74 - 0x65 0x72 0x6D 0x69 0x6E 0x61 0x74 0x6F - 0x72 0x2E 0x20 0x20 0x49 0x74 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 - 0x66 0x75 0x6E 0x20 0x69 0x66 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x77 0x65 0x72 0x65 - 0x20 0x61 0x6E 0x20 0x65 0x78 0x74 0x65 - 0x72 0x6D 0x69 0x6E 0x61 0x74 0x6F 0x72 - 0x20 0x77 0x68 0x6F 0x20 0x69 0x73 0x20 - 0x61 0x73 0x6B 0x65 0x64 0x20 0x62 0x79 - 0x20 0x74 0x68 0x65 0x20 0x70 0x6F 0x6C - 0x69 0x63 0x65 0x20 0x74 0x6F 0x20 0x67 - 0x6F 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x68 0x6F 0x75 0x73 0x65 0x20 0x6F - 0x66 0x20 0x61 0x6E 0x20 0x65 0x76 0x69 - 0x6C 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x64 0x65 0x76 0x65 0x6C - 0x6F 0x70 0x69 0x6E 0x67 0x20 0x61 0x20 - 0x66 0x6F 0x72 0x6D 0x75 0x6C 0x61 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x62 0x75 - 0x67 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x67 0x69 0x61 0x6E 0x74 0x20 0x62 0x75 - 0x67 0x73 0x21 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x67 0x65 0x74 0x73 - 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x2C 0x20 0x74 - 0x68 0x65 0x20 0x65 0x76 0x69 0x6C 0x20 - 0x73 0x63 0x69 0x65 0x6E 0x74 0x69 0x73 - 0x74 0x20 0x69 0x73 0x20 0x6F 0x66 0x66 - 0x20 0x69 0x6E 0x20 0x73 0x65 0x61 0x72 - 0x63 0x68 0x20 0x6F 0x66 0x20 0x70 0x6F - 0x69 0x73 0x6F 0x6E 0x6F 0x75 0x73 0x20 - 0x69 0x6E 0x73 0x65 0x63 0x74 0x73 0x20 - 0x74 0x6F 0x20 0x74 0x65 0x73 0x74 0x20 - 0x68 0x69 0x73 0x20 0x66 0x6F 0x72 0x6D - 0x75 0x6C 0x61 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x53 0x6C 0x61 0x6D 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x68 0x61 0x76 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x72 0x61 0x76 0x65 - 0x6C 0x20 0x74 0x6F 0x20 0x61 0x20 0x66 - 0x61 0x72 0x61 0x77 0x61 0x79 0x20 0x76 - 0x69 0x6C 0x6C 0x61 0x67 0x65 0x20 0x74 - 0x6F 0x20 0x66 0x69 0x6E 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x20 0x20 0x0D - 0x0A 0x4F 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x67 0x65 0x74 0x73 0x20 0x74 0x6F - 0x20 0x74 0x68 0x65 0x20 0x76 0x69 0x6C - 0x6C 0x61 0x67 0x65 0x2C 0x20 0x68 0x6F - 0x77 0x20 0x77 0x69 0x6C 0x6C 0x20 0x53 - 0x6C 0x61 0x6D 0x20 0x66 0x6F 0x69 0x6C - 0x20 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 - 0x6E 0x73 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x3F 0x20 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 25923 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B8= 0x00015390 - - -CHUNK('HTOP', _help_48544F50_B8, "") -SUBFILE -#line 25931 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B8, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_8F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_8F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xBA 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xAC 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_8F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_8F, 0x0) - BYTE - 0x03 0x03 0x42 0x75 0x72 0x67 0x65 0x72 - 0x20 0x46 0x6C 0x69 0x70 0x70 0x65 0x72 - 0x0D 0x0A 0x48 0x65 0x72 0x65 0x20 0x69 - 0x73 0x20 0x61 0x20 0x70 0x61 0x72 0x74 - 0x20 0x74 0x68 0x61 0x74 0x20 0x53 0x6C - 0x61 0x6D 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 - 0x73 0x69 0x6E 0x6B 0x20 0x68 0x69 0x73 - 0x20 0x74 0x65 0x65 0x74 0x68 0x20 0x69 - 0x6E 0x74 0x6F 0x2C 0x20 0x62 0x65 0x63 - 0x61 0x75 0x73 0x65 0x20 0x68 0x65 0x20 - 0x68 0x61 0x73 0x20 0x73 0x75 0x63 0x68 - 0x20 0x74 0x61 0x6C 0x65 0x6E 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x66 0x6C 0x69 0x70 - 0x70 0x69 0x6E 0x67 0x20 0x62 0x75 0x72 - 0x67 0x65 0x72 0x73 0x2E 0x20 0x20 0x41 - 0x6E 0x64 0x20 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x75 0x73 0x65 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x61 0x6C 0x20 0x6C - 0x69 0x66 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x69 0x6E 0x73 0x70 0x69 0x72 0x61 0x74 - 0x69 0x6F 0x6E 0x21 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x68 - 0x61 0x70 0x70 0x65 0x6E 0x73 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x63 0x6F 0x6F 0x6B 0x73 0x20 0x61 0x63 - 0x72 0x6F 0x73 0x73 0x20 0x74 0x68 0x65 - 0x20 0x73 0x74 0x72 0x65 0x65 0x74 0x20 - 0x67 0x65 0x74 0x20 0x6A 0x65 0x61 0x6C - 0x6F 0x75 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x6F 0x6D 0x65 0x20 0x61 0x66 0x74 - 0x65 0x72 0x20 0x68 0x69 0x6D 0x3F 0x20 - 0x20 0x57 0x69 0x6C 0x6C 0x20 0x68 0x65 - 0x20 0x68 0x61 0x76 0x65 0x20 0x74 0x6F - 0x20 0x68 0x69 0x64 0x65 0x20 0x6F 0x75 - 0x74 0x20 0x77 0x69 0x74 0x68 0x20 0x68 - 0x69 0x73 0x20 0x61 0x75 0x6E 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x68 0x75 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x74 0x72 0x6F 0x70 0x69 0x63 0x73 0x3F - 0x20 0x20 0x57 0x68 0x61 0x74 0x20 0x61 - 0x64 0x76 0x65 0x6E 0x74 0x75 0x72 0x65 - 0x73 0x20 0x77 0x69 0x6C 0x6C 0x20 0x68 - 0x65 0x20 0x68 0x61 0x76 0x65 0x20 0x77 - 0x68 0x65 0x6E 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x6B 0x73 0x20 0x69 0x6E 0x20 - 0x68 0x65 0x72 0x20 0x72 0x65 0x73 0x74 - 0x61 0x75 0x72 0x61 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x73 0x68 0x65 0x20 0x74 - 0x65 0x6C 0x6C 0x73 0x20 0x68 0x69 0x6D - 0x20 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 - 0x73 0x65 0x63 0x72 0x65 0x74 0x20 0x69 - 0x6E 0x67 0x72 0x65 0x64 0x69 0x65 0x6E - 0x74 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 - 0x63 0x61 0x76 0x65 0x20 0x6E 0x65 0x61 - 0x72 0x62 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 26048 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_B9= 0x00015391 - - -CHUNK('HTOP', _help_48544F50_B9, "") -SUBFILE -#line 26056 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_B9, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_B8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_B9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_B8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_B8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xC3 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x30 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_B8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_B8, 0x0) - BYTE - 0x03 0x03 0x43 0x72 0x6F 0x63 0x6F 0x64 - 0x69 0x6C 0x65 0x20 0x54 0x72 0x61 0x69 - 0x6E 0x65 0x72 0x0D 0x0A 0x53 0x6C 0x61 - 0x6D 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6C 0x6F 0x76 0x65 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x69 0x6E 0x20 0x61 0x6E - 0x20 0x61 0x64 0x76 0x65 0x6E 0x74 0x75 - 0x72 0x65 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x70 0x6C 0x61 0x79 - 0x73 0x20 0x74 0x68 0x65 0x20 0x72 0x6F - 0x6C 0x65 0x20 0x6F 0x66 0x20 0x61 0x20 - 0x63 0x72 0x6F 0x63 0x6F 0x64 0x69 0x6C - 0x65 0x20 0x74 0x72 0x61 0x69 0x6E 0x65 - 0x72 0x2E 0x20 0x20 0x48 0x65 0x92 0x73 - 0x20 0x62 0x65 0x65 0x6E 0x20 0x61 0x73 - 0x6B 0x65 0x64 0x20 0x62 0x79 0x20 0x61 - 0x20 0x66 0x65 0x6C 0x6C 0x6F 0x77 0x20 - 0x61 0x6E 0x69 0x6D 0x61 0x6C 0x20 0x74 - 0x72 0x61 0x69 0x6E 0x65 0x72 0x20 0x74 - 0x6F 0x20 0x67 0x6F 0x20 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x63 0x69 0x74 0x79 - 0x20 0x61 0x6E 0x64 0x20 0x67 0x69 0x76 - 0x65 0x20 0x61 0x20 0x6C 0x65 0x63 0x74 - 0x75 0x72 0x65 0x2E 0x20 0x20 0x48 0x65 - 0x20 0x6C 0x65 0x61 0x76 0x65 0x73 0x20 - 0x68 0x69 0x73 0x20 0x68 0x75 0x74 0x2C - 0x20 0x67 0x65 0x74 0x73 0x20 0x6F 0x6E - 0x20 0x61 0x20 0x70 0x6C 0x61 0x6E 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x61 0x72 - 0x72 0x69 0x76 0x65 0x73 0x20 0x69 0x6E - 0x20 0x74 0x68 0x65 0x20 0x63 0x69 0x74 - 0x79 0x2C 0x20 0x77 0x68 0x65 0x72 0x65 - 0x20 0x68 0x65 0x20 0x73 0x65 0x65 0x73 - 0x20 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x74 0x6F 0x74 - 0x61 0x6C 0x6C 0x79 0x20 0x61 0x6D 0x61 - 0x7A 0x65 0x20 0x68 0x69 0x6D 0x20 0x61 - 0x66 0x74 0x65 0x72 0x20 0x6C 0x69 0x76 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x74 0x72 0x6F 0x70 0x69 - 0x63 0x73 0x20 0x66 0x6F 0x72 0x20 0x73 - 0x6F 0x20 0x6C 0x6F 0x6E 0x67 0x2E 0x20 - 0x20 0x41 0x66 0x74 0x65 0x72 0x20 0x68 - 0x65 0x20 0x69 0x73 0x20 0x61 0x6C 0x6D - 0x6F 0x73 0x74 0x20 0x72 0x75 0x6E 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x62 0x79 0x20 - 0x61 0x20 0x72 0x6F 0x61 0x64 0x20 0x72 - 0x61 0x63 0x65 0x2C 0x20 0x74 0x77 0x6F - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x69 0x63 - 0x20 0x70 0x6F 0x6C 0x69 0x63 0x65 0x6D - 0x65 0x6E 0x20 0x61 0x72 0x72 0x65 0x73 - 0x74 0x20 0x68 0x69 0x6D 0x20 0x66 0x6F - 0x72 0x20 0x6F 0x62 0x73 0x74 0x72 0x75 - 0x63 0x74 0x69 0x6E 0x67 0x20 0x74 0x72 - 0x61 0x66 0x66 0x69 0x63 0x20 0x61 0x6E - 0x64 0x20 0x74 0x65 0x6C 0x6C 0x20 0x68 - 0x69 0x6D 0x20 0x74 0x6F 0x20 0x77 0x61 - 0x69 0x74 0x20 0x6E 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x20 0x73 0x71 0x75 0x61 - 0x64 0x20 0x63 0x61 0x72 0x2E 0x20 0x20 - 0x0D 0x0A 0x57 0x68 0x69 0x6C 0x65 0x20 - 0x53 0x6C 0x61 0x6D 0x20 0x69 0x73 0x20 - 0x77 0x61 0x69 0x74 0x69 0x6E 0x67 0x2C - 0x20 0x61 0x20 0x6D 0x61 0x6E 0x20 0x77 - 0x69 0x74 0x68 0x20 0x64 0x79 0x6E 0x61 - 0x6D 0x69 0x74 0x65 0x20 0x69 0x6E 0x20 - 0x68 0x69 0x73 0x20 0x70 0x6F 0x63 0x6B - 0x65 0x74 0x20 0x72 0x75 0x6E 0x73 0x20 - 0x62 0x65 0x68 0x69 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x20 0x63 0x61 0x72 0x21 0x20 - 0x0D 0x0A 0x53 0x6C 0x61 0x6D 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x6B - 0x6E 0x6F 0x77 0x20 0x69 0x66 0x20 0x68 - 0x65 0x20 0x73 0x68 0x6F 0x75 0x6C 0x64 - 0x20 0x72 0x75 0x6E 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x61 0x63 0x65 0x20 0x66 0x75 - 0x72 0x74 0x68 0x65 0x72 0x20 0x70 0x6F - 0x6C 0x69 0x63 0x65 0x20 0x63 0x68 0x61 - 0x72 0x67 0x65 0x73 0x20 0x6F 0x72 0x20 - 0x73 0x74 0x61 0x79 0x20 0x61 0x6E 0x64 - 0x20 0x72 0x69 0x73 0x6B 0x20 0x74 0x68 - 0x65 0x20 0x63 0x68 0x61 0x6E 0x63 0x65 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x79 0x6E 0x61 0x6D 0x69 - 0x74 0x65 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x65 0x78 0x70 0x6C 0x6F 0x64 0x65 0x21 - 0x20 0x20 0x20 0x57 0x68 0x61 0x74 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 - 0x64 0x6F 0x3F 0x20 0x20 -ENDCHUNK - - -ENDCHUNK -#line 26206 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BA= 0x00015392 - - -CHUNK('HTOP', _help_48544F50_BA, "") -SUBFILE -#line 26214 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BA, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_12=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_12=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x59 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x34 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_12=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_12, 0x0) - BYTE - 0x03 0x03 0x74 0x6F 0x75 0x72 0x69 0x73 - 0x74 0x73 0x0D 0x0A 0x41 0x66 0x74 0x65 - 0x72 0x20 0x73 0x65 0x65 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x75 0x72 0x69 0x73 0x74 - 0x73 0x20 0x70 0x72 0x61 0x63 0x74 0x69 - 0x63 0x61 0x6C 0x6C 0x79 0x20 0x65 0x76 - 0x65 0x72 0x79 0x20 0x64 0x61 0x79 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x6C - 0x69 0x66 0x65 0x2C 0x20 0x54 0x69 0x6D - 0x6F 0x74 0x68 0x79 0x20 0x77 0x61 0x6E - 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 0x76 - 0x69 0x73 0x69 0x74 0x20 0x74 0x68 0x65 - 0x20 0x70 0x6C 0x61 0x63 0x65 0x73 0x20 - 0x74 0x68 0x65 0x79 0x20 0x63 0x61 0x6D - 0x65 0x20 0x66 0x72 0x6F 0x6D 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x6E 0x27 0x74 - 0x20 0x67 0x6F 0x20 0x65 0x76 0x65 0x72 - 0x79 0x77 0x68 0x65 0x72 0x65 0x20 0x61 - 0x74 0x20 0x6F 0x6E 0x63 0x65 0x2C 0x20 - 0x73 0x6F 0x20 0x68 0x65 0x20 0x73 0x74 - 0x61 0x72 0x74 0x65 0x64 0x20 0x77 0x61 - 0x74 0x63 0x68 0x69 0x6E 0x67 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x73 0x20 0x74 0x6F - 0x20 0x6C 0x65 0x61 0x72 0x6E 0x20 0x61 - 0x62 0x6F 0x75 0x74 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x70 0x61 0x72 0x74 0x73 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x77 0x6F 0x72 0x6C 0x64 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x77 0x61 0x74 0x63 0x68 - 0x65 0x64 0x20 0x61 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x65 0x76 0x65 0x72 0x79 - 0x20 0x64 0x61 0x79 0x20 0x66 0x6F 0x72 - 0x20 0x31 0x30 0x20 0x79 0x65 0x61 0x72 - 0x73 0x20 0x69 0x6E 0x20 0x61 0x20 0x72 - 0x6F 0x77 0x2E 0x20 0x20 0x54 0x68 0x61 - 0x74 0x27 0x73 0x20 0x61 0x20 0x6C 0x6F - 0x74 0x20 0x6F 0x66 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x73 0x2E 0x0D 0x0A 0x48 0x65 - 0x20 0x65 0x73 0x70 0x65 0x63 0x69 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x6F 0x76 0x65 - 0x64 0x20 0x6D 0x69 0x6D 0x69 0x63 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 - 0x61 0x63 0x74 0x6F 0x72 0x73 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x67 0x6F 0x74 0x20 - 0x73 0x6F 0x20 0x67 0x6F 0x6F 0x64 0x20 - 0x61 0x74 0x20 0x74 0x68 0x69 0x73 0x20 - 0x74 0x68 0x61 0x74 0x20 0x6F 0x6E 0x63 - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x77 - 0x61 0x72 0x64 0x2D 0x77 0x69 0x6E 0x6E - 0x69 0x6E 0x67 0x20 0x64 0x69 0x72 0x65 - 0x63 0x74 0x6F 0x72 0x20 0x4D 0x63 0x5A - 0x65 0x65 0x20 0x6D 0x69 0x73 0x74 0x6F - 0x6F 0x6B 0x20 0x68 0x69 0x6D 0x20 0x66 - 0x6F 0x72 0x20 0x61 0x20 0x70 0x6F 0x70 - 0x75 0x6C 0x61 0x72 0x20 0x47 0x72 0x65 - 0x65 0x6B 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x2E 0x20 0x20 0x57 0x68 0x65 0x6E 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x20 0x6F 0x75 0x74 0x20 - 0x54 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 - 0x77 0x61 0x73 0x20 0x6A 0x75 0x73 0x74 - 0x20 0x70 0x72 0x65 0x74 0x65 0x6E 0x64 - 0x69 0x6E 0x67 0x2C 0x20 0x68 0x65 0x20 - 0x6B 0x6E 0x65 0x77 0x20 0x74 0x68 0x61 - 0x74 0x20 0x54 0x69 0x6D 0x6F 0x74 0x68 - 0x79 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x70 0x65 0x72 0x66 0x65 - 0x63 0x74 0x20 0x66 0x6F 0x72 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x78 0x74 0x20 - 0x66 0x69 0x6C 0x6D 0x2C 0x20 0x93 0x47 - 0x72 0x65 0x65 0x6B 0x20 0x54 0x6F 0x75 - 0x72 0x69 0x73 0x74 0x20 0x54 0x72 0x61 - 0x70 0x70 0x65 0x64 0x20 0x69 0x6E 0x20 - 0x4B 0x61 0x6E 0x73 0x61 0x73 0x2E 0x94 - 0x20 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 26351 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BB= 0x00015393 - - -CHUNK('HTOP', _help_48544F50_BB, "") -SUBFILE -#line 26359 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BB, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BB=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BB=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x54 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFD 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BB=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BB, 0x0) - BYTE - 0x03 0x03 0x53 0x70 0x6F 0x6F 0x6B 0x20 - 0x53 0x6C 0x65 0x75 0x74 0x68 0x0D 0x0A - 0x54 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x67 0x68 0x6F 0x73 0x74 - 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x68 0x61 0x75 0x6E 0x74 0x65 0x64 0x20 - 0x68 0x6F 0x75 0x73 0x65 0x97 0x65 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x6B - 0x6E 0x6F 0x77 0x73 0x20 0x69 0x74 0x2C - 0x20 0x62 0x75 0x74 0x20 0x6E 0x6F 0x20 - 0x6F 0x6E 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x70 0x72 0x6F 0x76 0x65 0x20 0x69 0x74 - 0x2E 0x20 0x20 0x41 0x74 0x20 0x66 0x69 - 0x72 0x73 0x74 0x20 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x74 0x20 0x68 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 0x70 - 0x74 0x75 0x72 0x65 0x20 0x74 0x68 0x65 - 0x20 0x67 0x68 0x6F 0x73 0x74 0x20 0x6F - 0x6E 0x20 0x66 0x69 0x6C 0x6D 0x2E 0x20 - 0x20 0x42 0x75 0x74 0x20 0x77 0x68 0x65 - 0x6E 0x20 0x68 0x65 0x20 0x74 0x72 0x69 - 0x65 0x64 0x2C 0x20 0x68 0x65 0x20 0x66 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 0x61 - 0x74 0x20 0x68 0x65 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x68 0x65 0x61 0x72 0x20 - 0x74 0x68 0x65 0x20 0x67 0x68 0x6F 0x73 - 0x74 0x2C 0x20 0x62 0x75 0x74 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x6E 0x27 0x74 0x20 - 0x73 0x65 0x65 0x20 0x69 0x74 0x2E 0x20 - 0x20 0x49 0x74 0x20 0x77 0x61 0x73 0x20 - 0x69 0x6E 0x76 0x69 0x73 0x69 0x62 0x6C - 0x65 0x21 0x0D 0x0A 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x67 0x68 0x6F 0x73 - 0x74 0x20 0x66 0x6C 0x6F 0x61 0x74 0x73 - 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 0x20 - 0x62 0x61 0x6C 0x63 0x6F 0x6E 0x79 0x20 - 0x61 0x74 0x20 0x6E 0x69 0x67 0x68 0x74 - 0x20 0x61 0x6E 0x64 0x20 0x6C 0x61 0x75 - 0x67 0x68 0x73 0x20 0x61 0x74 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x61 0x76 0x65 - 0x79 0x61 0x72 0x64 0x20 0x62 0x65 0x6C - 0x6F 0x77 0x2E 0x20 0x20 0x49 0x66 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x68 0x65 0x20 - 0x63 0x6F 0x75 0x6C 0x64 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x67 0x68 - 0x6F 0x73 0x74 0x20 0x74 0x6F 0x20 0x74 - 0x65 0x6C 0x6C 0x20 0x68 0x69 0x6D 0x20 - 0x69 0x74 0x73 0x20 0x6E 0x61 0x6D 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 - 0x61 0x72 0x20 0x74 0x68 0x65 0x20 0x67 - 0x68 0x6F 0x73 0x74 0x27 0x73 0x20 0x63 - 0x68 0x69 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x6C 0x61 0x75 0x67 0x68 0x2C 0x20 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x72 0x6F 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x67 0x68 0x6F 0x73 0x74 0x20 - 0x69 0x73 0x6E 0x27 0x74 0x20 0x61 0x20 - 0x66 0x69 0x67 0x6D 0x65 0x6E 0x74 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x69 - 0x6D 0x61 0x67 0x69 0x6E 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x20 0x0D 0x0A 0x43 - 0x61 0x6E 0x20 0x54 0x69 0x6D 0x6F 0x74 - 0x68 0x79 0x20 0x6C 0x65 0x61 0x72 0x6E - 0x20 0x74 0x68 0x65 0x20 0x67 0x68 0x6F - 0x73 0x74 0x27 0x73 0x20 0x6E 0x61 0x6D - 0x65 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 - 0x6F 0x76 0x65 0x20 0x6F 0x6E 0x63 0x65 - 0x20 0x61 0x6E 0x64 0x20 0x66 0x6F 0x72 - 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x67 0x68 - 0x6F 0x73 0x74 0x20 0x69 0x73 0x20 0x72 - 0x65 0x61 0x6C 0x3F 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 26495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BC= 0x00015394 - - -CHUNK('HTOP', _help_48544F50_BC, "") -SUBFILE -#line 26503 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BC, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BC=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BC=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0F 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BC=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BC, 0x0) - BYTE - 0x03 0x03 0x52 0x65 0x70 0x6F 0x72 0x74 - 0x65 0x72 0x0D 0x0A 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x69 0x6D 0x61 0x67 - 0x69 0x6E 0x65 0x73 0x20 0x68 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x62 0x65 - 0x20 0x61 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x63 0x6F 0x6F 0x6C 0x20 0x54 - 0x56 0x20 0x6E 0x65 0x77 0x73 0x20 0x72 - 0x65 0x70 0x6F 0x72 0x74 0x65 0x72 0x2E - 0x20 0x20 0x48 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x66 0x69 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x74 0x68 0x69 0x65 - 0x76 0x65 0x73 0x20 0x77 0x68 0x6F 0x20 - 0x77 0x65 0x72 0x65 0x20 0x73 0x74 0x65 - 0x61 0x6C 0x69 0x6E 0x67 0x20 0x70 0x75 - 0x72 0x73 0x65 0x73 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x63 0x75 0x73 0x74 0x6F 0x6D - 0x65 0x72 0x73 0x20 0x69 0x6E 0x20 0x6F - 0x6E 0x65 0x20 0x6F 0x66 0x20 0x74 0x68 - 0x65 0x20 0x62 0x65 0x73 0x74 0x20 0x64 - 0x6F 0x77 0x6E 0x74 0x6F 0x77 0x6E 0x20 - 0x72 0x65 0x73 0x74 0x61 0x75 0x72 0x61 - 0x6E 0x74 0x73 0x2E 0x20 0x20 0x41 0x6E - 0x64 0x20 0x68 0x65 0x27 0x64 0x20 0x73 - 0x6E 0x65 0x61 0x6B 0x20 0x61 0x72 0x6F - 0x75 0x6E 0x64 0x20 0x61 0x74 0x20 0x6E - 0x69 0x67 0x68 0x74 0x2C 0x20 0x68 0x69 - 0x64 0x69 0x6E 0x67 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x74 0x68 0x65 0x20 - 0x64 0x75 0x6D 0x70 0x73 0x74 0x65 0x72 - 0x20 0x74 0x6F 0x20 0x68 0x65 0x61 0x72 - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x69 - 0x65 0x76 0x65 0x73 0x20 0x70 0x6C 0x61 - 0x6E 0x6E 0x69 0x6E 0x67 0x2E 0x20 0x0D - 0x0A 0x42 0x75 0x74 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x69 0x73 0x20 0x73 0x6F - 0x6D 0x65 0x74 0x68 0x69 0x6E 0x67 0x20 - 0x54 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 - 0x64 0x69 0x64 0x6E 0x92 0x74 0x20 0x70 - 0x6C 0x61 0x6E 0x20 0x66 0x6F 0x72 0x2E - 0x20 0x20 0x4A 0x75 0x73 0x74 0x20 0x61 - 0x73 0x20 0x68 0x65 0x20 0x69 0x73 0x20 - 0x6C 0x69 0x73 0x74 0x65 0x6E 0x69 0x6E - 0x67 0x20 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x74 0x68 0x69 0x65 0x76 0x65 0x73 - 0x20 0x74 0x61 0x6C 0x6B 0x2C 0x20 0x61 - 0x20 0x72 0x61 0x74 0x20 0x6C 0x69 0x76 - 0x69 0x6E 0x67 0x20 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x75 0x6D 0x70 - 0x73 0x74 0x65 0x72 0x20 0x61 0x74 0x74 - 0x61 0x63 0x6B 0x73 0x20 0x54 0x69 0x6D - 0x6F 0x74 0x68 0x79 0x2E 0x20 0x20 0x48 - 0x6F 0x77 0x20 0x63 0x61 0x6E 0x20 0x54 - 0x69 0x6D 0x6F 0x74 0x68 0x79 0x20 0x6B - 0x65 0x65 0x70 0x20 0x71 0x75 0x69 0x65 - 0x74 0x20 0x61 0x6E 0x64 0x20 0x73 0x74 - 0x69 0x6C 0x6C 0x20 0x64 0x65 0x66 0x65 - 0x6E 0x64 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x61 0x67 0x61 0x69 0x6E - 0x73 0x74 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x72 0x74 0x79 0x20 0x72 0x61 0x74 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 26626 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BD= 0x00015395 - - -CHUNK('HTOP', _help_48544F50_BD, "") -SUBFILE -#line 26634 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BD, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BD=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD9 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BD=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x36 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x40 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BD=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BD, 0x0) - BYTE - 0x03 0x03 0x4E 0x61 0x74 0x75 0x72 0x61 - 0x6C 0x69 0x73 0x74 0x0D 0x0A 0x54 0x69 - 0x6D 0x6F 0x74 0x68 0x79 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x69 0x6B 0x65 - 0x20 0x74 0x6F 0x20 0x73 0x74 0x61 0x72 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x20 0x61 0x73 0x20 0x61 - 0x20 0x6E 0x61 0x74 0x75 0x72 0x61 0x6C - 0x69 0x73 0x74 0x2C 0x20 0x73 0x6F 0x6D - 0x65 0x6F 0x6E 0x65 0x20 0x77 0x68 0x6F - 0x20 0x73 0x74 0x75 0x64 0x69 0x65 0x73 - 0x20 0x61 0x6E 0x64 0x20 0x70 0x72 0x6F - 0x74 0x65 0x63 0x74 0x73 0x20 0x6E 0x61 - 0x74 0x75 0x72 0x65 0x2E 0x20 0x20 0x57 - 0x68 0x61 0x74 0x20 0x69 0x66 0x20 0x68 - 0x65 0x20 0x73 0x74 0x75 0x6D 0x62 0x6C - 0x65 0x64 0x20 0x75 0x70 0x6F 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6F 0x70 0x65 0x6E - 0x69 0x6E 0x67 0x20 0x6F 0x66 0x20 0x61 - 0x6E 0x20 0x6F 0x6C 0x64 0x2C 0x20 0x6C - 0x6F 0x73 0x74 0x20 0x63 0x61 0x76 0x65 - 0x3F 0x20 0x20 0x42 0x75 0x74 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x76 0x65 0x2C 0x20 0x54 0x69 0x6D 0x6F - 0x74 0x68 0x79 0x20 0x62 0x75 0x6D 0x70 - 0x73 0x20 0x69 0x6E 0x74 0x6F 0x20 0x61 - 0x20 0x63 0x6C 0x61 0x79 0x20 0x77 0x61 - 0x74 0x65 0x72 0x20 0x6A 0x75 0x67 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x61 0x20 0x62 - 0x6C 0x75 0x65 0x20 0x73 0x6D 0x6F 0x6B - 0x65 0x20 0x65 0x6E 0x67 0x75 0x6C 0x66 - 0x73 0x20 0x68 0x69 0x6D 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x73 0x6D 0x6F 0x6B - 0x65 0x20 0x68 0x61 0x73 0x20 0x73 0x70 - 0x65 0x63 0x69 0x61 0x6C 0x2C 0x20 0x73 - 0x65 0x63 0x72 0x65 0x74 0x20 0x70 0x6F - 0x77 0x65 0x72 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x65 0x6E 0x61 0x62 0x6C 0x65 - 0x20 0x54 0x69 0x6D 0x6F 0x74 0x68 0x79 - 0x20 0x74 0x6F 0x20 0x66 0x6C 0x79 0x2E - 0x0D 0x0A 0x42 0x75 0x74 0x2C 0x20 0x6A - 0x75 0x73 0x74 0x20 0x74 0x68 0x65 0x6E - 0x2C 0x20 0x54 0x69 0x6D 0x6F 0x74 0x68 - 0x79 0x20 0x68 0x65 0x61 0x72 0x73 0x20 - 0x73 0x6F 0x6D 0x65 0x6F 0x6E 0x65 0x20 - 0x63 0x72 0x79 0x69 0x6E 0x67 0x20 0x66 - 0x6F 0x72 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x64 - 0x69 0x73 0x74 0x61 0x6E 0x63 0x65 0x2E - 0x20 0x20 0x49 0x74 0x92 0x73 0x20 0x63 - 0x6F 0x6D 0x69 0x6E 0x67 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6C 0x64 0x20 0x77 0x6F 0x6F 0x64 0x65 - 0x6E 0x20 0x62 0x72 0x69 0x64 0x67 0x65 - 0x2E 0x20 0x20 0x53 0x6F 0x6D 0x65 0x6F - 0x6E 0x65 0x20 0x73 0x65 0x74 0x20 0x66 - 0x69 0x72 0x65 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x20 0x77 0x68 0x69 0x6C 0x65 0x20 - 0x61 0x20 0x63 0x68 0x69 0x6C 0x64 0x20 - 0x77 0x61 0x73 0x20 0x63 0x72 0x6F 0x73 - 0x73 0x69 0x6E 0x67 0x2E 0x20 0x20 0x43 - 0x61 0x6E 0x20 0x54 0x69 0x6D 0x6F 0x74 - 0x68 0x79 0x20 0x75 0x73 0x65 0x20 0x68 - 0x69 0x73 0x20 0x6E 0x65 0x77 0x20 0x70 - 0x6F 0x77 0x65 0x72 0x73 0x20 0x74 0x6F - 0x20 0x73 0x61 0x76 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x68 0x69 0x6C 0x64 0x20 - 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 0x74 - 0x68 0x65 0x20 0x62 0x72 0x69 0x64 0x67 - 0x65 0x20 0x66 0x61 0x6C 0x6C 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 26766 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BE= 0x00015396 - - -CHUNK('HTOP', _help_48544F50_BE, "") -SUBFILE -#line 26774 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BE, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C3=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x3F 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C3=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xB3 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xA8 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C3=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C3, 0x0) - BYTE - 0x03 0x03 0x66 0x69 0x6C 0x6D 0x0D 0x0A - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x63 0x6F 0x6D - 0x65 0x20 0x61 0x6E 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x2E 0x20 0x20 0x48 0x65 0x20 - 0x68 0x65 0x61 0x72 0x64 0x20 0x74 0x68 - 0x61 0x74 0x20 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x77 0x61 0x79 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x69 0x74 0x20 0x69 0x6E 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x62 0x69 0x7A 0x20 0x77 - 0x61 0x73 0x20 0x74 0x6F 0x20 0x6D 0x65 - 0x65 0x74 0x20 0x74 0x68 0x65 0x20 0x72 - 0x69 0x67 0x68 0x74 0x20 0x70 0x65 0x6F - 0x70 0x6C 0x65 0x2E 0x20 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x64 0x65 0x63 0x69 0x64 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x67 0x65 0x74 0x20 0x61 - 0x20 0x6A 0x6F 0x62 0x20 0x61 0x73 0x20 - 0x61 0x20 0x76 0x61 0x6C 0x65 0x74 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x70 0x61 0x72 - 0x6B 0x69 0x6E 0x67 0x20 0x6C 0x6F 0x74 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x43 0x61 0x6E 0x6E 0x65 0x73 0x20 0x46 - 0x69 0x6C 0x6D 0x20 0x46 0x65 0x73 0x74 - 0x69 0x76 0x61 0x6C 0x2E 0x20 0x20 0x48 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x6E - 0x92 0x74 0x20 0x62 0x65 0x6C 0x69 0x65 - 0x76 0x65 0x20 0x69 0x74 0x97 0x61 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x73 0x65 0x20 - 0x73 0x74 0x61 0x72 0x73 0x20 0x66 0x72 - 0x6F 0x6D 0x20 0x61 0x72 0x6F 0x75 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x6C 0x64 0x21 0x20 0x20 0x54 0x68 - 0x65 0x6E 0x20 0x68 0x65 0x20 0x72 0x65 - 0x6D 0x65 0x6D 0x62 0x65 0x72 0x65 0x64 - 0x3A 0x20 0x22 0x74 0x68 0x65 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x77 0x61 0x79 0x20 - 0x74 0x6F 0x20 0x6D 0x61 0x6B 0x65 0x20 - 0x69 0x74 0x20 0x69 0x6E 0x20 0x73 0x68 - 0x6F 0x77 0x20 0x62 0x69 0x7A 0x2E 0x2E - 0x2E 0x22 0x20 0x20 0x44 0x69 0x6E 0x67 - 0x21 0x20 0x20 0x56 0x61 0x6C 0x65 0x6E - 0x74 0x69 0x6E 0x65 0x20 0x67 0x6F 0x74 - 0x20 0x61 0x6E 0x20 0x69 0x64 0x65 0x61 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x63 0x61 0x72 - 0x65 0x66 0x75 0x6C 0x6C 0x79 0x20 0x70 - 0x61 0x72 0x6B 0x20 0x73 0x6F 0x6D 0x65 - 0x20 0x73 0x74 0x61 0x72 0x92 0x73 0x20 - 0x63 0x61 0x72 0x20 0x61 0x6E 0x64 0x20 - 0x63 0x68 0x65 0x63 0x6B 0x20 0x74 0x6F - 0x20 0x73 0x65 0x65 0x20 0x69 0x66 0x20 - 0x74 0x68 0x65 0x79 0x20 0x68 0x61 0x64 - 0x20 0x61 0x6E 0x79 0x20 0x6C 0x75 0x67 - 0x67 0x61 0x67 0x65 0x2E 0x20 0x20 0x49 - 0x66 0x20 0x74 0x68 0x65 0x79 0x20 0x64 - 0x69 0x64 0x2C 0x20 0x68 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 0x64 - 0x65 0x20 0x69 0x6E 0x20 0x61 0x20 0x73 - 0x75 0x69 0x74 0x63 0x61 0x73 0x65 0x2E - 0x20 0x54 0x68 0x65 0x20 0x73 0x74 0x61 - 0x72 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x65 0x76 0x65 0x6E 0x74 0x75 0x61 0x6C - 0x6C 0x79 0x20 0x67 0x6F 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x68 0x6F 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x6F 0x70 0x65 0x6E - 0x20 0x74 0x68 0x65 0x20 0x73 0x75 0x69 - 0x74 0x63 0x61 0x73 0x65 0x2E 0x20 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6F 0x70 0x20 0x6F 0x75 0x74 0x2C - 0x20 0x69 0x6E 0x74 0x72 0x6F 0x64 0x75 - 0x63 0x65 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x42 0x69 0x6E 0x67 0x6F 0x21 0x20 0x68 - 0x65 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x6B 0x6E 0x6F 0x77 0x20 0x73 0x6F 0x6D - 0x65 0x6F 0x6E 0x65 0x20 0x69 0x6E 0x20 - 0x73 0x68 0x6F 0x77 0x20 0x62 0x69 0x7A - 0x2E 0x20 0x20 0x53 0x6F 0x6F 0x6E 0x20 - 0x68 0x65 0x92 0x64 0x20 0x62 0x65 0x20 - 0x61 0x20 0x73 0x74 0x61 0x72 0x21 0x20 - 0x0D 0x0A 0x57 0x65 0x6C 0x6C 0x2C 0x20 - 0x74 0x68 0x69 0x6E 0x67 0x73 0x20 0x64 - 0x69 0x64 0x6E 0x92 0x74 0x20 0x71 0x75 - 0x69 0x74 0x65 0x20 0x67 0x6F 0x20 0x61 - 0x63 0x63 0x6F 0x72 0x64 0x69 0x6E 0x67 - 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 0x6E - 0x2E 0x20 0x20 0x56 0x61 0x6C 0x65 0x6E - 0x74 0x69 0x6E 0x65 0x20 0x65 0x6E 0x64 - 0x65 0x64 0x20 0x75 0x70 0x20 0x61 0x74 - 0x20 0x61 0x20 0x73 0x6D 0x61 0x6C 0x6C - 0x20 0x61 0x69 0x72 0x70 0x6F 0x72 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x20 0x74 - 0x68 0x65 0x20 0x6C 0x6F 0x73 0x74 0x20 - 0x6C 0x75 0x67 0x67 0x61 0x67 0x65 0x20 - 0x63 0x6F 0x75 0x6E 0x74 0x65 0x72 0x2E - 0x20 0x20 0x53 0x6F 0x6D 0x65 0x62 0x6F - 0x64 0x79 0x20 0x68 0x65 0x61 0x72 0x64 - 0x20 0x68 0x69 0x6D 0x20 0x73 0x63 0x72 - 0x65 0x61 0x6D 0x69 0x6E 0x67 0x20 0x68 - 0x69 0x73 0x20 0x6C 0x75 0x6E 0x67 0x73 - 0x20 0x6F 0x75 0x74 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x69 0x6E 0x73 0x69 0x64 0x65 - 0x20 0x74 0x68 0x65 0x20 0x73 0x75 0x69 - 0x74 0x63 0x61 0x73 0x65 0x2E 0x20 0x20 - 0x42 0x79 0x20 0x63 0x6F 0x69 0x6E 0x63 - 0x69 0x64 0x65 0x6E 0x63 0x65 0x2C 0x20 - 0x74 0x68 0x61 0x74 0x20 0x93 0x73 0x6F - 0x6D 0x65 0x62 0x6F 0x64 0x79 0x94 0x20 - 0x77 0x61 0x73 0x20 0x61 0x20 0x68 0x6F - 0x74 0x20 0x66 0x69 0x6C 0x6D 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x6F 0x72 0x20 - 0x62 0x79 0x20 0x74 0x68 0x65 0x20 0x6E - 0x61 0x6D 0x65 0x20 0x6F 0x66 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x21 -ENDCHUNK - - -ENDCHUNK -#line 26954 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_BF= 0x00015397 - - -CHUNK('HTOP', _help_48544F50_BF, "") -SUBFILE -#line 26962 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_BF, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_BF=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_BF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_BF=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_BF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2A 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x15 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_BF=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_BF, 0x0) - BYTE - 0x03 0x03 0x41 0x6E 0x6E 0x6F 0x79 0x69 - 0x6E 0x67 0x20 0x4E 0x65 0x69 0x67 0x68 - 0x62 0x6F 0x72 0x0D 0x0A 0x56 0x61 0x6C - 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 0x77 - 0x6F 0x75 0x6C 0x64 0x20 0x6C 0x6F 0x76 - 0x65 0x20 0x70 0x6C 0x61 0x79 0x20 0x74 - 0x68 0x65 0x20 0x70 0x61 0x72 0x74 0x20 - 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 0x6E - 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 0x6E - 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x20 0x6B 0x6E - 0x6F 0x77 0x2C 0x20 0x74 0x68 0x65 0x20 - 0x74 0x79 0x70 0x65 0x20 0x77 0x68 0x6F - 0x20 0x73 0x68 0x6F 0x77 0x73 0x20 0x75 - 0x70 0x20 0x61 0x74 0x20 0x79 0x6F 0x75 - 0x72 0x20 0x64 0x6F 0x6F 0x72 0x20 0x61 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x74 - 0x69 0x6D 0x65 0x2E 0x20 0x20 0x57 0x68 - 0x6F 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 - 0x73 0x20 0x79 0x6F 0x75 0x20 0x65 0x76 - 0x65 0x72 0x79 0x77 0x68 0x65 0x72 0x65 - 0x20 0x79 0x6F 0x75 0x20 0x67 0x6F 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x69 0x74 0x79 0x2E 0x20 0x20 0x57 0x68 - 0x6F 0x20 0x65 0x61 0x74 0x73 0x20 0x64 - 0x69 0x6E 0x6E 0x65 0x72 0x20 0x61 0x74 - 0x20 0x74 0x68 0x65 0x20 0x73 0x61 0x6D - 0x65 0x20 0x70 0x6C 0x61 0x63 0x65 0x20 - 0x79 0x6F 0x75 0x20 0x64 0x6F 0x2E 0x20 - 0x20 0x54 0x68 0x61 0x74 0x92 0x73 0x20 - 0x69 0x74 0x21 0x20 0x59 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x66 0x65 0x64 0x20 0x75 - 0x70 0x21 0x20 0x20 0x59 0x6F 0x75 0x20 - 0x6E 0x65 0x65 0x64 0x20 0x61 0x20 0x76 - 0x61 0x63 0x61 0x74 0x69 0x6F 0x6E 0x2E - 0x20 0x20 0x48 0x6F 0x77 0x20 0x61 0x62 - 0x6F 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x73 0x65 0x72 0x65 0x6E 0x69 0x74 0x79 - 0x20 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 - 0x6A 0x75 0x6E 0x67 0x6C 0x65 0x3F 0x20 - 0x20 0x4C 0x65 0x61 0x6E 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x61 0x6E 0x64 0x20 0x72 - 0x65 0x6C 0x61 0x78 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x2C 0x20 0x73 0x6F 0x6F 0x6E 0x20 - 0x61 0x6C 0x6C 0x20 0x6F 0x66 0x20 0x79 - 0x6F 0x75 0x72 0x20 0x74 0x72 0x6F 0x75 - 0x62 0x6C 0x65 0x73 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x62 0x65 0x20 0x62 0x65 0x68 - 0x69 0x6E 0x64 0x20 0x79 0x6F 0x75 0x2E - 0x20 0x20 0x59 0x6F 0x75 0x20 0x6C 0x6F - 0x6F 0x6B 0x20 0x74 0x68 0x72 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x68 0x65 0x20 0x77 - 0x69 0x6E 0x64 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x61 0x64 0x6D 0x69 0x72 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x61 0x73 0x73 - 0x69 0x6E 0x67 0x20 0x73 0x63 0x65 0x6E - 0x65 0x72 0x79 0x2E 0x20 0x20 0x4F 0x68 - 0x20 0x6E 0x6F 0x21 0x20 0x20 0x49 0x73 - 0x20 0x74 0x68 0x69 0x73 0x20 0x70 0x6F - 0x73 0x73 0x69 0x62 0x6C 0x65 0x3F 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x74 0x68 0x65 0x20 0x61 0x6E - 0x6E 0x6F 0x79 0x69 0x6E 0x67 0x20 0x6E - 0x65 0x69 0x67 0x68 0x62 0x6F 0x72 0x20 - 0x63 0x61 0x6E 0x20 0x65 0x76 0x65 0x6E - 0x20 0x66 0x6C 0x79 0x21 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x63 0x61 0x6E 0x20 0x68 - 0x65 0x20 0x6C 0x61 0x6E 0x64 0x2E 0x2E - 0x2E 0x3F 0x0D 0x0A -ENDCHUNK - - -ENDCHUNK -#line 27093 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C0= 0x00015398 - - -CHUNK('HTOP', _help_48544F50_C0, "") -SUBFILE -#line 27101 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA1 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C0, 0x0) - BYTE - 0x03 0x03 0x44 0x65 0x74 0x65 0x63 0x74 - 0x69 0x76 0x65 0x0D 0x0A 0x56 0x61 0x6C - 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 0x63 - 0x61 0x6E 0x92 0x74 0x20 0x77 0x61 0x69 - 0x74 0x20 0x74 0x6F 0x20 0x70 0x6C 0x61 - 0x79 0x20 0x61 0x20 0x64 0x65 0x74 0x65 - 0x63 0x74 0x69 0x76 0x65 0x2E 0x20 0x20 - 0x54 0x68 0x65 0x20 0x64 0x65 0x74 0x65 - 0x63 0x74 0x69 0x76 0x65 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 0x6F - 0x20 0x70 0x6C 0x61 0x79 0x20 0x69 0x73 - 0x20 0x73 0x70 0x65 0x63 0x69 0x61 0x6C - 0x2E 0x20 0x4E 0x6F 0x74 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x69 0x73 0x20 0x68 0x65 - 0x20 0x77 0x69 0x73 0x65 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x65 0x76 0x65 0x72 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x68 0x65 - 0x20 0x61 0x6C 0x73 0x6F 0x20 0x68 0x61 - 0x73 0x20 0x61 0x6E 0x20 0x69 0x6E 0x63 - 0x72 0x65 0x64 0x69 0x62 0x6C 0x65 0x20 - 0x70 0x6F 0x77 0x65 0x72 0x2E 0x20 0x20 - 0x4F 0x6E 0x63 0x65 0x20 0x68 0x65 0x20 - 0x66 0x69 0x6E 0x64 0x73 0x20 0x61 0x20 - 0x63 0x6C 0x75 0x65 0x20 0x74 0x6F 0x20 - 0x61 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 - 0x79 0x2C 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F - 0x72 0x6D 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x61 0x6E 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x68 0x75 0x6D 0x61 0x6E 0x20 0x62 0x65 - 0x69 0x6E 0x67 0x2C 0x20 0x61 0x6E 0x20 - 0x61 0x6E 0x69 0x6D 0x61 0x6C 0x2C 0x20 - 0x6F 0x72 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x61 0x6E 0x20 0x6F 0x62 0x6A 0x65 0x63 - 0x74 0x2E 0x20 0x20 0x20 0x42 0x75 0x74 - 0x20 0x6F 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x69 0x73 0x20 0x74 0x72 0x61 0x6E - 0x73 0x66 0x6F 0x72 0x6D 0x65 0x64 0x2C - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x6F 0x6E 0x6C 0x79 0x20 0x63 0x6F 0x6D - 0x65 0x20 0x62 0x61 0x63 0x6B 0x20 0x61 - 0x73 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C - 0x66 0x20 0x69 0x66 0x20 0x68 0x65 0x20 - 0x66 0x69 0x67 0x75 0x72 0x65 0x73 0x20 - 0x6F 0x75 0x74 0x20 0x77 0x68 0x6F 0x20 - 0x69 0x73 0x20 0x67 0x75 0x69 0x6C 0x74 - 0x79 0x2E 0x0D 0x0A 0x43 0x61 0x6E 0x20 - 0x68 0x65 0x20 0x73 0x6F 0x6C 0x76 0x65 - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x69 - 0x6D 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27215 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C1= 0x00015399 - - -CHUNK('HTOP', _help_48544F50_C1, "") -SUBFILE -#line 27223 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C1=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C1=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xF3 0x00 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xB1 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C1=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C1, 0x0) - BYTE - 0x03 0x03 0x56 0x6F 0x6F 0x64 0x6F 0x6F - 0x20 0x4D 0x61 0x6E 0x0D 0x0A 0x49 0x66 - 0x20 0x79 0x6F 0x75 0x20 0x61 0x72 0x65 - 0x20 0x74 0x69 0x72 0x65 0x64 0x20 0x6F - 0x66 0x20 0x62 0x65 0x69 0x6E 0x67 0x20 - 0x74 0x72 0x65 0x61 0x74 0x65 0x64 0x20 - 0x6C 0x69 0x6B 0x65 0x20 0x61 0x20 0x6B - 0x69 0x64 0x20 0x61 0x6E 0x64 0x20 0x77 - 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x63 0x6F 0x6D 0x65 0x20 0x61 0x20 - 0x67 0x72 0x6F 0x77 0x6E 0x2D 0x75 0x70 - 0x2C 0x20 0x73 0x65 0x65 0x20 0x56 0x61 - 0x6C 0x65 0x6E 0x74 0x69 0x6E 0x65 0x20 - 0x74 0x68 0x65 0x20 0x56 0x6F 0x6F 0x64 - 0x6F 0x6F 0x20 0x4D 0x61 0x6E 0x2E 0x20 - 0x20 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F 0x72 - 0x6D 0x20 0x79 0x6F 0x75 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x63 - 0x6F 0x6F 0x6C 0x65 0x73 0x74 0x20 0x70 - 0x65 0x72 0x73 0x6F 0x6E 0x20 0x6F 0x6E - 0x20 0x65 0x61 0x72 0x74 0x68 0x2E 0x20 - 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 0x77 - 0x68 0x61 0x74 0x20 0x61 0x62 0x6F 0x75 - 0x74 0x20 0x67 0x72 0x6F 0x77 0x6E 0x2D - 0x75 0x70 0x73 0x3F 0x20 0x20 0x44 0x6F - 0x20 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 - 0x6E 0x65 0x92 0x73 0x20 0x70 0x6F 0x77 - 0x65 0x72 0x73 0x20 0x61 0x6C 0x73 0x6F - 0x20 0x61 0x66 0x66 0x65 0x63 0x74 0x20 - 0x74 0x68 0x65 0x6D 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27315 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C2= 0x0001539a - - -CHUNK('HTOP', _help_48544F50_C2, "") -SUBFILE -#line 27323 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C2, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2D 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_F, 0x0) - BYTE - 0x03 0x03 0x6F 0x70 0x65 0x72 0x61 0x20 - 0x73 0x69 0x6E 0x67 0x65 0x72 0x0D 0x0A - 0x56 0x65 0x6E 0x69 0x65 0x20 0x68 0x61 - 0x73 0x20 0x79 0x65 0x74 0x20 0x74 0x6F - 0x20 0x6C 0x61 0x6E 0x64 0x20 0x61 0x20 - 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x6A 0x6F 0x62 0x20 0x61 0x74 0x20 0x61 - 0x6E 0x20 0x6F 0x70 0x65 0x72 0x61 0x2E - 0x20 0x20 0x49 0x6E 0x73 0x74 0x65 0x61 - 0x64 0x2C 0x20 0x68 0x65 0x20 0x69 0x73 - 0x20 0x61 0x20 0x77 0x61 0x69 0x74 0x65 - 0x72 0x20 0x61 0x74 0x20 0x61 0x20 0x6C - 0x6F 0x63 0x61 0x6C 0x20 0x63 0x61 0x66 - 0x65 0x2E 0x20 0x20 0x56 0x65 0x6E 0x69 - 0x65 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x73 0x20 0x61 - 0x74 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x66 0x65 0x2E 0x20 0x20 0x41 0x6E 0x64 - 0x20 0x77 0x68 0x65 0x6E 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x73 0x69 0x6E 0x67 - 0x73 0x2C 0x20 0x63 0x75 0x73 0x74 0x6F - 0x6D 0x65 0x72 0x73 0x20 0x65 0x61 0x74 - 0x20 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x63 - 0x61 0x66 0x65 0x92 0x73 0x20 0x64 0x65 - 0x61 0x66 0x20 0x6F 0x77 0x6E 0x65 0x72 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x75 0x6E 0x64 0x65 0x72 0x73 0x74 - 0x61 0x6E 0x64 0x20 0x77 0x68 0x79 0x20 - 0x67 0x75 0x65 0x73 0x74 0x73 0x20 0x6C - 0x65 0x61 0x76 0x65 0x20 0x73 0x6F 0x20 - 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 0x2E - 0x20 0x20 0x4D 0x63 0x5A 0x65 0x65 0x20 - 0x65 0x61 0x74 0x73 0x20 0x61 0x74 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x66 0x65 - 0x20 0x62 0x65 0x63 0x61 0x75 0x73 0x65 - 0x20 0x68 0x65 0x20 0x63 0x61 0x6E 0x20 - 0x61 0x6C 0x77 0x61 0x79 0x73 0x20 0x67 - 0x65 0x74 0x20 0x61 0x20 0x74 0x61 0x62 - 0x6C 0x65 0x2E 0x20 0x0D 0x0A 0x41 0x74 - 0x20 0x6C 0x75 0x6E 0x63 0x68 0x20 0x6F - 0x6E 0x65 0x20 0x64 0x61 0x79 0x2C 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x20 0x63 0x61 - 0x6D 0x65 0x20 0x6F 0x75 0x74 0x20 0x73 - 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x67 0x72 0x65 0x65 0x74 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x2E 0x20 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x92 0x73 0x20 - 0x66 0x6C 0x69 0x6E 0x63 0x68 0x65 0x64 - 0x20 0x69 0x6E 0x20 0x70 0x61 0x69 0x6E - 0x20 0x61 0x6E 0x64 0x20 0x73 0x61 0x69 - 0x64 0x2C 0x20 0x93 0x59 0x6F 0x75 0x92 - 0x72 0x65 0x20 0x74 0x68 0x65 0x20 0x77 - 0x6F 0x72 0x73 0x74 0x20 0x73 0x69 0x6E - 0x67 0x65 0x72 0x20 0x49 0x92 0x76 0x65 - 0x20 0x65 0x76 0x65 0x72 0x20 0x68 0x65 - 0x61 0x72 0x64 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x79 0x6F 0x75 0x20 0x6C 0x6F 0x6F - 0x6B 0x20 0x6C 0x69 0x6B 0x65 0x20 0x61 - 0x20 0x76 0x61 0x6D 0x70 0x69 0x72 0x65 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x79 0x6F - 0x75 0x92 0x64 0x20 0x62 0x65 0x20 0x67 - 0x72 0x65 0x61 0x74 0x20 0x69 0x6E 0x20 - 0x6D 0x79 0x20 0x68 0x6F 0x72 0x72 0x6F - 0x72 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x2E 0x94 0x20 0x20 0x56 0x65 0x6E 0x69 - 0x65 0x20 0x66 0x69 0x6E 0x61 0x6C 0x6C - 0x79 0x20 0x68 0x61 0x64 0x20 0x61 0x20 - 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 0x20 - 0x63 0x61 0x72 0x65 0x65 0x72 0x2E -ENDCHUNK - - -ENDCHUNK -#line 27454 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C3= 0x0001539b - - -CHUNK('HTOP', _help_48544F50_C3, "") -SUBFILE -#line 27462 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C3, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C2=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C3, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C2=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C2, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE0 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C2=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C2, 0x0) - BYTE - 0x03 0x03 0x44 0x72 0x61 0x63 0x75 0x6C - 0x61 0x0D 0x0A 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x77 0x61 0x6E 0x74 0x73 0x20 0x74 - 0x6F 0x20 0x70 0x6C 0x61 0x79 0x20 0x61 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x44 0x72 0x61 0x63 0x75 0x6C 0x61 - 0x2E 0x20 0x20 0x48 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x6C 0x69 0x76 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x66 0x6C 0x79 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x73 0x69 0x6E 0x67 0x69 - 0x6E 0x67 0x20 0x93 0x49 0x20 0x57 0x61 - 0x6E 0x74 0x20 0x54 0x6F 0x20 0x44 0x72 - 0x69 0x6E 0x6B 0x20 0x59 0x6F 0x75 0x72 - 0x20 0x42 0x6C 0x6F 0x6F 0x64 0x94 0x20 - 0x61 0x6E 0x64 0x20 0x93 0x53 0x75 0x6E - 0x73 0x68 0x69 0x6E 0x65 0x20 0x4F 0x6E - 0x20 0x4D 0x79 0x20 0x53 0x68 0x6F 0x75 - 0x6C 0x64 0x65 0x72 0x20 0x4D 0x61 0x6B - 0x65 0x73 0x20 0x4D 0x65 0x20 0x42 0x75 - 0x72 0x73 0x74 0x20 0x49 0x6E 0x74 0x6F - 0x20 0x46 0x6C 0x61 0x6D 0x65 0x73 0x2E - 0x94 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x69 0x73 0x20 0x6C 0x61 0x74 0x65 - 0x20 0x77 0x69 0x74 0x68 0x20 0x68 0x69 - 0x73 0x20 0x72 0x65 0x6E 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x68 0x65 0x27 0x73 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x6B 0x69 0x63 0x6B - 0x65 0x64 0x20 0x6F 0x75 0x74 0x20 0x6F - 0x66 0x20 0x74 0x68 0x65 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x54 0x6F - 0x20 0x72 0x61 0x69 0x73 0x65 0x20 0x6D - 0x6F 0x6E 0x65 0x79 0x2C 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x64 0x65 0x63 0x69 - 0x64 0x65 0x73 0x20 0x74 0x6F 0x20 0x74 - 0x68 0x72 0x6F 0x77 0x20 0x61 0x20 0x63 - 0x68 0x61 0x72 0x69 0x74 0x79 0x20 0x6F - 0x70 0x65 0x72 0x61 0x20 0x63 0x6F 0x6E - 0x63 0x65 0x72 0x74 0x2C 0x20 0x73 0x74 - 0x61 0x72 0x72 0x69 0x6E 0x67 0x20 0x68 - 0x69 0x6D 0x73 0x65 0x6C 0x66 0x2C 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 - 0x65 0x6D 0x65 0x74 0x65 0x72 0x79 0x20 - 0x74 0x6F 0x20 0x72 0x61 0x69 0x73 0x65 - 0x20 0x6D 0x6F 0x6E 0x65 0x79 0x20 0x66 - 0x6F 0x72 0x20 0x68 0x69 0x73 0x20 0x72 - 0x65 0x6E 0x74 0x2E 0x20 0x0D 0x0A 0x57 - 0x69 0x6C 0x6C 0x20 0x61 0x6E 0x79 0x6F - 0x6E 0x65 0x20 0x73 0x68 0x6F 0x77 0x20 - 0x75 0x70 0x20 0x74 0x6F 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6F 0x6E 0x63 0x65 0x72 - 0x74 0x3F 0x20 0x20 0x57 0x69 0x6C 0x6C - 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 0x72 - 0x61 0x69 0x73 0x65 0x20 0x74 0x68 0x65 - 0x20 0x64 0x65 0x61 0x64 0x3F 0x20 0x57 - 0x69 0x6C 0x6C 0x20 0x68 0x65 0x20 0x62 - 0x65 0x20 0x65 0x76 0x69 0x63 0x74 0x65 - 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27584 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C4= 0x0001539c - - -CHUNK('HTOP', _help_48544F50_C4, "") -SUBFILE -#line 27592 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C4, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_21=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C4, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xE0 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_21=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x92 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x93 0x02 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA5 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x4C 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_21=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_21, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x72 0x65 0x65 0x74 - 0x20 0x46 0x61 0x69 0x72 0x20 0x50 0x65 - 0x72 0x66 0x6F 0x72 0x6D 0x65 0x72 0x0D - 0x0A 0x41 0x6E 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x64 0x72 0x65 0x61 0x6D 0x20 0x72 - 0x6F 0x6C 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x2C 0x20 0x64 0x61 0x6E 0x63 0x69 0x6E - 0x67 0x20 0x70 0x65 0x72 0x66 0x6F 0x72 - 0x6D 0x65 0x72 0x20 0x61 0x74 0x20 0x61 - 0x20 0x73 0x74 0x72 0x65 0x65 0x74 0x20 - 0x66 0x61 0x69 0x72 0x20 0x69 0x6E 0x20 - 0x50 0x72 0x61 0x67 0x75 0x65 0x2C 0x20 - 0x43 0x7A 0x65 0x63 0x68 0x20 0x52 0x65 - 0x70 0x75 0x62 0x6C 0x69 0x63 0x2E 0x20 - 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 0x64 - 0x6F 0x65 0x73 0x20 0x68 0x69 0x73 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x44 0x72 0x61 0x63 0x75 0x6C 0x61 0x20 - 0x72 0x6F 0x75 0x74 0x69 0x6E 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x73 0x69 0x6E 0x67 - 0x73 0x20 0x61 0x20 0x73 0x6F 0x6E 0x67 - 0x20 0x68 0x65 0x20 0x77 0x72 0x6F 0x74 - 0x65 0x20 0x63 0x61 0x6C 0x6C 0x65 0x64 - 0x20 0x93 0x54 0x61 0x70 0x2D 0x44 0x61 - 0x6E 0x63 0x69 0x6E 0x67 0x20 0x42 0x61 - 0x74 0x73 0x94 0x2E 0x20 0x20 0x54 0x68 - 0x65 0x20 0x63 0x72 0x6F 0x77 0x64 0x20 - 0x71 0x75 0x69 0x63 0x6B 0x6C 0x79 0x20 - 0x62 0x61 0x63 0x6B 0x73 0x20 0x61 0x77 - 0x61 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x56 0x65 0x6E 0x69 0x65 0x92 0x73 0x20 - 0x61 0x77 0x66 0x75 0x6C 0x20 0x73 0x69 - 0x6E 0x67 0x69 0x6E 0x67 0x2E 0x20 0x20 - 0x53 0x75 0x64 0x64 0x65 0x6E 0x6C 0x79 - 0x20 0x61 0x20 0x64 0x6F 0x67 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x72 - 0x6F 0x77 0x64 0x20 0x64 0x69 0x73 0x61 - 0x70 0x70 0x65 0x61 0x72 0x73 0x2E 0x20 - 0x20 0x54 0x68 0x65 0x20 0x6F 0x77 0x6E - 0x65 0x72 0x2C 0x20 0x61 0x20 0x74 0x65 - 0x65 0x6E 0x61 0x67 0x65 0x20 0x67 0x69 - 0x72 0x6C 0x2C 0x20 0x63 0x72 0x69 0x65 - 0x73 0x3A 0x20 0x93 0x57 0x68 0x65 0x72 - 0x65 0x92 0x73 0x20 0x6D 0x79 0x20 0x70 - 0x75 0x70 0x70 0x79 0x3F 0x3F 0x94 0x20 - 0x20 0x50 0x65 0x6F 0x70 0x6C 0x65 0x20 - 0x73 0x65 0x61 0x72 0x63 0x68 0x2C 0x20 - 0x62 0x75 0x74 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x67 0x20 0x63 0x61 0x6E 0x6E - 0x6F 0x74 0x20 0x62 0x65 0x20 0x66 0x6F - 0x75 0x6E 0x64 0x2E 0x20 0x20 0x49 0x74 - 0x92 0x73 0x20 0x6C 0x65 0x61 0x72 0x6E - 0x65 0x64 0x20 0x6C 0x61 0x74 0x65 0x72 - 0x20 0x74 0x68 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x67 0x20 0x68 0x61 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x69 0x73 0x20 - 0x62 0x65 0x69 0x6E 0x67 0x20 0x6B 0x65 - 0x70 0x74 0x20 0x73 0x6F 0x6D 0x65 0x77 - 0x68 0x65 0x72 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x63 0x69 0x74 0x79 - 0x2E 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x69 0x73 0x20 0x63 0x61 0x6C 0x6C - 0x65 0x64 0x20 0x69 0x6E 0x20 0x74 0x6F - 0x20 0x62 0x72 0x69 0x6E 0x67 0x20 0x6F - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x72 - 0x73 0x20 0x77 0x69 0x74 0x68 0x20 0x68 - 0x69 0x73 0x20 0x73 0x69 0x6E 0x67 0x69 - 0x6E 0x67 0x2E 0x20 0x0D 0x0A 0x57 0x69 - 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x64 0x6E 0x61 0x70 0x70 0x65 0x72 - 0x73 0x20 0x72 0x65 0x6C 0x65 0x61 0x73 - 0x65 0x20 0x74 0x68 0x65 0x20 0x64 0x6F - 0x67 0x20 0x69 0x6E 0x20 0x72 0x65 0x74 - 0x75 0x72 0x6E 0x20 0x66 0x6F 0x72 0x20 - 0x61 0x20 0x70 0x72 0x6F 0x6D 0x69 0x73 - 0x65 0x20 0x74 0x68 0x61 0x74 0x20 0x56 - 0x65 0x6E 0x69 0x65 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x73 0x74 0x6F 0x70 0x20 0x73 - 0x69 0x6E 0x67 0x69 0x6E 0x67 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27740 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C5= 0x0001539d - - -CHUNK('HTOP', _help_48544F50_C5, "") -SUBFILE -#line 27748 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C5, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C7=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C7=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x86 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xFA 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C7=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C7, 0x0) - BYTE - 0x03 0x03 0x53 0x74 0x75 0x64 0x65 0x6E - 0x74 0x0D 0x0A 0x56 0x65 0x6E 0x69 0x65 - 0x20 0x68 0x61 0x73 0x20 0x61 0x6C 0x73 - 0x6F 0x20 0x77 0x61 0x6E 0x74 0x65 0x64 - 0x20 0x74 0x6F 0x20 0x62 0x65 0x20 0x61 - 0x20 0x74 0x68 0x65 0x61 0x74 0x65 0x72 - 0x20 0x73 0x74 0x75 0x64 0x65 0x6E 0x74 - 0x20 0x61 0x74 0x20 0x4E 0x65 0x77 0x20 - 0x59 0x6F 0x72 0x6B 0x20 0x55 0x6E 0x69 - 0x76 0x65 0x72 0x73 0x69 0x74 0x79 0x2E - 0x20 0x20 0x56 0x65 0x6E 0x69 0x65 0x92 - 0x73 0x20 0x74 0x68 0x65 0x61 0x74 0x65 - 0x72 0x20 0x67 0x72 0x6F 0x75 0x70 0x20 - 0x69 0x73 0x20 0x73 0x65 0x6E 0x74 0x20 - 0x74 0x6F 0x20 0x54 0x61 0x68 0x69 0x74 - 0x69 0x20 0x74 0x6F 0x20 0x64 0x6F 0x20 - 0x61 0x20 0x6D 0x75 0x73 0x69 0x63 0x61 - 0x6C 0x20 0x76 0x65 0x72 0x73 0x69 0x6F - 0x6E 0x20 0x6F 0x66 0x20 0x93 0x47 0x75 - 0x6C 0x6C 0x69 0x76 0x65 0x72 0x92 0x73 - 0x20 0x54 0x72 0x61 0x76 0x65 0x6C 0x73 - 0x2E 0x94 0x20 0x20 0x54 0x68 0x65 0x20 - 0x6C 0x6F 0x63 0x61 0x6C 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x64 0x6F 0x6E - 0x92 0x74 0x20 0x6C 0x69 0x6B 0x65 0x20 - 0x74 0x68 0x65 0x20 0x70 0x65 0x72 0x66 - 0x6F 0x72 0x6D 0x61 0x6E 0x63 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x63 0x68 0x61 0x73 - 0x65 0x20 0x56 0x65 0x6E 0x69 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x68 0x69 0x73 0x20 - 0x74 0x72 0x6F 0x75 0x70 0x65 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 - 0x68 0x69 0x6C 0x6C 0x73 0x2E 0x20 0x56 - 0x65 0x6E 0x69 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x73 0x74 0x75 0x64 0x65 - 0x6E 0x74 0x73 0x20 0x68 0x69 0x64 0x65 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x63 0x61 - 0x76 0x65 0x2E 0x20 0x20 0x42 0x75 0x74 - 0x2C 0x20 0x73 0x74 0x72 0x61 0x6E 0x67 - 0x65 0x6C 0x79 0x2C 0x20 0x74 0x68 0x65 - 0x72 0x65 0x20 0x69 0x73 0x20 0x61 0x20 - 0x63 0x6F 0x66 0x66 0x69 0x6E 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x76 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x63 0x6F 0x66 0x66 - 0x69 0x6E 0x20 0x64 0x6F 0x6F 0x72 0x20 - 0x6F 0x70 0x65 0x6E 0x73 0x20 0x61 0x6E - 0x64 0x20 0x63 0x6C 0x6F 0x73 0x65 0x73 - 0x2E 0x20 0x20 0x54 0x68 0x65 0x20 0x6D - 0x6F 0x62 0x20 0x6F 0x66 0x20 0x6C 0x6F - 0x63 0x61 0x6C 0x20 0x70 0x65 0x6F 0x70 - 0x6C 0x65 0x20 0x69 0x73 0x20 0x67 0x65 - 0x74 0x74 0x69 0x6E 0x67 0x20 0x63 0x6C - 0x6F 0x73 0x65 0x72 0x2E 0x20 0x41 0x20 - 0x76 0x6F 0x69 0x63 0x65 0x20 0x63 0x6F - 0x6D 0x69 0x6E 0x67 0x20 0x66 0x72 0x6F - 0x6D 0x20 0x74 0x68 0x65 0x20 0x63 0x6F - 0x66 0x66 0x69 0x6E 0x20 0x73 0x61 0x79 - 0x73 0x3A 0x20 0x93 0x53 0x69 0x6E 0x67 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x79 0x20 0x77 0x69 0x6C 0x6C 0x20 - 0x67 0x6F 0x20 0x61 0x77 0x61 0x79 0x2E - 0x94 0x20 0x0D 0x0A 0x57 0x69 0x6C 0x6C - 0x20 0x56 0x65 0x6E 0x69 0x65 0x92 0x73 - 0x20 0x73 0x69 0x6E 0x67 0x69 0x6E 0x67 - 0x20 0x62 0x65 0x20 0x65 0x6E 0x6F 0x75 - 0x67 0x68 0x20 0x74 0x6F 0x20 0x63 0x68 - 0x61 0x73 0x65 0x20 0x61 0x77 0x61 0x79 - 0x20 0x74 0x68 0x65 0x20 0x6D 0x6F 0x62 - 0x2C 0x20 0x6F 0x72 0x20 0x77 0x69 0x6C - 0x6C 0x20 0x74 0x68 0x65 0x79 0x20 0x6F - 0x6E 0x6C 0x79 0x20 0x62 0x65 0x63 0x6F - 0x6D 0x65 0x20 0x61 0x6E 0x67 0x72 0x69 - 0x65 0x72 0x3F 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x56 0x65 - 0x6E 0x69 0x65 0x20 0x67 0x65 0x74 0x20 - 0x68 0x69 0x73 0x20 0x67 0x72 0x6F 0x75 - 0x70 0x20 0x6F 0x66 0x66 0x20 0x74 0x68 - 0x65 0x20 0x69 0x73 0x6C 0x61 0x6E 0x64 - 0x20 0x73 0x61 0x66 0x65 0x6C 0x79 0x3F -ENDCHUNK - - -ENDCHUNK -#line 27890 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C6= 0x0001539e - - -CHUNK('HTOP', _help_48544F50_C6, "") -SUBFILE -#line 27898 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C6, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C5=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C5=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C5, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x52 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C5=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C5, 0x0) - BYTE - 0x03 0x03 0x70 0x6F 0x77 0x65 0x72 0x73 - 0x0D 0x0A 0x41 0x6C 0x6C 0x20 0x69 0x74 - 0x20 0x74 0x61 0x6B 0x65 0x73 0x20 0x69 - 0x73 0x20 0x61 0x20 0x6C 0x69 0x74 0x74 - 0x6C 0x65 0x20 0x6F 0x69 0x6C 0x20 0x68 - 0x65 0x72 0x65 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x6F 0x6E - 0x20 0x61 0x20 0x72 0x65 0x67 0x75 0x6C - 0x61 0x72 0x20 0x73 0x63 0x68 0x65 0x64 - 0x75 0x6C 0x65 0x20 0x66 0x6F 0x72 0x20 - 0x57 0x61 0x6E 0x64 0x61 0x20 0x74 0x6F - 0x20 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 - 0x69 0x70 0x2D 0x74 0x6F 0x70 0x20 0x6A - 0x75 0x6D 0x70 0x69 0x6E 0x67 0x20 0x73 - 0x68 0x61 0x70 0x65 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x57 0x61 0x6E 0x64 0x61 - 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 0x74 - 0x68 0x61 0x74 0x20 0x69 0x66 0x20 0x73 - 0x68 0x65 0x20 0x6B 0x65 0x65 0x70 0x73 - 0x20 0x70 0x72 0x61 0x63 0x74 0x69 0x63 - 0x69 0x6E 0x67 0x2C 0x20 0x73 0x68 0x65 - 0x92 0x6C 0x6C 0x20 0x6A 0x75 0x6D 0x70 - 0x20 0x73 0x6F 0x20 0x68 0x69 0x67 0x68 - 0x20 0x73 0x68 0x65 0x92 0x6C 0x6C 0x20 - 0x62 0x65 0x20 0x61 0x62 0x6C 0x65 0x20 - 0x74 0x6F 0x20 0x66 0x6C 0x79 0x2E 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x73 0x75 0x72 - 0x65 0x6C 0x79 0x20 0x69 0x66 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x66 0x6C 0x79 0x2C 0x20 0x73 0x6F - 0x6D 0x65 0x6F 0x6E 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x77 0x61 0x6E 0x74 - 0x20 0x68 0x65 0x72 0x20 0x74 0x6F 0x20 - 0x62 0x65 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x6D 0x6F 0x76 0x69 0x65 0x73 - 0x2E 0x20 0x20 0x41 0x66 0x74 0x65 0x72 - 0x20 0x61 0x6C 0x6C 0x2C 0x20 0x68 0x6F - 0x77 0x20 0x6D 0x61 0x6E 0x79 0x20 0x66 - 0x6C 0x79 0x69 0x6E 0x67 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x73 0x20 0x61 0x72 0x65 - 0x20 0x74 0x68 0x65 0x72 0x65 0x20 0x69 - 0x6E 0x20 0x74 0x68 0x65 0x20 0x77 0x6F - 0x72 0x6C 0x64 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28002 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C7= 0x0001539f - - -CHUNK('HTOP', _help_48544F50_C7, "") -SUBFILE -#line 28010 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C7, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CB=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C7, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x04 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CB=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x1E 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x11 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CB=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CB, 0x0) - BYTE - 0x03 0x03 0x4D 0x65 0x63 0x68 0x61 0x6E - 0x69 0x63 0x61 0x6C 0x20 0x54 0x6F 0x79 - 0x20 0x0D 0x0A 0x57 0x61 0x6E 0x64 0x61 - 0x20 0x6C 0x6F 0x76 0x65 0x73 0x20 0x73 - 0x63 0x61 0x72 0x79 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x73 - 0x68 0x65 0x92 0x64 0x20 0x62 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x61 - 0x77 0x65 0x73 0x6F 0x6D 0x65 0x20 0x70 - 0x6C 0x61 0x79 0x69 0x6E 0x67 0x20 0x61 - 0x20 0x72 0x6F 0x62 0x6F 0x74 0x2E 0x20 - 0x20 0x4D 0x61 0x79 0x62 0x65 0x20 0x73 - 0x68 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 - 0x20 0x62 0x65 0x20 0x61 0x20 0x72 0x6F - 0x62 0x6F 0x74 0x20 0x77 0x68 0x6F 0x92 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x70 - 0x72 0x6F 0x67 0x72 0x61 0x6D 0x6D 0x65 - 0x64 0x20 0x62 0x79 0x20 0x61 0x6E 0x20 - 0x65 0x76 0x69 0x6C 0x20 0x73 0x63 0x69 - 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 0x74 - 0x6F 0x20 0x73 0x74 0x65 0x61 0x6C 0x20 - 0x74 0x68 0x65 0x20 0x66 0x6F 0x72 0x6D - 0x75 0x6C 0x61 0x20 0x66 0x6F 0x72 0x20 - 0x67 0x72 0x61 0x70 0x65 0x20 0x73 0x6C - 0x75 0x72 0x70 0x65 0x65 0x73 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x6B 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x6B 0x69 0x64 - 0x73 0x20 0x6C 0x6F 0x76 0x65 0x20 0x74 - 0x6F 0x20 0x64 0x72 0x69 0x6E 0x6B 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x73 - 0x75 0x6D 0x6D 0x65 0x72 0x20 0x74 0x69 - 0x6D 0x65 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x20 0x65 0x76 0x69 0x6C 0x20 0x73 0x63 - 0x69 0x65 0x6E 0x74 0x69 0x73 0x74 0x20 - 0x77 0x61 0x6E 0x74 0x73 0x20 0x68 0x65 - 0x72 0x20 0x74 0x6F 0x20 0x73 0x6E 0x65 - 0x61 0x6B 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x53 0x6C 0x75 0x72 - 0x70 0x65 0x65 0x20 0x4C 0x61 0x62 0x6F - 0x72 0x61 0x74 0x6F 0x72 0x79 0x2C 0x20 - 0x73 0x74 0x65 0x61 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x66 0x6F 0x72 0x6D 0x75 0x6C - 0x61 0x2C 0x20 0x61 0x6E 0x64 0x20 0x74 - 0x68 0x65 0x6E 0x20 0x62 0x72 0x69 0x6E - 0x67 0x20 0x69 0x74 0x20 0x62 0x61 0x63 - 0x6B 0x20 0x74 0x6F 0x20 0x68 0x69 0x6D - 0x20 0x73 0x6F 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6B 0x69 0x64 0x73 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x68 0x61 0x76 0x65 0x20 0x67 0x72 - 0x61 0x70 0x65 0x20 0x73 0x6C 0x75 0x72 - 0x70 0x65 0x65 0x73 0x20 0x61 0x67 0x61 - 0x69 0x6E 0x2E 0x20 0x20 0x53 0x68 0x65 - 0x20 0x73 0x6E 0x65 0x61 0x6B 0x73 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x74 0x68 0x65 - 0x20 0x6C 0x61 0x62 0x6F 0x72 0x61 0x74 - 0x6F 0x72 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x6E 0x20 0x73 0x71 0x75 - 0x61 0x73 0x68 0x65 0x73 0x20 0x68 0x65 - 0x72 0x73 0x65 0x6C 0x66 0x20 0x74 0x6F - 0x20 0x68 0x61 0x6C 0x66 0x20 0x68 0x65 - 0x72 0x20 0x6E 0x6F 0x72 0x6D 0x61 0x6C - 0x20 0x73 0x69 0x7A 0x65 0x20 0x73 0x6F - 0x20 0x73 0x68 0x65 0x20 0x77 0x6F 0x6E - 0x27 0x74 0x20 0x62 0x65 0x20 0x73 0x65 - 0x65 0x6E 0x2E 0x20 0x20 0x41 0x20 0x67 - 0x75 0x61 0x72 0x64 0x20 0x6E 0x6F 0x74 - 0x69 0x63 0x65 0x73 0x20 0x68 0x65 0x72 - 0x20 0x61 0x6E 0x64 0x20 0x72 0x75 0x6E - 0x73 0x20 0x74 0x6F 0x77 0x61 0x72 0x64 - 0x20 0x68 0x65 0x72 0x2E 0x20 0x20 0x53 - 0x68 0x65 0x20 0x69 0x73 0x20 0x73 0x6F - 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 0x74 - 0x68 0x61 0x74 0x20 0x68 0x65 0x20 0x63 - 0x61 0x6E 0x20 0x73 0x74 0x65 0x70 0x20 - 0x6F 0x6E 0x20 0x68 0x65 0x72 0x2E 0x20 - 0x20 0x57 0x61 0x6E 0x64 0x61 0x20 0x69 - 0x73 0x20 0x74 0x72 0x61 0x70 0x70 0x65 - 0x64 0x2E 0x20 0x20 0x48 0x6F 0x77 0x20 - 0x77 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 - 0x20 0x67 0x65 0x74 0x20 0x61 0x77 0x61 - 0x79 0x20 0x66 0x72 0x6F 0x6D 0x20 0x74 - 0x68 0x65 0x20 0x67 0x75 0x61 0x72 0x64 - 0x3F 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 - 0x69 0x6C 0x6C 0x20 0x73 0x68 0x65 0x20 - 0x65 0x76 0x65 0x72 0x20 0x63 0x6F 0x6E - 0x76 0x69 0x6E 0x63 0x65 0x20 0x61 0x6E - 0x79 0x6F 0x6E 0x65 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x6C 0x61 0x62 0x6F - 0x72 0x61 0x74 0x6F 0x72 0x79 0x20 0x74 - 0x68 0x61 0x74 0x20 0x73 0x68 0x65 0x20 - 0x72 0x65 0x61 0x6C 0x6C 0x79 0x20 0x69 - 0x73 0x6E 0x92 0x74 0x20 0x62 0x61 0x64 - 0x20 0x61 0x6E 0x64 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x74 0x68 0x65 0x6D 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x74 0x68 0x65 - 0x20 0x65 0x76 0x69 0x6C 0x20 0x73 0x63 - 0x69 0x65 0x6E 0x74 0x69 0x73 0x74 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28171 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C8= 0x000153a0 - - -CHUNK('HTOP', _help_48544F50_C8, "") -SUBFILE -#line 28179 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C8, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C8=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C8=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C8, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xA8 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x0B 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C8=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C8, 0x0) - BYTE - 0x03 0x03 0x52 0x6F 0x62 0x6F 0x74 0x20 - 0x43 0x6F 0x70 0x0D 0x0A 0x49 0x6E 0x20 - 0x61 0x6C 0x6C 0x20 0x74 0x68 0x65 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x73 0x2C 0x20 - 0x57 0x61 0x6E 0x64 0x61 0x20 0x68 0x61 - 0x73 0x20 0x6E 0x65 0x76 0x65 0x72 0x20 - 0x73 0x65 0x65 0x6E 0x20 0x61 0x20 0x67 - 0x69 0x72 0x6C 0x20 0x72 0x6F 0x62 0x6F - 0x74 0x20 0x63 0x6F 0x70 0x2E 0x20 0x20 - 0x42 0x75 0x74 0x20 0x57 0x61 0x6E 0x64 - 0x61 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x61 - 0x74 0x20 0x70 0x61 0x72 0x74 0x2E 0x20 - 0x20 0x53 0x68 0x65 0x92 0x73 0x20 0x70 - 0x72 0x61 0x63 0x74 0x69 0x63 0x65 0x64 - 0x20 0x6A 0x75 0x6D 0x70 0x69 0x6E 0x67 - 0x20 0x73 0x6F 0x20 0x6D 0x75 0x63 0x68 - 0x20 0x74 0x68 0x61 0x74 0x20 0x73 0x68 - 0x65 0x20 0x63 0x6F 0x75 0x6C 0x64 0x20 - 0x66 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x70 0x61 0x74 0x72 0x6F 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x63 0x69 0x74 0x79 0x2E - 0x20 0x20 0x53 0x68 0x65 0x20 0x63 0x61 - 0x6E 0x20 0x73 0x65 0x65 0x20 0x63 0x72 - 0x69 0x6D 0x65 0x73 0x20 0x61 0x73 0x20 - 0x74 0x68 0x65 0x79 0x20 0x68 0x61 0x70 - 0x70 0x65 0x6E 0x20 0x61 0x6E 0x64 0x20 - 0x6C 0x61 0x6E 0x64 0x20 0x6F 0x6E 0x20 - 0x74 0x6F 0x70 0x20 0x6F 0x66 0x20 0x74 - 0x68 0x65 0x20 0x63 0x72 0x69 0x6D 0x69 - 0x6E 0x61 0x6C 0x73 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x77 0x68 0x61 0x74 0x20 - 0x69 0x66 0x20 0x57 0x61 0x6E 0x64 0x61 - 0x20 0x66 0x6C 0x69 0x65 0x73 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x61 0x6E 0x20 0x65 - 0x76 0x69 0x6C 0x20 0x62 0x6F 0x79 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x20 0x63 0x6F - 0x70 0x3F 0x20 0x20 0x57 0x68 0x61 0x74 - 0x20 0x69 0x66 0x20 0x74 0x68 0x65 0x20 - 0x62 0x6F 0x79 0x20 0x72 0x6F 0x62 0x6F - 0x74 0x20 0x68 0x61 0x73 0x20 0x70 0x6F - 0x77 0x65 0x72 0x73 0x20 0x73 0x68 0x65 - 0x20 0x64 0x6F 0x65 0x73 0x6E 0x92 0x74 - 0x20 0x68 0x61 0x76 0x65 0x3F 0x20 0x20 - 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x73 0x68 0x65 0x20 0x73 0x74 0x6F - 0x70 0x20 0x63 0x72 0x69 0x6D 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x70 0x72 0x6F 0x74 - 0x65 0x63 0x74 0x20 0x68 0x65 0x72 0x73 - 0x65 0x6C 0x66 0x97 0x61 0x6E 0x64 0x20 - 0x74 0x68 0x65 0x20 0x63 0x69 0x74 0x79 - 0x97 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x73 0x61 0x6D 0x65 0x20 0x74 0x69 0x6D - 0x65 0x3F 0x20 -ENDCHUNK - - -ENDCHUNK -#line 28294 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_C9= 0x000153a1 - - -CHUNK('HTOP', _help_48544F50_C9, "") -SUBFILE -#line 28302 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_C9, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C9=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_C9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C9=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C9, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x29 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x08 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C9=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C9, 0x0) - BYTE - 0x03 0x03 0x44 0x61 0x6E 0x63 0x65 0x72 - 0x0D 0x0A 0x57 0x61 0x6E 0x64 0x61 0x20 - 0x74 0x68 0x69 0x6E 0x6B 0x73 0x20 0x69 - 0x74 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x72 0x65 0x61 0x6C 0x6C - 0x79 0x20 0x66 0x75 0x6E 0x20 0x74 0x6F - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x62 0x61 - 0x63 0x6B 0x20 0x69 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x61 0x6E 0x64 0x20 0x62 - 0x65 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x72 0x6F 0x62 0x6F 0x74 - 0x20 0x61 0x6C 0x69 0x76 0x65 0x2E 0x20 - 0x20 0x4E 0x6F 0x74 0x20 0x6A 0x75 0x73 - 0x74 0x20 0x74 0x68 0x65 0x20 0x6F 0x6E - 0x6C 0x79 0x20 0x72 0x6F 0x62 0x6F 0x74 - 0x2C 0x20 0x62 0x75 0x74 0x20 0x61 0x20 - 0x64 0x61 0x6E 0x63 0x69 0x6E 0x67 0x20 - 0x72 0x6F 0x62 0x6F 0x74 0x2E 0x20 0x20 - 0x48 0x65 0x72 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x20 0x77 0x6F 0x75 0x6C 0x64 - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x65 0x76 - 0x65 0x72 0x79 0x6F 0x6E 0x65 0x20 0x68 - 0x61 0x70 0x70 0x79 0x2E 0x20 0x20 0x49 - 0x6E 0x20 0x66 0x61 0x63 0x74 0x2C 0x20 - 0x73 0x68 0x65 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x74 0x68 0x61 0x74 0x20 - 0x73 0x68 0x65 0x92 0x64 0x20 0x6A 0x75 - 0x6D 0x70 0x20 0x62 0x61 0x63 0x6B 0x20 - 0x69 0x6E 0x20 0x74 0x69 0x6D 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x72 - 0x75 0x6C 0x65 0x20 0x6F 0x66 0x20 0x61 - 0x6E 0x20 0x65 0x76 0x69 0x6C 0x20 0x6B - 0x69 0x6E 0x67 0x20 0x77 0x68 0x6F 0x20 - 0x68 0x6F 0x6C 0x64 0x73 0x20 0x61 0x20 - 0x77 0x68 0x6F 0x6C 0x65 0x20 0x63 0x69 - 0x74 0x79 0x20 0x6F 0x66 0x20 0x70 0x65 - 0x6F 0x70 0x6C 0x65 0x20 0x68 0x6F 0x73 - 0x74 0x61 0x67 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x72 0x20 0x64 0x61 0x6E 0x63 0x65 - 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 0x70 - 0x75 0x74 0x20 0x74 0x68 0x65 0x20 0x6B - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x73 - 0x6C 0x65 0x65 0x70 0x20 0x73 0x6F 0x20 - 0x74 0x68 0x61 0x74 0x20 0x65 0x76 0x65 - 0x72 0x79 0x6F 0x6E 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x65 0x73 0x63 0x61 - 0x70 0x65 0x2C 0x20 0x64 0x61 0x6E 0x63 - 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 0x69 - 0x72 0x20 0x77 0x61 0x79 0x20 0x74 0x6F - 0x20 0x66 0x72 0x65 0x65 0x64 0x6F 0x6D - 0x2E 0x20 0x42 0x75 0x74 0x20 0x77 0x68 - 0x65 0x72 0x65 0x20 0x77 0x6F 0x75 0x6C - 0x64 0x20 0x74 0x68 0x65 0x79 0x20 0x67 - 0x6F 0x3F 0x20 0x20 0x57 0x6F 0x75 0x6C - 0x64 0x20 0x73 0x68 0x65 0x20 0x62 0x65 - 0x20 0x61 0x62 0x6C 0x65 0x20 0x74 0x6F - 0x20 0x6A 0x75 0x6D 0x70 0x20 0x74 0x68 - 0x65 0x6D 0x20 0x66 0x6F 0x72 0x77 0x61 - 0x72 0x64 0x20 0x69 0x6E 0x20 0x74 0x69 - 0x6D 0x65 0x20 0x74 0x6F 0x20 0x74 0x6F - 0x64 0x61 0x79 0x3F 0x20 0x20 0x57 0x68 - 0x61 0x74 0x20 0x69 0x66 0x20 0x74 0x68 - 0x65 0x20 0x6B 0x69 0x6E 0x67 0x20 0x69 - 0x73 0x6E 0x27 0x74 0x20 0x74 0x68 0x65 - 0x20 0x6F 0x6E 0x6C 0x79 0x20 0x6F 0x6E - 0x65 0x20 0x77 0x68 0x6F 0x20 0x66 0x61 - 0x6C 0x6C 0x73 0x20 0x61 0x73 0x6C 0x65 - 0x65 0x70 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x73 0x68 0x65 0x20 0x64 0x61 0x6E 0x63 - 0x65 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28433 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CA= 0x000153a2 - - -CHUNK('HTOP', _help_48544F50_CA, "") -SUBFILE -#line 28441 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CA, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CA=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CA=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CA, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x2E 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x06 0x00 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CA=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CA, 0x0) - BYTE - 0x03 0x03 0x6E 0x6F 0x73 0x65 0x0D 0x0A - 0x49 0x74 0x20 0x69 0x73 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x92 0x73 0x20 0x70 0x6F - 0x69 0x6E 0x74 0x65 0x64 0x20 0x6E 0x6F - 0x73 0x65 0x20 0x74 0x68 0x61 0x74 0x20 - 0x67 0x6F 0x74 0x20 0x68 0x69 0x6D 0x20 - 0x69 0x6E 0x74 0x6F 0x20 0x61 0x63 0x74 - 0x69 0x6E 0x67 0x20 0x74 0x6F 0x20 0x62 - 0x65 0x67 0x69 0x6E 0x20 0x77 0x69 0x74 - 0x68 0x2E 0x20 0x20 0x48 0x65 0x20 0x61 - 0x6C 0x77 0x61 0x79 0x73 0x20 0x73 0x74 - 0x69 0x63 0x6B 0x73 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6E 0x6F 0x73 0x65 0x20 0x69 - 0x6E 0x74 0x6F 0x20 0x65 0x76 0x65 0x72 - 0x79 0x6F 0x6E 0x65 0x20 0x65 0x6C 0x73 - 0x65 0x92 0x73 0x20 0x62 0x75 0x73 0x69 - 0x6E 0x65 0x73 0x73 0x2E 0x20 0x48 0x65 - 0x20 0x73 0x61 0x77 0x20 0x61 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x6D 0x6F 0x76 - 0x69 0x65 0x20 0x6F 0x6E 0x63 0x65 0x20 - 0x61 0x6E 0x64 0x20 0x71 0x75 0x69 0x63 - 0x6B 0x6C 0x79 0x20 0x74 0x68 0x6F 0x75 - 0x67 0x68 0x74 0x20 0x75 0x70 0x20 0x61 - 0x20 0x64 0x6F 0x7A 0x65 0x6E 0x20 0x77 - 0x61 0x79 0x73 0x20 0x74 0x6F 0x20 0x6D - 0x61 0x6B 0x65 0x20 0x69 0x74 0x20 0x62 - 0x65 0x74 0x74 0x65 0x72 0x2E 0x20 0x20 - 0x46 0x6F 0x72 0x20 0x65 0x78 0x61 0x6D - 0x70 0x6C 0x65 0x2C 0x20 0x68 0x65 0x20 - 0x63 0x61 0x6C 0x6C 0x65 0x64 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x61 0x6E 0x64 - 0x20 0x74 0x6F 0x6C 0x64 0x20 0x68 0x69 - 0x6D 0x20 0x68 0x6F 0x77 0x20 0x74 0x6F - 0x20 0x6D 0x61 0x6B 0x65 0x20 0x74 0x68 - 0x65 0x20 0x63 0x6C 0x6F 0x75 0x64 0x73 - 0x20 0x69 0x6E 0x20 0x6F 0x6E 0x65 0x20 - 0x73 0x63 0x65 0x6E 0x65 0x20 0x67 0x72 - 0x65 0x65 0x6E 0x2E 0x20 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x6C 0x6F 0x76 0x65 - 0x64 0x20 0x69 0x74 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x6C 0x65 0x77 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x74 0x6F 0x20 0x4C - 0x6F 0x73 0x20 0x41 0x6E 0x67 0x65 0x6C - 0x65 0x73 0x20 0x74 0x6F 0x20 0x68 0x65 - 0x6C 0x70 0x20 0x68 0x69 0x6D 0x20 0x64 - 0x69 0x72 0x65 0x63 0x74 0x20 0x6D 0x6F - 0x76 0x69 0x65 0x73 0x2E 0x20 0x20 0x57 - 0x65 0x6C 0x6C 0x2C 0x20 0x57 0x69 0x6C - 0x6C 0x79 0x20 0x6E 0x65 0x76 0x65 0x72 - 0x20 0x70 0x61 0x69 0x64 0x20 0x61 0x74 - 0x74 0x65 0x6E 0x74 0x69 0x6F 0x6E 0x20 - 0x74 0x6F 0x20 0x77 0x68 0x65 0x74 0x68 - 0x65 0x72 0x20 0x68 0x65 0x20 0x77 0x61 - 0x73 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x6D - 0x65 0x72 0x61 0x20 0x6F 0x72 0x20 0x69 - 0x6E 0x20 0x66 0x72 0x6F 0x6E 0x74 0x20 - 0x6F 0x66 0x20 0x69 0x74 0x2C 0x20 0x73 - 0x6F 0x20 0x68 0x65 0x20 0x65 0x6E 0x64 - 0x65 0x64 0x20 0x75 0x70 0x20 0x68 0x61 - 0x76 0x69 0x6E 0x67 0x20 0x61 0x6E 0x20 - 0x61 0x63 0x63 0x69 0x64 0x65 0x6E 0x74 - 0x61 0x6C 0x20 0x70 0x61 0x72 0x74 0x20 - 0x69 0x6E 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2E 0x20 0x20 0x48 - 0x65 0x92 0x73 0x20 0x62 0x65 0x65 0x6E - 0x20 0x61 0x63 0x63 0x69 0x64 0x65 0x6E - 0x74 0x61 0x6C 0x6C 0x79 0x20 0x61 0x63 - 0x74 0x69 0x6E 0x67 0x20 0x65 0x76 0x65 - 0x72 0x20 0x73 0x69 0x6E 0x63 0x65 0x2E -ENDCHUNK - - -ENDCHUNK -#line 28572 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CB= 0x000153a3 - - -CHUNK('HTOP', _help_48544F50_CB, "") -SUBFILE -#line 28580 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CB, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CD=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CB, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xF2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CD=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE8 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7A 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CD=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CD, 0x0) - BYTE - 0x03 0x03 0x4D 0x61 0x64 0x20 0x53 0x63 - 0x69 0x65 0x6E 0x74 0x69 0x73 0x74 0x0D - 0x0A 0x46 0x6F 0x72 0x20 0x57 0x69 0x6C - 0x6C 0x79 0x2C 0x20 0x70 0x6C 0x61 0x79 - 0x69 0x6E 0x67 0x20 0x61 0x20 0x6D 0x61 - 0x64 0x20 0x73 0x63 0x69 0x65 0x6E 0x74 - 0x69 0x73 0x74 0x20 0x69 0x73 0x20 0x61 - 0x73 0x20 0x65 0x61 0x73 0x79 0x20 0x61 - 0x73 0x20 0x73 0x70 0x72 0x65 0x61 0x64 - 0x69 0x6E 0x67 0x20 0x6A 0x65 0x6C 0x6C - 0x79 0x20 0x6F 0x6E 0x20 0x70 0x65 0x61 - 0x6E 0x75 0x74 0x20 0x62 0x75 0x74 0x74 - 0x65 0x72 0x2E 0x20 0x20 0x48 0x65 0x92 - 0x73 0x20 0x62 0x65 0x65 0x6E 0x20 0x69 - 0x6E 0x20 0x61 0x20 0x6C 0x61 0x62 0x20 - 0x73 0x69 0x6E 0x63 0x65 0x20 0x68 0x65 - 0x20 0x77 0x61 0x73 0x20 0x66 0x69 0x76 - 0x65 0x2C 0x20 0x66 0x69 0x64 0x64 0x6C - 0x69 0x6E 0x67 0x20 0x61 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x63 0x68 0x65 0x6D 0x69 0x63 0x61 0x6C - 0x73 0x2C 0x20 0x69 0x6E 0x76 0x65 0x6E - 0x74 0x69 0x6E 0x67 0x20 0x67 0x61 0x64 - 0x67 0x65 0x74 0x73 0x2C 0x20 0x61 0x6E - 0x64 0x20 0x67 0x65 0x6E 0x65 0x72 0x61 - 0x6C 0x6C 0x79 0x20 0x6D 0x61 0x6B 0x69 - 0x6E 0x67 0x20 0x61 0x20 0x6D 0x65 0x73 - 0x73 0x2E 0x20 0x20 0x53 0x6F 0x20 0x4D - 0x63 0x5A 0x65 0x65 0x20 0x77 0x61 0x6E - 0x74 0x73 0x20 0x74 0x6F 0x20 0x70 0x75 - 0x74 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x69 0x6E 0x20 0x61 0x20 0x6C 0x61 0x62 - 0x20 0x69 0x6E 0x20 0x61 0x20 0x68 0x61 - 0x75 0x6E 0x74 0x65 0x64 0x20 0x68 0x6F - 0x75 0x73 0x65 0x2E 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x69 0x73 0x20 0x73 - 0x75 0x70 0x70 0x6F 0x73 0x65 0x64 0x20 - 0x74 0x6F 0x20 0x63 0x6F 0x6F 0x6B 0x20 - 0x75 0x70 0x20 0x6D 0x69 0x78 0x74 0x75 - 0x72 0x65 0x73 0x20 0x6F 0x66 0x20 0x65 - 0x76 0x65 0x72 0x79 0x20 0x63 0x6F 0x6C - 0x6F 0x72 0x20 0x74 0x6F 0x20 0x73 0x63 - 0x61 0x72 0x65 0x20 0x74 0x68 0x65 0x20 - 0x6B 0x69 0x64 0x73 0x2E 0x20 0x20 0x49 - 0x6E 0x73 0x74 0x65 0x61 0x64 0x2C 0x20 - 0x57 0x69 0x6C 0x6C 0x79 0x20 0x66 0x69 - 0x6E 0x64 0x73 0x20 0x61 0x20 0x64 0x6F - 0x6F 0x72 0x20 0x69 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x66 0x6C 0x6F 0x6F 0x72 0x20 - 0x6F 0x66 0x20 0x74 0x68 0x65 0x20 0x6C - 0x61 0x62 0x2E 0x20 0x20 0x54 0x68 0x65 - 0x72 0x65 0x27 0x73 0x20 0x61 0x20 0x68 - 0x75 0x67 0x65 0x20 0x72 0x65 0x64 0x20 - 0x58 0x20 0x6F 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x64 0x6F 0x6F 0x72 0x2E 0x20 0x20 - 0x49 0x73 0x20 0x69 0x74 0x20 0x61 0x20 - 0x74 0x72 0x61 0x70 0x20 0x64 0x6F 0x6F - 0x72 0x3F 0x20 0x20 0x57 0x69 0x6C 0x6C - 0x79 0x20 0x6B 0x6E 0x65 0x65 0x6C 0x73 - 0x20 0x64 0x6F 0x77 0x6E 0x2C 0x20 0x61 - 0x6E 0x64 0x20 0x74 0x68 0x65 0x6E 0x20 - 0x63 0x72 0x61 0x77 0x6C 0x73 0x20 0x61 - 0x72 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 - 0x65 0x20 0x64 0x6F 0x6F 0x72 0x2E 0x20 - 0x20 0x49 0x66 0x20 0x68 0x65 0x20 0x73 - 0x74 0x61 0x6E 0x64 0x73 0x20 0x6F 0x6E - 0x20 0x74 0x68 0x65 0x20 0x64 0x6F 0x6F - 0x72 0x2C 0x20 0x69 0x74 0x20 0x6D 0x69 - 0x67 0x68 0x74 0x20 0x62 0x65 0x20 0x61 - 0x20 0x74 0x72 0x61 0x70 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x63 0x61 0x6E 0x20 0x68 - 0x65 0x61 0x72 0x20 0x73 0x6F 0x75 0x6E - 0x64 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x75 0x6E 0x64 0x65 0x72 0x6E 0x65 0x61 - 0x74 0x68 0x97 0x73 0x6F 0x75 0x6E 0x64 - 0x73 0x20 0x6C 0x69 0x6B 0x65 0x20 0x63 - 0x68 0x69 0x6C 0x64 0x72 0x65 0x6E 0x20 - 0x63 0x61 0x6C 0x6C 0x69 0x6E 0x67 0x20 - 0x66 0x6F 0x72 0x20 0x68 0x65 0x6C 0x70 - 0x2E 0x20 0x0D 0x0A 0x43 0x61 0x6E 0x20 - 0x57 0x69 0x6C 0x6C 0x79 0x20 0x67 0x65 - 0x74 0x20 0x74 0x68 0x65 0x20 0x64 0x6F - 0x6F 0x72 0x20 0x6F 0x70 0x65 0x6E 0x3F - 0x20 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x68 0x65 0x20 0x72 0x65 - 0x73 0x63 0x75 0x65 0x20 0x74 0x68 0x65 - 0x20 0x6B 0x69 0x64 0x73 0x3F 0x20 0x20 - 0x57 0x68 0x61 0x74 0x20 0x69 0x66 0x20 - 0x74 0x68 0x65 0x72 0x65 0x20 0x69 0x73 - 0x20 0x6D 0x6F 0x72 0x65 0x20 0x75 0x6E - 0x64 0x65 0x72 0x20 0x74 0x68 0x65 0x20 - 0x64 0x6F 0x6F 0x72 0x2C 0x20 0x6C 0x69 - 0x6B 0x65 0x20 0x61 0x20 0x63 0x61 0x76 - 0x65 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28735 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CC= 0x000153a4 - - -CHUNK('HTOP', _help_48544F50_CC, "") -SUBFILE -#line 28743 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CC, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CC=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CC=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CC, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0xE7 0x01 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7A 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CC=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CC, 0x0) - BYTE - 0x03 0x03 0x50 0x61 0x72 0x6B 0x69 0x6E - 0x67 0x20 0x56 0x61 0x6C 0x65 0x74 0x0D - 0x0A 0x57 0x69 0x6C 0x6C 0x79 0x20 0x69 - 0x73 0x20 0x73 0x6F 0x20 0x73 0x6D 0x61 - 0x72 0x74 0x20 0x74 0x68 0x61 0x74 0x20 - 0x65 0x61 0x73 0x79 0x20 0x74 0x68 0x69 - 0x6E 0x67 0x73 0x20 0x73 0x65 0x65 0x6D - 0x20 0x68 0x61 0x72 0x64 0x2E 0x20 0x20 - 0x49 0x6E 0x20 0x6F 0x6E 0x65 0x20 0x6D - 0x6F 0x76 0x69 0x65 0x2C 0x20 0x4D 0x63 - 0x5A 0x65 0x65 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x74 0x6F 0x20 0x62 0x65 0x20 0x61 0x20 - 0x70 0x61 0x72 0x6B 0x69 0x6E 0x67 0x20 - 0x76 0x61 0x6C 0x65 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x69 0x73 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x6C 0x6F 0x6F 0x6B - 0x69 0x6E 0x67 0x20 0x6F 0x75 0x74 0x20 - 0x66 0x6F 0x72 0x20 0x73 0x74 0x6F 0x6C - 0x65 0x6E 0x20 0x63 0x61 0x72 0x73 0x2E - 0x20 0x20 0x42 0x75 0x74 0x20 0x69 0x6E - 0x73 0x74 0x65 0x61 0x64 0x20 0x6F 0x66 - 0x20 0x64 0x72 0x69 0x76 0x69 0x6E 0x67 - 0x20 0x74 0x68 0x65 0x20 0x63 0x61 0x72 - 0x20 0x74 0x6F 0x20 0x69 0x74 0x73 0x20 - 0x70 0x61 0x72 0x6B 0x69 0x6E 0x67 0x20 - 0x73 0x70 0x61 0x63 0x65 0x2C 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6C - 0x6B 0x73 0x20 0x62 0x61 0x63 0x6B 0x77 - 0x61 0x72 0x64 0x2C 0x20 0x70 0x75 0x73 - 0x68 0x69 0x6E 0x67 0x20 0x74 0x68 0x65 - 0x20 0x63 0x61 0x72 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x70 0x61 - 0x72 0x6B 0x69 0x6E 0x67 0x20 0x73 0x70 - 0x61 0x63 0x65 0x2E 0x20 0x20 0x42 0x75 - 0x74 0x20 0x77 0x68 0x65 0x6E 0x20 0x68 - 0x65 0x20 0x74 0x75 0x72 0x6E 0x73 0x20 - 0x61 0x72 0x6F 0x75 0x6E 0x64 0x2C 0x20 - 0x74 0x68 0x65 0x20 0x63 0x61 0x72 0x20 - 0x69 0x73 0x20 0x67 0x6F 0x6E 0x65 0x2E - 0x20 0x20 0x53 0x6F 0x6D 0x65 0x6F 0x6E - 0x65 0x20 0x73 0x74 0x6F 0x6C 0x65 0x20 - 0x69 0x74 0x2E 0x20 0x49 0x74 0x20 0x64 - 0x6F 0x65 0x73 0x6E 0x92 0x74 0x20 0x74 - 0x61 0x6B 0x65 0x20 0x61 0x20 0x67 0x65 - 0x6E 0x69 0x75 0x73 0x20 0x74 0x6F 0x20 - 0x73 0x65 0x65 0x20 0x74 0x68 0x61 0x74 - 0x2E 0x20 0x0D 0x0A 0x42 0x75 0x74 0x20 - 0x77 0x68 0x6F 0x20 0x73 0x74 0x6F 0x6C - 0x65 0x20 0x74 0x68 0x65 0x20 0x63 0x61 - 0x72 0x20 0x62 0x65 0x68 0x69 0x6E 0x64 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x27 0x73 - 0x20 0x62 0x61 0x63 0x6B 0x3F 0x20 0x20 - 0x48 0x6F 0x77 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x68 0x65 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x69 0x74 0x3F 0x20 0x20 0x49 0x73 - 0x20 0x74 0x68 0x69 0x73 0x20 0x68 0x6F - 0x77 0x20 0x61 0x6C 0x6C 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x63 0x61 0x72 0x73 0x20 0x64 0x69 0x73 - 0x61 0x70 0x70 0x65 0x61 0x72 0x65 0x64 - 0x3F -ENDCHUNK - - -ENDCHUNK -#line 28866 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CD= 0x000153a5 - - -CHUNK('HTOP', _help_48544F50_CD, "") -SUBFILE -#line 28874 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CD, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_CE=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CD, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x05 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_CE=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_CE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x03 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x64 0x02 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_CE=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_CE, 0x0) - BYTE - 0x03 0x03 0x4E 0x61 0x74 0x69 0x76 0x65 - 0x20 0x53 0x74 0x75 0x64 0x65 0x6E 0x74 - 0x0D 0x0A 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x69 0x73 0x20 0x61 0x20 0x6E 0x61 0x74 - 0x75 0x72 0x61 0x6C 0x20 0x73 0x74 0x75 - 0x64 0x65 0x6E 0x74 0x2C 0x20 0x73 0x6F - 0x20 0x68 0x65 0x20 0x6A 0x75 0x6D 0x70 - 0x65 0x64 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x72 0x6F 0x6C 0x65 0x20 0x6F - 0x66 0x20 0x61 0x20 0x73 0x74 0x75 0x64 - 0x65 0x6E 0x74 0x20 0x69 0x6E 0x20 0x4D - 0x6F 0x72 0x6F 0x63 0x63 0x6F 0x20 0x6C - 0x65 0x61 0x72 0x6E 0x69 0x6E 0x67 0x20 - 0x61 0x62 0x6F 0x75 0x74 0x20 0x41 0x72 - 0x61 0x62 0x69 0x63 0x20 0x63 0x75 0x6C - 0x74 0x75 0x72 0x65 0x2E 0x20 0x20 0x57 - 0x69 0x6C 0x6C 0x79 0x92 0x73 0x20 0x74 - 0x65 0x61 0x63 0x68 0x65 0x72 0x2C 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x2C 0x20 0x74 0x61 0x6B 0x65 0x73 - 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 0x74 - 0x6F 0x20 0x74 0x68 0x65 0x20 0x61 0x6E - 0x63 0x69 0x65 0x6E 0x74 0x20 0x72 0x75 - 0x69 0x6E 0x73 0x20 0x69 0x6E 0x20 0x56 - 0x6F 0x6C 0x75 0x62 0x69 0x6C 0x69 0x73 - 0x2E 0x20 0x20 0x57 0x68 0x61 0x74 0x20 - 0x57 0x69 0x6C 0x6C 0x79 0x20 0x64 0x6F - 0x65 0x73 0x6E 0x92 0x74 0x20 0x6B 0x6E - 0x6F 0x77 0x20 0x69 0x73 0x20 0x74 0x68 - 0x61 0x74 0x20 0x56 0x61 0x6C 0x65 0x6E - 0x74 0x69 0x6E 0x65 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x77 0x61 0x6E 0x74 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x74 0x6F 0x20 0x68 0x65 0x6C 0x70 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x69 0x6E 0x64 - 0x20 0x61 0x6E 0x20 0x75 0x6E 0x64 0x65 - 0x72 0x67 0x72 0x6F 0x75 0x6E 0x64 0x20 - 0x74 0x75 0x6E 0x6E 0x65 0x6C 0x20 0x74 - 0x68 0x72 0x6F 0x75 0x67 0x68 0x20 0x74 - 0x68 0x65 0x20 0x6D 0x6F 0x75 0x6E 0x74 - 0x61 0x69 0x6E 0x2E 0x20 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x61 0x72 0x72 0x69 0x76 0x65 - 0x20 0x61 0x74 0x20 0x74 0x68 0x65 0x20 - 0x72 0x75 0x69 0x6E 0x73 0x20 0x61 0x6E - 0x64 0x20 0x56 0x61 0x6C 0x65 0x6E 0x74 - 0x69 0x6E 0x65 0x20 0x73 0x68 0x6F 0x77 - 0x73 0x20 0x57 0x69 0x6C 0x6C 0x79 0x20 - 0x61 0x20 0x73 0x6D 0x61 0x6C 0x6C 0x20 - 0x64 0x6F 0x6F 0x72 0x20 0x69 0x6E 0x74 - 0x6F 0x20 0x61 0x20 0x6C 0x61 0x72 0x67 - 0x65 0x20 0x73 0x74 0x6F 0x6E 0x65 0x20 - 0x62 0x75 0x69 0x6C 0x64 0x69 0x6E 0x67 - 0x2C 0x20 0x74 0x68 0x65 0x20 0x48 0x6F - 0x75 0x73 0x65 0x20 0x6F 0x66 0x20 0x48 - 0x65 0x72 0x63 0x75 0x6C 0x65 0x73 0x2E - 0x20 0x20 0x54 0x68 0x65 0x79 0x20 0x63 - 0x72 0x61 0x77 0x6C 0x20 0x74 0x68 0x72 - 0x6F 0x75 0x67 0x68 0x20 0x61 0x6E 0x64 - 0x20 0x66 0x69 0x6E 0x64 0x20 0x61 0x20 - 0x64 0x61 0x72 0x6B 0x2C 0x20 0x73 0x6D - 0x65 0x6C 0x6C 0x79 0x20 0x72 0x6F 0x6F - 0x6D 0x20 0x77 0x69 0x74 0x68 0x20 0x74 - 0x68 0x65 0x20 0x62 0x6F 0x6E 0x65 0x73 - 0x20 0x6F 0x66 0x20 0x61 0x6E 0x20 0x61 - 0x6E 0x69 0x6D 0x61 0x6C 0x20 0x74 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x73 0x69 0x64 - 0x65 0x2E 0x20 0x20 0x42 0x75 0x74 0x20 - 0x6F 0x76 0x65 0x72 0x20 0x69 0x6E 0x20 - 0x74 0x68 0x65 0x20 0x64 0x69 0x73 0x74 - 0x61 0x6E 0x63 0x65 0x2C 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x63 0x61 0x6E 0x20 - 0x73 0x65 0x65 0x20 0x61 0x20 0x73 0x6D - 0x61 0x6C 0x6C 0x20 0x77 0x6F 0x6F 0x64 - 0x65 0x6E 0x20 0x64 0x6F 0x6F 0x72 0x77 - 0x61 0x79 0x2E 0x20 0x0D 0x0A 0x49 0x73 - 0x20 0x74 0x68 0x69 0x73 0x20 0x74 0x68 - 0x65 0x20 0x6C 0x6F 0x73 0x74 0x20 0x65 - 0x6E 0x74 0x72 0x61 0x6E 0x63 0x65 0x20 - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x75 - 0x6E 0x64 0x65 0x72 0x67 0x72 0x6F 0x75 - 0x6E 0x64 0x20 0x70 0x61 0x73 0x73 0x61 - 0x67 0x65 0x3F 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x77 0x69 0x6C 0x6C 0x20 0x57 0x69 - 0x6C 0x6C 0x79 0x20 0x61 0x6E 0x64 0x20 - 0x56 0x61 0x6C 0x65 0x6E 0x74 0x69 0x6E - 0x65 0x20 0x73 0x71 0x75 0x65 0x65 0x7A - 0x65 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x69 0x74 0x3F 0x20 0x20 0x57 - 0x68 0x61 0x74 0x20 0x77 0x69 0x6C 0x6C - 0x20 0x74 0x68 0x65 0x79 0x20 0x66 0x69 - 0x6E 0x64 0x20 0x61 0x74 0x20 0x74 0x68 - 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 0x20 - 0x73 0x69 0x64 0x65 0x20 0x6F 0x66 0x20 - 0x74 0x68 0x65 0x20 0x6D 0x6F 0x75 0x6E - 0x74 0x61 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29032 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CE= 0x000153a6 - - -CHUNK('HTOP', _help_48544F50_CE, "") -SUBFILE -#line 29040 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CE, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_20=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CE, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x0E 0x01 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_20=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x15 0x03 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x3D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_20=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_20, 0x0) - BYTE - 0x03 0x03 0x6D 0x61 0x74 0x61 0x64 0x6F - 0x72 0x73 0x0D 0x0A 0x5A 0x61 0x63 0x6B - 0x92 0x73 0x20 0x66 0x61 0x6D 0x69 0x6C - 0x79 0x20 0x68 0x61 0x73 0x20 0x62 0x65 - 0x65 0x6E 0x20 0x69 0x6E 0x20 0x62 0x75 - 0x6C 0x6C 0x66 0x69 0x67 0x68 0x74 0x69 - 0x6E 0x67 0x20 0x66 0x6F 0x72 0x20 0x67 - 0x65 0x6E 0x65 0x72 0x61 0x74 0x69 0x6F - 0x6E 0x73 0x2E 0x20 0x20 0x46 0x72 0x6F - 0x6D 0x20 0x61 0x6E 0x20 0x65 0x61 0x72 - 0x6C 0x79 0x20 0x61 0x67 0x65 0x2C 0x20 - 0x5A 0x61 0x63 0x6B 0x20 0x61 0x6E 0x64 - 0x20 0x68 0x69 0x73 0x20 0x31 0x31 0x20 - 0x6F 0x6C 0x64 0x65 0x72 0x20 0x62 0x72 - 0x6F 0x74 0x68 0x65 0x72 0x73 0x20 0x67 - 0x6F 0x74 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x68 0x65 0x20 0x72 0x69 0x6E 0x67 - 0x20 0x77 0x69 0x74 0x68 0x20 0x74 0x68 - 0x65 0x20 0x62 0x75 0x6C 0x6C 0x73 0x20 - 0x74 0x6F 0x20 0x6B 0x65 0x65 0x70 0x20 - 0x74 0x68 0x65 0x20 0x66 0x61 0x6D 0x69 - 0x6C 0x79 0x20 0x74 0x72 0x61 0x64 0x69 - 0x74 0x69 0x6F 0x6E 0x20 0x67 0x6F 0x69 - 0x6E 0x67 0x2E 0x20 0x20 0x49 0x74 0x20 - 0x64 0x69 0x64 0x6E 0x92 0x74 0x20 0x74 - 0x61 0x6B 0x65 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x6C 0x6F 0x6E 0x67 0x20 0x74 0x6F - 0x20 0x72 0x65 0x61 0x6C 0x69 0x7A 0x65 - 0x20 0x74 0x68 0x65 0x20 0x74 0x68 0x65 - 0x73 0x65 0x20 0x62 0x75 0x6C 0x6C 0x73 - 0x20 0x77 0x65 0x72 0x65 0x20 0x77 0x61 - 0x79 0x20 0x73 0x65 0x72 0x69 0x6F 0x75 - 0x73 0x2E 0x20 0x48 0x65 0x20 0x77 0x61 - 0x6E 0x74 0x65 0x64 0x20 0x74 0x6F 0x20 - 0x73 0x61 0x79 0x2C 0x20 0x93 0x54 0x68 - 0x61 0x6E 0x6B 0x73 0x2C 0x20 0x67 0x75 - 0x79 0x73 0x2C 0x20 0x62 0x75 0x74 0x20 - 0x74 0x68 0x69 0x73 0x20 0x69 0x73 0x20 - 0x4E 0x4F 0x54 0x20 0x66 0x6F 0x72 0x20 - 0x6D 0x65 0x2E 0x94 0x20 0x0D 0x0A 0x42 - 0x75 0x74 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x6E 0x92 0x74 0x20 0x64 - 0x69 0x73 0x61 0x70 0x70 0x6F 0x69 0x6E - 0x74 0x20 0x68 0x69 0x73 0x20 0x66 0x61 - 0x6D 0x69 0x6C 0x79 0x2E 0x20 0x20 0x53 - 0x6F 0x20 0x68 0x65 0x20 0x67 0x72 0x61 - 0x62 0x62 0x65 0x64 0x20 0x61 0x20 0x70 - 0x61 0x70 0x65 0x72 0x20 0x6C 0x75 0x6E - 0x63 0x68 0x20 0x62 0x61 0x67 0x20 0x61 - 0x6E 0x64 0x20 0x70 0x75 0x74 0x20 0x69 - 0x74 0x20 0x6F 0x76 0x65 0x72 0x20 0x68 - 0x69 0x73 0x20 0x68 0x65 0x61 0x64 0x2E - 0x20 0x20 0x49 0x6E 0x73 0x74 0x61 0x6E - 0x74 0x6C 0x79 0x2C 0x20 0x68 0x65 0x20 - 0x77 0x61 0x73 0x20 0x66 0x69 0x6C 0x6C - 0x65 0x64 0x20 0x77 0x69 0x74 0x68 0x20 - 0x63 0x6F 0x75 0x72 0x61 0x67 0x65 0x2E - 0x20 0x20 0x4E 0x6F 0x74 0x68 0x69 0x6E - 0x67 0x2C 0x20 0x6E 0x6F 0x74 0x20 0x65 - 0x76 0x65 0x6E 0x20 0x61 0x20 0x68 0x61 - 0x69 0x72 0x79 0x20 0x62 0x75 0x6C 0x6C - 0x2C 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x73 0x74 0x6F 0x70 0x20 0x68 0x69 0x6D - 0x20 0x6E 0x6F 0x77 0x2E 0x20 0x20 0x46 - 0x72 0x6F 0x6D 0x20 0x74 0x68 0x61 0x74 - 0x20 0x6D 0x6F 0x6D 0x65 0x6E 0x74 0x2C - 0x20 0x68 0x65 0x20 0x62 0x65 0x63 0x61 - 0x6D 0x65 0x20 0x74 0x68 0x65 0x20 0x6D - 0x6F 0x73 0x74 0x20 0x73 0x75 0x63 0x63 - 0x65 0x73 0x73 0x66 0x75 0x6C 0x20 0x6D - 0x61 0x74 0x61 0x64 0x6F 0x72 0x20 0x69 - 0x6E 0x20 0x61 0x6C 0x6C 0x20 0x6F 0x66 - 0x20 0x53 0x70 0x61 0x69 0x6E 0x2E 0x20 - 0x20 0x45 0x76 0x65 0x6E 0x20 0x61 0x20 - 0x6D 0x6F 0x76 0x69 0x65 0x20 0x64 0x69 - 0x72 0x65 0x63 0x74 0x6F 0x72 0x2C 0x20 - 0x4D 0x63 0x5A 0x65 0x65 0x2C 0x20 0x6E - 0x6F 0x74 0x69 0x63 0x65 0x64 0x20 0x68 - 0x69 0x6D 0x2E 0x20 0x20 0x53 0x6F 0x6F - 0x6E 0x20 0x74 0x68 0x65 0x20 0x6C 0x69 - 0x66 0x65 0x20 0x73 0x74 0x6F 0x72 0x79 - 0x20 0x6F 0x66 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x6D 0x61 0x64 0x65 0x20 0x74 0x68 - 0x65 0x20 0x62 0x69 0x67 0x20 0x73 0x63 - 0x72 0x65 0x65 0x6E 0x2E 0x20 0x57 0x69 - 0x74 0x68 0x20 0x74 0x68 0x65 0x20 0x61 - 0x70 0x70 0x72 0x6F 0x76 0x61 0x6C 0x20 - 0x6F 0x66 0x20 0x68 0x69 0x73 0x20 0x66 - 0x61 0x6D 0x69 0x6C 0x79 0x20 0x61 0x6E - 0x64 0x20 0x74 0x68 0x65 0x20 0x42 0x75 - 0x6C 0x6C 0x73 0x92 0x20 0x41 0x73 0x73 - 0x6F 0x63 0x69 0x61 0x74 0x69 0x6F 0x6E - 0x2C 0x20 0x5A 0x61 0x63 0x6B 0x20 0x6C - 0x65 0x66 0x74 0x20 0x6D 0x61 0x74 0x61 - 0x64 0x6F 0x72 0x69 0x6E 0x67 0x20 0x74 - 0x6F 0x20 0x66 0x6F 0x6C 0x6C 0x6F 0x77 - 0x20 0x68 0x69 0x73 0x20 0x6E 0x65 0x77 - 0x20 0x6C 0x6F 0x76 0x65 0x2C 0x20 0x61 - 0x63 0x74 0x69 0x6E 0x67 0x2E 0x20 -ENDCHUNK - - -ENDCHUNK -#line 29200 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_CF= 0x000153a7 - - -CHUNK('HTOP', _help_48544F50_CF, "") -SUBFILE -#line 29208 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_CF, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_C6=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_CF, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xD2 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_C6=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_C6, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x68 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0xF5 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_C6=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_C6, 0x0) - BYTE - 0x03 0x03 0x50 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x0D 0x0A 0x57 0x69 0x74 0x68 0x20 - 0x68 0x69 0x73 0x20 0x70 0x61 0x70 0x65 - 0x72 0x20 0x62 0x61 0x67 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x20 0x64 0x72 0x65 0x61 - 0x6D 0x73 0x20 0x68 0x65 0x20 0x63 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x61 - 0x20 0x74 0x65 0x72 0x72 0x69 0x66 0x69 - 0x63 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x21 0x20 0x20 0x48 0x65 0x20 0x63 - 0x6F 0x75 0x6C 0x64 0x20 0x68 0x69 0x64 - 0x65 0x20 0x61 0x6E 0x79 0x77 0x68 0x65 - 0x72 0x65 0x2C 0x20 0x61 0x70 0x70 0x65 - 0x61 0x72 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x6E 0x6F 0x77 0x68 0x65 0x72 0x65 0x2C - 0x20 0x77 0x61 0x6C 0x6B 0x20 0x74 0x68 - 0x72 0x6F 0x75 0x67 0x68 0x20 0x77 0x61 - 0x6C 0x6C 0x73 0x2C 0x20 0x64 0x72 0x6F - 0x70 0x20 0x74 0x68 0x72 0x6F 0x75 0x67 - 0x68 0x20 0x74 0x68 0x65 0x20 0x66 0x6C - 0x6F 0x6F 0x72 0x2C 0x20 0x61 0x6E 0x64 - 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 0x20 - 0x77 0x6F 0x75 0x6C 0x64 0x20 0x65 0x76 - 0x65 0x72 0x20 0x6B 0x6E 0x6F 0x77 0x20 - 0x77 0x68 0x6F 0x20 0x68 0x65 0x20 0x77 - 0x61 0x73 0x2E 0x20 0x0D 0x0A 0x54 0x68 - 0x65 0x6E 0x2C 0x20 0x6F 0x6E 0x65 0x20 - 0x64 0x61 0x79 0x2C 0x20 0x5A 0x61 0x63 - 0x6B 0x20 0x77 0x6F 0x75 0x6C 0x64 0x20 - 0x62 0x65 0x20 0x70 0x72 0x61 0x63 0x74 - 0x69 0x63 0x69 0x6E 0x67 0x20 0x68 0x69 - 0x73 0x20 0x70 0x68 0x61 0x6E 0x74 0x6F - 0x6D 0x20 0x61 0x63 0x74 0x20 0x6F 0x75 - 0x74 0x20 0x69 0x6E 0x20 0x74 0x68 0x65 - 0x20 0x67 0x72 0x61 0x76 0x65 0x79 0x61 - 0x72 0x64 0x20 0x77 0x68 0x65 0x6E 0x20 - 0x68 0x65 0x20 0x73 0x65 0x65 0x73 0x20 - 0x61 0x6E 0x20 0x61 0x6C 0x69 0x65 0x6E - 0x20 0x73 0x70 0x61 0x63 0x65 0x73 0x68 - 0x69 0x70 0x20 0x68 0x65 0x61 0x64 0x65 - 0x64 0x20 0x68 0x69 0x73 0x20 0x77 0x61 - 0x79 0x2E 0x20 0x20 0x4F 0x68 0x2C 0x20 - 0x6E 0x6F 0x2C 0x20 0x6E 0x6F 0x74 0x20 - 0x61 0x67 0x61 0x69 0x6E 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x20 0x74 0x68 0x69 0x6E - 0x6B 0x73 0x2E 0x20 0x20 0x5A 0x61 0x63 - 0x6B 0x20 0x68 0x61 0x73 0x20 0x6D 0x65 - 0x74 0x20 0x61 0x6C 0x69 0x65 0x6E 0x73 - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x68 0x65 0x20 - 0x64 0x69 0x64 0x6E 0x92 0x74 0x20 0x6C - 0x69 0x6B 0x65 0x20 0x74 0x68 0x65 0x6D - 0x2E 0x20 0x20 0x54 0x68 0x65 0x79 0x20 - 0x68 0x61 0x64 0x20 0x6E 0x6F 0x74 0x68 - 0x69 0x6E 0x67 0x20 0x69 0x6E 0x20 0x63 - 0x6F 0x6D 0x6D 0x6F 0x6E 0x2C 0x20 0x74 - 0x68 0x65 0x79 0x20 0x68 0x61 0x74 0x65 - 0x64 0x20 0x62 0x75 0x6C 0x6C 0x73 0x2C - 0x20 0x61 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x79 0x20 0x61 0x6C 0x77 0x61 0x79 0x73 - 0x20 0x6D 0x61 0x64 0x65 0x20 0x66 0x75 - 0x6E 0x20 0x6F 0x66 0x20 0x61 0x63 0x74 - 0x6F 0x72 0x73 0x2E 0x20 0x0D 0x0A 0x5A - 0x61 0x63 0x6B 0x20 0x6E 0x65 0x65 0x64 - 0x73 0x20 0x61 0x20 0x67 0x6F 0x6F 0x64 - 0x20 0x74 0x72 0x61 0x6E 0x73 0x66 0x6F - 0x72 0x6D 0x61 0x74 0x69 0x6F 0x6E 0x20 - 0x71 0x75 0x69 0x63 0x6B 0x2C 0x20 0x62 - 0x75 0x74 0x20 0x77 0x68 0x6F 0x20 0x6F - 0x72 0x20 0x77 0x68 0x61 0x74 0x20 0x63 - 0x61 0x6E 0x20 0x68 0x65 0x20 0x74 0x75 - 0x72 0x6E 0x20 0x68 0x69 0x6D 0x73 0x65 - 0x6C 0x66 0x20 0x69 0x6E 0x74 0x6F 0x20 - 0x74 0x6F 0x20 0x61 0x76 0x6F 0x69 0x64 - 0x20 0x74 0x68 0x65 0x20 0x63 0x72 0x65 - 0x65 0x70 0x79 0x20 0x6C 0x69 0x74 0x74 - 0x6C 0x65 0x20 0x61 0x6C 0x69 0x65 0x6E - 0x73 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29347 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_D0= 0x000153a8 - - -CHUNK('HTOP', _help_48544F50_D0, "") -SUBFILE -#line 29355 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_D0, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_D0=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_D0=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_D0, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x31 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x7C 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_D0=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_D0, 0x0) - BYTE - 0x03 0x03 0x56 0x69 0x6C 0x6C 0x61 0x69 - 0x6E 0x0D 0x0A 0x41 0x6C 0x6C 0x20 0x74 - 0x68 0x65 0x20 0x6F 0x74 0x68 0x65 0x72 - 0x20 0x61 0x63 0x74 0x6F 0x72 0x73 0x20 - 0x77 0x61 0x6E 0x74 0x20 0x74 0x6F 0x20 - 0x70 0x6C 0x61 0x79 0x20 0x74 0x68 0x65 - 0x20 0x67 0x6F 0x6F 0x64 0x20 0x67 0x75 - 0x79 0x73 0x2E 0x20 0x20 0x4E 0x6F 0x74 - 0x20 0x5A 0x61 0x63 0x6B 0x2E 0x20 0x20 - 0x48 0x65 0x20 0x64 0x72 0x65 0x61 0x6D - 0x73 0x20 0x6F 0x66 0x20 0x62 0x65 0x69 - 0x6E 0x67 0x20 0x74 0x68 0x65 0x20 0x6D - 0x65 0x61 0x6E 0x65 0x73 0x74 0x20 0x61 - 0x6E 0x64 0x20 0x63 0x72 0x6F 0x6F 0x6B - 0x65 0x64 0x65 0x73 0x74 0x20 0x62 0x61 - 0x64 0x20 0x67 0x75 0x79 0x20 0x65 0x76 - 0x65 0x72 0x2E 0x20 0x20 0x48 0x65 0x92 - 0x64 0x20 0x62 0x65 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x64 0x20 0x67 0x75 0x79 - 0x20 0x77 0x68 0x6F 0x20 0x63 0x6F 0x75 - 0x6C 0x64 0x20 0x70 0x75 0x6C 0x6C 0x20 - 0x6F 0x66 0x66 0x20 0x72 0x6F 0x62 0x62 - 0x65 0x72 0x69 0x65 0x73 0x2C 0x20 0x70 - 0x6C 0x61 0x79 0x20 0x70 0x72 0x61 0x6E - 0x6B 0x73 0x2C 0x20 0x73 0x63 0x61 0x72 - 0x65 0x20 0x61 0x6E 0x79 0x6F 0x6E 0x65 - 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6E 0x6F - 0x20 0x6F 0x6E 0x65 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x65 0x76 0x65 0x72 0x20 - 0x63 0x61 0x74 0x63 0x68 0x20 0x68 0x69 - 0x6D 0x20 0x6F 0x72 0x20 0x66 0x69 0x6E - 0x64 0x20 0x6F 0x75 0x74 0x20 0x77 0x68 - 0x6F 0x20 0x68 0x65 0x20 0x72 0x65 0x61 - 0x6C 0x6C 0x79 0x20 0x69 0x73 0x2E 0x20 - 0x20 0x41 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x62 0x61 0x67 0x20 0x77 0x6F 0x75 - 0x6C 0x64 0x20 0x62 0x65 0x20 0x65 0x76 - 0x65 0x6E 0x20 0x62 0x65 0x74 0x74 0x65 - 0x72 0x20 0x74 0x68 0x61 0x6E 0x20 0x61 - 0x20 0x73 0x6B 0x69 0x20 0x6D 0x61 0x73 - 0x6B 0x21 0x20 0x48 0x65 0x20 0x77 0x6F - 0x75 0x6C 0x64 0x20 0x62 0x65 0x20 0x74 - 0x68 0x65 0x20 0x67 0x72 0x65 0x61 0x74 - 0x20 0x6D 0x79 0x73 0x74 0x65 0x72 0x79 - 0x20 0x6D 0x61 0x6E 0x20 0x74 0x68 0x61 - 0x74 0x20 0x6E 0x6F 0x20 0x6F 0x6E 0x65 - 0x20 0x63 0x61 0x6E 0x20 0x63 0x61 0x74 - 0x63 0x68 0x2E 0x20 0x0D 0x0A 0x42 0x75 - 0x74 0x20 0x77 0x68 0x61 0x74 0x20 0x69 - 0x66 0x20 0x6F 0x6E 0x65 0x20 0x6F 0x66 - 0x20 0x74 0x68 0x65 0x20 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x73 0x20 0x6B 0x6E 0x6F 0x77 0x73 0x20 - 0x68 0x69 0x6D 0x20 0x66 0x72 0x6F 0x6D - 0x20 0x62 0x65 0x66 0x6F 0x72 0x65 0x20 - 0x68 0x65 0x20 0x62 0x65 0x63 0x61 0x6D - 0x65 0x20 0x61 0x20 0x62 0x61 0x67 0x2D - 0x66 0x61 0x63 0x65 0x3F 0x20 0x20 0x41 - 0x6E 0x64 0x20 0x77 0x68 0x61 0x74 0x20 - 0x69 0x66 0x20 0x61 0x6E 0x6F 0x74 0x68 - 0x65 0x72 0x20 0x61 0x63 0x74 0x6F 0x72 - 0x20 0x63 0x61 0x6E 0x20 0x6D 0x61 0x74 - 0x63 0x68 0x20 0x61 0x6C 0x6C 0x20 0x6F - 0x66 0x20 0x5A 0x61 0x63 0x6B 0x92 0x73 - 0x20 0x73 0x6C 0x79 0x20 0x74 0x72 0x69 - 0x63 0x6B 0x73 0x20 0x61 0x6E 0x64 0x20 - 0x64 0x6F 0x20 0x65 0x76 0x65 0x6E 0x20 - 0x6D 0x6F 0x72 0x65 0x3F 0x20 0x57 0x69 - 0x6C 0x6C 0x20 0x5A 0x61 0x63 0x6B 0x20 - 0x62 0x65 0x20 0x64 0x6F 0x6E 0x65 0x20 - 0x69 0x6E 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29487 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - - -SET _help_48544F50_D1= 0x000153a9 - - -CHUNK('HTOP', _help_48544F50_D1, "") -SUBFILE -#line 29495 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -CHUNK('HTOP', _help_48544F50_D1, "") - BO OSK LONG 0x00015107 0x00015107 0x0 0xFFFFFFFF 0x140 0xF0 0x57415645 0xFFFFFFFF -ENDCHUNK - - - - - - - - - - - - - - - - - - - - - - -SET _help_cno++ -SET _help_52545854_1F=_help_cno -CHUNK('RTXT', _help_cno, "") -PARENT('HTOP', _help_48544F50_D1, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0xC7 0x00 0x00 0x00 - 0x0C 0x00 0x00 0x00 0xFF 0xFF 0xFF 0xFF - 0x03 0x03 0x0D 0x43 0x6F 0x6D 0x69 0x63 - 0x20 0x53 0x61 0x6E 0x73 0x20 0x4D 0x53 - 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_474C4D50_1F=_help_cno -CHUNK('GLMP', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x01 0x00 0x03 0x03 0x08 0x00 0x00 0x00 - 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x01 - 0x01 0x00 0x00 0x00 0x44 0x02 0x00 0x01 - 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x82 - 0x05 0x00 0x00 0x00 0x8D 0x01 0x00 0x82 - 0x00 0x00 0x00 0x00 -ENDCHUNK - -SET _help_cno++ -SET _help_54455854_1F=_help_cno -CHUNK('TEXT', _help_cno, "") -PARENT('RTXT', _help_52545854_1F, 0x0) - BYTE - 0x03 0x03 0x43 0x61 0x6D 0x6F 0x75 0x66 - 0x6C 0x61 0x67 0x65 0x64 0x20 0x48 0x75 - 0x6E 0x74 0x65 0x72 0x0D 0x0A 0x57 0x69 - 0x74 0x68 0x20 0x61 0x6C 0x6C 0x20 0x68 - 0x69 0x73 0x20 0x63 0x6F 0x75 0x72 0x61 - 0x67 0x65 0x2C 0x20 0x5A 0x61 0x63 0x6B - 0x20 0x63 0x61 0x6E 0x20 0x73 0x65 0x65 - 0x20 0x68 0x69 0x6D 0x73 0x65 0x6C 0x66 - 0x20 0x70 0x6C 0x61 0x79 0x69 0x6E 0x67 - 0x20 0x61 0x6E 0x20 0x61 0x77 0x65 0x73 - 0x6F 0x6D 0x65 0x20 0x68 0x75 0x6E 0x74 - 0x65 0x72 0x20 0x64 0x72 0x65 0x73 0x73 - 0x65 0x64 0x20 0x69 0x6E 0x20 0x63 0x61 - 0x6D 0x6F 0x75 0x66 0x6C 0x61 0x67 0x65 - 0x2C 0x20 0x72 0x65 0x61 0x64 0x79 0x20 - 0x74 0x6F 0x20 0x77 0x69 0x6E 0x20 0x74 - 0x68 0x65 0x20 0x77 0x6F 0x72 0x6C 0x64 - 0x20 0x66 0x6F 0x72 0x20 0x66 0x72 0x65 - 0x65 0x64 0x6F 0x6D 0x2E 0x20 0x20 0x48 - 0x65 0x92 0x64 0x20 0x70 0x61 0x72 0x61 - 0x63 0x68 0x75 0x74 0x65 0x20 0x69 0x6E - 0x74 0x6F 0x20 0x74 0x68 0x65 0x20 0x65 - 0x6E 0x65 0x6D 0x79 0x92 0x73 0x20 0x66 - 0x6F 0x72 0x74 0x20 0x61 0x6E 0x64 0x20 - 0x74 0x61 0x6B 0x65 0x20 0x74 0x68 0x65 - 0x6D 0x20 0x61 0x6C 0x6C 0x20 0x62 0x79 - 0x20 0x73 0x74 0x6F 0x72 0x6D 0x2E 0x20 - 0x20 0x5A 0x61 0x63 0x6B 0x20 0x70 0x75 - 0x74 0x73 0x20 0x6F 0x6E 0x20 0x74 0x68 - 0x65 0x20 0x70 0x61 0x72 0x61 0x63 0x68 - 0x75 0x74 0x65 0x2C 0x20 0x6A 0x75 0x6D - 0x70 0x73 0x20 0x66 0x72 0x6F 0x6D 0x20 - 0x74 0x68 0x65 0x20 0x70 0x6C 0x61 0x6E - 0x65 0x2C 0x20 0x61 0x6E 0x64 0x20 0x6C - 0x61 0x6E 0x64 0x73 0x2E 0x20 0x20 0x42 - 0x75 0x74 0x20 0x73 0x6F 0x6D 0x65 0x74 - 0x68 0x69 0x6E 0x67 0x20 0x67 0x6F 0x65 - 0x73 0x20 0x74 0x65 0x72 0x72 0x69 0x62 - 0x6C 0x79 0x20 0x77 0x72 0x6F 0x6E 0x67 - 0x2E 0x20 0x20 0x49 0x6E 0x73 0x74 0x65 - 0x61 0x64 0x20 0x6F 0x66 0x20 0x65 0x6E - 0x65 0x6D 0x79 0x20 0x74 0x65 0x72 0x72 - 0x69 0x74 0x6F 0x72 0x79 0x2C 0x20 0x5A - 0x61 0x63 0x6B 0x20 0x6C 0x61 0x6E 0x64 - 0x73 0x20 0x6F 0x6E 0x20 0x74 0x6F 0x70 - 0x20 0x6F 0x66 0x20 0x61 0x20 0x73 0x68 - 0x6F 0x70 0x70 0x69 0x6E 0x67 0x20 0x6D - 0x61 0x6C 0x6C 0x20 0x73 0x6E 0x61 0x63 - 0x6B 0x20 0x66 0x6F 0x6F 0x64 0x20 0x63 - 0x61 0x72 0x74 0x21 0x20 0x0D 0x0A 0x50 - 0x65 0x6F 0x70 0x6C 0x65 0x20 0x62 0x65 - 0x67 0x69 0x6E 0x20 0x67 0x61 0x74 0x68 - 0x65 0x72 0x69 0x6E 0x67 0x20 0x61 0x72 - 0x6F 0x75 0x6E 0x64 0x20 0x74 0x68 0x65 - 0x20 0x77 0x65 0x69 0x72 0x64 0x20 0x62 - 0x61 0x67 0x2D 0x68 0x65 0x61 0x64 0x20 - 0x64 0x72 0x65 0x73 0x73 0x65 0x64 0x20 - 0x69 0x6E 0x20 0x61 0x72 0x6D 0x79 0x20 - 0x63 0x61 0x6D 0x6F 0x75 0x66 0x6C 0x61 - 0x67 0x65 0x2E 0x20 0x20 0x48 0x6F 0x77 - 0x20 0x65 0x6D 0x62 0x61 0x72 0x72 0x61 - 0x73 0x73 0x69 0x6E 0x67 0x2E 0x20 0x48 - 0x65 0x20 0x6D 0x75 0x73 0x74 0x20 0x73 - 0x61 0x76 0x65 0x20 0x68 0x69 0x73 0x20 - 0x72 0x65 0x70 0x75 0x74 0x61 0x74 0x69 - 0x6F 0x6E 0x2E 0x20 0x48 0x65 0x20 0x6E - 0x65 0x65 0x64 0x73 0x20 0x61 0x6E 0x6F - 0x74 0x68 0x65 0x72 0x20 0x70 0x6C 0x61 - 0x6E 0x2C 0x20 0x71 0x75 0x69 0x63 0x6B - 0x21 0x20 0x48 0x6F 0x77 0x20 0x77 0x69 - 0x6C 0x6C 0x20 0x5A 0x61 0x63 0x6B 0x20 - 0x73 0x61 0x76 0x65 0x20 0x66 0x61 0x63 - 0x65 0x20 0x6E 0x6F 0x77 0x3F -ENDCHUNK - - -ENDCHUNK -#line 29629 "H:\\BUILD\\SOC\\src\\help\\bio.cht" - -#line 58 "H:\\BUILD\\SOC\\src\\help\\help.cht" diff --git a/OBJ/WINS/HELPAUD.I b/OBJ/WINS/HELPAUD.I deleted file mode 100644 index cced8a93..00000000 --- a/OBJ/WINS/HELPAUD.I +++ /dev/null @@ -1,7174 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 7 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 8 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 9 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 10 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 11 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 12 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" - - - -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wctooltp.cht" - -CHUNK( 'WAVE', 0x00076000, ) FILE "helpaud\sound\tooltips\VZR001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076001, ) FILE "helpaud\sound\tooltips\VZR005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076002, ) FILE "helpaud\sound\tooltips\VZR014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076003, ) FILE "helpaud\sound\tooltips\VZR044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076004, ) FILE "helpaud\sound\tooltips\VZR002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076005, ) FILE "helpaud\sound\tooltips\VZR006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076006, ) FILE "helpaud\sound\tooltips\VZR013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076007, ) FILE "helpaud\sound\tooltips\VZR007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076008, ) FILE "helpaud\sound\tooltips\VZR008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076009, ) FILE "helpaud\sound\tooltips\VZR019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600A, ) FILE "helpaud\sound\tooltips\VZR020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600B, ) FILE "helpaud\sound\tooltips\VZR053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600C, ) FILE "helpaud\sound\tooltips\VZR054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600D, ) FILE "helpaud\sound\tooltips\VZR055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600E, ) FILE "helpaud\sound\tooltips\VZR021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007600F, ) FILE "helpaud\sound\tooltips\VZR056.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076010, ) FILE "helpaud\sound\tooltips\VZR057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076011, ) FILE "helpaud\sound\tooltips\VZR058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076012, ) FILE "helpaud\sound\tooltips\VZR059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076013, ) FILE "helpaud\sound\tooltips\VZR022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076014, ) FILE "helpaud\sound\tooltips\VZR023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076016, ) FILE "helpaud\sound\tooltips\VZR024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076017, ) FILE "helpaud\sound\tooltips\VZR025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076019, ) FILE "helpaud\sound\tooltips\VZR027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601A, ) FILE "helpaud\sound\tooltips\VZR028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601B, ) FILE "helpaud\sound\tooltips\VZR029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601C, ) FILE "helpaud\sound\tooltips\VZR041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601D, ) FILE "helpaud\sound\tooltips\VZR042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601E, ) FILE "helpaud\sound\tooltips\VZR003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007601F, ) FILE "helpaud\sound\tooltips\VZR009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076020, ) FILE "helpaud\sound\tooltips\VZR010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076021, ) FILE "helpaud\sound\tooltips\VZR011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076022, ) FILE "helpaud\sound\tooltips\VZR030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076023, ) FILE "helpaud\sound\tooltips\VZR031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076024, ) FILE "helpaud\sound\tooltips\VZR032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076025, ) FILE "helpaud\sound\tooltips\VZR033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076026, ) FILE "helpaud\sound\tooltips\VZR004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076027, ) FILE "helpaud\sound\tooltips\VZR012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076028, ) FILE "helpaud\sound\tooltips\VZR034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076029, ) FILE "helpaud\sound\tooltips\VZR035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602A, ) FILE "helpaud\sound\tooltips\VZR036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602B, ) FILE "helpaud\sound\tooltips\VZR037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602C, ) FILE "helpaud\sound\tooltips\VZR038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602D, ) FILE "helpaud\sound\tooltips\VZR039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602E, ) FILE "helpaud\sound\tooltips\VZR040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007602F, ) FILE "helpaud\sound\tooltips\VZR114.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076030, ) FILE "helpaud\sound\tooltips\VZR115.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076031, ) FILE "helpaud\sound\tooltips\VZR043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076033, ) FILE "helpaud\sound\tooltips\VZR016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076035, ) FILE "helpaud\sound\tooltips\VZR045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076036, ) FILE "helpaud\sound\tooltips\VZR046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076037, ) FILE "helpaud\sound\tooltips\VZR047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076038, ) FILE "helpaud\sound\tooltips\VZR048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076039, ) FILE "helpaud\sound\tooltips\VZR060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603A, ) FILE "helpaud\sound\tooltips\VZR061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603B, ) FILE "helpaud\sound\tooltips\VZR062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603C, ) FILE "helpaud\sound\tooltips\VZR063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603D, ) FILE "helpaud\sound\tooltips\VZR064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603E, ) FILE "helpaud\sound\tooltips\VZR066.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007603F, ) FILE "helpaud\sound\tooltips\VZR065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076040, ) FILE "helpaud\sound\tooltips\VZR067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076041, ) FILE "helpaud\sound\tooltips\VZR068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076042, ) FILE "helpaud\sound\tooltips\VZR049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076043, ) FILE "helpaud\sound\tooltips\VZR069.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076044, ) FILE "helpaud\sound\tooltips\VZR070.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076045, ) FILE "helpaud\sound\tooltips\VZR071.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076046, ) FILE "helpaud\sound\tooltips\VZR072.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076047, ) FILE "helpaud\sound\tooltips\VZR050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076048, ) FILE "helpaud\sound\tooltips\VZR051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076049, ) FILE "helpaud\sound\tooltips\VZR052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604A, ) FILE "helpaud\sound\tooltips\VZR116.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604B, ) FILE "helpaud\sound\tooltips\VZR117.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604C, ) FILE "helpaud\sound\tooltips\VZR118.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604D, ) FILE "helpaud\sound\tooltips\VZR119.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604E, ) FILE "helpaud\sound\tooltips\VZR120.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007604F, ) FILE "helpaud\sound\tooltips\VZR121.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076050, ) FILE "helpaud\sound\tooltips\VZR122.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076051, ) FILE "helpaud\sound\tooltips\VZR123.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076052, ) FILE "helpaud\sound\tooltips\VZR124.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076053, ) FILE "helpaud\sound\tooltips\VZR125.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076054, ) FILE "helpaud\sound\tooltips\VZR126.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076055, ) FILE "helpaud\sound\tooltips\VZR127.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076056, ) FILE "helpaud\sound\tooltips\VZR128.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075550, ) FILE "helpaud\sound\tooltips\VMR001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075551, ) FILE "helpaud\sound\tooltips\VMR002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075552, ) FILE "helpaud\sound\tooltips\VMR003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075553, ) FILE "helpaud\sound\tooltips\VMR004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075554, ) FILE "helpaud\sound\tooltips\VMR005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075555, ) FILE "helpaud\sound\tooltips\VMR006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075556, ) FILE "helpaud\sound\tooltips\VMR007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075557, ) FILE "helpaud\sound\tooltips\VMR008.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x00075400, ) FILE "helpaud\sound\tooltips\VZR073.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075402, ) FILE "helpaud\sound\tooltips\VZR074.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075403, ) FILE "helpaud\sound\tooltips\VZR075.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075404, ) FILE "helpaud\sound\tooltips\VZR076.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075405, ) FILE "helpaud\sound\tooltips\VZR077.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075406, ) FILE "helpaud\sound\tooltips\VZR078.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075407, ) FILE "helpaud\sound\tooltips\VZR079.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075408, ) FILE "helpaud\sound\tooltips\VZR080.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075409, ) FILE "helpaud\sound\tooltips\VZR081.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540A, ) FILE "helpaud\sound\tooltips\VZR082.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540B, ) FILE "helpaud\sound\tooltips\VZR083.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540D, ) FILE "helpaud\sound\tooltips\VZR084.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540E, ) FILE "helpaud\sound\tooltips\VZR085.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007540F, ) FILE "helpaud\sound\tooltips\VZR086.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075410, ) FILE "helpaud\sound\tooltips\VZR087.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075411, ) FILE "helpaud\sound\tooltips\VZR088.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075412, ) FILE "helpaud\sound\tooltips\VZR089.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075413, ) FILE "helpaud\sound\tooltips\VZR090.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075414, ) FILE "helpaud\sound\tooltips\VZR091.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075415, ) FILE "helpaud\sound\tooltips\VZR092.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075416, ) FILE "helpaud\sound\tooltips\VZR093.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075417, ) FILE "helpaud\sound\tooltips\VZR094.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075418, ) FILE "helpaud\sound\tooltips\VZR095.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075419, ) FILE "helpaud\sound\tooltips\VZR096.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541A, ) FILE "helpaud\sound\tooltips\VZR097.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541B, ) FILE "helpaud\sound\tooltips\VZR104.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541E, ) FILE "helpaud\sound\tooltips\VZR099.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007541F, ) FILE "helpaud\sound\tooltips\VZR100.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075420, ) FILE "helpaud\sound\tooltips\VZR101.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075421, ) FILE "helpaud\sound\tooltips\VZR102.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075424, ) FILE "helpaud\sound\tooltips\VZR103.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075425, ) FILE "helpaud\sound\tooltips\VZR098.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075428, ) FILE "helpaud\sound\tooltips\VZR105.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075429, ) FILE "helpaud\sound\tooltips\VZR106.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007542A, ) FILE "helpaud\sound\tooltips\VZR107.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007542D, ) FILE "helpaud\sound\tooltips\VZR108.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075430, ) FILE "helpaud\sound\tooltips\VZR109.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x00076057, ) FILE "helpaud\sound\tooltips\VZR112.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076058, ) FILE "helpaud\sound\tooltips\VZR110.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00076059, ) FILE "helpaud\sound\tooltips\VZR111.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007605A, ) FILE "helpaud\sound\tooltips\VZR046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007605B, ) FILE "helpaud\sound\tooltips\VZR113.WAV" ENDCHUNK -#line 16 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wcbasics.cht" - -CHUNK( 'WAVE', 0x00075480, ) FILE "helpaud\sound\basics\VZH1001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075481, ) FILE "helpaud\sound\basics\VZH1002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075482, ) FILE "helpaud\sound\basics\VZH1003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075483, ) FILE "helpaud\sound\basics\VZH1004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075484, ) FILE "helpaud\sound\basics\VZH1005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075485, ) FILE "helpaud\sound\basics\VZH1006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075486, ) FILE "helpaud\sound\basics\VZH1007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075487, ) FILE "helpaud\sound\basics\VZH1008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075488, ) FILE "helpaud\sound\basics\VZH1009.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x0007548A, ) FILE "helpaud\sound\basics\VZH1010.WAV" ENDCHUNK - -CHUNK( 'WAVE', 0x0007548C, ) FILE "helpaud\sound\basics\VZH1011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007548D, ) FILE "helpaud\sound\basics\VZH1012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007548E, ) FILE "helpaud\sound\basics\VZH1014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007548F, ) FILE "helpaud\sound\basics\VZH1015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075490, ) FILE "helpaud\sound\basics\VZH1013.WAV" ENDCHUNK -#line 17 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wctoolhp.cht" - -CHUNK( 'WAVE', 0x00075500, ) FILE "helpaud\sound\toolhelp\VZH3001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075501, ) FILE "helpaud\sound\toolhelp\VZH3002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075502, ) FILE "helpaud\sound\toolhelp\VZH3003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075503, ) FILE "helpaud\sound\toolhelp\VZH3004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075504, ) FILE "helpaud\sound\toolhelp\VZH3005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075505, ) FILE "helpaud\sound\toolhelp\VZH3006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075506, ) FILE "helpaud\sound\toolhelp\VZH3007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075507, ) FILE "helpaud\sound\toolhelp\VZH3008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075508, ) FILE "helpaud\sound\toolhelp\VZH3009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075509, ) FILE "helpaud\sound\toolhelp\VZH3010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550A, ) FILE "helpaud\sound\toolhelp\VZH3011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550B, ) FILE "helpaud\sound\toolhelp\VZH3012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550C, ) FILE "helpaud\sound\toolhelp\VZH3013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550D, ) FILE "helpaud\sound\toolhelp\VZH3014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550E, ) FILE "helpaud\sound\toolhelp\VZH3015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007550F, ) FILE "helpaud\sound\toolhelp\VZH3016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075510, ) FILE "helpaud\sound\tooltips\VZR057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075511, ) FILE "helpaud\sound\toolhelp\VZH3018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075512, ) FILE "helpaud\sound\toolhelp\VZH3019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075513, ) FILE "helpaud\sound\toolhelp\VZH3020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075514, ) FILE "helpaud\sound\toolhelp\VZH3021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075515, ) FILE "helpaud\sound\toolhelp\VZH3022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075516, ) FILE "helpaud\sound\toolhelp\VZH3023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075517, ) FILE "helpaud\sound\toolhelp\VZH3024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075518, ) FILE "helpaud\sound\toolhelp\VZH3025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075519, ) FILE "helpaud\sound\toolhelp\VZH3026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551A, ) FILE "helpaud\sound\toolhelp\VZH3027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551B, ) FILE "helpaud\sound\toolhelp\VZH3028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551C, ) FILE "helpaud\sound\toolhelp\VZH3029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551D, ) FILE "helpaud\sound\toolhelp\VZH3030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551E, ) FILE "helpaud\sound\toolhelp\VZH3031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007551F, ) FILE "helpaud\sound\toolhelp\VZH3032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075520, ) FILE "helpaud\sound\toolhelp\VZH3033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075521, ) FILE "helpaud\sound\toolhelp\VZH3034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075522, ) FILE "helpaud\sound\toolhelp\VZH3035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075523, ) FILE "helpaud\sound\toolhelp\VZH3036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075524, ) FILE "helpaud\sound\toolhelp\VZH3037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075525, ) FILE "helpaud\sound\toolhelp\VZH3038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075526, ) FILE "helpaud\sound\toolhelp\VZH3039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075527, ) FILE "helpaud\sound\toolhelp\VZH3040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075528, ) FILE "helpaud\sound\toolhelp\VZH3041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075529, ) FILE "helpaud\sound\toolhelp\VZH3042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552A, ) FILE "helpaud\sound\toolhelp\VZH3043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552B, ) FILE "helpaud\sound\toolhelp\VZH3044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552C, ) FILE "helpaud\sound\toolhelp\VZH3045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552D, ) FILE "helpaud\sound\toolhelp\VZH3046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552E, ) FILE "helpaud\sound\toolhelp\VZH3047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007552F, ) FILE "helpaud\sound\toolhelp\VZH3048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075530, ) FILE "helpaud\sound\toolhelp\VZH3049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075531, ) FILE "helpaud\sound\toolhelp\VZH3050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075532, ) FILE "helpaud\sound\toolhelp\VZH3051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075533, ) FILE "helpaud\sound\toolhelp\VZH3052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075534, ) FILE "helpaud\sound\toolhelp\VZH3053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075535, ) FILE "helpaud\sound\toolhelp\VZH3054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075536, ) FILE "helpaud\sound\toolhelp\VZH3055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075537, ) FILE "helpaud\sound\toolhelp\VZH3056.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075538, ) FILE "helpaud\sound\toolhelp\VZH3057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075539, ) FILE "helpaud\sound\toolhelp\VZH3058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553A, ) FILE "helpaud\sound\toolhelp\VZH3059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553B, ) FILE "helpaud\sound\toolhelp\VZH3060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553C, ) FILE "helpaud\sound\toolhelp\VZH3061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553D, ) FILE "helpaud\sound\toolhelp\VZH3062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553E, ) FILE "helpaud\sound\toolhelp\VZH3063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007553F, ) FILE "helpaud\sound\toolhelp\VZH3064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075540, ) FILE "helpaud\sound\toolhelp\VZH3065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075541, ) FILE "helpaud\sound\toolhelp\VZH3066.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075542, ) FILE "helpaud\sound\toolhelp\VZH3067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075543, ) FILE "helpaud\sound\toolhelp\VZH3068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075547, ) FILE "helpaud\sound\toolhelp\VZH3069.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075548, ) FILE "helpaud\sound\toolhelp\VZH3070.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075549, ) FILE "helpaud\sound\toolhelp\VZH3075.WAV" ENDCHUNK - -#line 18 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wcgdelgo.cht" - -CHUNK( 'WAVE', 0x00075000, ) FILE "helpaud\sound\logo\VMP0001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075001, ) FILE "helpaud\sound\logo\VMP0001A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075002, ) FILE "helpaud\sound\logo\VMP0002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075004, ) FILE "helpaud\sound\logo\VMP0003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075005, ) FILE "helpaud\sound\logo\VMP0004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075006, ) FILE "helpaud\sound\logo\VMP0005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075007, ) FILE "helpaud\sound\logo\VMP0006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075008, ) FILE "helpaud\sound\logo\VMP0007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075009, ) FILE "helpaud\sound\logo\VMP0008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500A, ) FILE "helpaud\sound\logo\VMP0009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500B, ) FILE "helpaud\sound\logo\VMP0010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500C, ) FILE "helpaud\sound\logo\VMP0011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500D, ) FILE "helpaud\sound\logo\VMP0012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500E, ) FILE "helpaud\sound\logo\VMP0013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007500F, ) FILE "helpaud\sound\logo\VMP0014.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075090, ) FILE "helpaud\sound\guidhelp\VZG001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075091, ) FILE "helpaud\sound\guidhelp\VZG002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075092, ) FILE "helpaud\sound\guidhelp\VZG003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075093, ) FILE "helpaud\sound\guidhelp\VZG004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075094, ) FILE "helpaud\sound\guidhelp\VZG005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075095, ) FILE "helpaud\sound\guidhelp\VZG006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075096, ) FILE "helpaud\sound\guidhelp\VZG007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075097, ) FILE "helpaud\sound\guidhelp\VZG008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075098, ) FILE "helpaud\sound\guidhelp\VZG009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075099, ) FILE "helpaud\sound\guidhelp\VZG010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007509A, ) FILE "helpaud\sound\guidhelp\VZG011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007509B, ) FILE "helpaud\sound\guidhelp\VZG012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007509C, ) FILE "helpaud\sound\guidhelp\VZG013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750A3, ) FILE "helpaud\sound\guidhelp\VZG014.WAV" ENDCHUNK -#line 19 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wcproj.cht" - - -CHUNK( 'WAVE', 0x00075271, ) FILE "helpaud\sound\projects\Vmp1003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075273, ) FILE "helpaud\sound\projects\VMP1004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075274, ) FILE "helpaud\sound\projects\VMP1005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075275, ) FILE "helpaud\sound\projects\VMP1006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075276, ) FILE "helpaud\sound\projects\VMP1007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075277, ) FILE "helpaud\sound\projects\VMP1008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075278, ) FILE "helpaud\sound\projects\VMP1009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075279, ) FILE "helpaud\sound\projects\VMP1010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527A, ) FILE "helpaud\sound\projects\VMP1011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527B, ) FILE "helpaud\sound\projects\VMP1012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527D, ) FILE "helpaud\sound\projects\VMP1013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527E, ) FILE "helpaud\sound\projects\VMP1014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007527F, ) FILE "helpaud\sound\projects\VMP1015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075280, ) FILE "helpaud\sound\projects\VMP1016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075281, ) FILE "helpaud\sound\projects\VMP1017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075282, ) FILE "helpaud\sound\projects\VMP1018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075284, ) FILE "helpaud\sound\projects\VMP1019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075286, ) FILE "helpaud\sound\projects\VMP1020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075287, ) FILE "helpaud\sound\projects\VMP1021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075288, ) FILE "helpaud\sound\projects\VMP1022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075289, ) FILE "helpaud\sound\projects\VMP1023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528B, ) FILE "helpaud\sound\projects\VMP1024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528C, ) FILE "helpaud\sound\projects\VMP1025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528D, ) FILE "helpaud\sound\projects\VMP1026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007528F, ) FILE "helpaud\sound\projects\VMP1027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075290, ) FILE "helpaud\sound\projects\VMP1041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075292, ) FILE "helpaud\sound\projects\VMP1002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075293, ) FILE "helpaud\sound\projects\VMP1028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075294, ) FILE "helpaud\sound\projects\VMP1029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075295, ) FILE "helpaud\sound\projects\VMP1030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075296, ) FILE "helpaud\sound\projects\VMP1031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075297, ) FILE "helpaud\sound\projects\VMP1032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075299, ) FILE "helpaud\sound\projects\VMP1033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529A, ) FILE "helpaud\sound\projects\VMP1034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529B, ) FILE "helpaud\sound\projects\VMP1035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529C, ) FILE "helpaud\sound\projects\VMP1036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529D, ) FILE "helpaud\sound\projects\VMP1037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007529F, ) FILE "helpaud\sound\projects\VMP1038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752AA, ) FILE "helpaud\sound\projects\VMP1039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752AB, ) FILE "helpaud\sound\projects\VMP1040.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000752B0, ) FILE "helpaud\sound\projects\Vmp3002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B1, ) FILE "helpaud\sound\projects\Vmp3003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B3, ) FILE "helpaud\sound\projects\Vmp3004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B4, ) FILE "helpaud\sound\projects\Vmp3005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B5, ) FILE "helpaud\sound\projects\Vmp3006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B6, ) FILE "helpaud\sound\projects\Vmp3007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752B8, ) FILE "helpaud\sound\projects\Vmp3008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BA, ) FILE "helpaud\sound\projects\Vmp3009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BB, ) FILE "helpaud\sound\projects\Vmp3010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BC, ) FILE "helpaud\sound\projects\Vmp3011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BD, ) FILE "helpaud\sound\projects\Vmp3012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752BE, ) FILE "helpaud\sound\projects\Vmp3013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C0, ) FILE "helpaud\sound\projects\Vmp3014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C1, ) FILE "helpaud\sound\projects\Vmp3015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C3, ) FILE "helpaud\sound\projects\Vmp3016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C4, ) FILE "helpaud\sound\projects\Vmp3017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C5, ) FILE "helpaud\sound\projects\Vmp3018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752C6, ) FILE "helpaud\sound\projects\Vmp3019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752DB, ) FILE "helpaud\sound\projects\Vmp3020.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075250, ) FILE "helpaud\sound\projects\Vmp2002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075251, ) FILE "helpaud\sound\projects\Vmp2003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075253, ) FILE "helpaud\sound\projects\Vmp2004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075254, ) FILE "helpaud\sound\projects\Vmp2005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075255, ) FILE "helpaud\sound\projects\Vmp2006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075256, ) FILE "helpaud\sound\projects\Vmp2007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075257, ) FILE "helpaud\sound\projects\Vmp2008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075258, ) FILE "helpaud\sound\projects\Vmp2009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075259, ) FILE "helpaud\sound\projects\Vmp2011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525A, ) FILE "helpaud\sound\projects\Vmp2014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525C, ) FILE "helpaud\sound\projects\Vmp2019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525E, ) FILE "helpaud\sound\projects\Vmp2015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007525F, ) FILE "helpaud\sound\projects\Vmp2016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075260, ) FILE "helpaud\sound\projects\Vmp2017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075262, ) FILE "helpaud\sound\projects\Vmp2018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075263, ) FILE "helpaud\sound\projects\Vmp2020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075265, ) FILE "helpaud\sound\projects\Vmp2025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075266, ) FILE "helpaud\sound\projects\Vmp2021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075267, ) FILE "helpaud\sound\projects\Vmp2022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075268, ) FILE "helpaud\sound\projects\Vmp2023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075269, ) FILE "helpaud\sound\projects\Vmp2024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007526A, ) FILE "helpaud\sound\projects\Vmp2026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007526D, ) FILE "helpaud\sound\projects\Vmp2027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007526F, ) FILE "helpaud\sound\projects\Vmp2029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752A1, ) FILE "helpaud\sound\projects\Vmp2010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752A2, ) FILE "helpaud\sound\projects\Vmp2013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752A3, ) FILE "helpaud\sound\projects\Vmp2028.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000752F0, ) FILE "helpaud\sound\projects\Vmp6002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752F1, ) FILE "helpaud\sound\projects\Vmp6003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752F3, ) FILE "helpaud\sound\projects\Vmp6005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752F7, ) FILE "helpaud\sound\projects\Vmp6009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FA, ) FILE "helpaud\sound\projects\Vmp6011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FB, ) FILE "helpaud\sound\projects\Vmp6012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FC, ) FILE "helpaud\sound\projects\Vmp6013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000752FF, ) FILE "helpaud\sound\projects\Vmp6015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075301, ) FILE "helpaud\sound\projects\Vmp6016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075302, ) FILE "helpaud\sound\projects\Vmp6017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075304, ) FILE "helpaud\sound\projects\Vmp6018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075306, ) FILE "helpaud\sound\projects\Vmp6019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075307, ) FILE "helpaud\sound\projects\Vmp6020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075308, ) FILE "helpaud\sound\projects\Vmp6021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075309, ) FILE "helpaud\sound\projects\Vmp6022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530A, ) FILE "helpaud\sound\projects\Vmp6023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530B, ) FILE "helpaud\sound\projects\Vmp6024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530D, ) FILE "helpaud\sound\projects\Vmp6025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530E, ) FILE "helpaud\sound\projects\Vmp6026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007530F, ) FILE "helpaud\sound\projects\Vmp6027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075310, ) FILE "helpaud\sound\projects\Vmp6028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075311, ) FILE "helpaud\sound\projects\Vmp6029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075312, ) FILE "helpaud\sound\projects\Vmp6030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075317, ) FILE "helpaud\sound\projects\Vmp6032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075319, ) FILE "helpaud\sound\projects\Vmp6033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007531C, ) FILE "helpaud\sound\projects\Vmp6036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007531E, ) FILE "helpaud\sound\projects\Vmp6037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075320, ) FILE "helpaud\sound\projects\Vmp6039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075321, ) FILE "helpaud\sound\projects\Vmp6040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075322, ) FILE "helpaud\sound\projects\Vmp6041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075323, ) FILE "helpaud\sound\projects\Vmp6042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075324, ) FILE "helpaud\sound\projects\Vmp6043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075325, ) FILE "helpaud\sound\projects\Vmp6044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075327, ) FILE "helpaud\sound\projects\Vmp6046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075329, ) FILE "helpaud\sound\projects\Vmp6048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007532C, ) FILE "helpaud\sound\projects\Vmp6049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007532E, ) FILE "helpaud\sound\projects\Vmp6043A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007532F, ) FILE "helpaud\sound\projects\Vmp6043b.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075330, ) FILE "helpaud\sound\projects\Vmp5047a.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075331, ) FILE "helpaud\sound\projects\Vmp5002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075332, ) FILE "helpaud\sound\projects\Vmp5003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075335, ) FILE "helpaud\sound\projects\Vmp5004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075336, ) FILE "helpaud\sound\projects\Vmp5005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075337, ) FILE "helpaud\sound\projects\Vmp5006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075339, ) FILE "helpaud\sound\projects\Vmp5008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533A, ) FILE "helpaud\sound\projects\Vmp5009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533B, ) FILE "helpaud\sound\projects\Vmp5010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533C, ) FILE "helpaud\sound\projects\Vmp5011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533D, ) FILE "helpaud\sound\projects\Vmp5012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533E, ) FILE "helpaud\sound\projects\Vmp5013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007533F, ) FILE "helpaud\sound\projects\Vmp5014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075340, ) FILE "helpaud\sound\projects\Vmp5015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075341, ) FILE "helpaud\sound\projects\Vmp5016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075342, ) FILE "helpaud\sound\projects\Vmp5017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075343, ) FILE "helpaud\sound\projects\Vmp5018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075344, ) FILE "helpaud\sound\projects\Vmp5019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075346, ) FILE "helpaud\sound\projects\Vmp5020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075347, ) FILE "helpaud\sound\projects\Vmp5021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075348, ) FILE "helpaud\sound\projects\Vmp5022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075349, ) FILE "helpaud\sound\projects\Vmp5023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534A, ) FILE "helpaud\sound\projects\Vmp5024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534C, ) FILE "helpaud\sound\projects\Vmp5025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534D, ) FILE "helpaud\sound\projects\Vmp5026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534E, ) FILE "helpaud\sound\projects\Vmp5027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007534F, ) FILE "helpaud\sound\projects\Vmp5028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075350, ) FILE "helpaud\sound\projects\Vmp5029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075351, ) FILE "helpaud\sound\projects\Vmp5030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075352, ) FILE "helpaud\sound\projects\Vmp5031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075354, ) FILE "helpaud\sound\projects\Vmp5032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075356, ) FILE "helpaud\sound\projects\Vmp5033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075357, ) FILE "helpaud\sound\projects\Vmp5034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075358, ) FILE "helpaud\sound\projects\Vmp5035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075359, ) FILE "helpaud\sound\projects\Vmp5036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535A, ) FILE "helpaud\sound\projects\Vmp5037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535B, ) FILE "helpaud\sound\projects\Vmp5038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535D, ) FILE "helpaud\sound\projects\Vmp5039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535E, ) FILE "helpaud\sound\projects\Vmp5040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007535F, ) FILE "helpaud\sound\projects\Vmp5041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075360, ) FILE "helpaud\sound\projects\Vmp5042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075361, ) FILE "helpaud\sound\projects\Vmp5043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075362, ) FILE "helpaud\sound\projects\Vmp5044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075363, ) FILE "helpaud\sound\projects\Vmp5045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075364, ) FILE "helpaud\sound\projects\Vmp5046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075366, ) FILE "helpaud\sound\projects\Vmp5047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075367, ) FILE "helpaud\sound\projects\Vmp5048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075368, ) FILE "helpaud\sound\projects\Vmp5049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075369, ) FILE "helpaud\sound\projects\Vmp5050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007536C, ) FILE "helpaud\sound\projects\Vmp5051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007536D, ) FILE "helpaud\sound\projects\Vmp5052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007536E, ) FILE "helpaud\sound\projects\Vmp5053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075370, ) FILE "helpaud\sound\projects\Vmp5054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075381, ) FILE "helpaud\sound\projects\Vmp5055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075382, ) FILE "helpaud\sound\projects\Vmp5056.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075383, ) FILE "helpaud\sound\projects\Vmp5057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075385, ) FILE "helpaud\sound\projects\Vmp5058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075386, ) FILE "helpaud\sound\projects\Vmp5059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075387, ) FILE "helpaud\sound\projects\Vmp5060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075388, ) FILE "helpaud\sound\projects\Vmp5061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075389, ) FILE "helpaud\sound\projects\Vmp5062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538B, ) FILE "helpaud\sound\projects\Vmp5063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538C, ) FILE "helpaud\sound\projects\Vmp5064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538D, ) FILE "helpaud\sound\projects\Vmp5065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007538F, ) FILE "helpaud\sound\projects\Vmp5067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075390, ) FILE "helpaud\sound\projects\Vmp5068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075391, ) FILE "helpaud\sound\projects\Vmp5048.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075441, ) FILE "helpaud\sound\projects\Vmp4002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075442, ) FILE "helpaud\sound\projects\Vmp4003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075445, ) FILE "helpaud\sound\projects\Vmp4004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075446, ) FILE "helpaud\sound\projects\Vmp4005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075447, ) FILE "helpaud\sound\projects\Vmp4006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075448, ) FILE "helpaud\sound\projects\Vmp4007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075449, ) FILE "helpaud\sound\projects\Vmp4008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544B, ) FILE "helpaud\sound\projects\Vmp4010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544D, ) FILE "helpaud\sound\projects\Vmp4011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544E, ) FILE "helpaud\sound\projects\Vmp4012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007544F, ) FILE "helpaud\sound\projects\Vmp4013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075450, ) FILE "helpaud\sound\projects\Vmp4014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075451, ) FILE "helpaud\sound\projects\Vmp4015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075452, ) FILE "helpaud\sound\projects\Vmp4016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075453, ) FILE "helpaud\sound\projects\Vmp4017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075454, ) FILE "helpaud\sound\projects\Vmp4018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075455, ) FILE "helpaud\sound\projects\Vmp4019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075456, ) FILE "helpaud\sound\projects\Vmp4020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075458, ) FILE "helpaud\sound\projects\Vmp4021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075459, ) FILE "helpaud\sound\projects\Vmp4022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545A, ) FILE "helpaud\sound\projects\Vmp4023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545B, ) FILE "helpaud\sound\projects\Vmp4024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545C, ) FILE "helpaud\sound\projects\Vmp4025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545D, ) FILE "helpaud\sound\projects\Vmp4026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007545F, ) FILE "helpaud\sound\projects\Vmp4027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075460, ) FILE "helpaud\sound\projects\Vmp4028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075461, ) FILE "helpaud\sound\projects\Vmp4029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075464, ) FILE "helpaud\sound\projects\Vmp4030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075465, ) FILE "helpaud\sound\projects\Vmp4031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075466, ) FILE "helpaud\sound\projects\Vmp4032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075468, ) FILE "helpaud\sound\projects\Vmp4033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075469, ) FILE "helpaud\sound\projects\Vmp4034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546A, ) FILE "helpaud\sound\projects\Vmp4037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546B, ) FILE "helpaud\sound\projects\Vmp4038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546C, ) FILE "helpaud\sound\projects\Vmp4039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007546D, ) FILE "helpaud\sound\projects\Vmp4040.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000750B0, ) FILE "helpaud\sound\projects\VMPA001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750B1, ) FILE "helpaud\sound\projects\VMPA002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750B2, ) FILE "helpaud\sound\projects\VZA001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750B4, ) FILE "helpaud\sound\projects\VMPA002.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000750CB, ) FILE "helpaud\sound\projects\VMK010.WAV" ENDCHUNK -#line 20 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" -#line 1 "H:\\BUILD\\SOC\\src\\helpaud\\wchowto.cht" - - -CHUNK( 'WAVE', 0x00075030, ) FILE "helpaud\sound\howto\VZH2001.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075031, ) FILE "helpaud\sound\howto\VZH2002.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075032, ) FILE "helpaud\sound\howto\VZH2003.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075033, ) FILE "helpaud\sound\howto\VZH2004.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075034, ) FILE "helpaud\sound\howto\VZH2005.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075035, ) FILE "helpaud\sound\howto\VZH2006.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075036, ) FILE "helpaud\sound\howto\VZH2007.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075037, ) FILE "helpaud\sound\howto\VZH2008.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075038, ) FILE "helpaud\sound\howto\VZH2009.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075039, ) FILE "helpaud\sound\howto\VZH2010.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503A, ) FILE "helpaud\sound\howto\VZH2011.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503B, ) FILE "helpaud\sound\howto\VZH2012.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503C, ) FILE "helpaud\sound\howto\VZH2013.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503D, ) FILE "helpaud\sound\howto\VZH2014.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007503F, ) FILE "helpaud\sound\howto\VZH2015.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075040, ) FILE "helpaud\sound\howto\VZH2016.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075041, ) FILE "helpaud\sound\howto\VZH2017.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075042, ) FILE "helpaud\sound\howto\VZH2018.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075043, ) FILE "helpaud\sound\howto\VZH2019.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075044, ) FILE "helpaud\sound\howto\VZH2020.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075045, ) FILE "helpaud\sound\howto\VZH2021.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075046, ) FILE "helpaud\sound\howto\VZH2022.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075047, ) FILE "helpaud\sound\howto\VZH2023.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075048, ) FILE "helpaud\sound\howto\VZH2024.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075049, ) FILE "helpaud\sound\howto\VZH2025.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504A, ) FILE "helpaud\sound\howto\VZH2026.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504B, ) FILE "helpaud\sound\howto\VZH2027.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504C, ) FILE "helpaud\sound\howto\VZH2028.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504D, ) FILE "helpaud\sound\howto\VZH2029.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504E, ) FILE "helpaud\sound\howto\VZH2030.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007504F, ) FILE "helpaud\sound\howto\VZH2031.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075050, ) FILE "helpaud\sound\howto\VZH2032.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075051, ) FILE "helpaud\sound\howto\VZH2033.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075052, ) FILE "helpaud\sound\howto\VZH2034.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075053, ) FILE "helpaud\sound\howto\VZH2035.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075054, ) FILE "helpaud\sound\howto\VZH2036.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075055, ) FILE "helpaud\sound\howto\VZH2037.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075056, ) FILE "helpaud\sound\howto\VZH2038.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075057, ) FILE "helpaud\sound\howto\VZH2039.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075059, ) FILE "helpaud\sound\howto\VZH2040.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007505A, ) FILE "helpaud\sound\howto\VZH2041.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007505B, ) FILE "helpaud\sound\howto\VZH2042.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075068, ) FILE "helpaud\sound\howto\VZH2003A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075069, ) FILE "helpaud\sound\howto\VZH2252.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506A, ) FILE "helpaud\sound\howto\VZH2253.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506B, ) FILE "helpaud\sound\howto\VZH2254.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506C, ) FILE "helpaud\sound\howto\VZH2255.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506D, ) FILE "helpaud\sound\howto\VZH2256.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506E, ) FILE "helpaud\sound\howto\VZH2257.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007506F, ) FILE "helpaud\sound\howto\VZH2258.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075070, ) FILE "helpaud\sound\howto\VZH2004A.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x000750D0, ) FILE "helpaud\sound\howto\VZH2043.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D1, ) FILE "helpaud\sound\howto\VZH2044.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D2, ) FILE "helpaud\sound\howto\VZH2045.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D3, ) FILE "helpaud\sound\howto\VZH2046.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D4, ) FILE "helpaud\sound\howto\VZH2047.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D5, ) FILE "helpaud\sound\howto\VZH2048.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D6, ) FILE "helpaud\sound\howto\VZH2049.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D7, ) FILE "helpaud\sound\howto\VZH2050.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D8, ) FILE "helpaud\sound\howto\VZH2051.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750D9, ) FILE "helpaud\sound\howto\VZH2052.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750DB, ) FILE "helpaud\sound\howto\VZH2053.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750DC, ) FILE "helpaud\sound\howto\VZH2054.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750DD, ) FILE "helpaud\sound\howto\VZH2055.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E1, ) FILE "helpaud\sound\howto\VZH2057.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E2, ) FILE "helpaud\sound\howto\VZH2058.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E3, ) FILE "helpaud\sound\howto\VZH2059.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E4, ) FILE "helpaud\sound\howto\VZH2060.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E5, ) FILE "helpaud\sound\howto\VZH2061.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E6, ) FILE "helpaud\sound\howto\VZH2062.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E7, ) FILE "helpaud\sound\howto\VZH2063.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E8, ) FILE "helpaud\sound\howto\VZH2064.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750E9, ) FILE "helpaud\sound\howto\VZH2065.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EB, ) FILE "helpaud\sound\howto\VZH2075.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EC, ) FILE "helpaud\sound\howto\VZH2067.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750ED, ) FILE "helpaud\sound\howto\VZH2068.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EE, ) FILE "helpaud\sound\howto\VZH2069.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750EF, ) FILE "helpaud\sound\howto\VZH2070.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F0, ) FILE "helpaud\sound\howto\VZH2071.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F1, ) FILE "helpaud\sound\howto\VZH2072.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F2, ) FILE "helpaud\sound\howto\VZH2073.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F3, ) FILE "helpaud\sound\howto\VZH2074.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F4, ) FILE "helpaud\sound\howto\VZH2075.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750F5, ) FILE "helpaud\sound\howto\VZH2076.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750FA, ) FILE "helpaud\sound\howto\VZH2077.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750FB, ) FILE "helpaud\sound\howto\VZH2079.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000750FC, ) FILE "helpaud\sound\howto\VZH2080.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075100, ) FILE "helpaud\sound\howto\VZH2081.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075101, ) FILE "helpaud\sound\howto\VZH2082.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075102, ) FILE "helpaud\sound\howto\VZH2083.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075103, ) FILE "helpaud\sound\howto\VZH2084.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075104, ) FILE "helpaud\sound\howto\VZH2085.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075105, ) FILE "helpaud\sound\howto\VZH2086.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075106, ) FILE "helpaud\sound\howto\VZH2087.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075107, ) FILE "helpaud\sound\howto\VZH2088.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075108, ) FILE "helpaud\sound\howto\VZH2089.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075109, ) FILE "helpaud\sound\howto\VZH2090.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510A, ) FILE "helpaud\sound\howto\VZH2091.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510B, ) FILE "helpaud\sound\howto\VZH2092.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510C, ) FILE "helpaud\sound\howto\VZH2093.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510D, ) FILE "helpaud\sound\howto\VZH2094.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510E, ) FILE "helpaud\sound\howto\VZH2095.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007510F, ) FILE "helpaud\sound\howto\VZH2096.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075110, ) FILE "helpaud\sound\howto\VZH2097.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075111, ) FILE "helpaud\sound\howto\VZH2098.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075112, ) FILE "helpaud\sound\howto\VZH2099.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075113, ) FILE "helpaud\sound\howto\VZH2100.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075114, ) FILE "helpaud\sound\howto\VZH2101.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075115, ) FILE "helpaud\sound\howto\VZH2102.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075116, ) FILE "helpaud\sound\howto\VZH2103.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075117, ) FILE "helpaud\sound\howto\VZH2104.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075118, ) FILE "helpaud\sound\howto\VZH2105.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075119, ) FILE "helpaud\sound\howto\VZH2106.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511A, ) FILE "helpaud\sound\howto\VZH2107.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511B, ) FILE "helpaud\sound\howto\VZH2108.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511C, ) FILE "helpaud\sound\howto\VZH2109.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511D, ) FILE "helpaud\sound\howto\VZH2110.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511E, ) FILE "helpaud\sound\howto\VZH2111.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007511F, ) FILE "helpaud\sound\howto\VZH2112.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075120, ) FILE "helpaud\sound\howto\VZH2113.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075121, ) FILE "helpaud\sound\howto\VZH2114.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075122, ) FILE "helpaud\sound\howto\VZH2115.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075123, ) FILE "helpaud\sound\howto\VZH2116.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075124, ) FILE "helpaud\sound\howto\VZH2117.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075125, ) FILE "helpaud\sound\howto\VZH2118.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075126, ) FILE "helpaud\sound\howto\VZH2119.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075127, ) FILE "helpaud\sound\howto\VZH2120.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075128, ) FILE "helpaud\sound\howto\VZH2121.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075129, ) FILE "helpaud\sound\howto\VZH2122.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512A, ) FILE "helpaud\sound\howto\VZH2123.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512B, ) FILE "helpaud\sound\howto\VZH2124.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512C, ) FILE "helpaud\sound\howto\VZH2125.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512D, ) FILE "helpaud\sound\howto\VZH2126.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512E, ) FILE "helpaud\sound\howto\VZH2127.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007512F, ) FILE "helpaud\sound\howto\VZH2128.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075130, ) FILE "helpaud\sound\howto\VZH2129.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075131, ) FILE "helpaud\sound\howto\VZH2130.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075132, ) FILE "helpaud\sound\howto\VZH2131.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075133, ) FILE "helpaud\sound\howto\VZH2132.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075134, ) FILE "helpaud\sound\howto\VZH2133.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075135, ) FILE "helpaud\sound\howto\VZH2134.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075136, ) FILE "helpaud\sound\howto\VZH2135.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075137, ) FILE "helpaud\sound\howto\VZH2136.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075138, ) FILE "helpaud\sound\howto\VZH2137.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075139, ) FILE "helpaud\sound\howto\VZH2138.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513A, ) FILE "helpaud\sound\howto\VZH2139.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513B, ) FILE "helpaud\sound\howto\VZH2140.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513C, ) FILE "helpaud\sound\howto\VZH2141.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513D, ) FILE "helpaud\sound\howto\VZH2142.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513E, ) FILE "helpaud\sound\howto\VZH2143.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007513F, ) FILE "helpaud\sound\howto\VZH2144.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075140, ) FILE "helpaud\sound\howto\VZH2145.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075141, ) FILE "helpaud\sound\howto\VZH2146.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075142, ) FILE "helpaud\sound\howto\VZH2147.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075143, ) FILE "helpaud\sound\howto\VZH2148.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075144, ) FILE "helpaud\sound\howto\VZH2149.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075145, ) FILE "helpaud\sound\howto\VZH2150.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075147, ) FILE "helpaud\sound\howto\VZH2151.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075161, ) FILE "helpaud\sound\howto\VZH2078.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075200, ) FILE "helpaud\sound\howto\VZH2152.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075201, ) FILE "helpaud\sound\howto\VZH2153.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075203, ) FILE "helpaud\sound\howto\VZH2154.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075204, ) FILE "helpaud\sound\howto\VZH2155.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075205, ) FILE "helpaud\sound\howto\VZH2156.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075207, ) FILE "helpaud\sound\howto\VZH2157.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075208, ) FILE "helpaud\sound\howto\VZH2158.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075209, ) FILE "helpaud\sound\howto\VZH2159.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520B, ) FILE "helpaud\sound\howto\VZH2160.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520C, ) FILE "helpaud\sound\howto\VZH2161.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520D, ) FILE "helpaud\sound\howto\VZH2162.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520E, ) FILE "helpaud\sound\howto\VZH2163.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007520F, ) FILE "helpaud\sound\howto\VZH2164.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075210, ) FILE "helpaud\sound\howto\VZH2165.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075211, ) FILE "helpaud\sound\howto\VZH2166.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075212, ) FILE "helpaud\sound\howto\VZH2167.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075213, ) FILE "helpaud\sound\howto\VZH2168.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075214, ) FILE "helpaud\sound\howto\VZH2169.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075215, ) FILE "helpaud\sound\howto\VZH2170.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075216, ) FILE "helpaud\sound\howto\VZH2171.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075217, ) FILE "helpaud\sound\howto\VZH2172.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075218, ) FILE "helpaud\sound\howto\VZH2173.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075219, ) FILE "helpaud\sound\howto\VZH2174.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521A, ) FILE "helpaud\sound\howto\VZH2175.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521C, ) FILE "helpaud\sound\howto\VZH2176.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521D, ) FILE "helpaud\sound\howto\VZH2177.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521E, ) FILE "helpaud\sound\howto\VZH2178.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007521F, ) FILE "helpaud\sound\howto\VZH2179.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075220, ) FILE "helpaud\sound\howto\VZH2180.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075221, ) FILE "helpaud\sound\howto\VZH2181.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075222, ) FILE "helpaud\sound\howto\VZH2182.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075223, ) FILE "helpaud\sound\howto\VZH2183.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075224, ) FILE "helpaud\sound\howto\VZH2184.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075225, ) FILE "helpaud\sound\howto\VZH2185.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075226, ) FILE "helpaud\sound\howto\VZH2186.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075234, ) FILE "helpaud\sound\howto\VZH2259.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075235, ) FILE "helpaud\sound\howto\VZH2260.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075236, ) FILE "helpaud\sound\howto\VZH2261.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075237, ) FILE "helpaud\sound\howto\VZH2262.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075238, ) FILE "helpaud\sound\howto\VZH2165a.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075239, ) FILE "helpaud\sound\howto\VZH2168a.WAV" ENDCHUNK - - -CHUNK( 'WAVE', 0x00075170, ) FILE "helpaud\sound\howto\VZH2187.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075171, ) FILE "helpaud\sound\howto\VZH2188.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075172, ) FILE "helpaud\sound\howto\VZH2189.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075173, ) FILE "helpaud\sound\howto\VZH2190.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075174, ) FILE "helpaud\sound\howto\VZH2191.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075175, ) FILE "helpaud\sound\howto\VZH2192.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075176, ) FILE "helpaud\sound\howto\VZH2193.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075177, ) FILE "helpaud\sound\howto\VZH2194.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075178, ) FILE "helpaud\sound\howto\VZH2195.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075179, ) FILE "helpaud\sound\howto\VZH2196.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517A, ) FILE "helpaud\sound\howto\VZH2197.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517B, ) FILE "helpaud\sound\howto\VZH2198.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517C, ) FILE "helpaud\sound\howto\VZH2199.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517D, ) FILE "helpaud\sound\howto\VZH2200.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517E, ) FILE "helpaud\sound\howto\VZH2201.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007517F, ) FILE "helpaud\sound\howto\VZH2202.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075180, ) FILE "helpaud\sound\howto\VZH2203.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075181, ) FILE "helpaud\sound\howto\VZH2204.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075182, ) FILE "helpaud\sound\howto\VZH2205.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075183, ) FILE "helpaud\sound\howto\VZH2206.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075184, ) FILE "helpaud\sound\howto\VZH2207.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075185, ) FILE "helpaud\sound\howto\VZH2208.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075186, ) FILE "helpaud\sound\howto\VZH2209.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075187, ) FILE "helpaud\sound\howto\VZH2210.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075188, ) FILE "helpaud\sound\howto\VZH2211.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075189, ) FILE "helpaud\sound\howto\VZH2212.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518A, ) FILE "helpaud\sound\howto\VZH2213.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518B, ) FILE "helpaud\sound\howto\VZH2214.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518C, ) FILE "helpaud\sound\howto\VZH2215.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518D, ) FILE "helpaud\sound\howto\VZH2216.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518E, ) FILE "helpaud\sound\howto\VZH2217.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007518F, ) FILE "helpaud\sound\howto\VZH2218.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075190, ) FILE "helpaud\sound\howto\VZH2219.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075191, ) FILE "helpaud\sound\howto\VZH2220.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075192, ) FILE "helpaud\sound\howto\VZH2221.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075193, ) FILE "helpaud\sound\howto\VZH2222.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075194, ) FILE "helpaud\sound\howto\VZH2223.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075195, ) FILE "helpaud\sound\howto\VZH2224.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075196, ) FILE "helpaud\sound\howto\VZH2225.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075197, ) FILE "helpaud\sound\howto\VZH2226.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075198, ) FILE "helpaud\sound\howto\VZH2233A.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00075199, ) FILE "helpaud\sound\howto\VZH2227.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519A, ) FILE "helpaud\sound\howto\VZH2228.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519B, ) FILE "helpaud\sound\howto\VZH2229.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519C, ) FILE "helpaud\sound\howto\VZH2230.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519D, ) FILE "helpaud\sound\howto\VZH2231.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519E, ) FILE "helpaud\sound\howto\VZH2232.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x0007519F, ) FILE "helpaud\sound\howto\VZH2233.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A0, ) FILE "helpaud\sound\howto\VZH2234.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A1, ) FILE "helpaud\sound\howto\VZH2235.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A2, ) FILE "helpaud\sound\howto\VZH2236.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A3, ) FILE "helpaud\sound\howto\VZH2237.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A4, ) FILE "helpaud\sound\howto\VZH2238.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A5, ) FILE "helpaud\sound\howto\VZH2239.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A6, ) FILE "helpaud\sound\howto\VZH2240.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A7, ) FILE "helpaud\sound\howto\VZH2241.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A8, ) FILE "helpaud\sound\howto\VZH2242.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751A9, ) FILE "helpaud\sound\howto\VZH2243.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AA, ) FILE "helpaud\sound\howto\VZH2244.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AB, ) FILE "helpaud\sound\howto\VZH2245.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AC, ) FILE "helpaud\sound\howto\VZH2246.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AD, ) FILE "helpaud\sound\howto\VZH2247.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AE, ) FILE "helpaud\sound\howto\VZH2248.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751AF, ) FILE "helpaud\sound\howto\VZH2249.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751B0, ) FILE "helpaud\sound\howto\VZH2250.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x000751B1, ) FILE "helpaud\sound\howto\VZH2251.WAV" ENDCHUNK -#line 21 "H:\\BUILD\\SOC\\src\\helpaud\\helpaud.cht" - - diff --git a/OBJ/WINS/MKTMAP.MAP b/OBJ/WINS/MKTMAP.MAP deleted file mode 100644 index 5926de8e..00000000 --- a/OBJ/WINS/MKTMAP.MAP +++ /dev/null @@ -1,646 +0,0 @@ - mktmap - - Timestamp is 3078e483 (Mon Oct 09 01:59:47 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0000e1f2H .text CODE - 0002:00000000 000019b0H .bss DATA - 0003:00000000 00000311H .rdata DATA - 0004:00000000 00001040H .data DATA - 0004:00001040 00000004H .CRT$XCA DATA - 0004:00001044 0000005cH .CRT$XCU DATA - 0004:000010a0 00000004H .CRT$XCZ DATA - 0004:000010a4 00000004H .CRT$XIA DATA - 0004:000010a8 00000004H .CRT$XIC DATA - 0004:000010ac 00000004H .CRT$XIZ DATA - 0004:000010b0 00000004H .CRT$XPA DATA - 0004:000010b4 00000004H .CRT$XPX DATA - 0004:000010b8 00000004H .CRT$XPZ DATA - 0004:000010bc 00000004H .CRT$XTA DATA - 0004:000010c0 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000a4H .idata$4 DATA - 0005:00000108 000000a4H .idata$5 DATA - 0005:000001ac 000002aeH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00001690H .debug$F DATA - 0007:00001b70 00000000H .debug$G DATA - 0007:00001b70 00000031H .debug$H DATA - 0007:fffe9000 00000000H .debug$P DATA - 0007:fffe9000 00000000H .debug$S DATA - 0007:fffe9000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 _main 00401000 f mktmap.obj - 0001:00000290 ?FWouldBe@USAC@@SGHJ@Z 00401290 f utilglob.obj - 0001:000002b0 ?FIs@USAC@@UAEHJ@Z 004012b0 f utilglob.obj - 0001:000002c0 ?Cls@USAC@@UAEJXZ 004012c0 f utilglob.obj - 0001:00000390 ??_GBASE@@UAEPAXI@Z 00401390 f utilglob.obj - 0001:00000390 ??_EBASE@@UAEPAXI@Z 00401390 f utilglob.obj - 0001:000003c0 ??_GKCDC@@UAEPAXI@Z 004013c0 f utilglob.obj - 0001:000003c0 ??_EKCDC@@UAEPAXI@Z 004013c0 f utilglob.obj - 0001:000003e0 ?FCanDo@KCDC@@UAEHHJ@Z 004013e0 f utilglob.obj - 0001:00000420 ?FWouldBe@BLL@@SGHJ@Z 00401420 f base.obj - 0001:00000440 ?FIs@BLL@@UAEHJ@Z 00401440 f base.obj - 0001:00000450 ?Cls@BLL@@UAEJXZ 00401450 f base.obj - 0001:00000460 ?Cls@BASE@@UAEJXZ 00401460 f base.obj - 0001:00000470 ?FIs@BASE@@UAEHJ@Z 00401470 f base.obj - 0001:00000490 ?FWouldBe@BASE@@SGHJ@Z 00401490 f base.obj - 0001:000004b0 ??0BASE@@QAE@XZ 004014b0 f base.obj - 0001:000004c0 ?AddRef@BASE@@UAEXXZ 004014c0 f base.obj - 0001:000004d0 ?Release@BASE@@UAEXXZ 004014d0 f base.obj - 0001:000004f0 ??2BASE@@SGPAXI@Z 004014f0 f base.obj - 0001:00000520 ??3BASE@@SGXPAX@Z 00401520 f base.obj - 0001:00000530 ??0BLL@@QAE@XZ 00401530 f base.obj - 0001:00000550 ??1BLL@@UAE@XZ 00401550 f base.obj - 0001:00000570 ?_Attach@BLL@@IAEXPAX@Z 00401570 f base.obj - 0001:000005e0 ??_EBLL@@UAEPAXI@Z 004015e0 f base.obj - 0001:000005e0 ??_GBLL@@UAEPAXI@Z 004015e0 f base.obj - 0001:00000600 ?FillPb@@YGXPAXJE@Z 00401600 f utilcopy.obj - 0001:00000640 ?ClearPb@@YGXPAXJ@Z 00401640 f utilcopy.obj - 0001:00000670 ?FEqualRgb@@YGHPAX0J@Z 00401670 f utilcopy.obj - 0001:000006b0 ?CbEqualRgb@@YGJPAX0J@Z 004016b0 f utilcopy.obj - 0001:00000710 ?CopyPb@@YGXPAX0J@Z 00401710 f utilcopy.obj - 0001:00000740 ?BltPb@@YGXPAX0J@Z 00401740 f utilcopy.obj - 0001:000007b0 ?FWouldBe@ERS@@SGHJ@Z 004017b0 f utilerro.obj - 0001:000007d0 ?FIs@ERS@@UAEHJ@Z 004017d0 f utilerro.obj - 0001:000007e0 ?Cls@ERS@@UAEJXZ 004017e0 f utilerro.obj - 0001:000007f0 ??0ERS@@QAE@XZ 004017f0 f utilerro.obj - 0001:00000820 ?Push@ERS@@UAEXJ@Z 00401820 f utilerro.obj - 0001:00000870 ?FPop@ERS@@UAEHPAJ@Z 00401870 f utilerro.obj - 0001:000008c0 ?Clear@ERS@@UAEXXZ 004018c0 f utilerro.obj - 0001:000008e0 ?Cerc@ERS@@UAEJXZ 004018e0 f utilerro.obj - 0001:000008f0 ?FIn@ERS@@UAEHJ@Z 004018f0 f utilerro.obj - 0001:00000940 ?ErcGet@ERS@@UAEJJ@Z 00401940 f utilerro.obj - 0001:00000980 ?Flush@ERS@@UAEXJ@Z 00401980 f utilerro.obj - 0001:00000a20 ??_GERS@@UAEPAXI@Z 00401a20 f utilerro.obj - 0001:00000a20 ??_EERS@@UAEPAXI@Z 00401a20 f utilerro.obj - 0001:00000a50 ?LwRoundAway@@YGJJJ@Z 00401a50 f utilint.obj - 0001:00000a90 ?SwapBytesBom@@YGXPAXK@Z 00401a90 f utilint.obj - 0001:00000af0 ?SwapBytesRglw@@YGXPAXJ@Z 00401af0 f utilint.obj - 0001:00000b20 ??0USAC@@QAE@XZ 00401b20 f utilint.obj - 0001:00000b60 ??_GUSAC@@UAEPAXI@Z 00401b60 f utilint.obj - 0001:00000b60 ??_EUSAC@@UAEPAXI@Z 00401b60 f utilint.obj - 0001:00000b80 ?FAllocPv@@YGHPAPAXJKJ@Z 00401b80 f utilmem.obj - 0001:00000c50 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00401c50 f utilmem.obj - 0001:00000d40 ?FreePpv@@YGXPAPAX@Z 00401d40 f utilmem.obj - 0001:00000d80 ?FWouldBe@RND@@SGHJ@Z 00401d80 f utilrnd.obj - 0001:00000da0 ?FIs@RND@@UAEHJ@Z 00401da0 f utilrnd.obj - 0001:00000db0 ?Cls@RND@@UAEJXZ 00401db0 f utilrnd.obj - 0001:00000dc0 ?FWouldBe@SFL@@SGHJ@Z 00401dc0 f utilrnd.obj - 0001:00000de0 ?FIs@SFL@@UAEHJ@Z 00401de0 f utilrnd.obj - 0001:00000df0 ?Cls@SFL@@UAEJXZ 00401df0 f utilrnd.obj - 0001:00000e00 ??0RND@@QAE@K@Z 00401e00 f utilrnd.obj - 0001:00000e40 ?LwNext@RND@@UAEJJ@Z 00401e40 f utilrnd.obj - 0001:00000e70 ??0SFL@@QAE@K@Z 00401e70 f utilrnd.obj - 0001:00000ea0 ??1SFL@@UAE@XZ 00401ea0 f utilrnd.obj - 0001:00000ec0 ?Shuffle@SFL@@QAEXJ@Z 00401ec0 f utilrnd.obj - 0001:00000f00 ?_ShuffleCore@SFL@@IAEXXZ 00401f00 f utilrnd.obj - 0001:00000f50 ?_FEnsureHq@SFL@@IAEHJ@Z 00401f50 f utilrnd.obj - 0001:00000fc0 ?LwNext@SFL@@UAEJJ@Z 00401fc0 f utilrnd.obj - 0001:00001050 ??_ERND@@UAEPAXI@Z 00402050 f utilrnd.obj - 0001:00001050 ??_GRND@@UAEPAXI@Z 00402050 f utilrnd.obj - 0001:00001070 ??_ESFL@@UAEPAXI@Z 00402070 f utilrnd.obj - 0001:00001070 ??_GSFL@@UAEPAXI@Z 00402070 f utilrnd.obj - 0001:00001090 ??4STN@@QAEAAV0@AAV0@@Z 00402090 f utilstr.obj - 0001:000010b0 ?SetRgch@STN@@QAEXPADJ@Z 004020b0 f utilstr.obj - 0001:000010f0 ?SetSzs@STN@@QAEXPAD@Z 004020f0 f utilstr.obj - 0001:00001110 ?Delete@STN@@QAEXJJ@Z 00402110 f utilstr.obj - 0001:00001170 ?FAppendRgch@STN@@QAEHPADJ@Z 00402170 f utilstr.obj - 0001:000011c0 ?FInsertRgch@STN@@QAEHJPADJ@Z 004021c0 f utilstr.obj - 0001:00001280 ?FEqualRgch@STN@@QAEHPADJ@Z 00402280 f utilstr.obj - 0001:000012b0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 004022b0 f utilstr.obj - 0001:000012d0 ?FFormatSz@STN@@QAAHPADZZ 004022d0 f utilstr.obj - 0001:000012f0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004022f0 f utilstr.obj - 0001:00001670 ?CchSz@@YGJPAD@Z 00402670 f utilstr.obj - 0001:00001690 ?FEqualUserRgch@@YGHPADJ0JK@Z 00402690 f utilstr.obj - 0001:00001780 ?UpperRgchs@@YGXPADJ@Z 00402780 f utilstr.obj - 0001:000017f0 ?FAllocHq@@YGHPAPAXJKJ@Z 004027f0 f memwin.obj - 0001:00001860 ?FResizePhq@@YGHPAPAXJKJ@Z 00402860 f memwin.obj - 0001:00001900 ?FreePhq@@YGXPAPAX@Z 00402900 f memwin.obj - 0001:00001930 ?CbOfHq@@YGJPAX@Z 00402930 f memwin.obj - 0001:00001940 ?PvLockHq@@YGPAXPAX@Z 00402940 f memwin.obj - 0001:00001950 ?UnlockHq@@YGXPAX@Z 00402950 f memwin.obj - 0001:000019b0 ?FWouldBe@CODM@@SGHJ@Z 004029b0 f codec.obj - 0001:000019d0 ?FIs@CODM@@UAEHJ@Z 004029d0 f codec.obj - 0001:000019e0 ?Cls@CODM@@UAEJXZ 004029e0 f codec.obj - 0001:000019f0 ?FWouldBe@CODC@@SGHJ@Z 004029f0 f codec.obj - 0001:00001a10 ??0CODM@@QAE@PAVCODC@@J@Z 00402a10 f codec.obj - 0001:00001a50 ??1CODM@@UAE@XZ 00402a50 f codec.obj - 0001:00001ad0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00402ad0 f codec.obj - 0001:00001b20 ?FCanDo@CODM@@UAEHJH@Z 00402b20 f codec.obj - 0001:00001b50 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00402b50 f codec.obj - 0001:00001bd0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00402bd0 f codec.obj - 0001:00001c80 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00402c80 f codec.obj - 0001:00001da0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00402da0 f codec.obj - 0001:00001fb0 ??_ECODM@@UAEPAXI@Z 00402fb0 f codec.obj - 0001:00001fb0 ??_GCODM@@UAEPAXI@Z 00402fb0 f codec.obj - 0001:00001fd0 ?FWouldBe@KCDC@@SGHJ@Z 00402fd0 f codkauai.obj - 0001:00001ff0 ?FIs@KCDC@@UAEHJ@Z 00402ff0 f codkauai.obj - 0001:00002000 ?Cls@KCDC@@UAEJXZ 00403000 f codkauai.obj - 0001:00002010 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00403010 f codkauai.obj - 0001:00002090 ?Set@BITA@@QAEXPAXJ@Z 00403090 f codkauai.obj - 0001:000020b0 ?FWriteBits@BITA@@QAEHKJ@Z 004030b0 f codkauai.obj - 0001:00002170 ?FWriteLogEncoded@BITA@@QAEHK@Z 00403170 f codkauai.obj - 0001:000021c0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004031c0 f codkauai.obj - 0001:000024d0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 004034d0 f codkauai.obj - 0001:00005e00 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00406e00 f codkauai.obj - 0001:000061e0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 004071e0 f codkauai.obj - 0001:00008770 ?FWouldBe@BACO@@SGHJ@Z 00409770 f crf.obj - 0001:00008790 ?FIs@BACO@@UAEHJ@Z 00409790 f crf.obj - 0001:000087a0 ?Cls@BACO@@UAEJXZ 004097a0 f crf.obj - 0001:000087b0 ??0BACO@@IAE@XZ 004097b0 f crf.obj - 0001:000087e0 ??1BACO@@MAE@XZ 004097e0 f crf.obj - 0001:00008810 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00409810 f crf.obj - 0001:00008850 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00409850 f crf.obj - 0001:00008860 ?CbOnFile@BACO@@UAEJXZ 00409860 f crf.obj - 0001:00008870 ?Release@BACO@@UAEXXZ 00409870 f crf.obj - 0001:000088c0 ?Detach@BACO@@UAEXXZ 004098c0 f crf.obj - 0001:00008900 ?SetCrep@BACO@@UAEXJ@Z 00409900 f crf.obj - 0001:00008930 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00409930 f crf.obj - 0001:00008980 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00409980 f crf.obj - 0001:00008a00 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00409a00 f crf.obj - 0001:00008b40 ??_GBACO@@MAEPAXI@Z 00409b40 f crf.obj - 0001:00008b40 ??_EBACO@@MAEPAXI@Z 00409b40 f crf.obj - 0001:00008b70 ?FWouldBe@FIL@@SGHJ@Z 00409b70 f file.obj - 0001:00008b90 ?FIs@FIL@@UAEHJ@Z 00409b90 f file.obj - 0001:00008ba0 ?Cls@FIL@@UAEJXZ 00409ba0 f file.obj - 0001:00008bb0 ?FWouldBe@BLCK@@SGHJ@Z 00409bb0 f file.obj - 0001:00008bd0 ?FIs@BLCK@@UAEHJ@Z 00409bd0 f file.obj - 0001:00008be0 ?Cls@BLCK@@UAEJXZ 00409be0 f file.obj - 0001:00008bf0 ??0FIL@@IAE@PAVFNI@@K@Z 00409bf0 f file.obj - 0001:00008c60 ??1FIL@@MAE@XZ 00409c60 f file.obj - 0001:00008cb0 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00409cb0 f file.obj - 0001:00008d50 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00409d50 f file.obj - 0001:00008de0 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00409de0 f file.obj - 0001:00008e70 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00409e70 f file.obj - 0001:00008ed0 ?FSetGrffil@FIL@@QAEHKK@Z 00409ed0 f file.obj - 0001:00008f60 ?Release@FIL@@UAEXXZ 00409f60 f file.obj - 0001:00008f90 ?SetTemp@FIL@@QAEXH@Z 00409f90 f file.obj - 0001:00008fd0 ?ShutDown@FIL@@SGXXZ 00409fd0 f file.obj - 0001:00009040 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0040a040 f file.obj - 0001:00009090 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0040a090 f file.obj - 0001:000090e0 ?FCopy@FLO@@QAEHPAU1@@Z 0040a0e0 f file.obj - 0001:000091b0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0040a1b0 f file.obj - 0001:00009230 ??0BLCK@@QAE@PAUFLO@@H@Z 0040a230 f file.obj - 0001:00009280 ??0BLCK@@QAE@XZ 0040a280 f file.obj - 0001:000092a0 ??1BLCK@@UAE@XZ 0040a2a0 f file.obj - 0001:000092c0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0040a2c0 f file.obj - 0001:00009300 ?SetHq@BLCK@@QAEXPAPAXH@Z 0040a300 f file.obj - 0001:00009340 ?Free@BLCK@@QAEXXZ 0040a340 f file.obj - 0001:00009370 ?HqFree@BLCK@@QAEPAXH@Z 0040a370 f file.obj - 0001:00009420 ?Cb@BLCK@@QAEJH@Z 0040a420 f file.obj - 0001:00009440 ?FSetTemp@BLCK@@QAEHJH@Z 0040a440 f file.obj - 0001:000094d0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0040a4d0 f file.obj - 0001:00009560 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0040a560 f file.obj - 0001:000095f0 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0040a5f0 f file.obj - 0001:00009670 ?FPackData@BLCK@@QAEHJ@Z 0040a670 f file.obj - 0001:000097c0 ??_GFIL@@MAEPAXI@Z 0040a7c0 f file.obj - 0001:000097c0 ??_EFIL@@MAEPAXI@Z 0040a7c0 f file.obj - 0001:000097e0 ??_GBLCK@@UAEPAXI@Z 0040a7e0 f file.obj - 0001:000097e0 ??_EBLCK@@UAEPAXI@Z 0040a7e0 f file.obj - 0001:00009850 ?_FOpen@FIL@@IAEHHK@Z 0040a850 f filewin.obj - 0001:00009950 ?_Close@FIL@@IAEXH@Z 0040a950 f filewin.obj - 0001:000099c0 ?Flush@FIL@@QAEXXZ 0040a9c0 f filewin.obj - 0001:000099f0 ?_SetFpPos@FIL@@IAEXJ@Z 0040a9f0 f filewin.obj - 0001:00009a60 ?FpMac@FIL@@QAEJXZ 0040aa60 f filewin.obj - 0001:00009af0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040aaf0 f filewin.obj - 0001:00009ba0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040aba0 f filewin.obj - 0001:00009c80 ?FWouldBe@FNI@@SGHJ@Z 0040ac80 f fniwin.obj - 0001:00009ca0 ?FIs@FNI@@UAEHJ@Z 0040aca0 f fniwin.obj - 0001:00009cb0 ?Cls@FNI@@UAEJXZ 0040acb0 f fniwin.obj - 0001:00009cc0 ?SetNil@FNI@@QAEXXZ 0040acc0 f fniwin.obj - 0001:00009cd0 ??0FNI@@QAE@XZ 0040acd0 f fniwin.obj - 0001:00009d00 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040ad00 f fniwin.obj - 0001:00009e50 ?FGetUnique@FNI@@QAEHJ@Z 0040ae50 f fniwin.obj - 0001:00009f60 ?FGetTemp@FNI@@QAEHXZ 0040af60 f fniwin.obj - 0001:0000a000 ?Ftg@FNI@@QAEJXZ 0040b000 f fniwin.obj - 0001:0000a010 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0040b010 f fniwin.obj - 0001:0000a080 ?FChangeFtg@FNI@@QAEHJ@Z 0040b080 f fniwin.obj - 0001:0000a130 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0040b130 f fniwin.obj - 0001:0000a170 ?TExists@FNI@@QAEHXZ 0040b170 f fniwin.obj - 0001:0000a270 ?FEqual@FNI@@QAEHPAV1@@Z 0040b270 f fniwin.obj - 0001:0000a290 ?_CchExt@FNI@@AAEJXZ 0040b290 f fniwin.obj - 0001:0000a2d0 ?_SetFtgFromName@FNI@@AAEXXZ 0040b2d0 f fniwin.obj - 0001:0000a350 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0040b350 f fniwin.obj - 0001:0000a4a0 ??_EFNI@@UAEPAXI@Z 0040b4a0 f fniwin.obj - 0001:0000a4a0 ??_GFNI@@UAEPAXI@Z 0040b4a0 f fniwin.obj - 0001:0000a4c0 ?FWouldBe@GRPB@@SGHJ@Z 0040b4c0 f groups.obj - 0001:0000a4e0 ?FIs@GRPB@@UAEHJ@Z 0040b4e0 f groups.obj - 0001:0000a4f0 ?Cls@GRPB@@UAEJXZ 0040b4f0 f groups.obj - 0001:0000a500 ?FWouldBe@GLB@@SGHJ@Z 0040b500 f groups.obj - 0001:0000a520 ?FIs@GLB@@UAEHJ@Z 0040b520 f groups.obj - 0001:0000a530 ?Cls@GLB@@UAEJXZ 0040b530 f groups.obj - 0001:0000a540 ?FWouldBe@GL@@SGHJ@Z 0040b540 f groups.obj - 0001:0000a560 ?FIs@GL@@UAEHJ@Z 0040b560 f groups.obj - 0001:0000a570 ?Cls@GL@@UAEJXZ 0040b570 f groups.obj - 0001:0000a580 ??1GRPB@@UAE@XZ 0040b580 f groups.obj - 0001:0000a5b0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0040b5b0 f groups.obj - 0001:0000a690 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0040b690 f groups.obj - 0001:0000a760 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0040b760 f groups.obj - 0001:0000a7b0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0040b7b0 f groups.obj - 0001:0000a880 ??0GLB@@IAE@J@Z 0040b880 f groups.obj - 0001:0000a8b0 ?QvGet@GLB@@QAEPAXJ@Z 0040b8b0 f groups.obj - 0001:0000a8d0 ?Get@GLB@@QAEXJPAX@Z 0040b8d0 f groups.obj - 0001:0000a8f0 ?Put@GLB@@QAEXJPAX@Z 0040b8f0 f groups.obj - 0001:0000a910 ?PvLock@GLB@@QAEPAXJ@Z 0040b910 f groups.obj - 0001:0000a930 ?PglNew@GL@@SGPAV1@JJ@Z 0040b930 f groups.obj - 0001:0000a990 ??0GL@@IAE@J@Z 0040b990 f groups.obj - 0001:0000a9b0 ?FFree@GL@@UAEHJ@Z 0040b9b0 f groups.obj - 0001:0000a9d0 ?CbOnFile@GL@@UAEJXZ 0040b9d0 f groups.obj - 0001:0000a9e0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0040b9e0 f groups.obj - 0001:0000aa50 ?FInsert@GL@@QAEHJPAXJ@Z 0040ba50 f groups.obj - 0001:0000aaf0 ?Delete@GL@@UAEXJ@Z 0040baf0 f groups.obj - 0001:0000ab00 ?Delete@GL@@QAEXJJ@Z 0040bb00 f groups.obj - 0001:0000ab40 ?FAdd@GL@@UAEHPAXPAJ@Z 0040bb40 f groups.obj - 0001:0000ab70 ?FSetIvMac@GL@@QAEHJ@Z 0040bb70 f groups.obj - 0001:0000abc0 ?FEnsureSpace@GL@@QAEHJK@Z 0040bbc0 f groups.obj - 0001:0000ac10 ??_EGRPB@@UAEPAXI@Z 0040bc10 f groups.obj - 0001:0000ac10 ??_GGRPB@@UAEPAXI@Z 0040bc10 f groups.obj - 0001:0000ac30 ??_GGLB@@UAEPAXI@Z 0040bc30 f groups.obj - 0001:0000ac30 ??_EGLB@@UAEPAXI@Z 0040bc30 f groups.obj - 0001:0000ac50 ??_EGL@@UAEPAXI@Z 0040bc50 f groups.obj - 0001:0000ac50 ??_GGL@@UAEPAXI@Z 0040bc50 f groups.obj - 0001:0000aca0 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0040bca0 f mbmp.obj - 0001:0000b1e0 ??0MSSIO@@QAE@PAU_iobuf@@@Z 0040c1e0 f mssio.obj - 0001:0000b210 ?ReportLine@MSSIO@@UAEXPAD@Z 0040c210 f mssio.obj - 0001:0000b240 ?Report@MSSIO@@UAEXPAD@Z 0040c240 f mssio.obj - 0001:0000b270 ?FError@MSSIO@@UAEHXZ 0040c270 f mssio.obj - 0001:0000b290 ??_EMSSIO@@UAEPAXI@Z 0040c290 f mssio.obj - 0001:0000b290 ??_GMSSIO@@UAEPAXI@Z 0040c290 f mssio.obj - 0001:0000b2c0 ?FIs@MSNK@@UAEHJ@Z 0040c2c0 f mssio.obj - 0001:0000b2e0 ?Cls@MSNK@@UAEJXZ 0040c2e0 f mssio.obj - 0001:0000b2e6 _timeGetTime@0 0040c2e6 winmm:WINMM.dll - 0001:0000b2f0 ?FWouldBe@TMAP@@SGHJ@Z 0040c2f0 f bren:tmap.obj - 0001:0000b310 ?FIs@TMAP@@UAEHJ@Z 0040c310 f bren:tmap.obj - 0001:0000b320 ?Cls@TMAP@@UAEJXZ 0040c320 f bren:tmap.obj - 0001:0000b330 ??1TMAP@@UAE@XZ 0040c330 f bren:tmap.obj - 0001:0000b360 ?FWrite@TMAP@@UAEHPAVBLCK@@@Z 0040c360 f bren:tmap.obj - 0001:0000b430 ?PtmapReadNative@TMAP@@SGPAV1@PAVFNI@@PAVGL@@@Z 0040c430 f bren:tmap.obj - 0001:0000b620 ?PtmapNew@TMAP@@SGPAV1@PAEJJ@Z 0040c620 f bren:tmap.obj - 0001:0000b690 ?FWriteTmapChkFile@TMAP@@QAEHPAVFNI@@HPAVMSNK@@@Z 0040c690 f bren:tmap.obj - 0001:0000b820 ??_GTMAP@@UAEPAXI@Z 0040c820 f bren:tmap.obj - 0001:0000b820 ??_ETMAP@@UAEPAXI@Z 0040c820 f bren:tmap.obj - 0001:0000b8d0 ?CbOnFile@TMAP@@UAEJXZ 0040c8d0 f bren:tmap.obj - 0001:0000b8e1 _fprintf 0040c8e1 f LIBC:fprintf.obj - 0001:0000b917 __onexit 0040c917 f LIBC:onexit.obj - 0001:0000b98d _atexit 0040c98d f LIBC:onexit.obj - 0001:0000b99f ___onexitinit 0040c99f f LIBC:onexit.obj - 0001:0000b9d5 __purecall 0040c9d5 f LIBC:purevirt.obj - 0001:0000b9e0 _mainCRTStartup 0040c9e0 f LIBC:crt0.obj - 0001:0000bad9 __amsg_exit 0040cad9 f LIBC:crt0.obj - 0001:0000baf9 __stbuf 0040caf9 f LIBC:_sftbuf.obj - 0001:0000bb7a __ftbuf 0040cb7a f LIBC:_sftbuf.obj - 0001:0000bbc0 __output 0040cbc0 f LIBC:output.obj - 0001:0000c4e6 __cinit 0040d4e6 f LIBC:crt0dat.obj - 0001:0000c516 _exit 0040d516 f LIBC:crt0dat.obj - 0001:0000c527 __exit 0040d527 f LIBC:crt0dat.obj - 0001:0000c5d7 _realloc 0040d5d7 f LIBC:realloc.obj - 0001:0000c729 __msize 0040d729 f LIBC:msize.obj - 0001:0000c73a _malloc 0040d73a f LIBC:malloc.obj - 0001:0000c74d __nh_malloc 0040d74d f LIBC:malloc.obj - 0001:0000c80c __heap_split_block 0040d80c f LIBC:malloc.obj - 0001:0000c854 __global_unwind2 0040d854 f LIBC:exsup.obj - 0001:0000c896 __local_unwind2 0040d896 f LIBC:exsup.obj - 0001:0000c8f0 __abnormal_termination 0040d8f0 f LIBC:exsup.obj - 0001:0000c913 __XcptFilter 0040d913 f LIBC:winxfltr.obj - 0001:0000ca9e __setenvp 0040da9e f LIBC:stdenvp.obj - 0001:0000cb69 __setargv 0040db69 f LIBC:stdargv.obj - 0001:0000ce67 __setmbcp 0040de67 f LIBC:mbctype.obj - 0001:0000cff5 ___initmbctable 0040dff5 f LIBC:mbctype.obj - 0001:0000d000 __ioinit 0040e000 f LIBC:ioinit.obj - 0001:0000d0ee __heap_init 0040e0ee f LIBC:heapinit.obj - 0001:0000d16b ___getempty 0040e16b f LIBC:heapinit.obj - 0001:0000d198 __except_handler3 0040e198 f LIBC:exsup3.obj - 0001:0000d246 __seh_longjmp_unwind@4 0040e246 f LIBC:exsup3.obj - 0001:0000d261 __FF_MSGBANNER 0040e261 f LIBC:crt0msg.obj - 0001:0000d287 __NMSG_WRITE 0040e287 f LIBC:crt0msg.obj - 0001:0000d2df _fflush 0040e2df f LIBC:fflush.obj - 0001:0000d32b __flush 0040e32b f LIBC:fflush.obj - 0001:0000d38d __flushall 0040e38d f LIBC:fflush.obj - 0001:0000d402 ___endstdio 0040e402 f LIBC:fflush.obj - 0001:0000d416 __isatty 0040e416 f LIBC:isatty.obj - 0001:0000d430 _wctomb 0040e430 f LIBC:wctomb.obj - 0001:0000d4a8 __aulldiv 0040e4a8 f LIBC:ulldiv.obj - 0001:0000d508 __aullrem 0040e508 f LIBC:ullrem.obj - 0001:0000d572 __flsbuf 0040e572 f LIBC:_flsbuf.obj - 0001:0000d67e _free 0040e67e f LIBC:free.obj - 0001:0000d6e6 __heap_abort 0040e6e6 f LIBC:hpabort.obj - 0001:0000d6f1 __heap_grow 0040e6f1 f LIBC:heapgrow.obj - 0001:0000d7da __heap_grow_region 0040e7da f LIBC:heapgrow.obj - 0001:0000d887 __heap_free_region 0040e887 f LIBC:heapgrow.obj - 0001:0000d8c1 __heap_search 0040e8c1 f LIBC:heapsrch.obj - 0001:0000d9b1 __commit 0040e9b1 f LIBC:commit.obj - 0001:0000d9fe __write 0040e9fe f LIBC:write.obj - 0001:0000db97 __fcloseall 0040eb97 f LIBC:closeall.obj - 0001:0000dbc8 __fptrap 0040ebc8 f LIBC:crt0fp.obj - 0001:0000dbd3 __lseek 0040ebd3 f LIBC:lseek.obj - 0001:0000dc48 __getbuf 0040ec48 f LIBC:_getbuf.obj - 0001:0000dc93 __heap_addblock 0040ec93 f LIBC:heapadd.obj - 0001:0000df4a __free_osfhnd 0040ef4a f LIBC:osfinfo.obj - 0001:0000dfb7 __get_osfhandle 0040efb7 f LIBC:osfinfo.obj - 0001:0000dfef __dosmaperr 0040efef f LIBC:dosmap.obj - 0001:0000e058 _fclose 0040f058 f LIBC:fclose.obj - 0001:0000e0b4 __heap_findaddr 0040f0b4 f LIBC:findaddr.obj - 0001:0000e11e __close 0040f11e f LIBC:close.obj - 0001:0000e1b4 __freebuf 0040f1b4 f LIBC:_freebuf.obj - 0001:0000e1ec _RtlUnwind@16 0040f1ec kernel32:KERNEL32.dll - 0002:00000040 ?vcodmUtil@@3VCODM@@A 00410040 utilglob.obj - 0002:00000058 ?vmutxMem@@3VMUTX@@A 00410058 utilglob.obj - 0002:00000070 ?vkcdcUtil@@3VKCDC@@A 00410070 utilglob.obj - 0002:00000078 ?_usac@@3VUSAC@@A 00410078 utilglob.obj - 0002:00000090 ?vsflUtil@@3VSFL@@A 00410090 utilglob.obj - 0002:000000b0 ?vrndUtil@@3VRND@@A 004100b0 utilglob.obj - 0002:000000e0 ?_ers@@3VERS@@A 004100e0 utilerro.obj - 0002:00000178 ?_mpchschsLower@@3QADA 00410178 utilstr.obj - 0002:00000280 ?_mpchschsUpper@@3QADA 00410280 utilstr.obj - 0002:00000390 ?_pcflFirst@CFL@@0PAV1@A 00410390 chunk.obj - 0002:000003b8 ?_pfilFirst@FIL@@1PAV1@A 004103b8 file.obj - 0002:000003c0 ?_mutxList@FIL@@1VMUTX@@A 004103c0 file.obj - 0002:000003e8 ?_fniTemp@@3VFNI@@A 004103e8 fniwin.obj - 0002:00000694 __heap_descpages 00410694 - 0002:000006a0 __heap_regions 004106a0 - 0002:000009a0 ___onexitend 004109a0 - 0002:000009a4 __FPinit 004109a4 - 0002:000009a8 ___onexitbegin 004109a8 - 0002:000009ac __acmdln 004109ac - 0002:000009b0 __bufin 004109b0 - 0003:00000058 ??_7KCDC@@6B@ 00412058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00412078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00412090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004120a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004120d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004120f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00412108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00412120 utilstr.obj - 0003:00000138 ??_7CODM@@6B@ 00412138 codec.obj - 0003:00000168 ??_7BACO@@6B@ 00412168 crf.obj - 0003:00000190 ??_7FIL@@6B@ 00412190 file.obj - 0003:000001a8 ??_7BLCK@@6B@ 004121a8 file.obj - 0003:000001c0 ??_7FNI@@6B@ 004121c0 fniwin.obj - 0003:000001d8 ??_7GRPB@@6B@ 004121d8 groups.obj - 0003:00000200 ??_7GLB@@6B@ 00412200 groups.obj - 0003:00000230 ??_7GL@@6B@ 00412230 groups.obj - 0003:00000260 ??_7MSSIO@@6B@ 00412260 mssio.obj - 0003:00000280 ??_7TMAP@@6B@ 00412280 bren:tmap.obj - 0003:000002b8 ___lookuptable 004122b8 LIBC:output.obj - 0004:00000000 ??_C@_02DILL@?$CFs?$AA@ 00413000 mktmap.obj - 0004:00000004 ??_C@_0DE@KMOI@Usage?3?5?5mktmap?5?$FL?9c?$FN?5?$DMsrcBitmapFi@ 00413004 mktmap.obj - 0004:00000038 ??_C@_0BN@DLMH@reading?5texture?5map?5failed?6?6?$AA@ 00413038 mktmap.obj - 0004:00000058 ??_C@_0BN@DEOC@Wrong?5number?5of?5file?5names?6?6?$AA@ 00413058 mktmap.obj - 0004:00000078 ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 00413078 mktmap.obj - 0004:00000088 ??_C@_0BG@JNKG@Too?5many?5file?5names?6?6?$AA@ 00413088 mktmap.obj - 0004:000000a0 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 004130a0 mktmap.obj - 0004:000000dc ??_C@_0EA@ILEG@?6Microsoft?5?$CIR?$CJ?5Make?5Tmap?5Utility@ 004130dc mktmap.obj - 0004:0000011c ?vpcodmUtil@@3PAVCODM@@A 0041311c utilglob.obj - 0004:00000120 ?vpusac@@3PAVUSAC@@A 00413120 utilglob.obj - 0004:00000124 ?vpers@@3PAVERS@@A 00413124 utilerro.obj - 0004:00000128 ?vpfnlib@@3P6GJJJ@ZA 00413128 utilmem.obj - 0004:0000012c ?_fInLiberator@@3HA 0041312c utilmem.obj - 0004:00000230 ?_rtiLast@CFL@@0JA 00413230 chunk.obj - 0004:00000234 ?vftgCreator@FIL@@2JA 00413234 file.obj - 0004:00000238 ?vftgTemp@@3JA 00413238 fniwin.obj - 0004:00000240 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00413240 fniwin.obj - 0004:0000024c ??_C@_03HHKO@?$CFs?6?$AA@ 0041324c mssio.obj - 0004:00000250 ??_C@_0CE@DJE@writing?5to?5destination?5file?5fail@ 00413250 bren:tmap.obj - 0004:00000274 ??_C@_0BE@PBHM@allocation?5failure?6?$AA@ 00413274 bren:tmap.obj - 0004:00000288 ??_C@_0CC@LHEJ@Couldn?8t?5create?5destination?5file@ 00413288 bren:tmap.obj - 0004:000002b0 __iob 004132b0 LIBC:_file.obj - 0004:00000530 __lastiob 00413530 LIBC:_file.obj - 0004:00000534 __aenvptr 00413534 LIBC:crt0.obj - 0004:00000538 __wenvptr 00413538 LIBC:crt0.obj - 0004:0000053c __aexit_rtn 0041353c LIBC:crt0.obj - 0004:00000540 __stdbuf 00413540 LIBC:_sftbuf.obj - 0004:00000550 ___nullstring 00413550 LIBC:output.obj - 0004:00000564 ___wnullstring 00413564 LIBC:output.obj - 0004:00000568 _errno 00413568 LIBC:crt0dat.obj - 0004:0000056c __doserrno 0041356c LIBC:crt0dat.obj - 0004:00000570 __umaskval 00413570 LIBC:crt0dat.obj - 0004:00000574 __osver 00413574 LIBC:crt0dat.obj - 0004:00000578 __winver 00413578 LIBC:crt0dat.obj - 0004:0000057c __winmajor 0041357c LIBC:crt0dat.obj - 0004:00000580 __winminor 00413580 LIBC:crt0dat.obj - 0004:00000584 ___argc 00413584 LIBC:crt0dat.obj - 0004:00000588 ___argv 00413588 LIBC:crt0dat.obj - 0004:0000058c ___wargv 0041358c LIBC:crt0dat.obj - 0004:00000590 __environ 00413590 LIBC:crt0dat.obj - 0004:00000594 ___initenv 00413594 LIBC:crt0dat.obj - 0004:00000598 __wenviron 00413598 LIBC:crt0dat.obj - 0004:0000059c ___winitenv 0041359c LIBC:crt0dat.obj - 0004:000005a0 __pgmptr 004135a0 LIBC:crt0dat.obj - 0004:000005a4 __wpgmptr 004135a4 LIBC:crt0dat.obj - 0004:000005a8 __exitflag 004135a8 LIBC:crt0dat.obj - 0004:000005ac __C_Termination_Done 004135ac LIBC:crt0dat.obj - 0004:000005b0 __pnhHeap 004135b0 LIBC:malloc.obj - 0004:000005b8 __XcptActTab 004135b8 LIBC:winxfltr.obj - 0004:00000630 __First_FPE_Indx 00413630 LIBC:winxfltr.obj - 0004:00000634 __Num_FPE 00413634 LIBC:winxfltr.obj - 0004:00000638 __XcptActTabCount 00413638 LIBC:winxfltr.obj - 0004:0000063c __fpecode 0041363c LIBC:winxfltr.obj - 0004:00000640 __pxcptinfoptrs 00413640 LIBC:winxfltr.obj - 0004:00000648 __mbctype 00413648 LIBC:mbctype.obj - 0004:0000074c ___mbcodepage 0041374c LIBC:mbctype.obj - 0004:00000750 ___mblcid 00413750 LIBC:mbctype.obj - 0004:00000758 ___mbulinfo 00413758 LIBC:mbctype.obj - 0004:00000860 __nhandle 00413860 LIBC:ioinit.obj - 0004:00000868 __osfile 00413868 LIBC:ioinit.obj - 0004:000008a8 __osfhnd 004138a8 LIBC:ioinit.obj - 0004:000009a8 __pipech 004139a8 LIBC:ioinit.obj - 0004:000009e8 __heap_desc 004139e8 LIBC:heapinit.obj - 0004:000009fc __heap_resetsize 004139fc LIBC:heapinit.obj - 0004:00000a00 __amblksiz 00413a00 LIBC:heapinit.obj - 0004:00000a04 __heap_regionsize 00413a04 LIBC:heapinit.obj - 0004:00000a08 __heap_maxregsize 00413a08 LIBC:heapinit.obj - 0004:00000c78 __adbgmsg 00413c78 LIBC:crt0msg.obj - 0004:00000c7c __cflush 00413c7c LIBC:fflush.obj - 0004:00000c80 __cfltcvt_tab 00413c80 LIBC:cmiscdat.obj - 0004:00000c98 __pctype 00413c98 LIBC:ctype.obj - 0004:00000c9c __pwctype 00413c9c LIBC:ctype.obj - 0004:00000ca0 __ctype 00413ca0 LIBC:ctype.obj - 0004:00000ea4 __newmode 00413ea4 LIBC:_newmode.obj - 0004:00000ea8 ___lc_handle 00413ea8 LIBC:nlsdata2.obj - 0004:00000ec0 ___lc_codepage 00413ec0 LIBC:nlsdata2.obj - 0004:00000ec4 ___mb_cur_max 00413ec4 LIBC:nlsdata1.obj - 0004:00000ecc ___decimal_point 00413ecc LIBC:nlsdata1.obj - 0004:00000ed0 ___decimal_point_length 00413ed0 LIBC:nlsdata1.obj - 0004:00001040 ___xc_a 00414040 LIBC:crt0init.obj - 0004:000010a0 ___xc_z 004140a0 LIBC:crt0init.obj - 0004:000010a4 ___xi_a 004140a4 LIBC:crt0init.obj - 0004:000010ac ___xi_z 004140ac LIBC:crt0init.obj - 0004:000010b0 ___xp_a 004140b0 LIBC:crt0init.obj - 0004:000010b8 ___xp_z 004140b8 LIBC:crt0init.obj - 0004:000010bc ___xt_a 004140bc LIBC:crt0init.obj - 0004:000010c0 ___xt_z 004140c0 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00415000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00415014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00415028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041503c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00415050 kernel32:KERNEL32.dll - 0005:00000108 __imp__DeleteCriticalSection@4 00415108 kernel32:KERNEL32.dll - 0005:0000010c __imp__GlobalAlloc@8 0041510c kernel32:KERNEL32.dll - 0005:00000110 __imp__GlobalFree@4 00415110 kernel32:KERNEL32.dll - 0005:00000114 __imp__LeaveCriticalSection@4 00415114 kernel32:KERNEL32.dll - 0005:00000118 __imp__EnterCriticalSection@4 00415118 kernel32:KERNEL32.dll - 0005:0000011c __imp__GlobalReAlloc@12 0041511c kernel32:KERNEL32.dll - 0005:00000120 __imp__WideCharToMultiByte@32 00415120 kernel32:KERNEL32.dll - 0005:00000124 __imp__CreateFileA@28 00415124 kernel32:KERNEL32.dll - 0005:00000128 __imp__CloseHandle@4 00415128 kernel32:KERNEL32.dll - 0005:0000012c __imp__DeleteFileA@4 0041512c kernel32:KERNEL32.dll - 0005:00000130 __imp__FlushFileBuffers@4 00415130 kernel32:KERNEL32.dll - 0005:00000134 __imp__SetFilePointer@16 00415134 kernel32:KERNEL32.dll - 0005:00000138 __imp__ReadFile@20 00415138 kernel32:KERNEL32.dll - 0005:0000013c __imp__WriteFile@20 0041513c kernel32:KERNEL32.dll - 0005:00000140 __imp__GetFullPathNameA@16 00415140 kernel32:KERNEL32.dll - 0005:00000144 __imp__GetTempPathA@8 00415144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GetLastError@0 00415148 kernel32:KERNEL32.dll - 0005:0000014c __imp__GetFileAttributesA@4 0041514c kernel32:KERNEL32.dll - 0005:00000150 __imp__InitializeCriticalSection@4 00415150 kernel32:KERNEL32.dll - 0005:00000154 __imp__ExitProcess@4 00415154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetVersion@0 00415158 kernel32:KERNEL32.dll - 0005:0000015c __imp__SetStdHandle@8 0041515c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetCommandLineA@0 00415160 kernel32:KERNEL32.dll - 0005:00000164 __imp__VirtualAlloc@16 00415164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetStdHandle@4 00415168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetCPInfo@8 0041516c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetOEMCP@0 00415170 kernel32:KERNEL32.dll - 0005:00000174 __imp__GetStartupInfoA@4 00415174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetFileType@4 00415178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetEnvironmentStrings@0 0041517c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetModuleFileNameA@12 00415180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetACP@0 00415184 kernel32:KERNEL32.dll - 0005:00000188 __imp__VirtualFree@12 00415188 kernel32:KERNEL32.dll - 0005:0000018c __imp__RtlUnwind@16 0041518c kernel32:KERNEL32.dll - 0005:00000190 __imp__UnhandledExceptionFilter@4 00415190 kernel32:KERNEL32.dll - 0005:00000194 \177KERNEL32_NULL_THUNK_DATA 00415194 kernel32:KERNEL32.dll - 0005:00000198 __imp__CharUpperBuffA@8 00415198 user32:USER32.dll - 0005:0000019c \177USER32_NULL_THUNK_DATA 0041519c user32:USER32.dll - 0005:000001a0 __imp__timeGetTime@0 004151a0 winmm:WINMM.dll - 0005:000001a4 \177WINMM_NULL_THUNK_DATA 004151a4 winmm:WINMM.dll - 0005:000001a8 \177comdlg32_NULL_THUNK_DATA 004151a8 comdlg32:comdlg32.dll - - entry point at 0001:0000b9e0 - - Static symbols - - 0001:0000b280 _$$8000 0040c280 f mssio.obj - 0001:0000b2b0 _$$1000 0040c2b0 f mssio.obj - 0001:0000ac90 _$$1000 0040bc90 f mbmp.obj - 0001:0000b140 _$$9200 0040c140 f mbmp.obj - 0001:0000b150 _$$8000 0040c150 f mbmp.obj - 0001:0000ac70 _$$1000 0040bc70 f groups2.obj - 0001:0000ac80 _$$8000 0040bc80 f groups2.obj - 0001:0000a680 _$$1000 0040b680 f groups.obj - 0001:0000ac00 _$$8000 0040bc00 f groups.obj - 0001:00009c70 _$$8000 0040ac70 f fniwin.obj - 0001:00009e40 _$$1000 0040ae40 f fniwin.obj - 0001:0000a3d0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040b3d0 f fniwin.obj - 0001:0000a470 _$$9000 0040b470 f fniwin.obj - 0001:0000a480 _$$a000 0040b480 f fniwin.obj - 0001:0000a490 _$$b000 0040b490 f fniwin.obj - 0001:00009800 ?_HfileOpen@@YGPAXPADHK@Z 0040a800 f filewin.obj - 0001:00009a50 _$$1000 0040aa50 f filewin.obj - 0001:00009c60 _$$8000 0040ac60 f filewin.obj - 0001:00008b60 _$$8000 00409b60 f file.obj - 0001:00008dd0 _$$1000 00409dd0 f file.obj - 0001:00009010 ?_FRangeIn@@YGHJJJ@Z 0040a010 f file.obj - 0001:00009790 _$$9000 0040a790 f file.obj - 0001:000097a0 _$$a000 0040a7a0 f file.obj - 0001:000097b0 _$$b000 0040a7b0 f file.obj - 0001:000088b0 _$$1000 004098b0 f crf.obj - 0001:00008b30 _$$8000 00409b30 f crf.obj - 0001:000024c0 _$$1000 004034c0 f codkauai.obj - 0001:00008760 _$$8000 00409760 f codkauai.obj - 0001:00001c70 _$$1000 00402c70 f codec.obj - 0001:00001fa0 _$$8000 00402fa0 f codec.obj - 0001:00001990 _$$1000 00402990 f chunk.obj - 0001:000019a0 _$$8000 004029a0 f chunk.obj - 0001:00001970 _$$8000 00402970 f memwin.obj - 0001:00001980 _$$1000 00402980 f memwin.obj - 0001:00001270 _$$1000 00402270 f utilstr.obj - 0001:000017e0 _$$8000 004027e0 f utilstr.obj - 0001:00000f40 _$$1000 00401f40 f utilrnd.obj - 0001:00001040 _$$8000 00402040 f utilrnd.obj - 0001:00000d60 _$$8000 00401d60 f utilmem.obj - 0001:00000d70 _$$1000 00401d70 f utilmem.obj - 0001:00000a80 _$$1000 00401a80 f utilint.obj - 0001:00000b50 _$$8000 00401b50 f utilint.obj - 0001:000007a0 _$$8000 004017a0 f utilerro.obj - 0001:000009d0 _$$1000 004019d0 f utilerro.obj - 0001:000009e0 _$$9000 004019e0 f utilerro.obj - 0001:00000a00 _$$a000 00401a00 f utilerro.obj - 0001:00000a10 _$$b000 00401a10 f utilerro.obj - 0001:00000660 _$$1000 00401660 f utilcopy.obj - 0001:00000790 _$$8000 00401790 f utilcopy.obj - 0001:000005c0 _$$8000 004015c0 f base.obj - 0001:000005d0 _$$1000 004015d0 f base.obj - 0001:00000400 _$$8000 00401400 f util.obj - 0001:00000410 _$$1000 00401410 f util.obj - 0001:000002d0 _$$8000 004012d0 f utilglob.obj - 0001:00000330 _$$9000 00401330 f utilglob.obj - 0001:00000370 _$$a000 00401370 f utilglob.obj - 0001:00000380 _$$b000 00401380 f utilglob.obj - 0001:000003b0 _$$1000 004013b0 f utilglob.obj - 0001:000001e0 _$$e200 004011e0 f mktmap.obj - 0001:000001f0 _$$1000 004011f0 f mktmap.obj - 0001:00000200 _$$8000 00401200 f mktmap.obj - 0001:0000b420 _$$1000 0040c420 f bren:tmap.obj - 0001:0000b810 _$$e200 0040c810 f bren:tmap.obj - 0001:0000b840 _$$8000 0040c840 f bren:tmap.obj - 0001:0000dee1 __before 0040eee1 f LIBC:heapadd.obj - 0001:0000d756 __heap_new_region 0040e756 f LIBC:heapgrow.obj - 0001:0000d398 _flsall 0040e398 f LIBC:fflush.obj - 0001:0000d115 __heap_grow_emptylist 0040e115 f LIBC:heapinit.obj - 0001:0000cdc9 _getSystemCP 0040ddc9 f LIBC:mbctype.obj - 0001:0000ce04 _CPtoLCID 0040de04 f LIBC:mbctype.obj - 0001:0000ce43 _setSBCS 0040de43 f LIBC:mbctype.obj - 0001:0000cbff _parse_cmdline 0040dbff f LIBC:stdargv.obj - 0001:0000ca71 _xcptlookup 0040da71 f LIBC:winxfltr.obj - 0001:0000c874 __unwind_handler 0040d874 f LIBC:exsup.obj - 0001:0000c6cd __heap_expand_block 0040d6cd f LIBC:realloc.obj - 0001:0000c538 _doexit 0040d538 f LIBC:crt0dat.obj - 0001:0000c5b7 __initterm 0040d5b7 f LIBC:crt0dat.obj - 0001:0000c40b _write_char 0040d40b f LIBC:output.obj - 0001:0000c44b _write_multi_char 0040d44b f LIBC:output.obj - 0001:0000c47c _write_string 0040d47c f LIBC:output.obj - 0001:0000c4b3 _get_int_arg 0040d4b3 f LIBC:output.obj - 0001:0000c4c2 _get_int64_arg 0040d4c2 f LIBC:output.obj - 0001:0000c4d6 _get_short_arg 0040d4d6 f LIBC:output.obj - -FIXUPS: ca5d 10 5 1c 9 15 f 1f 9 fffffef5 ffffff46 1e 12 44 13 13 ffffff32 -FIXUPS: c8fe c 4be 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 14 1c 2d -FIXUPS: d32d 1d 1b cb 3a 37 fffff662 45 46 29 fffffe85 c 5 116d 10 19 fffffef2 -FIXUPS: daea 2a 11 fffffdf5 ffffff4e fffffedd 2d f e c 3d 55 fffffdbe 16 -FIXUPS: d634 1f d 23 23 fffffe56 12 11 11 5d 12 fffff725 4c 9b 1abe c 32 -FIXUPS: e6e9 ffffffae ffffff49 d 2b 1a 1f fffffc9a b 21 42 37 2f 19 2b -FIXUPS: e411 fffffe56 18 ffffff70 d 35 25 ffffff1f fffffcff b8 78 44 10 -FIXUPS: dba8 15ac c d 20 d fffffed6 b b 1b fffffc0f 10 10 18 a1 3e 24 d -FIXUPS: ee39 34 fffffdec ffffffaf 26 ffffff9d ffffffdf fffffead f3 fffffe7e -FIXUPS: e738 c 75 d 96 ffffdaa9 11 2e 7 89 2b 5e 23 6b 25 24 6f 5d 24 d -FIXUPS: c6a5 39 10 21 21 16 14 12 10 10 1c 46 23 5 e d 2997 ffff20dd 11 -FIXUPS: 12e3 c a 1e a 1f 1e 18 b 5 5 17 30 fffffc44 c 1a f 12 3c 16 3c -FIXUPS: 1121 17 22 17 1c 1b 27 12 5 e0a 26 2b 21 12 d fffffb9d ef 54 fffffdc3 -FIXUPS: 1b2f 22 21 fffffc34 1f 11 1e 5c 1b6 b 5 5 21 fffffd55 fffffca4 -FIXUPS: 1446 ee 30 5d 23 d fffffe10 d02 54 4b 94 11 4e 33 13 f 25b 6d 114 -FIXUPS: 270f f 2e 95 fffff5b4 11 2f 11 1e 12 10 53 35 1b 28 27 5e 1e d -FIXUPS: 1fdb 9ea 11 2f f 7a 50 7f 20 b1 65 a 2b 23 18 16 1a 8 e 16 19 6 -FIXUPS: 2fa1 13 d fffff9e0 fffffe6b a8 6c 51 fffff731 32 26 1114 1c 55 -FIXUPS: 3290 d 81 6a 12 78 12 33 27 21 3994 1b 1c 52 f d 9c 73 11 32 e -FIXUPS: 7072 30 97 13 30 27 21 259d 1050 5 5 9 d 13 d ffffef94 11 1e 6e -FIXUPS: 9839 68 3c 6c 16 41 16 1d 46 118 13 d ffff9494 11 52 8 28 8 11c -FIXUPS: 31b4 3f 7111 1f 38 45 3e 10 17 61 14 15 20 4a 6 20 2b 3f 6 20 2b -FIXUPS: a611 1a 12 11 b 58 e 12 35 1c 38 18 34 fffff575 3d 1c d 14 57 26 -FIXUPS: 9e19 a f 2a 3e 64 ed 69 2e 22 2e 4b 36 17 27 34 1c 17 8 a a 20 -FIXUPS: a284 28 18 1166 28 34 b 5 5 17 fffff40c 23 89 9e 7f aa c a4 c 74 -FIXUPS: 9b85 11 2f 11 1e 12 22 21 25 14 23 14 14 25 11 1115 5d 26 11 24 -FIXUPS: aeee 11 b 1e 82 10 28 e 2b c 24 b 4d 1a 22 24 13 3a b 3b 1a d4 -FIXUPS: b2fa 1d 68 34 7 56e 11 10 1e 32 80 1d 49 34 14 31 38 29 4a 4d 11 -FIXUPS: bc14 d 13 d 13 d fffff015 1f 11 2e 15 ab d 2c 19 20 70f 11 2f 11 -FIXUPS: b58e 9 32 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 1e a b 28 a b -FIXUPS: b884 5b 6 15 b 17 8c8 3e 30 2f 21 33 fffff9fc 1d 1d 113 1a d 11 -FIXUPS: be6f 2a 1c 17 63 28 3c 1e 49 22 78 a 2e 1e 57 5 fffffb3b fffff854 -FIXUPS: b4e6 diff --git a/OBJ/WINS/SHARECD.I b/OBJ/WINS/SHARECD.I deleted file mode 100644 index 06e10879..00000000 --- a/OBJ/WINS/SHARECD.I +++ /dev/null @@ -1,4571 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 26 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -SET _dfmbmp = 10 SET _dfscr = 10 SET _dfanm = 10 SET _dffill = 10 SET _curgok = 10 SET _dfmask = 10 SET _dftile = 10 SET _dfwave = 10 SET _dfmidi = 10 SET _dfvid = 10 - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 30 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 31 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 32 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 33 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 34 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 35 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 38 "H:\\BUILD\\SOC\\src\\shared\\sharecd.cht" - - - - - -SET _curgok = 0x00015102 CHUNK( 'GOKD', 0x00015102, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 1 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "shared\pbm\page01.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000041 ) PACKEDFILE "shared\pbm\page02.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000042 ) PACKEDFILE "shared\pbm\page03.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000043 ) PACKEDFILE "shared\pbm\page04.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000044 ) PACKEDFILE "shared\pbm\page05.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000045 ) PACKEDFILE "shared\pbm\page06.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000046 ) PACKEDFILE "shared\pbm\page07.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000047 ) PACKEDFILE "shared\pbm\page08.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000048 ) PACKEDFILE "shared\pbm\page09.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000049 ) PACKEDFILE "shared\pbm\page10.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004a ) PACKEDFILE "shared\pbm\page11.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004b ) PACKEDFILE "shared\pbm\page12.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004c ) PACKEDFILE "shared\pbm\page13.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004d ) PACKEDFILE "shared\pbm\page14.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004e ) PACKEDFILE "shared\pbm\page15.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000004f ) PACKEDFILE "shared\pbm\page16.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000050 ) PACKEDFILE "shared\pbm\page17.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000051 ) PACKEDFILE "shared\pbm\page18.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000052 ) PACKEDFILE "shared\pbm\page19.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000053 ) PACKEDFILE "shared\pbm\page20.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000054 ) PACKEDFILE "shared\pbm\page21.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000055 ) PACKEDFILE "shared\pbm\page22.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000056 ) PACKEDFILE "shared\pbm\page23.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000057 ) PACKEDFILE "shared\pbm\page24.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000058 ) PACKEDFILE "shared\pbm\page25.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000059 ) PACKEDFILE "shared\pbm\page26.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005a ) PACKEDFILE "shared\pbm\page27.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005b ) PACKEDFILE "shared\pbm\page28.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005c ) PACKEDFILE "shared\pbm\page29.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005d ) PACKEDFILE "shared\pbm\page30.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005e ) PACKEDFILE "shared\pbm\page31.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x0000005f ) PACKEDFILE "shared\pbm\page32.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000060 ) PACKEDFILE "shared\pbm\page33.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000061 ) PACKEDFILE "shared\pbm\page34.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000062 ) PACKEDFILE "shared\pbm\page35.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000063 ) PACKEDFILE "shared\pbm\page36.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000064 ) PACKEDFILE "shared\pbm\page37.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000065 ) PACKEDFILE "shared\pbm\page38.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000066 ) PACKEDFILE "shared\pbm\page39.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000067 ) PACKEDFILE "shared\pbm\page40.pbm" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000068 ) PACKEDFILE "shared\pbm\page41.pbm" ENDCHUNK - - diff --git a/OBJ/WINS/SHARED.I b/OBJ/WINS/SHARED.I deleted file mode 100644 index 92095311..00000000 --- a/OBJ/WINS/SHARED.I +++ /dev/null @@ -1,10018 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 26 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -SET _dfmbmp = 10 SET _dfscr = 10 SET _dfanm = 10 SET _dffill = 10 SET _curgok = 10 SET _dfmask = 10 SET _dftile = 10 SET _dfwave = 10 SET _dfmidi = 10 SET _dfvid = 10 - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 30 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 70 "H:\\BUILD\\SOC\\inc\\buildgob.h" -#line 31 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 32 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 33 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 34 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 35 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 38 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 39 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\util.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 46 "H:\\BUILD\\SOC\\src\\shared\\util.cht" - - - - - -CHUNK( 'GLOP', 0x00050001, ) SCRIPT - ; - CreateChildThis(0x00010000, 0x00010000); - RunScriptGob(0x00010000, 0x0020); -ENDCHUNK - - - - - - - - - - - - -CHUNK( 'WAVE', 0x00010010, ) FILE "shared\sound\util\splot.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010004, ) FILE "shared\sound\util\ding.wav" ENDCHUNK - - - - - -SET _curgok = 0x00010000 CHUNK( 'GOKD', 0x00010000, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0020 ) SCRIPT - 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - - - - - 0x00010000->cnoMidi = (0xFFFFFFFF); - 0x00010000->fHelpOn = (1); - 0x00010000->fMovie = (0); - 0x00010000->cnoPal = (0xFFFFFFFF); - - SetProp(0x23302, 0x0001); - - - - ::siiVoice = 0; - - - ::fTransition = 0; - - - - 0x00010000->fLobby1PS = (1); - 0x00010000->fBackstagePS = (1); - 0x00010000->fIdeasPS = (1); - 0x00010000->fTicketPS = (1); - 0x00010000->fStudioPS = (1); - - - - - 0x00010000->fLob1stHelp = (1); - 0x00010000->fTic1stHelp = (1); - 0x00010000->fBkstg1stHelp = (1); - - - ::fBio1 = GetProp( 0x23500 )|1; ::fBio2 = GetProp( 0x23501 ); SetProp( 0x23500, ::fBio1 );; - - - ::fStdIntro = 0; - If( GetProp( 0x23503 ) & 0x01 ); - - ::fStdIntro = 1; - End; - - - ::fHelpOn = 0; - ::NextProject = 1; - - - ::volume = 50; - ::kgobCurrentPlace = 0; - ::fInStudio = 1; - - - 0x00010000->fTrans = (0); - - - 0x00010000->cDisable = 0; - - - - - - - - FilterCmdsThis( 40042, 0, 0x0026 ); - - ENDCHUNK - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - ; - ; - ; - If (_parm[0] != ::kgobCurrentPlace); - 0x00010000->kstEntry = (_parm[1]); - If (::kgobCurrentPlace != 0); - DestroyGob(::kgobCurrentPlace); - End; - ::kgobCurrentPlace = _parm[0]; - CreateChildGob(GidParThis(), _parm[0], _parm[0]); - End; - FlushUserEvents(0xFFFFFFFF); - ENDCHUNK - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - - If (_parm[2]); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - End; - ENDCHUNK - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - If( FGobExists( 0x0001010c ) == 0); - - CreateChildGob(::kgobCurrentPlace, 0x0001010c, 0x0001010c); - End; - 0x00010000->keys = (_parm[0]); - ENDCHUNK - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - If( _parm[0] != .cnoMidi ); - If( .cnoMidi != 0xFFFFFFFF ); - - - StopSound( .siiMidi ); - End; - If( _parm[0] != 0xFFFFFFFF ); - cnt = ( _parm[1] ) ? 0x00010000 : 1; - .siiMidi = PlaySoundGob( 0x00010000, 'MIDS', _parm[0], 1, 0x00010000, cnt, 4, 998 ); - End; - .cnoMidi = _parm[0]; - End; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0025 ) SCRIPT - - - CreateChildGob( GidParGob( 0x00010000 ), 0x0001010b, 0x0001010b ); - CreateHelpGob( 0x0001010b, 0x00016043 ); - .keysTmp = ((0x00010000->keys)); - 0x00010000->keys = (0x00000000); - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0026 ) SCRIPT - - - - - - - If (_parm[1] == 101 && (((0x00010000->keys) & 0x00000008) == 0x00000008)); - - EnqueueCid(50080, 0, 1, 0, 0, 0); - - FilterCmdsThis(50082, 0, 0x0022); - Elif (_parm[1] == 101 && !(((0x00010000->keys) & 0x00000008) == 0x00000008)); - ModalHelp(0x20005853, -1); - - - Elif (_parm[1] == 100 && (((0x00010000->keys) & 0x00000010) == 0x00000010)); - - EnqueueCid(50091, 0, 0, 0, 0, 0); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - Elif (_parm[1] == 100 && !(((0x00010000->keys) & 0x00000010) == 0x00000010)); - ModalHelp(0x20005853, -1); - - - Elif (_parm[1] == 40042 && (((0x00010000->keys) & 0x00000001) == 0x00000001)); - If (::fInStudio); - ; - CreateChildGob(0x20002, 0x00012000, 0x00012000); - Else; - ; - CreateChildGob(::kgobCurrentPlace, 0x00012000, 0x00012000); - End; - Exit(); - Elif (_parm[1] == 40042 && !(((0x00010000->keys) & 0x00000001) == 0x00000001)); - ModalHelp(0x20005854, -1); - - - Elif (_parm[1] == 50110 && (((0x00010000->keys) & 0x00000020) == 0x00000020)); - RunScriptGob(0x00010000, 0x0028, 0x00011800, 0x0001, 0xFFFFFFFF);; - Elif (_parm[1] == 50110 && !(((0x00010000->keys) & 0x00000020) == 0x00000020)); - EnqueueCid(50091, 0, 0, 0, 0, 0); - ModalHelp(0x20005853, -1); - - End; - - ENDCHUNK - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0027 ) SCRIPT - ::fTransition = 0; - If ( (_parm[0] != (0x00010000->cnoPal)) && (0x00010000->fTrans) && (_parm[0] != 0xFFFFFFFF) ); - - Transition(3, 0, 60, 0xffffffff, _parm[0]); - ::fTransition = 1; - Else; - - - If( _parm[0] != 0xFFFFFFFF ); - SetColorTable(_parm[0]); - End; - End; - 0x00010000->cnoPal = (_parm[0]); - 0x00010000->fTrans = (1); - ENDCHUNK - - - - - - - - - - - - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0028 ) SCRIPT - ; - ; - StartLongOp(); - - - FilterCmdsThis(101, 0, 0xFFFFFFFF); - FilterCmdsThis(100, 0, 0xFFFFFFFF); - FilterCmdsThis(50110, 0, 0xFFFFFFFF); - - - EndLongOp( 1 ); If( FGobExists( 0x0001010c ) ); DestroyGob( 0x0001010c ); End; 0x00010000->keys = ((0x00000004 | 0x00000002 | 0x00000001 | 0x00000008 | 0x00000010 | 0x00000020)); - - .kgobCurrentPlaceT = ::kgobCurrentPlace; - SetProp(0x23300, _parm[0]); - 0x00010000->cnoPal = (0xFFFFFFFF); - 0x00010000->kstEntry = (_parm[1]); - SetProp(0x23302, _parm[1]); - ::kgobCurrentPlace = 0; - - - FilterCmdsThis(50107, 0, 0x0029); - - - RunScriptGob( 0x00010000, 0x0024, 0xFFFFFFFF, 0 ); - - EnqueueCid(50060, 0, .kgobCurrentPlaceT, _parm[2], 0, 0); - ::fInStudio = 1; - ENDCHUNK - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - ; - ::fInStudio = 0; - ::kgobCurrentPlace = .kgobCurrentPlaceT; - EnqueueCid(50091, 0, 0,0,0,0); - FilterCmdsThis(50107, 0, 0xFFFFFFFF); - FilterCmdsGob(0x00010000, 101, 0, 0x0026); - FilterCmdsGob(0x00010000, 100, 0, 0x0026); - EndLongOp(1); - ENDCHUNK - - -CHUNK( 'GLOP', 0x00016043, ) SCRIPT - - - If( _parm[0] == 2 ); - DestroyGob( 0x0001010b ); - 0x00010000->keys = (0x00010000->keysTmp); - DestroyGob( GidParThis() ); - Elif( _parm[0] == 1 ); - EnqueueCid( 106, 0,0,0,0,0 ); - End; -ENDCHUNK - - - - -SET _curgok = 0x0001010b CHUNK( 'GOKD', 0x0001010b, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 1000 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 15 0 0 0xfe LONG 0xffffffff - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ENDCHUNK - - - - -SET _curgok = 0x0001010c CHUNK( 'GOKD', 0x0001010c, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 975 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 15 0 0 0xfe LONG 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundThis( 'WAVE', 0x00010010, 1, 0x00010000, 1, 0, 789 ); - ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x0001604f, ) SCRIPT - If( _parm[0] != 0 ); - DestroyGob( GidParThis() ); - End; -ENDCHUNK -#line 40 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\cursors.cht" - - - - -CHUNK( 'GGCR', 0x00000001, ) PACK CURSOR "shared\cursors\hotspot.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000002, ) PACK CURSOR "shared\cursors\default.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000003, ) PACK CURSOR "shared\cursors\actions2.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000004, ) PACK CURSOR "shared\cursors\crs1018.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000005, ) PACK CURSOR "shared\cursors\turnleft.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000006, ) PACK CURSOR "shared\cursors\turnrigt.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000007, ) PACK CURSOR "shared\cursors\turnarnd.cur" ENDCHUNK -CHUNK( 'GGCR', 0x00000009, ) PACK CURSOR "shared\cursors\turnarnd.cur" ENDCHUNK - -#line 41 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\map.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\buildgob.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 12 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 15 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 20 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 479 "H:\\BUILD\\SOC\\inc\\socdefn.h" - - -#line 29 "H:\\BUILD\\SOC\\src\\shared\\map.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\map.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 95 "H:\\BUILD\\SOC\\src\\shared\\map.chh" -#line 30 "H:\\BUILD\\SOC\\src\\shared\\map.cht" - -CHUNK( 'WAVE', 0x00010008, ) FILE "shared\sound\mapobj.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010009, ) FILE "shared\sound\mapopen.wav" ENDCHUNK - - - - - - - - - - - - - - - - - -SET _curgok = 0x00012000 CHUNK( 'GOKD', 0x00012000, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 900 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, 0x00000040 ) PACKEDFILE "shared\pbm\map\mapback.pbm" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - PlaySoundGob(0x00010000, 'WAVE', 0x00010009, 1, 0x00010000, 1, 1,998); - - - - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - - FilterCmdsThis(100003, 0, 0x0029); - - - CreateChildThis( 0x00012050, 0x00012050 ); - CreateChildThis( 0x00012051, 0x00012051 ); - CreateChildThis( 0x00012058, 0x00012058 ); - CreateChildThis( 0x00012052, 0x00012052 ); - CreateChildThis( 0x00012054, 0x00012054 ); - CreateChildThis( 0x00012055, 0x00012055 ); - CreateChildThis( 0x00012056, 0x00012056); - CreateChildThis( 0x00012057, 0x00012057 ); - CreateChildThis( 0x0001205d, 0x0001205d); - CreateChildThis( 0x0001205b, 0x0001205b ); - CreateChildThis( 0x0001205c, 0x0001205c ); - CreateChildThis( 0x00012059, 0x00012059 ); - CreateChildThis( 0x0001205a, 0x0001205a ); - CreateChildThis( 0x00012062, 0x00012062 ); - CreateChildThis( 0x00012060, 0x00012060 ); -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - Cell( 0x00000040, 0, 0, 1 ); - - - CreateHelpThis( 0x00018547 ); -ENDCHUNK - - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - Return( 1 ); -ENDCHUNK - - - - - - - - - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - newplace = _parm[0]; - newstate = _parm[1]; - fTools = _parm[2]; - - - PlaySoundGob(0x00010000, 'WAVE', 0x00010008, 1, 0x00010000, 1, 1, - 998); - - - - If ( ::fInStudio ); - If( fTools ); - - ; - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyThis(); - Exit(); - End; - - - - ; - SetProp(0x23300, newplace ); - SetProp(0x23302, newstate); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - RunScriptGob(0x00010000, 0x0027, 0xFFFFFFFF); - - EnqueueCid(50061, 0, 0, 0, 0, 0); - DestroyThis(); - - Else; - If (GidParThis() == newplace); - - - - ; - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyThis(); - - If (newstate != Match( newplace, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001)); - ; - 0x00010000->kstEntry = (newstate); - - - - RunScriptGob(newplace, 0x0020); - End; - - Exit(); - End; - - - - - ; - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyThis(); - RunScriptGob(0x00010000, 0x0021, newplace, newstate); - End; -ENDCHUNK - - - -SET _curgok = 0x00012055 CHUNK( 'GOKD', 0x00012055, ) PACK SHORT BO OSK LONG 0 LONG 0 581 365 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\cancel.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\cancelc.bmp" ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "shared\sound\map\cancel.wav" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob( 0x00012000 ); - -ENDCHUNK - - -SET _curgok = 0x00012062 CHUNK( 'GOKD', 0x00012062, ) PACK SHORT BO OSK LONG 0 LONG 0 571 426 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\exit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\exits.bmp" ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "shared\sound\map\mapexit.wav" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob( 0x00012000 ); - EnqueueCid(106, 0, 0, 0, 0, 0);; -ENDCHUNK - - - - -SET _curgok = 0x00012003 CHUNK( 'GOKD', 0x00012003, ) PACK SHORT BO OSK LONG 6 LONG 0 0 0 555 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 6, 22 ) "shared\bmp\map\here.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 30 8 32 70 4 0 0 0 6 - SHORT 13 1 22 4 2 0 0 0 4 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - If (::fInStudio); - plc = GetProp(0x23300); - Else; - plc = ::kgobCurrentPlace; - End; - - - x= Match( plc, -1, - 0x00010500, 346, - 0x00010580, 346, - 0x00010600, 320, - 0x00010700, 320, - 0x00010800, 320, - 0x00010900, 320, - 0x00010c00, 320, - 0x00010d00, 320, - 0x00010e00, 320, - 0x00010f00, 320, - 0x00011000, 320, - 0x00011100, 320, - 0x00011400, 238, - 0x00011500, 238, - 0x00011600, 238, - 0x00011700, 238, - 0x00011800, 322, - 0x00011900, 322, - 0x00011a00, 322, - 0x00011b00, 322, - 0x00011c00, 372, - 0x00011d00, 372, - 0x00011e00, 372, - 0x00011f00, 372 - ); - - y= Match( plc, -1, - 0x00010500, 428, - 0x00010580, 428, - 0x00010600, 363, - 0x00010700, 363, - 0x00010800, 363, - 0x00010900, 363, - 0x00010c00, 256, - 0x00010d00, 256, - 0x00010e00, 256, - 0x00010f00, 256, - 0x00011000, 147, - 0x00011100, 147, - 0x00011400, 141, - 0x00011500, 141, - 0x00011600, 141, - 0x00011700, 141, - 0x00011800, 61, - 0x00011900, 61, - 0x00011a00, 61, - 0x00011b00, 61, - 0x00011c00, 134, - 0x00011d00, 134, - 0x00011e00, 134, - 0x00011f00, 134 - ); - - ; - MoveAbsThis( x, y ); - -ENDCHUNK - - - - -SET _curgok = 0x00012056 CHUNK( 'GOKD', 0x00012056, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\ideamsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob(0x00012000, 0x0021, 0x00011400, - Match( 0x00011400, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012057 CHUNK( 'GOKD', 0x00012057, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\studmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011800, - Match( 0x00011800, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012050 CHUNK( 'GOKD', 0x00012050, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\projmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011c00, - Match( 0x00011c00, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012051 CHUNK( 'GOKD', 0x00012051, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\bkstgmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011000, - Match( 0x00011000, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - -SET _curgok = 0x00012058 CHUNK( 'GOKD', 0x00012058, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\theatmsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00010c00, - Match( 0x00010c00, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - - -SET _curgok = 0x00012052 CHUNK( 'GOKD', 0x00012052, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\LOBBYMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00010600, Match( 0x00010600, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), - 0); -ENDCHUNK - - -SET _curgok = 0x00012054 CHUNK( 'GOKD', 0x00012054, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\TICKTMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00010580, - Match( 0x00010580, 0x0001, 0x00011c00, 0x0001, 0x00011000, 0x0002, 0x00010c00, 0x0004, 0x00010600, 0x0002, 0x00010580, 0x0003, 0x00011400, 0x0006, 0x00011800, 0x0001), 0); -ENDCHUNK - - - -SET _curgok = 0x0001205a CHUNK( 'GOKD', 0x0001205a, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\biomsk.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011400, 0x0008 , 0 ); -ENDCHUNK - - -SET _curgok = 0x00012059 CHUNK( 'GOKD', 0x00012059, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\SPLOTMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011400, 0x0007 , 0 ); -ENDCHUNK - - -SET _curgok = 0x0001205d CHUNK( 'GOKD', 0x0001205d, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\TBOXMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob(0x00012000, 0x0021, 0x00011800, 0x0002, 1); -ENDCHUNK - - -SET _curgok = 0x0001205b CHUNK( 'GOKD', 0x0001205b, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\LOGOMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011c00, 0x0004 , 0 ); -ENDCHUNK - - -SET _curgok = 0x0001205c CHUNK( 'GOKD', 0x0001205c, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) MASK( 0x00, , ) "shared\bmp\map\GIZMOMSK.BMP" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00012000, 0x0021, 0x00011c00, 0x0005 , 0 ); -ENDCHUNK - - - - - -SET _curgok = 0x0001205f CHUNK( 'GOKD', 0x0001205f, ) PACK SHORT BO OSK LONG 3 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\map\volthmb.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x00012060 CHUNK( 'GOKD', 0x00012060, ) PACK SHORT BO OSK LONG 0 LONG 0 22 294 500 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 48 104 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x0001205f, 0x0001205f ); - - y = 96 -(( GetMasterVolume() * 96 )/ (0x00010000*2)); - MoveAbsGob( 0x0001205f, 0, y ); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis('WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 998); - While( 1 ); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif( y > 96 ); - y =96; - End; - - - MoveAbsGob( 0x0001205f, 0, y ); - - - newvol = ( (0x00010000*2)* (96-y) ) / 96; - - - SetMasterVolume( newvol ); - - - Cell( 0 , 0,0, 10 ); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound( .siiLoop ); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) -#line 42 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\shared\\sharhelp.cht" - - - - - - - - - - - - - -SET _curgok = 0x00016050 CHUNK( 'GOKD', 0x00016050, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 115, 72 ) "shared\bmp\alert.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 14 14 24 183 8 0 0 0 24 - SHORT 14 14 24 95 8 0 0 0 24 -ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) FILE "shared\sound\alert2.wav" ENDCHUNK - - -CHUNK( 'GLOP', 0x00016051, ) SCRIPT - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x2000016A, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - - - - -SET _curgok = 0x00016001 CHUNK( 'GOKD', 0x00016001, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 500 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 93, 29 ) "shared\bmp\balln1b.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 7 8 7 22 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x0001600d CHUNK( 'GOKD', 0x0001600d, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 0 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - - - - -SET _curgok = 0x0001602e CHUNK( 'GOKD', 0x0001602e, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 168, 56 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - - - - -SET _curgok = 0x0001602b CHUNK( 'GOKD', 0x0001602b, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 500 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x0001600e CHUNK( 'GOKD', 0x0001600e, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 231, 143 ) "shared\bmp\toolhelp.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 14 14 24 183 8 0 0 0 24 - SHORT 14 14 24 95 8 0 0 0 24 -ENDCHUNK - - - - - -SET _curgok = 0x0001602a CHUNK( 'GOKD', 0x0001602a, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 0 0 0xffffffff 0x00000002 0x0001 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 120, 72 ) "shared\bmp\alert.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 14 14 24 191 8 0 0 0 24 - SHORT 14 14 24 95 8 0 0 0 24 -ENDCHUNK - - - - -SET _curgok = 0x0001600c CHUNK( 'GOKD', 0x0001600c, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 899 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x0001600f CHUNK( 'GOKD', 0x0001600f, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 899 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\balln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 0 0 0 32 1 0 0 0 0 - SHORT 0 0 0 32 1 0 0 0 0 -ENDCHUNK - - - - -SET _curgok = 0x00016010 CHUNK( 'GOKD', 0x00016010, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 899 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\balln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 0 0 0 32 1 0 0 0 0 - SHORT 0 0 0 32 1 0 0 0 0 -ENDCHUNK - - - - -SET _curgok = 0x00016003 CHUNK( 'GOKD', 0x00016003, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 899 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\balln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 0 0 0 32 1 0 0 0 0 - SHORT 0 0 0 32 1 0 0 0 0 -ENDCHUNK - - - - -SET _curgok = 0x00016002 CHUNK( 'GOKD', 0x00016002, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 40, 29 ) "shared\bmp\balln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 3 8 7 20 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x0001600a CHUNK( 'GOKD', 0x0001600a, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 40, 29 ) "shared\bmp\vo.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 3 8 7 20 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x00016004 CHUNK( 'GOKD', 0x00016004, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 30, 5 ) "shared\bmp\border1.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 11 20 31 40 1 0 0 0 8 - SHORT 25 8 25 32 1 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016011 CHUNK( 'GOKD', 0x00016011, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 168, 56 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); - - FilterCmdsThis(40040, 0, 0x0021); - FilterCmdsThis(40041, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0001602c CHUNK( 'GOKD', 0x0001602c, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0x0021 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 84, 28 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0001602d CHUNK( 'GOKD', 0x0001602d, ) PACK SHORT BO OSK LONG 0 - LONG 0 100 100 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0x0021 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 84, 28 ) "shared\bmp\tooltip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 4 4 160 8 0 0 0 4 - SHORT 3 3 3 50 8 0 0 0 3 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); - - FilterCmdsThis(40040, 0, 0x0021); - FilterCmdsThis(40041, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00016015 CHUNK( 'GOKD', 0x00016015, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 61 ) "shared\bmp\coblln0.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 5 5 8 151 8 0 0 0 8 - SHORT 4 4 8 106 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016016 CHUNK( 'GOKD', 0x00016016, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 1, 1 ) "shared\bmp\coblln1.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 29 8 36 146 8 0 0 0 8 - SHORT 28 8 32 103 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016017 CHUNK( 'GOKD', 0x00016017, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 1 ) "shared\bmp\coblln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 8 8 58 8 35 60 8 8 - SHORT 41 8 42 108 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016018 CHUNK( 'GOKD', 0x00016018, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 189, 2 ) "shared\bmp\coblln3.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 32 8 147 8 0 0 0 36 - SHORT 30 8 34 103 4 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x00016019 CHUNK( 'GOKD', 0x00016019, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 201, 65 ) "shared\bmp\coblln4.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 46 8 148 8 0 0 0 48 - SHORT 3 8 8 40 4 34 40 4 8 -ENDCHUNK - - - - -SET _curgok = 0x0001601a CHUNK( 'GOKD', 0x0001601a, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 189, 143 ) "shared\bmp\coblln5.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 32 8 148 8 0 0 0 36 - SHORT 3 32 8 102 8 0 0 0 36 -ENDCHUNK - - - - -SET _curgok = 0x0001601b CHUNK( 'GOKD', 0x0001601b, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 155 ) "shared\bmp\coblln6.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 8 8 60 8 33 60 8 8 - SHORT 3 38 8 105 8 0 0 0 44 -ENDCHUNK - - - - -SET _curgok = 0x0001601c CHUNK( 'GOKD', 0x0001601c, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 147 ) "shared\bmp\coblln7.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 30 8 34 149 8 0 0 0 8 - SHORT 3 28 8 101 8 0 0 0 38 -ENDCHUNK - - - - -SET _curgok = 0x0001601d CHUNK( 'GOKD', 0x0001601d, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 66 ) "shared\bmp\coblln8.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 32 8 42 150 8 0 0 0 8 - SHORT 3 8 8 40 4 34 32 4 8 -ENDCHUNK - - - - -SET _curgok = 0x0001601e CHUNK( 'GOKD', 0x0001601e, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 61 ) "shared\bmp\coblln0.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 5 5 8 151 8 0 0 0 8 - SHORT 4 4 8 106 8 0 0 0 8 -ENDCHUNK - - - - -SET _curgok = 0x0001601f CHUNK( 'GOKD', 0x0001601f, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 500 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x00016031 CHUNK( 'GOKD', 0x00016031, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 1 ) "shared\bmp\coblln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 4 8 8 58 8 35 60 8 8 - SHORT 41 8 42 108 8 0 0 0 8 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0001602f CHUNK( 'GOKD', 0x0001602f, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 201, 65 ) "shared\bmp\coblln4.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 8 46 8 148 8 0 0 0 48 - SHORT 8 8 8 40 4 34 40 4 8 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00016032 CHUNK( 'GOKD', 0x00016032, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 61 ) "shared\bmp\coblln0.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 5 5 8 151 8 0 0 0 8 - SHORT 4 4 8 106 8 0 0 0 8 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00016030 CHUNK( 'GOKD', 0x00016030, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 83, 155 ) "shared\bmp\coblln6.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 8 8 8 60 8 33 60 8 8 - SHORT 8 38 8 105 8 0 0 0 44 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If (!FIsDescendent(_parm[0], GidThis())); - DestroyThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - - - - -CHUNK( 'GLOP', 0x000305F0, ) SCRIPT - If(_parm[0] == 0); - fMZAudio = GetProp( 0x23503 ) & 0x01; - If (._cnoSound != 0xFFFFFFFF && !fMZAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F1, ) SCRIPT - If(_parm[0] == 0); - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F2, ) SCRIPT - If(_parm[0] == 0); - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F3, ) SCRIPT - If(_parm[0] == 0); - fMZAudio = GetProp( 0x23503 ) & 0x01; - If (._cnoSound != 0xFFFFFFFF && !fMZAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x000305F4, ) SCRIPT - If(_parm[0] == 0); - fMZAudio = GetProp( 0x23503 ) & 0x01; - If (._cnoSound != 0xFFFFFFFF && !fMZAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - - - - -SET _curgok = 0x00016009 CHUNK( 'GOKD', 0x00016009, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 800 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 93, 29 ) "shared\bmp\balln1a.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 7 7 133 4 0 0 0 7 - SHORT 7 7 7 89 4 0 0 0 7 -ENDCHUNK - - - - -SET _curgok = 0x00016008 CHUNK( 'GOKD', 0x00016008, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 800 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 170, 103 ) "shared\bmp\balln1e.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 32 7 131 4 0 0 0 32 - SHORT 7 7 7 70 4 0 0 0 26 -ENDCHUNK - - - - - -SET _curgok = 0x00016007 CHUNK( 'GOKD', 0x00016007, ) PACK SHORT BO OSK LONG 0 - LONG 0 40 40 800 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 0, 102 ) "shared\bmp\balln1d.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 32 7 32 131 4 0 0 0 7 - SHORT 7 7 7 68 4 0 0 0 26 -ENDCHUNK - - - - -SET _curgok = 0x00016006 CHUNK( 'GOKD', 0x00016006, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 999 -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 40, 29 ) "shared\bmp\balln2.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 7 24 7 64 8 0 0 0 22 - SHORT 7 8 7 20 8 17 8 8 8 -ENDCHUNK - - - - -SET _curgok = 0x00016100 CHUNK( 'GOKD', 0x00016100, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\squishy1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\squishy3.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "shared\bmp\squishy2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "shared\sound\ok.wav" ENDCHUNK -#line 47 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\shared\\biopage.cht" - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 14 "H:\\BUILD\\SOC\\src\\shared\\biopage.cht" - -CHUNK( 'WAVE', 0x00010044, ) FILE "shared\sound\biofound.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010045, ) FILE "shared\sound\bioalrdy.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010046, ) FILE "shared\sound\tbkopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018114, ) FILE "shared\sound\biocancl.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00018115, ) FILE "shared\sound\biopop.wav" ENDCHUNK - -SET _curgok = 0x00015100 CHUNK( 'GOKD', 0x00015100, ) PACK SHORT BO OSK LONG 1 LONG 0 0 0 1000 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\biopage.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, 0x00000040 ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - .count = 0; - - - FilterCmdsThis(100003, 0, 0x0029); - - .snd = (::fBioCtrl ) ? 0x00010046 : 0x00010044; - - RunScriptThis( 0x0021 ); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - ; - ; - - If( ::nBioPage < 0 || ::nBioPage > 41 ); - ; - ::nBioPage = 0; - End; - - - - id = Select( ::nBioPage, 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20, 21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 ); - - If ( !FGobExists( 0x00015102 )); - CreateChildThis( 0x00015102, 0x00015102 ); - End; - SetRepGob( 0x00015102, 0x00000040 + id ); - NumToStr( id, 100 ); - - - If ( !FGobExists( 0x00015109 )); - CreateChildThis( 0x00015109, 0x00015109 ); - End; - - If ( !FGobExists( 0x0001510b )); - CreateChildThis( 0x0001510b, 0x0001510b ); - End; - - - CreateHelpGob( 0x00015109, 0x00015201 + id ); - - - If ( id != 0 ); - CreateHelpGob( 0x0001510b, 0x0001522d ); - Else; - DestroyGob( 0x0001510b ); - End; - - - If( ::fBioCtrl ); - - If( !FGobExists( 0x00015108)); - CreateChildThis( 0x00015108, 0x00015108 ); - End; - - If( !FGobExists( 0x00015104)); - CreateChildThis( 0x00015104, 0x00015104 ); - End; - - If( !FGobExists( 0x00015105 )); - CreateChildThis( 0x00015105, 0x00015105 ); - End; - End; - - - If( !FGobExists( 0x00015103 )); - CreateChildThis( 0x00015103,0x00015103 ); - End; - - - If( .snd != 0xFFFFFFFF ); - - PlaySoundThis('WAVE', .snd, 1, 0x00010000, 1, 1, 998); - .snd = 0xFFFFFFFF; - End; - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - - If ( _parm[2] == Select( .count, 's', 'o', 'c', 'r', 'a', 't', 'e', 's' )); - ++.count; - If( .count == 8 ); - CreateChildThis( 7777, 7777 ); - End; - Else; - .count = 0; - End; - Return( 1 ); -ENDCHUNK - -SET _curgok = 7777 CHUNK( 'GOKD', 7777, ) PACK SHORT BO OSK LONG 2 - LONG 0 160 120 999 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BYTE 1 STN "bldgdata.chk" ENDCHUNK - - - - -SET _curgok = 0x00015108 CHUNK( 'GOKD', 0x00015108, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\biopanel.pbm" ENDCHUNK - - - -SET _curgok = 0x00015103 CHUNK( 'GOKD', 0x00015103, ) PACK SHORT BO OSK LONG 0 LONG 0 511 415 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\cancel.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) PACKEDFILE "shared\pbm\cancelc.pbm" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - - PlaySoundThis('WAVE', 0x00018114, 1, 0x00010000, 1, 4, 998); - If (FGobExists(0x20017)); - EnqueueCid(100008, 0x20017, 0, 0, 0, 0); - End; - DestroyGob( 0x00015100 ); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK - - - -SET _curgok = 0x00015104 CHUNK( 'GOKD', 0x00015104, ) PACK SHORT BO OSK LONG 0 LONG 0 339 410 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\fwd.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) PACKEDFILE "shared\pbm\fwdc.pbm" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - curr = ::nBioPage; - While( 1 ); - ++::nBioPage; - If ( ::nBioPage == 41 ); - ::nBioPage = curr; - Break; - End; - If( ((::nBioPage > 31) ? ( ::fBio2 & (1<<(::nBioPage&31)) ) : ( ::fBio1 & (1<<(::nBioPage&31)) ))); - wav = Rnd(2) + 0x00010042; - PlaySoundThis('WAVE', wav, 1, 0x00010000, 1, 4, 998); - Break; - End; - End; - - RunScriptGob( 0x00015100, 0x0021 ); -ENDCHUNK - - -SET _curgok = 0x00015105 CHUNK( 'GOKD', 0x00015105, ) PACK SHORT BO OSK LONG 0 LONG 0 229 410 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) PACKEDFILE "shared\pbm\back.pbm" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) PACKEDFILE "shared\pbm\backc.pbm" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - curr = ::nBioPage; - While( 1 ); - --::nBioPage; - If ( ::nBioPage < 0 ); - ::nBioPage = curr; - Break; - End; - - If( ((::nBioPage > 31) ? ( ::fBio2 & (1<<(::nBioPage&31)) ) : ( ::fBio1 & (1<<(::nBioPage&31)) ))); - wav = Rnd(2) + 0x00010040; - PlaySoundThis('WAVE', wav, 1, 0x00010000, 1, 4, 998); - Break; - End; - End; - - RunScriptGob( 0x00015100, 0x0021 ); -ENDCHUNK - - - - - -CHUNK( 'WAVE', 0x00010040, ) FILE "shared\sound\bio\TBPAGEB1.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00010041, ) FILE "shared\sound\bio\TBPAGEB2.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00010042, ) FILE "shared\sound\bio\TBPAGEF1.WAV" ENDCHUNK -CHUNK( 'WAVE', 0x00010043, ) FILE "shared\sound\bio\TBPAGEF2.WAV" ENDCHUNK - - - - - - -SET _curgok = 0x00015106 CHUNK( 'GOKD', 0x00015106, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 500 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 300 300 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - -SET _curgok = 0x00015109 CHUNK( 'GOKD', 0x00015109, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 3 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 215 58 422 407 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - -SET _curgok = 0x0001510b CHUNK( 'GOKD', 0x0001510b, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 282 424 344 451 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - - -SET _curgok = 0x00015107 CHUNK( 'GOKD', 0x00015107, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 700 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dftile++ SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK BITMAP( 0x00, 84, 61 ) "shared\bmp\biotip.bmp" ENDCHUNK CHUNK( 'TILE', _dftile, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) CHILD( 'MBMP', _dfmbmp, 0 ) SHORT BO OSK - SHORT 15 15 24 120 8 0 0 0 24 - SHORT 12 12 24 74 8 0 0 0 24 -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0021); - PlaySoundThis('WAVE', 0x00018115 , 1, 0x00010000, 1, 1, 998); - -ENDCHUNK - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyThis(); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - DestroyThis(); -ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x0001522e, ) SCRIPT - - If(_parm[0] != 0); - - If( _parm[4] != 0xFFFFFFFF ); - CreateHelpGob( 0x00015100, _parm[4] ); - End; - Return( 1 ); - End; -ENDCHUNK - - -#line 49 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" -#line 1 "H:\\BUILD\\SOC\\src\\shared\\portbmp.cht" - - - -CHUNK( 'MBMP', 1, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portfolo.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 9, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portfols.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 2, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portok.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 3, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portokc.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 4, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portcan.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 5, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\portcanc.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 7, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\porthm.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 8, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\porthmc.bmp" ENDCHUNK - - -CHUNK( 'WAVE', 0x00010006, ) FILE "shared\sound\util\vzh1016.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010005, ) FILE "shared\sound\util\vzh1017.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00010007, ) FILE "shared\sound\util\vzh1018.wav" ENDCHUNK -#line 50 "H:\\BUILD\\SOC\\src\\shared\\shared.cht" diff --git a/OBJ/WINS/SITOBREN.MAP b/OBJ/WINS/SITOBREN.MAP deleted file mode 100644 index 38391ba5..00000000 --- a/OBJ/WINS/SITOBREN.MAP +++ /dev/null @@ -1,2808 +0,0 @@ - sitobren - - Timestamp is 3078e430 (Mon Oct 09 01:58:24 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0003b71dH .text CODE - 0002:00000000 00003540H .bss DATA - 0003:00000000 000010e0H .rdata DATA - 0004:00000000 0000a350H .data DATA - 0004:0000a350 00000004H .CRT$XCA DATA - 0004:0000a354 00000070H .CRT$XCU DATA - 0004:0000a3c4 00000004H .CRT$XCZ DATA - 0004:0000a3c8 00000004H .CRT$XIA DATA - 0004:0000a3cc 0000000cH .CRT$XIC DATA - 0004:0000a3d8 00000004H .CRT$XIZ DATA - 0004:0000a3dc 00000004H .CRT$XPA DATA - 0004:0000a3e0 00000004H .CRT$XPX DATA - 0004:0000a3e4 00000004H .CRT$XPZ DATA - 0004:0000a3e8 00000004H .CRT$XTA DATA - 0004:0000a3ec 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000c8H .idata$4 DATA - 0005:0000012c 000000c8H .idata$5 DATA - 0005:000001f4 00000352H .idata$6 DATA - 0006:00000000 00000258H CONST DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 00003090H .debug$F DATA - 0008:00003800 00000000H .debug$G DATA - 0008:00003800 00000033H .debug$H DATA - 0008:fffab000 00000000H .debug$P DATA - 0008:fffab000 00000000H .debug$S DATA - 0008:fffab000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 _main 00401000 f sitobren.obj - 0001:00000730 ?FWouldBe@S2B@@SGHJ@Z 00401730 f sitobren.obj - 0001:00000750 ?FIs@S2B@@UAEHJ@Z 00401750 f sitobren.obj - 0001:00000760 ?Cls@S2B@@UAEJXZ 00401760 f sitobren.obj - 0001:00000770 ?FWouldBe@S2BLX@@SGHJ@Z 00401770 f sitobren.obj - 0001:00000790 ?FIs@S2BLX@@UAEHJ@Z 00401790 f sitobren.obj - 0001:000007a0 ?Cls@S2BLX@@UAEJXZ 004017a0 f sitobren.obj - 0001:000007b0 ?Ps2bNew@S2B@@SGPAV1@PAVFIL@@HIHHPAD@Z 004017b0 f sitobren.obj - 0001:00000840 ??0S2B@@IAE@HIHHPAD@Z 00401840 f sitobren.obj - 0001:00000b30 ??1S2B@@MAE@XZ 00401b30 f sitobren.obj - 0001:00000b90 ?_DumpHeader@S2B@@IAEXKKPAVSTN@@H@Z 00401b90 f sitobren.obj - 0001:00000ce0 ?FConvertSI@S2B@@QAEHPAVMSNK@@0PAVFNI@@K@Z 00401ce0 f sitobren.obj - 0001:00000f50 ?_FReadCmdline@S2B@@IAAHPADPAHQBU_scrp@@ZZ 00401f50 f sitobren.obj - 0001:000011c0 ?_FDoTtActor@S2B@@IAEHPAH@Z 004021c0 f sitobren.obj - 0001:00001460 ?_FDoTtActionS2B@S2B@@IAEHXZ 00402460 f sitobren.obj - 0001:00001c60 ?_FInitGlpiCost@S2B@@IAEHH@Z 00402c60 f sitobren.obj - 0001:00001d80 ?_FDoTtBackgroundS2B@S2B@@IAEHXZ 00402d80 f sitobren.obj - 0001:00001f10 ?_FDoTtCostume@S2B@@IAEHXZ 00402f10 f sitobren.obj - 0001:00002230 ?_FDumpLites@S2B@@IAEHHPAVSTN@@@Z 00403230 f sitobren.obj - 0001:000023a0 ?_FDumpCameras@S2B@@IAEHHPAVSTN@@HH@Z 004033a0 f sitobren.obj - 0001:00002860 ?_FZbmpFromZpic@S2B@@IAEHPAVSTN@@KHJJPAUCAM@@@Z 00403860 f sitobren.obj - 0001:00002da0 ?_FBvec3Read@S2B@@IAEHPAVS2BLX@@PAUbr_vector3@@PAU_s2btk@@@Z 00403da0 f sitobren.obj - 0001:00002e10 ?_Bmat34FromVec3@S2B@@IAEXPAUbr_vector3@@PAUbr_matrix34@@@Z 00403e10 f sitobren.obj - 0001:00002f10 ?_ReadLite@S2B@@IAEXPAVSTN@@PAULITE@@@Z 00403f10 f sitobren.obj - 0001:000031c0 ?_ReadCam@S2B@@IAEXPAVSTN@@PAUCAM@@PAPAVGL@@@Z 004041c0 f sitobren.obj - 0001:00003760 ?_FProcessModel@S2B@@IAEHPAUDK_model@@Ubr_matrix34@@PAPAU_bmhr@@PAVSTN@@PAU4@H@Z 00404760 f sitobren.obj - 0001:00003c60 ?_PbmhrFromModel@S2B@@IAEPAU_bmhr@@PAUDK_model@@PAUbr_matrix34@@PAPAU2@PAU2@HH@Z 00404c60 f sitobren.obj - 0001:000040a0 ?_TextureFileFromModel@S2B@@IAEXPAUDK_model@@PAU_bmhr@@H@Z 004050a0 f sitobren.obj - 0001:000041f0 ?_FTmapFromBmp@S2B@@IAEHPAU_bmhr@@KPAVSTN@@@Z 004051f0 f sitobren.obj - 0001:00004560 ?_FFlushTmaps@S2B@@IAEHXZ 00405560 f sitobren.obj - 0001:000046d0 ?_BrsdwrFromModel@S2B@@IAEJPAUDK_model@@QAJ@Z 004056d0 f sitobren.obj - 0001:00004760 ?_CopyVertices@S2B@@IAEXPAUDK_Vertex@@PAXJ@Z 00405760 f sitobren.obj - 0001:00004a10 ?_CopyFaces@S2B@@IAEXPAUDK_Polygon@@PAXJQAUbr_vertex@@J@Z 00405a10 f sitobren.obj - 0001:00004b20 ?_FDoBodyPart@S2B@@IAEHPAU_bmhr@@J@Z 00405b20 f sitobren.obj - 0001:00004f70 ?_ApplyBmdlXF@S2B@@IAEXPAU_bmhr@@@Z 00405f70 f sitobren.obj - 0001:00004fb0 ?_FProcessBmhr@S2B@@IAEHPAPAU_bmhr@@F@Z 00405fb0 f sitobren.obj - 0001:00005190 ?_FEnsureOneRoot@S2B@@IAEHPAPAU_bmhr@@@Z 00406190 f sitobren.obj - 0001:000051a0 ?_InitBmhr@S2B@@IAEXPAU_bmhr@@@Z 004061a0 f sitobren.obj - 0001:00005260 ?FModelFixWrapping@@YGHPAUbr_model@@PAH@Z 00406260 f sitobren.obj - 0001:00005780 ?_FlushTmplKids@S2B@@IAEXXZ 00406780 f sitobren.obj - 0001:00005d10 ?_FModlfToBmdl@S2B@@IAEHPAUMODLF@@PAPAUbr_model@@@Z 00406d10 f sitobren.obj - 0001:00005d80 ?_FBmdlToModlf@S2B@@IAEHPAUbr_model@@PAPAUMODLF@@PAJ@Z 00406d80 f sitobren.obj - 0001:00005ea0 ?_FSetCps@S2B@@IAEHPAU_bmhr@@PAUCPS@@@Z 00406ea0 f sitobren.obj - 0001:00005f40 ?_FChidFromModlf@S2B@@IAEHPAU_bmhr@@PAKPAPAU_bmdb@@@Z 00406f40 f sitobren.obj - 0001:00006100 ?_FAddBmdlParent@S2B@@IAEHPAU_bmdb@@PAUKID@@@Z 00407100 f sitobren.obj - 0001:00006140 ?_FInsertPhshdb@S2B@@IAEHPAU_hshdb@@PAVGL@@@Z 00407140 f sitobren.obj - 0001:000061c0 ?_FIphshdbFromLuHash@S2B@@IAEHIPAJPAVGL@@@Z 004071c0 f sitobren.obj - 0001:00006260 ?_PbmdbFindModlf@S2B@@IAEPAU_bmdb@@PAUMODLF@@JPAI@Z 00407260 f sitobren.obj - 0001:00006300 ?_InitCrcTable@S2B@@IAEXXZ 00407300 f sitobren.obj - 0001:00006340 ?_LuHashBytesNoTable@S2B@@IAEIIPAXJ@Z 00407340 f sitobren.obj - 0001:00006390 ?_LuHashBytes@S2B@@IAEIIPAXJ@Z 00407390 f sitobren.obj - 0001:000063d0 ?_FImat34GetBmat34@S2B@@IAEHPAUbr_matrix34@@PAJ@Z 004073d0 f sitobren.obj - 0001:00006510 ?_DisposeBmhr@S2B@@IAEXPAPAU_bmhr@@@Z 00407510 f sitobren.obj - 0001:00006570 ?PglcrngFromPal@@YGPAVGL@@PAV1@@Z 00407570 f sitobren.obj - 0001:00006700 ?LwcrngNearestBrclr@@YGJKPAVGL@@0@Z 00407700 f sitobren.obj - 0001:00006840 ?_ReadNumTok@S2BLX@@MAEXPAUTOK@@DJJ@Z 00407840 f sitobren.obj - 0001:000069b0 ?FGetS2btk@S2BLX@@QAEHPAU_s2btk@@@Z 004079b0 f sitobren.obj - 0001:00006ab0 ?FGetTok@S2BLX@@UAEHPAUTOK@@@Z 00407ab0 f sitobren.obj - 0001:00006b20 ?FTextFromTt@S2BLX@@UAEHJPAVSTN@@@Z 00407b20 f sitobren.obj - 0001:00006b70 ?FTextFromS2btk@S2BLX@@QAEHPAU_s2btk@@PAVSTN@@@Z 00407b70 f sitobren.obj - 0001:00006c90 ??_EBASE@@UAEPAXI@Z 00407c90 f sitobren.obj - 0001:00006c90 ??_GBASE@@UAEPAXI@Z 00407c90 f sitobren.obj - 0001:00006cb0 ??_GS2BLX@@UAEPAXI@Z 00407cb0 f sitobren.obj - 0001:00006cb0 ??_ES2BLX@@UAEPAXI@Z 00407cb0 f sitobren.obj - 0001:00006ce0 ??_GS2B@@MAEPAXI@Z 00407ce0 f sitobren.obj - 0001:00006ce0 ??_ES2B@@MAEPAXI@Z 00407ce0 f sitobren.obj - 0001:00006cfb _SI_swap2byte 00407cfb f byteswap.obj - 0001:00006d16 _SI_swap4byte 00407d16 f byteswap.obj - 0001:00006d47 _SI_swap8byte 00407d47 f byteswap.obj - 0001:00006da5 _SI_fix_SI_FileChunk 00407da5 f byteswap.obj - 0001:00006dc1 _SI_byteswap_fread 00407dc1 f byteswap.obj - 0001:00006e3e _SI_Vector_fread 00407e3e f byteswap.obj - 0001:00006e8e _SI_3doubles_fread 00407e8e f byteswap.obj - 0001:00006ec9 _SI_RGBA_fread 00407ec9 f byteswap.obj - 0001:00006f25 _SI_RGB_fread 00407f25 f byteswap.obj - 0001:00006f75 _SI_Matrix_fread 00407f75 f byteswap.obj - 0001:00006fb7 _SI_FileChunk_fread 00407fb7 f byteswap.obj - 0001:00006ff0 ?FWouldBe@USAC@@SGHJ@Z 00407ff0 f utilglob.obj - 0001:00007010 ?FIs@USAC@@UAEHJ@Z 00408010 f utilglob.obj - 0001:00007020 ?Cls@USAC@@UAEJXZ 00408020 f utilglob.obj - 0001:00007100 ??_GKCDC@@UAEPAXI@Z 00408100 f utilglob.obj - 0001:00007100 ??_EKCDC@@UAEPAXI@Z 00408100 f utilglob.obj - 0001:00007120 ?FCanDo@KCDC@@UAEHHJ@Z 00408120 f utilglob.obj - 0001:00007160 ?FWouldBe@BLL@@SGHJ@Z 00408160 f base.obj - 0001:00007180 ?FIs@BLL@@UAEHJ@Z 00408180 f base.obj - 0001:00007190 ?Cls@BLL@@UAEJXZ 00408190 f base.obj - 0001:000071a0 ?Cls@BASE@@UAEJXZ 004081a0 f base.obj - 0001:000071b0 ?FIs@BASE@@UAEHJ@Z 004081b0 f base.obj - 0001:000071d0 ?FWouldBe@BASE@@SGHJ@Z 004081d0 f base.obj - 0001:000071f0 ??0BASE@@QAE@XZ 004081f0 f base.obj - 0001:00007200 ?AddRef@BASE@@UAEXXZ 00408200 f base.obj - 0001:00007210 ?Release@BASE@@UAEXXZ 00408210 f base.obj - 0001:00007230 ??2BASE@@SGPAXI@Z 00408230 f base.obj - 0001:00007260 ??3BASE@@SGXPAX@Z 00408260 f base.obj - 0001:00007270 ??0BLL@@QAE@XZ 00408270 f base.obj - 0001:00007290 ??1BLL@@UAE@XZ 00408290 f base.obj - 0001:000072b0 ?_Attach@BLL@@IAEXPAX@Z 004082b0 f base.obj - 0001:00007320 ??_EBLL@@UAEPAXI@Z 00408320 f base.obj - 0001:00007320 ??_GBLL@@UAEPAXI@Z 00408320 f base.obj - 0001:00007340 ?FillPb@@YGXPAXJE@Z 00408340 f utilcopy.obj - 0001:00007380 ?ClearPb@@YGXPAXJ@Z 00408380 f utilcopy.obj - 0001:000073a0 ?ReversePb@@YGXPAXJ@Z 004083a0 f utilcopy.obj - 0001:000073d0 ?SwapBlocks@@YGXPAXJJ@Z 004083d0 f utilcopy.obj - 0001:00007400 ?SwapPb@@YGXPAX0J@Z 00408400 f utilcopy.obj - 0001:00007460 ?FEqualRgb@@YGHPAX0J@Z 00408460 f utilcopy.obj - 0001:000074a0 ?CbEqualRgb@@YGJPAX0J@Z 004084a0 f utilcopy.obj - 0001:00007500 ?FcmpCompareRgb@@YGKPAX0J@Z 00408500 f utilcopy.obj - 0001:00007540 ?CopyPb@@YGXPAX0J@Z 00408540 f utilcopy.obj - 0001:00007570 ?BltPb@@YGXPAX0J@Z 00408570 f utilcopy.obj - 0001:000075e0 ?FWouldBe@ERS@@SGHJ@Z 004085e0 f utilerro.obj - 0001:00007600 ?FIs@ERS@@UAEHJ@Z 00408600 f utilerro.obj - 0001:00007610 ?Cls@ERS@@UAEJXZ 00408610 f utilerro.obj - 0001:00007620 ??0ERS@@QAE@XZ 00408620 f utilerro.obj - 0001:00007650 ?Push@ERS@@UAEXJ@Z 00408650 f utilerro.obj - 0001:000076a0 ?FPop@ERS@@UAEHPAJ@Z 004086a0 f utilerro.obj - 0001:000076f0 ?Clear@ERS@@UAEXXZ 004086f0 f utilerro.obj - 0001:00007710 ?Cerc@ERS@@UAEJXZ 00408710 f utilerro.obj - 0001:00007720 ?FIn@ERS@@UAEHJ@Z 00408720 f utilerro.obj - 0001:00007770 ?ErcGet@ERS@@UAEJJ@Z 00408770 f utilerro.obj - 0001:000077b0 ?Flush@ERS@@UAEXJ@Z 004087b0 f utilerro.obj - 0001:00007850 ??_EERS@@UAEPAXI@Z 00408850 f utilerro.obj - 0001:00007850 ??_GERS@@UAEPAXI@Z 00408850 f utilerro.obj - 0001:00007880 ?LwRoundAway@@YGJJJ@Z 00408880 f utilint.obj - 0001:000078b0 ?LwRoundToward@@YGJJJ@Z 004088b0 f utilint.obj - 0001:000078e0 ?SwapBytesBom@@YGXPAXK@Z 004088e0 f utilint.obj - 0001:00007940 ?SwapBytesRglw@@YGXPAXJ@Z 00408940 f utilint.obj - 0001:00007970 ??0USAC@@QAE@XZ 00408970 f utilint.obj - 0001:000079a0 ?FReadable@DVER@@QAEHFF@Z 004089a0 f utilint.obj - 0001:000079e0 ??_GUSAC@@UAEPAXI@Z 004089e0 f utilint.obj - 0001:000079e0 ??_EUSAC@@UAEPAXI@Z 004089e0 f utilint.obj - 0001:00007a00 ?FAllocPv@@YGHPAPAXJKJ@Z 00408a00 f utilmem.obj - 0001:00007ad0 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00408ad0 f utilmem.obj - 0001:00007bc0 ?FreePpv@@YGXPAPAX@Z 00408bc0 f utilmem.obj - 0001:00007c00 ?FWouldBe@RND@@SGHJ@Z 00408c00 f utilrnd.obj - 0001:00007c20 ?FIs@RND@@UAEHJ@Z 00408c20 f utilrnd.obj - 0001:00007c30 ?Cls@RND@@UAEJXZ 00408c30 f utilrnd.obj - 0001:00007c40 ?FWouldBe@SFL@@SGHJ@Z 00408c40 f utilrnd.obj - 0001:00007c60 ?FIs@SFL@@UAEHJ@Z 00408c60 f utilrnd.obj - 0001:00007c70 ?Cls@SFL@@UAEJXZ 00408c70 f utilrnd.obj - 0001:00007c80 ??0RND@@QAE@K@Z 00408c80 f utilrnd.obj - 0001:00007cc0 ?LwNext@RND@@UAEJJ@Z 00408cc0 f utilrnd.obj - 0001:00007cf0 ??0SFL@@QAE@K@Z 00408cf0 f utilrnd.obj - 0001:00007d20 ??1SFL@@UAE@XZ 00408d20 f utilrnd.obj - 0001:00007d40 ?Shuffle@SFL@@QAEXJ@Z 00408d40 f utilrnd.obj - 0001:00007d80 ?_ShuffleCore@SFL@@IAEXXZ 00408d80 f utilrnd.obj - 0001:00007dd0 ?_FEnsureHq@SFL@@IAEHJ@Z 00408dd0 f utilrnd.obj - 0001:00007e40 ?LwNext@SFL@@UAEJJ@Z 00408e40 f utilrnd.obj - 0001:00007ed0 ??_ERND@@UAEPAXI@Z 00408ed0 f utilrnd.obj - 0001:00007ed0 ??_GRND@@UAEPAXI@Z 00408ed0 f utilrnd.obj - 0001:00007ef0 ??_GSFL@@UAEPAXI@Z 00408ef0 f utilrnd.obj - 0001:00007ef0 ??_ESFL@@UAEPAXI@Z 00408ef0 f utilrnd.obj - 0001:00007f10 ??4STN@@QAEAAV0@AAV0@@Z 00408f10 f utilstr.obj - 0001:00007f30 ?SetRgch@STN@@QAEXPADJ@Z 00408f30 f utilstr.obj - 0001:00007f70 ?SetSzs@STN@@QAEXPAD@Z 00408f70 f utilstr.obj - 0001:00007f90 ?Delete@STN@@QAEXJJ@Z 00408f90 f utilstr.obj - 0001:00007ff0 ?FAppendRgch@STN@@QAEHPADJ@Z 00408ff0 f utilstr.obj - 0001:00008040 ?FInsertRgch@STN@@QAEHJPADJ@Z 00409040 f utilstr.obj - 0001:00008100 ?FEqualRgch@STN@@QAEHPADJ@Z 00409100 f utilstr.obj - 0001:00008130 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00409130 f utilstr.obj - 0001:00008150 ?CbData@STN@@QAEJXZ 00409150 f utilstr.obj - 0001:00008160 ?GetData@STN@@QAEXPAX@Z 00409160 f utilstr.obj - 0001:000081a0 ?FFormatSz@STN@@QAAHPADZZ 004091a0 f utilstr.obj - 0001:000081c0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004091c0 f utilstr.obj - 0001:00008540 ?FExpandControls@STN@@QAEHXZ 00409540 f utilstr.obj - 0001:00008650 ?CchSz@@YGJPAD@Z 00409650 f utilstr.obj - 0001:00008670 ?FEqualUserRgch@@YGHPADJ0JK@Z 00409670 f utilstr.obj - 0001:00008760 ?UpperRgchs@@YGXPADJ@Z 00409760 f utilstr.obj - 0001:000087d0 ?FAllocHq@@YGHPAPAXJKJ@Z 004097d0 f memwin.obj - 0001:00008840 ?FResizePhq@@YGHPAPAXJKJ@Z 00409840 f memwin.obj - 0001:000088e0 ?FreePhq@@YGXPAPAX@Z 004098e0 f memwin.obj - 0001:00008910 ?CbOfHq@@YGJPAX@Z 00409910 f memwin.obj - 0001:00008920 ?PvLockHq@@YGPAXPAX@Z 00409920 f memwin.obj - 0001:00008930 ?UnlockHq@@YGXPAX@Z 00409930 f memwin.obj - 0001:00008970 ?FWouldBe@CFL@@SGHJ@Z 00409970 f chunk.obj - 0001:00008990 ?FIs@CFL@@UAEHJ@Z 00409990 f chunk.obj - 0001:000089a0 ?Cls@CFL@@UAEJXZ 004099a0 f chunk.obj - 0001:000089b0 ?FWouldBe@CGE@@SGHJ@Z 004099b0 f chunk.obj - 0001:000089d0 ?FIs@CGE@@UAEHJ@Z 004099d0 f chunk.obj - 0001:000089e0 ?Cls@CGE@@UAEJXZ 004099e0 f chunk.obj - 0001:000089f0 ??0CFL@@AAE@XZ 004099f0 f chunk.obj - 0001:00008a10 ??1CFL@@EAE@XZ 00409a10 f chunk.obj - 0001:00008ab0 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00409ab0 f chunk.obj - 0001:00008b80 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00409b80 f chunk.obj - 0001:00008ba0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00409ba0 f chunk.obj - 0001:00008be0 ?FSetGrfcfl@CFL@@QAEHKK@Z 00409be0 f chunk.obj - 0001:00008c80 ?Release@CFL@@UAEXXZ 00409c80 f chunk.obj - 0001:00008ca0 ?_TValidIndex@CFL@@AAEHXZ 00409ca0 f chunk.obj - 0001:00009000 ?_FReadIndex@CFL@@AAEHXZ 0040a000 f chunk.obj - 0001:00009670 ?_ReadFreeMap@CFL@@AAEXXZ 0040a670 f chunk.obj - 0001:000096f0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 0040a6f0 f chunk.obj - 0001:000097f0 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0040a7f0 f chunk.obj - 0001:00009850 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0040a850 f chunk.obj - 0001:00009890 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0040a890 f chunk.obj - 0001:000098f0 ?_FCreateExtra@CFL@@AAEHXZ 0040a8f0 f chunk.obj - 0001:00009920 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0040a920 f chunk.obj - 0001:00009a30 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0040aa30 f chunk.obj - 0001:00009ad0 ?_FreeFpCb@CFL@@AAEXHJJ@Z 0040aad0 f chunk.obj - 0001:00009cb0 ?Ckid@CFL@@QAEJKK@Z 0040acb0 f chunk.obj - 0001:00009d00 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 0040ad00 f chunk.obj - 0001:00009d80 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 0040ad80 f chunk.obj - 0001:00009dc0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 0040adc0 f chunk.obj - 0001:00009ea0 ??0CGE@@QAE@XZ 0040aea0 f chunk.obj - 0001:00009ec0 ??1CGE@@UAE@XZ 0040aec0 f chunk.obj - 0001:00009ef0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 0040aef0 f chunk.obj - 0001:00009f30 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 0040af30 f chunk.obj - 0001:0000a110 ??_ECFL@@EAEPAXI@Z 0040b110 f chunk.obj - 0001:0000a110 ??_GCFL@@EAEPAXI@Z 0040b110 f chunk.obj - 0001:0000a130 ??_GCGE@@UAEPAXI@Z 0040b130 f chunk.obj - 0001:0000a130 ??_ECGE@@UAEPAXI@Z 0040b130 f chunk.obj - 0001:0000a150 ?FWouldBe@CODM@@SGHJ@Z 0040b150 f codec.obj - 0001:0000a170 ?FIs@CODM@@UAEHJ@Z 0040b170 f codec.obj - 0001:0000a180 ?Cls@CODM@@UAEJXZ 0040b180 f codec.obj - 0001:0000a190 ?FWouldBe@CODC@@SGHJ@Z 0040b190 f codec.obj - 0001:0000a1b0 ??0CODM@@QAE@PAVCODC@@J@Z 0040b1b0 f codec.obj - 0001:0000a1f0 ??1CODM@@UAE@XZ 0040b1f0 f codec.obj - 0001:0000a270 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 0040b270 f codec.obj - 0001:0000a2c0 ?FCanDo@CODM@@UAEHJH@Z 0040b2c0 f codec.obj - 0001:0000a2f0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 0040b2f0 f codec.obj - 0001:0000a370 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 0040b370 f codec.obj - 0001:0000a420 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 0040b420 f codec.obj - 0001:0000a540 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0040b540 f codec.obj - 0001:0000a750 ??_GCODM@@UAEPAXI@Z 0040b750 f codec.obj - 0001:0000a750 ??_ECODM@@UAEPAXI@Z 0040b750 f codec.obj - 0001:0000a770 ?FWouldBe@KCDC@@SGHJ@Z 0040b770 f codkauai.obj - 0001:0000a790 ?FIs@KCDC@@UAEHJ@Z 0040b790 f codkauai.obj - 0001:0000a7a0 ?Cls@KCDC@@UAEJXZ 0040b7a0 f codkauai.obj - 0001:0000a7b0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0040b7b0 f codkauai.obj - 0001:0000a830 ?Set@BITA@@QAEXPAXJ@Z 0040b830 f codkauai.obj - 0001:0000a850 ?FWriteBits@BITA@@QAEHKJ@Z 0040b850 f codkauai.obj - 0001:0000a910 ?FWriteLogEncoded@BITA@@QAEHK@Z 0040b910 f codkauai.obj - 0001:0000a960 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0040b960 f codkauai.obj - 0001:0000ac70 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0040bc70 f codkauai.obj - 0001:0000e5a0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040f5a0 f codkauai.obj - 0001:0000e980 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040f980 f codkauai.obj - 0001:00010f10 ?FWouldBe@BACO@@SGHJ@Z 00411f10 f crf.obj - 0001:00010f30 ?FIs@BACO@@UAEHJ@Z 00411f30 f crf.obj - 0001:00010f40 ?Cls@BACO@@UAEJXZ 00411f40 f crf.obj - 0001:00010f50 ??0BACO@@IAE@XZ 00411f50 f crf.obj - 0001:00010f80 ??1BACO@@MAE@XZ 00411f80 f crf.obj - 0001:00010fb0 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00411fb0 f crf.obj - 0001:00010ff0 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00411ff0 f crf.obj - 0001:00011000 ?CbOnFile@BACO@@UAEJXZ 00412000 f crf.obj - 0001:00011010 ?Release@BACO@@UAEXXZ 00412010 f crf.obj - 0001:00011060 ?Detach@BACO@@UAEXXZ 00412060 f crf.obj - 0001:000110a0 ?SetCrep@BACO@@UAEXJ@Z 004120a0 f crf.obj - 0001:000110d0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 004120d0 f crf.obj - 0001:00011120 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00412120 f crf.obj - 0001:000111a0 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 004121a0 f crf.obj - 0001:000112e0 ??_EBACO@@MAEPAXI@Z 004122e0 f crf.obj - 0001:000112e0 ??_GBACO@@MAEPAXI@Z 004122e0 f crf.obj - 0001:00011310 ?FWouldBe@FIL@@SGHJ@Z 00412310 f file.obj - 0001:00011330 ?FIs@FIL@@UAEHJ@Z 00412330 f file.obj - 0001:00011340 ?Cls@FIL@@UAEJXZ 00412340 f file.obj - 0001:00011350 ?FWouldBe@BLCK@@SGHJ@Z 00412350 f file.obj - 0001:00011370 ?FIs@BLCK@@UAEHJ@Z 00412370 f file.obj - 0001:00011380 ?Cls@BLCK@@UAEJXZ 00412380 f file.obj - 0001:00011390 ??0FIL@@IAE@PAVFNI@@K@Z 00412390 f file.obj - 0001:00011400 ??1FIL@@MAE@XZ 00412400 f file.obj - 0001:00011450 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00412450 f file.obj - 0001:000114f0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 004124f0 f file.obj - 0001:00011580 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00412580 f file.obj - 0001:00011610 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00412610 f file.obj - 0001:00011670 ?FSetGrffil@FIL@@QAEHKK@Z 00412670 f file.obj - 0001:00011700 ?Release@FIL@@UAEXXZ 00412700 f file.obj - 0001:00011730 ?GetStnPath@FIL@@QAEXPAVSTN@@@Z 00412730 f file.obj - 0001:00011760 ?SetTemp@FIL@@QAEXH@Z 00412760 f file.obj - 0001:000117d0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 004127d0 f file.obj - 0001:00011820 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00412820 f file.obj - 0001:00011870 ?FCopy@FLO@@QAEHPAU1@@Z 00412870 f file.obj - 0001:00011940 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00412940 f file.obj - 0001:000119c0 ??0BLCK@@QAE@PAUFLO@@H@Z 004129c0 f file.obj - 0001:00011a10 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00412a10 f file.obj - 0001:00011a50 ??0BLCK@@QAE@XZ 00412a50 f file.obj - 0001:00011a70 ??1BLCK@@UAE@XZ 00412a70 f file.obj - 0001:00011a90 ?Set@BLCK@@QAEXPAUFLO@@H@Z 00412a90 f file.obj - 0001:00011ad0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00412ad0 f file.obj - 0001:00011b10 ?SetHq@BLCK@@QAEXPAPAXH@Z 00412b10 f file.obj - 0001:00011b50 ?Free@BLCK@@QAEXXZ 00412b50 f file.obj - 0001:00011b80 ?HqFree@BLCK@@QAEPAXH@Z 00412b80 f file.obj - 0001:00011c30 ?Cb@BLCK@@QAEJH@Z 00412c30 f file.obj - 0001:00011c50 ?FSetTemp@BLCK@@QAEHJH@Z 00412c50 f file.obj - 0001:00011ce0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00412ce0 f file.obj - 0001:00011d70 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00412d70 f file.obj - 0001:00011e00 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00412e00 f file.obj - 0001:00011e80 ?FPackData@BLCK@@QAEHJ@Z 00412e80 f file.obj - 0001:00011fa0 ?FUnpackData@BLCK@@QAEHXZ 00412fa0 f file.obj - 0001:000120d0 ??_GFIL@@MAEPAXI@Z 004130d0 f file.obj - 0001:000120d0 ??_EFIL@@MAEPAXI@Z 004130d0 f file.obj - 0001:000120f0 ??_GBLCK@@UAEPAXI@Z 004130f0 f file.obj - 0001:000120f0 ??_EBLCK@@UAEPAXI@Z 004130f0 f file.obj - 0001:00012160 ?_FOpen@FIL@@IAEHHK@Z 00413160 f filewin.obj - 0001:00012260 ?_Close@FIL@@IAEXH@Z 00413260 f filewin.obj - 0001:000122d0 ?Flush@FIL@@QAEXXZ 004132d0 f filewin.obj - 0001:00012300 ?_SetFpPos@FIL@@IAEXJ@Z 00413300 f filewin.obj - 0001:00012360 ?FSetFpMac@FIL@@QAEHJ@Z 00413360 f filewin.obj - 0001:000123f0 ?FpMac@FIL@@QAEJXZ 004133f0 f filewin.obj - 0001:00012480 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00413480 f filewin.obj - 0001:00012530 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00413530 f filewin.obj - 0001:00012610 ?FWouldBe@FNI@@SGHJ@Z 00413610 f fniwin.obj - 0001:00012630 ?FIs@FNI@@UAEHJ@Z 00413630 f fniwin.obj - 0001:00012640 ?Cls@FNI@@UAEJXZ 00413640 f fniwin.obj - 0001:00012650 ?SetNil@FNI@@QAEXXZ 00413650 f fniwin.obj - 0001:00012660 ??0FNI@@QAE@XZ 00413660 f fniwin.obj - 0001:00012690 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00413690 f fniwin.obj - 0001:000127e0 ?FSearchInPath@FNI@@QAEHPAVSTN@@0@Z 004137e0 f fniwin.obj - 0001:00012880 ?FGetUnique@FNI@@QAEHJ@Z 00413880 f fniwin.obj - 0001:00012990 ?FGetTemp@FNI@@QAEHXZ 00413990 f fniwin.obj - 0001:00012a30 ?Ftg@FNI@@QAEJXZ 00413a30 f fniwin.obj - 0001:00012a40 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00413a40 f fniwin.obj - 0001:00012ab0 ?FChangeFtg@FNI@@QAEHJ@Z 00413ab0 f fniwin.obj - 0001:00012b60 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00413b60 f fniwin.obj - 0001:00012ba0 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00413ba0 f fniwin.obj - 0001:00012bb0 ?TExists@FNI@@QAEHXZ 00413bb0 f fniwin.obj - 0001:00012cb0 ?FEqual@FNI@@QAEHPAV1@@Z 00413cb0 f fniwin.obj - 0001:00012cd0 ?_CchExt@FNI@@AAEJXZ 00413cd0 f fniwin.obj - 0001:00012d10 ?_SetFtgFromName@FNI@@AAEXXZ 00413d10 f fniwin.obj - 0001:00012d90 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00413d90 f fniwin.obj - 0001:00012ee0 ??_EFNI@@UAEPAXI@Z 00413ee0 f fniwin.obj - 0001:00012ee0 ??_GFNI@@UAEPAXI@Z 00413ee0 f fniwin.obj - 0001:00012f00 ?FWouldBe@GRPB@@SGHJ@Z 00413f00 f groups.obj - 0001:00012f20 ?FIs@GRPB@@UAEHJ@Z 00413f20 f groups.obj - 0001:00012f30 ?Cls@GRPB@@UAEJXZ 00413f30 f groups.obj - 0001:00012f40 ?FWouldBe@GLB@@SGHJ@Z 00413f40 f groups.obj - 0001:00012f60 ?FIs@GLB@@UAEHJ@Z 00413f60 f groups.obj - 0001:00012f70 ?Cls@GLB@@UAEJXZ 00413f70 f groups.obj - 0001:00012f80 ?FWouldBe@GL@@SGHJ@Z 00413f80 f groups.obj - 0001:00012fa0 ?FIs@GL@@UAEHJ@Z 00413fa0 f groups.obj - 0001:00012fb0 ?Cls@GL@@UAEJXZ 00413fb0 f groups.obj - 0001:00012fc0 ?FWouldBe@GGB@@SGHJ@Z 00413fc0 f groups.obj - 0001:00012fe0 ?FIs@GGB@@UAEHJ@Z 00413fe0 f groups.obj - 0001:00012ff0 ?Cls@GGB@@UAEJXZ 00413ff0 f groups.obj - 0001:00013000 ?FWouldBe@GG@@SGHJ@Z 00414000 f groups.obj - 0001:00013020 ?FIs@GG@@UAEHJ@Z 00414020 f groups.obj - 0001:00013030 ?Cls@GG@@UAEJXZ 00414030 f groups.obj - 0001:00013040 ??1GRPB@@UAE@XZ 00414040 f groups.obj - 0001:00013070 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00414070 f groups.obj - 0001:00013150 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00414150 f groups.obj - 0001:00013220 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00414220 f groups.obj - 0001:00013270 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00414270 f groups.obj - 0001:00013340 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 00414340 f groups.obj - 0001:00013400 ??0GLB@@IAE@J@Z 00414400 f groups.obj - 0001:00013430 ?QvGet@GLB@@QAEPAXJ@Z 00414430 f groups.obj - 0001:00013450 ?Get@GLB@@QAEXJPAX@Z 00414450 f groups.obj - 0001:00013470 ?Put@GLB@@QAEXJPAX@Z 00414470 f groups.obj - 0001:00013490 ?PvLock@GLB@@QAEPAXJ@Z 00414490 f groups.obj - 0001:000134b0 ?PglNew@GL@@SGPAV1@JJ@Z 004144b0 f groups.obj - 0001:00013510 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 00414510 f groups.obj - 0001:00013570 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 00414570 f groups.obj - 0001:000135c0 ??0GL@@IAE@J@Z 004145c0 f groups.obj - 0001:000135e0 ?FFree@GL@@UAEHJ@Z 004145e0 f groups.obj - 0001:00013600 ?CbOnFile@GL@@UAEJXZ 00414600 f groups.obj - 0001:00013610 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00414610 f groups.obj - 0001:00013680 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00414680 f groups.obj - 0001:00013750 ?FInsert@GL@@QAEHJPAXJ@Z 00414750 f groups.obj - 0001:000137f0 ?Delete@GL@@UAEXJ@Z 004147f0 f groups.obj - 0001:00013800 ?Delete@GL@@QAEXJJ@Z 00414800 f groups.obj - 0001:00013840 ?FAdd@GL@@UAEHPAXPAJ@Z 00414840 f groups.obj - 0001:00013870 ?FPop@GL@@QAEHPAX@Z 00414870 f groups.obj - 0001:000138a0 ?FSetIvMac@GL@@QAEHJ@Z 004148a0 f groups.obj - 0001:000138f0 ?FEnsureSpace@GL@@QAEHJK@Z 004148f0 f groups.obj - 0001:00013930 ??0GGB@@IAE@JH@Z 00414930 f groups.obj - 0001:00013970 ?CbOnFile@GGB@@UAEJXZ 00414970 f groups.obj - 0001:00013980 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00414980 f groups.obj - 0001:00013a70 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 00414a70 f groups.obj - 0001:00013c00 ?FFree@GGB@@UAEHJ@Z 00414c00 f groups.obj - 0001:00013c30 ?FEnsureSpace@GGB@@QAEHJJK@Z 00414c30 f groups.obj - 0001:00013cc0 ?_RemoveRgb@GGB@@IAEXJJ@Z 00414cc0 f groups.obj - 0001:00013d10 ?_AdjustLocs@GGB@@IAEXJJJ@Z 00414d10 f groups.obj - 0001:00013d60 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00414d60 f groups.obj - 0001:00013da0 ?PvFixedLock@GGB@@QAEPAXJPAJ@Z 00414da0 f groups.obj - 0001:00013dd0 ?GetFixed@GGB@@QAEXJPAX@Z 00414dd0 f groups.obj - 0001:00013e00 ?PutFixed@GGB@@QAEXJPAX@Z 00414e00 f groups.obj - 0001:00013e30 ?Cb@GGB@@QAEJJ@Z 00414e30 f groups.obj - 0001:00013e50 ?QvGet@GGB@@QAEPAXJPAJ@Z 00414e50 f groups.obj - 0001:00013e90 ?PvLock@GGB@@QAEPAXJPAJ@Z 00414e90 f groups.obj - 0001:00013ec0 ?GetRgb@GGB@@QAEXJJJPAX@Z 00414ec0 f groups.obj - 0001:00013f00 ?DeleteRgb@GGB@@QAEXJJJ@Z 00414f00 f groups.obj - 0001:00013f90 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00414f90 f groups.obj - 0001:000140b0 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 004150b0 f groups.obj - 0001:00014240 ?Merge@GGB@@QAEXJJ@Z 00415240 f groups.obj - 0001:000142e0 ?PggNew@GG@@SGPAV1@JJJ@Z 004152e0 f groups.obj - 0001:00014350 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00415350 f groups.obj - 0001:000143b0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 004153b0 f groups.obj - 0001:00014400 ?FInsert@GG@@QAEHJJPAX0@Z 00415400 f groups.obj - 0001:000144d0 ?FAdd@GG@@UAEHJPAJPAX1@Z 004154d0 f groups.obj - 0001:00014500 ?Delete@GG@@UAEXJ@Z 00415500 f groups.obj - 0001:00014570 ??_EGRPB@@UAEPAXI@Z 00415570 f groups.obj - 0001:00014570 ??_GGRPB@@UAEPAXI@Z 00415570 f groups.obj - 0001:00014590 ??_EGG@@UAEPAXI@Z 00415590 f groups.obj - 0001:00014590 ??_GGG@@UAEPAXI@Z 00415590 f groups.obj - 0001:000145b0 ??_GGLB@@UAEPAXI@Z 004155b0 f groups.obj - 0001:000145b0 ??_EGLB@@UAEPAXI@Z 004155b0 f groups.obj - 0001:000145d0 ??_EGL@@UAEPAXI@Z 004155d0 f groups.obj - 0001:000145d0 ??_GGL@@UAEPAXI@Z 004155d0 f groups.obj - 0001:000145f0 ??_EGGB@@UAEPAXI@Z 004155f0 f groups.obj - 0001:000145f0 ??_GGGB@@UAEPAXI@Z 004155f0 f groups.obj - 0001:00014630 ?FWouldBe@CHSE@@SGHJ@Z 00415630 f chse.obj - 0001:00014650 ?FIs@CHSE@@UAEHJ@Z 00415650 f chse.obj - 0001:00014660 ?Cls@CHSE@@UAEJXZ 00415660 f chse.obj - 0001:00014670 ??0CHSE@@QAE@XZ 00415670 f chse.obj - 0001:000146a0 ??1CHSE@@UAE@XZ 004156a0 f chse.obj - 0001:000146c0 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 004156c0 f chse.obj - 0001:000146f0 ?Uninit@CHSE@@QAEXXZ 004156f0 f chse.obj - 0001:00014740 ?DumpHeader@CHSE@@QAEXKKPAVSTN@@H@Z 00415740 f chse.obj - 0001:00014800 ?DumpRgb@CHSE@@QAEXPAXJJ@Z 00415800 f chse.obj - 0001:00014830 ?DumpParentCmd@CHSE@@QAEXKKK@Z 00415830 f chse.obj - 0001:00014890 ?DumpBitmapCmd@CHSE@@QAEXEJJPAVSTN@@@Z 00415890 f chse.obj - 0001:000148f0 ?DumpFileCmd@CHSE@@QAEXPAVSTN@@H@Z 004158f0 f chse.obj - 0001:00014960 ?_DumpBsf@CHSE@@IAEXJ@Z 00415960 f chse.obj - 0001:00014b30 ?DumpList@CHSE@@QAEXPAVGLB@@@Z 00415b30 f chse.obj - 0001:00014c10 ?DumpGroup@CHSE@@QAEXPAVGGB@@@Z 00415c10 f chse.obj - 0001:00014d60 ??_ECHSE@@UAEPAXI@Z 00415d60 f chse.obj - 0001:00014d60 ??_GCHSE@@UAEPAXI@Z 00415d60 f chse.obj - 0001:00014da0 ?FWouldBe@LEXB@@SGHJ@Z 00415da0 f lex.obj - 0001:00014dc0 ?FIs@LEXB@@UAEHJ@Z 00415dc0 f lex.obj - 0001:00014dd0 ?Cls@LEXB@@UAEJXZ 00415dd0 f lex.obj - 0001:00014de0 ?_TtFromCh@@YGJD@Z 00415de0 f lex.obj - 0001:00014e00 ?_TtFromChCh@@YGJDD@Z 00415e00 f lex.obj - 0001:00014e70 ??0LEXB@@QAE@PAVFIL@@H@Z 00415e70 f lex.obj - 0001:00014f10 ??1LEXB@@UAE@XZ 00415f10 f lex.obj - 0001:00014f50 ?_FFetchRgch@LEXB@@IAEHPADJ@Z 00415f50 f lex.obj - 0001:00015080 ?_FSkipWhiteSpace@LEXB@@IAEHXZ 00416080 f lex.obj - 0001:00015530 ?FGetTok@LEXB@@UAEHPAUTOK@@@Z 00416530 f lex.obj - 0001:00015990 ?CbExtra@LEXB@@UAEJXZ 00416990 f lex.obj - 0001:000159a0 ?GetExtra@LEXB@@UAEXPAX@Z 004169a0 f lex.obj - 0001:000159b0 ?_ReadNumber@LEXB@@MAEXPAJDJJ@Z 004169b0 f lex.obj - 0001:00015a30 ?_FReadHex@LEXB@@IAEHPAJ@Z 00416a30 f lex.obj - 0001:00015b10 ?_FReadControlCh@LEXB@@IAEHPAD@Z 00416b10 f lex.obj - 0001:00015cc0 ??_ELEXB@@UAEPAXI@Z 00416cc0 f lex.obj - 0001:00015cc0 ??_GLEXB@@UAEPAXI@Z 00416cc0 f lex.obj - 0001:00015ce0 ?_ReadNumTok@LEXB@@MAEXPAUTOK@@DJJ@Z 00416ce0 f lex.obj - 0001:00015d00 ?FWouldBe@BSF@@SGHJ@Z 00416d00 f stream.obj - 0001:00015d20 ?FIs@BSF@@UAEHJ@Z 00416d20 f stream.obj - 0001:00015d30 ?Cls@BSF@@UAEJXZ 00416d30 f stream.obj - 0001:00015d50 ??0BSF@@QAE@XZ 00416d50 f stream.obj - 0001:00015d70 ??1BSF@@UAE@XZ 00416d70 f stream.obj - 0001:00015de0 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00416de0 f stream.obj - 0001:00015e70 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00416e70 f stream.obj - 0001:00015fa0 ?_AttemptMerge@BSF@@IAEXJJ@Z 00416fa0 f stream.obj - 0001:00016090 ?FReplace@BSF@@QAEHPAXJJJ@Z 00417090 f stream.obj - 0001:00016380 ?FetchRgb@BSF@@QAEXJJPAX@Z 00417380 f stream.obj - 0001:00016440 ??_GBSF@@UAEPAXI@Z 00417440 f stream.obj - 0001:00016440 ??_EBSF@@UAEPAXI@Z 00417440 f stream.obj - 0001:00016490 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 00417490 f mbmp.obj - 0001:000169d0 ??0MSSIO@@QAE@PAU_iobuf@@@Z 004179d0 f mssio.obj - 0001:00016a00 ?ReportLine@MSSIO@@UAEXPAD@Z 00417a00 f mssio.obj - 0001:00016a30 ?Report@MSSIO@@UAEXPAD@Z 00417a30 f mssio.obj - 0001:00016a60 ?FError@MSSIO@@UAEHXZ 00417a60 f mssio.obj - 0001:00016a80 ??_GMSSIO@@UAEPAXI@Z 00417a80 f mssio.obj - 0001:00016a80 ??_EMSSIO@@UAEPAXI@Z 00417a80 f mssio.obj - 0001:00016ab0 ?FIs@MSNK@@UAEHJ@Z 00417ab0 f mssio.obj - 0001:00016ad0 ?Cls@MSNK@@UAEJXZ 00417ad0 f mssio.obj - 0001:00016ad6 _timeGetTime@0 00417ad6 winmm:WINMM.dll - 0001:00016ae0 ?FWouldBe@TMAP@@SGHJ@Z 00417ae0 f bren:tmap.obj - 0001:00016b00 ?FIs@TMAP@@UAEHJ@Z 00417b00 f bren:tmap.obj - 0001:00016b10 ?Cls@TMAP@@UAEJXZ 00417b10 f bren:tmap.obj - 0001:00016b20 ??1TMAP@@UAE@XZ 00417b20 f bren:tmap.obj - 0001:00016b50 ?FWrite@TMAP@@UAEHPAVBLCK@@@Z 00417b50 f bren:tmap.obj - 0001:00016c20 ?PtmapReadNative@TMAP@@SGPAV1@PAVFNI@@PAVGL@@@Z 00417c20 f bren:tmap.obj - 0001:00016e10 ?PtmapNew@TMAP@@SGPAV1@PAEJJ@Z 00417e10 f bren:tmap.obj - 0001:00016e80 ?FWriteTmapChkFile@TMAP@@QAEHPAVFNI@@HPAVMSNK@@@Z 00417e80 f bren:tmap.obj - 0001:00017010 ??_GTMAP@@UAEPAXI@Z 00418010 f bren:tmap.obj - 0001:00017010 ??_ETMAP@@UAEPAXI@Z 00418010 f bren:tmap.obj - 0001:000170c0 ?CbOnFile@TMAP@@UAEJXZ 004180c0 f bren:tmap.obj - 0001:000170e0 _BrBegin 004180e0 brfwmxr:fwsetup.obj - 0001:000171e4 _BrEnd 004181e4 brfwmxr:fwsetup.obj - 0001:00017207 _BrDiagHandlerSet 00418207 brfwmxr:fwsetup.obj - 0001:00017226 _BrFilesystemSet 00418226 brfwmxr:fwsetup.obj - 0001:00017245 _BrAllocatorSet 00418245 brfwmxr:fwsetup.obj - 0001:00017264 _BrFixedAbs 00418264 brfwmxr:fixed386.obj - 0001:00017274 _BrFixedMul 00418274 brfwmxr:fixed386.obj - 0001:00017285 _BrFixedMac2 00418285 brfwmxr:fixed386.obj - 0001:000172a8 _BrFixedMac3 004182a8 brfwmxr:fixed386.obj - 0001:000172d5 _BrFixedMac4 004182d5 brfwmxr:fixed386.obj - 0001:0001730c _BrFixedLength2 0041830c brfwmxr:fixed386.obj - 0001:00017330 _BrFixedLength3 00418330 brfwmxr:fixed386.obj - 0001:0001735d _BrFixedLength4 0041835d brfwmxr:fixed386.obj - 0001:00017393 _BrFixedRLength2 00418393 brfwmxr:fixed386.obj - 0001:000173b7 _BrFixedRLength3 004183b7 brfwmxr:fixed386.obj - 0001:000173e4 _BrFixedRLength4 004183e4 brfwmxr:fixed386.obj - 0001:0001741a _BrFixedDiv 0041841a brfwmxr:fixed386.obj - 0001:0001742f _BrFixedDivR 0041842f brfwmxr:fixed386.obj - 0001:00017445 _BrFixedDivF 00418445 brfwmxr:fixed386.obj - 0001:00017458 _BrFixedMulDiv 00418458 brfwmxr:fixed386.obj - 0001:00017468 _BrFixedMac2Div 00418468 brfwmxr:fixed386.obj - 0001:0001748a _BrFixedMac3Div 0041848a f brfwmxr:fixed386.obj - 0001:000174b6 _BrFixedMac4Div 004184b6 brfwmxr:fixed386.obj - 0001:000174ec _BrFixedFMac2 004184ec brfwmxr:fixed386.obj - 0001:00017511 _BrFixedFMac3 00418511 brfwmxr:fixed386.obj - 0001:00017541 _BrFixedFMac4 00418541 brfwmxr:fixed386.obj - 0001:0001757c _BrFixedRcp 0041857c brfwmxr:fixed386.obj - 0001:0001758d _BrFixedSqr 0041858d brfwmxr:fixed386.obj - 0001:0001759d _BrFixedSqr2 0041859d brfwmxr:fixed386.obj - 0001:000175be _BrFixedSqr3 004185be brfwmxr:fixed386.obj - 0001:000175e8 _BrFixedSqr4 004185e8 brfwmxr:fixed386.obj - 0001:0001761b _BrFixedSin 0041861b brfwmxr:fixed386.obj - 0001:0001764c _BrFixedCos 0041864c brfwmxr:fixed386.obj - 0001:0001767d _BrFixedASin 0041867d brfwmxr:fixed386.obj - 0001:000176b1 _BrFixedACos 004186b1 brfwmxr:fixed386.obj - 0001:000176e5 _BrFixedATan2 004186e5 brfwmxr:fixed386.obj - 0001:000178e9 _BrFixedATan2Fast 004188e9 brfwmxr:fixed386.obj - 0001:000179f1 __Sqrt 004189f1 brfwmxr:fixed386.obj - 0001:00017b49 __Sqrt64 00418b49 brfwmxr:fixed386.obj - 0001:00017df0 __FastSqrt 00418df0 brfwmxr:fixed386.obj - 0001:00017e1b __FastRSqrt 00418e1b brfwmxr:fixed386.obj - 0001:00017e44 __FastRSqrt64 00418e44 brfwmxr:fixed386.obj - 0001:00017e90 _BrMatrix34Copy 00418e90 brfwmxr:matrix34.obj - 0001:00017ee4 _BrMatrix34Mul 00418ee4 brfwmxr:matrix34.obj - 0001:0001824f _BrMatrix34Identity 0041924f brfwmxr:matrix34.obj - 0001:000182ab _BrMatrix34RotateX 004192ab brfwmxr:matrix34.obj - 0001:00018322 _BrMatrix34RotateY 00419322 brfwmxr:matrix34.obj - 0001:00018399 _BrMatrix34RotateZ 00419399 brfwmxr:matrix34.obj - 0001:00018410 _BrMatrix34Rotate 00419410 brfwmxr:matrix34.obj - 0001:00018554 _BrMatrix34Translate 00419554 brfwmxr:matrix34.obj - 0001:000185ac _BrMatrix34Scale 004195ac brfwmxr:matrix34.obj - 0001:00018604 _BrMatrix34ShearX 00419604 brfwmxr:matrix34.obj - 0001:0001865f _BrMatrix34ShearY 0041965f brfwmxr:matrix34.obj - 0001:000186ba _BrMatrix34ShearZ 004196ba brfwmxr:matrix34.obj - 0001:00018715 _BrMatrix34Inverse 00419715 brfwmxr:matrix34.obj - 0001:00018b61 _BrMatrix34LPInverse 00419b61 brfwmxr:matrix34.obj - 0001:00018c9d _BrMatrix34LPNormalise 00419c9d brfwmxr:matrix34.obj - 0001:00018e41 _BrMatrix34RollingBall 00419e41 brfwmxr:matrix34.obj - 0001:00018f99 _BrMatrix34Copy4 00419f99 brfwmxr:matrix34.obj - 0001:00018fed BrMatrix34TApplyFV_ 00419fed brfwmxr:matrix34.obj - 0001:000190d9 _BrMatrix34Apply 0041a0d9 brfwmxr:matrix34.obj - 0001:000191b9 _BrMatrix34ApplyP 0041a1b9 brfwmxr:matrix34.obj - 0001:000192a5 _BrMatrix34ApplyV 0041a2a5 brfwmxr:matrix34.obj - 0001:00019381 _BrMatrix34TApply 0041a381 brfwmxr:matrix34.obj - 0001:000194b4 _BrMatrix34TApplyP 0041a4b4 brfwmxr:matrix34.obj - 0001:00019590 _BrMatrix34TApplyV 0041a590 brfwmxr:matrix34.obj - 0001:0001966c _BrMatrix34Pre 0041a66c brfwmxr:matrix34.obj - 0001:0001969b _BrMatrix34Post 0041a69b brfwmxr:matrix34.obj - 0001:000196ca _BrMatrix34PreRotateX 0041a6ca brfwmxr:matrix34.obj - 0001:0001970e _BrMatrix34PostRotateX 0041a70e brfwmxr:matrix34.obj - 0001:00019752 _BrMatrix34PreRotateY 0041a752 brfwmxr:matrix34.obj - 0001:00019796 _BrMatrix34PostRotateY 0041a796 brfwmxr:matrix34.obj - 0001:000197da _BrMatrix34PreRotateZ 0041a7da brfwmxr:matrix34.obj - 0001:0001981e _BrMatrix34PostRotateZ 0041a81e brfwmxr:matrix34.obj - 0001:00019862 _BrMatrix34PreRotate 0041a862 brfwmxr:matrix34.obj - 0001:000198aa _BrMatrix34PostRotate 0041a8aa brfwmxr:matrix34.obj - 0001:000198f2 _BrMatrix34PreTranslate 0041a8f2 brfwmxr:matrix34.obj - 0001:0001993d _BrMatrix34PostTranslate 0041a93d brfwmxr:matrix34.obj - 0001:00019988 _BrMatrix34PreScale 0041a988 brfwmxr:matrix34.obj - 0001:000199d3 _BrMatrix34PostScale 0041a9d3 brfwmxr:matrix34.obj - 0001:00019a1e _BrMatrix34PreShearX 0041aa1e brfwmxr:matrix34.obj - 0001:00019a62 _BrMatrix34PostShearX 0041aa62 brfwmxr:matrix34.obj - 0001:00019aa6 _BrMatrix34PreShearY 0041aaa6 brfwmxr:matrix34.obj - 0001:00019aea _BrMatrix34PostShearY 0041aaea brfwmxr:matrix34.obj - 0001:00019b2e _BrMatrix34PreShearZ 0041ab2e brfwmxr:matrix34.obj - 0001:00019b72 _BrMatrix34PostShearZ 0041ab72 brfwmxr:matrix34.obj - 0001:00019bdc _BrTransformToMatrix34 0041abdc brfwmxr:transfrm.obj - 0001:00019e68 _BrMatrix34PreTransform 0041ae68 brfwmxr:transfrm.obj - 0001:00019e9c _BrMatrix34PostTransform 0041ae9c brfwmxr:transfrm.obj - 0001:00019ed0 _BrMatrix4PreTransform 0041aed0 brfwmxr:transfrm.obj - 0001:00019f20 _BrMatrix34ToTransform 0041af20 brfwmxr:transfrm.obj - 0001:0001a010 _BrTransformToTransform 0041b010 brfwmxr:transfrm.obj - 0001:0001a080 _BrMatrix23Copy 0041b080 brfwmxr:matrix23.obj - 0001:0001a0b0 _BrMatrix23Mul 0041b0b0 brfwmxr:matrix23.obj - 0001:0001a190 _BrMatrix23Identity 0041b190 brfwmxr:matrix23.obj - 0001:0001a1c3 _BrMatrix23Rotate 0041b1c3 brfwmxr:matrix23.obj - 0001:0001a20f _BrMatrix23Translate 0041b20f brfwmxr:matrix23.obj - 0001:0001a23f _BrMatrix23Scale 0041b23f brfwmxr:matrix23.obj - 0001:0001a26f _BrMatrix23ShearX 0041b26f brfwmxr:matrix23.obj - 0001:0001a29f _BrMatrix23ShearY 0041b29f brfwmxr:matrix23.obj - 0001:0001a2cf _BrMatrix23Inverse 0041b2cf brfwmxr:matrix23.obj - 0001:0001a417 _BrMatrix23LPInverse 0041b417 brfwmxr:matrix23.obj - 0001:0001a487 _BrMatrix23LPNormalise 0041b487 brfwmxr:matrix23.obj - 0001:0001a506 _BrMatrix23ApplyP 0041b506 brfwmxr:matrix23.obj - 0001:0001a562 _BrMatrix23ApplyV 0041b562 brfwmxr:matrix23.obj - 0001:0001a5b6 _BrMatrix23TApplyP 0041b5b6 brfwmxr:matrix23.obj - 0001:0001a60a _BrMatrix23TApplyV 0041b60a brfwmxr:matrix23.obj - 0001:0001a65e _BrMatrix23Pre 0041b65e brfwmxr:matrix23.obj - 0001:0001a68d _BrMatrix23Post 0041b68d brfwmxr:matrix23.obj - 0001:0001a6bc _BrMatrix23PreRotate 0041b6bc brfwmxr:matrix23.obj - 0001:0001a700 _BrMatrix23PostRotate 0041b700 brfwmxr:matrix23.obj - 0001:0001a744 _BrMatrix23PreTranslate 0041b744 brfwmxr:matrix23.obj - 0001:0001a788 _BrMatrix23PostTranslate 0041b788 brfwmxr:matrix23.obj - 0001:0001a7a8 _BrMatrix23PreScale 0041b7a8 brfwmxr:matrix23.obj - 0001:0001a7ec _BrMatrix23PostScale 0041b7ec brfwmxr:matrix23.obj - 0001:0001a830 _BrMatrix23PreShearX 0041b830 brfwmxr:matrix23.obj - 0001:0001a870 _BrMatrix23PostShearX 0041b870 brfwmxr:matrix23.obj - 0001:0001a8b0 _BrMatrix23 0041b8b0 brfwmxr:matrix23.obj - 0001:0001a8f0 _BrMatrix23PostShearY 0041b8f0 brfwmxr:matrix23.obj - 0001:0001a930 _BrFailure 0041b930 brfwmxr:diag.obj - 0001:0001a970 _BrWarning 0041b970 brfwmxr:diag.obj - 0001:0001a9b0 _BrFatal 0041b9b0 brfwmxr:diag.obj - 0001:0001aa20 _BrResAllocate 0041ba20 brfwmxr:resource.obj - 0001:0001ab44 _BrResFree 0041bb44 brfwmxr:resource.obj - 0001:0001ab63 _BrResAdd 0041bb63 brfwmxr:resource.obj - 0001:0001abb3 _BrResRemove 0041bbb3 brfwmxr:resource.obj - 0001:0001abdb _BrResClass 0041bbdb brfwmxr:resource.obj - 0001:0001abfb _BrResSize 0041bbfb brfwmxr:resource.obj - 0001:0001ac4f _BrResSizeTotal 0041bc4f brfwmxr:resource.obj - 0001:0001ac8f _BrResChildEnum 0041bc8f brfwmxr:resource.obj - 0001:0001acdb _BrResCheck 0041bcdb brfwmxr:resource.obj - 0001:0001ad0f _BrResStrDup 0041bd0f brfwmxr:resource.obj - 0001:0001b929 PrepareVertices_ 0041c929 brfwmxr:prepmesh.obj - 0001:0001be31 PrepareVerticesFast_ 0041ce31 brfwmxr:prepmesh.obj - 0001:0001c169 PrepareEdges_ 0041d169 brfwmxr:prepmesh.obj - 0001:0001c348 _BrModelUpdate 0041d348 brfwmxr:prepmesh.obj - 0001:0001c580 _BrModelAdd 0041d580 brfwmxr:regsupt.obj - 0001:0001c5b4 _BrModelRemove 0041d5b4 brfwmxr:regsupt.obj - 0001:0001c5cc _BrModelFind 0041d5cc brfwmxr:regsupt.obj - 0001:0001c5e0 _BrModelFindHook 0041d5e0 brfwmxr:regsupt.obj - 0001:0001c5f4 _BrModelAddMany 0041d5f4 brfwmxr:regsupt.obj - 0001:0001c650 _BrModelRemoveMany 0041d650 brfwmxr:regsupt.obj - 0001:0001c694 _BrModelFindMany 0041d694 brfwmxr:regsupt.obj - 0001:0001c6b3 _BrModelCount 0041d6b3 brfwmxr:regsupt.obj - 0001:0001c6c7 _BrModelEnum 0041d6c7 brfwmxr:regsupt.obj - 0001:0001c6e6 _BrMaterialAdd 0041d6e6 brfwmxr:regsupt.obj - 0001:0001c716 _BrMaterialRemove 0041d716 brfwmxr:regsupt.obj - 0001:0001c72e _BrMaterialFind 0041d72e brfwmxr:regsupt.obj - 0001:0001c742 _BrMaterialFindHook 0041d742 brfwmxr:regsupt.obj - 0001:0001c756 _BrMaterialAddMany 0041d756 brfwmxr:regsupt.obj - 0001:0001c7b6 _BrMaterialRemoveMany 0041d7b6 brfwmxr:regsupt.obj - 0001:0001c7fa _BrMaterialFindMany 0041d7fa brfwmxr:regsupt.obj - 0001:0001c819 _BrMaterialCount 0041d819 brfwmxr:regsupt.obj - 0001:0001c82d _BrMaterialEnum 0041d82d brfwmxr:regsupt.obj - 0001:0001c84c _BrMapAdd 0041d84c brfwmxr:regsupt.obj - 0001:0001c860 _BrMapRemove 0041d860 brfwmxr:regsupt.obj - 0001:0001c874 _BrMapFind 0041d874 brfwmxr:regsupt.obj - 0001:0001c888 _BrMapFindHook 0041d888 brfwmxr:regsupt.obj - 0001:0001c89c _BrMapAddMany 0041d89c brfwmxr:regsupt.obj - 0001:0001c8b8 _BrMapRemoveMany 0041d8b8 brfwmxr:regsupt.obj - 0001:0001c8d4 _BrMapFindMany 0041d8d4 brfwmxr:regsupt.obj - 0001:0001c8f3 _BrMapCount 0041d8f3 brfwmxr:regsupt.obj - 0001:0001c907 _BrMapEnum 0041d907 brfwmxr:regsupt.obj - 0001:0001c926 _BrTableAdd 0041d926 brfwmxr:regsupt.obj - 0001:0001c93a _BrTableRemove 0041d93a brfwmxr:regsupt.obj - 0001:0001c94e _BrTableFind 0041d94e brfwmxr:regsupt.obj - 0001:0001c962 _BrTableFindHook 0041d962 brfwmxr:regsupt.obj - 0001:0001c976 _BrTableAddMany 0041d976 brfwmxr:regsupt.obj - 0001:0001c992 _BrTableRemoveMany 0041d992 brfwmxr:regsupt.obj - 0001:0001c9ae _BrTableFindMany 0041d9ae brfwmxr:regsupt.obj - 0001:0001c9cd _BrTableCount 0041d9cd brfwmxr:regsupt.obj - 0001:0001c9e1 _BrTableEnum 0041d9e1 brfwmxr:regsupt.obj - 0001:0001ca00 _BrResClassAdd 0041da00 brfwmxr:regsupt.obj - 0001:0001ca33 _BrResClassRemove 0041da33 brfwmxr:regsupt.obj - 0001:0001ca63 _BrResClassFind 0041da63 brfwmxr:regsupt.obj - 0001:0001ca77 _BrResClassFindHook 0041da77 brfwmxr:regsupt.obj - 0001:0001ca8b _BrResClassAddMany 0041da8b brfwmxr:regsupt.obj - 0001:0001cade _BrResClassRemoveMany 0041dade brfwmxr:regsupt.obj - 0001:0001cb36 _BrResClassFindMany 0041db36 brfwmxr:regsupt.obj - 0001:0001cb55 _BrResClassCount 0041db55 brfwmxr:regsupt.obj - 0001:0001cb69 _BrResClassEnum 0041db69 brfwmxr:regsupt.obj - 0001:0001cb9c _BrModelApplyMap 0041db9c brfwmxr:regsupt.obj - 0001:0001cd68 _BrModelFitMap 0041dd68 brfwmxr:regsupt.obj - 0001:0001cf38 _BrModelFree 0041df38 brfwmxr:regsupt.obj - 0001:0001cf4c _BrModelAllocate 0041df4c brfwmxr:regsupt.obj - 0001:0001cfc8 _BrMaterialAllocate 0041dfc8 brfwmxr:regsupt.obj - 0001:0001d01c _BrMaterialFree 0041e01c brfwmxr:regsupt.obj - 0001:0001d030 NamePatternMatch_ 0041e030 brfwmxr:register.obj - 0001:0001d103 RegistryNew_ 0041e103 brfwmxr:register.obj - 0001:0001d127 RegistryClear_ 0041e127 brfwmxr:register.obj - 0001:0001d15b RegistryAdd_ 0041e15b brfwmxr:register.obj - 0001:0001d197 RegistryAddMany_ 0041e197 brfwmxr:register.obj - 0001:0001d202 RegistryRemove_ 0041e202 brfwmxr:register.obj - 0001:0001d24a RegistryRemoveMany_ 0041e24a brfwmxr:register.obj - 0001:0001d28e RegistryFind_ 0041e28e brfwmxr:register.obj - 0001:0001d2d9 RegistryFindMany_ 0041e2d9 brfwmxr:register.obj - 0001:0001d329 RegistryCount_ 0041e329 brfwmxr:register.obj - 0001:0001d364 RegistryEnum_ 0041e364 brfwmxr:register.obj - 0001:0001da30 _BrImageFind 0041ea30 brfwmxr:loader.obj - 0001:0001da67 _BrImageReference 0041ea67 brfwmxr:loader.obj - 0001:0001daca _BrImageLookupName 0041eaca brfwmxr:loader.obj - 0001:0001db7a _BrImageLookupOrdinal 0041eb7a brfwmxr:loader.obj - 0001:0001dba6 _BrImageDereference 0041eba6 brfwmxr:loader.obj - 0001:0001dbd6 _BrImageFree 0041ebd6 brfwmxr:loader.obj - 0001:0001dc21 __BrImageFree 0041ec21 brfwmxr:loader.obj - 0001:0001dc50 __BrPmMemFill 0041ec50 brfwmxr:pmmemops.obj - 0001:0001dd1f __BrPmMemRectangleCopyTo 0041ed1f brfwmxr:pmmemops.obj - 0001:0001de0f __BrPmMemRectangleCopyFrom 0041ee0f brfwmxr:pmmemops.obj - 0001:0001deef __BrPmMemRectangleFill 0041eeef brfwmxr:pmmemops.obj - 0001:0001df63 __BrPmMemDirtyRectangleCopy 0041ef63 brfwmxr:pmmemops.obj - 0001:0001dfa3 __BrPmMemDirtyRectangleFill 0041efa3 brfwmxr:pmmemops.obj - 0001:0001dfdf __BrPmMemCopy 0041efdf brfwmxr:pmmemops.obj - 0001:0001e16a __BrPmMemPixelSet 0041f16a brfwmxr:pmmemops.obj - 0001:0001e1d2 __BrPmMemPixelGet 0041f1d2 brfwmxr:pmmemops.obj - 0001:0001e236 __BrPmMemLine 0041f236 brfwmxr:pmmemops.obj - 0001:0001f90e __BrPmMemCopyBits 0042090e brfwmxr:pmmemops.obj - 0001:0001f994 __MemCopyBits_A 00420994 brfwmxr:memloops.obj - 0001:0001fd84 __MemFill_A 00420d84 brfwmxr:memloops.obj - 0001:0001fe68 __MemRectFill_A 00420e68 brfwmxr:memloops.obj - 0001:0001ff91 __MemRectCopy_A 00420f91 brfwmxr:memloops.obj - 0001:0001ffe9 __MemCopy_A 00420fe9 brfwmxr:memloops.obj - 0001:0002002e __MemPixelSet 0042102e brfwmxr:memloops.obj - 0001:0002008b __MemPixelGet 0042108b f brfwmxr:memloops.obj - 0001:000200e7 __GetSysQual 004210e7 brfwmxr:memloops.obj - 0001:000200f0 __BrFileFree 004210f0 brfwmxr:file.obj - 0001:0002010c _BrFileAttributes 0042110c brfwmxr:file.obj - 0001:0002011c _BrFileOpenRead 0042111c brfwmxr:file.obj - 0001:00020188 _BrFileOpenWrite 00421188 brfwmxr:file.obj - 0001:000201e8 _BrFileClose 004211e8 brfwmxr:file.obj - 0001:00020204 _BrFileEof 00421204 brfwmxr:file.obj - 0001:00020220 _BrFileGetChar 00421220 brfwmxr:file.obj - 0001:0002023c _BrFilePutChar 0042123c brfwmxr:file.obj - 0001:0002025c _BrFileRead 0042125c brfwmxr:file.obj - 0001:00020288 _BrFileWrite 00421288 brfwmxr:file.obj - 0001:000202b4 _BrFileGetLine 004212b4 brfwmxr:file.obj - 0001:000202db _BrFilePutLine 004212db brfwmxr:file.obj - 0001:000202fb _BrFileAdvance 004212fb brfwmxr:file.obj - 0001:0002031b _BrFilePrintf 0042131b brfwmxr:file.obj - 0001:00020360 _BrEulerToMatrix34 00421360 brfwmxr:angles.obj - 0001:00020684 _BrMatrix34ToEuler 00421684 brfwmxr:angles.obj - 0001:000208e3 _BrEulerToMatrix4 004218e3 brfwmxr:angles.obj - 0001:00020913 _BrMatrix4ToEuler 00421913 brfwmxr:angles.obj - 0001:00020942 _BrEulerToQuat 00421942 brfwmxr:angles.obj - 0001:00020bc6 _BrQuatToEuler 00421bc6 brfwmxr:angles.obj - 0001:00020c00 _BrQuatMul 00421c00 brfwmxr:quat.obj - 0001:00020d20 _BrQuatNormalise 00421d20 brfwmxr:quat.obj - 0001:00020d98 _BrQuatInvert 00421d98 brfwmxr:quat.obj - 0001:00020dc8 _BrQuatSlerp 00421dc8 brfwmxr:quat.obj - 0001:00020f98 _BrQuatToMatrix34 00421f98 brfwmxr:quat.obj - 0001:000210c3 _BrMatrix34ToQuat 004220c3 brfwmxr:quat.obj - 0001:0002128f _BrQuatToMatrix4 0042228f brfwmxr:quat.obj - 0001:000212bf _BrMatrix4ToQuat 004222bf brfwmxr:quat.obj - 0001:000212f0 _BrMatrix4Copy 004222f0 brfwmxr:matrix4.obj - 0001:0002135c _BrMatrix4Mul 0042235c brfwmxr:matrix4.obj - 0001:000217ac _BrMatrix4Identity 004227ac brfwmxr:matrix4.obj - 0001:00021824 _BrMatrix4Scale 00422824 brfwmxr:matrix4.obj - 0001:00021898 _BrMatrix4Inverse 00422898 brfwmxr:matrix4.obj - 0001:000219c7 _BrMatrix4Determinant 004229c7 brfwmxr:matrix4.obj - 0001:00021b17 _BrMatrix4Adjoint 00422b17 brfwmxr:matrix4.obj - 0001:00021e53 _BrMatrix4Perspective 00422e53 brfwmxr:matrix4.obj - 0001:00021f36 _BrMatrix4Apply 00422f36 brfwmxr:matrix4.obj - 0001:00022059 _BrMatrix4ApplyP 00423059 brfwmxr:matrix4.obj - 0001:000221a4 _BrMatrix4ApplyV 004231a4 brfwmxr:matrix4.obj - 0001:000222c8 _BrMatrix4TApply 004232c8 brfwmxr:matrix4.obj - 0001:000223eb _BrMatrix4TApplyP 004233eb brfwmxr:matrix4.obj - 0001:00022536 _BrMatrix4TApplyV 00423536 brfwmxr:matrix4.obj - 0001:0002265a _BrMatrix4Copy34 0042365a brfwmxr:matrix4.obj - 0001:000226ca _BrMatrix4Pre34 004236ca brfwmxr:matrix4.obj - 0001:00022ad0 _BrNewList 00423ad0 brfwmxr:brlists.obj - 0001:00022ae8 _BrAddHead 00423ae8 brfwmxr:brlists.obj - 0001:00022b03 _BrAddTail 00423b03 brfwmxr:brlists.obj - 0001:00022b22 _BrRemHead 00423b22 brfwmxr:brlists.obj - 0001:00022b3e _BrRemTail 00423b3e brfwmxr:brlists.obj - 0001:00022b5a _BrInsert 00423b5a brfwmxr:brlists.obj - 0001:00022b76 _BrRemove 00423b76 brfwmxr:brlists.obj - 0001:00022b8e _BrSimpleNewList 00423b8e brfwmxr:brlists.obj - 0001:00022b9e _BrSimpleAddHead 00423b9e brfwmxr:brlists.obj - 0001:00022bbe _BrSimpleRemHead 00423bbe brfwmxr:brlists.obj - 0001:00022bf2 _BrSimpleInsert 00423bf2 brfwmxr:brlists.obj - 0001:00022c12 _BrSimpleRemove 00423c12 brfwmxr:brlists.obj - 0001:00022c40 _BrMemAllocate 00423c40 brfwmxr:mem.obj - 0001:00022c73 _BrMemFree 00423c73 brfwmxr:mem.obj - 0001:00022c8b _BrMemInquire 00423c8b brfwmxr:mem.obj - 0001:00022ca3 _BrMemCalloc 00423ca3 brfwmxr:mem.obj - 0001:00022cda _BrMemStrDup 00423cda brfwmxr:mem.obj - 0001:00022d20 _BrScratchAllocate 00423d20 brfwmxr:scratch.obj - 0001:00022d9c _BrScratchFree 00423d9c brfwmxr:scratch.obj - 0001:00022dab _BrScratchFlush 00423dab brfwmxr:scratch.obj - 0001:00022def _BrScratchInquire 00423def brfwmxr:scratch.obj - 0001:00022e00 _BrQsort 00423e00 brfwmxr:brqsort.obj - 0001:00023010 _BrFixedSqrt 00424010 brfwmxr:fixed.obj - 0001:00023044 _BrFixedPow 00424044 brfwmxr:fixed.obj - 0001:00023090 __CHP 00424090 f brfwmxr:magicsym.obj - 0001:000230b0 _BrMaterialUpdate 004240b0 brfwmxr:prepmatl.obj - 0001:00023100 __BrGenericLine 00424100 brfwmxr:pmgenops.obj - 0001:00023f7c __BrGenericDoubleBuffer 00424f7c brfwmxr:pmgenops.obj - 0001:00023f98 __BrGenericMatch 00424f98 brfwmxr:pmgenops.obj - 0001:0002407c __BrGenericClone 0042507c brfwmxr:pmgenops.obj - 0001:000240c8 __BrGenericFree 004250c8 brfwmxr:pmgenops.obj - 0001:000240dc __BrGenericDirtyRectangleCopy 004250dc brfwmxr:pmgenops.obj - 0001:00024118 __BrGenericDirtyRectangleFill 00425118 brfwmxr:pmgenops.obj - 0001:00024150 __BrGenericRectangle 00425150 brfwmxr:pmgenops.obj - 0001:000241f0 __BrGenericRectangle2 004251f0 brfwmxr:pmgenops.obj - 0001:00024288 __BrGenericRectangleCopy 00425288 brfwmxr:pmgenops.obj - 0001:0002428f __BrGenericCopy 0042528f brfwmxr:pmgenops.obj - 0001:000242a0 _BrPixelmapAllocate 004252a0 brfwmxr:pixelmap.obj - 0001:000243b8 _BrPixelmapAllocateSub 004253b8 brfwmxr:pixelmap.obj - 0001:00024480 _BrPixelmapFileSize 00425480 brfwmxr:pixelmap.obj - 0001:00024497 _BrPixelmapPixelSize 00425497 brfwmxr:pixelmap.obj - 0001:000244ae _BrPixelmapChannels 004254ae brfwmxr:pixelmap.obj - 0001:000244d0 _BrPixelmapFree 004254d0 brfwmxr:pmdsptch.obj - 0001:000244f8 _BrPixelmapMatch 004254f8 brfwmxr:pmdsptch.obj - 0001:00024527 _BrPixelmapClone 00425527 brfwmxr:pmdsptch.obj - 0001:0002454f _BrPixelmapFill 0042554f brfwmxr:pmdsptch.obj - 0001:0002457b _BrPixelmapRectangle 0042557b brfwmxr:pmdsptch.obj - 0001:000245d3 _BrPixelmapRectangle2 004255d3 brfwmxr:pmdsptch.obj - 0001:0002462b _BrPixelmapRectangleCopy 0042562b brfwmxr:pmdsptch.obj - 0001:00024986 _BrPixelmapRectangleFill 00425986 brfwmxr:pmdsptch.obj - 0001:00024aba _BrPixelmapDirtyRectangleCopy 00425aba brfwmxr:pmdsptch.obj - 0001:00024bf1 _BrPixelmapDirtyRectangleClear 00425bf1 brfwmxr:pmdsptch.obj - 0001:00024d25 _BrPixelmapPixelSet 00425d25 brfwmxr:pmdsptch.obj - 0001:00024d9d _BrPixelmapPixelGet 00425d9d brfwmxr:pmdsptch.obj - 0001:00024e20 _BrPixelmapCopy 00425e20 brfwmxr:pmdsptch.obj - 0001:00024ea0 _BrPixelmapLine 00425ea0 brfwmxr:pmdsptch.obj - 0001:0002515c _BrPixelmapDoubleBuffer 0042615c brfwmxr:pmdsptch.obj - 0001:00025188 _BrPixelmapText 00426188 brfwmxr:pmdsptch.obj - 0001:00025423 _BrPixelmapTextF 00426423 brfwmxr:pmdsptch.obj - 0001:0002546b _BrPixelmapTextWidth 0042646b brfwmxr:pmdsptch.obj - 0001:000254eb _BrPixelmapTextHeight 004264eb brfwmxr:pmdsptch.obj - 0001:00025513 _BrPixelmapCopyBits 00426513 brfwmxr:pmdsptch.obj - 0001:00025679 _DK_modelAllocate 00426679 f libdkit:tinyModel.obj - 0001:000258a5 _DK_modelDispose 004268a5 f libdkit:tinyModel.obj - 0001:00025cf9 _DK_modelReadFile 00426cf9 f libdkit:tinyModel.obj - 0001:00025e52 _DK_fdmodelReadBinaryFile 00426e52 f libdkit:tinyModel.obj - 0001:00025f0c _DK_modelReadBinaryNode 00426f0c f libdkit:tinyModel.obj - 0001:00026732 _DK_modelReadAsciiNode 00427732 f libdkit:tinyModel.obj - 0001:00026ce6 _DK_actFcurveArrayDispose 00427ce6 f libdkit:tinyFcurve.obj - 0001:00026d12 _DK_fcurveArrayDispose 00427d12 f libdkit:tinyFcurve.obj - 0001:00026d3b _DK_fcurveDispose 00427d3b f libdkit:tinyFcurve.obj - 0001:00026d6d _DK_fcvkeyDispose 00427d6d f libdkit:tinyFcurve.obj - 0001:00026d8d _DK_constraintDispose 00427d8d f libdkit:tinyConstr.obj - 0001:00026eb9 _DK_invKinAllocate 00427eb9 f libdkit:tinyActor.obj - 0001:00026ed6 _DK_envelopDataAllocate 00427ed6 f libdkit:tinyActor.obj - 0001:00026fa6 _DK_envelopListVertAllocate 00427fa6 f libdkit:tinyActor.obj - 0001:00026fc2 _DK_envelopVertAllocate 00427fc2 f libdkit:tinyActor.obj - 0001:0002701f _DK_invKinDispose 0042801f f libdkit:tinyActor.obj - 0001:0002703f _DK_envelopDataDispose 0042803f f libdkit:tinyActor.obj - 0001:000270d4 _DK_envelopVertDispose 004280d4 f libdkit:tinyActor.obj - 0001:000272bc _DK_invKinReadBinaryChunk 004282bc f libdkit:tinyActor.obj - 0001:0002753c _DK_envelopReadBinaryChunk 0042853c f libdkit:tinyActor.obj - 0001:0002821d _DK_oEnvelopeReadBinaryChunk 0042921d f libdkit:tinyActor.obj - 0001:0002830a _DK_modelActorDataReadAscii 0042930a f libdkit:tinyActor.obj - 0001:000284a5 _DK_dynaMatterInfoAllocate 004294a5 f libdkit:tinyDynamics.obj - 0001:000284e2 _DK_dynaJntInfoAllocate 004294e2 f libdkit:tinyDynamics.obj - 0001:00028500 _DK_dynaChnVarAllocate 00429500 f libdkit:tinyDynamics.obj - 0001:00028559 _DK_dynaMatterInfoDispose 00429559 f libdkit:tinyDynamics.obj - 0001:00028579 _DK_dynaJntInfoDispose 00429579 f libdkit:tinyDynamics.obj - 0001:00028599 _DK_dynaConstrInfoDispose 00429599 f libdkit:tinyDynamics.obj - 0001:000285dd _DK_dynaChnVarDispose 004295dd f libdkit:tinyDynamics.obj - 0001:000286c8 _DK_dynamatterReadBinaryChunk 004296c8 f libdkit:tinyDynamics.obj - 0001:00028844 _DK_dynamatterReadAscii 00429844 f libdkit:tinyDynamics.obj - 0001:000289ad _DK_dynajntpropReadBinaryChunk 004299ad f libdkit:tinyDynamics.obj - 0001:00028a88 _DK_dynajntpropReadAscii 00429a88 f libdkit:tinyDynamics.obj - 0001:00028b38 _DK_odynamicReadBinaryChunk 00429b38 f libdkit:tinyDynamics.obj - 0001:00028b7e _DK_clusterDispose 00429b7e f libdkit:tinyCluster.obj - 0001:00028bc4 _DK_clusterDataDispose 00429bc4 f libdkit:tinyCluster.obj - 0001:00028ccd _DK_clusterKeyDispose 00429ccd f libdkit:tinyCluster.obj - 0001:00028d13 _DK_klusterAllocate 00429d13 f libdkit:tinyCluster.obj - 0001:00028d39 _DK_klusterDispose 00429d39 f libdkit:tinyCluster.obj - 0001:00028dd5 _DK_clustersReadBinaryChunk 00429dd5 f libdkit:tinyCluster.obj - 0001:00028f43 _DK_clustersReadAscii 00429f43 f libdkit:tinyCluster.obj - 0001:000290d4 _DK_spl_fittingDispose 0042a0d4 f libdkit:tinyFitting.obj - 0001:00029146 _DK_ptch_fittingDispose 0042a146 f libdkit:tinyFitting.obj - 0001:000291a5 _DK_latticeDispose 0042a1a5 f libdkit:tinyLattice.obj - 0001:00029200 _DK_textureAllocate 0042a200 f libdkit:tinyTexture.obj - 0001:00029392 _DK_textureDispose 0042a392 f libdkit:tinyTexture.obj - 0001:00029451 _DK_textureReadAscii 0042a451 f libdkit:tinyTexture.obj - 0001:00029a5a _DK_textureReadBinary 0042aa5a f libdkit:tinyTexture.obj - 0001:00029fd7 _DK_texture3DAllocate 0042afd7 f libdkit:tinyTexture.obj - 0001:0002a120 _DK_texture3DDispose 0042b120 f libdkit:tinyTexture.obj - 0001:0002a1c8 _DK_texture3DReadBinary 0042b1c8 f libdkit:tinyTexture.obj - 0001:0002a632 _DK_texture3DReadAscii 0042b632 f libdkit:tinyTexture.obj - 0001:0002ad18 _DK_materialAllocate 0042bd18 f libdkit:tinyMaterial.obj - 0001:0002ae27 _DK_materialDispose 0042be27 f libdkit:tinyMaterial.obj - 0001:0002af0c _DK_materialReadBinary 0042bf0c f libdkit:tinyMaterial.obj - 0001:0002b34c _DK_materialReadAscii 0042c34c f libdkit:tinyMaterial.obj - 0001:0002b7a0 _DK_splineAllocate 0042c7a0 f libdkit:tinySpline.obj - 0001:0002b7f3 _DK_splineDispose 0042c7f3 f libdkit:tinySpline.obj - 0001:0002b84c _DK_splineKeyAllocate 0042c84c f libdkit:tinySpline.obj - 0001:0002b8a9 _DK_splineReadBinary 0042c8a9 f libdkit:tinySpline.obj - 0001:0002bbf9 _DK_splineGetTypeByName 0042cbf9 f libdkit:tinySpline.obj - 0001:0002bc26 _DK_splineReadAscii 0042cc26 f libdkit:tinySpline.obj - 0001:0002c1dd _DK_splineShrinkBezier 0042d1dd f libdkit:tinySpline.obj - 0001:0002c2a6 _DK_nurbsCrvAllocate 0042d2a6 f libdkit:tinyNurbs.obj - 0001:0002c2ec _DK_nurbsSrfAllocate 0042d2ec f libdkit:tinyNurbs.obj - 0001:0002c3d0 _DK_nurbsCrvDispose 0042d3d0 f libdkit:tinyNurbs.obj - 0001:0002c426 _DK_nurbsSrfDispose 0042d426 f libdkit:tinyNurbs.obj - 0001:0002c4e5 _DK_nurbsCompCrvDispose 0042d4e5 f libdkit:tinyNurbs.obj - 0001:0002c56a _DK_nurbsCrvBinaryRead 0042d56a f libdkit:tinyNurbs.obj - 0001:0002c749 _DK_nurbsSrfBinaryRead 0042d749 f libdkit:tinyNurbs.obj - 0001:0002cc4e _DK_nurbsCrvAsciiRead 0042dc4e f libdkit:tinyNurbs.obj - 0001:0002cee8 _DK_nurbsSrfAsciiRead 0042dee8 f libdkit:tinyNurbs.obj - 0001:0002de35 _DK_metaballAllocate 0042ee35 f libdkit:tinyMetaball.obj - 0001:0002dea3 _DK_metaballDispose 0042eea3 f libdkit:tinyMetaball.obj - 0001:0002debf _DK_metaballReadBinary 0042eebf f libdkit:tinyMetaball.obj - 0001:0002dff9 _DK_metaballReadAscii 0042eff9 f libdkit:tinyMetaball.obj - 0001:0002e15d _DK_metaSystemAllocate 0042f15d f libdkit:tinyMetaball.obj - 0001:0002e187 _DK_metaSystemDispose 0042f187 f libdkit:tinyMetaball.obj - 0001:0002e1e8 _DK_metaSystemReadBinary 0042f1e8 f libdkit:tinyMetaball.obj - 0001:0002e527 _DK_metaSystemReadAscii 0042f527 f libdkit:tinyMetaball.obj - 0001:0002e725 _DK_metaGroupAllocate 0042f725 f libdkit:tinyMetaball.obj - 0001:0002e76b _DK_metaGroupDispose 0042f76b f libdkit:tinyMetaball.obj - 0001:0002e7e3 _DK_metaGroupAddPrimitive 0042f7e3 f libdkit:tinyMetaball.obj - 0001:0002e843 _DK_metaGroupRemovePrimitive 0042f843 f libdkit:tinyMetaball.obj - 0001:0002e8b0 _DK_metaGroupsBlend 0042f8b0 f libdkit:tinyMetaball.obj - 0001:0002e962 _DK_metaGroupsUnblend 0042f962 f libdkit:tinyMetaball.obj - 0001:0002ea1d _DK_meshAllocate 0042fa1d f libdkit:tinyMesh.obj - 0001:0002ea4c _DK_meshDispose 0042fa4c f libdkit:tinyMesh.obj - 0001:0002eac7 _DK_edgeAllocate 0042fac7 f libdkit:tinyMesh.obj - 0001:0002eb06 _DK_polygonAllocate 0042fb06 f libdkit:tinyMesh.obj - 0001:0002eb41 _DK_vertexAllocate 0042fb41 f libdkit:tinyMesh.obj - 0001:0002eb71 _DK_meshReadBinary 0042fb71 f libdkit:tinyMesh.obj - 0001:0002f1db _DK_meshReadAscii 004301db f libdkit:tinyMesh.obj - 0001:0002f989 _DK_faceAllocate 00430989 f libdkit:tinyFace.obj - 0001:0002f9af _DK_faceDispose 004309af f libdkit:tinyFace.obj - 0001:0002fa53 _DK_faceReadBinary 00430a53 f libdkit:tinyFace.obj - 0001:0002fc24 _DK_faceReadAscii 00430c24 f libdkit:tinyFace.obj - 0001:0002fc7b _DK_nurbsFaceReadAscii 00430c7b f libdkit:tinyFace.obj - 0001:0002fe27 _DK_patchAllocate 00430e27 f libdkit:tinyPatch.obj - 0001:0002feac _DK_patchDispose 00430eac f libdkit:tinyPatch.obj - 0001:0002fed9 _DK_patchReadAscii 00430ed9 f libdkit:tinyPatch.obj - 0001:00030542 _DK_patchReadBinary 00431542 f libdkit:tinyPatch.obj - 0001:00030963 _DK_prototypeRead 00431963 f libdkit:tinyFile.obj - 0001:00030e60 _DK_prototypeAllocate 00431e60 f libdkit:tinyFile.obj - 0001:00030f5b _DK_prototypeDispose 00431f5b f libdkit:tinyFile.obj - 0001:00031193 _DK_headerReadAscii 00432193 f libdkit:tinyFile.obj - 0001:000311ff _DK_headerReadBinary 004321ff f libdkit:tinyFile.obj - 0001:000312cf _DK_stringReadBinary 004322cf f libdkit:tinyFile.obj - 0001:00031318 _DK_stringReadAscii 00432318 f libdkit:tinyFile.obj - 0001:0003137e _DK_userDataReadAscii 0043237e f libdkit:tinyFile.obj - 0001:00031463 _DK_fileSkipField 00432463 f libdkit:tinyFile.obj - 0001:000314d5 _DK_in_animToken 004324d5 f libdkit:tinyUtils.obj - 0001:00031547 _DK_in_animSValue 00432547 f libdkit:tinyUtils.obj - 0001:000315ce _DK_in_animFValue 004325ce f libdkit:tinyUtils.obj - 0001:00031654 _DK_in_animLValue 00432654 f libdkit:tinyUtils.obj - 0001:000316da _DK_udfAllocate 004326da f libdkit:tinyMental.obj - 0001:000316f8 _DK_udfDispose 004326f8 f libdkit:tinyMental.obj - 0001:0003174e _DK_udfReadBinary 0043274e f libdkit:tinyMental.obj - 0001:000318f1 _DK_udfReadAscii 004328f1 f libdkit:tinyMental.obj - 0001:00031aa1 _printf 00432aa1 f LIBC:printf.obj - 0001:00031add _fclose 00432add f LIBC:fclose.obj - 0001:00031b39 __fsopen 00432b39 f LIBC:fopen.obj - 0001:00031b5c _fopen 00432b5c f LIBC:fopen.obj - 0001:00031b70 __ftol 00432b70 f LIBC:ftol.obj - 0001:00031b97 __fpmath 00432b97 f LIBC:fpinit.obj - 0001:00031bab __fpclear 00432bab f LIBC:fpinit.obj - 0001:00031bac __cfltcvt_init 00432bac f LIBC:fpinit.obj - 0001:00031be4 _fdiv_main_routine 00432be4 f LIBC:adj_fdiv.obj - 0001:00031cfb __adj_fdiv_r 00432cfb f LIBC:adj_fdiv.obj - 0001:0003219a _fdivp_sti_st 0043319a f LIBC:adj_fdiv.obj - 0001:000321ad _fdivrp_sti_st 004331ad f LIBC:adj_fdiv.obj - 0001:000321c0 __adj_fdiv_m32 004331c0 f LIBC:adj_fdiv.obj - 0001:0003220c __adj_fdiv_m64 0043320c f LIBC:adj_fdiv.obj - 0001:00032258 __adj_fdiv_m16i 00433258 f LIBC:adj_fdiv.obj - 0001:0003228c __adj_fdiv_m32i 0043328c f LIBC:adj_fdiv.obj - 0001:000322c0 __adj_fdivr_m32 004332c0 f LIBC:adj_fdiv.obj - 0001:0003230c __adj_fdivr_m64 0043330c f LIBC:adj_fdiv.obj - 0001:00032358 __adj_fdivr_m16i 00433358 f LIBC:adj_fdiv.obj - 0001:0003238c __adj_fdivr_m32i 0043338c f LIBC:adj_fdiv.obj - 0001:000323c0 __safe_fdiv 004333c0 f LIBC:adj_fdiv.obj - 0001:000323d5 __safe_fdivr 004333d5 f LIBC:adj_fdiv.obj - 0001:000323ea __fprem_common 004333ea f LIBC:adj_fdiv.obj - 0001:000325f0 __adj_fprem 004335f0 f LIBC:adj_fdiv.obj - 0001:000326a2 __fprem1_common 004336a2 f LIBC:adj_fdiv.obj - 0001:000328a8 __adj_fprem1 004338a8 f LIBC:adj_fdiv.obj - 0001:0003295d __safe_fprem 0043395d f LIBC:adj_fdiv.obj - 0001:00032963 __safe_fprem1 00433963 f LIBC:adj_fdiv.obj - 0001:00032969 __adj_fpatan 00433969 f LIBC:adj_fdiv.obj - 0001:0003296c __adj_fptan 0043396c f LIBC:adj_fdiv.obj - 0001:00032970 _asin 00433970 LIBC:87ctriga.obj - 0001:0003297a _acos 0043397a LIBC:87ctriga.obj - 0001:00032981 _atan 00433981 LIBC:87ctriga.obj - 0001:00032988 _atan2 00433988 LIBC:87ctriga.obj - 0001:00032992 __CIasin 00433992 LIBC:87ctriga.obj - 0001:0003299c __CIacos 0043399c LIBC:87ctriga.obj - 0001:000329a3 __CIatan 004339a3 LIBC:87ctriga.obj - 0001:000329aa __CIatan2 004339aa LIBC:87ctriga.obj - 0001:000329b4 ??2@YAPAXI@Z 004339b4 f LIBC:new.obj - 0001:000329c3 ??3@YAXPAX@Z 004339c3 f LIBC:delete.obj - 0001:000329d0 _fread 004339d0 f LIBC:fread.obj - 0001:00032b07 _fwrite 00433b07 f LIBC:fwrite.obj - 0001:00032c5c __onexit 00433c5c f LIBC:onexit.obj - 0001:00032cd2 _atexit 00433cd2 f LIBC:onexit.obj - 0001:00032ce4 ___onexitinit 00433ce4 f LIBC:onexit.obj - 0001:00032d1a __purecall 00433d1a f LIBC:purevirt.obj - 0001:00032d25 _fprintf 00433d25 f LIBC:fprintf.obj - 0001:00032d5b _mainCRTStartup 00433d5b f LIBC:crt0.obj - 0001:00032e54 __amsg_exit 00433e54 f LIBC:crt0.obj - 0001:00032e74 _sprintf 00433e74 f LIBC:sprintf.obj - 0001:00032ed0 _strcat 00433ed0 f LIBC:strcat.obj - 0001:00032ed4 _strcpy 00433ed4 LIBC:strcat.obj - 0001:00032f61 _vsprintf 00433f61 f LIBC:vsprintf.obj - 0001:00032fbc _strlen 00433fbc f LIBC:strlen.obj - 0001:0003300c _sqrt 0043400c LIBC:87csqrt.obj - 0001:00033016 __CIsqrt 00434016 LIBC:87csqrt.obj - 0001:00033020 _memset 00434020 f LIBC:memset.obj - 0001:00033064 _strcmp 00434064 f LIBC:strcmp.obj - 0001:000330e8 _pow 004340e8 LIBC:87ctran.obj - 0001:000330f2 _log 004340f2 LIBC:87ctran.obj - 0001:000330fc _log10 004340fc LIBC:87ctran.obj - 0001:00033103 _exp 00434103 LIBC:87ctran.obj - 0001:0003310a __CIpow 0043410a LIBC:87ctran.obj - 0001:00033114 __CIlog 00434114 LIBC:87ctran.obj - 0001:0003311e __CIlog10 0043411e LIBC:87ctran.obj - 0001:00033125 __CIexp 00434125 LIBC:87ctran.obj - 0001:0003312c _calloc 0043412c f LIBC:calloc.obj - 0001:00033166 _free 00434166 f LIBC:free.obj - 0001:000331ce _fflush 004341ce f LIBC:fflush.obj - 0001:0003321a __flush 0043421a f LIBC:fflush.obj - 0001:0003327c __flushall 0043427c f LIBC:fflush.obj - 0001:000332f1 ___endstdio 004342f1 f LIBC:fflush.obj - 0001:00033305 _fscanf 00434305 f LIBC:fscanf.obj - 0001:0003331b _malloc 0043431b f LIBC:malloc.obj - 0001:0003332e __nh_malloc 0043432e f LIBC:malloc.obj - 0001:000333ed __heap_split_block 004343ed f LIBC:malloc.obj - 0001:00033434 _strrchr 00434434 f LIBC:strrchr.obj - 0001:0003345c _strncpy 0043445c f LIBC:strncpy.obj - 0001:00033480 _strncmp 00434480 f LIBC:strncmp.obj - 0001:000334b8 _memcpy 004344b8 f LIBC:memcpy.obj - 0001:00033606 _realloc 00434606 f LIBC:realloc.obj - 0001:00033758 _atof 00434758 f LIBC:atof.obj - 0001:000337b4 _atol 004347b4 f LIBC:atox.obj - 0001:00033849 _atoi 00434849 f LIBC:atox.obj - 0001:00033856 __setmode 00434856 f LIBC:setmode.obj - 0001:000338d0 _fgets 004348d0 f LIBC:fgets.obj - 0001:0003392b _fgetc 0043492b f LIBC:fgetc.obj - 0001:0003394c _ftell 0043494c f LIBC:ftell.obj - 0001:00033a84 _fseek 00434a84 f LIBC:fseek.obj - 0001:00033b18 _ungetc 00434b18 f LIBC:ungetc.obj - 0001:00033b8f __stbuf 00434b8f f LIBC:_sftbuf.obj - 0001:00033c10 __ftbuf 00434c10 f LIBC:_sftbuf.obj - 0001:00033c56 __output 00434c56 f LIBC:output.obj - 0001:0003457c __close 0043557c f LIBC:close.obj - 0001:00034612 __freebuf 00435612 f LIBC:_freebuf.obj - 0001:0003464a __openfile 0043564a f LIBC:_open.obj - 0001:000347e5 __getstream 004357e5 f LIBC:stream.obj - 0001:00034822 __setdefaultprecision 00435822 f LIBC:fp8.obj - 0001:00034835 _ms_p5_test_fdiv 00435835 f LIBC:testfdiv.obj - 0001:0003487b _ms_p5_mp_test_fdiv 0043587b f LIBC:testfdiv.obj - 0001:0003494e __forcdecpt 0043594e f LIBC:cvt.obj - 0001:000349b3 __cropzeros 004359b3 f LIBC:cvt.obj - 0001:00034a12 __positive 00435a12 f LIBC:cvt.obj - 0001:00034a27 __fassign 00435a27 f LIBC:cvt.obj - 0001:00034a6a __cftoe 00435a6a f LIBC:cvt.obj - 0001:00034bbd __cftof 00435bbd f LIBC:cvt.obj - 0001:00034cd9 __cftog 00435cd9 f LIBC:cvt.obj - 0001:00034d81 __cfltcvt 00435d81 f LIBC:cvt.obj - 0001:00034e1c __fFATN2 00435e1c LIBC:87triga.obj - 0001:00034e6c __rtpiby2 00435e6c LIBC:87triga.obj - 0001:00034ea4 __cintrindisp2 00435ea4 f LIBC:87cdisp.obj - 0001:00034ee2 __cintrindisp1 00435ee2 f LIBC:87cdisp.obj - 0001:00034f18 __ctrandisp2 00435f18 f LIBC:87cdisp.obj - 0001:00035089 __ctrandisp1 00436089 f LIBC:87cdisp.obj - 0001:000350b5 __fload 004360b5 f LIBC:87cdisp.obj - 0001:000350f1 __filbuf 004360f1 f LIBC:_filbuf.obj - 0001:000351b4 _read 004361b4 f LIBC:read.obj - 0001:000351b4 __read 004361b4 f LIBC:read.obj - 0001:000353ae __flsbuf 004363ae f LIBC:_flsbuf.obj - 0001:000354ba __write 004364ba f LIBC:write.obj - 0001:00035653 __cinit 00436653 f LIBC:crt0dat.obj - 0001:00035683 _exit 00436683 f LIBC:crt0dat.obj - 0001:00035694 __exit 00436694 f LIBC:crt0dat.obj - 0001:00035744 __msize 00436744 f LIBC:msize.obj - 0001:00035758 __global_unwind2 00436758 f LIBC:exsup.obj - 0001:0003579a __local_unwind2 0043679a f LIBC:exsup.obj - 0001:000357f4 __abnormal_termination 004367f4 f LIBC:exsup.obj - 0001:00035817 __XcptFilter 00436817 f LIBC:winxfltr.obj - 0001:000359a2 __setenvp 004369a2 f LIBC:stdenvp.obj - 0001:00035a6d __setargv 00436a6d f LIBC:stdargv.obj - 0001:00035d6b __setmbcp 00436d6b f LIBC:mbctype.obj - 0001:00035ef9 ___initmbctable 00436ef9 f LIBC:mbctype.obj - 0001:00035f04 __ioinit 00436f04 f LIBC:ioinit.obj - 0001:00035ff2 __heap_init 00436ff2 f LIBC:heapinit.obj - 0001:0003606f ___getempty 0043706f f LIBC:heapinit.obj - 0001:0003609c __except_handler3 0043709c f LIBC:exsup3.obj - 0001:0003614a __seh_longjmp_unwind@4 0043714a f LIBC:exsup3.obj - 0001:00036165 __FF_MSGBANNER 00437165 f LIBC:crt0msg.obj - 0001:0003618b __NMSG_WRITE 0043718b f LIBC:crt0msg.obj - 0001:00036211 __fFEXP 00437211 LIBC:87tran.obj - 0001:00036278 __rtinfpopse 00437278 LIBC:87tran.obj - 0001:0003627a __rtinfnpopse 0043727a LIBC:87tran.obj - 0001:0003628a __fFLN 0043728a LIBC:87tran.obj - 0001:0003633f __rtinfpop 0043733f LIBC:87tran.obj - 0001:00036341 __rtinfnpop 00437341 LIBC:87tran.obj - 0001:0003635e __ffexpm1 0043735e LIBC:87tran.obj - 0001:00036407 __heap_abort 00437407 f LIBC:hpabort.obj - 0001:00036412 __commit 00437412 f LIBC:commit.obj - 0001:0003645f __fcloseall 0043745f f LIBC:closeall.obj - 0001:00036490 __input 00437490 f LIBC:input.obj - 0001:00036fb4 __heap_search 00437fb4 f LIBC:heapsrch.obj - 0001:000370a4 __heap_grow 004380a4 f LIBC:heapgrow.obj - 0001:0003718d __heap_grow_region 0043818d f LIBC:heapgrow.obj - 0001:0003723a __heap_free_region 0043823a f LIBC:heapgrow.obj - 0001:00037274 __fltin 00438274 f LIBC:cfin.obj - 0001:00037315 __isctype 00438315 f LIBC:isctype.obj - 0001:00037390 __lseek 00438390 f LIBC:lseek.obj - 0001:00037405 __getbuf 00438405 f LIBC:_getbuf.obj - 0001:00037450 __isatty 00438450 f LIBC:isatty.obj - 0001:0003746a _wctomb 0043846a f LIBC:wctomb.obj - 0001:000374e4 __aulldiv 004384e4 f LIBC:ulldiv.obj - 0001:00037544 __aullrem 00438544 f LIBC:ullrem.obj - 0001:000375ae __dosmaperr 004385ae f LIBC:dosmap.obj - 0001:00037617 __alloc_osfhnd 00438617 f LIBC:osfinfo.obj - 0001:0003764d __set_osfhnd 0043864d f LIBC:osfinfo.obj - 0001:000376b7 __free_osfhnd 004386b7 f LIBC:osfinfo.obj - 0001:00037724 __get_osfhandle 00438724 f LIBC:osfinfo.obj - 0001:0003775c __sopen 0043875c f LIBC:open.obj - 0001:00037aa3 __control87 00438aa3 f LIBC:ieee87.obj - 0001:00037ade __controlfp 00438ade f LIBC:ieee87.obj - 0001:00037c15 __fptrap 00438c15 f LIBC:crt0fp.obj - 0001:00037c20 _tolower 00438c20 f LIBC:tolower.obj - 0001:00037cec __ZeroTail 00438cec f LIBC:intrncvt.obj - 0001:00037d4c __IncMan 00438d4c f LIBC:intrncvt.obj - 0001:00037dad __RoundMan 00438dad f LIBC:intrncvt.obj - 0001:00037e4a __CopyMan 00438e4a f LIBC:intrncvt.obj - 0001:00037e67 __FillZeroMan 00438e67 f LIBC:intrncvt.obj - 0001:00037e73 __IsZeroMan 00438e73 f LIBC:intrncvt.obj - 0001:00037e91 __ShrMan 00438e91 f LIBC:intrncvt.obj - 0001:00037f3c __ld12cvt 00438f3c f LIBC:intrncvt.obj - 0001:000380d8 __ld12tod 004390d8 f LIBC:intrncvt.obj - 0001:000380ee __ld12tof 004390ee f LIBC:intrncvt.obj - 0001:00038104 __atodbl 00439104 f LIBC:intrncvt.obj - 0001:00038135 __atoflt 00439135 f LIBC:intrncvt.obj - 0001:00038166 __fptostr 00439166 f LIBC:_fptostr.obj - 0001:000381e4 __fltout 004391e4 f LIBC:cfout.obj - 0001:00038247 ___dtold 00439247 f LIBC:cfout.obj - 0001:00038300 _memmove 00439300 f LIBC:memmove.obj - 0001:00038450 __trandisp1 00439450 f LIBC:87disp.obj - 0001:000384b7 __trandisp2 004394b7 f LIBC:87disp.obj - 0001:00038543 __rttospopde 00439543 LIBC:87disp.obj - 0001:00038548 __rttospop 00439548 LIBC:87disp.obj - 0001:0003854a __rtnospop 0043954a LIBC:87disp.obj - 0001:0003854c __rttosnpop 0043954c LIBC:87disp.obj - 0001:0003854d __rtnospopde 0043954d LIBC:87disp.obj - 0001:00038554 __rtzeropop 00439554 LIBC:87disp.obj - 0001:00038556 __rtzeronpop 00439556 LIBC:87disp.obj - 0001:0003855b __rtonepop 0043955b LIBC:87disp.obj - 0001:0003855d __rtonenpop 0043955d LIBC:87disp.obj - 0001:00038562 __tosnan1 00439562 LIBC:87disp.obj - 0001:0003858d __nosnan2 0043958d LIBC:87disp.obj - 0001:0003858f __tosnan2 0043958f LIBC:87disp.obj - 0001:000385b7 __nan2 004395b7 LIBC:87disp.obj - 0001:000385f6 __rtindfpop 004395f6 LIBC:87disp.obj - 0001:000385f8 __rtindfnpop 004395f8 LIBC:87disp.obj - 0001:00038609 __rttosnpopde 00439609 LIBC:87disp.obj - 0001:00038613 __rtchsifneg 00439613 LIBC:87disp.obj - 0001:0003861a __87except 0043961a f LIBC:87except.obj - 0001:00038724 __powhlp 00439724 f LIBC:powhlp.obj - 0001:00038911 __d_inttype 00439911 f LIBC:powhlp.obj - 0001:00038964 __allmul 00439964 f LIBC:llmul.obj - 0001:00038998 __allshl 00439998 f LIBC:llshl.obj - 0001:000389a5 _mbtowc 004399a5 f LIBC:mbtowc.obj - 0001:00038aa3 _isspace 00439aa3 f LIBC:_ctype.obj - 0001:00038ace __heap_addblock 00439ace f LIBC:heapadd.obj - 0001:00038d85 ___strgtold12 00439d85 f LIBC:strgtold.obj - 0001:000393c4 ___crtGetStringTypeA 0043a3c4 f LIBC:aw_str.obj - 0001:0003950f __chsize 0043a50f f LIBC:chsize.obj - 0001:0003966f ___crtLCMapStringA 0043a66f f LIBC:aw_map.obj - 0001:000398ce ___addl 0043a8ce f LIBC:mantold.obj - 0001:000398f1 ___add_12 0043a8f1 f LIBC:mantold.obj - 0001:0003994f ___shl_12 0043a94f f LIBC:mantold.obj - 0001:0003998d ___shr_12 0043a98d f LIBC:mantold.obj - 0001:000399c0 ___mtold12 0043a9c0 f LIBC:mantold.obj - 0001:00039aa4 _$I10_OUTPUT 0043aaa4 f LIBC:x10fout.obj - 0001:00039dda __raise_exc 0043adda f LIBC:fpexcept.obj - 0001:0003a0ec __handle_exc 0043b0ec f LIBC:fpexcept.obj - 0001:0003a344 __set_errno 0043b344 f LIBC:fpexcept.obj - 0001:0003a370 __matherr 0043b370 f LIBC:matherr.obj - 0001:0003a373 __statfp 0043b373 f LIBC:fpctrl.obj - 0001:0003a384 __clrfp 0043b384 f LIBC:fpctrl.obj - 0001:0003a396 __ctrlfp 0043b396 f LIBC:fpctrl.obj - 0001:0003a3c6 __set_statfp 0043b3c6 f LIBC:fpctrl.obj - 0001:0003a420 __set_exp 0043b420 f LIBC:util.obj - 0001:0003a455 __decomp 0043b455 f LIBC:util.obj - 0001:0003a523 __frnd 0043b523 f LIBC:frnd.obj - 0001:0003a538 ___set_invalid_mb_chars 0043b538 f LIBC:setmbval.obj - 0001:0003a566 __heap_findaddr 0043b566 f LIBC:findaddr.obj - 0001:0003a5d0 ___ld12mul 0043b5d0 f LIBC:tenpow.obj - 0001:0003a810 ___multtenpow12 0043b810 f LIBC:tenpow.obj - 0001:0003a888 __alloca_probe 0043b888 LIBC:chkstk.obj - 0001:0003a888 __chkstk 0043b888 LIBC:chkstk.obj - 0001:0003a8b8 __strdup 0043b8b8 f LIBCMT:strdup.obj - 0001:0003a8b8 _strdup 0043b8b8 f LIBCMT:strdup.obj - 0001:0003a8de _RtlUnwind@16 0043b8de kernel32:KERNEL32.dll - 0001:0003a900 _BrStdioOpenRead 0043b900 f bren:stdfile.obj - 0001:0003ac40 _BrStdioPutLine 0043bc40 f bren:stdfile.obj - 0001:0003ad13 _freopen 0043bd13 f LIBC:freopen.obj - 0001:0003ad49 _getenv 0043bd49 f LIBC:getenv.obj - 0001:0003add8 _strchr 0043bdd8 f LIBC:strchr.obj - 0001:0003adfd _fputs 0043bdfd f LIBC:fputs.obj - 0001:0003ae4f __mbsnbicoll 0043be4f f LIBC:mbsnbico.obj - 0001:0003b01d ___wtomb_environ 0043c01d f LIBC:wtombenv.obj - 0001:0003b09c ___set_fcntrlcomp 0043c09c f LIBC:setfcntr.obj - 0001:0003b102 ___crtCompareStringA 0043c102 f LIBC:aw_cmp.obj - 0001:0003b3d2 ___crtsetenv 0043c3d2 f LIBC:setenv.obj - 0001:0003b69c __mbschr 0043c69c f LIBC:mbschr.obj - 0002:00000020 ?_rgluHashCrc@@3QAIA 0043d020 sitobren.obj - 0002:00000460 ?vcodmUtil@@3VCODM@@A 0043d460 utilglob.obj - 0002:00000478 ?vmutxMem@@3VMUTX@@A 0043d478 utilglob.obj - 0002:00000490 ?vkcdcUtil@@3VKCDC@@A 0043d490 utilglob.obj - 0002:00000498 ?_usac@@3VUSAC@@A 0043d498 utilglob.obj - 0002:000004b0 ?vsflUtil@@3VSFL@@A 0043d4b0 utilglob.obj - 0002:000004d0 ?vrndUtil@@3VRND@@A 0043d4d0 utilglob.obj - 0002:00000500 ?_ers@@3VERS@@A 0043d500 utilerro.obj - 0002:00000598 ?_mpchschsLower@@3QADA 0043d598 utilstr.obj - 0002:000006a0 ?_mpchschsUpper@@3QADA 0043d6a0 utilstr.obj - 0002:000007b0 ?_pcflFirst@CFL@@0PAV1@A 0043d7b0 chunk.obj - 0002:000007d8 ?_pfilFirst@FIL@@1PAV1@A 0043d7d8 file.obj - 0002:000007e0 ?_mutxList@FIL@@1VMUTX@@A 0043d7e0 file.obj - 0002:00000808 ?_fniTemp@@3VFNI@@A 0043d808 fniwin.obj - 0002:000009d8 _fw 0043d9d8 brfwmxr:fwsetup.obj - 0002:00001fc8 __BrLoadedImages 0043efc8 brfwmxr:loader.obj - 0002:00002130 _DK_animTokenLine 0043f130 - 0002:00002220 __heap_descpages 0043f220 - 0002:00002230 __heap_regions 0043f230 - 0002:00002530 ___onexitend 0043f530 - 0002:00002534 ___onexitbegin 0043f534 - 0002:00002538 __acmdln 0043f538 - 0002:00002540 __bufin 0043f540 - 0003:00000058 ?rgscrpActor@@3QBU_scrp@@B 00441058 sitobren.obj - 0003:00000370 ?rgscrpAction@@3QBU_scrp@@B 00441370 sitobren.obj - 0003:000006e0 ?rgscrpBackground@@3QBU_scrp@@B 004416e0 sitobren.obj - 0003:00000aa8 ??_7S2BLX@@6B@ 00441aa8 sitobren.obj - 0003:00000ad8 ??_7S2B@@6B@ 00441ad8 sitobren.obj - 0003:00000af0 ??_7BASE@@6B@ 00441af0 sitobren.obj - 0003:00000b08 ??_7KCDC@@6B@ 00441b08 utilglob.obj - 0003:00000b28 ??_7BLL@@6B@ 00441b28 base.obj - 0003:00000b40 ??_7ERS@@6B@ 00441b40 utilerro.obj - 0003:00000b70 ??_7USAC@@6B@ 00441b70 utilint.obj - 0003:00000b88 ??_7RND@@6B@ 00441b88 utilrnd.obj - 0003:00000ba0 ??_7SFL@@6B@ 00441ba0 utilrnd.obj - 0003:00000bb8 ?vrgchHex@@3QBDB 00441bb8 utilstr.obj - 0003:00000bd0 ??_7CFL@@6B@ 00441bd0 chunk.obj - 0003:00000be8 ??_7CGE@@6B@ 00441be8 chunk.obj - 0003:00000c00 ??_7CODM@@6B@ 00441c00 codec.obj - 0003:00000c30 ??_7BACO@@6B@ 00441c30 crf.obj - 0003:00000c58 ??_7FIL@@6B@ 00441c58 file.obj - 0003:00000c70 ??_7BLCK@@6B@ 00441c70 file.obj - 0003:00000c88 ??_7FNI@@6B@ 00441c88 fniwin.obj - 0003:00000ca0 ??_7GRPB@@6B@ 00441ca0 groups.obj - 0003:00000cc8 ??_7GLB@@6B@ 00441cc8 groups.obj - 0003:00000cf8 ??_7GL@@6B@ 00441cf8 groups.obj - 0003:00000d28 ??_7GGB@@6B@ 00441d28 groups.obj - 0003:00000d58 ??_7GG@@6B@ 00441d58 groups.obj - 0003:00000d88 ??_7CHSE@@6B@ 00441d88 chse.obj - 0003:00000da0 ??_7LEXB@@6B@ 00441da0 lex.obj - 0003:00000dc8 ??_7BSF@@6B@ 00441dc8 stream.obj - 0003:00000df0 ??_7MSSIO@@6B@ 00441df0 mssio.obj - 0003:00000e10 ??_7TMAP@@6B@ 00441e10 bren:tmap.obj - 0003:00001008 ___lookuptable 00442008 LIBC:output.obj - 0004:00000110 ??_C@_04CMDA@FILE?$AA@ 00443110 sitobren.obj - 0004:00000118 ??_C@_09CEAG@MATERIALS?$AA@ 00443118 sitobren.obj - 0004:00000124 ??_C@_0O@DPOH@NEW_ACTOR_POS?$AA@ 00443124 sitobren.obj - 0004:00000134 ??_C@_08IHLH@USE_SETS?$AA@ 00443134 sitobren.obj - 0004:00000140 ??_C@_07MMEK@COSTUME?$AA@ 00443140 sitobren.obj - 0004:00000148 ??_C@_04GINN@STEP?$AA@ 00443148 sitobren.obj - 0004:00000150 ??_C@_06ELIA@LENGTH?$AA@ 00443150 sitobren.obj - 0004:00000158 ??_C@_07KIMF@CAMERAS?$AA@ 00443158 sitobren.obj - 0004:00000160 ??_C@_06OJFI@LIGHTS?$AA@ 00443160 sitobren.obj - 0004:00000168 ??_C@_06NAFD@BPSETS?$AA@ 00443168 sitobren.obj - 0004:00000170 ??_C@_08BGJD@SUBMODEL?$AA@ 00443170 sitobren.obj - 0004:0000017c ??_C@_04IIJN@SKIP?$AA@ 0044317c sitobren.obj - 0004:00000184 ??_C@_05OHPB@SCALE?$AA@ 00443184 sitobren.obj - 0004:0000018c ??_C@_05MNJD@FLAGS?$AA@ 0044318c sitobren.obj - 0004:00000194 ??_C@_04GBPO@LAST?$AA@ 00443194 sitobren.obj - 0004:0000019c ??_C@_05MPDO@FIRST?$AA@ 0044319c sitobren.obj - 0004:000001a4 ??_C@_08GJBL@FILEBASE?$AA@ 004431a4 sitobren.obj - 0004:000001b0 ??_C@_05MDJI@ZREST?$AA@ 004431b0 sitobren.obj - 0004:000001b8 ??_C@_05CDPH@YREST?$AA@ 004431b8 sitobren.obj - 0004:000001c0 ??_C@_05IDNC@XREST?$AA@ 004431c0 sitobren.obj - 0004:000001c8 ??_C@_05FPBM@NAMED?$AA@ 004431c8 sitobren.obj - 0004:000001d0 ??_C@_03LPAC@CNO?$AA@ 004431d0 sitobren.obj - 0004:000001d4 ??_C@_06MJBA@STATIC?$AA@ 004431d4 sitobren.obj - 0004:000001dc ??_C@_0O@HMJM@FIELD_OF_VIEW?$AA@ 004431dc sitobren.obj - 0004:000001ec ??_C@_03IMEM@FAR?$AA@ 004431ec sitobren.obj - 0004:000001f0 ??_C@_04NLIO@NEAR?$AA@ 004431f0 sitobren.obj - 0004:000001f8 ??_C@_08PANB@INTEREST?$AA@ 004431f8 sitobren.obj - 0004:00000204 ??_C@_08BGJK@POSITION?$AA@ 00443204 sitobren.obj - 0004:00000210 ??_C@_0L@FIGP@BACKGROUND?$AA@ 00443210 sitobren.obj - 0004:0000021c ??_C@_06LHNJ@ACTION?$AA@ 0044321c sitobren.obj - 0004:00000224 ??_C@_05FJKC@ACTOR?$AA@ 00443224 sitobren.obj - 0004:0000022c ??_C@_0HC@HLJM@?6?5?5?5?5The?5default?5extension?5for?5t@ 0044322c sitobren.obj - 0004:000002a0 ??_C@_0CF@KLFP@?5?5?5?5?5?5?5?5?9?$DP?5?5?5?5?5?5?5?5?5This?5informat@ 004432a0 sitobren.obj - 0004:000002c8 ??_C@_0JL@GKOC@?5?5?5?5?5?5?5?5?9k?5?5?5?5?5?5?5?5?5Kontinue?5afte@ 004432c8 sitobren.obj - 0004:00000364 ??_C@_0HM@OGJF@?5?5?5?5?5?5?5?5?9t?$CD?5?5?5?5?5?5?5?5Round?5off?5tra@ 00443364 sitobren.obj - 0004:000003e0 ??_C@_0HM@HCNJ@?5?5?5?5?5?5?5?5?9h?5?5?5?5?5?5?5?5?5swap?5z?9axis?5?$CI@ 004433e0 sitobren.obj - 0004:0000045c ??_C@_0GM@JKDB@?5?5?5?5flags?3?6?5?5?5?5?5?5?5?5?9n?$FLologo?$FN?5?5do@ 0044345c sitobren.obj - 0004:000004c8 ??_C@_0EA@CBJM@Usage?3?6?5?5?5?5sitobren?5?$FL?9?$DMflag?$DO?$FN?5?$DMs@ 004434c8 sitobren.obj - 0004:00000508 ??_C@_0BK@ONJK@Error?3?5not?5enough?5memory?6?$AA@ 00443508 sitobren.obj - 0004:00000524 ??_C@_0CL@MPPH@Warning?3?5couldn?8t?5build?5include?5@ 00443524 sitobren.obj - 0004:00000550 ??_C@_0CI@IKOL@Could?5not?5create?5destination?5fil@ 00443550 sitobren.obj - 0004:00000578 ??_C@_02IAAH@wt?$AA@ 00443578 sitobren.obj - 0004:0000057c ??_C@_0BP@ENNC@Invalid?5destination?5file?5name?6?$AA@ 0044357c sitobren.obj - 0004:0000059c ??_C@_0CB@IKIH@Could?5not?5open?5source?5file?5?$CI?$CFs?$CJ?6@ 0044359c sitobren.obj - 0004:000005c0 ??_C@_0BK@DKEG@Invalid?5script?5file?5name?6?$AA@ 004435c0 sitobren.obj - 0004:000005dc ??_C@_0BM@GKFN@Variable?5length?5hash?5table?6?$AA@ 004435dc sitobren.obj - 0004:000005f8 ??_C@_0CP@PJKA@Rounding?5off?5transformations?5?$CFd?5@ 004435f8 sitobren.obj - 0004:00000628 ??_C@_0BP@BLMH@Rounding?5off?5?$CFd?5binary?5places?6?$AA@ 00443628 sitobren.obj - 0004:00000648 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 00443648 sitobren.obj - 0004:00000684 ??_C@_0DH@MMNA@?6Microsoft?5?$CIR?$CJ?5SoftImage?5?$CIR?$CJ?5to?5@ 00443684 sitobren.obj - 0004:000006bc ??_C@_0CB@CJJC@Error?3?5unrecognized?5option?5?8?$CFc?8?6@ 004436bc sitobren.obj - 0004:000006e0 ??_C@_06CAIJ@nologo?$AA@ 004436e0 sitobren.obj - 0004:000006e8 ??_C@_0EE@EODI@Couldn?8t?5find?5my?5resource?5file?5?$CI@ 004436e8 sitobren.obj - 0004:0000072c ??_C@_0BK@DHCI@Couldn?8t?5find?5GLCR?5chunk?6?$AA@ 0044372c sitobren.obj - 0004:00000748 ??_C@_0BL@CHOG@Unable?5to?5read?5GLCR?5chunk?6?$AA@ 00443748 sitobren.obj - 0004:00000764 ??_C@_0FG@LHAP@Warning?3?5CTG?5w?1out?5any?5alphanume@ 00443764 sitobren.obj - 0004:000007bc ??_C@_06HHGP@?$CDendif?$AA@ 004437bc sitobren.obj - 0004:000007c4 ??_C@_05GMMC@?$CDelse?$AA@ 004437c4 sitobren.obj - 0004:000007cc ??_C@_0CK@BHMA@?$CDif?5?$CBdefined?$CIDEBUG?$CJ?5?$CG?$CG?5?$CBdefined?$CI@ 004437cc sitobren.obj - 0004:000007f8 ??_C@_02JBAA@?$CFf?$AA@ 004437f8 sitobren.obj - 0004:000007fc ??_C@_09KDII@?5?5?5?5?$CF08x?6?$AA@ 004437fc sitobren.obj - 0004:00000808 ??_C@_07LPPG@?5?5?5?5?$CFs?6?$AA@ 00443808 sitobren.obj - 0004:00000810 ??_C@_0CN@KHHL@Unexpected?5token?5at?5line?5?$CFd?0?5cha@ 00443810 sitobren.obj - 0004:00000840 ??_C@_0DI@EPDP@Error?3?5found?5?8costume?8?5token?5bef@ 00443840 sitobren.obj - 0004:00000878 ??_C@_0DH@GECK@Error?3?5found?5?8action?8?5token?5befo@ 00443878 sitobren.obj - 0004:000008b0 ??_C@_00A@?$AA@ 004438b0 sitobren.obj - 0004:000008b4 ??_C@_04EHOP@BYTE?$AA@ 004438b4 sitobren.obj - 0004:000008bc ??_C@_0O@DJPE@?$CDinclude?5?$CC?$CFs?$CC?$AA@ 004438bc sitobren.obj - 0004:000008cc ??_C@_0P@FHOK@Error?3?5?$CFs?$DL?5?$CFs?6?$AA@ 004438cc sitobren.obj - 0004:000008dc ??_C@_0CH@EHHC@Error?3?5expected?5degrees?5as?5an?5in@ 004438dc sitobren.obj - 0004:00000904 ??_C@_0CL@PJGJ@Error?3?5expected?5integer?5or?5float@ 00443904 sitobren.obj - 0004:00000930 ??_C@_0BJ@DMCO@Error?3?5expected?5integer?6?$AA@ 00443930 sitobren.obj - 0004:0000094c ??_C@_0BI@DODN@Error?3?5expected?5string?6?$AA@ 0044394c sitobren.obj - 0004:00000964 ??_C@_0FK@GOB@?5?5?5?5ACTOR?5CNO?5?$CFd?0?5NAMED?5?$CC?$CFs?$CC?0?6?5?5@ 00443964 sitobren.obj - 0004:000009c0 ??_C@_0DD@FECK@Error?5occured?5during?5processing?5@ 004439c0 sitobren.obj - 0004:000009f4 ??_C@_08CEGN@ENDCHUNK?$AA@ 004439f4 sitobren.obj - 0004:00000a00 ??_C@_0CK@GBHA@All?5mesh?5and?5null?5nodes?5will?5be?5@ 00443a00 sitobren.obj - 0004:00000a2c ??_C@_0EH@CNJA@All?5mesh?5nodes?0?5and?5null?5nodes?5w@ 00443a2c sitobren.obj - 0004:00000a74 ??_C@_0DB@KEOG@Only?5nodes?5with?5body?5part?5sets?5w@ 00443a74 sitobren.obj - 0004:00000aa8 ??_C@_0CG@IMK@Body?5part?5sets?5will?5not?5be?5gener@ 00443aa8 sitobren.obj - 0004:00000ad0 ??_C@_0P@LHFD@New?5actor?3?5?$CFs?6?$AA@ 00443ad0 sitobren.obj - 0004:00000ae0 ??_C@_0DC@CCFP@Error?3?5body?5part?5sets?5state?5out?5@ 00443ae0 sitobren.obj - 0004:00000b14 ??_C@_0O@NGDM@actor?5ignored?$AA@ 00443b14 sitobren.obj - 0004:00000b24 ??_C@_0HP@CINE@?5?5?5?5ACTION?5NAMED?5?$CC?$CFs?$CC?5FILEBASE?5?$CC@ 00443b24 sitobren.obj - 0004:00000ba4 ??_C@_0DK@GDF@Average?5XF?5collision?5chain?5had?5?$CF@ 00443ba4 sitobren.obj - 0004:00000be0 ??_C@_0CD@JDHO@XF?5collision?5chain?5had?5?$CFd?5entrie@ 00443be0 sitobren.obj - 0004:00000c04 ??_C@_0BG@BFNC@Emptying?5XF?5database?6?$AA@ 00443c04 sitobren.obj - 0004:00000c1c ??_C@_0BB@JGBD@?$CFs?5?$CFs?5Transforms?$AA@ 00443c1c sitobren.obj - 0004:00000c30 ??_C@_0L@FJJG@?$CFs?5?$CFs?5Cels?$AA@ 00443c30 sitobren.obj - 0004:00000c3c ??_C@_0CC@KJDK@Couldn?8t?5create?5CPS?5array?5?9?9?5OOM@ 00443c3c sitobren.obj - 0004:00000c60 ??_C@_0BN@EGJI@Couldn?8t?5create?5GLXF?5?9?9?5OOM?6?$AA@ 00443c60 sitobren.obj - 0004:00000c80 ??_C@_0CM@BPIE@Found?5?$CFd?5mesh?5nodes?0?5totalling?5?$CF@ 00443c80 sitobren.obj - 0004:00000cac ??_C@_0CF@IODA@Distance?5from?5previous?5cel?5is?5?$CF5@ 00443cac sitobren.obj - 0004:00000cd4 ??_C@_0CG@FIEH@Error?3?5processing?5cel?5heirarchy?5@ 00443cd4 sitobren.obj - 0004:00000cfc ??_C@_0DF@EHFN@Warning?3?5costume?5info?5will?5be?5ex@ 00443cfc sitobren.obj - 0004:00000d34 ??_C@_0CB@JBLI@Error?3?5Can?8t?5read?5cel?5file?5?$CI?$CFs?$CJ?6@ 00443d34 sitobren.obj - 0004:00000d58 ??_C@_0CK@EIHN@Error?3?5Computed?5filename?5too?5lon@ 00443d58 sitobren.obj - 0004:00000d84 ??_C@_07PAPD@?9?$CFd?4hrc?$AA@ 00443d84 sitobren.obj - 0004:00000d8c ??_C@_0DM@CKID@Warning?3?5step?5size?5parameter?5ign@ 00443d8c sitobren.obj - 0004:00000dc8 ??_C@_0CH@NODG@Warning?3?5single?9cel?5non?9static?5a@ 00443dc8 sitobren.obj - 0004:00000df0 ??_C@_0DC@FBCJ@Error?3?5non?9positive?5increment?5fo@ 00443df0 sitobren.obj - 0004:00000e24 ??_C@_0P@JGCM@action?5ignored?$AA@ 00443e24 sitobren.obj - 0004:00000e34 ??_C@_0CJ@GKBE@Warning?3?5no?5custom?5material?5info@ 00443e34 sitobren.obj - 0004:00000e60 ??_C@_0CH@MAMM@Warning?3?5no?5body?5part?5set?5info?5?9@ 00443e60 sitobren.obj - 0004:00000e88 ??_C@_0CE@NIDP@Error?3?5Couldn?8t?5create?5GLPI?5?9?9?5O@ 00443e88 sitobren.obj - 0004:00000eac ??_C@_0FF@JJOO@?5?5?5?5BACKGROUND?5CNO?5?$CFd?0?5NAMED?5?$CC?$CFs@ 00443eac sitobren.obj - 0004:00000f04 ??_C@_0O@NOHN@?$CFs?5Background?$AA@ 00443f04 sitobren.obj - 0004:00000f14 ??_C@_0BD@EMFP@background?5ignored?$AA@ 00443f14 sitobren.obj - 0004:00000f28 ??_C@_02DILL@?$CFs?$AA@ 00443f28 sitobren.obj - 0004:00000f2c ??_C@_04JDGB@?0?5?$CFd?$AA@ 00443f2c sitobren.obj - 0004:00000f34 ??_C@_0BB@JBJM@?5?5?5?5?5?5?5?5USE_SETS?$AA@ 00443f34 sitobren.obj - 0004:00000f48 ??_C@_0BI@BHLD@?5?5?5?5COSTUME?5FILE?5?$CC?$CFs?$CC?0?6?$AA@ 00443f48 sitobren.obj - 0004:00000f60 ??_C@_0CO@JNPA@Error?3?5processing?5hierarchy?5for?5@ 00443f60 sitobren.obj - 0004:00000f90 ??_C@_0DD@NMKL@Error?3?5processing?5SoftImage?5data@ 00443f90 sitobren.obj - 0004:00000fc4 ??_C@_0CF@PPNJ@Error?3?5Can?8t?5read?5costume?5file?5?$CI@ 00443fc4 sitobren.obj - 0004:00000fec ??_C@_0DC@GELP@Error?3?5can?8t?5build?5list?5of?5body?5@ 00443fec sitobren.obj - 0004:00001020 ??_C@_0BA@OFMA@costume?5ignored?$AA@ 00444020 sitobren.obj - 0004:00001030 ??_C@_01BJG@?6?$AA@ 00444030 sitobren.obj - 0004:00001034 ??_C@_09IGOD@?$CFs?5Lights?$AA@ 00444034 sitobren.obj - 0004:00001040 ??_C@_0CD@DECK@Couldn?8t?5add?5light?5to?5GLLT?5?9?9?5OO@ 00444040 sitobren.obj - 0004:00001064 ??_C@_0DH@IKLE@Computed?5light?5filename?5too?5long@ 00444064 sitobren.obj - 0004:0000109c ??_C@_0BD@PBEA@?$CFs?9light?$CFd?41?90?4sal?$AA@ 0044409c sitobren.obj - 0004:000010b0 ??_C@_0BI@NMBJ@Couldn?8t?5allocate?5GLLT?6?$AA@ 004440b0 sitobren.obj - 0004:000010c8 ??_C@_0N@PNLA@?$CFs?5Bitmap?5?$CFd?$AA@ 004440c8 sitobren.obj - 0004:000010d8 ??_C@_0N@PCKG@?$CFs?5Camera?5?$CFd?$AA@ 004440d8 sitobren.obj - 0004:000010e8 ??_C@_03HHKO@?$CFs?6?$AA@ 004440e8 sitobren.obj - 0004:000010ec ??_C@_0CJ@OMFG@Error?3?5Couldn?8t?5read?5camera?5pale@ 004440ec sitobren.obj - 0004:00001118 ??_C@_0L@CFFH@?$CFs?5Palette?$AA@ 00444118 sitobren.obj - 0004:00001124 ??_C@_0CJ@ENNH@Error?3?5Couldn?8t?5create?5palette?5f@ 00444124 sitobren.obj - 0004:00001150 ??_C@_0DG@LCPG@Computed?5bitmap?5filename?5too?5lon@ 00444150 sitobren.obj - 0004:00001188 ??_C@_0BB@LIAP@?$CFs?9view?41?9?$CFd?4bmp?$AA@ 00444188 sitobren.obj - 0004:0000119c ??_C@_0DF@IIPE@Computed?5camera?5filename?5too?5lon@ 0044419c sitobren.obj - 0004:000011d4 ??_C@_0BA@IFFI@?$CFs?9cam?41?9?$CFd?4sac?$AA@ 004441d4 sitobren.obj - 0004:000011e4 ??_C@_0CJ@JLP@Error?3?5Couldn?8t?5build?5z?9buffer?5f@ 004441e4 sitobren.obj - 0004:00001210 ??_C@_0CE@OFGL@Error?3?5Couldn?8t?5open?5z?9buffer?5fi@ 00444210 sitobren.obj - 0004:00001234 ??_C@_0BC@ENDC@?$CFs?9view?41?9?$CFd?4Zbmp?$AA@ 00444234 sitobren.obj - 0004:00001248 ??_C@_0P@DADA@?$CFs?5Z?9Buffer?5?$CFd?$AA@ 00444248 sitobren.obj - 0004:00001258 ??_C@_0CH@MJCC@Error?3?5Not?5enough?5memory?5for?5z?9b@ 00444258 sitobren.obj - 0004:00001280 ??_C@_0DJ@MGJE@Computed?5z?9buffer?5filename?5too?5l@ 00444280 sitobren.obj - 0004:000012bc ??_C@_0BC@MEBG@?$CFs?9view?41?9?$CFd?4Zpic?$AA@ 004442bc sitobren.obj - 0004:000012d0 ??_C@_0BN@GGGJ@Error?3?5Invalid?5triplet?5data?6?$AA@ 004442d0 sitobren.obj - 0004:000012f0 ??_C@_0CG@JMBE@Error?3?5Couldn?8t?5build?5light?5file@ 004442f0 sitobren.obj - 0004:00001318 ??_C@_0CB@KAEG@Error?3?5Couldn?8t?5open?5light?5file?6@ 00444318 sitobren.obj - 0004:0000133c ??_C@_0CH@IPMP@Error?3?5Expected?5STATIC?5after?5INT@ 0044433c sitobren.obj - 0004:00001364 ??_C@_0CH@HFCJ@Error?3?5Expected?5STATIC?5after?5POS@ 00444364 sitobren.obj - 0004:0000138c ??_C@_0CH@NFGM@Error?3?5Couldn?8t?5build?5camera?5fil@ 0044438c sitobren.obj - 0004:000013b4 ??_C@_0CC@GNHK@Error?3?5Couldn?8t?5open?5camera?5file@ 004443b4 sitobren.obj - 0004:000013d8 ??_C@_0CD@JEBF@Error?3?5Invalid?5FIELD_OF_VIEW?5dat@ 004443d8 sitobren.obj - 0004:000013fc ??_C@_0BJ@LCBN@Error?3?5Invalid?5FAR?5data?6?$AA@ 004443fc sitobren.obj - 0004:00001418 ??_C@_0BK@PEFJ@Error?3?5Invalid?5NEAR?5data?6?$AA@ 00444418 sitobren.obj - 0004:00001434 ??_C@_0CO@EFEN@Warning?3?5mesh?5node?5?$CC?$CFs?$CC?5has?5no?5b@ 00444434 sitobren.obj - 0004:00001464 ??_C@_0CF@DBHG@Out?5of?5memory?5allocating?5model?5n@ 00444464 sitobren.obj - 0004:0000148c ??_C@_0BO@EEAK@node?5?$CC?$CFs?$CC?5?$CIbody?5part?5set?5?$CFd?$CJ?6?$AA@ 0044448c sitobren.obj - 0004:000014ac ??_C@_03BNFD@?$CF?$CKc?$AA@ 004444ac sitobren.obj - 0004:000014b0 ??_C@_0CK@BBDF@Warning?3?5missing?5material?5for?5me@ 004444b0 sitobren.obj - 0004:000014dc ??_C@_0CK@FOKH@Couldn?8t?5allocate?5Brender?5hierar@ 004444dc sitobren.obj - 0004:00001508 ??_C@_0CD@FFHN@Couldn?8t?5allocate?5MODLF?5structur@ 00444508 sitobren.obj - 0004:0000152c ??_C@_0BD@GMCM@?5Texture?5transform?$AA@ 0044452c sitobren.obj - 0004:00001540 ??_C@_0EC@MINF@Node?5bounds?3?5?$CI?$CF?56?42f?0?5?$CF?56?42f?0?5?$CF?5@ 00444540 sitobren.obj - 0004:00001584 ??_C@_0CH@FAIA@Warning?3?5vertex?5out?5of?5range?5for@ 00444584 sitobren.obj - 0004:000015ac ??_C@_0CJ@LOBF@SoftImage?5data?5has?5?$CFd?5vertices?5f@ 004445ac sitobren.obj - 0004:000015d8 ??_C@_0DN@JPDL@Warning?3?5texture?5BMP?5file?5does?5n@ 004445d8 sitobren.obj - 0004:00001618 ??_C@_0BL@MIDM@?$CFs?5Part?5?$CFd?5Costume?5?$CFd?5MTRL?$AA@ 00444618 sitobren.obj - 0004:00001634 ??_C@_0BI@LKMG@?$CFs?5Part?5?$CFd?5Default?5MTRL?$AA@ 00444634 sitobren.obj - 0004:0000164c ??_C@_0BP@IBGA@?$CFs?5Body?5Part?5Set?5?$CFd?5Costume?5?$CFd?$AA@ 0044464c sitobren.obj - 0004:0000166c ??_C@_0BM@EFBI@?$CFs?5Body?5Part?5Set?5?$CFd?5Default?$AA@ 0044466c sitobren.obj - 0004:00001688 ??_C@_0CO@JCCF@Warning?3?5no?5body?5part?5set?5inform@ 00444688 sitobren.obj - 0004:000016b8 ??_C@_0M@IPNH@?5?$CInode?5?$CFs?$CJ?6?$AA@ 004446b8 sitobren.obj - 0004:000016c4 ??_C@_0DB@BDBK@Error?3?5cel?5doesn?8t?5match?5previou@ 004446c4 sitobren.obj - 0004:000016f8 ??_C@_0CJ@DPB@Error?3?5Couldn?8t?5add?5node?5to?5GLPI@ 004446f8 sitobren.obj - 0004:00001724 ??_C@_0BI@DAOD@WrapAddVertex?3?5no?5space?$AA@ 00444724 sitobren.obj - 0004:0000173c ??_C@_0BI@FIIP@Face?5?$CFd?5has?5a?5bad?5edge?6?$AA@ 0044473c sitobren.obj - 0004:00001754 ??_C@_0DH@JLAM@Average?5collision?5chain?5has?5?$CF1?42@ 00444754 sitobren.obj - 0004:0000178c ??_C@_0CG@EKJM@Model?5collision?5chain?5has?5?$CFd?5ent@ 0044478c sitobren.obj - 0004:000017b4 ??_C@_0M@LGLF@?$CFs?5Model?5?$CFz?$AA@ 004447b4 sitobren.obj - 0004:000017c0 ??_C@_0M@LEAP@?$CFs?5Model?5?$CFd?$AA@ 004447c0 sitobren.obj - 0004:000017cc ??_C@_0P@KGJE@?5unnamed?5node?6?$AA@ 004447cc sitobren.obj - 0004:000017dc ??_C@_09GFH@?5node?5?$CFs?6?$AA@ 004447dc sitobren.obj - 0004:000017e8 ??_C@_0CO@IIGO@Warning?3?5couldn?8t?5fix?5up?5texture@ 004447e8 sitobren.obj - 0004:00001818 ??_C@_0BC@LGF@?$CFs?5Body?5Part?5Sets?$AA@ 00444818 sitobren.obj - 0004:0000182c ??_C@_0EF@DFMF@Warning?3?5couldn?8t?5write?5all?5TMAP@ 0044482c sitobren.obj - 0004:00001874 ??_C@_0M@FGAO@?$CFs?5Costumes?$AA@ 00444874 sitobren.obj - 0004:00001880 ??_C@_07GIPK@?$CFs?5Tree?$AA@ 00444880 sitobren.obj - 0004:00001888 ??_C@_0CD@DDHB@Couldn?8t?5add?5entry?5to?5GLXF?5?9?9?5OO@ 00444888 sitobren.obj - 0004:000018ac ??_C@_0FB@ECFP@Warning?3?5non?9null?5accessory?5node@ 004448ac sitobren.obj - 0004:00001900 ??_C@_0GJ@MMJO@Warning?3?5mesh?5found?5with?5identic@ 00444900 sitobren.obj - 0004:0000196c ??_C@_0CB@BLDI@Couldn?8t?5allocate?5Model?5DB?5node?6@ 0044496c sitobren.obj - 0004:00001990 ??_C@_0CF@HGAH@Couldn?8t?5add?5node?5to?5model?5datab@ 00444990 sitobren.obj - 0004:000019b8 ??_C@_0CM@DKN@Error?3?5Couldn?8t?5allocate?5Transfo@ 004449b8 sitobren.obj - 0004:000019e4 ??_C@_0DA@BGJL@Error?3?5Couldn?8t?5add?5node?5to?5tran@ 004449e4 sitobren.obj - 0004:00001a14 ??_C@_0DK@IHNP@Didn?8t?5find?5exact?5match?5for?5colo@ 00444a14 sitobren.obj - 0004:00001a50 ??_C@_01HMO@?$CC?$AA@ 00444a50 sitobren.obj - 0004:00001a54 ??_C@_02MECO@?$CFd?$AA@ 00444a54 sitobren.obj - 0004:00001a58 ??_C@_07NOMF@?$CFd?4?$CF05d?$AA@ 00444a58 sitobren.obj - 0004:00001a9c _SI_SOFTIMAGE_NAME 00444a9c sysglob.obj - 0004:00001aa0 _SI_actFrame 00444aa0 sysglob.obj - 0004:00001aa4 _SI_actKeyfrm 00444aa4 sysglob.obj - 0004:00001aa8 _SI_actLoop 00444aa8 sysglob.obj - 0004:00001aac _SI_actorRsrc 00444aac sysglob.obj - 0004:00001ab0 _SI_addInDictionary 00444ab0 sysglob.obj - 0004:00001ab4 _SI_busyCursor 00444ab4 sysglob.obj - 0004:00001ab8 _SI_buttonLeft 00444ab8 sysglob.obj - 0004:00001abc _SI_buttonMiddle 00444abc sysglob.obj - 0004:00001ac0 _SI_buttonRight 00444ac0 sysglob.obj - 0004:00001ac4 _SI_canvasMask 00444ac4 sysglob.obj - 0004:00001ac8 _SI_colorSelect 00444ac8 sysglob.obj - 0004:00001acc _SI_coordx 00444acc sysglob.obj - 0004:00001ad0 _SI_coordy 00444ad0 sysglob.obj - 0004:00001ad4 _SI_currentLeftmouse 00444ad4 sysglob.obj - 0004:00001ad8 _SI_currentMiddlemouse 00444ad8 sysglob.obj - 0004:00001adc _SI_currentMsg 00444adc sysglob.obj - 0004:00001ae0 _SI_currentRightmouse 00444ae0 sysglob.obj - 0004:00001ae4 _SI_currentType 00444ae4 sysglob.obj - 0004:00001ae8 _SI_channelsCustom 00444ae8 sysglob.obj - 0004:00001aec _SI_characRsrc 00444aec sysglob.obj - 0004:00001af0 _SI_dialogsOpen 00444af0 sysglob.obj - 0004:00001af4 _SI_doubleClickDelay 00444af4 sysglob.obj - 0004:00001af8 _SI_fastPlayBackActive 00444af8 sysglob.obj - 0004:00001afc _SI_materialLib 00444afc sysglob.obj - 0004:00001b00 _SI_matterRsrc 00444b00 sysglob.obj - 0004:00001b04 _SI_modelCustom 00444b04 sysglob.obj - 0004:00001b08 _SI_modelRsrc 00444b08 sysglob.obj - 0004:00001b0c _SI_motionCustom 00444b0c sysglob.obj - 0004:00001b10 _SI_motionRsrc 00444b10 sysglob.obj - 0004:00001b14 _SI_noticeRsrc 00444b14 sysglob.obj - 0004:00001b18 _SI_objectPath 00444b18 sysglob.obj - 0004:00001b1c _SI_oldMsg 00444b1c sysglob.obj - 0004:00001b20 _SI_oldType 00444b20 sysglob.obj - 0004:00001b24 _SI_operSys 00444b24 sysglob.obj - 0004:00001b28 _SI_paletteLib 00444b28 sysglob.obj - 0004:00001b2c _SI_picturePath 00444b2c sysglob.obj - 0004:00001b30 _SI_rgbActive 00444b30 sysglob.obj - 0004:00001b34 _SI_reflectMatter 00444b34 sysglob.obj - 0004:00001b38 _SI_saveCurrGeom 00444b38 sysglob.obj - 0004:00001b3c _SI_saveTriMesh 00444b3c sysglob.obj - 0004:00001b40 _SI_shwNul 00444b40 sysglob.obj - 0004:00001b44 _SI_shwPrj 00444b44 sysglob.obj - 0004:00001b48 _SI_shwSup 00444b48 sysglob.obj - 0004:00001b4c _SI_shwTxt 00444b4c sysglob.obj - 0004:00001b50 _SI_rightHand 00444b50 sysglob.obj - 0004:00001b54 _SI_versionInput 00444b54 sysglob.obj - 0004:00001b58 _SI_versionOutput 00444b58 sysglob.obj - 0004:00001b5c _SI_tabletActive 00444b5c sysglob.obj - 0004:00001b60 _SI_tabletName 00444b60 sysglob.obj - 0004:00001b64 _SI_standaloneRenderer 00444b64 sysglob.obj - 0004:00001b68 _SI_supraMode 00444b68 sysglob.obj - 0004:00001b6c _SI_systemNbdial 00444b6c sysglob.obj - 0004:00001b70 _SI_sysid 00444b70 sysglob.obj - 0004:00001b74 _SI_setupRsrc 00444b74 sysglob.obj - 0004:00001b78 _SI_userPrefKeysRsrc 00444b78 sysglob.obj - 0004:00001b7c _SI_textureLib 00444b7c sysglob.obj - 0004:00001b80 _SI_texturePath 00444b80 sysglob.obj - 0004:00001b84 _SI_toolsRsrc 00444b84 sysglob.obj - 0004:00001b88 _SI_uniqueNameFlag 00444b88 sysglob.obj - 0004:00001b8c _SI_windowsRsrc 00444b8c sysglob.obj - 0004:00001b90 _SI_zoomONCursor 00444b90 sysglob.obj - 0004:00001b94 _SI_abekasRsrc 00444b94 sysglob.obj - 0004:00001b98 _SI_accomRsrc 00444b98 sysglob.obj - 0004:00001b9c _SI_active 00444b9c sysglob.obj - 0004:00001ba0 _SI_colorRsrc 00444ba0 sysglob.obj - 0004:00001ba4 _SI_gl 00444ba4 sysglob.obj - 0004:00001ba8 _SI_hrchCpst 00444ba8 sysglob.obj - 0004:00001bac _SI_pDbLib 00444bac sysglob.obj - 0004:00001bb0 _SI_prevDo2D 00444bb0 sysglob.obj - 0004:00001bb4 _SI_prevDo3D 00444bb4 sysglob.obj - 0004:00001bb8 _SI_prevDoMaterial 00444bb8 sysglob.obj - 0004:00001bbc _SI_prevDoReflect 00444bbc sysglob.obj - 0004:00001bc0 _SI_prevDoRefract 00444bc0 sysglob.obj - 0004:00001bc4 _SI_prevDoShadow 00444bc4 sysglob.obj - 0004:00001bc8 _SI_prevXres 00444bc8 sysglob.obj - 0004:00001bcc _SI_prevYres 00444bcc sysglob.obj - 0004:00001bd0 _SI_rgbmode 00444bd0 sysglob.obj - 0004:00001bd4 _SI_rsrcPath 00444bd4 sysglob.obj - 0004:00001bd8 _SI_tabletButton 00444bd8 sysglob.obj - 0004:00001bdc _SI_softFont 00444bdc sysglob.obj - 0004:00001be0 _SI_softFont15 00444be0 sysglob.obj - 0004:00001be4 _SI_tabletRsrc 00444be4 sysglob.obj - 0004:00001be8 _SI_shwAer 00444be8 sysglob.obj - 0004:00001bec _SI_shwAss 00444bec sysglob.obj - 0004:00001bf0 _SI_shwCnt 00444bf0 sysglob.obj - 0004:00001bf4 _SI_shwCon 00444bf4 sysglob.obj - 0004:00001bf8 _SI_shwConUns 00444bf8 sysglob.obj - 0004:00001bfc _SI_shwCtl 00444bfc sysglob.obj - 0004:00001c00 _SI_shwDircns 00444c00 sysglob.obj - 0004:00001c04 _SI_shwEdg 00444c04 sysglob.obj - 0004:00001c08 _SI_shwInfl 00444c08 sysglob.obj - 0004:00001c0c _SI_shwLat 00444c0c sysglob.obj - 0004:00001c10 _SI_shwLin 00444c10 sysglob.obj - 0004:00001c14 _SI_shwLinUns 00444c14 sysglob.obj - 0004:00001c18 _SI_shwLnk 00444c18 sysglob.obj - 0004:00001c1c _SI_shwNrm 00444c1c sysglob.obj - 0004:00001c20 _SI_shwPnt 00444c20 sysglob.obj - 0004:00001c24 _SI_shwPntUns 00444c24 sysglob.obj - 0004:00001c28 _SI_shwPol 00444c28 sysglob.obj - 0004:00001c2c _SI_shwSke 00444c2c sysglob.obj - 0004:00001c30 _SI_shwSrf 00444c30 sysglob.obj - 0004:00001c34 _SI_shwTag 00444c34 sysglob.obj - 0004:00001c38 _SI_shwTagUns 00444c38 sysglob.obj - 0004:00001c3c _SI_gotcha 00444c3c sysglob.obj - 0004:00001c40 _SI_fastMeta 00444c40 sysglob.obj - 0004:00001c44 _SI_fastIntenv 00444c44 sysglob.obj - 0004:00001c48 _SI_interactive 00444c48 sysglob.obj - 0004:00001c50 _SI_fmtAspect 00444c50 sysglob.obj - 0004:00001c90 _SI_fmtName 00444c90 sysglob.obj - 0004:00001ccc _SI_historyActive 00444ccc sysglob.obj - 0004:00001cd0 ??_C@_0M@KED@Custom?5size?$AA@ 00444cd0 sysglob.obj - 0004:00001cdc ??_C@_0O@NGGI@Custom?5aspect?$AA@ 00444cdc sysglob.obj - 0004:00001cec ??_C@_05DGFE@4?5X?55?$AA@ 00444cec sysglob.obj - 0004:00001cf4 ??_C@_09PDKL@6cm?5X?59cm?$AA@ 00444cf4 sysglob.obj - 0004:00001d00 ??_C@_09NNHP@6cm?5X?56cm?$AA@ 00444d00 sysglob.obj - 0004:00001d0c ??_C@_0L@EBCJ@Slide?535mm?$AA@ 00444d0c sysglob.obj - 0004:00001d18 ??_C@_04NKIB@HDTV?$AA@ 00444d18 sysglob.obj - 0004:00001d20 ??_C@_03EDOL@PAL?$AA@ 00444d20 sysglob.obj - 0004:00001d24 ??_C@_04OMOJ@NTSC?$AA@ 00444d24 sysglob.obj - 0004:00001d2c ??_C@_0N@DMCI@70mm?5OMNIMAX?$AA@ 00444d2c sysglob.obj - 0004:00001d3c ??_C@_09DEGD@70mm?5IMAX?$AA@ 00444d3c sysglob.obj - 0004:00001d48 ??_C@_0BA@CEIK@70mm?5Panavision?$AA@ 00444d48 sysglob.obj - 0004:00001d58 ??_C@_0M@MHJL@35mm?51?485?11?$AA@ 00444d58 sysglob.obj - 0004:00001d64 ??_C@_0M@MENM@35mm?51?466?11?$AA@ 00444d64 sysglob.obj - 0004:00001d70 ??_C@_0M@CGNA@35mm?51?437?11?$AA@ 00444d70 sysglob.obj - 0004:00001d7c ??_C@_0N@PCKM@?1Tablet?4rsrc?$AA@ 00444d7c sysglob.obj - 0004:00001d8c ??_C@_0BB@LCHO@?1Softimage15?4fnt?$AA@ 00444d8c sysglob.obj - 0004:00001da0 ??_C@_0P@GJHD@?1Softimage?4fnt?$AA@ 00444da0 sysglob.obj - 0004:00001db0 ??_C@_05ELEA@?2rsrc?$AA@ 00444db0 sysglob.obj - 0004:00001db8 ??_C@_0O@GAFP@?1Desktop?4rsrc?$AA@ 00444db8 sysglob.obj - 0004:00001dc8 ??_C@_0M@NILP@?1Accom?4rsrc?$AA@ 00444dc8 sysglob.obj - 0004:00001dd4 ??_C@_0N@GPKB@?1Abekas?4rsrc?$AA@ 00444dd4 sysglob.obj - 0004:00001de4 ??_C@_0O@KBDE@?1Windows?4rsrc?$AA@ 00444de4 sysglob.obj - 0004:00001df4 ??_C@_0M@BHIC@?1Tools?4rsrc?$AA@ 00444df4 sysglob.obj - 0004:00001e00 ??_C@_0L@OBIA@SIKeys?4sks?$AA@ 00444e00 sysglob.obj - 0004:00001e0c ??_C@_09FJOL@Setup?4sts?$AA@ 00444e0c sysglob.obj - 0004:00001e18 ??_C@_08FDFC@?1Reflect?$AA@ 00444e18 sysglob.obj - 0004:00001e24 ??_C@_0L@JDHA@?1Copyright?$AA@ 00444e24 sysglob.obj - 0004:00001e30 ??_C@_0N@IOFN@?1Motion?4rsrc?$AA@ 00444e30 sysglob.obj - 0004:00001e40 ??_C@_0BN@GNLN@?1usr?1softimage?1custom?1motion?$AA@ 00444e40 sysglob.obj - 0004:00001e60 ??_C@_0M@MGCK@?1Model?4rsrc?$AA@ 00444e60 sysglob.obj - 0004:00001e6c ??_C@_0BM@GGOC@?1usr?1softimage?1custom?1model?$AA@ 00444e6c sysglob.obj - 0004:00001e88 ??_C@_0N@PDMO@?1Matter?4rsrc?$AA@ 00444e88 sysglob.obj - 0004:00001e98 ??_C@_0BA@NMIA@?1Character?4rsrc?$AA@ 00444e98 sysglob.obj - 0004:00001ea8 ??_C@_0BO@LKKE@?1usr?1softimage?1chnlDriver?1bin?$AA@ 00444ea8 sysglob.obj - 0004:00001ec8 ??_C@_0M@LNPM@?1Actor?4rsrc?$AA@ 00444ec8 sysglob.obj - 0004:00001ed4 ??_C@_0N@OBIP@SOFTIMAGE?53D?$AA@ 00444ed4 sysglob.obj - 0004:00001ee4 ?vpcodmUtil@@3PAVCODM@@A 00444ee4 utilglob.obj - 0004:00001ee8 ?vpusac@@3PAVUSAC@@A 00444ee8 utilglob.obj - 0004:00001eec ?vpers@@3PAVERS@@A 00444eec utilerro.obj - 0004:00001ef0 ?vpfnlib@@3P6GJJJ@ZA 00444ef0 utilmem.obj - 0004:00001ef4 ?_fInLiberator@@3HA 00444ef4 utilmem.obj - 0004:00001ff8 ?_rtiLast@CFL@@0JA 00444ff8 chunk.obj - 0004:00001ffc ?vftgCreator@FIL@@2JA 00444ffc file.obj - 0004:00002000 ?vftgTemp@@3JA 00445000 fniwin.obj - 0004:00002008 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00445008 fniwin.obj - 0004:00002014 ??_C@_05OIIM@?7PACK?$AA@ 00445014 chse.obj - 0004:0000201c ??_C@_0BA@MOLF@CHUNK?$CI?8?$CFf?8?0?5?$CFd?$CJ?$AA@ 0044501c chse.obj - 0004:0000202c ??_C@_0BG@FJJK@CHUNK?$CI?8?$CFf?8?0?5?$CFd?0?5?$CC?$CFs?$CC?$CJ?$AA@ 0044502c chse.obj - 0004:00002044 ??_C@_0BF@OHOP@PARENT?$CI?8?$CFf?8?0?5?$CFd?0?5?$CFd?$CJ?$AA@ 00445044 chse.obj - 0004:0000205c ??_C@_0BI@KEEE@BITMAP?$CI?$CFd?0?5?$CFd?0?5?$CFd?$CJ?5?$CC?$CFs?$CC?$AA@ 0044505c chse.obj - 0004:00002074 ??_C@_09EIEE@FILE?5?$CC?$CFs?$CC?$AA@ 00445074 chse.obj - 0004:00002080 ??_C@_0BA@FJIA@PACKEDFILE?5?$CC?$CFs?$CC?$AA@ 00445080 chse.obj - 0004:00002090 ??_C@_02OGOH@?8?5?$AA@ 00445090 chse.obj - 0004:00002094 ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 00445094 chse.obj - 0004:0000209c ??_C@_07POOB@0x?$CF02x?5?$AA@ 0044509c chse.obj - 0004:000020a4 ??_C@_05GLIP@?5?5?5?5?5?$AA@ 004450a4 chse.obj - 0004:000020ac ??_C@_05BME@?7ITEM?$AA@ 004450ac chse.obj - 0004:000020b4 ??_C@_05GJCF@?7FREE?$AA@ 004450b4 chse.obj - 0004:000020bc ??_C@_07DGD@?7GL?$CI?$CFd?$CJ?$AA@ 004450bc chse.obj - 0004:000020c4 ??_C@_07HOKD@?7AL?$CI?$CFd?$CJ?$AA@ 004450c4 chse.obj - 0004:000020cc ??_C@_04KCOE@?7VAR?$AA@ 004450cc chse.obj - 0004:000020d4 ??_C@_07OCCG@?7GG?$CI?$CFd?$CJ?$AA@ 004450d4 chse.obj - 0004:000020dc ??_C@_07JPOG@?7AG?$CI?$CFd?$CJ?$AA@ 004450dc chse.obj - 0004:000020e8 ?_pszOom@@3PADA 004450e8 scrcom.obj - 0004:000020ec ?_pszSyntax@@3PADA 004450ec scrcom.obj - 0004:000020f0 ?_rgszop@@3QAUSZOP@@A 004450f0 scrcom.obj - 0004:000022d0 ?_rgarop@@3QAUAROP@@A 004452d0 scrcom.obj - 0004:00002540 ?_rgpszKey@@3QAPADA 00445540 scrcom.obj - 0004:00002560 ?_rgtomeExp@@3QAUTOME@@A 00445560 scrcom.obj - 0004:000027c0 ?_rgtomeOp@@3QAUTOME@@A 004457c0 scrcom.obj - 0004:00002884 ??_C@_08HOLA@Continue?$AA@ 00445884 scrcom.obj - 0004:00002890 ??_C@_05EABD@Break?$AA@ 00445890 scrcom.obj - 0004:00002898 ??_C@_05NNJC@While?$AA@ 00445898 scrcom.obj - 0004:000028a0 ??_C@_03HPMG@End?$AA@ 004458a0 scrcom.obj - 0004:000028a4 ??_C@_04CCEF@Else?$AA@ 004458a4 scrcom.obj - 0004:000028ac ??_C@_04CPFE@Elif?$AA@ 004458ac scrcom.obj - 0004:000028b4 ??_C@_02BAJ@If?$AA@ 004458b4 scrcom.obj - 0004:000028b8 ??_C@_04POBJ@Goto?$AA@ 004458b8 scrcom.obj - 0004:000028c0 ??_C@_06GDJA@IfGoto?$AA@ 004458c0 scrcom.obj - 0004:000028c8 ??_C@_0L@KPKB@CopySubStr?$AA@ 004458c8 scrcom.obj - 0004:000028d4 ??_C@_06KDAM@LenStr?$AA@ 004458d4 scrcom.obj - 0004:000028dc ??_C@_0L@ICIJ@ConcatStrs?$AA@ 004458dc scrcom.obj - 0004:000028e8 ??_C@_08HOLI@StrToNum?$AA@ 004458e8 scrcom.obj - 0004:000028f4 ??_C@_08PBFD@NumToStr?$AA@ 004458f4 scrcom.obj - 0004:00002900 ??_C@_09JFKG@ScaleTime?$AA@ 00445900 scrcom.obj - 0004:0000290c ??_C@_09KOLA@MergeStrs?$AA@ 0044590c scrcom.obj - 0004:00002918 ??_C@_07MHIA@NukeStr?$AA@ 00445918 scrcom.obj - 0004:00002920 ??_C@_07ELLC@MoveStr?$AA@ 00445920 scrcom.obj - 0004:00002928 ??_C@_07PCEE@CopyStr?$AA@ 00445928 scrcom.obj - 0004:00002930 ??_C@_05PFIH@Pause?$AA@ 00445930 scrcom.obj - 0004:00002938 ??_C@_05LKIE@Match?$AA@ 00445938 scrcom.obj - 0004:00002940 ??_C@_08HGHE@NextCard?$AA@ 00445940 scrcom.obj - 0004:0000294c ??_C@_0M@GGGO@ShuffleList?$AA@ 0044594c scrcom.obj - 0004:00002958 ??_C@_07MFK@Shuffle?$AA@ 00445958 scrcom.obj - 0004:00002960 ??_C@_09CAHB@SetReturn?$AA@ 00445960 scrcom.obj - 0004:0000296c ??_C@_06JCBD@Return?$AA@ 0044596c scrcom.obj - 0004:00002974 ??_C@_04LKDK@Exit?$AA@ 00445974 scrcom.obj - 0004:0000297c ??_C@_02DNIN@Go?$AA@ 0044597c scrcom.obj - 0004:00002980 ??_C@_04HAFI@GoNz?$AA@ 00445980 scrcom.obj - 0004:00002988 ??_C@_03JNBL@GoZ?$AA@ 00445988 scrcom.obj - 0004:0000298c ??_C@_04PFCA@GoLe?$AA@ 0044598c scrcom.obj - 0004:00002994 ??_C@_04HLIL@GoGe?$AA@ 00445994 scrcom.obj - 0004:0000299c ??_C@_04PGMH@GoLt?$AA@ 0044599c scrcom.obj - 0004:000029a4 ??_C@_04HIGM@GoGt?$AA@ 004459a4 scrcom.obj - 0004:000029ac ??_C@_04NIHF@GoNe?$AA@ 004459ac scrcom.obj - 0004:000029b4 ??_C@_04FFPC@GoEq?$AA@ 004459b4 scrcom.obj - 0004:000029bc ??_C@_06ININ@Select?$AA@ 004459bc scrcom.obj - 0004:000029c4 ??_C@_07KEJC@RndList?$AA@ 004459c4 scrcom.obj - 0004:000029cc ??_C@_07OONJ@PopList?$AA@ 004459cc scrcom.obj - 0004:000029d4 ??_C@_07GBJG@DupList?$AA@ 004459d4 scrcom.obj - 0004:000029dc ??_C@_03JCDI@Rev?$AA@ 004459dc scrcom.obj - 0004:000029e0 ??_C@_03FPBH@Rot?$AA@ 004459e0 scrcom.obj - 0004:000029e4 ??_C@_04BCL@Swap?$AA@ 004459e4 scrcom.obj - 0004:000029ec ??_C@_03FBGG@Pop?$AA@ 004459ec scrcom.obj - 0004:000029f0 ??_C@_03MKPO@Dup?$AA@ 004459f0 scrcom.obj - 0004:000029f4 ??_C@_02LCLA@Le?$AA@ 004459f4 scrcom.obj - 0004:000029f8 ??_C@_02DMBL@Ge?$AA@ 004459f8 scrcom.obj - 0004:000029fc ??_C@_02LBFH@Lt?$AA@ 004459fc scrcom.obj - 0004:00002a00 ??_C@_02DPPM@Gt?$AA@ 00445a00 scrcom.obj - 0004:00002a04 ??_C@_02JPOF@Ne?$AA@ 00445a04 scrcom.obj - 0004:00002a08 ??_C@_02BCGC@Eq?$AA@ 00445a08 scrcom.obj - 0004:00002a0c ??_C@_04ENMP@LNot?$AA@ 00445a0c scrcom.obj - 0004:00002a14 ??_C@_04HPKA@LXor?$AA@ 00445a14 scrcom.obj - 0004:00002a1c ??_C@_04LILD@BNot?$AA@ 00445a1c scrcom.obj - 0004:00002a24 ??_C@_04IKNM@BXor?$AA@ 00445a24 scrcom.obj - 0004:00002a2c ??_C@_03FEFN@BOr?$AA@ 00445a2c scrcom.obj - 0004:00002a30 ??_C@_04CJLN@BAnd?$AA@ 00445a30 scrcom.obj - 0004:00002a38 ??_C@_06NIPH@MulDiv?$AA@ 00445a38 scrcom.obj - 0004:00002a40 ??_C@_03OAMN@Rnd?$AA@ 00445a40 scrcom.obj - 0004:00002a44 ??_C@_03PGJO@Dec?$AA@ 00445a44 scrcom.obj - 0004:00002a48 ??_C@_03PCMM@Inc?$AA@ 00445a48 scrcom.obj - 0004:00002a4c ??_C@_03GIFK@Neg?$AA@ 00445a4c scrcom.obj - 0004:00002a50 ??_C@_03CEPH@Abs?$AA@ 00445a50 scrcom.obj - 0004:00002a54 ??_C@_03PJNJ@Mod?$AA@ 00445a54 scrcom.obj - 0004:00002a58 ??_C@_03LANL@Div?$AA@ 00445a58 scrcom.obj - 0004:00002a5c ??_C@_03FPMJ@Mul?$AA@ 00445a5c scrcom.obj - 0004:00002a60 ??_C@_03KJKL@Sub?$AA@ 00445a60 scrcom.obj - 0004:00002a64 ??_C@_03KPJN@Add?$AA@ 00445a64 scrcom.obj - 0004:00002a68 ??_C@_0N@GABD@Syntax?5error?$AA@ 00445a68 scrcom.obj - 0004:00002a78 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 00445a78 scrcom.obj - 0004:00002a88 ?_szPoundLine@@3QADA 00445a88 lex.obj - 0004:00002a90 ?_mpchgrfct@LEXB@@1QAGA 00445a90 lex.obj - 0004:00002b90 ?_rgtt@@3QAFA 00445b90 lex.obj - 0004:00002c50 ?_rgttDouble@@3QAFA 00445c50 lex.obj - 0004:00002d00 ?_rgttEqual@@3QAFA 00445d00 lex.obj - 0004:00002db8 ??_C@_0CE@DJE@writing?5to?5destination?5file?5fail@ 00445db8 bren:tmap.obj - 0004:00002ddc ??_C@_0BE@PBHM@allocation?5failure?6?$AA@ 00445ddc bren:tmap.obj - 0004:00002df0 ??_C@_0CC@LHEJ@Couldn?8t?5create?5destination?5file@ 00445df0 bren:tmap.obj - 0004:00002ff4 _sin_table 00445ff4 brfwmxr:fixed386.obj - 0004:00003074 _cos_table 00446074 brfwmxr:fixed386.obj - 0004:00003278 _arcsin_table 00446278 brfwmxr:fixed386.obj - 0004:0000347a _arccos_table 0044647a brfwmxr:fixed386.obj - 0004:00003be7 __CombineTransforms 00446be7 brfwmxr:transfrm.obj - 0004:0000402c __BrDefaultModel 0044702c brfwmxr:def_mdl.obj - 0004:00004108 __BrMemoryDevice 00447108 brfwmxr:pmmemops.obj - 0004:00004124 __BrMemoryContext 00447124 brfwmxr:pmmemops.obj - 0004:00004230 __BrDefaultMaterial 00447230 brfwmxr:def_mat.obj - 0004:00004404 __reciprocal 00447404 brfwmxr:fixed.obj - 0004:00006410 __8087 00449410 brfwmxr:magicsym.obj - 0004:00006414 __init_387_emulator 00449414 brfwmxr:magicsym.obj - 0004:00006418 _fltused_ 00449418 brfwmxr:magicsym.obj - 0004:00006450 __br_scratch_string 00449450 brfwmxr:scrstr.obj - 0004:000066b8 __FontFixed3x5 004496b8 brfwmxr:fnt3x5.obj - 0004:00006ca8 ??_C@_02JKAF@rb?$AA@ 00449ca8 libdkit:tinyModel.obj - 0004:00006cac ??_C@_06KAIG@?$CFs?4hrc?$AA@ 00449cac libdkit:tinyModel.obj - 0004:00006cb4 ??_C@_04DIGG@?4hrc?$AA@ 00449cb4 libdkit:tinyModel.obj - 0004:00006cbc ??_C@_02NGAF@wb?$AA@ 00449cbc libdkit:tinyModel.obj - 0004:00006cc0 ??_C@_05LHJL@model?$AA@ 00449cc0 libdkit:tinyModel.obj - 0004:00006cc8 ??_C@_01KCD@?$HN?$AA@ 00449cc8 libdkit:tinyModel.obj - 0004:00006ccc ??_C@_08BPBJ@userData?$AA@ 00449ccc libdkit:tinyModel.obj - 0004:00006cd8 ??_C@_08GOJE@init_trs?$AA@ 00449cd8 libdkit:tinyModel.obj - 0004:00006ce4 ??_C@_08EEPL@init_rot?$AA@ 00449ce4 libdkit:tinyModel.obj - 0004:00006cf0 ??_C@_08ENL@init_scl?$AA@ 00449cf0 libdkit:tinyModel.obj - 0004:00006cfc ??_C@_0L@FHEJ@actor_data?$AA@ 00449cfc libdkit:tinyModel.obj - 0004:00006d08 ??_C@_09DCBJ@texture3D?$AA@ 00449d08 libdkit:tinyModel.obj - 0004:00006d14 ??_C@_07DIGL@texture?$AA@ 00449d14 libdkit:tinyModel.obj - 0004:00006d1c ??_C@_08HBI@material?$AA@ 00449d1c libdkit:tinyModel.obj - 0004:00006d28 ??_C@_0M@EDIO@DK_clusters?$AA@ 00449d28 libdkit:tinyModel.obj - 0004:00006d34 ??_C@_0O@NHJB@Nurbs_Surface?$AA@ 00449d34 libdkit:tinyModel.obj - 0004:00006d44 ??_C@_0M@JGEL@Nurbs_Curve?$AA@ 00449d44 libdkit:tinyModel.obj - 0004:00006d50 ??_C@_0L@EPLJ@metasystem?$AA@ 00449d50 libdkit:tinyModel.obj - 0004:00006d5c ??_C@_08BBL@metaball?$AA@ 00449d5c libdkit:tinyModel.obj - 0004:00006d68 ??_C@_06DJDA@spline?$AA@ 00449d68 libdkit:tinyModel.obj - 0004:00006d70 ??_C@_0M@DLNF@NURBS_face?3?$AA@ 00449d70 libdkit:tinyModel.obj - 0004:00006d7c ??_C@_04HKB@face?$AA@ 00449d7c libdkit:tinyModel.obj - 0004:00006d84 ??_C@_05JNOB@patch?$AA@ 00449d84 libdkit:tinyModel.obj - 0004:00006d8c ??_C@_04DEEH@mesh?$AA@ 00449d8c libdkit:tinyModel.obj - 0004:00006d94 ??_C@_0M@FGBD@translation?$AA@ 00449d94 libdkit:tinyModel.obj - 0004:00006da0 ??_C@_08GHGA@rotation?$AA@ 00449da0 libdkit:tinyModel.obj - 0004:00006dac ??_C@_08JPAH@?$CFf?5?$CFf?5?$CFf?$AA@ 00449dac libdkit:tinyModel.obj - 0004:00006db8 ??_C@_07HJFE@scaling?$AA@ 00449db8 libdkit:tinyModel.obj - 0004:00006dc0 ??_C@_04OPJK@name?$AA@ 00449dc0 libdkit:tinyModel.obj - 0004:00006dc8 ??_C@_01PFFB@?$HL?$AA@ 00449dc8 libdkit:tinyModel.obj - 0004:00006dcc ??_C@_06IJMB@HIDDEN?$AA@ 00449dcc libdkit:tinyModel.obj - 0004:00006dd4 ??_C@_08INKF@CARDINAL?$AA@ 00449dd4 libdkit:tinyModel.obj - 0004:00006de0 ??_C@_06OAFN@LINEAR?$AA@ 00449de0 libdkit:tinyModel.obj - 0004:00006de8 ??_C@_05CHMA@SHAPE?$AA@ 00449de8 libdkit:tinyModel.obj - 0004:00006df0 ??_C@_08OECI@SELECTED?$AA@ 00449df0 libdkit:tinyModel.obj - 0004:00006e18 ??_C@_08BFOP@CONSTANT?$AA@ 00449e18 libdkit:tinyFcurve.obj - 0004:00006e5c ??_C@_0BG@JBHJ@?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?$AA@ 00449e5c libdkit:tinyActor.obj - 0004:00006e74 ??_C@_04ELBP@nail?$AA@ 00449e74 libdkit:tinyActor.obj - 0004:00006e7c ??_C@_03BOLP@fan?$AA@ 00449e7c libdkit:tinyActor.obj - 0004:00006e80 ??_C@_04LEKE@wind?$AA@ 00449e80 libdkit:tinyActor.obj - 0004:00006e88 ??_C@_05BCBD@force?$AA@ 00449e88 libdkit:tinyActor.obj - 0004:00006e90 ??_C@_0BA@EHGK@default_gravity?$AA@ 00449e90 libdkit:tinyActor.obj - 0004:00006ea0 ??_C@_07CAPN@gravity?$AA@ 00449ea0 libdkit:tinyActor.obj - 0004:00006ea8 ??_C@_0L@KBFB@chain_leaf?$AA@ 00449ea8 libdkit:tinyActor.obj - 0004:00006eb4 ??_C@_0L@LGB@chain_root?$AA@ 00449eb4 libdkit:tinyActor.obj - 0004:00006ec0 ??_C@_0BA@MCLC@dynamic_control?$AA@ 00449ec0 libdkit:tinyActor.obj - 0004:00006ed0 ??_C@_05COPL@joint?$AA@ 00449ed0 libdkit:tinyActor.obj - 0004:00006ed8 ??_C@_0BC@MENE@articulated_chain?$AA@ 00449ed8 libdkit:tinyActor.obj - 0004:00006eec ??_C@_0P@JKCH@ik_pref_angles?$AA@ 00449eec libdkit:tinyActor.obj - 0004:00006efc ??_C@_09OHCL@ik_nbjnts?$AA@ 00449efc libdkit:tinyActor.obj - 0004:00006f08 ??_C@_07HAHE@ik_type?$AA@ 00449f08 libdkit:tinyActor.obj - 0004:00006f10 ??_C@_0CG@DBPM@invKinReadAscii?5?3?5Allocate?5faile@ 00449f10 libdkit:tinyActor.obj - 0004:00006f38 ??_C@_0M@EOBO@vert_weight?$AA@ 00449f38 libdkit:tinyActor.obj - 0004:00006f44 ??_C@_0P@BEOI@vert_thickness?$AA@ 00449f44 libdkit:tinyActor.obj - 0004:00006f54 ??_C@_0L@JLCC@vert_ratio?$AA@ 00449f54 libdkit:tinyActor.obj - 0004:00006f60 ??_C@_0BB@MHND@transform_matrix?$AA@ 00449f60 libdkit:tinyActor.obj - 0004:00006f74 ??_C@_0L@JKBN@vert_index?$AA@ 00449f74 libdkit:tinyActor.obj - 0004:00006f80 ??_C@_0CO@MCAI@DK_envelopVertReadAscii?5?3?5Alloca@ 00449f80 libdkit:tinyActor.obj - 0004:00006fb0 ??_C@_0M@IKHB@nb_vertices?$AA@ 00449fb0 libdkit:tinyActor.obj - 0004:00006fbc ??_C@_0N@GBNC@nb_envelopes?$AA@ 00449fbc libdkit:tinyActor.obj - 0004:00006fcc ??_C@_0BB@BNOM@outer_curve_data?$AA@ 00449fcc libdkit:tinyActor.obj - 0004:00006fe0 ??_C@_0BC@NCJB@outer_curve_nbpts?$AA@ 00449fe0 libdkit:tinyActor.obj - 0004:00006ff4 ??_C@_0BB@OGLL@inner_curve_data?$AA@ 00449ff4 libdkit:tinyActor.obj - 0004:00007008 ??_C@_0BC@CAGK@inner_curve_nbpts?$AA@ 0044a008 libdkit:tinyActor.obj - 0004:0000701c ??_C@_0BC@COIP@outer_curve_scale?$AA@ 0044a01c libdkit:tinyActor.obj - 0004:00007030 ??_C@_0BB@HLMA@outer_curve_ampl?$AA@ 0044a030 libdkit:tinyActor.obj - 0004:00007044 ??_C@_0BA@HEHM@outer_curve_end?$AA@ 0044a044 libdkit:tinyActor.obj - 0004:00007054 ??_C@_0BA@LLAP@outer_curve_beg?$AA@ 0044a054 libdkit:tinyActor.obj - 0004:00007064 ??_C@_0BB@JOE@outer_curve_type?$AA@ 0044a064 libdkit:tinyActor.obj - 0004:00007078 ??_C@_0BC@NMHE@inner_curve_scale?$AA@ 0044a078 libdkit:tinyActor.obj - 0004:0000708c ??_C@_0BB@IAJH@inner_curve_ampl?$AA@ 0044a08c libdkit:tinyActor.obj - 0004:000070a0 ??_C@_0BA@CDLJ@inner_curve_end?$AA@ 0044a0a0 libdkit:tinyActor.obj - 0004:000070b0 ??_C@_0BA@OMMK@inner_curve_beg?$AA@ 0044a0b0 libdkit:tinyActor.obj - 0004:000070c0 ??_C@_0BB@PCLD@inner_curve_type?$AA@ 0044a0c0 libdkit:tinyActor.obj - 0004:000070d4 ??_C@_0L@EBGI@joint_area?$AA@ 0044a0d4 libdkit:tinyActor.obj - 0004:000070e0 ??_C@_0BB@MBOA@initial_root_trs?$AA@ 0044a0e0 libdkit:tinyActor.obj - 0004:000070f4 ??_C@_0BB@OLIP@initial_root_rot?$AA@ 0044a0f4 libdkit:tinyActor.obj - 0004:00007108 ??_C@_0BB@KLKP@initial_root_scl?$AA@ 0044a108 libdkit:tinyActor.obj - 0004:0000711c ??_C@_0N@GJEM@initial_vrot?$AA@ 0044a11c libdkit:tinyActor.obj - 0004:0000712c ??_C@_05PCMN@level?$AA@ 0044a12c libdkit:tinyActor.obj - 0004:00007134 ??_C@_0CH@CBDE@envelopReadAscii?5?3?5Allocate?5fail@ 0044a134 libdkit:tinyActor.obj - 0004:0000715c ??_C@_0BD@OHCI@inverse_kinematics?$AA@ 0044a15c libdkit:tinyActor.obj - 0004:00007170 ??_C@_0BB@DMFL@joint_properties?$AA@ 0044a170 libdkit:tinyActor.obj - 0004:00007184 ??_C@_0BE@BPBG@physical_properties?$AA@ 0044a184 libdkit:tinyActor.obj - 0004:00007198 ??_C@_0N@IOAD@dynamic_root?$AA@ 0044a198 libdkit:tinyActor.obj - 0004:000071a8 ??_C@_0O@FPHC@envelope_type?$AA@ 0044a1a8 libdkit:tinyActor.obj - 0004:000071b8 ??_C@_0BC@KJFP@flexible_envelope?$AA@ 0044a1b8 libdkit:tinyActor.obj - 0004:000071e8 ??_C@_04BJAK@BBOX?$AA@ 0044a1e8 libdkit:tinyDynamics.obj - 0004:000071f0 ??_C@_07NGAI@BSPHERE?$AA@ 0044a1f0 libdkit:tinyDynamics.obj - 0004:000071f8 ??_C@_07IOEN@BSPLANE?$AA@ 0044a1f8 libdkit:tinyDynamics.obj - 0004:00007200 ??_C@_07MFB@GENERAL?$AA@ 0044a200 libdkit:tinyDynamics.obj - 0004:00007208 ??_C@_0CH@MKL@Error?0?5unknown?5shape?5level?5token@ 0044a208 libdkit:tinyDynamics.obj - 0004:00007230 ??_C@_0DD@JKOA@DK_dynamatterReadBinaryChunk?5?3?5A@ 0044a230 libdkit:tinyDynamics.obj - 0004:00007264 ??_C@_0BH@OPNE@node_coll_detect_level?$AA@ 0044a264 libdkit:tinyDynamics.obj - 0004:0000727c ??_C@_0L@JIOJ@plasticity?$AA@ 0044a27c libdkit:tinyDynamics.obj - 0004:00007288 ??_C@_08CIGD@rigidity?$AA@ 0044a288 libdkit:tinyDynamics.obj - 0004:00007294 ??_C@_0BC@FIML@kinetic_roughness?$AA@ 0044a294 libdkit:tinyDynamics.obj - 0004:000072a8 ??_C@_0BB@DFH@static_roughness?$AA@ 0044a2a8 libdkit:tinyDynamics.obj - 0004:000072bc ??_C@_0L@NEAG@elasticity?$AA@ 0044a2bc libdkit:tinyDynamics.obj - 0004:000072c8 ??_C@_07DAOL@density?$AA@ 0044a2c8 libdkit:tinyDynamics.obj - 0004:000072d0 ??_C@_0CN@MFMO@DK_dynamatterReadAscii?5?3?5Allocat@ 0044a2d0 libdkit:tinyDynamics.obj - 0004:00007300 ??_C@_0DE@NAJH@DK_dynajntpropReadBinaryChunk?5?3?5@ 0044a300 libdkit:tinyDynamics.obj - 0004:00007334 ??_C@_08LIGO@friction?$AA@ 0044a334 libdkit:tinyDynamics.obj - 0004:00007340 ??_C@_0CO@IMGB@DK_dynajntpropReadAscii?5?3?5Alloca@ 0044a340 libdkit:tinyDynamics.obj - 0004:00007388 ??_C@_0BB@EDDA@DK_cluster_state?$AA@ 0044a388 libdkit:tinyCluster.obj - 0004:0000739c ??_C@_0BE@GFKO@DK_cluster_vertices?$AA@ 0044a39c libdkit:tinyCluster.obj - 0004:000073b0 ??_C@_0BA@NFIK@DK_cluster_ncvs?$AA@ 0044a3b0 libdkit:tinyCluster.obj - 0004:000073c0 ??_C@_0BA@MDKH@DK_cluster_name?$AA@ 0044a3c0 libdkit:tinyCluster.obj - 0004:000073d0 ??_C@_0CA@DNOG@?5token?5?$FL?$CFs?$FN?5seems?5invalid?5here?6?$AA@ 0044a3d0 libdkit:tinyCluster.obj - 0004:00007438 _DK_TextureAnimName 0044a438 libdkit:tinyTexture.obj - 0004:00007448 _DK_TextureMethodName 0044a448 libdkit:tinyTexture.obj - 0004:00007470 _DK_Texture3DTypeName 0044a470 libdkit:tinyTexture.obj - 0004:0000747c ??_C@_05CKII@CLOUD?$AA@ 0044a47c libdkit:tinyTexture.obj - 0004:00007484 ??_C@_04CBFM@WOOD?$AA@ 0044a484 libdkit:tinyTexture.obj - 0004:0000748c ??_C@_06CFIO@MARBLE?$AA@ 0044a48c libdkit:tinyTexture.obj - 0004:00007494 ??_C@_0BA@FKH@WITHOUT_REFLECT?$AA@ 0044a494 libdkit:tinyTexture.obj - 0004:000074a4 ??_C@_0O@MPPP@AFTER_REFLECT?$AA@ 0044a4a4 libdkit:tinyTexture.obj - 0004:000074b4 ??_C@_09IHEH@SPHERICAL?$AA@ 0044a4b4 libdkit:tinyTexture.obj - 0004:000074c0 ??_C@_0M@GGBE@CYLINDRICAL?$AA@ 0044a4c0 libdkit:tinyTexture.obj - 0004:000074cc ??_C@_02HPMO@UV?$AA@ 0044a4cc libdkit:tinyTexture.obj - 0004:000074d0 ??_C@_02GONE@YZ?$AA@ 0044a4d0 libdkit:tinyTexture.obj - 0004:000074d4 ??_C@_02HIHO@XZ?$AA@ 0044a4d4 libdkit:tinyTexture.obj - 0004:000074d8 ??_C@_02IHMH@XY?$AA@ 0044a4d8 libdkit:tinyTexture.obj - 0004:000074dc ??_C@_08DDIM@?9?9?9?9?9?9?9?9?$AA@ 0044a4dc libdkit:tinyTexture.obj - 0004:000074e8 ??_C@_04PBEL@LIST?$AA@ 0044a4e8 libdkit:tinyTexture.obj - 0004:000074f0 ??_C@_08MFCI@SEQUENCE?$AA@ 0044a4f0 libdkit:tinyTexture.obj - 0004:000074fc ??_C@_0N@FCD@txt2d_shader?$AA@ 0044a4fc libdkit:tinyTexture.obj - 0004:0000750c ??_C@_0N@COOJ@displacement?$AA@ 0044a50c libdkit:tinyTexture.obj - 0004:0000751c ??_C@_0M@KLDB@txtsup_scal?$AA@ 0044a51c libdkit:tinyTexture.obj - 0004:00007528 ??_C@_0N@DIJO@txtsup_trans?$AA@ 0044a528 libdkit:tinyTexture.obj - 0004:00007538 ??_C@_09KPAJ@?$CFf?5?$CFf?5?$CFf?6?$AA@ 0044a538 libdkit:tinyTexture.obj - 0004:00007544 ??_C@_0L@OBOL@txtsup_rot?$AA@ 0044a544 libdkit:tinyTexture.obj - 0004:00007550 ??_C@_0BB@PDPH@?$CFhd?5?$CFhd?5?$CFhd?5?$CFhd?6?$AA@ 0044a550 libdkit:tinyTexture.obj - 0004:00007564 ??_C@_08DCMN@cropping?$AA@ 0044a564 libdkit:tinyTexture.obj - 0004:00007570 ??_C@_08IFOB@blending?$AA@ 0044a570 libdkit:tinyTexture.obj - 0004:0000757c ??_C@_06JOBA@effect?$AA@ 0044a57c libdkit:tinyTexture.obj - 0004:00007584 ??_C@_09GMLK@INTENSITY?$AA@ 0044a584 libdkit:tinyTexture.obj - 0004:00007590 ??_C@_05PGEK@ALPHA?$AA@ 0044a590 libdkit:tinyTexture.obj - 0004:00007598 ??_C@_04IDKE@mask?$AA@ 0044a598 libdkit:tinyTexture.obj - 0004:000075a0 ??_C@_05JNMF@alpha?$AA@ 0044a5a0 libdkit:tinyTexture.obj - 0004:000075a8 ??_C@_07GIOA@reflMap?$AA@ 0044a5a8 libdkit:tinyTexture.obj - 0004:000075b0 ??_C@_09KHOK@roughness?$AA@ 0044a5b0 libdkit:tinyTexture.obj - 0004:000075bc ??_C@_06IPLH@transp?$AA@ 0044a5bc libdkit:tinyTexture.obj - 0004:000075c4 ??_C@_07DNIJ@reflect?$AA@ 0044a5c4 libdkit:tinyTexture.obj - 0004:000075cc ??_C@_08FOJI@specular?$AA@ 0044a5cc libdkit:tinyTexture.obj - 0004:000075d8 ??_C@_07OADP@diffuse?$AA@ 0044a5d8 libdkit:tinyTexture.obj - 0004:000075e0 ??_C@_07MDLH@ambient?$AA@ 0044a5e0 libdkit:tinyTexture.obj - 0004:000075e8 ??_C@_0L@LJFJ@vAlternate?$AA@ 0044a5e8 libdkit:tinyTexture.obj - 0004:000075f4 ??_C@_0L@CJBP@uAlternate?$AA@ 0044a5f4 libdkit:tinyTexture.obj - 0004:00007600 ??_C@_06CBDC@uvswap?$AA@ 0044a600 libdkit:tinyTexture.obj - 0004:00007608 ??_C@_0M@IIJD@pixelInterp?$AA@ 0044a608 libdkit:tinyTexture.obj - 0004:00007614 ??_C@_06KCLD@offset?$AA@ 0044a614 libdkit:tinyTexture.obj - 0004:0000761c ??_C@_05NGOE@?$CFf?5?$CFf?$AA@ 0044a61c libdkit:tinyTexture.obj - 0004:00007624 ??_C@_07NPBE@?$CFhd?5?$CFhd?$AA@ 0044a624 libdkit:tinyTexture.obj - 0004:0000762c ??_C@_06GLIF@repeat?$AA@ 0044a62c libdkit:tinyTexture.obj - 0004:00007634 ??_C@_06IM@method?$AA@ 0044a634 libdkit:tinyTexture.obj - 0004:0000763c ??_C@_04BPHC@anim?$AA@ 0044a63c libdkit:tinyTexture.obj - 0004:00007644 ??_C@_0CD@CPFK@Error?3?5?$CFs?5?$CFd?$CJ?3?5illegal?5token?3?5?$CFh@ 0044a644 libdkit:tinyTexture.obj - 0004:00007668 ??_C@_0N@MHGL@txt3d_shader?$AA@ 0044a668 libdkit:tinyTexture.obj - 0004:00007678 ??_C@_07KKDI@colour4?$AA@ 0044a678 libdkit:tinyTexture.obj - 0004:00007680 ??_C@_07NPLK@factor3?$AA@ 0044a680 libdkit:tinyTexture.obj - 0004:00007688 ??_C@_07PPNN@colour3?$AA@ 0044a688 libdkit:tinyTexture.obj - 0004:00007690 ??_C@_07HFCN@factor2?$AA@ 0044a690 libdkit:tinyTexture.obj - 0004:00007698 ??_C@_07FFEK@colour2?$AA@ 0044a698 libdkit:tinyTexture.obj - 0004:000076a0 ??_C@_07IKJE@factor1?$AA@ 0044a6a0 libdkit:tinyTexture.obj - 0004:000076a8 ??_C@_07KKPD@colour1?$AA@ 0044a6a8 libdkit:tinyTexture.obj - 0004:000076b0 ??_C@_0M@OPBM@?$CFf?5?$CFf?5?$CFf?5?$CFf?$AA@ 0044a6b0 libdkit:tinyTexture.obj - 0004:000076bc ??_C@_07GE@colour0?$AA@ 0044a6bc libdkit:tinyTexture.obj - 0004:000076c4 ??_C@_05IKDH@taper?$AA@ 0044a6c4 libdkit:tinyTexture.obj - 0004:000076cc ??_C@_05EBLP@power?$AA@ 0044a6cc libdkit:tinyTexture.obj - 0004:000076d4 ??_C@_07ENJI@spacing?$AA@ 0044a6d4 libdkit:tinyTexture.obj - 0004:000076dc ??_C@_08GOPF@strength?$AA@ 0044a6dc libdkit:tinyTexture.obj - 0004:000076e8 ??_C@_03MPEG@?$CFhd?$AA@ 0044a6e8 libdkit:tinyTexture.obj - 0004:000076ec ??_C@_0N@HDOG@nbIterations?$AA@ 0044a6ec libdkit:tinyTexture.obj - 0004:000076fc ??_C@_04PIKN@type?$AA@ 0044a6fc libdkit:tinyTexture.obj - 0004:00007720 _DK_MaterialTypeName 0044a720 libdkit:tinyMaterial.obj - 0004:0000773c ??_C@_06BPED@SHADOW?$AA@ 0044a73c libdkit:tinyMaterial.obj - 0004:00007744 ??_C@_05IDEO@BLINN?$AA@ 0044a744 libdkit:tinyMaterial.obj - 0004:0000774c ??_C@_05EGEB@PHONG?$AA@ 0044a74c libdkit:tinyMaterial.obj - 0004:00007754 ??_C@_07HEIG@LAMBERT?$AA@ 0044a754 libdkit:tinyMaterial.obj - 0004:0000775c ??_C@_04MMMP@FLAT?$AA@ 0044a75c libdkit:tinyMaterial.obj - 0004:00007764 ??_C@_0M@BMKB@shdw_shader?$AA@ 0044a764 libdkit:tinyMaterial.obj - 0004:00007770 ??_C@_0L@JEAJ@vol_shader?$AA@ 0044a770 libdkit:tinyMaterial.obj - 0004:0000777c ??_C@_0L@NKBF@mat_shader?$AA@ 0044a77c libdkit:tinyMaterial.obj - 0004:00007788 ??_C@_09KIFH@blurDecay?$AA@ 0044a788 libdkit:tinyMaterial.obj - 0004:00007794 ??_C@_09LMFJ@blurWidht?$AA@ 0044a794 libdkit:tinyMaterial.obj - 0004:000077a0 ??_C@_0L@KKDA@staticBlur?$AA@ 0044a7a0 libdkit:tinyMaterial.obj - 0004:000077ac ??_C@_03JCCL@coc?$AA@ 0044a7ac libdkit:tinyMaterial.obj - 0004:000077b0 ??_C@_04LLKK@glow?$AA@ 0044a7b0 libdkit:tinyMaterial.obj - 0004:000077b8 ??_C@_0M@FDPI@refracIndex?$AA@ 0044a7b8 libdkit:tinyMaterial.obj - 0004:000077c4 ??_C@_0N@DPMN@transparency?$AA@ 0044a7c4 libdkit:tinyMaterial.obj - 0004:000077d4 ??_C@_0N@BIKM@reflectivity?$AA@ 0044a7d4 libdkit:tinyMaterial.obj - 0004:000077e4 ??_C@_08PJDB@exponent?$AA@ 0044a7e4 libdkit:tinyMaterial.obj - 0004:00007808 _DK_SplineTypeName 0044a808 libdkit:tinySpline.obj - 0004:00007818 _DK_BezSegmentName 0044a818 libdkit:tinySpline.obj - 0004:00007828 _DK_BezConstraintName 0044a828 libdkit:tinySpline.obj - 0004:00007840 ??_C@_02GFEO@G2?$AA@ 0044a840 libdkit:tinySpline.obj - 0004:00007844 ??_C@_02JKPH@G1?$AA@ 0044a844 libdkit:tinySpline.obj - 0004:00007848 ??_C@_02DPOE@C2?$AA@ 0044a848 libdkit:tinySpline.obj - 0004:0000784c ??_C@_02MAFN@C1?$AA@ 0044a84c libdkit:tinySpline.obj - 0004:00007850 ??_C@_02GKMK@C0?$AA@ 0044a850 libdkit:tinySpline.obj - 0004:00007854 ??_C@_05EKJA@CURVE?$AA@ 0044a854 libdkit:tinySpline.obj - 0004:0000785c ??_C@_07BOPI@BSPLINE?$AA@ 0044a85c libdkit:tinySpline.obj - 0004:00007864 ??_C@_06PDAP@BEZIER?$AA@ 0044a864 libdkit:tinySpline.obj - 0004:0000786c ??_C@_04FKBO@hole?$AA@ 0044a86c libdkit:tinySpline.obj - 0004:00007874 ??_C@_0O@LBJD@controlPoints?$AA@ 0044a874 libdkit:tinySpline.obj - 0004:00007884 ??_C@_07GPDP@segment?$AA@ 0044a884 libdkit:tinySpline.obj - 0004:0000788c ??_C@_0L@EIB@constraint?$AA@ 0044a88c libdkit:tinySpline.obj - 0004:00007898 ??_C@_04HPI@step?$AA@ 0044a898 libdkit:tinySpline.obj - 0004:000078a0 ??_C@_07MBCG@tension?$AA@ 0044a8a0 libdkit:tinySpline.obj - 0004:000078a8 ??_C@_06JKOB@nbKeys?$AA@ 0044a8a8 libdkit:tinySpline.obj - 0004:000078b0 ??_C@_05JMGP@close?$AA@ 0044a8b0 libdkit:tinySpline.obj - 0004:000078b8 ??_C@_07OPAA@phantom?$AA@ 0044a8b8 libdkit:tinySpline.obj - 0004:000078c0 ??_C@_01KMMP@?$CJ?$AA@ 0044a8c0 libdkit:tinySpline.obj - 0004:000078c4 ??_C@_01GFI@?$CI?$AA@ 0044a8c4 libdkit:tinySpline.obj - 0004:000078c8 ??_C@_04PFCD@flag?$AA@ 0044a8c8 libdkit:tinySpline.obj - 0004:000078d0 ??_C@_04ICIO@next?$AA@ 0044a8d0 libdkit:tinySpline.obj - 0004:000078d8 ??_C@_08HPHD@previous?$AA@ 0044a8d8 libdkit:tinySpline.obj - 0004:000078e4 ??_C@_08BOHH@position?$AA@ 0044a8e4 libdkit:tinySpline.obj - 0004:00007908 ??_C@_05OALG@knots?$AA@ 0044a908 libdkit:tinyNurbs.obj - 0004:00007910 ??_C@_08KKJK@Vertices?$AA@ 0044a910 libdkit:tinyNurbs.obj - 0004:0000791c ??_C@_0N@BLPP@not_rational?$AA@ 0044a91c libdkit:tinyNurbs.obj - 0004:0000792c ??_C@_08MMDJ@rational?$AA@ 0044a92c libdkit:tinyNurbs.obj - 0004:00007938 ??_C@_09DDNI@closeInfo?$AA@ 0044a938 libdkit:tinyNurbs.obj - 0004:00007944 ??_C@_06MNFI@noStep?$AA@ 0044a944 libdkit:tinyNurbs.obj - 0004:0000794c ??_C@_0L@MPNA@uniformity?$AA@ 0044a94c libdkit:tinyNurbs.obj - 0004:00007958 ??_C@_0L@DDEA@not_closed?$AA@ 0044a958 libdkit:tinyNurbs.obj - 0004:00007964 ??_C@_06LOOA@closed?$AA@ 0044a964 libdkit:tinyNurbs.obj - 0004:0000796c ??_C@_03DNBD@end?$AA@ 0044a96c libdkit:tinyNurbs.obj - 0004:00007970 ??_C@_05IIAE@start?$AA@ 0044a970 libdkit:tinyNurbs.obj - 0004:00007978 ??_C@_07JJHM@noKnots?$AA@ 0044a978 libdkit:tinyNurbs.obj - 0004:00007980 ??_C@_08MPPN@noPoints?$AA@ 0044a980 libdkit:tinyNurbs.obj - 0004:0000798c ??_C@_05DKMA@order?$AA@ 0044a98c libdkit:tinyNurbs.obj - 0004:00007994 ??_C@_0BB@DMFF@Number_of_trims?3?$AA@ 0044a994 libdkit:tinyNurbs.obj - 0004:000079a8 ??_C@_09CFID@recursion?$AA@ 0044a9a8 libdkit:tinyNurbs.obj - 0004:000079b4 ??_C@_06HNNG@recMax?$AA@ 0044a9b4 libdkit:tinyNurbs.obj - 0004:000079bc ??_C@_06JOIA@recMin?$AA@ 0044a9bc libdkit:tinyNurbs.obj - 0004:000079c4 ??_C@_06BDPJ@curv_v?$AA@ 0044a9c4 libdkit:tinyNurbs.obj - 0004:000079cc ??_C@_06OMEA@curv_u?$AA@ 0044a9cc libdkit:tinyNurbs.obj - 0004:000079d4 ??_C@_07DCJI@spacial?$AA@ 0044a9d4 libdkit:tinyNurbs.obj - 0004:000079dc ??_C@_07EBBG@viewDep?$AA@ 0044a9dc libdkit:tinyNurbs.obj - 0004:000079e4 ??_C@_0M@HMNM@approx_type?$AA@ 0044a9e4 libdkit:tinyNurbs.obj - 0004:000079f0 ??_C@_05ND@V_Dir?$AA@ 0044a9f0 libdkit:tinyNurbs.obj - 0004:000079f8 ??_C@_05OALM@U_Dir?$AA@ 0044a9f8 libdkit:tinyNurbs.obj - 0004:00007a00 ??_C@_05KFME@value?$AA@ 0044aa00 libdkit:tinyNurbs.obj - 0004:00007a08 ??_C@_02DLJH@?$CFg?$AA@ 0044aa08 libdkit:tinyNurbs.obj - 0004:00007a0c ??_C@_09HKNN@CloseInfo?$AA@ 0044aa0c libdkit:tinyNurbs.obj - 0004:00007a18 ??_C@_03BJDM@Top?$AA@ 0044aa18 libdkit:tinyNurbs.obj - 0004:00007a1c ??_C@_06LHCD@Bottom?$AA@ 0044aa1c libdkit:tinyNurbs.obj - 0004:00007a24 ??_C@_05CFLF@Curve?$AA@ 0044aa24 libdkit:tinyNurbs.obj - 0004:00007a2c ??_C@_06HJFM@NoStep?$AA@ 0044aa2c libdkit:tinyNurbs.obj - 0004:00007a34 ??_C@_0O@DGMC@Curve_number?3?$AA@ 0044aa34 libdkit:tinyNurbs.obj - 0004:00007a44 ??_C@_0BE@LCCL@Curve_is_a_Boundary?$AA@ 0044aa44 libdkit:tinyNurbs.obj - 0004:00007a70 ??_C@_0DD@GLIB@?$CFf?5?$CFf?5?$CFf?5?$CFf?5?5?$CFf?5?$CFf?5?$CFf?5?$CFf?5?5?$CFf?5?$CFf?5@ 0044aa70 libdkit:tinyMetaball.obj - 0004:00007aa4 ??_C@_09JBLI@centerMat?$AA@ 0044aaa4 libdkit:tinyMetaball.obj - 0004:00007ab0 ??_C@_0M@MNLO@?$CFlf?5?$CFlf?5?$CFlf?$AA@ 0044aab0 libdkit:tinyMetaball.obj - 0004:00007abc ??_C@_05BAEP@ratio?$AA@ 0044aabc libdkit:tinyMetaball.obj - 0004:00007ac4 ??_C@_03MAMC@?$CFlf?$AA@ 0044aac4 libdkit:tinyMetaball.obj - 0004:00007ac8 ??_C@_06PFJF@weight?$AA@ 0044aac8 libdkit:tinyMetaball.obj - 0004:00007ad0 ??_C@_07DHDB@unblend?$AA@ 0044aad0 libdkit:tinyMetaball.obj - 0004:00007ad8 ??_C@_05GCOD@group?$AA@ 0044aad8 libdkit:tinyMetaball.obj - 0004:00007ae0 ??_C@_0M@NDKO@showSurface?$AA@ 0044aae0 libdkit:tinyMetaball.obj - 0004:00007aec ??_C@_0O@FPPP@renResolution?$AA@ 0044aaec libdkit:tinyMetaball.obj - 0004:00007afc ??_C@_0N@MMDO@wfResolution?$AA@ 0044aafc libdkit:tinyMetaball.obj - 0004:00007b0c ??_C@_09HOEO@primitive?$AA@ 0044ab0c libdkit:tinyMetaball.obj - 0004:00007b30 ??_C@_04ELGM@HARD?$AA@ 0044ab30 libdkit:tinyMesh.obj - 0004:00007b38 ??_C@_07IKBJ@VISIBLE?$AA@ 0044ab38 libdkit:tinyMesh.obj - 0004:00007b40 ??_C@_05MJGO@?$CFd?5?$CFd?$AA@ 0044ab40 libdkit:tinyMesh.obj - 0004:00007b48 ??_C@_05KNMB@edges?$AA@ 0044ab48 libdkit:tinyMesh.obj - 0004:00007b50 ??_C@_05PPNJ@nodes?$AA@ 0044ab50 libdkit:tinyMesh.obj - 0004:00007b58 ??_C@_08DOEI@polygons?$AA@ 0044ab58 libdkit:tinyMesh.obj - 0004:00007b64 ??_C@_08KPEI@vertices?$AA@ 0044ab64 libdkit:tinyMesh.obj - 0004:00007b70 ??_C@_0O@IPEK@discontinuity?$AA@ 0044ab70 libdkit:tinyMesh.obj - 0004:00007b80 ??_C@_08KLID@AVERAGED?$AA@ 0044ab80 libdkit:tinyMesh.obj - 0004:00007b8c ??_C@_07JBJC@PROCESS?$AA@ 0044ab8c libdkit:tinyMesh.obj - 0004:00007b94 ??_C@_07LHLL@FACETED?$AA@ 0044ab94 libdkit:tinyMesh.obj - 0004:00007b9c ??_C@_09OCEC@uvTexture?$AA@ 0044ab9c libdkit:tinyMesh.obj - 0004:00007ba8 ??_C@_06KMLP@normal?$AA@ 0044aba8 libdkit:tinyMesh.obj - 0004:00007bb0 ??_C@_06KAJD@vertex?$AA@ 0044abb0 libdkit:tinyMesh.obj - 0004:00007bd0 ??_C@_08DFBP@exterior?$AA@ 0044abd0 libdkit:tinyFace.obj - 0004:00007bf8 ??_C@_0N@NEPM@taggedPoints?$AA@ 0044abf8 libdkit:tinyPatch.obj - 0004:00007c08 ??_C@_04CPOD@vtop?$AA@ 0044ac08 libdkit:tinyPatch.obj - 0004:00007c10 ??_C@_04EABF@utop?$AA@ 0044ac10 libdkit:tinyPatch.obj - 0004:00007c18 ??_C@_07HKNM@vbottom?$AA@ 0044ac18 libdkit:tinyPatch.obj - 0004:00007c20 ??_C@_07JGC@ubottom?$AA@ 0044ac20 libdkit:tinyPatch.obj - 0004:00007c28 ??_C@_06NKNA@vcurve?$AA@ 0044ac28 libdkit:tinyPatch.obj - 0004:00007c30 ??_C@_06GEDA@ucurve?$AA@ 0044ac30 libdkit:tinyPatch.obj - 0004:00007c38 ??_C@_05MIIM@vstep?$AA@ 0044ac38 libdkit:tinyPatch.obj - 0004:00007c40 ??_C@_05CIOD@ustep?$AA@ 0044ac40 libdkit:tinyPatch.obj - 0004:00007c48 ??_C@_08PNFP@vtension?$AA@ 0044ac48 libdkit:tinyPatch.obj - 0004:00007c54 ??_C@_08CFCM@utension?$AA@ 0044ac54 libdkit:tinyPatch.obj - 0004:00007c60 ??_C@_06GHKA@vclose?$AA@ 0044ac60 libdkit:tinyPatch.obj - 0004:00007c68 ??_C@_06NJEA@uclose?$AA@ 0044ac68 libdkit:tinyPatch.obj - 0004:00007c70 ??_C@_06JGAB@vpoint?$AA@ 0044ac70 libdkit:tinyPatch.obj - 0004:00007c78 ??_C@_06CIOB@upoint?$AA@ 0044ac78 libdkit:tinyPatch.obj - 0004:00007c80 ??_C@_05DHNJ@vtype?$AA@ 0044ac80 libdkit:tinyPatch.obj - 0004:00007c88 ??_C@_05NHLG@utype?$AA@ 0044ac88 libdkit:tinyPatch.obj - 0004:00007c90 ??_C@_0BJ@GBMN@?5dans?5DK_patchReadAscii?6?$AA@ 0044ac90 libdkit:tinyPatch.obj - 0004:00007cac ??_C@_06GOLI@tagged?$AA@ 0044acac libdkit:tinyPatch.obj - 0004:00007cd0 _DK_VERSION 0044acd0 libdkit:tinyFile.obj - 0004:00007cd4 _DK_FM 0044acd4 libdkit:tinyFile.obj - 0004:00007cd8 _DK_FD 0044acd8 libdkit:tinyFile.obj - 0004:00007cdc _DK_NORMAL 0044acdc libdkit:tinyFile.obj - 0004:00007ce0 _DK_WRITE_ANIMATION 0044ace0 libdkit:tinyFile.obj - 0004:00007ce4 ??_C@_0L@MBNP@tinyFile?4c?$AA@ 0044ace4 libdkit:tinyFile.obj - 0004:00007cf0 ??_C@_0CI@LFFN@Attempt?5to?5read?3?5An?5error?5may?5oc@ 0044acf0 libdkit:tinyFile.obj - 0004:00007d18 ??_C@_0EA@IGLE@Warning?0?5file?5version?5?$CFg?5is?5late@ 0044ad18 libdkit:tinyFile.obj - 0004:00007d58 ??_C@_02JDLK@?$CFx?$AA@ 0044ad58 libdkit:tinyFile.obj - 0004:00007d5c ??_C@_04LLHI@size?$AA@ 0044ad5c libdkit:tinyFile.obj - 0004:00007d80 _DK_option 0044ad80 libdkit:tinyScene.obj - 0004:00007da0 _DK_fcv_name 0044ada0 libdkit:tinyUtils.obj - 0004:0000814c _DK_animIndentString 0044b14c libdkit:tinyUtils.obj - 0004:00008150 _DK_animToken 0044b150 libdkit:tinyUtils.obj - 0004:00008154 _DK_animFileVersion 0044b154 libdkit:tinyUtils.obj - 0004:00008158 _DK_CLASSIC_SCALING 0044b158 libdkit:tinyUtils.obj - 0004:00008160 ??_C@_0L@JIEK@LIG_ASCL_Z?$AA@ 0044b160 libdkit:tinyUtils.obj - 0004:0000816c ??_C@_0L@GHPD@LIG_ASCL_Y?$AA@ 0044b16c libdkit:tinyUtils.obj - 0004:00008178 ??_C@_0L@MNGE@LIG_ASCL_X?$AA@ 0044b178 libdkit:tinyUtils.obj - 0004:00008184 ??_C@_0L@DGGI@LIG_AROT_Z?$AA@ 0044b184 libdkit:tinyUtils.obj - 0004:00008190 ??_C@_0L@MJNB@LIG_AROT_Y?$AA@ 0044b190 libdkit:tinyUtils.obj - 0004:0000819c ??_C@_0L@GDEG@LIG_AROT_X?$AA@ 0044b19c libdkit:tinyUtils.obj - 0004:000081a8 ??_C@_09JLFK@FOG_THICK?$AA@ 0044b1a8 libdkit:tinyUtils.obj - 0004:000081b4 ??_C@_08NOLC@FOG_BASE?$AA@ 0044b1b4 libdkit:tinyUtils.obj - 0004:000081c0 ??_C@_08IMPL@FOG_DENS?$AA@ 0044b1c0 libdkit:tinyUtils.obj - 0004:000081cc ??_C@_08CDLE@FOG_BLUE?$AA@ 0044b1cc libdkit:tinyUtils.obj - 0004:000081d8 ??_C@_09ODKO@FOG_GREEN?$AA@ 0044b1d8 libdkit:tinyUtils.obj - 0004:000081e4 ??_C@_07DOIN@FOG_RED?$AA@ 0044b1e4 libdkit:tinyUtils.obj - 0004:000081ec ??_C@_07CPCN@FOG_END?$AA@ 0044b1ec libdkit:tinyUtils.obj - 0004:000081f4 ??_C@_09FFMC@FOG_START?$AA@ 0044b1f4 libdkit:tinyUtils.obj - 0004:00008200 ??_C@_0N@LOFI@MDL_WCLUSTER?$AA@ 0044b200 libdkit:tinyUtils.obj - 0004:00008210 ??_C@_0M@JCCC@MDL_CLUSTER?$AA@ 0044b210 libdkit:tinyUtils.obj - 0004:0000821c ??_C@_09POKO@DYN_ROOTC?$AA@ 0044b21c libdkit:tinyUtils.obj - 0004:00008228 ??_C@_0L@JCFG@DYN_KROUGH?$AA@ 0044b228 libdkit:tinyUtils.obj - 0004:00008234 ??_C@_0L@GFFF@DYN_SROUGH?$AA@ 0044b234 libdkit:tinyUtils.obj - 0004:00008240 ??_C@_09BCPF@DYN_ELAST?$AA@ 0044b240 libdkit:tinyUtils.obj - 0004:0000824c ??_C@_08IHNN@MDL_ALGO?$AA@ 0044b24c libdkit:tinyUtils.obj - 0004:00008258 ??_C@_07MBOD@CAM_HID?$AA@ 0044b258 libdkit:tinyUtils.obj - 0004:00008260 ??_C@_07JAMH@LIG_HID?$AA@ 0044b260 libdkit:tinyUtils.obj - 0004:00008268 ??_C@_07DBDG@MDL_HID?$AA@ 0044b268 libdkit:tinyUtils.obj - 0004:00008270 ??_C@_07PPEM@WAV_SPD?$AA@ 0044b270 libdkit:tinyUtils.obj - 0004:00008278 ??_C@_07MMBC@WAV_DCY?$AA@ 0044b278 libdkit:tinyUtils.obj - 0004:00008280 ??_C@_07ELEK@WAV_POS?$AA@ 0044b280 libdkit:tinyUtils.obj - 0004:00008288 ??_C@_08COEL@WAV_TRNZ?$AA@ 0044b288 libdkit:tinyUtils.obj - 0004:00008294 ??_C@_08NBPC@WAV_TRNY?$AA@ 0044b294 libdkit:tinyUtils.obj - 0004:000082a0 ??_C@_08HLGF@WAV_TRNX?$AA@ 0044b2a0 libdkit:tinyUtils.obj - 0004:000082ac ??_C@_08KIJM@WAV_ROTZ?$AA@ 0044b2ac libdkit:tinyUtils.obj - 0004:000082b8 ??_C@_08FHCF@WAV_ROTY?$AA@ 0044b2b8 libdkit:tinyUtils.obj - 0004:000082c4 ??_C@_08PNLC@WAV_ROTX?$AA@ 0044b2c4 libdkit:tinyUtils.obj - 0004:000082d0 ??_C@_08IKNM@WAV_SCLZ?$AA@ 0044b2d0 libdkit:tinyUtils.obj - 0004:000082dc ??_C@_08HFGF@WAV_SCLY?$AA@ 0044b2dc libdkit:tinyUtils.obj - 0004:000082e8 ??_C@_08NPPC@WAV_SCLX?$AA@ 0044b2e8 libdkit:tinyUtils.obj - 0004:000082f4 ??_C@_09NLHD@TXT_REFL2?$AA@ 0044b2f4 libdkit:tinyUtils.obj - 0004:00008300 ??_C@_09KMKI@TXT_BLEND?$AA@ 0044b300 libdkit:tinyUtils.obj - 0004:0000830c ??_C@_0M@IBPB@TXT3D_COL4A?$AA@ 0044b30c libdkit:tinyUtils.obj - 0004:00008318 ??_C@_0M@OAKE@TXT3D_COL3A?$AA@ 0044b318 libdkit:tinyUtils.obj - 0004:00008324 ??_C@_0M@PGAO@TXT3D_COL2A?$AA@ 0044b324 libdkit:tinyUtils.obj - 0004:00008330 ??_C@_0M@MNPB@TXT3D_COL1A?$AA@ 0044b330 libdkit:tinyUtils.obj - 0004:0000833c ??_C@_0M@NLFL@TXT3D_COL0A?$AA@ 0044b33c libdkit:tinyUtils.obj - 0004:00008348 ??_C@_0M@BBF@TXT3D_BLEND?$AA@ 0044b348 libdkit:tinyUtils.obj - 0004:00008354 ??_C@_07BFJC@SWEIGHT?$AA@ 0044b354 libdkit:tinyUtils.obj - 0004:0000835c ??_C@_08EKCM@LIG_INTZ?$AA@ 0044b35c libdkit:tinyUtils.obj - 0004:00008368 ??_C@_08LFJF@LIG_INTY?$AA@ 0044b368 libdkit:tinyUtils.obj - 0004:00008374 ??_C@_08BPAC@LIG_INTX?$AA@ 0044b374 libdkit:tinyUtils.obj - 0004:00008380 ??_C@_08CDIM@LIG_POSZ?$AA@ 0044b380 libdkit:tinyUtils.obj - 0004:0000838c ??_C@_08NMDF@LIG_POSY?$AA@ 0044b38c libdkit:tinyUtils.obj - 0004:00008398 ??_C@_08HGKC@LIG_POSX?$AA@ 0044b398 libdkit:tinyUtils.obj - 0004:000083a4 ??_C@_08BHN@CAM_INTZ?$AA@ 0044b3a4 libdkit:tinyUtils.obj - 0004:000083b0 ??_C@_08POME@CAM_INTY?$AA@ 0044b3b0 libdkit:tinyUtils.obj - 0004:000083bc ??_C@_08FEFD@CAM_INTX?$AA@ 0044b3bc libdkit:tinyUtils.obj - 0004:000083c8 ??_C@_08GINN@CAM_POSZ?$AA@ 0044b3c8 libdkit:tinyUtils.obj - 0004:000083d4 ??_C@_08JHGE@CAM_POSY?$AA@ 0044b3d4 libdkit:tinyUtils.obj - 0004:000083e0 ??_C@_08DNPD@CAM_POSX?$AA@ 0044b3e0 libdkit:tinyUtils.obj - 0004:000083ec ??_C@_08JICN@MDL_POSZ?$AA@ 0044b3ec libdkit:tinyUtils.obj - 0004:000083f8 ??_C@_08GHJE@MDL_POSY?$AA@ 0044b3f8 libdkit:tinyUtils.obj - 0004:00008404 ??_C@_08MNAD@MDL_POSX?$AA@ 0044b404 libdkit:tinyUtils.obj - 0004:00008410 ??_C@_0L@IHO@PTFIT_TRNZ?$AA@ 0044b410 libdkit:tinyUtils.obj - 0004:0000841c ??_C@_0L@PHMH@PTFIT_TRNY?$AA@ 0044b41c libdkit:tinyUtils.obj - 0004:00008428 ??_C@_0L@FNFA@PTFIT_TRNX?$AA@ 0044b428 libdkit:tinyUtils.obj - 0004:00008434 ??_C@_0L@IOKJ@PTFIT_ROTZ?$AA@ 0044b434 libdkit:tinyUtils.obj - 0004:00008440 ??_C@_0L@HBBA@PTFIT_ROTY?$AA@ 0044b440 libdkit:tinyUtils.obj - 0004:0000844c ??_C@_0L@NLIH@PTFIT_ROTX?$AA@ 0044b44c libdkit:tinyUtils.obj - 0004:00008458 ??_C@_0L@KMOJ@PTFIT_SCLZ?$AA@ 0044b458 libdkit:tinyUtils.obj - 0004:00008464 ??_C@_0L@FDFA@PTFIT_SCLY?$AA@ 0044b464 libdkit:tinyUtils.obj - 0004:00008470 ??_C@_0L@PJMH@PTFIT_SCLX?$AA@ 0044b470 libdkit:tinyUtils.obj - 0004:0000847c ??_C@_0L@LKCN@PNFIT_TRNZ?$AA@ 0044b47c libdkit:tinyUtils.obj - 0004:00008488 ??_C@_0L@EFJE@PNFIT_TRNY?$AA@ 0044b488 libdkit:tinyUtils.obj - 0004:00008494 ??_C@_0L@OPAD@PNFIT_TRNX?$AA@ 0044b494 libdkit:tinyUtils.obj - 0004:000084a0 ??_C@_0L@DMPK@PNFIT_ROTZ?$AA@ 0044b4a0 libdkit:tinyUtils.obj - 0004:000084ac ??_C@_0L@MDED@PNFIT_ROTY?$AA@ 0044b4ac libdkit:tinyUtils.obj - 0004:000084b8 ??_C@_0L@GJNE@PNFIT_ROTX?$AA@ 0044b4b8 libdkit:tinyUtils.obj - 0004:000084c4 ??_C@_0L@BOLK@PNFIT_SCLZ?$AA@ 0044b4c4 libdkit:tinyUtils.obj - 0004:000084d0 ??_C@_0L@OBAD@PNFIT_SCLY?$AA@ 0044b4d0 libdkit:tinyUtils.obj - 0004:000084dc ??_C@_0L@ELJE@PNFIT_SCLX?$AA@ 0044b4dc libdkit:tinyUtils.obj - 0004:000084e8 ??_C@_09EMI@TFIT_TRNZ?$AA@ 0044b4e8 libdkit:tinyUtils.obj - 0004:000084f4 ??_C@_09PLHB@TFIT_TRNY?$AA@ 0044b4f4 libdkit:tinyUtils.obj - 0004:00008500 ??_C@_09FBOG@TFIT_TRNX?$AA@ 0044b500 libdkit:tinyUtils.obj - 0004:0000850c ??_C@_09LOA@TFIT_ROLL?$AA@ 0044b50c libdkit:tinyUtils.obj - 0004:00008518 ??_C@_09KAFP@TFIT_SCLZ?$AA@ 0044b518 libdkit:tinyUtils.obj - 0004:00008524 ??_C@_09FPOG@TFIT_SCLY?$AA@ 0044b524 libdkit:tinyUtils.obj - 0004:00008530 ??_C@_09PFHB@TFIT_SCLX?$AA@ 0044b530 libdkit:tinyUtils.obj - 0004:0000853c ??_C@_09LGJL@NFIT_TRNZ?$AA@ 0044b53c libdkit:tinyUtils.obj - 0004:00008548 ??_C@_09EJCC@NFIT_TRNY?$AA@ 0044b548 libdkit:tinyUtils.obj - 0004:00008554 ??_C@_09ODLF@NFIT_TRNX?$AA@ 0044b554 libdkit:tinyUtils.obj - 0004:00008560 ??_C@_09LJLD@NFIT_ROLL?$AA@ 0044b560 libdkit:tinyUtils.obj - 0004:0000856c ??_C@_09BCAM@NFIT_SCLZ?$AA@ 0044b56c libdkit:tinyUtils.obj - 0004:00008578 ??_C@_09ONLF@NFIT_SCLY?$AA@ 0044b578 libdkit:tinyUtils.obj - 0004:00008584 ??_C@_09EHCC@NFIT_SCLX?$AA@ 0044b584 libdkit:tinyUtils.obj - 0004:00008590 ??_C@_09PLGK@TXT3D_ROU?$AA@ 0044b590 libdkit:tinyUtils.obj - 0004:0000859c ??_C@_09IPHC@TXT3D_RID?$AA@ 0044b59c libdkit:tinyUtils.obj - 0004:000085a8 ??_C@_09HLJC@TXT3D_TRS?$AA@ 0044b5a8 libdkit:tinyUtils.obj - 0004:000085b4 ??_C@_09DFKC@TXT3D_REF?$AA@ 0044b5b4 libdkit:tinyUtils.obj - 0004:000085c0 ??_C@_09EBNG@TXT3D_SPC?$AA@ 0044b5c0 libdkit:tinyUtils.obj - 0004:000085cc ??_C@_09BHEB@TXT3D_DIF?$AA@ 0044b5cc libdkit:tinyUtils.obj - 0004:000085d8 ??_C@_09PNPL@TXT3D_AMB?$AA@ 0044b5d8 libdkit:tinyUtils.obj - 0004:000085e4 ??_C@_0L@NDKA@TXT3D_TRNZ?$AA@ 0044b5e4 libdkit:tinyUtils.obj - 0004:000085f0 ??_C@_0L@CMBJ@TXT3D_TRNY?$AA@ 0044b5f0 libdkit:tinyUtils.obj - 0004:000085fc ??_C@_0L@IGIO@TXT3D_TRNX?$AA@ 0044b5fc libdkit:tinyUtils.obj - 0004:00008608 ??_C@_0L@FFHH@TXT3D_ROTZ?$AA@ 0044b608 libdkit:tinyUtils.obj - 0004:00008614 ??_C@_0L@KKMO@TXT3D_ROTY?$AA@ 0044b614 libdkit:tinyUtils.obj - 0004:00008620 ??_C@_0L@FJ@TXT3D_ROTX?$AA@ 0044b620 libdkit:tinyUtils.obj - 0004:0000862c ??_C@_0L@HHDH@TXT3D_SCLZ?$AA@ 0044b62c libdkit:tinyUtils.obj - 0004:00008638 ??_C@_0L@IIIO@TXT3D_SCLY?$AA@ 0044b638 libdkit:tinyUtils.obj - 0004:00008644 ??_C@_0L@CCBJ@TXT3D_SCLX?$AA@ 0044b644 libdkit:tinyUtils.obj - 0004:00008650 ??_C@_0M@HOEI@TXT3D_COL4B?$AA@ 0044b650 libdkit:tinyUtils.obj - 0004:0000865c ??_C@_0M@HOID@TXT3D_COL4G?$AA@ 0044b65c libdkit:tinyUtils.obj - 0004:00008668 ??_C@_0M@NHDI@TXT3D_COL4R?$AA@ 0044b668 libdkit:tinyUtils.obj - 0004:00008674 ??_C@_0M@BPBN@TXT3D_COL3B?$AA@ 0044b674 libdkit:tinyUtils.obj - 0004:00008680 ??_C@_0M@BPNG@TXT3D_COL3G?$AA@ 0044b680 libdkit:tinyUtils.obj - 0004:0000868c ??_C@_0M@LGGN@TXT3D_COL3R?$AA@ 0044b68c libdkit:tinyUtils.obj - 0004:00008698 ??_C@_0M@JLH@TXT3D_COL2B?$AA@ 0044b698 libdkit:tinyUtils.obj - 0004:000086a4 ??_C@_0M@JHM@TXT3D_COL2G?$AA@ 0044b6a4 libdkit:tinyUtils.obj - 0004:000086b0 ??_C@_0M@KAMH@TXT3D_COL2R?$AA@ 0044b6b0 libdkit:tinyUtils.obj - 0004:000086bc ??_C@_0M@DCEI@TXT3D_COL1B?$AA@ 0044b6bc libdkit:tinyUtils.obj - 0004:000086c8 ??_C@_0M@DCID@TXT3D_COL1G?$AA@ 0044b6c8 libdkit:tinyUtils.obj - 0004:000086d4 ??_C@_0M@JLDI@TXT3D_COL1R?$AA@ 0044b6d4 libdkit:tinyUtils.obj - 0004:000086e0 ??_C@_0M@CEOC@TXT3D_COL0B?$AA@ 0044b6e0 libdkit:tinyUtils.obj - 0004:000086ec ??_C@_0M@CECJ@TXT3D_COL0G?$AA@ 0044b6ec libdkit:tinyUtils.obj - 0004:000086f8 ??_C@_0M@INJC@TXT3D_COL0R?$AA@ 0044b6f8 libdkit:tinyUtils.obj - 0004:00008704 ??_C@_0L@OLCP@TXT3D_FAC3?$AA@ 0044b704 libdkit:tinyUtils.obj - 0004:00008710 ??_C@_0L@EBLI@TXT3D_FAC2?$AA@ 0044b710 libdkit:tinyUtils.obj - 0004:0000871c ??_C@_0L@LOAB@TXT3D_FAC1?$AA@ 0044b71c libdkit:tinyUtils.obj - 0004:00008728 ??_C@_09NFHN@TXT3D_TAP?$AA@ 0044b728 libdkit:tinyUtils.obj - 0004:00008734 ??_C@_09JABG@TXT3D_SRT?$AA@ 0044b734 libdkit:tinyUtils.obj - 0004:00008740 ??_C@_09KGJ@TXT3D_POW?$AA@ 0044b740 libdkit:tinyUtils.obj - 0004:0000874c ??_C@_09BEPI@TXT3D_SPA?$AA@ 0044b74c libdkit:tinyUtils.obj - 0004:00008758 ??_C@_09BIJL@TXT3D_STR?$AA@ 0044b758 libdkit:tinyUtils.obj - 0004:00008764 ??_C@_08DIGD@LAT_TREE?$AA@ 0044b764 libdkit:tinyUtils.obj - 0004:00008770 ??_C@_08LAEP@LAT_NODE?$AA@ 0044b770 libdkit:tinyUtils.obj - 0004:0000877c ??_C@_0L@KAI@FAD_TRANSP?$AA@ 0044b77c libdkit:tinyUtils.obj - 0004:00008788 ??_C@_08OIE@FAD_BLUE?$AA@ 0044b788 libdkit:tinyUtils.obj - 0004:00008794 ??_C@_09GBID@FAD_GREEN?$AA@ 0044b794 libdkit:tinyUtils.obj - 0004:000087a0 ??_C@_07OCD@FAD_RED?$AA@ 0044b7a0 libdkit:tinyUtils.obj - 0004:000087a8 ??_C@_07BPID@FAD_END?$AA@ 0044b7a8 libdkit:tinyUtils.obj - 0004:000087b0 ??_C@_09NHOP@FAD_START?$AA@ 0044b7b0 libdkit:tinyUtils.obj - 0004:000087bc ??_C@_08MMHJ@MAT_RIND?$AA@ 0044b7bc libdkit:tinyUtils.obj - 0004:000087c8 ??_C@_0L@GDIA@MAT_TRSP_J?$AA@ 0044b7c8 libdkit:tinyUtils.obj - 0004:000087d4 ??_C@_08MEKA@MAT_TRSP?$AA@ 0044b7d4 libdkit:tinyUtils.obj - 0004:000087e0 ??_C@_09KEJL@MAT_RFL_J?$AA@ 0044b7e0 libdkit:tinyUtils.obj - 0004:000087ec ??_C@_08PFHK@MAT_REFL?$AA@ 0044b7ec libdkit:tinyUtils.obj - 0004:000087f8 ??_C@_08LJAO@MAT_EXPN?$AA@ 0044b7f8 libdkit:tinyUtils.obj - 0004:00008804 ??_C@_0L@MCIO@MAT_SPEC_B?$AA@ 0044b804 libdkit:tinyUtils.obj - 0004:00008810 ??_C@_0L@MCEF@MAT_SPEC_G?$AA@ 0044b810 libdkit:tinyUtils.obj - 0004:0000881c ??_C@_0L@GLPO@MAT_SPEC_R?$AA@ 0044b81c libdkit:tinyUtils.obj - 0004:00008828 ??_C@_0L@KGAM@MAT_DIFF_B?$AA@ 0044b828 libdkit:tinyUtils.obj - 0004:00008834 ??_C@_0L@KGMH@MAT_DIFF_G?$AA@ 0044b834 libdkit:tinyUtils.obj - 0004:00008840 ??_C@_0L@PHM@MAT_DIFF_R?$AA@ 0044b840 libdkit:tinyUtils.obj - 0004:0000884c ??_C@_09CLLN@MAT_AMB_B?$AA@ 0044b84c libdkit:tinyUtils.obj - 0004:00008858 ??_C@_09CLHG@MAT_AMB_G?$AA@ 0044b858 libdkit:tinyUtils.obj - 0004:00008864 ??_C@_09ICMN@MAT_AMB_R?$AA@ 0044b864 libdkit:tinyUtils.obj - 0004:00008870 ??_C@_07OLNF@TXT_ROT?$AA@ 0044b870 libdkit:tinyUtils.obj - 0004:00008878 ??_C@_08IJFO@TXT_NORM?$AA@ 0044b878 libdkit:tinyUtils.obj - 0004:00008884 ??_C@_08PEKI@TXT_RIND?$AA@ 0044b884 libdkit:tinyUtils.obj - 0004:00008890 ??_C@_08PMHB@TXT_TRSP?$AA@ 0044b890 libdkit:tinyUtils.obj - 0004:0000889c ??_C@_08MNKL@TXT_REFL?$AA@ 0044b89c libdkit:tinyUtils.obj - 0004:000088a8 ??_C@_08OJHN@TXT_SPEC?$AA@ 0044b8a8 libdkit:tinyUtils.obj - 0004:000088b4 ??_C@_08JOBP@TXT_DIFF?$AA@ 0044b8b4 libdkit:tinyUtils.obj - 0004:000088c0 ??_C@_07EHND@TXT_AMB?$AA@ 0044b8c0 libdkit:tinyUtils.obj - 0004:000088c8 ??_C@_09MAFN@TXT_V_OFF?$AA@ 0044b8c8 libdkit:tinyUtils.obj - 0004:000088d4 ??_C@_09CADC@TXT_U_OFF?$AA@ 0044b8d4 libdkit:tinyUtils.obj - 0004:000088e0 ??_C@_09HEEO@TXT_V_SCL?$AA@ 0044b8e0 libdkit:tinyUtils.obj - 0004:000088ec ??_C@_09JECB@TXT_U_SCL?$AA@ 0044b8ec libdkit:tinyUtils.obj - 0004:000088f8 ??_C@_07KPE@LIG_INT?$AA@ 0044b8f8 libdkit:tinyUtils.obj - 0004:00008900 ??_C@_07KKHC@LIG_POS?$AA@ 0044b900 libdkit:tinyUtils.obj - 0004:00008908 ??_C@_0L@OOND@LIG_SHADOW?$AA@ 0044b908 libdkit:tinyUtils.obj - 0004:00008914 ??_C@_07HLGL@LIG_END?$AA@ 0044b914 libdkit:tinyUtils.obj - 0004:0000891c ??_C@_09HDPE@LIG_START?$AA@ 0044b91c libdkit:tinyUtils.obj - 0004:00008928 ??_C@_09MACA@LIG_DECAY?$AA@ 0044b928 libdkit:tinyUtils.obj - 0004:00008934 ??_C@_0L@BBAP@LIG_SPREAD?$AA@ 0044b934 libdkit:tinyUtils.obj - 0004:00008940 ??_C@_08CCIL@LIG_CONE?$AA@ 0044b940 libdkit:tinyUtils.obj - 0004:0000894c ??_C@_09EEEJ@LIG_COL_B?$AA@ 0044b94c libdkit:tinyUtils.obj - 0004:00008958 ??_C@_09EEIC@LIG_COL_G?$AA@ 0044b958 libdkit:tinyUtils.obj - 0004:00008964 ??_C@_09ONDJ@LIG_COL_R?$AA@ 0044b964 libdkit:tinyUtils.obj - 0004:00008970 ??_C@_08OIPH@CAM_FCOC?$AA@ 0044b970 libdkit:tinyUtils.obj - 0004:0000897c ??_C@_08DOCF@CAM_FOUT?$AA@ 0044b97c libdkit:tinyUtils.obj - 0004:00008988 ??_C@_08FBEF@CAM_FFFC?$AA@ 0044b988 libdkit:tinyUtils.obj - 0004:00008994 ??_C@_08HLNF@CAM_NFFC?$AA@ 0044b994 libdkit:tinyUtils.obj - 0004:000089a0 ??_C@_08CPFE@CAM_FDST?$AA@ 0044b9a0 libdkit:tinyUtils.obj - 0004:000089ac ??_C@_08HLFG@CAM_FSTP?$AA@ 0044b9ac libdkit:tinyUtils.obj - 0004:000089b8 ??_C@_08BMBI@CAM_FFCL?$AA@ 0044b9b8 libdkit:tinyUtils.obj - 0004:000089c4 ??_C@_07FOHH@CAM_FAR?$AA@ 0044b9c4 libdkit:tinyUtils.obj - 0004:000089cc ??_C@_08OPFM@CAM_NEAR?$AA@ 0044b9cc libdkit:tinyUtils.obj - 0004:000089d8 ??_C@_07DGIA@CAM_FOV?$AA@ 0044b9d8 libdkit:tinyUtils.obj - 0004:000089e0 ??_C@_08MKND@CAM_ROLL?$AA@ 0044b9e0 libdkit:tinyUtils.obj - 0004:000089ec ??_C@_07FLNA@CAM_INT?$AA@ 0044b9ec libdkit:tinyUtils.obj - 0004:000089f4 ??_C@_07PLFG@CAM_POS?$AA@ 0044b9f4 libdkit:tinyUtils.obj - 0004:000089fc ??_C@_09FLAE@MDL_SHAPE?$AA@ 0044b9fc libdkit:tinyUtils.obj - 0004:00008a08 ??_C@_07LID@MDL_POS?$AA@ 0044ba08 libdkit:tinyUtils.obj - 0004:00008a10 ??_C@_09EGJF@MDL_ROT_Z?$AA@ 0044ba10 libdkit:tinyUtils.obj - 0004:00008a1c ??_C@_09LJCM@MDL_ROT_Y?$AA@ 0044ba1c libdkit:tinyUtils.obj - 0004:00008a28 ??_C@_09BDLL@MDL_ROT_X?$AA@ 0044ba28 libdkit:tinyUtils.obj - 0004:00008a34 ??_C@_09OILH@MDL_SCL_Z?$AA@ 0044ba34 libdkit:tinyUtils.obj - 0004:00008a40 ??_C@_09BHAO@MDL_SCL_Y?$AA@ 0044ba40 libdkit:tinyUtils.obj - 0004:00008a4c ??_C@_09LNJJ@MDL_SCL_X?$AA@ 0044ba4c libdkit:tinyUtils.obj - 0004:00008a70 ??_C@_04BAK@NULL?$AA@ 0044ba70 libdkit:tinyMental.obj - 0004:00008a78 ??_C@_08CEIG@internal?$AA@ 0044ba78 libdkit:tinyMental.obj - 0004:00008a84 ??_C@_06KAE@active?$AA@ 0044ba84 libdkit:tinyMental.obj - 0004:00008ad8 __iob 0044bad8 LIBC:_file.obj - 0004:00008d58 __lastiob 0044bd58 LIBC:_file.obj - 0004:00008d5c __fltused 0044bd5c LIBC:fpinit.obj - 0004:00008d60 __ldused 0044bd60 LIBC:fpinit.obj - 0004:00008d64 ___fastflag 0044bd64 LIBC:fpinit.obj - 0004:00008d68 __adjust_fdiv 0044bd68 LIBC:fpinit.obj - 0004:00008d6c __FPinit 0044bd6c LIBC:fpinit.obj - 0004:00008d70 __FPmtinit 0044bd70 LIBC:fpinit.obj - 0004:00008d74 __FPmtterm 0044bd74 LIBC:fpinit.obj - 0004:00008ed8 __aenvptr 0044bed8 LIBC:crt0.obj - 0004:00008edc __wenvptr 0044bedc LIBC:crt0.obj - 0004:00008ee0 __aexit_rtn 0044bee0 LIBC:crt0.obj - 0004:00008ee4 __cflush 0044bee4 LIBC:fflush.obj - 0004:00008ee8 __pnhHeap 0044bee8 LIBC:malloc.obj - 0004:00008ef0 __stdbuf 0044bef0 LIBC:_sftbuf.obj - 0004:00008f00 ___nullstring 0044bf00 LIBC:output.obj - 0004:00008f14 ___wnullstring 0044bf14 LIBC:output.obj - 0004:00008f80 __cfltcvt_tab 0044bf80 LIBC:cmiscdat.obj - 0004:00008fac __OP_ASINjmptab 0044bfac LIBC:87triga.obj - 0004:00008fcc __OP_ACOSjmptab 0044bfcc LIBC:87triga.obj - 0004:00008fec __OP_ATANjmptab 0044bfec LIBC:87triga.obj - 0004:0000900c __OP_ATAN2jmptab 0044c00c LIBC:87triga.obj - 0004:0000905c _errno 0044c05c LIBC:crt0dat.obj - 0004:00009060 __doserrno 0044c060 LIBC:crt0dat.obj - 0004:00009064 __umaskval 0044c064 LIBC:crt0dat.obj - 0004:00009068 __osver 0044c068 LIBC:crt0dat.obj - 0004:0000906c __winver 0044c06c LIBC:crt0dat.obj - 0004:00009070 __winmajor 0044c070 LIBC:crt0dat.obj - 0004:00009074 __winminor 0044c074 LIBC:crt0dat.obj - 0004:00009078 ___argc 0044c078 LIBC:crt0dat.obj - 0004:0000907c ___argv 0044c07c LIBC:crt0dat.obj - 0004:00009080 ___wargv 0044c080 LIBC:crt0dat.obj - 0004:00009084 __environ 0044c084 LIBC:crt0dat.obj - 0004:00009088 ___initenv 0044c088 LIBC:crt0dat.obj - 0004:0000908c __wenviron 0044c08c LIBC:crt0dat.obj - 0004:00009090 ___winitenv 0044c090 LIBC:crt0dat.obj - 0004:00009094 __pgmptr 0044c094 LIBC:crt0dat.obj - 0004:00009098 __wpgmptr 0044c098 LIBC:crt0dat.obj - 0004:0000909c __exitflag 0044c09c LIBC:crt0dat.obj - 0004:000090a0 __C_Termination_Done 0044c0a0 LIBC:crt0dat.obj - 0004:000090a8 __XcptActTab 0044c0a8 LIBC:winxfltr.obj - 0004:00009120 __First_FPE_Indx 0044c120 LIBC:winxfltr.obj - 0004:00009124 __Num_FPE 0044c124 LIBC:winxfltr.obj - 0004:00009128 __XcptActTabCount 0044c128 LIBC:winxfltr.obj - 0004:0000912c __fpecode 0044c12c LIBC:winxfltr.obj - 0004:00009130 __pxcptinfoptrs 0044c130 LIBC:winxfltr.obj - 0004:00009138 __mbctype 0044c138 LIBC:mbctype.obj - 0004:0000923c ___mbcodepage 0044c23c LIBC:mbctype.obj - 0004:00009240 ___mblcid 0044c240 LIBC:mbctype.obj - 0004:00009248 ___mbulinfo 0044c248 LIBC:mbctype.obj - 0004:00009350 __nhandle 0044c350 LIBC:ioinit.obj - 0004:00009358 __osfile 0044c358 LIBC:ioinit.obj - 0004:00009398 __osfhnd 0044c398 LIBC:ioinit.obj - 0004:00009498 __pipech 0044c498 LIBC:ioinit.obj - 0004:000094d8 __heap_desc 0044c4d8 LIBC:heapinit.obj - 0004:000094ec __heap_resetsize 0044c4ec LIBC:heapinit.obj - 0004:000094f0 __amblksiz 0044c4f0 LIBC:heapinit.obj - 0004:000094f4 __heap_regionsize 0044c4f4 LIBC:heapinit.obj - 0004:000094f8 __heap_maxregsize 0044c4f8 LIBC:heapinit.obj - 0004:00009768 __adbgmsg 0044c768 LIBC:crt0msg.obj - 0004:0000976c __OP_SQRTjmptab 0044c76c LIBC:87sqrt.obj - 0004:0000978c __infinity 0044c78c LIBC:87tran.obj - 0004:00009796 __minfinity 0044c796 LIBC:87tran.obj - 0004:000097a0 __logemax 0044c7a0 LIBC:87tran.obj - 0004:000097d0 __OP_POWjmptab 0044c7d0 LIBC:87tran.obj - 0004:00009820 __OP_LOG10jmptab 0044c820 LIBC:87tran.obj - 0004:00009840 __OP_LOGjmptab 0044c840 LIBC:87tran.obj - 0004:00009860 __OP_EXPjmptab 0044c860 LIBC:87tran.obj - 0004:0000988c __newmode 0044c88c LIBC:_newmode.obj - 0004:00009898 __pctype 0044c898 LIBC:ctype.obj - 0004:0000989c __pwctype 0044c89c LIBC:ctype.obj - 0004:000098a0 __ctype 0044c8a0 LIBC:ctype.obj - 0004:00009aa4 ___mb_cur_max 0044caa4 LIBC:nlsdata1.obj - 0004:00009aac ___decimal_point 0044caac LIBC:nlsdata1.obj - 0004:00009ab0 ___decimal_point_length 0044cab0 LIBC:nlsdata1.obj - 0004:00009c20 __commode 0044cc20 LIBC:ncommode.obj - 0004:00009c58 __indefinite 0044cc58 LIBC:87disp.obj - 0004:00009c62 __piby2 0044cc62 LIBC:87disp.obj - 0004:00009c74 __cpower 0044cc74 LIBC:87disp.obj - 0004:00009cd8 ___lc_handle 0044ccd8 LIBC:nlsdata2.obj - 0004:00009cf0 ___lc_codepage 0044ccf0 LIBC:nlsdata2.obj - 0004:00009cf4 __fmode 0044ccf4 LIBC:txtmode.obj - 0004:00009ef4 __matherr_flag 0044cef4 LIBC:matherr.obj - 0004:00009f18 __d_inf 0044cf18 LIBC:util.obj - 0004:00009f20 __d_ind 0044cf20 LIBC:util.obj - 0004:00009f28 __d_max 0044cf28 LIBC:util.obj - 0004:00009f30 __d_min 0044cf30 LIBC:util.obj - 0004:00009f38 __d_mzero 0044cf38 LIBC:util.obj - 0004:00009f40 ___invalid_mb_chars 0044cf40 LIBC:setmbval.obj - 0004:00009f48 __pow10pos 0044cf48 LIBC:constpow.obj - 0004:0000a0a8 __pow10neg 0044d0a8 LIBC:constpow.obj - 0004:0000a208 _BrStdioFilesystem 0044d208 bren:stdfile.obj - 0004:0000a23c __BrDefaultFilesystem 0044d23c bren:stdfile.obj - 0004:0000a240 ??_C@_0M@FGJC@Standard?5IO?$AA@ 0044d240 bren:stdfile.obj - 0004:0000a24c ??_C@_0CI@EKNG@BrStdFileOpenRead?3?5invalid?5open_@ 0044d24c bren:stdfile.obj - 0004:0000a274 ??_C@_02MMAH@rt?$AA@ 0044d274 bren:stdfile.obj - 0004:0000a278 ??_C@_0N@OGCO@BRENDER_PATH?$AA@ 0044d278 bren:stdfile.obj - 0004:0000a288 _BrStdioDiagHandler 0044d288 bren:stderr.obj - 0004:0000a294 __BrDefaultDiagHandler 0044d294 bren:stderr.obj - 0004:0000a298 ??_C@_0BC@DONA@Stdio?5DiagHandler?$AA@ 0044d298 bren:stderr.obj - 0004:0000a2ac ??_C@_0BA@NGPO@BRender?5Warning?$AA@ 0044d2ac bren:stderr.obj - 0004:0000a2bc ??_C@_0BE@CABL@BRender?5Fatal?5Error?$AA@ 0044d2bc bren:stderr.obj - 0004:0000a2d0 _BrStdlibAllocator 0044d2d0 bren:stdmem.obj - 0004:0000a2e0 __BrDefaultAllocator 0044d2e0 bren:stdmem.obj - 0004:0000a2e4 ??_C@_06OCBH@malloc?$AA@ 0044d2e4 bren:stdmem.obj - 0004:0000a2ec ___fcntrlcomp 0044d2ec LIBC:setfcntr.obj - 0004:0000a350 ___xc_a 0044d350 LIBC:crt0init.obj - 0004:0000a3c4 ___xc_z 0044d3c4 LIBC:crt0init.obj - 0004:0000a3c8 ___xi_a 0044d3c8 LIBC:crt0init.obj - 0004:0000a3d8 ___xi_z 0044d3d8 LIBC:crt0init.obj - 0004:0000a3dc ___xp_a 0044d3dc LIBC:crt0init.obj - 0004:0000a3e4 ___xp_z 0044d3e4 LIBC:crt0init.obj - 0004:0000a3e8 ___xt_a 0044d3e8 LIBC:crt0init.obj - 0004:0000a3ec ___xt_z 0044d3ec LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0044e000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0044e014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0044e028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0044e03c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 0044e050 kernel32:KERNEL32.dll - 0005:0000012c __imp__InitializeCriticalSection@4 0044e12c kernel32:KERNEL32.dll - 0005:00000130 __imp__DeleteCriticalSection@4 0044e130 kernel32:KERNEL32.dll - 0005:00000134 __imp__GlobalAlloc@8 0044e134 kernel32:KERNEL32.dll - 0005:00000138 __imp__GlobalFree@4 0044e138 kernel32:KERNEL32.dll - 0005:0000013c __imp__LeaveCriticalSection@4 0044e13c kernel32:KERNEL32.dll - 0005:00000140 __imp__EnterCriticalSection@4 0044e140 kernel32:KERNEL32.dll - 0005:00000144 __imp__GlobalReAlloc@12 0044e144 kernel32:KERNEL32.dll - 0005:00000148 __imp__WideCharToMultiByte@32 0044e148 kernel32:KERNEL32.dll - 0005:0000014c __imp__CreateFileA@28 0044e14c kernel32:KERNEL32.dll - 0005:00000150 __imp__CloseHandle@4 0044e150 kernel32:KERNEL32.dll - 0005:00000154 __imp__DeleteFileA@4 0044e154 kernel32:KERNEL32.dll - 0005:00000158 __imp__FlushFileBuffers@4 0044e158 kernel32:KERNEL32.dll - 0005:0000015c __imp__SetFilePointer@16 0044e15c kernel32:KERNEL32.dll - 0005:00000160 __imp__SetEndOfFile@4 0044e160 kernel32:KERNEL32.dll - 0005:00000164 __imp__ReadFile@20 0044e164 kernel32:KERNEL32.dll - 0005:00000168 __imp__WriteFile@20 0044e168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetFullPathNameA@16 0044e16c kernel32:KERNEL32.dll - 0005:00000170 __imp__SearchPathA@24 0044e170 kernel32:KERNEL32.dll - 0005:00000174 __imp__GetTempPathA@8 0044e174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetLastError@0 0044e178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetFileAttributesA@4 0044e17c kernel32:KERNEL32.dll - 0005:00000180 __imp__RtlUnwind@16 0044e180 kernel32:KERNEL32.dll - 0005:00000184 __imp__LoadLibraryA@4 0044e184 kernel32:KERNEL32.dll - 0005:00000188 __imp__RaiseException@16 0044e188 kernel32:KERNEL32.dll - 0005:0000018c __imp__ExitProcess@4 0044e18c kernel32:KERNEL32.dll - 0005:00000190 __imp__SetStdHandle@8 0044e190 kernel32:KERNEL32.dll - 0005:00000194 __imp__VirtualAlloc@16 0044e194 kernel32:KERNEL32.dll - 0005:00000198 __imp__VirtualFree@12 0044e198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetStartupInfoA@4 0044e19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetModuleHandleA@4 0044e1a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__MultiByteToWideChar@24 0044e1a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__GetEnvironmentStrings@0 0044e1a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__GetCommandLineA@0 0044e1ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__GetVersion@0 0044e1b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__GetProcAddress@8 0044e1b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__GetFileType@4 0044e1b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__SetEnvironmentVariableA@8 0044e1bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__UnhandledExceptionFilter@4 0044e1c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__GetModuleFileNameA@12 0044e1c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__GetACP@0 0044e1c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__GetOEMCP@0 0044e1cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__GetCPInfo@8 0044e1d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__GetStdHandle@4 0044e1d4 kernel32:KERNEL32.dll - 0005:000001d8 \177KERNEL32_NULL_THUNK_DATA 0044e1d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__CharUpperBuffA@8 0044e1dc user32:USER32.dll - 0005:000001e0 __imp__MessageBoxA@16 0044e1e0 user32:USER32.dll - 0005:000001e4 \177USER32_NULL_THUNK_DATA 0044e1e4 user32:USER32.dll - 0005:000001e8 __imp__timeGetTime@0 0044e1e8 winmm:WINMM.dll - 0005:000001ec \177WINMM_NULL_THUNK_DATA 0044e1ec winmm:WINMM.dll - 0005:000001f0 \177comdlg32_NULL_THUNK_DATA 0044e1f0 comdlg32:comdlg32.dll - - entry point at 0001:00032d5b - - Static symbols - - 0001:00016a70 _$$8000 00417a70 f mssio.obj - 0001:00016aa0 _$$1000 00417aa0 f mssio.obj - 0001:00016480 _$$1000 00417480 f mbmp.obj - 0001:00016930 _$$9200 00417930 f mbmp.obj - 0001:00016940 _$$8000 00417940 f mbmp.obj - 0001:00016460 _$$1000 00417460 f screxe.obj - 0001:00016470 _$$8000 00417470 f screxe.obj - 0001:00015d40 _$$1000 00416d40 f stream.obj - 0001:00016430 _$$8000 00417430 f stream.obj - 0001:00015070 _$$1000 00416070 f lex.obj - 0001:00015cb0 _$$8000 00416cb0 f lex.obj - 0001:00014d80 _$$1000 00415d80 f scrcom.obj - 0001:00014d90 _$$8000 00415d90 f scrcom.obj - 0001:00014950 _$$1000 00415950 f chse.obj - 0001:00014d50 _$$8000 00415d50 f chse.obj - 0001:00014610 _$$1000 00415610 f groups2.obj - 0001:00014620 _$$8000 00415620 f groups2.obj - 0001:00013140 _$$1000 00414140 f groups.obj - 0001:00014560 _$$8000 00415560 f groups.obj - 0001:00012600 _$$8000 00413600 f fniwin.obj - 0001:000127d0 _$$1000 004137d0 f fniwin.obj - 0001:00012e10 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00413e10 f fniwin.obj - 0001:00012eb0 _$$9000 00413eb0 f fniwin.obj - 0001:00012ec0 _$$a000 00413ec0 f fniwin.obj - 0001:00012ed0 _$$b000 00413ed0 f fniwin.obj - 0001:00012110 ?_HfileOpen@@YGPAXPADHK@Z 00413110 f filewin.obj - 0001:000123e0 _$$1000 004133e0 f filewin.obj - 0001:000125f0 _$$8000 004135f0 f filewin.obj - 0001:00011300 _$$8000 00412300 f file.obj - 0001:00011570 _$$1000 00412570 f file.obj - 0001:000117a0 ?_FRangeIn@@YGHJJJ@Z 004127a0 f file.obj - 0001:000120a0 _$$9000 004130a0 f file.obj - 0001:000120b0 _$$a000 004130b0 f file.obj - 0001:000120c0 _$$b000 004130c0 f file.obj - 0001:00011050 _$$1000 00412050 f crf.obj - 0001:000112d0 _$$8000 004122d0 f crf.obj - 0001:0000ac60 _$$1000 0040bc60 f codkauai.obj - 0001:00010f00 _$$8000 00411f00 f codkauai.obj - 0001:0000a410 _$$1000 0040b410 f codec.obj - 0001:0000a740 _$$8000 0040b740 f codec.obj - 0001:00008aa0 _$$1000 00409aa0 f chunk.obj - 0001:0000a100 _$$8000 0040b100 f chunk.obj - 0001:00008950 _$$8000 00409950 f memwin.obj - 0001:00008960 _$$1000 00409960 f memwin.obj - 0001:000080f0 _$$1000 004090f0 f utilstr.obj - 0001:000087c0 _$$8000 004097c0 f utilstr.obj - 0001:00007dc0 _$$1000 00408dc0 f utilrnd.obj - 0001:00007ec0 _$$8000 00408ec0 f utilrnd.obj - 0001:00007be0 _$$8000 00408be0 f utilmem.obj - 0001:00007bf0 _$$1000 00408bf0 f utilmem.obj - 0001:000078d0 _$$1000 004088d0 f utilint.obj - 0001:000079d0 _$$8000 004089d0 f utilint.obj - 0001:000075d0 _$$8000 004085d0 f utilerro.obj - 0001:00007800 _$$1000 00408800 f utilerro.obj - 0001:00007810 _$$9000 00408810 f utilerro.obj - 0001:00007830 _$$a000 00408830 f utilerro.obj - 0001:00007840 _$$b000 00408840 f utilerro.obj - 0001:00007450 _$$1000 00408450 f utilcopy.obj - 0001:000075c0 _$$8000 004085c0 f utilcopy.obj - 0001:00007300 _$$8000 00408300 f base.obj - 0001:00007310 _$$1000 00408310 f base.obj - 0001:00007140 _$$8000 00408140 f util.obj - 0001:00007150 _$$1000 00408150 f util.obj - 0001:00007030 _$$8000 00408030 f utilglob.obj - 0001:00007090 _$$9000 00408090 f utilglob.obj - 0001:000070d0 _$$a000 004080d0 f utilglob.obj - 0001:000070e0 _$$b000 004080e0 f utilglob.obj - 0001:000070f0 _$$1000 004080f0 f utilglob.obj - 0001:00000720 _$$1000 00401720 f sitobren.obj - 0001:000027d0 _$$8000 004037d0 f sitobren.obj - 0001:00004950 _$$6300 00405950 f sitobren.obj - 0001:000051d0 ?WrapAddVertex@@YGHPAUbr_vertex@@@Z 004061d0 f sitobren.obj - 0001:00006c80 _$$0400 00407c80 f sitobren.obj - 0001:0003ace0 _BrStdlibAllocate 0043bce0 f bren:stdmem.obj - 0001:0003ad00 _BrStdlibFree 0043bd00 f bren:stdmem.obj - 0001:0003ad10 _BrStdlibInquire 0043bd10 f bren:stdmem.obj - 0001:0003aca0 _BrStdioWarning 0043bca0 f bren:stderr.obj - 0001:0003acc0 _BrStdioError 0043bcc0 f bren:stderr.obj - 0001:0003a8f0 _BrStdioAttributes 0043b8f0 f bren:stdfile.obj - 0001:0003ab10 _BrStdioOpenWrite 0043bb10 f bren:stdfile.obj - 0001:0003ab30 _BrStdioClose 0043bb30 f bren:stdfile.obj - 0001:0003ab40 _BrStdioEof 0043bb40 f bren:stdfile.obj - 0001:0003ab50 _BrStdioGetChar 0043bb50 f bren:stdfile.obj - 0001:0003ab80 _BrStdioPutChar 0043bb80 f bren:stdfile.obj - 0001:0003abb0 _BrStdioRead 0043bbb0 f bren:stdfile.obj - 0001:0003abd0 _BrStdioWrite 0043bbd0 f bren:stdfile.obj - 0001:0003abf0 _BrStdioGetLine 0043bbf0 f bren:stdfile.obj - 0001:0003ac80 _BrStdioAdvance 0043bc80 f bren:stdfile.obj - 0001:00016c10 _$$1000 00417c10 f bren:tmap.obj - 0001:00017000 _$$e200 00418000 f bren:tmap.obj - 0001:00017030 _$$8000 00418030 f bren:tmap.obj - 0001:000319f9 _DK_udfReadOldBinary 004329f9 f libdkit:tinyMental.obj - 0001:000303c1 _DK_controlPointsReadAscii 004313c1 f libdkit:tinyPatch.obj - 0001:00030494 _DK_taggedPointsReadAscii 00431494 f libdkit:tinyPatch.obj - 0001:0002f7fe _polygonNodeReadAscii 004307fe f libdkit:tinyMesh.obj - 0001:0002e662 _DK_metaGroupReadAscii 0042f662 f libdkit:tinyMetaball.obj - 0001:0002d242 _DK_nurbsPointsAllocate 0042e242 f libdkit:tinyNurbs.obj - 0001:0002d2a5 _DK_knotsAllocate 0042e2a5 f libdkit:tinyNurbs.obj - 0001:0002d2b6 _DK_nurbsCrvAsciiReadCVs 0042e2b6 f libdkit:tinyNurbs.obj - 0001:0002d3a0 _DK_nurbsCrvAsciiReadKnots 0042e3a0 f libdkit:tinyNurbs.obj - 0001:0002d458 _nurbsCompCrvBinaryRead 0042e458 f libdkit:tinyNurbs.obj - 0001:0002d5b4 _DK_nurbsSrfAsciiReadCVs 0042e5b4 f libdkit:tinyNurbs.obj - 0001:0002d69e _DK_nurbsSrfAsciiReadKnots 0042e69e f libdkit:tinyNurbs.obj - 0001:0002dc50 _DK_nurbsSrfReadTrims 0042ec50 f libdkit:tinyNurbs.obj - 0001:0002bf21 _DK_splineReadControlPointsAscii 0042cf21 f libdkit:tinySpline.obj - 0001:0002c17b _DK_bezierGetSegmentByName 0042d17b f libdkit:tinySpline.obj - 0001:0002c1ac _DK_bezierGetConstraintByName 0042d1ac f libdkit:tinySpline.obj - 0001:0002b770 _DK_materialGetTypeByName 0042c770 f libdkit:tinyMaterial.obj - 0001:00029f7a _DK_textureGetAnimationByName 0042af7a f libdkit:tinyTexture.obj - 0001:00029fa7 _DK_textureGetMethodByName 0042afa7 f libdkit:tinyTexture.obj - 0001:0002aceb _DK_texture3DGetTypeByName 0042bceb f libdkit:tinyTexture.obj - 0001:00028d9d _DK_klusterAddToList 00429d9d f libdkit:tinyCluster.obj - 0001:000285fd _shapeLevelAsciiRead 004295fd f libdkit:tinyDynamics.obj - 0001:000270ff _DK_modelAlgoTypeReadAscii 004280ff f libdkit:tinyActor.obj - 0001:00027302 _invKinReadAscii 00428302 f libdkit:tinyActor.obj - 0001:000273f9 _DK_envelopVertReadBinaryChunk 004283f9 f libdkit:tinyActor.obj - 0001:00027a58 _DK_envelopVertReadAscii 00428a58 f libdkit:tinyActor.obj - 0001:00027bd1 _envelopReadAscii 00428bd1 f libdkit:tinyActor.obj - 0001:00028173 _DK_oEnvelopeVertReadBinaryChunk 00429173 f libdkit:tinyActor.obj - 0001:00025dc3 _DK_modelReadAsciiFile 00426dc3 f libdkit:tinyModel.obj - 0001:00025ec4 _DK_modelReadBinaryFile 00426ec4 f libdkit:tinyModel.obj - 0001:0003b5cf _findenv 0043c5cf f LIBC:setenv.obj - 0001:0003b62c _copy_environ 0043c62c f LIBC:setenv.obj - 0001:0003b0d6 _strncnt 0043c0d6 f LIBC:aw_cmp.obj - 0001:00039643 _strncnt 0043a643 f LIBC:aw_map.obj - 0001:00038d1c __before 00439d1c f LIBC:heapadd.obj - 0001:00037af5 __abstract_cw 00438af5 f LIBC:ieee87.obj - 0001:00037b88 __hw_cw 00438b88 f LIBC:ieee87.obj - 0001:00037109 __heap_new_region 00438109 f LIBC:heapgrow.obj - 0001:00036f16 __hextodec 00437f16 f LIBC:input.obj - 0001:00036f4f __inc 00437f4f f LIBC:input.obj - 0001:00036f72 __un_inc 00437f72 f LIBC:input.obj - 0001:00036f89 __whiteout 00437f89 f LIBC:input.obj - 0001:00036019 __heap_grow_emptylist 00437019 f LIBC:heapinit.obj - 0001:00035ccd _getSystemCP 00436ccd f LIBC:mbctype.obj - 0001:00035d08 _CPtoLCID 00436d08 f LIBC:mbctype.obj - 0001:00035d47 _setSBCS 00436d47 f LIBC:mbctype.obj - 0001:00035b03 _parse_cmdline 00436b03 f LIBC:stdargv.obj - 0001:00035975 _xcptlookup 00436975 f LIBC:winxfltr.obj - 0001:00035778 __unwind_handler 00436778 f LIBC:exsup.obj - 0001:000356a5 _doexit 004366a5 f LIBC:crt0dat.obj - 0001:00035724 __initterm 00436724 f LIBC:crt0dat.obj - 0001:00034b95 __cftoe_g 00435b95 f LIBC:cvt.obj - 0001:00034cb6 __cftof_g 00435cb6 f LIBC:cvt.obj - 0001:00034dd2 __shift 00435dd2 f LIBC:cvt.obj - 0001:000344a1 _write_char 004354a1 f LIBC:output.obj - 0001:000344e1 _write_multi_char 004354e1 f LIBC:output.obj - 0001:00034512 _write_string 00435512 f LIBC:output.obj - 0001:00034549 _get_int_arg 00435549 f LIBC:output.obj - 0001:00034558 _get_int64_arg 00435558 f LIBC:output.obj - 0001:0003456c _get_short_arg 0043556c f LIBC:output.obj - 0001:000336fc __heap_expand_block 004346fc f LIBC:realloc.obj - 0001:00033287 _flsall 00434287 f LIBC:fflush.obj - -FIXUPS: 339b0 fffff1e8 5 a ffffff93 1a 13 ffffff8e b b 1b ffffff83 18 10 -FIXUPS: 3b8c1 8 c ffff84e2 c 5 10 10 5 1c 9 15 f 1f 9 fffffed0 14 c ffffffcf -FIXUPS: 33c63 1e 12 44 13 13 fffffe9a 2d 32 fffffe8e 1a ffffff2a fffffff3 -FIXUPS: 33976 18 a cf7 23 23 fffffc51 2d f e c 3d 55 ffffff05 fffffec7 -FIXUPS: 341e5 21 42 37 2f 19 2b e fffffe7f ffffffba ffffffb5 a 18 a fffffef8 -FIXUPS: 3401c ffffff6f 20 fffffef4 20 1491 14 1c 2d 16 1d 1b cb 3a 37 fffff662 -FIXUPS: 34bde 46 29 fffffef1 ffffff74 15 2f fffffe78 ab 2e fffffefd ffffffbe -FIXUPS: 347d0 43 3b ffffff24 35 fffffe73 16 33 1f 171f 16 13 29 fffffa90 -FIXUPS: 3591d ffffff10 ffffff84 fffffe75 ffffff8c c d 20 d fffff762 4c -FIXUPS: 34e41 1d 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 11d3 fffffde4 -FIXUPS: 3636c fffffdb9 18 fffffd83 3d 49 132 31 fffffdbf 1f 7 10 fffffabb -FIXUPS: 3597a c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d 36 47 11 137e d 35 -FIXUPS: 3715a ffffff1f fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 -FIXUPS: 369ee 2a 11 fffffdf5 ffffff4e fffffefd 12 11 11 5d 12 fffffe07 -FIXUPS: 36606 fffffe16 d 2b 1a 1852 11 56 3e 20 30 11 72 2b 34 d 84 42 -FIXUPS: 37f81 17 b fffff4cf ffffffb7 ffffffe1 fffffe36 12 1d 5 55 3c 7 -FIXUPS: 3733b b2 15 fffffdf9 ffffff70 18 375 9 12 61 116 e a1 2c 2e 23 -FIXUPS: 377d6 2e 36 2d 16 31 178 20 55 19 33 64 29 13 2f 13 3a 24 c 18 -FIXUPS: 37c78 11 fd3 64 ffffff58 fffffe9a 17 24 fffffe3a 51 2b 29 33 1c -FIXUPS: 38a35 14 e 14 e fffff99d ffffffaf 26 ffffff89 ffffff1c 2c fffffe2f -FIXUPS: 380f7 75 d 96 d c 32 fffff277 23a9 a4 22 fffffd28 78 10 18 e fffffade -FIXUPS: 3920e fffffb77 17 67 e 177 1a 1d 12 1f 20 d f 13 17 13 22 5b 16 -FIXUPS: 3911e f 22 f 16df 77 c fffffc58 2e 19 31 1e 2d 10 9 37 fffffe9b -FIXUPS: 3a4fe fffffa34 c5 92 10e 49 c6 4f fffff7f6 10 10 18 a1 3e 24 d -FIXUPS: 39c74 34 fffffe0b 1a36 1c fffff9ea 133 ef 21 26 10d aa 1f fffff928 -FIXUPS: 3ac70 65 1d 2b c 10 c fffffbbc 14 18 18 b0 9 e 9 29 4d fffffc51 -FIXUPS: 3a79e 75 c 1caa 39 2d 37 4d 3a 6c 12 14 fffffaf2 15 1a0 52 3e b -FIXUPS: 3c0b1 ffffff9b 28 fffffe0f bd 21 fffffeba f e ffffff29 50 ffffff6f -FIXUPS: 3bd40 fffff99d 47 3e 110 fffec1f3 13 d 26 13 d 26 13 d 26 12 19 -FIXUPS: 27b7b 23 16 19 26 16 19 26 13 d 2a 13 10 19 149e3 fffffd38 3a 2a -FIXUPS: 3c474 2b fffeb2b2 28 11 20 18 d 19 1e 16 1e 3a 1e 16 14 19 14 19 -FIXUPS: 27916 19 14 19 18 19 14 19 14 19 14 19 14 19 e fffff910 1c a 1c -FIXUPS: 273bc 14 1c 20 1b 16 1c 13 19 16 16 14 1c 22 24 1d 11 17 d 19 4b -FIXUPS: 275f0 10 13 14 17 17 2e fffff9b9 12 12 12 40 22 10 d 12 d 30 22 -FIXUPS: 27172 d 12 d 30 22 10 d 12 d 30 16 1c 18 1c 1d 24 e 15 19 fffffa0c -FIXUPS: 26d5f 1b 9 18 1c 21 17 1d 11 f b b 27 13 14 17 e 1d 13 f b 29 47 -FIXUPS: 26f97 e 19 27 f 12 12 12 fffffa28 14 14 14 14 11 11 13 1d 1d 1e -FIXUPS: 26b43 14 14 14 14 13 1e 14 f 11 11 16 11 13 1d 27 14 17 56 18 14 -FIXUPS: 27dfc 1e 2f 16 16 13 10 fffffe6a 29 24 f 20 ffffe907 24b 16 17 -FIXUPS: 2692a 11 11 11 11 11 11 11 10 18 10 17 18 11 11 14 2804 11 12 14 -FIXUPS: 2928d 12 14 14 14 a 12 25 1b e 18 12 23 e 18 c 1b e 1b e 1b e 1b -FIXUPS: 29468 15 19 ffffe917 17 111f 18 14 18 14 18 16 15 13 19 23 2f 16 -FIXUPS: 29027 13 19 23 2f 16 1d b 13 14 11 47 2b 16 11 11 11 11 3f fffffa3c -FIXUPS: 28c6f d 15 11 d d 18 11 d d 18 11 d 10 18 14 18 12 23 14 18 14 -FIXUPS: 28e16 14 18 14 18 12 23 14 18 fffff9a8 28 1e 22 28 1d 13 18 63 -FIXUPS: 289dc 89 13 10 1f 1f 13 1b 12 1e 18 19 1c 1c 11 9 13 21 22 14 13 -FIXUPS: 28c36 1b fffff776 d 16 1a 4e 3c 1b 24 28 2c 2d fc 28 15 35 18 13 -FIXUPS: 286ff 18 18 c 1e 10 23 20 18 18 18 18 18 13 1e fffff80d c 19 21 -FIXUPS: 280c3 28 21 1f 13 2d 26 2a 22 13 26 26 23 23 23 1a 15 11 11 15 -FIXUPS: 2832a 13 13 11 1b 11 1c 11 1553 18 11 18 11 18 d 1d 1b 25 38 1f -FIXUPS: 29a48 29 1c 1f 11 13 14 a a 9 13 16 22 14 11 ffffe34d 1e cd 1c -FIXUPS: 28030 1585 13 26 15 13 1f 1d 1d 1d 30 17 1f 3a 45 13 13 13 13 13 -FIXUPS: 297e3 14 30 20 1f 14 13 e 15 11 15 11 15 4ad 68 36 10 b 20 2a 2a -FIXUPS: 29ef0 3a 26 17 10 b 22 12 27 d 20 1f 19 15 12 20 17 17 9 fffff3ea -FIXUPS: 294e7 23 60 20 272e 1b 2c ffffe4c2 17 13 ffffff02 12 19 10 f 27 -FIXUPS: 2a177 10 f fffff9ff 17 49 1b 20 1b 17 e 29 16 35 17 1b 3f f 16 -FIXUPS: 29d8e 1c0a 16 16 22 16 16 16 22 16 19 16 22 16 27 16 27 16 27 16 -FIXUPS: 2bb97 16 19 16 19 16 19 16 19 13 19 13 d fffff9e2 1f 11 d 18 19 -FIXUPS: 2b6fe 19 16 16 16 16 16 16 16 16 16 16 25 19 14 21 24 19 14 21 -FIXUPS: 2b8fc 16 16 22 16 22 fffff665 15c 16 18 11 f f f 2c 3e 28 e 18 -FIXUPS: 2b284 45 24 1d 2d 16 16 8d 13 13 13 13 34 3e 1c 2e 147 1f 12 fffff55f -FIXUPS: 2abe5 16 16 16 16 17 16 17 2f 17 1f 16 16 16 17 20 20 1f 16 16 -FIXUPS: 2ade3 19 16 16 c 1c b d 2d f9 30 fffff894 24 19 14 21 24 16 16 -FIXUPS: 2a93a 16 27 16 27 13 27 13 d 19 1b 23 41 2b e 19 1e 16 16 16 16 -FIXUPS: 2ab84 16 17 fffff99e f 19 1a 16 1a 16 1a 16 1e 1e 1e 1e 16 16 16 -FIXUPS: 2a6d7 16 16 16 16 16 16 16 16 16 16 16 16 25 19 14 1e5a d 1c d -FIXUPS: 2c6da 11 d 1f 13 d 21 2f ffffda89 1a5 16 17 18 11 f f f 26 1f 12 -FIXUPS: 2a4a0 1f 11 d 18 19 f 19 1e84 11 d 18 19 f 19 1e 16 1e 16 1e 16 -FIXUPS: 2c4e3 16 16 16 16 16 16 16 16 16 16 16 19 16 19 16 19 16 d fffff9ab -FIXUPS: 2c033 16 16 2b 19 19 16 21 27 21 10 9 10 10 36 21 10 9 10 10 33 -FIXUPS: 2c24f 18 c 15 15 37 8a 1f 12 11 d2c 1a 16 11 16 11 19 18 2c 31 -FIXUPS: 2d213 79 ffffea98 126 16 18 11 e 11 f f f f f 29 3f 28 e 1b 23 -FIXUPS: 2bfe8 19 d95 16 16 19 f 1a 19 f 1a e 16 1d d 13 1b 25 22 2f 23 -FIXUPS: 2cf6f 1d 31 1e 19 1b 19 1e 19 19 f 1d 19 fffff90b 19 19 19 1c f -FIXUPS: 2ca8a 39 10 10 10 24 2e 2d 33 23 45 26 26 11 1d 11 d 18 19 f 19 -FIXUPS: 2cd1e 20 16 16 16 1e3b b 28 12 12 28 28 2b 12 12 a 5f 11 21 1c -FIXUPS: 2ed7e 23 32 11 d ffffd9b4 69 16 13 24 61 3f 28 16 2d f 2f 1ed9 -FIXUPS: 2e899 20 20 1a b 2c 12 12 28 15 11 1d 1f 16 16 16 16 16 16 16 16 -FIXUPS: 2eaab 23 19 16 16 1c 16 1c 20 20 fffff928 33 13 13 12 1c 45 2f -FIXUPS: 2e5e4 11 1c 1c 22 39 3e 11 1d 1f 16 16 13 16 16 16 16 16 23 23 -FIXUPS: 2e81f 16 16 1c fffff879 16 19 16 19 16 19 16 19 13 16 2f 16 f 11 -FIXUPS: 2e255 59 18 20 11 1c 1c 22 39 26 20 11 18 1c 16 1b 1e fffff9a2 -FIXUPS: 2de1c 16 16 13 1b 1d e 10 e 11 22 1f 11 1a 11 10 11 10 16 16 16 -FIXUPS: 2dfd6 16 20 20 e 13 19 16 16 35 fffff99f 19 19 19 19 16 38 19 16 -FIXUPS: 2db5d 16 13 49 89 1f 11 1f 11 13 16 16 16 16 16 16 16 16 c 15 1e -FIXUPS: 2ddda 16 fffff9a1 32 13 11 16 11 12 29 19 21 11 19 e a 14 e a 11 -FIXUPS: 2d918 11 11 11 16 16 16 22 2a 16 16 16 19 19 1f58 10 26 ffffd8d0 -FIXUPS: 2d2f9 eb 1b 18 29 1b 1b 2d 19 18 39 19 1b 18 1d 3c 5c 21 b 29 19 -FIXUPS: 2d6a7 e a 1b 25 2f 25 1ec3 d b b 11 24 22 11 16 11 d 15 d a 11 -FIXUPS: 2f72b 62 39 23 20 50 40 9 29 10 f 10 46 10 9 2c 10 fffff8e4 15 -FIXUPS: 2f2a7 19 16 1d 35 27 b 15 17 d 3d 31 47 1d b c 33 17 45 26 1f 11 -FIXUPS: 2f57b 11 13 13 16 10 1d e 1370 ffffe4c7 76 1a 44 3c 14 11 10 10 -FIXUPS: 2ef9f d 30 26 1f 11 1a 11 16 16 16 16 1e 13 4f 11 1c 41 24 11 1c -FIXUPS: 2f237 13a1 11 1c 18 21 20 d 1b 37 17 19 1a 11 1a 11 1b 1b 1b 19 -FIXUPS: 307c9 1c 33 f 6c 11 1f 1f 18 13 23 13 1f fffff926 1d 14 21 21 1f -FIXUPS: 3033b 19 19 19 d 1b 34 1b 19 16 11 1a 11 19 18 21 20 d 1b 3a 10 -FIXUPS: 30565 19 19 16 11 fffff815 37 13 13 f 4d 2f 13 26 23 17 2e 3c 2e -FIXUPS: 30002 28 d 4d 2a 13 17 21 11 2e 35 2e 54 23 14 1d 14 1d b0f 15 -FIXUPS: 30dae 12 11 e 31 e ffffec04 40 20 18 12 a 1f 3a 3b 37 3f 28 16 -FIXUPS: 2fc3d 18 d 49 21 10 10 2e 38 28 d 1b22 3b fffff0aa 3f 20 1c 25 -FIXUPS: 30a42 25 44 3a 19 22 17 1a 25 21 17 16 43 22 1b 48 20 1c c 20 11 -FIXUPS: 30d15 1f 29 11 7c3 1d 3b 32 16 1c 1d 11 16 1b 2e 29 16 16 16 16 -FIXUPS: 31711 16 16 16 16 16 16 16 16 16 2f 16 16 13 13 13 fffff99e 16 -FIXUPS: 31235 16 2b 16 16 16 16 16 16 16 16 16 13 16 25 e 11 33 2c 11 18 -FIXUPS: 31456 1b 11 2c 18 11 19 11 16 fffffa0c 1f 11 19 f 18 19 f 19 16 -FIXUPS: 31000 16 16 1e 1e 16 16 16 16 16 16 16 16 16 16 16 16 1e 1e 1e -FIXUPS: 311e8 e fc6 1e d 2c 6f 13 16 11 25 2a 1f 1c 2b 1b e e d 12 11 16 -FIXUPS: 323f8 16 1d 20 5f 17 ffffe970 8f a 21 8 1f ebf 97 10d 12 12 12 -FIXUPS: 31fbd 12 12 12 12 12 12 12 12 12 12 12 12 12 15 15 15 15 15 15 -FIXUPS: 3213a 15 15 15 a 27 fffff7de 1f 3e 14 21 20 21 21 21 21 21 21 21 -FIXUPS: 31b42 21 21 21 21 21 21 21 21 24 24 24 24 24 24 21 21 21 2f b2c -FIXUPS: 328fb 1f 11 1f 11 d 15 1b 1b 16 18 44 b 9 b 9 b 9 1f fffffa64 30 -FIXUPS: 32556 30 32 25 30 32 24 30 32 fffff2a8 fffe79d1 fffffff5 ffffff94 -FIXUPS: 192bc ba6 ffffff13 ffffff41 1fe ffffe33e ffffffb2 ffffffe8 ffffffde -FIXUPS: 18149 fffffff6 fffffff6 fffffff6 fffffff6 ffffffe4 1a5d8 2f 16 -FIXUPS: 32738 60 57 b 16 1c 1c 4e e 13 13 fffe9219 ffffffea ffffffd9 ffffffd5 -FIXUPS: 1ba41 ffffff9c ffffffea ffffffcc ffffffeb ffffffd5 ffffffeb fffff9e0 -FIXUPS: 1b1df fffffff5 2c8 fffffb0c ffffffdc ffffffee ffffff87 ffffffcc -FIXUPS: 1ae91 ffffffc7 fffffefe ffffff3c ffffffe4 ffffffd1 ffffffdc 42f -FIXUPS: 19433 fffffff4 ffffff8e fffffff5 36a4 ffffff73 ffffffea 746 ffffffe8 -FIXUPS: 1d077 ffffffe1 ffffffc4 ffffffec ffffff9f ffffffea ffffffdc ffffff27 -FIXUPS: 1ce76 ffffff92 ffffffdb ffffffc0 ffffffe7 728 ffffffc3 ffffff56 -FIXUPS: 1d38b ffffff12 ffffff8a ffffff92 ffffffd8 ffffeba4 ffffffe4 fffffeb3 -FIXUPS: 1bba2 fffffff3 ffffff9e 242e ffffffdf ffffffe7 ffffffe8 fffffe67 -FIXUPS: 1c142 ffffffc8 ffffff99 48e ffffff6f fffffe87 ffffffdb fffffe79 -FIXUPS: 1c7cc ffffffdb ffffff8c ffffffec ffffffd3 ffffffc8 ffffffe5 ffffff96 -FIXUPS: 1c621 ffffffe1 ffffffbc ffffffe3 ffffffd8 728 ffffff1b ffffffbb -FIXUPS: 1cb47 ffffffd2 ffffff9c b6e ffffffb5 ffffffec ffffffd6 fffffff5 -FIXUPS: 1dd3f ffffffcc ffffffb5 ffffffbe fffffff3 ffffffcc ffffff97 ffffffdc -FIXUPS: 1db7c ffffffe5 ffffffe8 ffffffbf ffffffad ffffffba ffffffd3 ffffffcd -FIXUPS: 1d9f4 ffffffe5 ffffffe8 ffffffe1 ffffffe4 69e ffffffde ffffffdb -FIXUPS: 1dfb3 ffffffe5 ffffffe9 24b ffffffb2 fffffff3 ffffffd2 fffffff7 -FIXUPS: 1e10d fffff84d ffffffec ffffffec ffffffe8 ffffffe5 ffffffe8 ffffffe1 -FIXUPS: 1d8ac ffffffd4 ffffffec ffffffec ffffffe8 ffffffe5 ffffffe8 ffffffd3 -FIXUPS: 1d79c ffffffe8 ffffffb6 ffffffec ffffffe6 ffffffe8 ffffffe6 ffffffe5 -FIXUPS: 1d6a7 ffffffd3 ffffffb4 1138 ffffffd2 ffffff83 ffffff8e ffffffdd -FIXUPS: 1e605 ffffffde ffffffdf ffffff6b ffffffc9 ffffffef ffffffb0 ffffffe2 -FIXUPS: 1e464 ffffffee ffffffec ffffffed ffffffee ffffffec 72e ffffffb7 -FIXUPS: 1eab8 ffffffcd ffffffca fffffe17 39f fffffff7 ffffffcd fffffff7 -FIXUPS: 1e22f fffffff4 ffffffb9 1852 ffffff8b ffffff8a ffffff9a 73f ffffff8a -FIXUPS: 1ff2e ffffff52 ffffff7c ffffff98 ffffff87 ffffff7b 71d ffffff8a -FIXUPS: 202d4 ffffff20 ffffff9d ffffff88 ffffff81 75d ffffff9a ffffff21 -FIXUPS: 2063e ffffff83 ffffff7c ffffff8e ffffff5d 55d ffffff93 ffffffe7 -FIXUPS: 2088a ffffdf1e 29ad fffffff2 ffffdebc ffffff52 ffffffa4 ffffffe7 -FIXUPS: 1ee30 ffffffd0 ffffff40 ffffffce ffffffbe ffffff92 5e6 ffffffe3 -FIXUPS: 1f1db ffffffe8 ffffffb0 ffffffe6 ffffff77 72d ffffff9d ffffff88 -FIXUPS: 1f6a3 ffffff8b ffffff9d ffffff9a ffffff52 ffffff9d 7ce ffffff87 -FIXUPS: 1fb2c ffffff9a 2623 fffff318 ffffffef fffffff1 fffffff4 ffffffed -FIXUPS: 213ae 66b fffffff2 fffffff4 fffffff4 ffffffec ffffffee ffffff56 -FIXUPS: 21903 ffffff81 ffffffec ffffffe4 ffffffe8 ffffffec ffffffd4 ffffffd8 -FIXUPS: 217b5 ffffffe6 ffffffee ffffffdb 472 fffff757 fffffeaa ffffffe2 -FIXUPS: 211ab ffffffca 3f41 fffffff4 ffffffa3 ffffffb8 fffffff3 ffffffdf -FIXUPS: 24075 fffffff2 ffffffcd fffffff2 fffffdac ffffffed ffffffba fffffff2 -FIXUPS: 23d5a ffffffdd ffffffd7 fffffff6 ffffffe1 ffffffe3 ffffff99 ffffec60 -FIXUPS: 22e7d fffffff5 fffff070 ffffffd6 ffffffe5 ffffffd5 fffffeca 593 -FIXUPS: 222af ffffff4a ffff5b07 24 6f 5d 24 d 74 39 10 21 21 16 14 12 10 -FIXUPS: 17f7c 1c 46 23 5 e d d954 51c 60c ffffff99 9e ffffeefe ffffffa8 -FIXUPS: 252c1 ffffee53 fbc 1684f 12 1c 1a 1a 15 8d 40 d 4e 15 17 d 31 e -FIXUPS: 3bb6b 34 26 20 1d 4a 1d 24 fffdbe68 11 2e 7 89 2b 5e 23 6b fffefaaa -FIXUPS: 781e 4b 91 5d 6e 2d 30 a 9f 27 13 4b b 3a 1b d 3f 1c 18 10 e 18 -FIXUPS: 7c81 5 5 17 1a d 1b d 33fe6 fffcb480 21 1a 11 4f 36 4d 1c 24 1d -FIXUPS: 731a c9 16 19 1c 9 43 27 e a 19 58 8 b f 9 33 33 3d 10 10 125 fffff47c -FIXUPS: 6bcf 3b 15 29 d a 30 49 12 3c 25 16 33 52 1b 45 18 a 59 15 14 1f -FIXUPS: 6f17 42 1c d7 e a 18 29 6b fffff412 141 50 41 31 a d 9e 1c 10 e -FIXUPS: 6858 8a 19 11 e 43 e 4e 19 11 e 5f 50 2e 20 c 11 19 f 42 1d fffff270 -FIXUPS: 5e2e 21 2f 17 10 2d 13 11 f 2d 19 43 73 34 23 34 e 45 12 d f d -FIXUPS: 6141 19 19 b8 46 22 26 bf 80 fffff282 e 5d 10 10 20 af 10c 58 20 -FIXUPS: 596a b 12 21 12 b 12 1c 6a 46 16 1c ad 4c 125 20 25 31 1d 1a 15 -FIXUPS: 5dc5 fffff4a7 22 21 12 14 18 12 35 4c 1a 26 1d 42 21 f 18 27 17 -FIXUPS: 54b2 14 2f 16 10 75 11 d 21 12 3a 18 20 14 fffff67c 18 e d 12 f -FIXUPS: 4d44 10 16 32 2c 88 32 10 1a 27 8 37 32 47 36 36 29 15 a2 45 9 -FIXUPS: 5133 16 be 1f 32 fffff49d 13 82 b 2c 10 1c 5d 16 6 19 6 1b 6 65 -FIXUPS: 491d e 11 10 12 5d c cb 80 12 26 12 16 53 25 35 b6 fffff5dc 32 -FIXUPS: 4302 19 32 3c 18 1c 47 1c 47 1c 41 b 28 39 40 17 1a 1c f 1a f 1a -FIXUPS: 461e 1a f 1a 1c 25 11 20 fffff7d3 16 b 6 30 24 21 16 16 24 2d 3e -FIXUPS: 402e 1f 19 31 39 15 17 2a c 1a 19 c 1a 13 35 21 16 14 1a 2d fffff825 -FIXUPS: 3ac3 d 87 22 1c 51 30 13 10 15 17 d 18 22 13 10 36 a 2b f 20 4b -FIXUPS: 3de1 1e 1e 1c 14 16 b 6 23 fffff6ca 65 1a 16 11 28 11 67 19 14 -FIXUPS: 36f2 37 3d 20 e 14 14 bc 2a 39 16 17 2c 1c e 25 1d 61 1b 25 d 23 -FIXUPS: 312d 17 d 22 14 1c 13 19 77 10 27 15 1b 56 19 11 8 45 17 46 1c -FIXUPS: 3425 14 35 19 1c 2b 25 29 f 19 11 fffff6b9 28 16 6d 14 12 14 1f -FIXUPS: 2d30 2d 8e 4b 1a 11 2b 1f 17 2b 5d 13 5a 15 18 1c 21 40 12 15 11 -FIXUPS: 30b9 18 30 fffff62b 1b 32 12 1e 32 33 25 1a 14 9 1b 18 2a c 18 -FIXUPS: 2936 7b 19 14 f 66 19 14 f 59 1f 17 2f 44 f 14 fffff55f 12 f f -FIXUPS: 219b 56 5e 70 3c 2e 11 34 1a 21 2a 2c 2e de 20 2b 17 5c 17 22 11 -FIXUPS: 2666 13 1a 11 35 22 11 fffff476 52 38 20 2e 20 19 2d 91 18 28 13 -FIXUPS: 1dd6 17 1d 3e 11 11 14 11 f 10 f c c f 40 95 46 44 5b 4d fffff5b2 -FIXUPS: 1745 11 2f 11 27 24 17 14 42 8 3c 9 4c b6 b 16 11 11 12 16 1c 18 -FIXUPS: 1a66 1a 14 14 19 1c 18 f c fffff801 2f 1c d 1c e 2a 1c 50 11 14 -FIXUPS: 1460 4a e 12 2b 11 10 1f 12 1e 10 42 18 46 26 14 d d d d d 67c4 -FIXUPS: 7e63 f c 29 f 29 f f c c 26 f f c 2b 10 2d f ffff9091 c c 57 f -FIXUPS: 1101 33 12 1d 12 14 7f fc 70ea 7 11e ae fffffbb4 11 ee 30 5d 23 -FIXUPS: 8331 fffffe10 fffffec4 11 2d c a 1e a 1f 1e 18 b 5 5 27 fffffc9a -FIXUPS: 7db8 23 31 8 8 f12 1b 28 27 5e 1e d 3a 15 26 2b 21 12 d fffffb9d -FIXUPS: 8b8d 54 fffffd93 b 52 21 fffffbe4 1f 11 1e 5c 1b6 b 5 5 21 fffffb72 -FIXUPS: 9900 51 fffff5d1 32 26 9 54 4b 94 11 4e 33 36 f 1e f 25b 6d 153 -FIXUPS: 96a6 49 f 2e 95 fffff454 11 2f 11 1e 12 10 53 1e7b 2e 2c 2f 33 -FIXUPS: ac4b 2b 29 27 1c 34 1c 2d 3d 3d 19 21 91 c8 47 49 2a 13 16 5b 57 -FIXUPS: b114 d 13 d ffffe6ab a8 c60 30 24 52 a 9 19 75 60 28 6 3a 40 1d -FIXUPS: a777 16 7b 19 41 b 15 24 11 1a 25 5d 4e 1a 16 a0 84 48 fffff46b -FIXUPS: 9fbe 16 13 39 2a 4c d cc 48 51 54 52 6 70 11 1c c 18 19 15 10 b -FIXUPS: a3cd 12 b 10 2a 39 1e 47 6 fffff63b b d e b f 63 4c 8 1c 22 78 -FIXUPS: 9ccf 4d 13 13 26 27 17 2e 17 3a 2b 27 17 41 16 18 16 13 26 30 1229 -FIXUPS: b1b4 7a 50 7f 20 b1 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d ffffe224 -FIXUPS: 9996 2f 11 1e 12 88 2c 14 2c 1f25 11 d 81 6a 12 78 12 33 27 21 -FIXUPS: f5d3 1b 1c 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9264 -FIXUPS: b176 7f55 9 d 13 d ffffee24 11 1e 6e 17 68 3c 6c 16 41 16 1d 46 -FIXUPS: 122d1 13 d ffff9494 11 52 8 28 8 11c 18 3f 1b 1c 72d5 20 4a 6 20 -FIXUPS: 12d5a 3f 6 20 2b 37 1a 12 11 b 58 e 12 35 1c 38 18 57 e 12 29 25 -FIXUPS: 13073 16 2d b 5 fffff574 64 a9 9d 2e 22 2e 4b 36 17 27 34 1c 17 -FIXUPS: 12990 a a 20 50 40 28 18 40 40 1f 38 45 3e 10 17 61 14 78d aa c -FIXUPS: 13571 c 74 ffffed34 11 2f 11 1e 12 22 21 25 14 23 14 14 25 11 18 -FIXUPS: 124f8 1c d 14 57 26 7 a f 2a 144f c 24 b 4d 1a 22 24 13 3a b 1e -FIXUPS: 13bd6 1a d4 76 1d 68 34 7 70 28 34 b 5 5 17 fffff2dc 23 89 9e 5e -FIXUPS: 155c1 13 d 13 d ffffe005 1f 11 2e 15 ab d 2c 19 20 12 83 e 7 16 -FIXUPS: 138a5 26 11 24 1e 11 b 1e 82 10 28 e 17c0 1d 12 19 29 a 1b e 17 -FIXUPS: 152cb 19 14 2f 2d 11 24 41 14 b 51 31 2e 18 40 44 17 15 13 d 13 -FIXUPS: 155a1 13 fffff380 98 35 1e 3e 23 12 1d 43 b8 42 b9 44 e b5 11 37 -FIXUPS: 14e25 77 11 42 55 23 85 2f 13 2d 1f aa 18 70 20 fffff293 6 15 b -FIXUPS: 1449c c 11 10 1e 32 d 1c 48 14 b 20 80 1d 2c 10 1b 3c 41 45 34 -FIXUPS: 147c7 31 38 29 35 45 4d fffff6f5 11 28 9 32 1c 14 1c 21 24 6e 1e -FIXUPS: 141d5 22 3b 23 38 20 1e a b 28 a b 4c 22 a b 24 a b 2b 16a2 f 27 -FIXUPS: 15aea f 7f 54 9 d 9 6d 61 9 d 9 8 2a 9 d 9 28 13 d fffff8b0 ffffe8f4 -FIXUPS: 13f26 2f 11 2f 11 2f 11 2bc1 3a 29 a7 13 d fffff0c0 fffff8b4 11 -FIXUPS: 15674 8 30 8 10 67 47 c 27 24 52 c 3f 6a 56 8a 11 f 4f 28 e 21 -FIXUPS: 15a95 919 2d 2c 3d 12 1c 93 44 36 61 52 2b 57 54 16 24 25 e 48 -FIXUPS: 167f5 4a 2e 2c 44 36 e 31 1a 6f 6e 7f 57 82d 16 36 2d 29 12 10 -FIXUPS: 17431 13 d ffffe964 11 b6 26 1d e7 5a 2c 25 51 58 45 19 42 3d 1e -FIXUPS: 1624c 34 3d 12 42 8f 9b4 49 6b 7d 28 2e 2c 2c 42 54 2d e 2d 3b -FIXUPS: 170bf 23 26 18 1d 11 31 1f 16 22 1c 38 21 1b 5c 21 2b 16 6b0 3e -FIXUPS: 17a42 2f 21 33 fffff9fc 1d 1d 113 1a d 11 19 2a 1c 17 63 28 3c -FIXUPS: 177a1 49 22 78 a 2e 1e 57 5 fffffb3b fffff8a4 11 diff --git a/OBJ/WINS/STUDIO.I b/OBJ/WINS/STUDIO.I deleted file mode 100644 index 0b7b2980..00000000 --- a/OBJ/WINS/STUDIO.I +++ /dev/null @@ -1,34704 +0,0 @@ -#line 1 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\assert.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 67 "H:\\BUILD\\SOC\\inc\\assert.chh" - -#line 69 "H:\\BUILD\\SOC\\inc\\assert.chh" -#line 19 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 1 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 112 "H:\\BUILD\\KAUAI\\src\\kiddef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - -#line 25 "H:\\BUILD\\KAUAI\\src\\framedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 406 "H:\\BUILD\\KAUAI\\src\\framedef.h" - -#line 17 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\kidsanim.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 18 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 91 "H:\\BUILD\\SOC\\inc\\kidgsdef.h" -#line 20 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 27 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - -#line 34 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - -#line 42 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 47 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 52 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 136 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 595 "H:\\BUILD\\SOC\\inc\\kidgs.chh" -#line 50 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\stdiopos.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\pos3.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 347 "H:\\BUILD\\SOC\\inc\\stdiopos.chh" -#line 55 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 176 "H:\\BUILD\\SOC\\inc\\socdef.h" - -#line 16 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 1 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\socdef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\inc\\utestres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 17 "H:\\BUILD\\SOC\\inc\\stdiodef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 1080 "H:\\BUILD\\SOC\\inc\\stdiodef.h" -#line 56 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helptops.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 2228 "H:\\BUILD\\SOC\\inc\\helptops.h" - -#line 57 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpbook.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 141 "H:\\BUILD\\SOC\\inc\\helpbook.h" - -#line 58 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\projmain.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 407 "H:\\BUILD\\SOC\\inc\\projmain.h" - -#line 59 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\balloons.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 72 "H:\\BUILD\\SOC\\inc\\balloons.chh" -#line 60 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 61 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\sharedef.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 78 "H:\\BUILD\\SOC\\inc\\sharedef.h" -#line 64 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 254 "H:\\BUILD\\SOC\\inc\\sharutil.chh" - -#line 65 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - -#line 1 "H:\\BUILD\\SOC\\inc\\biopage.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 68 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\stdiocrs.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 71 "H:\\BUILD\\SOC\\src\\studio\\stdiocrs.h" -#line 73 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\cursors.cht" - - - - -CHUNK( 'GGCR', 101, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 102, ) PACK CURSOR "studio\cur\squashst.cur" ENDCHUNK -CHUNK( 'GGCR', 103, ) PACK CURSOR "studio\cur\sizevenl.cur" ENDCHUNK -CHUNK( 'GGCR', 104, ) PACK CURSOR "studio\cur\rotatex.cur" ENDCHUNK -CHUNK( 'GGCR', 105, ) PACK CURSOR "studio\cur\rotatey.cur" ENDCHUNK -CHUNK( 'GGCR', 106, ) PACK CURSOR "studio\cur\rotatez.cur" ENDCHUNK -CHUNK( 'GGCR', 107, ) PACK CURSOR "studio\cur\costume.cur" ENDCHUNK -CHUNK( 'GGCR', 108, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 109, ) PACK CURSOR "studio\cur\hotspot.cur" ENDCHUNK -CHUNK( 'GGCR', 110, ) PACK CURSOR "studio\cur\normaliz.cur" ENDCHUNK -CHUNK( 'GGCR', 111, ) PACK CURSOR "studio\cur\default.cur" ENDCHUNK -CHUNK( 'GGCR', 112, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 113, ) PACK CURSOR "studio\cur\tboxvert.cur" ENDCHUNK -CHUNK( 'GGCR', 114, ) PACK CURSOR "studio\cur\tboxhor.cur" ENDCHUNK -CHUNK( 'GGCR', 115, ) PACK CURSOR "studio\cur\tboxfall.cur" ENDCHUNK -CHUNK( 'GGCR', 116, ) PACK CURSOR "studio\cur\tboxrise.cur" ENDCHUNK -CHUNK( 'GGCR', 117, ) PACK CURSOR "studio\cur\nukscen.cur" ENDCHUNK -CHUNK( 'GGCR', 118, ) PACK CURSOR "studio\cur\creatbox.cur" ENDCHUNK -CHUNK( 'GGCR', 119, ) PACK CURSOR "studio\cur\ibeam.cur" ENDCHUNK -CHUNK( 'GGCR', 120, ) PACK CURSOR "studio\cur\cutactor.cur" ENDCHUNK -CHUNK( 'GGCR', 121, ) PACK CURSOR "studio\cur\copy.cur" ENDCHUNK -CHUNK( 'GGCR', 122, ) PACK CURSOR "studio\cur\copypath.cur" ENDCHUNK -CHUNK( 'GGCR', 123, ) PACK CURSOR "studio\cur\paste.cur" ENDCHUNK -CHUNK( 'GGCR', 124, ) PACK CURSOR "studio\cur\removaft.cur" ENDCHUNK -CHUNK( 'GGCR', 125, ) PACK CURSOR "studio\cur\cutext.cur" ENDCHUNK -CHUNK( 'GGCR', 126, ) PACK CURSOR "studio\cur\copytext.cur" ENDCHUNK -CHUNK( 'GGCR', 127, ) PACK CURSOR "studio\cur\pastetex.cur" ENDCHUNK -CHUNK( 'GGCR', 128, ) PACK CURSOR "studio\cur\pastepth.cur" ENDCHUNK -CHUNK( 'GGCR', 129, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 130, ) PACK CURSOR "studio\cur\textback.cur" ENDCHUNK -CHUNK( 'GGCR', 131, ) PACK CURSOR "studio\cur\cur00001.cur" ENDCHUNK -CHUNK( 'GGCR', 132, ) PACK CURSOR "studio\cur\cur00002.cur" ENDCHUNK -CHUNK( 'GGCR', 133, ) PACK CURSOR "studio\cur\cur00003.cur" ENDCHUNK -CHUNK( 'GGCR', 134, ) PACK CURSOR "studio\cur\listen.cur" ENDCHUNK -CHUNK( 'GGCR', 135, ) PACK CURSOR "studio\cur\squashst.cur" ENDCHUNK -CHUNK( 'GGCR', 136, ) PACK CURSOR "studio\cur\repositi.cur" ENDCHUNK -CHUNK( 'GGCR', 137, ) PACK CURSOR "studio\cur\normaliz.cur" ENDCHUNK -CHUNK( 'GGCR', 138, ) PACK CURSOR "studio\cur\textback.cur" ENDCHUNK -CHUNK( 'GGCR', 139, ) PACK CURSOR "studio\cur\textback.cur" ENDCHUNK -CHUNK( 'GGCR', 140, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 141, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 142, ) PACK CURSOR "studio\cur\fontextc.cur" ENDCHUNK -CHUNK( 'GGCR', 143, ) PACK CURSOR "studio\cur\removbef.cur" ENDCHUNK - -#line 74 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\stdiosnd.cht" - - - - - - - - - - - - -CHUNK( 'WAVE', 0x23001, ) FILE "studio\sound\cover.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23002, ) FILE "studio\sound\pbrowse.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23003, ) FILE "studio\sound\dropdn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23004, ) FILE "studio\sound\sbrowse.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23005, ) FILE "studio\sound\brwzpic.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23006, ) FILE "studio\sound\brwzbtn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23007, ) FILE "studio\sound\ezlopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23008, ) FILE "studio\sound\stateon.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23009, ) FILE "studio\sound\stateoff.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300A, ) FILE "studio\sound\grabsn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300B, ) FILE "studio\sound\dropsn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300C, ) FILE "studio\sound\select.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300D, ) FILE "studio\sound\squash.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300E, ) FILE "studio\sound\stretch.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2300F, ) FILE "studio\sound\grow.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23010, ) FILE "studio\sound\shrink.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23011, ) FILE "studio\sound\cbacks.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23012, ) FILE "studio\sound\rotate.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23013, ) FILE "studio\sound\cbackr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23014, ) FILE "studio\sound\sfreeze.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23015, ) FILE "studio\sound\systepf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23016, ) FILE "studio\sound\systepb.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23017, ) FILE "studio\sound\move.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23018, ) FILE "studio\sound\move1.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23019, ) FILE "studio\sound\moveall.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301A, ) FILE "studio\sound\actstepf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301B, ) FILE "studio\sound\actstepb.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301D, ) FILE "studio\sound\tbkopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301E, ) FILE "studio\sound\splay.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2301F, ) FILE "studio\sound\sloop.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23020, ) FILE "studio\sound\sact.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23022, ) FILE "studio\sound\wfont.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23023, ) FILE "studio\sound\wsize.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23024, ) FILE "studio\sound\wcolor.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23025, ) FILE "studio\sound\wstyle.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23026, ) FILE "studio\sound\wbgclr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23027, ) FILE "studio\sound\wscron.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23028, ) FILE "studio\sound\wscroff.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23029, ) FILE "studio\sound\gofrstf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302A, ) FILE "studio\sound\goprevf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302B, ) FILE "studio\sound\gonextf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302C, ) FILE "studio\sound\addframe.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302D, ) FILE "studio\sound\golastf.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302E, ) FILE "studio\sound\gofrsts.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2302F, ) FILE "studio\sound\goprevs.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23030, ) FILE "studio\sound\gonexts.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23031, ) FILE "studio\sound\golasts.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23032, ) FILE "studio\sound\play.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303E, ) FILE "studio\sound\stop.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23033, ) FILE "studio\sound\undo.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23034, ) FILE "studio\sound\redo.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23035, ) FILE "studio\sound\rembfr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23036, ) FILE "studio\sound\remaftr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23037, ) FILE "studio\sound\remscn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23038, ) FILE "studio\sound\remactr.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23039, ) FILE "studio\sound\remwbox.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303A, ) FILE "studio\sound\paste.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303B, ) FILE "studio\sound\copyp.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303C, ) FILE "studio\sound\copy.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303D, ) FILE "studio\sound\cut.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2303F, ) FILE "studio\sound\sectool.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23040, ) FILE "studio\sound\ok.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23041, ) FILE "studio\sound\cancel.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23042, ) FILE "studio\sound\fnew.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23043, ) FILE "studio\sound\fsave.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23044, ) FILE "studio\sound\fsaveas.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23045, ) FILE "studio\sound\pfopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23046, ) FILE "studio\sound\exit.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23047, ) FILE "studio\sound\pageup.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23048, ) FILE "studio\sound\pagedn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23049, ) FILE "studio\sound\rswitch.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304A, ) FILE "studio\sound\lselect.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304B, ) FILE "studio\sound\nukesn.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304C, ) FILE "studio\sound\costume.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304D, ) FILE "studio\sound\acesory.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304E, ) FILE "studio\sound\spin.wav" ENDCHUNK -CHUNK( 'WAVE', 0x2304F, ) FILE "studio\sound\mike.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23050, ) FILE "studio\sound\rplay.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23051, ) FILE "studio\sound\pselect.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23052, ) FILE "studio\sound\random.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23053, ) FILE "studio\sound\mapopen.wav" ENDCHUNK -CHUNK( 'WAVE', 0x23054, ) FILE "studio\sound\recframe.wav" ENDCHUNK - -#line 79 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\sectools.cht" - - - - - - - - - - - - - - - - - -SET _curgok = 0x2000F CHUNK( 'GOKD', 0x2000F, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 47 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0x00000020 0x00000001 SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door0.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door4.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door5.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door6.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door7.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\door8.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllSceneDoors); - ChangeStateThis(0x0006); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllSceneDoors = 1; - ChangeStateThis(0x0006); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllActorDoors); - ChangeStateThis(0x0007); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllActorDoors = 1; - ChangeStateThis(0x0007); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllSoundDoors); - ChangeStateThis(0x0008); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllSoundDoors = 1; - ChangeStateThis(0x0008); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fAllTextDoors); - ChangeStateThis(0x0009); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->fAllTextDoors = 1; - ChangeStateThis(0x0009); -ENDCHUNK - - - - - - - - -SET _curgok = 0x20010 CHUNK( 'GOKD', 0x20010, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\1par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20014, 0x20014); - CreateChildThis(0x2003A, 0x2003A); - CreateChildThis(0x20050, 0x20050); - CreateChildThis(0x20062, 0x20062); - - - - - If (0x20002->idscnDown == 0x20036); - ChangeStateGob(0x20036, 0x0001); - End; - 0x20002->idscnDown = 0x20000; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0022 _st ) SCRIPT - If (0x20002->idscnDown != 0x20000); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20000; - End; -ENDCHUNK - - - - -SET _curgok = 0x20014 CHUNK( 'GOKD', 0x20014, ) PACK SHORT BO OSK LONG 1 - LONG 0 224 48 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22318 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1view.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1views.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x2007C, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x2003A CHUNK( 'GOKD', 0x2003A, ) PACK SHORT BO OSK LONG 1 - LONG 0 415 48 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22319 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1scen.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\1scens.bmp" ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x200AF, 0, 0, - (0 << 16) | 0); -ENDCHUNK - - - - -SET _curgok = 0x20050 CHUNK( 'GOKD', 0x20050, ) PACK SHORT BO OSK LONG 1 - LONG 0 340 48 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22307 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmfw.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmfwc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idscnDown != GidThis()); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = GidThis(); - End; - ChangeStateThis(0x0002); - EnqueueCid(50004, 20000 + 5, 13, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20062 CHUNK( 'GOKD', 0x20062, ) PACK SHORT BO OSK LONG 1 - LONG 0 281 48 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22308 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmbk.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\p3rmbkc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idscnDown != GidThis()); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = GidThis(); - End; - ChangeStateThis(0x0002); - EnqueueCid(50004, 20000 + 5, 16, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20011 CHUNK( 'GOKD', 0x20011, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\2par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20017, 0x20017); - CreateChildThis(0x20018, 0x20018); - CreateChildThis(0x2007B, 0x2007B); - CreateChildThis(0x20063, 0x20063); - CreateChildThis(0x20064, 0x20064); - CreateChildThis(0x2001F, 0x2001F); - CreateChildThis(0x20065, 0x20065); - CreateChildThis(0x20022, 0x20022); - CreateChildThis(0x20024, 0x20024); - - If( ((GetProp( 0x23500 ) == 0xffffffff) && ((GetProp( 0x23501 ) & 0x000001ff )==0x000001ff ))); - - CreateChildThis(0x20016, 0x20016); - End; - - - - - If (0x20002->idactDown == 0x20036); - ChangeStateGob(0x20036, 0x0001); - End; - 0x20002->idactDown = 0x20000; - 0x20002->chttActor = 0; - ChangeStateGob(0x20017, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20016 CHUNK( 'GOKD', 0x20016, ) PACK SHORT BO OSK LONG 1 - LONG 0 574 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2bio.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2bios.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2301D, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ::nBioPage = ::nBioPage; ::fBioCtrl = 1; CreateChildGob( 0x20002, 0x00015100, 0x00015100 ); -ENDCHUNK - - - -SET _curgok = 0x20017 CHUNK( 'GOKD', 0x20017, ) PACK SHORT BO OSK LONG 1 - LONG 0 66 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2comp.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2comps.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - EnqueueCid(50004, 20000 + 5, 1, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->idactDown = GidThis(); - 0x20002->chttActor = 1; - End; -ENDCHUNK - - - - -SET _curgok = 0x20018 CHUNK( 'GOKD', 0x20018, ) PACK SHORT BO OSK LONG 1 - LONG 0 236 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22320 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2cost.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2costc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - EnqueueCid(50004, 20000 + 5, 29, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateThis(0x0002); - 0x20002->idactDown = GidThis(); - 0x20002->chttActor = 29; - End; -ENDCHUNK - - - - -SET _curgok = 0x2007B CHUNK( 'GOKD', 0x2007B, ) PACK SHORT BO OSK LONG 1 - LONG 0 123 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22321 -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act01.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act02.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act03.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000043 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act04.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000044 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act05.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000045 ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2act06.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cell = 0; - While(); - Cell(0x00000040 + cell, 0, 0, 10 ); - cell++; - cell = cell % 6; - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2acts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->idactDown = GidThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - 0x20002->chttActor = 32; - EnqueueCid(50004, 20000 + 5, 32, - 0x21120, 0x21010, (6 << 16) | 4); - If(0x20002->idactDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20063 CHUNK( 'GOKD', 0x20063, ) PACK SHORT BO OSK LONG 1 - LONG 0 180 47 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22322 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22322 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2cont.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2conts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->idactDown = GidThis(); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - 0x20002->chttActor = 28; - EnqueueCid(50004, 20000 + 5, 28, 0, 0, 0); - ChangeStateThis(0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x2001F CHUNK( 'GOKD', 0x2001F, ) PACK SHORT BO OSK LONG 1 - LONG 0 517 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22324 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2soon.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2soons.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idactDown != GidThis()); - EnqueueCid(50004, 20000 + 5, 6, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateThis(0x0002); - 0x20002->idactDown = GidThis(); - 0x20002->chttActor = 6; - End; -ENDCHUNK - - - - -SET _curgok = 0x20064 CHUNK( 'GOKD', 0x20064, ) PACK SHORT BO OSK LONG 1 - LONG 0 293 47 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22325 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2rot.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2rots.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); - ChangeStateGob(0x20066, 0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ChangeStateGob(0x2001C, 0x0001); - ChangeStateGob(0x2001D, 0x0001); - ChangeStateGob(0x2001E, 0x0001); - ChangeStateGob(0x2006B, 0x0001); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttActor == 7); - ChangeStateGob(0x2001C, 0x0002); - Elif (0x20002->chttActor == 8); - ChangeStateGob(0x2001D, 0x0002); - Elif (0x20002->chttActor == 9); - ChangeStateGob(0x2001E, 0x0002); - Elif (0x20002->chttActor == 20); - ChangeStateGob(0x2006B, 0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20065 CHUNK( 'GOKD', 0x20065, ) PACK SHORT BO OSK LONG 1 - LONG 0 460 47 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22326 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2tran.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\2trans.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); - If (StateGob(0x20067) != 0x0003); - ChangeStateGob(0x20067, 0x0003); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ChangeStateGob(0x20020, 0x0001); - ChangeStateGob(0x20021, 0x0001); - ChangeStateGob(0x2006C, 0x0001); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttActor == 10); - ChangeStateGob(0x20020, 0x0002); - Elif (0x20002->chttActor == 11); - ChangeStateGob(0x20021, 0x0002); - Elif (0x20002->chttActor == 21); - ChangeStateGob(0x2006C, 0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20022 CHUNK( 'GOKD', 0x20022, ) PACK SHORT BO OSK LONG 1 - LONG 0 343 47 10 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22327 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22327 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2xy.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2xys.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(0x20002->fXYAxis); - ChangeStateThis(0x0003); - Else; - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50001, 20000 + 5, 0, 0, 0, 0); - 0x20002->fXYAxis = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0003); - PlaySoundThis('WAVE', 0x23008, 0, 0x10000, 1, 0, 1); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50000, 20000 + 5, 0, 0, 0, 0); - 0x20002->fXYAxis = 1; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); - PlaySoundThis('WAVE', 0x23009, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20024 CHUNK( 'GOKD', 0x20024, ) PACK SHORT BO OSK LONG 1 - LONG 0 410 47 10 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22328 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22328 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2zero.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\2zeros.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23008, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23009, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(0x20002->fRGround); - ChangeStateThis(0x0002); - Else; - ChangeStateThis(0x0003); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50009, 20000 + 5, 1, 0, 0, 0); - 0x20002->fRGround = 1; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - EnqueueCid(50009, 20000 + 5, 0, 0, 0, 0); - 0x20002->fRGround = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x2009B CHUNK( 'GOKD', 0x2009B, ) PACK SHORT BO OSK LONG 1 - LONG 0 283 376 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st 0 0x22348 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2sbtn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2sbtns.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - - - lwDelay = 24; - While(); - PlaySoundThis('WAVE', 0x23015, 0, 0x10000, 1, 0, 1); - EnqueueCid(50023, 0, 0, 0, 0, 0); - Cell(SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - If(lwDelay > lwSLDelayMin); - lwDelay -= 3; - End; - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - - - - If(kid != 0x2009C); - - - - - - - - ChangeStateGob(0x2001F, 0x0001); - ChangeStateGob(0x20017, 0x0002); - 0x20002->idactDown = 0x20017; - 0x20002->chttActor = 1; - EnqueueCid(50004, 20000 + 5, 1, 0, 0, 0); - EnqueueCid(100007, kid, _parm[2], _parm[3], _parm[4], _parm[5]); - Return(1); - - End; -ENDCHUNK - - - - -SET _curgok = 0x2009C CHUNK( 'GOKD', 0x2009C, ) PACK SHORT BO OSK LONG 1 - LONG 0 356 376 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22349 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2lbtn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 36, 0 ) "studio\bmp\2lbtns.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - - - lwDelay = 24; - While(); - PlaySoundThis('WAVE', 0x23015, 0, 0x10000, 1, 0, 1); - EnqueueCid(50024, 0, 0, 0, 0, 0); - Cell(SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - If(lwDelay > lwSLDelayMin); - lwDelay -= 3; - End; - End; -ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x20012 CHUNK( 'GOKD', 0x20012, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\3par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20026, 0x20026); - CreateChildThis(0x20027, 0x20027); - CreateChildThis(0x20028, 0x20028); - CreateChildThis(0x20029, 0x20029); - CreateChildThis(0x2002A, 0x2002A); - CreateChildThis(0x2004E, 0x2004E); - - - - - If (0x20002->idsndDown == 0x20036); - ChangeStateGob(0x20036, 0x0001); - End; - 0x20002->idsndDown = 0x20027; - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - ChangeStateGob(0x20027, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20026 CHUNK( 'GOKD', 0x20026, ) PACK SHORT BO OSK LONG 1 - LONG 0 201 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22329 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3sing.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3sings.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 35, 0, 0, 0); - End; -ENDCHUNK - - - - - -SET _curgok = 0x20027 CHUNK( 'GOKD', 0x20027, ) PACK SHORT BO OSK LONG 1 - LONG 0 317 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3ear.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3ears.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - End; -ENDCHUNK - - - - -SET _curgok = 0x20029 CHUNK( 'GOKD', 0x20029, ) PACK SHORT BO OSK LONG 1 - LONG 0 259 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3loop.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3loops.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 33, 0, 0, 0); - End; -ENDCHUNK - - - - -SET _curgok = 0x2002A CHUNK( 'GOKD', 0x2002A, ) PACK SHORT BO OSK LONG 1 - LONG 0 395 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3rpt.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\3rpts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idsndDown != GidThis()); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 34, 0, 0, 0); - End; -ENDCHUNK - - - - -SET _curgok = 0x2004E CHUNK( 'GOKD', 0x2004E, ) PACK SHORT BO OSK LONG 1 - LONG 0 446 47 100 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231C - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2231C -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\1note.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 18, 46 ) "studio\bmp\1notes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23049, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23049, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->fpseDown); - ChangeStateThis(0x0003); - Else; - ChangeStateThis(0x0002); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50011, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x20002->fpseDown = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50012, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0002); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - 0x20002->fpseDown = 1; -ENDCHUNK - - - - - - - - - - - - - - - - -SET _curgok = 0x20013 CHUNK( 'GOKD', 0x20013, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 47 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\4par.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2002C, 0x2002C); - CreateChildThis(0x2002D, 0x2002D); - CreateChildThis(0x2002E, 0x2002E); - CreateChildThis(0x2002F, 0x2002F); - CreateChildThis(0x20030, 0x20030); - CreateChildThis(0x20032, 0x20032); - CreateChildThis(0x20069, 0x20069); - - .tbxt = 1; - - ChangeStateGob(0x20030, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2002C CHUNK( 'GOKD', 0x2002C, ) PACK SHORT BO OSK LONG 1 - LONG 0 444 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4back.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4backs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50059, 0, 0, 0x21585, - 0x21583, (4 << 16) | - 4); -ENDCHUNK - - - - -SET _curgok = 0x2002D CHUNK( 'GOKD', 0x2002D, ) PACK SHORT BO OSK LONG 1 - LONG 0 253 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4bold.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4bolds.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50056, 0, 0, 0x21555, 0x21553, - (16 << 16) | 3); -ENDCHUNK - - - - - -SET _curgok = 0x2002E CHUNK( 'GOKD', 0x2002E, ) PACK SHORT BO OSK LONG 1 - LONG 0 369 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2232F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4colr.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4colrs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50058, 0, 0, 0x21575, 0x21573, - (4 << 16) | 4); -ENDCHUNK - - - - - -SET _curgok = 0x2002F CHUNK( 'GOKD', 0x2002F, ) PACK SHORT BO OSK LONG 1 - LONG 0 195 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22330 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4font.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4fonts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50055, 0, 0, 0x21545, 0x21543, - (16 << 16) | 1); -ENDCHUNK - - - - - -SET _curgok = 0x20032 CHUNK( 'GOKD', 0x20032, ) PACK SHORT BO OSK LONG 1 - LONG 0 311 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22332 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4size.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4sizes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; - EnqueueCid(50057, 0, 0, 0x21565, 0x21563, - (16 << 16) | 4); -ENDCHUNK - - - - - -SET _curgok = 0x20030 CHUNK( 'GOKD', 0x20030, ) PACK SHORT BO OSK LONG 1 - LONG 0 137 47 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22331 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4ins.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4inss.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->chttTbox = 2; - 0x20002->idtbxDown = GidThis(); - EnqueueCid(50004, 20000 + 5, 2, 0, 0, 0); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != GidThis()); - ChangeStateThis(0x0002); - End; -ENDCHUNK - - - - -SET _curgok = 0x20069 CHUNK( 'GOKD', 0x20069, ) PACK SHORT BO OSK LONG 1 - LONG 0 502 47 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22333 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4scrl.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\4scrls.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20068, 0x0003); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttTbox == 4); - ChangeStateGob(0x20031, 0x0001); - Elif (0x20002->chttTbox == 3); - ChangeStateGob(0x20033, 0x0001); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (0x20002->chttTbox == 4); - ChangeStateGob(0x20031, 0x0002); - Elif (0x20002->chttTbox == 3); - ChangeStateGob(0x20033, 0x0002); - End; -ENDCHUNK - -#line 80 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\popups.cht" - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20047 CHUNK( 'GOKD', 0x20047, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 477 198 589 406 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20048, 0x20048); - CreateChildThis(0x20049, 0x20049); - CreateChildThis(0x2004A, 0x2004A); - CreateChildThis(0x20095, 0x20095); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); - ChangeStateGob(0x2003C, 0x0002); - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - FilterCmdsThis(400001, 0, 0xFFFFFFFF); - ChangeStateGob(0x2003C, 0x0001); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - - - - If(kid == 0x2003C); - Return(0); - End; - - If((kid != 0x20048) && - (kid != 0x20049) && - (kid != 0x2004A) && - (kid != 0x20095) && - (kid != 0x20047)); - - - - ChangeStateThis(0x0002); - End; - - - - - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x20048 CHUNK( 'GOKD', 0x20048, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 104 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22304 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1open.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1openc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23045, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - - - - - EnqueueCid(101, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - -SET _curgok = 0x20049 CHUNK( 'GOKD', 0x20049, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 52 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22305 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1new.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1news.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23042, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - EnqueueCid(100, 20000 + 5, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2004A CHUNK( 'GOKD', 0x2004A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 156 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22306 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1save.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1saves.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23043, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - EnqueueCid(103, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20095 CHUNK( 'GOKD', 0x20095, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 208 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223B3 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1svas.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 52 ) "studio\bmp\p1svass.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23044, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0002); - EnqueueCid(104, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x2004F CHUNK( 'GOKD', 0x2004F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 224 354 470 406 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20052, 0x20052); - CreateChildThis(0x20053, 0x20053); - CreateChildThis(0x20054, 0x20054); - CreateChildThis(0x20055, 0x20055); - CreateChildThis(0x20056, 0x20056); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); - ChangeStateGob(0x20036, 0x0002); - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20036->idDown == 0x20000); - ChangeStateGob(0x20036, 0x0001); - End; - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - FilterCmdsThis(400001, 0, 0xFFFFFFFF); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20036); - Return(1); - End; - - If((kid != 0x20052) && - (kid != 0x20053) && - (kid != 0x20054) && - (kid != 0x20055) && - (kid != 0x20056) && - (kid != 0x2004F)); - - - - ChangeStateThis(0x0002); - End; - - - - - Return(0); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - If (StateGob(0x20052) == 0x0002); - ChangeStateGob(0x20036->idDown, 0x0001); - Elif (StateGob(0x20052) == 0x0004); - ChangeStateGob(0x20036->idDown, 0x0003); - Elif (StateGob(0x20052) == 0x0006); - ChangeStateGob(0x20036->idDown, 0x0005); - Elif (StateGob(0x20052) == 0x0008); - ChangeStateGob(0x20036->idDown, 0x0007); - End; -ENDCHUNK - - - - -SET _curgok = 0x20052 CHUNK( 'GOKD', 0x20052, ) PACK SHORT BO OSK LONG 1 - LONG 0 220 0 100 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22309 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22309 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230A - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230A - LONG 0 0 0x00000020 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D7 - LONG 0 0 0x00000040 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D7 - LONG 0 0 0x00000080 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223B5 - LONG 0 0 0x00000100 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223B5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsnc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmac.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmacc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmsdc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) - - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmtb.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3rmtbc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - If (StateThis() == 0x0001); - ChangeStateThis(0x0002); - EnqueueCid(50004, 20000 + 5, 14, 0, 0, 0); - Elif (StateThis() == 0x0003); - ChangeStateThis(0x0004); - EnqueueCid(50004, 20000 + 5, 15, 0, 0, 0); - Elif (StateThis() == 0x0005); - ChangeStateThis(0x0006); - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - Elif (StateThis() == 0x0007); - ChangeStateThis(0x0008); - EnqueueCid(50004, 20000 + 5, 15, 0, 0, 0); - End; - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - ChangeStateGob(0x20036->idDown, 0x0001); - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20053 CHUNK( 'GOKD', 0x20053, ) PACK SHORT BO OSK LONG 1 - LONG 0 122 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cppt.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cpptc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44000, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20054 CHUNK( 'GOKD', 0x20054, ) PACK SHORT BO OSK LONG 1 - LONG 0 171 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3past.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3pastc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44003, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20055 CHUNK( 'GOKD', 0x20055, ) PACK SHORT BO OSK LONG 1 - LONG 0 73 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3copy.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3copyc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44001, 0, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20056 CHUNK( 'GOKD', 0x20056, ) PACK SHORT BO OSK LONG 1 - LONG 0 24 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cut.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\p3cutc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ); -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (0x20002->idactDown != 0x20036); - ChangeStateGob(0x20002->idactDown, 0x0001); - 0x20002->chttActor = 0; - 0x20002->idactDown = 0x20036; - End; - - If (0x20002->idtbxDown != 0x20036); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20036; - 0x20002->chttTbox = 0; - End; - - If (0x20002->idsndDown != 0x20036); - ChangeStateGob(0x20002->idsndDown, 0x0001); - 0x20002->idsndDown = 0x20036; - End; - - If (0x20002->idscnDown != 0x20036); - ChangeStateGob(0x20002->idscnDown, 0x0001); - 0x20002->idscnDown = 0x20036; - End; - - ChangeStateThis(0x0002); - - If (FGobExists(0x20036->idDown) && - (0x20036->idDown != GidThis()) && - (0x20036->idDown != 0x20000)); - If (0x20036->idDown == 0x20052); - RunScriptGob(0x2004F, 0x0023); - Else; - ChangeStateGob(0x20036->idDown, 0x0001); - End; - End; - - 0x20036->idDown = GidThis(); - ChangeStateGob(0x2004F, 0x0002); - - - - - - EnqueueCid(44002, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x20066 CHUNK( 'GOKD', 0x20066, ) PACK SHORT BO OSK LONG 1 - LONG 0 293 271 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 174 ) "studio\bmp\p5par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2001C, 0x2001C); - CreateChildThis(0x2001D, 0x2001D); - CreateChildThis(0x2001E, 0x2001E); - CreateChildThis(0x2006B, 0x2006B); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20064); - Return(0); - End; - - If((kid != 0x2001C) && - (kid != 0x2001D) && - (kid != 0x2001E) && - (kid != 0x2006B)); - - - - ChangeStateThis(0x0002); - - If ((0x20002->chttActor != 7) && - (0x20002->chttActor != 8) && - (0x20002->chttActor != 9) && - (0x20002->chttActor != 20)); - ChangeStateGob(0x20064, 0x0001); - End; - End; - - - - - Return(0); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x2001C CHUNK( 'GOKD', 0x2001C, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 21 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2230F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotx.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotxs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 7, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 7; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2001D CHUNK( 'GOKD', 0x2001D, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 65 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22310 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5roty.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotys.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 8, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 8; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2001E CHUNK( 'GOKD', 0x2001E, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 109 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22311 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotz.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5rotzs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 9, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 9; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2006B CHUNK( 'GOKD', 0x2006B, ) PACK SHORT BO OSK LONG 1 - LONG 0 46 153 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22312 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5norm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 46, 21 ) "studio\bmp\p5norms.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 20, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20066, 0x0002); - 0x20002->idactDown = 0x20064; - 0x20002->chttActor = 20; - ChangeStateGob(0x20064, 0x0002); -ENDCHUNK - - - - - - - - - - - -SET _curgok = 0x20067 CHUNK( 'GOKD', 0x20067, ) PACK SHORT BO OSK LONG 1 - LONG 0 460 227 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 130 ) "studio\bmp\p4par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20020, 0x20020); - CreateChildThis(0x20021, 0x20021); - CreateChildThis(0x2006C, 0x2006C); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20065); - Return(0); - End; - - If((kid != 0x20020) && - (kid != 0x20021) && - (kid != 0x2006C)); - - - - ChangeStateThis(0x0002); - - If ((0x20002->chttActor != 10) && - (0x20002->chttActor != 11) && - (0x20002->chttActor != 21)); - ChangeStateGob(0x20065, 0x0001); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x20020 CHUNK( 'GOKD', 0x20020, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 86 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22313 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4sqsh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4sqshs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 10, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20067, 0x0002); - 0x20002->idactDown = 0x20065; - 0x20002->chttActor = 10; - ChangeStateGob(0x20065, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20021 CHUNK( 'GOKD', 0x20021, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 42 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22314 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4shrk.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4shrks.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 11, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20067, 0x0002); - 0x20002->idactDown = 0x20065; - 0x20002->chttActor = 11; - ChangeStateGob(0x20065, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2006C CHUNK( 'GOKD', 0x2006C, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 130 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22315 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4norm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 42 ) "studio\bmp\p4norms.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 21, 0, 0, 0); - ChangeStateGob(0x20002->idactDown, 0x0001); - ChangeStateGob(0x20067, 0x0002); - 0x20002->idactDown = 0x20065; - 0x20002->chttActor = 21; - ChangeStateGob(0x20065, 0x0002); -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x20068 CHUNK( 'GOKD', 0x20068, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 480 100 526 188 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20031, 0x20031); - CreateChildThis(0x20033, 0x20033); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0x0001); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - ChangeStateGob(0x20069, 0x0002); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - FilterCmdsThis(100007, 0, 0xFFFFFFFF); - FilterCmdsThis(100003, 0, 0xFFFFFFFF); - FilterCmdsThis(400001, 0, 0xFFFFFFFF); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20069); - Return(0); - End; - - If((kid != 0x20031) && (kid != 0x20033)); - - - - ChangeStateThis(0x0002); - - If ((0x20002->chttTbox != 3) && - (0x20002->chttTbox != 4)); - ChangeStateGob(0x20069, 0x0001); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x20031 CHUNK( 'GOKD', 0x20031, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 44 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22316 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7scrl.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7scrls.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 4, 0, 0, 0); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - ChangeStateGob(0x20068, 0x0002); - 0x20002->idtbxDown = 0x20069; - 0x20002->chttTbox = 4; - ChangeStateGob(0x20069, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x20033 CHUNK( 'GOKD', 0x20033, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 88 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22317 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7nscr.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 44 ) "studio\bmp\p7nscrs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50004, 20000 + 5, 3, 0, 0, 0); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - ChangeStateGob(0x20068, 0x0002); - 0x20002->idtbxDown = 0x20069; - 0x20002->chttTbox = 3; - ChangeStateGob(0x20069, 0x0002); -ENDCHUNK - - -#line 81 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\popdn.cht" - - - - - - - - - - - - - - - - - - - - - -CHUNK( 'GLSC', 0x21596, ) SCRIPT - lwDelay = 45; - EnqueueCid(50013, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - While(); - If(lwDelay > 10); - lwDelay -= 7; - End; - EnqueueCid(50013, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK - - -CHUNK( 'GLSC', 0x21597, ) SCRIPT - lwDelay = 45; - EnqueueCid(50014, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - While(); - If(lwDelay > 10); - lwDelay -= 7; - End; - EnqueueCid(50014, GidParGob(GidParThis()), GidThis(), 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x21501 CHUNK( 'GOKD', 0x21501, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 136 72 216 264 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21502, 0x21502); -ENDCHUNK - - - - -SET _curgok = 0x21502 CHUNK( 'GOKD', 0x21502, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 78 194 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK - -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21503, 0x21503); - ChangeStateGob(0x21503, 0x0002); - CreateChildThis(0x21504, 0x21504); - ChangeStateGob(0x21504, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (194 - 44 - 18)); - - xp = 0; - - While(xp <= (78 - 0 - 78)); - - - - - CreateChildThis(0x21505 + nFrame, 0x21505); - MoveAbsGob(0x21505 + nFrame, xp, yp); - nFrame++; - xp += 0 + 78; - End; - - yp += 0 + 44; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(((kid >= 0x21505) && (kid < 0x21510)) || - (kid == 0x21503) || - (kid == 0x21504)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21501, 0, 0, 0, 0); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - -SET _curgok = 0x21505 CHUNK( 'GOKD', 0x21505, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x23051, 0, 0x10000, 1, 0, 1); - EnqueueCid(50017, 0x21501, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21501, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21503 CHUNK( 'GOKD', 0x21503, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21504 CHUNK( 'GOKD', 0x21504, ) PACK SHORT BO OSK LONG 0 - LONG 0 39 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d1ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - - -SET _curgok = 0x21511 CHUNK( 'GOKD', 0x21511, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 88 72 136 264 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21512, 0x21512); -ENDCHUNK - - - - -SET _curgok = 0x21512 CHUNK( 'GOKD', 0x21512, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 46 194 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21513, 0x21513); - ChangeStateGob(0x21513, 0x0002); - CreateChildThis(0x21514, 0x21514); - ChangeStateGob(0x21514, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (194 - 44 - 18)); - - xp = 0; - - While(xp <= (46 - 0 - 46)); - - - - - CreateChildThis(0x21515 + nFrame, 0x21515); - MoveAbsGob(0x21515 + nFrame, xp, yp); - ChangeStateGob(0x21515 + nFrame, 0x0002); - nFrame++; - xp += 0 + 46; - End; - - yp += 0 + 44; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(((kid >= 0x21515) && (kid < 0x21520)) || - (kid == 0x21513) || - (kid == 0x21514)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21511, 0, 0, 0, 0); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21515 CHUNK( 'GOKD', 0x21515, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x23051, 0, 0x10000, 1, 0, 1); - EnqueueCid(50017,0x21511, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21511, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21513 CHUNK( 'GOKD', 0x21513, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21514 CHUNK( 'GOKD', 0x21514, ) PACK SHORT BO OSK LONG 0 - LONG 0 23 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d2ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - -SET _curgok = 0x21521 CHUNK( 'GOKD', 0x21521, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 36 132 186 264 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21522, 0x21522); -ENDCHUNK - - - - -SET _curgok = 0x21522 CHUNK( 'GOKD', 0x21522, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 144 132 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21523, 0x21523); - ChangeStateGob(0x21523, 0x0002); - CreateChildThis(0x21524, 0x21524); - ChangeStateGob(0x21524, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (132 - 23 - 17)); - - xp = 0; - - While(xp <= (144 - 0 - 144)); - - - - - CreateChildThis(0x21525 + nFrame, 0x21525); - MoveAbsGob(0x21525 + nFrame, xp, yp); - ChangeStateGob(0x21525 + nFrame, 0x0002); - nFrame++; - xp += 0 + 144; - End; - - yp += 0 + 23; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(((kid >= 0x21525) && (kid < 0x21530)) || - (kid == 0x21523) || - (kid == 0x21524)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21521, 0, 0, 0, 0); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21525 CHUNK( 'GOKD', 0x21525, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x23051, 0, 0x10000, 1, 0, 1); - EnqueueCid(50017, 0x21521, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21521, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21523 CHUNK( 'GOKD', 0x21523, ) PACK SHORT BO OSK LONG 0 - LONG 0 72 115 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21524 CHUNK( 'GOKD', 0x21524, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 115 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d3ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - -SET _curgok = 0x21541 CHUNK( 'GOKD', 0x21541, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 172 100 332 338 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21542, 0x21542); -ENDCHUNK - - - - -SET _curgok = 0x21542 CHUNK( 'GOKD', 0x21542, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21543, 0x21543); - ChangeStateGob(0x21543, 0x0002); - CreateChildThis(0x21544, 0x21544); - ChangeStateGob(0x21544, 0x0002); - - yp = 0; - .kidThumb = 0x21545; - - While(yp <= (238 - 22 - 18)); - - xp = 0; - - While(xp <= (160 - 0 - 160)); - - - - - ; - kidFrame = GidUnique(); - CreateChildThis(kidFrame, 0x21545); - MoveAbsGob(kidFrame, xp, yp); - .kidThumb++; - xp += 0 + 160; - End; - - yp += 0 + 22; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002F); - Return(1); - End; - - If(GidParGob(kid) == 0x21542); - Return(0); - End; - - If(((kid >= 0x21545) && (kid < 0x21550)) || - (kid == 0x21543) || - (kid == 0x21544)); - - Return(0); - End; - - - - - EnqueueCid(50015, 0x21541, 0, 0, 0, 0); - ChangeStateGob(0x2002F, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21545 CHUNK( 'GOKD', 0x21545, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(GidParThis()->kidThumb, 0x21595); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002F); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002F; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21541, GidChild(GidThis()), 0, 0, 0); - EnqueueCid(50016, 0x21541, 0, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21595 CHUNK( 'GOKD', 0x21595, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 16 4 156 17 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0010 _st ) - - - - - - -SET _curgok = 0x21543 CHUNK( 'GOKD', 0x21543, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 219 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21544 CHUNK( 'GOKD', 0x21544, ) PACK SHORT BO OSK LONG 0 - LONG 0 80 219 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d5ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - - - -SET _curgok = 0x21551 CHUNK( 'GOKD', 0x21551, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 230 100 390 304 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21552, 0x21552); -ENDCHUNK - - - - -SET _curgok = 0x21552 CHUNK( 'GOKD', 0x21552, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21553, 0x21553); - ChangeStateGob(0x21553, 0x0002); - CreateChildThis(0x21554, 0x21554); - ChangeStateGob(0x21554, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (90 - 22 - 0)); - - xp = 0; - - While(xp <= (170 - 0 - 160)); - - - - - CreateChildThis(0x21555 + nFrame, 0x21555); - MoveAbsGob(0x21555 + nFrame, xp, yp); - nFrame++; - xp += 0 + 160; - End; - - yp += 0 + 22; - End; - ; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002D); - Return(1); - End; - - If(((kid >= 0x21555) && (kid < 0x21560)) || - (kid == 0x21553) || - (kid == 0x21554)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21551, 0, 0, 0, 0); - ChangeStateGob(0x2002D, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21555 CHUNK( 'GOKD', 0x21555, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002D); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002D; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21551, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21551, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21553 CHUNK( 'GOKD', 0x21553, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 157 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - -SET _curgok = 0x21554 CHUNK( 'GOKD', 0x21554, ) PACK SHORT BO OSK LONG 0 - LONG 0 84 157 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d6ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - - - -SET _curgok = 0x21561 CHUNK( 'GOKD', 0x21561, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 288 100 448 400 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21562, 0x21562); -ENDCHUNK - - - - -SET _curgok = 0x21562 CHUNK( 'GOKD', 0x21562, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21563, 0x21563); - ChangeStateGob(0x21563, 0x0002); - CreateChildThis(0x21564, 0x21564); - ChangeStateGob(0x21564, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (300 - 40 - 19)); - - xp = 0; - - While(xp <= (160 - 0 - 160)); - - - - - CreateChildThis(0x21565 + nFrame, 0x21565); - MoveAbsGob(0x21565 + nFrame, xp, yp); - nFrame++; - xp += 0 + 160; - End; - - yp += 0 + 40; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x20032); - Return(1); - End; - - If(((kid >= 0x21565) && (kid < 0x21570)) || - (kid == 0x21563) || - (kid == 0x21564)); - Return(0); - End; - - - - - EnqueueCid(50015, 0x21561, 0, 0, 0, 0); - ChangeStateGob(0x20032, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21565 CHUNK( 'GOKD', 0x21565, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x20032); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x20032; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21561, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21561, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21563 CHUNK( 'GOKD', 0x21563, ) PACK SHORT BO OSK LONG 0 - LONG 0 50 133 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21564 CHUNK( 'GOKD', 0x21564, ) PACK SHORT BO OSK LONG 0 - LONG 0 86 133 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d7ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - -SET _curgok = 0x21571 CHUNK( 'GOKD', 0x21571, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 346 100 448 295 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21572, 0x21572); -ENDCHUNK - - - - -SET _curgok = 0x21572 CHUNK( 'GOKD', 0x21572, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 102 195 LONG BYTE 21 0 0 0xfe LONG BYTE 21 0 0 0xfe LONG - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21573, 0x21573); - ChangeStateGob(0x21573, 0x0002); - CreateChildThis(0x21574, 0x21574); - ChangeStateGob(0x21574, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (195 - 22 - 19)); - - xp = 0; - - While(xp <= (102 - 0 - 102)); - - - - - CreateChildThis(0x21575 + nFrame, 0x21575); - MoveAbsGob(0x21575 + nFrame, xp, yp); - nFrame++; - xp += 0 + 102; - End; - - yp += 0 + 22; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002E); - Return(1); - End; - - If(((kid >= 0x21575) && (kid < 0x21580)) || - (kid == 0x21573) || - (kid == 0x21574)); - Return(0); - End; - - If (kid == 0x2002E); - Return(1); - End; - - - - - EnqueueCid(50015, 0x21571, 0, 0, 0, 0); - ChangeStateGob(0x2002E, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21575 CHUNK( 'GOKD', 0x21575, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002E); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002E; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21571, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21571, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21573 CHUNK( 'GOKD', 0x21573, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21574 CHUNK( 'GOKD', 0x21574, ) PACK SHORT BO OSK LONG 0 - LONG 0 51 176 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d8ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - - - - - - - - - -SET _curgok = 0x21581 CHUNK( 'GOKD', 0x21581, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 -ENDCHUNK - - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 421 100 591 300 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21582, 0x21582); -ENDCHUNK - - - - -SET _curgok = 0x21582 CHUNK( 'GOKD', 0x21582, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23003, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21583, 0x21583); - ChangeStateGob(0x21583, 0x0002); - CreateChildThis(0x21584, 0x21584); - ChangeStateGob(0x21584, 0x0002); - - yp = 0; - nFrame = 0; - - While(yp <= (200 - 22 - 19)); - - xp = 0; - - While(xp <= (170 - 0 - 102)); - - - - - CreateChildThis(0x21585 + nFrame, 0x21585); - MoveAbsGob(0x21585 + nFrame, xp, yp); - nFrame++; - xp += 0 + 102; - End; - - yp += 0 + 22; - End; - - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - - If(kid == 0x2002C); - Return(1); - End; - - If(((kid >= 0x21585) && (kid < 0x21590)) || - (kid == 0x21583) || - (kid == 0x21584)); - Return(0); - End; - - If (kid == 0x2002C); - Return(1); - End; - - - - - ; - EnqueueCid(50015, 0x21581, 0, 0, 0, 0); - ChangeStateGob(0x2002C, 0x0001); - Return(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK - - - - - -SET _curgok = 0x21585 CHUNK( 'GOKD', 0x21585, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9frm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9frmh.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303F, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - If(0x20002->idtbxDown != 0x2002C); - ChangeStateGob(0x20002->idtbxDown, 0x0001); - 0x20002->idtbxDown = 0x2002C; - 0x20002->chttTbox = 2; - End; - EnqueueCid(50017, 0x21581, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x21581, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21583 CHUNK( 'GOKD', 0x21583, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 179 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9dn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9dns.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21596, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -SET _curgok = 0x21584 CHUNK( 'GOKD', 0x21584, ) PACK SHORT BO OSK LONG 0 - LONG 0 51 179 100 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\d9ups.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', 0x21597, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - - - -#line 82 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\browser.cht" - - - - - - - - - - - - - - - - - -SET _curgok = 0x2005A CHUNK( 'GOKD', 0x2005A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22300 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwdc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50013, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x2005B CHUNK( 'GOKD', 0x2005B, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22301 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bback.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bbackc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50014, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20058 CHUNK( 'GOKD', 0x20058, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\cancel.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\cancelc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50015, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20059 CHUNK( 'GOKD', 0x20059, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 48 ) "studio\bmp\okayc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50016, GidParGob(GidParThis()), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20081 CHUNK( 'GOKD', 0x20081, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x21594 CHUNK( 'GOKD', 0x21594, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20162 CHUNK( 'GOKD', 0x20162, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 64 29 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x20126 CHUNK( 'GOKD', 0x20126, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2003E, 0x2003E); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x2003E CHUNK( 'GOKD', 0x2003E, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 418 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 258, 370 ) "studio\bmp\book1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 303, 320); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 226, 330); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 40; - nFrame = 0; - - While(yp <= (372 - 78 - 58)); - - xp = 40; - - While(xp <= (516 - 40 - 136)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2006D); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 136; - End; - - yp += 9 + 78; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - -SET _curgok = 0x2006D CHUNK( 'GOKD', 0x2006D, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame1h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20126, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20126, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - -SET _curgok = 0x20127 CHUNK( 'GOKD', 0x20127, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2007C, 0x2007C); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - - -SET _curgok = 0x2007C CHUNK( 'GOKD', 0x2007C, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 303, 320); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 226, 330); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 40; - nFrame = 0; - - While(yp <= (372 - 78 - 58)); - - xp = 40; - - While(xp <= (516 - 40 - 136)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2007D); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 136; - End; - - yp += 9 + 78; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2007D CHUNK( 'GOKD', 0x2007D, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame2h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20127, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20127, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x20128 CHUNK( 'GOKD', 0x20128, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2003F, 0x2003F); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x2003F CHUNK( 'GOKD', 0x2003F, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 47 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 304, 322); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 322); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 228, 332); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 38; - nFrame = 0; - - While(yp <= (372 - 80 - 58)); - - xp = 30; - - While(xp <= (516 - 30 - 80)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2006E); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 80; - End; - - yp += 14 + 80; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2006E CHUNK( 'GOKD', 0x2006E, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame3h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20128, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20128, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x20129 CHUNK( 'GOKD', 0x20129, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20040, 0x20040); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - -SET _curgok = 0x20040 CHUNK( 'GOKD', 0x20040, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 47 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book4.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 304, 322); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 155, 322); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 228, 332); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 437, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - yp = 38; - nFrame = 0; - - While(yp <= (372 - 80 - 58)); - - xp = 30; - - While(xp <= (516 - 30 - 80)); - - - - - CreateChildThis(0x21120 + nFrame, 0x2007E); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - xp += 14 + 80; - End; - - yp += 14 + 80; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - Return(0); - End; - - End; -ENDCHUNK - - - - - -SET _curgok = 0x2007E CHUNK( 'GOKD', 0x2007E, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame4.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame4h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x20129, GidThis(), 0, 0, 0); - EnqueueCid(50016, 0x20129, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x2012A CHUNK( 'GOKD', 0x2012A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2001A, 0x2001A); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x2000563A); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - - - - -SET _curgok = 0x2001A CHUNK( 'GOKD', 0x2001A, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 204, 320); - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 54, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 123, 330); - - CreateChildThis(0x21012, 0x20059); - MoveAbsGob(0x21012, 431, 368); - - ChangeStateGob( 0x21012, 0x0002 ); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 381, 368); - - ChangeStateGob( 0x21013, 0x0002 ); - - CreateChildThis(0x20080, 0x20080); - ChangeStateGob(0x20080, 0x0002); - - CreateChildThis(0x21591, 0x21591); - ChangeStateGob(0x21591, 0x0002); - - CreateChildThis(0x21593, 0x21593); - ChangeStateGob(0x21593, 0x0002); - - xp = 15; - nFrame = 0; - - While(xp <= (516 - 206 - 138)); - - yp = 32; - - While(yp <= (372 - 25 - 57)); - - - - CreateChildThis(0x21120 + nFrame, 0x2007F); - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - yp += 3 + 25; - End; - - xp += 5 + 138; - End; - - - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If(((kid >= 0x21120) && (kid < 0x21200)) || - (kid == 0x21012) || - (kid == 0x21013) || - (kid == 0x21010) || - (kid == 0x21011)); - - Return(0); - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2007F CHUNK( 'GOKD', 0x2007F, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - EnqueueCid(50017, 0x2012A, GidThis(), 0, 0, 0); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x20080 CHUNK( 'GOKD', 0x20080, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 312 12 496 282 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x21591 CHUNK( 'GOKD', 0x21591, ) PACK SHORT BO OSK LONG 1 - LONG 0 447 290 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D2 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celbk.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celbks.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23016, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50092, 0x2012A, GidThis(), 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x21593 CHUNK( 'GOKD', 0x21593, ) PACK SHORT BO OSK LONG 1 - LONG 0 475 290 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D3 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celfw.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\b5celfws.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23015, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50092, 0x2012A, GidThis(), 0, 0, 0); -ENDCHUNK - - - - - - - - -SET _curgok = 0x2011D CHUNK( 'GOKD', 0x2011D, ) PACK SHORT BO OSK LONG 1 - LONG 0 132 48 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book9.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildGob(0x20002, 0x21594, 0x21594); - CreateChildThis(0x2011E, 0x2011E); - CreateChildThis(0x2011F, 0x2011F); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 298, 205); - ChangeStateGob( 0x21013, 0x0002 ); - - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - - - - - - - EnqueueCid( 50099, 0,0,0,0, 0 ); - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); - FilterCmdsThis(400001, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - Return(1); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If((kid == 0x2011E) || - (kid == 0x2011F)); - - Return(0); - - Elif (kid == 0x21013); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50015, 0, 0, 0, 0, 0); - DestroyGob(0x21594); - DestroyThis(); - Return(1); - End; - - End; -ENDCHUNK - -SET _curgok = 0x2011E CHUNK( 'GOKD', 0x2011E, ) PACK SHORT BO OSK LONG 1 - LONG 0 42 49 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22368 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6stor.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6stors.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50104, 20000 + 5, 0, 0, 0, 0); - EnqueueCid(50016, 0, 0, 0, 0, 0); - DestroyGob(0x21594); - DestroyGob(0x2011D); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2011F CHUNK( 'GOKD', 0x2011F, ) PACK SHORT BO OSK LONG 1 - LONG 0 197 48 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22369 -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr1.bmp" ENDCHUNK; -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr2.bmp" ENDCHUNK; -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr3.bmp" ENDCHUNK; -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000043 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr4.bmp" ENDCHUNK; -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cell = 0; - While(); - Cell(0x00000040 + cell, 0, 0, 60); - cell = cell+1; - If( cell==4 ); - cell = 0; - End; - - End; -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e6scr1s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50104, 20000 + 5, 1, 0, 0, 0); - EnqueueCid(50016, 0, 0, 0, 0, 0); - DestroyGob(0x21594); - DestroyGob(0x2011D); - PlaySoundGob(0x20002, 'WAVE', 0x23005, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x2012B CHUNK( 'GOKD', 0x2012B, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2012E, 0x2012E); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005636); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2012C CHUNK( 'GOKD', 0x2012C, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2012E, 0x2012E); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005639); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2012D CHUNK( 'GOKD', 0x2012D, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2012E, 0x2012E); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005638); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2012E CHUNK( 'GOKD', 0x2012E, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 48 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book6.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book7.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book8.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - - If (GidParThis() == 0x2012C); - Cell(0x00000040, 0, 0, 10); - Elif (GidParThis() == 0x2012B); - Cell(0x00000041, 0, 0, 10); - Else; - Cell(0x00000042, 0, 0, 10); - End; - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - CreateChildThis(0x21010, 0x2005A); - MoveAbsGob(0x21010, 303, 320); - - CreateChildThis(0x21011, 0x2005B); - MoveAbsGob(0x21011, 154, 320); - - CreateChildThis(0x21016, 0x20162); - MoveAbsGob(0x21016, 230, 331); - - CreateChildThis(0x21012, 0x20059); - MoveAbsGob(0x21012, 437, 368); - ChangeStateGob( 0x21012, 0x0002 ); - - CreateChildThis(0x21013, 0x20058); - MoveAbsGob(0x21013, 387, 368); - ChangeStateGob( 0x21013, 0x0002 ); - - CreateChildThis(0x21014, 0x21014); - MoveAbsGob(0x21014, 104, 368); - - - If (GidParThis() == 0x2012B); - ChangeStateGob(0x21014, 0x0001); - Elif (GidParThis() == 0x2012D); - ChangeStateGob(0x21014, 0x0002); - Elif (GidParThis() == 0x2012C); - ChangeStateGob(0x21014, 0x0003); - End; - - - If (GidParThis() != 0x2012C); - CreateChildThis(0x21015, 0x21015); - MoveAbsGob(0x21015, 54, 368); - End; - - - xp = 31; - nFrame = 0; - - - While(xp <= (516 - 31 - 138)); - - yp = 34; - - While(yp <= (372 - 25 - 50)); - - - - - - CreateChildThis(0x21120 + nFrame, 0x2013B); - - MoveAbsGob(0x21120 + nFrame, xp, yp); - nFrame++; - yp += 3 + 25; - End; - - xp += 20 + 138; - End; - - - - FilterCmdsThis(100007, 0, 0x0021); - FilterCmdsThis(100003, 0, 0x0022); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - vk = _parm[3]; - - - - - - - - - - - - - - - - If(!FGobExists(0x20159)); - If ((cid == 100003) && ((vk == 46) || (vk == 8))); - EnqueueCid(50096, GidParGob( 0x2012E ), GidThis(), 0, 0, 0); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - - - - If(cid == 100007); - - If((kid == GidThis()) || - (GidParGob(kid) == GidThis())); - - Return(0); - - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2013B CHUNK( 'GOKD', 0x2013B, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - - - EnqueueCid(50017, GidParGob( 0x2012E ), GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21015 CHUNK( 'GOKD', 0x21015, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\mike.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\mikes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304F, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - - If(GidParGob( 0x2012E) == 0x2012B); - EnqueueCid(50088, 0, 0, 0, 0, 0); - Elif(GidParGob( 0x2012E) == 0x2012D); - EnqueueCid(50088, 0, 1, 0, 0, 0); - End; - -ENDCHUNK - -SET _curgok = 0x21014 CHUNK( 'GOKD', 0x21014, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236B - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223E2 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223E3 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\sndport.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 48 ) "studio\bmp\sndports.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0004 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0004 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - EnqueueCid(50080, 0, 2, GidParGob( 0x2012E ), 0, 0); - - - FilterCmdsThis(50082, 0, 0x0021); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - FilterCmdsThis(50082, 0, 0xFFFFFFFF); - - - - If(_parm[2] == 1); - EnqueueCid(50075, GidParGob(0x2012E), GidThis(), 0, 0, 0); - - FilterCmdsThis(50074, 0, 0x0022); - End; - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - FilterCmdsThis(50074, 0, 0xFFFFFFFF); - - EnqueueCid(50018, 20000 + 5, _parm[2], 0x21301, 0x21004, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x2014B CHUNK( 'GOKD', 0x2014B, ) PACK SHORT BO OSK LONG 1 - - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2014C, 0x2014C); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - -SET _curgok = 0x2014C CHUNK( 'GOKD', 0x2014C, ) PACK SHORT BO OSK LONG 1 - LONG 0 62 48 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book6.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book7.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\book8.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23002, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - - If (GidParGob(0x2012E) == 0x2012C); - Cell(0x00000040, 0, 0, 10); - Elif (GidParGob(0x2012E) == 0x2012B); - Cell(0x00000041, 0, 0, 10); - Else; - Cell(0x00000042, 0, 0, 10); - End; - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - CreateChildThis(0x21004, 0x21004); - MoveAbsGob(0x21004, 303, 320); - CreateChildThis(0x21005, 0x21005); - MoveAbsGob(0x21005, 154, 320); - - CreateChildThis(0x21008, 0x21008); - MoveAbsGob(0x21008, 230, 331); - - CreateChildThis(0x21006, 0x20059); - MoveAbsGob(0x21006, 437, 368); - ChangeStateGob( 0x21006, 0x0002 ); - - CreateChildThis(0x21007, 0x20058); - MoveAbsGob(0x21007, 387, 368); - ChangeStateGob( 0x21007, 0x0002 ); - - - - xp = 31; - nFrame = 0; - - While(xp <= (516 - 31 - 138)); - - yp = 34; - - While(yp <= (372 - 25 - 50)); - - - - - - CreateChildThis(0x21301 + nFrame, 0x2014D); - - MoveAbsGob(0x21301 + nFrame, xp, yp); - nFrame++; - yp += 3 + 25; - End; - - xp += 20 + 138; - End; - - - - FilterCmdsThis(100007, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - kid = _parm[0]; - cid = _parm[1]; - - If(cid == 100007); - - If((kid == GidThis()) || - (GidParGob(kid) == GidThis())); - - Return(0); - - End; - - End; -ENDCHUNK - - - - -SET _curgok = 0x2014D CHUNK( 'GOKD', 0x2014D, ) PACK SHORT BO OSK LONG 5 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\frame5h.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ChangeStateThis(0x0004); - - EnqueueCid(50017, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - - - -SET _curgok = 0x21004 CHUNK( 'GOKD', 0x21004, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223C7 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fwdc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50013, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21005 CHUNK( 'GOKD', 0x21005, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223C8 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bback.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\bbackc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50014, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21007 CHUNK( 'GOKD', 0x21007, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\cancel.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\cancelc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50015, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21006 CHUNK( 'GOKD', 0x21006, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\okayc.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50016, 0x2014B, GidThis(), 0, 0, 0); -ENDCHUNK - - -SET _curgok = 0x21008 CHUNK( 'GOKD', 0x21008, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 64 29 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - - - -SET _curgok = 0x20096 CHUNK( 'GOKD', 0x20096, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 3 98 46 411 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x21001, 0x21001); - MoveAbsGob(0x21001, 0, 296); - CreateChildThis(0x21000, 0x21000); - MoveAbsGob(0x21000, 20, 296); - - - - yp = 0; - - - - CreateChildThis(0x20164, 0x20164); - MoveAbsGob(0x20164, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20165, 0x20165); - MoveAbsGob(0x20165, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20166, 0x20166); - MoveAbsGob(0x20166, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20167, 0x20167); - MoveAbsGob(0x20167, 0, yp); - -ENDCHUNK - - - -SET _curgok = 0x20164 CHUNK( 'GOKD', 0x20164, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236D - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact1e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact1s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - - If(!FGobExists(0x21100)); - CreateChildThis(0x21100, 0x21100); - MoveAbsGob(0x21100, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21100, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21100 CHUNK( 'GOKD', 0x21100, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20165 CHUNK( 'GOKD', 0x20165, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236E - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact2e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact2s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21101)); - CreateChildThis(0x21101, 0x21101); - MoveAbsGob(0x21101, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21101, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21101 CHUNK( 'GOKD', 0x21101, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20166 CHUNK( 'GOKD', 0x20166, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236F - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2236F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact3e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact3s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21102)); - CreateChildThis(0x21102, 0x21102); - MoveAbsGob(0x21102, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21102, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21102 CHUNK( 'GOKD', 0x21102, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20167 CHUNK( 'GOKD', 0x20167, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22370 - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22370 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact4.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact4e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcact4s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21103)); - CreateChildThis(0x21103, 0x21103); - MoveAbsGob(0x21103, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20096, 0x21103, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21103 CHUNK( 'GOKD', 0x21103, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 0xFFFFFFFF 0 0x22370 - LONG 0 0 0x00000010 0x00000001 0xFFFFFFFF 0 0x22370 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - - - -SET _curgok = 0x21001 CHUNK( 'GOKD', 0x21001, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcaup.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcaupc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcaupd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50014, 0x20096, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21000 CHUNK( 'GOKD', 0x21000, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcadwn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcadwnc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcadwnd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50013, 0x20096, GidThis(), 0, 0, 0); -ENDCHUNK - - - - - - - - -SET _curgok = 0x20097 CHUNK( 'GOKD', 0x20097, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 594 98 640 411 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - - CreateChildThis(0x21003, 0x21003); - MoveAbsGob(0x21003, 0, 296); - CreateChildThis(0x21002, 0x21002); - MoveAbsGob(0x21002, 20, 296); - - - - yp = 0; - - - - CreateChildThis(0x20168, 0x20168); - MoveAbsGob(0x20168, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x20169, 0x20169); - MoveAbsGob(0x20169, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x2016A, 0x2016A); - MoveAbsGob(0x2016A, 0, yp); - - yp += 0 + 74; - - CreateChildThis(0x2016B, 0x2016B); - MoveAbsGob(0x2016B, 0, yp); - -ENDCHUNK - - - -SET _curgok = 0x20168 CHUNK( 'GOKD', 0x20168, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238D - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp1e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp1s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21110)); - CreateChildThis(0x21110, 0x21110); - MoveAbsGob(0x21110, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21110, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21110 CHUNK( 'GOKD', 0x21110, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x20169 CHUNK( 'GOKD', 0x20169, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238E - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp2e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp2s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21111)); - CreateChildThis(0x21111, 0x21111); - MoveAbsGob(0x21111, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21111, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21111 CHUNK( 'GOKD', 0x21111, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x2016A CHUNK( 'GOKD', 0x2016A, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238F - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2238F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp3e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp3s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21112)); - CreateChildThis(0x21112, 0x21112); - MoveAbsGob(0x21112, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21112, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21112 CHUNK( 'GOKD', 0x21112, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _curgok = 0x2016B CHUNK( 'GOKD', 0x2016B, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 20 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22390 - LONG 0 0 0x00000010 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22390 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp4.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp4e.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcp4s.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - If(!FGobExists(0x21113)); - CreateChildThis(0x21113, 0x21113); - MoveAbsGob(0x21113, 2, 2); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50017, 0x20097, 0x21113, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21113 CHUNK( 'GOKD', 0x21113, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 30 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 0xFFFFFFFF 0 0x22390 - LONG 0 0 0x00000010 0x00000001 0xFFFFFFFF 0 0x22390 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 38 70 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(SET _st = 0x10000 SET _st |= 0x0000 _st, 0, 0, 10); - ChangeStateGob(GidParThis(), StateThis()); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) - - - -SET _curgok = 0x21003 CHUNK( 'GOKD', 0x21003, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223AE -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpup.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpupc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpupd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50014, 0x20097, GidThis(), 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x21002 CHUNK( 'GOKD', 0x21002, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0x00000002 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223AF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpdwn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpdwnc.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\rcpdwnd.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23006, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50013, 0x20097, GidThis(), 0, 0, 0); -ENDCHUNK -#line 83 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\easels.cht" - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20124 CHUNK( 'GOKD', 0x20124, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2009E, 0x2009E); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x2009E CHUNK( 'GOKD', 0x2009E, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 421 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 259, 364 ) "studio\bmp\e1par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x200A6, 0x200A6); - CreateChildThis(0x2009F, 0x2009F); - CreateChildThis(0x200A0, 0x200A0); - CreateChildThis(0x200A7, 0x200A7); - CreateChildThis(0x200A1, 0x200A1); - CreateChildThis(0x200A2, 0x200A2); - CreateChildThis(0x200A4, 0x200A4); - CreateChildThis(0x200A5, 0x200A5); - CreateChildThis(0x20121, 0x20121); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005633); - End; -ENDCHUNK - - - - - - -SET _curgok = 0x200A6 CHUNK( 'GOKD', 0x200A6, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 13 13 505 251 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x20121 CHUNK( 'GOKD', 0x20121, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 10 322 508 356 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x2009F CHUNK( 'GOKD', 0x2009F, ) PACK SHORT BO OSK LONG 1 - LONG 0 211 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1tran.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1trans.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23052, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50025, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200A0 CHUNK( 'GOKD', 0x200A0, ) PACK SHORT BO OSK LONG 1 - LONG 0 161 311 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1text.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1texts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50047, 0x20124, 0x20124, 0x21505, 0x21503, - (7 << 16) | 7); -ENDCHUNK - - - - -SET _curgok = 0x200A7 CHUNK( 'GOKD', 0x200A7, ) PACK SHORT BO OSK LONG 1 - LONG 0 61 311 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22352 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1font.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1fonts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50049, 0x20124, 0x20124, 0x21525, 0x21523, - (3 << 16) | 3); -ENDCHUNK - - - - -SET _curgok = 0x200A1 CHUNK( 'GOKD', 0x200A1, ) PACK SHORT BO OSK LONG 1 - LONG 0 111 311 10 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1shap.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1shaps.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50048, 0x20124, 0x21511, 0x21515, 0x21513, - (7 << 16) | 7); -ENDCHUNK - - - - -SET _curgok = 0x200A2 CHUNK( 'GOKD', 0x200A2, ) PACK SHORT BO OSK LONG 1 - LONG 0 284 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2234E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1rot.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1rots.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304E, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50026, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200A4 CHUNK( 'GOKD', 0x200A4, ) PACK SHORT BO OSK LONG 1 - LONG 0 407 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50027, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200A5 CHUNK( 'GOKD', 0x200A5, ) PACK SHORT BO OSK LONG 1 - LONG 0 457 311 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e1okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50028, 0x20124, 0, 0, 0, 0); -ENDCHUNK - - - - - - - -SET _curgok = 0x20125 CHUNK( 'GOKD', 0x20125, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x200A8, 0x200A8); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - - -SET _curgok = 0x200A8 CHUNK( 'GOKD', 0x200A8, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 445 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 218, 345 ) "studio\bmp\e2par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x200AE, 0x200AE); - CreateChildThis(0x200A9, 0x200A9); - CreateChildThis(0x200AA, 0x200AA); - CreateChildThis(0x200AB, 0x200AB); - CreateChildThis(0x200AC, 0x200AC); - CreateChildThis(0x200AD, 0x200AD); - CreateChildThis(0x20123, 0x20123); - ChangeStateGob(0x200A9, 0x0002); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005635); - End; -ENDCHUNK - - - - - -SET _curgok = 0x200AE CHUNK( 'GOKD', 0x200AE, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 10 9 426 239 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x20123 CHUNK( 'GOKD', 0x20123, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 8 315 427 339 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x200A9 CHUNK( 'GOKD', 0x200A9, ) PACK SHORT BO OSK LONG 1 - LONG 0 57 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22354 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2cost.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2costs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304C, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50077, 0x20125, 0, 0, 0, 0); - ChangeStateThis(0x0002); - ChangeStateGob(0x200AB, 0x0001); -ENDCHUNK - - - - -SET _curgok = 0x200AA CHUNK( 'GOKD', 0x200AA, ) PACK SHORT BO OSK LONG 1 - LONG 0 225 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22355 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2rot.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2rots.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304E, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50026, 0x20125, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200AB CHUNK( 'GOKD', 0x200AB, ) PACK SHORT BO OSK LONG 1 - LONG 0 141 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22356 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2acc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2accs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2304D, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50054, 0x20125, 0, 0, 0, 0); - ChangeStateThis(0x0002); - ChangeStateGob(0x200A9, 0x0001); -ENDCHUNK - - - - - -SET _curgok = 0x200AC CHUNK( 'GOKD', 0x200AC, ) PACK SHORT BO OSK LONG 1 - LONG 0 329 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50027, 0x20125, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200AD CHUNK( 'GOKD', 0x200AD, ) PACK SHORT BO OSK LONG 1 - LONG 0 379 302 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e2okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50028, 0x20125, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - - - - -#line 386 "H:\\BUILD\\SOC\\src\\studio\\easels.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x200AF CHUNK( 'GOKD', 0x200AF, ) PACK SHORT BO OSK LONG 1 - LONG 0 320 413 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 300, 348 ) "studio\bmp\e3par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildGob(0x20002, 0x21594, 0x21594 ); - CreateChildThis(0x200B2, 0x200B2); - CreateChildThis(0x200B3, 0x200B3); - CreateChildThis(0x200B1, 0x200B1); - CreateChildThis(0x20117, 0x20117); - CreateChildThis(0x200B6, 0x200B6); - CreateChildThis(0x200B5, 0x200B5); - CreateChildThis(0x200B4, 0x200B4); - CreateChildThis(0x2012F, 0x2012F); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005632); - End; - - .idSelected = 0x20000; - - yp = 12; - .nFrame = 0; - - .dxpFrame = 8 + 185; - .dypFrame = 15 + 126; - .dxpSSorter = 600 - 10 + 8 - 10; - .dypSSorter = 350 - 56 - 12; - .nxFrame = .dxpSSorter / .dxpFrame; - - While(yp <= (350 - 126 - 56)); - - xp = 10; - - While(xp <= (600 - 10 - 185)); - - - - - CreateChildThis(0x200D7 + (.nFrame * 7), 0x200D7); - MoveAbsGob(0x200D7 + (.nFrame * 7), xp, yp); - .nFrame++; - xp += 8 + 185; - End; - - yp += 15 + 126; - End; - - - - - .idSelFrame = 0x200D7 + (.nFrame * 7); - CreateChildThis(.idSelFrame, 0x200D7); - ChangeStateGob(.idSelFrame, 0x0003); - - - - EnqueueCid(50030, 0x200AF, 0x200D7, - 0x200B2, 7, 0); - - ChangeModifierState(0x10000, 0); - ChangeStateGob(0x200B6, 0x0002); - ChangeStateThis(0x0002); -ENDCHUNK - - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - idSelFrame = .idSelFrame; - If(GetModifierState() & 0x10000); - - xpFrameMax = .dxpSSorter - .dxpFrame + 10; - ypFrameMax = .dypSSorter - .dypFrame; - - dxpFrames = 8 + 185; - dypFrames = 15 + 126; - - dtimCur = 0; - - PlaySoundThis('WAVE', 0x2300A, 0, 0x10000, 1, 0, 1); - - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 10); - dtimCur += 10; - - xpMouse = XMouseThis(); - ypMouse = YMouseThis(); - - xpNew = xpMouse - .dxpTrack; - ypNew = ypMouse - .dypTrack; - - If(xpNew < 0); - xpNew = 0; - Elif(xpNew > xpFrameMax); - xpNew = xpFrameMax; - End; - If(ypNew < 0); - ypNew = 0; - Elif(ypNew > ypFrameMax); - ypNew = ypFrameMax; - End; - - If(dtimCur >= 60); - dtimCur = 0; - If(ypMouse < 0); - EnqueueCid(50033, 0x200AF, -1 * .nxFrame, 1, 0, 0); - Elif(ypMouse > .dypSSorter); - EnqueueCid(50033, 0x200AF, .nxFrame, 1, 0, 0); - End; - End; - MoveAbsGob(idSelFrame, xpNew, ypNew); - - If(xpNew < 10); - xpBar = 8 / 2; - Else; - xpBar = (8 / 2) + (dxpFrames * (1 + ((xpNew - 10 - 1) / dxpFrames))); - End; - - ypBar = (15 / 2) + (dypFrames * ((ypNew + (dypFrames / 2)) / dypFrames)); - - MoveAbsGob(0x2012F, xpBar, ypBar); - - - If(StateGob(0x2012F) == 0x0001); - ChangeStateGob(0x2012F, 0x0002); - End; - - End; - - ChangeStateGob(0x2012F, 0x0001); - - PlaySoundThis('WAVE', 0x2300B, 0, 0x10000, 1, 0, 1); - - - xpNew = XGob(idSelFrame); - ypNew = YGob(idSelFrame); - - If(xpNew < 10); - xFrame = 0; - Else; - xFrame = 1 + ((xpNew - 10 - 1) / dxpFrames); - End; - - yFrame = (ypNew + (dypFrames / 2)) / dypFrames; - - gidFrame = yFrame * .nxFrame + xFrame; - gidFrame = (gidFrame * 7) + 0x200D7; - - - EnqueueCid(50032, 0x200AF, gidFrame, 0, 0, 0); - - - EnqueueCid(50033, 0x200AF, 0, 0, 0, 0); - ChangeStateGob(.idSelFrame, 0x0003); - - ChangeStateThis(0x0002); - Else; - - End; -ENDCHUNK - - - - -SET _curgok = 0x200B2 CHUNK( 'GOKD', 0x200B2, ) PACK SHORT BO OSK LONG 1 - LONG 0 597 21 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st 0 0x2235F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3up.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3upc.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - lwDelay = 30; - cgokScroll = GidParThis()->nxFrame * -1; - - - PlaySoundThis('WAVE', 0x23047, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - - - While(); - ; - If(lwDelay > lwSSorterDelayMin); - lwDelay -= 5; - End; - PlaySoundThis('WAVE', 0x23047, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x200B3 CHUNK( 'GOKD', 0x200B3, ) PACK SHORT BO OSK LONG 1 - LONG 0 597 292 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st 0 0x22360 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3down.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 17, 19 ) "studio\bmp\e3downc.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - - lwDelay = 30; - cgokScroll = GidParThis()->nxFrame; - - - PlaySoundThis('WAVE', 0x23048, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st, 0, 0, lwDelay); - - - While(); - ; - If(lwDelay > lwSSorterDelayMin); - lwDelay -= 5; - End; - PlaySoundThis('WAVE', 0x23048, 0, 0x10000, 1, 0, 1); - EnqueueCid(50033, 0x200AF, cgokScroll, 0, 0, 0); - Cell(0xFFFFFFFF, 0, 0, lwDelay); - End; -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x2012F CHUNK( 'GOKD', 0x2012F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\ssbar.bmp" ENDCHUNK - - - - -SET _curgok = 0x200B1 CHUNK( 'GOKD', 0x200B1, ) PACK SHORT BO OSK LONG 1 - LONG 0 160 298 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22365 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3port.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3portc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50037, 0x200AF, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x200B5 CHUNK( 'GOKD', 0x200B5, ) PACK SHORT BO OSK LONG 1 - LONG 0 540 344 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 50035 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50035, 0x200AF, 0, 0, 0, 0); - OldState = GetModifierState(); - OldState &= (0x10000 | 0x20000); - ChangeModifierState(0, OldState); -ENDCHUNK - - - - -SET _curgok = 0x200B4 CHUNK( 'GOKD', 0x200B4, ) PACK SHORT BO OSK LONG 1 - LONG 0 490 344 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 50036 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 46 ) "studio\bmp\e3canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50036, 0x200AF, 0, 0, 0, 0); - OldState = GetModifierState(); - OldState &= (0x10000 | 0x20000); - ChangeModifierState(0, OldState); -ENDCHUNK - - - - -SET _curgok = 0x20117 CHUNK( 'GOKD', 0x20117, ) PACK SHORT BO OSK LONG 1 - LONG 0 105 298 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22364 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3rmsn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3rmsnc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - OldState = GetModifierState(); - OldState &= 0x10000; - - - - - - If(OldState & 0x10000); - ChangeStateGob(0x200B6, 0x0001); - End; - ChangeModifierState(0x20000, OldState); - ChangeStateThis(0x0002); -ENDCHUNK - - - - -SET _curgok = 0x200B6 CHUNK( 'GOKD', 0x200B6, ) PACK SHORT BO OSK LONG 1 - LONG 0 50 298 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22363 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3hand.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\e3handc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - OldState = GetModifierState(); - OldState &= 0x20000; - - - - - - If(OldState & 0x20000); - ChangeStateGob(0x20117, 0x0001); - End; - ChangeModifierState(0x10000, OldState); - ChangeStateThis(0x0002); -ENDCHUNK - - - - -SET _curgok = 0x200D7 CHUNK( 'GOKD', 0x200D7, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0x10000 0x10000 0xffffffff 0x00000001 0xFFFFFFFF 0 0x2235A - LONG 0x20000 0x20000 0xffffffff 117 0xFFFFFFFF 0 0x2235A -ENDCHUNK - - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3frm.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3frms.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3frms.bmp" ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(GidThis() + 1, 0x20118); - CreateChildThis(GidThis() + 2, 0x20119); - CreateChildThis(GidThis() + 3, 0x2011A); - CreateChildThis(GidThis() + 4, 0x2011B); - CreateChildThis(GidThis() + 5, 0x2011C); - ChangeStateThis(0x0003); -ENDCHUNK - - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - If(StateGob(GidParThis()->idSelFrame) == 0x0003); - EnqueueCid(50031, 0x200AF, GidThis(), 0, 0, 0); - End; -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0017 _st ) SCRIPT - If(GetModifierState() & 0x10000); - idSelFrame = GidParThis()->idSelFrame; - If(StateGob(idSelFrame) == 0x0003); - EnqueueCid(50033, 0x200AF, 0, 1, 0, 0); - End; - End; -ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - gidParent = GidParThis(); - idSelFrame = gidParent->idSelFrame; - If(StateGob(idSelFrame) == 0x0003); - xpThis = XThis(); - ypThis = YThis(); - If(StateGob(idSelFrame) != 0x0005); - MoveAbsGob(idSelFrame, xpThis, ypThis); - ChangeStateGob(idSelFrame, 0x0005); - End; - - gidParent->dxpTrack = XMouseGob(gidParent) - xpThis; - gidParent->dypTrack = YMouseGob(gidParent) - ypThis; - - ChangeStateGob(gidParent, 0x0005); - End; -ENDCHUNK - - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - If(GetModifierState() & 0x20000); - PlaySoundGob(0x200AF, 'WAVE', 0x2304B, 0, 0x10000, 1, 0, 1); - EnqueueCid(50034, 0x200AF, 0, 0, 0, 0); - End; -ENDCHUNK - - - - - -SET _curgok = 0x2011C CHUNK( 'GOKD', 0x2011C, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 8 12 151 92 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x20118 CHUNK( 'GOKD', 0x20118, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 11 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn1s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20119 CHUNK( 'GOKD', 0x20119, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 33 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235C -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn2.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn2s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 2, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2011A CHUNK( 'GOKD', 0x2011A, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 55 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn3s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 3, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2011B CHUNK( 'GOKD', 0x2011B, ) PACK SHORT BO OSK LONG 1 - LONG 0 156 77 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2235E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn4.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e3trn4s.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50038, 0x200AF, GidParThis(), 4, 0, 0); -ENDCHUNK - - - - - - - - - -SET _curgok = 0x2013A CHUNK( 'GOKD', 0x2013A, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20137, 0x20137); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x2014F CHUNK( 'GOKD', 0x2014F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2014E, 0x2014E); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20137 CHUNK( 'GOKD', 0x20137, ) PACK SHORT BO OSK LONG 1 - LONG 0 182 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4parmm.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x2013C, 0x2013C); - CreateChildThis(0x2013D, 0x2013D); - CreateChildThis(0x2013E, 0x2013E); - CreateChildThis(0x2013F, 0x2013F); - - - CreateChildThis(0x20146, 0x20146); - MoveAbsGob(0x20146, 240, 143); - CreateChildThis(0x20147, 0x20147); - MoveAbsGob(0x20147, 109, 143); - CreateChildThis(0x20148, 0x20148); - MoveAbsGob(0x20148, 240, 143); - CreateChildThis(0x20149, 0x20149); - MoveAbsGob(0x20149, 109, 143); - - - CreateChildThis(0x20141, 0x20141); - MoveAbsGob(0x20141, 141, 150 ); - CreateChildThis(0x20142, 0x20142); - MoveAbsGob(0x20142, 10, 150 ); - CreateChildThis(0x20143, 0x20143); - MoveAbsGob(0x20143, 141, 150 ); - CreateChildThis(0x20144, 0x20144); - MoveAbsGob(0x20144, 10, 150 ); - - - CreateChildThis(0x20151, 0x20151); - MoveAbsGob(0x20151, 144, 117); - CreateChildThis(0x20152, 0x20152); - MoveAbsGob(0x20152, 144, 117); - CreateChildThis(0x20153, 0x20153); - MoveAbsGob(0x20153, 13, 117); - CreateChildThis(0x20154, 0x20154); - MoveAbsGob(0x20154, 12, 117); - - - - CreateChildThis(0x20138, 0x20138); - MoveAbsGob(0x20138, 173, 233 ); - CreateChildThis(0x20139, 0x20139); - MoveAbsGob(0x20139, 223, 233 ); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005634); - End; -ENDCHUNK - - - - -SET _curgok = 0x2014E CHUNK( 'GOKD', 0x2014E, ) PACK SHORT BO OSK LONG 1 - LONG 0 116 100 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x2013C, 0x2013C); - CreateChildThis(0x2013D, 0x2013D); - CreateChildThis(0x20140, 0x20140); - - - CreateChildThis(0x20146, 0x20146); - MoveAbsGob(0x20146, 243, 144); - CreateChildThis(0x20147, 0x20147); - MoveAbsGob(0x20147, 112, 144); - CreateChildThis(0x2014A, 0x2014A); - MoveAbsGob(0x2014A, 374, 144); - - - CreateChildThis(0x20141, 0x20141); - CreateChildThis(0x20142, 0x20142); - CreateChildThis(0x20145, 0x20145); - - - CreateChildThis(0x20151, 0x20151); - MoveAbsGob(0x20151, 144, 117); - CreateChildThis(0x20153, 0x20153); - MoveAbsGob(0x20153, 13, 117); - CreateChildThis(0x20150, 0x20150); - MoveAbsGob(0x20150, 275, 117); - - CreateChildThis(0x20138, 0x20138); - CreateChildThis(0x20139, 0x20139); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005634); - End; -ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x2013C CHUNK( 'GOKD', 0x2013C, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 201 20 251 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); - - FilterCmdsThis(50073, 0, 0x0021); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - - - - kid = _parm[0]; - - If(kid == 0x2013C); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016C; - kidAudition = 0x20141; - kidNuke = 0x20146; - - Elif(kid == 0x2013D); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016D; - kidAudition = 0x20142; - kidNuke = 0x20147; - - Elif(kid == 0x20140); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016E; - kidAudition = 0x20145; - kidNuke = 0x2014A; - - Elif(kid == 0x2013E); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x2016F; - kidAudition = 0x20143; - kidNuke = 0x20148; - - Elif(kid == 0x2013F); - - yMax = 108; - yMin = 0; - yNuke = 100; - - kidThumb = 0x20170; - kidAudition = 0x20144; - kidNuke = 0x20149; - End; - - ChangeStateGob(kid, 0x0003); - - ChangeStateGob(kidAudition, 0x0003); - ChangeStateGob(kidNuke, 0x0003); - - - If(!FGobExists(kidThumb)); - CreateChildGob(kid, kidThumb, kidThumb); - End; - - FullDisplay = yNuke - yMin; - NewDisplay = (_parm[2] * FullDisplay) / 0x00010000; - yPos = yNuke - NewDisplay; - - MoveAbsGob(kidThumb, 5, yPos); - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016C, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013C, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20141, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) - -SET _curgok = 0x2016C CHUNK( 'GOKD', 0x2016C, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x2013D CHUNK( 'GOKD', 0x2013D, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 70 20 120 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016D, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013D, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20142, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x2016D CHUNK( 'GOKD', 0x2016D, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x20140 CHUNK( 'GOKD', 0x20140, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 332 20 382 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016E, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x20140, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20145, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x2016E CHUNK( 'GOKD', 0x2016E, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x2013E CHUNK( 'GOKD', 0x2013E, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 201 20 251 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x2016F, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013E, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20143, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x2016F CHUNK( 'GOKD', 0x2016F, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - -SET _curgok = 0x2013F CHUNK( 'GOKD', 0x2013F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 70 20 120 138 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) SCRIPT - While(GetModifierState() & 8); - Cell(0xFFFFFFFF, 0, 0, 4); - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - MoveAbsGob(0x20170, 5, yPos); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x001D _st ) SCRIPT - - yPos = YMouseThis(); If(yPos > 108); yPos = 108; Elif(yPos < 0); yPos = 0; End;; - - FullDisplay = 100 - 0 + 1; - NewDisplay = 100 - yPos + 1; - - If(NewDisplay < 0); - NewVolume = -1; - Else; - NewVolume = (0x00010000 * NewDisplay) / FullDisplay; - End; - - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013F, NewVolume, 0, 0); - EnqueueCid(50072, GidParGob(GidParThis()), 0x20144, 1, 0, 0); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0018 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0002); -ENDCHUNK - -SET _curgok = 0x20170 CHUNK( 'GOKD', 0x20170, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 10 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4vol1.bmp" ENDCHUNK - - - - -SET _curgok = 0x20146 CHUNK( 'GOKD', 0x20146, ) PACK SHORT BO OSK LONG 1 - LONG 0 243 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016C, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013C, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20147 CHUNK( 'GOKD', 0x20147, ) PACK SHORT BO OSK LONG 1 - LONG 0 112 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016D, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013D, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2014A CHUNK( 'GOKD', 0x2014A, ) PACK SHORT BO OSK LONG 1 - LONG 0 374 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016E, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x20140, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20148 CHUNK( 'GOKD', 0x20148, ) PACK SHORT BO OSK LONG 1 - LONG 0 243 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x2016F, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013E, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20149 CHUNK( 'GOKD', 0x20149, ) PACK SHORT BO OSK LONG 1 - LONG 0 112 144 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223BB -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nuke.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 11, 20 ) "studio\bmp\e4nukec.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - MoveAbsGob(0x20170, 5, 108); - EnqueueCid(50071, GidParGob(GidParThis()), 0x2013F, -1, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20141 CHUNK( 'GOKD', 0x20141, ) PACK SHORT BO OSK LONG 4 - LONG 0 143 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C2 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK - -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - - EnqueueCid(50072, GidParGob(GidParThis()), 0x20141, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - EnqueueCid(50072, GidParGob(GidParThis()), 0x20141, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20142 CHUNK( 'GOKD', 0x20142, ) PACK SHORT BO OSK LONG 4 - LONG 0 12 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C3 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20142, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20142, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20145 CHUNK( 'GOKD', 0x20145, ) PACK SHORT BO OSK LONG 4 - LONG 0 274 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C6 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20145, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20145, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20143 CHUNK( 'GOKD', 0x20143, ) PACK SHORT BO OSK LONG 4 - LONG 0 143 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C4 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20143, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20143, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - -SET _curgok = 0x20144 CHUNK( 'GOKD', 0x20144, ) PACK SHORT BO OSK LONG 4 - LONG 0 12 150 10 - LONG 0 0 0xffffffff 0x00000001 0 0 0x223C5 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4auditc.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4audit.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20144, 1, 0, 0); - Cell(0x00000040, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - EnqueueCid(50072, GidParGob(GidParThis()), 0x20144, 0, 0, 0); - Cell(0x00000041, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20138 CHUNK( 'GOKD', 0x20138, ) PACK SHORT BO OSK LONG 1 - LONG 0 304 233 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D6 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50027, GidParGob(GidParThis()), 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20139 CHUNK( 'GOKD', 0x20139, ) PACK SHORT BO OSK LONG 1 - LONG 0 354 233 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223D5 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 24, 50 ) "studio\bmp\e4okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50028, GidParGob(GidParThis()), 0, 0, 0, 0); -ENDCHUNK - - - - - - - -SET _curgok = 0x20150 CHUNK( 'GOKD', 0x20150, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20151 CHUNK( 'GOKD', 0x20151, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20153 CHUNK( 'GOKD', 0x20153, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20152 CHUNK( 'GOKD', 0x20152, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - -SET _curgok = 0x20154 CHUNK( 'GOKD', 0x20154, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4loop.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4queue.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4mm.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e4snd.bmp" ENDCHUNK - - - - - - - - - -SET _curgok = 0x20158 CHUNK( 'GOKD', 0x20158, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff BYTE 73 0 0 0xfe LONG - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20159, 0x20159); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - PlaySoundGob(0x20002, 'WAVE', 0x00010010, 0, 0x10000, 1, 0, 1); -ENDCHUNK - - - - -SET _curgok = 0x20159 CHUNK( 'GOKD', 0x20159, ) PACK SHORT BO OSK LONG 1 - LONG 0 202 154 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\e5par.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x2015A, 0x2015A); - - - CreateChildThis(0x2015B, 0x2015B); - - - - CreateChildThis(0x2015C, 0x2015C); - CreateChildThis(0x2015D, 0x2015D); - CreateChildThis(0x2015E, 0x2015E); - CreateChildThis(0x2015F, 0x2015F); - - If (!::fHelpOn); - CreateHelpGob(0x20002, 0x20005637); - End; -ENDCHUNK - - - - -SET _curgok = 0x2015A CHUNK( 'GOKD', 0x2015A, ) PACK SHORT BO OSK LONG 4 - LONG 0 0 0 10 - LONG 0 0 0xffffffff 0x00000002 0 0 0x223CB -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 22 30 214 51 LONG BYTE 11 0 0 0xfe LONG 0xffffffff - BYTE 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - FilterCmdsThis(50089, 0, 0x0021); - -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - - - MaxWidth = 214 - 22 + 1; - NewWidth = (MaxWidth * _parm[2]) / 100; - - ResizeThis( NewWidth, 51 - 30 + 1 ); - -ENDCHUNK - - - - -SET _curgok = 0x2015B CHUNK( 'GOKD', 0x2015B, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 123 75 232 95 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x2015C CHUNK( 'GOKD', 0x2015C, ) PACK SHORT BO OSK LONG 1 - LONG 0 36 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223CD -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5mike.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5mikes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50076, 0x20158, 0, 0, 0, 0); - - - ChangeStateGob(0x2015D, 0x0001); - ChangeStateGob(0x2015C, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2015D CHUNK( 'GOKD', 0x2015D, ) PACK SHORT BO OSK LONG 1 - LONG 0 88 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x223CE -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5play.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5plays.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23050, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23050, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50072, 0x20158, 0, 0, 0, 0); - - - ChangeStateGob(0x2015C, 0x0001); - ChangeStateGob(0x2015D, 0x0002); -ENDCHUNK - - - - -SET _curgok = 0x2015E CHUNK( 'GOKD', 0x2015E, ) PACK SHORT BO OSK LONG 1 - LONG 0 152 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2000563E -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5can.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5canc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50027, 0x20158, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x2015F CHUNK( 'GOKD', 0x2015F, ) PACK SHORT BO OSK LONG 1 - LONG 0 202 165 10 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2000563F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5okay.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 25, 50 ) "studio\bmp\e5okayc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23040, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50028, 0x20158, 0, 0, 0, 0); -ENDCHUNK - -#line 84 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\stdioscb.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 37 "H:\\BUILD\\SOC\\src\\studio\\stdioscb.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x20083 CHUNK( 'GOKD', 0x20083, ) PACK SHORT BO OSK LONG 4 LONG 0 2 2 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fttl.bmp" ENDCHUNK -SET _curgok = 0x20084 CHUNK( 'GOKD', 0x20084, ) PACK SHORT BO OSK LONG 4 LONG 0 55 2 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\ftxt.bmp" ENDCHUNK - - -SET _curgok = 0x20085 CHUNK( 'GOKD', 0x20085, ) PACK SHORT BO OSK LONG 1 LONG 0 251 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DA ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffws.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50045, 0, 22, GetModifierState(), 0, 0); lwDelay = 60; CellNoPause(0x00000040, 0, 0, 0); While(); EnqueueCid(50021, 0, 22, 0, 0, 0); Cell(0xFFFFFFFF, 0, 0, lwDelay); SetNoSlipThis(1); If(lwDelay > 10); lwDelay -= 25; End; End; ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001E _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK - - -SET _curgok = 0x20086 CHUNK( 'GOKD', 0x20086, ) PACK SHORT BO OSK LONG 1 LONG 0 273 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DB ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\ffwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50021, 0, 23, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2302D, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - -SET _curgok = 0x20087 CHUNK( 'GOKD', 0x20087, ) PACK SHORT BO OSK LONG 1 LONG 0 141 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223D9 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frws.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50045, 0, 24, GetModifierState(), 0, 0); lwDelay = 60; CellNoPause(0x00000040, 0, 0, 0); While(); EnqueueCid(50021, 0, 24, 0, 0, 0); Cell(0xFFFFFFFF, 0, 0, lwDelay); SetNoSlipThis(1); If(lwDelay > 10); lwDelay -= 25; End; End; ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001E _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - SetNoSlipThis(0); - SetRepThis(SET _st = 0x10000 SET _st |= 0x0000 _st); -ENDCHUNK - - -SET _curgok = 0x20088 CHUNK( 'GOKD', 0x20088, ) PACK SHORT BO OSK LONG 1 LONG 0 119 4 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223D8 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\frwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50021, 0, 25, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23029, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - - -SET _curgok = 0x20089 CHUNK( 'GOKD', 0x20089, ) PACK SHORT BO OSK LONG 1 LONG 0 151 0 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223E1 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fscl.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT cxThumbTab = WidthGob(0x2008A); If((XMouseThis() - cxThumbTab) < 0); EnqueueCid(50021, 0, 26, 0, 1, 0); Else; EnqueueCid(50021, 0, 26, XMouseThis() - cxThumbTab, 1, 0); End; ENDCHUNK - - - -SET _curgok = 0x2008A CHUNK( 'GOKD', 0x2008A, ) PACK SHORT BO OSK LONG 1 LONG 0 0 2 11 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x001D _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0018 _st 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fthm.bmp" ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fthms.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT xpSav = XThis(); ypSav = YThis(); If(0); .click = ypSav; cyScrollbar = HeightGob(0x20089); cyThumbTab = HeightThis(); ypMax = cyScrollbar - cyThumbTab; Else; .click = xpSav; cxScrollbar = WidthGob(0x20089); cxThumbTab = WidthThis(); xpMax = cxScrollbar - cxThumbTab; End; .fSnap = 0; While(); If(0); dxp = XMouseThis(); dyp = YMouseThis() - (cyThumbTab / 2); yp = YThis(); If(Abs(dxp - xpSav) > 32 || yp + dyp < -32 || yp + dyp > ypMax + 32); .fSnap = 1; dyp = ypSav - yp; Else; .fSnap = 0; If(yp + dyp < 0); dyp = -yp; End; If(yp + dyp > ypMax); dyp = ypMax - yp; End; End; Cell(0xFFFFFFFF, 0, dyp, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = yp + dyp; Else; dxp = XMouseThis() - (cxThumbTab / 2); dyp = YMouseThis(); xp = XThis(); If(Abs(dyp - ypSav) > 32 || xp + dxp < -32 || xp + dxp > xpMax + 32); .fSnap = 1; dxp = xpSav - xp; Else; .fSnap = 0; If(xp + dxp < 0); dxp = -xp; End; If(xp + dxp > xpMax); dxp = xpMax - xp; End; End; Cell(0xFFFFFFFF, dxp, 0, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = xp + dxp; End; If(1); EnqueueCid(50112, 0, 27, .click, 0, 0); End; End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT If(.fSnap == 0); EnqueueCid(50112, 0, 27, .click, 1, 0); End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0018 _st ) - - - - - - - - -SET _curgok = 0x2008C CHUNK( 'GOKD', 0x2008C, ) PACK SHORT BO OSK LONG 4 LONG 0 2 3 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\sttl.bmp" ENDCHUNK - -SET _curgok = 0x2008D CHUNK( 'GOKD', 0x2008D, ) PACK SHORT BO OSK LONG 4 LONG 0 55 2 10 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\stxt.bmp" ENDCHUNK - - -SET _curgok = 0x2008E CHUNK( 'GOKD', 0x2008E, ) PACK SHORT BO OSK LONG 1 LONG 0 251 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DE ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfws.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 30, GetModifierState(), 0, 0); ENDCHUNK - -SET _curgok = 0x2008F CHUNK( 'GOKD', 0x2008F, ) PACK SHORT BO OSK LONG 1 LONG 0 273 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\sfwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 23, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23031, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - -SET _curgok = 0x20090 CHUNK( 'GOKD', 0x20090, ) PACK SHORT BO OSK LONG 1 LONG 0 141 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DD ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srw.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srws.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 31, GetModifierState(), 0, 0); ENDCHUNK - -SET _curgok = 0x20091 CHUNK( 'GOKD', 0x20091, ) PACK SHORT BO OSK LONG 1 LONG 0 119 6 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223DC ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srwe.bmp" ENDCHUNK ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 11, 0 ) "studio\bmp\srwes.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT EnqueueCid(50022, 0, 25, GetModifierState(), 0, 0); ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2302E, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) - - -SET _curgok = 0x20092 CHUNK( 'GOKD', 0x20092, ) PACK SHORT BO OSK LONG 1 LONG 0 151 1 10 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0x223E0 ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\sscl.bmp" ENDCHUNK SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT cxThumbTab = WidthGob(0x20093); If((XMouseThis() - cxThumbTab) < 0); EnqueueCid(50022, 0, 26, 0, 1, 0); Else; EnqueueCid(50022, 0, 26, XMouseThis() - cxThumbTab, 1, 0); End; ENDCHUNK - - - -SET _curgok = 0x20093 CHUNK( 'GOKD', 0x20093, ) PACK SHORT BO OSK LONG 1 LONG 0 0 2 11 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0003 _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x001D _st 0 0xFFFFFFFF LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0018 _st 0 0xFFFFFFFF ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\stmb.bmp" ENDCHUNK SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\stmb.bmp" ENDCHUNK SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT xpSav = XThis(); ypSav = YThis(); If(0); .click = ypSav; cyScrollbar = HeightGob(0x20092); cyThumbTab = HeightThis(); ypMax = cyScrollbar - cyThumbTab; Else; .click = xpSav; cxScrollbar = WidthGob(0x20092); cxThumbTab = WidthThis(); xpMax = cxScrollbar - cxThumbTab; End; .fSnap = 0; While(); If(0); dxp = XMouseThis(); dyp = YMouseThis() - (cyThumbTab / 2); yp = YThis(); If(Abs(dxp - xpSav) > 32 || yp + dyp < -32 || yp + dyp > ypMax + 32); .fSnap = 1; dyp = ypSav - yp; Else; .fSnap = 0; If(yp + dyp < 0); dyp = -yp; End; If(yp + dyp > ypMax); dyp = ypMax - yp; End; End; Cell(0xFFFFFFFF, 0, dyp, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = yp + dyp; Else; dxp = XMouseThis() - (cxThumbTab / 2); dyp = YMouseThis(); xp = XThis(); If(Abs(dyp - ypSav) > 32 || xp + dxp < -32 || xp + dxp > xpMax + 32); .fSnap = 1; dxp = xpSav - xp; Else; .fSnap = 0; If(xp + dxp < 0); dxp = -xp; End; If(xp + dxp > xpMax); dxp = xpMax - xp; End; End; Cell(0xFFFFFFFF, dxp, 0, 0); Cell(0xFFFFFFFF, 0, 0, 0); .click = xp + dxp; End; If(1); EnqueueCid(50113, 0, 27, .click, 0, 0); End; End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT If(.fSnap == 0); EnqueueCid(50113, 0, 27, .click, 1, 0); End; ENDCHUNK ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0018 _st ) - -#line 85 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - -#line 1 "H:\\BUILD\\SOC\\src\\studio\\helpres.cht" - - - - -#line 1 "H:\\BUILD\\SOC\\inc\\kidgs.chh" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 6 "H:\\BUILD\\SOC\\src\\studio\\helpres.cht" -#line 1 "H:\\BUILD\\SOC\\inc\\helpres.h" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -#line 7 "H:\\BUILD\\SOC\\src\\studio\\helpres.cht" - - - -CHUNK( 'MBMP', 0x202B0, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B1, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B2, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B3, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1020.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B4, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1020d.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B5, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1020r.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B6, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\okbtn1.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B7, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\okbtn2.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B8, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\okbtn3.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202B9, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202BA, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202BB, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK - - - - - - - - - - - - - - - - - -CHUNK( 'MBMP', 0x202A3, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpcutwbx.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202A1, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hphndcur.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202A2, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpwbcur.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hplcanc.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hplok.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpscrl.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202A0, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpnscrl.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20286, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpvolctl.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20287, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpffw.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20288, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpffwe.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20289, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfrw.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfrwe.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpnuke.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpsndrec.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpsndply.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpcstchg.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2028F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpscnsld.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20290, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfrmsld.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20291, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn1.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20292, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn2.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20293, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn3.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20294, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpe3trn4.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20295, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpsndmic.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20296, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpptopen.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20297, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpptsvas.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20298, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccpreb.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x20299, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccprea.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccpres.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccprob.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x2029C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpaction.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20285, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1back.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20014, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1view.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20015, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2arrw.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20016, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2bio.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20017, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2comp.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20018, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2cost.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20019, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5norm.bmp" ENDCHUNK - - - - - - -CHUNK( 'MBMP', 0x2001B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2recd.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5rotx.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5roty.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5rotz.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2001F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2soon.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20020, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp4sqsh.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20021, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp4shrk.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20022, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2xy.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20023, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2xys.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20024, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2zero.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x20026, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3sing.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20027, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3ear.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x20029, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3loop.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3rpt.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x2002C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4back.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4bold.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4colr.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2002F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4font.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20030, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4ins.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20031, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp7scrl.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20032, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4size.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20033, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp7nscr.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20034, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpbook.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20035, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpmap.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20036, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpccp.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20037, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpundo.bmp" ENDCHUNK - - - -CHUNK( 'MBMP', 0x20039, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpplay.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20284, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpplays.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2003A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1scen.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2003C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpport.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2003D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpexit.bmp" ENDCHUNK - - - - - - - - - - - - -CHUNK( 'MBMP', 0x20046, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4new.bmp" ENDCHUNK - - - - - -CHUNK( 'MBMP', 0x20049, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp1new.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp1save.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004C, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1mous.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1nops.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2004E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp1note.bmp" ENDCHUNK - - - - - - - - - -CHUNK( 'MBMP', 0x20053, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3cppt.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20054, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3past.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20055, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3copy.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20056, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3cut.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20058, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpcancel.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20059, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpokay.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2005A, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpfwd.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2005B, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpbback.bmp" ENDCHUNK - - - - - - - - - - - - - - - - - - -CHUNK( 'MBMP', 0x20167, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2cont.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20168, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2rot.bmp" ENDCHUNK - - -CHUNK( 'MBMP', 0x20169, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2tran.bmp" ENDCHUNK - - - - - - - -CHUNK( 'MBMP', 0x2016D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp4scrl.bmp" ENDCHUNK - - - - - -CHUNK( 'MBMP', 0x20270, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp5norm.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20271, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp4norm.bmp" ENDCHUNK - - - - - - - - - - - - -CHUNK( 'MBMP', 0x2027D, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2actr.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2027E, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2prop.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x2027F, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp2splt.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20281, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3horn.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20282, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3mike.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x20283, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hp3note.bmp" ENDCHUNK - -CHUNK( 'MBMP', 0x202BC, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpredo.bmp" ENDCHUNK -CHUNK( 'MBMP', 0x202BD, ) PACK BITMAP( 0, 0, 0 ) "studio\bmp\hpp3rmsd.bmp" ENDCHUNK - -#line 87 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\helpctrl.cht" -CHUNK( 'GLCR', 0x00001004, ) PACK PALETTE "studio\bmp\socpal2.bmp" ENDCHUNK - - - - -SET _curgok = 0x00016100 CHUNK( 'GOKD', 0x00016100, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\squishy1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\squishy2.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\squishy3.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\sqshbtn.wav" ENDCHUNK - - -SET _curgok = 0x00016103 CHUNK( 'GOKD', 0x00016103, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\okbtn1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\okbtn3.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\okbtn2.bmp" ENDCHUNK -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\ok.wav" ENDCHUNK - - - -SET _curgok = 0x00016104 CHUNK( 'GOKD', 0x00016104, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\gemtip.wav" ENDCHUNK - - -SET _curgok = 0x00016102 CHUNK( 'GOKD', 0x00016102, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016d.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1016r.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\gemtip.wav" ENDCHUNK - - -SET _curgok = 0x00016101 CHUNK( 'GOKD', 0x00016101, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1020.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1020d.bmp" ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pic1020r.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\ok.wav" ENDCHUNK - - -SET _curgok = 0x00016105 CHUNK( 'GOKD', 0x00016105, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 1 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\cancbtn1.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 10, 10 ) "studio\bmp\cancbtn3.bmp" ENDCHUNK - - - - - - -#line 88 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\helpbook.cht" - - - - - - - - - - - -CHUNK( 'WAVE', 0x00001010, ) FILE "studio\sound\next.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00001011, ) FILE "studio\sound\next.wav" ENDCHUNK -CHUNK( 'WAVE', 0x00001012, ) FILE "studio\sound\back.wav" ENDCHUNK - - - - - - -SET _curgok = 0x00003002 CHUNK( 'GOKD', 0x00003002, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 100 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - .last = 0; - .lasthow = 0; - .hsshow = 0; - - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - - - - - - FilterCmdsThis(100003, 0, 0x0029); - - - CreateChildThis( 0x00003003, 0x00003003 ); - CreateChildThis( 0x00003005, 0x00003005 ); - CreateChildThis( 0x00003016, 0x00003016 ); - - - - RunScriptThis(0x0024, ::HBSection, ::HBtpcCur[::HBSection ] ); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - If( _parm[0] != 1 ); - tpc = ::HBtpcEnd[ _parm[0]-1 ] +1; - Else; - tpc = 0x20000105; - End; - - RunScriptThis( 0x0024, _parm[0], tpc ); - - ENDCHUNK - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - - - sec = ::HBSection; - top = ::HBtpcCur[sec]; - - If (top == 0x20000105); - Exit(); - End; - top--; - - If (sec > 1); - If (top <= ::HBtpcEnd[sec - 1]); - - sec--; - End; - End; - - RunScriptThis(0x0024, sec, top); - ENDCHUNK - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - - - sec = ::HBSection; - top = ::HBtpcCur[ sec ]; - - If (top == 0x20000138); - Exit(); - End; - top++; - If (sec < 10); - - If (top > ::HBtpcEnd[sec]); - - sec++; - End; - End; - - RunScriptThis(0x0024, sec, top ); - ENDCHUNK - - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - sec = _parm[0]; - tpc = _parm[1]; - - ::HBSection = sec; - ::HBtpcCur[sec] = tpc; - - - - If (.last != 0); - ChangeStateGob(.last, 0x0001); - End; - - - gob = Select(sec, 0, - 0x00003006, 0x00003007, 0x00003008, - 0x00003008, 0x00003008, 0x00003008, - 0x00003008, 0x00003008, 0x00003009, - 0x00003010); - - If( gob != 0 ); - ChangeStateGob(gob, 0x0002); - .last = gob; - End; - - - If ( sec >= 3 && sec <= 8); - - ::HBLastsub = sec; - - - If (.hsshow == 0); - ChangeStateGob(0x00003016, 0x0002); - .hsshow = 1; - End; - - - If (.lasthow != 0); - ChangeStateGob(.lasthow, 0x0001); - End; - - - gob = Select( sec - 2, 0, - 0x00003017, 0x00003018, - 0x00003019, 0x00003020, - 0x00003021, 0x00003022); - - - ChangeStateGob(gob, 0x0002); - .lasthow = gob; - - - Else; - If (.hsshow == 1); - ChangeStateGob(0x00003016, 0x0003); - .hsshow = 0; - End; - End; - - - ChangeStateGob( 0x00003013, - ((tpc) >= 0x20000138 ) ? 0x0002 : 0x0001 ); - - - ChangeStateGob( 0x00003014, - (tpc <= 0x20000105 ) ? 0x0002 : 0x0001 ); - - - - start = (sec == 1 ) ? (0x20000105 - 1) : (::HBtpcEnd[sec - 1]); - - - NumToStr((::HBtpcEnd[sec] - start), 2); - NumToStr((tpc - start), 1); - - - If (FGobExists(0x00003024)); - DestroyGob(0x00003024); - DestroyGob(0x00003027); - DestroyGob(0x00003025); - End; - - CreateHelpGob(0x00003045, 0x000121a0 + sec - 1); - - CreateHelpGob(0x00003003, 0x000121aa); - - - st = (sec > 2 && sec < 9) ? 0x0002 : 0x0001; - ChangeStateGob( 0x00003005, st ); - - - CreateHelpGob(0x00003005, tpc); - ENDCHUNK - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0029 ) SCRIPT - Return( 1 ); - ENDCHUNK - - - - - - - -SET _curgok = 0x00003003 CHUNK( 'GOKD', 0x00003003, ) PACK SHORT BO OSK LONG 1 LONG 0 0 0 180 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gizmo.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildGob( GidParThis(), 0x00003045, 0x00003045 ); - - - CreateChildThis(0x00003011, 0x00003011); - CreateChildThis( 0x00003029, 0x00003029 ); - CreateChildThis(0x00003012, 0x00003012); - CreateChildThis(0x00003014, 0x00003014); - CreateChildThis(0x00003013, 0x00003013); - CreateChildThis(0x00003015, 0x00003015); - - CreateChildThis(0x00003006, 0x00003006); - CreateChildThis(0x00003007, 0x00003007); - CreateChildThis(0x00003008, 0x00003008); - CreateChildThis(0x00003009, 0x00003009); - CreateChildThis(0x00003010, 0x00003010); - - ENDCHUNK - - - - - -SET _curgok = 0x00003005 CHUNK( 'GOKD', 0x00003005, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 100 130 546 390 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 178 130 546 390 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - -SET _curgok = 0x00003004 CHUNK( 'GOKD', 0x00003004, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 200 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 100 130 546 390 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - - - -SET _curgok = 0x00003006 CHUNK( 'GOKD', 0x00003006, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim1.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim1s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 1 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003007 CHUNK( 'GOKD', 0x00003007, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim2.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim2s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 2 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003008 CHUNK( 'GOKD', 0x00003008, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim3.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim3s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, ::HBLastsub ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003009 CHUNK( 'GOKD', 0x00003009, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim4.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim4s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 9 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003010 CHUNK( 'GOKD', 0x00003010, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim5.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\prim5s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 10 ); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001010, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003011 CHUNK( 'GOKD', 0x00003011, ) PACK SHORT BO OSK LONG 0 LONG 0 39 168 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703e ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 39, 168 ) "studio\bmp\volume.bmp" ENDCHUNK - - - - - -SET _curgok = 0x00003028 CHUNK( 'GOKD', 0x00003028, ) PACK SHORT BO OSK LONG 3 LONG 0 0 0 60 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\volthmb.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x00003029 CHUNK( 'GOKD', 0x00003029, ) PACK SHORT BO OSK LONG 0 LONG 0 57 245 500 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 11 74 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x00003028, 0x00003028 ); - - y = 67 -(( GetMasterVolume() * 67 )/ (2*0x00010000)); - MoveAbsGob( 0x00003028, 0, y ); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis( 'WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 4 ); - While( 1 ); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif( y > 67 ); - y =67; - End; - - MoveAbsGob( 0x00003028, 0, y ); - - newvol = ( (2*0x00010000) * (67-y) ) / 67; - - SetMasterVolume( newvol ); - - Cell( 0 , 0,0, 10 ); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound( .siiLoop ); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - - - - -SET _curgok = 0x00003012 CHUNK( 'GOKD', 0x00003012, ) PACK SHORT BO OSK LONG 0 LONG 0 163 404 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703f ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\vocon.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\vocoff.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - fMZAudio = GetProp( 0x23503 ) & 0x01; - If ( fMZAudio ); - ChangeStateThis(0x0002); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - flg = GetProp( 0x23503 ); - - If (StateThis() == 0x0001); - flg |= 0x01; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0002); - Else; - flg &= ~0x01; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0001); - End; - - ENDCHUNK - - - - -SET _curgok = 0x00003013 CHUNK( 'GOKD', 0x00003013, ) PACK SHORT BO OSK LONG 0 - LONG 0 364 412 350 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x0001703c - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0023 ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pgfwd.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pgfwdds.bmp" ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001011, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - -SET _curgok = 0x00003014 CHUNK( 'GOKD', 0x00003014, ) PACK SHORT BO OSK LONG 0 - LONG 0 241 412 350 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x0001703d - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0022 ); - ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\pgback.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\pgbackds.bmp" ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x00001012, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - -SET _curgok = 0x00003015 CHUNK( 'GOKD', 0x00003015, ) PACK SHORT BO OSK LONG 0 LONG 0 479 403 350 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703b ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\hcancel.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 25, 0 ) "studio\bmp\hcancelc.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x23041, SET _st = 0x10000 SET _st |= 0x001D _st ) - - - - -SET _curgok = 0x00003016 CHUNK( 'GOKD', 0x00003016, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 250 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - CreateChildThis(0x00003017, 0x00003017); - CreateChildThis(0x00003018, 0x00003018); - CreateChildThis(0x00003019, 0x00003019); - CreateChildThis(0x00003020, 0x00003020); - CreateChildThis(0x00003021, 0x00003021); - CreateChildThis(0x00003022, 0x00003022); - ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfmask++ CHUNK( 'MASK', _dfmask, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) MASK( 0x00, , ) "studio\bmp\howmsk.bmp" ENDCHUNK; - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x00003017 CHUNK( 'GOKD', 0x00003017, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut1.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut1s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - RunScriptGob( 0x00003002, 0x0021, 3 ); - ENDCHUNK - - - - - - - -SET _curgok = 0x00003018 CHUNK( 'GOKD', 0x00003018, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut2.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut2s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 4 ); - ENDCHUNK - - - - -SET _curgok = 0x00003019 CHUNK( 'GOKD', 0x00003019, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut3.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut3s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 5 ); - ENDCHUNK - - - - -SET _curgok = 0x00003020 CHUNK( 'GOKD', 0x00003020, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut4.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut4s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 6 ); - ENDCHUNK - - - - -SET _curgok = 0x00003021 CHUNK( 'GOKD', 0x00003021, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut5.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut5s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 7 ); - ENDCHUNK - - - - -SET _curgok = 0x00003022 CHUNK( 'GOKD', 0x00003022, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 275 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut6.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\hbut6s.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - RunScriptGob( 0x00003002, 0x0021, 8 ); - ENDCHUNK - - - - - -SET _curgok = 0x00003024 CHUNK( 'GOKD', 0x00003024, ) PACK SHORT BO OSK LONG 2 LONG 0 0 0 225 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG BYTE 44 0 0 0xfe LONG 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - - - -SET _curgok = 0x00003045 CHUNK( 'GOKD', 0x00003045, ) PACK SHORT BO OSK LONG 2 - LONG 0 312 90 600 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK -240 0 240 60 LONG BYTE 21 0 0 0xfe LONG 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 -ENDCHUNK - - - - -SET _curgok = 0x00003027 CHUNK( 'GOKD', 0x00003027, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 350 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 280 428 360 443 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -SET _curgok = 0x00003025 CHUNK( 'GOKD', 0x00003025, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 225 - LONG 512 512 0xffffffff 0x00000001 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x2000015A, ) SCRIPT - - If(_parm[0] != 0); - - - If( _parm[4] == 0xFFFFFFFF ); - - ; - Else; - - CreateHelpGob(0x20002, _parm[4]); - - - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - End; - Return( 1 ); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000105, ) SCRIPT - - If(_parm[0] != 0); - - If (_parm[0] < 3); - RunScriptGob(0x00003002, 0x0021, _parm[0]+1 ); - Else; - RunScriptGob(0x00003002, 0x0021, _parm[0]+6 ); - End; - End; -ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x2000015C, ) SCRIPT - - If(_parm[0] != 0); - - If( _parm[4] == 0xFFFFFFFF ); - - - Else; - - CreateChildGob(0x20002, 0x00030000, 0x00030000); - CreateChildGob(0x20002, _parm[4], _parm[4]); - - - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - End; - Return( 1 ); - End; -ENDCHUNK - - - - - -CHUNK( 'GLOP', 0x2000015B, ) SCRIPT - - If(_parm[0] != 0); - - If( _parm[4] == 0xFFFFFFFF ); - - - Else; - - CreateChildGob(0x20002, 0x00030000, 0x00030000); - CreateChildGob(0x20002, _parm[4], _parm[4]); - - - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - DestroyGob(0x00003002); - End; - Return( 1 ); - End; -ENDCHUNK - - - - - - - - -CHUNK( 'GLOP', 0x20000164, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000160, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000168, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x2000016C, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20000166, ) SCRIPT - - If(_parm[0] != 0); - EnqueueCid(100009, 0, _parm[0], 0, 0, 0); - End; -ENDCHUNK - -#line 89 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\hlpbkper.cht" - - - - - - - - - - - - - -SET _curgok = 0x00003001 CHUNK( 'GOKD', 0x00003001, ) PACK SHORT BO OSK LONG 0 LONG 0 0 0 0 LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - - ::HBSection = 1; - - - - ::HBLastsub = 3; - - - ::HBtpcCur[1] = 0x20000105; - ::HBtpcCur[2] = 0x20000106; - ::HBtpcCur[3] = 0x20000108; - ::HBtpcCur[4] = 0x2000010a; - ::HBtpcCur[5] = 0x2000010e; - ::HBtpcCur[6] = 0x2000010f; - ::HBtpcCur[7] = 0x20000112; - ::HBtpcCur[8] = 0x20000115; - ::HBtpcCur[9] = 0x20000119; - ::HBtpcCur[10] = 0x2000012a; - - - - ::HBtpcEnd[1] = 0x20000105; - ::HBtpcEnd[2] = 0x20000107; - ::HBtpcEnd[3] = 0x20000109; - ::HBtpcEnd[4] = 0x2000010d; - ::HBtpcEnd[5] = 0x2000010e; - ::HBtpcEnd[6] = 0x20000111; - ::HBtpcEnd[7] = 0x20000114; - ::HBtpcEnd[8] = 0x20000118; - ::HBtpcEnd[9] = 0x20000129; - ::HBtpcEnd[10] = 0x20000138; - ENDCHUNK -#line 90 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\gadget.cht" - - - - - - - - - - - -SET _curgok = 0x00003046 CHUNK( 'GOKD', 0x00003046, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok 0x00000040 ) LONG BO OSK 0 0 640 480 LONG BYTE 73 0 0 0xfe LONG 0xffffffff - BYTE 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - Cell( 0x00000040, 0,0, 0); - CreateHelpThis(0x20005283); - ENDCHUNK - - - - -CHUNK( 'GLOP', 0x00003047, ) SCRIPT - - If(_parm[0] != 0); - - CreateChildGob(0x20002, 0x00003030, 0x00003030); - CreateChildGob(0x20002, 0x00030000, 0x00030000); - CreateChildGob(0x20002, 0x00003031, 0x00003031); - - ChangeStateGob(0x0000303E, 0x0002); - DestroyGob(0x00003046); - Return(1); - Else; - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - - - - -SET _curgok = 0x00003031 CHUNK( 'GOKD', 0x00003031, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - CreateChildThis(0x00003032, 0x00003032); - CreateChildThis(0x00003037, 0x00003037); - CreateChildThis(0x00003039, 0x00003039); - CreateChildThis(0x00003038, 0x00003038); - CreateChildThis(0x00003040, 0x00003040); - CreateChildThis(0x00003033, 0x00003033); - CreateChildThis(0x0000303D, 0x0000303D); - CreateChildThis(0x00003036, 0x00003036); - CreateChildThis(0x0000303E, 0x0000303E); - CreateChildThis(0x00003035, 0x00003035); - CreateChildThis(0x0000303B, 0x0000303B); - CreateChildThis(0x0000303C, 0x0000303C); - - ChangeStateGob(0x20160, 0x0002); - - RunScriptThis(0x0021); - - SetProp(3, 90); - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (::gdCurrStep <= ::gdSeqSteps[::gdCurrProj]); - - RunScriptGob(0x00030000, 0x0027); - tbSeq = ::gdSeqNum[::gdProjEnd[::gdCurrProj - 1] + ::gdCurrStep]; - CreateChildGob(0x20002, tbSeq, tbSeq); - ChangeStateGob(0x00003038, (0x0001 + ::gdCurrProj - 1)); - - If (::gdCurrStep > 1); - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrProj + ::gdCurrStep - 1); - ChangeStateGob(0x0000303F, 0x0002); - Else; - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + (::gdCurrProj - 1) + ::gdCurrStep - 1); - End; - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - - If (_parm[2] != 1); - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If (_parm[2] == 0); - DestroyGob(0x00003042); - If (::gdUpSelected == 1); - RunScriptGob(0x00003037, 0x0021); - Else; - RunScriptGob(0x00003039, 0x0021); - End; - Else; - CreateHelpGob(0x00003042, 0x20005275); - End; - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If(_parm[2] == 1); - DestroyGob(0x00003042); - If (::gdUpSelected == 1); - RunScriptGob(0x00003037, 0x0021); - Else; - RunScriptGob(0x00003039, 0x0021); - End; - - Else; - CreateHelpGob(0x00003042, 0x20005275); - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0025 ) SCRIPT - - If (_parm[2] != 1); - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If (_parm[2] == 0); - DestroyGob(0x00003042); - Else; - CreateHelpGob(0x00003042, 0x20005274); - End; - End; - ENDCHUNK - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0026 ) SCRIPT - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - If(_parm[2] == 1); - DestroyGob(0x00003042); - Else; - CreateHelpGob(0x00003042, 0x20005274); - End; - ENDCHUNK - - - - - - - -SET _curgok = 0x00003032 CHUNK( 'GOKD', 0x00003032, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 150 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdbody.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis( 0x00003043, 0x00003043 ); -ENDCHUNK - - - - -SET _curgok = 0x00003033 CHUNK( 'GOKD', 0x00003033, ) PACK SHORT BO OSK LONG 1 - LONG 0 443 269 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017036 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 24, 34 ) "studio\bmp\gdplay.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 24, 34 ) "studio\bmp\gdstop.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - - ChangeStateGob(0x0000303A, (0x0001 + ::gdCurrProj - 1)); - Cell(0x00000040, 0, 0, 1); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - - ChangeStateGob(0x0000303A, (0x0006 + ::gdCurrProj)); - - Cell( 0x00000041, 0, 0, 1 ); - - While(PlayingGob(0x0000303A)); - Cell(0xFFFFFFFF, 0, 0, 10); - End; - ChangeStateThis(0x0001); - EnqueueCid(100102, 0x00030000, 0, 0, 0, 0); - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrProj + ::gdCurrStep - 1); - If (StateGob(0x0000303F) == 0x0001); - ChangeStateGob(0x0000303F, 0x0002); - End; - - ChangeStateGob(0x0000303E, 0x0001); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT; - If (StateThis() == 0x0001); - ChangeStateThis(0x0002); - Else; - ChangeStateThis(0x0001); - EnqueueCid(100102, 0x00030000, 0, 0, 0, 0); - CreateHelpGob(0x00003044, 0x20005700 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrProj + ::gdCurrStep - 1); - If (StateGob(0x0000303F) == 0x0001); - ChangeStateGob(0x0000303F, 0x0002); - End; - - ChangeStateGob(0x0000303E, 0x0001); - End; - ENDCHUNK - - - -SET _curgok = 0x00003041 CHUNK( 'GOKD', 0x00003041, ) PACK SHORT BO OSK LONG 3 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdvolthm.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x00003043 CHUNK( 'GOKD', 0x00003043, ) PACK SHORT BO OSK LONG 1 - LONG 0 210 234 210 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017033 -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 11 98 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x00003041, 0x00003041); - - y = 91 -((GetMasterVolume() * 91) / (0x00010000*2)); - MoveAbsGob(0x00003041, 0, y); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis( 'WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 4 ); - While(1); - y = YMouseThis(); - If( y < 0 ); - y=0; - Elif(y > 91); - y =91; - End; - - MoveAbsGob(0x00003041, 0, y); - - newvol = ((0x00010000*2)* (91-y)) / 91; - - SetMasterVolume(newvol); - - Cell(0, 0, 0, 10); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound(.siiLoop); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - - - -SET _curgok = 0x00003035 CHUNK( 'GOKD', 0x00003035, ) PACK SHORT BO OSK LONG 1 - LONG 0 273 424 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017039 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdmelon.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0003 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdmeloff.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - fMelAudio = GetProp( 0x23503 ) & 0x02; - If ( fMelAudio ); - ChangeStateThis(0x0002); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - flg = GetProp( 0x23503 ); - - If (StateThis() == 0x0001); - flg |= 0x02; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0002); - StopSoundClass(0, 999); - Else; - flg &= ~0x02; - SetProp( 0x23503, flg ); - ChangeStateThis(0x0001); - End; - - ENDCHUNK - - - - - - -SET _curgok = 0x00003036 CHUNK( 'GOKD', 0x00003036, ) PACK SHORT BO OSK LONG 1 - LONG 0 371 424 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017038 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdclose.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdcloses.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - End; - CreateChildGob(0x20002, 0x00003042, 0x00003042); - CreateHelpGob(0x00003042, 0x20005274); - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - DestroyGob(0x00030000->lastHelp); - DestroyGob(0x00030000); - DestroyGob(0x20160); - DestroyGob(0x00003031); - - ::fHelpOn = 0; - CreateHelpGob(0x20002, 0x20005272); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - ENDCHUNK - - - - -SET _curgok = 0x00003042 CHUNK( 'GOKD', 0x00003042, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 600 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 73 0 0 0xfe LONG 0xffffffff - BYTE 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 - ENDCHUNK - - - - -SET _curgok = 0x0000303D CHUNK( 'GOKD', 0x0000303D, ) PACK SHORT BO OSK LONG 1 - LONG 0 443 300 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017037 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\gdhow.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 24, 0 ) "studio\bmp\gdhows.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ::gdCurrStep++; - - SetProp(3, 999999); - DestroyGob(0x00003031); - - ChangeStateGob(0x20160, 0x0001); - ENDCHUNK - - - - -SET _curgok = 0x0000303E CHUNK( 'GOKD', 0x0000303E, ) PACK SHORT BO OSK LONG 1 - LONG 0 322 424 200 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x0001703a - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0x0001703a -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdwhy.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdwhys.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 23, 43 ) "studio\bmp\gdwhyd.bmp" ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - - ENDCHUNK - SET _dfwave++ CHUNK( 'WAVE', _dfwave, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) FILE "studio\sound\gemtip.wav" ENDCHUNK - - - - -SET _curgok = 0x00003037 CHUNK( 'GOKD', 0x00003037, ) PACK SHORT BO OSK LONG 1 - LONG 0 419 131 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017034 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdselup.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdselups.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x23047, SET _st = 0x10000 SET _st |= 0x001D _st ) - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ::gdUpSelected = 1; - - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - End; - - If (::gdCurrStep > 1); - CreateChildGob(0x20002, 0x00003042, 0x00003042); - CreateHelpGob(0x00003042, 0x20005275); - Else; - RunScriptThis(0x0021); - End; - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (::gdCurrProj > 5); - ::gdCurrProj = 1; - Else; - ::gdCurrProj++; - End; - ::gdCurrStep = 1; - ChangeStateGob(0x00003038, (0x0001 + ::gdCurrProj - 1)); - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - Else; - ChangeStateGob(0x0000303A, (0x0001 + ::gdCurrProj - 1)); - End; - If (StateGob(0x0000303F) == 0x0002); - ChangeStateGob(0x0000303F, 0x0001); - End; - - ChangeStateGob(0x0000303E, 0x0002); - RunScriptGob(0x00003031, 0x0021); - ENDCHUNK - - - - -SET _curgok = 0x00003038 CHUNK( 'GOKD', 0x00003038, ) PACK SHORT BO OSK LONG 6 - LONG 0 420 155 200 - -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie1.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie2.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie3.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie4.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie5.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdmovie6.bmp" ENDCHUNK - - - - -SET _curgok = 0x00003039 CHUNK( 'GOKD', 0x00003039, ) PACK SHORT BO OSK LONG 1 - LONG 0 419 175 200 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x00017035 -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdseldn.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) - ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdseldns.bmp" ENDCHUNK - ADOPT( 'GOKD', _curgok, 'WAVE', 0x23048, SET _st = 0x10000 SET _st |= 0x001D _st ) - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - ::gdUpSelected = 0; - - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - End; - - If (::gdCurrStep > 1); - CreateChildGob(0x20002, 0x00003042, 0x00003042); - CreateHelpGob(0x00003042, 0x20005275); - Else; - RunScriptThis(0x0021); - End; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - If (::gdCurrProj < 2); - ::gdCurrProj = 6; - Else; - ::gdCurrProj--; - End; - ::gdCurrStep = 1; - ChangeStateGob(0x00003038, (0x0001 + ::gdCurrProj - 1)); - If (StateGob(0x00003033) == 0x0002); - ChangeStateGob(0x00003033, 0x0001); - Else; - ChangeStateGob(0x0000303A, (0x0001 + ::gdCurrProj - 1)); - End; - If (StateGob(0x0000303F) == 0x0002); - ChangeStateGob(0x0000303F, 0x0001); - End; - - ChangeStateGob(0x0000303E, 0x0002); - RunScriptGob(0x00003031, 0x0021); - ENDCHUNK - - - - -SET _curgok = 0x00003040 CHUNK( 'GOKD', 0x00003040, ) PACK SHORT BO OSK LONG 6 - LONG 0 241 84 200 - -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) LONG BO OSK 0 0 160 90 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x0000303A, 0x0000303A); - ENDCHUNK - - - - -SET _curgok = 0x0000303A CHUNK( 'GOKD', 0x0000303A, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 - -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi1.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi3.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi2.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0004 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi6.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0005 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi5.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0006 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdavi4.bmp" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0007 SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj1.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0008 SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj2.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0009 SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj3.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x000A SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj4.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x000b SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj5.avi" ENDCHUNK - SET _dfvid++ CHUNK( 'VIDE', _dfvid, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x000c SET _st <<= 16 SET _st += 0x0000 _st ) BYTE 1 STN "proj6.avi" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ChangeStateThis(0x0001 + (::gdCurrProj - 1)); - ENDCHUNK - - - - -SET _curgok = 0x0000303B CHUNK( 'GOKD', 0x0000303B, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\gdword.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x00003044, 0x00003044); - ENDCHUNK - - - - -SET _curgok = 0x00003044 CHUNK( 'GOKD', 0x00003044, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 5 3 167 43 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - - - -SET _curgok = 0x0000303C CHUNK( 'GOKD', 0x0000303C, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 200 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 247 229 397 371 LONG BYTE 20 0 0 0xfe LONG 0xffffffff - BYTE 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x0000303F, 0x0000303F); - ENDCHUNK - - - - -SET _curgok = 0x0000303F CHUNK( 'GOKD', 0x0000303F, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000043 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000044 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7d.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000045 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7e.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000046 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot7f.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000047 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000048 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000049 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004a ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004b ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot5d.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004c ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot9a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004d ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot9b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004e ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot9c.bmp" ENDCHUNK - - - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000004f ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000050 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000051 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000052 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000053 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4d.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000054 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot4e.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000055 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000056 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000057 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000058 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000059 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6d.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005a ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6e.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005b ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6f.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005c ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6g.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005d ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6h.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005e ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot6i.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x0000005f ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000060 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8a.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000061 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8b.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000062 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8c.bmp" ENDCHUNK - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000063 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnshot8d.bmp" ENDCHUNK - - SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000064 ) BITMAP( 0x00, 0, 0 ) "studio\bmp\pnclosed.bmp" ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell(0x00000064, 0, 0, 1); - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - Cell((0x00000040 + ::gdProjEnd[::gdCurrProj - 1] + ::gdCurrStep - 1) , 0, 0, 1); - ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20005275, ) SCRIPT - - If (_parm[0] != 0); - - If (_parm[0] == 1); - - EnqueueCid(100, 20000 + 5, 0, 0, 0, 0); - - If (::gdCurrStep > 1); - FilterCmdsGob(0x00003031, 50114, 0, 0x0023); - FilterCmdsGob(0x00003031, 50111, 0, 0x0024); - DestroyGob(0x00030604); - Else; - If (::gdUpSelected == 1); - RunScriptGob(0x00003037, 0x0021); - Else; - RunScriptGob(0x00003039, 0x0021); - End; - DestroyGob(0x00003042); - End; - - Else; - DestroyGob(0x00003042); - End; - Return(1); - Else; - - StopSoundClass(0, 999); - - - End; -ENDCHUNK - - - - -CHUNK( 'GLOP', 0x20005274, ) SCRIPT - - If(_parm[0] != 0); - - If (_parm[0] == 1); - - RunScriptGob(0x00003036, 0x0021); - DestroyGob(0x00003042); - - Elif (_parm[0] == 2); - If (::gdCurrStep > 1); - FilterCmdsGob(0x00003031, 50114, 0, 0x0025); - FilterCmdsGob(0x00003031, 50111, 0, 0x0026); - DestroyGob(0x00030604); - End; - - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - EnqueueCid(50061, 0, 0, 0, 0, 0); - - Else; - DestroyGob(0x00003042); - End; - Return(1); - Else; - fMelAudio = GetProp( 0x23503 ) & 0x02; - If (._cnoSound != 0xFFFFFFFF && !fMelAudio); - StopSoundClass(0, 999); - PlaySoundGob(GidParThis(), ._ctgSound, ._cnoSound, 0, 0x10000, 1, 0, 999); - End; - End; -ENDCHUNK - -#line 91 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\gadgpers.cht" - - - - - - - - - - -SET _curgok = 0x00003030 CHUNK( 'GOKD', 0x00003030, ) PACK SHORT BO OSK LONG 6 - LONG 0 0 0 100 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - ::gdCurrProj = ::NextProject; - ::gdCurrStep = 1; - - - ::gdUpSelected = 1; - - - ::gdSeqSteps[1] = 7; - ::gdSeqSteps[2] = 5; - ::gdSeqSteps[3] = 3; - ::gdSeqSteps[4] = 6; - ::gdSeqSteps[5] = 10; - ::gdSeqSteps[6] = 5; - - - ::gdProjEnd[0] = 0; - ::gdProjEnd[1] = 7; - ::gdProjEnd[2] = 12; - ::gdProjEnd[3] = 15; - ::gdProjEnd[4] = 21; - ::gdProjEnd[5] = 31; - ::gdProjEnd[6] = 36; - - - - ::gdSeqNum[1] = 0x00030100; - ::gdSeqNum[2] = 0x00030101; - ::gdSeqNum[3] = 0x00030102; - ::gdSeqNum[4] = 0x00030103; - ::gdSeqNum[5] = 0x00030104; - ::gdSeqNum[6] = 0x00030105; - ::gdSeqNum[7] = 0x00030106; - ::gdSeqNum[8] = 0x00030300; - ::gdSeqNum[9] = 0x00030301; - ::gdSeqNum[10] = 0x00030302; - ::gdSeqNum[11] = 0x00030303; - ::gdSeqNum[12] = 0x00030304; - ::gdSeqNum[13] = 0x00030200; - ::gdSeqNum[14] = 0x00030201; - ::gdSeqNum[15] = 0x00030202; - ::gdSeqNum[16] = 0x00030510; - ::gdSeqNum[17] = 0x00030511; - ::gdSeqNum[18] = 0x00030512; - ::gdSeqNum[19] = 0x00030513; - ::gdSeqNum[20] = 0x00030514; - ::gdSeqNum[21] = 0x00030515; - ::gdSeqNum[22] = 0x00030500; - ::gdSeqNum[23] = 0x00030501; - ::gdSeqNum[24] = 0x00030502; - ::gdSeqNum[25] = 0x00030503; - ::gdSeqNum[26] = 0x00030504; - ::gdSeqNum[27] = 0x00030505; - ::gdSeqNum[28] = 0x00030506; - ::gdSeqNum[29] = 0x00030507; - ::gdSeqNum[30] = 0x00030508; - ::gdSeqNum[31] = 0x00030509; - ::gdSeqNum[32] = 0x00030400; - ::gdSeqNum[33] = 0x00030401; - ::gdSeqNum[34] = 0x00030402; - ::gdSeqNum[35] = 0x00030403; - ::gdSeqNum[36] = 0x00030404; - ENDCHUNK -#line 92 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\projmain.cht" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -SET _curgok = 0x00030000 CHUNK( 'GOKD', 0x00030000, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 350 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 0 0 LONG 0xffffffff 0xffffffff - BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 - ENDCHUNK - - SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD' _curgok SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG BYTE 73 0 0 0xfe LONG 0xffffffff - BYTE 0xaa 0x55 0xaa 0x55 0xaa 0x55 0xaa 0x55 - ENDCHUNK - SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - ; ; ; If (0); If (0x00010000->cDisable <= 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 1; Else; If (0x00010000->cDisable == 0); EnqueueCid(50093, 0, 0, 0, 0, 0); End; 0x00010000->cDisable++; End;; - - SetProp(3, 999999); - - ::fHelpOn = 1; - RunScriptThis(0x0026); - ENDCHUNK - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0026 ) SCRIPT - - .lastHelp = 0; - .prevState = 1; - .prev2State = 1; - .currState = 1; - .stateLine = 0; - .currLine = 0; - .tbInst = 0; - .tbReturn = 0; - .tbID0 = 0; - .tbNext = 1; - .tbState = 1; - .tbID1 = 0; - .tbID2 = 0; - ENDCHUNK - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0027 ) SCRIPT - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - RunScriptThis(0x0026); - ENDCHUNK - - - - - - - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0021 ) SCRIPT - - - ParseLoop@ - - - RunScriptThis(0x0024, .currLine); - - - Goto(Match(.tbInst, NotFound$, 1, _InitState$, 2, _MatchGoto$, 3, _MatchDescGoto$, - 4, _MatchChildrenGoto$, 15, _MatchParentGoto$, 5, _MatchAllGoto$, 6, _IgnoreMatch$, - 7, _IgnoreChildren$, 16, _IgnoreParentMatch$,8, _IgnoreAll$, 9, _BoolCondGoto$, - 10, _StateCondGoto$, 11, _SpecialInstr$, 12, _WaitEvent$, - 13, _JumpToState$, 14, _EndState$)); - - - _InitState@ - - If (StateThis() != (0x0002 + .tbID0)); - ChangeStateThis(0x0002 + .tbID0); - End; - - If (.tbID2 != 0); - .lastHelp = CreateHelpGob(0x20002, .tbID2); - Else; - .lastHelp = 0; - End; - - RunScriptThis(0x0023, .tbID1); - - .stateLine++; - .currLine++; - - Goto(ParseLoop$); - - - _MatchGoto@ - - If ((_parm[1] == .tbID1) && (_parm[.tbID0] == .tbID2)); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchDescGoto@ - - If ((_parm[1] == .tbID1) && (FIsDescendent(_parm[0], .tbID2))); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchChildrenGoto@ - - If ((_parm[1] == .tbID1) && (_parm[0] == (.tbID2->_gidBase + .tbID0))); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchAllGoto@ - - If (_parm[1] == .tbID1); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _MatchParentGoto@ - - If ((_parm[1] == .tbID1) && (_parm[0] == GidParGob(.tbID2))); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreMatch@ - - If ((_parm[1] == .tbID1) && (_parm[.tbID0] == .tbID2)); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreChildren@ - - If ((_parm[1] == .tbID1) && (FIsDescendent(_parm[0], .tbID2))); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreParentMatch@ - - If ((_parm[1] == .tbID1) && (_parm[0] == GidParGob(.tbID2))); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _IgnoreAll@ - If (_parm[1] == .tbID1); - .currLine = .stateLine; - Return(.tbReturn); - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _BoolCondGoto@ - - If (.tbID1 == .tbID2); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _StateCondGoto@ - - If (StateGob(.tbID1) == .tbID2); - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - - Else; - .currLine++; - End; - Goto(ParseLoop$); - - - _WaitEvent@ - .currLine++; - .stateLine = .currLine; - Return(1); - - _JumpToState@ - ; If (.tbNext != -1); 0x00030000->prev2State = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->currState; 0x00030000->currState = .tbNext; 0x00030000->currLine = 0x00030000->nsjTable[.tbNext]; 0x00030000->stateLine = 0x00030000->currLine; Else; 0x00030000->currState = 0x00030000->prevState; 0x00030000->prevState = 0x00030000->prev2State; 0x00030000->currLine = 0x00030000->nsjTable[0x00030000->currState]; 0x00030000->stateLine = 0x00030000->currLine; End; - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - Return(.tbReturn); - - - _EndState@ - .currLine = .stateLine; - Return(1); - - - _SpecialInstr@ - - Goto(Match(.tbID1, NoSpecial$, 1, _QuitMM$, 2, _QuitHelp$, - 3, _QuitGadgetHelp$, 4, _SetHelpAlarm$, - 5, _ProjectsRoom$, 6, _ResetTipDelay$, - 7, _ClearStudio$, 8, _LoadProjectMovie$, - 9, _OpenDoorCovers$, 14, _SimulateClick$, - 10, _SetSceneAndFrame$, 11, _SetBlinkingGadget$, - 12, _OpenAllDoors$, 13, _ChangeToNextMovie$, - 15, _SetBrowserItem$, 16, _SetNextProject$)); - - _QuitMM@ - EnqueueCid(106, 0, 0, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _QuitHelp@ - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - SetProp(3, 90); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - - ::fHelpOn = 0; - SetProp(0x23412, -1); - SetProp(0x23414, -1); - ret = .tbReturn; - DestroyThis(); - Return(ret); - _QuitGadgetHelp@ - If (.lastHelp != 0); - DestroyGob(.lastHelp); - End; - If (FGobExists(0x20160)); - DestroyGob(0x20160); - End; - If (FGobExists(0x00003031)); - DestroyGob(0x00003031); - End; - SetProp(3, 90); - ; ; ; If (0); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - - ::fHelpOn = 0; - SetProp(0x23412, -1); - SetProp(0x23414, -1); - - CreateHelpGob(0x20002, 0x20005272); - ret = .tbReturn; - DestroyThis(); - Return(ret); - _SetHelpAlarm@ - - SetAlarmThis(10002, .tbID2, 0xFFFFFFFF); - .currLine++; - Goto(ParseLoop$); - _SetBlinkingGadget@ - - ChangeStateGob(0x20160, 0x0003); - .currLine++; - Goto(ParseLoop$); - _OpenAllDoors@ - - RunScriptGob(0x20002, SET _st = 0x10000 SET _st |= 0x002A _st); - .currLine++; - Goto(ParseLoop$); - _ChangeToNextMovie@ - - RunScriptGob(0x00003037, 0x0021); - Return(.tbReturn); - _ProjectsRoom@ - EnqueueCid(50061, 0, 0, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _ResetTipDelay@ - SetProp(3, .tbID2); - .currLine++; - Goto(ParseLoop$); - _ClearStudio@ - EnqueueCid(100, 20000 + 5, 0, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _LoadProjectMovie@ - EnqueueCid(50090, 0, .tbID2, 0, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _OpenDoorCovers@ - RunScriptGob(.tbID2, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st); - .currLine++; - Goto(ParseLoop$); - _SetSceneAndFrame@ - EnqueueCid(44013, 0, .tbID0, .tbID2, 0, 0); - EnqueueCid(100100, 0x00030000, 0, 0, 0, 0); - .currLine++; - Return(.tbReturn); - _SimulateClick@ - RunScriptGob(.tbID2, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st); - .currLine++; - Goto(ParseLoop$); - _SetBrowserItem@ - SetProp(0x23412, .tbID2); - SetProp(0x23413,2); - SetProp(0x23414, 0x21009); - .currLine++; - Goto(ParseLoop$); - _SetNextProject@ - ::NextProject = .tbID2; - .currLine++; - Goto(ParseLoop$); - NoSpecial@ - Return(1); - NotFound@ - .currLine++; - Goto(ParseLoop$); - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0025 ) SCRIPT - iLine = 0; - iState = 1; - - While (.word1[iLine] != 0); - .word5[iLine] = iState; - - If (.word1[iLine] == 14); - iState++; - End; - iLine++; - End; - .word5[iLine] = 0; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0022 ) SCRIPT - iLine = 0; - iState = 0; - - - While(.word5[iLine] > 0); - If (.word5[iLine] != iState); - iState++; - .nsjTable[iState] = iLine; - End; - iLine++; - End; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0023 ) SCRIPT - - FilterCmdsThis(0, 0, 0xFFFFFFFF); - - FilterCmdsThis(100100, 0, 0x0021); - - - If ((_parm[0] & 1) == 1); - FilterCmdsThis(100007, 0, 0x0021); - End; - If ((_parm[0] & 4) == 4); - FilterCmdsThis(100003, 0, 0x0021); - End; - If ((_parm[0] & 8) == 8); - FilterCmdsThis(50016, 0, 0x0021); - End; - If ((_parm[0] & 16) == 16); - FilterCmdsThis(50015, 0, 0x0021); - End; - If ((_parm[0] & 32) == 32); - FilterCmdsThis(50017, 0, 0x0021); - End; - If ((_parm[0] & 2) == 2); - FilterCmdsThis(100008, 0, 0x0021); - End; - If ((_parm[0] & 64) == 64); - FilterCmdsThis(50028, 0, 0x0021); - End; - If ((_parm[0] & 256) == 256); - FilterCmdsThis(50053, 0, 0x0021); - End; - If ((_parm[0] & 128) == 128); - FilterCmdsThis(50027, 0, 0x0021); - End; - If ((_parm[0] & 512) == 512); - FilterCmdsThis(44008, 0, 0x0021); - End; - If ((_parm[0] & 1024) == 1024); - FilterCmdsThis(44009, 0, 0x0021); - End; - If ((_parm[0] & 2048) == 2048); - FilterCmdsThis(44010, 0, 0x0021); - End; - If ((_parm[0] & 4194304) == 4194304); - FilterCmdsThis(44016, 0, 0x0021); - End; - If ((_parm[0] & 4096) == 4096); - FilterCmdsThis(50035, 0, 0x0021); - End; - If ((_parm[0] & 8192) == 8192); - FilterCmdsThis(50036, 0, 0x0021); - End; - If ((_parm[0] & 16384) == 16384); - FilterCmdsThis(100101, 0, 0x0021); - End; - If ((_parm[0] & 32768) == 32768); - FilterCmdsThis(44011, 0, 0x0021); - End; - If ((_parm[0] & 65536) == 65536); - FilterCmdsThis(44012, 0, 0x0021); - End; - If ((_parm[0] & 131072) == 131072); - FilterCmdsThis(50099, 0, 0x0021); - End; - If ((_parm[0] & 262144) == 262144); - FilterCmdsThis(50102, 0, 0x0021); - End; - If ((_parm[0] & 524288) == 524288); - FilterCmdsThis(50030, 0, 0x0021); - End; - If ((_parm[0] & 1048576) == 1048576); - FilterCmdsThis(100102, 0, 0x0021); - End; - If ((_parm[0] & 2097152) == 2097152); - FilterCmdsThis(50031, 0, 0x0021); - End; - If ((_parm[0] & 8388608) == 8388608); - FilterCmdsThis(50098, 0, 0x0021); - End; - If ((_parm[0] & 16777216) == 16777216); - FilterCmdsThis(50114, 0, 0x0021); - End; - If ((_parm[0] & 33554432) == 33554432); - FilterCmdsThis(44018, 0, 0x0021); - End; - If ((_parm[0] & 67108864) == 67108864); - FilterCmdsThis(50111, 0, 0x0021); - End; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0024 ) SCRIPT - - .tbInst = .word1[_parm[0]]; - .tbReturn = .word2[_parm[0]]; - .tbID0 = .word3[_parm[0]]; - .tbNext = .word4[_parm[0]]; - .tbState = .word5[_parm[0]]; - .tbID1 = .word6[_parm[0]]; - .tbID2 = .word7[_parm[0]]; - ENDCHUNK - - - - - SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0102 _st ) SCRIPT - EnqueueCid(100101, 0x00030000, 0, 0, 0, 0); - ENDCHUNK -#line 93 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tblogowz.cht" - - - - -SET _curgok = 0x00030001 CHUNK( 'GOKD', 0x00030001, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005200; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005202; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005203; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|33554432; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44018; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005201; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005204; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005205; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005206; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|256|128; 0x00030000->word7[_indx] = 0x20005207; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005208; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x20005209; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000520a; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000520b; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000520c; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000520f; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005210; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 94 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtscen.cht" - - - - - - -SET _curgok = 0x00030002 CHUNK( 'GOKD', 0x00030002, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005216; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005217; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|33554432; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44018; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000524C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005218; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005219; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030003 CHUNK( 'GOKD', 0x00030003, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000521A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000521B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000521C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030004 CHUNK( 'GOKD', 0x00030004, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000521D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000521E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030005 CHUNK( 'GOKD', 0x00030005, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000521F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005220; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030006 CHUNK( 'GOKD', 0x00030006, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005221; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000523D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030007 CHUNK( 'GOKD', 0x00030007, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005222; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x20005223; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005224; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030008 CHUNK( 'GOKD', 0x00030008, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005225; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x20005226; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005227; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030009 CHUNK( 'GOKD', 0x00030009, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x2000B; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005228; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005229; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000A CHUNK( 'GOKD', 0x0003000A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x2000B; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000522B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x0003000B CHUNK( 'GOKD', 0x0003000B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005255; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000522E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000C CHUNK( 'GOKD', 0x0003000C, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000522F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005231; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005232; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000D CHUNK( 'GOKD', 0x0003000D, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20000233; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20050; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20050; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005235; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005236; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000E CHUNK( 'GOKD', 0x0003000E, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005237; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005238; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x2000523A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000523E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003000F CHUNK( 'GOKD', 0x0003000F, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x2000D; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20037; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20037; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000523B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20037; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20037; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000523F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030010 CHUNK( 'GOKD', 0x00030010, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005215; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000524E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000524F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005250; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|524288; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50030; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4096|8192; 0x00030000->word7[_indx] = 0x20005251; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50035; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50036; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20117; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x200B6; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005254; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 95 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtsoun.cht" - - - - - - -SET _curgok = 0x00030020 CHUNK( 'GOKD', 0x00030020, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005381; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005383; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005384; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030021 CHUNK( 'GOKD', 0x00030021, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005385; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005387; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005388; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030022 CHUNK( 'GOKD', 0x00030022, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005389; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000538B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000538C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030023 CHUNK( 'GOKD', 0x00030023, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000538D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000538E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000538F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030024 CHUNK( 'GOKD', 0x00030024, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005390; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20029; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20029; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005391; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005392; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030025 CHUNK( 'GOKD', 0x00030025, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005393; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005394; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005395; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030026 CHUNK( 'GOKD', 0x00030026, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20005; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005396; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x2000F; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005396; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005397; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20038; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005398; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030027 CHUNK( 'GOKD', 0x00030027, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005399; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20027; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20027; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000539A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x20005613; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000539C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030028 CHUNK( 'GOKD', 0x00030028, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000539D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000539E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000539F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x00030029 CHUNK( 'GOKD', 0x00030029, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005619; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005624; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005629; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200053A2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200053A6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003002A CHUNK( 'GOKD', 0x0003002A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053A3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x200053A4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200053A5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003002B CHUNK( 'GOKD', 0x0003002B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20007; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005380; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200053B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200053B6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x20005613; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200053B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 96 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtactr.cht" - - - - - - -SET _curgok = 0x00030060 CHUNK( 'GOKD', 0x00030060, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x200052C2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200052C3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052C4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030061 CHUNK( 'GOKD', 0x00030061, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x200052C6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200052C7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052C8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030062 CHUNK( 'GOKD', 0x00030062, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20077; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|256|128; 0x00030000->word7[_indx] = 0x2000560B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50053; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200052CB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052CC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030063 CHUNK( 'GOKD', 0x00030063, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052D2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20165; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20166; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20167; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052D4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030064 CHUNK( 'GOKD', 0x00030064, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052D5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20169; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016A; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016B; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052D7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030065 CHUNK( 'GOKD', 0x00030065, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052D8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052D9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000562D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052DB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052DC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030066 CHUNK( 'GOKD', 0x00030066, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052DD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052DE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x2000562D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052DF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030067 CHUNK( 'GOKD', 0x00030067, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052E0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052E1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052E2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030068 CHUNK( 'GOKD', 0x00030068, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 0x20063; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052E4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052E5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030069 CHUNK( 'GOKD', 0x00030069, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052EA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005351; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052EB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052EC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006A CHUNK( 'GOKD', 0x0003006A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052F1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052F3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006B CHUNK( 'GOKD', 0x0003006B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052F5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006C CHUNK( 'GOKD', 0x0003006C, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052F9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052FB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052FC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x200052FD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200052FE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006D CHUNK( 'GOKD', 0x0003006D, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052FF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005300; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4194304; 0x00030000->word7[_indx] = 0x20005301; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005302; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005303; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x20005304; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005305; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006E CHUNK( 'GOKD', 0x0003006E, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005306; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005307; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4194304; 0x00030000->word7[_indx] = 0x20005308; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005309; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000530A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x2000530B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000530C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003006F CHUNK( 'GOKD', 0x0003006F, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000530D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000530E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4194304; 0x00030000->word7[_indx] = 0x2000530F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005310; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030070 CHUNK( 'GOKD', 0x00030070, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005311; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005312; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005313; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005314; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030071 CHUNK( 'GOKD', 0x00030071, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005315; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005316; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005317; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005318; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030072 CHUNK( 'GOKD', 0x00030072, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005319; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000531A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000531B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000531C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030073 CHUNK( 'GOKD', 0x00030073, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000531D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20064; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000531E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2006B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2006B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000531F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005320; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030074 CHUNK( 'GOKD', 0x00030074, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005321; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20015; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005322; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005323; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030075 CHUNK( 'GOKD', 0x00030075, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005324; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20165; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20166; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20167; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21000; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21001; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20164; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20165; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20166; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20167; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005325; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030076 CHUNK( 'GOKD', 0x00030076, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0002; SET _indx++; - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0004; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005326; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20168; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20169; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016A; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2016B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21002; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21003; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20168; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20169; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016A; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x2016B; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20017; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|512|1024|2048; 0x00030000->word7[_indx] = 0x200052D6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005327; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030077 CHUNK( 'GOKD', 0x00030077, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005328; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005329; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000532A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000532B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030078 CHUNK( 'GOKD', 0x00030078, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000532C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000532D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20020; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20020; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x2000532E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000532F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030079 CHUNK( 'GOKD', 0x00030079, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005330; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005331; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2006C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2006C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005332; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005333; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003007A CHUNK( 'GOKD', 0x0003007A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableActorTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005289; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20006; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200052C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005334; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20018; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20018; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048; 0x00030000->word7[_indx] = 0x20005335; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x20005615; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x2000560B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005337; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 97 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbhtword.cht" - - - - - - -SET _curgok = 0x00030040 CHUNK( 'GOKD', 0x00030040, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005641; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20046; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20046; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16; 0x00030000->word7[_indx] = 0x20005642; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005668; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005643; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005644; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x00030041 CHUNK( 'GOKD', 0x00030041, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005645; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005646; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21543; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21543; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21544; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21544; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21541; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21541; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005647; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005648; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030042 CHUNK( 'GOKD', 0x00030042, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005649; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000564A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21551; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21551; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000564B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000564C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030043 CHUNK( 'GOKD', 0x00030043, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000564D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20032; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20032; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000564E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21561; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21561; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000564F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005650; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030044 CHUNK( 'GOKD', 0x00030044, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005651; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005652; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21573; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21573; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21574; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21574; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21571; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21571; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005653; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005654; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030045 CHUNK( 'GOKD', 0x00030045, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005655; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005656; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21583; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21583; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21584; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21584; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x21581; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21581; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005657; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005658; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030046 CHUNK( 'GOKD', 0x00030046, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|65536; 0x00030000->word7[_indx] = 0x20005659; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000565A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030047 CHUNK( 'GOKD', 0x00030047, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|65536; 0x00030000->word7[_indx] = 0x2000565B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000565C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030048 CHUNK( 'GOKD', 0x00030048, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000565D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20069; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20069; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = kgo2bHowtoSequence; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000565E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20068; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20068; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000565F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005660; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - -SET _curgok = 0x00030049 CHUNK( 'GOKD', 0x00030049, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005661; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005662; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004A CHUNK( 'GOKD', 0x0003004A, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005663; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005664; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005665; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005666; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005667; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005669; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000566A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004B CHUNK( 'GOKD', 0x0003004B, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20055; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000566D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000566F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005668; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005690; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004C CHUNK( 'GOKD', 0x0003004C, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005670; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005671; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005672; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005673; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005674; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005675; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005676; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004D CHUNK( 'GOKD', 0x0003004D, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005677; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005678; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005679; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x20005668; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000567C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x0003004E CHUNK( 'GOKD', 0x0003004E, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 0x20002->fEnableTboxTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x2000528A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 0x20008; 0x00030000->word7[_indx] = 0x0003; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005640; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20008; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2008B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000567E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|65536; 0x00030000->word7[_indx] = 0x2000567F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44012; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x20005680; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 98 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbguidhp.cht" - - - - - -SET _curgok = 0x000305A0 CHUNK( 'GOKD', 0x000305A0, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005290; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20042; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005291; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4|33554432; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44018; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x200052A5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005292; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005294; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005293; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005295; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024|4; 0x00030000->word7[_indx] = 0x20005296; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x20005297; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048|4; 0x00030000->word7[_indx] = 0x20005298; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|131072|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8|16|4; 0x00030000->word7[_indx] = 0x20005299; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50015; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|2048|4; 0x00030000->word7[_indx] = 0x2000529A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|4; 0x00030000->word7[_indx] = 0x2000529B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32768|4; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x2000529C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030605; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 99 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbbasics.cht" - - - - - - -SET _curgok = 0x00030520 CHUNK( 'GOKD', 0x00030520, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20049; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20049; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030521 CHUNK( 'GOKD', 0x00030521, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20048; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20048; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030522 CHUNK( 'GOKD', 0x00030522, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030523 CHUNK( 'GOKD', 0x00030523, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 9; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 0x20002->fEnableSceneTools; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x20005288; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003C; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056E7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20095; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20095; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030524 CHUNK( 'GOKD', 0x00030524, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|4; 0x00030000->word7[_indx] = 0x200056E8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100003; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030525 CHUNK( 'GOKD', 0x00030525, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0x200056EA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030526 CHUNK( 'GOKD', 0x00030526, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056EC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20034; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056ED; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056F0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003015; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003012; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030527 CHUNK( 'GOKD', 0x00030527, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056EE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20035; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20035; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -SET _curgok = 0x00030528 CHUNK( 'GOKD', 0x00030528, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056EF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030601; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - -#line 100 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj1.cht" - - - - - -SET _curgok = 0x00030100 CHUNK( 'GOKD', 0x00030100, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005452; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005431; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005432; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 701; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 48; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005433; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 29; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005434; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005435; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005436; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005437; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005438; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005439; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030101 CHUNK( 'GOKD', 0x00030101, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000400f; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000543F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005440; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005441; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030102 CHUNK( 'GOKD', 0x00030102, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005442; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005443; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005444; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 5; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005446; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005447; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005448; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005449; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000544B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030103 CHUNK( 'GOKD', 0x00030103, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000544F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00004009; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005453; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005454; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005455; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005456; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030104 CHUNK( 'GOKD', 0x00030104, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005457; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005458; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005444; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 4; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005446; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005459; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005449; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20063; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000545C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005439; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030105 CHUNK( 'GOKD', 0x00030105, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000545E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00004012; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000545F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005440; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005460; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005461; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000543A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030106 CHUNK( 'GOKD', 0x00030106, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005450; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - -#line 101 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj2.cht" - - - - - -SET _curgok = 0x00030200 CHUNK( 'GOKD', 0x00030200, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005470; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005471; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005472; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 703; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005473; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005474; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005475; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005476; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2001F; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005478; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x2001F; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2009B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000547E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005480; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030201 CHUNK( 'GOKD', 0x00030201, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005481; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005482; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005483; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005484; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20062; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005485; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005486; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005480; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030202 CHUNK( 'GOKD', 0x00030202, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 4; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000549B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 102 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj3.cht" - - - - - -SET _curgok = 0x00030300 CHUNK( 'GOKD', 0x00030300, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005400; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005401; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005402; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 702; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 113; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005403; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005404; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005405; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005406; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005407; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005408; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005420; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005409; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030301 CHUNK( 'GOKD', 0x00030301, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000400e; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005410; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005412; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030302 CHUNK( 'GOKD', 0x00030302, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005413; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005414; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005416; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 32; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005417; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005405; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005418; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005407; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005419; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005415; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030303 CHUNK( 'GOKD', 0x00030303, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000541A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000541B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00004016; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000540F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20079; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000541D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005412; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005422; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005420; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005421; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030304 CHUNK( 'GOKD', 0x00030304, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000541E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - -#line 103 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj4.cht" - - - - - -SET _curgok = 0x00030400 CHUNK( 'GOKD', 0x00030400, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 706; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 165; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 11; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054BA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054BC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054D0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054BF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054C1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030401 CHUNK( 'GOKD', 0x00030401, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00001011; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054C7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x200054C8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054C9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054CA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030402 CHUNK( 'GOKD', 0x00030402, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054CB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054CC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 5; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054CD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054CE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054CF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054D0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054D1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054D2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030403 CHUNK( 'GOKD', 0x00030403, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054DC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054DD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054D7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|512|1024|2048; 0x00030000->word7[_indx] = 0x200054D9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 25; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054DE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054E0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054D0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20053; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054CE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20054; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054EE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20164; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054EF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20022; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054E7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054E9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030404 CHUNK( 'GOKD', 0x00030404, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054EC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 104 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj5.cht" - - - - - -SET _curgok = 0x00030500 CHUNK( 'GOKD', 0x00030500, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 705; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 138; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 27; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054F9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054FB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 28; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054FC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200054FD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054FE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 23; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054FF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200054F7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005500; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005501; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 30; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 31; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 31; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005502; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 32; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 33; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 37; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030501 CHUNK( 'GOKD', 0x00030501, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005504; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005505; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005506; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20005; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005507; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20014; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005508; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005509; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030502 CHUNK( 'GOKD', 0x00030502, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00001021; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000550D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20076; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x2000550E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x2000550F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005510; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005511; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005512; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030503 CHUNK( 'GOKD', 0x00030503, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005514; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005515; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005516; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005517; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005518; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005519; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030504 CHUNK( 'GOKD', 0x00030504, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00003210; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000551E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x2000551F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005517; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005520; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005521; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005522; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20056; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005517; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005523; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030505 CHUNK( 'GOKD', 0x00030505, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005524; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005525; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005526; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20006; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00002030; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200054F0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20075; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x20005527; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 512|1024; 0x00030000->word7[_indx] = 0x20005528; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 44009; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005529; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000552C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000552D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030506 CHUNK( 'GOKD', 0x00030506, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000552E; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000552F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005530; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005541; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005531; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005532; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030507 CHUNK( 'GOKD', 0x00030507, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005533; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005534; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005535; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007B; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005541; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x20005536; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0x200054FA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x20005537; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005538; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030508 CHUNK( 'GOKD', 0x00030508, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005539; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553A; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553B; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20065; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553C; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20021; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x2000553D; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x2000553F; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005503; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 2; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030509 CHUNK( 'GOKD', 0x00030509, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 6; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005540; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - - - -#line 105 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" -#line 1 "H:\\BUILD\\SOC\\src\\studio\\tbproj6.cht" - - - - - -SET _curgok = 0x00030510 CHUNK( 'GOKD', 0x00030510, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 12; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00003033; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|1048576; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8388608; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 8; 0x00030000->word7[_indx] = 704; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 50098; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 9; 0x00030000->word7[_indx] = 0x20007; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 10; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20088; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000505a; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056A8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056A9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000505b; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 17; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056AE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 18; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 19; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 20; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x0000505e; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 21; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 22; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056B0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 23; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 25; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x00005064; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 26; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2007A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 24; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 27; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056B2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 28; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 29; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056AF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 3; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 30; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B3; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 31; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 32; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 32; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 33; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20087; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 34; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 35; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 36; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 39; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 37; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 38; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 39; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 37; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030511 CHUNK( 'GOKD', 0x00030511, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x000032a3; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056B9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2002A; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200056BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20085; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030512 CHUNK( 'GOKD', 0x00030512, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056BE; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 15; 0x00030000->word7[_indx] = 0x000032a2; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20078; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|131072; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 50099; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|32; 0x00030000->word7[_indx] = 0x200056BF; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50017; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 16; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21009; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|8; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x21012; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50016; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200056BB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030513 CHUNK( 'GOKD', 0x00030513, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C1; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C2; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C4; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2004E; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030514 CHUNK( 'GOKD', 0x00030514, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C6; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C7; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x0000303E; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C8; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 14; 0x00030000->word7[_indx] = 0x20036; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056C9; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20052; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|2048; 0x00030000->word7[_indx] = 0x200056CA; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 44010; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2005D; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|262144; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 7; 0x00030000->word6[_indx] = 50102; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|64|128; 0x00030000->word7[_indx] = 0x200056CB; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 8; 0x00030000->word6[_indx] = 50028; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 50027; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056CC; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 9; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20039; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20026; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 10; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 0x20039; 0x00030000->word7[_indx] = 0x0001; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|32768; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 10; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 44011; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 4; 0x00030000->word7[_indx] = 90; SET _indx++; - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 11; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3|16384; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 11; 0x00030000->word6[_indx] = 100101; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056B5; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20082; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x20160; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 12; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x2003D; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 13; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005271; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x20005270; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 15; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 16; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 14; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK - - -SET _curgok = 0x00030515 CHUNK( 'GOKD', 0x00030515, ) PACK SHORT BO OSK LONG 0 - LONG 0 0 0 0 -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - - - SET _indx = 0; - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 16; 0x00030000->word7[_indx] = 5; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0x200056CD; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 3; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 5; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 3; 0x00030000->word4[_indx] = 4; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 4; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 4; 0x00030000->word4[_indx] = 2; 0x00030000->word6[_indx] = 100008; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 7; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0x00030603; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 3; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 5; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 13; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = -1; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 7; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 1; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 1|16777216|67108864; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 12; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 6; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50114; 0x00030000->word7[_indx] = 2; SET _indx++; - 0x00030000->word1[_indx] = 2; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 2; 0x00030000->word4[_indx] = 6; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 1; SET _indx++; - 0x00030000->word1[_indx] = 5; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 1; 0x00030000->word6[_indx] = 50111; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 8; 0x00030000->word2[_indx] = 1; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 100007; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - 0x00030000->word1[_indx] = 11; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 1; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 13; 0x00030000->word7[_indx] = 0; SET _indx++; - 0x00030000->word1[_indx] = 14; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - 0x00030000->word1[_indx] = 0; 0x00030000->word2[_indx] = 0; 0x00030000->word3[_indx] = 0; 0x00030000->word4[_indx] = 0; 0x00030000->word6[_indx] = 0; 0x00030000->word7[_indx] = 0; SET _indx++; - - - RunScriptGob(0x00030000, 0x0025); - RunScriptGob(0x00030000, 0x0022); - RunScriptGob(0x00030000, 0x0021); - DestroyThis(); -ENDCHUNK -#line 106 "H:\\BUILD\\SOC\\src\\studio\\studio.cht" - - - - - - -CHUNK( 'GLOP', 0x20000, ) SCRIPT - If(_parm[0] == 0); - Transition(3, 0, 60, 0xffffffff, 0x20001); - End; - CreateChildThis(0x20002, 0x20002); -ENDCHUNK - - - - -CHUNK( 'GLCR', 0x20001, ) PACK PALETTE "studio\bmp\socpal.bmp" ENDCHUNK - - - - - - -SET _curgok = 0x20002 CHUNK( 'GOKD', 0x20002, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 0 - LONG 0 0 0xffffffff 0x00000002 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 640 480 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - ; - - - ; - ; ; ; If (1); If (0x00010000->cDisable >= 1); EnqueueCid(50094, 0, 0, 0, 0, 0); End; 0x00010000->cDisable = 0; Else; 0x00010000->cDisable--; If (0x00010000->cDisable == 0); EnqueueCid(50094, 0, 0, 0, 0, 0); End; End; - - - - - CreateChildThis(0x2005E, 0x2005E); - CreateChildThis(0x2005F, 0x2005F); - CreateChildThis(0x20060, 0x20060); - CreateChildThis(0x20061, 0x20061); - CreateChildThis(0x20082, 0x20082); - CreateChildThis(0x2008B, 0x2008B); - CreateChildThis(0x2005D, 0x2005D); - CreateChildThis(0x20005, 0x20005); - CreateChildThis(0x20006, 0x20006); - CreateChildThis(0x20007, 0x20007); - CreateChildThis(0x20008, 0x20008); - CreateChildThis(0x2000B, 0x2000B); - CreateChildThis(0x2000D, 0x2000D); - CreateChildThis(0x2000E, 0x2000E); - CreateChildThis(0x2000F, 0x2000F); - CreateChildThis(0x20034, 0x20034); - CreateChildThis(0x20035, 0x20035); - CreateChildThis(0x20036, 0x20036); - CreateChildThis(0x2004F, 0x2004F); - CreateChildThis(0x20037, 0x20037); - CreateChildThis(0x20038, 0x20038); - CreateChildThis(0x20039, 0x20039); - CreateChildThis(0x2003C, 0x2003C); - CreateChildThis(0x20047, 0x20047); - CreateChildThis(0x20094, 0x20094); - CreateHelpGob(0x20094, 0x22502); - - - - CreateChildThis(0x2003D, 0x2003D); - CreateChildThis(0x20042, 0x20042); - CreateChildThis(0x20075, 0x20075); - CreateChildThis(0x20076, 0x20076); - CreateChildThis(0x20077, 0x20077); - CreateChildThis(0x20078, 0x20078); - CreateChildThis(0x20079, 0x20079); - CreateChildThis(0x2007A, 0x2007A); - CreateChildThis(0x20046, 0x20046); - CreateChildThis(0x20066, 0x20066); - CreateChildThis(0x20067, 0x20067); - CreateChildThis(0x20068, 0x20068); - CreateChildThis(0x2009B, 0x2009B); - CreateChildThis(0x2009C, 0x2009C); - CreateChildThis(0x20161, 0x20161); - - - - - CreateChildThis(0x00003001, 0x00003001); - - - - - - SetProp(3, 90); - - SetProp(3, 90 ); - - - ::fHelpOn = 0; - - - - SetProp(0x23301, GetProp(0x23300)); - SetProp(0x23303, GetProp(0x23302)); - - - - - .fAllSceneDoors = 0; - .fAllActorDoors = 0; - .fAllSoundDoors = 0; - .fAllTextDoors = 0; - .fEnableActorTools = 0; - .fEnableSceneTools = 0; - .fEnableTboxTools = 0; - .idPriOpen = 0x20000; - .idtbxDown = 0x20000; - .idactDown = 0x20000; - .idscnDown = 0x20000; - .fpseDown = 0; - .chttTbox = 2; - .chttActor = 1; - .fXYAxis = 0; - .fRGround = 0; -ENDCHUNK - - - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0022 _st ) SCRIPT - - - - - If (.idscnDown != 0x20000); - ChangeStateGob(.idscnDown, 0x0001); - .idscnDown = 0x20000; - End; - - - - - .fEnableActorTools = 0; - .fEnableSceneTools = 0; - .fEnableTboxTools = 0; - .idtbxDown = 0x20000; - .idscnDown = 0x20000; - .fpseDown = 0; - .chttTbox = 2; - .chttActor = 1; - .fXYAxis = 0; - .fRGround = 0; - EnqueueCid(50004, 20000 + 5, 0, 0, 0, 0); - - - - - If (StateGob(0x2000F) != 0x0001); - ChangeStateGob(0x2000F, 0x0001); - End; - If (StateGob(0x20005) != 0x0003); - ChangeStateGob(0x20005, 0x0003); - End; - If (StateGob(0x20006) != 0x0001); - ChangeStateGob(0x20006, 0x0001); - End; - If (StateGob(0x20007) != 0x0001); - ChangeStateGob(0x20007, 0x0001); - End; - If (StateGob(0x20008) != 0x0001); - ChangeStateGob(0x20008, 0x0001); - End; - If (StateGob(0x2000B) != 0x0002); - ChangeStateGob(0x2000B, 0x0002); - End; - If (StateGob(0x2000D) != 0x0002); - ChangeStateGob(0x2000D, 0x0002); - End; - If (StateGob(0x2000E) != 0x0003); - ChangeStateGob(0x2000E, 0x0003); - End; - If ((GetProp(0x23502) & 1) != 0); - CreateChildThis(0x00030000, 0x00030000); - CreateChildThis(0x000305A0, 0x000305A0); - SetProp(0x23502, GetProp(0x23502) & 0xfffffffe); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0023 _st ) SCRIPT - .fpseDown = _parm[0]; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0025 _st ) SCRIPT - 0x20002->fEnableSceneTools = 1; - If(0x20002->idPriOpen == 0x20005); - ChangeStateGob(0x2000F, 0x0002); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0026 _st ) SCRIPT - 0x20002->fEnableActorTools = 1; - If(0x20002->idPriOpen == 0x20006); - ChangeStateGob(0x2000F, 0x0003); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0027 _st ) SCRIPT - 0x20002->fEnableTboxTools = 1; - If(0x20002->idPriOpen == 0x20008); - ChangeStateGob(0x2000F, 0x0005); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0024 _st ) SCRIPT - ; - - CreateChildThis(0x20160, 0x20160); - CreateChildThis(0x00003046, 0x00003046); - - - - CopyStr("DIALOGUE.3mm", 701) ; - CopyStr("JOG.3mm", 702) ; - CopyStr("SURPRISE.3mm", 703) ; - CopyStr("MUMMY.3mm", 704) ; - CopyStr("BONGO.3mm", 705) ; - CopyStr("BRIDGE.3mm", 706) ; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0028 _st ) SCRIPT - ; - CreateChildThis(0x00030000, 0x00030000); - CreateChildThis(0x00030001, 0x00030001); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0029 _st ) SCRIPT - .fXYAxis = 0; - .fRGround = 0; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x002A _st ) SCRIPT - .fAllSceneDoors = 1; - .fAllActorDoors = 1; - .fAllSoundDoors = 1; - .fAllTextDoors = 1; - - If(StateGob(0x2000F) == 0x0002); - ChangeStateGob(0x2000F, 0x0006); - Elif(StateGob(0x2000F) == 0x0003); - ChangeStateGob(0x2000F, 0x0007); - Elif(StateGob(0x2000F) == 0x0004); - ChangeStateGob(0x2000F, 0x0008); - Elif(StateGob(0x2000F) == 0x0005); - ChangeStateGob(0x2000F, 0x0009); - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x002B _st ) SCRIPT - - - - If (.idscnDown != 0x20000); - ChangeStateGob(.idscnDown, 0x0001); - .idscnDown = 0x20000; - End; -ENDCHUNK - - - - - -SET _curgok = 0x2005E CHUNK( 'GOKD', 0x2005E, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 0 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back1.bmp" ENDCHUNK - - -SET _curgok = 0x2005F CHUNK( 'GOKD', 0x2005F, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 97 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20096, 0x21100, 0x21000, - (0 << 16) | 0); -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back2.bmp" ENDCHUNK - - -SET _curgok = 0x20060 CHUNK( 'GOKD', 0x20060, ) PACK SHORT BO OSK LONG 1 - LONG 0 592 97 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20097, 0x21110, 0x21002, - (0 << 16) | 0); -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back3.bmp" ENDCHUNK - -SET _curgok = 0x20061 CHUNK( 'GOKD', 0x20061, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 406 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\back4.bmp" ENDCHUNK - - - - - - - -SET _curgok = 0x20082 CHUNK( 'GOKD', 0x20082, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 410 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\fpar1.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20083, 0x20083); - CreateChildThis(0x20084, 0x20084); - CreateChildThis(0x20085, 0x20085); - CreateChildThis(0x20086, 0x20086); - CreateChildThis(0x20087, 0x20087); - CreateChildThis(0x20088, 0x20088); - CreateChildThis(0x20089, 0x20089); - CreateChildGob(0x20089, 0x2008A, 0x2008A); -ENDCHUNK - -SET _curgok = 0x2008B CHUNK( 'GOKD', 0x2008B, ) PACK SHORT BO OSK LONG 1 - LONG 0 0 433 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\spar1.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x2008C, 0x2008C); - CreateChildThis(0x2008D, 0x2008D); - CreateChildThis(0x2008E, 0x2008E); - CreateChildThis(0x2008F, 0x2008F); - CreateChildThis(0x20090, 0x20090); - CreateChildThis(0x20091, 0x20091); - CreateChildThis(0x20092, 0x20092); - CreateChildGob(0x20092, 0x20093, 0x20093); -ENDCHUNK - - - - -SET _curgok = 0x2005D CHUNK( 'GOKD', 0x2005D, ) PACK SHORT BO OSK LONG 1 - LONG 0 48 100 0 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 544 306 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - -SET _curgok = 0x20161 CHUNK( 'GOKD', 0x20161, ) PACK SHORT BO OSK LONG 3 - LONG 0 591 405 20 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dffill++ CHUNK( 'FILL', _dffill, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) LONG BO OSK 0 0 1 1 LONG 0xffffffff 0xffffffff BYTE 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x20005 CHUNK( 'GOKD', 0x20005, ) PACK SHORT BO OSK LONG 1 - LONG 0 49 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22334 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr1d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr1c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr1o.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - CreateChildGob(0x20002, 0x20010, 0x20010); - EnqueueCid(50004, 20000 + 5, 0, 0, 0, 0); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - If(0x20002->fEnableSceneTools); - ChangeStateGob(0x2000F, 0x0002); - Else; - ChangeStateGob(0x2000F, 0x0001); - End; - ChangeStateGob(0x20052, 0x0001); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20010)); - DestroyGob(0x20010); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateThis(0x0003); - End; -ENDCHUNK - - - - -SET _curgok = 0x20006 CHUNK( 'GOKD', 0x20006, ) PACK SHORT BO OSK LONG 1 - LONG 0 211 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22335 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 111, 41 ) "studio\bmp\covr2d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 111, 41 ) "studio\bmp\covr2c.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - CreateChildGob(0x20002, 0x20011, 0x20011); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - If(0x20002->fEnableActorTools); - ChangeStateGob(0x2000F, 0x0003); - Else; - ChangeStateGob(0x2000F, 0x0001); - End; - ChangeStateGob(0x20052, 0x0003); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20011)); - DestroyGob(0x20011); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateThis(0x0003); - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 111, 41 ) "studio\bmp\covr2o.bmp" ENDCHUNK - - - - -SET _curgok = 0x20007 CHUNK( 'GOKD', 0x20007, ) PACK SHORT BO OSK LONG 1 - LONG 0 433 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22336 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 110, 41 ) "studio\bmp\covr3d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 110, 41 ) "studio\bmp\covr3c.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - CreateChildGob(0x20002, 0x20012, 0x20012); - EnqueueCid(50103, 20000 + 5, 1, 0, 0, 0); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20012)); - DestroyGob(0x20012); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - EnqueueCid(50103, 20000 + 5, 0, 0, 0, 0); - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - ChangeStateThis(0x0003); - ChangeStateGob(0x2000F, 0x0004); - ChangeStateGob(0x20052, 0x0005); - EnqueueCid(50004, 20000 + 5, 36, 0, 0, 0); - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 110, 41 ) "studio\bmp\covr3o.bmp" ENDCHUNK - - - - -SET _curgok = 0x20008 CHUNK( 'GOKD', 0x20008, ) PACK SHORT BO OSK LONG 1 - LONG 0 592 41 20 - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22337 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr4d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr4c.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23001, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - CreateChildGob(0x20002, 0x20013, 0x20013); - ChangeStateGob(0x20002->idPriOpen, 0x0002); - 0x20002->idPriOpen = GidThis(); - ChangeStateGob(0x2000F, 0x0001); - If(0x20002->fEnableTboxTools); - ChangeStateGob(0x2000F, 0x0005); - Else; - ChangeStateGob(0x2000F, 0x0001); - End; - ChangeStateGob(0x20052, 0x0007); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If(FGobExists(0x20013)); - DestroyGob(0x20013); - If(0x20002->idPriOpen == GidThis()); - 0x20002->idPriOpen = 0x20000; - End; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If(0x20002->idPriOpen != GidThis()); - ChangeStateThis(0x0003); - EnqueueCid(50004, 20000 + 5, 2, 0, 0, 0); - End; -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 49, 41 ) "studio\bmp\covr4o.bmp" ENDCHUNK - - - - - -SET _curgok = 0x2000B CHUNK( 'GOKD', 0x2000B, ) PACK SHORT BO OSK LONG 1 - LONG 0 181 464 20 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 181, 54 ) "studio\bmp\covr5d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 181, 54 ) "studio\bmp\covr5c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 181, 54 ) "studio\bmp\covr5o.bmp" ENDCHUNK - - - - -SET _curgok = 0x2000D CHUNK( 'GOKD', 0x2000D, ) PACK SHORT BO OSK LONG 1 - LONG 0 419 464 20 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 55, 54 ) "studio\bmp\covr7d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 55, 54 ) "studio\bmp\covr7c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 55, 54 ) "studio\bmp\covr7o.bmp" ENDCHUNK - - - - -SET _curgok = 0x2000E CHUNK( 'GOKD', 0x2000E, ) PACK SHORT BO OSK LONG 1 - LONG 0 500 464 20 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 54 ) "studio\bmp\covr8d.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 54 ) "studio\bmp\covr8c.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 54 ) "studio\bmp\covr8o.bmp" ENDCHUNK - - - - - - - - - - - - - -SET _curgok = 0x20034 CHUNK( 'GOKD', 0x20034, ) PACK SHORT BO OSK LONG 1 - LONG 0 560 411 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22338 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\book.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\bookc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23007, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - CreateChildGob(0x20002, 0x00003002, 0x00003002); -ENDCHUNK - - - - -SET _curgok = 0x20160 CHUNK( 'GOKD', 0x20160, ) PACK SHORT BO OSK LONG 1 - LONG 0 560 411 10 - LONG 0 0 0xffffffff 0x00000001 0x0001 0 0xFFFFFFFF -ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 26, 0 ) "studio\bmp\gadg.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000041 ) BITMAP( 0x00, 26, 0 ) "studio\bmp\gadgblck.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000042 ) BITMAP( 0x00, 26, 0 ) "studio\bmp\gadgc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - cell = 0; - While(); - Cell(0x00000040 + cell, 0, 0, 30); - cell++; - cell = cell % 2; - End; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, 0x0001 ) SCRIPT - - CreateChildGob(0x20002, 0x00003031, 0x00003031); -ENDCHUNK - - - - -SET _curgok = 0x20035 CHUNK( 'GOKD', 0x20035, ) PACK SHORT BO OSK LONG 1 - LONG 0 613 411 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22339 - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\map.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\mapc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) - -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - CreateChildGob( 0x20002, 0x00012000, 0x00012000 ); -ENDCHUNK - - - - -SET _curgok = 0x20036 CHUNK( 'GOKD', 0x20036, ) PACK SHORT BO OSK LONG 1 - LONG 0 450 411 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233A -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\ccp.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\ccps.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - If (FGobExists(.idDown) && (.idDown != 0x20000)); - If (.idDown == 0x20052); - If (StateGob(0x20052) == 0x0002); - ChangeStateGob(.idDown, 0x0001); - Elif (StateGob(0x20052) == 0x0004); - ChangeStateGob(.idDown, 0x0003); - Elif (StateGob(0x20052) == 0x0006); - ChangeStateGob(.idDown, 0x0005); - Else; - ChangeStateGob(.idDown, 0x0007); - End; - Else; - ChangeStateGob(.idDown, 0x0001); - End; - End; - .idDown = 0x20000; -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - If (StateGob(0x2004F) != 0x0003); - ChangeStateGob(0x2004F, 0x0003); - End; -ENDCHUNK - - - - -SET _curgok = 0x20037 CHUNK( 'GOKD', 0x20037, ) PACK SHORT BO OSK LONG 1 - LONG 0 397 411 0 - LONG 0 0 0x00000008 0x00000001 SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233B - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233B -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\undod.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\undo.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\undos.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(133, 0, 0, 0, 0, 0); - ChangeStateThis(0x0002); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(134, 0, 0, 0, 0, 0); - ChangeStateThis(0x0003); -ENDCHUNK - - - - - - - - - - -SET _curgok = 0x20163 CHUNK( 'GOKD', 0x20163, ) PACK SHORT BO OSK LONG 3 LONG 0 0 0 1 LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF ENDCHUNK -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, -4, -2 ) "studio\bmp\volthmb.bmp" ENDCHUNK - -SET _curgok = 0x20038 CHUNK( 'GOKD', 0x20038, ) PACK SHORT BO OSK LONG 0 LONG 0 345 414 0 LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x2233C ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, 0x00000040 ) BITMAP( 0x00, 14, 0 ) "studio\bmp\vsld.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0010 _st ) SCRIPT - CreateChildThis(0x20163, 0x20163); - - - y = 35 - MulDiv( GetMasterVolume(), 35, (2*0x00010000)); - MoveAbsGob(0x20163, 0, y); -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) SCRIPT - - While (1); - - y = 35 - MulDiv( GetMasterVolume(), 35, (2*0x00010000) ); - MoveAbsGob(0x20163, 0, y); - Cell(0x00000040, 0, 0, 60); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) SCRIPT - - .siiLoop = PlaySoundThis('WAVE', 0x00010004, 2, 0x00010000, 30000, 1, 4); - While (1); - y = YMouseThis(); - If (y < 0); - y = 0; - Elif (y > 35); - y = 35; - End; - - - MoveAbsGob(0x20163, 0, y); - - - newvol = MulDiv( (2*0x00010000), (35-y), 35 ); - - - SetMasterVolume(newvol); - - - Cell(0, 0, 0, 10); - End; -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x001D _st ) SCRIPT - StopSound(.siiLoop); -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'GLSC', _dfanm, SET _st = 0x10000 SET _st |= 0x0018 _st ) - - - - -SET _curgok = 0x20039 CHUNK( 'GOKD', 0x20039, ) PACK SHORT BO OSK LONG 1 - LONG 0 314 414 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233D - LONG 0 0 0x00000004 0x00000001 SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233D -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\play.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playc1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\plays.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playc2.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playm1.bmp" ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000041 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\playm2.bmp" ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0003 SET _st <<= 16 SET _st += 0x0000 _st ) SCRIPT - chidcell = SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st; - While(); - Cell(chidcell, 0, 0, 20); - chidcell = (chidcell == SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st ? - SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000041 _st : - SET _st = 0x0003 SET _st <<= 16 SET _st += 0x00000040 _st); - End; -ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23032, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x001D _st ) -ADOPT( 'GOKD', _curgok, 'WAVE', 0x2303E, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x001D _st ) -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - - - - DestroyGob(0x20081); - SetZThis(0); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50005, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0002); - - - - If (StateGob(0x20005) == 0x0003); - - - ChangeStateGob(0x20002->idscnDown, 0x0001); - EnqueueCid(50004, 20000 + 5, 0, 0, 0, 0); - - Elif (StateGob(0x20006) == 0x0003); - - - ChangeStateGob(0x20017, 0x0002); - - Elif (StateGob(0x20007) == 0x0003); - - - ChangeStateGob(0x20026, 0x0002); - - Elif (StateGob(0x20008) == 0x0003); - - - ChangeStateGob(0x20030, 0x0002); - EnqueueCid(50004, 20000 + 5, 2, 0, 0, 0); - - End; - -ENDCHUNK -SET _dfanm++ CHUNK( 'GLSC', _dfanm, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0010 _st ) SCRIPT - - - - CreateChildGob(0x20002, 0x20081, 0x20081); - SetZThis(200); -ENDCHUNK -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50005, 20000 + 5, 0, 0, 0, 0); - ChangeStateThis(0x0001); -ENDCHUNK - - - - -SET _curgok = 0x2003C CHUNK( 'GOKD', 0x2003C, ) PACK SHORT BO OSK LONG 1 - LONG 0 507 411 0 - LONG 0 0 0x00000002 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x2233E - LONG 0 0 0xffffffff 0x00000002 0xFFFFFFFF 0 0xFFFFFFFF -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\port.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 26, 0 ) "studio\bmp\ports.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - ChangeStateGob(0x20047, 0x0003); -ENDCHUNK - - - - -SET _curgok = 0x20094 CHUNK( 'GOKD', 0x20094, ) PACK SHORT BO OSK LONG 6 - LONG 0 28 464 0 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 0, 0 ) "studio\bmp\name.bmp" ENDCHUNK - - - - - - - - - - - - -SET _curgok = 0x2003D CHUNK( 'GOKD', 0x2003D, ) PACK SHORT BO OSK LONG 1 - LONG 0 597 466 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x2233F -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\exit.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x10000 SET _st |= 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0003 _st ) BITMAP( 0x00, 13, 0 ) "studio\bmp\exitc.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'WAVE', 0x23046, SET _st = 0x10000 SET _st |= 0x001D _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0001 _st ) SCRIPT - EnqueueCid(50105, 0, 0, 0, 0, 0); -ENDCHUNK - - - - - - - - - - - -SET _curgok = 0x20042 CHUNK( 'GOKD', 0x20042, ) PACK SHORT BO OSK LONG 1 - LONG 0 51 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22340 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\1back.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\1backs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x2003E, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20075 CHUNK( 'GOKD', 0x20075, ) PACK SHORT BO OSK LONG 1 - LONG 0 147 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x22341 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2actr.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2actrs.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x2003F, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20076 CHUNK( 'GOKD', 0x20076, ) PACK SHORT BO OSK LONG 1 - LONG 0 213 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x22342 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2prop.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2props.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20040, 0x21120, 0x21010, - (4 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20077 CHUNK( 'GOKD', 0x20077, ) PACK SHORT BO OSK LONG 1 - LONG 0 279 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22343 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2splt.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\2splts.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50029, 0x20000, 0, 0, 0, 0); -ENDCHUNK - - - - -SET _curgok = 0x20078 CHUNK( 'GOKD', 0x20078, ) PACK SHORT BO OSK LONG 1 - LONG 0 367 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x10000 SET _st |= 0x0001 _st 0 0x22344 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3horn.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3horns.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20044, 0x21120, 0x21010, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20079 CHUNK( 'GOKD', 0x20079, ) PACK SHORT BO OSK LONG 1 - LONG 0 433 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22345 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3mike.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3mikes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20045, 0x21120, 0x21010, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x2007A CHUNK( 'GOKD', 0x2007A, ) PACK SHORT BO OSK LONG 1 - LONG 0 499 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22346 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x10000 SET _st |= 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3note.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\3notes.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - EnqueueCid(50018, 20000 + 5, 0x20043, 0x21120, 0x21010, - (6 << 16) | 4); -ENDCHUNK - - - - -SET _curgok = 0x20046 CHUNK( 'GOKD', 0x20046, ) PACK SHORT BO OSK LONG 1 - LONG 0 593 42 0 - LONG 0 0 0xffffffff 0x00000001 SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st 0 0x22347 -ENDCHUNK - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0000 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\4new.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0002 _st ) - -SET _dfmbmp++ CHUNK( 'MBMP', _dfmbmp, ) PACK PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0003 _st ) BITMAP( 0x00, 33, 41 ) "studio\bmp\4news.bmp" ENDCHUNK -ADOPT( 'GOKD', _curgok, 'MBMP', _dfmbmp, SET _st = 0x0002 SET _st <<= 16 SET _st += 0x0000 _st ) -SET _dfscr++ CHUNK( 'GLOP', _dfscr, ) PARENT( 'GOKD', _curgok, SET _st = 0x0001 SET _st <<= 16 SET _st += 0x0001 _st ) SCRIPT - CreateChildGob(0x20002, 0x2011D, 0x2011D); -ENDCHUNK - - - - - -CHUNK ('GST ' 2 "Miscellaneous strings") - LONG - GST(4) - ITEM "%d / %d" 0 - ITEM "Comic Sans MS" 7 - ITEM "Comic Sans MS" 8 - ITEM "Comic Sans MS" 9 - ITEM "Comic Sans MS" 10 - ITEM "Comic Sans MS" 11 - ITEM "Comic Sans MS" 13 - ITEM "14" 12 - ITEM "10" 29 -ENDCHUNK - - - diff --git a/OBJ/WINS/TDFMAKE.MAP b/OBJ/WINS/TDFMAKE.MAP deleted file mode 100644 index 55ef101f..00000000 --- a/OBJ/WINS/TDFMAKE.MAP +++ /dev/null @@ -1,1797 +0,0 @@ - tdfmake - - Timestamp is 3078e3b9 (Mon Oct 09 01:56:25 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 000454e0H .text CODE - 0002:00000000 00006eb0H .bss DATA - 0003:00000000 00000458H .rdata DATA - 0004:00000000 0000828aH .data DATA - 0004:0000828c 00000004H .CRT$XCA DATA - 0004:00008290 00000068H .CRT$XCU DATA - 0004:000082f8 00000004H .CRT$XCZ DATA - 0004:000082fc 00000004H .CRT$XIA DATA - 0004:00008300 0000000cH .CRT$XIC DATA - 0004:0000830c 00000004H .CRT$XIZ DATA - 0004:00008310 00000004H .CRT$XPA DATA - 0004:00008314 00000004H .CRT$XPX DATA - 0004:00008318 00000004H .CRT$XPZ DATA - 0004:0000831c 00000004H .CRT$XTA DATA - 0004:00008320 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000dcH .idata$4 DATA - 0005:00000140 000000dcH .idata$5 DATA - 0005:0000021c 000003a6H .idata$6 DATA - 0006:00000000 0000150dH CONST DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 000023c0H .debug$F DATA - 0008:000029f0 00000000H .debug$G DATA - 0008:000029f0 00000032H .debug$H DATA - 0008:fff9f000 00000000H .debug$P DATA - 0008:fff9f000 00000000H .debug$S DATA - 0008:fff9f000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 _main 00401000 f tdfmake.obj - 0001:00000240 ?FMakeTdf@@YGHPAVFNI@@PAVCFL@@@Z 00401240 f tdfmake.obj - 0001:00000710 ??_EBASE@@UAEPAXI@Z 00401710 f tdfmake.obj - 0001:00000710 ??_GBASE@@UAEPAXI@Z 00401710 f tdfmake.obj - 0001:00000880 ?FWouldBe@USAC@@SGHJ@Z 00401880 f utilglob.obj - 0001:000008a0 ?FIs@USAC@@UAEHJ@Z 004018a0 f utilglob.obj - 0001:000008b0 ?Cls@USAC@@UAEJXZ 004018b0 f utilglob.obj - 0001:00000990 ??_GKCDC@@UAEPAXI@Z 00401990 f utilglob.obj - 0001:00000990 ??_EKCDC@@UAEPAXI@Z 00401990 f utilglob.obj - 0001:000009b0 ?FCanDo@KCDC@@UAEHHJ@Z 004019b0 f utilglob.obj - 0001:000009f0 ?FWouldBe@BLL@@SGHJ@Z 004019f0 f base.obj - 0001:00000a10 ?FIs@BLL@@UAEHJ@Z 00401a10 f base.obj - 0001:00000a20 ?Cls@BLL@@UAEJXZ 00401a20 f base.obj - 0001:00000a30 ?Cls@BASE@@UAEJXZ 00401a30 f base.obj - 0001:00000a40 ?FIs@BASE@@UAEHJ@Z 00401a40 f base.obj - 0001:00000a60 ?FWouldBe@BASE@@SGHJ@Z 00401a60 f base.obj - 0001:00000a80 ??0BASE@@QAE@XZ 00401a80 f base.obj - 0001:00000a90 ?AddRef@BASE@@UAEXXZ 00401a90 f base.obj - 0001:00000aa0 ?Release@BASE@@UAEXXZ 00401aa0 f base.obj - 0001:00000ac0 ??2BASE@@SGPAXI@Z 00401ac0 f base.obj - 0001:00000af0 ??3BASE@@SGXPAX@Z 00401af0 f base.obj - 0001:00000b00 ??0BLL@@QAE@XZ 00401b00 f base.obj - 0001:00000b20 ??1BLL@@UAE@XZ 00401b20 f base.obj - 0001:00000b40 ?_Attach@BLL@@IAEXPAX@Z 00401b40 f base.obj - 0001:00000bb0 ??_GBLL@@UAEPAXI@Z 00401bb0 f base.obj - 0001:00000bb0 ??_EBLL@@UAEPAXI@Z 00401bb0 f base.obj - 0001:00000bd0 ?FillPb@@YGXPAXJE@Z 00401bd0 f utilcopy.obj - 0001:00000c10 ?ClearPb@@YGXPAXJ@Z 00401c10 f utilcopy.obj - 0001:00000c40 ?FEqualRgb@@YGHPAX0J@Z 00401c40 f utilcopy.obj - 0001:00000c80 ?CbEqualRgb@@YGJPAX0J@Z 00401c80 f utilcopy.obj - 0001:00000ce0 ?CopyPb@@YGXPAX0J@Z 00401ce0 f utilcopy.obj - 0001:00000d10 ?BltPb@@YGXPAX0J@Z 00401d10 f utilcopy.obj - 0001:00000d80 ?FWouldBe@ERS@@SGHJ@Z 00401d80 f utilerro.obj - 0001:00000da0 ?FIs@ERS@@UAEHJ@Z 00401da0 f utilerro.obj - 0001:00000db0 ?Cls@ERS@@UAEJXZ 00401db0 f utilerro.obj - 0001:00000dc0 ??0ERS@@QAE@XZ 00401dc0 f utilerro.obj - 0001:00000df0 ?Push@ERS@@UAEXJ@Z 00401df0 f utilerro.obj - 0001:00000e40 ?FPop@ERS@@UAEHPAJ@Z 00401e40 f utilerro.obj - 0001:00000e90 ?Clear@ERS@@UAEXXZ 00401e90 f utilerro.obj - 0001:00000eb0 ?Cerc@ERS@@UAEJXZ 00401eb0 f utilerro.obj - 0001:00000ec0 ?FIn@ERS@@UAEHJ@Z 00401ec0 f utilerro.obj - 0001:00000f10 ?ErcGet@ERS@@UAEJJ@Z 00401f10 f utilerro.obj - 0001:00000f50 ?Flush@ERS@@UAEXJ@Z 00401f50 f utilerro.obj - 0001:00000ff0 ??_GERS@@UAEPAXI@Z 00401ff0 f utilerro.obj - 0001:00000ff0 ??_EERS@@UAEPAXI@Z 00401ff0 f utilerro.obj - 0001:00001030 ?SwapBytesBom@@YGXPAXK@Z 00402030 f utilint.obj - 0001:00001090 ?SwapBytesRglw@@YGXPAXJ@Z 00402090 f utilint.obj - 0001:000010c0 ??0USAC@@QAE@XZ 004020c0 f utilint.obj - 0001:000010f0 ?Set@DVER@@QAEXFF@Z 004020f0 f utilint.obj - 0001:00001120 ??_GUSAC@@UAEPAXI@Z 00402120 f utilint.obj - 0001:00001120 ??_EUSAC@@UAEPAXI@Z 00402120 f utilint.obj - 0001:00001140 ?FAllocPv@@YGHPAPAXJKJ@Z 00402140 f utilmem.obj - 0001:00001210 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00402210 f utilmem.obj - 0001:00001300 ?FreePpv@@YGXPAPAX@Z 00402300 f utilmem.obj - 0001:00001340 ?FWouldBe@RND@@SGHJ@Z 00402340 f utilrnd.obj - 0001:00001360 ?FIs@RND@@UAEHJ@Z 00402360 f utilrnd.obj - 0001:00001370 ?Cls@RND@@UAEJXZ 00402370 f utilrnd.obj - 0001:00001380 ?FWouldBe@SFL@@SGHJ@Z 00402380 f utilrnd.obj - 0001:000013a0 ?FIs@SFL@@UAEHJ@Z 004023a0 f utilrnd.obj - 0001:000013b0 ?Cls@SFL@@UAEJXZ 004023b0 f utilrnd.obj - 0001:000013c0 ??0RND@@QAE@K@Z 004023c0 f utilrnd.obj - 0001:00001400 ?LwNext@RND@@UAEJJ@Z 00402400 f utilrnd.obj - 0001:00001430 ??0SFL@@QAE@K@Z 00402430 f utilrnd.obj - 0001:00001460 ??1SFL@@UAE@XZ 00402460 f utilrnd.obj - 0001:00001480 ?Shuffle@SFL@@QAEXJ@Z 00402480 f utilrnd.obj - 0001:000014c0 ?_ShuffleCore@SFL@@IAEXXZ 004024c0 f utilrnd.obj - 0001:00001510 ?_FEnsureHq@SFL@@IAEHJ@Z 00402510 f utilrnd.obj - 0001:00001580 ?LwNext@SFL@@UAEJJ@Z 00402580 f utilrnd.obj - 0001:00001610 ??_GRND@@UAEPAXI@Z 00402610 f utilrnd.obj - 0001:00001610 ??_ERND@@UAEPAXI@Z 00402610 f utilrnd.obj - 0001:00001630 ??_ESFL@@UAEPAXI@Z 00402630 f utilrnd.obj - 0001:00001630 ??_GSFL@@UAEPAXI@Z 00402630 f utilrnd.obj - 0001:00001650 ??4STN@@QAEAAV0@AAV0@@Z 00402650 f utilstr.obj - 0001:00001670 ?SetRgch@STN@@QAEXPADJ@Z 00402670 f utilstr.obj - 0001:000016b0 ?Delete@STN@@QAEXJJ@Z 004026b0 f utilstr.obj - 0001:00001710 ?FAppendRgch@STN@@QAEHPADJ@Z 00402710 f utilstr.obj - 0001:00001760 ?FInsertRgch@STN@@QAEHJPADJ@Z 00402760 f utilstr.obj - 0001:00001820 ?FEqualRgch@STN@@QAEHPADJ@Z 00402820 f utilstr.obj - 0001:00001850 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402850 f utilstr.obj - 0001:00001870 ?FFormatSz@STN@@QAAHPADZZ 00402870 f utilstr.obj - 0001:00001890 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00402890 f utilstr.obj - 0001:00001c10 ?FGetLw@STN@@QAEHPAJJ@Z 00402c10 f utilstr.obj - 0001:00001d00 ?CchSz@@YGJPAD@Z 00402d00 f utilstr.obj - 0001:00001d20 ?FEqualUserRgch@@YGHPADJ0JK@Z 00402d20 f utilstr.obj - 0001:00001e10 ?UpperRgchs@@YGXPADJ@Z 00402e10 f utilstr.obj - 0001:00001e80 ?FAllocHq@@YGHPAPAXJKJ@Z 00402e80 f memwin.obj - 0001:00001ef0 ?FResizePhq@@YGHPAPAXJKJ@Z 00402ef0 f memwin.obj - 0001:00001f90 ?FreePhq@@YGXPAPAX@Z 00402f90 f memwin.obj - 0001:00001fc0 ?CbOfHq@@YGJPAX@Z 00402fc0 f memwin.obj - 0001:00001fd0 ?PvLockHq@@YGPAXPAX@Z 00402fd0 f memwin.obj - 0001:00001fe0 ?UnlockHq@@YGXPAX@Z 00402fe0 f memwin.obj - 0001:00002080 ?FWouldBe@GRPB@@SGHJ@Z 00403080 f groups.obj - 0001:000020a0 ?FIs@GRPB@@UAEHJ@Z 004030a0 f groups.obj - 0001:000020b0 ?Cls@GRPB@@UAEJXZ 004030b0 f groups.obj - 0001:000020c0 ?FWouldBe@GLB@@SGHJ@Z 004030c0 f groups.obj - 0001:000020e0 ?FIs@GLB@@UAEHJ@Z 004030e0 f groups.obj - 0001:000020f0 ?Cls@GLB@@UAEJXZ 004030f0 f groups.obj - 0001:00002100 ?FWouldBe@GL@@SGHJ@Z 00403100 f groups.obj - 0001:00002120 ?FIs@GL@@UAEHJ@Z 00403120 f groups.obj - 0001:00002130 ?Cls@GL@@UAEJXZ 00403130 f groups.obj - 0001:00002140 ?FWouldBe@GGB@@SGHJ@Z 00403140 f groups.obj - 0001:00002160 ?FIs@GGB@@UAEHJ@Z 00403160 f groups.obj - 0001:00002170 ?Cls@GGB@@UAEJXZ 00403170 f groups.obj - 0001:00002180 ?FWouldBe@GG@@SGHJ@Z 00403180 f groups.obj - 0001:000021a0 ?FIs@GG@@UAEHJ@Z 004031a0 f groups.obj - 0001:000021b0 ?Cls@GG@@UAEJXZ 004031b0 f groups.obj - 0001:000021c0 ??1GRPB@@UAE@XZ 004031c0 f groups.obj - 0001:000021f0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 004031f0 f groups.obj - 0001:000022d0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 004032d0 f groups.obj - 0001:000023a0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 004033a0 f groups.obj - 0001:000023f0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 004033f0 f groups.obj - 0001:000024c0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 004034c0 f groups.obj - 0001:00002580 ??0GLB@@IAE@J@Z 00403580 f groups.obj - 0001:000025b0 ?QvGet@GLB@@QAEPAXJ@Z 004035b0 f groups.obj - 0001:000025d0 ?Get@GLB@@QAEXJPAX@Z 004035d0 f groups.obj - 0001:000025f0 ?Put@GLB@@QAEXJPAX@Z 004035f0 f groups.obj - 0001:00002610 ?PglNew@GL@@SGPAV1@JJ@Z 00403610 f groups.obj - 0001:00002670 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 00403670 f groups.obj - 0001:000026d0 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 004036d0 f groups.obj - 0001:00002720 ??0GL@@IAE@J@Z 00403720 f groups.obj - 0001:00002740 ?FFree@GL@@UAEHJ@Z 00403740 f groups.obj - 0001:00002760 ?CbOnFile@GL@@UAEJXZ 00403760 f groups.obj - 0001:00002770 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00403770 f groups.obj - 0001:000027e0 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 004037e0 f groups.obj - 0001:000028b0 ?FInsert@GL@@QAEHJPAXJ@Z 004038b0 f groups.obj - 0001:00002950 ?Delete@GL@@UAEXJ@Z 00403950 f groups.obj - 0001:00002960 ?Delete@GL@@QAEXJJ@Z 00403960 f groups.obj - 0001:000029a0 ?FAdd@GL@@UAEHPAXPAJ@Z 004039a0 f groups.obj - 0001:000029d0 ?FPop@GL@@QAEHPAX@Z 004039d0 f groups.obj - 0001:00002a00 ?FEnsureSpace@GL@@QAEHJK@Z 00403a00 f groups.obj - 0001:00002a40 ??0GGB@@IAE@JH@Z 00403a40 f groups.obj - 0001:00002a80 ?CbOnFile@GGB@@UAEJXZ 00403a80 f groups.obj - 0001:00002a90 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00403a90 f groups.obj - 0001:00002b80 ?FFree@GGB@@UAEHJ@Z 00403b80 f groups.obj - 0001:00002bb0 ?FEnsureSpace@GGB@@QAEHJJK@Z 00403bb0 f groups.obj - 0001:00002c40 ?_RemoveRgb@GGB@@IAEXJJ@Z 00403c40 f groups.obj - 0001:00002c90 ?_AdjustLocs@GGB@@IAEXJJJ@Z 00403c90 f groups.obj - 0001:00002ce0 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00403ce0 f groups.obj - 0001:00002d20 ?QvGet@GGB@@QAEPAXJPAJ@Z 00403d20 f groups.obj - 0001:00002d60 ?GetRgb@GGB@@QAEXJJJPAX@Z 00403d60 f groups.obj - 0001:00002da0 ?DeleteRgb@GGB@@QAEXJJJ@Z 00403da0 f groups.obj - 0001:00002e30 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00403e30 f groups.obj - 0001:00002f50 ?PggNew@GG@@SGPAV1@JJJ@Z 00403f50 f groups.obj - 0001:00002fc0 ?FInsert@GG@@QAEHJJPAX0@Z 00403fc0 f groups.obj - 0001:00003090 ?FAdd@GG@@UAEHJPAJPAX1@Z 00404090 f groups.obj - 0001:000030c0 ?Delete@GG@@UAEXJ@Z 004040c0 f groups.obj - 0001:00003130 ??_GGRPB@@UAEPAXI@Z 00404130 f groups.obj - 0001:00003130 ??_EGRPB@@UAEPAXI@Z 00404130 f groups.obj - 0001:00003150 ??_GGG@@UAEPAXI@Z 00404150 f groups.obj - 0001:00003150 ??_EGG@@UAEPAXI@Z 00404150 f groups.obj - 0001:00003170 ??_EGLB@@UAEPAXI@Z 00404170 f groups.obj - 0001:00003170 ??_GGLB@@UAEPAXI@Z 00404170 f groups.obj - 0001:00003190 ??_GGL@@UAEPAXI@Z 00404190 f groups.obj - 0001:00003190 ??_EGL@@UAEPAXI@Z 00404190 f groups.obj - 0001:000031b0 ??_EGGB@@UAEPAXI@Z 004041b0 f groups.obj - 0001:000031b0 ??_GGGB@@UAEPAXI@Z 004041b0 f groups.obj - 0001:00003210 ?FWouldBe@CFL@@SGHJ@Z 00404210 f chunk.obj - 0001:00003230 ?FIs@CFL@@UAEHJ@Z 00404230 f chunk.obj - 0001:00003240 ?Cls@CFL@@UAEJXZ 00404240 f chunk.obj - 0001:00003250 ?FWouldBe@CGE@@SGHJ@Z 00404250 f chunk.obj - 0001:00003270 ?FIs@CGE@@UAEHJ@Z 00404270 f chunk.obj - 0001:00003280 ?Cls@CGE@@UAEJXZ 00404280 f chunk.obj - 0001:00003290 ??0CFL@@AAE@XZ 00404290 f chunk.obj - 0001:000032b0 ??1CFL@@EAE@XZ 004042b0 f chunk.obj - 0001:00003350 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00404350 f chunk.obj - 0001:00003370 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00404370 f chunk.obj - 0001:00003420 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00404420 f chunk.obj - 0001:00003460 ?FSetGrfcfl@CFL@@QAEHKK@Z 00404460 f chunk.obj - 0001:00003500 ?Release@CFL@@UAEXXZ 00404500 f chunk.obj - 0001:00003520 ?_ReadFreeMap@CFL@@AAEXXZ 00404520 f chunk.obj - 0001:000035a0 ?FSave@CFL@@QAEHKPAVFNI@@@Z 004045a0 f chunk.obj - 0001:000038c0 ?_FWriteIndex@CFL@@AAEHK@Z 004048c0 f chunk.obj - 0001:00003a10 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00404a10 f chunk.obj - 0001:00003b10 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00404b10 f chunk.obj - 0001:00003b70 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00404b70 f chunk.obj - 0001:00003bb0 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00404bb0 f chunk.obj - 0001:00003c10 ?SetPacked@CFL@@QAEXKKH@Z 00404c10 f chunk.obj - 0001:00003c90 ?FPacked@CFL@@QAEHKK@Z 00404c90 f chunk.obj - 0001:00003ce0 ?FPackData@CFL@@QAEHKK@Z 00404ce0 f chunk.obj - 0001:00003d80 ?_FCreateExtra@CFL@@AAEHXZ 00404d80 f chunk.obj - 0001:00003db0 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00404db0 f chunk.obj - 0001:00003ec0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00404ec0 f chunk.obj - 0001:00003f60 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00404f60 f chunk.obj - 0001:00003fe0 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00404fe0 f chunk.obj - 0001:00004030 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00405030 f chunk.obj - 0001:00004110 ?FPutPv@CFL@@QAEHPAXJKK@Z 00405110 f chunk.obj - 0001:00004130 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 00405130 f chunk.obj - 0001:00004190 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00405190 f chunk.obj - 0001:000043a0 ?Delete@CFL@@QAEXKK@Z 004053a0 f chunk.obj - 0001:00004540 ?CckiRef@CFL@@QAEJKK@Z 00405540 f chunk.obj - 0001:00004590 ?TIsDescendent@CFL@@QAEHKKKK@Z 00405590 f chunk.obj - 0001:00004660 ?_FDecRefCount@CFL@@AAEHJ@Z 00405660 f chunk.obj - 0001:000046a0 ?_DeleteCore@CFL@@AAEXJ@Z 004056a0 f chunk.obj - 0001:00004700 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00405700 f chunk.obj - 0001:000048e0 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 004058e0 f chunk.obj - 0001:00004970 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 00405970 f chunk.obj - 0001:00004a90 ?Ckid@CFL@@QAEJKK@Z 00405a90 f chunk.obj - 0001:00004ae0 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00405ae0 f chunk.obj - 0001:00004b60 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00405b60 f chunk.obj - 0001:00004c20 ?_FSetRti@CFL@@AAEHKKJ@Z 00405c20 f chunk.obj - 0001:00004cf0 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00405cf0 f chunk.obj - 0001:00004dc0 ??0CGE@@QAE@XZ 00405dc0 f chunk.obj - 0001:00004de0 ??1CGE@@UAE@XZ 00405de0 f chunk.obj - 0001:00004e10 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00405e10 f chunk.obj - 0001:00004e50 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00405e50 f chunk.obj - 0001:00005030 ??_ECFL@@EAEPAXI@Z 00406030 f chunk.obj - 0001:00005030 ??_GCFL@@EAEPAXI@Z 00406030 f chunk.obj - 0001:00005050 ??_GCGE@@UAEPAXI@Z 00406050 f chunk.obj - 0001:00005050 ??_ECGE@@UAEPAXI@Z 00406050 f chunk.obj - 0001:00005070 ?FWouldBe@CODM@@SGHJ@Z 00406070 f codec.obj - 0001:00005090 ?FIs@CODM@@UAEHJ@Z 00406090 f codec.obj - 0001:000050a0 ?Cls@CODM@@UAEJXZ 004060a0 f codec.obj - 0001:000050b0 ?FWouldBe@CODC@@SGHJ@Z 004060b0 f codec.obj - 0001:000050d0 ??0CODM@@QAE@PAVCODC@@J@Z 004060d0 f codec.obj - 0001:00005110 ??1CODM@@UAE@XZ 00406110 f codec.obj - 0001:00005190 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00406190 f codec.obj - 0001:000051e0 ?FCanDo@CODM@@UAEHJH@Z 004061e0 f codec.obj - 0001:00005210 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00406210 f codec.obj - 0001:00005290 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00406290 f codec.obj - 0001:00005340 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00406340 f codec.obj - 0001:00005460 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00406460 f codec.obj - 0001:00005670 ??_GCODM@@UAEPAXI@Z 00406670 f codec.obj - 0001:00005670 ??_ECODM@@UAEPAXI@Z 00406670 f codec.obj - 0001:00005690 ?FWouldBe@KCDC@@SGHJ@Z 00406690 f codkauai.obj - 0001:000056b0 ?FIs@KCDC@@UAEHJ@Z 004066b0 f codkauai.obj - 0001:000056c0 ?Cls@KCDC@@UAEJXZ 004066c0 f codkauai.obj - 0001:000056d0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 004066d0 f codkauai.obj - 0001:00005750 ?Set@BITA@@QAEXPAXJ@Z 00406750 f codkauai.obj - 0001:00005770 ?FWriteBits@BITA@@QAEHKJ@Z 00406770 f codkauai.obj - 0001:00005830 ?FWriteLogEncoded@BITA@@QAEHK@Z 00406830 f codkauai.obj - 0001:00005880 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00406880 f codkauai.obj - 0001:00005b90 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00406b90 f codkauai.obj - 0001:000094c0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040a4c0 f codkauai.obj - 0001:000098a0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040a8a0 f codkauai.obj - 0001:0000be30 ?FWouldBe@BACO@@SGHJ@Z 0040ce30 f crf.obj - 0001:0000be50 ?FIs@BACO@@UAEHJ@Z 0040ce50 f crf.obj - 0001:0000be60 ?Cls@BACO@@UAEJXZ 0040ce60 f crf.obj - 0001:0000be70 ?FWouldBe@RCA@@SGHJ@Z 0040ce70 f crf.obj - 0001:0000be90 ?FWouldBe@CRF@@SGHJ@Z 0040ce90 f crf.obj - 0001:0000beb0 ?FIs@CRF@@UAEHJ@Z 0040ceb0 f crf.obj - 0001:0000bec0 ?Cls@CRF@@UAEJXZ 0040cec0 f crf.obj - 0001:0000bed0 ??0BACO@@IAE@XZ 0040ced0 f crf.obj - 0001:0000bf00 ??1BACO@@MAE@XZ 0040cf00 f crf.obj - 0001:0000bf30 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0040cf30 f crf.obj - 0001:0000bf70 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0040cf70 f crf.obj - 0001:0000bf80 ?CbOnFile@BACO@@UAEJXZ 0040cf80 f crf.obj - 0001:0000bf90 ?Release@BACO@@UAEXXZ 0040cf90 f crf.obj - 0001:0000bfe0 ?Detach@BACO@@UAEXXZ 0040cfe0 f crf.obj - 0001:0000c020 ?SetCrep@BACO@@UAEXJ@Z 0040d020 f crf.obj - 0001:0000c050 ??0CRF@@IAE@PAVCFL@@J@Z 0040d050 f crf.obj - 0001:0000c080 ??1CRF@@UAE@XZ 0040d080 f crf.obj - 0001:0000c110 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 0040d110 f crf.obj - 0001:0000c160 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 0040d160 f crf.obj - 0001:0000c440 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 0040d440 f crf.obj - 0001:0000c630 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 0040d630 f crf.obj - 0001:0000c6a0 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 0040d6a0 f crf.obj - 0001:0000c720 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 0040d720 f crf.obj - 0001:0000c770 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 0040d770 f crf.obj - 0001:0000c7c0 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 0040d7c0 f crf.obj - 0001:0000c840 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 0040d840 f crf.obj - 0001:0000c8f0 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 0040d8f0 f crf.obj - 0001:0000ca20 ?_FPurgeCb@CRF@@IAEHJJ@Z 0040da20 f crf.obj - 0001:0000cb40 ??_EBACO@@MAEPAXI@Z 0040db40 f crf.obj - 0001:0000cb40 ??_GBACO@@MAEPAXI@Z 0040db40 f crf.obj - 0001:0000cb60 ??_ECRF@@UAEPAXI@Z 0040db60 f crf.obj - 0001:0000cb60 ??_GCRF@@UAEPAXI@Z 0040db60 f crf.obj - 0001:0000cb90 ?FWouldBe@FIL@@SGHJ@Z 0040db90 f file.obj - 0001:0000cbb0 ?FIs@FIL@@UAEHJ@Z 0040dbb0 f file.obj - 0001:0000cbc0 ?Cls@FIL@@UAEJXZ 0040dbc0 f file.obj - 0001:0000cbd0 ?FWouldBe@BLCK@@SGHJ@Z 0040dbd0 f file.obj - 0001:0000cbf0 ?FIs@BLCK@@UAEHJ@Z 0040dbf0 f file.obj - 0001:0000cc00 ?Cls@BLCK@@UAEJXZ 0040dc00 f file.obj - 0001:0000cc10 ??0FIL@@IAE@PAVFNI@@K@Z 0040dc10 f file.obj - 0001:0000cc80 ??1FIL@@MAE@XZ 0040dc80 f file.obj - 0001:0000ccd0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0040dcd0 f file.obj - 0001:0000cd60 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0040dd60 f file.obj - 0001:0000cdf0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0040ddf0 f file.obj - 0001:0000ce50 ?FSetGrffil@FIL@@QAEHKK@Z 0040de50 f file.obj - 0001:0000cee0 ?Release@FIL@@UAEXXZ 0040dee0 f file.obj - 0001:0000cf10 ?SetTemp@FIL@@QAEXH@Z 0040df10 f file.obj - 0001:0000cf80 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0040df80 f file.obj - 0001:0000cfd0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0040dfd0 f file.obj - 0001:0000d020 ?FCopy@FLO@@QAEHPAU1@@Z 0040e020 f file.obj - 0001:0000d0f0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0040e0f0 f file.obj - 0001:0000d170 ??0BLCK@@QAE@PAUFLO@@H@Z 0040e170 f file.obj - 0001:0000d1c0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0040e1c0 f file.obj - 0001:0000d200 ??0BLCK@@QAE@XZ 0040e200 f file.obj - 0001:0000d220 ??1BLCK@@UAE@XZ 0040e220 f file.obj - 0001:0000d240 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0040e240 f file.obj - 0001:0000d280 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0040e280 f file.obj - 0001:0000d2c0 ?SetHq@BLCK@@QAEXPAPAXH@Z 0040e2c0 f file.obj - 0001:0000d300 ?Free@BLCK@@QAEXXZ 0040e300 f file.obj - 0001:0000d330 ?HqFree@BLCK@@QAEPAXH@Z 0040e330 f file.obj - 0001:0000d3e0 ?Cb@BLCK@@QAEJH@Z 0040e3e0 f file.obj - 0001:0000d400 ?FMoveMin@BLCK@@QAEHJ@Z 0040e400 f file.obj - 0001:0000d470 ?FMoveLim@BLCK@@QAEHJ@Z 0040e470 f file.obj - 0001:0000d4e0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0040e4e0 f file.obj - 0001:0000d570 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0040e570 f file.obj - 0001:0000d600 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0040e600 f file.obj - 0001:0000d680 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0040e680 f file.obj - 0001:0000d720 ?FPacked@BLCK@@QAEHPAJ@Z 0040e720 f file.obj - 0001:0000d760 ?FPackData@BLCK@@QAEHJ@Z 0040e760 f file.obj - 0001:0000d880 ?FUnpackData@BLCK@@QAEHXZ 0040e880 f file.obj - 0001:0000d9b0 ??_GFIL@@MAEPAXI@Z 0040e9b0 f file.obj - 0001:0000d9b0 ??_EFIL@@MAEPAXI@Z 0040e9b0 f file.obj - 0001:0000d9d0 ??_EBLCK@@UAEPAXI@Z 0040e9d0 f file.obj - 0001:0000d9d0 ??_GBLCK@@UAEPAXI@Z 0040e9d0 f file.obj - 0001:0000da40 ?_FOpen@FIL@@IAEHHK@Z 0040ea40 f filewin.obj - 0001:0000db40 ?_Close@FIL@@IAEXH@Z 0040eb40 f filewin.obj - 0001:0000dbb0 ?Flush@FIL@@QAEXXZ 0040ebb0 f filewin.obj - 0001:0000dbe0 ?_SetFpPos@FIL@@IAEXJ@Z 0040ebe0 f filewin.obj - 0001:0000dc40 ?FSetFpMac@FIL@@QAEHJ@Z 0040ec40 f filewin.obj - 0001:0000dcd0 ?FpMac@FIL@@QAEJXZ 0040ecd0 f filewin.obj - 0001:0000dd60 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040ed60 f filewin.obj - 0001:0000de10 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040ee10 f filewin.obj - 0001:0000ded0 ?FSwapNames@FIL@@QAEHPAV1@@Z 0040eed0 f filewin.obj - 0001:0000e0b0 ?FRename@FIL@@QAEHPAVFNI@@@Z 0040f0b0 f filewin.obj - 0001:0000e170 ?FWouldBe@FNI@@SGHJ@Z 0040f170 f fniwin.obj - 0001:0000e190 ?FIs@FNI@@UAEHJ@Z 0040f190 f fniwin.obj - 0001:0000e1a0 ?Cls@FNI@@UAEJXZ 0040f1a0 f fniwin.obj - 0001:0000e1b0 ?FWouldBe@FNE@@SGHJ@Z 0040f1b0 f fniwin.obj - 0001:0000e1d0 ?FIs@FNE@@UAEHJ@Z 0040f1d0 f fniwin.obj - 0001:0000e1e0 ?Cls@FNE@@UAEJXZ 0040f1e0 f fniwin.obj - 0001:0000e1f0 ?SetNil@FNI@@QAEXXZ 0040f1f0 f fniwin.obj - 0001:0000e200 ??0FNI@@QAE@XZ 0040f200 f fniwin.obj - 0001:0000e230 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040f230 f fniwin.obj - 0001:0000e380 ?FGetUnique@FNI@@QAEHJ@Z 0040f380 f fniwin.obj - 0001:0000e490 ?FGetTemp@FNI@@QAEHXZ 0040f490 f fniwin.obj - 0001:0000e530 ?Ftg@FNI@@QAEJXZ 0040f530 f fniwin.obj - 0001:0000e540 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0040f540 f fniwin.obj - 0001:0000e5b0 ?FChangeFtg@FNI@@QAEHJ@Z 0040f5b0 f fniwin.obj - 0001:0000e660 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0040f660 f fniwin.obj - 0001:0000e6a0 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 0040f6a0 f fniwin.obj - 0001:0000e6b0 ?TExists@FNI@@QAEHXZ 0040f6b0 f fniwin.obj - 0001:0000e7b0 ?FDelete@FNI@@QAEHXZ 0040f7b0 f fniwin.obj - 0001:0000e7e0 ?FRename@FNI@@QAEHPAV1@@Z 0040f7e0 f fniwin.obj - 0001:0000e830 ?FEqual@FNI@@QAEHPAV1@@Z 0040f830 f fniwin.obj - 0001:0000e850 ?FDownDir@FNI@@QAEHPAVSTN@@K@Z 0040f850 f fniwin.obj - 0001:0000e950 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 0040f950 f fniwin.obj - 0001:0000ea80 ?_CchExt@FNI@@AAEJXZ 0040fa80 f fniwin.obj - 0001:0000eac0 ?_SetFtgFromName@FNI@@AAEXXZ 0040fac0 f fniwin.obj - 0001:0000eb40 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0040fb40 f fniwin.obj - 0001:0000ec60 ??0FNE@@QAE@XZ 0040fc60 f fniwin.obj - 0001:0000eca0 ??1FNE@@UAE@XZ 0040fca0 f fniwin.obj - 0001:0000ecc0 ?_Free@FNE@@AAEXXZ 0040fcc0 f fniwin.obj - 0001:0000ed30 ?FInit@FNE@@QAEHPAVFNI@@PAJJK@Z 0040fd30 f fniwin.obj - 0001:0000eea0 ?FNextFni@FNE@@QAEHPAVFNI@@PAKK@Z 0040fea0 f fniwin.obj - 0001:0000f1f0 ?_FPop@FNE@@AAEHXZ 004101f0 f fniwin.obj - 0001:0000f260 ??_GFNI@@UAEPAXI@Z 00410260 f fniwin.obj - 0001:0000f260 ??_EFNI@@UAEPAXI@Z 00410260 f fniwin.obj - 0001:0000f280 ??_GFNE@@UAEPAXI@Z 00410280 f fniwin.obj - 0001:0000f280 ??_EFNE@@UAEPAXI@Z 00410280 f fniwin.obj - 0001:0000f29c _timeGetTime@0 0041029c winmm:WINMM.dll - 0001:0000f2b0 _BrBegin 004102b0 brfwmxr:fwsetup.obj - 0001:0000f3b4 _BrEnd 004103b4 brfwmxr:fwsetup.obj - 0001:0000f3d7 _BrDiagHandlerSet 004103d7 brfwmxr:fwsetup.obj - 0001:0000f3f6 _BrFilesystemSet 004103f6 brfwmxr:fwsetup.obj - 0001:0000f415 _BrAllocatorSet 00410415 brfwmxr:fwsetup.obj - 0001:0000f434 _BrFixedAbs 00410434 brfwmxr:fixed386.obj - 0001:0000f444 _BrFixedMul 00410444 brfwmxr:fixed386.obj - 0001:0000f455 _BrFixedMac2 00410455 brfwmxr:fixed386.obj - 0001:0000f478 _BrFixedMac3 00410478 brfwmxr:fixed386.obj - 0001:0000f4a5 _BrFixedMac4 004104a5 brfwmxr:fixed386.obj - 0001:0000f4dc _BrFixedLength2 004104dc brfwmxr:fixed386.obj - 0001:0000f500 _BrFixedLength3 00410500 brfwmxr:fixed386.obj - 0001:0000f52d _BrFixedLength4 0041052d brfwmxr:fixed386.obj - 0001:0000f563 _BrFixedRLength2 00410563 brfwmxr:fixed386.obj - 0001:0000f587 _BrFixedRLength3 00410587 brfwmxr:fixed386.obj - 0001:0000f5b4 _BrFixedRLength4 004105b4 brfwmxr:fixed386.obj - 0001:0000f5ea _BrFixedDiv 004105ea brfwmxr:fixed386.obj - 0001:0000f5ff _BrFixedDivR 004105ff brfwmxr:fixed386.obj - 0001:0000f615 _BrFixedDivF 00410615 brfwmxr:fixed386.obj - 0001:0000f628 _BrFixedMulDiv 00410628 brfwmxr:fixed386.obj - 0001:0000f638 _BrFixedMac2Div 00410638 brfwmxr:fixed386.obj - 0001:0000f65a _BrFixedMac3Div 0041065a f brfwmxr:fixed386.obj - 0001:0000f686 _BrFixedMac4Div 00410686 brfwmxr:fixed386.obj - 0001:0000f6bc _BrFixedFMac2 004106bc brfwmxr:fixed386.obj - 0001:0000f6e1 _BrFixedFMac3 004106e1 brfwmxr:fixed386.obj - 0001:0000f711 _BrFixedFMac4 00410711 brfwmxr:fixed386.obj - 0001:0000f74c _BrFixedRcp 0041074c brfwmxr:fixed386.obj - 0001:0000f75d _BrFixedSqr 0041075d brfwmxr:fixed386.obj - 0001:0000f76d _BrFixedSqr2 0041076d brfwmxr:fixed386.obj - 0001:0000f78e _BrFixedSqr3 0041078e brfwmxr:fixed386.obj - 0001:0000f7b8 _BrFixedSqr4 004107b8 brfwmxr:fixed386.obj - 0001:0000f7eb _BrFixedSin 004107eb brfwmxr:fixed386.obj - 0001:0000f81c _BrFixedCos 0041081c brfwmxr:fixed386.obj - 0001:0000f84d _BrFixedASin 0041084d brfwmxr:fixed386.obj - 0001:0000f881 _BrFixedACos 00410881 brfwmxr:fixed386.obj - 0001:0000f8b5 _BrFixedATan2 004108b5 brfwmxr:fixed386.obj - 0001:0000fab9 _BrFixedATan2Fast 00410ab9 brfwmxr:fixed386.obj - 0001:0000fbc1 __Sqrt 00410bc1 brfwmxr:fixed386.obj - 0001:0000fd19 __Sqrt64 00410d19 brfwmxr:fixed386.obj - 0001:0000ffc0 __FastSqrt 00410fc0 brfwmxr:fixed386.obj - 0001:0000ffeb __FastRSqrt 00410feb brfwmxr:fixed386.obj - 0001:00010014 __FastRSqrt64 00411014 brfwmxr:fixed386.obj - 0001:00010060 _BrModelAdd 00411060 brfwmxr:regsupt.obj - 0001:00010094 _BrModelRemove 00411094 brfwmxr:regsupt.obj - 0001:000100ac _BrModelFind 004110ac brfwmxr:regsupt.obj - 0001:000100c0 _BrModelFindHook 004110c0 brfwmxr:regsupt.obj - 0001:000100d4 _BrModelAddMany 004110d4 brfwmxr:regsupt.obj - 0001:00010130 _BrModelRemoveMany 00411130 brfwmxr:regsupt.obj - 0001:00010174 _BrModelFindMany 00411174 brfwmxr:regsupt.obj - 0001:00010193 _BrModelCount 00411193 brfwmxr:regsupt.obj - 0001:000101a7 _BrModelEnum 004111a7 brfwmxr:regsupt.obj - 0001:000101c6 _BrMaterialAdd 004111c6 brfwmxr:regsupt.obj - 0001:000101f6 _BrMaterialRemove 004111f6 brfwmxr:regsupt.obj - 0001:0001020e _BrMaterialFind 0041120e brfwmxr:regsupt.obj - 0001:00010222 _BrMaterialFindHook 00411222 brfwmxr:regsupt.obj - 0001:00010236 _BrMaterialAddMany 00411236 brfwmxr:regsupt.obj - 0001:00010296 _BrMaterialRemoveMany 00411296 brfwmxr:regsupt.obj - 0001:000102da _BrMaterialFindMany 004112da brfwmxr:regsupt.obj - 0001:000102f9 _BrMaterialCount 004112f9 brfwmxr:regsupt.obj - 0001:0001030d _BrMaterialEnum 0041130d brfwmxr:regsupt.obj - 0001:0001032c _BrMapAdd 0041132c brfwmxr:regsupt.obj - 0001:00010340 _BrMapRemove 00411340 brfwmxr:regsupt.obj - 0001:00010354 _BrMapFind 00411354 brfwmxr:regsupt.obj - 0001:00010368 _BrMapFindHook 00411368 brfwmxr:regsupt.obj - 0001:0001037c _BrMapAddMany 0041137c brfwmxr:regsupt.obj - 0001:00010398 _BrMapRemoveMany 00411398 brfwmxr:regsupt.obj - 0001:000103b4 _BrMapFindMany 004113b4 brfwmxr:regsupt.obj - 0001:000103d3 _BrMapCount 004113d3 brfwmxr:regsupt.obj - 0001:000103e7 _BrMapEnum 004113e7 brfwmxr:regsupt.obj - 0001:00010406 _BrTableAdd 00411406 brfwmxr:regsupt.obj - 0001:0001041a _BrTableRemove 0041141a brfwmxr:regsupt.obj - 0001:0001042e _BrTableFind 0041142e brfwmxr:regsupt.obj - 0001:00010442 _BrTableFindHook 00411442 brfwmxr:regsupt.obj - 0001:00010456 _BrTableAddMany 00411456 brfwmxr:regsupt.obj - 0001:00010472 _BrTableRemoveMany 00411472 brfwmxr:regsupt.obj - 0001:0001048e _BrTableFindMany 0041148e brfwmxr:regsupt.obj - 0001:000104ad _BrTableCount 004114ad brfwmxr:regsupt.obj - 0001:000104c1 _BrTableEnum 004114c1 brfwmxr:regsupt.obj - 0001:000104e0 _BrResClassAdd 004114e0 brfwmxr:regsupt.obj - 0001:00010513 _BrResClassRemove 00411513 brfwmxr:regsupt.obj - 0001:00010543 _BrResClassFind 00411543 brfwmxr:regsupt.obj - 0001:00010557 _BrResClassFindHook 00411557 brfwmxr:regsupt.obj - 0001:0001056b _BrResClassAddMany 0041156b brfwmxr:regsupt.obj - 0001:000105be _BrResClassRemoveMany 004115be brfwmxr:regsupt.obj - 0001:00010616 _BrResClassFindMany 00411616 brfwmxr:regsupt.obj - 0001:00010635 _BrResClassCount 00411635 brfwmxr:regsupt.obj - 0001:00010649 _BrResClassEnum 00411649 brfwmxr:regsupt.obj - 0001:0001067c _BrModelApplyMap 0041167c brfwmxr:regsupt.obj - 0001:00010848 _BrModelFitMap 00411848 brfwmxr:regsupt.obj - 0001:00010a18 _BrModelFree 00411a18 brfwmxr:regsupt.obj - 0001:00010a2c _BrModelAllocate 00411a2c brfwmxr:regsupt.obj - 0001:00010aa8 _BrMaterialAllocate 00411aa8 brfwmxr:regsupt.obj - 0001:00010afc _BrMaterialFree 00411afc brfwmxr:regsupt.obj - 0001:00010b10 NamePatternMatch_ 00411b10 brfwmxr:register.obj - 0001:00010be3 RegistryNew_ 00411be3 brfwmxr:register.obj - 0001:00010c07 RegistryClear_ 00411c07 brfwmxr:register.obj - 0001:00010c3b RegistryAdd_ 00411c3b brfwmxr:register.obj - 0001:00010c77 RegistryAddMany_ 00411c77 brfwmxr:register.obj - 0001:00010ce2 RegistryRemove_ 00411ce2 brfwmxr:register.obj - 0001:00010d2a RegistryRemoveMany_ 00411d2a brfwmxr:register.obj - 0001:00010d6e RegistryFind_ 00411d6e brfwmxr:register.obj - 0001:00010db9 RegistryFindMany_ 00411db9 brfwmxr:register.obj - 0001:00010e09 RegistryCount_ 00411e09 brfwmxr:register.obj - 0001:00010e44 RegistryEnum_ 00411e44 brfwmxr:register.obj - 0001:00011510 _BrImageFind 00412510 brfwmxr:loader.obj - 0001:00011547 _BrImageReference 00412547 brfwmxr:loader.obj - 0001:000115aa _BrImageLookupName 004125aa brfwmxr:loader.obj - 0001:0001165a _BrImageLookupOrdinal 0041265a brfwmxr:loader.obj - 0001:00011686 _BrImageDereference 00412686 brfwmxr:loader.obj - 0001:000116b6 _BrImageFree 004126b6 brfwmxr:loader.obj - 0001:00011701 __BrImageFree 00412701 brfwmxr:loader.obj - 0001:00011750 _BrResAllocate 00412750 brfwmxr:resource.obj - 0001:00011874 _BrResFree 00412874 brfwmxr:resource.obj - 0001:00011893 _BrResAdd 00412893 brfwmxr:resource.obj - 0001:000118e3 _BrResRemove 004128e3 brfwmxr:resource.obj - 0001:0001190b _BrResClass 0041290b brfwmxr:resource.obj - 0001:0001192b _BrResSize 0041292b brfwmxr:resource.obj - 0001:0001197f _BrResSizeTotal 0041297f brfwmxr:resource.obj - 0001:000119bf _BrResChildEnum 004129bf brfwmxr:resource.obj - 0001:00011a0b _BrResCheck 00412a0b brfwmxr:resource.obj - 0001:00011a3f _BrResStrDup 00412a3f brfwmxr:resource.obj - 0001:00011a80 __BrPmMemFill 00412a80 brfwmxr:pmmemops.obj - 0001:00011b4f __BrPmMemRectangleCopyTo 00412b4f brfwmxr:pmmemops.obj - 0001:00011c3f __BrPmMemRectangleCopyFrom 00412c3f brfwmxr:pmmemops.obj - 0001:00011d1f __BrPmMemRectangleFill 00412d1f brfwmxr:pmmemops.obj - 0001:00011d93 __BrPmMemDirtyRectangleCopy 00412d93 brfwmxr:pmmemops.obj - 0001:00011dd3 __BrPmMemDirtyRectangleFill 00412dd3 brfwmxr:pmmemops.obj - 0001:00011e0f __BrPmMemCopy 00412e0f brfwmxr:pmmemops.obj - 0001:00011f9a __BrPmMemPixelSet 00412f9a brfwmxr:pmmemops.obj - 0001:00012002 __BrPmMemPixelGet 00413002 brfwmxr:pmmemops.obj - 0001:00012066 __BrPmMemLine 00413066 brfwmxr:pmmemops.obj - 0001:0001373e __BrPmMemCopyBits 0041473e brfwmxr:pmmemops.obj - 0001:000137c4 __MemCopyBits_A 004147c4 brfwmxr:memloops.obj - 0001:00013bb4 __MemFill_A 00414bb4 brfwmxr:memloops.obj - 0001:00013c98 __MemRectFill_A 00414c98 brfwmxr:memloops.obj - 0001:00013dc1 __MemRectCopy_A 00414dc1 brfwmxr:memloops.obj - 0001:00013e19 __MemCopy_A 00414e19 brfwmxr:memloops.obj - 0001:00013e5e __MemPixelSet 00414e5e brfwmxr:memloops.obj - 0001:00013ebb __MemPixelGet 00414ebb f brfwmxr:memloops.obj - 0001:00013f17 __GetSysQual 00414f17 brfwmxr:memloops.obj - 0001:00013f20 __BrFileFree 00414f20 brfwmxr:file.obj - 0001:00013f3c _BrFileAttributes 00414f3c brfwmxr:file.obj - 0001:00013f4c _BrFileOpenRead 00414f4c brfwmxr:file.obj - 0001:00013fb8 _BrFileOpenWrite 00414fb8 brfwmxr:file.obj - 0001:00014018 _BrFileClose 00415018 brfwmxr:file.obj - 0001:00014034 _BrFileEof 00415034 brfwmxr:file.obj - 0001:00014050 _BrFileGetChar 00415050 brfwmxr:file.obj - 0001:0001406c _BrFilePutChar 0041506c brfwmxr:file.obj - 0001:0001408c _BrFileRead 0041508c brfwmxr:file.obj - 0001:000140b8 _BrFileWrite 004150b8 brfwmxr:file.obj - 0001:000140e4 _BrFileGetLine 004150e4 brfwmxr:file.obj - 0001:0001410b _BrFilePutLine 0041510b brfwmxr:file.obj - 0001:0001412b _BrFileAdvance 0041512b brfwmxr:file.obj - 0001:0001414b _BrFilePrintf 0041514b brfwmxr:file.obj - 0001:00014190 _BrMaterialUpdate 00415190 brfwmxr:prepmatl.obj - 0001:00014db9 PrepareVertices_ 00415db9 brfwmxr:prepmesh.obj - 0001:000152c1 PrepareVerticesFast_ 004162c1 brfwmxr:prepmesh.obj - 0001:000155f9 PrepareEdges_ 004165f9 brfwmxr:prepmesh.obj - 0001:000157d8 _BrModelUpdate 004167d8 brfwmxr:prepmesh.obj - 0001:00015a10 _BrMatrix34Copy 00416a10 brfwmxr:matrix34.obj - 0001:00015a64 _BrMatrix34Mul 00416a64 brfwmxr:matrix34.obj - 0001:00015dcf _BrMatrix34Identity 00416dcf brfwmxr:matrix34.obj - 0001:00015e2b _BrMatrix34RotateX 00416e2b brfwmxr:matrix34.obj - 0001:00015ea2 _BrMatrix34RotateY 00416ea2 brfwmxr:matrix34.obj - 0001:00015f19 _BrMatrix34RotateZ 00416f19 brfwmxr:matrix34.obj - 0001:00015f90 _BrMatrix34Rotate 00416f90 brfwmxr:matrix34.obj - 0001:000160d4 _BrMatrix34Translate 004170d4 brfwmxr:matrix34.obj - 0001:0001612c _BrMatrix34Scale 0041712c brfwmxr:matrix34.obj - 0001:00016184 _BrMatrix34ShearX 00417184 brfwmxr:matrix34.obj - 0001:000161df _BrMatrix34ShearY 004171df brfwmxr:matrix34.obj - 0001:0001623a _BrMatrix34ShearZ 0041723a brfwmxr:matrix34.obj - 0001:00016295 _BrMatrix34Inverse 00417295 brfwmxr:matrix34.obj - 0001:000166e1 _BrMatrix34LPInverse 004176e1 brfwmxr:matrix34.obj - 0001:0001681d _BrMatrix34LPNormalise 0041781d brfwmxr:matrix34.obj - 0001:000169c1 _BrMatrix34RollingBall 004179c1 brfwmxr:matrix34.obj - 0001:00016b19 _BrMatrix34Copy4 00417b19 brfwmxr:matrix34.obj - 0001:00016b6d BrMatrix34TApplyFV_ 00417b6d brfwmxr:matrix34.obj - 0001:00016c59 _BrMatrix34Apply 00417c59 brfwmxr:matrix34.obj - 0001:00016d39 _BrMatrix34ApplyP 00417d39 brfwmxr:matrix34.obj - 0001:00016e25 _BrMatrix34ApplyV 00417e25 brfwmxr:matrix34.obj - 0001:00016f01 _BrMatrix34TApply 00417f01 brfwmxr:matrix34.obj - 0001:00017034 _BrMatrix34TApplyP 00418034 brfwmxr:matrix34.obj - 0001:00017110 _BrMatrix34TApplyV 00418110 brfwmxr:matrix34.obj - 0001:000171ec _BrMatrix34Pre 004181ec brfwmxr:matrix34.obj - 0001:0001721b _BrMatrix34Post 0041821b brfwmxr:matrix34.obj - 0001:0001724a _BrMatrix34PreRotateX 0041824a brfwmxr:matrix34.obj - 0001:0001728e _BrMatrix34PostRotateX 0041828e brfwmxr:matrix34.obj - 0001:000172d2 _BrMatrix34PreRotateY 004182d2 brfwmxr:matrix34.obj - 0001:00017316 _BrMatrix34PostRotateY 00418316 brfwmxr:matrix34.obj - 0001:0001735a _BrMatrix34PreRotateZ 0041835a brfwmxr:matrix34.obj - 0001:0001739e _BrMatrix34PostRotateZ 0041839e brfwmxr:matrix34.obj - 0001:000173e2 _BrMatrix34PreRotate 004183e2 brfwmxr:matrix34.obj - 0001:0001742a _BrMatrix34PostRotate 0041842a brfwmxr:matrix34.obj - 0001:00017472 _BrMatrix34PreTranslate 00418472 brfwmxr:matrix34.obj - 0001:000174bd _BrMatrix34PostTranslate 004184bd brfwmxr:matrix34.obj - 0001:00017508 _BrMatrix34PreScale 00418508 brfwmxr:matrix34.obj - 0001:00017553 _BrMatrix34PostScale 00418553 brfwmxr:matrix34.obj - 0001:0001759e _BrMatrix34PreShearX 0041859e brfwmxr:matrix34.obj - 0001:000175e2 _BrMatrix34PostShearX 004185e2 brfwmxr:matrix34.obj - 0001:00017626 _BrMatrix34PreShearY 00418626 brfwmxr:matrix34.obj - 0001:0001766a _BrMatrix34PostShearY 0041866a brfwmxr:matrix34.obj - 0001:000176ae _BrMatrix34PreShearZ 004186ae brfwmxr:matrix34.obj - 0001:000176f2 _BrMatrix34PostShearZ 004186f2 brfwmxr:matrix34.obj - 0001:00017740 _BrNewList 00418740 brfwmxr:brlists.obj - 0001:00017758 _BrAddHead 00418758 brfwmxr:brlists.obj - 0001:00017773 _BrAddTail 00418773 brfwmxr:brlists.obj - 0001:00017792 _BrRemHead 00418792 brfwmxr:brlists.obj - 0001:000177ae _BrRemTail 004187ae brfwmxr:brlists.obj - 0001:000177ca _BrInsert 004187ca brfwmxr:brlists.obj - 0001:000177e6 _BrRemove 004187e6 brfwmxr:brlists.obj - 0001:000177fe _BrSimpleNewList 004187fe brfwmxr:brlists.obj - 0001:0001780e _BrSimpleAddHead 0041880e brfwmxr:brlists.obj - 0001:0001782e _BrSimpleRemHead 0041882e brfwmxr:brlists.obj - 0001:00017862 _BrSimpleInsert 00418862 brfwmxr:brlists.obj - 0001:00017882 _BrSimpleRemove 00418882 brfwmxr:brlists.obj - 0001:000178b0 _BrMemAllocate 004188b0 brfwmxr:mem.obj - 0001:000178e3 _BrMemFree 004188e3 brfwmxr:mem.obj - 0001:000178fb _BrMemInquire 004188fb brfwmxr:mem.obj - 0001:00017913 _BrMemCalloc 00418913 brfwmxr:mem.obj - 0001:0001794a _BrMemStrDup 0041894a brfwmxr:mem.obj - 0001:00017990 __BrGenericLine 00418990 brfwmxr:pmgenops.obj - 0001:0001880c __BrGenericDoubleBuffer 0041980c brfwmxr:pmgenops.obj - 0001:00018828 __BrGenericMatch 00419828 brfwmxr:pmgenops.obj - 0001:0001890c __BrGenericClone 0041990c brfwmxr:pmgenops.obj - 0001:00018958 __BrGenericFree 00419958 brfwmxr:pmgenops.obj - 0001:0001896c __BrGenericDirtyRectangleCopy 0041996c brfwmxr:pmgenops.obj - 0001:000189a8 __BrGenericDirtyRectangleFill 004199a8 brfwmxr:pmgenops.obj - 0001:000189e0 __BrGenericRectangle 004199e0 brfwmxr:pmgenops.obj - 0001:00018a80 __BrGenericRectangle2 00419a80 brfwmxr:pmgenops.obj - 0001:00018b18 __BrGenericRectangleCopy 00419b18 brfwmxr:pmgenops.obj - 0001:00018b1f __BrGenericCopy 00419b1f brfwmxr:pmgenops.obj - 0001:00018b30 _BrPixelmapAllocate 00419b30 brfwmxr:pixelmap.obj - 0001:00018c48 _BrPixelmapAllocateSub 00419c48 brfwmxr:pixelmap.obj - 0001:00018d10 _BrPixelmapFileSize 00419d10 brfwmxr:pixelmap.obj - 0001:00018d27 _BrPixelmapPixelSize 00419d27 brfwmxr:pixelmap.obj - 0001:00018d3e _BrPixelmapChannels 00419d3e brfwmxr:pixelmap.obj - 0001:00018d60 _BrScratchAllocate 00419d60 brfwmxr:scratch.obj - 0001:00018ddc _BrScratchFree 00419ddc brfwmxr:scratch.obj - 0001:00018deb _BrScratchFlush 00419deb brfwmxr:scratch.obj - 0001:00018e2f _BrScratchInquire 00419e2f brfwmxr:scratch.obj - 0001:00018e40 _BrFailure 00419e40 brfwmxr:diag.obj - 0001:00018e80 _BrWarning 00419e80 brfwmxr:diag.obj - 0001:00018ec0 _BrFatal 00419ec0 brfwmxr:diag.obj - 0001:00018f10 _BrQsort 00419f10 brfwmxr:brqsort.obj - 0001:00019120 _BrFixedSqrt 0041a120 brfwmxr:fixed.obj - 0001:00019154 _BrFixedPow 0041a154 brfwmxr:fixed.obj - 0001:000191a0 __CHP 0041a1a0 f brfwmxr:magicsym.obj - 0001:000191c0 _BrPixelmapFree 0041a1c0 brfwmxr:pmdsptch.obj - 0001:000191e8 _BrPixelmapMatch 0041a1e8 brfwmxr:pmdsptch.obj - 0001:00019217 _BrPixelmapClone 0041a217 brfwmxr:pmdsptch.obj - 0001:0001923f _BrPixelmapFill 0041a23f brfwmxr:pmdsptch.obj - 0001:0001926b _BrPixelmapRectangle 0041a26b brfwmxr:pmdsptch.obj - 0001:000192c3 _BrPixelmapRectangle2 0041a2c3 brfwmxr:pmdsptch.obj - 0001:0001931b _BrPixelmapRectangleCopy 0041a31b brfwmxr:pmdsptch.obj - 0001:00019676 _BrPixelmapRectangleFill 0041a676 brfwmxr:pmdsptch.obj - 0001:000197aa _BrPixelmapDirtyRectangleCopy 0041a7aa brfwmxr:pmdsptch.obj - 0001:000198e1 _BrPixelmapDirtyRectangleClear 0041a8e1 brfwmxr:pmdsptch.obj - 0001:00019a15 _BrPixelmapPixelSet 0041aa15 brfwmxr:pmdsptch.obj - 0001:00019a8d _BrPixelmapPixelGet 0041aa8d brfwmxr:pmdsptch.obj - 0001:00019b10 _BrPixelmapCopy 0041ab10 brfwmxr:pmdsptch.obj - 0001:00019b90 _BrPixelmapLine 0041ab90 brfwmxr:pmdsptch.obj - 0001:00019e4c _BrPixelmapDoubleBuffer 0041ae4c brfwmxr:pmdsptch.obj - 0001:00019e78 _BrPixelmapText 0041ae78 brfwmxr:pmdsptch.obj - 0001:0001a113 _BrPixelmapTextF 0041b113 brfwmxr:pmdsptch.obj - 0001:0001a15b _BrPixelmapTextWidth 0041b15b brfwmxr:pmdsptch.obj - 0001:0001a1db _BrPixelmapTextHeight 0041b1db brfwmxr:pmdsptch.obj - 0001:0001a203 _BrPixelmapCopyBits 0041b203 brfwmxr:pmdsptch.obj - 0001:0001a370 ?FCreate@TDF@@SGHPAVCRF@@PAVGL@@PAVSTN@@PAUCKI@@@Z 0041b370 f engine:tdf.obj - 0001:0001a7b0 ?FWouldBe@MODL@@SGHJ@Z 0041b7b0 f engine:modl.obj - 0001:0001a7d0 ?FIs@MODL@@UAEHJ@Z 0041b7d0 f engine:modl.obj - 0001:0001a7e0 ?Cls@MODL@@UAEJXZ 0041b7e0 f engine:modl.obj - 0001:0001a7f0 ?PmodlNew@MODL@@SGPAV1@JPAUbr_vertex@@JPAUbr_face@@@Z 0041b7f0 f engine:modl.obj - 0001:0001a8e0 ?FReadModl@MODL@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0041b8e0 f engine:modl.obj - 0001:0001a970 ?_FInit@MODL@@IAEHPAVBLCK@@@Z 0041b970 f engine:modl.obj - 0001:0001ad10 ?PmodlReadFromDat@MODL@@SGPAV1@PAVFNI@@@Z 0041bd10 f engine:modl.obj - 0001:0001ade0 ??1MODL@@UAE@XZ 0041bde0 f engine:modl.obj - 0001:0001ae10 ?FWrite@MODL@@QAEHPAVCFL@@KK@Z 0041be10 f engine:modl.obj - 0001:0001af40 ?AdjustTdfCharacter@MODL@@QAEXXZ 0041bf40 f engine:modl.obj - 0001:0001afe0 ??_GMODL@@UAEPAXI@Z 0041bfe0 f engine:modl.obj - 0001:0001afe0 ??_EMODL@@UAEPAXI@Z 0041bfe0 f engine:modl.obj - 0001:0001b14f _fprintf 0041c14f f LIBC:fprintf.obj - 0001:0001b185 __onexit 0041c185 f LIBC:onexit.obj - 0001:0001b1fb _atexit 0041c1fb f LIBC:onexit.obj - 0001:0001b20d ___onexitinit 0041c20d f LIBC:onexit.obj - 0001:0001b244 __ftol 0041c244 f LIBC:ftol.obj - 0001:0001b26c _fdiv_main_routine 0041c26c f LIBC:adj_fdiv.obj - 0001:0001b383 __adj_fdiv_r 0041c383 f LIBC:adj_fdiv.obj - 0001:0001b822 _fdivp_sti_st 0041c822 f LIBC:adj_fdiv.obj - 0001:0001b835 _fdivrp_sti_st 0041c835 f LIBC:adj_fdiv.obj - 0001:0001b848 __adj_fdiv_m32 0041c848 f LIBC:adj_fdiv.obj - 0001:0001b894 __adj_fdiv_m64 0041c894 f LIBC:adj_fdiv.obj - 0001:0001b8e0 __adj_fdiv_m16i 0041c8e0 f LIBC:adj_fdiv.obj - 0001:0001b914 __adj_fdiv_m32i 0041c914 f LIBC:adj_fdiv.obj - 0001:0001b948 __adj_fdivr_m32 0041c948 f LIBC:adj_fdiv.obj - 0001:0001b994 __adj_fdivr_m64 0041c994 f LIBC:adj_fdiv.obj - 0001:0001b9e0 __adj_fdivr_m16i 0041c9e0 f LIBC:adj_fdiv.obj - 0001:0001ba14 __adj_fdivr_m32i 0041ca14 f LIBC:adj_fdiv.obj - 0001:0001ba48 __safe_fdiv 0041ca48 f LIBC:adj_fdiv.obj - 0001:0001ba5d __safe_fdivr 0041ca5d f LIBC:adj_fdiv.obj - 0001:0001ba72 __fprem_common 0041ca72 f LIBC:adj_fdiv.obj - 0001:0001bc78 __adj_fprem 0041cc78 f LIBC:adj_fdiv.obj - 0001:0001bd2a __fprem1_common 0041cd2a f LIBC:adj_fdiv.obj - 0001:0001bf30 __adj_fprem1 0041cf30 f LIBC:adj_fdiv.obj - 0001:0001bfe5 __safe_fprem 0041cfe5 f LIBC:adj_fdiv.obj - 0001:0001bfeb __safe_fprem1 0041cfeb f LIBC:adj_fdiv.obj - 0001:0001bff1 __adj_fpatan 0041cff1 f LIBC:adj_fdiv.obj - 0001:0001bff4 __adj_fptan 0041cff4 f LIBC:adj_fdiv.obj - 0001:0001bff7 __fpmath 0041cff7 f LIBC:fpinit.obj - 0001:0001c00b __fpclear 0041d00b f LIBC:fpinit.obj - 0001:0001c00c __cfltcvt_init 0041d00c f LIBC:fpinit.obj - 0001:0001c044 __purecall 0041d044 f LIBC:purevirt.obj - 0001:0001c04f _mainCRTStartup 0041d04f f LIBC:crt0.obj - 0001:0001c148 __amsg_exit 0041d148 f LIBC:crt0.obj - 0001:0001c168 _strcmp 0041d168 f LIBC:strcmp.obj - 0001:0001c1ec _strcat 0041d1ec f LIBC:strcat.obj - 0001:0001c1f0 _strcpy 0041d1f0 LIBC:strcat.obj - 0001:0001c280 _strlen 0041d280 f LIBC:strlen.obj - 0001:0001c2cd _vsprintf 0041d2cd f LIBC:vsprintf.obj - 0001:0001c328 _sqrt 0041d328 LIBC:87csqrt.obj - 0001:0001c332 __CIsqrt 0041d332 LIBC:87csqrt.obj - 0001:0001c33c _memset 0041d33c f LIBC:memset.obj - 0001:0001c37e _sprintf 0041d37e f LIBC:sprintf.obj - 0001:0001c3d8 _pow 0041d3d8 LIBC:87ctran.obj - 0001:0001c3e2 _log 0041d3e2 LIBC:87ctran.obj - 0001:0001c3ec _log10 0041d3ec LIBC:87ctran.obj - 0001:0001c3f3 _exp 0041d3f3 LIBC:87ctran.obj - 0001:0001c3fa __CIpow 0041d3fa LIBC:87ctran.obj - 0001:0001c404 __CIlog 0041d404 LIBC:87ctran.obj - 0001:0001c40e __CIlog10 0041d40e LIBC:87ctran.obj - 0001:0001c415 __CIexp 0041d415 LIBC:87ctran.obj - 0001:0001c41c __stbuf 0041d41c f LIBC:_sftbuf.obj - 0001:0001c49d __ftbuf 0041d49d f LIBC:_sftbuf.obj - 0001:0001c4e3 __output 0041d4e3 f LIBC:output.obj - 0001:0001ce09 __cinit 0041de09 f LIBC:crt0dat.obj - 0001:0001ce39 _exit 0041de39 f LIBC:crt0dat.obj - 0001:0001ce4a __exit 0041de4a f LIBC:crt0dat.obj - 0001:0001cefa _realloc 0041defa f LIBC:realloc.obj - 0001:0001d04c __msize 0041e04c f LIBC:msize.obj - 0001:0001d05d _malloc 0041e05d f LIBC:malloc.obj - 0001:0001d070 __nh_malloc 0041e070 f LIBC:malloc.obj - 0001:0001d12f __heap_split_block 0041e12f f LIBC:malloc.obj - 0001:0001d174 __setdefaultprecision 0041e174 f LIBC:fp8.obj - 0001:0001d187 _ms_p5_test_fdiv 0041e187 f LIBC:testfdiv.obj - 0001:0001d1cd _ms_p5_mp_test_fdiv 0041e1cd f LIBC:testfdiv.obj - 0001:0001d2a0 __forcdecpt 0041e2a0 f LIBC:cvt.obj - 0001:0001d305 __cropzeros 0041e305 f LIBC:cvt.obj - 0001:0001d364 __positive 0041e364 f LIBC:cvt.obj - 0001:0001d379 __fassign 0041e379 f LIBC:cvt.obj - 0001:0001d3bc __cftoe 0041e3bc f LIBC:cvt.obj - 0001:0001d50f __cftof 0041e50f f LIBC:cvt.obj - 0001:0001d62b __cftog 0041e62b f LIBC:cvt.obj - 0001:0001d6d3 __cfltcvt 0041e6d3 f LIBC:cvt.obj - 0001:0001d750 __global_unwind2 0041e750 f LIBC:exsup.obj - 0001:0001d792 __local_unwind2 0041e792 f LIBC:exsup.obj - 0001:0001d7ec __abnormal_termination 0041e7ec f LIBC:exsup.obj - 0001:0001d80f __XcptFilter 0041e80f f LIBC:winxfltr.obj - 0001:0001d99a __setenvp 0041e99a f LIBC:stdenvp.obj - 0001:0001da65 __setargv 0041ea65 f LIBC:stdargv.obj - 0001:0001dd63 __setmbcp 0041ed63 f LIBC:mbctype.obj - 0001:0001def1 ___initmbctable 0041eef1 f LIBC:mbctype.obj - 0001:0001defc __ioinit 0041eefc f LIBC:ioinit.obj - 0001:0001dfea __heap_init 0041efea f LIBC:heapinit.obj - 0001:0001e067 ___getempty 0041f067 f LIBC:heapinit.obj - 0001:0001e094 __except_handler3 0041f094 f LIBC:exsup3.obj - 0001:0001e142 __seh_longjmp_unwind@4 0041f142 f LIBC:exsup3.obj - 0001:0001e15d __FF_MSGBANNER 0041f15d f LIBC:crt0msg.obj - 0001:0001e183 __NMSG_WRITE 0041f183 f LIBC:crt0msg.obj - 0001:0001e1db __flsbuf 0041f1db f LIBC:_flsbuf.obj - 0001:0001e304 __cintrindisp2 0041f304 f LIBC:87cdisp.obj - 0001:0001e342 __cintrindisp1 0041f342 f LIBC:87cdisp.obj - 0001:0001e378 __ctrandisp2 0041f378 f LIBC:87cdisp.obj - 0001:0001e4e9 __ctrandisp1 0041f4e9 f LIBC:87cdisp.obj - 0001:0001e515 __fload 0041f515 f LIBC:87cdisp.obj - 0001:0001e565 __fFEXP 0041f565 LIBC:87tran.obj - 0001:0001e5cc __rtinfpopse 0041f5cc LIBC:87tran.obj - 0001:0001e5ce __rtinfnpopse 0041f5ce LIBC:87tran.obj - 0001:0001e5de __fFLN 0041f5de LIBC:87tran.obj - 0001:0001e693 __rtinfpop 0041f693 LIBC:87tran.obj - 0001:0001e695 __rtinfnpop 0041f695 LIBC:87tran.obj - 0001:0001e6b2 __ffexpm1 0041f6b2 LIBC:87tran.obj - 0001:0001e75b _fflush 0041f75b f LIBC:fflush.obj - 0001:0001e7a7 __flush 0041f7a7 f LIBC:fflush.obj - 0001:0001e809 __flushall 0041f809 f LIBC:fflush.obj - 0001:0001e87e ___endstdio 0041f87e f LIBC:fflush.obj - 0001:0001e892 __isatty 0041f892 f LIBC:isatty.obj - 0001:0001e8ac _wctomb 0041f8ac f LIBC:wctomb.obj - 0001:0001e924 __aulldiv 0041f924 f LIBC:ulldiv.obj - 0001:0001e984 __aullrem 0041f984 f LIBC:ullrem.obj - 0001:0001e9ee _free 0041f9ee f LIBC:free.obj - 0001:0001ea56 __heap_abort 0041fa56 f LIBC:hpabort.obj - 0001:0001ea61 __heap_grow 0041fa61 f LIBC:heapgrow.obj - 0001:0001eb4a __heap_grow_region 0041fb4a f LIBC:heapgrow.obj - 0001:0001ebf7 __heap_free_region 0041fbf7 f LIBC:heapgrow.obj - 0001:0001ec31 __heap_search 0041fc31 f LIBC:heapsrch.obj - 0001:0001ed21 __control87 0041fd21 f LIBC:ieee87.obj - 0001:0001ed5c __controlfp 0041fd5c f LIBC:ieee87.obj - 0001:0001ee93 __fptrap 0041fe93 f LIBC:crt0fp.obj - 0001:0001ee9e __isctype 0041fe9e f LIBC:isctype.obj - 0001:0001ef19 _tolower 0041ff19 f LIBC:tolower.obj - 0001:0001efe5 __ZeroTail 0041ffe5 f LIBC:intrncvt.obj - 0001:0001f045 __IncMan 00420045 f LIBC:intrncvt.obj - 0001:0001f0a6 __RoundMan 004200a6 f LIBC:intrncvt.obj - 0001:0001f143 __CopyMan 00420143 f LIBC:intrncvt.obj - 0001:0001f160 __FillZeroMan 00420160 f LIBC:intrncvt.obj - 0001:0001f16c __IsZeroMan 0042016c f LIBC:intrncvt.obj - 0001:0001f18a __ShrMan 0042018a f LIBC:intrncvt.obj - 0001:0001f235 __ld12cvt 00420235 f LIBC:intrncvt.obj - 0001:0001f3d1 __ld12tod 004203d1 f LIBC:intrncvt.obj - 0001:0001f3e7 __ld12tof 004203e7 f LIBC:intrncvt.obj - 0001:0001f3fd __atodbl 004203fd f LIBC:intrncvt.obj - 0001:0001f42e __atoflt 0042042e f LIBC:intrncvt.obj - 0001:0001f45f __fptostr 0042045f f LIBC:_fptostr.obj - 0001:0001f4dd __fltout 004204dd f LIBC:cfout.obj - 0001:0001f540 ___dtold 00420540 f LIBC:cfout.obj - 0001:0001f5fc _memmove 004205fc f LIBC:memmove.obj - 0001:0001f74a __write 0042074a f LIBC:write.obj - 0001:0001f8e3 __lseek 004208e3 f LIBC:lseek.obj - 0001:0001f958 __getbuf 00420958 f LIBC:_getbuf.obj - 0001:0001f9a4 __trandisp1 004209a4 f LIBC:87disp.obj - 0001:0001fa0b __trandisp2 00420a0b f LIBC:87disp.obj - 0001:0001fa97 __rttospopde 00420a97 LIBC:87disp.obj - 0001:0001fa9c __rttospop 00420a9c LIBC:87disp.obj - 0001:0001fa9e __rtnospop 00420a9e LIBC:87disp.obj - 0001:0001faa0 __rttosnpop 00420aa0 LIBC:87disp.obj - 0001:0001faa1 __rtnospopde 00420aa1 LIBC:87disp.obj - 0001:0001faa8 __rtzeropop 00420aa8 LIBC:87disp.obj - 0001:0001faaa __rtzeronpop 00420aaa LIBC:87disp.obj - 0001:0001faaf __rtonepop 00420aaf LIBC:87disp.obj - 0001:0001fab1 __rtonenpop 00420ab1 LIBC:87disp.obj - 0001:0001fab6 __tosnan1 00420ab6 LIBC:87disp.obj - 0001:0001fae1 __nosnan2 00420ae1 LIBC:87disp.obj - 0001:0001fae3 __tosnan2 00420ae3 LIBC:87disp.obj - 0001:0001fb0b __nan2 00420b0b LIBC:87disp.obj - 0001:0001fb4a __rtindfpop 00420b4a LIBC:87disp.obj - 0001:0001fb4c __rtindfnpop 00420b4c LIBC:87disp.obj - 0001:0001fb5d __rttosnpopde 00420b5d LIBC:87disp.obj - 0001:0001fb67 __rtchsifneg 00420b67 LIBC:87disp.obj - 0001:0001fb6e __87except 00420b6e f LIBC:87except.obj - 0001:0001fc78 __powhlp 00420c78 f LIBC:powhlp.obj - 0001:0001fe65 __d_inttype 00420e65 f LIBC:powhlp.obj - 0001:0001feb7 __commit 00420eb7 f LIBC:commit.obj - 0001:0001ff04 __fcloseall 00420f04 f LIBC:closeall.obj - 0001:0001ff35 __heap_addblock 00420f35 f LIBC:heapadd.obj - 0001:000201ec ___crtGetStringTypeA 004211ec f LIBC:aw_str.obj - 0001:00020363 ___crtLCMapStringA 00421363 f LIBC:aw_map.obj - 0001:000205c2 ___addl 004215c2 f LIBC:mantold.obj - 0001:000205e5 ___add_12 004215e5 f LIBC:mantold.obj - 0001:00020643 ___shl_12 00421643 f LIBC:mantold.obj - 0001:00020681 ___shr_12 00421681 f LIBC:mantold.obj - 0001:000206b4 ___mtold12 004216b4 f LIBC:mantold.obj - 0001:00020798 ___strgtold12 00421798 f LIBC:strgtold.obj - 0001:00020dd7 _$I10_OUTPUT 00421dd7 f LIBC:x10fout.obj - 0001:0002110d __dosmaperr 0042210d f LIBC:dosmap.obj - 0001:00021176 __alloc_osfhnd 00422176 f LIBC:osfinfo.obj - 0001:000211ac __set_osfhnd 004221ac f LIBC:osfinfo.obj - 0001:00021216 __free_osfhnd 00422216 f LIBC:osfinfo.obj - 0001:00021283 __get_osfhandle 00422283 f LIBC:osfinfo.obj - 0001:000212bb __handle_qnan1 004222bb f LIBC:fpexcept.obj - 0001:00021308 __except1 00422308 f LIBC:fpexcept.obj - 0001:0002139f __raise_exc 0042239f f LIBC:fpexcept.obj - 0001:000216b1 __handle_exc 004226b1 f LIBC:fpexcept.obj - 0001:00021909 __umatherr 00422909 f LIBC:fpexcept.obj - 0001:0002199d __set_errno 0042299d f LIBC:fpexcept.obj - 0001:000219f0 __errcode 004229f0 f LIBC:fpexcept.obj - 0001:00021a26 __matherr 00422a26 f LIBC:matherr.obj - 0001:00021a29 __statfp 00422a29 f LIBC:fpctrl.obj - 0001:00021a3a __clrfp 00422a3a f LIBC:fpctrl.obj - 0001:00021a4c __ctrlfp 00422a4c f LIBC:fpctrl.obj - 0001:00021a7c __set_statfp 00422a7c f LIBC:fpctrl.obj - 0001:00021ad6 __set_exp 00422ad6 f LIBC:util.obj - 0001:00021b0b __sptype 00422b0b f LIBC:util.obj - 0001:00021b70 __decomp 00422b70 f LIBC:util.obj - 0001:00021c3e __frnd 00422c3e f LIBC:frnd.obj - 0001:00021c53 _fclose 00422c53 f LIBC:fclose.obj - 0001:00021caf __heap_findaddr 00422caf f LIBC:findaddr.obj - 0001:00021d19 _calloc 00422d19 f LIBC:calloc.obj - 0001:00021d53 ___set_invalid_mb_chars 00422d53 f LIBC:setmbval.obj - 0001:00021d84 _strncpy 00422d84 f LIBC:strncpy.obj - 0001:00021da8 ___ld12mul 00422da8 f LIBC:tenpow.obj - 0001:00021fe8 ___multtenpow12 00422fe8 f LIBC:tenpow.obj - 0001:0002205d __close 0042305d f LIBC:close.obj - 0001:000220f3 __freebuf 004230f3 f LIBC:_freebuf.obj - 0001:0002212c _RtlUnwind@16 0042312c kernel32:KERNEL32.dll - 0001:00022150 _BrStdioOpenRead 00423150 f bren:stdfile.obj - 0001:00022490 _BrStdioPutLine 00423490 f bren:stdfile.obj - 0001:00023760 FopRead_BOUNDS_ 00424760 brfwmxr:fileops.obj - 0001:0002396c _BrModelLoadMany 0042496c brfwmxr:fileops.obj - 0001:00023b6f _BrModelSaveMany 00424b6f brfwmxr:fileops.obj - 0001:00023be6 _BrActorLoadMany 00424be6 brfwmxr:fileops.obj - 0001:00023d5e _BrActorSaveMany 00424d5e brfwmxr:fileops.obj - 0001:00023dc6 _BrMaterialLoadMany 00424dc6 brfwmxr:fileops.obj - 0001:00023ead _BrMaterialSaveMany 00424ead brfwmxr:fileops.obj - 0001:00023f24 _BrPixelmapLoadMany 00424f24 brfwmxr:fileops.obj - 0001:00023fd4 _BrPixelmapSaveMany 00424fd4 brfwmxr:fileops.obj - 0001:00024067 _BrModelLoad 00425067 brfwmxr:fileops.obj - 0001:00024093 _BrModelSave 00425093 brfwmxr:fileops.obj - 0001:000240ae _BrMaterialLoad 004250ae brfwmxr:fileops.obj - 0001:000240da _BrMaterialSave 004250da brfwmxr:fileops.obj - 0001:000240f5 _BrPixelmapLoad 004250f5 brfwmxr:fileops.obj - 0001:00024121 _BrPixelmapSave 00425121 brfwmxr:fileops.obj - 0001:0002413c _BrActorLoad 0042513c brfwmxr:fileops.obj - 0001:00024168 _BrActorSave 00425168 brfwmxr:fileops.obj - 0001:00024190 _BrActorEnum 00425190 brfwmxr:actsupt.obj - 0001:000241bb _BrActorSearchMany 004251bb brfwmxr:actsupt.obj - 0001:00024257 _BrActorSearch 00425257 brfwmxr:actsupt.obj - 0001:000242b7 _BrActorAdd 004252b7 brfwmxr:actsupt.obj - 0001:0002431f _BrActorRemove 0042531f brfwmxr:actsupt.obj - 0001:00024377 _BrActorRelink 00425377 brfwmxr:actsupt.obj - 0001:000243fb _BrActorAllocate 004253fb brfwmxr:actsupt.obj - 0001:00024542 _BrActorFree 00425542 brfwmxr:actsupt.obj - 0001:00024571 BrActorToRoot_ 00425571 brfwmxr:actsupt.obj - 0001:000245d5 BrCameraToScreenMatrix4_ 004255d5 brfwmxr:actsupt.obj - 0001:00024695 BrVector3EyeInModel_ 00425695 brfwmxr:actsupt.obj - 0001:000246e5 _BrActorToActorMatrix34 004256e5 brfwmxr:actsupt.obj - 0001:0002497d _BrActorToScreenMatrix4 0042597d brfwmxr:actsupt.obj - 0001:00024b29 _BrActorToBounds 00425b29 brfwmxr:actsupt.obj - 0001:00024bd5 _BrBoundsToMatrix34 00425bd5 brfwmxr:actsupt.obj - 0001:00024ca0 SurfacePerScene_ 00425ca0 brfwmxr:surface.obj - 0001:00025190 SurfacePerModel_ 00426190 brfwmxr:surface.obj - 0001:00025478 Surface_Null_ 00426478 brfwmxr:surface.obj - 0001:0002547f FaceSurface_Null_ 0042647f brfwmxr:surface.obj - 0001:00025486 SurfacePerMaterial_ 00426486 brfwmxr:surface.obj - 0001:000256fa _BrLightEnable 004266fa brfwmxr:surface.obj - 0001:00025746 _BrLightDisable 00426746 brfwmxr:surface.obj - 0001:00025772 _BrClipPlaneEnable 00426772 brfwmxr:surface.obj - 0001:000257be _BrClipPlaneDisable 004267be brfwmxr:surface.obj - 0001:000257ea _CopyComponents 004267ea brfwmxr:surface.obj - 0001:00025850 _BrSceneModelLight 00426850 brfwmxr:prelight.obj - 0001:000259a0 DfPush_ 004269a0 brfwmxr:datafile.obj - 0001:000259f8 DfPop_ 004269f8 brfwmxr:datafile.obj - 0001:00025a88 DfTop_ 00426a88 brfwmxr:datafile.obj - 0001:00025b20 DfTopType_ 00426b20 brfwmxr:datafile.obj - 0001:00026ed1 DfStructWriteArray_ 00427ed1 brfwmxr:datafile.obj - 0001:00026f1d DfStructReadArray_ 00427f1d brfwmxr:datafile.obj - 0001:00027247 DfCountSizeText_ 00428247 brfwmxr:datafile.obj - 0001:0002788d DfChunksInterpret_ 0042888d brfwmxr:datafile.obj - 0001:000279af DfOpen_ 004289af brfwmxr:datafile.obj - 0001:00027a63 DfClose_ 00428a63 brfwmxr:datafile.obj - 0001:00027adf _BrWriteModeSet 00428adf brfwmxr:datafile.obj - 0001:00027b00 _BrMatrix4Copy 00428b00 brfwmxr:matrix4.obj - 0001:00027b6c _BrMatrix4Mul 00428b6c brfwmxr:matrix4.obj - 0001:00027fbc _BrMatrix4Identity 00428fbc brfwmxr:matrix4.obj - 0001:00028034 _BrMatrix4Scale 00429034 brfwmxr:matrix4.obj - 0001:000280a8 _BrMatrix4Inverse 004290a8 brfwmxr:matrix4.obj - 0001:000281d7 _BrMatrix4Determinant 004291d7 brfwmxr:matrix4.obj - 0001:00028327 _BrMatrix4Adjoint 00429327 brfwmxr:matrix4.obj - 0001:00028663 _BrMatrix4Perspective 00429663 brfwmxr:matrix4.obj - 0001:00028746 _BrMatrix4Apply 00429746 brfwmxr:matrix4.obj - 0001:00028869 _BrMatrix4ApplyP 00429869 brfwmxr:matrix4.obj - 0001:000289b4 _BrMatrix4ApplyV 004299b4 brfwmxr:matrix4.obj - 0001:00028ad8 _BrMatrix4TApply 00429ad8 brfwmxr:matrix4.obj - 0001:00028bfb _BrMatrix4TApplyP 00429bfb brfwmxr:matrix4.obj - 0001:00028d46 _BrMatrix4TApplyV 00429d46 brfwmxr:matrix4.obj - 0001:00028e6a _BrMatrix4Copy34 00429e6a brfwmxr:matrix4.obj - 0001:00028eda _BrMatrix4Pre34 00429eda brfwmxr:matrix4.obj - 0001:000292fc _BrTransformToMatrix34 0042a2fc brfwmxr:transfrm.obj - 0001:00029588 _BrMatrix34PreTransform 0042a588 brfwmxr:transfrm.obj - 0001:000295bc _BrMatrix34PostTransform 0042a5bc brfwmxr:transfrm.obj - 0001:000295f0 _BrMatrix4PreTransform 0042a5f0 brfwmxr:transfrm.obj - 0001:00029640 _BrMatrix34ToTransform 0042a640 brfwmxr:transfrm.obj - 0001:00029730 _BrTransformToTransform 0042a730 brfwmxr:transfrm.obj - 0001:000297a0 _LightingFaceColour 0042a7a0 brfwmxr:light24.obj - 0001:00029838 _LightingColourCopyMaterial 0042a838 brfwmxr:light24.obj - 0001:0002987b _LightingColourCopyVertex 0042a87b brfwmxr:light24.obj - 0001:000298ab _LightingColour 0042a8ab brfwmxr:light24.obj - 0001:00029b12 LightingColour_Null_ 0042ab12 brfwmxr:light24.obj - 0001:00029b29 LightingColour_Dirn_ 0042ab29 brfwmxr:light24.obj - 0001:00029d29 LightingColour_Point_ 0042ad29 brfwmxr:light24.obj - 0001:0002a03d LightingColour_PointAttn_ 0042b03d brfwmxr:light24.obj - 0001:0002a39c LightingColour_Spot_ 0042b39c brfwmxr:light24.obj - 0001:0002a748 LightingColour_SpotAttn_ 0042b748 brfwmxr:light24.obj - 0001:0002ab60 _BrEnvironmentSet 0042bb60 brfwmxr:envmap.obj - 0001:0002ab74 _MapEnvironmentInfinite2D 0042bb74 brfwmxr:envmap.obj - 0001:0002ad50 _MapEnvironmentLocal2D 0042bd50 brfwmxr:envmap.obj - 0001:0002afa0 _MapFromVertex 0042bfa0 brfwmxr:envmap.obj - 0001:0002b01b _MapFromVertexOnly 0042c01b brfwmxr:envmap.obj - 0001:0002b090 _LightingFaceIndex 0042c090 brfwmxr:light8.obj - 0001:0002b0fc _LightingIndexCopyMaterial 0042c0fc brfwmxr:light8.obj - 0001:0002b118 _LightingIndexCopyVertex 0042c118 brfwmxr:light8.obj - 0001:0002b148 _LightingIndex 0042c148 brfwmxr:light8.obj - 0001:0002b2e0 LightingIndex_Null_ 0042c2e0 brfwmxr:light8.obj - 0001:0002b2ec LightingIndex_Dirn_ 0042c2ec brfwmxr:light8.obj - 0001:0002b417 LightingIndex_Point_ 0042c417 brfwmxr:light8.obj - 0001:0002b643 LightingIndex_PointAttn_ 0042c643 brfwmxr:light8.obj - 0001:0002b8b3 LightingIndex_Spot_ 0042c8b3 brfwmxr:light8.obj - 0001:0002bb37 LightingIndex_SpotAttn_ 0042cb37 brfwmxr:light8.obj - 0001:0002be20 _LightingColour_1MD 0042ce20 brfwmxr:light24o.obj - 0001:0002be40 _LightingColour_1MDT 0042ce40 brfwmxr:light24o.obj - 0001:0002bec0 _LightingIndex_1MD 0042cec0 brfwmxr:light8o.obj - 0001:0002c05f _LightingIndex_1MDT 0042d05f brfwmxr:light8o.obj - 0001:0002c260 _BrSwap32 0042d260 brfwmxr:bswap.obj - 0001:0002c298 _BrSwap16 0042d298 brfwmxr:bswap.obj - 0001:0002c2c0 _BrSwapFloat 0042d2c0 brfwmxr:bswap.obj - 0001:0002c318 _BrSwapBlock 0042d318 brfwmxr:bswap.obj - 0001:0002c500 _BrEulerToMatrix34 0042d500 brfwmxr:angles.obj - 0001:0002c824 _BrMatrix34ToEuler 0042d824 brfwmxr:angles.obj - 0001:0002ca83 _BrEulerToMatrix4 0042da83 brfwmxr:angles.obj - 0001:0002cab3 _BrMatrix4ToEuler 0042dab3 brfwmxr:angles.obj - 0001:0002cae2 _BrEulerToQuat 0042dae2 brfwmxr:angles.obj - 0001:0002cd66 _BrQuatToEuler 0042dd66 brfwmxr:angles.obj - 0001:0002cda0 _BrQuatMul 0042dda0 brfwmxr:quat.obj - 0001:0002cec0 _BrQuatNormalise 0042dec0 brfwmxr:quat.obj - 0001:0002cf38 _BrQuatInvert 0042df38 brfwmxr:quat.obj - 0001:0002cf68 _BrQuatSlerp 0042df68 brfwmxr:quat.obj - 0001:0002d138 _BrQuatToMatrix34 0042e138 brfwmxr:quat.obj - 0001:0002d263 _BrMatrix34ToQuat 0042e263 brfwmxr:quat.obj - 0001:0002d42f _BrQuatToMatrix4 0042e42f brfwmxr:quat.obj - 0001:0002d45f _BrMatrix4ToQuat 0042e45f brfwmxr:quat.obj - 0001:0002d490 _BrZbModelRender 0042e490 brzbmxr:zbrendr.obj - 0001:0002d9f0 _BrZbSceneRenderBegin 0042e9f0 brzbmxr:zbrendr.obj - 0001:0002dc30 _BrZbSceneRenderAdd 0042ec30 brzbmxr:zbrendr.obj - 0001:0002dc50 _BrZbSceneRenderEnd 0042ec50 brzbmxr:zbrendr.obj - 0001:0002dc5f _BrZbSceneRender 0042ec5f brzbmxr:zbrendr.obj - 0001:0002dcaa _BrZbSetRenderBoundsCallback 0042ecaa brzbmxr:zbrendr.obj - 0001:0002dd00 ZbFindVisibleFaces_ 0042ed00 brzbmxr:zbmesh.obj - 0001:0002e04b ZbFindVisibleFacesPar_ 0042f04b brzbmxr:zbmesh.obj - 0001:0002e38f ZbTransformVertices_ 0042f38f brzbmxr:zbmesh.obj - 0001:0002ea43 _ZbRenderFaceGroup 0042fa43 brzbmxr:zbmesh.obj - 0001:0002ecf7 _ZbRenderFaceGroup_FaceI 0042fcf7 brzbmxr:zbmesh.obj - 0001:0002efd3 _ZbRenderFaceGroup_FaceIV 0042ffd3 brzbmxr:zbmesh.obj - 0001:0002f343 _ZbRenderFaceGroup_FaceRGB 00430343 brzbmxr:zbmesh.obj - 0001:000305fe ZbMeshRender_ 004315fe brzbmxr:zbmesh.obj - 0001:000308ba ZbScratchShrink_ 004318ba brzbmxr:zbmesh.obj - 0001:000308c0 _PointRenderPFZ2 004318c0 brzbmxr:zbmeshp.obj - 0001:00030978 _PointRenderPFZ4 00431978 brzbmxr:zbmeshp.obj - 0001:00030d54 ZbMeshRenderPoints_ 00431d54 brzbmxr:zbmeshp.obj - 0001:00030fe0 _BrZbBegin 00431fe0 brzbmxr:zbsetup.obj - 0001:00031093 _BrZbEnd 00432093 brzbmxr:zbsetup.obj - 0001:000310b7 _TriangleRender_Null 004320b7 brzbmxr:zbsetup.obj - 0001:000310be _LineRender_Null 004320be brzbmxr:zbsetup.obj - 0001:000310c5 _PointRender_Null 004320c5 brzbmxr:zbsetup.obj - 0001:000311f4 ZbBoundingBoxRenderPoints_ 004321f4 brzbmxr:bbox.obj - 0001:00031220 ZbBoundingBoxRenderEdges_ 00432220 brzbmxr:bbox.obj - 0001:0003124c ZbBoundingBoxRenderFaces_ 0043224c brzbmxr:bbox.obj - 0001:00031280 _LineRenderPFZ2I555 00432280 brzbmxr:zbmeshe.obj - 0001:0003170f _LineRenderPFZ2I888 0043270f brzbmxr:zbmeshe.obj - 0001:00031b9b _LineRenderPFZ2I 00432b9b brzbmxr:zbmeshe.obj - 0001:00031f0f _LineRenderPFZ4I 00432f0f brzbmxr:zbmeshe.obj - 0001:00032f2a ZbMeshRenderEdges_ 00433f2a brzbmxr:zbmeshe.obj - 0001:000331c8 _OSFFVGroupCulled_A 004341c8 brzbmxr:mesh386.obj - 0001:00033289 _OSFFVGroupCulledLit_A 00434289 brzbmxr:mesh386.obj - 0001:00033371 _OSCopyModelToScreen_A 00434371 brzbmxr:mesh386.obj - 0001:0003345a _OSTVGroup_A 0043445a f brzbmxr:mesh386.obj - 0001:00033579 _OSTVGroupBC_A 00434579 brzbmxr:mesh386.obj - 0001:000336cc _OSTVGroupLit_A 004346cc brzbmxr:mesh386.obj - 0001:000337fe _OSTVGroupLitBC_A 004347fe brzbmxr:mesh386.obj - 0001:000340f6 ZbFaceClip_ 004350f6 brzbmxr:zbclip.obj - 0001:000342fe ZbTempClip_ 004352fe brzbmxr:zbclip.obj - 0001:000344f0 _TriangleRenderPIZ2TIP256 004354f0 brzbmxr:persp.obj - 0001:00035676 _TriangleRenderPIZ2TP256 00436676 brzbmxr:persp.obj - 0001:000366c0 _TriangleRenderPIZ2TIP64 004376c0 brzbmxr:persp.obj - 0001:000378ca _TriangleRenderPIZ2TP64 004388ca brzbmxr:persp.obj - 0001:000389a7 _TriangleRenderPIZ2TP1024 004399a7 brzbmxr:persp.obj - 0001:00039ab0 _TriangleRenderPIZ2_RGB_888 0043aab0 brzbmxr:tt24_piz.obj - 0001:00039ad1 _RawTriangle_PIZ2_RGB_888 0043aad1 f brzbmxr:tt24_piz.obj - 0001:0003a180 _TriangleRenderPIZ2I_RGB_888 0043b180 brzbmxr:tt24_piz.obj - 0001:0003a1a1 _RawTriangle_PIZ2I_RGB_888 0043b1a1 brzbmxr:tt24_piz.obj - 0001:0003ae60 _TriangleRenderPIZ2TIA 0043be60 brzbmxr:awtm.obj - 0001:0003b728 _TriangleRenderPIZ2TA 0043c728 brzbmxr:awtm.obj - 0001:0003bf58 _TriangleRenderPIZ2TA24 0043cf58 brzbmxr:awtm.obj - 0001:0003c7d4 _TriangleRenderPIZ2TA15 0043d7d4 brzbmxr:awtm.obj - 0001:0003d020 _TriangleRenderPIZ2_RGB_555 0043e020 brzbmxr:tt15_piz.obj - 0001:0003d041 _RawTriangle_PIZ2_RGB_555 0043e041 brzbmxr:tt15_piz.obj - 0001:0003d6c0 _TriangleRenderPIZ2I_RGB_555 0043e6c0 f brzbmxr:tt15_piz.obj - 0001:0003d6e1 _RawTriangle_PIZ2I_RGB_555 0043e6e1 brzbmxr:tt15_piz.obj - 0001:0003e44c _TriangleRenderPIZ2 0043f44c brzbmxr:ti8_piz.obj - 0001:0003e46d _RawTriangle_PIZ2 0043f46d brzbmxr:ti8_piz.obj - 0001:0003ea16 _TriangleRenderPIZ2I 0043fa16 brzbmxr:ti8_piz.obj - 0001:0003ea37 _RawTriangle_PIZ2I 0043fa37 brzbmxr:ti8_piz.obj - 0001:0003f1f6 _TriangleRenderPIZ2T 004401f6 brzbmxr:ti8_piz.obj - 0001:0003f217 _RawTriangle_PIZ2T 00440217 brzbmxr:ti8_piz.obj - 0001:0003fd10 _TriangleRenderPIZ2TI 00440d10 brzbmxr:ti8_piz.obj - 0001:0003fd31 _RawTriangle_PIZ2TI 00440d31 f brzbmxr:ti8_piz.obj - 0001:00040ae0 ZbMaterialUpdate_ 00441ae0 brzbmxr:zbmatl.obj - 0001:00040c50 _TriangleRenderPIZ2TAD 00441c50 brzbmxr:decal.obj - 0001:00040c94 _TriangleRenderPIZ2TIAD 00441c94 brzbmxr:decal.obj - 0001:00040dc8 _ScanLinePIZ2TIP256 00441dc8 brzbmxr:pscan.obj - 0001:00041156 _ScanLinePIZ2TIP64 00442156 f brzbmxr:pscan.obj - 0001:000414fe _ScanLinePIZ2TP256 004424fe brzbmxr:pscan.obj - 0001:00041814 _ScanLinePIZ2TP64 00442814 brzbmxr:pscan.obj - 0001:00041b44 _ScanLinePIZ2TP1024 00442b44 brzbmxr:pscan.obj - 0001:00041e88 _SafeFixedMac2Div 00442e88 f brzbmxr:safediv.obj - 0001:00041edc _TrapezoidRenderPIZ2TA 00442edc brzbmxr:piz2tia.obj - 0001:0004225d _TrapezoidRenderPIZ2TIA 0044325d brzbmxr:piz2tia.obj - 0001:00042665 _TrapezoidRenderPIZ2TA15 00443665 f brzbmxr:piz2tia.obj - 0001:00042a10 _TrapezoidRenderPIZ2TA24 00443a10 brzbmxr:piz2tia.obj - 0001:00042ddd _freopen 00443ddd f LIBC:freopen.obj - 0001:00042e13 _fread 00443e13 f LIBC:fread.obj - 0001:00042f4a __fsopen 00443f4a f LIBC:fopen.obj - 0001:00042f6d _fopen 00443f6d f LIBC:fopen.obj - 0001:00042f80 _getenv 00443f80 f LIBC:getenv.obj - 0001:0004300c _strchr 0044400c f LIBC:strchr.obj - 0001:00043031 __filbuf 00444031 f LIBC:_filbuf.obj - 0001:000430f4 _fwrite 004440f4 f LIBC:fwrite.obj - 0001:00043249 _fgets 00444249 f LIBC:fgets.obj - 0001:000432a4 _fputs 004442a4 f LIBC:fputs.obj - 0001:000432f6 _fseek 004442f6 f LIBC:fseek.obj - 0001:000435b4 _strtol 004445b4 f LIBC:strtol.obj - 0001:000435cb _strtoul 004445cb f LIBC:strtol.obj - 0001:000435e4 _memcmp 004445e4 f LIBC:memcmp.obj - 0001:00043604 _memcpy 00444604 f LIBC:memcpy.obj - 0001:00043752 _atof 00444752 f LIBC:atof.obj - 0001:000437ae _fabs 004447ae f LIBC:fabs.obj - 0001:00043858 __openfile 00444858 f LIBC:_open.obj - 0001:000439f3 __read 004449f3 f LIBC:read.obj - 0001:00043bed __getstream 00444bed f LIBC:stream.obj - 0001:00043c2a __mbsnbicoll 00444c2a f LIBC:mbsnbico.obj - 0001:00043df8 ___wtomb_environ 00444df8 f LIBC:wtombenv.obj - 0001:00043e77 _ftell 00444e77 f LIBC:ftell.obj - 0001:00043faf _toupper 00444faf f LIBC:toupper.obj - 0001:0004407b __fltin 0044507b f LIBC:cfin.obj - 0001:0004411c __sopen 0044511c f LIBC:open.obj - 0001:00044463 ___set_fcntrlcomp 00445463 f LIBC:setfcntr.obj - 0001:000444c9 ___crtCompareStringA 004454c9 f LIBC:aw_cmp.obj - 0001:00044799 ___crtsetenv 00445799 f LIBC:setenv.obj - 0001:00044a63 __chsize 00445a63 f LIBC:chsize.obj - 0001:00044b97 __mbschr 00445b97 f LIBC:mbschr.obj - 0001:00044c18 __strdup 00445c18 f LIBC:strdup.obj - 0001:00044c3e __setmode 00445c3e f LIBC:setmode.obj - 0001:00044cb8 __alloca_probe 00445cb8 LIBC:chkstk.obj - 0001:00044cb8 __chkstk 00445cb8 LIBC:chkstk.obj - 0001:00044cf0 _BrOnScreenCheck 00445cf0 brfwmxr:onscreen.obj - 0002:00000048 ?vcodmUtil@@3VCODM@@A 00447048 utilglob.obj - 0002:00000060 ?vmutxMem@@3VMUTX@@A 00447060 utilglob.obj - 0002:00000078 ?vkcdcUtil@@3VKCDC@@A 00447078 utilglob.obj - 0002:00000080 ?_usac@@3VUSAC@@A 00447080 utilglob.obj - 0002:00000098 ?vsflUtil@@3VSFL@@A 00447098 utilglob.obj - 0002:000000b8 ?vrndUtil@@3VRND@@A 004470b8 utilglob.obj - 0002:000000e8 ?_ers@@3VERS@@A 004470e8 utilerro.obj - 0002:00000180 ?_mpchschsLower@@3QADA 00447180 utilstr.obj - 0002:00000288 ?_mpchschsUpper@@3QADA 00447288 utilstr.obj - 0002:000003c8 ?_pcflFirst@CFL@@0PAV1@A 004473c8 chunk.obj - 0002:000003f0 ?_pfilFirst@FIL@@1PAV1@A 004473f0 file.obj - 0002:000003f8 ?_mutxList@FIL@@1VMUTX@@A 004473f8 file.obj - 0002:00000420 ?_fniTemp@@3VFNI@@A 00447420 fniwin.obj - 0002:00000538 _fw 00447538 brfwmxr:fwsetup.obj - 0002:00001a0c __BrLoadedImages 00448a0c brfwmxr:loader.obj - 0002:00004cd0 _zb 0044bcd0 brzbmxr:zbsetup.obj - 0002:00005aec _tsl 0044caec brzbmxr:persp.obj - 0002:00005b14 _awsl 0044cb14 brzbmxr:awtm.obj - 0002:00005b90 __heap_descpages 0044cb90 - 0002:00005ba0 __heap_regions 0044cba0 - 0002:00005ea0 ___onexitend 0044cea0 - 0002:00005ea4 ___onexitbegin 0044cea4 - 0002:00005ea8 __acmdln 0044cea8 - 0002:00005eb0 __bufin 0044ceb0 - 0003:00000058 ??_7BASE@@6B@ 0044e058 tdfmake.obj - 0003:00000070 ??_7KCDC@@6B@ 0044e070 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 0044e090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 0044e0a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 0044e0d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 0044e0f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 0044e108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 0044e120 utilstr.obj - 0003:00000148 ??_7GRPB@@6B@ 0044e148 groups.obj - 0003:00000170 ??_7GLB@@6B@ 0044e170 groups.obj - 0003:000001a0 ??_7GL@@6B@ 0044e1a0 groups.obj - 0003:000001d0 ??_7GGB@@6B@ 0044e1d0 groups.obj - 0003:00000200 ??_7GG@@6B@ 0044e200 groups.obj - 0003:00000230 ??_7CFL@@6B@ 0044e230 chunk.obj - 0003:00000248 ??_7CGE@@6B@ 0044e248 chunk.obj - 0003:00000260 ??_7CODM@@6B@ 0044e260 codec.obj - 0003:00000290 ??_7BACO@@6B@ 0044e290 crf.obj - 0003:000002b8 ??_7CRF@@6B@ 0044e2b8 crf.obj - 0003:000002e0 ??_7FIL@@6B@ 0044e2e0 file.obj - 0003:000002f8 ??_7BLCK@@6B@ 0044e2f8 file.obj - 0003:00000310 ??_7FNI@@6B@ 0044e310 fniwin.obj - 0003:00000328 ??_7FNE@@6B@ 0044e328 fniwin.obj - 0003:00000340 ??_7MODL@@6B@ 0044e340 engine:modl.obj - 0003:00000378 ___lookuptable 0044e378 LIBC:output.obj - 0004:00000000 ??_C@_0BE@OKJN@TDF?5Maker?5failed?4?6?6?$AA@ 0044f000 tdfmake.obj - 0004:00000014 ??_C@_0BN@JOKH@Couldn?8t?5save?5chunky?5file?4?6?6?$AA@ 0044f014 tdfmake.obj - 0004:00000034 ??_C@_0O@FGPG@?$CFs?5?5?9?9?9?$DO?5?5?$CFs?6?$AA@ 0044f034 tdfmake.obj - 0004:00000044 ??_C@_0BK@IKMP@Bad?5source?5directory?5?$CFs?6?6?$AA@ 0044f044 tdfmake.obj - 0004:00000060 ??_C@_0CN@MNGM@Couldn?8t?5create?5destination?5chun@ 0044f060 tdfmake.obj - 0004:00000090 ??_C@_0BP@EJAN@Bad?5destination?5file?5name?5?$CFs?6?6?$AA@ 0044f090 tdfmake.obj - 0004:000000b0 ??_C@_02DILL@?$CFs?$AA@ 0044f0b0 tdfmake.obj - 0004:000000b4 ??_C@_0DO@OCPK@Usage?3?6?5?5?5tdfmake?5?$DMfontdir1?$DO?5?$DMfo@ 0044f0b4 tdfmake.obj - 0004:000000f4 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0044f0f4 tdfmake.obj - 0004:00000130 ??_C@_0BK@JAFK@?6Microsoft?5?$CIR?$CJ?5TDF?5Maker?6?$AA@ 0044f130 tdfmake.obj - 0004:0000014c ??_C@_0CF@MAMJ@Added?5a?5nonbreaking?5space?5charac@ 0044f14c tdfmake.obj - 0004:00000174 ??_C@_0BJ@FPNB@Added?5a?5space?5character?6?$AA@ 0044f174 tdfmake.obj - 0004:00000190 ??_C@_0BJ@FFEH@Converted?5?$CFd?5characters?6?$AA@ 0044f190 tdfmake.obj - 0004:000001ac ??_C@_0CF@NAMG@Filename?5must?5include?5a?5number?3?5@ 0044f1ac tdfmake.obj - 0004:000001d4 ?vpcodmUtil@@3PAVCODM@@A 0044f1d4 utilglob.obj - 0004:000001d8 ?vpusac@@3PAVUSAC@@A 0044f1d8 utilglob.obj - 0004:000001dc ?vpers@@3PAVERS@@A 0044f1dc utilerro.obj - 0004:000001e0 ?vpfnlib@@3P6GJJJ@ZA 0044f1e0 utilmem.obj - 0004:000001e4 ?_fInLiberator@@3HA 0044f1e4 utilmem.obj - 0004:000002e8 ?_pszOom@@3PADA 0044f2e8 scrcom.obj - 0004:000002ec ?_pszSyntax@@3PADA 0044f2ec scrcom.obj - 0004:000002f0 ?_rgszop@@3QAUSZOP@@A 0044f2f0 scrcom.obj - 0004:000004d0 ?_rgarop@@3QAUAROP@@A 0044f4d0 scrcom.obj - 0004:00000740 ?_rgpszKey@@3QAPADA 0044f740 scrcom.obj - 0004:00000760 ?_rgtomeExp@@3QAUTOME@@A 0044f760 scrcom.obj - 0004:000009c0 ?_rgtomeOp@@3QAUTOME@@A 0044f9c0 scrcom.obj - 0004:00000a84 ??_C@_08HOLA@Continue?$AA@ 0044fa84 scrcom.obj - 0004:00000a90 ??_C@_05EABD@Break?$AA@ 0044fa90 scrcom.obj - 0004:00000a98 ??_C@_05NNJC@While?$AA@ 0044fa98 scrcom.obj - 0004:00000aa0 ??_C@_03HPMG@End?$AA@ 0044faa0 scrcom.obj - 0004:00000aa4 ??_C@_04CCEF@Else?$AA@ 0044faa4 scrcom.obj - 0004:00000aac ??_C@_04CPFE@Elif?$AA@ 0044faac scrcom.obj - 0004:00000ab4 ??_C@_02BAJ@If?$AA@ 0044fab4 scrcom.obj - 0004:00000ab8 ??_C@_04POBJ@Goto?$AA@ 0044fab8 scrcom.obj - 0004:00000ac0 ??_C@_06GDJA@IfGoto?$AA@ 0044fac0 scrcom.obj - 0004:00000ac8 ??_C@_0L@KPKB@CopySubStr?$AA@ 0044fac8 scrcom.obj - 0004:00000ad4 ??_C@_06KDAM@LenStr?$AA@ 0044fad4 scrcom.obj - 0004:00000adc ??_C@_0L@ICIJ@ConcatStrs?$AA@ 0044fadc scrcom.obj - 0004:00000ae8 ??_C@_08HOLI@StrToNum?$AA@ 0044fae8 scrcom.obj - 0004:00000af4 ??_C@_08PBFD@NumToStr?$AA@ 0044faf4 scrcom.obj - 0004:00000b00 ??_C@_09JFKG@ScaleTime?$AA@ 0044fb00 scrcom.obj - 0004:00000b0c ??_C@_09KOLA@MergeStrs?$AA@ 0044fb0c scrcom.obj - 0004:00000b18 ??_C@_07MHIA@NukeStr?$AA@ 0044fb18 scrcom.obj - 0004:00000b20 ??_C@_07ELLC@MoveStr?$AA@ 0044fb20 scrcom.obj - 0004:00000b28 ??_C@_07PCEE@CopyStr?$AA@ 0044fb28 scrcom.obj - 0004:00000b30 ??_C@_05PFIH@Pause?$AA@ 0044fb30 scrcom.obj - 0004:00000b38 ??_C@_05LKIE@Match?$AA@ 0044fb38 scrcom.obj - 0004:00000b40 ??_C@_08HGHE@NextCard?$AA@ 0044fb40 scrcom.obj - 0004:00000b4c ??_C@_0M@GGGO@ShuffleList?$AA@ 0044fb4c scrcom.obj - 0004:00000b58 ??_C@_07MFK@Shuffle?$AA@ 0044fb58 scrcom.obj - 0004:00000b60 ??_C@_09CAHB@SetReturn?$AA@ 0044fb60 scrcom.obj - 0004:00000b6c ??_C@_06JCBD@Return?$AA@ 0044fb6c scrcom.obj - 0004:00000b74 ??_C@_04LKDK@Exit?$AA@ 0044fb74 scrcom.obj - 0004:00000b7c ??_C@_02DNIN@Go?$AA@ 0044fb7c scrcom.obj - 0004:00000b80 ??_C@_04HAFI@GoNz?$AA@ 0044fb80 scrcom.obj - 0004:00000b88 ??_C@_03JNBL@GoZ?$AA@ 0044fb88 scrcom.obj - 0004:00000b8c ??_C@_04PFCA@GoLe?$AA@ 0044fb8c scrcom.obj - 0004:00000b94 ??_C@_04HLIL@GoGe?$AA@ 0044fb94 scrcom.obj - 0004:00000b9c ??_C@_04PGMH@GoLt?$AA@ 0044fb9c scrcom.obj - 0004:00000ba4 ??_C@_04HIGM@GoGt?$AA@ 0044fba4 scrcom.obj - 0004:00000bac ??_C@_04NIHF@GoNe?$AA@ 0044fbac scrcom.obj - 0004:00000bb4 ??_C@_04FFPC@GoEq?$AA@ 0044fbb4 scrcom.obj - 0004:00000bbc ??_C@_06ININ@Select?$AA@ 0044fbbc scrcom.obj - 0004:00000bc4 ??_C@_07KEJC@RndList?$AA@ 0044fbc4 scrcom.obj - 0004:00000bcc ??_C@_07OONJ@PopList?$AA@ 0044fbcc scrcom.obj - 0004:00000bd4 ??_C@_07GBJG@DupList?$AA@ 0044fbd4 scrcom.obj - 0004:00000bdc ??_C@_03JCDI@Rev?$AA@ 0044fbdc scrcom.obj - 0004:00000be0 ??_C@_03FPBH@Rot?$AA@ 0044fbe0 scrcom.obj - 0004:00000be4 ??_C@_04BCL@Swap?$AA@ 0044fbe4 scrcom.obj - 0004:00000bec ??_C@_03FBGG@Pop?$AA@ 0044fbec scrcom.obj - 0004:00000bf0 ??_C@_03MKPO@Dup?$AA@ 0044fbf0 scrcom.obj - 0004:00000bf4 ??_C@_02LCLA@Le?$AA@ 0044fbf4 scrcom.obj - 0004:00000bf8 ??_C@_02DMBL@Ge?$AA@ 0044fbf8 scrcom.obj - 0004:00000bfc ??_C@_02LBFH@Lt?$AA@ 0044fbfc scrcom.obj - 0004:00000c00 ??_C@_02DPPM@Gt?$AA@ 0044fc00 scrcom.obj - 0004:00000c04 ??_C@_02JPOF@Ne?$AA@ 0044fc04 scrcom.obj - 0004:00000c08 ??_C@_02BCGC@Eq?$AA@ 0044fc08 scrcom.obj - 0004:00000c0c ??_C@_04ENMP@LNot?$AA@ 0044fc0c scrcom.obj - 0004:00000c14 ??_C@_04HPKA@LXor?$AA@ 0044fc14 scrcom.obj - 0004:00000c1c ??_C@_04LILD@BNot?$AA@ 0044fc1c scrcom.obj - 0004:00000c24 ??_C@_04IKNM@BXor?$AA@ 0044fc24 scrcom.obj - 0004:00000c2c ??_C@_03FEFN@BOr?$AA@ 0044fc2c scrcom.obj - 0004:00000c30 ??_C@_04CJLN@BAnd?$AA@ 0044fc30 scrcom.obj - 0004:00000c38 ??_C@_06NIPH@MulDiv?$AA@ 0044fc38 scrcom.obj - 0004:00000c40 ??_C@_03OAMN@Rnd?$AA@ 0044fc40 scrcom.obj - 0004:00000c44 ??_C@_03PGJO@Dec?$AA@ 0044fc44 scrcom.obj - 0004:00000c48 ??_C@_03PCMM@Inc?$AA@ 0044fc48 scrcom.obj - 0004:00000c4c ??_C@_03GIFK@Neg?$AA@ 0044fc4c scrcom.obj - 0004:00000c50 ??_C@_03CEPH@Abs?$AA@ 0044fc50 scrcom.obj - 0004:00000c54 ??_C@_03PJNJ@Mod?$AA@ 0044fc54 scrcom.obj - 0004:00000c58 ??_C@_03LANL@Div?$AA@ 0044fc58 scrcom.obj - 0004:00000c5c ??_C@_03FPMJ@Mul?$AA@ 0044fc5c scrcom.obj - 0004:00000c60 ??_C@_03KJKL@Sub?$AA@ 0044fc60 scrcom.obj - 0004:00000c64 ??_C@_03KPJN@Add?$AA@ 0044fc64 scrcom.obj - 0004:00000c68 ??_C@_0N@GABD@Syntax?5error?$AA@ 0044fc68 scrcom.obj - 0004:00000c78 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 0044fc78 scrcom.obj - 0004:00000c88 ?_szPoundLine@@3QADA 0044fc88 lex.obj - 0004:00000c90 ?_mpchgrfct@LEXB@@1QAGA 0044fc90 lex.obj - 0004:00000d90 ?_rgtt@@3QAFA 0044fd90 lex.obj - 0004:00000e50 ?_rgttDouble@@3QAFA 0044fe50 lex.obj - 0004:00000f00 ?_rgttEqual@@3QAFA 0044ff00 lex.obj - 0004:00000fb8 ?_rtiLast@CFL@@0JA 0044ffb8 chunk.obj - 0004:00000fbc ?vftgCreator@FIL@@2JA 0044ffbc file.obj - 0004:00000fc0 ?vftgTemp@@3JA 0044ffc0 fniwin.obj - 0004:00000fc8 ??_C@_08GBDA@Temp?$CF04x?$AA@ 0044ffc8 fniwin.obj - 0004:00000fd4 ??_C@_04POLC@?$CFc?3?2?$AA@ 0044ffd4 fniwin.obj - 0004:00000fdc ??_C@_02OOND@?4?4?$AA@ 0044ffdc fniwin.obj - 0004:00000fe0 ??_C@_01FDHG@?$CK?$AA@ 0044ffe0 fniwin.obj - 0004:00000fe4 ??_C@_01PJCK@?4?$AA@ 0044ffe4 fniwin.obj - 0004:000011c8 _sin_table 004501c8 brfwmxr:fixed386.obj - 0004:00001248 _cos_table 00450248 brfwmxr:fixed386.obj - 0004:0000144c _arcsin_table 0045044c brfwmxr:fixed386.obj - 0004:0000164e _arccos_table 0045064e brfwmxr:fixed386.obj - 0004:00002084 __BrDefaultModel 00451084 brfwmxr:def_mdl.obj - 0004:00002194 __BrMemoryDevice 00451194 brfwmxr:pmmemops.obj - 0004:000021b0 __BrMemoryContext 004511b0 brfwmxr:pmmemops.obj - 0004:000022bc __BrDefaultMaterial 004512bc brfwmxr:def_mat.obj - 0004:000023dc __br_scratch_string 004513dc brfwmxr:scrstr.obj - 0004:00002644 __FontFixed3x5 00451644 brfwmxr:fnt3x5.obj - 0004:00002c58 __reciprocal 00451c58 brfwmxr:fixed.obj - 0004:00004c60 __8087 00453c60 brfwmxr:magicsym.obj - 0004:00004c64 __init_387_emulator 00453c64 brfwmxr:magicsym.obj - 0004:00004c68 _fltused_ 00453c68 brfwmxr:magicsym.obj - 0004:00004ca0 __iob 00453ca0 LIBC:_file.obj - 0004:00004f20 __lastiob 00453f20 LIBC:_file.obj - 0004:00005084 __fltused 00454084 LIBC:fpinit.obj - 0004:00005088 __ldused 00454088 LIBC:fpinit.obj - 0004:0000508c ___fastflag 0045408c LIBC:fpinit.obj - 0004:00005090 __adjust_fdiv 00454090 LIBC:fpinit.obj - 0004:00005094 __FPinit 00454094 LIBC:fpinit.obj - 0004:00005098 __FPmtinit 00454098 LIBC:fpinit.obj - 0004:0000509c __FPmtterm 0045409c LIBC:fpinit.obj - 0004:000050a0 __aenvptr 004540a0 LIBC:crt0.obj - 0004:000050a4 __wenvptr 004540a4 LIBC:crt0.obj - 0004:000050a8 __aexit_rtn 004540a8 LIBC:crt0.obj - 0004:000050b0 __stdbuf 004540b0 LIBC:_sftbuf.obj - 0004:000050c0 ___nullstring 004540c0 LIBC:output.obj - 0004:000050d4 ___wnullstring 004540d4 LIBC:output.obj - 0004:000050d8 _errno 004540d8 LIBC:crt0dat.obj - 0004:000050dc __doserrno 004540dc LIBC:crt0dat.obj - 0004:000050e0 __umaskval 004540e0 LIBC:crt0dat.obj - 0004:000050e4 __osver 004540e4 LIBC:crt0dat.obj - 0004:000050e8 __winver 004540e8 LIBC:crt0dat.obj - 0004:000050ec __winmajor 004540ec LIBC:crt0dat.obj - 0004:000050f0 __winminor 004540f0 LIBC:crt0dat.obj - 0004:000050f4 ___argc 004540f4 LIBC:crt0dat.obj - 0004:000050f8 ___argv 004540f8 LIBC:crt0dat.obj - 0004:000050fc ___wargv 004540fc LIBC:crt0dat.obj - 0004:00005100 __environ 00454100 LIBC:crt0dat.obj - 0004:00005104 ___initenv 00454104 LIBC:crt0dat.obj - 0004:00005108 __wenviron 00454108 LIBC:crt0dat.obj - 0004:0000510c ___winitenv 0045410c LIBC:crt0dat.obj - 0004:00005110 __pgmptr 00454110 LIBC:crt0dat.obj - 0004:00005114 __wpgmptr 00454114 LIBC:crt0dat.obj - 0004:00005118 __exitflag 00454118 LIBC:crt0dat.obj - 0004:0000511c __C_Termination_Done 0045411c LIBC:crt0dat.obj - 0004:00005120 __pnhHeap 00454120 LIBC:malloc.obj - 0004:00005188 __cfltcvt_tab 00454188 LIBC:cmiscdat.obj - 0004:000051b8 __XcptActTab 004541b8 LIBC:winxfltr.obj - 0004:00005230 __First_FPE_Indx 00454230 LIBC:winxfltr.obj - 0004:00005234 __Num_FPE 00454234 LIBC:winxfltr.obj - 0004:00005238 __XcptActTabCount 00454238 LIBC:winxfltr.obj - 0004:0000523c __fpecode 0045423c LIBC:winxfltr.obj - 0004:00005240 __pxcptinfoptrs 00454240 LIBC:winxfltr.obj - 0004:00005248 __mbctype 00454248 LIBC:mbctype.obj - 0004:0000534c ___mbcodepage 0045434c LIBC:mbctype.obj - 0004:00005350 ___mblcid 00454350 LIBC:mbctype.obj - 0004:00005358 ___mbulinfo 00454358 LIBC:mbctype.obj - 0004:00005460 __nhandle 00454460 LIBC:ioinit.obj - 0004:00005468 __osfile 00454468 LIBC:ioinit.obj - 0004:000054a8 __osfhnd 004544a8 LIBC:ioinit.obj - 0004:000055a8 __pipech 004545a8 LIBC:ioinit.obj - 0004:000055e8 __heap_desc 004545e8 LIBC:heapinit.obj - 0004:000055fc __heap_resetsize 004545fc LIBC:heapinit.obj - 0004:00005600 __amblksiz 00454600 LIBC:heapinit.obj - 0004:00005604 __heap_regionsize 00454604 LIBC:heapinit.obj - 0004:00005608 __heap_maxregsize 00454608 LIBC:heapinit.obj - 0004:00005878 __adbgmsg 00454878 LIBC:crt0msg.obj - 0004:0000587c __OP_SQRTjmptab 0045487c LIBC:87sqrt.obj - 0004:0000589c __infinity 0045489c LIBC:87tran.obj - 0004:000058a6 __minfinity 004548a6 LIBC:87tran.obj - 0004:000058b0 __logemax 004548b0 LIBC:87tran.obj - 0004:000058e0 __OP_POWjmptab 004548e0 LIBC:87tran.obj - 0004:00005930 __OP_LOG10jmptab 00454930 LIBC:87tran.obj - 0004:00005950 __OP_LOGjmptab 00454950 LIBC:87tran.obj - 0004:00005970 __OP_EXPjmptab 00454970 LIBC:87tran.obj - 0004:00005990 __cflush 00454990 LIBC:fflush.obj - 0004:00005998 __pctype 00454998 LIBC:ctype.obj - 0004:0000599c __pwctype 0045499c LIBC:ctype.obj - 0004:000059a0 __ctype 004549a0 LIBC:ctype.obj - 0004:00005ba4 __newmode 00454ba4 LIBC:_newmode.obj - 0004:00005ba8 ___mb_cur_max 00454ba8 LIBC:nlsdata1.obj - 0004:00005bb0 ___decimal_point 00454bb0 LIBC:nlsdata1.obj - 0004:00005bb4 ___decimal_point_length 00454bb4 LIBC:nlsdata1.obj - 0004:00005be8 __indefinite 00454be8 LIBC:87disp.obj - 0004:00005bf2 __piby2 00454bf2 LIBC:87disp.obj - 0004:00005c04 __cpower 00454c04 LIBC:87disp.obj - 0004:00005c18 ___lc_handle 00454c18 LIBC:nlsdata2.obj - 0004:00005c30 ___lc_codepage 00454c30 LIBC:nlsdata2.obj - 0004:00005fec __matherr_flag 00454fec LIBC:matherr.obj - 0004:00006010 __d_inf 00455010 LIBC:util.obj - 0004:00006018 __d_ind 00455018 LIBC:util.obj - 0004:00006020 __d_max 00455020 LIBC:util.obj - 0004:00006028 __d_min 00455028 LIBC:util.obj - 0004:00006030 __d_mzero 00455030 LIBC:util.obj - 0004:00006038 ___invalid_mb_chars 00455038 LIBC:setmbval.obj - 0004:00006040 __pow10pos 00455040 LIBC:constpow.obj - 0004:000061a0 __pow10neg 004551a0 LIBC:constpow.obj - 0004:00006300 _BrStdioFilesystem 00455300 bren:stdfile.obj - 0004:00006334 __BrDefaultFilesystem 00455334 bren:stdfile.obj - 0004:00006338 ??_C@_0M@FGJC@Standard?5IO?$AA@ 00455338 bren:stdfile.obj - 0004:00006344 ??_C@_0CI@EKNG@BrStdFileOpenRead?3?5invalid?5open_@ 00455344 bren:stdfile.obj - 0004:0000636c ??_C@_02MMAH@rt?$AA@ 0045536c bren:stdfile.obj - 0004:00006370 ??_C@_0N@OGCO@BRENDER_PATH?$AA@ 00455370 bren:stdfile.obj - 0004:00006380 ??_C@_02JKAF@rb?$AA@ 00455380 bren:stdfile.obj - 0004:00006384 ??_C@_02NGAF@wb?$AA@ 00455384 bren:stdfile.obj - 0004:00006388 ??_C@_02IAAH@wt?$AA@ 00455388 bren:stdfile.obj - 0004:00006390 _BrStdioDiagHandler 00455390 bren:stderr.obj - 0004:0000639c __BrDefaultDiagHandler 0045539c bren:stderr.obj - 0004:000063a0 ??_C@_0BC@DONA@Stdio?5DiagHandler?$AA@ 004553a0 bren:stderr.obj - 0004:000063b4 ??_C@_0BA@NGPO@BRender?5Warning?$AA@ 004553b4 bren:stderr.obj - 0004:000063c4 ??_C@_0BE@CABL@BRender?5Fatal?5Error?$AA@ 004553c4 bren:stderr.obj - 0004:000063d8 _BrStdlibAllocator 004553d8 bren:stdmem.obj - 0004:000063e8 __BrDefaultAllocator 004553e8 bren:stdmem.obj - 0004:000063ec ??_C@_06OCBH@malloc?$AA@ 004553ec bren:stdmem.obj - 0004:00007278 __BrFilePrimsNull 00456278 brfwmxr:datafile.obj - 0004:0000742f __CombineTransforms 0045642f brfwmxr:transfrm.obj - 0004:00007fc8 _cutoff 00456fc8 brzbmxr:persp.obj - 0004:00007fcc _PerspCheat 00456fcc brzbmxr:persp.obj - 0004:00008044 _Orig 00457044 brzbmxr:awtm.obj - 0004:000081ec __commode 004571ec LIBC:ncommode.obj - 0004:000081f0 ___fcntrlcomp 004571f0 LIBC:setfcntr.obj - 0004:00008254 __fmode 00457254 LIBC:txtmode.obj - 0004:0000828c ___xc_a 0045728c LIBC:crt0init.obj - 0004:000082f8 ___xc_z 004572f8 LIBC:crt0init.obj - 0004:000082fc ___xi_a 004572fc LIBC:crt0init.obj - 0004:0000830c ___xi_z 0045730c LIBC:crt0init.obj - 0004:00008310 ___xp_a 00457310 LIBC:crt0init.obj - 0004:00008318 ___xp_z 00457318 LIBC:crt0init.obj - 0004:0000831c ___xt_a 0045731c LIBC:crt0init.obj - 0004:00008320 ___xt_z 00457320 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00458000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00458014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00458028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0045803c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00458050 kernel32:KERNEL32.dll - 0005:00000140 __imp__InitializeCriticalSection@4 00458140 kernel32:KERNEL32.dll - 0005:00000144 __imp__DeleteCriticalSection@4 00458144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GlobalAlloc@8 00458148 kernel32:KERNEL32.dll - 0005:0000014c __imp__GlobalFree@4 0045814c kernel32:KERNEL32.dll - 0005:00000150 __imp__LeaveCriticalSection@4 00458150 kernel32:KERNEL32.dll - 0005:00000154 __imp__EnterCriticalSection@4 00458154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GlobalReAlloc@12 00458158 kernel32:KERNEL32.dll - 0005:0000015c __imp__WideCharToMultiByte@32 0045815c kernel32:KERNEL32.dll - 0005:00000160 __imp__CreateFileA@28 00458160 kernel32:KERNEL32.dll - 0005:00000164 __imp__CloseHandle@4 00458164 kernel32:KERNEL32.dll - 0005:00000168 __imp__DeleteFileA@4 00458168 kernel32:KERNEL32.dll - 0005:0000016c __imp__FlushFileBuffers@4 0045816c kernel32:KERNEL32.dll - 0005:00000170 __imp__SetFilePointer@16 00458170 kernel32:KERNEL32.dll - 0005:00000174 __imp__SetEndOfFile@4 00458174 kernel32:KERNEL32.dll - 0005:00000178 __imp__ReadFile@20 00458178 kernel32:KERNEL32.dll - 0005:0000017c __imp__WriteFile@20 0045817c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetFullPathNameA@16 00458180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetTempPathA@8 00458184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetLastError@0 00458188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetFileAttributesA@4 0045818c kernel32:KERNEL32.dll - 0005:00000190 __imp__MoveFileA@8 00458190 kernel32:KERNEL32.dll - 0005:00000194 __imp__CreateDirectoryA@8 00458194 kernel32:KERNEL32.dll - 0005:00000198 __imp__FindClose@4 00458198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetLogicalDrives@0 0045819c kernel32:KERNEL32.dll - 0005:000001a0 __imp__FindFirstFileA@8 004581a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__FindNextFileA@8 004581a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__RtlUnwind@16 004581a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__GetProcAddress@8 004581ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__RaiseException@16 004581b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__LoadLibraryA@4 004581b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__GetModuleHandleA@4 004581b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__VirtualAlloc@16 004581bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__VirtualFree@12 004581c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__GetStartupInfoA@4 004581c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__SetStdHandle@8 004581c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__MultiByteToWideChar@24 004581cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__GetEnvironmentStrings@0 004581d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__GetCommandLineA@0 004581d4 kernel32:KERNEL32.dll - 0005:000001d8 __imp__GetVersion@0 004581d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__ExitProcess@4 004581dc kernel32:KERNEL32.dll - 0005:000001e0 __imp__GetFileType@4 004581e0 kernel32:KERNEL32.dll - 0005:000001e4 __imp__SetEnvironmentVariableA@8 004581e4 kernel32:KERNEL32.dll - 0005:000001e8 __imp__UnhandledExceptionFilter@4 004581e8 kernel32:KERNEL32.dll - 0005:000001ec __imp__GetModuleFileNameA@12 004581ec kernel32:KERNEL32.dll - 0005:000001f0 __imp__GetACP@0 004581f0 kernel32:KERNEL32.dll - 0005:000001f4 __imp__GetOEMCP@0 004581f4 kernel32:KERNEL32.dll - 0005:000001f8 __imp__GetCPInfo@8 004581f8 kernel32:KERNEL32.dll - 0005:000001fc __imp__GetStdHandle@4 004581fc kernel32:KERNEL32.dll - 0005:00000200 \177KERNEL32_NULL_THUNK_DATA 00458200 kernel32:KERNEL32.dll - 0005:00000204 __imp__CharUpperBuffA@8 00458204 user32:USER32.dll - 0005:00000208 __imp__MessageBoxA@16 00458208 user32:USER32.dll - 0005:0000020c \177USER32_NULL_THUNK_DATA 0045820c user32:USER32.dll - 0005:00000210 __imp__timeGetTime@0 00458210 winmm:WINMM.dll - 0005:00000214 \177WINMM_NULL_THUNK_DATA 00458214 winmm:WINMM.dll - 0005:00000218 \177comdlg32_NULL_THUNK_DATA 00458218 comdlg32:comdlg32.dll - - entry point at 0001:0001c04f - - Static symbols - - 0001:0000e160 _$$8000 0040f160 f fniwin.obj - 0001:0000e370 _$$1000 0040f370 f fniwin.obj - 0001:0000ebc0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040fbc0 f fniwin.obj - 0001:0000f230 _$$9000 00410230 f fniwin.obj - 0001:0000f240 _$$a000 00410240 f fniwin.obj - 0001:0000f250 _$$b000 00410250 f fniwin.obj - 0001:0000d9f0 ?_HfileOpen@@YGPAXPADHK@Z 0040e9f0 f filewin.obj - 0001:0000dcc0 _$$1000 0040ecc0 f filewin.obj - 0001:0000e150 _$$8000 0040f150 f filewin.obj - 0001:0000cb80 _$$8000 0040db80 f file.obj - 0001:0000cd50 _$$1000 0040dd50 f file.obj - 0001:0000cf50 ?_FRangeIn@@YGHJJJ@Z 0040df50 f file.obj - 0001:0000d980 _$$9000 0040e980 f file.obj - 0001:0000d990 _$$a000 0040e990 f file.obj - 0001:0000d9a0 _$$b000 0040e9a0 f file.obj - 0001:0000bfd0 _$$1000 0040cfd0 f crf.obj - 0001:0000cb30 _$$8000 0040db30 f crf.obj - 0001:00005b80 _$$1000 00406b80 f codkauai.obj - 0001:0000be20 _$$8000 0040ce20 f codkauai.obj - 0001:00005330 _$$1000 00406330 f codec.obj - 0001:00005660 _$$8000 00406660 f codec.obj - 0001:00003340 _$$1000 00404340 f chunk.obj - 0001:00005020 _$$8000 00406020 f chunk.obj - 0001:000031f0 _$$1000 004041f0 f stream.obj - 0001:00003200 _$$8000 00404200 f stream.obj - 0001:000031d0 _$$1000 004041d0 f groups2.obj - 0001:000031e0 _$$8000 004041e0 f groups2.obj - 0001:000022c0 _$$1000 004032c0 f groups.obj - 0001:00003120 _$$8000 00404120 f groups.obj - 0001:00002060 _$$1000 00403060 f lex.obj - 0001:00002070 _$$8000 00403070 f lex.obj - 0001:00002040 _$$1000 00403040 f scrcom.obj - 0001:00002050 _$$8000 00403050 f scrcom.obj - 0001:00002020 _$$1000 00403020 f screxe.obj - 0001:00002030 _$$8000 00403030 f screxe.obj - 0001:00002000 _$$8000 00403000 f memwin.obj - 0001:00002010 _$$1000 00403010 f memwin.obj - 0001:00001810 _$$1000 00402810 f utilstr.obj - 0001:00001e70 _$$8000 00402e70 f utilstr.obj - 0001:00001500 _$$1000 00402500 f utilrnd.obj - 0001:00001600 _$$8000 00402600 f utilrnd.obj - 0001:00001320 _$$8000 00402320 f utilmem.obj - 0001:00001330 _$$1000 00402330 f utilmem.obj - 0001:00001020 _$$1000 00402020 f utilint.obj - 0001:00001110 _$$8000 00402110 f utilint.obj - 0001:00000d70 _$$8000 00401d70 f utilerro.obj - 0001:00000fa0 _$$1000 00401fa0 f utilerro.obj - 0001:00000fb0 _$$9000 00401fb0 f utilerro.obj - 0001:00000fd0 _$$a000 00401fd0 f utilerro.obj - 0001:00000fe0 _$$b000 00401fe0 f utilerro.obj - 0001:00000c30 _$$1000 00401c30 f utilcopy.obj - 0001:00000d60 _$$8000 00401d60 f utilcopy.obj - 0001:00000b90 _$$8000 00401b90 f base.obj - 0001:00000ba0 _$$1000 00401ba0 f base.obj - 0001:000009d0 _$$8000 004019d0 f util.obj - 0001:000009e0 _$$1000 004019e0 f util.obj - 0001:000008c0 _$$8000 004018c0 f utilglob.obj - 0001:00000920 _$$9000 00401920 f utilglob.obj - 0001:00000960 _$$a000 00401960 f utilglob.obj - 0001:00000970 _$$b000 00401970 f utilglob.obj - 0001:00000980 _$$1000 00401980 f utilglob.obj - 0001:000006f0 _$$1000 004016f0 f tdfmake.obj - 0001:00000700 _$$0400 00401700 f tdfmake.obj - 0001:00000730 _$$8000 00401730 f tdfmake.obj - 0001:000007c0 _$$6300 004017c0 f tdfmake.obj - 0001:00022530 _BrStdlibAllocate 00423530 f bren:stdmem.obj - 0001:00022550 _BrStdlibFree 00423550 f bren:stdmem.obj - 0001:00022560 _BrStdlibInquire 00423560 f bren:stdmem.obj - 0001:000224f0 _BrStdioWarning 004234f0 f bren:stderr.obj - 0001:00022510 _BrStdioError 00423510 f bren:stderr.obj - 0001:00022140 _BrStdioAttributes 00423140 f bren:stdfile.obj - 0001:00022360 _BrStdioOpenWrite 00423360 f bren:stdfile.obj - 0001:00022380 _BrStdioClose 00423380 f bren:stdfile.obj - 0001:00022390 _BrStdioEof 00423390 f bren:stdfile.obj - 0001:000223a0 _BrStdioGetChar 004233a0 f bren:stdfile.obj - 0001:000223d0 _BrStdioPutChar 004233d0 f bren:stdfile.obj - 0001:00022400 _BrStdioRead 00423400 f bren:stdfile.obj - 0001:00022420 _BrStdioWrite 00423420 f bren:stdfile.obj - 0001:00022440 _BrStdioGetLine 00423440 f bren:stdfile.obj - 0001:000224d0 _BrStdioAdvance 004234d0 f bren:stdfile.obj - 0001:0001ad00 _$$1000 0041bd00 f engine:modl.obj - 0001:0001afd0 _$$0400 0041bfd0 f engine:modl.obj - 0001:0001b000 _$$8000 0041c000 f engine:modl.obj - 0001:0001b090 _$$6300 0041c090 f engine:modl.obj - 0001:0001a640 _$$1000 0041b640 f engine:tdf.obj - 0001:0001a650 _$$0400 0041b650 f engine:tdf.obj - 0001:0001a660 _$$8000 0041b660 f engine:tdf.obj - 0001:0001a6f0 _$$6300 0041b6f0 f engine:tdf.obj - 0001:00044996 _findenv 00445996 f LIBC:setenv.obj - 0001:000449f3 _copy_environ 004459f3 f LIBC:setenv.obj - 0001:0004449d _strncnt 0044549d f LIBC:aw_cmp.obj - 0001:0004338a _strtoxl 0044438a f LIBC:strtol.obj - 0001:000219c9 __get_fname 004229c9 f LIBC:fpexcept.obj - 0001:00020337 _strncnt 00421337 f LIBC:aw_map.obj - 0001:00020183 __before 00421183 f LIBC:heapadd.obj - 0001:0001ed73 __abstract_cw 0041fd73 f LIBC:ieee87.obj - 0001:0001ee06 __hw_cw 0041fe06 f LIBC:ieee87.obj - 0001:0001eac6 __heap_new_region 0041fac6 f LIBC:heapgrow.obj - 0001:0001e814 _flsall 0041f814 f LIBC:fflush.obj - 0001:0001e011 __heap_grow_emptylist 0041f011 f LIBC:heapinit.obj - 0001:0001dcc5 _getSystemCP 0041ecc5 f LIBC:mbctype.obj - 0001:0001dd00 _CPtoLCID 0041ed00 f LIBC:mbctype.obj - 0001:0001dd3f _setSBCS 0041ed3f f LIBC:mbctype.obj - 0001:0001dafb _parse_cmdline 0041eafb f LIBC:stdargv.obj - 0001:0001d96d _xcptlookup 0041e96d f LIBC:winxfltr.obj - 0001:0001d770 __unwind_handler 0041e770 f LIBC:exsup.obj - 0001:0001d4e7 __cftoe_g 0041e4e7 f LIBC:cvt.obj - 0001:0001d608 __cftof_g 0041e608 f LIBC:cvt.obj - 0001:0001d724 __shift 0041e724 f LIBC:cvt.obj - 0001:0001cff0 __heap_expand_block 0041dff0 f LIBC:realloc.obj - 0001:0001ce5b _doexit 0041de5b f LIBC:crt0dat.obj - 0001:0001ceda __initterm 0041deda f LIBC:crt0dat.obj - 0001:0001cd2e _write_char 0041dd2e f LIBC:output.obj - 0001:0001cd6e _write_multi_char 0041dd6e f LIBC:output.obj - 0001:0001cd9f _write_string 0041dd9f f LIBC:output.obj - 0001:0001cdd6 _get_int_arg 0041ddd6 f LIBC:output.obj - 0001:0001cde5 _get_int64_arg 0041dde5 f LIBC:output.obj - 0001:0001cdf9 _get_short_arg 0041ddf9 f LIBC:output.obj - -FIXUPS: 1d317 fffffd94 c 5 10 10 5 1c 9 15 f 1f 9 fffffef5 ffffffb1 5 a -FIXUPS: 1c18c 1e 12 44 13 13 ffffff32 14 c 1739 6a 30 14 16 11 ab 17 ff -FIXUPS: 1dbdd 14 1c 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 ffffff04 a 18 -FIXUPS: 1d40a ffffff9f 20 ffffff65 a ffffffbf ede 9a ffffff10 fffffee9 -FIXUPS: 1e095 f e c 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 12 11 11 5d -FIXUPS: 1dec2 fffff725 4c 9b 1d 6d 10 6b 4f 24 125e 12 10 19 fffffef2 15 -FIXUPS: 1ea10 11 fffffdf5 ffffff4e fffffb47 21 c1 1c 48 13 31 ca 5a 28 -FIXUPS: 1e5a0 17 30 35 1d 36 47 11 2c 16 13 29 e61 1d 5 55 3c 7 2f b2 15 -FIXUPS: 1f320 3d 49 132 31 fffffdf6 ffffff4a d 2b 1a 1f fffffea9 18 ffffff70 -FIXUPS: 1f0f8 35 25 ffffff1f fffffcff b8 78 44 10 1501 22 f 22 f fffffafe -FIXUPS: 1ffb9 ffffff44 ffffff99 fffffe9a 17 24 fffffd3d c 75 d 96 d c 32 -FIXUPS: 1fa59 ffffffae fffffd60 b 21 42 37 2f 19 2b e fffffd07 183a a4 -FIXUPS: 20e94 fffffd28 78 10 18 e fffffcff ffffffaf 26 fffffe65 f3 fffffc57 -FIXUPS: 20507 fffffb77 17 67 e 177 1a 1d 12 1f 20 d f 13 17 13 22 5b 1929 -FIXUPS: 215f5 14 18 18 b0 9 e 9 29 4d fffffc51 c2 75 c 1e 77 c fffffd3a -FIXUPS: 21326 fffffc2c 10 10 18 a1 3e 24 d 41 34 fffffe08 ffffffb7 147b -FIXUPS: 22375 b 10 124 133 ef 21 26 10d aa 1f 21 41 c d 15 b fffff5fb 1a -FIXUPS: 22008 1d 2b c 10 c fffff8cd c5 92 10e 49 c6 223ac 18 ffffff1b 50 -FIXUPS: 43f4b 1a 13 ffffff4f 1a ffffff09 20 fffdf2fd ffffff8c c d 20 d -FIXUPS: 22eb5 47 3e 110 fffffcdc ffffff45 b b 1b ffffff68 1c fffff6c0 1c -FIXUPS: 2231c 24 22ae7 28 fffffe0f bd 21 fffffd74 fb fffffe14 fffffe11 -FIXUPS: 447e0 2d 10 13 17 ffffff25 35 fffffc0f c9 38 24 ee 17 fffffd4a -FIXUPS: 44339 2f ffffff5a f e ffffff9c ffffff09 2d 32 1713 37 4d 3a 6c -FIXUPS: 45a32 14 fffffaf2 15 1a0 52 3e b fffffcf0 fffffe6f 51 2b 29 33 -FIXUPS: 453db 1a 14 e 14 e fffffc5e 2c ffffff28 64 fffffe4a ab 2e fffd66df -FIXUPS: 1b656 5 9d 12 b 12 21 12 b 12 1c 2a48e 8 c ffffff77 fffffec0 2e -FIXUPS: 45ab3 31 1e 2d 10 9 37 fffffc31 3a 2a 27 2b 2a 39 fffd6662 a6 5 -FIXUPS: 1bfdb 9 d a7 12 b 12 21 12 b 12 1c fffff25a 23 4c 1b 37 2a 46 3a -FIXUPS: 1b589 1b 21 e a 9 16 a 21 382 25 28 2f 25 15 2b 27 25 14 2c 2d -FIXUPS: 1bb77 27 34 4d 49 7a 43 d 2c a 4a 19 27 c a 3d 8c 19 1d e 12cd0 -FIXUPS: 2ebd3 ffffffe1 ffffffcc ffffffe2 ffffffb8 ffffff96 ffffff91 ffffff2a -FIXUPS: 2e94e fffffff2 fffffff0 ffffffee ffffffee fffeceb9 11 22 d 27 14 -FIXUPS: 1b883 19 16 d 2d 20 d 9 d 16 40 9 152dc ffffff47 ffffffe9 fffffd1c -FIXUPS: 311b7 66b ffffff7e ffffff97 ffffffe1 fffffff1 ffffffe6 ffffff7f -FIXUPS: 31562 ffffffc3 ffffffb9 ffffffc0 ffffffd5 ffffd319 ffffffd5 ffffffc4 -FIXUPS: 2e6f9 ffffffe3 fffffff2 fffffff0 ffffffee ffffffee ffffff37 ffffffea -FIXUPS: 2e585 69e ffffffe6 ffffffee 542c ffffff72 ffffe2d5 ffffffd4 ffffffd4 -FIXUPS: 320a2 ffffffe1 ffffffec ffffffd4 ffffffd9 fffffb35 342 ffffffe8 -FIXUPS: 31e76 fffffff9 ffffffd5 fffffffb ffffffe7 ffffff88 ffffd61d 237 -FIXUPS: 2fc92 ffffffea fffffded 4f7 ffffffea fffffdd3 5c0 ffffffae 461 -FIXUPS: 305ea ffffffea 9a06 ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 -FIXUPS: 39f64 ffffffed ffffffed ffffffdf ffffffe0 ffffffe3 ffffffe3 ffffffe3 -FIXUPS: 39e8f 4aa ffffffd8 fffffff4 ffffff5e ffffff27 ffffffc0 ffffff21 -FIXUPS: 3a059 ffffffef ffffffee 567 2a9 ffff92a5 590 ffffffe8 ffffffde -FIXUPS: 3403c 4f52 ffffffee ffffffef ffffffee ffffffee ffffffe9 ffffffcd -FIXUPS: 38eec ffffffe4 ffffffe4 fffffff3 fffffff0 fffffff0 ffffffed ffffffed -FIXUPS: 38e40 ffffffe0 ffffffe3 ffffffe3 ffffffe3 ffffffe9 4a5 ffffffd8 -FIXUPS: 39223 ffffff5e ffffff2c ffffffc0 6dc fffffd64 64a 52d ffffffe9 -FIXUPS: 37c7d fffffff0 ffffffed ffffffdc ffffffe0 ffffffe3 ffffffe3 ffffffe0 -FIXUPS: 37ba5 4b7 ffffffd2 fffffff4 ffffff54 ffffff2d ffffffc0 ffffff21 -FIXUPS: 37d72 ffffffef ffffffee ffffffee ffffffe9 ffffffcd ffffffef ffffffe4 -FIXUPS: 37caa fffffff3 fffffff0 702 fffffd96 ffffffd5 558 3c8 ffffd776 -FIXUPS: 367c6 4e3 ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 fffffff0 -FIXUPS: 36c20 ffffffed ffffffdf ffffffe0 ffffffe3 ffffffe3 ffffffe3 ffffffe9 -FIXUPS: 36ff8 ffffffd8 fffffff4 ffffff5e ffffff27 ffffffbe ffffff33 ffffffee -FIXUPS: 36d17 ffffffee ffffffee ffffffe9 7b4 fffffd90 5f0 67ca ffff7666 -FIXUPS: 35cc3 ffffffbe ffffff33 ffffffee ffffffef ffffffee ffffffee ffffffe9 -FIXUPS: 35b23 ffffffef ffffffe4 ffffffe4 fffffff3 fffffff0 fffffff0 fffffff0 -FIXUPS: 35a8a ffffffdc ffffffe0 ffffffe3 ffffffe3 ffffffe0 ffffffe9 57a -FIXUPS: 35f24 ffffff63 ffffffd2 fffffff4 ffffff54 68c 6d5e ffffff2f ffffffeb -FIXUPS: 3d08f ffffffeb ffffffed ffffffea fffffefa ffffffce 4f3 ffffffd8 -FIXUPS: 3d36c ffffffd8 ffffff88 ffffffd7 765 ffffff32 ffffffeb ffffffea -FIXUPS: 3d8fa ffffffed ffffffea fffffef6 ffffffc6 4ed ffffffd8 ffffff88 -FIXUPS: 3dbb2 ffffff88 ffffffd7 ffffff81 57f ffffe1a7 ffffffd7 ffffff81 -FIXUPS: 3c082 ffffff40 ffffffeb ffffffea ffffffeb ffffffed ffffffea 43f -FIXUPS: 3c370 ffffff88 ffffffd8 ffffff88 780 ffffff72 ffffff40 ffffffeb -FIXUPS: 3c85f ffffffeb ffffffed ffffffea fffffef9 ffffffce 4d8 ffffffd8 -FIXUPS: 3cb20 ffffffd8 ffffff88 ffffffd7 7cd fffd427d ffffffe1 ffffffe4 -FIXUPS: 11b04 ffffffde ffffffdb ffffffd6 ffffffe5 ffffffe9 ffffffe0 ffffffdf -FIXUPS: 11a07 ffffffe8 fffffe67 ffffeb6c ffffffb2 ffffffe8 ffffffde ffffffdf -FIXUPS: 1030f fffffff6 fffffff6 fffffff6 ffffffe4 31ae1 ffffff8e ffffff3f -FIXUPS: 41c78 ffffffb5 ffffff4c ffffffd2 ffffa6e5 fffd4fea ffffffec ffffffe6 -FIXUPS: 111d4 ffffffe6 ffffffe5 ffffffe8 ffffffd3 ffffffb4 fffffff5 ffffffb5 -FIXUPS: 110a4 ffffffd6 fffffff5 7b0 ffffffcc ffffffb5 ffffffbe fffffff3 -FIXUPS: 1171d ffffff97 ffffffdc ffffffcc ffffffe5 ffffffe8 ffffffbf ffffffad -FIXUPS: 1154f ffffffd3 ffffffcd ffffffe5 ffffffe5 1076 fffffe17 39f fffffff7 -FIXUPS: 126a9 fffffff7 fffff66f fffffff4 ffffffb9 fffffff0 ffffffb2 fffffff3 -FIXUPS: 11c23 fffffff7 ffffffd3 fffff84d ffffffec ffffffec ffffffe8 ffffffe5 -FIXUPS: 113c7 ffffffe1 ffffffe4 ffffffd4 ffffffec ffffffec ffffffe8 ffffffe5 -FIXUPS: 112ed ffffffd3 ffffffbc ffffffe8 166e fffffff3 ffffff9e ffffffb0 -FIXUPS: 127fd ffffffd9 ffffffd5 ffffffc6 fffffb17 ffffffbe ffffffd2 ffffff83 -FIXUPS: 12129 ffffffdd ffffffdf ffffffde ffffffdf ffffff6b ffffffc9 ffffffef -FIXUPS: 11f75 ffffffe2 ffffffed ffffffee ffffffec ffffffed ffffffee ffffffec -FIXUPS: 12613 ffffffb7 ffffffce ffffffcd 120e ffffff9a 73f ffffff8a ffffff88 -FIXUPS: 13cb0 ffffff7c ffffff98 ffffff87 ffffff7b 71d ffffff8a ffffff97 -FIXUPS: 14024 ffffff9d ffffff88 ffffff81 75d ffffff9a ffffff21 ffffff8c -FIXUPS: 143f1 ffffff7c ffffff8e ffffff5d 55d ffffff93 ffffffe7 ffffff8b -FIXUPS: 12a65 ffffffe4 fffffeb3 537 ffffff52 ffffffa4 ffffffe7 ffffff50 -FIXUPS: 12c30 ffffff40 ffffffce ffffffbe ffffff92 5e6 ffffffe3 ffffffb4 -FIXUPS: 12ff3 ffffffb0 ffffffe6 ffffff77 72d ffffff9d ffffff88 ffffff81 -FIXUPS: 1345e ffffff9d ffffff9a ffffff52 ffffff9d 7ce ffffff87 ffffff83 -FIXUPS: 138f6 ffffff68 ffffff8b 2668 ffffffea 746 ffffffe8 ffffff9e ffffffe1 -FIXUPS: 164ac ffffffec ffffff9f ffffffea ffffffdc ffffff27 ffffffe2 ffffff92 -FIXUPS: 16273 ffffffc0 ffffffe7 728 ffffffc3 ffffff56 ffffffc0 ffffff12 -FIXUPS: 166b7 ffffff92 ffffffd8 ffffeb3c fffffeaa ffffffe2 fffffff2 ffffffca -FIXUPS: 14f85 fffffff2 2a6b ffffff13 ffffff41 1fe ffffdb9e ffffffc8 ffffff99 -FIXUPS: 159c1 ffffff6f fffffe87 ffffffdb fffffe79 651 ffffffdb ffffff8c -FIXUPS: 15baf ffffffd3 ffffffc8 ffffffe5 ffffff96 ffffffec ffffffe1 ffffffbc -FIXUPS: 15a31 ffffffd8 728 ffffff1b ffffffbb ffffffd0 ffffffd2 ffffff9c -FIXUPS: 15ede 3f85 ffffffeb ffffffc4 ffffffed ffffffba fffffff2 ffffffef -FIXUPS: 19d77 fffffeeb ffffffa8 ffffff47 ffffee53 fbc ffffffe6 fffffff4 -FIXUPS: 198dd ffffffb8 fffffff3 ffffffdf fffff117 fffffff6 ffffffe1 ffffffe3 -FIXUPS: 188d1 ffffe6e2 fffffff4 ffffff8e fffffff5 ffffff94 fffffff5 ffffff94 -FIXUPS: 16e3c db22 6f5 ffffff93 ffffff97 ffffffdf fffffff1 fffffff9 ffffffea -FIXUPS: 24f14 fffffff4 fffffff7 ffffffc0 ffffff60 ffffffdf fffffff1 fffffff9 -FIXUPS: 24dd2 ffffffe2 ffffffb9 ffff58f8 51c 60c ffffff99 9e ffffefc1 fffffff2 -FIXUPS: 1a144 fffffff2 fffffdb7 ffffffea ffffffcc ffffffeb aa0d ffffff9b -FIXUPS: 24807 ffffff9b ffffffd1 ffffff9a ffffffc6 ffffff5b fffffff9 fffffff2 -FIXUPS: 245e0 fffffff2 ffffffc7 fffffff2 ffffffc7 6ed ffffffdf fffffff1 -FIXUPS: 24c08 ffffffea ffffffe4 fffffff4 fffffff7 ffffffc0 ffffffdb fffffefc -FIXUPS: 24a11 ffffffb4 ffffffdf fffffff1 fffffff9 ffffffea fffff5de ffffffec -FIXUPS: 23f2b ffffffd5 ffffffe0 ffffffd1 ffffff7c ffffffc8 ffffffe1 fffffff4 -FIXUPS: 23d8a 7ba ffffffc7 fffffff2 ffffffc4 fffffff3 ffffffed ffffffc2 -FIXUPS: 2444d ffffffa2 ffffffea ffffffa5 ffffffcb ffffffa1 fffffff2 ffffff95 -FIXUPS: 24265 ffffff7b ffffffe1 ffffffd1 79d ffffff9b fffff482 fffffff5 -FIXUPS: 23d32 ffffffda ffffff71 ffffffd1 ffffffee ffffff9e ffffffea ffffffec -FIXUPS: 23b9e fffffff1 ffffff79 ffffffe2 ffffffed ffffffdc ffffff75 ffffffe2 -FIXUPS: 239f7 ffffffdd fffffff0 ffffffd8 fffffff2 748 ffffffea ffffffd6 -FIXUPS: 24010 ffffffd1 ffffffe9 ffffffd4 ffffffe2 ffffffe8 1719 fffffff3 -FIXUPS: 25660 ffffffb8 ffffff94 ffffffe9 fffffff1 6fc ffffffeb fffffef1 -FIXUPS: 25a9a ffffff04 ffffdfba ffffffef ffffffee ffffff51 ffffffd8 ffffffde -FIXUPS: 23804 fffffff1 ffffffea ffffffbe ffffffea ffffffe7 ffffffdf ffffffa1 -FIXUPS: 236df ffffffea ffffffba ffffffe9 fffffff0 ffffffdb 1f1b ffffffe1 -FIXUPS: 25523 ffffffd9 ffffffe6 ffffffc7 ffffffc8 ffffffcd ffffffe2 fffffff0 -FIXUPS: 253ad fffffff5 ffffff88 ffffff9f ffffff3f 74a ffffffec fffffff1 -FIXUPS: 2590e fffffff4 ffffffd8 ffffffbd ffffffc5 ffffffbd ffffffb8 ffffffb9 -FIXUPS: 25779 ffffffe2 fffffff4 ffffffea ffffffe0 ffffffe7 325d ffffdfa6 -FIXUPS: 268f2 ffffffbb fffffff6 fffffff1 fffff7f6 ffffffef fffffff2 fffffed6 -FIXUPS: 25f2f fffffe59 ffffffea ffffffe3 68c ffffffa8 ffffff98 ffffffec -FIXUPS: 2627c ffffff72 ffffffec ffffff95 ffffffd8 ffffffe3 ffffffea ffffffea -FIXUPS: 260e1 ffffffe2 ffffffd6 717 ffffff88 ffffee2a 32a9 fffffff3 fffffff4 -FIXUPS: 287b4 ffffffd2 ffffffd8 ffffffed ffffffde ffffffef ffffff9e fffffff2 -FIXUPS: 2868f ffffffe1 ffffffd6 ffffffeb fffffff4 ffffffea fffffff4 ffffffd2 -FIXUPS: 285c8 ffffffec ffffffed ffffffed fffffff2 ffffffe6 568 fffffff7 -FIXUPS: 28a04 ffffffe0 ffffffea ffffffc9 ffffffe5 fffffb42 ffffffec ffffffbf -FIXUPS: 2844d ffffffd3 ffffffec fffffff0 ffffffef ffffffe2 ffffffed ffffffef -FIXUPS: 28370 ffffffef ffffffcb ffffffe0 ffffffe6 ffffffe0 ffffffed ffffffec -FIXUPS: 2829b ffffffea ffffffb2 fffffff4 ffffffde ffffffea ffffffe3 fffffff0 -FIXUPS: 281b5 ffffffd4 6f2 ffffffc9 ffffffe1 fffff26b ffffff44 ffffffeb -FIXUPS: 279b0 ffffffeb 7cb ffffffde fffffff5 ffffffea ffffffe2 fffffff5 -FIXUPS: 280d9 ffffffdc ffffffea fffffff7 ffffffea ffffffdf ffffffec ffffffe0 -FIXUPS: 2800f ffffffdb ffffffb7 ffffffa3 ffffff04 ffffffc4 ffffffe0 ffffffeb -FIXUPS: 27d75 7d0 fffffff4 ffffffda ffffffce fffff16c ffffffdd ffffffe8 -FIXUPS: 275fa ffffffcd ffffffe5 ffffffe7 7d0 fffffff4 ffffff4e fffffff5 -FIXUPS: 27c77 fffffff5 ffffffed ffffffed ffffffe5 ffffffe8 fffffff0 fffffff2 -FIXUPS: 27be4 ffffffeb ffffffdc ffffffed ffffffe1 ffffffed ffffffe2 ffffffe6 -FIXUPS: 27b16 ffffffe9 ffffffe9 ffffffd6 ffffffeb fffff9b3 ffffffd7 ffffffbf -FIXUPS: 273cf ffffffa5 ffffff02 ffffffb5 ffffffcb ffffffe6 fffffff2 fffffff2 -FIXUPS: 271b2 790 ffffffe3 ffffffde ffffffee ffffffd4 fffffff3 ffffffe0 -FIXUPS: 27875 ffffffe2 ffffffba ffffffc5 ffffffd0 ffffffdd ffffffda ffffffdb -FIXUPS: 2770c ffffffd4 ffffffdd ffffffe4 ffffffe3 fffffa32 ffffffee fffffff2 -FIXUPS: 27088 fffffff2 fffffff2 fffffff2 fffffff2 fffffff2 fffffff1 ffffffec -FIXUPS: 27011 fffffff2 fffffff2 ffffffee fffffff2 fffffff2 fffffff2 ffffffee -FIXUPS: 26f99 ffffff2f fffffff3 fffffff2 ffffffd1 ffffffef ffffffef ffffffef -FIXUPS: 26db3 ffffffef 7d7 ffffffc7 ffffffd1 2e32 42f ffffe95f 5bc fffffff5 -FIXUPS: 26d91 ffffffef ffffffef ffffffef ffffffef ffffffe1 ffffffef ffffffef -FIXUPS: 26ce3 ffffffef ffffffef fffffeaa fffffff5 ffffff7b ffffffc6 ffffffa3 -FIXUPS: 26a12 ffffffaa 795 ffffffec fffffff2 fffffff2 fffffff2 ffffffe1 -FIXUPS: 270e0 fffffff2 fffffff2 5394 fffffd89 ffffffef fffffff2 4be 4f8 -FIXUPS: 2c8f9 fffff614 ffffff96 ffffffec ffffff00 ffffff2d ffffff99 ffffffec -FIXUPS: 2a9a4 ffffffef fffffff2 3e5 314 364 3a7 ffffef3f ffffffdc ffffffee -FIXUPS: 2a619 ffffffcc ffffffcc ffffffc7 fffffefe ffffff3c ffffffe4 ffffffd1 -FIXUPS: 2e46f ffffffe0 ffffff4a fffffef0 fffff318 ffffffef fffffff1 fffffff4 -FIXUPS: 2d562 ffffffec 66b fffffff2 fffffff4 fffffff4 ffffffec ffffffee -FIXUPS: 2dac3 ffffffe0 ffffff81 ffffffec ffffffe4 ffffffe8 ffffffec ffffffd4 -FIXUPS: 2d974 ffffffe1 ffffffe6 ffffffee ffffffdb 472 fffff0dd ffffffde -FIXUPS: 1847 1c 21cc4 fffffc48 12 1c 1a 1a 15 8d 40 d 4e 15 17 d 31 e 35 -FIXUPS: 233ef 26 20 1d 4a 1d 24 22eef fffe7cb6 ffffffd6 ffffffe5 ffffffd5 -FIXUPS: 2dedc fffd3522 15 1c 19 4e 1c 1b 1d 1e 1b 1d 1a 45 1b 1d 1c 16 -FIXUPS: 1646 18 38 38 33 5 5 17 a6 12 b 12 21 12 b fffff856 e 19 1c f 24 -FIXUPS: 110c 22 1e 15 1c 15 23 13 16 33 8 f 34 c 2a 18 20 20 c 12 16 20 -FIXUPS: 1357 45 13 3c bf6 5 5 21 fffffd55 fffffca4 11 ee 30 5d 23 d fffffe10 -FIXUPS: 1895 11 2d c a 1e a 1f 1e 18 b 5 5 27 fffff688 c f 12 8 1347 1e -FIXUPS: 23d6 10 53 35 1b 28 27 5e 1e d 3a 15 26 2b 21 12 d fffffb9d ef -FIXUPS: 2321 fffffda3 b 42 21 fffffc44 1f 11 1e 5c 1b6 21ab 13 d 13 d ffffeeb0 -FIXUPS: 3051 ffffffe0 fffffe6b a8 6c 51 fffff661 32 63 4b 94 11 4e 33 13 -FIXUPS: 288a 25b 6d 204 49 f 2e 95 fffff4e4 11 2f 16af 98 35 1e 3e b8 44 -FIXUPS: 3c77 118 55 23 85 2f 13 2d 1f 3a 14 2f 63 31 2e 18 40 44 17 15 -FIXUPS: 4134 d 13 d 13 fffff3da b 2b 5b 6 15 b 14 10 1e 32 d 1c 48 14 b -FIXUPS: 3729 80 1d 2c 10 1b 3c 41 45 34 14 31 38 29 35 42 fffff6f6 2f 11 -FIXUPS: 3195 11 28 9 32 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 1e a b 28 -FIXUPS: 3492 b 4c 22 a b 24 2562 1c 34 1c 2d 34 28 a2 3d 3b 26 67 82 c8 -FIXUPS: 5ed3 49 2a 13 16 5b 57 13 d 13 d ffffe1a0 ffffffe0 ffffeeb4 11 -FIXUPS: 30d5 11 2f 2499 d 24 17 1f 17 17 28 47 25 13 3b 48 37 2e 2c 2f -FIXUPS: 5860 1b 2b 29 2a 30 2c 34 1f 10 3f 1b 20 18 10 fffff7e9 9 15 22 -FIXUPS: 52a9 1c 17 1f b 1b 18 f 3f 27 16 d 19 14 16 17 23 22 29 2a 16 10 -FIXUPS: 54ff 16 11 30 1c 2b fffff7bb b 23 5d 4e 1a 16 a0 75 3d 45 1a 34 -FIXUPS: 5057 1d 1a 15 a 50 2c 25 8 16 a 33 11 24 d 24 13 9 11 fffff6c1 -FIXUPS: 492f 21 2c 16 21 34 b 31 40 1d 17 16 7b 19 41 b 15 24 11 1a 38 -FIXUPS: 4c3c 37 33 1c 2b 11 d 1c b d fffff684 13 15 3b 4c 8 1c 22 93 28 -FIXUPS: 4579 38 34 17 23 1f 1c 1a 27 39 2a 9c 3c f b 9 13 11 40 29 48 f -FIXUPS: 614e 50 7f 20 b1 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d ffffdba4 -FIXUPS: 4236 2f 11 1e 12 88 4f c 10 b 11 25a8 81 6a 12 78 12 33 27 21 3994 -FIXUPS: a50e 1c 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9264 -FIXUPS: 6096 2f f 75e7 1c 16 46 1c 3a 16 41 16 1d 3e b8 165 78 4b 13 d -FIXUPS: db64 d ffff8b34 11 52 8 28 8 11c 18 3f 1b 1c 55 11 6880 40 9 1e -FIXUPS: d244 2c 37 d 32 33 27 76 14 27 38 25 26 d 27 16 16 1b d 4a 5f 14 -FIXUPS: d5d4 3e d 2c 1c 16 125c 29 25 2c 16 2d b 5 5 9 d 13 d ffffe464 -FIXUPS: ce56 2f 20 11 1e 6e 17 68 3c 58 54 70 15 f 31 18 d 27 11e4 10 17 -FIXUPS: e4b2 57 6 20 2b 3f 6 20 2b 37 1a 12 11 b 39 f 1e 19 d b a1 e 12 -FIXUPS: e7f6 1c 38 18 57 e fffff4a5 26 7 a f 2a 3e 64 116 2e 22 2e 4b 36 -FIXUPS: e0aa 27 34 1c 17 8 a a 20 50 40 28 18 40 40 1f 38 45 c30 10 1b -FIXUPS: efd8 f 1f 1d 14 1f 10 10 4e 10 10 1e 10 3f ffffea54 11 2f 11 1e -FIXUPS: dc26 22 21 25 14 23 13 1c d 14 23d2 96 9 7 9 85 2b b 5 5 17 12 -FIXUPS: 10291 ffffe81d 23 89 9e 5e a1 aa c a4 c 86 c 42 9 a 11 9 d 14 ced -FIXUPS: fcac 26 29 42 2e 34 19 92 a f d 20 3d 6b 1b 3a 1d 20 a f c 11 58 -FIXUPS: 10063 18 11 c f 12 f 11 fffff55a 13 3a b 1e 2d 1a 154 1f 18 40 -FIXUPS: f8d0 11 5a 3d a 12 46 12 2b 15 9 13 19 89 1d 68 34 7 70 28 22 fffff502 -FIXUPS: f185 11 2f 11 2e 15 ab d 2c 19 20 12 5d 26 11 24 1e 11 b 1e 82 -FIXUPS: f4ea 28 e 2b c 24 b 4d 1a 22 diff --git a/SRC/STUDIO/DELCHUNK.BAT b/SRC/STUDIO/DELCHUNK.BAT deleted file mode 100644 index f36aba1d..00000000 --- a/SRC/STUDIO/DELCHUNK.BAT +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -rm -f -rm -f H:\BUILD\SOC\obj\wind\studio.chk diff --git a/SRC/STUDIO/DELUTEST.BAT b/SRC/STUDIO/DELUTEST.BAT deleted file mode 100644 index c6b6061f..00000000 --- a/SRC/STUDIO/DELUTEST.BAT +++ /dev/null @@ -1,17 +0,0 @@ -@echo off -rm -f -rm -f H:\BUILD\SOC\obj\wind\splot.obj -rm -f H:\BUILD\SOC\obj\wind\scnsort.obj -rm -f H:\BUILD\SOC\obj\wind\browser.obj -rm -f H:\BUILD\SOC\obj\wind\utest.obj -rm -f H:\BUILD\SOC\obj\wind\stdioscb.obj -rm -f H:\BUILD\SOC\obj\wind\stdiobrw.obj -rm -f H:\BUILD\SOC\obj\wind\studio.obj -rm -f H:\BUILD\SOC\obj\wind\tgob.obj -rm -f H:\BUILD\SOC\obj\wind\esl.obj -rm -f H:\BUILD\SOC\obj\wind\ape.obj -rm -f H:\BUILD\SOC\obj\wind\popup.obj -rm -f H:\BUILD\SOC\obj\wind\tatr.obj -rm -f H:\BUILD\SOC\obj\wind\portf.obj -rm -f H:\BUILD\SOC\obj\wind\utest.res -rm -f H:\BUILD\SOC\obj\wind\3dmovie.chk diff --git a/SRC/STUDIO/UTEST.RC b/SRC/STUDIO/UTEST.RC index 77252a52..28d44d69 100644 --- a/SRC/STUDIO/UTEST.RC +++ b/SRC/STUDIO/UTEST.RC @@ -91,9 +91,9 @@ END // Icon // -IDI_APP ICON DISCARDABLE "studio\\bmp\\app.ico" -IDI_DOC ICON DISCARDABLE "studio\\bmp\\doc.ico" -IDI_CD ICON DISCARDABLE "studio\\bmp\\cd.ico" +IDI_APP ICON DISCARDABLE "bmp\\app.ico" +IDI_DOC ICON DISCARDABLE "bmp\\doc.ico" +IDI_CD ICON DISCARDABLE "bmp\\cd.ico" ///////////////////////////////////////////////////////////////////////////// // diff --git a/kauai/OBJ/WIND/CHED.MAP b/kauai/OBJ/WIND/CHED.MAP deleted file mode 100644 index 4895b86f..00000000 --- a/kauai/OBJ/WIND/CHED.MAP +++ /dev/null @@ -1,7784 +0,0 @@ - ched - - Timestamp is 3070bbd3 (Mon Oct 02 21:28:03 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 000f470eH .text CODE - 0002:00000000 00002ebcH .bss DATA - 0003:00000000 00004df0H .rdata DATA - 0004:00000000 0000d2c4H .data DATA - 0004:0000d2c4 00000004H .CRT$XCA DATA - 0004:0000d2c8 00000004H .CRT$XCC DATA - 0004:0000d2cc 0000010cH .CRT$XCU DATA - 0004:0000d3d8 00000004H .CRT$XCZ DATA - 0004:0000d3dc 00000004H .CRT$XIA DATA - 0004:0000d3e0 00000008H .CRT$XIC DATA - 0004:0000d3e8 00000004H .CRT$XIZ DATA - 0004:0000d3ec 00000004H .CRT$XPA DATA - 0004:0000d3f0 00000004H .CRT$XPX DATA - 0004:0000d3f4 00000004H .CRT$XPZ DATA - 0004:0000d3f8 00000004H .CRT$XTA DATA - 0004:0000d3fc 00000004H .CRT$XTZ DATA - 0005:00000000 000000a0H .idata$2 DATA - 0005:000000a0 00000028H .idata$3 DATA - 0005:000000c8 000004ccH .idata$4 DATA - 0005:00000594 000004ccH .idata$5 DATA - 0005:00000a60 0000147cH .idata$6 DATA - 0006:00000000 000002acH .rsrc$01 DATA - 0006:000002b0 000017d8H .rsrc$02 DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 000008f0H .debug$F DATA - 0008:00000c70 00000000H .debug$G DATA - 0008:00000c70 00000031H .debug$H DATA - 0008:ffee3000 00000000H .debug$P DATA - 0008:ffee3000 00000000H .debug$S DATA - 0008:ffee3000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:000004d0 ?MarkUtilMem@@YGXXZ 004014d0 f util.obj - 0001:00000620 ?PfilNext@FIL@@QAEPAV1@XZ 00401620 f util.obj - 0001:00000650 ?PbllNext@BLL@@QAEPAV1@XZ 00401650 f util.obj - 0001:00000680 ?PfilFirst@FIL@@SGPAV1@XZ 00401680 f util.obj - 0001:000006a0 ?PcflNext@CFL@@QAEPAV1@XZ 004016a0 f util.obj - 0001:000006d0 ?PcflFirst@CFL@@SGPAV1@XZ 004016d0 f util.obj - 0001:000006f0 ?FWouldBe@BLL@@SGHJ@Z 004016f0 f base.obj - 0001:00000730 ?FIs@BLL@@UAEHJ@Z 00401730 f base.obj - 0001:00000760 ?Cls@BLL@@UAEJXZ 00401760 f base.obj - 0001:00000790 ?Cls@BASE@@UAEJXZ 00401790 f base.obj - 0001:000007c0 ?FIs@BASE@@UAEHJ@Z 004017c0 f base.obj - 0001:00000800 ?FWouldBe@BASE@@SGHJ@Z 00401800 f base.obj - 0001:00000830 ??0BASE@@QAE@XZ 00401830 f base.obj - 0001:00000910 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00401910 f base.obj - 0001:00000930 ?_Enter@@YGXXZ 00401930 f base.obj - 0001:00000950 ?_Leave@@YGXXZ 00401950 f base.obj - 0001:00000970 ?AddRef@BASE@@UAEXXZ 00401970 f base.obj - 0001:00000a00 ?Release@BASE@@UAEXXZ 00401a00 f base.obj - 0001:00000ab0 ??2BASE@@SGPAXIPADJ@Z 00401ab0 f base.obj - 0001:00000c80 ?Debugger@@YGXXZ 00401c80 f base.obj - 0001:00000ca0 ??3BASE@@SGXPAX@Z 00401ca0 f base.obj - 0001:00000d20 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401d20 f base.obj - 0001:00000d40 ?AssertValid@BASE@@QAEXK@Z 00401d40 f base.obj - 0001:00000e70 ?MarkMemStub@BASE@@QAEXXZ 00401e70 f base.obj - 0001:00000f50 ?MarkMem@BASE@@UAEXXZ 00401f50 f base.obj - 0001:00000fa0 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401fa0 f base.obj - 0001:00001190 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402190 f base.obj - 0001:00001210 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00402210 f base.obj - 0001:00001290 ?AssertUnmarkedObjs@@YGXXZ 00402290 f base.obj - 0001:00001560 ?UnmarkAllObjs@@YGXXZ 00402560 f base.obj - 0001:00001670 ??0BLL@@QAE@XZ 00402670 f base.obj - 0001:000016c0 ??1BLL@@UAE@XZ 004026c0 f base.obj - 0001:00001710 ?_Attach@BLL@@IAEXPAX@Z 00402710 f base.obj - 0001:000018b0 ?AssertNilOrPvCb@@YGXPAXJ@Z 004028b0 f base.obj - 0001:000018e0 ?AssertValid@BLL@@QAEXK@Z 004028e0 f base.obj - 0001:000019e0 ??_GBLL@@UAEPAXI@Z 004029e0 f base.obj - 0001:000019e0 ??_EBLL@@UAEPAXI@Z 004029e0 f base.obj - 0001:00001a20 ??0STN@@QAE@XZ 00402a20 f base.obj - 0001:00001a80 ?PvAddBv@@YGPAXPAXJ@Z 00402a80 f base.obj - 0001:00001aa0 ?PvSubBv@@YGPAXPAXJ@Z 00402aa0 f base.obj - 0001:00001ac0 ?Enter@MUTX@@QAEXXZ 00402ac0 f base.obj - 0001:00001af0 ?Leave@MUTX@@QAEXXZ 00402af0 f base.obj - 0001:00001b20 ?LwThreadCur@@YGJXZ 00402b20 f base.obj - 0001:00001b40 ?FillPb@@YGXPAXJE@Z 00402b40 f utilcopy.obj - 0001:00001ba0 ?ClearPb@@YGXPAXJ@Z 00402ba0 f utilcopy.obj - 0001:00001bf0 ?ReversePb@@YGXPAXJ@Z 00402bf0 f utilcopy.obj - 0001:00001c50 ?ReverseRglw@@YGXPAXJ@Z 00402c50 f utilcopy.obj - 0001:00001cb0 ?SwapBlocks@@YGXPAXJJ@Z 00402cb0 f utilcopy.obj - 0001:00001d30 ?SwapPb@@YGXPAX0J@Z 00402d30 f utilcopy.obj - 0001:00001dd0 ?MoveElement@@YGXPAXJJJ@Z 00402dd0 f utilcopy.obj - 0001:00001ee0 ?FEqualRgb@@YGHPAX0J@Z 00402ee0 f utilcopy.obj - 0001:00001f60 ?CbEqualRgb@@YGJPAX0J@Z 00402f60 f utilcopy.obj - 0001:00001ff0 ?CopyPb@@YGXPAX0J@Z 00402ff0 f utilcopy.obj - 0001:00002090 ?BltPb@@YGXPAX0J@Z 00403090 f utilcopy.obj - 0001:00002170 ?FWouldBe@ERS@@SGHJ@Z 00403170 f utilerro.obj - 0001:000021b0 ?FIs@ERS@@UAEHJ@Z 004031b0 f utilerro.obj - 0001:000021e0 ?Cls@ERS@@UAEJXZ 004031e0 f utilerro.obj - 0001:00002210 ??0ERS@@QAE@XZ 00403210 f utilerro.obj - 0001:00002260 ?Push@ERS@@UAEXJPADJ@Z 00403260 f utilerro.obj - 0001:00002420 ?FPop@ERS@@UAEHPAJ@Z 00403420 f utilerro.obj - 0001:00002520 ?Clear@ERS@@UAEXXZ 00403520 f utilerro.obj - 0001:00002590 ?Cerc@ERS@@UAEJXZ 00403590 f utilerro.obj - 0001:000025e0 ?FIn@ERS@@UAEHJ@Z 004035e0 f utilerro.obj - 0001:000026b0 ?ErcGet@ERS@@UAEJJ@Z 004036b0 f utilerro.obj - 0001:00002750 ?Flush@ERS@@UAEXJ@Z 00403750 f utilerro.obj - 0001:00002840 ?FIn@@YGHJJJ@Z 00403840 f utilerro.obj - 0001:00002880 ?AssertValid@ERS@@QAEXK@Z 00403880 f utilerro.obj - 0001:00002920 ??1ERS@@UAE@XZ 00403920 f utilerro.obj - 0001:00002950 ??_GERS@@UAEPAXI@Z 00403950 f utilerro.obj - 0001:00002950 ??_EERS@@UAEPAXI@Z 00403950 f utilerro.obj - 0001:00002990 ?LwGcd@@YGJJJ@Z 00403990 f utilint.obj - 0001:000029c0 ?LuGcd@@YGKKK@Z 004039c0 f utilint.obj - 0001:00002a50 ?SortLw@@YGXPAJ0@Z 00403a50 f utilint.obj - 0001:00002aa0 ?MulLw@@YGXJJPAJPAK@Z 00403aa0 f utilint.obj - 0001:00002ad0 ?LuMulDiv@@YGKKKK@Z 00403ad0 f utilint.obj - 0001:00002b30 ?MulLu@@YGXKKPAK0@Z 00403b30 f utilint.obj - 0001:00002b60 ?LwMulDivAway@@YGJJJJ@Z 00403b60 f utilint.obj - 0001:00002bf0 ?LwDivAway@@YGJJJ@Z 00403bf0 f utilint.obj - 0001:00002ca0 ?LwRoundAway@@YGJJJ@Z 00403ca0 f utilint.obj - 0001:00002d30 ?LwRoundToward@@YGJJJ@Z 00403d30 f utilint.obj - 0001:00002da0 ?LwRoundClosest@@YGJJJ@Z 00403da0 f utilint.obj - 0001:00002e40 ?FcmpCompareFracs@@YGKJJJJ@Z 00403e40 f utilint.obj - 0001:00002f20 ?FAdjustIv@@YGHPAJJJJ@Z 00403f20 f utilint.obj - 0001:00002fd0 ?LwMul@@YGJJJ@Z 00403fd0 f utilint.obj - 0001:00003040 ?AssertIn@@YGXJJJ@Z 00404040 f utilint.obj - 0001:000030c0 ?SwapBytesBom@@YGXPAXK@Z 004040c0 f utilint.obj - 0001:000031a0 ?LwMin@@YGJJJ@Z 004041a0 f utilint.obj - 0001:000031d0 ?LwAbs@@YGJJ@Z 004041d0 f utilint.obj - 0001:00003200 ?SwapBytesRgsw@@YGXPAXJ@Z 00404200 f utilint.obj - 0001:00003290 ?LwMulDivMod@@YGJJJJPAJ@Z 00404290 f utilint.obj - 0001:000032f0 ?SwapBytesRglw@@YGXPAXJ@Z 004042f0 f utilint.obj - 0001:000033a0 ?AssertBomRglw@@YGXKJ@Z 004043a0 f utilint.obj - 0001:00003460 ??BPT@@QAE?AUtagPOINT@@XZ 00404460 f utilint.obj - 0001:000034c0 ?SwTruncLw@@YGFJ@Z 004044c0 f utilint.obj - 0001:00003510 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 00404510 f utilint.obj - 0001:00003560 ?Map@PT@@QAEXPAVRC@@0@Z 00404560 f utilint.obj - 0001:00003740 ?LwMulDiv@@YGJJJJ@Z 00404740 f utilint.obj - 0001:00003790 ?Transform@PT@@QAEXK@Z 00404790 f utilint.obj - 0001:00003810 ??8RC@@QAEHAAV0@@Z 00404810 f utilint.obj - 0001:000038b0 ??9RC@@QAEHAAV0@@Z 004048b0 f utilint.obj - 0001:00003960 ?Union@RC@@QAEXPAV1@0@Z 00404960 f utilint.obj - 0001:000039d0 ?Union@RC@@QAEXPAV1@@Z 004049d0 f utilint.obj - 0001:00003ab0 ?LwMax@@YGJJJ@Z 00404ab0 f utilint.obj - 0001:00003ae0 ?Dxp@RC@@QAEJXZ 00404ae0 f utilint.obj - 0001:00003b20 ?Dyp@RC@@QAEJXZ 00404b20 f utilint.obj - 0001:00003b60 ?FIntersect@RC@@QAEHPAV1@0@Z 00404b60 f utilint.obj - 0001:00003c30 ?Zero@RC@@QAEXXZ 00404c30 f utilint.obj - 0001:00003c90 ?FEmpty@RC@@QAEHXZ 00404c90 f utilint.obj - 0001:00003cf0 ?FIntersect@RC@@QAEHPAV1@@Z 00404cf0 f utilint.obj - 0001:00003db0 ?Inset@RC@@QAEXJJ@Z 00404db0 f utilint.obj - 0001:00003e10 ?Map@RC@@QAEXPAV1@0@Z 00404e10 f utilint.obj - 0001:00004060 ?Transform@RC@@QAEXK@Z 00405060 f utilint.obj - 0001:00004130 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 00405130 f utilint.obj - 0001:000041a0 ?Offset@RC@@QAEXJJ@Z 004051a0 f utilint.obj - 0001:000041f0 ?OffsetToOrigin@RC@@QAEXXZ 004051f0 f utilint.obj - 0001:00004250 ?CenterOnRc@RC@@QAEXPAV1@@Z 00405250 f utilint.obj - 0001:000042f0 ?StretchToRc@RC@@QAEXPAV1@@Z 004052f0 f utilint.obj - 0001:00004420 ?FPtIn@RC@@QAEHJJ@Z 00405420 f utilint.obj - 0001:000044a0 ?PinPt@RC@@QAEXPAVPT@@@Z 004054a0 f utilint.obj - 0001:00004520 ?LwBound@@YGJJJJ@Z 00405520 f utilint.obj - 0001:00004560 ?PinToRc@RC@@QAEXPAV1@@Z 00405560 f utilint.obj - 0001:00004610 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 00405610 f utilint.obj - 0001:00004670 ??BRC@@QAE?AUtagRECT@@XZ 00405670 f utilint.obj - 0001:00004700 ?FContains@RC@@QAEHPAV1@@Z 00405700 f utilint.obj - 0001:000047a0 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 004057a0 f utilint.obj - 0001:000048e0 ?AssertValid@RAT@@QAEXK@Z 004058e0 f utilint.obj - 0001:00004960 ??0USAC@@QAE@XZ 00405960 f utilint.obj - 0001:000049c0 ?TsCur@USAC@@QAEKXZ 004059c0 f utilint.obj - 0001:00004a50 ?LwHighLow@@YGJFF@Z 00405a50 f utilint.obj - 0001:00004a80 ?SuHigh@@YGGJ@Z 00405a80 f utilint.obj - 0001:00004aa0 ?SuLow@@YGGJ@Z 00405aa0 f utilint.obj - 0001:00004ac0 ?Scale@USAC@@QAEXK@Z 00405ac0 f utilint.obj - 0001:00004b80 ?Set@DVER@@QAEXFF@Z 00405b80 f utilint.obj - 0001:00004bc0 ?FReadable@DVER@@QAEHFF@Z 00405bc0 f utilint.obj - 0001:00004c80 ??_GUSAC@@UAEPAXI@Z 00405c80 f utilint.obj - 0001:00004c80 ??_EUSAC@@UAEPAXI@Z 00405c80 f utilint.obj - 0001:00004cc0 ?TsCurrentSystem@@YGKXZ 00405cc0 f utilint.obj - 0001:00004ce0 ?FFail@DMAGL@@QAEHXZ 00405ce0 f utilmem.obj - 0001:00004d50 ?Allocate@DMAGL@@QAEXJ@Z 00405d50 f utilmem.obj - 0001:00004de0 ?Resize@DMAGL@@QAEXJ@Z 00405de0 f utilmem.obj - 0001:00004e40 ?Free@DMAGL@@QAEXJ@Z 00405e40 f utilmem.obj - 0001:00004e80 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00405e80 f utilmem.obj - 0001:000051d0 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 004061d0 f utilmem.obj - 0001:000055e0 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 004065e0 f utilmem.obj - 0001:00005680 ?_LinkMbh@@YGXPAUMBH@@@Z 00406680 f utilmem.obj - 0001:00005720 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00406720 f utilmem.obj - 0001:000058c0 ?_AssertMbh@@YGXPAUMBH@@@Z 004068c0 f utilmem.obj - 0001:00005b00 ?AssertPvAlloced@@YGXPAXJ@Z 00406b00 f utilmem.obj - 0001:00005bc0 ?AssertUnmarkedMem@@YGXXZ 00406bc0 f utilmem.obj - 0001:00005cb0 ?UnmarkAllMem@@YGXXZ 00406cb0 f utilmem.obj - 0001:00005d30 ?MarkPv@@YGXPAX@Z 00406d30 f utilmem.obj - 0001:00005da0 ?FWouldBe@RND@@SGHJ@Z 00406da0 f utilrnd.obj - 0001:00005de0 ?FIs@RND@@UAEHJ@Z 00406de0 f utilrnd.obj - 0001:00005e10 ?Cls@RND@@UAEJXZ 00406e10 f utilrnd.obj - 0001:00005e40 ?FWouldBe@SFL@@SGHJ@Z 00406e40 f utilrnd.obj - 0001:00005e80 ?FIs@SFL@@UAEHJ@Z 00406e80 f utilrnd.obj - 0001:00005eb0 ?Cls@SFL@@UAEJXZ 00406eb0 f utilrnd.obj - 0001:00005ee0 ??0RND@@QAE@K@Z 00406ee0 f utilrnd.obj - 0001:00005f70 ?LwNext@RND@@UAEJJ@Z 00406f70 f utilrnd.obj - 0001:00006040 ??0SFL@@QAE@K@Z 00407040 f utilrnd.obj - 0001:000060d0 ??1SFL@@UAE@XZ 004070d0 f utilrnd.obj - 0001:00006140 ?AssertValid@SFL@@QAEXK@Z 00407140 f utilrnd.obj - 0001:00006210 ?MarkMem@SFL@@UAEXXZ 00407210 f utilrnd.obj - 0001:00006270 ?Shuffle@SFL@@QAEXJ@Z 00407270 f utilrnd.obj - 0001:00006380 ?ShuffleRglw@SFL@@QAEXJPAJ@Z 00407380 f utilrnd.obj - 0001:00006480 ?_ShuffleCore@SFL@@IAEXXZ 00407480 f utilrnd.obj - 0001:00006570 ?_FEnsureHq@SFL@@IAEHJ@Z 00407570 f utilrnd.obj - 0001:000066f0 ?LwNext@SFL@@UAEJJ@Z 004076f0 f utilrnd.obj - 0001:00006850 ??_ERND@@UAEPAXI@Z 00407850 f utilrnd.obj - 0001:00006850 ??_GRND@@UAEPAXI@Z 00407850 f utilrnd.obj - 0001:00006890 ??_ESFL@@UAEPAXI@Z 00407890 f utilrnd.obj - 0001:00006890 ??_GSFL@@UAEPAXI@Z 00407890 f utilrnd.obj - 0001:000068d0 ??4STN@@QAEAAV0@AAV0@@Z 004078d0 f utilstr.obj - 0001:000069c0 ?SetRgch@STN@@QAEXPADJ@Z 004079c0 f utilstr.obj - 0001:00006aa0 ?SetSzs@STN@@QAEXPAD@Z 00407aa0 f utilstr.obj - 0001:00006b00 ?Delete@STN@@QAEXJJ@Z 00407b00 f utilstr.obj - 0001:00006c60 ?FAppendRgch@STN@@QAEHPADJ@Z 00407c60 f utilstr.obj - 0001:00006d60 ?FInsertRgch@STN@@QAEHJPADJ@Z 00407d60 f utilstr.obj - 0001:00006f10 ?FEqualRgch@STN@@QAEHPADJ@Z 00407f10 f utilstr.obj - 0001:00006fb0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00407fb0 f utilstr.obj - 0001:00007040 ?CbData@STN@@QAEJXZ 00408040 f utilstr.obj - 0001:00007090 ?GetData@STN@@QAEXPAX@Z 00408090 f utilstr.obj - 0001:00007120 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 00408120 f utilstr.obj - 0001:00007280 ?FSetData@STN@@QAEHPAXJPAJ@Z 00408280 f utilstr.obj - 0001:00007740 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 00408740 f utilstr.obj - 0001:00007d70 ?GetSzs@STN@@QAEXPAD@Z 00408d70 f utilstr.obj - 0001:00007de0 ?FFormatSz@STN@@QAAHPADZZ 00408de0 f utilstr.obj - 0001:00007e40 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00408e40 f utilstr.obj - 0001:000086a0 ?CbCharOsk@@YGJF@Z 004096a0 f utilstr.obj - 0001:00008730 ?FGetLw@STN@@QAEHPAJJ@Z 00409730 f utilstr.obj - 0001:00008a00 ?Prgch@STN@@QAEPADXZ 00409a00 f utilstr.obj - 0001:00008a50 ?Psz@STN@@QAEPADXZ 00409a50 f utilstr.obj - 0001:00008aa0 ?FExpandControls@STN@@QAEHXZ 00409aa0 f utilstr.obj - 0001:00008cd0 ?Cch@STN@@QAEJXZ 00409cd0 f utilstr.obj - 0001:00008d20 ?SetNil@STN@@QAEXXZ 00409d20 f utilstr.obj - 0001:00008d80 ?SetSz@STN@@QAEXPAD@Z 00409d80 f utilstr.obj - 0001:00008dc0 ?AssertValid@STN@@QAEXK@Z 00409dc0 f utilstr.obj - 0001:00008eb0 ?FValidSt@@YGHPAD@Z 00409eb0 f utilstr.obj - 0001:00008f60 ?PrgchSt@@YGPADPAD@Z 00409f60 f utilstr.obj - 0001:00008f80 ?FValidStz@@YGHPAD@Z 00409f80 f utilstr.obj - 0001:00008fe0 ?CchSt@@YGJPAD@Z 00409fe0 f utilstr.obj - 0001:00009010 ?PszStz@@YGPADPAD@Z 0040a010 f utilstr.obj - 0001:00009030 ?CchSz@@YGJPAD@Z 0040a030 f utilstr.obj - 0001:000090d0 ?FcmpCompareRgch@@YGKPADJ0J@Z 0040a0d0 f utilstr.obj - 0001:00009210 ?FEqualUserRgch@@YGHPADJ0JK@Z 0040a210 f utilstr.obj - 0001:00009380 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 0040a380 f utilstr.obj - 0001:00009490 ?UpperRgchs@@YGXPADJ@Z 0040a490 f utilstr.obj - 0001:00009550 ?LowerRgchs@@YGXPADJ@Z 0040a550 f utilstr.obj - 0001:00009610 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 0040a610 f utilstr.obj - 0001:000097c0 ?TranslateRgch@@YGXPADJFH@Z 0040a7c0 f utilstr.obj - 0001:000098b0 ?GrfchFromCh@@YGKD@Z 0040a8b0 f utilstr.obj - 0001:000099e0 ?AssertOsk@@YGXF@Z 0040a9e0 f utilstr.obj - 0001:00009a90 ?AssertSt@@YGXPAD@Z 0040aa90 f utilstr.obj - 0001:00009ae0 ?AssertStz@@YGXPAD@Z 0040aae0 f utilstr.obj - 0001:00009b30 ?AssertSz@@YGXPAD@Z 0040ab30 f utilstr.obj - 0001:00009b80 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 0040ab80 f memwin.obj - 0001:00009c60 ?FResizePhq@@YGHPAPAXJKJ@Z 0040ac60 f memwin.obj - 0001:00009d90 ?FreePhq@@YGXPAPAX@Z 0040ad90 f memwin.obj - 0001:00009e40 ?CbOfHq@@YGJPAX@Z 0040ae40 f memwin.obj - 0001:00009e80 ?QvFromHq@@YGPAXPAX@Z 0040ae80 f memwin.obj - 0001:00009ea0 ?PvLockHq@@YGPAXPAX@Z 0040aea0 f memwin.obj - 0001:00009f20 ?UnlockHq@@YGXPAX@Z 0040af20 f memwin.obj - 0001:00009fa0 ?AssertHq@@YGXPAX@Z 0040afa0 f memwin.obj - 0001:0000a090 ?MarkHq@@YGXPAX@Z 0040b090 f memwin.obj - 0001:0000a0d0 ?AssertPvCb@@YGXPAXJ@Z 0040b0d0 f memwin.obj - 0001:0000a160 ?FWouldBe@CFL@@SGHJ@Z 0040b160 f chunk.obj - 0001:0000a1a0 ?FIs@CFL@@UAEHJ@Z 0040b1a0 f chunk.obj - 0001:0000a1d0 ?Cls@CFL@@UAEJXZ 0040b1d0 f chunk.obj - 0001:0000a200 ?FWouldBe@CGE@@SGHJ@Z 0040b200 f chunk.obj - 0001:0000a240 ?FIs@CGE@@UAEHJ@Z 0040b240 f chunk.obj - 0001:0000a270 ?Cls@CGE@@UAEJXZ 0040b270 f chunk.obj - 0001:0000a2a0 ??0CFL@@AAE@XZ 0040b2a0 f chunk.obj - 0001:0000a310 ??1CFL@@EAE@XZ 0040b310 f chunk.obj - 0001:0000a4a0 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 0040b4a0 f chunk.obj - 0001:0000a730 ?FReopen@CFL@@QAEHXZ 0040b730 f chunk.obj - 0001:0000aac0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 0040bac0 f chunk.obj - 0001:0000ab10 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 0040bb10 f chunk.obj - 0001:0000ad80 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 0040bd80 f chunk.obj - 0001:0000aea0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 0040bea0 f chunk.obj - 0001:0000afd0 ?FWriteChunkTree@CFL@@QAEHKKPAVFIL@@JPAJ@Z 0040bfd0 f chunk.obj - 0001:0000b250 ?PcflReadForestFromFlo@CFL@@SGPAV1@PAUFLO@@H@Z 0040c250 f chunk.obj - 0001:0000b7c0 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 0040c7c0 f chunk.obj - 0001:0000b810 ?SetCb@CRPSM@@QAEXJ@Z 0040c810 f chunk.obj - 0001:0000b850 ?FForest@CFL@@QAEHKK@Z 0040c850 f chunk.obj - 0001:0000b960 ?Grfcrp@CRPSM@@QAEKK@Z 0040c960 f chunk.obj - 0001:0000b990 ?SetForest@CFL@@QAEXKKH@Z 0040c990 f chunk.obj - 0001:0000bad0 ?ClearGrfcrp@CRPSM@@QAEXK@Z 0040cad0 f chunk.obj - 0001:0000bb00 ?SetGrfcrp@CRPSM@@QAEXK@Z 0040cb00 f chunk.obj - 0001:0000bb30 ?PcflReadForest@CFL@@QAEPAV1@KKH@Z 0040cb30 f chunk.obj - 0001:0000bc20 ?FSetGrfcfl@CFL@@QAEHKK@Z 0040cc20 f chunk.obj - 0001:0000bd70 ?Release@CFL@@UAEXXZ 0040cd70 f chunk.obj - 0001:0000be50 ?AssertValid@CFL@@QAEXK@Z 0040ce50 f chunk.obj - 0001:0000cc20 ?CbRgch@CRPSM@@QAEJJ@Z 0040dc20 f chunk.obj - 0001:0000cc50 ?BvRgch@CRPSM@@QAEJXZ 0040dc50 f chunk.obj - 0001:0000cc80 ?Cb@CRPSM@@QAEJXZ 0040dc80 f chunk.obj - 0001:0000ccb0 ?SuspendAssertValid@@YGXXZ 0040dcb0 f chunk.obj - 0001:0000cd00 ?ResumeAssertValid@@YGXXZ 0040dd00 f chunk.obj - 0001:0000cd30 ?ElError@FIL@@QAEJXZ 0040dd30 f chunk.obj - 0001:0000cd60 ?GrffilCur@FIL@@QAEKXZ 0040dd60 f chunk.obj - 0001:0000cd90 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 0040dd90 f chunk.obj - 0001:0000cdf0 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 0040ddf0 f chunk.obj - 0001:0000ce50 ?IvMac@GRPB@@QAEJXZ 0040de50 f chunk.obj - 0001:0000ce80 ?FPush@GL@@QAEHPAX@Z 0040de80 f chunk.obj - 0001:0000cec0 ?MarkMem@CFL@@UAEXXZ 0040dec0 f chunk.obj - 0001:0000cf90 ?_TValidIndex@CFL@@AAEHXZ 0040df90 f chunk.obj - 0001:0000d4c0 ?_FReadIndex@CFL@@AAEHXZ 0040e4c0 f chunk.obj - 0001:0000e1d0 ?BvRgch@CRPBG@@QAEJXZ 0040f1d0 f chunk.obj - 0001:0000e200 ?CbRgch@CRPBG@@QAEJJ@Z 0040f200 f chunk.obj - 0001:0000e230 ?Grfcrp@CRPBG@@QAEKK@Z 0040f230 f chunk.obj - 0001:0000e260 ?ClearGrfcrp@CRPBG@@QAEXK@Z 0040f260 f chunk.obj - 0001:0000e290 ?SetGrfcrp@CRPBG@@QAEXK@Z 0040f290 f chunk.obj - 0001:0000e2c0 ?Cb@CRPBG@@QAEJXZ 0040f2c0 f chunk.obj - 0001:0000e2f0 ?Lock@GRPB@@QAEXXZ 0040f2f0 f chunk.obj - 0001:0000e330 ?Unlock@GRPB@@QAEXXZ 0040f330 f chunk.obj - 0001:0000e370 ?CbFixed@GGB@@QAEJXZ 0040f370 f chunk.obj - 0001:0000e3a0 ?_ReadFreeMap@CFL@@AAEXXZ 0040f3a0 f chunk.obj - 0001:0000e590 ?CbEntry@GLB@@QAEJXZ 0040f590 f chunk.obj - 0001:0000e5c0 ?FSave@CFL@@QAEHKPAVFNI@@@Z 0040f5c0 f chunk.obj - 0001:0000ee10 ?FTemp@FIL@@QAEHXZ 0040fe10 f chunk.obj - 0001:0000ee50 ?GetFni@CFL@@QAEXPAVFNI@@@Z 0040fe50 f chunk.obj - 0001:0000ee80 ?GetFni@FIL@@QAEXPAVFNI@@@Z 0040fe80 f chunk.obj - 0001:0000eeb0 ?_FWriteIndex@CFL@@AAEHK@Z 0040feb0 f chunk.obj - 0001:0000f210 ?FSaveACopy@CFL@@QAEHKPAVFNI@@@Z 00410210 f chunk.obj - 0001:0000f4e0 ?SetTemp@CFL@@QAEXH@Z 004104e0 f chunk.obj - 0001:0000f510 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00410510 f chunk.obj - 0001:0000f690 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00410690 f chunk.obj - 0001:0000f7e0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 004107e0 f chunk.obj - 0001:0000f8c0 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 004108c0 f chunk.obj - 0001:0000f990 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 00410990 f chunk.obj - 0001:0000fa40 ?FReadHq@BLCK@@QAEHPAPAXH@Z 00410a40 f chunk.obj - 0001:0000fa80 ?SetPacked@CFL@@QAEXKKH@Z 00410a80 f chunk.obj - 0001:0000fbc0 ?FPacked@CFL@@QAEHKK@Z 00410bc0 f chunk.obj - 0001:0000fcd0 ?FUnpackData@CFL@@QAEHKK@Z 00410cd0 f chunk.obj - 0001:0000fde0 ?FPackData@CFL@@QAEHKK@Z 00410de0 f chunk.obj - 0001:0000fef0 ?_FCreateExtra@CFL@@AAEHXZ 00410ef0 f chunk.obj - 0001:0000ffd0 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00410fd0 f chunk.obj - 0001:00010310 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00411310 f chunk.obj - 0001:000104b0 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 004114b0 f chunk.obj - 0001:000105c0 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 004115c0 f chunk.obj - 0001:00010710 ?FWrite@BLCK@@QAEHPAXH@Z 00411710 f chunk.obj - 0001:00010750 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 00411750 f chunk.obj - 0001:000108e0 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 004118e0 f chunk.obj - 0001:00010a10 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00411a10 f chunk.obj - 0001:00010c40 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 00411c40 f chunk.obj - 0001:00010ce0 ?FPutPv@CFL@@QAEHPAXJKK@Z 00411ce0 f chunk.obj - 0001:00010d60 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 00411d60 f chunk.obj - 0001:00010e60 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00411e60 f chunk.obj - 0001:00011360 ?FWrite@FLO@@QAEHPAX@Z 00412360 f chunk.obj - 0001:000113a0 ?SwapData@CFL@@QAEXKKKK@Z 004123a0 f chunk.obj - 0001:00011550 ?SwapChildren@CFL@@QAEXKKKK@Z 00412550 f chunk.obj - 0001:00011770 ?Move@CFL@@QAEXKKKK@Z 00412770 f chunk.obj - 0001:00011a80 ?Delete@CFL@@QAEXKK@Z 00412a80 f chunk.obj - 0001:00011d90 ?SetLoner@CFL@@QAEXKKH@Z 00412d90 f chunk.obj - 0001:00011e80 ?FLoner@CFL@@QAEHKK@Z 00412e80 f chunk.obj - 0001:00011f50 ?CckiRef@CFL@@QAEJKK@Z 00412f50 f chunk.obj - 0001:00012010 ?TIsDescendent@CFL@@QAEHKKKK@Z 00413010 f chunk.obj - 0001:00012130 ?DeleteChild@CFL@@QAEXKKKKK@Z 00413130 f chunk.obj - 0001:000122c0 ?_FDecRefCount@CFL@@AAEHJ@Z 004132c0 f chunk.obj - 0001:000123a0 ?_DeleteCore@CFL@@AAEXJ@Z 004133a0 f chunk.obj - 0001:00012460 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00413460 f chunk.obj - 0001:00012a20 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 00413a20 f chunk.obj - 0001:00012b50 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 00413b50 f chunk.obj - 0001:00012cf0 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 00413cf0 f chunk.obj - 0001:00012e00 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 00413e00 f chunk.obj - 0001:00012f80 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00413f80 f chunk.obj - 0001:000130d0 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 004140d0 f chunk.obj - 0001:00013370 ?ChangeChid@CFL@@QAEXKKKKKK@Z 00414370 f chunk.obj - 0001:00013500 ?Ccki@CFL@@QAEJXZ 00414500 f chunk.obj - 0001:00013550 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 00414550 f chunk.obj - 0001:000136d0 ?FGetIcki@CFL@@QAEHKKPAJ@Z 004146d0 f chunk.obj - 0001:00013740 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 00414740 f chunk.obj - 0001:00013920 ?Ckid@CFL@@QAEJKK@Z 00414920 f chunk.obj - 0001:000139e0 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 004149e0 f chunk.obj - 0001:00013bc0 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00414bc0 f chunk.obj - 0001:00013c70 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00414c70 f chunk.obj - 0001:00013eb0 ?FGetIkid@CFL@@QAEHKKKKKPAJ@Z 00414eb0 f chunk.obj - 0001:00013f80 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00414f80 f chunk.obj - 0001:00014160 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 00415160 f chunk.obj - 0001:00014320 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 00415320 f chunk.obj - 0001:00014420 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 00415420 f chunk.obj - 0001:00014ce0 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 00415ce0 f chunk.obj - 0001:00015090 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 00416090 f chunk.obj - 0001:000151b0 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 004161b0 f chunk.obj - 0001:000151f0 ?FClone@CFL@@QAEHKKPAV1@PAK@Z 004161f0 f chunk.obj - 0001:00015230 ?_Rti@CFL@@AAEJKK@Z 00416230 f chunk.obj - 0001:000152a0 ?_FSetRti@CFL@@AAEHKKJ@Z 004162a0 f chunk.obj - 0001:000153c0 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 004163c0 f chunk.obj - 0001:00015580 ??0CGE@@QAE@XZ 00416580 f chunk.obj - 0001:00015600 ??1CGE@@UAE@XZ 00416600 f chunk.obj - 0001:00015690 ?AssertValid@CGE@@QAEXK@Z 00416690 f chunk.obj - 0001:000157c0 ?MarkMem@CGE@@UAEXXZ 004167c0 f chunk.obj - 0001:00015830 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00416830 f chunk.obj - 0001:00015980 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00416980 f chunk.obj - 0001:00015dc0 ??4FNI@@QAEAAV0@AAV0@@Z 00416dc0 f chunk.obj - 0001:00015e10 ??_GCFL@@EAEPAXI@Z 00416e10 f chunk.obj - 0001:00015e10 ??_ECFL@@EAEPAXI@Z 00416e10 f chunk.obj - 0001:00015e50 ??1FNI@@UAE@XZ 00416e50 f chunk.obj - 0001:00015e80 ??_ECGE@@UAEPAXI@Z 00416e80 f chunk.obj - 0001:00015e80 ??_GCGE@@UAEPAXI@Z 00416e80 f chunk.obj - 0001:00015ec0 ??4BASE@@QAEAAV0@ABV0@@Z 00416ec0 f chunk.obj - 0001:00015f00 ?FWouldBe@CODM@@SGHJ@Z 00416f00 f codec.obj - 0001:00015f40 ?FIs@CODM@@UAEHJ@Z 00416f40 f codec.obj - 0001:00015f70 ?Cls@CODM@@UAEJXZ 00416f70 f codec.obj - 0001:00015fa0 ?FWouldBe@CODC@@SGHJ@Z 00416fa0 f codec.obj - 0001:00015fe0 ?FIs@CODC@@UAEHJ@Z 00416fe0 f codec.obj - 0001:00016010 ?Cls@CODC@@UAEJXZ 00417010 f codec.obj - 0001:00016040 ??0CODM@@QAE@PAVCODC@@J@Z 00417040 f codec.obj - 0001:00016140 ??1CODM@@UAE@XZ 00417140 f codec.obj - 0001:00016260 ?AssertValid@CODM@@QAEXK@Z 00417260 f codec.obj - 0001:00016330 ?MarkMem@CODM@@UAEXXZ 00417330 f codec.obj - 0001:00016420 ?SetCfmtDefault@CODM@@QAEXJ@Z 00417420 f codec.obj - 0001:000164b0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 004174b0 f codec.obj - 0001:000165c0 ?FCanDo@CODM@@UAEHJH@Z 004175c0 f codec.obj - 0001:00016630 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00417630 f codec.obj - 0001:00016760 ?LwFromBytes@@YGJEEEE@Z 00417760 f codec.obj - 0001:000167a0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 004177a0 f codec.obj - 0001:000168e0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004178e0 f codec.obj - 0001:00016ad0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00417ad0 f codec.obj - 0001:00016de0 ?B0Lw@@YGEJ@Z 00417de0 f codec.obj - 0001:00016e00 ?B1Lw@@YGEJ@Z 00417e00 f codec.obj - 0001:00016e20 ?B2Lw@@YGEJ@Z 00417e20 f codec.obj - 0001:00016e40 ?B3Lw@@YGEJ@Z 00417e40 f codec.obj - 0001:00016e80 ??_GCODM@@UAEPAXI@Z 00417e80 f codec.obj - 0001:00016e80 ??_ECODM@@UAEPAXI@Z 00417e80 f codec.obj - 0001:00016ec0 ?FWouldBe@KCDC@@SGHJ@Z 00417ec0 f codkauai.obj - 0001:00016f00 ?FIs@KCDC@@UAEHJ@Z 00417f00 f codkauai.obj - 0001:00016f30 ?Cls@KCDC@@UAEJXZ 00417f30 f codkauai.obj - 0001:00016f60 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00417f60 f codkauai.obj - 0001:000170c0 ?Set@BITA@@QAEXPAXJ@Z 004180c0 f codkauai.obj - 0001:00017120 ?FWriteBits@BITA@@QAEHKJ@Z 00418120 f codkauai.obj - 0001:000172c0 ?FWriteLogEncoded@BITA@@QAEHK@Z 004182c0 f codkauai.obj - 0001:000173b0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004183b0 f codkauai.obj - 0001:00017b70 ?Ibit@BITA@@QAEJXZ 00418b70 f codkauai.obj - 0001:00017ba0 ?Ib@BITA@@QAEJXZ 00418ba0 f codkauai.obj - 0001:00017bd0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00418bd0 f codkauai.obj - 0001:0001b8b0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0041c8b0 f codkauai.obj - 0001:0001c1d0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0041d1d0 f codkauai.obj - 0001:0001e9c0 ?FWouldBe@BACO@@SGHJ@Z 0041f9c0 f crf.obj - 0001:0001ea00 ?FIs@BACO@@UAEHJ@Z 0041fa00 f crf.obj - 0001:0001ea30 ?Cls@BACO@@UAEJXZ 0041fa30 f crf.obj - 0001:0001ea60 ?FWouldBe@RCA@@SGHJ@Z 0041fa60 f crf.obj - 0001:0001eaa0 ?FIs@RCA@@UAEHJ@Z 0041faa0 f crf.obj - 0001:0001ead0 ?Cls@RCA@@UAEJXZ 0041fad0 f crf.obj - 0001:0001eb00 ?FWouldBe@CRF@@SGHJ@Z 0041fb00 f crf.obj - 0001:0001eb40 ?FIs@CRF@@UAEHJ@Z 0041fb40 f crf.obj - 0001:0001eb70 ?Cls@CRF@@UAEJXZ 0041fb70 f crf.obj - 0001:0001eba0 ?FWouldBe@CABO@@SGHJ@Z 0041fba0 f crf.obj - 0001:0001ebe0 ?FIs@CABO@@UAEHJ@Z 0041fbe0 f crf.obj - 0001:0001ec10 ?Cls@CABO@@UAEJXZ 0041fc10 f crf.obj - 0001:0001ec40 ??0BACO@@IAE@XZ 0041fc40 f crf.obj - 0001:0001ecc0 ??1BACO@@MAE@XZ 0041fcc0 f crf.obj - 0001:0001ed90 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0041fd90 f crf.obj - 0001:0001ee80 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0041fe80 f crf.obj - 0001:0001eef0 ?CbOnFile@BACO@@UAEJXZ 0041fef0 f crf.obj - 0001:0001ef60 ?AssertValid@BACO@@QAEXK@Z 0041ff60 f crf.obj - 0001:0001eff0 ?MarkMem@BACO@@UAEXXZ 0041fff0 f crf.obj - 0001:0001f060 ?Release@BACO@@UAEXXZ 00420060 f crf.obj - 0001:0001f1c0 ?Detach@BACO@@UAEXXZ 004201c0 f crf.obj - 0001:0001f2f0 ?SetCrep@BACO@@UAEXJ@Z 004202f0 f crf.obj - 0001:0001f370 ??0CRF@@IAE@PAVCFL@@J@Z 00420370 f crf.obj - 0001:0001f460 ??1CRF@@UAE@XZ 00420460 f crf.obj - 0001:0001f5c0 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 004205c0 f crf.obj - 0001:0001f710 ?CactRef@BASE@@QAEJXZ 00420710 f crf.obj - 0001:0001f740 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 00420740 f crf.obj - 0001:0001fbe0 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 00420be0 f crf.obj - 0001:0001ffc0 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00420fc0 f crf.obj - 0001:00020110 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00421110 f crf.obj - 0001:00020260 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 00421260 f crf.obj - 0001:00020300 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00421300 f crf.obj - 0001:000204c0 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 004214c0 f crf.obj - 0001:000206b0 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 004216b0 f crf.obj - 0001:00020880 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00421880 f crf.obj - 0001:00020c00 ?_FPurgeCb@CRF@@IAEHJJ@Z 00421c00 f crf.obj - 0001:00020eb0 ?AssertValid@CRF@@QAEXK@Z 00421eb0 f crf.obj - 0001:00020fe0 ?MarkMem@CRF@@UAEXXZ 00421fe0 f crf.obj - 0001:00021170 ?Pcfl@CRF@@QAEPAVCFL@@XZ 00422170 f crf.obj - 0001:000211a0 ?MarkMem@CABO@@UAEXXZ 004221a0 f crf.obj - 0001:00021210 ??0RCA@@QAE@XZ 00422210 f crf.obj - 0001:00021250 ??1RCA@@UAE@XZ 00422250 f crf.obj - 0001:00021280 ??_EBACO@@MAEPAXI@Z 00422280 f crf.obj - 0001:00021280 ??_GBACO@@MAEPAXI@Z 00422280 f crf.obj - 0001:000212c0 ??_GCRF@@UAEPAXI@Z 004222c0 f crf.obj - 0001:000212c0 ??_ECRF@@UAEPAXI@Z 004222c0 f crf.obj - 0001:00021300 ??_GRCA@@UAEPAXI@Z 00422300 f crf.obj - 0001:00021300 ??_ERCA@@UAEPAXI@Z 00422300 f crf.obj - 0001:00021360 ?FWouldBe@FIL@@SGHJ@Z 00422360 f file.obj - 0001:000213a0 ?FIs@FIL@@UAEHJ@Z 004223a0 f file.obj - 0001:000213d0 ?Cls@FIL@@UAEJXZ 004223d0 f file.obj - 0001:00021400 ?FWouldBe@BLCK@@SGHJ@Z 00422400 f file.obj - 0001:00021440 ?FIs@BLCK@@UAEHJ@Z 00422440 f file.obj - 0001:00021470 ?Cls@BLCK@@UAEJXZ 00422470 f file.obj - 0001:000214a0 ?FWouldBe@MSFIL@@SGHJ@Z 004224a0 f file.obj - 0001:000214e0 ?FIs@MSFIL@@UAEHJ@Z 004224e0 f file.obj - 0001:00021510 ?Cls@MSFIL@@UAEJXZ 00422510 f file.obj - 0001:00021540 ??0FIL@@IAE@PAVFNI@@K@Z 00422540 f file.obj - 0001:00021630 ??1FIL@@MAE@XZ 00422630 f file.obj - 0001:000216a0 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 004226a0 f file.obj - 0001:000218c0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 004228c0 f file.obj - 0001:00021a90 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00422a90 f file.obj - 0001:00021bb0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00422bb0 f file.obj - 0001:00021d00 ?FSetGrffil@FIL@@QAEHKK@Z 00422d00 f file.obj - 0001:00021e10 ?Release@FIL@@UAEXXZ 00422e10 f file.obj - 0001:00021ef0 ?GetStnPath@FIL@@QAEXPAVSTN@@@Z 00422ef0 f file.obj - 0001:00021f60 ?SetTemp@FIL@@QAEXH@Z 00422f60 f file.obj - 0001:00021fe0 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 00422fe0 f file.obj - 0001:000220e0 ?ShutDown@FIL@@SGXXZ 004230e0 f file.obj - 0001:000221a0 ?AssertValid@FIL@@QAEXK@Z 004231a0 f file.obj - 0001:000222d0 ?_FRangeIn@@YGHJJJ@Z 004232d0 f file.obj - 0001:00022330 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00423330 f file.obj - 0001:00022400 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00423400 f file.obj - 0001:000224d0 ?FCopy@FLO@@QAEHPAU1@@Z 004234d0 f file.obj - 0001:00022750 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00423750 f file.obj - 0001:00022860 ?FWriteHq@FLO@@QAEHPAXJ@Z 00423860 f file.obj - 0001:00022940 ?FTranslate@FLO@@QAEHF@Z 00423940 f file.obj - 0001:00022e70 ?AssertValid@FLO@@QAEXK@Z 00423e70 f file.obj - 0001:00022f70 ??0BLCK@@QAE@PAUFLO@@H@Z 00423f70 f file.obj - 0001:000230b0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 004240b0 f file.obj - 0001:000231f0 ??0BLCK@@QAE@XZ 004241f0 f file.obj - 0001:00023290 ??1BLCK@@UAE@XZ 00424290 f file.obj - 0001:000232f0 ?Set@BLCK@@QAEXPAUFLO@@H@Z 004242f0 f file.obj - 0001:00023410 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00424410 f file.obj - 0001:00023540 ?SetHq@BLCK@@QAEXPAPAXH@Z 00424540 f file.obj - 0001:00023620 ?Free@BLCK@@QAEXXZ 00424620 f file.obj - 0001:000236d0 ?HqFree@BLCK@@QAEPAXH@Z 004246d0 f file.obj - 0001:00023880 ?Cb@BLCK@@QAEJH@Z 00424880 f file.obj - 0001:00023910 ?FSetTemp@BLCK@@QAEHJH@Z 00424910 f file.obj - 0001:00023a10 ?FMoveMin@BLCK@@QAEHJ@Z 00424a10 f file.obj - 0001:00023b00 ?FMoveLim@BLCK@@QAEHJ@Z 00424b00 f file.obj - 0001:00023bf0 ?FReadHq@FLO@@QAEHPAPAX@Z 00424bf0 f file.obj - 0001:00023c30 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00424c30 f file.obj - 0001:00023dd0 ?FWouldBe@MSNK@@SGHJ@Z 00424dd0 f file.obj - 0001:00023e10 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00424e10 f file.obj - 0001:00023fb0 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 00424fb0 f file.obj - 0001:00024180 ?FWriteHq@BLCK@@QAEHPAXJH@Z 00425180 f file.obj - 0001:00024320 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00425320 f file.obj - 0001:000244c0 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 004254c0 f file.obj - 0001:00024670 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 00425670 f file.obj - 0001:00024870 ?FPacked@BLCK@@QAEHPAJ@Z 00425870 f file.obj - 0001:00024910 ?FPackData@BLCK@@QAEHJ@Z 00425910 f file.obj - 0001:00024b50 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 00425b50 f file.obj - 0001:00024ba0 ?FUnpackData@BLCK@@QAEHXZ 00425ba0 f file.obj - 0001:00024dd0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 00425dd0 f file.obj - 0001:00024e00 ?CbMem@BLCK@@QAEJXZ 00425e00 f file.obj - 0001:00024e80 ?AssertValid@BLCK@@QAEXK@Z 00425e80 f file.obj - 0001:000250b0 ?MarkMem@BLCK@@UAEXXZ 004260b0 f file.obj - 0001:000250f0 ??0MSFIL@@QAE@PAVFIL@@@Z 004260f0 f file.obj - 0001:00025190 ??1MSFIL@@UAE@XZ 00426190 f file.obj - 0001:00025220 ?AssertValid@MSFIL@@QAEXK@Z 00426220 f file.obj - 0001:000252f0 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 004262f0 f file.obj - 0001:00025400 ?PfilRelease@MSFIL@@QAEPAVFIL@@XZ 00426400 f file.obj - 0001:00025460 ?ReportLine@MSFIL@@UAEXPAD@Z 00426460 f file.obj - 0001:00025530 ?Report@MSFIL@@UAEXPAD@Z 00426530 f file.obj - 0001:00025620 ?FError@MSFIL@@UAEHXZ 00426620 f file.obj - 0001:000256d0 ??_GFIL@@MAEPAXI@Z 004266d0 f file.obj - 0001:000256d0 ??_EFIL@@MAEPAXI@Z 004266d0 f file.obj - 0001:00025710 ??_EBLCK@@UAEPAXI@Z 00426710 f file.obj - 0001:00025710 ??_GBLCK@@UAEPAXI@Z 00426710 f file.obj - 0001:00025750 ??_GMSFIL@@UAEPAXI@Z 00426750 f file.obj - 0001:00025750 ??_EMSFIL@@UAEPAXI@Z 00426750 f file.obj - 0001:00025790 ??0MSNK@@QAE@XZ 00426790 f file.obj - 0001:000257d0 ?FIs@MSNK@@UAEHJ@Z 004267d0 f file.obj - 0001:00025800 ?Cls@MSNK@@UAEJXZ 00426800 f file.obj - 0001:00025830 ??1MSNK@@UAE@XZ 00426830 f file.obj - 0001:00025860 ??_GMSNK@@UAEPAXI@Z 00426860 f file.obj - 0001:00025860 ??_EMSNK@@UAEPAXI@Z 00426860 f file.obj - 0001:000258a0 ?_HfileOpen@@YGPAXPADHK@Z 004268a0 f filewin.obj - 0001:00025920 ?_FOpen@FIL@@IAEHHK@Z 00426920 f filewin.obj - 0001:00025b60 ?_Close@FIL@@IAEXH@Z 00426b60 f filewin.obj - 0001:00025c80 ?Flush@FIL@@QAEXXZ 00426c80 f filewin.obj - 0001:00025d10 ?_SetFpPos@FIL@@IAEXJ@Z 00426d10 f filewin.obj - 0001:00025e10 ?FSetFpMac@FIL@@QAEHJ@Z 00426e10 f filewin.obj - 0001:00025f50 ?FpMac@FIL@@QAEJXZ 00426f50 f filewin.obj - 0001:00026060 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00427060 f filewin.obj - 0001:00026220 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00427220 f filewin.obj - 0001:000263f0 ?FSwapNames@FIL@@QAEHPAV1@@Z 004273f0 f filewin.obj - 0001:00026880 ?FRename@FIL@@QAEHPAVFNI@@@Z 00427880 f filewin.obj - 0001:00026ab0 ?FWouldBe@FNI@@SGHJ@Z 00427ab0 f fniwin.obj - 0001:00026af0 ?FIs@FNI@@UAEHJ@Z 00427af0 f fniwin.obj - 0001:00026b20 ?Cls@FNI@@UAEJXZ 00427b20 f fniwin.obj - 0001:00026b50 ?SetNil@FNI@@QAEXXZ 00427b50 f fniwin.obj - 0001:00026bb0 ??0FNI@@QAE@XZ 00427bb0 f fniwin.obj - 0001:00026c00 ?FGetOpen@FNI@@QAEHPADPAUHWND__@@@Z 00427c00 f fniwin.obj - 0001:00026d50 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 00427d50 f fniwin.obj - 0001:00026eb0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00427eb0 f fniwin.obj - 0001:00027200 ?FGetUnique@FNI@@QAEHJ@Z 00428200 f fniwin.obj - 0001:000273b0 ?FGetTemp@FNI@@QAEHXZ 004283b0 f fniwin.obj - 0001:000274f0 ?Ftg@FNI@@QAEJXZ 004284f0 f fniwin.obj - 0001:00027540 ?Grfvk@FNI@@QAEKXZ 00428540 f fniwin.obj - 0001:00027740 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00428740 f fniwin.obj - 0001:00027900 ?FChangeFtg@FNI@@QAEHJ@Z 00428900 f fniwin.obj - 0001:00027a70 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00428a70 f fniwin.obj - 0001:00027bb0 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00428bb0 f fniwin.obj - 0001:00027c70 ?TExists@FNI@@QAEHXZ 00428c70 f fniwin.obj - 0001:00027eb0 ?FDelete@FNI@@QAEHXZ 00428eb0 f fniwin.obj - 0001:00027f80 ?FRename@FNI@@QAEHPAV1@@Z 00428f80 f fniwin.obj - 0001:000280a0 ?FEqual@FNI@@QAEHPAV1@@Z 004290a0 f fniwin.obj - 0001:00028160 ?FSameDir@FNI@@QAEHPAV1@@Z 00429160 f fniwin.obj - 0001:000282a0 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 004292a0 f fniwin.obj - 0001:00028570 ?AssertValid@FNI@@QAEXK@Z 00429570 f fniwin.obj - 0001:000288b0 ?_CchExt@FNI@@AAEJXZ 004298b0 f fniwin.obj - 0001:000289b0 ?_SetFtgFromName@FNI@@AAEXXZ 004299b0 f fniwin.obj - 0001:00028b20 ?ChsUpper@@YGDD@Z 00429b20 f fniwin.obj - 0001:00028b40 ??4STN@@QAEAAV0@PAD@Z 00429b40 f fniwin.obj - 0001:00028b70 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00429b70 f fniwin.obj - 0001:00028d50 ?FAppendCh@STN@@QAEHD@Z 00429d50 f fniwin.obj - 0001:00028d80 ?FAppendSz@STN@@QAEHPAD@Z 00429d80 f fniwin.obj - 0001:00028dc0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00429dc0 f fniwin.obj - 0001:00028ef0 ?FAppendStn@STN@@QAEHPAV1@@Z 00429ef0 f fniwin.obj - 0001:00028f30 ?FInsertCh@STN@@QAEHJD@Z 00429f30 f fniwin.obj - 0001:00028f70 ?FEqual@STN@@QAEHPAV1@@Z 00429f70 f fniwin.obj - 0001:00028fb0 ?FEqualUser@STN@@QAEHPAV1@K@Z 00429fb0 f fniwin.obj - 0001:00028ff0 ?FEqualSz@STN@@QAEHPAD@Z 00429ff0 f fniwin.obj - 0001:00029090 ??_EFNI@@UAEPAXI@Z 0042a090 f fniwin.obj - 0001:00029090 ??_GFNI@@UAEPAXI@Z 0042a090 f fniwin.obj - 0001:000290d0 ?FWouldBe@APPB@@SGHJ@Z 0042a0d0 f appb.obj - 0001:00029110 ?FIs@APPB@@UAEHJ@Z 0042a110 f appb.obj - 0001:00029140 ?Cls@APPB@@UAEJXZ 0042a140 f appb.obj - 0001:00029170 ??0APPB@@QAE@XZ 0042a170 f appb.obj - 0001:00029230 ??1APPB@@UAE@XZ 0042a230 f appb.obj - 0001:00029270 ?Run@APPB@@UAEXKKJ@Z 0042a270 f appb.obj - 0001:000292f0 ?Quit@APPB@@UAEXH@Z 0042a2f0 f appb.obj - 0001:00029390 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 0042a390 f appb.obj - 0001:00029440 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 0042a440 f appb.obj - 0001:000295a0 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 0042a5a0 f appb.obj - 0001:000296c0 ?RefreshCurs@APPB@@UAEXXZ 0042a6c0 f appb.obj - 0001:00029770 ?BeginLongOp@APPB@@UAEXXZ 0042a770 f appb.obj - 0001:000297e0 ?EndLongOp@APPB@@UAEXH@Z 0042a7e0 f appb.obj - 0001:00029880 ?GrfcustCur@APPB@@UAEKH@Z 0042a880 f appb.obj - 0001:00029950 ?ModifyGrfcust@APPB@@UAEXKK@Z 0042a950 f appb.obj - 0001:000299c0 ?HideCurs@APPB@@UAEXXZ 0042a9c0 f appb.obj - 0001:00029a10 ?ShowCurs@APPB@@UAEXXZ 0042aa10 f appb.obj - 0001:00029a60 ?PositionCurs@APPB@@UAEXJJ@Z 0042aa60 f appb.obj - 0001:00029ac0 ?OnnDefVariable@APPB@@UAEJXZ 0042aac0 f appb.obj - 0001:00029b80 ?OnnDefFixed@APPB@@UAEJXZ 0042ab80 f appb.obj - 0001:00029ca0 ?DypTextDef@APPB@@UAEJXZ 0042aca0 f appb.obj - 0001:00029cf0 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 0042acf0 f appb.obj - 0001:00029d60 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 0042ad60 f appb.obj - 0001:00029dd0 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 0042add0 f appb.obj - 0001:0002a110 ??0PT@@QAE@XZ 0042b110 f appb.obj - 0001:0002a130 ?_TakeDownToolTip@APPB@@IAEXXZ 0042b130 f appb.obj - 0001:0002a200 ?_EnsureToolTip@APPB@@IAEXXZ 0042b200 f appb.obj - 0001:0002a320 ?ResetToolTip@APPB@@UAEXXZ 0042b320 f appb.obj - 0001:0002a380 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 0042b380 f appb.obj - 0001:0002a4b0 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 0042b4b0 f appb.obj - 0001:0002a520 ?_FInit@APPB@@MAEHKKJ@Z 0042b520 f appb.obj - 0001:0002a690 ?_FInitSound@APPB@@MAEHJ@Z 0042b690 f appb.obj - 0001:0002a7b0 ?_FInitMenu@APPB@@MAEHXZ 0042b7b0 f appb.obj - 0001:0002a820 ?_Loop@APPB@@MAEXXZ 0042b820 f appb.obj - 0001:0002a970 ?_CleanUp@APPB@@MAEXXZ 0042b970 f appb.obj - 0001:0002aa20 ?_Activate@APPB@@MAEXH@Z 0042ba20 f appb.obj - 0001:0002aac0 ?TopOfLoop@APPB@@UAEXXZ 0042bac0 f appb.obj - 0001:0002abb0 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 0042bbb0 f appb.obj - 0001:0002ad60 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 0042bd60 f appb.obj - 0001:0002ae10 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 0042be10 f appb.obj - 0001:0002af90 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0042bf90 f appb.obj - 0001:0002b050 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0042c050 f appb.obj - 0001:0002b140 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 0042c140 f appb.obj - 0001:0002b4c0 ??0RC@@QAE@XZ 0042c4c0 f appb.obj - 0001:0002b4e0 ?PtTopLeft@RC@@QAE?AVPT@@XZ 0042c4e0 f appb.obj - 0001:0002b520 ??0PT@@QAE@JJ@Z 0042c520 f appb.obj - 0001:0002b560 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0042c560 f appb.obj - 0001:0002b620 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0042c620 f appb.obj - 0001:0002b710 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 0042c710 f appb.obj - 0001:0002b9c0 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 0042c9c0 f appb.obj - 0001:0002bad0 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 0042cad0 f appb.obj - 0001:0002bc30 ?UpdateMarked@APPB@@UAEXXZ 0042cc30 f appb.obj - 0001:0002bd00 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0042cd00 f appb.obj - 0001:0002bfc0 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 0042cfc0 f appb.obj - 0001:0002c100 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 0042d100 f appb.obj - 0001:0002c3e0 ?SwHigh@@YGFJ@Z 0042d3e0 f appb.obj - 0001:0002c400 ?SwLow@@YGFJ@Z 0042d400 f appb.obj - 0001:0002c420 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 0042d420 f appb.obj - 0001:0002c590 ?Set@RC@@QAEXJJJJ@Z 0042d590 f appb.obj - 0001:0002c5e0 ?TsCurrent@@YGKXZ 0042d5e0 f appb.obj - 0001:0002c600 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 0042d600 f appb.obj - 0001:0002c790 ?OnnSystem@NTL@@QAEJXZ 0042d790 f appb.obj - 0001:0002c7c0 ??0ACR@@QAE@XZ 0042d7c0 f appb.obj - 0001:0002c7f0 ?_FSetProp@APPB@@IAEHJJ@Z 0042d7f0 f appb.obj - 0001:0002c930 ?FSetProp@APPB@@UAEHJJ@Z 0042d930 f appb.obj - 0001:0002cc90 ??0ACR@@QAE@EEE@Z 0042dc90 f appb.obj - 0001:0002ccd0 ??0ACR@@QAE@HH@Z 0042dcd0 f appb.obj - 0001:0002cd20 ?FGetProp@APPB@@UAEHJPAJ@Z 0042dd20 f appb.obj - 0001:0002ce60 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 0042de60 f appb.obj - 0001:0002d0a0 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 0042e0a0 f appb.obj - 0001:0002d2b0 ?LuScale@USAC@@QAEKXZ 0042e2b0 f appb.obj - 0001:0002d2e0 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 0042e2e0 f appb.obj - 0001:0002d310 ?FModalLoop@APPB@@UAEHPAJ@Z 0042e310 f appb.obj - 0001:0002d400 ?InvalHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 0042e400 f appb.obj - 0001:0002d430 ?EndModal@APPB@@UAEXJ@Z 0042e430 f appb.obj - 0001:0002d4a0 ?PopModal@APPB@@UAEXXZ 0042e4a0 f appb.obj - 0001:0002d640 ?PgobScreen@GOB@@SGPAV1@XZ 0042e640 f appb.obj - 0001:0002d660 ?Hwnd@GOB@@QAEPAUHWND__@@XZ 0042e660 f appb.obj - 0001:0002d690 ?Pgpt@GOB@@QAEPAVGPT@@XZ 0042e690 f appb.obj - 0001:0002d6c0 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 0042e6c0 f appb.obj - 0001:0002d750 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 0042e750 f appb.obj - 0001:0002d890 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 0042e890 f appb.obj - 0001:0002d950 ?FAllowScreenSaver@APPB@@UAEHXZ 0042e950 f appb.obj - 0001:0002d9a0 ?AssertValid@APPB@@QAEXK@Z 0042e9a0 f appb.obj - 0001:0002db60 ?MarkMem@APPB@@UAEXXZ 0042eb60 f appb.obj - 0001:0002de00 ?FAssertProc@@YGHPADJ0PAXJ@Z 0042ee00 f appb.obj - 0001:0002de50 ?WarnProc@@YGXPADJ0@Z 0042ee50 f appb.obj - 0001:0002dec0 ?WarnProcApp@APPB@@UAEXPADJ0@Z 0042eec0 f appb.obj - 0001:0002e150 ??_GAPPB@@UAEPAXI@Z 0042f150 f appb.obj - 0001:0002e150 ??_EAPPB@@UAEPAXI@Z 0042f150 f appb.obj - 0001:0002e190 ??1GTE@@UAE@XZ 0042f190 f appb.obj - 0001:0002e1c0 ??_9@$BMA@A 0042f1c0 f appb.obj - 0001:0002e1d0 ??_9@$BBCE@A 0042f1d0 f appb.obj - 0001:0002e1e0 ??_9@$BME@A 0042f1e0 f appb.obj - 0001:0002e1f0 ??_9@$BMI@A 0042f1f0 f appb.obj - 0001:0002e200 ??_9@$BMM@A 0042f200 f appb.obj - 0001:0002e210 ??_9@$BNA@A 0042f210 f appb.obj - 0001:0002e220 ?FWouldBe@CLOK@@SGHJ@Z 0042f220 f clok.obj - 0001:0002e260 ?FIs@CLOK@@UAEHJ@Z 0042f260 f clok.obj - 0001:0002e290 ?Cls@CLOK@@UAEJXZ 0042f290 f clok.obj - 0001:0002e2e0 ??0CLOK@@QAE@JK@Z 0042f2e0 f clok.obj - 0001:0002e3a0 ??1CLOK@@UAE@XZ 0042f3a0 f clok.obj - 0001:0002e480 ?PclokFromHid@CLOK@@SGPAV1@J@Z 0042f480 f clok.obj - 0001:0002e530 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 0042f530 f clok.obj - 0001:0002e580 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 0042f580 f clok.obj - 0001:0002e660 ?Start@CLOK@@QAEXK@Z 0042f660 f clok.obj - 0001:0002e710 ?Stop@CLOK@@QAEXXZ 0042f710 f clok.obj - 0001:0002e770 ?TimCur@CLOK@@QAEKH@Z 0042f770 f clok.obj - 0001:0002e7f0 ?FSetAlarm@CLOK@@QAEHJPAVCMH@@JH@Z 0042f7f0 f clok.obj - 0001:0002e980 ?FCmdAll@CLOK@@UAEHPAUCMD@@@Z 0042f980 f clok.obj - 0001:0002eca0 ?AssertValid@CLOK@@QAEXK@Z 0042fca0 f clok.obj - 0001:0002ed90 ?MarkMem@CLOK@@UAEXXZ 0042fd90 f clok.obj - 0001:0002ede0 ?MarkAllCloks@CLOK@@SGXXZ 0042fde0 f clok.obj - 0001:0002eeb0 ??_GCLOK@@UAEPAXI@Z 0042feb0 f clok.obj - 0001:0002eeb0 ??_ECLOK@@UAEPAXI@Z 0042feb0 f clok.obj - 0001:0002eef0 ??_9@$BCI@A 0042fef0 f clok.obj - 0001:0002f010 ?Hid@CMH@@QAEJXZ 00430010 f clok.obj - 0001:0002f040 ?Pcmm@CLOK@@MAEPAUCMM@CMH@@XZ 00430040 f clok.obj - 0001:0002f070 ?FWouldBe@CMH@@SGHJ@Z 00430070 f cmd.obj - 0001:0002f0b0 ?FIs@CMH@@UAEHJ@Z 004300b0 f cmd.obj - 0001:0002f0e0 ?Cls@CMH@@UAEJXZ 004300e0 f cmd.obj - 0001:0002f110 ?FWouldBe@CEX@@SGHJ@Z 00430110 f cmd.obj - 0001:0002f150 ?FIs@CEX@@UAEHJ@Z 00430150 f cmd.obj - 0001:0002f180 ?Cls@CEX@@UAEJXZ 00430180 f cmd.obj - 0001:0002f1b0 ?AssertValid@CMD@@QAEXK@Z 004301b0 f cmd.obj - 0001:0002f250 ?HidUnique@CMH@@SGJJ@Z 00430250 f cmd.obj - 0001:0002f310 ??0CMH@@QAE@J@Z 00430310 f cmd.obj - 0001:0002f3b0 ??1CMH@@UAE@XZ 004303b0 f cmd.obj - 0001:0002f430 ?AssertValid@CMH@@QAEXK@Z 00430430 f cmd.obj - 0001:0002f490 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 00430490 f cmd.obj - 0001:0002f630 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 00430630 f cmd.obj - 0001:0002f750 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 00430750 f cmd.obj - 0001:0002f8c0 ??0CEX@@IAE@XZ 004308c0 f cmd.obj - 0001:0002f920 ??1CEX@@UAE@XZ 00430920 f cmd.obj - 0001:0002fac0 ?PcexNew@CEX@@SGPAV1@JJ@Z 00430ac0 f cmd.obj - 0001:0002fbc0 ?_FInit@CEX@@MAEHJJ@Z 00430bc0 f cmd.obj - 0001:0002fca0 ?StopRecording@CEX@@QAEXXZ 00430ca0 f cmd.obj - 0001:0002fee0 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00430ee0 f cmd.obj - 0001:00030220 ?StopPlaying@CEX@@QAEXXZ 00431220 f cmd.obj - 0001:00030340 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 00431340 f cmd.obj - 0001:000306c0 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 004316c0 f cmd.obj - 0001:00030790 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 00431790 f cmd.obj - 0001:000308f0 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 004318f0 f cmd.obj - 0001:00030a40 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 00431a40 f cmd.obj - 0001:00030c40 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 00431c40 f cmd.obj - 0001:00030d40 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00431d40 f cmd.obj - 0001:00030e30 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00431e30 f cmd.obj - 0001:00030f20 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 00431f20 f cmd.obj - 0001:000310a0 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 004320a0 f cmd.obj - 0001:00031220 ?FCidIn@CEX@@UAEHJ@Z 00432220 f cmd.obj - 0001:000312f0 ?FlushCid@CEX@@UAEXJ@Z 004322f0 f cmd.obj - 0001:000313f0 ?FEnqueue@GL@@QAEHPAX@Z 004323f0 f cmd.obj - 0001:00031420 ?_TGetNextCmd@CEX@@MAEHXZ 00432420 f cmd.obj - 0001:00031700 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 00432700 f cmd.obj - 0001:000317b0 ?_CleanUpCmd@CEX@@MAEXXZ 004327b0 f cmd.obj - 0001:000318e0 ?FDispatchNextCmd@CEX@@UAEHXZ 004328e0 f cmd.obj - 0001:00031b10 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00432b10 f cmd.obj - 0001:00031c30 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00432c30 f cmd.obj - 0001:00031e80 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 00432e80 f cmd.obj - 0001:00031fa0 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 00432fa0 f cmd.obj - 0001:000320d0 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 004330d0 f cmd.obj - 0001:000321d0 ?EndMouseTracking@CEX@@UAEXXZ 004331d0 f cmd.obj - 0001:00032260 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 00433260 f cmd.obj - 0001:000322b0 ?Suspend@CEX@@UAEXH@Z 004332b0 f cmd.obj - 0001:00032480 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 00433480 f cmd.obj - 0001:00032510 ?AssertValid@CEX@@QAEXK@Z 00433510 f cmd.obj - 0001:000326b0 ?MarkMem@CEX@@UAEXXZ 004336b0 f cmd.obj - 0001:000327f0 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 004337f0 f cmd.obj - 0001:00032820 ?FForeground@APPB@@QAEHXZ 00433820 f cmd.obj - 0001:00032850 ?PgobPar@GOB@@QAEPAV1@XZ 00433850 f cmd.obj - 0001:00032880 ??_ECMH@@UAEPAXI@Z 00433880 f cmd.obj - 0001:00032880 ??_GCMH@@UAEPAXI@Z 00433880 f cmd.obj - 0001:000328c0 ??_ECEX@@UAEPAXI@Z 004338c0 f cmd.obj - 0001:000328c0 ??_GCEX@@UAEPAXI@Z 004338c0 f cmd.obj - 0001:00032900 ?FWouldBe@CURS@@SGHJ@Z 00433900 f cursor.obj - 0001:00032940 ?FIs@CURS@@UAEHJ@Z 00433940 f cursor.obj - 0001:00032970 ?Cls@CURS@@UAEJXZ 00433970 f cursor.obj - 0001:000329a0 ??1CURS@@MAE@XZ 004339a0 f cursor.obj - 0001:000329f0 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004339f0 f cursor.obj - 0001:00032e40 ?Set@CURS@@QAEXXZ 00433e40 f cursor.obj - 0001:00032e90 ??_ECURS@@MAEPAXI@Z 00433e90 f cursor.obj - 0001:00032e90 ??_GCURS@@MAEPAXI@Z 00433e90 f cursor.obj - 0001:00032fe0 ??0CURS@@IAE@XZ 00433fe0 f cursor.obj - 0001:00033040 ?FWouldBe@GNV@@SGHJ@Z 00434040 f gfx.obj - 0001:00033080 ?FIs@GNV@@UAEHJ@Z 00434080 f gfx.obj - 0001:000330b0 ?Cls@GNV@@UAEJXZ 004340b0 f gfx.obj - 0001:000330e0 ?FWouldBe@GPT@@SGHJ@Z 004340e0 f gfx.obj - 0001:00033120 ?FIs@GPT@@UAEHJ@Z 00434120 f gfx.obj - 0001:00033150 ?Cls@GPT@@UAEJXZ 00434150 f gfx.obj - 0001:00033180 ?FWouldBe@NTL@@SGHJ@Z 00434180 f gfx.obj - 0001:000331c0 ?FIs@NTL@@UAEHJ@Z 004341c0 f gfx.obj - 0001:000331f0 ?Cls@NTL@@UAEJXZ 004341f0 f gfx.obj - 0001:00033220 ?SetFromLw@ACR@@QAEXJ@Z 00434220 f gfx.obj - 0001:00033270 ?LwGet@ACR@@QBEJXZ 00434270 f gfx.obj - 0001:000332a0 ?GetClr@ACR@@QAEXPAUCLR@@@Z 004342a0 f gfx.obj - 0001:00033330 ?AssertValid@ACR@@QAEXK@Z 00434330 f gfx.obj - 0001:00033580 ?MoveOrigin@APT@@QAEXJJ@Z 00434580 f gfx.obj - 0001:00033630 ??0GNV@@QAE@PAVGPT@@@Z 00434630 f gfx.obj - 0001:00033720 ??0GNV@@QAE@PAVGOB@@@Z 00434720 f gfx.obj - 0001:00033820 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 00434820 f gfx.obj - 0001:00033980 ??1GNV@@UAE@XZ 00434980 f gfx.obj - 0001:00033a10 ?_Init@GNV@@AAEXPAVGPT@@@Z 00434a10 f gfx.obj - 0001:00033b20 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 00434b20 f gfx.obj - 0001:00033ba0 ?AssertValid@GNV@@QAEXK@Z 00434ba0 f gfx.obj - 0001:00033d60 ?Max@RC@@QAEXXZ 00434d60 f gfx.obj - 0001:00033dc0 ?MarkMem@GNV@@UAEXXZ 00434dc0 f gfx.obj - 0001:00033e10 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00434e10 f gfx.obj - 0001:00033fa0 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 00434fa0 f gfx.obj - 0001:00034090 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00435090 f gfx.obj - 0001:00034240 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 00435240 f gfx.obj - 0001:00034350 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 00435350 f gfx.obj - 0001:000343e0 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 004353e0 f gfx.obj - 0001:00034510 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 00435510 f gfx.obj - 0001:00034680 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 00435680 f gfx.obj - 0001:00034700 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 00435700 f gfx.obj - 0001:000347d0 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 004357d0 f gfx.obj - 0001:00034950 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 00435950 f gfx.obj - 0001:00034a70 ?IntersectRcVis@GNV@@QAEXPAVRC@@@Z 00435a70 f gfx.obj - 0001:00034b70 ?ClipRc@GNV@@QAEXPAVRC@@@Z 00435b70 f gfx.obj - 0001:00034cb0 ?SetPenSize@GNV@@QAEXJJ@Z 00435cb0 f gfx.obj - 0001:00034d70 ?SetFont@GNV@@QAEXJKJJJ@Z 00435d70 f gfx.obj - 0001:00034f40 ?SetOnn@GNV@@QAEXJ@Z 00435f40 f gfx.obj - 0001:00034fc0 ?SetFontAlign@GNV@@QAEXJJ@Z 00435fc0 f gfx.obj - 0001:00035050 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 00436050 f gfx.obj - 0001:000351c0 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 004361c0 f gfx.obj - 0001:00035340 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 00436340 f gfx.obj - 0001:00035410 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 00436410 f gfx.obj - 0001:00035520 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 00436520 f gfx.obj - 0001:000356c0 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 004366c0 f gfx.obj - 0001:000358d0 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 004368d0 f gfx.obj - 0001:000359d0 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 004369d0 f gfx.obj - 0001:00035e50 ??8ACR@@QBEHABV0@@Z 00436e50 f gfx.obj - 0001:00035e90 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00436e90 f gfx.obj - 0001:00036400 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00437400 f gfx.obj - 0001:00036df0 ??9ACR@@QBEHABV0@@Z 00437df0 f gfx.obj - 0001:00036e30 ?Pgpt@GNV@@QAEPAVGPT@@XZ 00437e30 f gfx.obj - 0001:00036e60 ?_LwNextDissolve@@YGJJ@Z 00437e60 f gfx.obj - 0001:00036ee0 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00437ee0 f gfx.obj - 0001:00037230 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00438230 f gfx.obj - 0001:00037870 ??YPT@@QAEAAV0@AAV0@@Z 00438870 f gfx.obj - 0001:000378b0 ?DrawPic@GNV@@QAEXPAVPIC@@PAVRC@@@Z 004388b0 f gfx.obj - 0001:000379a0 ?DrawMbmp@GNV@@QAEXPAVMBMP@@PAVRC@@@Z 004389a0 f gfx.obj - 0001:00037a90 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 00438a90 f gfx.obj - 0001:00037b80 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 00438b80 f gfx.obj - 0001:00037c20 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 00438c20 f gfx.obj - 0001:00037d10 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00438d10 f gfx.obj - 0001:00037d80 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 00438d80 f gfx.obj - 0001:00037df0 ?MarkMem@GPT@@UAEXXZ 00438df0 f gfx.obj - 0001:00037e40 ?AssertValid@DSF@@QAEXK@Z 00438e40 f gfx.obj - 0001:00037ef0 ?FInitGfx@@YGHXZ 00438ef0 f gfx.obj - 0001:00037f10 ??0NTL@@QAE@XZ 00438f10 f gfx.obj - 0001:00037f50 ??1NTL@@UAE@XZ 00438f50 f gfx.obj - 0001:00037fb0 ?AssertValid@NTL@@QAEXK@Z 00438fb0 f gfx.obj - 0001:00038040 ?MarkMem@NTL@@UAEXXZ 00439040 f gfx.obj - 0001:00038090 ?FValidOnn@NTL@@QAEHJ@Z 00439090 f gfx.obj - 0001:000380f0 ?IstnMac@GSTB@@QAEJXZ 004390f0 f gfx.obj - 0001:00038120 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 00439120 f gfx.obj - 0001:000381e0 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 004391e0 f gfx.obj - 0001:000382a0 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 004392a0 f gfx.obj - 0001:00038370 ?OnnMac@NTL@@QAEJXZ 00439370 f gfx.obj - 0001:000383c0 ??8PT@@QAEHAAV0@@Z 004393c0 f gfx.obj - 0001:00038410 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00439410 f gfx.obj - 0001:000388e0 ??0RC@@QAE@JJJJ@Z 004398e0 f gfx.obj - 0001:00038930 ?ScanNext@REGSC@@QAEXJ@Z 00439930 f gfx.obj - 0001:000389a0 ?XpFetch@REGSC@@QAEJXZ 004399a0 f gfx.obj - 0001:00038ad0 ?XpCur@REGSC@@QAEJXZ 00439ad0 f gfx.obj - 0001:00038b00 ?DypCur@REGSC@@QAEJXZ 00439b00 f gfx.obj - 0001:00038b30 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00439b30 f gfx.obj - 0001:00039010 ??_EGNV@@UAEPAXI@Z 0043a010 f gfx.obj - 0001:00039010 ??_GGNV@@UAEPAXI@Z 0043a010 f gfx.obj - 0001:00039050 ??0GDD@@QAE@XZ 0043a050 f gfx.obj - 0001:00039090 ??_GNTL@@UAEPAXI@Z 0043a090 f gfx.obj - 0001:00039090 ??_ENTL@@UAEPAXI@Z 0043a090 f gfx.obj - 0001:000390d0 ??1GL@@UAE@XZ 0043a0d0 f gfx.obj - 0001:00039100 ??1GLB@@UAE@XZ 0043a100 f gfx.obj - 0001:00039130 ?FWouldBe@GOB@@SGHJ@Z 0043a130 f gob.obj - 0001:00039170 ?FIs@GOB@@UAEHJ@Z 0043a170 f gob.obj - 0001:000391a0 ?Cls@GOB@@UAEJXZ 0043a1a0 f gob.obj - 0001:000391d0 ?FWouldBe@GTE@@SGHJ@Z 0043a1d0 f gob.obj - 0001:00039210 ?FIs@GTE@@UAEHJ@Z 0043a210 f gob.obj - 0001:00039240 ?Cls@GTE@@UAEJXZ 0043a240 f gob.obj - 0001:00039270 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 0043a270 f gob.obj - 0001:00039390 ?ShutDown@GOB@@SGXXZ 0043a390 f gob.obj - 0001:000393d0 ??0GOB@@QAE@PAUGCB@@@Z 0043a3d0 f gob.obj - 0001:00039450 ?_Init@GOB@@IAEXPAUGCB@@@Z 0043a450 f gob.obj - 0001:000396f0 ??0GOB@@QAE@J@Z 0043a6f0 f gob.obj - 0001:00039780 ?Release@GOB@@UAEXXZ 0043a780 f gob.obj - 0001:00039880 ??1GOB@@MAE@XZ 0043a880 f gob.obj - 0001:00039a80 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 0043aa80 f gob.obj - 0001:00039b30 ?BringToFront@GOB@@QAEXXZ 0043ab30 f gob.obj - 0001:00039b80 ?SendBehind@GOB@@QAEXPAV1@@Z 0043ab80 f gob.obj - 0001:00039dd0 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 0043add0 f gob.obj - 0001:00039fe0 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 0043afe0 f gob.obj - 0001:0003a170 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 0043b170 f gob.obj - 0001:0003a370 ?Offset@PT@@QAEXJJ@Z 0043b370 f gob.obj - 0001:0003a3a0 ??0RC@@QAE@AAUtagRECT@@@Z 0043b3a0 f gob.obj - 0001:0003a3d0 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 0043b3d0 f gob.obj - 0001:0003a950 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 0043b950 f gob.obj - 0001:0003ae70 ??HRC@@QAE?AV0@AAVPT@@@Z 0043be70 f gob.obj - 0001:0003aed0 ??GRC@@QAE?AV0@AAVPT@@@Z 0043bed0 f gob.obj - 0001:0003af30 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 0043bf30 f gob.obj - 0001:0003b5c0 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 0043c5c0 f gob.obj - 0001:0003b610 ?Maximize@GOB@@UAEXXZ 0043c610 f gob.obj - 0001:0003b6a0 ?SetPos@GOB@@QAEXPAVRC@@0@Z 0043c6a0 f gob.obj - 0001:0003b780 ?GetPos@GOB@@QAEXPAVRC@@0@Z 0043c780 f gob.obj - 0001:0003b830 ?SetRcFromHwnd@GOB@@QAEXXZ 0043c830 f gob.obj - 0001:0003b8c0 ?GetRc@GOB@@QAEXPAVRC@@J@Z 0043c8c0 f gob.obj - 0001:0003b970 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 0043c970 f gob.obj - 0001:0003ba20 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 0043ca20 f gob.obj - 0001:0003baa0 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 0043caa0 f gob.obj - 0001:0003bb20 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 0043cb20 f gob.obj - 0001:0003bbd0 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 0043cbd0 f gob.obj - 0001:0003bdd0 ??0PT@@QAE@AAUtagPOINT@@@Z 0043cdd0 f gob.obj - 0001:0003be00 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 0043ce00 f gob.obj - 0001:0003be50 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 0043ce50 f gob.obj - 0001:0003bf00 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 0043cf00 f gob.obj - 0001:0003c010 ?FPtIn@GOB@@UAEHJJ@Z 0043d010 f gob.obj - 0001:0003c0a0 ?FPtInBounds@GOB@@UAEHJJ@Z 0043d0a0 f gob.obj - 0001:0003c130 ?MouseDown@GOB@@UAEXJJJK@Z 0043d130 f gob.obj - 0001:0003c240 ?_SetRcCur@GOB@@AAEXXZ 0043d240 f gob.obj - 0001:0003c460 ?PgobPrevSib@GOB@@QAEPAV1@XZ 0043d460 f gob.obj - 0001:0003c560 ?PgobLastChild@GOB@@QAEPAV1@XZ 0043d560 f gob.obj - 0001:0003c600 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 0043d600 f gob.obj - 0001:0003c720 ?PgobMdiActive@GOB@@SGPAV1@XZ 0043d720 f gob.obj - 0001:0003c760 ?PgobFromCls@GOB@@QAEPAV1@J@Z 0043d760 f gob.obj - 0001:0003c820 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 0043d820 f gob.obj - 0001:0003c8b0 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 0043d8b0 f gob.obj - 0001:0003c920 ?PgobFromHid@GOB@@QAEPAV1@J@Z 0043d920 f gob.obj - 0001:0003caf0 ?PgobFromGrid@GOB@@QAEPAV1@J@Z 0043daf0 f gob.obj - 0001:0003cbb0 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 0043dbb0 f gob.obj - 0001:0003cc10 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 0043dc10 f gob.obj - 0001:0003cc60 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 0043dc60 f gob.obj - 0001:0003cc90 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 0043dc90 f gob.obj - 0001:0003ccc0 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 0043dcc0 f gob.obj - 0001:0003cd20 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 0043dd20 f gob.obj - 0001:0003cd80 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 0043dd80 f gob.obj - 0001:0003ce00 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 0043de00 f gob.obj - 0001:0003d350 ??ZPT@@QAEAAV0@AAV0@@Z 0043e350 f gob.obj - 0001:0003d390 ??YRC@@QAEAAV0@AAVPT@@@Z 0043e390 f gob.obj - 0001:0003d3e0 ?ValidHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 0043e3e0 f gob.obj - 0001:0003d400 ??0GCB@@QAE@JPAVGOB@@KJPAVRC@@1@Z 0043e400 f gob.obj - 0001:0003d460 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 0043e460 f gob.obj - 0001:0003d490 ?_NewRc@GOB@@MAEXXZ 0043e490 f gob.obj - 0001:0003d4b0 ?_ActivateHwnd@GOB@@MAEXH@Z 0043e4b0 f gob.obj - 0001:0003d4d0 ?Grid@GOB@@QAEJXZ 0043e4d0 f gob.obj - 0001:0003d500 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 0043e500 f gob.obj - 0001:0003d530 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 0043e530 f gob.obj - 0001:0003d560 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 0043e560 f gob.obj - 0001:0003d590 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 0043e590 f gob.obj - 0001:0003d5c0 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 0043e5c0 f gob.obj - 0001:0003d610 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 0043e610 f gob.obj - 0001:0003d6a0 ?LwState@GOB@@UAEJXZ 0043e6a0 f gob.obj - 0001:0003d6f0 ?AssertValid@GOB@@QAEXK@Z 0043e6f0 f gob.obj - 0001:0003d7e0 ?MarkMem@GOB@@UAEXXZ 0043e7e0 f gob.obj - 0001:0003d850 ?MarkGobTree@GOB@@QAEXXZ 0043e850 f gob.obj - 0001:0003d8c0 ??0GTE@@QAE@XZ 0043e8c0 f gob.obj - 0001:0003d900 ?Init@GTE@@QAEXPAVGOB@@K@Z 0043e900 f gob.obj - 0001:0003d980 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 0043e980 f gob.obj - 0001:0003db80 ??_GGOB@@MAEPAXI@Z 0043eb80 f gob.obj - 0001:0003db80 ??_EGOB@@MAEPAXI@Z 0043eb80 f gob.obj - 0001:0003dbc0 ??_GGTE@@UAEPAXI@Z 0043ebc0 f gob.obj - 0001:0003dbc0 ??_EGTE@@UAEPAXI@Z 0043ebc0 f gob.obj - 0001:0003dc00 ??_9@$BGA@A 0043ec00 f gob.obj - 0001:0003dc10 ??_9@$BHE@A 0043ec10 f gob.obj - 0001:0003dc20 ??_9@$BHI@A 0043ec20 f gob.obj - 0001:0003dc30 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 0043ec30 f mbmpgui.obj - 0001:0003e0f0 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 0043f0f0 f mbmpgui.obj - 0001:0003e580 ?_Qrgcb@MBMP@@IAEPAFXZ 0043f580 f mbmpgui.obj - 0001:0003e5c0 ?_Qmbmph@MBMP@@IAEPAUMBMPH@1@XZ 0043f5c0 f mbmpgui.obj - 0001:0003e700 ?FWouldBe@REGN@@SGHJ@Z 0043f700 f region.obj - 0001:0003e740 ?FIs@REGN@@UAEHJ@Z 0043f740 f region.obj - 0001:0003e770 ?Cls@REGN@@UAEJXZ 0043f770 f region.obj - 0001:0003e7a0 ?FWouldBe@REGSC@@SGHJ@Z 0043f7a0 f region.obj - 0001:0003e7e0 ?FIs@REGSC@@UAEHJ@Z 0043f7e0 f region.obj - 0001:0003e810 ?Cls@REGSC@@UAEJXZ 0043f810 f region.obj - 0001:0003e840 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 0043f840 f region.obj - 0001:0003ea10 ?FStartRow@REGBL@@QAEHJJ@Z 0043fa10 f region.obj - 0001:0003ec20 ?EndRow@REGBL@@QAEXXZ 0043fc20 f region.obj - 0001:0003ee10 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 0043fe10 f region.obj - 0001:0003f070 ??0REGSC@@QAE@XZ 00440070 f region.obj - 0001:0003f0b0 ??1REGSC@@UAE@XZ 004400b0 f region.obj - 0001:0003f0f0 ?Free@REGSC@@QAEXXZ 004400f0 f region.obj - 0001:0003f160 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 00440160 f region.obj - 0001:0003f1d0 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 004401d0 f region.obj - 0001:0003f210 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 00440210 f region.obj - 0001:0003f370 ?_ScanNextCore@REGSC@@IAEXXZ 00440370 f region.obj - 0001:0003f870 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 00440870 f region.obj - 0001:0003f960 ??1REGN@@UAE@XZ 00440960 f region.obj - 0001:0003f9d0 ?SetRc@REGN@@QAEXPAVRC@@@Z 004409d0 f region.obj - 0001:0003fad0 ?Offset@REGN@@QAEXJJ@Z 00440ad0 f region.obj - 0001:0003fb40 ?FEmpty@REGN@@QAEHPAVRC@@@Z 00440b40 f region.obj - 0001:0003fbd0 ?FIsRc@REGN@@QAEHPAVRC@@@Z 00440bd0 f region.obj - 0001:0003fc60 ??0REGBL@@QAE@XZ 00440c60 f region.obj - 0001:0003fcc0 ??1REGBL@@UAE@XZ 00440cc0 f region.obj - 0001:0003fd20 ?AddXp@REGBL@@QAEXJ@Z 00440d20 f region.obj - 0001:0003fe40 ?FDone@REGBL@@QAEHXZ 00440e40 f region.obj - 0001:0003feb0 ??0RAT@@QAE@JJ@Z 00440eb0 f region.obj - 0001:0003fef0 ?Set@RAT@@QAEXJJ@Z 00440ef0 f region.obj - 0001:0003ff80 ?LwScale@RAT@@QAEJJ@Z 00440f80 f region.obj - 0001:0003ffd0 ?FUnion@REGN@@QAEHPAV1@0@Z 00440fd0 f region.obj - 0001:00040210 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 00441210 f region.obj - 0001:00040420 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00441420 f region.obj - 0001:000408b0 ?FIntersect@REGN@@QAEHPAV1@0@Z 004418b0 f region.obj - 0001:00040b20 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00441b20 f region.obj - 0001:00040f10 ?FDiff@REGN@@QAEHPAV1@0@Z 00441f10 f region.obj - 0001:00041140 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 00442140 f region.obj - 0001:00041330 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00442330 f region.obj - 0001:00041750 ??0REGN@@IAE@XZ 00442750 f region.obj - 0001:000417a0 ?FOn@REGSC@@QAEHXZ 004427a0 f region.obj - 0001:000417d0 ?CxpCur@REGSC@@QAEJXZ 004427d0 f region.obj - 0001:00041800 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 00442800 f region.obj - 0001:00041b60 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 00442b60 f region.obj - 0001:00041c10 ?AssertValid@REGN@@QAEXK@Z 00442c10 f region.obj - 0001:00041cf0 ?MarkMem@REGN@@UAEXXZ 00442cf0 f region.obj - 0001:00041d60 ??_GREGN@@UAEPAXI@Z 00442d60 f region.obj - 0001:00041d60 ??_EREGN@@UAEPAXI@Z 00442d60 f region.obj - 0001:00041da0 ??_EREGBL@@UAEPAXI@Z 00442da0 f region.obj - 0001:00041da0 ??_GREGBL@@UAEPAXI@Z 00442da0 f region.obj - 0001:00041de0 ??_EREGSC@@UAEPAXI@Z 00442de0 f region.obj - 0001:00041de0 ??_GREGSC@@UAEPAXI@Z 00442de0 f region.obj - 0001:00041e20 ?FWouldBe@PIC@@SGHJ@Z 00442e20 f pic.obj - 0001:00041e60 ?FIs@PIC@@UAEHJ@Z 00442e60 f pic.obj - 0001:00041e90 ?Cls@PIC@@UAEJXZ 00442e90 f pic.obj - 0001:00041ec0 ?GetRc@PIC@@QAEXPAVRC@@@Z 00442ec0 f pic.obj - 0001:00041f50 ?AssertValid@PIC@@QAEXK@Z 00442f50 f pic.obj - 0001:000420e0 _WinMain@16 004430e0 f appbwin.obj - 0001:00042130 ?Abort@APPB@@UAEXXZ 00443130 f appbwin.obj - 0001:00042170 ?_FInitOS@APPB@@MAEHXZ 00443170 f appbwin.obj - 0001:00042390 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 00443390 f appbwin.obj - 0001:00042450 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 00443450 f appbwin.obj - 0001:000425d0 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 004435d0 f appbwin.obj - 0001:00042740 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 00443740 f appbwin.obj - 0001:000428c0 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 004438c0 f appbwin.obj - 0001:00042a70 ?FlushUserEvents@APPB@@UAEXK@Z 00443a70 f appbwin.obj - 0001:00042b10 ?_ShutDownViewer@APPB@@IAEXXZ 00443b10 f appbwin.obj - 0001:00042b60 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00443b60 f appbwin.obj - 0001:00042c20 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00443c20 f appbwin.obj - 0001:000435a0 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 004445a0 f appbwin.obj - 0001:00043650 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00444650 f appbwin.obj - 0001:000437b0 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 004447b0 f appbwin.obj - 0001:00043ee0 ?_FInitDebug@APPB@@MAEHXZ 00444ee0 f appbwin.obj - 0001:00043f30 ?_FDlgAssert@@YGHPAUHWND__@@IIJ@Z 00444f30 f appbwin.obj - 0001:00044050 ?FAssertProcApp@APPB@@UAEHPADJ0PAXJ@Z 00445050 f appbwin.obj - 0001:000445d0 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 004455d0 f appbwin.obj - 0001:00044820 ?Cno@BACO@@QAEKXZ 00445820 f appbwin.obj - 0001:00044960 ?PgobFirstChild@GOB@@QAEPAV1@XZ 00445960 f appbwin.obj - 0001:00044990 ?PgobNextSib@GOB@@QAEPAV1@XZ 00445990 f appbwin.obj - 0001:000449c0 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 004459c0 f gfxwin.obj - 0001:00044a50 ?_Scr@ACR@@AAEKXZ 00445a50 f gfxwin.obj - 0001:00044b10 ?DrawDib@GNV@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAVRC@@@Z 00445b10 f gfxwin.obj - 0001:00044bb0 ?Flush@GPT@@SGXXZ 00445bb0 f gfxwin.obj - 0001:00044bd0 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 00445bd0 f gfxwin.obj - 0001:00045400 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 00446400 f gfxwin.obj - 0001:000454a0 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 004464a0 f gfxwin.obj - 0001:00045600 ?Fbit@@YGEJ@Z 00446600 f gfxwin.obj - 0001:00045620 ?IbFromIbit@@YGJJ@Z 00446620 f gfxwin.obj - 0001:00045640 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 00446640 f gfxwin.obj - 0001:00045750 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 00446750 f gfxwin.obj - 0001:00045880 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 00446880 f gfxwin.obj - 0001:00045a90 ??1GPT@@EAE@XZ 00446a90 f gfxwin.obj - 0001:00045c00 ?_Scr@GPT@@AAEKVACR@@@Z 00446c00 f gfxwin.obj - 0001:00045cf0 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 00446cf0 f gfxwin.obj - 0001:000462e0 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 004472e0 f gfxwin.obj - 0001:000463d0 ?CbRow@GPT@@QAEJXZ 004473d0 f gfxwin.obj - 0001:00046430 ?CbitPixel@GPT@@QAEJXZ 00447430 f gfxwin.obj - 0001:000464e0 ?Lock@GPT@@QAEXXZ 004474e0 f gfxwin.obj - 0001:00046530 ?Unlock@GPT@@QAEXXZ 00447530 f gfxwin.obj - 0001:000465a0 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 004475a0 f gfxwin.obj - 0001:00046630 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00447630 f gfxwin.obj - 0001:00046700 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 00447700 f gfxwin.obj - 0001:000468c0 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 004478c0 f gfxwin.obj - 0001:00046940 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 00447940 f gfxwin.obj - 0001:000469b0 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 004479b0 f gfxwin.obj - 0001:00046bf0 ?FMax@RC@@QAEHXZ 00447bf0 f gfxwin.obj - 0001:00046c70 ?_EnsurePalette@GPT@@AAEXXZ 00447c70 f gfxwin.obj - 0001:00046db0 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 00447db0 f gfxwin.obj - 0001:000470e0 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 004480e0 f gfxwin.obj - 0001:00047190 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 00448190 f gfxwin.obj - 0001:000474e0 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 004484e0 f gfxwin.obj - 0001:00047750 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 00448750 f gfxwin.obj - 0001:000478c0 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 004488c0 f gfxwin.obj - 0001:000479c0 ?_SetStockBrush@GPT@@AAEXH@Z 004489c0 f gfxwin.obj - 0001:00047ab0 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 00448ab0 f gfxwin.obj - 0001:00047dc0 ??8APT@@QAEHAAU0@@Z 00448dc0 f gfxwin.obj - 0001:00047e10 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 00448e10 f gfxwin.obj - 0001:00048430 ?FSolidFore@APT@@QAEHXZ 00449430 f gfxwin.obj - 0001:00048470 ?FSolidBack@APT@@QAEHXZ 00449470 f gfxwin.obj - 0001:000484b0 ?Invert@APT@@QAEXXZ 004494b0 f gfxwin.obj - 0001:000484f0 ??0GPT@@AAE@XZ 004494f0 f gfxwin.obj - 0001:00048550 ?DrawPic@GPT@@QAEXPAVPIC@@PAUtagRECT@@PAUGDD@@@Z 00449550 f gfxwin.obj - 0001:000486b0 ?Hpic@PIC@@QAEPAUHENHMETAFILE__@@XZ 004496b0 f gfxwin.obj - 0001:000486e0 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 004496e0 f gfxwin.obj - 0001:00048c10 ?DrawDib@GPT@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAUtagRECT@@PAUGDD@@@Z 00449c10 f gfxwin.obj - 0001:00048d20 ?AssertValid@GPT@@QAEXK@Z 00449d20 f gfxwin.obj - 0001:00048f00 ?MarkStaticMem@GPT@@SGXXZ 00449f00 f gfxwin.obj - 0001:00048f20 ?FInit@NTL@@QAEHXZ 00449f20 f gfxwin.obj - 0001:00049120 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 0044a120 f gfxwin.obj - 0001:00049230 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 0044a230 f gfxwin.obj - 0001:00049380 ?FFixedPitch@NTL@@QAEHJ@Z 0044a380 f gfxwin.obj - 0001:00049440 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 0044a440 f gfxwin.obj - 0001:000494e0 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 0044a4e0 f gfxwin.obj - 0001:00049540 ??_GGPT@@EAEPAXI@Z 0044a540 f gfxwin.obj - 0001:00049540 ??_EGPT@@EAEPAXI@Z 0044a540 f gfxwin.obj - 0001:00049580 ?FInitScreen@GOB@@SGHKJ@Z 0044a580 f gobwin.obj - 0001:00049690 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 0044a690 f gobwin.obj - 0001:00049740 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 0044a740 f gobwin.obj - 0001:00049800 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 0044a800 f gobwin.obj - 0001:00049840 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 0044a840 f gobwin.obj - 0001:00049a30 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 0044aa30 f gobwin.obj - 0001:00049af0 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 0044aaf0 f gobwin.obj - 0001:00049c20 ?Clean@GOB@@UAEXXZ 0044ac20 f gobwin.obj - 0001:00049d00 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 0044ad00 f gobwin.obj - 0001:00049db0 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 0044adb0 f gobwin.obj - 0001:00049f40 ?FWouldBe@MUB@@SGHJ@Z 0044af40 f menuwin.obj - 0001:00049f80 ?FIs@MUB@@UAEHJ@Z 0044af80 f menuwin.obj - 0001:00049fb0 ?Cls@MUB@@UAEJXZ 0044afb0 f menuwin.obj - 0001:00049fe0 ??1MUB@@UAE@XZ 0044afe0 f menuwin.obj - 0001:0004a030 ?PmubNew@MUB@@SGPAV1@K@Z 0044b030 f menuwin.obj - 0001:0004a140 ?Set@MUB@@UAEXXZ 0044b140 f menuwin.obj - 0001:0004a1e0 ?Clean@MUB@@UAEXXZ 0044b1e0 f menuwin.obj - 0001:0004a3e0 ?EnqueueWcid@MUB@@UAEXJ@Z 0044b3e0 f menuwin.obj - 0001:0004a430 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 0044b430 f menuwin.obj - 0001:0004a7a0 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 0044b7a0 f menuwin.obj - 0001:0004ac00 ?FRemoveAllListCid@MUB@@UAEHJ@Z 0044bc00 f menuwin.obj - 0001:0004aea0 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 0044bea0 f menuwin.obj - 0001:0004b100 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 0044c100 f menuwin.obj - 0001:0004b2a0 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 0044c2a0 f menuwin.obj - 0001:0004b3b0 ?_FInitLists@MUB@@AAEHXZ 0044c3b0 f menuwin.obj - 0001:0004b820 ?MarkMem@MUB@@UAEXXZ 0044c820 f menuwin.obj - 0001:0004b910 ??_GMUB@@UAEPAXI@Z 0044c910 f menuwin.obj - 0001:0004b910 ??_EMUB@@UAEPAXI@Z 0044c910 f menuwin.obj - 0001:0004ba60 ??0MUB@@IAE@XZ 0044ca60 f menuwin.obj - 0001:0004baa0 ??0PIC@@IAE@XZ 0044caa0 f picwin.obj - 0001:0004bb00 ??1PIC@@UAE@XZ 0044cb00 f picwin.obj - 0001:0004bb70 ?PpicRead@PIC@@SGPAV1@PAVBLCK@@@Z 0044cb70 f picwin.obj - 0001:0004bda0 ?CbOnFile@PIC@@UAEJXZ 0044cda0 f picwin.obj - 0001:0004be20 ?FWrite@PIC@@UAEHPAVBLCK@@@Z 0044ce20 f picwin.obj - 0001:0004bfc0 ?PpicReadNative@PIC@@SGPAV1@PAVFNI@@@Z 0044cfc0 f picwin.obj - 0001:0004c250 ?_HpicReadWmf@PIC@@KGPAUHENHMETAFILE__@@PAVFNI@@@Z 0044d250 f picwin.obj - 0001:0004c4a0 ??_EPIC@@UAEPAXI@Z 0044d4a0 f picwin.obj - 0001:0004c4a0 ??_GPIC@@UAEPAXI@Z 0044d4a0 f picwin.obj - 0001:0004c5f0 ?FWouldBe@GOKD@@SGHJ@Z 0044d5f0 f kidworld.obj - 0001:0004c630 ?FIs@GOKD@@UAEHJ@Z 0044d630 f kidworld.obj - 0001:0004c660 ?Cls@GOKD@@UAEJXZ 0044d660 f kidworld.obj - 0001:0004c690 ?FWouldBe@GKDS@@SGHJ@Z 0044d690 f kidworld.obj - 0001:0004c6d0 ?FIs@GKDS@@UAEHJ@Z 0044d6d0 f kidworld.obj - 0001:0004c700 ?Cls@GKDS@@UAEJXZ 0044d700 f kidworld.obj - 0001:0004c730 ?FWouldBe@WOKS@@SGHJ@Z 0044d730 f kidworld.obj - 0001:0004c770 ?FIs@WOKS@@UAEHJ@Z 0044d770 f kidworld.obj - 0001:0004c7a0 ?Cls@WOKS@@UAEJXZ 0044d7a0 f kidworld.obj - 0001:0004c7d0 ?FReadGkds@GKDS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0044d7d0 f kidworld.obj - 0001:0004caf0 ??1GKDS@@UAE@XZ 0044daf0 f kidworld.obj - 0001:0004cb30 ?AssertValid@GKDS@@QAEXK@Z 0044db30 f kidworld.obj - 0001:0004cc60 ?MarkMem@GKDS@@UAEXXZ 0044dc60 f kidworld.obj - 0001:0004cca0 ?Gokk@GKDS@@UAEJXZ 0044dca0 f kidworld.obj - 0001:0004ccf0 ?FGetCume@GKDS@@UAEHKJPAUCUME@@@Z 0044dcf0 f kidworld.obj - 0001:0004ce10 ?GetLop@GKDS@@UAEXJPAULOP@@@Z 0044de10 f kidworld.obj - 0001:0004cec0 ??0WOKS@@QAE@PAUGCB@@PAVSTRG@@@Z 0044dec0 f kidworld.obj - 0001:0004d030 ??1WOKS@@UAE@XZ 0044e030 f kidworld.obj - 0001:0004d0d0 ?CbRoundToLong@@YGJJ@Z 0044e0d0 f kidworld.obj - 0001:0004d0f0 ?AssertValid@WOKS@@QAEXK@Z 0044e0f0 f kidworld.obj - 0001:0004d180 ?MarkMem@WOKS@@UAEXXZ 0044e180 f kidworld.obj - 0001:0004d1d0 ?FGobIn@WOKS@@UAEHPAVGOB@@@Z 0044e1d0 f kidworld.obj - 0001:0004d2b0 ?PgokdFetch@WOKS@@UAEPAVGOKD@@KKPAVRCA@@@Z 0044e2b0 f kidworld.obj - 0001:0004d370 ?PgokNew@WOKS@@UAEPAVGOK@@PAVGOB@@JKPAVRCA@@@Z 0044e370 f kidworld.obj - 0001:0004d520 ?PscegNew@WOKS@@UAEPAVSCEG@@PAVRCA@@PAVGOB@@@Z 0044e520 f kidworld.obj - 0001:0004d660 ?PhbalNew@WOKS@@UAEPAVHBAL@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 0044e660 f kidworld.obj - 0001:0004d7c0 ?PcmhFromHid@WOKS@@UAEPAVCMH@@J@Z 0044e7c0 f kidworld.obj - 0001:0004d880 ?PclokFromHid@WOKS@@UAEPAVCLOK@@J@Z 0044e880 f kidworld.obj - 0001:0004d910 ?PgobParGob@WOKS@@UAEPAVGOB@@PAV2@@Z 0044e910 f kidworld.obj - 0001:0004d9f0 ?FFindFile@WOKS@@UAEHPAVSTN@@PAVFNI@@@Z 0044e9f0 f kidworld.obj - 0001:0004db00 ?TGiveAlert@WOKS@@UAEHPAVSTN@@JJ@Z 0044eb00 f kidworld.obj - 0001:0004db70 ?Print@WOKS@@UAEXPAVSTN@@@Z 0044eb70 f kidworld.obj - 0001:0004dc30 ?GrfcustCur@WOKS@@UAEKH@Z 0044ec30 f kidworld.obj - 0001:0004dca0 ?ModifyGrfcust@WOKS@@UAEXKK@Z 0044eca0 f kidworld.obj - 0001:0004dd20 ?GrfcustAdjust@WOKS@@UAEKK@Z 0044ed20 f kidworld.obj - 0001:0004dd90 ?FModalTopic@WOKS@@UAEHPAVRCA@@KPAJ@Z 0044ed90 f kidworld.obj - 0001:0004e0c0 ??_EGKDS@@UAEPAXI@Z 0044f0c0 f kidworld.obj - 0001:0004e0c0 ??_GGKDS@@UAEPAXI@Z 0044f0c0 f kidworld.obj - 0001:0004e100 ??1GOKD@@UAE@XZ 0044f100 f kidworld.obj - 0001:0004e130 ??_GWOKS@@UAEPAXI@Z 0044f130 f kidworld.obj - 0001:0004e130 ??_EWOKS@@UAEPAXI@Z 0044f130 f kidworld.obj - 0001:0004e280 ??0GCB@@QAE@XZ 0044f280 f kidworld.obj - 0001:0004e2c0 ??0GKDS@@IAE@XZ 0044f2c0 f kidworld.obj - 0001:0004e300 ??0GOKD@@IAE@XZ 0044f300 f kidworld.obj - 0001:0004e340 ??_GGOKD@@UAEPAXI@Z 0044f340 f kidworld.obj - 0001:0004e340 ??_EGOKD@@UAEPAXI@Z 0044f340 f kidworld.obj - 0001:0004e380 ?PclokAnim@WOKS@@UAEPAVCLOK@@XZ 0044f380 f kidworld.obj - 0001:0004e3b0 ?PclokNoSlip@WOKS@@UAEPAVCLOK@@XZ 0044f3b0 f kidworld.obj - 0001:0004e3e0 ?PclokGen@WOKS@@UAEPAVCLOK@@XZ 0044f3e0 f kidworld.obj - 0001:0004e410 ?PclokReset@WOKS@@UAEPAVCLOK@@XZ 0044f410 f kidworld.obj - 0001:0004e440 ?FWouldBe@TXHD@@SGHJ@Z 0044f440 f kidhelp.obj - 0001:0004e480 ?FIs@TXHD@@UAEHJ@Z 0044f480 f kidhelp.obj - 0001:0004e4b0 ?Cls@TXHD@@UAEJXZ 0044f4b0 f kidhelp.obj - 0001:0004e4e0 ?FWouldBe@TXHG@@SGHJ@Z 0044f4e0 f kidhelp.obj - 0001:0004e520 ?FIs@TXHG@@UAEHJ@Z 0044f520 f kidhelp.obj - 0001:0004e550 ?Cls@TXHG@@UAEJXZ 0044f550 f kidhelp.obj - 0001:0004e580 ?FWouldBe@HBAL@@SGHJ@Z 0044f580 f kidhelp.obj - 0001:0004e5c0 ?FIs@HBAL@@UAEHJ@Z 0044f5c0 f kidhelp.obj - 0001:0004e5f0 ?Cls@HBAL@@UAEJXZ 0044f5f0 f kidhelp.obj - 0001:0004e620 ?FWouldBe@HBTN@@SGHJ@Z 0044f620 f kidhelp.obj - 0001:0004e660 ?FIs@HBTN@@UAEHJ@Z 0044f660 f kidhelp.obj - 0001:0004e690 ?Cls@HBTN@@UAEJXZ 0044f690 f kidhelp.obj - 0001:0004e6c0 ??0TXHD@@IAE@PAVRCA@@PAVDOCB@@K@Z 0044f6c0 f kidhelp.obj - 0001:0004e7b0 ??1TXHD@@MAE@XZ 0044f7b0 f kidhelp.obj - 0001:0004e820 ?AssertValid@TXHD@@QAEXK@Z 0044f820 f kidhelp.obj - 0001:0004e8d0 ?MarkMem@TXHD@@UAEXXZ 0044f8d0 f kidhelp.obj - 0001:0004e930 ?PtxhdReadChunk@TXHD@@SGPAV1@PAVRCA@@PAVCFL@@KKPAVSTRG@@K@Z 0044f930 f kidhelp.obj - 0001:0004eaf0 ?_FReadChunk@TXHD@@MAEHPAVCFL@@KKPAVSTRG@@K@Z 0044faf0 f kidhelp.obj - 0001:0004efd0 ?_FOpenArg@TXHD@@MAEHJEFF@Z 0044ffd0 f kidhelp.obj - 0001:0004f220 ?FSaveToChunk@TXHD@@UAEHPAVCFL@@PAUCKI@@H@Z 00450220 f kidhelp.obj - 0001:0004f440 ?_FGetObjectRc@TXHD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00450440 f kidhelp.obj - 0001:0004f760 ?_FDrawObject@TXHD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00450760 f kidhelp.obj - 0001:0004fb70 ?FGrouped@TXHD@@QAEHJPAJ0PAEPAKPAVSTN@@@Z 00450b70 f kidhelp.obj - 0001:0004fdd0 ?GetHtop@TXHD@@QAEXPAUHTOP@@@Z 00450dd0 f kidhelp.obj - 0001:0004fe40 ??0TXHG@@IAE@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 00450e40 f kidhelp.obj - 0001:0004ff10 ?PtxhgNew@TXHG@@SGPAV1@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 00450f10 f kidhelp.obj - 0001:0004ffd0 ?_FInit@TXHG@@MAEHXZ 00450fd0 f kidhelp.obj - 0001:00050670 ?FRead@BLCK@@QAEHPAXH@Z 00451670 f kidhelp.obj - 0001:000506b0 ?FPtIn@TXHG@@UAEHJJ@Z 004516b0 f kidhelp.obj - 0001:00050730 ?FCmdTrackMouse@TXHG@@UAEHPAUCMD_MOUSE@@@Z 00451730 f kidhelp.obj - 0001:00050990 ?FCmdBadKey@TXHG@@UAEHPAUCMD_BADKEY@@@Z 00451990 f kidhelp.obj - 0001:00050a80 ?FGroupFromPt@TXHG@@UAEHJJPAEPAK@Z 00451a80 f kidhelp.obj - 0001:00050b30 ?DoHit@TXHG@@UAEXEKKJ@Z 00451b30 f kidhelp.obj - 0001:00050c10 ?_FRunScript@TXHG@@MAEHEKJDKPAJ@Z 00451c10 f kidhelp.obj - 0001:00050ea0 ?FCmdMouseMove@TXHG@@UAEHPAUCMD_MOUSE@@@Z 00451ea0 f kidhelp.obj - 0001:00050f60 ?SetCursor@TXHG@@UAEXK@Z 00451f60 f kidhelp.obj - 0001:00051020 ?PhbalCreate@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 00452020 f kidhelp.obj - 0001:00051210 ?PhbalNew@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@PAVTXHD@@PAUHTOP@@@Z 00452210 f kidhelp.obj - 0001:00051700 ??0HBAL@@IAE@PAUGCB@@@Z 00452700 f kidhelp.obj - 0001:00051740 ?_FInit@HBAL@@MAEHPAVWOKS@@PAVTXHD@@PAUHTOP@@PAVRCA@@@Z 00452740 f kidhelp.obj - 0001:000519a0 ?FSetTopic@HBAL@@UAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 004529a0 f kidhelp.obj - 0001:00051af0 ?_FSetTopic@HBAL@@MAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 00452af0 f kidhelp.obj - 0001:00051f70 ?XpCenter@RC@@QAEJXZ 00452f70 f kidhelp.obj - 0001:00051fb0 ?YpCenter@RC@@QAEJXZ 00452fb0 f kidhelp.obj - 0001:00051ff0 ?_SetGorp@HBAL@@MAEXPAVGORP@@JJ@Z 00452ff0 f kidhelp.obj - 0001:000520f0 ??0HBTN@@IAE@PAUGCB@@@Z 004530f0 f kidhelp.obj - 0001:00052130 ?PhbtnNew@HBTN@@SGPAV1@PAVWOKS@@PAVGOB@@JKPAVRCA@@EKJJ@Z 00453130 f kidhelp.obj - 0001:00052450 ?FPtIn@HBTN@@UAEHJJ@Z 00453450 f kidhelp.obj - 0001:00052590 ?FCmdClicked@HBTN@@UAEHPAUCMD_MOUSE@@@Z 00453590 f kidhelp.obj - 0001:00052690 ?FDirty@DOCB@@UAEHXZ 00453690 f kidhelp.obj - 0001:00052710 ?SetDirty@DOCB@@UAEXH@Z 00453710 f kidhelp.obj - 0001:00052760 ??0EDPAR@@QAE@XZ 00453760 f kidhelp.obj - 0001:000527a0 ?_SpcpFromSprmCp@TXRD@@IAEKEJ@Z 004537a0 f kidhelp.obj - 0001:000527e0 ?_CpFromSpcp@TXRD@@IAEJK@Z 004537e0 f kidhelp.obj - 0001:00052810 ?Pstrg@WOKS@@QAEPAVSTRG@@XZ 00453810 f kidhelp.obj - 0001:00052840 ??_ETXHD@@MAEPAXI@Z 00453840 f kidhelp.obj - 0001:00052840 ??_GTXHD@@MAEPAXI@Z 00453840 f kidhelp.obj - 0001:00052880 ??_GTXHG@@UAEPAXI@Z 00453880 f kidhelp.obj - 0001:00052880 ??_ETXHG@@UAEPAXI@Z 00453880 f kidhelp.obj - 0001:000528c0 ??0CHP@@QAE@XZ 004538c0 f kidhelp.obj - 0001:00052900 ?Pcmm@GOK@@MAEPAUCMM@CMH@@XZ 00453900 f kidhelp.obj - 0001:00052930 ??_EHBAL@@UAEPAXI@Z 00453930 f kidhelp.obj - 0001:00052930 ??_GHBAL@@UAEPAXI@Z 00453930 f kidhelp.obj - 0001:00052970 ??_GHBTN@@UAEPAXI@Z 00453970 f kidhelp.obj - 0001:00052970 ??_EHBTN@@UAEPAXI@Z 00453970 f kidhelp.obj - 0001:000529b0 ?Prca@TXHD@@QAEPAVRCA@@XZ 004539b0 f kidhelp.obj - 0001:000529e0 ?HideButtons@TXHD@@QAEXH@Z 004539e0 f kidhelp.obj - 0001:00052a30 ?Pcmm@TXHG@@MAEPAUCMM@CMH@@XZ 00453a30 f kidhelp.obj - 0001:00052a60 ?Ptxhd@TXHG@@QAEPAVTXHD@@XZ 00453a60 f kidhelp.obj - 0001:00052a90 ??1TXHG@@UAE@XZ 00453a90 f kidhelp.obj - 0001:00052ac0 ??1TXRG@@UAE@XZ 00453ac0 f kidhelp.obj - 0001:00052af0 ??1HBAL@@UAE@XZ 00453af0 f kidhelp.obj - 0001:00052b20 ??1HBTN@@UAE@XZ 00453b20 f kidhelp.obj - 0001:00052b50 ?FWouldBe@GOK@@SGHJ@Z 00453b50 f kidspace.obj - 0001:00052b90 ?FIs@GOK@@UAEHJ@Z 00453b90 f kidspace.obj - 0001:00052bc0 ?Cls@GOK@@UAEJXZ 00453bc0 f kidspace.obj - 0001:00052bf0 ?FWouldBe@GORP@@SGHJ@Z 00453bf0 f kidspace.obj - 0001:00052c30 ?FIs@GORP@@UAEHJ@Z 00453c30 f kidspace.obj - 0001:00052c60 ?Cls@GORP@@UAEJXZ 00453c60 f kidspace.obj - 0001:00052c90 ?FWouldBe@GORF@@SGHJ@Z 00453c90 f kidspace.obj - 0001:00052cd0 ?FIs@GORF@@UAEHJ@Z 00453cd0 f kidspace.obj - 0001:00052d00 ?Cls@GORF@@UAEJXZ 00453d00 f kidspace.obj - 0001:00052d30 ?FWouldBe@GORB@@SGHJ@Z 00453d30 f kidspace.obj - 0001:00052d70 ?FIs@GORB@@UAEHJ@Z 00453d70 f kidspace.obj - 0001:00052da0 ?Cls@GORB@@UAEJXZ 00453da0 f kidspace.obj - 0001:00052dd0 ?FWouldBe@GORT@@SGHJ@Z 00453dd0 f kidspace.obj - 0001:00052e10 ?FIs@GORT@@UAEHJ@Z 00453e10 f kidspace.obj - 0001:00052e40 ?Cls@GORT@@UAEJXZ 00453e40 f kidspace.obj - 0001:00052e70 ?FWouldBe@GORV@@SGHJ@Z 00453e70 f kidspace.obj - 0001:00052eb0 ?FIs@GORV@@UAEHJ@Z 00453eb0 f kidspace.obj - 0001:00052ee0 ?Cls@GORV@@UAEJXZ 00453ee0 f kidspace.obj - 0001:00052f10 ?PgokNew@GOK@@SGPAV1@PAVWOKS@@PAVGOB@@JPAVGOKD@@PAVRCA@@@Z 00453f10 f kidspace.obj - 0001:000531d0 ?_PgobBefore@GOK@@KGPAVGOB@@PAV2@J@Z 004541d0 f kidspace.obj - 0001:000532b0 ??0GOK@@IAE@PAUGCB@@@Z 004542b0 f kidspace.obj - 0001:00053330 ??1GOK@@MAE@XZ 00454330 f kidspace.obj - 0001:00053560 ?_FInit@GOK@@MAEHPAVWOKS@@KPAVRCA@@@Z 00454560 f kidspace.obj - 0001:000536d0 ?_FInit@GOK@@MAEHPAVWOKS@@PAVGOKD@@PAVRCA@@@Z 004546d0 f kidspace.obj - 0001:00053a10 ?_ChidMouse@GOK@@IAEKXZ 00454a10 f kidspace.obj - 0001:00053a80 ?_FAdjustGms@GOK@@MAEHPAUGMSE@@@Z 00454a80 f kidspace.obj - 0001:00053c80 ?_FSetGms@GOK@@MAEHJK@Z 00454c80 f kidspace.obj - 0001:00053e00 ?_FSetGmsCore@GOK@@MAEHJKPAH@Z 00454e00 f kidspace.obj - 0001:00053fe0 ?_FSetRep@GOK@@MAEHKKKJJPAH@Z 00454fe0 f kidspace.obj - 0001:000545b0 ?_FAdvanceFrame@GOK@@MAEHXZ 004555b0 f kidspace.obj - 0001:000549a0 ?_FEnterState@GOK@@MAEHJ@Z 004559a0 f kidspace.obj - 0001:00054b90 ?FPtIn@GOK@@UAEHJJ@Z 00455b90 f kidspace.obj - 0001:00054ca0 ?FPtInBounds@GOK@@UAEHJJ@Z 00455ca0 f kidspace.obj - 0001:00054d50 ?Draw@GOK@@UAEXPAVGNV@@PAVRC@@@Z 00455d50 f kidspace.obj - 0001:00054e60 ?FCmdAlarm@GOK@@UAEHPAUCMD@@@Z 00455e60 f kidspace.obj - 0001:00054fc0 ?FCmdAll@GOK@@UAEHPAUCMD@@@Z 00455fc0 f kidspace.obj - 0001:00055110 ?_FFilterCmd@GOK@@IAEHPAUCMD@@KPAH@Z 00456110 f kidspace.obj - 0001:00055230 ?FFilterCidHid@GOK@@UAEHJJK@Z 00456230 f kidspace.obj - 0001:000554f0 ?_FFindCmflt@GOK@@IAEHJJPAUCMFLT@1@PAJ@Z 004564f0 f kidspace.obj - 0001:000556c0 ?FCmdMouseMove@GOK@@UAEHPAUCMD_MOUSE@@@Z 004566c0 f kidspace.obj - 0001:00055820 ?SetCursor@GOK@@UAEXK@Z 00456820 f kidspace.obj - 0001:00055940 ?Ctg@BACO@@QAEKXZ 00456940 f kidspace.obj - 0001:00055970 ?FCmdTrackMouse@GOK@@UAEHPAUCMD_MOUSE@@@Z 00456970 f kidspace.obj - 0001:00055b60 ?Pcrf@BACO@@QAEPAVCRF@@XZ 00456b60 f kidspace.obj - 0001:00055b90 ?FEnsureToolTip@GOK@@UAEHPAPAVGOB@@JJ@Z 00456b90 f kidspace.obj - 0001:00055d50 ?_CnoToolTip@GOK@@IAEKXZ 00456d50 f kidspace.obj - 0001:00055df0 ?SetHidToolTip@GOK@@QAEXJ@Z 00456df0 f kidspace.obj - 0001:00055e50 ?LwState@GOK@@UAEJXZ 00456e50 f kidspace.obj - 0001:00055ec0 ?GetPtReg@GOK@@QAEXPAVPT@@J@Z 00456ec0 f kidspace.obj - 0001:00055f60 ?GetRcContent@GOK@@QAEXPAVRC@@@Z 00456f60 f kidspace.obj - 0001:00055ff0 ?SetZPlane@GOK@@QAEXJ@Z 00456ff0 f kidspace.obj - 0001:000560b0 ?SetNoSlip@GOK@@QAEXH@Z 004570b0 f kidspace.obj - 0001:00056130 ?FRunScript@GOK@@UAEHKPAJJ0PAH@Z 00457130 f kidspace.obj - 0001:00056210 ?FRunScriptCno@GOK@@UAEHKPAJJ0PAH@Z 00457210 f kidspace.obj - 0001:00056420 ?FChangeState@GOK@@UAEHJ@Z 00457420 f kidspace.obj - 0001:00056490 ?FSetRep@GOK@@UAEHKKKJJK@Z 00457490 f kidspace.obj - 0001:00056650 ?FCmdClicked@GOK@@UAEHPAUCMD_MOUSE@@@Z 00457650 f kidspace.obj - 0001:00056840 ?_PgorpNew@GOK@@MAEPAVGORP@@PAVCRF@@KK@Z 00457840 f kidspace.obj - 0001:00056940 ?_SetGorp@GOK@@MAEXPAVGORP@@JJ@Z 00457940 f kidspace.obj - 0001:00056c20 ?_DeferGorp@GOK@@IAEXH@Z 00457c20 f kidspace.obj - 0001:00056d20 ?FPlay@GOK@@UAEHXZ 00457d20 f kidspace.obj - 0001:00056da0 ?FPlaying@GOK@@UAEHXZ 00457da0 f kidspace.obj - 0001:00056e20 ?Stop@GOK@@UAEXXZ 00457e20 f kidspace.obj - 0001:00056e90 ?GotoNfr@GOK@@UAEXJ@Z 00457e90 f kidspace.obj - 0001:00056f50 ?NfrMac@GOK@@UAEJXZ 00457f50 f kidspace.obj - 0001:00056fd0 ?NfrCur@GOK@@UAEJXZ 00457fd0 f kidspace.obj - 0001:00057050 ?SiiPlaySound@GOK@@UAEJKKJJJKJJ@Z 00458050 f kidspace.obj - 0001:00057140 ?_DeferSnd@GOK@@IAEXH@Z 00458140 f kidspace.obj - 0001:00057240 ?SiiPlayMouseSound@GOK@@UAEJKK@Z 00458240 f kidspace.obj - 0001:00057330 ?_PlayMouseSound@GOK@@IAEXK@Z 00458330 f kidspace.obj - 0001:00057480 ?Suspend@GOK@@UAEXXZ 00458480 f kidspace.obj - 0001:000574f0 ?Resume@GOK@@UAEXXZ 004584f0 f kidspace.obj - 0001:00057560 ?Stream@GOK@@UAEXH@Z 00458560 f kidspace.obj - 0001:00057600 ?AssertValid@GOK@@QAEXK@Z 00458600 f kidspace.obj - 0001:000578f0 ?CactModal@APPB@@QAEJXZ 004588f0 f kidspace.obj - 0001:00057920 ?DtimAlarm@CLOK@@QAEKXZ 00458920 f kidspace.obj - 0001:00057950 ?MarkMem@GOK@@UAEXXZ 00458950 f kidspace.obj - 0001:00057a30 ?NfrMac@GORP@@UAEJXZ 00458a30 f kidspace.obj - 0001:00057a80 ?NfrCur@GORP@@UAEJXZ 00458a80 f kidspace.obj - 0001:00057ad0 ?GotoNfr@GORP@@UAEXJ@Z 00458ad0 f kidspace.obj - 0001:00057b20 ?FPlaying@GORP@@UAEHXZ 00458b20 f kidspace.obj - 0001:00057b70 ?FPlay@GORP@@UAEHXZ 00458b70 f kidspace.obj - 0001:00057bc0 ?Stop@GORP@@UAEXXZ 00458bc0 f kidspace.obj - 0001:00057c10 ?Suspend@GORP@@UAEXXZ 00458c10 f kidspace.obj - 0001:00057c60 ?FCmdClickedCore@GOK@@QAEHPAUCMD@@@Z 00458c60 f kidspace.obj - 0001:00057ca0 ?Resume@GORP@@UAEXXZ 00458ca0 f kidspace.obj - 0001:00057cf0 ?Stream@GORP@@UAEXH@Z 00458cf0 f kidspace.obj - 0001:00057d40 ?PgorfNew@GORF@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 00458d40 f kidspace.obj - 0001:00058040 ?Draw@GORF@@UAEXPAVGNV@@PAVRC@@@Z 00459040 f kidspace.obj - 0001:00058170 ?FPtIn@GORF@@UAEHJJ@Z 00459170 f kidspace.obj - 0001:00058200 ?SetDxpDyp@GORF@@UAEXJJ@Z 00459200 f kidspace.obj - 0001:000582c0 ?GetRc@GORF@@UAEXPAVRC@@@Z 004592c0 f kidspace.obj - 0001:00058340 ?GetRcContent@GORF@@UAEXPAVRC@@@Z 00459340 f kidspace.obj - 0001:000583b0 ?PgorbNew@GORB@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 004593b0 f kidspace.obj - 0001:00058560 ??1GORB@@MAE@XZ 00459560 f kidspace.obj - 0001:00058610 ?Draw@GORB@@UAEXPAVGNV@@PAVRC@@@Z 00459610 f kidspace.obj - 0001:000587c0 ?FPtIn@GORB@@UAEHJJ@Z 004597c0 f kidspace.obj - 0001:00058910 ?SetDxpDyp@GORB@@UAEXJJ@Z 00459910 f kidspace.obj - 0001:00058980 ?GetRc@GORB@@UAEXPAVRC@@@Z 00459980 f kidspace.obj - 0001:00058ab0 ?GetRcContent@GORB@@UAEXPAVRC@@@Z 00459ab0 f kidspace.obj - 0001:00058b20 ?Stream@GORB@@UAEXH@Z 00459b20 f kidspace.obj - 0001:00058b90 ?PgortNew@GORT@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 00459b90 f kidspace.obj - 0001:00059040 ??1GORT@@MAE@XZ 0045a040 f kidspace.obj - 0001:000590f0 ?Draw@GORT@@UAEXPAVGNV@@PAVRC@@@Z 0045a0f0 f kidspace.obj - 0001:00059430 ?_DrawRow@GORT@@IAEXPAVGNV@@PAVMBMP@@PAVRC@@2JJ@Z 0045a430 f kidspace.obj - 0001:00059850 ?FPtIn@GORT@@UAEHJJ@Z 0045a850 f kidspace.obj - 0001:00059a20 ?_MapZpToMbmp@GORT@@IAEXPAJPAFJJ@Z 0045aa20 f kidspace.obj - 0001:00059b50 ?SetDxpDyp@GORT@@UAEXJJ@Z 0045ab50 f kidspace.obj - 0001:00059c80 ?_ComputeFlexZp@GORT@@IAEXPAJ0JPAF@Z 0045ac80 f kidspace.obj - 0001:00059e00 ?GetRc@GORT@@UAEXPAVRC@@@Z 0045ae00 f kidspace.obj - 0001:00059fc0 ?_MapZpFlex@GORT@@IAEXPAJPAFJJ@Z 0045afc0 f kidspace.obj - 0001:0005a100 ?GetRcContent@GORT@@UAEXPAVRC@@@Z 0045b100 f kidspace.obj - 0001:0005a1a0 ?Stream@GORT@@UAEXH@Z 0045b1a0 f kidspace.obj - 0001:0005a210 ?PgorvNew@GORV@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 0045b210 f kidspace.obj - 0001:0005a3e0 ?_FInit@GORV@@MAEHPAVGOK@@PAVCRF@@KK@Z 0045b3e0 f kidspace.obj - 0001:0005a6b0 ?Pwoks@GOK@@QAEPAVWOKS@@XZ 0045b6b0 f kidspace.obj - 0001:0005a6e0 ??1GORV@@MAE@XZ 0045b6e0 f kidspace.obj - 0001:0005a740 ?Draw@GORV@@UAEXPAVGNV@@PAVRC@@@Z 0045b740 f kidspace.obj - 0001:0005a820 ?FPtIn@GORV@@UAEHJJ@Z 0045b820 f kidspace.obj - 0001:0005a8b0 ?SetDxpDyp@GORV@@UAEXJJ@Z 0045b8b0 f kidspace.obj - 0001:0005a980 ?GetRc@GORV@@UAEXPAVRC@@@Z 0045b980 f kidspace.obj - 0001:0005a9f0 ?GetRcContent@GORV@@UAEXPAVRC@@@Z 0045b9f0 f kidspace.obj - 0001:0005aa60 ?NfrMac@GORV@@UAEJXZ 0045ba60 f kidspace.obj - 0001:0005aac0 ?NfrCur@GORV@@UAEJXZ 0045bac0 f kidspace.obj - 0001:0005ab20 ?GotoNfr@GORV@@UAEXJ@Z 0045bb20 f kidspace.obj - 0001:0005ab80 ?FPlaying@GORV@@UAEHXZ 0045bb80 f kidspace.obj - 0001:0005ac20 ?FPlay@GORV@@UAEHXZ 0045bc20 f kidspace.obj - 0001:0005acd0 ?Stop@GORV@@UAEXXZ 0045bcd0 f kidspace.obj - 0001:0005ad30 ?Suspend@GORV@@UAEXXZ 0045bd30 f kidspace.obj - 0001:0005ae20 ?Resume@GORV@@UAEXXZ 0045be20 f kidspace.obj - 0001:0005aeb0 ?AssertValid@GORV@@QAEXK@Z 0045beb0 f kidspace.obj - 0001:0005af40 ?MarkMem@GORV@@UAEXXZ 0045bf40 f kidspace.obj - 0001:0005afb0 ??_GGOK@@MAEPAXI@Z 0045bfb0 f kidspace.obj - 0001:0005afb0 ??_EGOK@@MAEPAXI@Z 0045bfb0 f kidspace.obj - 0001:0005aff0 ??0GOKFL@@QAE@XZ 0045bff0 f kidspace.obj - 0001:0005b020 ??0GORF@@QAE@XZ 0045c020 f kidspace.obj - 0001:0005b080 ??0GORP@@IAE@XZ 0045c080 f kidspace.obj - 0001:0005b0c0 ??_GGORP@@UAEPAXI@Z 0045c0c0 f kidspace.obj - 0001:0005b0c0 ??_EGORP@@UAEPAXI@Z 0045c0c0 f kidspace.obj - 0001:0005b100 ??0GORB@@QAE@XZ 0045c100 f kidspace.obj - 0001:0005b140 ??_GGORB@@MAEPAXI@Z 0045c140 f kidspace.obj - 0001:0005b140 ??_EGORB@@MAEPAXI@Z 0045c140 f kidspace.obj - 0001:0005b180 ??1GORP@@UAE@XZ 0045c180 f kidspace.obj - 0001:0005b1b0 ??0GORT@@QAE@XZ 0045c1b0 f kidspace.obj - 0001:0005b1f0 ??_GGORT@@MAEPAXI@Z 0045c1f0 f kidspace.obj - 0001:0005b1f0 ??_EGORT@@MAEPAXI@Z 0045c1f0 f kidspace.obj - 0001:0005b230 ??0GORV@@QAE@XZ 0045c230 f kidspace.obj - 0001:0005b270 ??_EGORV@@MAEPAXI@Z 0045c270 f kidspace.obj - 0001:0005b270 ??_GGORV@@MAEPAXI@Z 0045c270 f kidspace.obj - 0001:0005b2b0 ??_GGORF@@UAEPAXI@Z 0045c2b0 f kidspace.obj - 0001:0005b2b0 ??_EGORF@@UAEPAXI@Z 0045c2b0 f kidspace.obj - 0001:0005b2f0 ??1GORF@@UAE@XZ 0045c2f0 f kidspace.obj - 0001:0005b320 ??_9@$BLA@A 0045c320 f kidspace.obj - 0001:0005b330 ??_9@$BLI@A 0045c330 f kidspace.obj - 0001:0005b340 ?FWouldBe@SCEG@@SGHJ@Z 0045c340 f screxeg.obj - 0001:0005b380 ?FIs@SCEG@@UAEHJ@Z 0045c380 f screxeg.obj - 0001:0005b3b0 ?Cls@SCEG@@UAEJXZ 0045c3b0 f screxeg.obj - 0001:0005b400 ??0SCEG@@QAE@PAVWOKS@@PAVRCA@@PAVGOB@@@Z 0045c400 f screxeg.obj - 0001:0005b5b0 ?AssertValid@SCEG@@QAEXK@Z 0045c5b0 f screxeg.obj - 0001:0005b6a0 ?FResume@SCEG@@UAEHPAJPAH@Z 0045c6a0 f screxeg.obj - 0001:0005b6e0 ?_PgobThis@SCEG@@MAEPAVGOB@@XZ 0045c6e0 f screxeg.obj - 0001:0005b820 ?_PgobFromHid@SCEG@@MAEPAVGOB@@J@Z 0045c820 f screxeg.obj - 0001:0005b8a0 ?_PpglrtvmThis@SCEG@@MAEPAPAVGL@@XZ 0045c8a0 f screxeg.obj - 0001:0005b8f0 ?_PpglrtvmGlobal@SCEG@@MAEPAPAVGL@@XZ 0045c8f0 f screxeg.obj - 0001:0005b950 ?_PpglrtvmRemote@SCEG@@MAEPAPAVGL@@J@Z 0045c950 f screxeg.obj - 0001:0005b9a0 ?_SwCur@SCEG@@MAEFXZ 0045c9a0 f screxeg.obj - 0001:0005b9d0 ?_SwMin@SCEG@@MAEFXZ 0045c9d0 f screxeg.obj - 0001:0005ba00 ?_FExecOp@SCEG@@MAEHJ@Z 0045ca00 f screxeg.obj - 0001:0005e7b0 ?_DoAlert@SCEG@@IAEXJ@Z 0045f7b0 f screxeg.obj - 0001:0005eaa0 ?_DoEditControl@SCEG@@IAEXJJH@Z 0045faa0 f screxeg.obj - 0001:0005ec60 ?_Push@SCEB@@IAEXJ@Z 0045fc60 f screxeg.obj - 0001:0005ecc0 ?_SetColorTable@SCEG@@IAEXK@Z 0045fcc0 f screxeg.obj - 0001:0005ed30 ?_PglclrGet@SCEG@@IAEPAVGL@@K@Z 0045fd30 f screxeg.obj - 0001:0005ee40 ?FReadColorTable@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0045fe40 f screxeg.obj - 0001:0005efb0 ??0CABO@@QAE@PAVBASE@@@Z 0045ffb0 f screxeg.obj - 0001:0005eff0 ?_FLaunch@SCEG@@IAEHJ@Z 0045fff0 f screxeg.obj - 0001:0005f230 ??_ECABO@@UAEPAXI@Z 00460230 f screxeg.obj - 0001:0005f230 ??_GCABO@@UAEPAXI@Z 00460230 f screxeg.obj - 0001:0005f270 ??1CABO@@UAE@XZ 00460270 f screxeg.obj - 0001:0005f2d0 ??_ESCEG@@UAEPAXI@Z 004602d0 f screxeg.obj - 0001:0005f2d0 ??_GSCEG@@UAEPAXI@Z 004602d0 f screxeg.obj - 0001:0005f310 ??1SCEG@@UAE@XZ 00460310 f screxeg.obj - 0001:0005f340 ?GobMayDie@SCEG@@QAEXXZ 00460340 f screxeg.obj - 0001:0005f370 ?Sno@GOK@@QAEJXZ 00460370 f screxeg.obj - 0001:0005f3a0 ?ZPlane@GOK@@QAEJXZ 004603a0 f screxeg.obj - 0001:0005f3d0 ?FWouldBe@SCCG@@SGHJ@Z 004603d0 f scrcomg.obj - 0001:0005f410 ?FIs@SCCG@@UAEHJ@Z 00460410 f scrcomg.obj - 0001:0005f440 ?Cls@SCCG@@UAEJXZ 00460440 f scrcomg.obj - 0001:0005f470 ?_OpFromStn@SCCG@@MAEJPAVSTN@@@Z 00460470 f scrcomg.obj - 0001:0005f550 ?_FGetStnFromOp@SCCG@@MAEHJPAVSTN@@@Z 00460550 f scrcomg.obj - 0001:0005f630 ?_FGetOpFromName@SCCG@@MAEHPAVSTN@@PAJ111PAH@Z 00460630 f scrcomg.obj - 0001:0005f6b0 ?_SwCur@SCCG@@MAEFXZ 004606b0 f scrcomg.obj - 0001:0005f6e0 ?_SwBack@SCCG@@MAEFXZ 004606e0 f scrcomg.obj - 0001:0005f710 ?_SwMin@SCCG@@MAEFXZ 00460710 f scrcomg.obj - 0001:0005f8b0 ?IbMac@BSF@@QAEJXZ 004608b0 f textdoc.obj - 0001:0005f8e0 ?DtsCaret@@YGKXZ 004608e0 f textdoc.obj - 0001:0005fa10 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 00460a10 f textdoc.obj - 0001:0005fa60 ?FWouldBe@DOCB@@SGHJ@Z 00460a60 f docb.obj - 0001:0005faa0 ?FIs@DOCB@@UAEHJ@Z 00460aa0 f docb.obj - 0001:0005fad0 ?Cls@DOCB@@UAEJXZ 00460ad0 f docb.obj - 0001:0005fb00 ?FWouldBe@DTE@@SGHJ@Z 00460b00 f docb.obj - 0001:0005fb40 ?FIs@DTE@@UAEHJ@Z 00460b40 f docb.obj - 0001:0005fb70 ?Cls@DTE@@UAEJXZ 00460b70 f docb.obj - 0001:0005fba0 ?FWouldBe@DDG@@SGHJ@Z 00460ba0 f docb.obj - 0001:0005fbe0 ?FIs@DDG@@UAEHJ@Z 00460be0 f docb.obj - 0001:0005fc10 ?Cls@DDG@@UAEJXZ 00460c10 f docb.obj - 0001:0005fc40 ?FWouldBe@DMD@@SGHJ@Z 00460c40 f docb.obj - 0001:0005fc80 ?FIs@DMD@@UAEHJ@Z 00460c80 f docb.obj - 0001:0005fcb0 ?Cls@DMD@@UAEJXZ 00460cb0 f docb.obj - 0001:0005fce0 ?FWouldBe@DMW@@SGHJ@Z 00460ce0 f docb.obj - 0001:0005fd20 ?FIs@DMW@@UAEHJ@Z 00460d20 f docb.obj - 0001:0005fd50 ?Cls@DMW@@UAEJXZ 00460d50 f docb.obj - 0001:0005fd80 ?FWouldBe@DSG@@SGHJ@Z 00460d80 f docb.obj - 0001:0005fdc0 ?FIs@DSG@@UAEHJ@Z 00460dc0 f docb.obj - 0001:0005fdf0 ?Cls@DSG@@UAEJXZ 00460df0 f docb.obj - 0001:0005fe20 ?FWouldBe@DSSP@@SGHJ@Z 00460e20 f docb.obj - 0001:0005fe60 ?FIs@DSSP@@UAEHJ@Z 00460e60 f docb.obj - 0001:0005fe90 ?Cls@DSSP@@UAEJXZ 00460e90 f docb.obj - 0001:0005fec0 ?FWouldBe@DSSM@@SGHJ@Z 00460ec0 f docb.obj - 0001:0005ff00 ?FIs@DSSM@@UAEHJ@Z 00460f00 f docb.obj - 0001:0005ff30 ?Cls@DSSM@@UAEJXZ 00460f30 f docb.obj - 0001:0005ff60 ?FWouldBe@UNDB@@SGHJ@Z 00460f60 f docb.obj - 0001:0005ffa0 ?FIs@UNDB@@UAEHJ@Z 00460fa0 f docb.obj - 0001:0005fff0 ?Cls@UNDB@@UAEJXZ 00460ff0 f docb.obj - 0001:00060020 ??0DOCB@@IAE@PAV0@K@Z 00461020 f docb.obj - 0001:000601c0 ?Release@DOCB@@UAEXXZ 004611c0 f docb.obj - 0001:000603d0 ?CloseAllDdg@DOCB@@QAEXXZ 004613d0 f docb.obj - 0001:00060490 ??1DOCB@@MAE@XZ 00461490 f docb.obj - 0001:000606e0 ?FQueryCloseAll@DOCB@@SGHK@Z 004616e0 f docb.obj - 0001:00060750 ?FQueryClose@DOCB@@UAEHK@Z 00461750 f docb.obj - 0001:00060880 ?_TQuerySave@DOCB@@MAEHH@Z 00461880 f docb.obj - 0001:000608f0 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 004618f0 f docb.obj - 0001:00060a30 ?FInternal@DOCB@@QAEHXZ 00461a30 f docb.obj - 0001:00060ac0 ?SetInternal@DOCB@@QAEXH@Z 00461ac0 f docb.obj - 0001:00060b30 ?PdocbFromFni@DOCB@@SGPAV1@PAVFNI@@@Z 00461b30 f docb.obj - 0001:00060c60 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 00461c60 f docb.obj - 0001:00060c90 ?FSave@DOCB@@UAEHJ@Z 00461c90 f docb.obj - 0001:00060e60 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 00461e60 f docb.obj - 0001:00060e90 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 00461e90 f docb.obj - 0001:00060ed0 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 00461ed0 f docb.obj - 0001:00060ff0 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 00461ff0 f docb.obj - 0001:000610e0 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 004620e0 f docb.obj - 0001:00061190 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 00462190 f docb.obj - 0001:00061220 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 00462220 f docb.obj - 0001:00061320 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 00462320 f docb.obj - 0001:000613a0 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 004623a0 f docb.obj - 0001:00061400 ?ActivateDmd@DOCB@@QAEXXZ 00462400 f docb.obj - 0001:000614b0 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 004624b0 f docb.obj - 0001:00061510 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 00462510 f docb.obj - 0001:00061570 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 00462570 f docb.obj - 0001:000615d0 ?GetName@DOCB@@UAEXPAVSTN@@@Z 004625d0 f docb.obj - 0001:00061730 ?UpdateName@DOCB@@UAEXXZ 00462730 f docb.obj - 0001:00061850 ?FUndo@DOCB@@UAEHXZ 00462850 f docb.obj - 0001:00061900 ?FRedo@DOCB@@UAEHXZ 00462900 f docb.obj - 0001:000619c0 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 004629c0 f docb.obj - 0001:00061b90 ?ClearUndo@DOCB@@UAEXXZ 00462b90 f docb.obj - 0001:00061c10 ?ClearRedo@DOCB@@UAEXXZ 00462c10 f docb.obj - 0001:00061cc0 ?SetCundbMax@DOCB@@UAEXJ@Z 00462cc0 f docb.obj - 0001:00061eb0 ?CundbMax@DOCB@@UAEJXZ 00462eb0 f docb.obj - 0001:00061f00 ?CundbUndo@DOCB@@UAEJXZ 00462f00 f docb.obj - 0001:00061f50 ?CundbRedo@DOCB@@UAEJXZ 00462f50 f docb.obj - 0001:00061fa0 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 00462fa0 f docb.obj - 0001:00062050 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 00463050 f docb.obj - 0001:000620c0 ?AssertValid@DOCB@@QAEXK@Z 004630c0 f docb.obj - 0001:00062300 ?MarkMem@DOCB@@UAEXXZ 00463300 f docb.obj - 0001:000623f0 ??0DTE@@QAE@XZ 004633f0 f docb.obj - 0001:00062430 ?Init@DTE@@QAEXPAVDOCB@@@Z 00463430 f docb.obj - 0001:00062490 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 00463490 f docb.obj - 0001:00062630 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00463630 f docb.obj - 0001:00062750 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 00463750 f docb.obj - 0001:00062840 ??1DDG@@MAE@XZ 00463840 f docb.obj - 0001:00062930 ?_FInit@DDG@@MAEHXZ 00463930 f docb.obj - 0001:00062990 ?Pdmd@DDG@@QAEPAVDMD@@XZ 00463990 f docb.obj - 0001:000629c0 ?Activate@DDG@@UAEXH@Z 004639c0 f docb.obj - 0001:00062b20 ?_Activate@DDG@@MAEXH@Z 00463b20 f docb.obj - 0001:00062b80 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 00463b80 f docb.obj - 0001:00062dc0 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 00463dc0 f docb.obj - 0001:00062f50 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 00463f50 f docb.obj - 0001:00062f80 ?_ClearSel@DDG@@MAEXXZ 00463f80 f docb.obj - 0001:00062fa0 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 00463fa0 f docb.obj - 0001:00062fd0 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 00463fd0 f docb.obj - 0001:00063030 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 00464030 f docb.obj - 0001:00063070 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 00464070 f docb.obj - 0001:000630d0 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 004640d0 f docb.obj - 0001:00063150 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 00464150 f docb.obj - 0001:00063190 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 00464190 f docb.obj - 0001:000632b0 ?_Scroll@DDG@@MAEXJJJJ@Z 004642b0 f docb.obj - 0001:000632e0 ?_SetScrollValues@DDG@@MAEXXZ 004642e0 f docb.obj - 0001:000633a0 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 004643a0 f docb.obj - 0001:000633e0 ?_ScvMax@DDG@@MAEJH@Z 004643e0 f docb.obj - 0001:00063410 ?_NewRc@DDG@@MAEXXZ 00464410 f docb.obj - 0001:00063440 ?AssertValid@DDG@@QAEXK@Z 00464440 f docb.obj - 0001:000635f0 ?MarkMem@DDG@@UAEXXZ 004645f0 f docb.obj - 0001:00063640 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 00464640 f docb.obj - 0001:000638d0 ?PdmdTop@DMD@@SGPAV1@XZ 004648d0 f docb.obj - 0001:000639e0 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 004649e0 f docb.obj - 0001:00063a80 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 00464a80 f docb.obj - 0001:00063b80 ?_ActivateHwnd@DMD@@MAEXH@Z 00464b80 f docb.obj - 0001:00063c10 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 00464c10 f docb.obj - 0001:00063c70 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00464c70 f docb.obj - 0001:00063d70 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 00464d70 f docb.obj - 0001:00063e50 ?Release@DMW@@UAEXXZ 00464e50 f docb.obj - 0001:00063f40 ?_FInit@DMW@@MAEHXZ 00464f40 f docb.obj - 0001:00064050 ?_NewRc@DMW@@MAEXXZ 00465050 f docb.obj - 0001:000640b0 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 004650b0 f docb.obj - 0001:00064510 ?Cddg@DOCB@@QAEJXZ 00465510 f docb.obj - 0001:00064550 ?FActive@DDG@@QAEHXZ 00465550 f docb.obj - 0001:00064580 ?_Qdsed@DMW@@IAEPAUDSED@1@J@Z 00465580 f docb.obj - 0001:000645b0 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 004655b0 f docb.obj - 0001:00064610 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 00465610 f docb.obj - 0001:00064940 ?_IdsedEdge@DMW@@IAEJJJ@Z 00465940 f docb.obj - 0001:00064a70 ?_IdsedNext@DMW@@IAEJJJ@Z 00465a70 f docb.obj - 0001:00064b60 ?_Layout@DMW@@IAEXJ@Z 00465b60 f docb.obj - 0001:000650d0 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 004660d0 f docb.obj - 0001:000651b0 ?Cdsg@DMW@@QAEJXZ 004661b0 f docb.obj - 0001:00065280 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 00466280 f docb.obj - 0001:000654e0 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 004664e0 f docb.obj - 0001:00065650 ?TVert@DMW@@QAEHPAVDSG@@@Z 00466650 f docb.obj - 0001:00065760 ?AssertValid@DMW@@QAEXK@Z 00466760 f docb.obj - 0001:00065dc0 ?MarkMem@DMW@@UAEXXZ 00466dc0 f docb.obj - 0001:00065e10 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 00466e10 f docb.obj - 0001:00065fe0 ??0DSG@@IAE@PAUGCB@@@Z 00466fe0 f docb.obj - 0001:00066050 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 00467050 f docb.obj - 0001:00066080 ??1DSG@@MAE@XZ 00467080 f docb.obj - 0001:000660d0 ?Pdmw@DSG@@QAEPAVDMW@@XZ 004670d0 f docb.obj - 0001:00066100 ?_FInit@DSG@@MAEHPAV1@KJ@Z 00467100 f docb.obj - 0001:00066390 ?Pdocb@DMW@@QAEPAVDOCB@@XZ 00467390 f docb.obj - 0001:000663c0 ?DypNormal@DSSP@@SGJXZ 004673c0 f docb.obj - 0001:000663e0 ?DxpNormal@DSSP@@SGJXZ 004673e0 f docb.obj - 0001:00066400 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 00467400 f docb.obj - 0001:00066550 ?Split@DSG@@UAEXKJ@Z 00467550 f docb.obj - 0001:00066610 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 00467610 f docb.obj - 0001:00066690 ?AssertValid@DSG@@QAEXK@Z 00467690 f docb.obj - 0001:00066730 ??0DSSP@@IAE@PAUGCB@@@Z 00467730 f docb.obj - 0001:00066790 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 00467790 f docb.obj - 0001:00066920 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 00467920 f docb.obj - 0001:00066990 ?MouseDown@DSSP@@UAEXJJJK@Z 00467990 f docb.obj - 0001:00066b80 ??0DSSM@@IAE@PAUGCB@@@Z 00467b80 f docb.obj - 0001:00066bc0 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 00467bc0 f docb.obj - 0001:00066cd0 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 00467cd0 f docb.obj - 0001:00066da0 ?MouseDown@DSSM@@UAEXJJJK@Z 00467da0 f docb.obj - 0001:00067060 ?TVert@DSSM@@QAEHXZ 00468060 f docb.obj - 0001:000670c0 ??_EDOCB@@MAEPAXI@Z 004680c0 f docb.obj - 0001:000670c0 ??_GDOCB@@MAEPAXI@Z 004680c0 f docb.obj - 0001:00067100 ??1DTE@@UAE@XZ 00468100 f docb.obj - 0001:00067130 ??_GDTE@@UAEPAXI@Z 00468130 f docb.obj - 0001:00067130 ??_EDTE@@UAEPAXI@Z 00468130 f docb.obj - 0001:00067170 ??_EDDG@@MAEPAXI@Z 00468170 f docb.obj - 0001:00067170 ??_GDDG@@MAEPAXI@Z 00468170 f docb.obj - 0001:000671b0 ??_EDMD@@UAEPAXI@Z 004681b0 f docb.obj - 0001:000671b0 ??_GDMD@@UAEPAXI@Z 004681b0 f docb.obj - 0001:000671f0 ??_GDMW@@UAEPAXI@Z 004681f0 f docb.obj - 0001:000671f0 ??_EDMW@@UAEPAXI@Z 004681f0 f docb.obj - 0001:00067230 ??0DSED@DMW@@QAE@XZ 00468230 f docb.obj - 0001:00067260 ??_GDSG@@MAEPAXI@Z 00468260 f docb.obj - 0001:00067260 ??_EDSG@@MAEPAXI@Z 00468260 f docb.obj - 0001:000672a0 ??_GDSSP@@UAEPAXI@Z 004682a0 f docb.obj - 0001:000672a0 ??_EDSSP@@UAEPAXI@Z 004682a0 f docb.obj - 0001:000672e0 ??_GDSSM@@UAEPAXI@Z 004682e0 f docb.obj - 0001:000672e0 ??_EDSSM@@UAEPAXI@Z 004682e0 f docb.obj - 0001:00067320 ??1DMD@@UAE@XZ 00468320 f docb.obj - 0001:00067350 ??1DMW@@UAE@XZ 00468350 f docb.obj - 0001:00067380 ??1DSSP@@UAE@XZ 00468380 f docb.obj - 0001:000673b0 ??1DSSM@@UAE@XZ 004683b0 f docb.obj - 0001:000673e0 ??_9@$BIM@A 004683e0 f docb.obj - 0001:000673f0 ??_9@$BLE@A 004683f0 f docb.obj - 0001:00067400 ??_9@$BLM@A 00468400 f docb.obj - 0001:00067410 ?FWouldBe@CLIP@@SGHJ@Z 00468410 f clip.obj - 0001:00067450 ?FIs@CLIP@@UAEHJ@Z 00468450 f clip.obj - 0001:00067480 ?Cls@CLIP@@UAEJXZ 00468480 f clip.obj - 0001:000674d0 ??0CLIP@@QAE@XZ 004684d0 f clip.obj - 0001:00067540 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 00468540 f clip.obj - 0001:000675f0 ?Show@CLIP@@QAEXXZ 004685f0 f clip.obj - 0001:00067690 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 00468690 f clip.obj - 0001:000678c0 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 004688c0 f clip.obj - 0001:000679b0 ?Import@CLIP@@QAEXXZ 004689b0 f clip.obj - 0001:00067a30 ?_EnsureDoc@CLIP@@IAEXXZ 00468a30 f clip.obj - 0001:00067c40 ?_ImportCur@CLIP@@IAEXXZ 00468c40 f clip.obj - 0001:00067e00 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 00468e00 f clip.obj - 0001:00067fd0 ?FInitExport@CLIP@@QAEHXZ 00468fd0 f clip.obj - 0001:000680e0 ?PvExport@CLIP@@QAEPAXJJ@Z 004690e0 f clip.obj - 0001:00068200 ?EndExport@CLIP@@QAEXXZ 00469200 f clip.obj - 0001:00068280 ?_ExportCur@CLIP@@IAEXXZ 00469280 f clip.obj - 0001:00068350 ?AssertValid@CLIP@@QAEXK@Z 00469350 f clip.obj - 0001:00068420 ?MarkMem@CLIP@@UAEXXZ 00469420 f clip.obj - 0001:000684e0 ??1CLIP@@UAE@XZ 004694e0 f clip.obj - 0001:00068510 ??_GCLIP@@UAEPAXI@Z 00469510 f clip.obj - 0001:00068510 ??_ECLIP@@UAEPAXI@Z 00469510 f clip.obj - 0001:00068550 ?BvSubPvs@@YGJPAX0@Z 00469550 f clip.obj - 0001:00068680 ?FWouldBe@CHCM@@SGHJ@Z 00469680 f chcm.obj - 0001:000686c0 ?FIs@CHCM@@UAEHJ@Z 004696c0 f chcm.obj - 0001:000686f0 ?Cls@CHCM@@UAEJXZ 004696f0 f chcm.obj - 0001:00068720 ?FWouldBe@CHLX@@SGHJ@Z 00469720 f chcm.obj - 0001:00068760 ?FIs@CHLX@@UAEHJ@Z 00469760 f chcm.obj - 0001:00068790 ?Cls@CHLX@@UAEJXZ 00469790 f chcm.obj - 0001:000687c0 ??0CHCM@@QAE@XZ 004697c0 f chcm.obj - 0001:00068860 ??1CHCM@@UAE@XZ 00469860 f chcm.obj - 0001:000689b0 ?AssertValid@CHCM@@QAEXK@Z 004699b0 f chcm.obj - 0001:00068b20 ?MarkMem@CHCM@@UAEXXZ 00469b20 f chcm.obj - 0001:00068c20 ?_Error@CHCM@@IAEXJPAD@Z 00469c20 f chcm.obj - 0001:00068e00 ?_GetRgbFromLw@CHCM@@IAEXJPAE@Z 00469e00 f chcm.obj - 0001:00068f70 ?_ErrorOnData@CHCM@@IAEXPAD@Z 00469f70 f chcm.obj - 0001:00069000 ?_FGetCleanTok@CHCM@@IAEHPAUTOK@@H@Z 0046a000 f chcm.obj - 0001:00069260 ?_SkipPastTok@CHCM@@IAEXJ@Z 0046a260 f chcm.obj - 0001:000692f0 ?_FParseParenHeader@CHCM@@IAEHPAUPHP@1@JPAJ@Z 0046a2f0 f chcm.obj - 0001:00069670 ?_ParseChunkHeader@CHCM@@IAEXPAK0@Z 0046a670 f chcm.obj - 0001:00069860 ?_AppendString@CHCM@@IAEXPAVSTN@@@Z 0046a860 f chcm.obj - 0001:00069a70 ?_AppendNumber@CHCM@@IAEXJ@Z 0046aa70 f chcm.obj - 0001:00069b10 ?_ParseBodyChild@CHCM@@IAEXKK@Z 0046ab10 f chcm.obj - 0001:00069c50 ?_ParseBodyParent@CHCM@@IAEXKK@Z 0046ac50 f chcm.obj - 0001:00069d90 ?_ParseBodyAlign@CHCM@@IAEXXZ 0046ad90 f chcm.obj - 0001:00069f80 ?_ParseBodyFile@CHCM@@IAEXXZ 0046af80 f chcm.obj - 0001:0006a100 ?CchTotSz@@YGJPAD@Z 0046b100 f chcm.obj - 0001:0006a120 ?CchTotSt@@YGJPAD@Z 0046b120 f chcm.obj - 0001:0006a150 ?_FPrepWrite@CHCM@@IAEHHJKKPAVBLCK@@@Z 0046b150 f chcm.obj - 0001:0006a270 ?CchTotStz@@YGJPAD@Z 0046b270 f chcm.obj - 0001:0006a2a0 ?_FEndWrite@CHCM@@IAEHHKKPAVBLCK@@@Z 0046b2a0 f chcm.obj - 0001:0006a3e0 ?_ParseBodyMeta@CHCM@@IAEXHKK@Z 0046b3e0 f chcm.obj - 0001:0006a610 ?Pst@STN@@QAEPADXZ 0046b610 f chcm.obj - 0001:0006a660 ?Pstz@STN@@QAEPADXZ 0046b660 f chcm.obj - 0001:0006a6b0 ?_ParseBodyBitmap@CHCM@@IAEXHHKK@Z 0046b6b0 f chcm.obj - 0001:0006a930 ?_ParseBodyPalette@CHCM@@IAEXHKK@Z 0046b930 f chcm.obj - 0001:0006ab40 ?_ParseBodyMidi@CHCM@@IAEXHKK@Z 0046bb40 f chcm.obj - 0001:0006ad20 ?_ParseBodyCursor@CHCM@@IAEXHKK@Z 0046bd20 f chcm.obj - 0001:0006b480 ?_FParseData@CHCM@@IAEHPAUTOK@@@Z 0046c480 f chcm.obj - 0001:0006b840 ?_ParseBodyList@CHCM@@IAEXHHKK@Z 0046c840 f chcm.obj - 0001:0006be30 ?LwLine@LEXB@@QAEJXZ 0046ce30 f chcm.obj - 0001:0006be60 ?IchLine@LEXB@@QAEJXZ 0046ce60 f chcm.obj - 0001:0006be90 ?_ParseBodyGroup@CHCM@@IAEXHHKK@Z 0046ce90 f chcm.obj - 0001:0006c6f0 ?_ParseBodyStringTable@CHCM@@IAEXHHKK@Z 0046d6f0 f chcm.obj - 0001:0006ceb0 ?_ParseBodyScript@CHCM@@IAEXHHKK@Z 0046deb0 f chcm.obj - 0001:0006cfa0 ?_ParseBodyPackedFile@CHCM@@IAEXPAH@Z 0046dfa0 f chcm.obj - 0001:0006d140 ?_StartSubFile@CHCM@@IAEXHKK@Z 0046e140 f chcm.obj - 0001:0006d260 ?_EndSubFile@CHCM@@IAEXXZ 0046e260 f chcm.obj - 0001:0006d600 ?_ParsePackFmt@CHCM@@IAEXXZ 0046e600 f chcm.obj - 0001:0006d6d0 ?FError@CHCM@@QAEHXZ 0046e6d0 f chcm.obj - 0001:0006d710 ?_ParseChunkBody@CHCM@@IAEXKK@Z 0046e710 f chcm.obj - 0001:0006dd70 ?_ParseAdopt@CHCM@@IAEXXZ 0046ed70 f chcm.obj - 0001:0006def0 ?PcflCompile@CHCM@@QAEPAVCFL@@PAVBSF@@PAVSTN@@PAVFNI@@PAVMSNK@@@Z 0046eef0 f chcm.obj - 0001:0006e5e0 ??0CHLX@@QAE@PAVBSF@@PAVSTN@@@Z 0046f5e0 f chcm.obj - 0001:0006e660 ?_ReadNumTok@LEXB@@MAEXPAUTOK@@DJJ@Z 0046f660 f chcm.obj - 0001:0006e6a0 ??1CHLX@@UAE@XZ 0046f6a0 f chcm.obj - 0001:0006e710 ?FGetTok@CHLX@@UAEHPAUTOK@@@Z 0046f710 f chcm.obj - 0001:0006e890 ?FGetTokSkipSemi@CHLX@@UAEHPAUTOK@@@Z 0046f890 f chcm.obj - 0001:0006e930 ?FGetPath@CHLX@@UAEHPAVFNI@@@Z 0046f930 f chcm.obj - 0001:0006eb50 ?_Advance@LEXB@@IAEXJ@Z 0046fb50 f chcm.obj - 0001:0006eb90 ?_FDoSet@CHLX@@IAEHPAUTOK@@@Z 0046fb90 f chcm.obj - 0001:0006ef90 ?AssertValid@CHLX@@QAEXK@Z 0046ff90 f chcm.obj - 0001:0006f000 ?MarkMem@CHLX@@UAEXXZ 00470000 f chcm.obj - 0001:0006f080 ??_ECHCM@@UAEPAXI@Z 00470080 f chcm.obj - 0001:0006f080 ??_GCHCM@@UAEPAXI@Z 00470080 f chcm.obj - 0001:0006f0c0 ??0TOK@@QAE@XZ 004700c0 f chcm.obj - 0001:0006f0f0 ??0SCCG@@QAE@XZ 004700f0 f chcm.obj - 0001:0006f130 ??1SCCG@@UAE@XZ 00470130 f chcm.obj - 0001:0006f160 ??_GCHLX@@UAEPAXI@Z 00470160 f chcm.obj - 0001:0006f160 ??_ECHLX@@UAEPAXI@Z 00470160 f chcm.obj - 0001:0006f1a0 ??_ESCCG@@UAEPAXI@Z 004701a0 f chcm.obj - 0001:0006f1a0 ??_GSCCG@@UAEPAXI@Z 004701a0 f chcm.obj - 0001:0006f1e0 ?FWouldBe@LEXB@@SGHJ@Z 004701e0 f lex.obj - 0001:0006f220 ?FIs@LEXB@@UAEHJ@Z 00470220 f lex.obj - 0001:0006f250 ?Cls@LEXB@@UAEJXZ 00470250 f lex.obj - 0001:0006f280 ?_TtFromCh@@YGJD@Z 00470280 f lex.obj - 0001:0006f2b0 ?_TtFromChCh@@YGJDD@Z 004702b0 f lex.obj - 0001:0006f370 ??0LEXB@@QAE@PAVFIL@@H@Z 00470370 f lex.obj - 0001:0006f500 ??0LEXB@@QAE@PAVBSF@@PAVSTN@@H@Z 00470500 f lex.obj - 0001:0006f6f0 ??1LEXB@@UAE@XZ 004706f0 f lex.obj - 0001:0006f780 ?AssertValid@LEXB@@QAEXK@Z 00470780 f lex.obj - 0001:0006f980 ?MarkMem@LEXB@@UAEXXZ 00470980 f lex.obj - 0001:0006f9f0 ?GetStnFile@LEXB@@QAEXPAVSTN@@@Z 004709f0 f lex.obj - 0001:0006fab0 ?_FFetchRgch@LEXB@@IAEHPADJ@Z 00470ab0 f lex.obj - 0001:0006fe10 ?_FSkipWhiteSpace@LEXB@@IAEHXZ 00470e10 f lex.obj - 0001:00070530 ?FGetTok@LEXB@@UAEHPAUTOK@@@Z 00471530 f lex.obj - 0001:00070be0 ?CbExtra@LEXB@@UAEJXZ 00471be0 f lex.obj - 0001:00070c30 ?GetExtra@LEXB@@UAEXPAX@Z 00471c30 f lex.obj - 0001:00070cb0 ?_ReadNumber@LEXB@@MAEXPAJDJJ@Z 00471cb0 f lex.obj - 0001:00070da0 ?_FReadHex@LEXB@@IAEHPAJ@Z 00471da0 f lex.obj - 0001:00070f10 ?_FReadControlCh@LEXB@@IAEHPAD@Z 00471f10 f lex.obj - 0001:00071130 ??_GLEXB@@UAEPAXI@Z 00472130 f lex.obj - 0001:00071130 ??_ELEXB@@UAEPAXI@Z 00472130 f lex.obj - 0001:00071170 ?_GrfctCh@LEXB@@IAEKD@Z 00472170 f lex.obj - 0001:00071200 ?CbExtra@GSTB@@QAEJXZ 00472200 f chse.obj - 0001:00071230 ?FWouldBe@BSM@@SGHJ@Z 00472230 f stream.obj - 0001:00071270 ?FIs@BSM@@UAEHJ@Z 00472270 f stream.obj - 0001:000712a0 ?Cls@BSM@@UAEJXZ 004722a0 f stream.obj - 0001:000712d0 ?FWouldBe@BSF@@SGHJ@Z 004722d0 f stream.obj - 0001:00071310 ?FIs@BSF@@UAEHJ@Z 00472310 f stream.obj - 0001:00071340 ?Cls@BSF@@UAEJXZ 00472340 f stream.obj - 0001:00071370 ??0BSM@@QAE@XZ 00472370 f stream.obj - 0001:000713f0 ??1BSM@@UAE@XZ 004723f0 f stream.obj - 0001:00071460 ?SetMinGrow@BSM@@QAEXJ@Z 00472460 f stream.obj - 0001:000714c0 ?FetchRgb@BSM@@QAEXJJPAX@Z 004724c0 f stream.obj - 0001:00071570 ?FReplace@BSM@@QAEHPAXJJJ@Z 00472570 f stream.obj - 0001:00071700 ?_FEnsureSize@BSM@@IAEHJH@Z 00472700 f stream.obj - 0001:000718d0 ?AssertValid@BSM@@QAEXK@Z 004728d0 f stream.obj - 0001:00071980 ?MarkMem@BSM@@UAEXXZ 00472980 f stream.obj - 0001:000719c0 ??0BSF@@QAE@XZ 004729c0 f stream.obj - 0001:00071a30 ??1BSF@@UAE@XZ 00472a30 f stream.obj - 0001:00071b20 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00472b20 f stream.obj - 0001:00071c40 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00472c40 f stream.obj - 0001:00071eb0 ?_AttemptMerge@BSF@@IAEXJJ@Z 00472eb0 f stream.obj - 0001:000720a0 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 004730a0 f stream.obj - 0001:00072630 ?FReplace@BSF@@QAEHPAXJJJ@Z 00473630 f stream.obj - 0001:00072bf0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 00473bf0 f stream.obj - 0001:00072f40 ?FetchRgb@BSF@@QAEXJJPAX@Z 00473f40 f stream.obj - 0001:00073140 ?FWriteRgb@BSF@@QAEHPAUFLO@@J@Z 00474140 f stream.obj - 0001:00073210 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 00474210 f stream.obj - 0001:00073730 ?AssertValid@BSF@@QAEXK@Z 00474730 f stream.obj - 0001:000739b0 ?MarkMem@BSF@@UAEXXZ 004749b0 f stream.obj - 0001:00073a40 ??_GBSM@@UAEPAXI@Z 00474a40 f stream.obj - 0001:00073a40 ??_EBSM@@UAEPAXI@Z 00474a40 f stream.obj - 0001:00073a80 ??_EBSF@@UAEPAXI@Z 00474a80 f stream.obj - 0001:00073a80 ??_GBSF@@UAEPAXI@Z 00474a80 f stream.obj - 0001:00073ac0 ?FWouldBe@SCCB@@SGHJ@Z 00474ac0 f scrcom.obj - 0001:00073b00 ?FIs@SCCB@@UAEHJ@Z 00474b00 f scrcom.obj - 0001:00073b30 ?Cls@SCCB@@UAEJXZ 00474b30 f scrcom.obj - 0001:00073b60 ??0SCCB@@QAE@XZ 00474b60 f scrcom.obj - 0001:00073c40 ??1SCCB@@UAE@XZ 00474c40 f scrcom.obj - 0001:00073ca0 ?AssertValid@SCCB@@QAEXK@Z 00474ca0 f scrcom.obj - 0001:00073ed0 ?MarkMem@SCCB@@UAEXXZ 00474ed0 f scrcom.obj - 0001:00074090 ?_FInit@SCCB@@IAEHPAVLEXB@@HPAVMSNK@@@Z 00475090 f scrcom.obj - 0001:000743c0 ?_Free@SCCB@@IAEXXZ 004753c0 f scrcom.obj - 0001:000745f0 ?PscptCompileLex@SCCB@@UAEPAVSCPT@@PAVLEXB@@HPAVMSNK@@J@Z 004755f0 f scrcom.obj - 0001:000749b0 ?PscptCompileFil@SCCB@@UAEPAVSCPT@@PAVFIL@@HPAVMSNK@@@Z 004759b0 f scrcom.obj - 0001:00074b40 ?PscptCompileFni@SCCB@@UAEPAVSCPT@@PAVFNI@@HPAVMSNK@@@Z 00475b40 f scrcom.obj - 0001:00074c80 ?_FGetTok@SCCB@@MAEHPAUTOK@@@Z 00475c80 f scrcom.obj - 0001:00074d90 ?_SwCur@SCCB@@MAEFXZ 00475d90 f scrcom.obj - 0001:00074de0 ?_SwBack@SCCB@@MAEFXZ 00475de0 f scrcom.obj - 0001:00074e30 ?_SwMin@SCCB@@MAEFXZ 00475e30 f scrcom.obj - 0001:00074e80 ?_ReportError@SCCB@@MAEXPAD@Z 00475e80 f scrcom.obj - 0001:00075080 ?_PushLw@SCCB@@IAEXJ@Z 00476080 f scrcom.obj - 0001:000751e0 ?_PushString@SCCB@@IAEXPAVSTN@@@Z 004761e0 f scrcom.obj - 0001:00075390 ?_PushOp@SCCB@@IAEXJ@Z 00476390 f scrcom.obj - 0001:000754f0 ?_EndOp@SCCB@@IAEXXZ 004764f0 f scrcom.obj - 0001:00075660 ?SuHighLow@@YGGEE@Z 00476660 f scrcom.obj - 0001:00075690 ?_PushVarOp@SCCB@@IAEXJPAURTVN@@@Z 00476690 f scrcom.obj - 0001:00075840 ?_FFindLabel@SCCB@@IAEHPAVSTN@@PAJ@Z 00476840 f scrcom.obj - 0001:00075960 ?_AddLabel@SCCB@@IAEXPAVSTN@@@Z 00476960 f scrcom.obj - 0001:00075b90 ?_PushLabelRequest@SCCB@@IAEXPAVSTN@@@Z 00476b90 f scrcom.obj - 0001:00075d70 ?_AddLabelLw@SCCB@@IAEXJ@Z 00476d70 f scrcom.obj - 0001:00075e00 ?_PushLabelRequestLw@SCCB@@IAEXJ@Z 00476e00 f scrcom.obj - 0001:00075e90 ?_OpFromStn@SCCB@@MAEJPAVSTN@@@Z 00476e90 f scrcom.obj - 0001:00075f50 ?_OpFromStnRgszop@SCCB@@IAEJPAVSTN@@PAUSZOP@@@Z 00476f50 f scrcom.obj - 0001:00076050 ?_FGetStnFromOp@SCCB@@MAEHJPAVSTN@@@Z 00477050 f scrcom.obj - 0001:00076110 ?_FGetStnFromOpRgszop@SCCB@@IAEHJPAVSTN@@PAUSZOP@@@Z 00477110 f scrcom.obj - 0001:00076210 ?_CompilePost@SCCB@@MAEXXZ 00477210 f scrcom.obj - 0001:00076850 ?_PtomeFromTt@@YGPAUTOME@@JH@Z 00477850 f scrcom.obj - 0001:000768c0 ?_FResolveToOpl@SCCB@@IAEHJJPAJ@Z 004778c0 f scrcom.obj - 0001:00076cb0 ?_FAddToTree@SCCB@@IAEHPAUETN@@PAJ@Z 00477cb0 f scrcom.obj - 0001:000778f0 ??0SCPT@@IAE@XZ 004788f0 f scrcom.obj - 0001:00077930 ?_SetDepth@SCCB@@IAEXPAUETN@@H@Z 00478930 f scrcom.obj - 0001:00077c40 ?_FConstEtn@SCCB@@IAEHJPAJ@Z 00478c40 f scrcom.obj - 0001:00077d80 ?_FCombineConstValues@SCCB@@IAEHJJJPAJ@Z 00478d80 f scrcom.obj - 0001:00078060 ?_EmitCode@SCCB@@IAEXJKPAJ@Z 00479060 f scrcom.obj - 0001:00078b70 ?_CstFromName@SCCB@@IAEJJ@Z 00479b70 f scrcom.obj - 0001:00078c70 ?_BeginCst@SCCB@@IAEXJJ@Z 00479c70 f scrcom.obj - 0001:00078fe0 ?_FHandleCst@SCCB@@IAEHJ@Z 00479fe0 f scrcom.obj - 0001:00079690 ?_EmitVarAccess@SCCB@@IAEXJPAURTVN@@PAJ11@Z 0047a690 f scrcom.obj - 0001:00079ac0 ?_PushOpFromName@SCCB@@IAEXJKJ@Z 0047aac0 f scrcom.obj - 0001:00079ca0 ?_FGetArop@SCCB@@IAEHPAVSTN@@PAUAROP@@PAJ222PAH@Z 0047aca0 f scrcom.obj - 0001:00079e00 ?_FGetOpFromName@SCCB@@MAEHPAVSTN@@PAJ111PAH@Z 0047ae00 f scrcom.obj - 0001:00079e70 ?_AddNameRef@SCCB@@IAEXPAVSTN@@PAJ@Z 0047ae70 f scrcom.obj - 0001:00079fc0 ?_GetIstnNameFromIetn@SCCB@@IAEXJPAJ@Z 0047afc0 f scrcom.obj - 0001:0007a120 ?_GetStnFromIstn@SCCB@@IAEXJPAVSTN@@@Z 0047b120 f scrcom.obj - 0001:0007a260 ?_GetRtvnFromName@SCCB@@IAEXJPAURTVN@@@Z 0047b260 f scrcom.obj - 0001:0007a320 ?_FKeyWord@SCCB@@IAEHPAVSTN@@@Z 0047b320 f scrcom.obj - 0001:0007a440 ?_PushLabelRequestIetn@SCCB@@IAEXJ@Z 0047b440 f scrcom.obj - 0001:0007a4e0 ?_AddLabelIetn@SCCB@@IAEXJ@Z 0047b4e0 f scrcom.obj - 0001:0007a580 ?_PushStringIstn@SCCB@@IAEXJ@Z 0047b580 f scrcom.obj - 0001:0007a600 ?_CompileIn@SCCB@@MAEXXZ 0047b600 f scrcom.obj - 0001:0007ad50 ?FDisassemble@SCCB@@UAEHPAVSCPT@@PAVMSNK@@1@Z 0047bd50 f scrcom.obj - 0001:0007b5f0 ?SetFromStn@RTVN@@QAEXPAVSTN@@@Z 0047c5f0 f scrcom.obj - 0001:0007b840 ?GetStn@RTVN@@QAEXPAVSTN@@@Z 0047c840 f scrcom.obj - 0001:0007bae0 ??_ESCPT@@UAEPAXI@Z 0047cae0 f scrcom.obj - 0001:0007bae0 ??_GSCPT@@UAEPAXI@Z 0047cae0 f scrcom.obj - 0001:0007bb20 ??_ESCCB@@UAEPAXI@Z 0047cb20 f scrcom.obj - 0001:0007bb20 ??_GSCCB@@UAEPAXI@Z 0047cb20 f scrcom.obj - 0001:0007bb60 ?FWouldBe@SCEB@@SGHJ@Z 0047cb60 f screxe.obj - 0001:0007bba0 ?FIs@SCEB@@UAEHJ@Z 0047cba0 f screxe.obj - 0001:0007bbd0 ?Cls@SCEB@@UAEJXZ 0047cbd0 f screxe.obj - 0001:0007bc00 ?FWouldBe@SCPT@@SGHJ@Z 0047cc00 f screxe.obj - 0001:0007bc40 ?FIs@SCPT@@UAEHJ@Z 0047cc40 f screxe.obj - 0001:0007bc70 ?Cls@SCPT@@UAEJXZ 0047cc70 f screxe.obj - 0001:0007bca0 ?FWouldBe@STRG@@SGHJ@Z 0047cca0 f screxe.obj - 0001:0007bce0 ?FIs@STRG@@UAEHJ@Z 0047cce0 f screxe.obj - 0001:0007bd10 ?Cls@STRG@@UAEJXZ 0047cd10 f screxe.obj - 0001:0007bd60 ??0SCEB@@QAE@PAVRCA@@PAVSTRG@@@Z 0047cd60 f screxe.obj - 0001:0007bea0 ??1SCEB@@UAE@XZ 0047cea0 f screxe.obj - 0001:0007bf30 ?Free@SCEB@@UAEXXZ 0047cf30 f screxe.obj - 0001:0007c0a0 ?AssertValid@SCEB@@QAEXK@Z 0047d0a0 f screxe.obj - 0001:0007c310 ?MarkMem@SCEB@@UAEXXZ 0047d310 f screxe.obj - 0001:0007c3c0 ?FRunScript@SCEB@@UAEHPAVSCPT@@PAJJ1PAH@Z 0047d3c0 f screxe.obj - 0001:0007c450 ?FAttachScript@SCEB@@UAEHPAVSCPT@@PAJJ@Z 0047d450 f screxe.obj - 0001:0007c750 ?FResume@SCEB@@UAEHPAJPAH@Z 0047d750 f screxe.obj - 0001:0007cc10 ?_AddParameters@SCEB@@MAEXPAJJ@Z 0047dc10 f screxe.obj - 0001:0007cd80 ?_AddStrings@SCEB@@MAEXPAVGST@@@Z 0047dd80 f screxe.obj - 0001:0007cf40 ?_SwCur@SCEB@@MAEFXZ 0047df40 f screxe.obj - 0001:0007cf90 ?_SwMin@SCEB@@MAEFXZ 0047df90 f screxe.obj - 0001:0007cfe0 ?_FExecVarOp@SCEB@@MAEHJPAURTVN@@@Z 0047dfe0 f screxe.obj - 0001:0007d2a0 ?_FExecOp@SCEB@@MAEHJ@Z 0047e2a0 f screxe.obj - 0001:0007dd60 ?_LwPop@SCEB@@IAEJXZ 0047ed60 f screxe.obj - 0001:0007de30 ?_QlwGet@SCEB@@IAEPAJJ@Z 0047ee30 f screxe.obj - 0001:0007dec0 ?_Error@SCEB@@IAEXH@Z 0047eec0 f screxe.obj - 0001:0007df80 ?_WarnSz@SCEB@@IAAXPADZZ 0047ef80 f screxe.obj - 0001:0007e060 ?_Rotate@SCEB@@IAEXJJ@Z 0047f060 f screxe.obj - 0001:0007e130 ?_Reverse@SCEB@@IAEXJ@Z 0047f130 f screxe.obj - 0001:0007e1f0 ?_DupList@SCEB@@IAEXJ@Z 0047f1f0 f screxe.obj - 0001:0007e300 ?_PopList@SCEB@@IAEXJ@Z 0047f300 f screxe.obj - 0001:0007e3f0 ?_Select@SCEB@@IAEXJJ@Z 0047f3f0 f screxe.obj - 0001:0007e4b0 ?_Match@SCEB@@IAEXJ@Z 0047f4b0 f screxe.obj - 0001:0007e590 ?_RndList@SCEB@@IAEXJ@Z 0047f590 f screxe.obj - 0001:0007e610 ?_CopySubStr@SCEB@@IAEXJJJJ@Z 0047f610 f screxe.obj - 0001:0007e780 ?_ConcatStrs@SCEB@@IAEXJJJ@Z 0047f780 f screxe.obj - 0001:0007e900 ?_LenStr@SCEB@@IAEXJ@Z 0047f900 f screxe.obj - 0001:0007e9d0 ?_FReadStringReg@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0047f9d0 f screxe.obj - 0001:0007ec60 ?_MergeStrings@SCEB@@IAEXKK@Z 0047fc60 f screxe.obj - 0001:0007ef70 ?_NumToStr@SCEB@@IAEXJJ@Z 0047ff70 f screxe.obj - 0001:0007f070 ?_StrToNum@SCEB@@IAEXJJJ@Z 00480070 f screxe.obj - 0001:0007f180 ?_PushVar@SCEB@@MAEXPAVGL@@PAURTVN@@@Z 00480180 f screxe.obj - 0001:0007f290 ?_AssignVar@SCEB@@MAEXPAPAVGL@@PAURTVN@@J@Z 00480290 f screxe.obj - 0001:0007f350 ?_PglrtvmThis@SCEB@@MAEPAVGL@@XZ 00480350 f screxe.obj - 0001:0007f3a0 ?_PpglrtvmThis@SCEB@@MAEPAPAVGL@@XZ 004803a0 f screxe.obj - 0001:0007f3c0 ?_PglrtvmGlobal@SCEB@@MAEPAVGL@@XZ 004803c0 f screxe.obj - 0001:0007f410 ?_PpglrtvmGlobal@SCEB@@MAEPAPAVGL@@XZ 00480410 f screxe.obj - 0001:0007f430 ?_PglrtvmRemote@SCEB@@MAEPAVGL@@J@Z 00480430 f screxe.obj - 0001:0007f480 ?_PpglrtvmRemote@SCEB@@MAEPAPAVGL@@J@Z 00480480 f screxe.obj - 0001:0007f4b0 ?FFindRtvm@@YGHPAVGL@@PAURTVN@@PAJ2@Z 004804b0 f screxe.obj - 0001:0007f670 ?FAssignRtvm@@YGHPAPAVGL@@PAURTVN@@J@Z 00480670 f screxe.obj - 0001:0007f780 ?FReadScript@SCPT@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00480780 f screxe.obj - 0001:0007f8b0 ?PscptRead@SCPT@@SGPAV1@PAVCFL@@KK@Z 004808b0 f screxe.obj - 0001:0007faf0 ??1SCPT@@UAE@XZ 00480af0 f screxe.obj - 0001:0007fba0 ?FSaveToChunk@SCPT@@QAEHPAVCFL@@KKH@Z 00480ba0 f screxe.obj - 0001:0007feb0 ?AssertValid@SCPT@@QAEXK@Z 00480eb0 f screxe.obj - 0001:0007ff80 ?MarkMem@SCPT@@UAEXXZ 00480f80 f screxe.obj - 0001:0007fff0 ??0STRG@@QAE@XZ 00480ff0 f screxe.obj - 0001:00080060 ??1STRG@@UAE@XZ 00481060 f screxe.obj - 0001:000800f0 ?AssertValid@STRG@@QAEXK@Z 004810f0 f screxe.obj - 0001:00080160 ?MarkMem@STRG@@UAEXXZ 00481160 f screxe.obj - 0001:000801b0 ?FPut@STRG@@QAEHJPAVSTN@@@Z 004811b0 f screxe.obj - 0001:000802c0 ?FGet@STRG@@QAEHJPAVSTN@@@Z 004812c0 f screxe.obj - 0001:000803b0 ?FAdd@STRG@@QAEHPAJPAVSTN@@@Z 004813b0 f screxe.obj - 0001:000804c0 ?Delete@STRG@@QAEXJ@Z 004814c0 f screxe.obj - 0001:00080540 ?FMove@STRG@@QAEHJJ@Z 00481540 f screxe.obj - 0001:00080630 ?_FFind@STRG@@IAEHJPAJ@Z 00481630 f screxe.obj - 0001:00080740 ?_FEnsureGst@STRG@@IAEHXZ 00481740 f screxe.obj - 0001:00080810 ??_GSCEB@@UAEPAXI@Z 00481810 f screxe.obj - 0001:00080810 ??_ESCEB@@UAEPAXI@Z 00481810 f screxe.obj - 0001:00080850 ??_ESTRG@@UAEPAXI@Z 00481850 f screxe.obj - 0001:00080850 ??_GSTRG@@UAEPAXI@Z 00481850 f screxe.obj - 0001:00080890 ?FWouldBe@GRPB@@SGHJ@Z 00481890 f groups.obj - 0001:000808d0 ?FIs@GRPB@@UAEHJ@Z 004818d0 f groups.obj - 0001:00080900 ?Cls@GRPB@@UAEJXZ 00481900 f groups.obj - 0001:00080930 ?FWouldBe@GLB@@SGHJ@Z 00481930 f groups.obj - 0001:00080970 ?FIs@GLB@@UAEHJ@Z 00481970 f groups.obj - 0001:000809a0 ?Cls@GLB@@UAEJXZ 004819a0 f groups.obj - 0001:000809d0 ?FWouldBe@GL@@SGHJ@Z 004819d0 f groups.obj - 0001:00080a10 ?FIs@GL@@UAEHJ@Z 00481a10 f groups.obj - 0001:00080a40 ?Cls@GL@@UAEJXZ 00481a40 f groups.obj - 0001:00080a70 ?FWouldBe@AL@@SGHJ@Z 00481a70 f groups.obj - 0001:00080ab0 ?FIs@AL@@UAEHJ@Z 00481ab0 f groups.obj - 0001:00080ae0 ?Cls@AL@@UAEJXZ 00481ae0 f groups.obj - 0001:00080b10 ?FWouldBe@GGB@@SGHJ@Z 00481b10 f groups.obj - 0001:00080b50 ?FIs@GGB@@UAEHJ@Z 00481b50 f groups.obj - 0001:00080b80 ?Cls@GGB@@UAEJXZ 00481b80 f groups.obj - 0001:00080bb0 ?FWouldBe@GG@@SGHJ@Z 00481bb0 f groups.obj - 0001:00080bf0 ?FIs@GG@@UAEHJ@Z 00481bf0 f groups.obj - 0001:00080c20 ?Cls@GG@@UAEJXZ 00481c20 f groups.obj - 0001:00080c50 ?FWouldBe@AG@@SGHJ@Z 00481c50 f groups.obj - 0001:00080c90 ?FIs@AG@@UAEHJ@Z 00481c90 f groups.obj - 0001:00080cc0 ?Cls@AG@@UAEJXZ 00481cc0 f groups.obj - 0001:00080cf0 ??1GRPB@@UAE@XZ 00481cf0 f groups.obj - 0001:00080d60 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00481d60 f groups.obj - 0001:00080f60 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00481f60 f groups.obj - 0001:00081120 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00482120 f groups.obj - 0001:00081180 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00482180 f groups.obj - 0001:00081350 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 00482350 f groups.obj - 0001:000814d0 ?AssertValid@GRPB@@QAEXK@Z 004824d0 f groups.obj - 0001:00081660 ?MarkMem@GRPB@@UAEXXZ 00482660 f groups.obj - 0001:000816d0 ??0GLB@@IAE@J@Z 004826d0 f groups.obj - 0001:00081760 ?QvGet@GLB@@QAEPAXJ@Z 00482760 f groups.obj - 0001:000817f0 ?Get@GLB@@QAEXJPAX@Z 004827f0 f groups.obj - 0001:00081880 ?Put@GLB@@QAEXJPAX@Z 00482880 f groups.obj - 0001:00081930 ?PvLock@GLB@@QAEPAXJ@Z 00482930 f groups.obj - 0001:00081970 ?SetMinGrow@GLB@@QAEXJ@Z 00482970 f groups.obj - 0001:00081a00 ?AssertValid@GLB@@QAEXK@Z 00482a00 f groups.obj - 0001:00081aa0 ?PglNew@GL@@SGPAV1@JJ@Z 00482aa0 f groups.obj - 0001:00081bd0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 00482bd0 f groups.obj - 0001:00081d90 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 00482d90 f groups.obj - 0001:00081df0 ??0GL@@IAE@J@Z 00482df0 f groups.obj - 0001:00081e50 ?FFree@GL@@UAEHJ@Z 00482e50 f groups.obj - 0001:00081ec0 ?CbOnFile@GL@@UAEJXZ 00482ec0 f groups.obj - 0001:00081f20 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00482f20 f groups.obj - 0001:000820f0 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 004830f0 f groups.obj - 0001:00082340 ?FInsert@GL@@QAEHJPAXJ@Z 00483340 f groups.obj - 0001:000824c0 ?Delete@GL@@UAEXJ@Z 004834c0 f groups.obj - 0001:00082520 ?Delete@GL@@QAEXJJ@Z 00483520 f groups.obj - 0001:00082690 ?Move@GL@@QAEXJJ@Z 00483690 f groups.obj - 0001:00082750 ?FAdd@GL@@UAEHPAXPAJ@Z 00483750 f groups.obj - 0001:00082800 ?FPop@GL@@QAEHPAX@Z 00483800 f groups.obj - 0001:00082910 ?FSetIvMac@GL@@QAEHJ@Z 00483910 f groups.obj - 0001:00082b20 ?FEnsureSpace@GL@@QAEHJK@Z 00483b20 f groups.obj - 0001:00082bf0 ?PalNew@AL@@SGPAV1@JJ@Z 00483bf0 f groups.obj - 0001:00082d20 ?PalRead@AL@@SGPAV1@PAVBLCK@@PAF1@Z 00483d20 f groups.obj - 0001:00082ee0 ??0AL@@IAE@J@Z 00483ee0 f groups.obj - 0001:00082f50 ?CbFromCbit@@YGJJ@Z 00483f50 f groups.obj - 0001:00082f80 ?CbOnFile@AL@@UAEJXZ 00483f80 f groups.obj - 0001:00082ff0 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 00483ff0 f groups.obj - 0001:000831e0 ?_Qb1@GRPB@@IAEPAEJ@Z 004841e0 f groups.obj - 0001:00083210 ?_Qb2@GRPB@@IAEPAEJ@Z 00484210 f groups.obj - 0001:00083240 ?_Cb1@GRPB@@IAEJXZ 00484240 f groups.obj - 0001:00083270 ?_FRead@AL@@IAEHPAVBLCK@@PAF1@Z 00484270 f groups.obj - 0001:000834f0 ??0GRPB@@IAE@XZ 004844f0 f groups.obj - 0001:00083530 ?FFree@AL@@UAEHJ@Z 00484530 f groups.obj - 0001:000835d0 ?_Qgrfbit@AL@@AAEPAEJ@Z 004845d0 f groups.obj - 0001:00083610 ?FEnsureSpace@AL@@QAEHJK@Z 00484610 f groups.obj - 0001:00083700 ?FAdd@AL@@UAEHPAXPAJ@Z 00484700 f groups.obj - 0001:00083900 ?Delete@AL@@UAEXJ@Z 00484900 f groups.obj - 0001:00083b80 ?AssertValid@AL@@QAEXK@Z 00484b80 f groups.obj - 0001:00083c90 ?_Cb2@GRPB@@IAEJXZ 00484c90 f groups.obj - 0001:00083cc0 ??0GGB@@IAE@JH@Z 00484cc0 f groups.obj - 0001:00083d80 ?CbOnFile@GGB@@UAEJXZ 00484d80 f groups.obj - 0001:00083de0 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00484de0 f groups.obj - 0001:00084030 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 00485030 f groups.obj - 0001:00084340 ?FFree@GGB@@UAEHJ@Z 00485340 f groups.obj - 0001:00084480 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 00485480 f groups.obj - 0001:000844c0 ?FEnsureSpace@GGB@@QAEHJJK@Z 004854c0 f groups.obj - 0001:00084620 ?SetMinGrow@GGB@@QAEXJJ@Z 00485620 f groups.obj - 0001:000846c0 ?_RemoveRgb@GGB@@IAEXJJ@Z 004856c0 f groups.obj - 0001:00084810 ?_AdjustLocs@GGB@@IAEXJJJ@Z 00485810 f groups.obj - 0001:00084980 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00485980 f groups.obj - 0001:00084a90 ?PvFixedLock@GGB@@QAEPAXJPAJ@Z 00485a90 f groups.obj - 0001:00084af0 ?GetFixed@GGB@@QAEXJPAX@Z 00485af0 f groups.obj - 0001:00084c00 ?PutFixed@GGB@@QAEXJPAX@Z 00485c00 f groups.obj - 0001:00084d40 ?Cb@GGB@@QAEJJ@Z 00485d40 f groups.obj - 0001:00084df0 ?QvGet@GGB@@QAEPAXJPAJ@Z 00485df0 f groups.obj - 0001:00084f00 ?PvLock@GGB@@QAEPAXJPAJ@Z 00485f00 f groups.obj - 0001:00084f60 ?Get@GGB@@QAEXJPAX@Z 00485f60 f groups.obj - 0001:00085050 ?FPut@GGB@@QAEHJJPAX@Z 00486050 f groups.obj - 0001:000851d0 ?GetRgb@GGB@@QAEXJJJPAX@Z 004861d0 f groups.obj - 0001:000852e0 ?PutRgb@GGB@@QAEXJJJPAX@Z 004862e0 f groups.obj - 0001:00085420 ?DeleteRgb@GGB@@QAEXJJJ@Z 00486420 f groups.obj - 0001:00085610 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00486610 f groups.obj - 0001:000858d0 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 004868d0 f groups.obj - 0001:00085d80 ?Merge@GGB@@QAEXJJ@Z 00486d80 f groups.obj - 0001:00086000 ?AssertValid@GGB@@QAEXK@Z 00487000 f groups.obj - 0001:00086360 ?PggNew@GG@@SGPAV1@JJJ@Z 00487360 f groups.obj - 0001:000864b0 ??0GG@@IAE@J@Z 004874b0 f groups.obj - 0001:000864f0 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 004874f0 f groups.obj - 0001:000866c0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 004876c0 f groups.obj - 0001:00086720 ?FInsert@GG@@QAEHJJPAX0@Z 00487720 f groups.obj - 0001:000869d0 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 004879d0 f groups.obj - 0001:00086ca0 ?FAdd@GG@@UAEHJPAJPAX1@Z 00487ca0 f groups.obj - 0001:00086d60 ?Delete@GG@@UAEXJ@Z 00487d60 f groups.obj - 0001:00086ea0 ?Move@GG@@QAEXJJ@Z 00487ea0 f groups.obj - 0001:00086f50 ?AssertValid@GG@@QAEXK@Z 00487f50 f groups.obj - 0001:00086fc0 ?PagNew@AG@@SGPAV1@JJJ@Z 00487fc0 f groups.obj - 0001:00087110 ??0AG@@IAE@J@Z 00488110 f groups.obj - 0001:00087150 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00488150 f groups.obj - 0001:00087320 ?FAdd@AG@@UAEHJPAJPAX1@Z 00488320 f groups.obj - 0001:000876b0 ?Delete@AG@@UAEXJ@Z 004886b0 f groups.obj - 0001:00087860 ?AssertValid@AG@@QAEXK@Z 00488860 f groups.obj - 0001:000878d0 ??_GGRPB@@UAEPAXI@Z 004888d0 f groups.obj - 0001:000878d0 ??_EGRPB@@UAEPAXI@Z 004888d0 f groups.obj - 0001:00087910 ??_GGG@@UAEPAXI@Z 00488910 f groups.obj - 0001:00087910 ??_EGG@@UAEPAXI@Z 00488910 f groups.obj - 0001:00087950 ??_EAG@@UAEPAXI@Z 00488950 f groups.obj - 0001:00087950 ??_GAG@@UAEPAXI@Z 00488950 f groups.obj - 0001:00087990 ??_EGLB@@UAEPAXI@Z 00488990 f groups.obj - 0001:00087990 ??_GGLB@@UAEPAXI@Z 00488990 f groups.obj - 0001:000879d0 ??_EGL@@UAEPAXI@Z 004889d0 f groups.obj - 0001:000879d0 ??_GGL@@UAEPAXI@Z 004889d0 f groups.obj - 0001:00087a10 ??_EAL@@UAEPAXI@Z 00488a10 f groups.obj - 0001:00087a10 ??_GAL@@UAEPAXI@Z 00488a10 f groups.obj - 0001:00087a50 ??_EGGB@@UAEPAXI@Z 00488a50 f groups.obj - 0001:00087a50 ??_GGGB@@UAEPAXI@Z 00488a50 f groups.obj - 0001:00087a90 ??1GGB@@UAE@XZ 00488a90 f groups.obj - 0001:00087ac0 ??1GG@@UAE@XZ 00488ac0 f groups.obj - 0001:00087af0 ??1AG@@UAE@XZ 00488af0 f groups.obj - 0001:00087b20 ??1AL@@UAE@XZ 00488b20 f groups.obj - 0001:00087b50 ?FWouldBe@GSTB@@SGHJ@Z 00488b50 f groups2.obj - 0001:00087b90 ?FIs@GSTB@@UAEHJ@Z 00488b90 f groups2.obj - 0001:00087bc0 ?Cls@GSTB@@UAEJXZ 00488bc0 f groups2.obj - 0001:00087bf0 ?FWouldBe@GST@@SGHJ@Z 00488bf0 f groups2.obj - 0001:00087c30 ?FIs@GST@@UAEHJ@Z 00488c30 f groups2.obj - 0001:00087c60 ?Cls@GST@@UAEJXZ 00488c60 f groups2.obj - 0001:00087c90 ?FWouldBe@AST@@SGHJ@Z 00488c90 f groups2.obj - 0001:00087cd0 ?FIs@AST@@UAEHJ@Z 00488cd0 f groups2.obj - 0001:00087d00 ?Cls@AST@@UAEJXZ 00488d00 f groups2.obj - 0001:00087d30 ??0GSTB@@IAE@JK@Z 00488d30 f groups2.obj - 0001:00087e30 ?CbOnFile@GSTB@@UAEJXZ 00488e30 f groups2.obj - 0001:00087ea0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 00488ea0 f groups2.obj - 0001:00088170 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 00489170 f groups2.obj - 0001:000884d0 ?FEnsureSpace@GSTB@@QAEHJJK@Z 004894d0 f groups2.obj - 0001:00088610 ?SetMinGrow@GSTB@@QAEXJJ@Z 00489610 f groups2.obj - 0001:000886a0 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 004896a0 f groups2.obj - 0001:00088770 ?FPutRgch@GSTB@@QAEHJPADJ@Z 00489770 f groups2.obj - 0001:00088940 ?FPutStn@GSTB@@QAEHJPAVSTN@@@Z 00489940 f groups2.obj - 0001:00088a10 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 00489a10 f groups2.obj - 0001:00088b20 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 00489b20 f groups2.obj - 0001:00088c30 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 00489c30 f groups2.obj - 0001:00088d00 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 00489d00 f groups2.obj - 0001:00088e70 ?GetExtra@GSTB@@QAEXJPAX@Z 00489e70 f groups2.obj - 0001:00088f80 ?PutExtra@GSTB@@QAEXJPAX@Z 00489f80 f groups2.obj - 0001:000890c0 ?_Qst@GSTB@@IAEPADJ@Z 0048a0c0 f groups2.obj - 0001:00089120 ?_AppendRgch@GSTB@@IAEXPADJ@Z 0048a120 f groups2.obj - 0001:000891e0 ?_RemoveSt@GSTB@@IAEXJ@Z 0048a1e0 f groups2.obj - 0001:00089310 ?_SwapBytesRgbst@GSTB@@IAEXXZ 0048a310 f groups2.obj - 0001:000893a0 ?_TranslateGrst@GSTB@@IAEXFH@Z 0048a3a0 f groups2.obj - 0001:00089460 ?_FTranslateGrst@GSTB@@IAEHF@Z 0048a460 f groups2.obj - 0001:00089820 ?FFree@GSTB@@UAEHJ@Z 0048a820 f groups2.obj - 0001:000898f0 ?TranslateSt@@YGXPADFH@Z 0048a8f0 f groups2.obj - 0001:00089920 ?AssertValid@GSTB@@QAEXK@Z 0048a920 f groups2.obj - 0001:00089c00 ?PgstNew@GST@@SGPAV1@JJJ@Z 0048ac00 f groups2.obj - 0001:00089d90 ?SetSt@STN@@QAEXPAD@Z 0048ad90 f groups2.obj - 0001:00089dd0 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 0048add0 f groups2.obj - 0001:00089f90 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 0048af90 f groups2.obj - 0001:0008a080 ?FFindRgch@GST@@UAEHPADJPAJK@Z 0048b080 f groups2.obj - 0001:0008a230 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 0048b230 f groups2.obj - 0001:0008a430 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 0048b430 f groups2.obj - 0001:0008a520 ?Delete@GST@@UAEXJ@Z 0048b520 f groups2.obj - 0001:0008a650 ?Move@GST@@QAEXJJ@Z 0048b650 f groups2.obj - 0001:0008a710 ?AssertValid@GST@@QAEXK@Z 0048b710 f groups2.obj - 0001:0008a780 ?PastNew@AST@@SGPAV1@JJJ@Z 0048b780 f groups2.obj - 0001:0008a910 ?_Bst@GSTB@@IAEJJ@Z 0048b910 f groups2.obj - 0001:0008a950 ?_Qbst@GSTB@@IAEPAJJ@Z 0048b950 f groups2.obj - 0001:0008a990 ??0GST@@IAE@J@Z 0048b990 f groups2.obj - 0001:0008a9d0 ??0AST@@IAE@J@Z 0048b9d0 f groups2.obj - 0001:0008aa10 ?PastRead@AST@@SGPAV1@PAVBLCK@@PAF1@Z 0048ba10 f groups2.obj - 0001:0008abd0 ?FAddRgch@AST@@UAEHPADJPAXPAJ@Z 0048bbd0 f groups2.obj - 0001:0008ae80 ?Delete@AST@@UAEXJ@Z 0048be80 f groups2.obj - 0001:0008b040 ?AssertValid@AST@@QAEXK@Z 0048c040 f groups2.obj - 0001:0008b0b0 ??_EGST@@UAEPAXI@Z 0048c0b0 f groups2.obj - 0001:0008b0b0 ??_GGST@@UAEPAXI@Z 0048c0b0 f groups2.obj - 0001:0008b0f0 ??_EAST@@UAEPAXI@Z 0048c0f0 f groups2.obj - 0001:0008b0f0 ??_GAST@@UAEPAXI@Z 0048c0f0 f groups2.obj - 0001:0008b130 ??_EGSTB@@UAEPAXI@Z 0048c130 f groups2.obj - 0001:0008b130 ??_GGSTB@@UAEPAXI@Z 0048c130 f groups2.obj - 0001:0008b170 ??1GSTB@@UAE@XZ 0048c170 f groups2.obj - 0001:0008b1a0 ??1GST@@UAE@XZ 0048c1a0 f groups2.obj - 0001:0008b1d0 ??1AST@@UAE@XZ 0048c1d0 f groups2.obj - 0001:0008b200 ?FWouldBe@TXTB@@SGHJ@Z 0048c200 f rtxt.obj - 0001:0008b240 ?FIs@TXTB@@UAEHJ@Z 0048c240 f rtxt.obj - 0001:0008b270 ?Cls@TXTB@@UAEJXZ 0048c270 f rtxt.obj - 0001:0008b2a0 ?FWouldBe@TXPD@@SGHJ@Z 0048c2a0 f rtxt.obj - 0001:0008b2e0 ?FIs@TXPD@@UAEHJ@Z 0048c2e0 f rtxt.obj - 0001:0008b310 ?Cls@TXPD@@UAEJXZ 0048c310 f rtxt.obj - 0001:0008b340 ?FWouldBe@TXRD@@SGHJ@Z 0048c340 f rtxt.obj - 0001:0008b380 ?FIs@TXRD@@UAEHJ@Z 0048c380 f rtxt.obj - 0001:0008b3b0 ?Cls@TXRD@@UAEJXZ 0048c3b0 f rtxt.obj - 0001:0008b3e0 ?FWouldBe@TXTG@@SGHJ@Z 0048c3e0 f rtxt.obj - 0001:0008b420 ?FIs@TXTG@@UAEHJ@Z 0048c420 f rtxt.obj - 0001:0008b450 ?Cls@TXTG@@UAEJXZ 0048c450 f rtxt.obj - 0001:0008b480 ?FWouldBe@TXLG@@SGHJ@Z 0048c480 f rtxt.obj - 0001:0008b4c0 ?FIs@TXLG@@UAEHJ@Z 0048c4c0 f rtxt.obj - 0001:0008b4f0 ?Cls@TXLG@@UAEJXZ 0048c4f0 f rtxt.obj - 0001:0008b520 ?FWouldBe@TXRG@@SGHJ@Z 0048c520 f rtxt.obj - 0001:0008b560 ?FIs@TXRG@@UAEHJ@Z 0048c560 f rtxt.obj - 0001:0008b590 ?Cls@TXRG@@UAEJXZ 0048c590 f rtxt.obj - 0001:0008b5c0 ?FWouldBe@RTUN@@SGHJ@Z 0048c5c0 f rtxt.obj - 0001:0008b600 ?FIs@RTUN@@UAEHJ@Z 0048c600 f rtxt.obj - 0001:0008b630 ?Cls@RTUN@@UAEJXZ 0048c630 f rtxt.obj - 0001:0008b660 ?AssertValid@TXTB@@QAEXK@Z 0048c660 f rtxt.obj - 0001:0008b840 ?MarkMem@TXTB@@UAEXXZ 0048c840 f rtxt.obj - 0001:0008b8b0 ??0TXTB@@IAE@PAVDOCB@@K@Z 0048c8b0 f rtxt.obj - 0001:0008b910 ??1TXTB@@MAE@XZ 0048c910 f rtxt.obj - 0001:0008b9a0 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 0048c9a0 f rtxt.obj - 0001:0008bbe0 ?_FLoad@TXTB@@MAEHF@Z 0048cbe0 f rtxt.obj - 0001:0008bcd0 ?CpMac@TXTB@@QAEJXZ 0048ccd0 f rtxt.obj - 0001:0008bd60 ?SuspendUndo@TXTB@@UAEXXZ 0048cd60 f rtxt.obj - 0001:0008bdb0 ?ResumeUndo@TXTB@@UAEXXZ 0048cdb0 f rtxt.obj - 0001:0008be40 ?FSetUndo@TXTB@@UAEHJJJ@Z 0048ce40 f rtxt.obj - 0001:0008bed0 ?CancelUndo@TXTB@@UAEXXZ 0048ced0 f rtxt.obj - 0001:0008bf00 ?CommitUndo@TXTB@@UAEXXZ 0048cf00 f rtxt.obj - 0001:0008bf30 ?BumpCombineUndo@TXTB@@UAEXXZ 0048cf30 f rtxt.obj - 0001:0008bf90 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 0048cf90 f rtxt.obj - 0001:0008c1e0 ?HideSel@TXTB@@UAEXXZ 0048d1e0 f rtxt.obj - 0001:0008c260 ?SetSel@TXTB@@UAEXJJJ@Z 0048d260 f rtxt.obj - 0001:0008c2f0 ?ShowSel@TXTB@@UAEXXZ 0048d2f0 f rtxt.obj - 0001:0008c370 ?_CacheRange@TXTB@@MAEXJJ@Z 0048d370 f rtxt.obj - 0001:0008c680 ?_InvalCache@TXTB@@MAEXJJJ@Z 0048d680 f rtxt.obj - 0001:0008c7b0 ?_ChFetch@TXTB@@MAEDJ@Z 0048d7b0 f rtxt.obj - 0001:0008c860 ?FetchRgch@TXTB@@UAEXJJPAD@Z 0048d860 f rtxt.obj - 0001:0008c950 ?FMinPara@TXTB@@QAEHJ@Z 0048d950 f rtxt.obj - 0001:0008ca80 ?CpMinPara@TXTB@@QAEJJ@Z 0048da80 f rtxt.obj - 0001:0008cbc0 ?CpLimPara@TXTB@@QAEJJ@Z 0048dbc0 f rtxt.obj - 0001:0008cd30 ?CpPrev@TXTB@@QAEJJH@Z 0048dd30 f rtxt.obj - 0001:0008ce40 ?LowerRgch@@YGXPADJ@Z 0048de40 f rtxt.obj - 0001:0008ce60 ?ChLower@@YGDD@Z 0048de60 f rtxt.obj - 0001:0008ce80 ?CpNext@TXTB@@QAEJJH@Z 0048de80 f rtxt.obj - 0001:0008cfb0 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 0048dfb0 f rtxt.obj - 0001:0008d0d0 ?SetDxpDef@TXTB@@UAEXJ@Z 0048e0d0 f rtxt.obj - 0001:0008d190 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 0048e190 f rtxt.obj - 0001:0008d2c0 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 0048e2c0 f rtxt.obj - 0001:0008d4b0 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 0048e4b0 f rtxt.obj - 0001:0008d650 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 0048e650 f rtxt.obj - 0001:0008d730 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 0048e730 f rtxt.obj - 0001:0008d820 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0048e820 f rtxt.obj - 0001:0008d900 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 0048e900 f rtxt.obj - 0001:0008d9e0 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 0048e9e0 f rtxt.obj - 0001:0008daf0 ??0TXPD@@IAE@PAVDOCB@@K@Z 0048eaf0 f rtxt.obj - 0001:0008db30 ?PtxpdNew@TXPD@@SGPAV1@PAVFNI@@PAVBSF@@FPAVDOCB@@K@Z 0048eb30 f rtxt.obj - 0001:0008dc80 ?PddgNew@TXPD@@UAEPAVDDG@@PAUGCB@@@Z 0048ec80 f rtxt.obj - 0001:0008dd10 ?FSaveToFni@TXPD@@UAEHPAVFNI@@H@Z 0048ed10 f rtxt.obj - 0001:0008dfb0 ??0TXRD@@IAE@PAVDOCB@@K@Z 0048efb0 f rtxt.obj - 0001:0008e010 ??1TXRD@@MAE@XZ 0048f010 f rtxt.obj - 0001:0008e0f0 ?AssertValid@TXRD@@QAEXK@Z 0048f0f0 f rtxt.obj - 0001:0008e290 ?MarkMem@TXRD@@UAEXXZ 0048f290 f rtxt.obj - 0001:0008e330 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 0048f330 f rtxt.obj - 0001:0008e410 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 0048f410 f rtxt.obj - 0001:0008e680 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 0048f680 f rtxt.obj - 0001:0008ee70 ?_FOpenArg@TXRD@@MAEHJEFF@Z 0048fe70 f rtxt.obj - 0001:0008f050 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 00490050 f rtxt.obj - 0001:0008f130 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 00490130 f rtxt.obj - 0001:0008f190 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 00490190 f rtxt.obj - 0001:0008f450 ?FSetFni@CFL@@QAEHPAVFNI@@@Z 00490450 f rtxt.obj - 0001:0008f480 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 00490480 f rtxt.obj - 0001:0008f960 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 00490960 f rtxt.obj - 0001:0008f9c0 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 004909c0 f rtxt.obj - 0001:0008fc30 ?_SprmFromSpcp@TXRD@@IAEEK@Z 00490c30 f rtxt.obj - 0001:0008fc60 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 00490c60 f rtxt.obj - 0001:0008fd90 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 00490d90 f rtxt.obj - 0001:000902a0 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 004912a0 f rtxt.obj - 0001:00090500 ?_ReleaseInAg@TXRD@@IAEXJ@Z 00491500 f rtxt.obj - 0001:00090610 ?_AddRefInAg@TXRD@@IAEXJ@Z 00491610 f rtxt.obj - 0001:00090700 ?_FSprmInAg@TXRD@@KGHE@Z 00491700 f rtxt.obj - 0001:00090780 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 00491780 f rtxt.obj - 0001:000907d0 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 004917d0 f rtxt.obj - 0001:00090820 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 00491820 f rtxt.obj - 0001:00090950 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 00491950 f rtxt.obj - 0001:00090a80 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 00491a80 f rtxt.obj - 0001:00090b10 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 00491b10 f rtxt.obj - 0001:00091010 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 00492010 f rtxt.obj - 0001:00091380 ?SwHighLow@@YGFEE@Z 00492380 f rtxt.obj - 0001:000913b0 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 004923b0 f rtxt.obj - 0001:00091740 ?Clear@CHP@@QAEXXZ 00492740 f rtxt.obj - 0001:00091780 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 00492780 f rtxt.obj - 0001:00091960 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 00492960 f rtxt.obj - 0001:00091ab0 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 00492ab0 f rtxt.obj - 0001:00091d20 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 00492d20 f rtxt.obj - 0001:00092010 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 00493010 f rtxt.obj - 0001:00092280 ?FSetUndo@TXRD@@UAEHJJJ@Z 00493280 f rtxt.obj - 0001:00092390 ?CancelUndo@TXRD@@UAEXXZ 00493390 f rtxt.obj - 0001:00092410 ?CommitUndo@TXRD@@UAEXXZ 00493410 f rtxt.obj - 0001:00092590 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 00493590 f rtxt.obj - 0001:00092740 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 00493740 f rtxt.obj - 0001:00092820 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 00493820 f rtxt.obj - 0001:00092d70 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 00493d70 f rtxt.obj - 0001:00093000 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 00494000 f rtxt.obj - 0001:00093220 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 00494220 f rtxt.obj - 0001:00093350 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 00494350 f rtxt.obj - 0001:000934a0 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 004944a0 f rtxt.obj - 0001:000939d0 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 004949d0 f rtxt.obj - 0001:00093d90 ?FFetchObject@TXRD@@QAEHJPAJPAPAX0@Z 00494d90 f rtxt.obj - 0001:00093fe0 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 00494fe0 f rtxt.obj - 0001:000942b0 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 004952b0 f rtxt.obj - 0001:00094490 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 00495490 f rtxt.obj - 0001:000945e0 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 004955e0 f rtxt.obj - 0001:000946f0 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004956f0 f rtxt.obj - 0001:00094850 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00495850 f rtxt.obj - 0001:00094940 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 00495940 f rtxt.obj - 0001:00094b50 ??1RTUN@@UAE@XZ 00495b50 f rtxt.obj - 0001:00094bb0 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 00495bb0 f rtxt.obj - 0001:00094f60 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 00495f60 f rtxt.obj - 0001:00094fc0 ?FCombine@RTUN@@QAEHPAV1@@Z 00495fc0 f rtxt.obj - 0001:00095250 ?AssertValid@RTUN@@QAEXK@Z 00496250 f rtxt.obj - 0001:00095320 ?MarkMem@RTUN@@UAEXXZ 00496320 f rtxt.obj - 0001:000953b0 ??_ETXTB@@MAEPAXI@Z 004963b0 f rtxt.obj - 0001:000953b0 ??_GTXTB@@MAEPAXI@Z 004963b0 f rtxt.obj - 0001:000953f0 ??_GTXPD@@UAEPAXI@Z 004963f0 f rtxt.obj - 0001:000953f0 ??_ETXPD@@UAEPAXI@Z 004963f0 f rtxt.obj - 0001:00095430 ??_GTXRD@@MAEPAXI@Z 00496430 f rtxt.obj - 0001:00095430 ??_ETXRD@@MAEPAXI@Z 00496430 f rtxt.obj - 0001:00095470 ??0RTUN@@QAE@XZ 00496470 f rtxt.obj - 0001:000954b0 ??0UNDB@@IAE@XZ 004964b0 f rtxt.obj - 0001:000954f0 ??_GUNDB@@UAEPAXI@Z 004964f0 f rtxt.obj - 0001:000954f0 ??_EUNDB@@UAEPAXI@Z 004964f0 f rtxt.obj - 0001:00095530 ??_GRTUN@@UAEPAXI@Z 00496530 f rtxt.obj - 0001:00095530 ??_ERTUN@@UAEPAXI@Z 00496530 f rtxt.obj - 0001:00095570 ??1UNDB@@UAE@XZ 00496570 f rtxt.obj - 0001:000955a0 ??1TXPD@@UAE@XZ 004965a0 f rtxt.obj - 0001:000955d0 ??_9@$BBBE@A 004965d0 f rtxt.obj - 0001:000955e0 ??_9@$BBBI@A 004965e0 f rtxt.obj - 0001:000955f0 ?AssertValid@CHR@@QAEXK@Z 004965f0 f rtxt2.obj - 0001:000956e0 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 004966e0 f rtxt2.obj - 0001:00095ab0 ?GetNextRun@CHR@@QAEXH@Z 00496ab0 f rtxt2.obj - 0001:000960a0 ?_FFit@CHR@@AAEHXZ 004970a0 f rtxt2.obj - 0001:00096190 ?_SetToBop@CHR@@AAEXXZ 00497190 f rtxt2.obj - 0001:00096370 ?_SkipIgnores@CHR@@AAEXXZ 00497370 f rtxt2.obj - 0001:00096470 ?_DoTab@CHR@@AAEXXZ 00497470 f rtxt2.obj - 0001:000965d0 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 004975d0 f rtxt2.obj - 0001:000966a0 ??1TXTG@@MAE@XZ 004976a0 f rtxt2.obj - 0001:00096770 ?AssertValid@TXTG@@QAEXK@Z 00497770 f rtxt2.obj - 0001:000968d0 ?MarkMem@TXTG@@UAEXXZ 004978d0 f rtxt2.obj - 0001:00096950 ?_FInit@TXTG@@MAEHXZ 00497950 f rtxt2.obj - 0001:00096b80 ?_Activate@TXTG@@MAEXH@Z 00497b80 f rtxt2.obj - 0001:00096bf0 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 00497bf0 f rtxt2.obj - 0001:00096f50 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00497f50 f rtxt2.obj - 0001:00097440 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00498440 f rtxt2.obj - 0001:000979d0 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 004989d0 f rtxt2.obj - 0001:00098000 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 00499000 f rtxt2.obj - 0001:00098630 ?FBreak@CHR@@QAEHXZ 00499630 f rtxt2.obj - 0001:00098660 ?GetChrd@CHR@@QAEXPAUCHRD@@0@Z 00499660 f rtxt2.obj - 0001:000986f0 ?DypAscent@CHR@@QAEJXZ 004996f0 f rtxt2.obj - 0001:00098720 ?DypDescent@CHR@@QAEJXZ 00499720 f rtxt2.obj - 0001:00098750 ?XpBreak@CHR@@QAEJXZ 00499750 f rtxt2.obj - 0001:00098780 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 00499780 f rtxt2.obj - 0001:00098880 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00499880 f rtxt2.obj - 0001:00098e60 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 00499e60 f rtxt2.obj - 0001:00098fa0 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00499fa0 f rtxt2.obj - 0001:00099200 ?XpMin@CHR@@QAEJXZ 0049a200 f rtxt2.obj - 0001:00099230 ?FReplace@TXTG@@UAEHPADJJJ@Z 0049a230 f rtxt2.obj - 0001:00099350 ?InvalCp@TXTG@@UAEXJJJ@Z 0049a350 f rtxt2.obj - 0001:00099550 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 0049a550 f rtxt2.obj - 0001:00099780 ?GinDefault@GOB@@SGJXZ 0049a780 f rtxt2.obj - 0001:000997a0 ?_Scroll@TXTG@@MAEXJJJJ@Z 0049a7a0 f rtxt2.obj - 0001:00099d70 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 0049ad70 f rtxt2.obj - 0001:00099ea0 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 0049aea0 f rtxt2.obj - 0001:00099fa0 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 0049afa0 f rtxt2.obj - 0001:0009a410 ?Prgch@CHR@@QAEPADXZ 0049b410 f rtxt2.obj - 0001:0009a440 ?CpMin@CHR@@QAEJXZ 0049b440 f rtxt2.obj - 0001:0009a470 ?FObject@CHR@@QAEHXZ 0049b470 f rtxt2.obj - 0001:0009a4a0 ?AcrBack@TXTB@@QAE?AVACR@@XZ 0049b4a0 f rtxt2.obj - 0001:0009a4d0 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 0049b4d0 f rtxt2.obj - 0001:0009a4f0 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 0049b4f0 f rtxt2.obj - 0001:0009a920 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 0049b920 f rtxt2.obj - 0001:0009aa30 ?GetSel@TXTG@@UAEXPAJ0@Z 0049ba30 f rtxt2.obj - 0001:0009aab0 ?SetSel@TXTG@@UAEXJJJ@Z 0049bab0 f rtxt2.obj - 0001:0009acd0 ?ShowSel@TXTG@@QAEXXZ 0049bcd0 f rtxt2.obj - 0001:0009b040 ?HideSel@TXTG@@UAEXXZ 0049c040 f rtxt2.obj - 0001:0009b0d0 ?_SwitchSel@TXTG@@IAEXHJ@Z 0049c0d0 f rtxt2.obj - 0001:0009b200 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 0049c200 f rtxt2.obj - 0001:0009b380 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 0049c380 f rtxt2.obj - 0001:0009b690 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 0049c690 f rtxt2.obj - 0001:0009c180 ?_ScvMax@TXTG@@MAEJH@Z 0049d180 f rtxt2.obj - 0001:0009c200 ?_DxpDoc@TXTG@@MAEJXZ 0049d200 f rtxt2.obj - 0001:0009c230 ?DxpDef@TXTB@@QAEJXZ 0049d230 f rtxt2.obj - 0001:0009c260 ?SetDxpTab@TXTG@@UAEXJ@Z 0049d260 f rtxt2.obj - 0001:0009c2b0 ?SetDxpDoc@TXTG@@UAEXJ@Z 0049d2b0 f rtxt2.obj - 0001:0009c330 ?ShowRuler@TXTG@@UAEXH@Z 0049d330 f rtxt2.obj - 0001:0009c500 ?_DypTrul@TXTG@@MAEJXZ 0049d500 f rtxt2.obj - 0001:0009c550 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 0049d550 f rtxt2.obj - 0001:0009c5a0 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 0049d5a0 f rtxt2.obj - 0001:0009c650 ??0TXLG@@IAE@PAVTXTB@@PAUGCB@@JKJJ@Z 0049d650 f rtxt2.obj - 0001:0009c760 ?PtxlgNew@TXLG@@SGPAV1@PAVTXTB@@PAUGCB@@JKJJ@Z 0049d760 f rtxt2.obj - 0001:0009c830 ?_DxpDoc@TXLG@@MAEJXZ 0049d830 f rtxt2.obj - 0001:0009c860 ?SetDxpTab@TXLG@@UAEXJ@Z 0049d860 f rtxt2.obj - 0001:0009c920 ?SetDxpDoc@TXLG@@UAEXJ@Z 0049d920 f rtxt2.obj - 0001:0009c970 ?_FetchChp@TXLG@@MAEXJPAUCHP@@PAJ1@Z 0049d970 f rtxt2.obj - 0001:0009ca50 ?_FetchPap@TXLG@@MAEXJPAUPAP@@PAJ1@Z 0049da50 f rtxt2.obj - 0001:0009cb20 ?_FCopySel@TXLG@@MAEHPAPAVDOCB@@@Z 0049db20 f rtxt2.obj - 0001:0009cca0 ?Pbsf@TXTB@@QAEPAVBSF@@XZ 0049dca0 f rtxt2.obj - 0001:0009ccf0 ?_ClearSel@TXLG@@MAEXXZ 0049dcf0 f rtxt2.obj - 0001:0009cd70 ?_FPaste@TXLG@@MAEHPAVCLIP@@HJ@Z 0049dd70 f rtxt2.obj - 0001:0009d000 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 0049e000 f rtxt2.obj - 0001:0009d050 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 0049e050 f rtxt2.obj - 0001:0009d080 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 0049e080 f rtxt2.obj - 0001:0009d140 ?AssertValid@TXRG@@QAEXK@Z 0049e140 f rtxt2.obj - 0001:0009d1b0 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 0049e1b0 f rtxt2.obj - 0001:0009d1f0 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 0049e1f0 f rtxt2.obj - 0001:0009d230 ?SetDxpTab@TXRG@@UAEXJ@Z 0049e230 f rtxt2.obj - 0001:0009d380 ?SetSel@TXRG@@UAEXJJJ@Z 0049e380 f rtxt2.obj - 0001:0009d4b0 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 0049e4b0 f rtxt2.obj - 0001:0009d5c0 ?_EnsureChpIns@TXRG@@IAEXXZ 0049e5c0 f rtxt2.obj - 0001:0009d650 ?FReplace@TXRG@@UAEHPADJJJ@Z 0049e650 f rtxt2.obj - 0001:0009d800 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 0049e800 f rtxt2.obj - 0001:0009d940 ?_ClearSel@TXRG@@MAEXXZ 0049e940 f rtxt2.obj - 0001:0009d990 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 0049e990 f rtxt2.obj - 0001:0009dc40 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 0049ec40 f rtxt2.obj - 0001:0009ded0 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 0049eed0 f rtxt2.obj - 0001:0009dff0 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 0049eff0 f rtxt2.obj - 0001:0009e4a0 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 0049f4a0 f rtxt2.obj - 0001:0009e520 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 0049f520 f rtxt2.obj - 0001:0009e5a0 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 0049f5a0 f rtxt2.obj - 0001:0009ea30 ??_ETXTG@@MAEPAXI@Z 0049fa30 f rtxt2.obj - 0001:0009ea30 ??_GTXTG@@MAEPAXI@Z 0049fa30 f rtxt2.obj - 0001:0009ea70 ??0CHR@@QAE@XZ 0049fa70 f rtxt2.obj - 0001:0009eaa0 ??_ETXLG@@UAEPAXI@Z 0049faa0 f rtxt2.obj - 0001:0009eaa0 ??_GTXLG@@UAEPAXI@Z 0049faa0 f rtxt2.obj - 0001:0009eae0 ??_ETXRG@@UAEPAXI@Z 0049fae0 f rtxt2.obj - 0001:0009eae0 ??_GTXRG@@UAEPAXI@Z 0049fae0 f rtxt2.obj - 0001:0009eb20 ??1TXLG@@UAE@XZ 0049fb20 f rtxt2.obj - 0001:0009eb50 ?FWouldBe@SNDV@@SGHJ@Z 0049fb50 f sndm.obj - 0001:0009eb90 ?FIs@SNDV@@UAEHJ@Z 0049fb90 f sndm.obj - 0001:0009ebc0 ?Cls@SNDV@@UAEJXZ 0049fbc0 f sndm.obj - 0001:0009ebf0 ?FWouldBe@SNDM@@SGHJ@Z 0049fbf0 f sndm.obj - 0001:0009ec30 ?FIs@SNDM@@UAEHJ@Z 0049fc30 f sndm.obj - 0001:0009ec60 ?Cls@SNDM@@UAEJXZ 0049fc60 f sndm.obj - 0001:0009ec90 ?FWouldBe@SNDMQ@@SGHJ@Z 0049fc90 f sndm.obj - 0001:0009ecd0 ?FIs@SNDMQ@@UAEHJ@Z 0049fcd0 f sndm.obj - 0001:0009ed00 ?Cls@SNDMQ@@UAEJXZ 0049fd00 f sndm.obj - 0001:0009ed30 ?FWouldBe@SNQUE@@SGHJ@Z 0049fd30 f sndm.obj - 0001:0009ed70 ?FIs@SNQUE@@UAEHJ@Z 0049fd70 f sndm.obj - 0001:0009eda0 ?Cls@SNQUE@@UAEJXZ 0049fda0 f sndm.obj - 0001:0009edd0 ?BeginSynch@SNDV@@UAEXXZ 0049fdd0 f sndm.obj - 0001:0009edf0 ?EndSynch@SNDV@@UAEXXZ 0049fdf0 f sndm.obj - 0001:0009ee10 ??0SNDM@@IAE@XZ 0049fe10 f sndm.obj - 0001:0009ee50 ??1SNDM@@UAE@XZ 0049fe50 f sndm.obj - 0001:0009ef40 ?AssertValid@SNDM@@QAEXK@Z 0049ff40 f sndm.obj - 0001:0009efd0 ?MarkMem@SNDM@@UAEXXZ 0049ffd0 f sndm.obj - 0001:0009f070 ?PsndmNew@SNDM@@SGPAV1@XZ 004a0070 f sndm.obj - 0001:0009f160 ?_FInit@SNDM@@IAEHXZ 004a0160 f sndm.obj - 0001:0009f220 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 004a0220 f sndm.obj - 0001:0009f340 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 004a0340 f sndm.obj - 0001:0009f4f0 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 004a04f0 f sndm.obj - 0001:0009f560 ?RemoveSndv@SNDM@@UAEXK@Z 004a0560 f sndm.obj - 0001:0009f600 ?FActive@SNDM@@UAEHXZ 004a0600 f sndm.obj - 0001:0009f660 ?Activate@SNDM@@UAEXH@Z 004a0660 f sndm.obj - 0001:0009f750 ?Suspend@SNDM@@UAEXH@Z 004a0750 f sndm.obj - 0001:0009f840 ?SetVlm@SNDM@@UAEXJ@Z 004a0840 f sndm.obj - 0001:0009f8e0 ?VlmCur@SNDM@@UAEJXZ 004a08e0 f sndm.obj - 0001:0009f990 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 004a0990 f sndm.obj - 0001:0009fa90 ?Stop@SNDM@@UAEXJ@Z 004a0a90 f sndm.obj - 0001:0009fb30 ?StopAll@SNDM@@UAEXJJ@Z 004a0b30 f sndm.obj - 0001:0009fbd0 ?Pause@SNDM@@UAEXJ@Z 004a0bd0 f sndm.obj - 0001:0009fc70 ?PauseAll@SNDM@@UAEXJJ@Z 004a0c70 f sndm.obj - 0001:0009fd10 ?Resume@SNDM@@UAEXJ@Z 004a0d10 f sndm.obj - 0001:0009fdb0 ?ResumeAll@SNDM@@UAEXJJ@Z 004a0db0 f sndm.obj - 0001:0009fe50 ?FPlaying@SNDM@@UAEHJ@Z 004a0e50 f sndm.obj - 0001:0009ff00 ?FPlayingAll@SNDM@@UAEHJJ@Z 004a0f00 f sndm.obj - 0001:0009ffb0 ?Flush@SNDM@@UAEXXZ 004a0fb0 f sndm.obj - 0001:000a0040 ?BeginSynch@SNDM@@UAEXXZ 004a1040 f sndm.obj - 0001:000a00d0 ?EndSynch@SNDM@@UAEXXZ 004a10d0 f sndm.obj - 0001:000a0160 ??1SNDMQ@@UAE@XZ 004a1160 f sndm.obj - 0001:000a0250 ?AssertValid@SNDMQ@@QAEXK@Z 004a1250 f sndm.obj - 0001:000a02e0 ?MarkMem@SNDMQ@@UAEXXZ 004a12e0 f sndm.obj - 0001:000a0380 ?_FInit@SNDMQ@@MAEHXZ 004a1380 f sndm.obj - 0001:000a0430 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 004a1430 f sndm.obj - 0001:000a0650 ?FActive@SNDMQ@@UAEHXZ 004a1650 f sndm.obj - 0001:000a06b0 ?Activate@SNDMQ@@UAEXH@Z 004a16b0 f sndm.obj - 0001:000a07a0 ?Suspend@SNDMQ@@UAEXH@Z 004a17a0 f sndm.obj - 0001:000a0890 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 004a1890 f sndm.obj - 0001:000a09c0 ?Stop@SNDMQ@@UAEXJ@Z 004a19c0 f sndm.obj - 0001:000a0a50 ?StopAll@SNDMQ@@UAEXJJ@Z 004a1a50 f sndm.obj - 0001:000a0b00 ?Pause@SNDMQ@@UAEXJ@Z 004a1b00 f sndm.obj - 0001:000a0b90 ?PauseAll@SNDMQ@@UAEXJJ@Z 004a1b90 f sndm.obj - 0001:000a0c40 ?Resume@SNDMQ@@UAEXJ@Z 004a1c40 f sndm.obj - 0001:000a0cd0 ?ResumeAll@SNDMQ@@UAEXJJ@Z 004a1cd0 f sndm.obj - 0001:000a0d80 ?FPlaying@SNDMQ@@UAEHJ@Z 004a1d80 f sndm.obj - 0001:000a0e30 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 004a1e30 f sndm.obj - 0001:000a0ef0 ?Flush@SNDMQ@@UAEXXZ 004a1ef0 f sndm.obj - 0001:000a0fe0 ??0SNQUE@@IAE@XZ 004a1fe0 f sndm.obj - 0001:000a1020 ??1SNQUE@@UAE@XZ 004a2020 f sndm.obj - 0001:000a1120 ?AssertValid@SNQUE@@QAEXK@Z 004a2120 f sndm.obj - 0001:000a11e0 ?MarkMem@SNQUE@@UAEXXZ 004a21e0 f sndm.obj - 0001:000a12a0 ?_FInit@SNQUE@@MAEHXZ 004a22a0 f sndm.obj - 0001:000a1340 ?_Enter@SNQUE@@MAEXXZ 004a2340 f sndm.obj - 0001:000a1390 ?_Leave@SNQUE@@MAEXXZ 004a2390 f sndm.obj - 0001:000a13e0 ?_Flush@SNQUE@@MAEXXZ 004a23e0 f sndm.obj - 0001:000a14b0 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 004a24b0 f sndm.obj - 0001:000a1630 ?Stop@SNQUE@@QAEXJ@Z 004a2630 f sndm.obj - 0001:000a1730 ?StopAll@SNQUE@@QAEXJ@Z 004a2730 f sndm.obj - 0001:000a1840 ?Pause@SNQUE@@QAEXJ@Z 004a2840 f sndm.obj - 0001:000a1940 ?PauseAll@SNQUE@@QAEXJ@Z 004a2940 f sndm.obj - 0001:000a1a60 ?Resume@SNQUE@@QAEXJ@Z 004a2a60 f sndm.obj - 0001:000a1b60 ?ResumeAll@SNQUE@@QAEXJ@Z 004a2b60 f sndm.obj - 0001:000a1c70 ?FPlaying@SNQUE@@QAEHJ@Z 004a2c70 f sndm.obj - 0001:000a1d50 ?FPlayingAll@SNQUE@@QAEHJ@Z 004a2d50 f sndm.obj - 0001:000a1e30 ?Flush@SNQUE@@QAEXXZ 004a2e30 f sndm.obj - 0001:000a1e80 ?LuVolScale@@YGKKJ@Z 004a2e80 f sndm.obj - 0001:000a1f40 ?LuHighLow@@YGKGG@Z 004a2f40 f sndm.obj - 0001:000a20a0 ??_GSNDM@@UAEPAXI@Z 004a30a0 f sndm.obj - 0001:000a20a0 ??_ESNDM@@UAEPAXI@Z 004a30a0 f sndm.obj - 0001:000a20e0 ??0SNDV@@QAE@XZ 004a30e0 f sndm.obj - 0001:000a2120 ??1SNDV@@UAE@XZ 004a3120 f sndm.obj - 0001:000a2150 ??_GSNDMQ@@UAEPAXI@Z 004a3150 f sndm.obj - 0001:000a2150 ??_ESNDMQ@@UAEPAXI@Z 004a3150 f sndm.obj - 0001:000a2190 ??_ESNQUE@@UAEPAXI@Z 004a3190 f sndm.obj - 0001:000a2190 ??_GSNQUE@@UAEPAXI@Z 004a3190 f sndm.obj - 0001:000a21d0 ??_ESNDV@@UAEPAXI@Z 004a31d0 f sndm.obj - 0001:000a21d0 ??_GSNDV@@UAEPAXI@Z 004a31d0 f sndm.obj - 0001:000a2210 ?_SiiAlloc@SNDV@@KGJXZ 004a3210 f sndm.obj - 0001:000a2230 ?FWouldBe@SDAM@@SGHJ@Z 004a3230 f sndam.obj - 0001:000a2270 ?FIs@SDAM@@UAEHJ@Z 004a3270 f sndam.obj - 0001:000a22a0 ?Cls@SDAM@@UAEJXZ 004a32a0 f sndam.obj - 0001:000a22d0 ?FWouldBe@CAMS@@SGHJ@Z 004a32d0 f sndam.obj - 0001:000a2310 ?FIs@CAMS@@UAEHJ@Z 004a3310 f sndam.obj - 0001:000a2340 ?Cls@CAMS@@UAEJXZ 004a3340 f sndam.obj - 0001:000a2370 ?FWouldBe@AMQUE@@SGHJ@Z 004a3370 f sndam.obj - 0001:000a23b0 ?FIs@AMQUE@@UAEHJ@Z 004a33b0 f sndam.obj - 0001:000a23e0 ?Cls@AMQUE@@UAEJXZ 004a33e0 f sndam.obj - 0001:000a2410 ??0STBL@@IAE@XZ 004a3410 f sndam.obj - 0001:000a2470 ?Write@STBL@@UAGJPBXKPAK@Z 004a3470 f sndam.obj - 0001:000a24a0 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 004a34a0 f sndam.obj - 0001:000a24c0 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004a34c0 f sndam.obj - 0001:000a2520 ?Commit@STBL@@UAGJK@Z 004a3520 f sndam.obj - 0001:000a2540 ?Revert@STBL@@UAGJXZ 004a3540 f sndam.obj - 0001:000a2560 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 004a3560 f sndam.obj - 0001:000a2580 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 004a3580 f sndam.obj - 0001:000a25a0 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 004a35a0 f sndam.obj - 0001:000a25c0 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 004a35c0 f sndam.obj - 0001:000a2600 ??1STBL@@IAE@XZ 004a3600 f sndam.obj - 0001:000a2640 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 004a3640 f sndam.obj - 0001:000a26d0 ?IsEqualGUID@@YGHABU_GUID@@0@Z 004a36d0 f sndam.obj - 0001:000a2710 ?AddRef@STBL@@UAGKXZ 004a3710 f sndam.obj - 0001:000a2760 ?Release@STBL@@UAGKXZ 004a3760 f sndam.obj - 0001:000a27f0 ?Read@STBL@@UAGJPAXKPAK@Z 004a37f0 f sndam.obj - 0001:000a28d0 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004a38d0 f sndam.obj - 0001:000a2a10 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 004a3a10 f sndam.obj - 0001:000a2d80 ?CbMem@STBL@@QAEJXZ 004a3d80 f sndam.obj - 0001:000a2db0 ?AssertValid@STBL@@QAEXK@Z 004a3db0 f sndam.obj - 0001:000a2e60 ?MarkMem@STBL@@UAEXXZ 004a3e60 f sndam.obj - 0001:000a2eb0 ??0CAMS@@IAE@XZ 004a3eb0 f sndam.obj - 0001:000a2f10 ??1CAMS@@UAE@XZ 004a3f10 f sndam.obj - 0001:000a2fd0 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004a3fd0 f sndam.obj - 0001:000a3270 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 004a4270 f sndam.obj - 0001:000a3400 ?AssertValid@CAMS@@QAEXK@Z 004a4400 f sndam.obj - 0001:000a34c0 ?MarkMem@CAMS@@UAEXXZ 004a44c0 f sndam.obj - 0001:000a3510 ??0AMNOT@@QAE@XZ 004a4510 f sndam.obj - 0001:000a3560 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 004a4560 f sndam.obj - 0001:000a3580 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 004a4580 f sndam.obj - 0001:000a35a0 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 004a45a0 f sndam.obj - 0001:000a35c0 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 004a45c0 f sndam.obj - 0001:000a3600 ?AssertValid@AMNOT@@QAEXK@Z 004a4600 f sndam.obj - 0001:000a3640 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 004a4640 f sndam.obj - 0001:000a36d0 ?AddRef@AMNOT@@UAGKXZ 004a46d0 f sndam.obj - 0001:000a3720 ?Release@AMNOT@@UAGKXZ 004a4720 f sndam.obj - 0001:000a37a0 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 004a47a0 f sndam.obj - 0001:000a3800 ??0AMQUE@@IAE@XZ 004a4800 f sndam.obj - 0001:000a3850 ??1AMQUE@@UAE@XZ 004a4850 f sndam.obj - 0001:000a38d0 ?AssertValid@AMQUE@@QAEXK@Z 004a48d0 f sndam.obj - 0001:000a3930 ?PamqueNew@AMQUE@@SGPAV1@XZ 004a4930 f sndam.obj - 0001:000a3a00 ?_FInit@AMQUE@@MAEHXZ 004a4a00 f sndam.obj - 0001:000a3b30 ?_Enter@AMQUE@@MAEXXZ 004a4b30 f sndam.obj - 0001:000a3b60 ?_Leave@AMQUE@@MAEXXZ 004a4b60 f sndam.obj - 0001:000a3b90 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004a4b90 f sndam.obj - 0001:000a3c50 ?_Queue@AMQUE@@MAEXJ@Z 004a4c50 f sndam.obj - 0001:000a3f30 ?FInMemory@CAMS@@QAEHXZ 004a4f30 f sndam.obj - 0001:000a3f60 ?FInMemory@STBL@@QAEHXZ 004a4f60 f sndam.obj - 0001:000a3fa0 ?_PauseQueue@AMQUE@@MAEXJ@Z 004a4fa0 f sndam.obj - 0001:000a4070 ?_ResumeQueue@AMQUE@@MAEXJ@Z 004a5070 f sndam.obj - 0001:000a40d0 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 004a50d0 f sndam.obj - 0001:000a41e0 ??0SDAM@@IAE@XZ 004a51e0 f sndam.obj - 0001:000a4230 ??1SDAM@@UAE@XZ 004a5230 f sndam.obj - 0001:000a42d0 ?AssertValid@SDAM@@QAEXK@Z 004a52d0 f sndam.obj - 0001:000a4330 ?PsdamNew@SDAM@@SGPAV1@J@Z 004a5330 f sndam.obj - 0001:000a4400 ?FHaveWaveDevice@@YGHK@Z 004a5400 f sndam.obj - 0001:000a44b0 ?_FInit@SDAM@@MAEHJ@Z 004a54b0 f sndam.obj - 0001:000a46e0 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 004a56e0 f sndam.obj - 0001:000a4730 ?_Suspend@SDAM@@MAEXH@Z 004a5730 f sndam.obj - 0001:000a4840 ?SetVlm@SDAM@@UAEXJ@Z 004a5840 f sndam.obj - 0001:000a48f0 ?VlmCur@SDAM@@UAEJXZ 004a58f0 f sndam.obj - 0001:000a4940 ?BeginSynch@SDAM@@UAEXXZ 004a5940 f sndam.obj - 0001:000a49e0 ?EndSynch@SDAM@@UAEXXZ 004a59e0 f sndam.obj - 0001:000a4aa0 ??0IStream@@QAE@XZ 004a5aa0 f sndam.obj - 0001:000a4ae0 ??_GSTBL@@IAEPAXI@Z 004a5ae0 f sndam.obj - 0001:000a4b20 ??_GCAMS@@UAEPAXI@Z 004a5b20 f sndam.obj - 0001:000a4b20 ??_ECAMS@@UAEPAXI@Z 004a5b20 f sndam.obj - 0001:000a4b60 ??0IAMNotifySink@@QAE@XZ 004a5b60 f sndam.obj - 0001:000a4ba0 ??_GAMQUE@@UAEPAXI@Z 004a5ba0 f sndam.obj - 0001:000a4ba0 ??_EAMQUE@@UAEPAXI@Z 004a5ba0 f sndam.obj - 0001:000a4be0 ??_ESDAM@@UAEPAXI@Z 004a5be0 f sndam.obj - 0001:000a4be0 ??_GSDAM@@UAEPAXI@Z 004a5be0 f sndam.obj - 0001:000a4c20 ??0SNDMQ@@QAE@XZ 004a5c20 f sndam.obj - 0001:000a4c60 ??0IUnknown@@QAE@XZ 004a5c60 f sndam.obj - 0001:000a4dc0 ?FWouldBe@MIDO@@SGHJ@Z 004a5dc0 f mididev.obj - 0001:000a4e00 ?FIs@MIDO@@UAEHJ@Z 004a5e00 f mididev.obj - 0001:000a4e30 ?Cls@MIDO@@UAEJXZ 004a5e30 f mididev.obj - 0001:000a4e60 ??0MIDO@@QAE@XZ 004a5e60 f mididev.obj - 0001:000a4f00 ??1MIDO@@UAE@XZ 004a5f00 f mididev.obj - 0001:000a4f90 ?_GetSysVol@MIDO@@IAEXXZ 004a5f90 f mididev.obj - 0001:000a5010 ?_SetSysVol@MIDO@@IAEXK@Z 004a6010 f mididev.obj - 0001:000a5080 ?_Reset@MIDO@@IAEXXZ 004a6080 f mididev.obj - 0001:000a5160 ?Suspend@MIDO@@QAEXH@Z 004a6160 f mididev.obj - 0001:000a5300 ??_GMIDO@@UAEPAXI@Z 004a6300 f mididev.obj - 0001:000a5300 ??_EMIDO@@UAEPAXI@Z 004a6300 f mididev.obj - 0001:000a5450 ?FWouldBe@MDWS@@SGHJ@Z 004a6450 f mididev2.obj - 0001:000a5490 ?FIs@MDWS@@UAEHJ@Z 004a6490 f mididev2.obj - 0001:000a54c0 ?Cls@MDWS@@UAEJXZ 004a64c0 f mididev2.obj - 0001:000a54f0 ?FWouldBe@MSQUE@@SGHJ@Z 004a64f0 f mididev2.obj - 0001:000a5530 ?FIs@MSQUE@@UAEHJ@Z 004a6530 f mididev2.obj - 0001:000a5560 ?Cls@MSQUE@@UAEJXZ 004a6560 f mididev2.obj - 0001:000a5590 ?FWouldBe@MDPS@@SGHJ@Z 004a6590 f mididev2.obj - 0001:000a55d0 ?FIs@MDPS@@UAEHJ@Z 004a65d0 f mididev2.obj - 0001:000a5600 ?Cls@MDPS@@UAEJXZ 004a6600 f mididev2.obj - 0001:000a5630 ?FWouldBe@MSMIX@@SGHJ@Z 004a6630 f mididev2.obj - 0001:000a5670 ?FIs@MSMIX@@UAEHJ@Z 004a6670 f mididev2.obj - 0001:000a56a0 ?Cls@MSMIX@@UAEJXZ 004a66a0 f mididev2.obj - 0001:000a56d0 ?FWouldBe@MISI@@SGHJ@Z 004a66d0 f mididev2.obj - 0001:000a5710 ?FIs@MISI@@UAEHJ@Z 004a6710 f mididev2.obj - 0001:000a5740 ?Cls@MISI@@UAEJXZ 004a6740 f mididev2.obj - 0001:000a5770 ?FWouldBe@WMS@@SGHJ@Z 004a6770 f mididev2.obj - 0001:000a57b0 ?FIs@WMS@@UAEHJ@Z 004a67b0 f mididev2.obj - 0001:000a57e0 ?Cls@WMS@@UAEJXZ 004a67e0 f mididev2.obj - 0001:000a5810 ?FWouldBe@OMS@@SGHJ@Z 004a6810 f mididev2.obj - 0001:000a5850 ?FIs@OMS@@UAEHJ@Z 004a6850 f mididev2.obj - 0001:000a5880 ?Cls@OMS@@UAEJXZ 004a6880 f mididev2.obj - 0001:000a58b0 ??0MDPS@@IAE@XZ 004a68b0 f mididev2.obj - 0001:000a58f0 ??1MDPS@@UAE@XZ 004a68f0 f mididev2.obj - 0001:000a59a0 ?AssertValid@MDPS@@QAEXK@Z 004a69a0 f mididev2.obj - 0001:000a5a30 ?MarkMem@MDPS@@UAEXXZ 004a6a30 f mididev2.obj - 0001:000a5a80 ?PmdpsNew@MDPS@@SGPAV1@XZ 004a6a80 f mididev2.obj - 0001:000a5b50 ?_FInit@MDPS@@MAEHXZ 004a6b50 f mididev2.obj - 0001:000a5c50 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 004a6c50 f mididev2.obj - 0001:000a5cb0 ?_Suspend@MDPS@@MAEXH@Z 004a6cb0 f mididev2.obj - 0001:000a5d10 ?SetVlm@MDPS@@UAEXJ@Z 004a6d10 f mididev2.obj - 0001:000a5d70 ?VlmCur@MDPS@@UAEJXZ 004a6d70 f mididev2.obj - 0001:000a5dc0 ??0MDWS@@IAE@XZ 004a6dc0 f mididev2.obj - 0001:000a5e00 ??1MDWS@@UAE@XZ 004a6e00 f mididev2.obj - 0001:000a5e60 ?AssertValid@MDWS@@QAEXK@Z 004a6e60 f mididev2.obj - 0001:000a5ef0 ?MarkMem@MDWS@@UAEXXZ 004a6ef0 f mididev2.obj - 0001:000a5f40 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004a6f40 f mididev2.obj - 0001:000a60f0 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 004a70f0 f mididev2.obj - 0001:000a6250 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 004a7250 f mididev2.obj - 0001:000a6520 ?PvLockData@MDWS@@QAEPAXPAJ@Z 004a7520 f mididev2.obj - 0001:000a65a0 ?UnlockData@MDWS@@QAEXXZ 004a75a0 f mididev2.obj - 0001:000a65f0 ??0MSQUE@@IAE@XZ 004a75f0 f mididev2.obj - 0001:000a6630 ??1MSQUE@@UAE@XZ 004a7630 f mididev2.obj - 0001:000a66d0 ?AssertValid@MSQUE@@QAEXK@Z 004a76d0 f mididev2.obj - 0001:000a6760 ?MarkMem@MSQUE@@UAEXXZ 004a7760 f mididev2.obj - 0001:000a67b0 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 004a77b0 f mididev2.obj - 0001:000a68e0 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 004a78e0 f mididev2.obj - 0001:000a69f0 ?_Enter@MSQUE@@MAEXXZ 004a79f0 f mididev2.obj - 0001:000a6a20 ?_Leave@MSQUE@@MAEXXZ 004a7a20 f mididev2.obj - 0001:000a6a50 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004a7a50 f mididev2.obj - 0001:000a6b10 ?_Queue@MSQUE@@MAEXJ@Z 004a7b10 f mididev2.obj - 0001:000a6c50 ?_PauseQueue@MSQUE@@MAEXJ@Z 004a7c50 f mididev2.obj - 0001:000a6d20 ?_ResumeQueue@MSQUE@@MAEXJ@Z 004a7d20 f mididev2.obj - 0001:000a6d80 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 004a7d80 f mididev2.obj - 0001:000a6e40 ??0MSMIX@@IAE@XZ 004a7e40 f mididev2.obj - 0001:000a6e90 ??1MSMIX@@UAE@XZ 004a7e90 f mididev2.obj - 0001:000a7040 ?PmsmixNew@MSMIX@@SGPAV1@XZ 004a8040 f mididev2.obj - 0001:000a7110 ?_FInit@MSMIX@@IAEHXZ 004a8110 f mididev2.obj - 0001:000a7240 ?AssertValid@MSMIX@@QAEXK@Z 004a8240 f mididev2.obj - 0001:000a73f0 ?MarkMem@MSMIX@@UAEXXZ 004a83f0 f mididev2.obj - 0001:000a7490 ?Suspend@MSMIX@@QAEXH@Z 004a8490 f mididev2.obj - 0001:000a7560 ?_StopStream@MSMIX@@IAEXXZ 004a8560 f mididev2.obj - 0001:000a7630 ?SetVlm@MSMIX@@QAEXJ@Z 004a8630 f mididev2.obj - 0001:000a76e0 ?VlmCur@MSMIX@@QAEJXZ 004a86e0 f mididev2.obj - 0001:000a7730 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 004a8730 f mididev2.obj - 0001:000a79e0 ?Dts@MDWS@@QAEKXZ 004a89e0 f mididev2.obj - 0001:000a7a10 ?_Restart@MSMIX@@IAEXH@Z 004a8a10 f mididev2.obj - 0001:000a7b00 ?_SubmitBuffers@MSMIX@@IAEXK@Z 004a8b00 f mididev2.obj - 0001:000a7e00 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 004a8e00 f mididev2.obj - 0001:000a8350 ?BHigh@@YGEF@Z 004a9350 f mididev2.obj - 0001:000a8370 ?_MidiProc@MSMIX@@KGXKPAXK@Z 004a9370 f mididev2.obj - 0001:000a8440 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 004a9440 f mididev2.obj - 0001:000a8690 ?_ThreadProc@MSMIX@@KGKPAX@Z 004a9690 f mididev2.obj - 0001:000a8720 ?_LuThread@MSMIX@@IAEKXZ 004a9720 f mididev2.obj - 0001:000a8920 ?LuMin@@YGKKK@Z 004a9920 f mididev2.obj - 0001:000a8950 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 004a9950 f mididev2.obj - 0001:000a8a10 ?_Reset@MISI@@IAEXXZ 004a9a10 f mididev2.obj - 0001:000a8ac0 ?_GetSysVol@MISI@@IAEXXZ 004a9ac0 f mididev2.obj - 0001:000a8ca0 ?_SetSysVol@MISI@@IAEXK@Z 004a9ca0 f mididev2.obj - 0001:000a8e20 ?_SetSysVlm@MISI@@IAEXXZ 004a9e20 f mididev2.obj - 0001:000a8e60 ?SetVlm@MISI@@UAEXJ@Z 004a9e60 f mididev2.obj - 0001:000a8ee0 ?VlmCur@MISI@@UAEJXZ 004a9ee0 f mididev2.obj - 0001:000a8f30 ?FActive@MISI@@UAEHXZ 004a9f30 f mididev2.obj - 0001:000a8f70 ?FActivate@MISI@@UAEHH@Z 004a9f70 f mididev2.obj - 0001:000a8fe0 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 004a9fe0 f mididev2.obj - 0001:000a9030 ??1WMS@@UAE@XZ 004aa030 f mididev2.obj - 0001:000a9160 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 004aa160 f mididev2.obj - 0001:000a9200 ?_FInit@WMS@@IAEHXZ 004aa200 f mididev2.obj - 0001:000a9510 ?AssertValid@WMS@@QAEXK@Z 004aa510 f mididev2.obj - 0001:000a96b0 ?MarkMem@WMS@@UAEXXZ 004aa6b0 f mididev2.obj - 0001:000a9770 ?_FOpen@WMS@@MAEHXZ 004aa770 f mididev2.obj - 0001:000a98e0 ?_FClose@WMS@@MAEHXZ 004aa8e0 f mididev2.obj - 0001:000a99e0 ?FActive@WMS@@UAEHXZ 004aa9e0 f mididev2.obj - 0001:000a9a10 ?FActivate@WMS@@UAEHH@Z 004aaa10 f mididev2.obj - 0001:000a9a70 ?_ResetStream@WMS@@IAEXXZ 004aaa70 f mididev2.obj - 0001:000a9af0 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 004aaaf0 f mididev2.obj - 0001:000a9d10 ?_CmhSubmitBuffers@WMS@@IAEJXZ 004aad10 f mididev2.obj - 0001:000a9ee0 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 004aaee0 f mididev2.obj - 0001:000a9fb0 ?StopPlaying@WMS@@UAEXXZ 004aafb0 f mididev2.obj - 0001:000aa050 ?_MidiProc@WMS@@KGXPAXKKKK@Z 004ab050 f mididev2.obj - 0001:000aa110 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 004ab110 f mididev2.obj - 0001:000aa310 ?_ThreadProc@WMS@@KGKPAX@Z 004ab310 f mididev2.obj - 0001:000aa3a0 ?_LuThread@WMS@@IAEKXZ 004ab3a0 f mididev2.obj - 0001:000aa460 ?_DoCallBacks@WMS@@IAEXXZ 004ab460 f mididev2.obj - 0001:000aa580 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 004ab580 f mididev2.obj - 0001:000aa5d0 ??1OMS@@UAE@XZ 004ab5d0 f mididev2.obj - 0001:000aa720 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 004ab720 f mididev2.obj - 0001:000aa7c0 ?_FInit@OMS@@IAEHXZ 004ab7c0 f mididev2.obj - 0001:000aa8c0 ?AssertValid@OMS@@QAEXK@Z 004ab8c0 f mididev2.obj - 0001:000aa9d0 ?MarkMem@OMS@@UAEXXZ 004ab9d0 f mididev2.obj - 0001:000aaa40 ?_FOpen@OMS@@MAEHXZ 004aba40 f mididev2.obj - 0001:000aab20 ?_FClose@OMS@@MAEHXZ 004abb20 f mididev2.obj - 0001:000aac20 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 004abc20 f mididev2.obj - 0001:000aadc0 ?StopPlaying@OMS@@UAEXXZ 004abdc0 f mididev2.obj - 0001:000aae60 ?_ThreadProc@OMS@@KGKPAX@Z 004abe60 f mididev2.obj - 0001:000aaef0 ?_LuThread@OMS@@IAEKXZ 004abef0 f mididev2.obj - 0001:000ab200 ?_ReleaseBuffers@OMS@@IAEXXZ 004ac200 f mididev2.obj - 0001:000ab2d0 ??_GMDPS@@UAEPAXI@Z 004ac2d0 f mididev2.obj - 0001:000ab2d0 ??_EMDPS@@UAEPAXI@Z 004ac2d0 f mididev2.obj - 0001:000ab310 ??_GMDWS@@UAEPAXI@Z 004ac310 f mididev2.obj - 0001:000ab310 ??_EMDWS@@UAEPAXI@Z 004ac310 f mididev2.obj - 0001:000ab350 ??_GMSQUE@@UAEPAXI@Z 004ac350 f mididev2.obj - 0001:000ab350 ??_EMSQUE@@UAEPAXI@Z 004ac350 f mididev2.obj - 0001:000ab390 ??_GMSMIX@@UAEPAXI@Z 004ac390 f mididev2.obj - 0001:000ab390 ??_EMSMIX@@UAEPAXI@Z 004ac390 f mididev2.obj - 0001:000ab3d0 ??_GMISI@@UAEPAXI@Z 004ac3d0 f mididev2.obj - 0001:000ab3d0 ??_EMISI@@UAEPAXI@Z 004ac3d0 f mididev2.obj - 0001:000ab410 ??_GWMS@@UAEPAXI@Z 004ac410 f mididev2.obj - 0001:000ab410 ??_EWMS@@UAEPAXI@Z 004ac410 f mididev2.obj - 0001:000ab450 ??1MISI@@UAE@XZ 004ac450 f mididev2.obj - 0001:000ab480 ??_EOMS@@UAEPAXI@Z 004ac480 f mididev2.obj - 0001:000ab480 ??_GOMS@@UAEPAXI@Z 004ac480 f mididev2.obj - 0001:000ab4c0 ?FWouldBe@MSTP@@SGHJ@Z 004ac4c0 f midi.obj - 0001:000ab500 ?FIs@MSTP@@UAEHJ@Z 004ac500 f midi.obj - 0001:000ab530 ?Cls@MSTP@@UAEJXZ 004ac530 f midi.obj - 0001:000ab560 ?FWouldBe@MIDS@@SGHJ@Z 004ac560 f midi.obj - 0001:000ab5a0 ?FIs@MIDS@@UAEHJ@Z 004ac5a0 f midi.obj - 0001:000ab5d0 ?Cls@MIDS@@UAEJXZ 004ac5d0 f midi.obj - 0001:000ab600 ??0MSTP@@QAE@XZ 004ac600 f midi.obj - 0001:000ab670 ??1MSTP@@UAE@XZ 004ac670 f midi.obj - 0001:000ab710 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 004ac710 f midi.obj - 0001:000ab8b0 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 004ac8b0 f midi.obj - 0001:000abdf0 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 004acdf0 f midi.obj - 0001:000abea0 ?AssertValid@MSTP@@QAEXK@Z 004acea0 f midi.obj - 0001:000abff0 ?MarkMem@MSTP@@UAEXXZ 004acff0 f midi.obj - 0001:000ac040 ??0MIDS@@IAE@XZ 004ad040 f midi.obj - 0001:000ac080 ??1MIDS@@UAE@XZ 004ad080 f midi.obj - 0001:000ac0c0 ?AssertValid@MIDS@@QAEXK@Z 004ad0c0 f midi.obj - 0001:000ac100 ?MarkMem@MIDS@@UAEXXZ 004ad100 f midi.obj - 0001:000ac140 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 004ad140 f midi.obj - 0001:000ac280 ?PmidsReadNative@MIDS@@SGPAV1@PAVFNI@@@Z 004ad280 f midi.obj - 0001:000acc80 ?BLow@@YGEF@Z 004adc80 f midi.obj - 0001:000acca0 ??0RAT@@QAE@XZ 004adca0 f midi.obj - 0001:000accd0 ??9@YGHABVRAT@@0@Z 004adcd0 f midi.obj - 0001:000acd10 ?_CbEncodeLu@MIDS@@KGJKPAE@Z 004add10 f midi.obj - 0001:000acdb0 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 004addb0 f midi.obj - 0001:000ace70 ?CbOnFile@MIDS@@UAEJXZ 004ade70 f midi.obj - 0001:000acef0 ??_EMSTP@@UAEPAXI@Z 004adef0 f midi.obj - 0001:000acef0 ??_GMSTP@@UAEPAXI@Z 004adef0 f midi.obj - 0001:000acf30 ??_GMIDS@@UAEPAXI@Z 004adf30 f midi.obj - 0001:000acf30 ??_EMIDS@@UAEPAXI@Z 004adf30 f midi.obj - 0001:000acf70 ?IbMac@BSM@@QAEJXZ 004adf70 f midi.obj - 0001:000ad0b0 ?FWouldBe@DLG@@SGHJ@Z 004ae0b0 f dlg.obj - 0001:000ad0f0 ?FIs@DLG@@UAEHJ@Z 004ae0f0 f dlg.obj - 0001:000ad120 ?Cls@DLG@@UAEJXZ 004ae120 f dlg.obj - 0001:000ad150 ??0DLG@@AAE@J@Z 004ae150 f dlg.obj - 0001:000ad190 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 004ae190 f dlg.obj - 0001:000ad240 ?FGetValues@DLG@@QAEHJJ@Z 004ae240 f dlg.obj - 0001:000ad430 ?SetValues@DLG@@QAEXJJ@Z 004ae430 f dlg.obj - 0001:000ad7e0 ?IditFromSit@DLG@@QAEJJ@Z 004ae7e0 f dlg.obj - 0001:000ad860 ?_FDitChange@DLG@@AAEHPAJ@Z 004ae860 f dlg.obj - 0001:000ad8f0 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 004ae8f0 f dlg.obj - 0001:000ada80 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 004aea80 f dlg.obj - 0001:000add20 ?FGetCheck@DLG@@QAEHJ@Z 004aed20 f dlg.obj - 0001:000adde0 ?PutCheck@DLG@@QAEXJH@Z 004aede0 f dlg.obj - 0001:000adeb0 ?FGetLwFromEdit@DLG@@QAEHJPAJPAH@Z 004aeeb0 f dlg.obj - 0001:000adfd0 ?FPutLwInEdit@DLG@@QAEHJJ@Z 004aefd0 f dlg.obj - 0001:000ae080 ??_GDLG@@UAEPAXI@Z 004af080 f dlg.obj - 0001:000ae080 ??_EDLG@@UAEPAXI@Z 004af080 f dlg.obj - 0001:000ae0c0 ??1DLG@@UAE@XZ 004af0c0 f dlg.obj - 0001:000ae200 ?GetDit@DLG@@QAEXJPAUDIT@@@Z 004af200 f dlg.obj - 0001:000ae230 ?_FInit@DLG@@AAEHXZ 004af230 f dlgwin.obj - 0001:000ae7b0 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 004af7b0 f dlgwin.obj - 0001:000aec80 ?IditDo@DLG@@QAEJJ@Z 004afc80 f dlgwin.obj - 0001:000aece0 ?SelectDit@DLG@@QAEXJ@Z 004afce0 f dlgwin.obj - 0001:000aedf0 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 004afdf0 f dlgwin.obj - 0001:000aef10 ?_SetRadioGroup@DLG@@AAEXJJ@Z 004aff10 f dlgwin.obj - 0001:000aeff0 ?_FGetCheckBox@DLG@@AAEHJ@Z 004afff0 f dlgwin.obj - 0001:000af0f0 ?_SetCheckBox@DLG@@AAEXJH@Z 004b00f0 f dlgwin.obj - 0001:000af1f0 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 004b01f0 f dlgwin.obj - 0001:000af3b0 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 004b03b0 f dlgwin.obj - 0001:000af540 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 004b0540 f dlgwin.obj - 0001:000af710 ?_ClearList@DLG@@AAEXJ@Z 004b0710 f dlgwin.obj - 0001:000af990 ?PutDit@DLG@@QAEXJPAUDIT@@@Z 004b0990 f dlgwin.obj - 0001:000af9c0 ?FWouldBe@CTL@@SGHJ@Z 004b09c0 f ctl.obj - 0001:000afa00 ?FIs@CTL@@UAEHJ@Z 004b0a00 f ctl.obj - 0001:000afa30 ?Cls@CTL@@UAEJXZ 004b0a30 f ctl.obj - 0001:000afa60 ?FWouldBe@SCB@@SGHJ@Z 004b0a60 f ctl.obj - 0001:000afaa0 ?FIs@SCB@@UAEHJ@Z 004b0aa0 f ctl.obj - 0001:000afad0 ?Cls@SCB@@UAEJXZ 004b0ad0 f ctl.obj - 0001:000afb00 ?FWouldBe@WSB@@SGHJ@Z 004b0b00 f ctl.obj - 0001:000afb40 ?FIs@WSB@@UAEHJ@Z 004b0b40 f ctl.obj - 0001:000afb70 ?Cls@WSB@@UAEJXZ 004b0b70 f ctl.obj - 0001:000afba0 ??0CTL@@IAE@PAUGCB@@@Z 004b0ba0 f ctl.obj - 0001:000afbf0 ??1CTL@@MAE@XZ 004b0bf0 f ctl.obj - 0001:000afc60 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 004b0c60 f ctl.obj - 0001:000afd00 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 004b0d00 f ctl.obj - 0001:000afd30 ?_NewRc@CTL@@MAEXXZ 004b0d30 f ctl.obj - 0001:000afe10 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 004b0e10 f ctl.obj - 0001:000aff70 ?DxpNormal@SCB@@SGJXZ 004b0f70 f ctl.obj - 0001:000affb0 ?DypNormal@SCB@@SGJXZ 004b0fb0 f ctl.obj - 0001:000afff0 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 004b0ff0 f ctl.obj - 0001:000b0150 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 004b1150 f ctl.obj - 0001:000b01f0 ?_FCreate@SCB@@IAEHJJJK@Z 004b11f0 f ctl.obj - 0001:000b03c0 ?SetValMinMax@SCB@@QAEXJJJH@Z 004b13c0 f ctl.obj - 0001:000b04b0 ?TrackScroll@SCB@@UAEXJJ@Z 004b14b0 f ctl.obj - 0001:000b0720 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 004b1720 f ctl.obj - 0001:000b0950 ??_ECTL@@MAEPAXI@Z 004b1950 f ctl.obj - 0001:000b0950 ??_GCTL@@MAEPAXI@Z 004b1950 f ctl.obj - 0001:000b0aa0 ?_Hctl@CTL@@IAEPAUHWND__@@XZ 004b1aa0 f ctl.obj - 0001:000b0ad0 ??0SCB@@IAE@PAUGCB@@@Z 004b1ad0 f ctl.obj - 0001:000b0b10 ??_ESCB@@UAEPAXI@Z 004b1b10 f ctl.obj - 0001:000b0b10 ??_GSCB@@UAEPAXI@Z 004b1b10 f ctl.obj - 0001:000b0b50 ??1SCB@@UAE@XZ 004b1b50 f ctl.obj - 0001:000b0b80 ??0WSB@@IAE@PAUGCB@@@Z 004b1b80 f ctl.obj - 0001:000b0bc0 ??_EWSB@@UAEPAXI@Z 004b1bc0 f ctl.obj - 0001:000b0bc0 ??_GWSB@@UAEPAXI@Z 004b1bc0 f ctl.obj - 0001:000b0c00 ??1WSB@@UAE@XZ 004b1c00 f ctl.obj - 0001:000b0c30 ?FWouldBe@GVID@@SGHJ@Z 004b1c30 f video.obj - 0001:000b0c70 ?FIs@GVID@@UAEHJ@Z 004b1c70 f video.obj - 0001:000b0ca0 ?Cls@GVID@@UAEJXZ 004b1ca0 f video.obj - 0001:000b0cd0 ?FWouldBe@GVDS@@SGHJ@Z 004b1cd0 f video.obj - 0001:000b0d10 ?FIs@GVDS@@UAEHJ@Z 004b1d10 f video.obj - 0001:000b0d40 ?Cls@GVDS@@UAEJXZ 004b1d40 f video.obj - 0001:000b0d70 ?FWouldBe@GVDW@@SGHJ@Z 004b1d70 f video.obj - 0001:000b0db0 ?FIs@GVDW@@UAEHJ@Z 004b1db0 f video.obj - 0001:000b0de0 ?Cls@GVDW@@UAEJXZ 004b1de0 f video.obj - 0001:000b0e30 ?PgvidNew@GVID@@SGPAV1@PAVFNI@@PAVGOB@@HJ@Z 004b1e30 f video.obj - 0001:000b0f30 ??0GVID@@IAE@J@Z 004b1f30 f video.obj - 0001:000b0f90 ??0GVDS@@IAE@J@Z 004b1f90 f video.obj - 0001:000b1000 ??1GVDS@@MAE@XZ 004b2000 f video.obj - 0001:000b10e0 ?_FInit@GVDS@@MAEHPAVFNI@@PAVGOB@@@Z 004b20e0 f video.obj - 0001:000b13f0 ?PgvdsNew@GVDS@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 004b23f0 f video.obj - 0001:000b1510 ?NfrMac@GVDS@@UAEJXZ 004b2510 f video.obj - 0001:000b1560 ?NfrCur@GVDS@@UAEJXZ 004b2560 f video.obj - 0001:000b15b0 ?GotoNfr@GVDS@@UAEXJ@Z 004b25b0 f video.obj - 0001:000b1620 ?FPlaying@GVDS@@UAEHXZ 004b2620 f video.obj - 0001:000b1670 ?FPlay@GVDS@@UAEHPAVRC@@@Z 004b2670 f video.obj - 0001:000b1740 ?SetRcPlay@GVDS@@UAEXPAVRC@@@Z 004b2740 f video.obj - 0001:000b17e0 ?Stop@GVDS@@UAEXXZ 004b27e0 f video.obj - 0001:000b1850 ?FCmdAll@GVDS@@UAEHPAUCMD@@@Z 004b2850 f video.obj - 0001:000b1980 ?Draw@GVDS@@UAEXPAVGNV@@PAVRC@@@Z 004b2980 f video.obj - 0001:000b1a80 ?GetRc@GVDS@@UAEXPAVRC@@@Z 004b2a80 f video.obj - 0001:000b1af0 ?AssertValid@GVDS@@QAEXK@Z 004b2af0 f video.obj - 0001:000b1b80 ?PgvdwNew@GVDW@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 004b2b80 f video.obj - 0001:000b1ca0 ??0GVDW@@IAE@J@Z 004b2ca0 f video.obj - 0001:000b1d20 ??1GVDW@@MAE@XZ 004b2d20 f video.obj - 0001:000b1df0 ?_FInit@GVDW@@MAEHPAVFNI@@PAVGOB@@@Z 004b2df0 f video.obj - 0001:000b2190 ?NfrMac@GVDW@@UAEJXZ 004b3190 f video.obj - 0001:000b21e0 ?NfrCur@GVDW@@UAEJXZ 004b31e0 f video.obj - 0001:000b2280 ?GotoNfr@GVDW@@UAEXJ@Z 004b3280 f video.obj - 0001:000b2320 ?FPlaying@GVDW@@UAEHXZ 004b3320 f video.obj - 0001:000b2400 ?FPlay@GVDW@@UAEHPAVRC@@@Z 004b3400 f video.obj - 0001:000b24c0 ?SetRcPlay@GVDW@@UAEXPAVRC@@@Z 004b34c0 f video.obj - 0001:000b2560 ?Stop@GVDW@@UAEXXZ 004b3560 f video.obj - 0001:000b2600 ?Draw@GVDW@@UAEXPAVGNV@@PAVRC@@@Z 004b3600 f video.obj - 0001:000b26c0 ?_SetRc@GVDW@@MAEXXZ 004b36c0 f video.obj - 0001:000b2860 ?GetRc@GVDW@@UAEXPAVRC@@@Z 004b3860 f video.obj - 0001:000b28d0 ?AssertValid@GVDW@@QAEXK@Z 004b38d0 f video.obj - 0001:000b29b0 ??_EGVID@@MAEPAXI@Z 004b39b0 f video.obj - 0001:000b29b0 ??_GGVID@@MAEPAXI@Z 004b39b0 f video.obj - 0001:000b29f0 ??_GGVDS@@MAEPAXI@Z 004b39f0 f video.obj - 0001:000b29f0 ??_EGVDS@@MAEPAXI@Z 004b39f0 f video.obj - 0001:000b2a30 ??_GGVDW@@MAEPAXI@Z 004b3a30 f video.obj - 0001:000b2a30 ??_EGVDW@@MAEPAXI@Z 004b3a30 f video.obj - 0001:000b2a70 ??_9@$BFA@A 004b3a70 f video.obj - 0001:000b2b90 ??1GVID@@MAE@XZ 004b3b90 f video.obj - 0001:000b2bc0 ?Pcmm@GVDS@@MAEPAUCMM@CMH@@XZ 004b3bc0 f video.obj - 0001:000b2bf0 ?FWouldBe@EDCB@@SGHJ@Z 004b3bf0 f text.obj - 0001:000b2c30 ?FIs@EDCB@@UAEHJ@Z 004b3c30 f text.obj - 0001:000b2c60 ?Cls@EDCB@@UAEJXZ 004b3c60 f text.obj - 0001:000b2c90 ?FWouldBe@EDSL@@SGHJ@Z 004b3c90 f text.obj - 0001:000b2cd0 ?FIs@EDSL@@UAEHJ@Z 004b3cd0 f text.obj - 0001:000b2d00 ?Cls@EDSL@@UAEJXZ 004b3d00 f text.obj - 0001:000b2d30 ?FWouldBe@EDPL@@SGHJ@Z 004b3d30 f text.obj - 0001:000b2d70 ?FIs@EDPL@@UAEHJ@Z 004b3d70 f text.obj - 0001:000b2da0 ?Cls@EDPL@@UAEJXZ 004b3da0 f text.obj - 0001:000b2dd0 ?Set@EDPAR@@QAEXJPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 004b3dd0 f text.obj - 0001:000b2e80 ??0EDCB@@IAE@PAUGCB@@J@Z 004b3e80 f text.obj - 0001:000b2f40 ??1EDCB@@UAE@XZ 004b3f40 f text.obj - 0001:000b2fd0 ?_FInit@EDCB@@MAEHXZ 004b3fd0 f text.obj - 0001:000b3100 ?Draw@EDCB@@UAEXPAVGNV@@PAVRC@@@Z 004b4100 f text.obj - 0001:000b3280 ?FCmdTrackMouse@EDCB@@UAEHPAUCMD_MOUSE@@@Z 004b4280 f text.obj - 0001:000b35c0 ?FCmdKey@EDCB@@UAEHPAUCMD_KEY@@@Z 004b45c0 f text.obj - 0001:000b3f20 ?FCmdSelIdle@EDCB@@UAEHPAUCMD@@@Z 004b4f20 f text.obj - 0001:000b4030 ?FCmdActivateSel@EDCB@@UAEHPAUCMD@@@Z 004b5030 f text.obj - 0001:000b4070 ?Activate@EDCB@@UAEXH@Z 004b5070 f text.obj - 0001:000b4110 ?_GetRcContent@EDCB@@MAEXPAVRC@@@Z 004b5110 f text.obj - 0001:000b4140 ?_InitGnv@EDCB@@MAEXPAVGNV@@@Z 004b5140 f text.obj - 0001:000b4190 ?_NewRc@EDCB@@MAEXXZ 004b5190 f text.obj - 0001:000b41c0 ?SetSel@EDCB@@QAEXJJJ@Z 004b51c0 f text.obj - 0001:000b43c0 ?_SwitchSel@EDCB@@IAEXHJ@Z 004b53c0 f text.obj - 0001:000b44f0 ?ShowSel@EDCB@@QAEXHJ@Z 004b54f0 f text.obj - 0001:000b4800 ?_InvertSel@EDCB@@IAEXPAVGNV@@J@Z 004b5800 f text.obj - 0001:000b49b0 ?_InvertIchRange@EDCB@@IAEXPAVGNV@@JJJ@Z 004b59b0 f text.obj - 0001:000b4cf0 ?_UpdateLn@EDCB@@IAEXJJJJJ@Z 004b5cf0 f text.obj - 0001:000b4fb0 ?_Scroll@EDCB@@IAEXJJJ@Z 004b5fb0 f text.obj - 0001:000b5050 ?_YpFromIch@EDCB@@MAEJJ@Z 004b6050 f text.obj - 0001:000b5090 ?_ChFetch@EDCB@@IAEDJ@Z 004b6090 f text.obj - 0001:000b5110 ?_IchPrev@EDCB@@IAEJJH@Z 004b6110 f text.obj - 0001:000b5240 ?_IchNext@EDCB@@IAEJJH@Z 004b6240 f text.obj - 0001:000b5370 ?AssertValid@EDCB@@QAEXK@Z 004b6370 f text.obj - 0001:000b5430 ?MarkMem@EDCB@@UAEXXZ 004b6430 f text.obj - 0001:000b5480 ??0EDPL@@IAE@PAVEDPAR@@@Z 004b6480 f text.obj - 0001:000b5580 ?_FInit@EDPL@@MAEHXZ 004b6580 f text.obj - 0001:000b5650 ?_YpFromLn@EDPL@@MAEJJ@Z 004b6650 f text.obj - 0001:000b57b0 ?_LnFromYp@EDPL@@MAEJJ@Z 004b67b0 f text.obj - 0001:000b5840 ?_HiliteRc@EDPL@@MAEXPAVGNV@@PAVRC@@@Z 004b6840 f text.obj - 0001:000b58b0 ?_XpFromIch@EDPL@@MAEJJ@Z 004b68b0 f text.obj - 0001:000b5a70 ?_IchFromLnXp@EDPL@@MAEJJJH@Z 004b6a70 f text.obj - 0001:000b5bf0 ?_DrawLine@EDPL@@MAEXPAVGNV@@J@Z 004b6bf0 f text.obj - 0001:000b5d90 ?_XpOrigin@EDPL@@IAEJXZ 004b6d90 f text.obj - 0001:000b5e60 ?AssertValid@EDPL@@QAEXK@Z 004b6e60 f text.obj - 0001:000b6030 ??0EDSL@@IAE@PAVEDPAR@@@Z 004b7030 f text.obj - 0001:000b6090 ?PedslNew@EDSL@@SGPAV1@PAVEDPAR@@@Z 004b7090 f text.obj - 0001:000b6170 ?_FLockLn@EDSL@@MAEHJPAPADPAJ@Z 004b7170 f text.obj - 0001:000b6210 ?_UnlockLn@EDSL@@MAEXJPAD@Z 004b7210 f text.obj - 0001:000b62a0 ?_LnFromIch@EDSL@@MAEJJ@Z 004b72a0 f text.obj - 0001:000b6320 ?_IchMinLn@EDSL@@MAEJJ@Z 004b7320 f text.obj - 0001:000b6390 ?IchMac@EDSL@@UAEJXZ 004b7390 f text.obj - 0001:000b63e0 ?_LnMac@EDSL@@MAEJXZ 004b73e0 f text.obj - 0001:000b6540 ?FReplace@EDSL@@UAEHPADJJJJ@Z 004b7540 f text.obj - 0001:000b67e0 ?_FFilterCh@EDSL@@MAEHD@Z 004b77e0 f text.obj - 0001:000b6820 ?CchFetch@EDSL@@UAEJPADJJ@Z 004b7820 f text.obj - 0001:000b68f0 ?AssertValid@EDSL@@QAEXK@Z 004b78f0 f text.obj - 0001:000b69f0 ??_EEDCB@@UAEPAXI@Z 004b79f0 f text.obj - 0001:000b69f0 ??_GEDCB@@UAEPAXI@Z 004b79f0 f text.obj - 0001:000b6a30 ??_GEDPL@@UAEPAXI@Z 004b7a30 f text.obj - 0001:000b6a30 ??_EEDPL@@UAEPAXI@Z 004b7a30 f text.obj - 0001:000b6a70 ??_GEDSL@@UAEPAXI@Z 004b7a70 f text.obj - 0001:000b6a70 ??_EEDSL@@UAEPAXI@Z 004b7a70 f text.obj - 0001:000b6ab0 ??1EDPL@@UAE@XZ 004b7ab0 f text.obj - 0001:000b6ae0 ??1EDSL@@UAE@XZ 004b7ae0 f text.obj - 0001:000b6b10 ?FWouldBe@MBMP@@SGHJ@Z 004b7b10 f mbmp.obj - 0001:000b6b50 ?FIs@MBMP@@UAEHJ@Z 004b7b50 f mbmp.obj - 0001:000b6b80 ?Cls@MBMP@@UAEJXZ 004b7b80 f mbmp.obj - 0001:000b6bb0 ??1MBMP@@UAE@XZ 004b7bb0 f mbmp.obj - 0001:000b6c20 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 004b7c20 f mbmp.obj - 0001:000b6d20 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 004b7d20 f mbmp.obj - 0001:000b7440 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 004b8440 f mbmp.obj - 0001:000b7580 ?PmbmpRead@MBMP@@SGPAV1@PAVBLCK@@@Z 004b8580 f mbmp.obj - 0001:000b79c0 ?CbOnFile@MBMP@@UAEJXZ 004b89c0 f mbmp.obj - 0001:000b7a20 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 004b8a20 f mbmp.obj - 0001:000b7b70 ?GetRc@MBMP@@QAEXPAVRC@@@Z 004b8b70 f mbmp.obj - 0001:000b7be0 ?FPtIn@MBMP@@QAEHJJ@Z 004b8be0 f mbmp.obj - 0001:000b7d80 ?AssertValid@MBMP@@QAEXK@Z 004b8d80 f mbmp.obj - 0001:000b7ed0 ?MarkMem@MBMP@@UAEXXZ 004b8ed0 f mbmp.obj - 0001:000b7f10 ?FReadMbmp@MBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004b8f10 f mbmp.obj - 0001:000b80c0 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 004b90c0 f mbmp.obj - 0001:000b8ac0 ??_GMBMP@@UAEPAXI@Z 004b9ac0 f mbmp.obj - 0001:000b8ac0 ??_EMBMP@@UAEPAXI@Z 004b9ac0 f mbmp.obj - 0001:000b8b00 ??0MBMP@@IAE@XZ 004b9b00 f mbmp.obj - 0001:000b8c50 ?FWouldBe@DOC@@SGHJ@Z 004b9c50 f chdoc.obj - 0001:000b8c90 ?FIs@DOC@@UAEHJ@Z 004b9c90 f chdoc.obj - 0001:000b8cc0 ?Cls@DOC@@UAEJXZ 004b9cc0 f chdoc.obj - 0001:000b8cf0 ?FWouldBe@DOCE@@SGHJ@Z 004b9cf0 f chdoc.obj - 0001:000b8d30 ?FIs@DOCE@@UAEHJ@Z 004b9d30 f chdoc.obj - 0001:000b8d60 ?Cls@DOCE@@UAEJXZ 004b9d60 f chdoc.obj - 0001:000b8d90 ?FWouldBe@DCLB@@SGHJ@Z 004b9d90 f chdoc.obj - 0001:000b8dd0 ?FIs@DCLB@@UAEHJ@Z 004b9dd0 f chdoc.obj - 0001:000b8e00 ?Cls@DCLB@@UAEJXZ 004b9e00 f chdoc.obj - 0001:000b8e30 ?FWouldBe@DCD@@SGHJ@Z 004b9e30 f chdoc.obj - 0001:000b8e70 ?FIs@DCD@@UAEHJ@Z 004b9e70 f chdoc.obj - 0001:000b8ea0 ?Cls@DCD@@UAEJXZ 004b9ea0 f chdoc.obj - 0001:000b8ed0 ?FWouldBe@SEL@@SGHJ@Z 004b9ed0 f chdoc.obj - 0001:000b8f10 ?FIs@SEL@@UAEHJ@Z 004b9f10 f chdoc.obj - 0001:000b8f40 ?Cls@SEL@@UAEJXZ 004b9f40 f chdoc.obj - 0001:000b8f70 ?FWouldBe@TSCG@@SGHJ@Z 004b9f70 f chdoc.obj - 0001:000b8fb0 ?FIs@TSCG@@UAEHJ@Z 004b9fb0 f chdoc.obj - 0001:000b8fe0 ?Cls@TSCG@@UAEJXZ 004b9fe0 f chdoc.obj - 0001:000b9010 ?_FDlgAddChunk@@YGHPAVDLG@@PAJPAX@Z 004ba010 f chdoc.obj - 0001:000b92e0 ??0DOC@@IAE@XZ 004ba2e0 f chdoc.obj - 0001:000b9320 ??1DOC@@MAE@XZ 004ba320 f chdoc.obj - 0001:000b9380 ?PdocNew@DOC@@SGPAV1@PAVFNI@@@Z 004ba380 f chdoc.obj - 0001:000b9520 ?PddgNew@DOC@@UAEPAVDDG@@PAUGCB@@@Z 004ba520 f chdoc.obj - 0001:000b9580 ?FGetFni@DOC@@UAEHPAVFNI@@@Z 004ba580 f chdoc.obj - 0001:000b9660 ?FSaveToFni@DOC@@UAEHPAVFNI@@H@Z 004ba660 f chdoc.obj - 0001:000b9750 ?FGetFniSave@DOC@@UAEHPAVFNI@@@Z 004ba750 f chdoc.obj - 0001:000b97b0 ?AssertValid@DOC@@QAEXK@Z 004ba7b0 f chdoc.obj - 0001:000b9840 ??0DOCE@@IAE@PAVDOCB@@PAVCFL@@KK@Z 004ba840 f chdoc.obj - 0001:000b98c0 ?_FInit@DOCE@@IAEHXZ 004ba8c0 f chdoc.obj - 0001:000b9990 ?PdoceFromChunk@DOCE@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 004ba990 f chdoc.obj - 0001:000b9a90 ?CloseDeletedDoce@DOCE@@SGXPAVDOCB@@@Z 004baa90 f chdoc.obj - 0001:000b9bf0 ?GetName@DOCE@@UAEXPAVSTN@@@Z 004babf0 f chdoc.obj - 0001:000b9ca0 ?FSave@DOCE@@UAEHJ@Z 004baca0 f chdoc.obj - 0001:000b9f90 ?_FSaveToChunk@DOCE@@MAEHKKH@Z 004baf90 f chdoc.obj - 0001:000ba170 ?AssertValid@DOCE@@QAEXK@Z 004bb170 f chdoc.obj - 0001:000ba250 ??0DCLB@@IAE@PAVDOCB@@PAUGCB@@@Z 004bb250 f chdoc.obj - 0001:000ba390 ?_LnFromYp@DCLB@@IAEJJ@Z 004bb390 f chdoc.obj - 0001:000ba410 ?_Scroll@DCLB@@MAEXJJJJ@Z 004bb410 f chdoc.obj - 0001:000ba760 ?_ScrollDxpDyp@DCLB@@MAEXJJ@Z 004bb760 f chdoc.obj - 0001:000ba820 ?_GetContent@DCLB@@IAEXPAVRC@@@Z 004bb820 f chdoc.obj - 0001:000ba860 ?GetMinMax@DCLB@@MAEXPAVRC@@@Z 004bb860 f chdoc.obj - 0001:000ba8d0 ?AssertValid@DCLB@@QAEXK@Z 004bb8d0 f chdoc.obj - 0001:000ba940 ??0DCD@@IAE@PAVDOCB@@PAVCFL@@PAUGCB@@@Z 004bb940 f chdoc.obj - 0001:000baa00 ?PdcdNew@DCD@@SGPAV1@PAVDOCB@@PAVCFL@@PAUGCB@@@Z 004bba00 f chdoc.obj - 0001:000bab20 ?_Activate@DCD@@MAEXH@Z 004bbb20 f chdoc.obj - 0001:000babb0 ?InvalAllDcd@DCD@@SGXPAVDOCB@@PAVCFL@@PAUCKI@@PAUKID@@@Z 004bbbb0 f chdoc.obj - 0001:000bad80 ?_InvalCkiKid@DCD@@IAEXPAUCKI@@PAUKID@@@Z 004bbd80 f chdoc.obj - 0001:000baf00 ?Draw@DCD@@UAEXPAVGNV@@PAVRC@@@Z 004bbf00 f chdoc.obj - 0001:000bb5e0 ?_DrawSel@DCD@@IAEXPAVGNV@@@Z 004bc5e0 f chdoc.obj - 0001:000bb710 ?_SetSel@DCD@@IAEXJPAUCKI@@PAUKID@@@Z 004bc710 f chdoc.obj - 0001:000bb8e0 ?_ShowSel@DCD@@IAEXXZ 004bc8e0 f chdoc.obj - 0001:000bb9f0 ?MouseDown@DCD@@UAEXJJJK@Z 004bc9f0 f chdoc.obj - 0001:000bbef0 ?FTemp@CFL@@QAEHXZ 004bcef0 f chdoc.obj - 0001:000bbf20 ?_HiliteLn@DCD@@IAEXJ@Z 004bcf20 f chdoc.obj - 0001:000bc030 ?FCmdReopen@DCD@@UAEHPAUCMD@@@Z 004bd030 f chdoc.obj - 0001:000bc260 ?FCmdKey@DCD@@UAEHPAUCMD_KEY@@@Z 004bd260 f chdoc.obj - 0001:000bc630 ?_ScvMax@DCD@@MAEJH@Z 004bd630 f chdoc.obj - 0001:000bc6d0 ?FEnableDcdCmd@DCD@@UAEHPAUCMD@@PAK@Z 004bd6d0 f chdoc.obj - 0001:000bc9e0 ?_FAddChunk@DCD@@IAEHKPAUCKI@@PAH@Z 004bd9e0 f chdoc.obj - 0001:000bcd40 ?FCmdAddChunk@DCD@@UAEHPAUCMD@@@Z 004bdd40 f chdoc.obj - 0001:000bce30 ?FCmdAddPicChunk@DCD@@UAEHPAUCMD@@@Z 004bde30 f chdoc.obj - 0001:000bd120 ?_FDlgMbmp@@YGHPAVDLG@@PAJPAX@Z 004be120 f chdoc.obj - 0001:000bd300 ?FCmdAddBitmapChunk@DCD@@UAEHPAUCMD@@@Z 004be300 f chdoc.obj - 0001:000bd7e0 ?PdocbPar@DOCB@@QAEPAV1@XZ 004be7e0 f chdoc.obj - 0001:000bd810 ?PdocbSib@DOCB@@QAEPAV1@XZ 004be810 f chdoc.obj - 0001:000bd840 ?PdocbChd@DOCB@@QAEPAV1@XZ 004be840 f chdoc.obj - 0001:000bd870 ?FCmdAddFileChunk@DCD@@UAEHPAUCMD@@@Z 004be870 f chdoc.obj - 0001:000bdaf0 ?_FDlgEditChunkInfo@@YGHPAVDLG@@PAJPAX@Z 004beaf0 f chdoc.obj - 0001:000bdd50 ?_FEditChunkInfo@DCD@@IAEHPAUCKI@@@Z 004bed50 f chdoc.obj - 0001:000be000 ?FCmdEditChunkInfo@DCD@@UAEHPAUCMD@@@Z 004bf000 f chdoc.obj - 0001:000be110 ?FCmdDeleteChunk@DCD@@UAEHPAUCMD@@@Z 004bf110 f chdoc.obj - 0001:000be240 ?_YpFromLn@DCLB@@IAEJJ@Z 004bf240 f chdoc.obj - 0001:000be290 ?_XpFromIch@DCLB@@IAEJJ@Z 004bf290 f chdoc.obj - 0001:000be2d0 ?Ikid@SEL@@QAEJXZ 004bf2d0 f chdoc.obj - 0001:000be300 ?Ln@SEL@@QAEJXZ 004bf300 f chdoc.obj - 0001:000be330 ?_FDlgChangeChid@@YGHPAVDLG@@PAJPAX@Z 004bf330 f chdoc.obj - 0001:000be550 ?InvalLim@SEL@@QAEXXZ 004bf550 f chdoc.obj - 0001:000be580 ?Pcmm@DCD@@MAEPAUCMM@CMH@@XZ 004bf580 f chdoc.obj - 0001:000be5b0 ?_FChangeChid@DCD@@IAEHPAUCKI@@PAUKID@@@Z 004bf5b0 f chdoc.obj - 0001:000be720 ?FCmdChangeChid@DCD@@UAEHPAUCMD@@@Z 004bf720 f chdoc.obj - 0001:000be860 ?Icki@SEL@@QAEJXZ 004bf860 f chdoc.obj - 0001:000be890 ?_FDlgAdoptChunk@@YGHPAVDLG@@PAJPAX@Z 004bf890 f chdoc.obj - 0001:000bec90 ?_FDoAdoptChunkDlg@DCD@@IAEHPAUCKI@@PAUKID@@@Z 004bfc90 f chdoc.obj - 0001:000befc0 ?FCmdAdoptChunk@DCD@@UAEHPAUCMD@@@Z 004bffc0 f chdoc.obj - 0001:000bf070 ?FCmdUnadoptChunk@DCD@@UAEHPAUCMD@@@Z 004c0070 f chdoc.obj - 0001:000bf140 ?FCmdEditChunk@DCD@@UAEHPAUCMD@@@Z 004c0140 f chdoc.obj - 0001:000bf1a0 ?_EditCki@DCD@@IAEXPAUCKI@@J@Z 004c01a0 f chdoc.obj - 0001:000bf720 ?FCmdImportScript@DCD@@UAEHPAUCMD@@@Z 004c0720 f chdoc.obj - 0001:000bfa70 ?Draw@TSCG@@UAEXPAVGNV@@PAVRC@@@Z 004c0a70 f chdoc.obj - 0001:000bfab0 ?FCmdTestScript@DCD@@UAEHPAUCMD@@@Z 004c0ab0 f chdoc.obj - 0001:000bfc30 ?FCmdStopSound@DCD@@UAEHPAUCMD@@@Z 004c0c30 f chdoc.obj - 0001:000bfcb0 ?FCmdPack@DCD@@UAEHPAUCMD@@@Z 004c0cb0 f chdoc.obj - 0001:000bfe50 ?FTestScript@DCD@@QAEHKKJ@Z 004c0e50 f chdoc.obj - 0001:000c00f0 ??0TSCG@@QAE@PAUGCB@@@Z 004c10f0 f chdoc.obj - 0001:000c0130 ?Pcmm@TSCG@@MAEPAUCMM@CMH@@XZ 004c1130 f chdoc.obj - 0001:000c0160 ?FCmdDisasmScript@DCD@@UAEHPAUCMD@@@Z 004c1160 f chdoc.obj - 0001:000c0350 ?_FCopySel@DCD@@MAEHPAPAVDOCB@@@Z 004c1350 f chdoc.obj - 0001:000c0440 ?Pcfl@DOC@@QAEPAVCFL@@XZ 004c1440 f chdoc.obj - 0001:000c0470 ?_ClearSel@DCD@@MAEXXZ 004c1470 f chdoc.obj - 0001:000c0510 ?_FPaste@DCD@@MAEHPAVCLIP@@HJ@Z 004c1510 f chdoc.obj - 0001:000c07b0 ?FCmdSetColorTable@DCD@@UAEHPAUCMD@@@Z 004c17b0 f chdoc.obj - 0001:000c08e0 ?FCmdFilterChunk@DCD@@UAEHPAUCMD@@@Z 004c18e0 f chdoc.obj - 0001:000c0d60 ?FHideKids@SEL@@QAEHXZ 004c1d60 f chdoc.obj - 0001:000c0d90 ?FHideList@SEL@@QAEHXZ 004c1d90 f chdoc.obj - 0001:000c0dc0 ?FCmdCloneChunk@DCD@@UAEHPAUCMD@@@Z 004c1dc0 f chdoc.obj - 0001:000c0f00 ?AssertValid@DCD@@QAEXK@Z 004c1f00 f chdoc.obj - 0001:000c1000 ?MarkMem@DCD@@UAEXXZ 004c2000 f chdoc.obj - 0001:000c1050 ?FGetCtgFromStn@@YGHPAKPAVSTN@@@Z 004c2050 f chdoc.obj - 0001:000c1170 ?_FGetCtg@@YGHPAVDLG@@JPAK@Z 004c2170 f chdoc.obj - 0001:000c1230 ?_PutCtgStn@@YGXPAVDLG@@JK@Z 004c2230 f chdoc.obj - 0001:000c12e0 ??0SEL@@QAE@PAVCFL@@@Z 004c22e0 f chdoc.obj - 0001:000c13c0 ??0SEL@@QAE@AAV0@@Z 004c23c0 f chdoc.obj - 0001:000c1410 ??1SEL@@UAE@XZ 004c2410 f chdoc.obj - 0001:000c1470 ??4SEL@@QAEAAV0@AAV0@@Z 004c2470 f chdoc.obj - 0001:000c1510 ?_SetNil@SEL@@IAEXXZ 004c2510 f chdoc.obj - 0001:000c1580 ?GrfselGetCkiKid@SEL@@QAEKPAUCKI@@PAUKID@@@Z 004c2580 f chdoc.obj - 0001:000c1690 ?FSetLn@SEL@@QAEHJ@Z 004c2690 f chdoc.obj - 0001:000c1890 ?LnLim@SEL@@QAEJXZ 004c2890 f chdoc.obj - 0001:000c1960 ?FAdvance@SEL@@QAEHXZ 004c2960 f chdoc.obj - 0001:000c1af0 ?FRetreat@SEL@@QAEHXZ 004c2af0 f chdoc.obj - 0001:000c1d20 ?FSetCkiKid@SEL@@QAEHPAUCKI@@PAUKID@@H@Z 004c2d20 f chdoc.obj - 0001:000c1e30 ?Adjust@SEL@@QAEXH@Z 004c2e30 f chdoc.obj - 0001:000c2080 ?HideKids@SEL@@QAEXH@Z 004c3080 f chdoc.obj - 0001:000c2120 ?HideList@SEL@@QAEXH@Z 004c3120 f chdoc.obj - 0001:000c21c0 ?FGetCtgFilter@SEL@@QAEHJPAK@Z 004c31c0 f chdoc.obj - 0001:000c2260 ?FreeFilterList@SEL@@QAEXXZ 004c3260 f chdoc.obj - 0001:000c22f0 ?FAddCtgFilter@SEL@@QAEHK@Z 004c32f0 f chdoc.obj - 0001:000c23a0 ?_FFilter@SEL@@IAEHKK@Z 004c33a0 f chdoc.obj - 0001:000c2470 ?AssertValid@SEL@@QAEXK@Z 004c3470 f chdoc.obj - 0001:000c25b0 ?MarkMem@SEL@@UAEXXZ 004c35b0 f chdoc.obj - 0001:000c2620 ??_ETSCG@@UAEPAXI@Z 004c3620 f chdoc.obj - 0001:000c2620 ??_GTSCG@@UAEPAXI@Z 004c3620 f chdoc.obj - 0001:000c2660 ??_EDOC@@MAEPAXI@Z 004c3660 f chdoc.obj - 0001:000c2660 ??_GDOC@@MAEPAXI@Z 004c3660 f chdoc.obj - 0001:000c26a0 ??_GDOCE@@UAEPAXI@Z 004c36a0 f chdoc.obj - 0001:000c26a0 ??_EDOCE@@UAEPAXI@Z 004c36a0 f chdoc.obj - 0001:000c26e0 ??_EDCLB@@UAEPAXI@Z 004c36e0 f chdoc.obj - 0001:000c26e0 ??_GDCLB@@UAEPAXI@Z 004c36e0 f chdoc.obj - 0001:000c2720 ??_GDCD@@UAEPAXI@Z 004c3720 f chdoc.obj - 0001:000c2720 ??_EDCD@@UAEPAXI@Z 004c3720 f chdoc.obj - 0001:000c2760 ??1DCLB@@UAE@XZ 004c3760 f chdoc.obj - 0001:000c2790 ??_ESEL@@UAEPAXI@Z 004c3790 f chdoc.obj - 0001:000c2790 ??_GSEL@@UAEPAXI@Z 004c3790 f chdoc.obj - 0001:000c27d0 ??1TSCG@@UAE@XZ 004c37d0 f chdoc.obj - 0001:000c2800 ??1DOCE@@UAE@XZ 004c3800 f chdoc.obj - 0001:000c2830 ??1DCD@@UAE@XZ 004c3830 f chdoc.obj - 0001:000c2870 ??_9@$BBAA@A 004c3870 f chdoc.obj - 0001:000c2880 ??_9@$BOA@A 004c3880 f chdoc.obj - 0001:000c2890 ??_9@$BBAE@A 004c3890 f chdoc.obj - 0001:000c28a0 ??_9@$BOE@A 004c38a0 f chdoc.obj - 0001:000c28b0 ??_9@$BBAI@A 004c38b0 f chdoc.obj - 0001:000c28c0 ??_9@$BOI@A 004c38c0 f chdoc.obj - 0001:000c28d0 ??_9@$BBAM@A 004c38d0 f chdoc.obj - 0001:000c28e0 ??_9@$BOM@A 004c38e0 f chdoc.obj - 0001:000c28f0 ??_9@$BBBA@A 004c38f0 f chdoc.obj - 0001:000c2900 ??_9@$BPA@A 004c3900 f chdoc.obj - 0001:000c2910 ??_9@$BPE@A 004c3910 f chdoc.obj - 0001:000c2920 ??_9@$BNE@A 004c3920 f chdoc.obj - 0001:000c2930 ??_9@$BPI@A 004c3930 f chdoc.obj - 0001:000c2940 ??_9@$BNI@A 004c3940 f chdoc.obj - 0001:000c2950 ??_9@$BPM@A 004c3950 f chdoc.obj - 0001:000c2960 ??_9@$BNM@A 004c3960 f chdoc.obj - 0001:000c2990 ?FWouldBe@APP@@SGHJ@Z 004c3990 f ched.obj - 0001:000c29d0 ?FIs@APP@@UAEHJ@Z 004c39d0 f ched.obj - 0001:000c2a00 ?Cls@APP@@UAEJXZ 004c3a00 f ched.obj - 0001:000c2a30 ?FrameMain@@YGXXZ 004c3a30 f ched.obj - 0001:000c2a50 ?_FInit@APP@@MAEHKKJ@Z 004c3a50 f ched.obj - 0001:000c2df0 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 004c3df0 f ched.obj - 0001:000c2ec0 ?UpdateHwnd@APP@@UAEXPAUHWND__@@PAVRC@@K@Z 004c3ec0 f ched.obj - 0001:000c2f60 ?_FastUpdate@APP@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 004c3f60 f ched.obj - 0001:000c30d0 ?FCmdOpen@APP@@UAEHPAUCMD@@@Z 004c40d0 f ched.obj - 0001:000c3400 ??1APP@@UAE@XZ 004c4400 f ched.obj - 0001:000c3430 ??0APP@@QAE@XZ 004c4430 f ched.obj - 0001:000c3470 ??_GAPP@@UAEPAXI@Z 004c4470 f ched.obj - 0001:000c3470 ??_EAPP@@UAEPAXI@Z 004c4470 f ched.obj - 0001:000c34b0 ??_9@$BBDI@A 004c44b0 f ched.obj - 0001:000c35d0 ?Pdocb@DMD@@QAEPAVDOCB@@XZ 004c45d0 f ched.obj - 0001:000c3600 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 004c4600 f ched.obj - 0001:000c3630 ?FWouldBe@DOCG@@SGHJ@Z 004c4630 f chgrp.obj - 0001:000c3670 ?FIs@DOCG@@UAEHJ@Z 004c4670 f chgrp.obj - 0001:000c36a0 ?Cls@DOCG@@UAEJXZ 004c46a0 f chgrp.obj - 0001:000c36d0 ?FWouldBe@DOCI@@SGHJ@Z 004c46d0 f chgrp.obj - 0001:000c3710 ?FIs@DOCI@@UAEHJ@Z 004c4710 f chgrp.obj - 0001:000c3740 ?Cls@DOCI@@UAEJXZ 004c4740 f chgrp.obj - 0001:000c3770 ?FWouldBe@DCGB@@SGHJ@Z 004c4770 f chgrp.obj - 0001:000c37b0 ?FIs@DCGB@@UAEHJ@Z 004c47b0 f chgrp.obj - 0001:000c37e0 ?Cls@DCGB@@UAEJXZ 004c47e0 f chgrp.obj - 0001:000c3810 ?FWouldBe@DCGL@@SGHJ@Z 004c4810 f chgrp.obj - 0001:000c3850 ?FIs@DCGL@@UAEHJ@Z 004c4850 f chgrp.obj - 0001:000c3880 ?Cls@DCGL@@UAEJXZ 004c4880 f chgrp.obj - 0001:000c38b0 ?FWouldBe@DCGG@@SGHJ@Z 004c48b0 f chgrp.obj - 0001:000c38f0 ?FIs@DCGG@@UAEHJ@Z 004c48f0 f chgrp.obj - 0001:000c3920 ?Cls@DCGG@@UAEJXZ 004c4920 f chgrp.obj - 0001:000c3950 ?FWouldBe@DCST@@SGHJ@Z 004c4950 f chgrp.obj - 0001:000c3990 ?FIs@DCST@@UAEHJ@Z 004c4990 f chgrp.obj - 0001:000c39c0 ?Cls@DCST@@UAEJXZ 004c49c0 f chgrp.obj - 0001:000c39f0 ??0DOCG@@IAE@PAVDOCB@@PAVCFL@@KKJ@Z 004c49f0 f chgrp.obj - 0001:000c3a50 ??1DOCG@@MAE@XZ 004c4a50 f chgrp.obj - 0001:000c3ab0 ?PdocgNew@DOCG@@SGPAV1@PAVDOCB@@PAVCFL@@KKJ@Z 004c4ab0 f chgrp.obj - 0001:000c3cd0 ?_FDlgGrpbNew@@YGHPAVDLG@@PAJPAX@Z 004c4cd0 f chgrp.obj - 0001:000c3e30 ?_FRead@DOCG@@MAEHPAVBLCK@@@Z 004c4e30 f chgrp.obj - 0001:000c43b0 ?PddgNew@DOCG@@UAEPAVDDG@@PAUGCB@@@Z 004c53b0 f chgrp.obj - 0001:000c4520 ?_FWrite@DOCG@@MAEHPAVBLCK@@H@Z 004c5520 f chgrp.obj - 0001:000c45f0 ?_CbOnFile@DOCG@@MAEJXZ 004c55f0 f chgrp.obj - 0001:000c4650 ?AssertValid@DOCG@@QAEXK@Z 004c5650 f chgrp.obj - 0001:000c47e0 ?MarkMem@DOCG@@UAEXXZ 004c57e0 f chgrp.obj - 0001:000c4830 ??0DCGB@@IAE@PAVDOCB@@PAVGRPB@@JJPAUGCB@@@Z 004c5830 f chgrp.obj - 0001:000c49b0 ?InvalAllDcgb@DCGB@@SGXPAVDOCB@@PAVGRPB@@JJJ@Z 004c59b0 f chgrp.obj - 0001:000c4a50 ?_InvalIv@DCGB@@IAEXJJJ@Z 004c5a50 f chgrp.obj - 0001:000c4bc0 ?_Activate@DCGB@@MAEXH@Z 004c5bc0 f chgrp.obj - 0001:000c4c50 ?_ScvMax@DCGB@@MAEJH@Z 004c5c50 f chgrp.obj - 0001:000c4d20 ?_SetSel@DCGB@@IAEXJ@Z 004c5d20 f chgrp.obj - 0001:000c4ee0 ?_ShowSel@DCGB@@IAEXXZ 004c5ee0 f chgrp.obj - 0001:000c4ff0 ?_DrawSel@DCGB@@IAEXPAVGNV@@@Z 004c5ff0 f chgrp.obj - 0001:000c5100 ?FCmdKey@DCGB@@UAEHPAUCMD_KEY@@@Z 004c6100 f chgrp.obj - 0001:000c5460 ?MouseDown@DCGB@@UAEXJJJK@Z 004c6460 f chgrp.obj - 0001:000c56d0 ?FEnableDcgbCmd@DCGB@@UAEHPAUCMD@@PAK@Z 004c66d0 f chgrp.obj - 0001:000c5830 ?FCmdEditItem@DCGB@@UAEHPAUCMD@@@Z 004c6830 f chgrp.obj - 0001:000c5890 ?_EditIvDln@DCGB@@IAEXJJ@Z 004c6890 f chgrp.obj - 0001:000c5920 ?FCmdDeleteItem@DCGB@@UAEHPAUCMD@@@Z 004c6920 f chgrp.obj - 0001:000c5960 ?_DeleteIv@DCGB@@IAEXJ@Z 004c6960 f chgrp.obj - 0001:000c5a90 ?AssertValid@DCGB@@QAEXK@Z 004c6a90 f chgrp.obj - 0001:000c5b30 ?MarkMem@DCGB@@UAEXXZ 004c6b30 f chgrp.obj - 0001:000c5b90 ??0DCGL@@IAE@PAVDOCB@@PAVGLB@@JPAUGCB@@@Z 004c6b90 f chgrp.obj - 0001:000c5be0 ?PdcglNew@DCGL@@SGPAV1@PAVDOCB@@PAVGLB@@JPAUGCB@@@Z 004c6be0 f chgrp.obj - 0001:000c5d50 ?Draw@DCGL@@UAEXPAVGNV@@PAVRC@@@Z 004c6d50 f chgrp.obj - 0001:000c6130 ?FCmdAddItem@DCGL@@UAEHPAUCMD@@@Z 004c7130 f chgrp.obj - 0001:000c6310 ??0DCGG@@IAE@PAVDOCB@@PAVGGB@@JPAUGCB@@@Z 004c7310 f chgrp.obj - 0001:000c6370 ?PdcggNew@DCGG@@SGPAV1@PAVDOCB@@PAVGGB@@JPAUGCB@@@Z 004c7370 f chgrp.obj - 0001:000c64e0 ?Draw@DCGG@@UAEXPAVGNV@@PAVRC@@@Z 004c74e0 f chgrp.obj - 0001:000c6a20 ?FCmdAddItem@DCGG@@UAEHPAUCMD@@@Z 004c7a20 f chgrp.obj - 0001:000c6c50 ??0DCST@@IAE@PAVDOCB@@PAVGSTB@@JPAUGCB@@@Z 004c7c50 f chgrp.obj - 0001:000c6cb0 ?PdcstNew@DCST@@SGPAV1@PAVDOCB@@PAVGSTB@@JPAUGCB@@@Z 004c7cb0 f chgrp.obj - 0001:000c6e20 ?Draw@DCST@@UAEXPAVGNV@@PAVRC@@@Z 004c7e20 f chgrp.obj - 0001:000c74d0 ?FCmdAddItem@DCST@@UAEHPAUCMD@@@Z 004c84d0 f chgrp.obj - 0001:000c7780 ??0DOCI@@IAE@PAVDOCB@@PAVGRPB@@JJJ@Z 004c8780 f chgrp.obj - 0001:000c78a0 ?PdociNew@DOCI@@SGPAV1@PAVDOCB@@PAVGRPB@@JJJ@Z 004c88a0 f chgrp.obj - 0001:000c7a70 ?_FInit@DOCI@@IAEHXZ 004c8a70 f chgrp.obj - 0001:000c7b10 ?PddgNew@DOCI@@UAEPAVDDG@@PAUGCB@@@Z 004c8b10 f chgrp.obj - 0001:000c7b50 ?GetName@DOCI@@UAEXPAVSTN@@@Z 004c8b50 f chgrp.obj - 0001:000c7c50 ?FSave@DOCI@@UAEHJ@Z 004c8c50 f chgrp.obj - 0001:000c7d30 ?_FSaveToItem@DOCI@@MAEHJH@Z 004c8d30 f chgrp.obj - 0001:000c7db0 ?_FWrite@DOCI@@MAEHJ@Z 004c8db0 f chgrp.obj - 0001:000c8070 ?_HqRead@DOCI@@MAEPAXXZ 004c9070 f chgrp.obj - 0001:000c8410 ?AssertValid@DOCI@@QAEXK@Z 004c9410 f chgrp.obj - 0001:000c84a0 ?MarkMem@DOCI@@UAEXXZ 004c94a0 f chgrp.obj - 0001:000c8510 ??_GDOCG@@MAEPAXI@Z 004c9510 f chgrp.obj - 0001:000c8510 ??_EDOCG@@MAEPAXI@Z 004c9510 f chgrp.obj - 0001:000c8550 ??_EDCGB@@UAEPAXI@Z 004c9550 f chgrp.obj - 0001:000c8550 ??_GDCGB@@UAEPAXI@Z 004c9550 f chgrp.obj - 0001:000c8590 ??_GDCGL@@UAEPAXI@Z 004c9590 f chgrp.obj - 0001:000c8590 ??_EDCGL@@UAEPAXI@Z 004c9590 f chgrp.obj - 0001:000c85d0 ??1DCGB@@UAE@XZ 004c95d0 f chgrp.obj - 0001:000c8600 ??_EDCGG@@UAEPAXI@Z 004c9600 f chgrp.obj - 0001:000c8600 ??_GDCGG@@UAEPAXI@Z 004c9600 f chgrp.obj - 0001:000c8640 ?Pcmm@DCGB@@MAEPAUCMM@CMH@@XZ 004c9640 f chgrp.obj - 0001:000c8670 ??_EDCST@@UAEPAXI@Z 004c9670 f chgrp.obj - 0001:000c8670 ??_GDCST@@UAEPAXI@Z 004c9670 f chgrp.obj - 0001:000c86b0 ?_YpFromIvDln@DCGB@@IAEJJJ@Z 004c96b0 f chgrp.obj - 0001:000c86f0 ??_GDOCI@@UAEPAXI@Z 004c96f0 f chgrp.obj - 0001:000c86f0 ??_EDOCI@@UAEPAXI@Z 004c96f0 f chgrp.obj - 0001:000c8730 ?_LnFromIvDln@DCGB@@IAEJJJ@Z 004c9730 f chgrp.obj - 0001:000c8770 ?_LnLim@DCGB@@IAEJXZ 004c9770 f chgrp.obj - 0001:000c87b0 ??1DCGL@@UAE@XZ 004c97b0 f chgrp.obj - 0001:000c87e0 ??1DCGG@@UAE@XZ 004c97e0 f chgrp.obj - 0001:000c8810 ??1DCST@@UAE@XZ 004c9810 f chgrp.obj - 0001:000c8840 ??1DOCI@@UAE@XZ 004c9840 f chgrp.obj - 0001:000c8870 ?FWouldBe@DCH@@SGHJ@Z 004c9870 f chhex.obj - 0001:000c88b0 ?FIs@DCH@@UAEHJ@Z 004c98b0 f chhex.obj - 0001:000c88e0 ?Cls@DCH@@UAEJXZ 004c98e0 f chhex.obj - 0001:000c8910 ?FWouldBe@DOCH@@SGHJ@Z 004c9910 f chhex.obj - 0001:000c8950 ?FIs@DOCH@@UAEHJ@Z 004c9950 f chhex.obj - 0001:000c8980 ?Cls@DOCH@@UAEJXZ 004c9980 f chhex.obj - 0001:000c89b0 ?FWouldBe@DHEX@@SGHJ@Z 004c99b0 f chhex.obj - 0001:000c89f0 ?FIs@DHEX@@UAEHJ@Z 004c99f0 f chhex.obj - 0001:000c8a20 ?Cls@DHEX@@UAEJXZ 004c9a20 f chhex.obj - 0001:000c8a50 ?PdhexNew@DHEX@@SGPAV1@XZ 004c9a50 f chhex.obj - 0001:000c8ac0 ??0DHEX@@IAE@PAVDOCB@@K@Z 004c9ac0 f chhex.obj - 0001:000c8b10 ?PddgNew@DHEX@@UAEPAVDDG@@PAUGCB@@@Z 004c9b10 f chhex.obj - 0001:000c8b50 ?AssertValid@DHEX@@QAEXK@Z 004c9b50 f chhex.obj - 0001:000c8be0 ?MarkMem@DHEX@@UAEXXZ 004c9be0 f chhex.obj - 0001:000c8c30 ??0DCH@@IAE@PAVDOCB@@PAVBSF@@HPAUGCB@@@Z 004c9c30 f chhex.obj - 0001:000c8cf0 ?PdchNew@DCH@@SGPAV1@PAVDOCB@@PAVBSF@@HPAUGCB@@@Z 004c9cf0 f chhex.obj - 0001:000c8e10 ?_Activate@DCH@@MAEXH@Z 004c9e10 f chhex.obj - 0001:000c8ea0 ?Draw@DCH@@UAEXPAVGNV@@PAVRC@@@Z 004c9ea0 f chhex.obj - 0001:000c9420 ?_DrawHeader@DCH@@IAEXPAVGNV@@@Z 004ca420 f chhex.obj - 0001:000c9670 ?FCmdKey@DCH@@UAEHPAUCMD_KEY@@@Z 004ca670 f chhex.obj - 0001:000c9db0 ?_FReplace@DCH@@IAEHPAEJJJH@Z 004cadb0 f chhex.obj - 0001:000c9ec0 ?_InvalAllDch@DCH@@IAEXJJJ@Z 004caec0 f chhex.obj - 0001:000c9f80 ?_InvalIb@DCH@@IAEXJJJ@Z 004caf80 f chhex.obj - 0001:000ca180 ?_SwitchSel@DCH@@IAEXH@Z 004cb180 f chhex.obj - 0001:000ca240 ?_ShowSel@DCH@@IAEXXZ 004cb240 f chhex.obj - 0001:000ca470 ?_InvertSel@DCH@@IAEXPAVGNV@@@Z 004cb470 f chhex.obj - 0001:000ca8c0 ?_InvertIbRange@DCH@@IAEXPAVGNV@@JJH@Z 004cb8c0 f chhex.obj - 0001:000caae0 ?_SetHalfSel@DCH@@IAEXJ@Z 004cbae0 f chhex.obj - 0001:000cac50 ?_SetSel@DCH@@IAEXJJH@Z 004cbc50 f chhex.obj - 0001:000cafb0 ?_SetHexSel@DCH@@IAEXH@Z 004cbfb0 f chhex.obj - 0001:000cb070 ?_IchFromCb@DCH@@IAEJJHH@Z 004cc070 f chhex.obj - 0001:000cb130 ?_XpFromIb@DCH@@IAEJJH@Z 004cc130 f chhex.obj - 0001:000cb180 ?_XpFromCb@DCH@@IAEJJHH@Z 004cc180 f chhex.obj - 0001:000cb1c0 ?_YpFromIb@DCH@@IAEJJ@Z 004cc1c0 f chhex.obj - 0001:000cb220 ?_IbFromPt@DCH@@IAEJJJPAH0@Z 004cc220 f chhex.obj - 0001:000cb490 ?MouseDown@DCH@@UAEXJJJK@Z 004cc490 f chhex.obj - 0001:000cb6a0 ?_ScvMax@DCH@@MAEJH@Z 004cc6a0 f chhex.obj - 0001:000cb760 ?_FCopySel@DCH@@MAEHPAPAVDOCB@@@Z 004cc760 f chhex.obj - 0001:000cb890 ?Pbsf@DHEX@@QAEPAVBSF@@XZ 004cc890 f chhex.obj - 0001:000cb8c0 ?_ClearSel@DCH@@MAEXXZ 004cc8c0 f chhex.obj - 0001:000cb900 ?_FPaste@DCH@@MAEHPAVCLIP@@HJ@Z 004cc900 f chhex.obj - 0001:000cbc10 ?AssertValid@DCH@@QAEXK@Z 004ccc10 f chhex.obj - 0001:000cbce0 ?MarkMem@DCH@@UAEXXZ 004ccce0 f chhex.obj - 0001:000cbd40 ??0DOCH@@IAE@PAVDOCB@@PAVCFL@@KK@Z 004ccd40 f chhex.obj - 0001:000cbd90 ?PdochNew@DOCH@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 004ccd90 f chhex.obj - 0001:000cbfa0 ?_FRead@DOCH@@MAEHPAVBLCK@@@Z 004ccfa0 f chhex.obj - 0001:000cc090 ?PddgNew@DOCH@@UAEPAVDDG@@PAUGCB@@@Z 004cd090 f chhex.obj - 0001:000cc0f0 ?_CbOnFile@DOCH@@MAEJXZ 004cd0f0 f chhex.obj - 0001:000cc140 ?_FWrite@DOCH@@MAEHPAVBLCK@@H@Z 004cd140 f chhex.obj - 0001:000cc1c0 ?AssertValid@DOCH@@QAEXK@Z 004cd1c0 f chhex.obj - 0001:000cc250 ?MarkMem@DOCH@@UAEXXZ 004cd250 f chhex.obj - 0001:000cc3f0 ??_GDHEX@@UAEPAXI@Z 004cd3f0 f chhex.obj - 0001:000cc3f0 ??_EDHEX@@UAEPAXI@Z 004cd3f0 f chhex.obj - 0001:000cc430 ??_EDCH@@UAEPAXI@Z 004cd430 f chhex.obj - 0001:000cc430 ??_GDCH@@UAEPAXI@Z 004cd430 f chhex.obj - 0001:000cc470 ??_GDOCH@@UAEPAXI@Z 004cd470 f chhex.obj - 0001:000cc470 ??_EDOCH@@UAEPAXI@Z 004cd470 f chhex.obj - 0001:000cc4b0 ??1DHEX@@UAE@XZ 004cd4b0 f chhex.obj - 0001:000cc4e0 ??1DCH@@UAE@XZ 004cd4e0 f chhex.obj - 0001:000cc510 ??1DOCH@@UAE@XZ 004cd510 f chhex.obj - 0001:000cc540 ?FWouldBe@DOCMBMP@@SGHJ@Z 004cd540 f chmbmp.obj - 0001:000cc580 ?FIs@DOCMBMP@@UAEHJ@Z 004cd580 f chmbmp.obj - 0001:000cc5b0 ?Cls@DOCMBMP@@UAEJXZ 004cd5b0 f chmbmp.obj - 0001:000cc5e0 ?FWouldBe@DCMBMP@@SGHJ@Z 004cd5e0 f chmbmp.obj - 0001:000cc620 ?FIs@DCMBMP@@UAEHJ@Z 004cd620 f chmbmp.obj - 0001:000cc650 ?Cls@DCMBMP@@UAEJXZ 004cd650 f chmbmp.obj - 0001:000cc680 ??0DOCMBMP@@IAE@PAVDOCB@@PAVCFL@@KK@Z 004cd680 f chmbmp.obj - 0001:000cc6d0 ??1DOCMBMP@@MAE@XZ 004cd6d0 f chmbmp.obj - 0001:000cc730 ?PdocmbmpNew@DOCMBMP@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 004cd730 f chmbmp.obj - 0001:000cc840 ?PddgNew@DOCMBMP@@UAEPAVDDG@@PAUGCB@@@Z 004cd840 f chmbmp.obj - 0001:000cc880 ?_CbOnFile@DOCMBMP@@MAEJXZ 004cd880 f chmbmp.obj - 0001:000cc8b0 ?_FWrite@DOCMBMP@@MAEHPAVBLCK@@H@Z 004cd8b0 f chmbmp.obj - 0001:000cc970 ?_FRead@DOCMBMP@@MAEHPAVBLCK@@@Z 004cd970 f chmbmp.obj - 0001:000cca70 ?AssertValid@DOCMBMP@@QAEXK@Z 004cda70 f chmbmp.obj - 0001:000ccb00 ?MarkMem@DOCMBMP@@UAEXXZ 004cdb00 f chmbmp.obj - 0001:000ccb50 ??0DCMBMP@@IAE@PAVDOCB@@PAVMBMP@@PAUGCB@@@Z 004cdb50 f chmbmp.obj - 0001:000ccba0 ?GetMinMax@DCMBMP@@MAEXPAVRC@@@Z 004cdba0 f chmbmp.obj - 0001:000ccbe0 ?PdcmbmpNew@DCMBMP@@SGPAV1@PAVDOCB@@PAVMBMP@@PAUGCB@@@Z 004cdbe0 f chmbmp.obj - 0001:000ccd00 ?Draw@DCMBMP@@UAEXPAVGNV@@PAVRC@@@Z 004cdd00 f chmbmp.obj - 0001:000ccda0 ?AssertValid@DCMBMP@@QAEXK@Z 004cdda0 f chmbmp.obj - 0001:000cce40 ?MarkMem@DCMBMP@@UAEXXZ 004cde40 f chmbmp.obj - 0001:000ccec0 ??_EDOCMBMP@@MAEPAXI@Z 004cdec0 f chmbmp.obj - 0001:000ccec0 ??_GDOCMBMP@@MAEPAXI@Z 004cdec0 f chmbmp.obj - 0001:000ccf00 ??_EDCMBMP@@UAEPAXI@Z 004cdf00 f chmbmp.obj - 0001:000ccf00 ??_GDCMBMP@@UAEPAXI@Z 004cdf00 f chmbmp.obj - 0001:000ccf40 ??1DCMBMP@@UAE@XZ 004cdf40 f chmbmp.obj - 0001:000cd080 ?FWouldBe@DOCPIC@@SGHJ@Z 004ce080 f chpic.obj - 0001:000cd0c0 ?FIs@DOCPIC@@UAEHJ@Z 004ce0c0 f chpic.obj - 0001:000cd0f0 ?Cls@DOCPIC@@UAEJXZ 004ce0f0 f chpic.obj - 0001:000cd120 ?FWouldBe@DCPIC@@SGHJ@Z 004ce120 f chpic.obj - 0001:000cd160 ?FIs@DCPIC@@UAEHJ@Z 004ce160 f chpic.obj - 0001:000cd190 ?Cls@DCPIC@@UAEJXZ 004ce190 f chpic.obj - 0001:000cd1c0 ??0DOCPIC@@IAE@PAVDOCB@@PAVCFL@@KK@Z 004ce1c0 f chpic.obj - 0001:000cd210 ??1DOCPIC@@MAE@XZ 004ce210 f chpic.obj - 0001:000cd270 ?PdocpicNew@DOCPIC@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 004ce270 f chpic.obj - 0001:000cd380 ?PddgNew@DOCPIC@@UAEPAVDDG@@PAUGCB@@@Z 004ce380 f chpic.obj - 0001:000cd3c0 ?_CbOnFile@DOCPIC@@MAEJXZ 004ce3c0 f chpic.obj - 0001:000cd3f0 ?_FWrite@DOCPIC@@MAEHPAVBLCK@@H@Z 004ce3f0 f chpic.obj - 0001:000cd4b0 ?_FRead@DOCPIC@@MAEHPAVBLCK@@@Z 004ce4b0 f chpic.obj - 0001:000cd5b0 ?AssertValid@DOCPIC@@QAEXK@Z 004ce5b0 f chpic.obj - 0001:000cd640 ?MarkMem@DOCPIC@@UAEXXZ 004ce640 f chpic.obj - 0001:000cd690 ??0DCPIC@@IAE@PAVDOCB@@PAVPIC@@PAUGCB@@@Z 004ce690 f chpic.obj - 0001:000cd6e0 ?GetMinMax@DCPIC@@MAEXPAVRC@@@Z 004ce6e0 f chpic.obj - 0001:000cd720 ?PdcpicNew@DCPIC@@SGPAV1@PAVDOCB@@PAVPIC@@PAUGCB@@@Z 004ce720 f chpic.obj - 0001:000cd840 ?Draw@DCPIC@@UAEXPAVGNV@@PAVRC@@@Z 004ce840 f chpic.obj - 0001:000cd8d0 ?AssertValid@DCPIC@@QAEXK@Z 004ce8d0 f chpic.obj - 0001:000cd970 ?MarkMem@DCPIC@@UAEXXZ 004ce970 f chpic.obj - 0001:000cd9f0 ??_EDOCPIC@@MAEPAXI@Z 004ce9f0 f chpic.obj - 0001:000cd9f0 ??_GDOCPIC@@MAEPAXI@Z 004ce9f0 f chpic.obj - 0001:000cda30 ??_GDCPIC@@UAEPAXI@Z 004cea30 f chpic.obj - 0001:000cda30 ??_EDCPIC@@UAEPAXI@Z 004cea30 f chpic.obj - 0001:000cda70 ??1DCPIC@@UAE@XZ 004cea70 f chpic.obj - 0001:000cdbb0 ??0CHTXD@@IAE@PAVDOCB@@K@Z 004cebb0 f chtxt.obj - 0001:000cdbf0 ?PchtxdNew@CHTXD@@SGPAV1@PAVFNI@@PAVBSF@@FPAVDOCB@@K@Z 004cebf0 f chtxt.obj - 0001:000cdd40 ?PddgNew@CHTXD@@UAEPAVDDG@@PAUGCB@@@Z 004ced40 f chtxt.obj - 0001:000cdda0 ??0CHTDD@@IAE@PAVTXTB@@PAUGCB@@JKJJ@Z 004ceda0 f chtxt.obj - 0001:000cde00 ?PchtddNew@CHTDD@@SGPAV1@PAVTXTB@@PAUGCB@@JKJJ@Z 004cee00 f chtxt.obj - 0001:000cdf30 ?FCmdCompileChunky@CHTDD@@UAEHPAUCMD@@@Z 004cef30 f chtxt.obj - 0001:000ce1a0 ?FCmdCompileScript@CHTDD@@UAEHPAUCMD@@@Z 004cf1a0 f chtxt.obj - 0001:000ce490 ?OpenSinkDoc@@YGXPAVMSFIL@@@Z 004cf490 f chtxt.obj - 0001:000ce600 ??_GCHTXD@@UAEPAXI@Z 004cf600 f chtxt.obj - 0001:000ce600 ??_ECHTXD@@UAEPAXI@Z 004cf600 f chtxt.obj - 0001:000ce640 ??_ECHTDD@@UAEPAXI@Z 004cf640 f chtxt.obj - 0001:000ce640 ??_GCHTDD@@UAEPAXI@Z 004cf640 f chtxt.obj - 0001:000ce680 ??1CHTXD@@UAE@XZ 004cf680 f chtxt.obj - 0001:000ce6b0 ??1CHTDD@@UAE@XZ 004cf6b0 f chtxt.obj - 0001:000ce7f0 ?Ptxtb@TXTG@@QAEPAVTXTB@@XZ 004cf7f0 f chtxt.obj - 0001:000ce820 ?Pcmm@CHTDD@@MAEPAUCMM@CMH@@XZ 004cf820 f chtxt.obj - 0001:000ce842 _GetOpenFileNameA@4 004cf842 comdlg32:comdlg32.dll - 0001:000ce848 _GetSaveFileNameA@4 004cf848 comdlg32:comdlg32.dll - 0001:000ce84e _timeGetTime@0 004cf84e winmm:WINMM.dll - 0001:000ce854 _waveOutGetDevCapsA@12 004cf854 winmm:WINMM.dll - 0001:000ce85a _waveOutGetNumDevs@0 004cf85a winmm:WINMM.dll - 0001:000ce860 _midiOutGetVolume@8 004cf860 winmm:WINMM.dll - 0001:000ce866 _midiOutSetVolume@8 004cf866 winmm:WINMM.dll - 0001:000ce86c _midiOutShortMsg@8 004cf86c winmm:WINMM.dll - 0001:000ce872 _midiOutReset@4 004cf872 winmm:WINMM.dll - 0001:000ce878 _midiOutOpen@20 004cf878 winmm:WINMM.dll - 0001:000ce87e _midiOutClose@4 004cf87e winmm:WINMM.dll - 0001:000ce884 _midiOutUnprepareHeader@12 004cf884 winmm:WINMM.dll - 0001:000ce88a _midiOutPrepareHeader@12 004cf88a winmm:WINMM.dll - 0001:000ce890 _mciSendCommandA@16 004cf890 winmm:WINMM.dll - 0001:000ce896 _DrawDibDraw@52 004cf896 vfw32:MSVFW32.dll - 0001:000ce89c _AVIFileInit@0 004cf89c vfw32:AVIFIL32.dll - 0001:000ce8a2 _AVIFileExit@0 004cf8a2 vfw32:AVIFIL32.dll - 0001:000ce8a8 _AVIFileRelease@4 004cf8a8 vfw32:AVIFIL32.dll - 0001:000ce8ae _AVIStreamRelease@4 004cf8ae vfw32:AVIFIL32.dll - 0001:000ce8b4 _AVIStreamGetFrameClose@4 004cf8b4 vfw32:AVIFIL32.dll - 0001:000ce8ba _DrawDibClose@4 004cf8ba vfw32:MSVFW32.dll - 0001:000ce8c0 _DrawDibOpen@0 004cf8c0 vfw32:MSVFW32.dll - 0001:000ce8c6 _AVIStreamStart@4 004cf8c6 vfw32:AVIFIL32.dll - 0001:000ce8cc _AVIStreamLength@4 004cf8cc vfw32:AVIFIL32.dll - 0001:000ce8d2 _AVIFileInfoA@12 004cf8d2 vfw32:AVIFIL32.dll - 0001:000ce8d8 _AVIStreamGetFrameOpen@8 004cf8d8 vfw32:AVIFIL32.dll - 0001:000ce8de _AVIFileGetStream@16 004cf8de vfw32:AVIFIL32.dll - 0001:000ce8e4 _AVIFileOpenA@16 004cf8e4 vfw32:AVIFIL32.dll - 0001:000ce8ea _AVIStreamSampleToTime@8 004cf8ea vfw32:AVIFIL32.dll - 0001:000ce8f0 _AVIStreamTimeToSample@8 004cf8f0 vfw32:AVIFIL32.dll - 0001:000ce8f6 _AVIStreamGetFrame@8 004cf8f6 vfw32:AVIFIL32.dll - 0001:000ce900 _AMCreate@16 004cf900 f audiod:audioman.obj - 0001:000ce99a ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 004cf99a f audiod:audioman.obj - 0001:000ce9e8 _AMFinishCache@20 004cf9e8 f audiod:audioman.obj - 0001:000cea7a _GetAudioManMixer@0 004cfa7a f audiod:audioman.obj - 0001:000ceae3 _TimeToSamples@8 004cfae3 f audiod:audioman.obj - 0001:000ceb3c _SamplesToTime@8 004cfb3c f audiod:audioman.obj - 0001:000ceb95 _SizeToSamples@8 004cfb95 f audiod:audioman.obj - 0001:000cebee _SamplesToSize@8 004cfbee f audiod:audioman.obj - 0001:000cec47 _SoundToStreamAsWave@12 004cfc47 f audiod:audioman.obj - 0001:000cf0ae _SoundToFileAsWave@8 004d00ae f audiod:audioman.obj - 0001:000cf176 _DetectLeaks@8 004d0176 f audiod:audioman.obj - 0001:000cf1c0 _AllocSoundFromStream@16 004d01c0 f audiod:sound.obj - 0001:000cf298 _AllocSoundFromFile@20 004d0298 f audiod:sound.obj - 0001:000cf374 _AllocSoundFromMemory@12 004d0374 f audiod:sound.obj - 0001:000cf412 ??0CAMWavFileSrc@@QAE@XZ 004d0412 f audiod:sound.obj - 0001:000cf468 ??1CAMWavFileSrc@@QAE@XZ 004d0468 f audiod:sound.obj - 0001:000cf55e ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 004d055e f audiod:sound.obj - 0001:000cf5c8 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 004d05c8 f audiod:sound.obj - 0001:000cf5ee ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 004d05ee f audiod:sound.obj - 0001:000cf670 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 004d0670 f audiod:sound.obj - 0001:000cf8cf ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 004d08cf f audiod:sound.obj - 0001:000cfb15 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 004d0b15 f audiod:sound.obj - 0001:000cfbbb ?AddRef@CAMWavFileSrc@@UAGKXZ 004d0bbb f audiod:sound.obj - 0001:000cfbd9 ?Release@CAMWavFileSrc@@UAGKXZ 004d0bd9 f audiod:sound.obj - 0001:000cfc2f ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 004d0c2f f audiod:sound.obj - 0001:000cfd24 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 004d0d24 f audiod:sound.obj - 0001:000cfd87 ?GetSamples@CAMWavFileSrc@@UAGKXZ 004d0d87 f audiod:sound.obj - 0001:000cfd9f ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 004d0d9f f audiod:sound.obj - 0001:000cfdf0 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 004d0df0 f audiod:sound.obj - 0001:000d03ec ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 004d13ec f audiod:sound.obj - 0001:000d0400 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 004d1400 f audiod:sound.obj - 0001:000d0456 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 004d1456 f audiod:sound.obj - 0001:000d0970 ?IsEqualGUID@@YAHABU_GUID@@0@Z 004d1970 f audiod:sound.obj - 0001:000d09b0 ??0CRIFF@@QAE@PAUIStream@@@Z 004d19b0 f audiod:sound.obj - 0001:000d09f0 ??1CRIFF@@QAE@XZ 004d19f0 f audiod:sound.obj - 0001:000d0a30 ?GetStream@CRIFF@@QAEPAUIStream@@XZ 004d1a30 f audiod:sound.obj - 0001:000d0a50 ?SwapDWORD@@YAKK@Z 004d1a50 f audiod:sound.obj - 0001:000d0a70 ?SwapWORD@@YAGG@Z 004d1a70 f audiod:sound.obj - 0001:000d0a90 ??0IAMSound@@QAE@XZ 004d1a90 f audiod:sound.obj - 0001:000d0ac0 ??0IAMWavFileSrc@@QAE@XZ 004d1ac0 f audiod:sound.obj - 0001:000d0af0 ??_GCAMWavFileSrc@@QAEPAXI@Z 004d1af0 f audiod:sound.obj - 0001:000d0b30 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 004d1b30 f audiod:sound.obj - 0001:000d0b40 ?AddRef@CAMWavFileSrc@@W3AGKXZ 004d1b40 f audiod:sound.obj - 0001:000d0b50 ?Release@CAMWavFileSrc@@W3AGKXZ 004d1b50 f audiod:sound.obj - 0001:000d0b60 _AllocLoopFilter@12 004d1b60 f audiod:sndloop.obj - 0001:000d0bfe ?AddRef@CAMLoopFilter@@UAGKXZ 004d1bfe f audiod:sndloop.obj - 0001:000d0c19 ?Release@CAMLoopFilter@@UAGKXZ 004d1c19 f audiod:sndloop.obj - 0001:000d0c34 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 004d1c34 f audiod:sndloop.obj - 0001:000d0cce ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 004d1cce f audiod:sndloop.obj - 0001:000d0e04 ?GetSamples@CAMLoopFilter@@UAGKXZ 004d1e04 f audiod:sndloop.obj - 0001:000d0e35 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 004d1e35 f audiod:sndloop.obj - 0001:000d0e9f ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d1e9f f audiod:sndloop.obj - 0001:000d10e0 ??0CClassFactory@@QAE@XZ 004d20e0 f audiod:factory.obj - 0001:000d1114 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 004d2114 f audiod:factory.obj - 0001:000d1447 ?AddRef@CClassFactory@@UAGKXZ 004d2447 f audiod:factory.obj - 0001:000d1465 ?Release@CClassFactory@@UAGKXZ 004d2465 f audiod:factory.obj - 0001:000d14ae ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 004d24ae f audiod:factory.obj - 0001:000d1543 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 004d2543 f audiod:factory.obj - 0001:000d1c80 ?LockServer@CClassFactory@@UAGJH@Z 004d2c80 f audiod:factory.obj - 0001:000d1ca0 ??0IClassFactory@@QAE@XZ 004d2ca0 f audiod:factory.obj - 0001:000d1cd0 ??0CAMGateFilter@@QAE@XZ 004d2cd0 f audiod:factory.obj - 0001:000d1d60 ??0CAMLoopFilter@@QAE@XZ 004d2d60 f audiod:factory.obj - 0001:000d1df0 ??0CAMFaderFilter@@QAE@XZ 004d2df0 f audiod:factory.obj - 0001:000d1e80 ??0CAMRandomizeFilter@@QAE@XZ 004d2e80 f audiod:factory.obj - 0001:000d1f10 ??0CAMDistortFilter@@QAE@XZ 004d2f10 f audiod:factory.obj - 0001:000d1fa0 ??0CAMStereoFilter@@QAE@XZ 004d2fa0 f audiod:factory.obj - 0001:000d2030 ??0CAMTrimFilter@@QAE@XZ 004d3030 f audiod:factory.obj - 0001:000d20c0 ??0CAMBiasFilter@@QAE@XZ 004d30c0 f audiod:factory.obj - 0001:000d2150 ??_ECAMGateFilter@@UAEPAXI@Z 004d3150 f audiod:factory.obj - 0001:000d2150 ??_GCAMGateFilter@@UAEPAXI@Z 004d3150 f audiod:factory.obj - 0001:000d2190 ??0IAMGateFilter@@QAE@XZ 004d3190 f audiod:factory.obj - 0001:000d21c0 ??_GCAMLoopFilter@@UAEPAXI@Z 004d31c0 f audiod:factory.obj - 0001:000d21c0 ??_ECAMLoopFilter@@UAEPAXI@Z 004d31c0 f audiod:factory.obj - 0001:000d2200 ??0IAMLoopFilter@@QAE@XZ 004d3200 f audiod:factory.obj - 0001:000d2230 ??_GCAMFaderFilter@@UAEPAXI@Z 004d3230 f audiod:factory.obj - 0001:000d2230 ??_ECAMFaderFilter@@UAEPAXI@Z 004d3230 f audiod:factory.obj - 0001:000d2270 ??0IAMFaderFilter@@QAE@XZ 004d3270 f audiod:factory.obj - 0001:000d22a0 ??_ECAMRandomizeFilter@@UAEPAXI@Z 004d32a0 f audiod:factory.obj - 0001:000d22a0 ??_GCAMRandomizeFilter@@UAEPAXI@Z 004d32a0 f audiod:factory.obj - 0001:000d22e0 ??0IAMRandomizeFilter@@QAE@XZ 004d32e0 f audiod:factory.obj - 0001:000d2310 ??_GCAMDistortFilter@@UAEPAXI@Z 004d3310 f audiod:factory.obj - 0001:000d2310 ??_ECAMDistortFilter@@UAEPAXI@Z 004d3310 f audiod:factory.obj - 0001:000d2350 ??0IAMDistortFilter@@QAE@XZ 004d3350 f audiod:factory.obj - 0001:000d2380 ??_GCAMStereoFilter@@UAEPAXI@Z 004d3380 f audiod:factory.obj - 0001:000d2380 ??_ECAMStereoFilter@@UAEPAXI@Z 004d3380 f audiod:factory.obj - 0001:000d23c0 ??0IAMStereoFilter@@QAE@XZ 004d33c0 f audiod:factory.obj - 0001:000d23f0 ??_GCAMTrimFilter@@UAEPAXI@Z 004d33f0 f audiod:factory.obj - 0001:000d23f0 ??_ECAMTrimFilter@@UAEPAXI@Z 004d33f0 f audiod:factory.obj - 0001:000d2430 ??0IAMTrimFilter@@QAE@XZ 004d3430 f audiod:factory.obj - 0001:000d2460 ??_ECAMBiasFilter@@UAEPAXI@Z 004d3460 f audiod:factory.obj - 0001:000d2460 ??_GCAMBiasFilter@@UAEPAXI@Z 004d3460 f audiod:factory.obj - 0001:000d24a0 ??0IAMBiasFilter@@QAE@XZ 004d34a0 f audiod:factory.obj - 0001:000d24d0 ??1CAMGateFilter@@UAE@XZ 004d34d0 f audiod:factory.obj - 0001:000d2530 ??1CAMLoopFilter@@UAE@XZ 004d3530 f audiod:factory.obj - 0001:000d2590 ??1CAMFaderFilter@@UAE@XZ 004d3590 f audiod:factory.obj - 0001:000d25f0 ??1CAMRandomizeFilter@@UAE@XZ 004d35f0 f audiod:factory.obj - 0001:000d2650 ??1CAMDistortFilter@@UAE@XZ 004d3650 f audiod:factory.obj - 0001:000d26b0 ??1CAMStereoFilter@@UAE@XZ 004d36b0 f audiod:factory.obj - 0001:000d2710 ??1CAMTrimFilter@@UAE@XZ 004d3710 f audiod:factory.obj - 0001:000d2770 ??1CAMBiasFilter@@UAE@XZ 004d3770 f audiod:factory.obj - 0001:000d27d0 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d37d0 f audiod:factory.obj - 0001:000d27e0 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 004d37e0 f audiod:factory.obj - 0001:000d27f0 ?Release@CAMLoopFilter@@WBE@AGKXZ 004d37f0 f audiod:factory.obj - 0001:000d2800 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d3800 f audiod:factory.obj - 0001:000d2810 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 004d3810 f audiod:factory.obj - 0001:000d2820 ?Release@CAMBiasFilter@@WBE@AGKXZ 004d3820 f audiod:factory.obj - 0001:000d2830 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d3830 f audiod:factory.obj - 0001:000d2840 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 004d3840 f audiod:factory.obj - 0001:000d2850 ?Release@CAMTrimFilter@@WBE@AGKXZ 004d3850 f audiod:factory.obj - 0001:000d2860 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d3860 f audiod:factory.obj - 0001:000d2870 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 004d3870 f audiod:factory.obj - 0001:000d2880 ?Release@CAMDistortFilter@@WBE@AGKXZ 004d3880 f audiod:factory.obj - 0001:000d2890 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d3890 f audiod:factory.obj - 0001:000d28a0 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 004d38a0 f audiod:factory.obj - 0001:000d28b0 ?Release@CAMFaderFilter@@WBE@AGKXZ 004d38b0 f audiod:factory.obj - 0001:000d28c0 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d38c0 f audiod:factory.obj - 0001:000d28d0 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 004d38d0 f audiod:factory.obj - 0001:000d28e0 ?Release@CAMStereoFilter@@WBE@AGKXZ 004d38e0 f audiod:factory.obj - 0001:000d28f0 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d38f0 f audiod:factory.obj - 0001:000d2900 ?AddRef@CAMGateFilter@@WBE@AGKXZ 004d3900 f audiod:factory.obj - 0001:000d2910 ?Release@CAMGateFilter@@WBE@AGKXZ 004d3910 f audiod:factory.obj - 0001:000d2920 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004d3920 f audiod:factory.obj - 0001:000d2930 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 004d3930 f audiod:factory.obj - 0001:000d2940 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 004d3940 f audiod:factory.obj - 0001:000d2950 _DbgOutActive 004d3950 f audiod:dpf.obj - 0001:000d2968 _DbgLogActive 004d3968 f audiod:dpf.obj - 0001:000d2980 _DbgLogFile 004d3980 f audiod:dpf.obj - 0001:000d29a9 ?DbgVPrintF@@YAXPAD0@Z 004d39a9 f audiod:dpf.obj - 0001:000d2b31 _dprintf 004d3b31 f audiod:dpf.obj - 0001:000d2b82 _DbgEnable@4 004d3b82 f audiod:dpf.obj - 0001:000d2baa _DbgSetLevel@4 004d3baa f audiod:dpf.obj - 0001:000d2bd2 _DbgGetLevel@0 004d3bd2 f audiod:dpf.obj - 0001:000d2be7 _DbgInitialize@4 004d3be7 f audiod:dpf.obj - 0001:000d2c40 __Assert@8 004d3c40 f audiod:dpf.obj - 0001:000d2ce0 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 004d3ce0 f audiod:audio.obj - 0001:000d2db0 _AllocCacheFilter@12 004d3db0 f audiod:sndcache.obj - 0001:000d2e64 ??0CAMCacheFilter@@QAE@XZ 004d3e64 f audiod:sndcache.obj - 0001:000d2ea3 ??1CAMCacheFilter@@QAE@XZ 004d3ea3 f audiod:sndcache.obj - 0001:000d2f46 ?AddRef@CAMCacheFilter@@UAGKXZ 004d3f46 f audiod:sndcache.obj - 0001:000d2f64 ?Release@CAMCacheFilter@@UAGKXZ 004d3f64 f audiod:sndcache.obj - 0001:000d2fba ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 004d3fba f audiod:sndcache.obj - 0001:000d30ac ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004d40ac f audiod:sndcache.obj - 0001:000d32f5 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004d42f5 f audiod:sndcache.obj - 0001:000d3347 ?GetSamples@CAMCacheFilter@@UAGKXZ 004d4347 f audiod:sndcache.obj - 0001:000d3378 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 004d4378 f audiod:sndcache.obj - 0001:000d33cd ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d43cd f audiod:sndcache.obj - 0001:000d3646 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 004d4646 f audiod:sndcache.obj - 0001:000d36c5 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 004d46c5 f audiod:sndcache.obj - 0001:000d3746 ?FillCache@CAMCacheFilter@@AAGJKK@Z 004d4746 f audiod:sndcache.obj - 0001:000d3955 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 004d4955 f audiod:sndcache.obj - 0001:000d3a4c ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 004d4a4c f audiod:sndcache.obj - 0001:000d3b11 ?SetMode@CAMCacheFilter@@UAGJHH@Z 004d4b11 f audiod:sndcache.obj - 0001:000d3c80 ??0IAMCacheFilter@@QAE@XZ 004d4c80 f audiod:sndcache.obj - 0001:000d3cb0 ??_GCAMCacheFilter@@QAEPAXI@Z 004d4cb0 f audiod:sndcache.obj - 0001:000d3cf0 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 004d4cf0 f audiod:sndcache.obj - 0001:000d3d00 ?AddRef@CAMCacheFilter@@W3AGKXZ 004d4d00 f audiod:sndcache.obj - 0001:000d3d10 ?Release@CAMCacheFilter@@W3AGKXZ 004d4d10 f audiod:sndcache.obj - 0001:000d3d20 _HRESULTFromMMRESULT@4 004d4d20 f audiod:utils.obj - 0001:000d3fa4 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 004d4fa4 f audiod:utils.obj - 0001:000d4097 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 004d5097 f audiod:utils.obj - 0001:000d4157 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004d5157 f audiod:utils.obj - 0001:000d4181 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004d5181 f audiod:utils.obj - 0001:000d41e3 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004d51e3 f audiod:utils.obj - 0001:000d4205 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004d5205 f audiod:utils.obj - 0001:000d4226 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004d5226 f audiod:utils.obj - 0001:000d425b ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004d525b f audiod:utils.obj - 0001:000d428d ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 004d528d f audiod:utils.obj - 0001:000d4377 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 004d5377 f audiod:utils.obj - 0001:000d4456 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 004d5456 f audiod:utils.obj - 0001:000d4620 ?MultDivUL@@YAKKKK@Z 004d5620 f audiod:utils.obj - 0001:000d4690 ??2CDebugMem@@SAPAXI@Z 004d5690 f audiod:debugmem.obj - 0001:000d46ae ??3CDebugMem@@SAXPAX@Z 004d56ae f audiod:debugmem.obj - 0001:000d46ca ?AllocPtr@CDebugMem@@SAPAXIK@Z 004d56ca f audiod:debugmem.obj - 0001:000d4760 ?FreePtr@CDebugMem@@SAHPAX@Z 004d5760 f audiod:debugmem.obj - 0001:000d4848 ?DetectLeaks@CDebugMem@@SAHK@Z 004d5848 f audiod:debugmem.obj - 0001:000d4910 _AMRIFFStream_CreateFromIStream@8 004d5910 f audiod:riffstrm.obj - 0001:000d4988 ??0CAMRIFFStream@@QAE@PAUIStream@@@Z 004d5988 f audiod:riffstrm.obj - 0001:000d49ed ??1CAMRIFFStream@@QAE@XZ 004d59ed f audiod:riffstrm.obj - 0001:000d4a3a ?AddRef@CAMRIFFStream@@UAGKXZ 004d5a3a f audiod:riffstrm.obj - 0001:000d4a58 ?Release@CAMRIFFStream@@UAGKXZ 004d5a58 f audiod:riffstrm.obj - 0001:000d4aae ?QueryInterface@CAMRIFFStream@@UAGJABU_GUID@@PAPAX@Z 004d5aae f audiod:riffstrm.obj - 0001:000d4b49 ?Descend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@0I@Z 004d5b49 f audiod:riffstrm.obj - 0001:000d4d04 ?Ascend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004d5d04 f audiod:riffstrm.obj - 0001:000d4e39 ?CreateChunk@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004d5e39 f audiod:riffstrm.obj - 0001:000d4ef3 ?MyRead@CAMRIFFStream@@AAGJPAXJ@Z 004d5ef3 f audiod:riffstrm.obj - 0001:000d4f3b ?MyWrite@CAMRIFFStream@@AAGJPBXJ@Z 004d5f3b f audiod:riffstrm.obj - 0001:000d4f83 ?MySeek@CAMRIFFStream@@AAGJJH@Z 004d5f83 f audiod:riffstrm.obj - 0001:000d4fe0 ??0IAMRIFFStream@@QAE@XZ 004d5fe0 f audiod:riffstrm.obj - 0001:000d5010 ??_GCAMRIFFStream@@QAEPAXI@Z 004d6010 f audiod:riffstrm.obj - 0001:000d5050 ??0CFileStream@@QAE@PADKK@Z 004d6050 f audiod:stream.obj - 0001:000d5184 ??1CFileStream@@QAE@XZ 004d6184 f audiod:stream.obj - 0001:000d51d0 ?AddRef@CFileStream@@UAGKXZ 004d61d0 f audiod:stream.obj - 0001:000d51ee ?Release@CFileStream@@UAGKXZ 004d61ee f audiod:stream.obj - 0001:000d5244 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 004d6244 f audiod:stream.obj - 0001:000d52df ?Read@CFileStream@@UAGJPAXKPAK@Z 004d62df f audiod:stream.obj - 0001:000d5337 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004d6337 f audiod:stream.obj - 0001:000d540e ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 004d640e f audiod:stream.obj - 0001:000d5489 ?Write@CFileStream@@UAGJPBXKPAK@Z 004d6489 f audiod:stream.obj - 0001:000d54d0 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 004d64d0 f audiod:stream.obj - 0001:000d54e7 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004d64e7 f audiod:stream.obj - 0001:000d54fe ?Commit@CFileStream@@UAGJK@Z 004d64fe f audiod:stream.obj - 0001:000d5515 ?Revert@CFileStream@@UAGJXZ 004d6515 f audiod:stream.obj - 0001:000d552c ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004d652c f audiod:stream.obj - 0001:000d5543 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004d6543 f audiod:stream.obj - 0001:000d555a ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 004d655a f audiod:stream.obj - 0001:000d5571 ??0CMemoryStream@@AAE@PAV0@@Z 004d6571 f audiod:stream.obj - 0001:000d563c ??0CMemoryStream@@QAE@PAUIStream@@K@Z 004d663c f audiod:stream.obj - 0001:000d5724 ??0CMemoryStream@@QAE@PADKK@Z 004d6724 f audiod:stream.obj - 0001:000d5793 ??1CMemoryStream@@QAE@XZ 004d6793 f audiod:stream.obj - 0001:000d57d8 ?AddRef@CMemoryStream@@UAGKXZ 004d67d8 f audiod:stream.obj - 0001:000d57f6 ?Release@CMemoryStream@@UAGKXZ 004d67f6 f audiod:stream.obj - 0001:000d584c ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 004d684c f audiod:stream.obj - 0001:000d58ea ?Read@CMemoryStream@@UAGJPAXKPAK@Z 004d68ea f audiod:stream.obj - 0001:000d5989 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004d6989 f audiod:stream.obj - 0001:000d5a26 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 004d6a26 f audiod:stream.obj - 0001:000d5a87 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 004d6a87 f audiod:stream.obj - 0001:000d5b26 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 004d6b26 f audiod:stream.obj - 0001:000d5b3d ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004d6b3d f audiod:stream.obj - 0001:000d5b54 ?Commit@CMemoryStream@@UAGJK@Z 004d6b54 f audiod:stream.obj - 0001:000d5b6b ?Revert@CMemoryStream@@UAGJXZ 004d6b6b f audiod:stream.obj - 0001:000d5b82 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004d6b82 f audiod:stream.obj - 0001:000d5b99 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004d6b99 f audiod:stream.obj - 0001:000d5bb0 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 004d6bb0 f audiod:stream.obj - 0001:000d5bd0 ??_GCFileStream@@QAEPAXI@Z 004d6bd0 f audiod:stream.obj - 0001:000d5c10 ??_GCMemoryStream@@QAEPAXI@Z 004d6c10 f audiod:stream.obj - 0001:000d5c4a _acmFormatSuggest@20 004d6c4a f audiod:MSACM32.dll - 0001:000d5c50 _acmStreamSize@16 004d6c50 f audiod:MSACM32.dll - 0001:000d5c56 _acmStreamPrepareHeader@12 004d6c56 f audiod:MSACM32.dll - 0001:000d5c5c _acmStreamOpen@32 004d6c5c f audiod:MSACM32.dll - 0001:000d5c62 _acmStreamClose@8 004d6c62 f audiod:MSACM32.dll - 0001:000d5c68 _acmStreamUnprepareHeader@12 004d6c68 f audiod:MSACM32.dll - 0001:000d5c6e _acmStreamConvert@12 004d6c6e f audiod:MSACM32.dll - 0001:000d5c80 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 004d6c80 f audiod:riff.obj - 0001:000d5cb0 ?ReadLongData@CRIFF@@QAEJPAK@Z 004d6cb0 f audiod:riff.obj - 0001:000d5d19 ?ReadShortData@CRIFF@@QAEJPAG@Z 004d6d19 f audiod:riff.obj - 0001:000d5d84 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 004d6d84 f audiod:riff.obj - 0001:000d5ec0 ??0CAMPassThruFilter@@QAE@XZ 004d6ec0 f audiod:sndpass.obj - 0001:000d5eea ??1CAMPassThruFilter@@UAE@XZ 004d6eea f audiod:sndpass.obj - 0001:000d5f67 ?AddRef@CAMPassThruFilter@@UAGKXZ 004d6f67 f audiod:sndpass.obj - 0001:000d5f85 ?Release@CAMPassThruFilter@@UAGKXZ 004d6f85 f audiod:sndpass.obj - 0001:000d5fde ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 004d6fde f audiod:sndpass.obj - 0001:000d6079 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004d7079 f audiod:sndpass.obj - 0001:000d60cb ?GetSamples@CAMPassThruFilter@@UAGKXZ 004d70cb f audiod:sndpass.obj - 0001:000d6108 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 004d7108 f audiod:sndpass.obj - 0001:000d615d ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d715d f audiod:sndpass.obj - 0001:000d61d3 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 004d71d3 f audiod:sndpass.obj - 0001:000d6217 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 004d7217 f audiod:sndpass.obj - 0001:000d62e0 ??_GCAMPassThruFilter@@UAEPAXI@Z 004d72e0 f audiod:sndpass.obj - 0001:000d62e0 ??_ECAMPassThruFilter@@UAEPAXI@Z 004d72e0 f audiod:sndpass.obj - 0001:000d6320 _AllocScheduleFilter@8 004d7320 f audiod:sndsched.obj - 0001:000d63ba ??0CAMScheduleFilter@@QAE@XZ 004d73ba f audiod:sndsched.obj - 0001:000d63f9 ??1CAMScheduleFilter@@QAE@XZ 004d73f9 f audiod:sndsched.obj - 0001:000d6480 ?AddRef@CAMScheduleFilter@@UAGKXZ 004d7480 f audiod:sndsched.obj - 0001:000d649e ?Release@CAMScheduleFilter@@UAGKXZ 004d749e f audiod:sndsched.obj - 0001:000d64f4 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 004d74f4 f audiod:sndsched.obj - 0001:000d65e6 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 004d75e6 f audiod:sndsched.obj - 0001:000d660f ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004d760f f audiod:sndsched.obj - 0001:000d6661 ?GetSamples@CAMScheduleFilter@@UAGKXZ 004d7661 f audiod:sndsched.obj - 0001:000d669e ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 004d769e f audiod:sndsched.obj - 0001:000d66f3 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d76f3 f audiod:sndsched.obj - 0001:000d6750 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 004d7750 f audiod:sndsched.obj - 0001:000d6767 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 004d7767 f audiod:sndsched.obj - 0001:000d677e ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 004d777e f audiod:sndsched.obj - 0001:000d6795 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 004d7795 f audiod:sndsched.obj - 0001:000d67ac ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 004d77ac f audiod:sndsched.obj - 0001:000d67c3 ?ClearAll@CAMScheduleFilter@@UAGJXZ 004d77c3 f audiod:sndsched.obj - 0001:000d67da ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 004d77da f audiod:sndsched.obj - 0001:000d67ee ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 004d77ee f audiod:sndsched.obj - 0001:000d6805 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 004d7805 f audiod:sndsched.obj - 0001:000d681c ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004d781c f audiod:sndsched.obj - 0001:000d6830 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004d7830 f audiod:sndsched.obj - 0001:000d6850 ??0IAMScheduleFilter@@QAE@XZ 004d7850 f audiod:sndsched.obj - 0001:000d6880 ??_GCAMScheduleFilter@@QAEPAXI@Z 004d7880 f audiod:sndsched.obj - 0001:000d68c0 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 004d78c0 f audiod:sndsched.obj - 0001:000d68d0 ?AddRef@CAMScheduleFilter@@W3AGKXZ 004d78d0 f audiod:sndsched.obj - 0001:000d68e0 ?Release@CAMScheduleFilter@@W3AGKXZ 004d78e0 f audiod:sndsched.obj - 0001:000d68f0 _AllocMixFilter@12 004d78f0 f audiod:sndmix.obj - 0001:000d69a4 ??0CAMMixFilter@@QAE@XZ 004d79a4 f audiod:sndmix.obj - 0001:000d69e3 ??1CAMMixFilter@@QAE@XZ 004d79e3 f audiod:sndmix.obj - 0001:000d6a92 ?AddRef@CAMMixFilter@@UAGKXZ 004d7a92 f audiod:sndmix.obj - 0001:000d6ab0 ?Release@CAMMixFilter@@UAGKXZ 004d7ab0 f audiod:sndmix.obj - 0001:000d6b06 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 004d7b06 f audiod:sndmix.obj - 0001:000d6bf8 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 004d7bf8 f audiod:sndmix.obj - 0001:000d6ce3 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 004d7ce3 f audiod:sndmix.obj - 0001:000d6f8a ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 004d7f8a f audiod:sndmix.obj - 0001:000d6feb ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 004d7feb f audiod:sndmix.obj - 0001:000d7026 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004d8026 f audiod:sndmix.obj - 0001:000d7078 ?GetSamples@CAMMixFilter@@UAGKXZ 004d8078 f audiod:sndmix.obj - 0001:000d70a9 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 004d80a9 f audiod:sndmix.obj - 0001:000d714c ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d814c f audiod:sndmix.obj - 0001:000d730d ?SetCacheSize@CAMMixFilter@@UAGJK@Z 004d830d f audiod:sndmix.obj - 0001:000d7324 ?SetMode@CAMMixFilter@@UAGJHH@Z 004d8324 f audiod:sndmix.obj - 0001:000d7420 ??0IAMMixFilter@@QAE@XZ 004d8420 f audiod:sndmix.obj - 0001:000d7450 ??_GCAMMixFilter@@QAEPAXI@Z 004d8450 f audiod:sndmix.obj - 0001:000d7490 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 004d8490 f audiod:sndmix.obj - 0001:000d74a0 ?AddRef@CAMMixFilter@@W3AGKXZ 004d84a0 f audiod:sndmix.obj - 0001:000d74b0 ?Release@CAMMixFilter@@W3AGKXZ 004d84b0 f audiod:sndmix.obj - 0001:000d74c0 _AllocGainFilter@16 004d84c0 f audiod:sndgain.obj - 0001:000d7562 ??0CAMGainFilter@@QAE@XZ 004d8562 f audiod:sndgain.obj - 0001:000d75d5 ??1CAMGainFilter@@QAE@XZ 004d85d5 f audiod:sndgain.obj - 0001:000d7691 ?AddRef@CAMGainFilter@@UAGKXZ 004d8691 f audiod:sndgain.obj - 0001:000d76af ?Release@CAMGainFilter@@UAGKXZ 004d86af f audiod:sndgain.obj - 0001:000d7705 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 004d8705 f audiod:sndgain.obj - 0001:000d77f7 ?EnterFilter@CAMGainFilter@@AAGXXZ 004d87f7 f audiod:sndgain.obj - 0001:000d7821 ?LeaveFilter@CAMGainFilter@@AAGXXZ 004d8821 f audiod:sndgain.obj - 0001:000d784b ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 004d884b f audiod:sndgain.obj - 0001:000d7925 ?SetGain@CAMGainFilter@@UAGJMM@Z 004d8925 f audiod:sndgain.obj - 0001:000d7990 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004d8990 f audiod:sndgain.obj - 0001:000d79f7 ?GetSamples@CAMGainFilter@@UAGKXZ 004d89f7 f audiod:sndgain.obj - 0001:000d7a4a ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 004d8a4a f audiod:sndgain.obj - 0001:000d7ab1 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d8ab1 f audiod:sndgain.obj - 0001:000d7b86 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 004d8b86 f audiod:sndgain.obj - 0001:000d7be9 ?SetMode@CAMGainFilter@@UAGJHH@Z 004d8be9 f audiod:sndgain.obj - 0001:000d7cd0 ??0IAMGainFilter@@QAE@XZ 004d8cd0 f audiod:sndgain.obj - 0001:000d7d00 ??_GMUTX@@QAEPAXI@Z 004d8d00 f audiod:sndgain.obj - 0001:000d7d40 ??_GCAMGainFilter@@QAEPAXI@Z 004d8d40 f audiod:sndgain.obj - 0001:000d7d80 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 004d8d80 f audiod:sndgain.obj - 0001:000d7d90 ?AddRef@CAMGainFilter@@W3AGKXZ 004d8d90 f audiod:sndgain.obj - 0001:000d7da0 ?Release@CAMGainFilter@@W3AGKXZ 004d8da0 f audiod:sndgain.obj - 0001:000d7db0 _AllocDelayFilter@28 004d8db0 f audiod:sndecho.obj - 0001:000d7e5e ??0CAMDelayFilter@@QAE@XZ 004d8e5e f audiod:sndecho.obj - 0001:000d7e9d ??1CAMDelayFilter@@QAE@XZ 004d8e9d f audiod:sndecho.obj - 0001:000d7f78 ?AddRef@CAMDelayFilter@@UAGKXZ 004d8f78 f audiod:sndecho.obj - 0001:000d7f96 ?Release@CAMDelayFilter@@UAGKXZ 004d8f96 f audiod:sndecho.obj - 0001:000d7fec ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 004d8fec f audiod:sndecho.obj - 0001:000d80de ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 004d90de f audiod:sndecho.obj - 0001:000d8407 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004d9407 f audiod:sndecho.obj - 0001:000d8459 ?GetSamples@CAMDelayFilter@@UAGKXZ 004d9459 f audiod:sndecho.obj - 0001:000d848a ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 004d948a f audiod:sndecho.obj - 0001:000d8527 ?MixInNewData@CAMDelayFilter@@QAGJXZ 004d9527 f audiod:sndecho.obj - 0001:000d8848 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004d9848 f audiod:sndecho.obj - 0001:000d8c1f ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 004d9c1f f audiod:sndecho.obj - 0001:000d8c63 ?SetMode@CAMDelayFilter@@UAGJHH@Z 004d9c63 f audiod:sndecho.obj - 0001:000d8d30 ??0IAMDelayFilter@@QAE@XZ 004d9d30 f audiod:sndecho.obj - 0001:000d8d60 ??_GCAMDelayFilter@@QAEPAXI@Z 004d9d60 f audiod:sndecho.obj - 0001:000d8da0 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 004d9da0 f audiod:sndecho.obj - 0001:000d8db0 ?AddRef@CAMDelayFilter@@W3AGKXZ 004d9db0 f audiod:sndecho.obj - 0001:000d8dc0 ?Release@CAMDelayFilter@@W3AGKXZ 004d9dc0 f audiod:sndecho.obj - 0001:000d8dd0 _AllocConvertFilter@12 004d9dd0 f audiod:sndcnvt.obj - 0001:000d8e6e ??0CAMConvertFilter@@QAE@XZ 004d9e6e f audiod:sndcnvt.obj - 0001:000d8ead ??1CAMConvertFilter@@QAE@XZ 004d9ead f audiod:sndcnvt.obj - 0001:000d8f6c ?AddRef@CAMConvertFilter@@UAGKXZ 004d9f6c f audiod:sndcnvt.obj - 0001:000d8f8a ?Release@CAMConvertFilter@@UAGKXZ 004d9f8a f audiod:sndcnvt.obj - 0001:000d8fe0 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 004d9fe0 f audiod:sndcnvt.obj - 0001:000d90d2 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 004da0d2 f audiod:sndcnvt.obj - 0001:000d9220 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004da220 f audiod:sndcnvt.obj - 0001:000d9299 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 004da299 f audiod:sndcnvt.obj - 0001:000d92fb ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 004da2fb f audiod:sndcnvt.obj - 0001:000d935d ?GetSamples@CAMConvertFilter@@UAGKXZ 004da35d f audiod:sndcnvt.obj - 0001:000d93a4 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 004da3a4 f audiod:sndcnvt.obj - 0001:000d9421 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004da421 f audiod:sndcnvt.obj - 0001:000d985e ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 004da85e f audiod:sndcnvt.obj - 0001:000d98ac ?SetMode@CAMConvertFilter@@UAGJHH@Z 004da8ac f audiod:sndcnvt.obj - 0001:000d9980 ??0IAMConvertFilter@@QAE@XZ 004da980 f audiod:sndcnvt.obj - 0001:000d99b0 ??_GCAMConvertFilter@@QAEPAXI@Z 004da9b0 f audiod:sndcnvt.obj - 0001:000d99f0 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 004da9f0 f audiod:sndcnvt.obj - 0001:000d9a00 ?AddRef@CAMConvertFilter@@W3AGKXZ 004daa00 f audiod:sndcnvt.obj - 0001:000d9a10 ?Release@CAMConvertFilter@@W3AGKXZ 004daa10 f audiod:sndcnvt.obj - 0001:000d9a20 _AllocClipFilter@16 004daa20 f audiod:sndclip.obj - 0001:000d9ac2 ??0CAMClipFilter@@QAE@XZ 004daac2 f audiod:sndclip.obj - 0001:000d9b01 ??1CAMClipFilter@@QAE@XZ 004dab01 f audiod:sndclip.obj - 0001:000d9b88 ?AddRef@CAMClipFilter@@UAGKXZ 004dab88 f audiod:sndclip.obj - 0001:000d9ba6 ?Release@CAMClipFilter@@UAGKXZ 004daba6 f audiod:sndclip.obj - 0001:000d9bfc ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 004dabfc f audiod:sndclip.obj - 0001:000d9cee ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 004dacee f audiod:sndclip.obj - 0001:000d9e00 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004dae00 f audiod:sndclip.obj - 0001:000d9e55 ?GetSamples@CAMClipFilter@@UAGKXZ 004dae55 f audiod:sndclip.obj - 0001:000d9e86 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 004dae86 f audiod:sndclip.obj - 0001:000d9f1c ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 004daf1c f audiod:sndclip.obj - 0001:000d9f8f ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004daf8f f audiod:sndclip.obj - 0001:000da15b ?SetCacheSize@CAMClipFilter@@UAGJK@Z 004db15b f audiod:sndclip.obj - 0001:000da19f ?SetMode@CAMClipFilter@@UAGJHH@Z 004db19f f audiod:sndclip.obj - 0001:000da270 ??0IAMClipFilter@@QAE@XZ 004db270 f audiod:sndclip.obj - 0001:000da2a0 ??_GCAMClipFilter@@QAEPAXI@Z 004db2a0 f audiod:sndclip.obj - 0001:000da2e0 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 004db2e0 f audiod:sndclip.obj - 0001:000da2f0 ?AddRef@CAMClipFilter@@W3AGKXZ 004db2f0 f audiod:sndclip.obj - 0001:000da300 ?Release@CAMClipFilter@@W3AGKXZ 004db300 f audiod:sndclip.obj - 0001:000da310 _AllocAppendFilter@16 004db310 f audiod:sndapend.obj - 0001:000da3c8 ??0CAMAppendFilter@@QAE@XZ 004db3c8 f audiod:sndapend.obj - 0001:000da407 ??1CAMAppendFilter@@QAE@XZ 004db407 f audiod:sndapend.obj - 0001:000da4ad ?AddRef@CAMAppendFilter@@UAGKXZ 004db4ad f audiod:sndapend.obj - 0001:000da4cb ?Release@CAMAppendFilter@@UAGKXZ 004db4cb f audiod:sndapend.obj - 0001:000da521 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 004db521 f audiod:sndapend.obj - 0001:000da613 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 004db613 f audiod:sndapend.obj - 0001:000da68b ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 004db68b f audiod:sndapend.obj - 0001:000dad65 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004dbd65 f audiod:sndapend.obj - 0001:000dadba ?GetSamples@CAMAppendFilter@@UAGKXZ 004dbdba f audiod:sndapend.obj - 0001:000dadeb ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 004dbdeb f audiod:sndapend.obj - 0001:000dae40 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004dbe40 f audiod:sndapend.obj - 0001:000db07e ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 004dc07e f audiod:sndapend.obj - 0001:000db0be ?SetMode@CAMAppendFilter@@UAGJHH@Z 004dc0be f audiod:sndapend.obj - 0001:000db1b0 ??0IAMAppendFilter@@QAE@XZ 004dc1b0 f audiod:sndapend.obj - 0001:000db1e0 ??_GCAMAppendFilter@@QAEPAXI@Z 004dc1e0 f audiod:sndapend.obj - 0001:000db220 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 004dc220 f audiod:sndapend.obj - 0001:000db230 ?AddRef@CAMAppendFilter@@W3AGKXZ 004dc230 f audiod:sndapend.obj - 0001:000db240 ?Release@CAMAppendFilter@@W3AGKXZ 004dc240 f audiod:sndapend.obj - 0001:000db250 _AllocSilentSound@12 004dc250 f audiod:sndmute.obj - 0001:000db304 ??0CAMSilentSound@@QAE@XZ 004dc304 f audiod:sndmute.obj - 0001:000db375 ??1CAMSilentSound@@QAE@XZ 004dc375 f audiod:sndmute.obj - 0001:000db3ad ?AddRef@CAMSilentSound@@UAGKXZ 004dc3ad f audiod:sndmute.obj - 0001:000db3cb ?Release@CAMSilentSound@@UAGKXZ 004dc3cb f audiod:sndmute.obj - 0001:000db421 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 004dc421 f audiod:sndmute.obj - 0001:000db513 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004dc513 f audiod:sndmute.obj - 0001:000db5be ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004dc5be f audiod:sndmute.obj - 0001:000db637 ?GetSamples@CAMSilentSound@@UAGKXZ 004dc637 f audiod:sndmute.obj - 0001:000db668 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 004dc668 f audiod:sndmute.obj - 0001:000db6d2 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 004dc6d2 f audiod:sndmute.obj - 0001:000db7b8 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 004dc7b8 f audiod:sndmute.obj - 0001:000db7cc ?SetMode@CAMSilentSound@@UAGJHH@Z 004dc7cc f audiod:sndmute.obj - 0001:000db840 ??0IAMSilentSound@@QAE@XZ 004dc840 f audiod:sndmute.obj - 0001:000db870 ??_GCAMSilentSound@@QAEPAXI@Z 004dc870 f audiod:sndmute.obj - 0001:000db8b0 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 004dc8b0 f audiod:sndmute.obj - 0001:000db8c0 ?AddRef@CAMSilentSound@@W3AGKXZ 004dc8c0 f audiod:sndmute.obj - 0001:000db8d0 ?Release@CAMSilentSound@@W3AGKXZ 004dc8d0 f audiod:sndmute.obj - 0001:000db8e0 ??0CAMMixer@@QAE@XZ 004dc8e0 f audiod:cmixer.obj - 0001:000db9ea ??1CAMMixer@@QAE@XZ 004dc9ea f audiod:cmixer.obj - 0001:000dba93 ?AddRef@CAMMixer@@UAGKXZ 004dca93 f audiod:cmixer.obj - 0001:000dbab1 ?Release@CAMMixer@@UAGKXZ 004dcab1 f audiod:cmixer.obj - 0001:000dbb39 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 004dcb39 f audiod:cmixer.obj - 0001:000dbbd7 ?EnterMixer@CAMMixer@@AAGXXZ 004dcbd7 f audiod:cmixer.obj - 0001:000dbc01 ?LeaveMixer@CAMMixer@@AAGXXZ 004dcc01 f audiod:cmixer.obj - 0001:000dbc2b ?EnterPump@CAMMixer@@AAGXXZ 004dcc2b f audiod:cmixer.obj - 0001:000dbc55 ?LeavePump@CAMMixer@@AAGXXZ 004dcc55 f audiod:cmixer.obj - 0001:000dbc7f ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 004dcc7f f audiod:cmixer.obj - 0001:000dbdd6 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 004dcdd6 f audiod:cmixer.obj - 0001:000dbf19 ?Uninit@CAMMixer@@UAGJXZ 004dcf19 f audiod:cmixer.obj - 0001:000dbf91 ?Activate@CAMMixer@@UAGJH@Z 004dcf91 f audiod:cmixer.obj - 0001:000dbfe9 ?Suspend@CAMMixer@@UAGJH@Z 004dcfe9 f audiod:cmixer.obj - 0001:000dc0aa ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004dd0aa f audiod:cmixer.obj - 0001:000dc1c1 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004dd1c1 f audiod:cmixer.obj - 0001:000dc2e3 ?SetMixerVolume@CAMMixer@@UAGJK@Z 004dd2e3 f audiod:cmixer.obj - 0001:000dc352 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 004dd352 f audiod:cmixer.obj - 0001:000dc3c1 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 004dd3c1 f audiod:cmixer.obj - 0001:000dc48f ?RemixMode@CAMMixer@@UAGHH@Z 004dd48f f audiod:cmixer.obj - 0001:000dc4cb ?GetAvgSample@CAMMixer@@UAGKXZ 004dd4cb f audiod:cmixer.obj - 0001:000dc8a2 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 004dd8a2 f audiod:cmixer.obj - 0001:000dc9b8 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 004dd9b8 f audiod:cmixer.obj - 0001:000dca04 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 004dda04 f audiod:cmixer.obj - 0001:000dcb75 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 004ddb75 f audiod:cmixer.obj - 0001:000dcccb ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ddccb f audiod:cmixer.obj - 0001:000dcd7b ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 004ddd7b f audiod:cmixer.obj - 0001:000dce0f ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004dde0f f audiod:cmixer.obj - 0001:000dcf65 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004ddf65 f audiod:cmixer.obj - 0001:000dd07f ?AllocGroup@CAMMixer@@UAGJPAK@Z 004de07f f audiod:cmixer.obj - 0001:000dd139 ?FreeGroup@CAMMixer@@UAGJK@Z 004de139 f audiod:cmixer.obj - 0001:000dd1c7 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004de1c7 f audiod:cmixer.obj - 0001:000dd272 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004de272 f audiod:cmixer.obj - 0001:000dd380 ?StartGroup@CAMMixer@@UAGJKH@Z 004de380 f audiod:cmixer.obj - 0001:000dd44d ?ResetGroup@CAMMixer@@UAGJK@Z 004de44d f audiod:cmixer.obj - 0001:000dd516 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 004de516 f audiod:cmixer.obj - 0001:000dd5e3 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 004de5e3 f audiod:cmixer.obj - 0001:000dd6b0 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 004de6b0 f audiod:cmixer.obj - 0001:000dd785 ?GetInitFile@CAMMixer@@AAGPADXZ 004de785 f audiod:cmixer.obj - 0001:000dd79c ?LoadProfile@CAMMixer@@AAGJXZ 004de79c f audiod:cmixer.obj - 0001:000dd8a5 ?SaveProfile@CAMMixer@@AAGJXZ 004de8a5 f audiod:cmixer.obj - 0001:000dda23 ?DebugSetup@CAMMixer@@AAGJXZ 004dea23 f audiod:cmixer.obj - 0001:000ddab5 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004deab5 f audiod:cmixer.obj - 0001:000ddb07 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004deb07 f audiod:cmixer.obj - 0001:000ddb75 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004deb75 f audiod:cmixer.obj - 0001:000ddbff ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004debff f audiod:cmixer.obj - 0001:000ddc9a ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004dec9a f audiod:cmixer.obj - 0001:000ddce9 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004dece9 f audiod:cmixer.obj - 0001:000ddefd ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 004deefd f audiod:cmixer.obj - 0001:000ddf55 ?AllocMixerData@CAMMixer@@AAGJXZ 004def55 f audiod:cmixer.obj - 0001:000de1e8 ?FreeMixerData@CAMMixer@@AAGJXZ 004df1e8 f audiod:cmixer.obj - 0001:000de2c3 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 004df2c3 f audiod:cmixer.obj - 0001:000de395 ?FreeOutputDevice@CAMMixer@@AAGJXZ 004df395 f audiod:cmixer.obj - 0001:000de3d2 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 004df3d2 f audiod:cmixer.obj - 0001:000de4d4 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 004df4d4 f audiod:cmixer.obj - 0001:000de542 ?ActivateMixer@CAMMixer@@AAGJXZ 004df542 f audiod:cmixer.obj - 0001:000de7ee ?DeactivateMixer@CAMMixer@@AAGJXZ 004df7ee f audiod:cmixer.obj - 0001:000de8ae ?AllocMixerTimer@CAMMixer@@AAGJXZ 004df8ae f audiod:cmixer.obj - 0001:000de983 ?FreeMixerTimer@CAMMixer@@AAGJXZ 004df983 f audiod:cmixer.obj - 0001:000de9db ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 004df9db f audiod:cmixer.obj - 0001:000deb1a ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 004dfb1a f audiod:cmixer.obj - 0001:000deb96 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 004dfb96 f audiod:cmixer.obj - 0001:000debd5 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 004dfbd5 f audiod:cmixer.obj - 0001:000dec81 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 004dfc81 f audiod:cmixer.obj - 0001:000dece4 ?StartMixer@CAMMixer@@AAGXXZ 004dfce4 f audiod:cmixer.obj - 0001:000dee79 ?StopMixer@CAMMixer@@AAGXXZ 004dfe79 f audiod:cmixer.obj - 0001:000def09 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 004dff09 f audiod:cmixer.obj - 0001:000df00e ?CalcRemixBuffers@CAMMixer@@AAGKXZ 004e000e f audiod:cmixer.obj - 0001:000df0ca ?RemixBuffers@CAMMixer@@AAGXK@Z 004e00ca f audiod:cmixer.obj - 0001:000df207 ?Refresh@CAMMixer@@UAGXXZ 004e0207 f audiod:cmixer.obj - 0001:000df3dc ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 004e03dc f audiod:cmixer.obj - 0001:000df476 ?Pump@CAMMixer@@AAGXXZ 004e0476 f audiod:cmixer.obj - 0001:000df49e ?MixNextBuffer@CAMMixer@@AAGHXZ 004e049e f audiod:cmixer.obj - 0001:000df6d7 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 004e06d7 f audiod:cmixer.obj - 0001:000df710 ??0IAMMixer@@QAE@XZ 004e0710 f audiod:cmixer.obj - 0001:000df740 ??_GCAMMixer@@QAEPAXI@Z 004e0740 f audiod:cmixer.obj - 0001:000df780 ??_GCAMPlaySnd@@QAEPAXI@Z 004e0780 f audiod:cmixer.obj - 0001:000df7c0 ??_GCAMChannel@@QAEPAXI@Z 004e07c0 f audiod:cmixer.obj - 0001:000df800 ??_GCMixerOut@@QAEPAXI@Z 004e0800 f audiod:cmixer.obj - 0001:000df840 _AllocGateFilter@12 004e0840 f audiod:sndgate.obj - 0001:000df8de ?AddRef@CAMGateFilter@@UAGKXZ 004e08de f audiod:sndgate.obj - 0001:000df8f9 ?Release@CAMGateFilter@@UAGKXZ 004e08f9 f audiod:sndgate.obj - 0001:000df914 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 004e0914 f audiod:sndgate.obj - 0001:000df9ae ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 004e09ae f audiod:sndgate.obj - 0001:000dfad5 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e0ad5 f audiod:sndgate.obj - 0001:000dfbf0 _AllocFaderFilter@16 004e0bf0 f audiod:sndfader.obj - 0001:000dfc92 ?AddRef@CAMFaderFilter@@UAGKXZ 004e0c92 f audiod:sndfader.obj - 0001:000dfcad ?Release@CAMFaderFilter@@UAGKXZ 004e0cad f audiod:sndfader.obj - 0001:000dfcc8 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 004e0cc8 f audiod:sndfader.obj - 0001:000dfd62 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 004e0d62 f audiod:sndfader.obj - 0001:000dfe34 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e0e34 f audiod:sndfader.obj - 0001:000dfe90 _AllocRandomizeFilter@8 004e0e90 f audiod:sndrand.obj - 0001:000dff2a ?AddRef@CAMRandomizeFilter@@UAGKXZ 004e0f2a f audiod:sndrand.obj - 0001:000dff45 ?Release@CAMRandomizeFilter@@UAGKXZ 004e0f45 f audiod:sndrand.obj - 0001:000dff60 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 004e0f60 f audiod:sndrand.obj - 0001:000dfffa ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 004e0ffa f audiod:sndrand.obj - 0001:000e0023 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 004e1023 f audiod:sndrand.obj - 0001:000e003a ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 004e103a f audiod:sndrand.obj - 0001:000e0051 ?Clear@CAMRandomizeFilter@@UAGJXZ 004e1051 f audiod:sndrand.obj - 0001:000e0070 _AllocDistortFilter@12 004e1070 f audiod:snddist.obj - 0001:000e010e ?AddRef@CAMDistortFilter@@UAGKXZ 004e110e f audiod:snddist.obj - 0001:000e0129 ?Release@CAMDistortFilter@@UAGKXZ 004e1129 f audiod:snddist.obj - 0001:000e0144 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 004e1144 f audiod:snddist.obj - 0001:000e01de ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004e11de f audiod:snddist.obj - 0001:000e0305 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e1305 f audiod:snddist.obj - 0001:000e0470 _AllocStereoFilter@8 004e1470 f audiod:sndstreo.obj - 0001:000e050a ?AddRef@CAMStereoFilter@@UAGKXZ 004e150a f audiod:sndstreo.obj - 0001:000e0525 ?Release@CAMStereoFilter@@UAGKXZ 004e1525 f audiod:sndstreo.obj - 0001:000e0540 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 004e1540 f audiod:sndstreo.obj - 0001:000e05da ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 004e15da f audiod:sndstreo.obj - 0001:000e06d1 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e16d1 f audiod:sndstreo.obj - 0001:000e07b0 _AllocTrimFilter@8 004e17b0 f audiod:sndtrim.obj - 0001:000e084a ?AddRef@CAMTrimFilter@@UAGKXZ 004e184a f audiod:sndtrim.obj - 0001:000e0865 ?Release@CAMTrimFilter@@UAGKXZ 004e1865 f audiod:sndtrim.obj - 0001:000e0880 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 004e1880 f audiod:sndtrim.obj - 0001:000e091a ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 004e191a f audiod:sndtrim.obj - 0001:000e09d7 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 004e19d7 f audiod:sndtrim.obj - 0001:000e0cc0 _AllocBiasFilter@8 004e1cc0 f audiod:sndbias.obj - 0001:000e0d5a ?AddRef@CAMBiasFilter@@UAGKXZ 004e1d5a f audiod:sndbias.obj - 0001:000e0d75 ?Release@CAMBiasFilter@@UAGKXZ 004e1d75 f audiod:sndbias.obj - 0001:000e0d90 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 004e1d90 f audiod:sndbias.obj - 0001:000e0e2a ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 004e1e2a f audiod:sndbias.obj - 0001:000e0ea1 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 004e1ea1 f audiod:sndbias.obj - 0001:000e114c ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004e214c f audiod:sndbias.obj - 0001:000e12a0 ?Interpolate@@YGGMMMGG@Z 004e22a0 f audiod:cmixlib.obj - 0001:000e1308 ?DecibelToInternalVol@@YGGM@Z 004e2308 f audiod:cmixlib.obj - 0001:000e149b ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 004e249b f audiod:cmixlib.obj - 0001:000e1558 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 004e2558 f audiod:cmixlib.obj - 0001:000e15b6 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 004e25b6 f audiod:cmixlib.obj - 0001:000e175a ?SixteenPanVol@@YGXKPAE0K0@Z 004e275a f audiod:cmixlib.obj - 0001:000e17b5 ?SixteenVol@@YGXKPAE0K0@Z 004e27b5 f audiod:cmixlib.obj - 0001:000e1810 ?Sixteen@@YGXKPAE0K0@Z 004e2810 f audiod:cmixlib.obj - 0001:000e1844 ?EightPanVol@@YGXKPAE0K0@Z 004e2844 f audiod:cmixlib.obj - 0001:000e189f ?EightVol@@YGXKPAE0K0@Z 004e289f f audiod:cmixlib.obj - 0001:000e18fa ?Eight@@YGXKPAE0K0@Z 004e28fa f audiod:cmixlib.obj - 0001:000e192e ?Muted@@YGXKPAE0K0@Z 004e292e f audiod:cmixlib.obj - 0001:000e194f ?slowMixSixteen@@YGXPAF0KPAE@Z 004e294f f audiod:cmixlib.obj - 0001:000e1a03 ?slowMixEight@@YGXPAE0K0@Z 004e2a03 f audiod:cmixlib.obj - 0001:000e1aa7 ?MixEight@@YGXPAE0K0@Z 004e2aa7 f audiod:cmixlib.obj - 0001:000e1f08 ?MixSixteen@@YGXPAF0KPAE@Z 004e2f08 f audiod:cmixlib.obj - 0001:000e23bd ?VolAdjustSixteen@@YGXKPAE0K0@Z 004e33bd f audiod:cmixlib.obj - 0001:000e3181 ?VolAdjustEight@@YGXKPAE0K0@Z 004e4181 f audiod:cmixlib.obj - 0001:000e402d ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 004e502d f audiod:cmixlib.obj - 0001:000e4e94 ?PanVolAdjustEight@@YGXKPAE0K0@Z 004e5e94 f audiod:cmixlib.obj - 0001:000e5e20 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 004e6e20 f audiod:convert.obj - 0001:000e6517 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 004e7517 f audiod:convert.obj - 0001:000e6553 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 004e7553 f audiod:convert.obj - 0001:000e65e9 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 004e75e9 f audiod:convert.obj - 0001:000e667f ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e767f f audiod:convert.obj - 0001:000e6796 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e7796 f audiod:convert.obj - 0001:000e68f1 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e78f1 f audiod:convert.obj - 0001:000e6aa7 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e7aa7 f audiod:convert.obj - 0001:000e6c5d ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e7c5d f audiod:convert.obj - 0001:000e6e29 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e7e29 f audiod:convert.obj - 0001:000e6fe4 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e7fe4 f audiod:convert.obj - 0001:000e71e8 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e81e8 f audiod:convert.obj - 0001:000e73a0 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e83a0 f audiod:convert.obj - 0001:000e7584 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e8584 f audiod:convert.obj - 0001:000e773f ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e873f f audiod:convert.obj - 0001:000e78f7 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e88f7 f audiod:convert.obj - 0001:000e7afb ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e8afb f audiod:convert.obj - 0001:000e7cdf ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e8cdf f audiod:convert.obj - 0001:000e7eb3 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e8eb3 f audiod:convert.obj - 0001:000e809a ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e909a f audiod:convert.obj - 0001:000e8281 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004e9281 f audiod:convert.obj - 0001:000e8440 ?Mono8ToStereo8@@YAGE@Z 004e9440 f audiod:convert.obj - 0001:000e8460 ?Mono8ToMono16@@YAGE@Z 004e9460 f audiod:convert.obj - 0001:000e8490 ?Mono16ToStereo16@@YAKG@Z 004e9490 f audiod:convert.obj - 0001:000e84c0 ?Mono16ToMono8@@YAEG@Z 004e94c0 f audiod:convert.obj - 0001:000e84e0 ?Stereo8ToMono8@@YAEG@Z 004e94e0 f audiod:convert.obj - 0001:000e8550 ?Stereo8ToStereo16@@YAKG@Z 004e9550 f audiod:convert.obj - 0001:000e85a0 ?Stereo16ToStereo8@@YAGK@Z 004e95a0 f audiod:convert.obj - 0001:000e85e0 ?Stereo16ToMono16@@YAGK@Z 004e95e0 f audiod:convert.obj - 0001:000e8670 ??0CMixerOut@@QAE@XZ 004e9670 f audiod:cmixout.obj - 0001:000e86e0 ??1CMixerOut@@QAE@XZ 004e96e0 f audiod:cmixout.obj - 0001:000e875c ?AddRef@CMixerOut@@UAGKXZ 004e975c f audiod:cmixout.obj - 0001:000e877a ?Release@CMixerOut@@UAGKXZ 004e977a f audiod:cmixout.obj - 0001:000e87d0 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 004e97d0 f audiod:cmixout.obj - 0001:000e886b ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 004e986b f audiod:cmixout.obj - 0001:000e89aa ?Suspend@CMixerOut@@QAGJH@Z 004e99aa f audiod:cmixout.obj - 0001:000e8b2d ?SuspendPump@CMixerOut@@QAGXXZ 004e9b2d f audiod:cmixout.obj - 0001:000e8b6a ?GetNumDevs@CMixerOut@@UAGIXZ 004e9b6a f audiod:cmixout.obj - 0001:000e8bb4 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004e9bb4 f audiod:cmixout.obj - 0001:000e8c15 ?Close@CMixerOut@@UAGIXZ 004e9c15 f audiod:cmixout.obj - 0001:000e8c62 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004e9c62 f audiod:cmixout.obj - 0001:000e8cbb ?GetVolume@CMixerOut@@UAGIPAK@Z 004e9cbb f audiod:cmixout.obj - 0001:000e8d0c ?SetVolume@CMixerOut@@UAGIK@Z 004e9d0c f audiod:cmixout.obj - 0001:000e8d7d ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004e9d7d f audiod:cmixout.obj - 0001:000e8dd2 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004e9dd2 f audiod:cmixout.obj - 0001:000e8e27 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004e9e27 f audiod:cmixout.obj - 0001:000e8e7c ?Pause@CMixerOut@@UAGIXZ 004e9e7c f audiod:cmixout.obj - 0001:000e8ec9 ?Restart@CMixerOut@@UAGIXZ 004e9ec9 f audiod:cmixout.obj - 0001:000e8f16 ?Reset@CMixerOut@@UAGIXZ 004e9f16 f audiod:cmixout.obj - 0001:000e8f63 ?BreakLoop@CMixerOut@@UAGIXZ 004e9f63 f audiod:cmixout.obj - 0001:000e8fb0 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 004e9fb0 f audiod:cmixout.obj - 0001:000e9005 ?GetPitch@CMixerOut@@UAGIPAK@Z 004ea005 f audiod:cmixout.obj - 0001:000e9056 ?SetPitch@CMixerOut@@UAGIK@Z 004ea056 f audiod:cmixout.obj - 0001:000e90a7 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 004ea0a7 f audiod:cmixout.obj - 0001:000e90f8 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 004ea0f8 f audiod:cmixout.obj - 0001:000e9149 ?GetID@CMixerOut@@UAGIPAI@Z 004ea149 f audiod:cmixout.obj - 0001:000e919a ?Message@CMixerOut@@UAGIIKK@Z 004ea19a f audiod:cmixout.obj - 0001:000e91f3 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 004ea1f3 f audiod:cmixout.obj - 0001:000e9250 ??0IAMWaveOut@@QAE@XZ 004ea250 f audiod:cmixout.obj - 0001:000e9280 ??_GCRealOut@@QAEPAXI@Z 004ea280 f audiod:cmixout.obj - 0001:000e92c0 ??0CAMPlaySnd@@QAE@XZ 004ea2c0 f audiod:cplaysnd.obj - 0001:000e92fe ??1CAMPlaySnd@@QAE@XZ 004ea2fe f audiod:cplaysnd.obj - 0001:000e934b ?AddRef@CAMPlaySnd@@UAGKXZ 004ea34b f audiod:cplaysnd.obj - 0001:000e9369 ?Release@CAMPlaySnd@@UAGKXZ 004ea369 f audiod:cplaysnd.obj - 0001:000e93bf ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 004ea3bf f audiod:cplaysnd.obj - 0001:000e945a ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 004ea45a f audiod:cplaysnd.obj - 0001:000e955a ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004ea55a f audiod:cplaysnd.obj - 0001:000e95aa ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 004ea5aa f audiod:cplaysnd.obj - 0001:000e9600 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004ea600 f audiod:cplaysnd.obj - 0001:000e9620 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 004ea620 f audiod:cplaysnd.obj - 0001:000e9640 ?AddRef@CAMChannel@@UAGKXZ 004ea640 f audiod:cchannel.obj - 0001:000e965e ?Release@CAMChannel@@UAGKXZ 004ea65e f audiod:cchannel.obj - 0001:000e9744 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 004ea744 f audiod:cchannel.obj - 0001:000e981b ??0CAMChannel@@QAE@XZ 004ea81b f audiod:cchannel.obj - 0001:000e98a0 ??1CAMChannel@@QAE@XZ 004ea8a0 f audiod:cchannel.obj - 0001:000e99a2 ?EnterChannel@CAMChannel@@AAGXXZ 004ea9a2 f audiod:cchannel.obj - 0001:000e99d2 ?LeaveChannel@CAMChannel@@AAGXXZ 004ea9d2 f audiod:cchannel.obj - 0001:000e9a02 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 004eaa02 f audiod:cchannel.obj - 0001:000e9b3a ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 004eab3a f audiod:cchannel.obj - 0001:000e9be1 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004eabe1 f audiod:cchannel.obj - 0001:000e9d94 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 004ead94 f audiod:cchannel.obj - 0001:000ea02c ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 004eb02c f audiod:cchannel.obj - 0001:000ea0d8 ?Play@CAMChannel@@UAGJXZ 004eb0d8 f audiod:cchannel.obj - 0001:000ea16e ?Stop@CAMChannel@@UAGJXZ 004eb16e f audiod:cchannel.obj - 0001:000ea266 ?Finish@CAMChannel@@UAGJXZ 004eb266 f audiod:cchannel.obj - 0001:000ea2bd ?IsPlaying@CAMChannel@@UAGHXZ 004eb2bd f audiod:cchannel.obj - 0001:000ea304 ?Samples@CAMChannel@@UAGKXZ 004eb304 f audiod:cchannel.obj - 0001:000ea358 ?SetPosition@CAMChannel@@UAGJK@Z 004eb358 f audiod:cchannel.obj - 0001:000ea3fc ?GetPosition@CAMChannel@@UAGJPAK@Z 004eb3fc f audiod:cchannel.obj - 0001:000ea46a ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004eb46a f audiod:cchannel.obj - 0001:000ea514 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004eb514 f audiod:cchannel.obj - 0001:000ea5c3 ?SetTimePos@CAMChannel@@UAGJK@Z 004eb5c3 f audiod:cchannel.obj - 0001:000ea633 ?GetTimePos@CAMChannel@@UAGJPAK@Z 004eb633 f audiod:cchannel.obj - 0001:000ea6af ?Mute@CAMChannel@@UAGJH@Z 004eb6af f audiod:cchannel.obj - 0001:000ea72a ?SetVolume@CAMChannel@@UAGJK@Z 004eb72a f audiod:cchannel.obj - 0001:000ea7b0 ?SetChannelVol@CAMChannel@@AAGXGG@Z 004eb7b0 f audiod:cchannel.obj - 0001:000ea8a5 ?GetVolume@CAMChannel@@UAGJPAK@Z 004eb8a5 f audiod:cchannel.obj - 0001:000ea910 ?SetGain@CAMChannel@@UAGJMM@Z 004eb910 f audiod:cchannel.obj - 0001:000ea98f ?GetGain@CAMChannel@@UAGJPAM0@Z 004eb98f f audiod:cchannel.obj - 0001:000eaa0f ?DoRemix@CAMChannel@@AAGXXZ 004eba0f f audiod:cchannel.obj - 0001:000eaa4d ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 004eba4d f audiod:cchannel.obj - 0001:000eaa6d ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 004eba6d f audiod:cchannel.obj - 0001:000ead21 ?ClearNotify@CAMChannel@@AAGXK@Z 004ebd21 f audiod:cchannel.obj - 0001:000eae01 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 004ebe01 f audiod:cchannel.obj - 0001:000eb149 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 004ec149 f audiod:cchannel.obj - 0001:000eb311 ?RevertTo@CAMChannel@@UAGJK@Z 004ec311 f audiod:cchannel.obj - 0001:000eb387 ?GetActiveState@CAMChannel@@UAGHXZ 004ec387 f audiod:cchannel.obj - 0001:000eb3bc ?DoStart@CAMChannel@@UAGJH@Z 004ec3bc f audiod:cchannel.obj - 0001:000eb4a5 ?DoReset@CAMChannel@@UAGJXZ 004ec4a5 f audiod:cchannel.obj - 0001:000eb516 ?DoPosition@CAMChannel@@UAGJK@Z 004ec516 f audiod:cchannel.obj - 0001:000eb57b ?DoVolume@CAMChannel@@UAGJK@Z 004ec57b f audiod:cchannel.obj - 0001:000eb5e4 ?DoGain@CAMChannel@@UAGJMMH@Z 004ec5e4 f audiod:cchannel.obj - 0001:000eb69e ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 004ec69e f audiod:cchannel.obj - 0001:000eb6bb ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 004ec6bb f audiod:cchannel.obj - 0001:000eb6d3 ?SetPriority@CAMChannel@@UAGJK@Z 004ec6d3 f audiod:cchannel.obj - 0001:000eb6f0 ?GetPriority@CAMChannel@@UAGKXZ 004ec6f0 f audiod:cchannel.obj - 0001:000eb708 ?SetGroup@CAMChannel@@UAGJK@Z 004ec708 f audiod:cchannel.obj - 0001:000eb725 ?GetGroup@CAMChannel@@UAGKXZ 004ec725 f audiod:cchannel.obj - 0001:000eb740 ??0IAMChannel@@QAE@XZ 004ec740 f audiod:cchannel.obj - 0001:000eb770 ??0IAMMixerChannel@@QAE@XZ 004ec770 f audiod:cchannel.obj - 0001:000eb7a0 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 004ec7a0 f audiod:cchannel.obj - 0001:000eb7b0 ?AddRef@CAMChannel@@W3AGKXZ 004ec7b0 f audiod:cchannel.obj - 0001:000eb7c0 ?Release@CAMChannel@@W3AGKXZ 004ec7c0 f audiod:cchannel.obj - 0001:000eb7d0 ??0CRealOut@@QAE@XZ 004ec7d0 f audiod:crealout.obj - 0001:000eb822 ??1CRealOut@@QAE@XZ 004ec822 f audiod:crealout.obj - 0001:000eb872 ?AddRef@CRealOut@@UAGKXZ 004ec872 f audiod:crealout.obj - 0001:000eb890 ?Release@CRealOut@@UAGKXZ 004ec890 f audiod:crealout.obj - 0001:000eb8e6 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 004ec8e6 f audiod:crealout.obj - 0001:000eb981 ?GetNumDevs@CRealOut@@UAGIXZ 004ec981 f audiod:crealout.obj - 0001:000eb999 ?Init@CRealOut@@QAGJXZ 004ec999 f audiod:crealout.obj - 0001:000eb9b7 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004ec9b7 f audiod:crealout.obj - 0001:000eba20 ?Close@CRealOut@@UAGIXZ 004eca20 f audiod:crealout.obj - 0001:000eba8c ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004eca8c f audiod:crealout.obj - 0001:000ebacc ?GetVolume@CRealOut@@UAGIPAK@Z 004ecacc f audiod:crealout.obj - 0001:000ebb1a ?SetVolume@CRealOut@@UAGIK@Z 004ecb1a f audiod:crealout.obj - 0001:000ebb68 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ecb68 f audiod:crealout.obj - 0001:000ebbab ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ecbab f audiod:crealout.obj - 0001:000ebbee ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ecbee f audiod:crealout.obj - 0001:000ebc31 ?Pause@CRealOut@@UAGIXZ 004ecc31 f audiod:crealout.obj - 0001:000ebc6c ?Restart@CRealOut@@UAGIXZ 004ecc6c f audiod:crealout.obj - 0001:000ebca7 ?Reset@CRealOut@@UAGIXZ 004ecca7 f audiod:crealout.obj - 0001:000ebce2 ?BreakLoop@CRealOut@@UAGIXZ 004ecce2 f audiod:crealout.obj - 0001:000ebd1d ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 004ecd1d f audiod:crealout.obj - 0001:000ebd60 ?GetPitch@CRealOut@@UAGIPAK@Z 004ecd60 f audiod:crealout.obj - 0001:000ebd9f ?SetPitch@CRealOut@@UAGIK@Z 004ecd9f f audiod:crealout.obj - 0001:000ebdde ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 004ecdde f audiod:crealout.obj - 0001:000ebe1d ?SetPlaybackRate@CRealOut@@UAGIK@Z 004ece1d f audiod:crealout.obj - 0001:000ebe5c ?GetID@CRealOut@@UAGIPAI@Z 004ece5c f audiod:crealout.obj - 0001:000ebe9b ?Message@CRealOut@@UAGIIKK@Z 004ece9b f audiod:crealout.obj - 0001:000ebee2 ?GetErrorText@CRealOut@@UAGIIPADI@Z 004ecee2 f audiod:crealout.obj - 0001:000ebf30 ??0CFakeOut@@QAE@XZ 004ecf30 f audiod:cfakeout.obj - 0001:000ebfb3 ??1CFakeOut@@QAE@XZ 004ecfb3 f audiod:cfakeout.obj - 0001:000ebfd2 ?AddRef@CFakeOut@@UAGKXZ 004ecfd2 f audiod:cfakeout.obj - 0001:000ebff0 ?Release@CFakeOut@@UAGKXZ 004ecff0 f audiod:cfakeout.obj - 0001:000ec046 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 004ed046 f audiod:cfakeout.obj - 0001:000ec0e1 ?Init@CFakeOut@@QAGJXZ 004ed0e1 f audiod:cfakeout.obj - 0001:000ec0ff ?GetNumDevs@CFakeOut@@UAGIXZ 004ed0ff f audiod:cfakeout.obj - 0001:000ec116 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004ed116 f audiod:cfakeout.obj - 0001:000ec1cb ?Close@CFakeOut@@UAGIXZ 004ed1cb f audiod:cfakeout.obj - 0001:000ec229 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004ed229 f audiod:cfakeout.obj - 0001:000ec2d1 ?GetVolume@CFakeOut@@UAGIPAK@Z 004ed2d1 f audiod:cfakeout.obj - 0001:000ec326 ?SetVolume@CFakeOut@@UAGIK@Z 004ed326 f audiod:cfakeout.obj - 0001:000ec36f ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004ed36f f audiod:cfakeout.obj - 0001:000ec3d1 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004ed3d1 f audiod:cfakeout.obj - 0001:000ec433 ?StartPlayback@CFakeOut@@AAGXXZ 004ed433 f audiod:cfakeout.obj - 0001:000ec491 ?SuspendPump@CFakeOut@@QAGXXZ 004ed491 f audiod:cfakeout.obj - 0001:000ec512 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004ed512 f audiod:cfakeout.obj - 0001:000ec636 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 004ed636 f audiod:cfakeout.obj - 0001:000ec69a ?Pause@CFakeOut@@UAGIXZ 004ed69a f audiod:cfakeout.obj - 0001:000ec6f1 ?Restart@CFakeOut@@UAGIXZ 004ed6f1 f audiod:cfakeout.obj - 0001:000ec751 ?Reset@CFakeOut@@UAGIXZ 004ed751 f audiod:cfakeout.obj - 0001:000ec7dc ?BreakLoop@CFakeOut@@UAGIXZ 004ed7dc f audiod:cfakeout.obj - 0001:000ec7f3 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 004ed7f3 f audiod:cfakeout.obj - 0001:000ec80a ?GetPitch@CFakeOut@@UAGIPAK@Z 004ed80a f audiod:cfakeout.obj - 0001:000ec821 ?SetPitch@CFakeOut@@UAGIK@Z 004ed821 f audiod:cfakeout.obj - 0001:000ec838 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 004ed838 f audiod:cfakeout.obj - 0001:000ec84f ?SetPlaybackRate@CFakeOut@@UAGIK@Z 004ed84f f audiod:cfakeout.obj - 0001:000ec866 ?GetID@CFakeOut@@UAGIPAI@Z 004ed866 f audiod:cfakeout.obj - 0001:000ec87d ?Message@CFakeOut@@UAGIIKK@Z 004ed87d f audiod:cfakeout.obj - 0001:000ec894 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 004ed894 f audiod:cfakeout.obj - 0001:000ec8b0 ??_GCFakeOut@@QAEPAXI@Z 004ed8b0 f audiod:cfakeout.obj - 0001:000ec8ec __alloca_probe 004ed8ec LIBC:chkstk.obj - 0001:000ec8ec __chkstk 004ed8ec LIBC:chkstk.obj - 0001:000ec919 __onexit 004ed919 f LIBC:onexit.obj - 0001:000ec98f _atexit 004ed98f f LIBC:onexit.obj - 0001:000ec9a1 ___onexitinit 004ed9a1 f LIBC:onexit.obj - 0001:000ec9d7 __purecall 004ed9d7 f LIBC:purevirt.obj - 0001:000ec9e4 __ftol 004ed9e4 f LIBC:ftol.obj - 0001:000eca0c _fdiv_main_routine 004eda0c f LIBC:adj_fdiv.obj - 0001:000ecb23 __adj_fdiv_r 004edb23 f LIBC:adj_fdiv.obj - 0001:000ecfc2 _fdivp_sti_st 004edfc2 f LIBC:adj_fdiv.obj - 0001:000ecfd5 _fdivrp_sti_st 004edfd5 f LIBC:adj_fdiv.obj - 0001:000ecfe8 __adj_fdiv_m32 004edfe8 f LIBC:adj_fdiv.obj - 0001:000ed034 __adj_fdiv_m64 004ee034 f LIBC:adj_fdiv.obj - 0001:000ed080 __adj_fdiv_m16i 004ee080 f LIBC:adj_fdiv.obj - 0001:000ed0b4 __adj_fdiv_m32i 004ee0b4 f LIBC:adj_fdiv.obj - 0001:000ed0e8 __adj_fdivr_m32 004ee0e8 f LIBC:adj_fdiv.obj - 0001:000ed134 __adj_fdivr_m64 004ee134 f LIBC:adj_fdiv.obj - 0001:000ed180 __adj_fdivr_m16i 004ee180 f LIBC:adj_fdiv.obj - 0001:000ed1b4 __adj_fdivr_m32i 004ee1b4 f LIBC:adj_fdiv.obj - 0001:000ed1e8 __safe_fdiv 004ee1e8 f LIBC:adj_fdiv.obj - 0001:000ed1fd __safe_fdivr 004ee1fd f LIBC:adj_fdiv.obj - 0001:000ed212 __fprem_common 004ee212 f LIBC:adj_fdiv.obj - 0001:000ed418 __adj_fprem 004ee418 f LIBC:adj_fdiv.obj - 0001:000ed4ca __fprem1_common 004ee4ca f LIBC:adj_fdiv.obj - 0001:000ed6d0 __adj_fprem1 004ee6d0 f LIBC:adj_fdiv.obj - 0001:000ed785 __safe_fprem 004ee785 f LIBC:adj_fdiv.obj - 0001:000ed78b __safe_fprem1 004ee78b f LIBC:adj_fdiv.obj - 0001:000ed791 __adj_fpatan 004ee791 f LIBC:adj_fdiv.obj - 0001:000ed794 __adj_fptan 004ee794 f LIBC:adj_fdiv.obj - 0001:000ed797 __fpmath 004ee797 f LIBC:fpinit.obj - 0001:000ed7ab __fpclear 004ee7ab f LIBC:fpinit.obj - 0001:000ed7ac __cfltcvt_init 004ee7ac f LIBC:fpinit.obj - 0001:000ed7e4 _memcmp 004ee7e4 f LIBC:memcmp.obj - 0001:000ed803 ??2@YAPAXI@Z 004ee803 f LIBC:new.obj - 0001:000ed812 ??3@YAXPAX@Z 004ee812 f LIBC:delete.obj - 0001:000ed81f _WinMainCRTStartup 004ee81f f LIBC:wincrt0.obj - 0001:000ed985 __amsg_exit 004ee985 f LIBC:wincrt0.obj - 0001:000ed9b8 _memcpy 004ee9b8 f LIBC:memcpy.obj - 0001:000edb08 _memset 004eeb08 f LIBC:memset.obj - 0001:000edb4c __global_unwind2 004eeb4c f LIBC:exsup.obj - 0001:000edb8e __local_unwind2 004eeb8e f LIBC:exsup.obj - 0001:000edbe8 __abnormal_termination 004eebe8 f LIBC:exsup.obj - 0001:000edc0b ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 004eec0b f LIBC:trnsctrl.obj - 0001:000edc31 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 004eec31 f LIBC:trnsctrl.obj - 0001:000edc66 ?_CallMemberFunction0@@YGXPAX0@Z 004eec66 f LIBC:trnsctrl.obj - 0001:000edc6d ?_CallMemberFunction1@@YGXPAX00@Z 004eec6d f LIBC:trnsctrl.obj - 0001:000edc74 ?_CallMemberFunction2@@YGXPAX00H@Z 004eec74 f LIBC:trnsctrl.obj - 0001:000edc7b ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 004eec7b f LIBC:trnsctrl.obj - 0001:000edcc9 ___CxxFrameHandler 004eecc9 f LIBC:trnsctrl.obj - 0001:000edd00 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 004eed00 f LIBC:trnsctrl.obj - 0001:000edd78 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 004eed78 f LIBC:trnsctrl.obj - 0001:000edeac _strcat 004eeeac f LIBC:strcat.obj - 0001:000edeb0 _strcpy 004eeeb0 LIBC:strcat.obj - 0001:000edf3d _fclose 004eef3d f LIBC:fclose.obj - 0001:000edf99 _fputs 004eef99 f LIBC:fputs.obj - 0001:000edfeb __fsopen 004eefeb f LIBC:fopen.obj - 0001:000ee00e _fopen 004ef00e f LIBC:fopen.obj - 0001:000ee021 _abs 004ef021 f LIBC:abs.obj - 0001:000ee02c _pow 004ef02c LIBC:87ctran.obj - 0001:000ee036 _log 004ef036 LIBC:87ctran.obj - 0001:000ee040 _log10 004ef040 LIBC:87ctran.obj - 0001:000ee047 _exp 004ef047 LIBC:87ctran.obj - 0001:000ee04e __CIpow 004ef04e LIBC:87ctran.obj - 0001:000ee058 __CIlog 004ef058 LIBC:87ctran.obj - 0001:000ee062 __CIlog10 004ef062 LIBC:87ctran.obj - 0001:000ee069 __CIexp 004ef069 LIBC:87ctran.obj - 0001:000ee070 __lrotl 004ef070 f LIBC:rotl.obj - 0001:000ee081 __rotl 004ef081 f LIBC:rotl.obj - 0001:000ee0ac _memmove 004ef0ac f LIBC:memmove.obj - 0001:000ee1fa __cinit 004ef1fa f LIBC:crt0dat.obj - 0001:000ee22a _exit 004ef22a f LIBC:crt0dat.obj - 0001:000ee23b __exit 004ef23b f LIBC:crt0dat.obj - 0001:000ee2eb _realloc 004ef2eb f LIBC:realloc.obj - 0001:000ee43d __msize 004ef43d f LIBC:msize.obj - 0001:000ee44e _malloc 004ef44e f LIBC:malloc.obj - 0001:000ee461 __nh_malloc 004ef461 f LIBC:malloc.obj - 0001:000ee520 __heap_split_block 004ef520 f LIBC:malloc.obj - 0001:000ee565 __setdefaultprecision 004ef565 f LIBC:fp8.obj - 0001:000ee578 _ms_p5_test_fdiv 004ef578 f LIBC:testfdiv.obj - 0001:000ee5be _ms_p5_mp_test_fdiv 004ef5be f LIBC:testfdiv.obj - 0001:000ee691 __forcdecpt 004ef691 f LIBC:cvt.obj - 0001:000ee6f6 __cropzeros 004ef6f6 f LIBC:cvt.obj - 0001:000ee755 __positive 004ef755 f LIBC:cvt.obj - 0001:000ee76a __fassign 004ef76a f LIBC:cvt.obj - 0001:000ee7ad __cftoe 004ef7ad f LIBC:cvt.obj - 0001:000ee900 __cftof 004ef900 f LIBC:cvt.obj - 0001:000eea1c __cftog 004efa1c f LIBC:cvt.obj - 0001:000eeac4 __cfltcvt 004efac4 f LIBC:cvt.obj - 0001:000eeb40 _free 004efb40 f LIBC:free.obj - 0001:000eeba8 __XcptFilter 004efba8 f LIBC:winxfltr.obj - 0001:000eed33 __ismbblead 004efd33 f LIBC:ismbbyte.obj - 0001:000eed76 __setenvp 004efd76 f LIBC:stdenvp.obj - 0001:000eee41 __setargv 004efe41 f LIBC:stdargv.obj - 0001:000ef13f __setmbcp 004f013f f LIBC:mbctype.obj - 0001:000ef2cd ___initmbctable 004f02cd f LIBC:mbctype.obj - 0001:000ef2d8 __ioinit 004f02d8 f LIBC:ioinit.obj - 0001:000ef3c6 __heap_init 004f03c6 f LIBC:heapinit.obj - 0001:000ef443 ___getempty 004f0443 f LIBC:heapinit.obj - 0001:000ef470 __except_handler3 004f0470 f LIBC:exsup3.obj - 0001:000ef51e __seh_longjmp_unwind@4 004f051e f LIBC:exsup3.obj - 0001:000ef539 __NMSG_WRITE 004f0539 f LIBC:crt0msg.obj - 0001:000ef591 __GET_RTERRMSG 004f0591 f LIBC:crt0msg.obj - 0001:000ef5c6 ___InternalCxxFrameHandler 004f05c6 f LIBC:frame.obj - 0001:000efa39 ___FrameUnwindToState 004f0a39 f LIBC:frame.obj - 0001:000eff38 ?terminate@@YAXXZ 004f0f38 f LIBC:hooks.obj - 0001:000effaa ?_inconsistency@@YAXXZ 004f0faa f LIBC:hooks.obj - 0001:000f001c __close 004f101c f LIBC:close.obj - 0001:000f00b2 __freebuf 004f10b2 f LIBC:_freebuf.obj - 0001:000f00ea _fflush 004f10ea f LIBC:fflush.obj - 0001:000f0136 __flush 004f1136 f LIBC:fflush.obj - 0001:000f0198 __flushall 004f1198 f LIBC:fflush.obj - 0001:000f020d ___endstdio 004f120d f LIBC:fflush.obj - 0001:000f0221 __stbuf 004f1221 f LIBC:_sftbuf.obj - 0001:000f02a2 __ftbuf 004f12a2 f LIBC:_sftbuf.obj - 0001:000f02e8 _fwrite 004f12e8 f LIBC:fwrite.obj - 0001:000f043d __openfile 004f143d f LIBC:_open.obj - 0001:000f05d8 __getstream 004f15d8 f LIBC:stream.obj - 0001:000f0629 __fFEXP 004f1629 LIBC:87tran.obj - 0001:000f0690 __rtinfpopse 004f1690 LIBC:87tran.obj - 0001:000f0692 __rtinfnpopse 004f1692 LIBC:87tran.obj - 0001:000f06a2 __fFLN 004f16a2 LIBC:87tran.obj - 0001:000f0757 __rtinfpop 004f1757 LIBC:87tran.obj - 0001:000f0759 __rtinfnpop 004f1759 LIBC:87tran.obj - 0001:000f0776 __ffexpm1 004f1776 LIBC:87tran.obj - 0001:000f0820 __cintrindisp2 004f1820 f LIBC:87cdisp.obj - 0001:000f085e __cintrindisp1 004f185e f LIBC:87cdisp.obj - 0001:000f0894 __ctrandisp2 004f1894 f LIBC:87cdisp.obj - 0001:000f0a05 __ctrandisp1 004f1a05 f LIBC:87cdisp.obj - 0001:000f0a31 __fload 004f1a31 f LIBC:87cdisp.obj - 0001:000f0a6d __heap_abort 004f1a6d f LIBC:hpabort.obj - 0001:000f0a78 __heap_grow 004f1a78 f LIBC:heapgrow.obj - 0001:000f0b61 __heap_grow_region 004f1b61 f LIBC:heapgrow.obj - 0001:000f0c0e __heap_free_region 004f1c0e f LIBC:heapgrow.obj - 0001:000f0c48 __heap_search 004f1c48 f LIBC:heapsrch.obj - 0001:000f0d38 __control87 004f1d38 f LIBC:ieee87.obj - 0001:000f0d73 __controlfp 004f1d73 f LIBC:ieee87.obj - 0001:000f0eaa __fptrap 004f1eaa f LIBC:crt0fp.obj - 0001:000f0eb5 __isctype 004f1eb5 f LIBC:isctype.obj - 0001:000f0f30 _tolower 004f1f30 f LIBC:tolower.obj - 0001:000f0ffc __ZeroTail 004f1ffc f LIBC:intrncvt.obj - 0001:000f105c __IncMan 004f205c f LIBC:intrncvt.obj - 0001:000f10bd __RoundMan 004f20bd f LIBC:intrncvt.obj - 0001:000f115a __CopyMan 004f215a f LIBC:intrncvt.obj - 0001:000f1177 __FillZeroMan 004f2177 f LIBC:intrncvt.obj - 0001:000f1183 __IsZeroMan 004f2183 f LIBC:intrncvt.obj - 0001:000f11a1 __ShrMan 004f21a1 f LIBC:intrncvt.obj - 0001:000f124c __ld12cvt 004f224c f LIBC:intrncvt.obj - 0001:000f13e8 __ld12tod 004f23e8 f LIBC:intrncvt.obj - 0001:000f13fe __ld12tof 004f23fe f LIBC:intrncvt.obj - 0001:000f1414 __atodbl 004f2414 f LIBC:intrncvt.obj - 0001:000f1445 __atoflt 004f2445 f LIBC:intrncvt.obj - 0001:000f1476 __fptostr 004f2476 f LIBC:_fptostr.obj - 0001:000f14f4 __fltout 004f24f4 f LIBC:cfout.obj - 0001:000f1557 ___dtold 004f2557 f LIBC:cfout.obj - 0001:000f1621 ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 004f2621 f LIBC:unhandld.obj - 0001:000f167a ?_ValidateRead@@YAHPBXI@Z 004f267a f LIBC:validate.obj - 0001:000f1698 ?_ValidateWrite@@YAHPAXI@Z 004f2698 f LIBC:validate.obj - 0001:000f16b6 ?_ValidateExecute@@YAHP6GHXZ@Z 004f26b6 f LIBC:validate.obj - 0001:000f16d0 _abort 004f26d0 f LIBC:abort.obj - 0001:000f16ef __dosmaperr 004f26ef f LIBC:dosmap.obj - 0001:000f1758 __alloc_osfhnd 004f2758 f LIBC:osfinfo.obj - 0001:000f178e __set_osfhnd 004f278e f LIBC:osfinfo.obj - 0001:000f17f8 __free_osfhnd 004f27f8 f LIBC:osfinfo.obj - 0001:000f1865 __get_osfhandle 004f2865 f LIBC:osfinfo.obj - 0001:000f189d __commit 004f289d f LIBC:commit.obj - 0001:000f18ea __write 004f28ea f LIBC:write.obj - 0001:000f1a83 __fcloseall 004f2a83 f LIBC:closeall.obj - 0001:000f1ab4 __isatty 004f2ab4 f LIBC:isatty.obj - 0001:000f1ace __flsbuf 004f2ace f LIBC:_flsbuf.obj - 0001:000f1bda __sopen 004f2bda f LIBC:open.obj - 0001:000f1f24 __trandisp1 004f2f24 f LIBC:87disp.obj - 0001:000f1f8b __trandisp2 004f2f8b f LIBC:87disp.obj - 0001:000f2017 __rttospopde 004f3017 LIBC:87disp.obj - 0001:000f201c __rttospop 004f301c LIBC:87disp.obj - 0001:000f201e __rtnospop 004f301e LIBC:87disp.obj - 0001:000f2020 __rttosnpop 004f3020 LIBC:87disp.obj - 0001:000f2021 __rtnospopde 004f3021 LIBC:87disp.obj - 0001:000f2028 __rtzeropop 004f3028 LIBC:87disp.obj - 0001:000f202a __rtzeronpop 004f302a LIBC:87disp.obj - 0001:000f202f __rtonepop 004f302f LIBC:87disp.obj - 0001:000f2031 __rtonenpop 004f3031 LIBC:87disp.obj - 0001:000f2036 __tosnan1 004f3036 LIBC:87disp.obj - 0001:000f2061 __nosnan2 004f3061 LIBC:87disp.obj - 0001:000f2063 __tosnan2 004f3063 LIBC:87disp.obj - 0001:000f208b __nan2 004f308b LIBC:87disp.obj - 0001:000f20ca __rtindfpop 004f30ca LIBC:87disp.obj - 0001:000f20cc __rtindfnpop 004f30cc LIBC:87disp.obj - 0001:000f20dd __rttosnpopde 004f30dd LIBC:87disp.obj - 0001:000f20e7 __rtchsifneg 004f30e7 LIBC:87disp.obj - 0001:000f20ee __powhlp 004f30ee f LIBC:powhlp.obj - 0001:000f22db __d_inttype 004f32db f LIBC:powhlp.obj - 0001:000f232d __87except 004f332d f LIBC:87except.obj - 0001:000f2437 __heap_addblock 004f3437 f LIBC:heapadd.obj - 0001:000f26ee ___crtGetStringTypeA 004f36ee f LIBC:aw_str.obj - 0001:000f2865 ___crtLCMapStringA 004f3865 f LIBC:aw_map.obj - 0001:000f2ac4 ___addl 004f3ac4 f LIBC:mantold.obj - 0001:000f2ae7 ___add_12 004f3ae7 f LIBC:mantold.obj - 0001:000f2b45 ___shl_12 004f3b45 f LIBC:mantold.obj - 0001:000f2b83 ___shr_12 004f3b83 f LIBC:mantold.obj - 0001:000f2bb6 ___mtold12 004f3bb6 f LIBC:mantold.obj - 0001:000f2c9a ___strgtold12 004f3c9a f LIBC:strgtold.obj - 0001:000f32d9 _$I10_OUTPUT 004f42d9 f LIBC:x10fout.obj - 0001:000f360f _raise 004f460f f LIBC:winsig.obj - 0001:000f3794 __lseek 004f4794 f LIBC:lseek.obj - 0001:000f3809 __getbuf 004f4809 f LIBC:_getbuf.obj - 0001:000f3854 __chsize 004f4854 f LIBC:chsize.obj - 0001:000f3988 __read 004f4988 f LIBC:read.obj - 0001:000f3b82 __set_exp 004f4b82 f LIBC:util.obj - 0001:000f3bb7 __decomp 004f4bb7 f LIBC:util.obj - 0001:000f3c85 __frnd 004f4c85 f LIBC:frnd.obj - 0001:000f3c9a __raise_exc 004f4c9a f LIBC:fpexcept.obj - 0001:000f3fac __handle_exc 004f4fac f LIBC:fpexcept.obj - 0001:000f4204 __set_errno 004f5204 f LIBC:fpexcept.obj - 0001:000f4230 __matherr 004f5230 f LIBC:matherr.obj - 0001:000f4233 __statfp 004f5233 f LIBC:fpctrl.obj - 0001:000f4244 __clrfp 004f5244 f LIBC:fpctrl.obj - 0001:000f4256 __ctrlfp 004f5256 f LIBC:fpctrl.obj - 0001:000f4286 __set_statfp 004f5286 f LIBC:fpctrl.obj - 0001:000f42e0 __heap_findaddr 004f52e0 f LIBC:findaddr.obj - 0001:000f434a _calloc 004f534a f LIBC:calloc.obj - 0001:000f4384 ___set_invalid_mb_chars 004f5384 f LIBC:setmbval.obj - 0001:000f43b4 _strncpy 004f53b4 f LIBC:strncpy.obj - 0001:000f43d8 ___ld12mul 004f53d8 f LIBC:tenpow.obj - 0001:000f4618 ___multtenpow12 004f5618 f LIBC:tenpow.obj - 0001:000f468d __setmode 004f568d f LIBC:setmode.obj - 0001:000f4708 _RtlUnwind@16 004f5708 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 004f6000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 004f6018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 004f6030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 004f6040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 004f6058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 004f6070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004f60c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004f60e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 004f6108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 004f610c base.obj - 0002:00000120 ?_ers@@3VERS@@A 004f6120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 004f6248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 004f6260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 004f6368 utilstr.obj - 0002:00000478 ?_pcflFirst@CFL@@0PAV1@A 004f6478 chunk.obj - 0002:000004a0 ?_pfilFirst@FIL@@1PAV1@A 004f64a0 file.obj - 0002:000004a8 ?_mutxList@FIL@@1VMUTX@@A 004f64a8 file.obj - 0002:000004d0 ?_fniTemp@@3VFNI@@A 004f64d0 fniwin.obj - 0002:0000061c ?vpappb@@3PAVAPPB@@A 004f661c appb.obj - 0002:00000620 ?vpsndm@@3PAVSNDM@@A 004f6620 appb.obj - 0002:00000638 ?vpcex@@3PAVCEX@@A 004f6638 appb.obj - 0002:00000660 ?_pclokFirst@CLOK@@1PAV1@A 004f6660 clok.obj - 0002:000006a4 ?_hidLast@CMH@@0JA 004f66a4 cmd.obj - 0002:0000072c ?vcactRealize@@3JA 004f672c gfx.obj - 0002:00000740 ?vntl@@3VNTL@@A 004f6740 gfx.obj - 0002:00000780 ?_gridLast@GOB@@1JA 004f6780 gob.obj - 0002:00000888 ?vwig@@3UWIG@@A 004f6888 appbwin.obj - 0002:000008b8 ?_mutxAssert@@3VMUTX@@A 004f68b8 appbwin.obj - 0002:000008e0 ?_rgpstn@@3QAPAVSTN@@A 004f68e0 appbwin.obj - 0002:00000904 ?_fFlushGdi@GPT@@0HA 004f6904 gfxwin.obj - 0002:00000940 ?_pgobScreen@GOB@@0PAV1@A 004f6940 gobwin.obj - 0002:0000097c ?vpmubCur@@3PAVMUB@@A 004f697c menuwin.obj - 0002:00000cb0 ?_clip@@3VCLIP@@A 004f6cb0 clip.obj - 0002:00000cd4 ?vpclip@@3PAVCLIP@@A 004f6cd4 clip.obj - 0002:0000131c ?_siiLast@SNDV@@1JA 004f731c sndm.obj - 0002:00001640 ?vapp@@3VAPP@@A 004f7640 ched.obj - 0002:00001ba0 __bufin 004f7ba0 - 0002:00002ba0 __heap_descpages 004f8ba0 - 0002:00002bb0 __heap_regions 004f8bb0 - 0002:00002eb0 ___onexitend 004f8eb0 - 0002:00002eb4 ___onexitbegin 004f8eb4 - 0002:00002eb8 __acmdln 004f8eb8 - 0003:00000058 ??_7KCDC@@6B@ 004f9058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 004f9078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 004f9090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004f90b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004f90c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 004f9100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 004f9118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 004f9138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 004f9158 utilstr.obj - 0003:00000170 ??_7CFL@@6B@ 004f9170 chunk.obj - 0003:00000188 ??_7CGE@@6B@ 004f9188 chunk.obj - 0003:000001a0 ??_7CODM@@6B@ 004f91a0 codec.obj - 0003:000001d0 ??_7BACO@@6B@ 004f91d0 crf.obj - 0003:00000200 ??_7CRF@@6B@ 004f9200 crf.obj - 0003:00000230 ??_7RCA@@6B@ 004f9230 crf.obj - 0003:00000260 ??_7FIL@@6B@ 004f9260 file.obj - 0003:00000278 ??_7BLCK@@6B@ 004f9278 file.obj - 0003:00000290 ??_7MSFIL@@6B@ 004f9290 file.obj - 0003:000002b8 ??_7MSNK@@6B@ 004f92b8 file.obj - 0003:000002e0 ??_7FNI@@6B@ 004f92e0 fniwin.obj - 0003:000002f8 ??_7APPB@@6B@ 004f92f8 appb.obj - 0003:00000430 ??_7CLOK@@6B@ 004f9430 clok.obj - 0003:00000460 ??_7CMH@@6B@ 004f9460 cmd.obj - 0003:00000488 ??_7CEX@@6B@ 004f9488 cmd.obj - 0003:00000508 ??_7CURS@@6B@ 004f9508 cursor.obj - 0003:00000538 ??_7GNV@@6B@ 004f9538 gfx.obj - 0003:00000550 ??_7NTL@@6B@ 004f9550 gfx.obj - 0003:00000568 ??_7GOB@@6B@ 004f9568 gob.obj - 0003:000005f0 ??_7GTE@@6B@ 004f95f0 gob.obj - 0003:00000608 ??_7REGSC@@6B@ 004f9608 region.obj - 0003:00000620 ??_7REGN@@6B@ 004f9620 region.obj - 0003:00000638 ??_7REGBL@@6B@ 004f9638 region.obj - 0003:00000650 ??_7GPT@@6B@ 004f9650 gfxwin.obj - 0003:00000668 ??_7MUB@@6B@ 004f9668 menuwin.obj - 0003:000006a0 ??_7PIC@@6B@ 004f96a0 picwin.obj - 0003:000006d0 ??_7GKDS@@6B@ 004f96d0 kidworld.obj - 0003:00000708 ??_7WOKS@@6B@ 004f9708 kidworld.obj - 0003:000007d8 ??_7GOKD@@6B@ 004f97d8 kidworld.obj - 0003:00000810 ??_7TXHD@@6B@ 004f9810 kidhelp.obj - 0003:00000920 ??_7TXHG@@6B@ 004f9920 kidhelp.obj - 0003:00000a50 ??_7HBAL@@6B@ 004f9a50 kidhelp.obj - 0003:00000b58 ??_7HBTN@@6B@ 004f9b58 kidhelp.obj - 0003:00000c90 ??_7GOK@@6B@ 004f9c90 kidspace.obj - 0003:00000d90 ??_7GORB@@6B@ 004f9d90 kidspace.obj - 0003:00000de0 ??_7GORT@@6B@ 004f9de0 kidspace.obj - 0003:00000e30 ??_7GORV@@6B@ 004f9e30 kidspace.obj - 0003:00000e88 ??_7GORF@@6B@ 004f9e88 kidspace.obj - 0003:00000ed8 ??_7GORP@@6B@ 004f9ed8 kidspace.obj - 0003:00000f28 ??_7SCEG@@6B@ 004f9f28 screxeg.obj - 0003:00000f90 ??_7CABO@@6B@ 004f9f90 screxeg.obj - 0003:00000fc0 ??_7DOCB@@6B@ 004f9fc0 docb.obj - 0003:00001050 ??_7DTE@@6B@ 004fa050 docb.obj - 0003:00001068 ??_7DDG@@6B@ 004fa068 docb.obj - 0003:00001130 ??_7DMD@@6B@ 004fa130 docb.obj - 0003:000011b8 ??_7DMW@@6B@ 004fa1b8 docb.obj - 0003:00001240 ??_7DSG@@6B@ 004fa240 docb.obj - 0003:000012d0 ??_7DSSP@@6B@ 004fa2d0 docb.obj - 0003:00001358 ??_7DSSM@@6B@ 004fa358 docb.obj - 0003:000013e0 ??_7CLIP@@6B@ 004fa3e0 clip.obj - 0003:000013f8 ??_7CHCM@@6B@ 004fa3f8 chcm.obj - 0003:00001410 ??_7CHLX@@6B@ 004fa410 chcm.obj - 0003:00001448 ??_7SCCG@@6B@ 004fa448 chcm.obj - 0003:00001498 ??_7LEXB@@6B@ 004fa498 lex.obj - 0003:000014c8 ??_7BSM@@6B@ 004fa4c8 stream.obj - 0003:000014e0 ??_7BSF@@6B@ 004fa4e0 stream.obj - 0003:000014f8 ??_7SCCB@@6B@ 004fa4f8 scrcom.obj - 0003:00001548 ??_7SCPT@@6B@ 004fa548 scrcom.obj - 0003:00001578 ??_7SCEB@@6B@ 004fa578 screxe.obj - 0003:000015e8 ??_7STRG@@6B@ 004fa5e8 screxe.obj - 0003:00001600 ??_7GRPB@@6B@ 004fa600 groups.obj - 0003:00001630 ??_7GLB@@6B@ 004fa630 groups.obj - 0003:00001660 ??_7GL@@6B@ 004fa660 groups.obj - 0003:00001690 ??_7AL@@6B@ 004fa690 groups.obj - 0003:000016c0 ??_7GGB@@6B@ 004fa6c0 groups.obj - 0003:000016f0 ??_7GG@@6B@ 004fa6f0 groups.obj - 0003:00001720 ??_7AG@@6B@ 004fa720 groups.obj - 0003:00001750 ??_7GSTB@@6B@ 004fa750 groups2.obj - 0003:00001788 ??_7GST@@6B@ 004fa788 groups2.obj - 0003:000017c0 ??_7AST@@6B@ 004fa7c0 groups2.obj - 0003:000017f8 ??_7TXTB@@6B@ 004fa7f8 rtxt.obj - 0003:000018e8 ??_7TXPD@@6B@ 004fa8e8 rtxt.obj - 0003:000019d8 ??_7TXRD@@6B@ 004fa9d8 rtxt.obj - 0003:00001ae8 ??_7RTUN@@6B@ 004faae8 rtxt.obj - 0003:00001b08 ??_7UNDB@@6B@ 004fab08 rtxt.obj - 0003:00001b28 ??_7TXTG@@6B@ 004fab28 rtxt2.obj - 0003:00001c30 ??_7TXLG@@6B@ 004fac30 rtxt2.obj - 0003:00001d38 ??_7TXRG@@6B@ 004fad38 rtxt2.obj - 0003:00001e58 ??_7SNDM@@6B@ 004fae58 sndm.obj - 0003:00001ec0 ??_7SNDMQ@@6B@ 004faec0 sndm.obj - 0003:00001f30 ??_7SNQUE@@6B@ 004faf30 sndm.obj - 0003:00001f68 ??_7SNDV@@6B@ 004faf68 sndm.obj - 0003:00001fc8 ??_7STBL@@6B@ 004fafc8 sndam.obj - 0003:00002008 ??_7CAMS@@6B@ 004fb008 sndam.obj - 0003:00002038 ??_7AMNOT@@6B@ 004fb038 sndam.obj - 0003:00002058 ??_7AMQUE@@6B@ 004fb058 sndam.obj - 0003:00002090 ??_7SDAM@@6B@ 004fb090 sndam.obj - 0003:00002100 ??_7IStream@@6B@ 004fb100 sndam.obj - 0003:00002138 ??_7IAMNotifySink@@6B@ 004fb138 sndam.obj - 0003:00002158 ??_7IUnknown@@6B@ 004fb158 sndam.obj - 0003:00002168 ??_7MIDO@@6B@ 004fb168 mididev.obj - 0003:00002180 ??_7MDPS@@6B@ 004fb180 mididev2.obj - 0003:000021f0 ??_7MDWS@@6B@ 004fb1f0 mididev2.obj - 0003:00002220 ??_7MSQUE@@6B@ 004fb220 mididev2.obj - 0003:00002260 ??_7MSMIX@@6B@ 004fb260 mididev2.obj - 0003:00002278 ??_7MISI@@6B@ 004fb278 mididev2.obj - 0003:000022b0 ??_7WMS@@6B@ 004fb2b0 mididev2.obj - 0003:000022e8 ??_7OMS@@6B@ 004fb2e8 mididev2.obj - 0003:00002320 ??_7MSTP@@6B@ 004fb320 midi.obj - 0003:00002338 ??_7MIDS@@6B@ 004fb338 midi.obj - 0003:00002368 ??_7DLG@@6B@ 004fb368 dlg.obj - 0003:00002398 ??_7CTL@@6B@ 004fb398 ctl.obj - 0003:00002420 ??_7SCB@@6B@ 004fb420 ctl.obj - 0003:000024a8 ??_7WSB@@6B@ 004fb4a8 ctl.obj - 0003:00002530 ??_7GVID@@6B@ 004fb530 video.obj - 0003:00002580 ??_7GVDS@@6B@ 004fb580 video.obj - 0003:000025d8 ??_7GVDW@@6B@ 004fb5d8 video.obj - 0003:00002630 ??_7EDCB@@6B@ 004fb630 text.obj - 0003:00002700 ??_7EDPL@@6B@ 004fb700 text.obj - 0003:000027d8 ??_7EDSL@@6B@ 004fb7d8 text.obj - 0003:000028b0 ??_7MBMP@@6B@ 004fb8b0 mbmp.obj - 0003:000028e0 ??_7DOC@@6B@ 004fb8e0 chdoc.obj - 0003:00002970 ??_7DOCE@@6B@ 004fb970 chdoc.obj - 0003:00002a10 ??_7DCLB@@6B@ 004fba10 chdoc.obj - 0003:00002ad8 ??_7DCD@@6B@ 004fbad8 chdoc.obj - 0003:00002bf0 ??_7TSCG@@6B@ 004fbbf0 chdoc.obj - 0003:00002cc0 ??_7SEL@@6B@ 004fbcc0 chdoc.obj - 0003:00002cd8 ??_7APP@@6B@ 004fbcd8 ched.obj - 0003:00002e18 ??_7DOCG@@6B@ 004fbe18 chgrp.obj - 0003:00002eb8 ??_7DCGB@@6B@ 004fbeb8 chgrp.obj - 0003:00002f90 ??_7DCGL@@6B@ 004fbf90 chgrp.obj - 0003:00003068 ??_7DCGG@@6B@ 004fc068 chgrp.obj - 0003:00003140 ??_7DCST@@6B@ 004fc140 chgrp.obj - 0003:00003218 ??_7DOCI@@6B@ 004fc218 chgrp.obj - 0003:000032b8 ??_7DHEX@@6B@ 004fc2b8 chhex.obj - 0003:00003348 ??_7DCH@@6B@ 004fc348 chhex.obj - 0003:00003410 ??_7DOCH@@6B@ 004fc410 chhex.obj - 0003:000034b0 ??_7DOCMBMP@@6B@ 004fc4b0 chmbmp.obj - 0003:00003550 ??_7DCMBMP@@6B@ 004fc550 chmbmp.obj - 0003:00003618 ??_7DOCPIC@@6B@ 004fc618 chpic.obj - 0003:000036b8 ??_7DCPIC@@6B@ 004fc6b8 chpic.obj - 0003:00003780 ??_7CHTXD@@6B@ 004fc780 chtxt.obj - 0003:00003870 ??_7CHTDD@@6B@ 004fc870 chtxt.obj - 0003:00003980 _IID_IUnknown 004fc980 uuid:com_i.obj - 0003:00003990 _IID_IClassFactory 004fc990 uuid:com_i.obj - 0003:000039a0 _IID_IMarshal 004fc9a0 uuid:com_i.obj - 0003:000039b0 _IID_IMalloc 004fc9b0 uuid:com_i.obj - 0003:000039c0 _IID_IStdMarshalInfo 004fc9c0 uuid:com_i.obj - 0003:000039d0 _IID_IExternalConnection 004fc9d0 uuid:com_i.obj - 0003:000039e0 _IID_IWeakRef 004fc9e0 uuid:com_i.obj - 0003:000039f0 _IID_IEnumUnknown 004fc9f0 uuid:com_i.obj - 0003:00003a00 _IID_IBindCtx 004fca00 uuid:com_i.obj - 0003:00003a10 _IID_IParseDisplayName 004fca10 uuid:com_i.obj - 0003:00003a20 _IID_IEnumMoniker 004fca20 uuid:com_i.obj - 0003:00003a30 _IID_IRunnableObject 004fca30 uuid:com_i.obj - 0003:00003a40 _IID_IRunningObjectTable 004fca40 uuid:com_i.obj - 0003:00003a50 _IID_IPersist 004fca50 uuid:com_i.obj - 0003:00003a60 _IID_IPersistStream 004fca60 uuid:com_i.obj - 0003:00003a70 _IID_IMoniker 004fca70 uuid:com_i.obj - 0003:00003a80 _IID_IEnumString 004fca80 uuid:com_i.obj - 0003:00003a90 _IID_IStream 004fca90 uuid:com_i.obj - 0003:00003aa0 _IID_IEnumSTATSTG 004fcaa0 uuid:com_i.obj - 0003:00003ab0 _IID_IStorage 004fcab0 uuid:com_i.obj - 0003:00003ac0 _IID_IPersistFile 004fcac0 uuid:com_i.obj - 0003:00003ad0 _IID_IPersistStorage 004fcad0 uuid:com_i.obj - 0003:00003ae0 _IID_ILockBytes 004fcae0 uuid:com_i.obj - 0003:00003af0 _IID_IEnumFORMATETC 004fcaf0 uuid:com_i.obj - 0003:00003b00 _IID_IEnumSTATDATA 004fcb00 uuid:com_i.obj - 0003:00003b10 _IID_IRootStorage 004fcb10 uuid:com_i.obj - 0003:00003b20 _IID_IAdviseSink 004fcb20 uuid:com_i.obj - 0003:00003b30 _IID_IAdviseSink2 004fcb30 uuid:com_i.obj - 0003:00003b40 _IID_IDataObject 004fcb40 uuid:com_i.obj - 0003:00003b50 _IID_IDataAdviseHolder 004fcb50 uuid:com_i.obj - 0003:00003b60 _IID_IMessageFilter 004fcb60 uuid:com_i.obj - 0003:00003b70 _IID_IRpcChannelBuffer 004fcb70 uuid:com_i.obj - 0003:00003b80 _IID_IRpcProxyBuffer 004fcb80 uuid:com_i.obj - 0003:00003b90 _IID_IRpcStubBuffer 004fcb90 uuid:com_i.obj - 0003:00003ba0 _IID_IPSFactoryBuffer 004fcba0 uuid:com_i.obj - 0003:00003bb0 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 004fcbb0 audiod:sound.obj - 0003:00003bc8 ??_7CAMWavFileSrc@@6BIAMSound@@@ 004fcbc8 audiod:sound.obj - 0003:00003c18 ??_7IAMSound@@6B@ 004fcc18 audiod:sound.obj - 0003:00003c40 ??_7IAMWavFileSrc@@6B@ 004fcc40 audiod:sound.obj - 0003:00003c60 _CLSID_AMMixer 004fcc60 audiod:factory.obj - 0003:00003c70 _CLSID_AMWavFileSrc 004fcc70 audiod:factory.obj - 0003:00003c80 _CLSID_AMSilentSound 004fcc80 audiod:factory.obj - 0003:00003c90 _CLSID_AMAppendFilter 004fcc90 audiod:factory.obj - 0003:00003ca0 _CLSID_AMClipFilter 004fcca0 audiod:factory.obj - 0003:00003cb0 _CLSID_AMConvertFilter 004fccb0 audiod:factory.obj - 0003:00003cc0 _CLSID_AMDelayFilter 004fccc0 audiod:factory.obj - 0003:00003cd0 _CLSID_AMGainFilter 004fccd0 audiod:factory.obj - 0003:00003ce0 _CLSID_AMGateFilter 004fcce0 audiod:factory.obj - 0003:00003cf0 _CLSID_AMLoopFilter 004fccf0 audiod:factory.obj - 0003:00003d00 _CLSID_AMMixFilter 004fcd00 audiod:factory.obj - 0003:00003d10 _CLSID_AMFaderFilter 004fcd10 audiod:factory.obj - 0003:00003d20 _CLSID_AMScheduleFilter 004fcd20 audiod:factory.obj - 0003:00003d30 _CLSID_AMRandomizeFilter 004fcd30 audiod:factory.obj - 0003:00003d40 _CLSID_AMDistortFilter 004fcd40 audiod:factory.obj - 0003:00003d50 _CLSID_AMCacheFilter 004fcd50 audiod:factory.obj - 0003:00003d60 _CLSID_AMTrimFilter 004fcd60 audiod:factory.obj - 0003:00003d70 _CLSID_AMStereoFilter 004fcd70 audiod:factory.obj - 0003:00003d80 _CLSID_AMBiasFilter 004fcd80 audiod:factory.obj - 0003:00003d90 _IID_IAMMixer 004fcd90 audiod:factory.obj - 0003:00003da0 _IID_IAMChannel 004fcda0 audiod:factory.obj - 0003:00003db0 _IID_IAMWaveOut 004fcdb0 audiod:factory.obj - 0003:00003dc0 _IID_IAMSound 004fcdc0 audiod:factory.obj - 0003:00003dd0 _IID_IAMNotifySink 004fcdd0 audiod:factory.obj - 0003:00003de0 _IID_IAMWavFileSrc 004fcde0 audiod:factory.obj - 0003:00003df0 _IID_IAMSilentSound 004fcdf0 audiod:factory.obj - 0003:00003e00 _IID_IAMAppendFilter 004fce00 audiod:factory.obj - 0003:00003e10 _IID_IAMClipFilter 004fce10 audiod:factory.obj - 0003:00003e20 _IID_IAMConvertFilter 004fce20 audiod:factory.obj - 0003:00003e30 _IID_IAMDelayFilter 004fce30 audiod:factory.obj - 0003:00003e40 _IID_IAMGainFilter 004fce40 audiod:factory.obj - 0003:00003e50 _IID_IAMGateFilter 004fce50 audiod:factory.obj - 0003:00003e60 _IID_IAMLoopFilter 004fce60 audiod:factory.obj - 0003:00003e70 _IID_IAMMixFilter 004fce70 audiod:factory.obj - 0003:00003e80 _IID_IAMFaderFilter 004fce80 audiod:factory.obj - 0003:00003e90 _IID_IAMScheduleFilter 004fce90 audiod:factory.obj - 0003:00003ea0 _IID_IAMRandomizeFilter 004fcea0 audiod:factory.obj - 0003:00003eb0 _IID_IAMDistortFilter 004fceb0 audiod:factory.obj - 0003:00003ec0 _IID_IAMCacheFilter 004fcec0 audiod:factory.obj - 0003:00003ed0 _IID_IAMTrimFilter 004fced0 audiod:factory.obj - 0003:00003ee0 _IID_IAMStereoFilter 004fcee0 audiod:factory.obj - 0003:00003ef0 _IID_IAMBiasFilter 004fcef0 audiod:factory.obj - 0003:00003f00 _IID_IAMMixerChannel 004fcf00 audiod:factory.obj - 0003:00003f10 _IID_IAMRIFFStream 004fcf10 audiod:factory.obj - 0003:00003f20 ??_7CClassFactory@@6B@ 004fcf20 audiod:factory.obj - 0003:00003f38 ??_7IClassFactory@@6B@ 004fcf38 audiod:factory.obj - 0003:00003f78 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 004fcf78 audiod:factory.obj - 0003:00003f88 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 004fcf88 audiod:factory.obj - 0003:00003fd8 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 004fcfd8 audiod:factory.obj - 0003:00003fe8 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 004fcfe8 audiod:factory.obj - 0003:00004038 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 004fd038 audiod:factory.obj - 0003:00004048 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 004fd048 audiod:factory.obj - 0003:00004098 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 004fd098 audiod:factory.obj - 0003:000040b8 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 004fd0b8 audiod:factory.obj - 0003:00004108 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 004fd108 audiod:factory.obj - 0003:00004118 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 004fd118 audiod:factory.obj - 0003:00004168 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 004fd168 audiod:factory.obj - 0003:00004178 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 004fd178 audiod:factory.obj - 0003:000041c8 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 004fd1c8 audiod:factory.obj - 0003:000041d8 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 004fd1d8 audiod:factory.obj - 0003:00004228 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 004fd228 audiod:factory.obj - 0003:00004238 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 004fd238 audiod:factory.obj - 0003:00004260 ??_7IAMGateFilter@@6B@ 004fd260 audiod:factory.obj - 0003:00004270 ??_7IAMLoopFilter@@6B@ 004fd270 audiod:factory.obj - 0003:00004280 ??_7IAMFaderFilter@@6B@ 004fd280 audiod:factory.obj - 0003:00004290 ??_7IAMRandomizeFilter@@6B@ 004fd290 audiod:factory.obj - 0003:000042b0 ??_7IAMDistortFilter@@6B@ 004fd2b0 audiod:factory.obj - 0003:000042c0 ??_7IAMStereoFilter@@6B@ 004fd2c0 audiod:factory.obj - 0003:000042d0 ??_7IAMTrimFilter@@6B@ 004fd2d0 audiod:factory.obj - 0003:000042e0 ??_7IAMBiasFilter@@6B@ 004fd2e0 audiod:factory.obj - 0003:00004430 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 004fd430 audiod:sndcache.obj - 0003:00004440 ??_7CAMCacheFilter@@6BIAMSound@@@ 004fd440 audiod:sndcache.obj - 0003:00004468 ??_7IAMCacheFilter@@6B@ 004fd468 audiod:sndcache.obj - 0003:00004478 ??_7CAMRIFFStream@@6B@ 004fd478 audiod:riffstrm.obj - 0003:00004490 ??_7IAMRIFFStream@@6B@ 004fd490 audiod:riffstrm.obj - 0003:000044a8 ??_7CFileStream@@6B@ 004fd4a8 audiod:stream.obj - 0003:000044e0 ??_7CMemoryStream@@6B@ 004fd4e0 audiod:stream.obj - 0003:00004518 ??_7CAMPassThruFilter@@6B@ 004fd518 audiod:sndpass.obj - 0003:00004540 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 004fd540 audiod:sndsched.obj - 0003:00004578 ??_7CAMScheduleFilter@@6BIAMSound@@@ 004fd578 audiod:sndsched.obj - 0003:000045a0 ??_7IAMScheduleFilter@@6B@ 004fd5a0 audiod:sndsched.obj - 0003:000045d8 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 004fd5d8 audiod:sndmix.obj - 0003:000045e8 ??_7CAMMixFilter@@6BIAMSound@@@ 004fd5e8 audiod:sndmix.obj - 0003:00004610 ??_7IAMMixFilter@@6B@ 004fd610 audiod:sndmix.obj - 0003:00004620 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 004fd620 audiod:sndgain.obj - 0003:00004638 ??_7CAMGainFilter@@6BIAMSound@@@ 004fd638 audiod:sndgain.obj - 0003:00004660 ??_7IAMGainFilter@@6B@ 004fd660 audiod:sndgain.obj - 0003:00004678 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 004fd678 audiod:sndecho.obj - 0003:00004688 ??_7CAMDelayFilter@@6BIAMSound@@@ 004fd688 audiod:sndecho.obj - 0003:000046b8 ??_7IAMDelayFilter@@6B@ 004fd6b8 audiod:sndecho.obj - 0003:000046c8 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 004fd6c8 audiod:sndcnvt.obj - 0003:000046d8 ??_7CAMConvertFilter@@6BIAMSound@@@ 004fd6d8 audiod:sndcnvt.obj - 0003:00004700 ??_7IAMConvertFilter@@6B@ 004fd700 audiod:sndcnvt.obj - 0003:00004710 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 004fd710 audiod:sndclip.obj - 0003:00004720 ??_7CAMClipFilter@@6BIAMSound@@@ 004fd720 audiod:sndclip.obj - 0003:00004748 ??_7IAMClipFilter@@6B@ 004fd748 audiod:sndclip.obj - 0003:00004758 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 004fd758 audiod:sndapend.obj - 0003:00004768 ??_7CAMAppendFilter@@6BIAMSound@@@ 004fd768 audiod:sndapend.obj - 0003:00004790 ??_7IAMAppendFilter@@6B@ 004fd790 audiod:sndapend.obj - 0003:000047a0 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 004fd7a0 audiod:sndmute.obj - 0003:000047b0 ??_7CAMSilentSound@@6BIAMSound@@@ 004fd7b0 audiod:sndmute.obj - 0003:000047d8 ??_7IAMSilentSound@@6B@ 004fd7d8 audiod:sndmute.obj - 0003:00004860 ??_7CAMMixer@@6B@ 004fd860 audiod:cmixer.obj - 0003:000048d8 ??_7IAMMixer@@6B@ 004fd8d8 audiod:cmixer.obj - 0003:000049d0 ??_7CMixerOut@@6B@ 004fd9d0 audiod:cmixout.obj - 0003:00004a30 ??_7IAMWaveOut@@6B@ 004fda30 audiod:cmixout.obj - 0003:00004a90 ??_7CAMPlaySnd@@6B@ 004fda90 audiod:cplaysnd.obj - 0003:00004ab0 ??_7CAMChannel@@6BIAMMixerChannel@@@ 004fdab0 audiod:cchannel.obj - 0003:00004b00 ??_7CAMChannel@@6BIAMChannel@@@ 004fdb00 audiod:cchannel.obj - 0003:00004b60 ??_7IAMChannel@@6B@ 004fdb60 audiod:cchannel.obj - 0003:00004bc0 ??_7IAMMixerChannel@@6B@ 004fdbc0 audiod:cchannel.obj - 0003:00004c10 ??_7CRealOut@@6B@ 004fdc10 audiod:crealout.obj - 0003:00004c90 ??_7CFakeOut@@6B@ 004fdc90 audiod:cfakeout.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 004fe020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 004fe024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 004fe064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 004fe068 base.obj - 0004:0000006c ?vcactAV@@3JA 004fe06c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 004fe070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 004fe088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004fe0a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004fe0b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004fe0c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004fe0e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004fe0f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 004fe10c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 004fe120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 004fe13c base.obj - 0004:0000015c ??_C@_0DL@HKA@?6Lost?5object?3?5cls?$DN?8?$CFf?8?0?5size?$DN?$CFd?0@ 004fe15c base.obj - 0004:00000198 ??_C@_03GOHA@nil?$AA@ 004fe198 base.obj - 0004:0000019c ??_C@_0DE@ELAM@Total?5lost?5objects?3?5?$CFd?4?5Press?5?8D@ 004fe19c base.obj - 0004:000001d0 ??_C@_0BH@KF@Raw?5list?5is?5not?5empty?$CB?$AA@ 004fe1d0 base.obj - 0004:000001e8 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 004fe1e8 base.obj - 0004:000001f8 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 004fe1f8 base.obj - 0004:00000208 ??_C@_0O@NAKK@links?5corrupt?$AA@ 004fe208 base.obj - 0004:00000238 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004fe238 utilcopy.obj - 0004:00000268 ?vpers@@3PAVERS@@A 004fe268 utilerro.obj - 0004:0000026c ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004fe26c utilerro.obj - 0004:00000294 ??_C@_08GEE@Error?5?$CFd?$AA@ 004fe294 utilerro.obj - 0004:000002c0 ??_C@_0BF@FJFO@divide?5by?5zero?5error?$AA@ 004fe2c0 utilint.obj - 0004:000002d8 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 004fe2d8 utilint.obj - 0004:000002e8 ??_C@_084overflow?$AA@ 004fe2e8 utilint.obj - 0004:000002f4 ??_C@_0N@INPL@long?5too?5big?$AA@ 004fe2f4 utilint.obj - 0004:00000304 ??_C@_0P@DFPA@long?5too?5small?$AA@ 004fe304 utilint.obj - 0004:00000314 ??_C@_09MGFD@wrong?5bom?$AA@ 004fe314 utilint.obj - 0004:00000320 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 004fe320 utilint.obj - 0004:00000344 ??_C@_0BE@OJMN@empty?5map?5rectangle?$AA@ 004fe344 utilint.obj - 0004:00000358 ??_C@_0BE@KGKE@empty?5rc?5to?5stretch?$AA@ 004fe358 utilint.obj - 0004:0000036c ??_C@_0BF@OOKN@this?5can?8t?5be?5prcSrc?$AA@ 004fe36c utilint.obj - 0004:00000384 ??_C@_0BN@KEGA@fraction?5not?5in?5lowest?5terms?$AA@ 004fe384 utilint.obj - 0004:000003c8 ?vpfnlib@@3P6GJJJ@ZA 004fe3c8 utilmem.obj - 0004:000003cc ?_fInLiberator@@3HA 004fe3cc utilmem.obj - 0004:000003d0 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 004fe3d0 utilmem.obj - 0004:000003f4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004fe3f4 utilmem.obj - 0004:0000040c ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 004fe40c utilmem.obj - 0004:00000434 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 004fe434 utilmem.obj - 0004:00000458 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 004fe458 utilmem.obj - 0004:00000478 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 004fe478 utilmem.obj - 0004:0000048c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 004fe48c utilmem.obj - 0004:000004a0 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 004fe4a0 utilmem.obj - 0004:000004b4 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 004fe4b4 utilmem.obj - 0004:000004c8 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 004fe4c8 utilmem.obj - 0004:000004e0 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 004fe4e0 utilmem.obj - 0004:000004f4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004fe4f4 utilmem.obj - 0004:00000504 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 004fe504 utilmem.obj - 0004:00000518 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004fe518 utilmem.obj - 0004:00000534 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 004fe534 utilmem.obj - 0004:00000548 ??_C@_08ECDH@wrong?5cb?$AA@ 004fe548 utilmem.obj - 0004:00000554 ??_C@_06BHIL@nil?5pv?$AA@ 004fe554 utilmem.obj - 0004:0000055c ??_C@_0DA@JKM@?6Lost?5block?3?5size?$DN?$CFd?0?5StackTrace@ 004fe55c utilmem.obj - 0004:000005b0 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 004fe5b0 utilrnd.obj - 0004:000005cc ??_C@_0L@LEMP@_clw?5wrong?$AA@ 004fe5cc utilrnd.obj - 0004:000005d8 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 004fe5d8 utilrnd.obj - 0004:000005e8 ??_C@_0L@DINP@wrong?5_clw?$AA@ 004fe5e8 utilrnd.obj - 0004:00000718 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 004fe718 utilstr.obj - 0004:00000740 ??_C@_0BH@GGIJ@BLCK?5is?5not?5big?5enough?$AA@ 004fe740 utilstr.obj - 0004:00000758 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 004fe758 utilstr.obj - 0004:00000768 ??_C@_0BN@MDCJ@bad?5STN?5data?5or?5read?5failure?$AA@ 004fe768 utilstr.obj - 0004:00000788 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 004fe788 utilstr.obj - 0004:000007b0 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 004fe7b0 utilstr.obj - 0004:000007c0 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 004fe7c0 utilstr.obj - 0004:000007d4 ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 004fe7d4 utilstr.obj - 0004:000007e4 ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 004fe7e4 utilstr.obj - 0004:00000800 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 004fe800 utilstr.obj - 0004:0000081c ??_C@_0M@PFFO@sz?5too?5long?$AA@ 004fe81c utilstr.obj - 0004:00000828 ??_C@_0BM@CLPI@why?5did?5CompareString?5fail?$DP?$AA@ 004fe828 utilstr.obj - 0004:00000844 ??_C@_0CE@IKBC@TranslateRgch?5can?8t?5handle?5this?5@ 004fe844 utilstr.obj - 0004:00000868 ??_C@_07NPFI@bad?5osk?$AA@ 004fe868 utilstr.obj - 0004:00000870 ??_C@_06KJGB@bad?5st?$AA@ 004fe870 utilstr.obj - 0004:00000878 ??_C@_07EEGP@bad?5stz?$AA@ 004fe878 utilstr.obj - 0004:000008a0 ?vcactSuspendCheckPointers@@3JA 004fe8a0 memwin.obj - 0004:000008a4 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 004fe8a4 memwin.obj - 0004:000008b8 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 004fe8b8 memwin.obj - 0004:000008cc ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 004fe8cc memwin.obj - 0004:000008e4 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004fe8e4 memwin.obj - 0004:000008f4 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004fe8f4 memwin.obj - 0004:00000918 ??_C@_09BABB@hq?5is?5nil?$AA@ 004fe918 memwin.obj - 0004:00000924 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004fe924 memwin.obj - 0004:00000960 ?_rtiLast@CFL@@0JA 004fe960 chunk.obj - 0004:00000964 ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 004fe964 chunk.obj - 0004:00000980 ??_C@_0BC@PEHH@sizes?5don?8t?5match?$AA@ 004fe980 chunk.obj - 0004:00000994 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 004fe994 chunk.obj - 0004:000009b4 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 004fe9b4 chunk.obj - 0004:000009cc ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 004fe9cc chunk.obj - 0004:000009dc ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 004fe9dc chunk.obj - 0004:00000a00 ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 004fea00 chunk.obj - 0004:00000a14 ??_C@_08EHFM@Bad?5RTIE?$AA@ 004fea14 chunk.obj - 0004:00000a20 ??_C@_09HBDJ@bad?5index?$AA@ 004fea20 chunk.obj - 0004:00000a2c ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 004fea2c chunk.obj - 0004:00000a4c ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 004fea4c chunk.obj - 0004:00000a60 ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 004fea60 chunk.obj - 0004:00000a70 ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 004fea70 chunk.obj - 0004:00000a80 ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 004fea80 chunk.obj - 0004:00000a9c ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 004fea9c chunk.obj - 0004:00000ab8 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 004feab8 chunk.obj - 0004:00000ad0 ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 004fead0 chunk.obj - 0004:00000af4 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 004feaf4 chunk.obj - 0004:00000b10 ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 004feb10 chunk.obj - 0004:00000b24 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 004feb24 chunk.obj - 0004:00000b38 ??_C@_06CFJE@bad?5fp?$AA@ 004feb38 chunk.obj - 0004:00000b40 ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 004feb40 chunk.obj - 0004:00000b54 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 004feb54 chunk.obj - 0004:00000b64 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 004feb64 chunk.obj - 0004:00000b70 ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 004feb70 chunk.obj - 0004:00000b94 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 004feb94 chunk.obj - 0004:00000bac ??_C@_0M@INOI@corrupt?5crp?$AA@ 004febac chunk.obj - 0004:00000bb8 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 004febb8 chunk.obj - 0004:00000bd8 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 004febd8 chunk.obj - 0004:00000bf0 ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 004febf0 chunk.obj - 0004:00000c08 ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 004fec08 chunk.obj - 0004:00000c28 ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 004fec28 chunk.obj - 0004:00000c38 ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 004fec38 chunk.obj - 0004:00000c5c ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 004fec5c chunk.obj - 0004:00000c88 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 004fec88 chunk.obj - 0004:00000ca0 ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 004feca0 chunk.obj - 0004:00000cb8 ??_C@_0BG@PFBG@can?8t?5find?5the?5chunks?$AA@ 004fecb8 chunk.obj - 0004:00000cd0 ??_C@_0BF@CKCG@corrupt?5chunky?5index?$AA@ 004fecd0 chunk.obj - 0004:00000ce8 ??_C@_0BA@GFFG@already?5a?5child?$AA@ 004fece8 chunk.obj - 0004:00000cf8 ??_C@_0BB@GINM@bad?5move?5request?$AA@ 004fecf8 chunk.obj - 0004:00000d0c ??_C@_0BA@JOOP@child?5not?5there?$AA@ 004fed0c chunk.obj - 0004:00000d1c ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 004fed1c chunk.obj - 0004:00000d54 ??_C@_03JFP@MIA?$AA@ 004fed54 chunk.obj - 0004:00000d58 ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 004fed58 chunk.obj - 0004:00000d7c ??_C@_0M@OPIM@not?5a?5child?$AA@ 004fed7c chunk.obj - 0004:00000d88 ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 004fed88 chunk.obj - 0004:00000d98 ??_C@_07NFMH@overlap?$AA@ 004fed98 chunk.obj - 0004:00000da0 ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 004feda0 chunk.obj - 0004:00000dac ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 004fedac chunk.obj - 0004:00000dd4 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 004fedd4 chunk.obj - 0004:00000de0 ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 004fede0 chunk.obj - 0004:00000dec ??_C@_06JFMK@bad?5cb?$AA@ 004fedec chunk.obj - 0004:00000df4 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 004fedf4 chunk.obj - 0004:00000e08 ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 004fee08 chunk.obj - 0004:00000e34 ??_C@_0CI@KFLB@src?5not?5a?5child?5or?5dest?5already?5@ 004fee34 chunk.obj - 0004:00000e5c ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 004fee5c chunk.obj - 0004:00000e6c ??_C@_07BDGM@bad?5crp?$AA@ 004fee6c chunk.obj - 0004:00000e74 ??_C@_0CE@COLA@why?5is?5this?5cnom?5already?5in?5the?5@ 004fee74 chunk.obj - 0004:00000e98 ??_C@_0BK@ECCP@_FFindCtgCno?5doesn?8t?5work?$AA@ 004fee98 chunk.obj - 0004:00000eb4 ??_C@_0CL@CGLG@how?5can?5the?5root?5already?5have?5be@ 004feeb4 chunk.obj - 0004:00000ee0 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 004feee0 chunk.obj - 0004:00000f10 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 004fef10 codec.obj - 0004:00000f30 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 004fef30 codec.obj - 0004:00000f48 ??_C@_0CF@HCBN@can?8t?5set?5default?5compression?5to@ 004fef48 codec.obj - 0004:00000f70 ??_C@_08DJLA@nil?5cfmt?$AA@ 004fef70 codec.obj - 0004:00000f7c ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 004fef7c codec.obj - 0004:00000f9c ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 004fef9c codec.obj - 0004:00000fd8 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 004fefd8 codkauai.obj - 0004:00000ffc ??_C@_07DEPO@bad?5len?$AA@ 004feffc codkauai.obj - 0004:00001004 ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 004ff004 codkauai.obj - 0004:00001014 ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 004ff014 codkauai.obj - 0004:00001038 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 004ff038 codkauai.obj - 0004:0000104c ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 004ff04c codkauai.obj - 0004:00001060 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 004ff060 codkauai.obj - 0004:0000107c ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 004ff07c codkauai.obj - 0004:000010ac ??_C@_0P@KAFA@still?5attached?$AA@ 004ff0ac crf.obj - 0004:000010bc ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 004ff0bc crf.obj - 0004:000010d0 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 004ff0d0 crf.obj - 0004:000010ec ??_C@_0CB@ILAK@someone?5still?5refers?5to?5this?5CRF@ 004ff0ec crf.obj - 0004:00001110 ??_C@_0BD@BILB@BACO?5not?5attached?$CB?$AA@ 004ff110 crf.obj - 0004:00001124 ??_C@_0BF@MMHE@how?5did?5this?5happen?$DP?$AA@ 004ff124 crf.obj - 0004:0000113c ??_C@_0P@DLJO@crep?5too?5small?$AA@ 004ff13c crf.obj - 0004:0000114c ??_C@_0L@BDOO@bad?5pfnrpo?$AA@ 004ff14c crf.obj - 0004:00001158 ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 004ff158 crf.obj - 0004:00001178 ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 004ff178 crf.obj - 0004:00001194 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 004ff194 crf.obj - 0004:000011b0 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 004ff1b0 crf.obj - 0004:000011cc ??_C@_0CA@FCHL@baco?5claims?5to?5not?5be?5attached?$CB?$AA@ 004ff1cc crf.obj - 0004:0000120c ?vftgCreator@FIL@@2JA 004ff20c file.obj - 0004:00001210 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 004ff210 file.obj - 0004:00001224 ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 004ff224 file.obj - 0004:00001238 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 004ff238 file.obj - 0004:0000124c ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 004ff24c file.obj - 0004:00001264 ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 004ff264 file.obj - 0004:0000127c ??_C@_0BG@MHHD@writing?5outside?5flo?52?$AA@ 004ff27c file.obj - 0004:00001294 ??_C@_0BO@MEMN@why?5did?5CchTranslateRgb?5fail?$DP?$AA@ 004ff294 file.obj - 0004:000012b4 ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 004ff2b4 file.obj - 0004:000012cc ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 004ff2cc file.obj - 0004:000012e4 ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 004ff2e4 file.obj - 0004:000012f8 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 004ff2f8 file.obj - 0004:00001310 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 004ff310 file.obj - 0004:00001324 ??_C@_0BH@KHHD@reading?5outside?5blck?52?$AA@ 004ff324 file.obj - 0004:0000133c ??_C@_0BH@BMPJ@writing?5outside?5blck?52?$AA@ 004ff33c file.obj - 0004:00001354 ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 004ff354 file.obj - 0004:00001368 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 004ff368 file.obj - 0004:0000137c ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 004ff37c file.obj - 0004:00001390 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 004ff390 file.obj - 0004:000013ac ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 004ff3ac file.obj - 0004:000013c4 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 004ff3c4 file.obj - 0004:000013e0 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 004ff3e0 file.obj - 0004:00001400 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 004ff400 file.obj - 0004:00001424 ??_C@_0L@MCHM@bad?5_fpCur?$AA@ 004ff424 file.obj - 0004:00001450 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 004ff450 filewin.obj - 0004:0000146c ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 004ff46c filewin.obj - 0004:00001488 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 004ff488 filewin.obj - 0004:000014a8 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 004ff4a8 filewin.obj - 0004:000014b8 ??_C@_0P@DBGM@rename?5failure?$AA@ 004ff4b8 filewin.obj - 0004:000014c8 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 004ff4c8 filewin.obj - 0004:000014f8 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 004ff4f8 filewin.obj - 0004:0000152c ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 004ff52c filewin.obj - 0004:00001578 ?vftgTemp@@3JA 004ff578 fniwin.obj - 0004:00001580 ??_C@_00A@?$AA@ 004ff580 fniwin.obj - 0004:00001584 ??_C@_08GBDA@Temp?$CF04x?$AA@ 004ff584 fniwin.obj - 0004:00001590 ??_C@_04POLC@?$CFc?3?2?$AA@ 004ff590 fniwin.obj - 0004:00001598 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 004ff598 fniwin.obj - 0004:000015b0 ??_C@_07JFJJ@Bad?5FTG?$AA@ 004ff5b0 fniwin.obj - 0004:000015b8 ??_C@_07NLCI@bad?5fni?$AA@ 004ff5b8 fniwin.obj - 0004:000015c0 ??_C@_0N@NEA@file?5is?5open?$AA@ 004ff5c0 fniwin.obj - 0004:000015d0 ??_C@_02OOND@?4?4?$AA@ 004ff5d0 fniwin.obj - 0004:000015d4 ??_C@_0BC@IKJG@expected?5filename?$AA@ 004ff5d4 fniwin.obj - 0004:000015e8 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 004ff5e8 fniwin.obj - 0004:000015f8 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 004ff5f8 fniwin.obj - 0004:0000160c ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 004ff60c fniwin.obj - 0004:00001624 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 004ff624 fniwin.obj - 0004:00001634 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 004ff634 fniwin.obj - 0004:00001644 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 004ff644 fniwin.obj - 0004:00001678 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 004ff678 appb.obj - 0004:00001680 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 004ff680 appb.obj - 0004:000016e4 ??_C@_07GHND@Generic?$AA@ 004ff6e4 appb.obj - 0004:000016ec ??_C@_0BB@LOCN@cursor?5not?5found?$AA@ 004ff6ec appb.obj - 0004:00001700 ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 004ff700 appb.obj - 0004:00001710 ??_C@_0M@HLIB@Courier?5New?$AA@ 004ff710 appb.obj - 0004:0000171c ??_C@_0CH@KHLM@how?5did?5a?5tooltip?5become?5_pgobMo@ 004ff71c appb.obj - 0004:00001744 ??_C@_0BP@KFNN@unhandled?5cid?5in?5FEnableAppCmd?$AA@ 004ff744 appb.obj - 0004:00001764 ??_C@_0BH@IDIP@nil?5hwnd?5in?5UpdateHwnd?$AA@ 004ff764 appb.obj - 0004:0000177c ??_C@_0P@FENM@marking?5failed?$AA@ 004ff77c appb.obj - 0004:0000178c ??_C@_08CFEH@bad?5hwnd?$AA@ 004ff78c appb.obj - 0004:00001798 ??_C@_0BE@FHLE@unknown?5clip?5format?$AA@ 004ff798 appb.obj - 0004:000017ac ??_C@_0BM@LGKN@Unbalanced?5call?5to?5PopModal?$AA@ 004ff7ac appb.obj - 0004:000017c8 ??_C@_0CN@JDDC@Don?8t?5know?5what?5to?5do?5with?5the?5m@ 004ff7c8 appb.obj - 0004:000017f8 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 004ff7f8 appb.obj - 0004:00001820 ??_C@_0N@DOFL@?$CFs?$CI?$CFd?$CJ?3?5?$CFs?$AN?6?$AA@ 004ff820 appb.obj - 0004:00001830 ??_C@_08IGFG@_Frame_W?$AA@ 004ff830 appb.obj - 0004:00001860 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 004ff860 clok.obj - 0004:00001868 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 004ff868 clok.obj - 0004:00001878 ??_C@_0BI@KLNP@clok?5not?5in?5linked?5list?$AA@ 004ff878 clok.obj - 0004:00001890 ??_C@_0BH@FPKJ@_dtimAlarm?5should?5be?50?$AA@ 004ff890 clok.obj - 0004:000018a8 ??_C@_0BD@MPJC@_timNext?5too?5small?$AA@ 004ff8a8 clok.obj - 0004:000018e0 ?_cmmCMH@CMH@@1UCMM@1@A 004ff8e0 cmd.obj - 0004:000018e8 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 004ff8e8 cmd.obj - 0004:000018f8 ??_C@_07JCMM@bad?5hid?$AA@ 004ff8f8 cmd.obj - 0004:00001900 ??_C@_0BE@IGJC@why?5is?5the?5cid?5nil?$DP?$AA@ 004ff900 cmd.obj - 0004:00001914 ??_C@_0O@FKP@not?5recording?$AA@ 004ff914 cmd.obj - 0004:00001924 ??_C@_0BN@CBME@not?5playing?5a?5command?5stream?$AA@ 004ff924 cmd.obj - 0004:00001944 ??_C@_0BD@CMOM@why?5is?5grfcmm?5nil?$DP?$AA@ 004ff944 cmd.obj - 0004:00001958 ??_C@_0BL@FHGP@event?5queue?5not?5big?5enough?$AA@ 004ff958 cmd.obj - 0004:00001974 ??_C@_0BL@DLEE@why?5enqueue?5a?5nil?5command?$DP?$AA@ 004ff974 cmd.obj - 0004:00001990 ??_C@_0BN@MBPA@why?5check?5for?5a?5nil?5command?$DP?$AA@ 004ff990 cmd.obj - 0004:000019b0 ??_C@_0BJ@IDBN@why?5flush?5a?5nil?5command?$DP?$AA@ 004ff9b0 cmd.obj - 0004:000019cc ??_C@_0CB@BCIM@recursing?5into?5FDispatchNextCmd?$CB@ 004ff9cc cmd.obj - 0004:000019f0 ??_C@_0CN@NJMF@some?5other?5gob?5is?5already?5tracki@ 004ff9f0 cmd.obj - 0004:00001a60 ?vaptGray@@3UAPT@@A 004ffa60 gfx.obj - 0004:00001a68 ?vaptLtGray@@3UAPT@@A 004ffa68 gfx.obj - 0004:00001a70 ?vaptDkGray@@3UAPT@@A 004ffa70 gfx.obj - 0004:00001a78 ?_mpgfdgrfpt@@3QAKA 004ffa78 gfx.obj - 0004:00001a88 ?_mpgfdgrfptInv@@3QAKA 004ffa88 gfx.obj - 0004:00001a98 ??_C@_0M@ELAC@invalid?5ACR?$AA@ 004ffa98 gfx.obj - 0004:00001aa4 ??_C@_0BH@KGNJ@unexpected?5Special?5ACR?$AA@ 004ffaa4 gfx.obj - 0004:00001abc ??_C@_0M@CEND@unknown?5acr?$AA@ 004ffabc gfx.obj - 0004:00001ac8 ??_C@_0BF@HMLG@unexpected?5Index?5ACR?$AA@ 004ffac8 gfx.obj - 0004:00001ae0 ??_C@_0O@KIA@bad?5Index?5ACR?$AA@ 004ffae0 gfx.obj - 0004:00001af0 ??_C@_0BD@BMIG@unexpected?5RGB?5ACR?$AA@ 004ffaf0 gfx.obj - 0004:00001b04 ??_C@_0BD@EIAJ@unexpected?5nil?5ACR?$AA@ 004ffb04 gfx.obj - 0004:00001b18 ??_C@_0BC@JKJL@bad?5_gdd?4prcsClip?$AA@ 004ffb18 gfx.obj - 0004:00001b2c ??_C@_0BE@JMIN@empty?5dst?5rectangle?$AA@ 004ffb2c gfx.obj - 0004:00001b40 ??_C@_0BE@GMOL@empty?5src?5rectangle?$AA@ 004ffb40 gfx.obj - 0004:00001b54 ??_C@_0BA@PPFN@rc?8s?5are?5scaled?$AA@ 004ffb54 gfx.obj - 0004:00001b64 ??_C@_0CO@PIMN@Source?5rectangle?5is?5outside?5the?5@ 004ffb64 gfx.obj - 0004:00001b94 ??_C@_0BN@GNCH@Can?8t?5dissolve?5from?5this?5GPT?$AA@ 004ffb94 gfx.obj - 0004:00001bb4 ??_C@_0M@NJP@Invalid?5onn?$AA@ 004ffbb4 gfx.obj - 0004:00001bc0 ??_C@_0CH@JIKM@Source?5rectangle?5not?5in?5source?5b@ 004ffbc0 gfx.obj - 0004:00001c08 ?_cmmGOB@GOB@@1UCMM@CMH@@A 004ffc08 gob.obj - 0004:00001c10 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 004ffc10 gob.obj - 0004:00001ca0 ?_ginDefGob@GOB@@1JA 004ffca0 gob.obj - 0004:00001ca4 ??_C@_0BL@LFFA@screen?5gob?5already?5created?$AA@ 004ffca4 gob.obj - 0004:00001cc0 ??_C@_0BB@HLJB@corrupt?5gob?5tree?$AA@ 004ffcc0 gob.obj - 0004:00001cd4 ??_C@_0BH@LDKF@gob?5still?5has?5children?$AA@ 004ffcd4 gob.obj - 0004:00001cec ??_C@_0BB@BIPD@corrupt?5GOB?5tree?$AA@ 004ffcec gob.obj - 0004:00001d00 ??_C@_0BL@KBND@don?8t?5have?5the?5same?5parent?$AA@ 004ffd00 gob.obj - 0004:00001d1c ??_C@_0O@LIGN@bad?5gin?5value?$AA@ 004ffd1c gob.obj - 0004:00001d2c ??_C@_07LNIO@bad?5gin?$AA@ 004ffd2c gob.obj - 0004:00001d34 ??_C@_0BD@HAPB@no?5port?5to?5draw?5to?$AA@ 004ffd34 gob.obj - 0004:00001d48 ??_C@_07BFMJ@no?5hwnd?$AA@ 004ffd48 gob.obj - 0004:00001d50 ??_C@_07CILM@bad?5coo?$AA@ 004ffd50 gob.obj - 0004:00001d58 ??_C@_0O@JPAA@grfcust?5wrong?$AA@ 004ffd58 gob.obj - 0004:00001d68 ??_C@_0M@FIGF@wrong?5logic?$AA@ 004ffd68 gob.obj - 0004:00001d74 ??_C@_07PABM@nil?5hid?$AA@ 004ffd74 gob.obj - 0004:00001d7c ??_C@_0BB@LCPC@bad?5pinned?5point?$AA@ 004ffd7c gob.obj - 0004:00001d90 ??_C@_0BO@NNPC@_hwnd?5based?5gob?5not?5at?5?$CI0?0?50?$CJ?$AA@ 004ffd90 gob.obj - 0004:00001df0 ??_C@_0BK@LBAJ@empty?5reference?5rectangle?$AA@ 004ffdf0 region.obj - 0004:00001e0c ??_C@_0BI@NJNM@overflowed?5provided?5pgl?$AA@ 004ffe0c region.obj - 0004:00001e24 ??_C@_0P@EJHA@already?5filled?$AA@ 004ffe24 region.obj - 0004:00001e34 ??_C@_0BE@KNCN@row?5already?5started?$AA@ 004ffe34 region.obj - 0004:00001e48 ??_C@_0BD@DNOF@overflow?5in?5EndRow?$AA@ 004ffe48 region.obj - 0004:00001e5c ??_C@_0CA@JIOJ@not?5an?5even?5number?5of?5xp?5values?$AA@ 004ffe5c region.obj - 0004:00001e7c ??_C@_0BC@OMHD@logic?5error?5above?$AA@ 004ffe7c region.obj - 0004:00001e90 ??_C@_0N@FJND@bad?5region?56?$AA@ 004ffe90 region.obj - 0004:00001ea0 ??_C@_0N@KGGK@bad?5region?55?$AA@ 004ffea0 region.obj - 0004:00001eb0 ??_C@_0N@MPN@bad?5region?54?$AA@ 004ffeb0 region.obj - 0004:00001ec0 ??_C@_0N@FJBI@bad?5region?53?$AA@ 004ffec0 region.obj - 0004:00001ed0 ??_C@_0N@PDIP@bad?5region?52?$AA@ 004ffed0 region.obj - 0004:00001ee0 ??_C@_0N@MDG@bad?5region?51?$AA@ 004ffee0 region.obj - 0004:00001ef0 ??_C@_0CD@BMHN@why?5is?5_ScanNextCore?5being?5calle@ 004ffef0 region.obj - 0004:00001f14 ??_C@_0BC@IADK@overflow?5in?5AddXp?$AA@ 004fff14 region.obj - 0004:00001f28 ??_C@_0BM@ODBF@calling?5AddXp?5outside?5a?5row?$AA@ 004fff28 region.obj - 0004:00001f44 ??_C@_0L@IENI@bad?5region?$AA@ 004fff44 region.obj - 0004:00001f50 ??_C@_0M@MCGN@bad?5regions?$AA@ 004fff50 region.obj - 0004:00001f5c ??_C@_0CN@CMLG@region?5scanners?5have?5different?5o@ 004fff5c region.obj - 0004:00001f8c ??_C@_0BF@MDBC@we?5shouldn?8t?5be?5here?$AA@ 004fff8c region.obj - 0004:00001fa4 ??_C@_0BB@PCCB@why?5are?5we?5here?$DP?$AA@ 004fffa4 region.obj - 0004:00001fb8 ??_C@_0BE@FHKJ@_dxp?5should?5be?5zero?$AA@ 004fffb8 region.obj - 0004:00001fcc ??_C@_08OJLB@bad?5_dxp?$AA@ 004fffcc region.obj - 0004:00001ff4 ??_C@_08KPJG@bad?5hpic?$AA@ 004ffff4 pic.obj - 0004:00002020 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 00500020 appbwin.obj - 0004:00002038 ??_C@_03KELD@MDI?$AA@ 00500038 appbwin.obj - 0004:0000203c ??_C@_03BLAA@APP?$AA@ 0050003c appbwin.obj - 0004:00002040 ??_C@_0BA@LBBH@Painting?5failed?$AA@ 00500040 appbwin.obj - 0004:00002050 ??_C@_09HIMI@AssertDlg?$AA@ 00500050 appbwin.obj - 0004:0000205c ??_C@_0CK@LIEM@Thread?5Assert?$CB?5?$CIY?5?$DN?5Ignore?0?5N?5?$DN?5@ 0050005c appbwin.obj - 0004:00002088 ??_C@_01BJG@?6?$AA@ 00500088 appbwin.obj - 0004:0000208c ??_C@_04HJKA@?$CF08x?$AA@ 0050008c appbwin.obj - 0004:00002094 ??_C@_04JGFO@?$CF04x?$AA@ 00500094 appbwin.obj - 0004:0000209c ??_C@_05NKJJ@?$CF08x?5?$AA@ 0050009c appbwin.obj - 0004:000020a4 ??_C@_0BB@DJOH@Some?5Header?5file?$AA@ 005000a4 appbwin.obj - 0004:000020b8 ??_C@_0BI@LAFO@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?3?5?$CFs?$AA@ 005000b8 appbwin.obj - 0004:000020d0 ??_C@_0BE@PHBM@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?$AA@ 005000d0 appbwin.obj - 0004:000020e4 ??_C@_0O@JFGJ@bad?5cok?5value?$AA@ 005000e4 appbwin.obj - 0004:000020f4 ??_C@_0N@IFFC@bad?5bk?5value?$AA@ 005000f4 appbwin.obj - 0004:00002128 ?_hpal@GPT@@0PAUHPALETTE__@@A 00500128 gfxwin.obj - 0004:0000212c ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 0050012c gfxwin.obj - 0004:00002130 ?_cclrPal@GPT@@0JA 00500130 gfxwin.obj - 0004:00002134 ?_prgclr@GPT@@0PAUCLR@@A 00500134 gfxwin.obj - 0004:00002138 ?_cactPalCur@GPT@@0JA 00500138 gfxwin.obj - 0004:0000213c ?_cactFlush@GPT@@0JA 0050013c gfxwin.obj - 0004:00002140 ?_fPalettized@GPT@@0HA 00500140 gfxwin.obj - 0004:000021b8 ??_C@_0BJ@PBFH@Shrinking?5palette?5failed?$AA@ 005001b8 gfxwin.obj - 0004:000021d4 ??_C@_0BJ@KNCM@shrinking?5palette?5failed?$AA@ 005001d4 gfxwin.obj - 0004:000021f0 ??_C@_0CK@ECAI@Setting?5palette?5before?5vwig?4hdcA@ 005001f0 gfxwin.obj - 0004:0000221c ??_C@_0O@NFNB@wrong?5CbEntry?$AA@ 0050021c gfxwin.obj - 0004:0000222c ??_C@_0CG@ELJM@why?5doesn?8t?5the?5window?5have?5a?5pa@ 0050022c gfxwin.obj - 0004:00002254 ??_C@_08ILPC@Null?5hdc?$AA@ 00500254 gfxwin.obj - 0004:00002260 ??_C@_09BPPC@Null?5hwnd?$AA@ 00500260 gfxwin.obj - 0004:0000226c ??_C@_0CD@LHJN@GetStockObject?$CISYSTEM_FONT?$CJ?5fail@ 0050026c gfxwin.obj - 0004:00002290 ??_C@_0CD@IPHD@GetStockObject?$CIWHITE_BRUSH?$CJ?5fail@ 00500290 gfxwin.obj - 0004:000022b4 ??_C@_0CA@BNGH@GetStockObject?$CINULL_PEN?$CJ?5failed?$AA@ 005002b4 gfxwin.obj - 0004:000022d4 ??_C@_0BJ@KIOC@pixels?5are?5still?5locked?$CB?$AA@ 005002d4 gfxwin.obj - 0004:000022f0 ??_C@_0BF@ELIM@cannot?5select?5bitmap?$AA@ 005002f0 gfxwin.obj - 0004:00002308 ??_C@_0BG@JHJN@Failed?5to?5GetDC?$CIhNil?$CJ?$AA@ 00500308 gfxwin.obj - 0004:00002320 ??_C@_0BE@DPNK@bad?5cbitPixel?5value?$AA@ 00500320 gfxwin.obj - 0004:00002334 ??_C@_0BO@BHDB@empty?5rectangle?5for?5offscreen?$AA@ 00500334 gfxwin.obj - 0004:00002354 ??_C@_0BP@CMGG@why?5is?5_cactDraw?5?$DO?5_cactFlush?$DP?$AA@ 00500354 gfxwin.obj - 0004:00002374 ??_C@_0BG@LAEK@Unmatched?5unlock?5call?$AA@ 00500374 gfxwin.obj - 0004:0000238c ??_C@_0P@HGNP@use?5solid?5fill?$AA@ 0050038c gfxwin.obj - 0004:0000239c ??_C@_0CC@HEMK@fore?5and?5back?5colors?5still?5equal@ 0050039c gfxwin.obj - 0004:000023c0 ??_C@_0CI@FAP@Unsupported?5DrawRgch?$CI?$CJ?5foregroun@ 005003c0 gfxwin.obj - 0004:000023e8 ??_C@_0BL@JFGJ@bogus?5horizontal?5alignment?$AA@ 005003e8 gfxwin.obj - 0004:00002404 ??_C@_0BJ@MJCK@bogus?5vertical?5alignment?$AA@ 00500404 gfxwin.obj - 0004:00002420 ??_C@_0BE@EMDF@Drawing?5MBMP?5failed?$AA@ 00500420 gfxwin.obj - 0004:00002434 ??_C@_0L@PAPO@bad?5_rcOff?$AA@ 00500434 gfxwin.obj - 0004:00002440 ??_C@_0BP@GGFE@Internal?5logical?5font?5mismatch?$AA@ 00500440 gfxwin.obj - 0004:00002460 ??_C@_0BI@DCMG@internal?5brush?5mismatch?$AA@ 00500460 gfxwin.obj - 0004:00002478 ??_C@_05OOL@No?5DC?$AA@ 00500478 gfxwin.obj - 0004:00002480 ??_C@_0BG@OFPP@Invalid?5window?5handle?$AA@ 00500480 gfxwin.obj - 0004:00002498 ??_C@_0BH@FOIP@system?5font?5not?5found?$CB?$AA@ 00500498 gfxwin.obj - 0004:000024b0 ??_C@_0BH@KAMK@Can?8t?5get?5logical?5font?$AA@ 005004b0 gfxwin.obj - 0004:000024c8 ??_C@_0BG@JGMN@Can?8t?5get?5system?5font?$AA@ 005004c8 gfxwin.obj - 0004:000024e0 ??_C@_0BG@FBMG@font?5already?5in?5list?$CB?$AA@ 005004e0 gfxwin.obj - 0004:000024f8 ??_C@_07EMGO@bad?5onn?$AA@ 005004f8 gfxwin.obj - 0004:00002520 ??_C@_08JNCF@nil?5hwnd?$AA@ 00500520 gobwin.obj - 0004:0000252c ??_C@_09MLCM@MDICLIENT?$AA@ 0050052c gobwin.obj - 0004:00002538 ??_C@_0BJ@HBI@can?8t?5destroy?5app?5window?$AA@ 00500538 gobwin.obj - 0004:00002554 ??_C@_0BJ@OPBN@GOB?5doesn?8t?5have?5an?5hwnd?$AA@ 00500554 gobwin.obj - 0004:00002590 ??_C@_0BC@EDDP@bad?5client?5window?$AA@ 00500590 menuwin.obj - 0004:000025a4 ??_C@_0CO@PDBN@somebody?5took?5some?5menus?5out?5of?5@ 005005a4 menuwin.obj - 0004:000025d4 ??_C@_0N@BINH@bad?5imniBase?$AA@ 005005d4 menuwin.obj - 0004:000025e4 ??_C@_09DFOI@bad?5_cmnu?$AA@ 005005e4 menuwin.obj - 0004:00002630 ??_C@_0BG@IOCL@Bad?5CUME?5list?5in?5GOKD?$AA@ 00500630 kidworld.obj - 0004:00002648 ??_C@_0BF@CLJM@Bad?5LOP?5list?5in?5GOKD?$AA@ 00500648 kidworld.obj - 0004:00002660 ??_C@_0L@EFDL@Bad?5GOKD?52?$AA@ 00500660 kidworld.obj - 0004:0000266c ??_C@_08GCEB@Bad?5GOKD?$AA@ 0050066c kidworld.obj - 0004:00002678 ??_C@_0BC@LBCI@bad?5rglop?5in?5GKDS?$AA@ 00500678 kidworld.obj - 0004:0000268c ??_C@_0BI@FDPH@GKDS?5_hqData?5wrong?5size?$AA@ 0050068c kidworld.obj - 0004:000026a4 ??_C@_0CM@EOBM@command?5handler?5with?5this?5ID?5alr@ 005006a4 kidworld.obj - 0004:000026d0 ??_C@_0CF@IEIO@Parent?5is?5not?5in?5this?5kidspace?5w@ 005006d0 kidworld.obj - 0004:00002718 ?_cmmTXHG@TXHG@@1UCMM@CMH@@A 00500718 kidhelp.obj - 0004:00002720 ?_rgcmmeTXHG@TXHG@@0QAUCMME@CMH@@A 00500720 kidhelp.obj - 0004:00002750 ??_C@_0P@NFKE@string?5missing?$AA@ 00500750 kidhelp.obj - 0004:00002760 ??_C@_0P@FHNJ@bad?5group?5data?$AA@ 00500760 kidhelp.obj - 0004:00002770 ??_C@_08LFAA@_gidBase?$AA@ 00500770 kidhelp.obj - 0004:0000277c ??_C@_0BE@FPAB@not?5tracking?5mouse?$CB?$AA@ 0050077c kidhelp.obj - 0004:00002790 ??_C@_0BN@CKIE@mouse?5already?5being?5tracked?$CB?$AA@ 00500790 kidhelp.obj - 0004:000027b0 ??_C@_0BO@BJPM@HBAL?5immediately?5destroyed?52?$CB?$AA@ 005007b0 kidhelp.obj - 0004:000027d0 ??_C@_0BM@FEHJ@HBAL?5immediately?5destroyed?$CB?$AA@ 005007d0 kidhelp.obj - 0004:000027ec ??_C@_09JJKK@_cnoSound?$AA@ 005007ec kidhelp.obj - 0004:000027f8 ??_C@_09PEHH@_ctgSound?$AA@ 005007f8 kidhelp.obj - 0004:00002804 ??_C@_0BL@GJLC@GOK?5immediately?5destroyed?$CB?$AA@ 00500804 kidhelp.obj - 0004:00002820 ??_C@_06KFDA@nil?5ID?$AA@ 00500820 kidhelp.obj - 0004:00002828 ??_C@_0BM@OIPK@why?5isn?8t?5my?5parent?5a?5TXHG?$DP?$AA@ 00500828 kidhelp.obj - 0004:00002868 ?_cmmGOK@GOK@@1UCMM@CMH@@A 00500868 kidspace.obj - 0004:00002870 ?_rgcmmeGOK@GOK@@0QAUCMME@CMH@@A 00500870 kidspace.obj - 0004:000028d0 ?_mpgmsgmseEnd@@3QAUGMSE@@A 005008d0 kidspace.obj - 0004:00002978 ?_mpgmsgmseMove@@3QAUGMSE@@A 00500978 kidspace.obj - 0004:00002a20 ?_mpgmsgmseRollOff@@3QAUGMSE@@A 00500a20 kidspace.obj - 0004:00002ac8 ?_mpgmsgmseMouseDown@@3QAUGMSE@@A 00500ac8 kidspace.obj - 0004:00002b70 ?_mpgmsgmseDownOn@@3QAUGMSE@@A 00500b70 kidspace.obj - 0004:00002c18 ?_mpgmsgmseDownOff@@3QAUGMSE@@A 00500c18 kidspace.obj - 0004:00002cc0 ?_mpgmsgmseUpOn@@3QAUGMSE@@A 00500cc0 kidspace.obj - 0004:00002d68 ?_mpgmsgmseUpOff@@3QAUGMSE@@A 00500d68 kidspace.obj - 0004:00002e80 ??_C@_0P@EKOK@nil?5handler?5id?$AA@ 00500e80 kidspace.obj - 0004:00002e90 ??_C@_0BF@PJIH@bug?5in?5_mpgmsgmseEnd?$AA@ 00500e90 kidspace.obj - 0004:00002ea8 ??_C@_0BG@JAKL@invalid?5change?5in?5gms?$AA@ 00500ea8 kidspace.obj - 0004:00002ec0 ??_C@_0P@KOIA@bad?5gmse?5table?$AA@ 00500ec0 kidspace.obj - 0004:00002ed0 ??_C@_0M@HLCN@bad?5_gmsCur?$AA@ 00500ed0 kidspace.obj - 0004:00002edc ??_C@_0CB@OJOM@Couldn?8t?5attach?5animation?5script@ 00500edc kidspace.obj - 0004:00002f00 ??_C@_0N@BHJG@no?5animation?$AA@ 00500f00 kidspace.obj - 0004:00002f10 ??_C@_0BA@EFJC@bad?5_mpgmsgmmpe?$AA@ 00500f10 kidspace.obj - 0004:00002f20 ??_C@_0CE@LKFG@Alarm?5sounding?5without?5an?5animat@ 00500f20 kidspace.obj - 0004:00002f44 ??_C@_0CC@DDLF@can?8t?5filter?5on?5?$CIcidNil?0?5hidNil?$CJ@ 00500f44 kidspace.obj - 0004:00002f68 ??_C@_0CF@BDIN@script?5doesn?8t?5exist?5?$CIfor?5filter@ 00500f68 kidspace.obj - 0004:00002f90 ??_C@_0BK@HMOH@cid?5and?5hid?5are?5both?5nil?$CB?$AA@ 00500f90 kidspace.obj - 0004:00002fac ??_C@_0BA@IAMN@unknown?5command?$AA@ 00500fac kidspace.obj - 0004:00002fbc ??_C@_0BG@PJOM@_cactDeferGorp?5is?5bad?$AA@ 00500fbc kidspace.obj - 0004:00002fd4 ??_C@_0BF@IIDH@_cactDeferSnd?5is?5bad?$AA@ 00500fd4 kidspace.obj - 0004:00002fec ??_C@_0CA@KEDA@shouldn?8t?5be?5tracking?5the?5mouse?$AA@ 00500fec kidspace.obj - 0004:0000300c ??_C@_0BN@NKF@should?5be?5tracking?5the?5mouse?$AA@ 0050100c kidspace.obj - 0004:0000302c ??_C@_0P@FBPA@Bad?5FILL?5chunk?$AA@ 0050102c kidspace.obj - 0004:0000303c ??_C@_0BN@CKFH@couldn?8t?5load?5indicated?5fill?$AA@ 0050103c kidspace.obj - 0004:0000305c ??_C@_0BO@MHHN@Couldn?8t?5load?5kidspace?5bitmap?$AA@ 0050105c kidspace.obj - 0004:0000307c ??_C@_0BM@JBHO@no?5child?5MBMP?5of?5TILE?5chunk?$AA@ 0050107c kidspace.obj - 0004:00003098 ??_C@_0P@OIGI@Bad?5TILE?5chunk?$AA@ 00501098 kidspace.obj - 0004:000030a8 ??_C@_0CD@CCOK@couldn?8t?5load?5indicated?5tile?5chu@ 005010a8 kidspace.obj - 0004:000030cc ??_C@_0BO@ILEJ@couldn?8t?5load?5indicated?5video?$AA@ 005010cc kidspace.obj - 0004:00003110 ??_C@_0BD@CADP@bad?5value?5of?5_pgob?$AA@ 00501110 screxeg.obj - 0004:00003124 ??_C@_0CM@PACN@Missing?5GOB?5for?5Stream?$CIGob?$HMThis?$CJ@ 00501124 screxeg.obj - 0004:00003150 ??_C@_0DG@IPN@Missing?5GOB?5for?5SetToolTipSource@ 00501150 screxeg.obj - 0004:00003188 ??_C@_0CP@EOAF@Missing?5GOB?5for?5SetNoSlip?$CIGob?$HMTh@ 00501188 screxeg.obj - 0004:000031b8 ??_C@_0DE@NBOP@Missing?5GOB?5for?5?$CIWidth?$HMHeight?$CJ?$CIG@ 005011b8 screxeg.obj - 0004:000031ec ??_C@_0CK@OFFJ@No?5GOK?5for?5PlaySound?$CIGob?$HMThis?$CJ?5?$CI@ 005011ec screxeg.obj - 0004:00003218 ??_C@_0BM@HPBB@Filtering?5failed?5?$CIgid?5?$DN?5?$CFd?$CJ?$AA@ 00501218 screxeg.obj - 0004:00003234 ??_C@_0DA@HJIB@Missing?5GOB?5for?5FilterCmds?$CIGob?$HMT@ 00501234 screxeg.obj - 0004:00003264 ??_C@_0CP@KHIA@Missing?5GOB?5for?5GotoFrame?$CIGob?$HMTh@ 00501264 screxeg.obj - 0004:00003294 ??_C@_0DB@CHJG@Missing?5GOB?5for?5CountFrames?$CIGob?$HM@ 00501294 screxeg.obj - 0004:000032c8 ??_C@_0CP@CLHO@Missing?5GOB?5for?5?$CICurFrame?$CIGob?$HMTh@ 005012c8 screxeg.obj - 0004:000032f8 ??_C@_0CK@MNKK@Missing?5GOB?5for?5Stop?$CIGob?$HMThis?$CJ?5?$CI@ 005012f8 screxeg.obj - 0004:00003324 ??_C@_0CN@GAPO@Missing?5GOB?5for?5Playing?$CIGob?$HMThis@ 00501324 screxeg.obj - 0004:00003354 ??_C@_0CK@MPCH@Missing?5GOB?5for?5Play?$CIGob?$HMThis?$CJ?5?$CI@ 00501354 screxeg.obj - 0004:00003380 ??_C@_0CF@LGAJ@SetProp?5failed?5?$CIprid?5?$DN?5?$CFd?0?5val?5?$DN@ 00501380 screxeg.obj - 0004:000033a8 ??_C@_0BL@NLIA@GetProp?5failed?5?$CIprid?5?$DN?5?$CFd?$CJ?$AA@ 005013a8 screxeg.obj - 0004:000033c4 ??_C@_0CJ@EINF@Missing?5GOB?5for?5Cell?$FLNoPause?$FN?5?$CIg@ 005013c4 screxeg.obj - 0004:000033f0 ??_C@_0CK@EFMM@Missing?5GOB?5for?5SetZ?$CIGob?$HMThis?$CJ?5?$CI@ 005013f0 screxeg.obj - 0004:0000341c ??_C@_0CH@LPFN@Missing?5GOB?5for?5Z?$CIGob?$HMThis?$CJ?5?$CIgid@ 0050141c screxeg.obj - 0004:00003444 ??_C@_0CL@DGMM@Missing?5GOB?5for?5?$CIX?$HMY?$CJ?$CIGob?$HMThis?$CJ?5@ 00501444 screxeg.obj - 0004:00003470 ??_C@_0DA@PMKD@Missing?5GOB?5for?5?$CIX?$HMY?$CJMouse?$CIGob?$HMT@ 00501470 screxeg.obj - 0004:000034a0 ??_C@_0CA@POHE@Setting?5Alarm?5failed?5?$CIhid?5?$DN?5?$CFd?$CJ?$AA@ 005014a0 screxeg.obj - 0004:000034c0 ??_C@_0CF@MAAJ@Missing?5clock?5for?5TimeCur?5?$CIhid?5?$DN@ 005014c0 screxeg.obj - 0004:000034e8 ??_C@_0CH@GOKA@Missing?5clock?5for?5StopClock?5?$CIhid@ 005014e8 screxeg.obj - 0004:00003510 ??_C@_0CI@FMBP@Missing?5clock?5for?5StartClock?5?$CIhi@ 00501510 screxeg.obj - 0004:00003538 ??_C@_0DJ@EFN@Clock?5already?5exists?5?9?5increment@ 00501538 screxeg.obj - 0004:00003574 ??_C@_0CL@BNGO@Missing?5GOB?5for?5State?$CIGob?$HMThis?$CJ?5@ 00501574 screxeg.obj - 0004:000035a0 ??_C@_0CM@JDCE@Missing?5GOB?5for?5SetRep?$CIGob?$HMThis?$CJ@ 005015a0 screxeg.obj - 0004:000035cc ??_C@_0DA@KBPE@Missing?5GOB?5for?5SetPicture?$CIGob?$HMT@ 005015cc screxeg.obj - 0004:000035fc ??_C@_0CN@GOMK@Missing?5GOB?5for?5Animate?$CIGob?$HMThis@ 005015fc screxeg.obj - 0004:0000362c ??_C@_0FB@MPEJ@Missing?5GOB?5or?5state?5out?5of?5rang@ 0050162c screxeg.obj - 0004:00003680 ??_C@_0CO@LBBK@Running?5script?5failed?5?$CIchid?5?$DN?50x@ 00501680 screxeg.obj - 0004:000036b0 ??_C@_0DE@IPBI@Missing?5GOB?5for?5RunScript?$FLCno?$FN?$CIG@ 005016b0 screxeg.obj - 0004:000036e4 ??_C@_0BN@OIKC@OOM?5attempting?5to?5run?5script?$AA@ 005016e4 screxeg.obj - 0004:00003704 ??_C@_0CN@LKBD@Missing?5GOB?5for?5MoveAbs?$CIGob?$HMThis@ 00501704 screxeg.obj - 0004:00003734 ??_C@_0CN@PAHI@Missing?5GOB?5for?5MoveRel?$CIGob?$HMThis@ 00501734 screxeg.obj - 0004:00003764 ??_C@_0CM@MLLE@Missing?5GOB?5for?5Resize?$CIGob?$HMThis?$CJ@ 00501764 screxeg.obj - 0004:00003790 ??_C@_0DH@IKED@Missing?5parent?5GOB?5for?5CreateHel@ 00501790 screxeg.obj - 0004:000037c8 ??_C@_0DI@LPKH@Missing?5parent?5GOB?5for?5CreateChi@ 005017c8 screxeg.obj - 0004:00003800 ??_C@_0DB@FFLM@Can?8t?5Destroy?5WOKS?5?9?5destroying?5@ 00501800 screxeg.obj - 0004:00003834 ??_C@_0L@JBFE@?$CFd?5?$CI0x?$CFx?$CJ?5?$AA@ 00501834 screxeg.obj - 0004:00003840 ??_C@_0CC@ONHO@Script?5Message?5?$CI?8?$CFf?8?0?50x?$CFx?0?5?$CFd?$CJ?3@ 00501840 screxeg.obj - 0004:00003864 ??_C@_0DC@IGPJ@Missing?5edit?5control?5for?5?$CIGet?$HMSe@ 00501864 screxeg.obj - 0004:00003898 ??_C@_0CG@MCBB@String?5missing?5for?5Launch?5?$CIstid?5@ 00501898 screxeg.obj - 0004:000038e0 ?_rgszopSccg@@3QAUSZOP@@A 005018e0 scrcomg.obj - 0004:00003c90 ?_rgaropSccg@@3QAUAROP@@A 00501c90 scrcomg.obj - 0004:000047a0 ??_C@_0N@MHJO@PrintStrStat?$AA@ 005027a0 scrcomg.obj - 0004:000047b0 ??_C@_09FJBA@PrintStat?$AA@ 005027b0 scrcomg.obj - 0004:000047bc ??_C@_0L@EOIP@StreamThis?$AA@ 005027bc scrcomg.obj - 0004:000047c8 ??_C@_09HLFA@StreamGob?$AA@ 005027c8 scrcomg.obj - 0004:000047d4 ??_C@_0BA@BIPK@FlushUserEvents?$AA@ 005027d4 scrcomg.obj - 0004:000047e4 ??_C@_09JJPB@ModalHelp?$AA@ 005027e4 scrcomg.obj - 0004:000047f0 ??_C@_0N@DCCE@SetAlarmThis?$AA@ 005027f0 scrcomg.obj - 0004:00004800 ??_C@_0M@NALO@SetAlarmGob?$AA@ 00502800 scrcomg.obj - 0004:0000480c ??_C@_0BF@NFFN@SetToolTipSourceThis?$AA@ 0050280c scrcomg.obj - 0004:00004824 ??_C@_0BE@KJIP@SetToolTipSourceGob?$AA@ 00502824 scrcomg.obj - 0004:00004838 ??_C@_09MGPK@EndLongOp?$AA@ 00502838 scrcomg.obj - 0004:00004844 ??_C@_0M@HDMI@StartLongOp?$AA@ 00502844 scrcomg.obj - 0004:00004850 ??_C@_0BA@PADJ@GetMasterVolume?$AA@ 00502850 scrcomg.obj - 0004:00004860 ??_C@_0BA@NALN@SetMasterVolume?$AA@ 00502860 scrcomg.obj - 0004:00004870 ??_C@_08EKJJ@PrintStr?$AA@ 00502870 scrcomg.obj - 0004:0000487c ??_C@_05KGMP@Print?$AA@ 0050287c scrcomg.obj - 0004:00004884 ??_C@_0O@CNH@FIsDescendent?$AA@ 00502884 scrcomg.obj - 0004:00004894 ??_C@_0O@MGAI@SetNoSlipThis?$AA@ 00502894 scrcomg.obj - 0004:000048a4 ??_C@_0N@PMGO@SetNoSlipGob?$AA@ 005028a4 scrcomg.obj - 0004:000048b4 ??_C@_0L@GHAL@HeightThis?$AA@ 005028b4 scrcomg.obj - 0004:000048c0 ??_C@_09PPGJ@HeightGob?$AA@ 005028c0 scrcomg.obj - 0004:000048cc ??_C@_09FBEL@WidthThis?$AA@ 005028cc scrcomg.obj - 0004:000048d8 ??_C@_08LPLG@WidthGob?$AA@ 005028d8 scrcomg.obj - 0004:000048e4 ??_C@_0BB@OEC@RunScriptCnoThis?$AA@ 005028e4 scrcomg.obj - 0004:000048f8 ??_C@_0BA@LGEH@RunScriptCnoGob?$AA@ 005028f8 scrcomg.obj - 0004:00004908 ??_C@_0BD@KHLA@PlayMouseSoundThis?$AA@ 00502908 scrcomg.obj - 0004:0000491c ??_C@_0BC@EENC@PlayMouseSoundGob?$AA@ 0050291c scrcomg.obj - 0004:00004930 ??_C@_0BB@HGPP@ResumeSoundClass?$AA@ 00502930 scrcomg.obj - 0004:00004944 ??_C@_0M@GKDM@ResumeSound?$AA@ 00502944 scrcomg.obj - 0004:00004950 ??_C@_0BA@HHOB@PauseSoundClass?$AA@ 00502950 scrcomg.obj - 0004:00004960 ??_C@_0L@NKBB@PauseSound?$AA@ 00502960 scrcomg.obj - 0004:0000496c ??_C@_0BC@CBPJ@PlayingSoundClass?$AA@ 0050296c scrcomg.obj - 0004:00004980 ??_C@_0N@OGM@PlayingSound?$AA@ 00502980 scrcomg.obj - 0004:00004990 ??_C@_0P@FBO@StopSoundClass?$AA@ 00502990 scrcomg.obj - 0004:000049a0 ??_C@_09MJBN@StopSound?$AA@ 005029a0 scrcomg.obj - 0004:000049ac ??_C@_0N@ELOA@PlaySoundGob?$AA@ 005029ac scrcomg.obj - 0004:000049bc ??_C@_0O@DNLP@PlaySoundThis?$AA@ 005029bc scrcomg.obj - 0004:000049cc ??_C@_0BE@LKGN@DestroyChildrenThis?$AA@ 005029cc scrcomg.obj - 0004:000049e0 ??_C@_0BD@JJKG@DestroyChildrenGob?$AA@ 005029e0 scrcomg.obj - 0004:000049f4 ??_C@_0P@MKFJ@FilterCmdsThis?$AA@ 005029f4 scrcomg.obj - 0004:00004a04 ??_C@_0O@KNPC@FilterCmdsGob?$AA@ 00502a04 scrcomg.obj - 0004:00004a14 ??_C@_0O@BGJA@GotoFrameThis?$AA@ 00502a14 scrcomg.obj - 0004:00004a24 ??_C@_0N@GEGG@GotoFrameGob?$AA@ 00502a24 scrcomg.obj - 0004:00004a34 ??_C@_0BA@OGKJ@CountFramesThis?$AA@ 00502a34 scrcomg.obj - 0004:00004a44 ??_C@_0P@FNML@CountFramesGob?$AA@ 00502a44 scrcomg.obj - 0004:00004a54 ??_C@_0N@EGDG@CurFrameThis?$AA@ 00502a54 scrcomg.obj - 0004:00004a64 ??_C@_0M@MCIA@CurFrameGob?$AA@ 00502a64 scrcomg.obj - 0004:00004a70 ??_C@_08FNOO@StopThis?$AA@ 00502a70 scrcomg.obj - 0004:00004a7c ??_C@_07BKPI@StopGob?$AA@ 00502a7c scrcomg.obj - 0004:00004a84 ??_C@_0M@CMKE@PlayingThis?$AA@ 00502a84 scrcomg.obj - 0004:00004a90 ??_C@_0L@FAND@PlayingGob?$AA@ 00502a90 scrcomg.obj - 0004:00004a9c ??_C@_08GJKE@PlayThis?$AA@ 00502a9c scrcomg.obj - 0004:00004aa8 ??_C@_07FAHC@PlayGob?$AA@ 00502aa8 scrcomg.obj - 0004:00004ab0 ??_C@_06HJIC@Launch?$AA@ 00502ab0 scrcomg.obj - 0004:00004ab8 ??_C@_07BJKF@SetProp?$AA@ 00502ab8 scrcomg.obj - 0004:00004ac0 ??_C@_07EKKJ@GetProp?$AA@ 00502ac0 scrcomg.obj - 0004:00004ac8 ??_C@_08ICLP@AlertStr?$AA@ 00502ac8 scrcomg.obj - 0004:00004ad4 ??_C@_07OMCA@SetEdit?$AA@ 00502ad4 scrcomg.obj - 0004:00004adc ??_C@_07LPCM@GetEdit?$AA@ 00502adc scrcomg.obj - 0004:00004ae4 ??_C@_0L@LCIG@Transition?$AA@ 00502ae4 scrcomg.obj - 0004:00004af0 ??_C@_0P@NHOA@CreateHelpThis?$AA@ 00502af0 scrcomg.obj - 0004:00004b00 ??_C@_0O@BENB@CreateHelpGob?$AA@ 00502b00 scrcomg.obj - 0004:00004b10 ??_C@_0BE@LEMJ@ChangeModifierState?$AA@ 00502b10 scrcomg.obj - 0004:00004b24 ??_C@_0BB@BAEK@GetModifierState?$AA@ 00502b24 scrcomg.obj - 0004:00004b38 ??_C@_0M@NBPF@CellNoPause?$AA@ 00502b38 scrcomg.obj - 0004:00004b44 ??_C@_04HPIN@Cell?$AA@ 00502b44 scrcomg.obj - 0004:00004b4c ??_C@_0O@OJNG@SetColorTable?$AA@ 00502b4c scrcomg.obj - 0004:00004b5c ??_C@_08JGAI@SetZThis?$AA@ 00502b5c scrcomg.obj - 0004:00004b68 ??_C@_07PMDM@SetZGob?$AA@ 00502b68 scrcomg.obj - 0004:00004b70 ??_C@_05PEKH@ZThis?$AA@ 00502b70 scrcomg.obj - 0004:00004b78 ??_C@_04FDKD@ZGob?$AA@ 00502b78 scrcomg.obj - 0004:00004b80 ??_C@_05BEMI@YThis?$AA@ 00502b80 scrcomg.obj - 0004:00004b88 ??_C@_04DMFF@YGob?$AA@ 00502b88 scrcomg.obj - 0004:00004b90 ??_C@_05LEON@XThis?$AA@ 00502b90 scrcomg.obj - 0004:00004b98 ??_C@_04BJAH@XGob?$AA@ 00502b98 scrcomg.obj - 0004:00004ba0 ??_C@_09MBMH@GidUnique?$AA@ 00502ba0 scrcomg.obj - 0004:00004bac ??_C@_0L@KAKM@YMouseThis?$AA@ 00502bac scrcomg.obj - 0004:00004bb8 ??_C@_09FIFJ@YMouseGob?$AA@ 00502bb8 scrcomg.obj - 0004:00004bc4 ??_C@_0L@CPGO@XMouseThis?$AA@ 00502bc4 scrcomg.obj - 0004:00004bd0 ??_C@_09JKBB@XMouseGob?$AA@ 00502bd0 scrcomg.obj - 0004:00004bdc ??_C@_0L@JPOL@SetRepThis?$AA@ 00502bdc scrcomg.obj - 0004:00004be8 ??_C@_09BPLC@SetRepGob?$AA@ 00502be8 scrcomg.obj - 0004:00004bf4 ??_C@_0P@MKCE@SetPictureThis?$AA@ 00502bf4 scrcomg.obj - 0004:00004c04 ??_C@_0O@NACO@SetPictureGob?$AA@ 00502c04 scrcomg.obj - 0004:00004c14 ??_C@_0M@CJOF@AnimateThis?$AA@ 00502c14 scrcomg.obj - 0004:00004c20 ??_C@_0L@BBEN@AnimateGob?$AA@ 00502c20 scrcomg.obj - 0004:00004c2c ??_C@_0BA@IJPG@ChangeStateThis?$AA@ 00502c2c scrcomg.obj - 0004:00004c3c ??_C@_0P@CCO@ChangeStateGob?$AA@ 00502c3c scrcomg.obj - 0004:00004c4c ??_C@_09EGDL@StateThis?$AA@ 00502c4c scrcomg.obj - 0004:00004c58 ??_C@_08MPJC@StateGob?$AA@ 00502c58 scrcomg.obj - 0004:00004c64 ??_C@_0O@HCMF@RunScriptThis?$AA@ 00502c64 scrcomg.obj - 0004:00004c74 ??_C@_0N@DBLM@RunScriptGob?$AA@ 00502c74 scrcomg.obj - 0004:00004c84 ??_C@_05PJFK@Alert?$AA@ 00502c84 scrcomg.obj - 0004:00004c8c ??_C@_0L@EGFM@EnqueueCid?$AA@ 00502c8c scrcomg.obj - 0004:00004c98 ??_C@_08IEPA@SetAlarm?$AA@ 00502c98 scrcomg.obj - 0004:00004ca4 ??_C@_07FBMA@TimeCur?$AA@ 00502ca4 scrcomg.obj - 0004:00004cac ??_C@_09EJEF@StopClock?$AA@ 00502cac scrcomg.obj - 0004:00004cb8 ??_C@_0L@GGIB@StartClock?$AA@ 00502cb8 scrcomg.obj - 0004:00004cc4 ??_C@_0N@NMPG@DestroyClock?$AA@ 00502cc4 scrcomg.obj - 0004:00004cd4 ??_C@_0M@EDHP@CreateClock?$AA@ 00502cd4 scrcomg.obj - 0004:00004ce0 ??_C@_0L@DKEP@FGobExists?$AA@ 00502ce0 scrcomg.obj - 0004:00004cec ??_C@_08KBMA@GidChild?$AA@ 00502cec scrcomg.obj - 0004:00004cf8 ??_C@_0L@OONC@GidPrevSib?$AA@ 00502cf8 scrcomg.obj - 0004:00004d04 ??_C@_0L@EPFB@GidNextSib?$AA@ 00502d04 scrcomg.obj - 0004:00004d10 ??_C@_0L@IOKP@GidParThis?$AA@ 00502d10 scrcomg.obj - 0004:00004d1c ??_C@_09FLPF@GidParGob?$AA@ 00502d1c scrcomg.obj - 0004:00004d28 ??_C@_07LLIB@GidThis?$AA@ 00502d28 scrcomg.obj - 0004:00004d30 ??_C@_0M@FHNF@MoveAbsThis?$AA@ 00502d30 scrcomg.obj - 0004:00004d3c ??_C@_0L@CBKE@MoveAbsGob?$AA@ 00502d3c scrcomg.obj - 0004:00004d48 ??_C@_0M@EGNE@MoveRelThis?$AA@ 00502d48 scrcomg.obj - 0004:00004d54 ??_C@_0L@CALD@MoveRelGob?$AA@ 00502d54 scrcomg.obj - 0004:00004d60 ??_C@_0L@OJJL@ResizeThis?$AA@ 00502d60 scrcomg.obj - 0004:00004d6c ??_C@_09GPEL@ResizeGob?$AA@ 00502d6c scrcomg.obj - 0004:00004d78 ??_C@_0M@OOAM@DestroyThis?$AA@ 00502d78 scrcomg.obj - 0004:00004d84 ??_C@_0L@PILG@DestroyGob?$AA@ 00502d84 scrcomg.obj - 0004:00004d90 ??_C@_0BA@JGPN@CreateChildThis?$AA@ 00502d90 scrcomg.obj - 0004:00004da0 ??_C@_0P@JDJ@CreateChildGob?$AA@ 00502da0 scrcomg.obj - 0004:00004dd0 ??_C@_0CB@JELN@Can?8t?5do?5a?5normal?5save?5?9?5no?5file@ 00502dd0 textdoc.obj - 0004:00004df4 ??_C@_0CK@MBJC@why?5is?5the?5sel?5on?5during?5an?5inva@ 00502df4 textdoc.obj - 0004:00004e3c ?_cactLast@DOCB@@1JA 00502e3c docb.obj - 0004:00004e40 ?_pdocbFirst@DOCB@@1PAV1@A 00502e40 docb.obj - 0004:00004e48 ?_cmmDDG@DDG@@1UCMM@CMH@@A 00502e48 docb.obj - 0004:00004e50 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 00502e50 docb.obj - 0004:00004f20 ?_cmmDSG@DSG@@1UCMM@CMH@@A 00502f20 docb.obj - 0004:00004f28 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 00502f28 docb.obj - 0004:00004f58 ??_C@_0CE@BPAB@why?5wasn?8t?5this?5child?5doc?5releas@ 00502f58 docb.obj - 0004:00004f7c ??_C@_0CI@EBJI@we?8re?5recursing?5into?5the?5DOCB?3?3R@ 00502f7c docb.obj - 0004:00004fa4 ??_C@_0CN@JCIE@why?5are?5there?5still?5DDG?8s?5open?5o@ 00502fa4 docb.obj - 0004:00004fd4 ??_C@_0BC@HEOH@corrupt?5docb?5tree?$AA@ 00502fd4 docb.obj - 0004:00004fe8 ??_C@_0CG@LHOP@The?5clipboard?5document?5is?5going?5@ 00502fe8 docb.obj - 0004:00005010 ??_C@_0CJ@OGCN@doc?5is?5still?5being?5displayed?5by?5@ 00503010 docb.obj - 0004:0000503c ??_C@_0BI@KGKL@docb?5still?5has?5children?$AA@ 0050303c docb.obj - 0004:00005054 ??_C@_0BK@DGAM@Release?5not?5called?5first?$CB?$AA@ 00503054 docb.obj - 0004:00005070 ??_C@_0DF@HACK@why?5are?5there?5no?5DDGs?5for?5this?5d@ 00503070 docb.obj - 0004:000050a8 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 005030a8 docb.obj - 0004:000050b8 ??_C@_0BI@KKOJ@pddg?5not?5in?5docb?8s?5list?$AA@ 005030b8 docb.obj - 0004:000050d0 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 005030d0 docb.obj - 0004:000050dc ??_C@_09IDMC@Clipboard?$AA@ 005030dc docb.obj - 0004:000050e8 ??_C@_0BP@ELKC@unhandled?5cid?5in?5FEnableDdgCmd?$AA@ 005030e8 docb.obj - 0004:00005108 ??_C@_0CF@MEK@we?8re?5recursing?5into?5the?5destruc@ 00503108 docb.obj - 0004:00005130 ??_C@_0CA@OKAI@the?5DSG?5wasn?8t?5added?5to?5the?5DMW?$AA@ 00503130 docb.obj - 0004:00005150 ??_C@_0BF@HMHJ@DSED?5tree?5is?5trashed?$AA@ 00503150 docb.obj - 0004:00005168 ??_C@_0BC@CHBK@corrupt?5DSED?5tree?$AA@ 00503168 docb.obj - 0004:0000517c ??_C@_0O@MJPM@DSED?5tree?5bad?$AA@ 0050317c docb.obj - 0004:0000518c ??_C@_0CC@BIDP@pdsgSplit?5is?5not?5a?5registered?5DS@ 0050318c docb.obj - 0004:000051b0 ??_C@_0CA@BLAJ@no?5DSGs?5yet?0?5so?5can?8t?5split?5one?$AA@ 005031b0 docb.obj - 0004:000051d0 ??_C@_0BG@IHEB@DSED?5root?5value?5wrong?$AA@ 005031d0 docb.obj - 0004:000051e8 ??_C@_0P@LHMI@bad?5root?5value?$AA@ 005031e8 docb.obj - 0004:000051f8 ??_C@_0O@KHGM@bad?5DSED?5tree?$AA@ 005031f8 docb.obj - 0004:00005208 ??_C@_08HJOC@bad?5node?$AA@ 00503208 docb.obj - 0004:00005214 ??_C@_0BH@HFEJ@node?5should?5have?5a?5dsg?$AA@ 00503214 docb.obj - 0004:0000522c ??_C@_0BN@JMDO@nil?5parent?5but?5not?5the?5root?$CB?$AA@ 0050322c docb.obj - 0004:0000524c ??_C@_0BF@EMHD@split?5can?8t?5be?5moved?$AA@ 0050324c docb.obj - 0004:00005264 ??_C@_0BB@FBIP@node?5count?5wrong?$AA@ 00503264 docb.obj - 0004:00005278 ??_C@_0BC@GHEO@idsedRight?5is?5nil?$AA@ 00503278 docb.obj - 0004:0000528c ??_C@_08GBPF@bad?5edge?$AA@ 0050328c docb.obj - 0004:00005298 ??_C@_0CD@NKGA@dsed?5tree?5is?5mangled?5or?5has?5a?5lo@ 00503298 docb.obj - 0004:000052bc ??_C@_0BO@EEIG@right?5child?8s?5parent?5is?5wrong?$AA@ 005032bc docb.obj - 0004:000052dc ??_C@_0BN@JDOP@left?5child?8s?5parent?5is?5wrong?$AA@ 005032dc docb.obj - 0004:000052fc ??_C@_0BC@HGNB@nil?5pdsg?5expected?$AA@ 005032fc docb.obj - 0004:00005310 ??_C@_0BC@EGIE@free?5right?5child?$CB?$AA@ 00503310 docb.obj - 0004:00005324 ??_C@_0BL@FCAG@non?9nil?5left?5but?5nil?5right?$AA@ 00503324 docb.obj - 0004:00005340 ??_C@_0BB@POPH@free?5left?5child?$CB?$AA@ 00503340 docb.obj - 0004:00005354 ??_C@_0BB@BEEP@bad?5_dsno?5in?5DSG?$AA@ 00503354 docb.obj - 0004:00005368 ??_C@_0BI@HFOK@left?5nil?0?5but?5right?5not?$AA@ 00503368 docb.obj - 0004:00005380 ??_C@_0BK@PKFL@dsed?4idsedPar?5isn?8t?5right?$AA@ 00503380 docb.obj - 0004:0000539c ??_C@_0L@MEPF@free?5node?$CB?$AA@ 0050339c docb.obj - 0004:000053a8 ??_C@_0BP@NDI@some?5DSEDs?0?5but?5nil?5_idsedRoot?$AA@ 005033a8 docb.obj - 0004:000053c8 ??_C@_0CC@NHIN@no?5paldsed?5but?5_idsedRoot?5not?5ni@ 005033c8 docb.obj - 0004:000053ec ??_C@_0BL@OHLG@must?5split?5an?5existing?5DSG?$AA@ 005033ec docb.obj - 0004:00005408 ??_C@_0CI@PJOP@why?5are?5we?5splitting?5an?5unattach@ 00503408 docb.obj - 0004:00005430 ??_C@_0DC@CLKB@must?5specify?5exactly?5one?5of?5?$CIfds@ 00503430 docb.obj - 0004:00005484 ??_C@_0DI@KPOC@can?8t?5change?5the?5clipboard?5while@ 00503484 clip.obj - 0004:000054bc ??_C@_0DI@JOCL@can?8t?5import?5the?5clipboard?5while@ 005034bc clip.obj - 0004:000054f4 ??_C@_0BP@ELFF@Already?5exporting?5or?5importing?$AA@ 005034f4 clip.obj - 0004:00005514 ??_C@_0O@KBJ@not?5exporting?$AA@ 00503514 clip.obj - 0004:00005524 ??_C@_0BO@NMNE@both?5importing?5and?5exporting?$CB?$AA@ 00503524 clip.obj - 0004:00005568 ?_mpertpsz@@3QAPADA 00503568 chcm.obj - 0004:00005778 ??_C@_07KLIJ@SUBFILE?$AA@ 00503778 chcm.obj - 0004:00005780 ??_C@_07NFID@PACKFMT?$AA@ 00503780 chcm.obj - 0004:00005788 ??_C@_04EJID@PACK?$AA@ 00503788 chcm.obj - 0004:00005790 ??_C@_09DECH@PREPACKED?$AA@ 00503790 chcm.obj - 0004:0000579c ??_C@_07ONI@PALETTE?$AA@ 0050379c chcm.obj - 0004:000057a4 ??_C@_06MDJJ@CURSOR?$AA@ 005037a4 chcm.obj - 0004:000057ac ??_C@_05EKBD@LONER?$AA@ 005037ac chcm.obj - 0004:000057b4 ??_C@_06INIF@WINOSK?$AA@ 005037b4 chcm.obj - 0004:000057bc ??_C@_06MKGG@MACOSK?$AA@ 005037bc chcm.obj - 0004:000057c4 ??_C@_05OKLJ@WINBO?$AA@ 005037c4 chcm.obj - 0004:000057cc ??_C@_05JOF@MACBO?$AA@ 005037cc chcm.obj - 0004:000057d4 ??_C@_03IKKD@AST?$AA@ 005037d4 chcm.obj - 0004:000057d8 ??_C@_03GGNE@GST?$AA@ 005037d8 chcm.obj - 0004:000057dc ??_C@_02EMCK@AG?$AA@ 005037dc chcm.obj - 0004:000057e0 ??_C@_02DLNF@GG?$AA@ 005037e0 chcm.obj - 0004:000057e4 ??_C@_02OHCL@AL?$AA@ 005037e4 chcm.obj - 0004:000057e8 ??_C@_02JANE@GL?$AA@ 005037e8 chcm.obj - 0004:000057ec ??_C@_08EBHJ@SCRIPTPF?$AA@ 005037ec chcm.obj - 0004:000057f8 ??_C@_06PDJ@SCRIPT?$AA@ 005037f8 chcm.obj - 0004:00005800 ??_C@_04CCOG@MIDI?$AA@ 00503800 chcm.obj - 0004:00005808 ??_C@_04OMIB@MASK?$AA@ 00503808 chcm.obj - 0004:00005810 ??_C@_06MABC@BITMAP?$AA@ 00503810 chcm.obj - 0004:00005818 ??_C@_04MEBI@META?$AA@ 00503818 chcm.obj - 0004:00005820 ??_C@_0L@CDIA@PACKEDFILE?$AA@ 00503820 chcm.obj - 0004:0000582c ??_C@_04CMDA@FILE?$AA@ 0050382c chcm.obj - 0004:00005834 ??_C@_05MANP@ALIGN?$AA@ 00503834 chcm.obj - 0004:0000583c ??_C@_02FNBP@ST?$AA@ 0050383c chcm.obj - 0004:00005840 ??_C@_02PGNF@SZ?$AA@ 00503840 chcm.obj - 0004:00005844 ??_C@_03MFHL@STZ?$AA@ 00503844 chcm.obj - 0004:00005848 ??_C@_03MGFH@STN?$AA@ 00503848 chcm.obj - 0004:0000584c ??_C@_03FOEM@OSK?$AA@ 0050384c chcm.obj - 0004:00005850 ??_C@_02CDGN@BO?$AA@ 00503850 chcm.obj - 0004:00005854 ??_C@_06IBHO@PARENT?$AA@ 00503854 chcm.obj - 0004:0000585c ??_C@_05JKOA@CHILD?$AA@ 0050385c chcm.obj - 0004:00005864 ??_C@_05KFCC@ADOPT?$AA@ 00503864 chcm.obj - 0004:0000586c ??_C@_08CEGN@ENDCHUNK?$AA@ 0050386c chcm.obj - 0004:00005878 ??_C@_05EPGN@CHUNK?$AA@ 00503878 chcm.obj - 0004:00005880 ??_C@_04NIAI@LONG?$AA@ 00503880 chcm.obj - 0004:00005888 ??_C@_05HFLA@SHORT?$AA@ 00503888 chcm.obj - 0004:00005890 ??_C@_04EHOP@BYTE?$AA@ 00503890 chcm.obj - 0004:00005898 ??_C@_03KNCG@VAR?$AA@ 00503898 chcm.obj - 0004:0000589c ??_C@_04MICK@FREE?$AA@ 0050389c chcm.obj - 0004:000058a4 ??_C@_04KAML@ITEM?$AA@ 005038a4 chcm.obj - 0004:000058ac ??_C@_0BF@FCDC@Unterminated?5SUBFILE?$AA@ 005038ac chcm.obj - 0004:000058c4 ??_C@_0CD@MIGA@Illegal?5LONER?5primitive?5in?5SUBFI@ 005038c4 chcm.obj - 0004:000058e8 ??_C@_0BA@OENL@Bad?5pack?5format?$AA@ 005038e8 chcm.obj - 0004:000058f8 ??_C@_0BP@HBGD@Can?8t?5read?5the?5given?5midi?5file?$AA@ 005038f8 chcm.obj - 0004:00005918 ??_C@_0CH@DCDA@Can?8t?5read?5given?5file?5as?5a?5packe@ 00503918 chcm.obj - 0004:00005940 ??_C@_0CB@OGLB@Can?8t?5read?5the?5given?5cursor?5file@ 00503940 chcm.obj - 0004:00005964 ??_C@_0CA@COAM@Disassembling?5the?5script?5failed?$AA@ 00503964 chcm.obj - 0004:00005984 ??_C@_0CB@PHFL@Can?8t?5read?5the?5given?5bitmap?5file@ 00503984 chcm.obj - 0004:000059a8 ??_C@_0BL@NGMF@Invalid?5BITMAP?5declaration?$AA@ 005039a8 chcm.obj - 0004:000059c4 ??_C@_0BL@MIBG@CHUNK?5declaration?5expected?$AA@ 005039c4 chcm.obj - 0004:000059e0 ??_C@_0BK@BJNH@Invalid?5ADOPT?5declaration?$AA@ 005039e0 chcm.obj - 0004:000059fc ??_C@_0BK@LGLK@Script?5compilation?5failed?$AA@ 005039fc chcm.obj - 0004:00005a18 ??_C@_0CJ@BDGC@Invalid?5size?5for?5extra?5string?5ta@ 00503a18 chcm.obj - 0004:00005a44 ??_C@_0BP@EPKP@Invalid?5GST?5or?5AST?5declaration?$AA@ 00503a44 chcm.obj - 0004:00005a64 ??_C@_0CC@MMMG@Invalid?5size?5for?5fixed?5group?5dat@ 00503a64 chcm.obj - 0004:00005a88 ??_C@_0BN@NAAD@Invalid?5GG?5or?5AG?5declaration?$AA@ 00503a88 chcm.obj - 0004:00005aa8 ??_C@_0N@GABD@Syntax?5error?$AA@ 00503aa8 chcm.obj - 0004:00005ab8 ??_C@_0CP@FPHB@Can?8t?5have?5a?5free?5item?5in?5a?5gene@ 00503ab8 chcm.obj - 0004:00005ae8 ??_C@_0BH@CCDO@Too?5much?5data?5for?5item?$AA@ 00503ae8 chcm.obj - 0004:00005b00 ??_C@_0BD@NFIH@Variable?5undefined?$AA@ 00503b00 chcm.obj - 0004:00005b14 ??_C@_0BO@CKHA@Invalid?5size?5for?5list?5entries?$AA@ 00503b14 chcm.obj - 0004:00005b34 ??_C@_0BN@FKEL@Invalid?5GL?5or?5AL?5declaration?$AA@ 00503b34 chcm.obj - 0004:00005b54 ??_C@_0BC@MHJG@ENDCHUNK?5expected?$AA@ 00503b54 chcm.obj - 0004:00005b68 ??_C@_0BD@PGNF@File?5name?5expected?$AA@ 00503b68 chcm.obj - 0004:00005b7c ??_C@_0CB@NFHA@Alignment?5parameter?5out?5of?5range@ 00503b7c chcm.obj - 0004:00005ba0 ??_C@_0BL@IICN@Parent?5chunk?5doesn?8t?5exist?$AA@ 00503ba0 chcm.obj - 0004:00005bbc ??_C@_0BL@PEGG@Invalid?5PARENT?5declaration?$AA@ 00503bbc chcm.obj - 0004:00005bd8 ??_C@_0CK@NBM@A?5cycle?5would?5be?5created?5by?5this@ 00503bd8 chcm.obj - 0004:00005c04 ??_C@_0BK@NJFM@Child?5chunk?5doesn?8t?5exist?$AA@ 00503c04 chcm.obj - 0004:00005c20 ??_C@_0BK@GHEM@Invalid?5CHILD?5declaration?$AA@ 00503c20 chcm.obj - 0004:00005c3c ??_C@_0BM@KDKG@Duplicate?5CHUNK?5declaration?$AA@ 00503c3c chcm.obj - 0004:00005c58 ??_C@_0BK@CPAG@Invalid?5CHUNK?5declaration?$AA@ 00503c58 chcm.obj - 0004:00005c74 ??_C@_0BP@HFHD@Close?5parenthesis?5?8?$CJ?8?5expected?$AA@ 00503c74 chcm.obj - 0004:00005c94 ??_C@_0BB@MJKM@Unexpected?5Token?$AA@ 00503c94 chcm.obj - 0004:00005ca8 ??_C@_0BH@JPMM@Numeric?5value?5expected?$AA@ 00503ca8 chcm.obj - 0004:00005cc0 ??_C@_0BA@BJOB@String?5expected?$AA@ 00503cc0 chcm.obj - 0004:00005cd0 ??_C@_0BH@LAAJ@Unexpected?5end?5of?5file?$AA@ 00503cd0 chcm.obj - 0004:00005ce8 ??_C@_0BO@OOPL@Open?5parenthesis?5?8?$CI?8?5expected?$AA@ 00503ce8 chcm.obj - 0004:00005d08 ??_C@_0CB@PIGB@Invalid?5data?5before?5atomic?5chunk@ 00503d08 chcm.obj - 0004:00005d2c ??_C@_0BO@BLMN@Number?5not?5in?5range?5for?5SHORT?$AA@ 00503d2c chcm.obj - 0004:00005d4c ??_C@_0BN@DKKO@Number?5not?5in?5range?5for?5BYTE?$AA@ 00503d4c chcm.obj - 0004:00005d6c ??_C@_0BO@KFJ@Can?8t?5read?5the?5given?5metafile?$AA@ 00503d6c chcm.obj - 0004:00005d8c ??_C@_0BK@CDBP@Can?8t?5open?5the?5given?5file?$AA@ 00503d8c chcm.obj - 0004:00005da8 ??_C@_0BK@HLHF@Internal?5allocation?5error?$AA@ 00503da8 chcm.obj - 0004:00005dc4 ??_C@_08KPMF@no?5error?$AA@ 00503dc4 chcm.obj - 0004:00005dd0 ??_C@_0BM@MNOP@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?5?3?5?$CFz?$AA@ 00503dd0 chcm.obj - 0004:00005dec ??_C@_0BH@DNDF@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?$AA@ 00503dec chcm.obj - 0004:00005e04 ??_C@_0BJ@KDB@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?5?3?5?$CFz?$AA@ 00503e04 chcm.obj - 0004:00005e20 ??_C@_0BE@IGCO@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?$AA@ 00503e20 chcm.obj - 0004:00005e34 ??_C@_0BH@IOMP@invalid?5numerical?5mode?$AA@ 00503e34 chcm.obj - 0004:00005e4c ??_C@_0BE@IMFE@Invalid?5string?5mode?$AA@ 00503e4c chcm.obj - 0004:00005e60 ??_C@_0CG@JPEH@legal?5range?5for?5alignment?5is?5?$CI?$CFd@ 00503e60 chcm.obj - 0004:00005e88 ??_C@_0BF@PEMH@why?5is?5block?5packed?$DP?$AA@ 00503e88 chcm.obj - 0004:00005ea0 ??_C@_0BO@MKFM@why?5did?5GL?5have?5free?5entries?$DP?$AA@ 00503ea0 chcm.obj - 0004:00005ec0 ??_C@_05JLFG@what?$DP?$AA@ 00503ec0 chcm.obj - 0004:00005ec8 ??_C@_0BO@BBKO@why?5did?5GG?5have?5free?5entries?$DP?$AA@ 00503ec8 chcm.obj - 0004:00005ee8 ??_C@_08LCPD@iv?5wrong?$AA@ 00503ee8 chcm.obj - 0004:00005ef4 ??_C@_0BP@JBND@why?5did?5GST?5have?5free?5entries?$DP?$AA@ 00503ef4 chcm.obj - 0004:00005f14 ??_C@_0BC@DAM@not?5a?5packed?5file?$AA@ 00503f14 chcm.obj - 0004:00005f28 ??_C@_0BA@LADO@bad?5packed?5file?$AA@ 00503f28 chcm.obj - 0004:00005f38 ??_C@_0BL@LHPK@FWriteChunkTree?5messed?5up?$CB?$AA@ 00503f38 chcm.obj - 0004:00005f54 ??_C@_08EBMK@Sub?5File?$AA@ 00503f54 chcm.obj - 0004:00005f60 ??_C@_06GELG@Script?$AA@ 00503f60 chcm.obj - 0004:00005f68 ??_C@_0N@KDOG@String?5Table?$AA@ 00503f68 chcm.obj - 0004:00005f78 ??_C@_05GGEJ@Group?$AA@ 00503f78 chcm.obj - 0004:00005f80 ??_C@_04DECM@List?$AA@ 00503f80 chcm.obj - 0004:00005f88 ??_C@_06KIBG@Cursor?$AA@ 00503f88 chcm.obj - 0004:00005f90 ??_C@_04OHIB@Midi?$AA@ 00503f90 chcm.obj - 0004:00005f98 ??_C@_07NBFD@Palette?$AA@ 00503f98 chcm.obj - 0004:00005fa0 ??_C@_06KLJN@Bitmap?$AA@ 00503fa0 chcm.obj - 0004:00005fa8 ??_C@_08PPBL@Metafile?$AA@ 00503fa8 chcm.obj - 0004:00005fb4 ??_C@_0M@CNM@Packed?5File?$AA@ 00503fb4 chcm.obj - 0004:00005fc0 ??_C@_0CG@PBKA@Too?5many?5errors?5?9?5compilation?5ab@ 00503fc0 chcm.obj - 0004:00005fe8 ??_C@_0CB@NPNL@Couldn?8t?5create?5destination?5file@ 00503fe8 chcm.obj - 0004:0000600c ??_C@_0P@NCJB@Memory?5failure?$AA@ 0050400c chcm.obj - 0004:0000601c ??_C@_03BCLC@SET?$AA@ 0050401c chcm.obj - 0004:00006020 ??_C@_07KDEJ@include?$AA@ 00504020 chcm.obj - 0004:00006048 ?_szPoundLine@@3QADA 00504048 lex.obj - 0004:00006050 ?_mpchgrfct@LEXB@@1QAGA 00504050 lex.obj - 0004:00006150 ?_rgtt@@3QAFA 00504150 lex.obj - 0004:00006210 ?_rgttDouble@@3QAFA 00504210 lex.obj - 0004:000062c0 ?_rgttEqual@@3QAFA 005042c0 lex.obj - 0004:00006378 ??_C@_0CO@JMMM@exactly?5one?5of?5_pfil?0?5_pbsf?5shou@ 00504378 lex.obj - 0004:000063a8 ??_C@_0CM@JMP@Error?5reading?5file?0?5truncating?5l@ 005043a8 lex.obj - 0004:000063d4 ??_C@_0BA@EJHI@bad?5table?5entry?$AA@ 005043d4 lex.obj - 0004:000063e4 ??_C@_09HHAD@bad?5grfct?$AA@ 005043e4 lex.obj - 0004:000063f0 ??_C@_0BD@GOAE@how?8d?5we?5get?5here?$DP?$AA@ 005043f0 lex.obj - 0004:00006404 ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 00504404 lex.obj - 0004:00006458 ??_C@_0BA@NDF@blck?5is?5too?5big?$AA@ 00504458 stream.obj - 0004:00006468 ??_C@_0BA@LNIE@cleanup?5failed?$CB?$AA@ 00504468 stream.obj - 0004:00006478 ??_C@_0CC@LBKJ@didn?8t?5insert?5the?5correct?5amount@ 00504478 stream.obj - 0004:0000649c ??_C@_09PGGB@why?5fail?$DP?$AA@ 0050449c stream.obj - 0004:000064a8 ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 005044a8 stream.obj - 0004:000064c0 ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 005044c0 stream.obj - 0004:000064cc ??_C@_08NKDG@wrong?5ib?$AA@ 005044cc stream.obj - 0004:000064d8 ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 005044d8 stream.obj - 0004:000064f4 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 005044f4 stream.obj - 0004:0000650c ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 0050450c stream.obj - 0004:00006528 ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 00504528 stream.obj - 0004:0000653c ??_C@_0BP@PMGM@wrong?5number?5of?5bytes?5written?$CB?$AA@ 0050453c stream.obj - 0004:0000655c ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 0050455c stream.obj - 0004:00006568 ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 00504568 stream.obj - 0004:00006580 ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 00504580 stream.obj - 0004:00006594 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 00504594 stream.obj - 0004:000065c8 ?_pszOom@@3PADA 005045c8 scrcom.obj - 0004:000065cc ?_pszSyntax@@3PADA 005045cc scrcom.obj - 0004:000065d0 ?_rgszop@@3QAUSZOP@@A 005045d0 scrcom.obj - 0004:000067b0 ?_rgarop@@3QAUAROP@@A 005047b0 scrcom.obj - 0004:00006a20 ?_rgpszKey@@3QAPADA 00504a20 scrcom.obj - 0004:00006a40 ?_rgtomeExp@@3QAUTOME@@A 00504a40 scrcom.obj - 0004:00006ca0 ?_rgtomeOp@@3QAUTOME@@A 00504ca0 scrcom.obj - 0004:00006d64 ??_C@_08HOLA@Continue?$AA@ 00504d64 scrcom.obj - 0004:00006d70 ??_C@_05EABD@Break?$AA@ 00504d70 scrcom.obj - 0004:00006d78 ??_C@_05NNJC@While?$AA@ 00504d78 scrcom.obj - 0004:00006d80 ??_C@_03HPMG@End?$AA@ 00504d80 scrcom.obj - 0004:00006d84 ??_C@_04CCEF@Else?$AA@ 00504d84 scrcom.obj - 0004:00006d8c ??_C@_04CPFE@Elif?$AA@ 00504d8c scrcom.obj - 0004:00006d94 ??_C@_02BAJ@If?$AA@ 00504d94 scrcom.obj - 0004:00006d98 ??_C@_04POBJ@Goto?$AA@ 00504d98 scrcom.obj - 0004:00006da0 ??_C@_06GDJA@IfGoto?$AA@ 00504da0 scrcom.obj - 0004:00006da8 ??_C@_0L@KPKB@CopySubStr?$AA@ 00504da8 scrcom.obj - 0004:00006db4 ??_C@_06KDAM@LenStr?$AA@ 00504db4 scrcom.obj - 0004:00006dbc ??_C@_0L@ICIJ@ConcatStrs?$AA@ 00504dbc scrcom.obj - 0004:00006dc8 ??_C@_08HOLI@StrToNum?$AA@ 00504dc8 scrcom.obj - 0004:00006dd4 ??_C@_08PBFD@NumToStr?$AA@ 00504dd4 scrcom.obj - 0004:00006de0 ??_C@_09JFKG@ScaleTime?$AA@ 00504de0 scrcom.obj - 0004:00006dec ??_C@_09KOLA@MergeStrs?$AA@ 00504dec scrcom.obj - 0004:00006df8 ??_C@_07MHIA@NukeStr?$AA@ 00504df8 scrcom.obj - 0004:00006e00 ??_C@_07ELLC@MoveStr?$AA@ 00504e00 scrcom.obj - 0004:00006e08 ??_C@_07PCEE@CopyStr?$AA@ 00504e08 scrcom.obj - 0004:00006e10 ??_C@_05PFIH@Pause?$AA@ 00504e10 scrcom.obj - 0004:00006e18 ??_C@_05LKIE@Match?$AA@ 00504e18 scrcom.obj - 0004:00006e20 ??_C@_08HGHE@NextCard?$AA@ 00504e20 scrcom.obj - 0004:00006e2c ??_C@_0M@GGGO@ShuffleList?$AA@ 00504e2c scrcom.obj - 0004:00006e38 ??_C@_07MFK@Shuffle?$AA@ 00504e38 scrcom.obj - 0004:00006e40 ??_C@_09CAHB@SetReturn?$AA@ 00504e40 scrcom.obj - 0004:00006e4c ??_C@_06JCBD@Return?$AA@ 00504e4c scrcom.obj - 0004:00006e54 ??_C@_04LKDK@Exit?$AA@ 00504e54 scrcom.obj - 0004:00006e5c ??_C@_02DNIN@Go?$AA@ 00504e5c scrcom.obj - 0004:00006e60 ??_C@_04HAFI@GoNz?$AA@ 00504e60 scrcom.obj - 0004:00006e68 ??_C@_03JNBL@GoZ?$AA@ 00504e68 scrcom.obj - 0004:00006e6c ??_C@_04PFCA@GoLe?$AA@ 00504e6c scrcom.obj - 0004:00006e74 ??_C@_04HLIL@GoGe?$AA@ 00504e74 scrcom.obj - 0004:00006e7c ??_C@_04PGMH@GoLt?$AA@ 00504e7c scrcom.obj - 0004:00006e84 ??_C@_04HIGM@GoGt?$AA@ 00504e84 scrcom.obj - 0004:00006e8c ??_C@_04NIHF@GoNe?$AA@ 00504e8c scrcom.obj - 0004:00006e94 ??_C@_04FFPC@GoEq?$AA@ 00504e94 scrcom.obj - 0004:00006e9c ??_C@_06ININ@Select?$AA@ 00504e9c scrcom.obj - 0004:00006ea4 ??_C@_07KEJC@RndList?$AA@ 00504ea4 scrcom.obj - 0004:00006eac ??_C@_07OONJ@PopList?$AA@ 00504eac scrcom.obj - 0004:00006eb4 ??_C@_07GBJG@DupList?$AA@ 00504eb4 scrcom.obj - 0004:00006ebc ??_C@_03JCDI@Rev?$AA@ 00504ebc scrcom.obj - 0004:00006ec0 ??_C@_03FPBH@Rot?$AA@ 00504ec0 scrcom.obj - 0004:00006ec4 ??_C@_04BCL@Swap?$AA@ 00504ec4 scrcom.obj - 0004:00006ecc ??_C@_03FBGG@Pop?$AA@ 00504ecc scrcom.obj - 0004:00006ed0 ??_C@_03MKPO@Dup?$AA@ 00504ed0 scrcom.obj - 0004:00006ed4 ??_C@_02LCLA@Le?$AA@ 00504ed4 scrcom.obj - 0004:00006ed8 ??_C@_02DMBL@Ge?$AA@ 00504ed8 scrcom.obj - 0004:00006edc ??_C@_02LBFH@Lt?$AA@ 00504edc scrcom.obj - 0004:00006ee0 ??_C@_02DPPM@Gt?$AA@ 00504ee0 scrcom.obj - 0004:00006ee4 ??_C@_02JPOF@Ne?$AA@ 00504ee4 scrcom.obj - 0004:00006ee8 ??_C@_02BCGC@Eq?$AA@ 00504ee8 scrcom.obj - 0004:00006eec ??_C@_04ENMP@LNot?$AA@ 00504eec scrcom.obj - 0004:00006ef4 ??_C@_04HPKA@LXor?$AA@ 00504ef4 scrcom.obj - 0004:00006efc ??_C@_04LILD@BNot?$AA@ 00504efc scrcom.obj - 0004:00006f04 ??_C@_04IKNM@BXor?$AA@ 00504f04 scrcom.obj - 0004:00006f0c ??_C@_03FEFN@BOr?$AA@ 00504f0c scrcom.obj - 0004:00006f10 ??_C@_04CJLN@BAnd?$AA@ 00504f10 scrcom.obj - 0004:00006f18 ??_C@_06NIPH@MulDiv?$AA@ 00504f18 scrcom.obj - 0004:00006f20 ??_C@_03OAMN@Rnd?$AA@ 00504f20 scrcom.obj - 0004:00006f24 ??_C@_03PGJO@Dec?$AA@ 00504f24 scrcom.obj - 0004:00006f28 ??_C@_03PCMM@Inc?$AA@ 00504f28 scrcom.obj - 0004:00006f2c ??_C@_03GIFK@Neg?$AA@ 00504f2c scrcom.obj - 0004:00006f30 ??_C@_03CEPH@Abs?$AA@ 00504f30 scrcom.obj - 0004:00006f34 ??_C@_03PJNJ@Mod?$AA@ 00504f34 scrcom.obj - 0004:00006f38 ??_C@_03LANL@Div?$AA@ 00504f38 scrcom.obj - 0004:00006f3c ??_C@_03FPMJ@Mul?$AA@ 00504f3c scrcom.obj - 0004:00006f40 ??_C@_03KJKL@Sub?$AA@ 00504f40 scrcom.obj - 0004:00006f44 ??_C@_03KPJN@Add?$AA@ 00504f44 scrcom.obj - 0004:00006f48 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 00504f48 scrcom.obj - 0004:00006f58 ??_C@_0BA@JIOM@Undefined?5label?$AA@ 00504f58 scrcom.obj - 0004:00006f68 ??_C@_0L@MOIL@bad?5opcode?$AA@ 00504f68 scrcom.obj - 0004:00006f74 ??_C@_08DIAC@bad?5rtvn?$AA@ 00504f74 scrcom.obj - 0004:00006f80 ??_C@_0BA@ILFG@duplicate?5label?$AA@ 00504f80 scrcom.obj - 0004:00006f90 ??_C@_03PAAF@0?$CFx?$AA@ 00504f90 scrcom.obj - 0004:00006f94 ??_C@_0BC@EEMM@Variable?5expected?$AA@ 00504f94 scrcom.obj - 0004:00006fa8 ??_C@_0N@CDF@Unknown?5name?$AA@ 00504fa8 scrcom.obj - 0004:00006fb8 ??_C@_07IKFO@bad?5etn?$AA@ 00504fb8 scrcom.obj - 0004:00006fc0 ??_C@_0BI@OPJE@bad?5opl?5on?5top?5of?5stack?$AA@ 00504fc0 scrcom.obj - 0004:00006fd8 ??_C@_09DMGD@bad?5stack?$AA@ 00504fd8 scrcom.obj - 0004:00006fe4 ??_C@_0DI@JMGD@I?5think?5this?5will?5only?5happen?5if@ 00504fe4 scrcom.obj - 0004:0000701c ??_C@_0BN@EOHH@why?5did?5_SetDepth?5move?5this?$DP?$AA@ 0050501c scrcom.obj - 0004:0000703c ??_C@_0BO@BAFP@shouldn?8t?5be?5a?5second?5operand?$AA@ 0050503c scrcom.obj - 0004:0000705c ??_C@_09LLOH@nil?5ietn3?$AA@ 0050505c scrcom.obj - 0004:00007068 ??_C@_0BC@IOPJ@bad?5comma?5request?$AA@ 00505068 scrcom.obj - 0004:0000707c ??_C@_0BK@JLND@fsccTop?5not?5set?5for?5label?$AA@ 0050507c scrcom.obj - 0004:00007098 ??_C@_0O@ENEB@non?9nil?5ietn2?$AA@ 00505098 scrcom.obj - 0004:000070a8 ??_C@_0O@LCPI@non?9nil?5ietn1?$AA@ 005050a8 scrcom.obj - 0004:000070b8 ??_C@_0O@DAAC@what?5is?5this?$DP?$AA@ 005050b8 scrcom.obj - 0004:000070c8 ??_C@_0O@OHNG@non?9nil?5ietn3?$AA@ 005050c8 scrcom.obj - 0004:000070d8 ??_C@_09OOMJ@nil?5ietn1?$AA@ 005050d8 scrcom.obj - 0004:000070e4 ??_C@_0CB@CFOM@fsccTop?5but?5not?5fsccWantVoid?5set@ 005050e4 scrcom.obj - 0004:00007108 ??_C@_0BA@EGEJ@unexpected?5Elif?$AA@ 00505108 scrcom.obj - 0004:00007118 ??_C@_08NKND@bad?5cstd?$AA@ 00505118 scrcom.obj - 0004:00007124 ??_C@_0P@GCAH@unexpected?5End?$AA@ 00505124 scrcom.obj - 0004:00007134 ??_C@_0BB@NKHK@unexpected?5Break?$AA@ 00505134 scrcom.obj - 0004:00007148 ??_C@_0BE@DCMB@unexpected?5Continue?$AA@ 00505148 scrcom.obj - 0004:0000715c ??_C@_0BA@ELFI@unexpected?5Else?$AA@ 0050515c scrcom.obj - 0004:0000716c ??_C@_0BF@EOCH@bad?5array?5name?5etn?52?$AA@ 0050516c scrcom.obj - 0004:00007184 ??_C@_0BD@LMJG@bad?5array?5name?5etn?$AA@ 00505184 scrcom.obj - 0004:00007198 ??_C@_0BG@OLCA@bad?5remote?5name?5etn?52?$AA@ 00505198 scrcom.obj - 0004:000071b0 ??_C@_0BE@HJAN@bad?5remote?5name?5etn?$AA@ 005051b0 scrcom.obj - 0004:000071c4 ??_C@_0BG@ECI@bad?5global?5name?5etn?52?$AA@ 005051c4 scrcom.obj - 0004:000071dc ??_C@_0BE@DHKA@bad?5global?5name?5etn?$AA@ 005051dc scrcom.obj - 0004:000071f0 ??_C@_0BE@HHAL@bad?5this?5name?5etn?52?$AA@ 005051f0 scrcom.obj - 0004:00007204 ??_C@_0BC@EAGK@bad?5this?5name?5etn?$AA@ 00505204 scrcom.obj - 0004:00007218 ??_C@_0BI@CDHM@Using?5void?5return?5value?$AA@ 00505218 scrcom.obj - 0004:00007230 ??_C@_0BL@ILLH@Wrong?5number?5of?5parameters?$AA@ 00505230 scrcom.obj - 0004:0000724c ??_C@_0BB@JCMG@unknown?5function?$AA@ 0050524c scrcom.obj - 0004:00007260 ??_C@_0N@CHNH@bad?5name?5etn?$AA@ 00505260 scrcom.obj - 0004:00007270 ??_C@_08LLHB@bad?5istn?$AA@ 00505270 scrcom.obj - 0004:0000727c ??_C@_0BK@OOEF@Using?5keyword?5as?5variable?$AA@ 0050527c scrcom.obj - 0004:00007298 ??_C@_0O@HPI@error?5not?5set?$AA@ 00505298 scrcom.obj - 0004:000072a8 ??_C@_0BJ@ENGF@unexpected?5end?5of?5source?$AA@ 005052a8 scrcom.obj - 0004:000072c4 ??_C@_0BO@IHHD@why?5wasn?8t?5an?5error?5reported?$DP?$AA@ 005052c4 scrcom.obj - 0004:000072e4 ??_C@_0N@JHFK@?$CFd?5?1?$CK0x?$CFx?$CK?1?5?$AA@ 005052e4 scrcom.obj - 0004:000072f4 ??_C@_08DLOH@$L_?$CF04x?5?$AA@ 005052f4 scrcom.obj - 0004:00007300 ??_C@_0BB@HKCC@bad?5op?5in?5script?$AA@ 00505300 scrcom.obj - 0004:00007314 ??_C@_0L@PCEF@bad?5var?5op?$AA@ 00505314 scrcom.obj - 0004:00007320 ??_C@_02IIMK@?$DO?$HO?$AA@ 00505320 scrcom.obj - 0004:00007324 ??_C@_02KFJP@?$DM?$HO?$AA@ 00505324 scrcom.obj - 0004:00007328 ??_C@_03MCIB@?$DO?3?3?$AA@ 00505328 scrcom.obj - 0004:0000732c ??_C@_03GGKM@?$DM?3?3?$AA@ 0050532c scrcom.obj - 0004:00007330 ??_C@_02IEHK@?$DO?4?$AA@ 00505330 scrcom.obj - 0004:00007334 ??_C@_02KJCP@?$DM?4?$AA@ 00505334 scrcom.obj - 0004:00007338 ??_C@_02KKOH@?$CC?5?$AA@ 00505338 scrcom.obj - 0004:0000733c ??_C@_01HMO@?$CC?$AA@ 0050533c scrcom.obj - 0004:00007340 ??_C@_0BG@OHKF@bad?5internal?5variable?$AA@ 00505340 scrcom.obj - 0004:00007358 ??_C@_0N@MBNM@bad?5variable?$AA@ 00505358 scrcom.obj - 0004:00007368 ??_C@_0BE@DJNF@bad?5var?5instruction?$AA@ 00505368 scrcom.obj - 0004:0000737c ??_C@_0BA@OBOI@bad?5instruction?$AA@ 0050537c scrcom.obj - 0004:0000738c ??_C@_08BFCK@?$EAL_?$CF04x?5?$AA@ 0050538c scrcom.obj - 0004:00007398 ??_C@_0DF@MNKJ@Script?5version?5doesn?8t?5match?5scr@ 00505398 scrcom.obj - 0004:000073d0 ??_C@_0BN@HMNK@No?5version?5numbers?5on?5script?$AA@ 005053d0 scrcom.obj - 0004:000073f0 ??_C@_0L@CCNC@bad?5script?$AA@ 005053f0 scrcom.obj - 0004:000073fc ??_C@_0P@JBBE@bad?5identifier?$AA@ 005053fc scrcom.obj - 0004:0000740c ??_C@_04GBMF@?$FL?$CFd?$FN?$AA@ 0050540c scrcom.obj - 0004:00007438 ??_C@_0L@DAPM@nil?5script?$AA@ 00505438 screxe.obj - 0004:00007444 ??_C@_09BCNL@nil?5stack?$AA@ 00505444 screxe.obj - 0004:00007450 ??_C@_0DI@EHG@Script?5version?5doesn?8t?5match?5scr@ 00505450 screxe.obj - 0004:00007488 ??_C@_0BK@EFFE@No?5version?5info?5on?5script?$AA@ 00505488 screxe.obj - 0004:000074a4 ??_C@_0BC@GIIF@script?5not?5paused?$AA@ 005054a4 screxe.obj - 0004:000074b8 ??_C@_05MPAG@_parm?$AA@ 005054b8 screxe.obj - 0004:000074c0 ??_C@_06DPCM@_cparm?$AA@ 005054c0 screxe.obj - 0004:000074c8 ??_C@_0O@GLPC@Runtime?5error?$AA@ 005054c8 screxe.obj - 0004:000074d8 ??_C@_0BI@NKLN@Runtime?5error?5in?5script?$AA@ 005054d8 screxe.obj - 0004:000074f0 ??_C@_0BM@HHFO@Script?5?$CI?8?$CFf?8?0?50x?$CFx?0?5?$CFd?$CJ?3?5?$CFs?$AA@ 005054f0 screxe.obj - 0004:0000750c ??_C@_0BG@BPIN@why?5did?5_QlwGet?5fail?$DP?$AA@ 0050550c screxe.obj - 0004:00007524 ??_C@_0BK@JMEC@Setting?5dst?5string?5failed?$AA@ 00505524 screxe.obj - 0004:00007540 ??_C@_0CI@NDGD@Source?5string?5doesn?8t?5exist?5?$CIsti@ 00505540 screxe.obj - 0004:00007568 ??_C@_0CK@JFKB@Source?5string?52?5doesn?8t?5exist?5?$CIs@ 00505568 screxe.obj - 0004:00007594 ??_C@_0CK@JCGG@Source?5string?51?5doesn?8t?5exist?5?$CIs@ 00505594 screxe.obj - 0004:000075c0 ??_C@_0BM@GENM@Merging?5string?5table?5failed?$AA@ 005055c0 screxe.obj - 0004:000075dc ??_C@_0CJ@IJOA@Reading?5string?5table?5failed?5?$CIcno@ 005055dc screxe.obj - 0004:00007608 ??_C@_0CB@NFPE@no?5rca?5to?5read?5string?5table?5from@ 00505608 screxe.obj - 0004:0000762c ??_C@_0CI@FDAP@no?5string?5registry?5to?5put?5the?5st@ 0050562c screxe.obj - 0004:00007654 ??_C@_0CC@CEFC@Putting?5string?5in?5registry?5faile@ 00505654 screxe.obj - 0004:00007678 ??_C@_02MECO@?$CFd?$AA@ 00505678 screxe.obj - 0004:0000767c ??_C@_0CK@EBJH@Pushing?5uninitialized?5script?5var@ 0050567c screxe.obj - 0004:000076c8 ??_C@_0P@JECG@negative?5sizes?$AA@ 005056c8 groups.obj - 0004:000076d8 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 005056d8 groups.obj - 0004:000076e8 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 005056e8 groups.obj - 0004:000076fc ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 005056fc groups.obj - 0004:00007710 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00505710 groups.obj - 0004:0000772c ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 0050572c groups.obj - 0004:00007748 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 00505748 groups.obj - 0004:00007760 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 00505760 groups.obj - 0004:00007788 ??_C@_08OO@wrong?5bo?$AA@ 00505788 groups.obj - 0004:00007794 ??_C@_06NHBD@bad?5bo?$AA@ 00505794 groups.obj - 0004:0000779c ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 0050579c groups.obj - 0004:000077b8 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 005057b8 groups.obj - 0004:000077e4 ??_C@_0BK@LHAG@file?5corrupt?5or?5not?5an?5AL?$AA@ 005057e4 groups.obj - 0004:00007800 ??_C@_0BJ@LGAF@why?5is?5this?5marked?5free?$DP?$AA@ 00505800 groups.obj - 0004:0000781c ??_C@_0BF@EMCD@everything?5is?5free?$CB?$DP?$AA@ 0050581c groups.obj - 0004:00007834 ??_C@_0O@HCLM@already?5free?$CB?$AA@ 00505834 groups.obj - 0004:00007844 ??_C@_0BB@PNKH@_cvFree?5is?5wrong?$AA@ 00505844 groups.obj - 0004:00007858 ??_C@_0BE@MANP@flag?5area?5too?5small?$AA@ 00505858 groups.obj - 0004:0000786c ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 0050586c groups.obj - 0004:00007888 ??_C@_07PIIM@bad?5loc?$AA@ 00505888 groups.obj - 0004:00007890 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 00505890 groups.obj - 0004:000078b4 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 005058b4 groups.obj - 0004:000078d4 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 005058d4 groups.obj - 0004:000078f4 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 005058f4 groups.obj - 0004:00007904 ??_C@_05HCAE@oops?$CB?$AA@ 00505904 groups.obj - 0004:0000790c ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 0050590c groups.obj - 0004:00007928 ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 00505928 groups.obj - 0004:00007960 ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 00505960 groups.obj - 0004:0000797c ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 0050597c groups.obj - 0004:00007994 ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 00505994 groups.obj - 0004:000079b8 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 005059b8 groups.obj - 0004:000079c8 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 005059c8 groups.obj - 0004:000079dc ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 005059dc groups.obj - 0004:000079f4 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 005059f4 groups.obj - 0004:00007a1c ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 00505a1c groups.obj - 0004:00007a30 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 00505a30 groups.obj - 0004:00007a44 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 00505a44 groups.obj - 0004:00007a58 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 00505a58 groups.obj - 0004:00007a70 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 00505a70 groups.obj - 0004:00007a88 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 00505a88 groups.obj - 0004:00007aa0 ??_C@_0BM@NBGL@Cant?5insert?5from?5same?5group?$AA@ 00505aa0 groups.obj - 0004:00007abc ??_C@_0CC@DEJH@Groups?5have?5different?5fixed?5size@ 00505abc groups.obj - 0004:00007ae0 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 00505ae0 groups.obj - 0004:00007af4 ??_C@_0BA@BKJJ@_clocFree?5wrong?$AA@ 00505af4 groups.obj - 0004:00007b04 ??_C@_0BE@CBDM@entry?5already?5free?$CB?$AA@ 00505b04 groups.obj - 0004:00007b38 ??_C@_0CD@BJKN@cbExtra?5not?5multiple?5of?5size?$CIlon@ 00505b38 groups2.obj - 0004:00007b5c ??_C@_0M@GFOH@unknown?5osk?$AA@ 00505b5c groups2.obj - 0004:00007b68 ??_C@_0BL@PADL@file?5corrupt?5or?5not?5a?5GSTB?$AA@ 00505b68 groups2.obj - 0004:00007b84 ??_C@_0CL@EPJN@why?5is?5this?5string?5table?5growing@ 00505b84 groups2.obj - 0004:00007bb0 ??_C@_0BG@PPCE@string?5entry?5is?5free?$CB?$AA@ 00505bb0 groups2.obj - 0004:00007bc8 ??_C@_0BC@OIJF@last?5element?5free?$AA@ 00505bc8 groups2.obj - 0004:00007bdc ??_C@_0BL@KJJP@first?5block?5not?5big?5enough?$AA@ 00505bdc groups2.obj - 0004:00007bf8 ??_C@_0BM@DEGE@overlapping?5strings?5in?5GSTB?$AA@ 00505bf8 groups2.obj - 0004:00007c14 ??_C@_0BM@GHNE@can?8t?5translate?5to?5this?5osk?$AA@ 00505c14 groups2.obj - 0004:00007c30 ??_C@_07PNIM@bad?5bst?$AA@ 00505c30 groups2.obj - 0004:00007c38 ??_C@_0O@HDCF@bad?5_cbstFree?$AA@ 00505c38 groups2.obj - 0004:00007c48 ??_C@_0BA@HOMP@grst?5wrong?5size?$AA@ 00505c48 groups2.obj - 0004:00007c58 ??_C@_0BD@GPKO@_cbstFree?5is?5wrong?$AA@ 00505c58 groups2.obj - 0004:00007c6c ??_C@_0BF@BDL@rgbst?5area?5too?5small?$AA@ 00505c6c groups2.obj - 0004:00007c84 ??_C@_0BE@GGCD@grst?5area?5too?5small?$AA@ 00505c84 groups2.obj - 0004:00007c98 ??_C@_0N@GMIA@_cbEntry?5bad?$AA@ 00505c98 groups2.obj - 0004:00007ca8 ??_C@_08IBNI@bad?5fcmp?$AA@ 00505ca8 groups2.obj - 0004:00007cb4 ??_C@_0BA@BCJG@cbExtra?5is?5zero?$AA@ 00505cb4 groups2.obj - 0004:00007cc4 ??_C@_0BF@IGAN@bad?5_cbstFree?5in?5GST?$AA@ 00505cc4 groups2.obj - 0004:00007d00 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 00505d00 rtxt.obj - 0004:00007d08 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 00505d08 rtxt.obj - 0004:00007df8 ??_C@_0CK@FOFE@stream?5doesn?8t?5end?5with?5a?5carria@ 00505df8 rtxt.obj - 0004:00007e24 ??_C@_0CD@LPLH@ibMac?5not?5divisible?5by?5size?$CIacha@ 00505e24 rtxt.obj - 0004:00007e48 ??_C@_0BM@KLFJ@BSF?5has?5a?5partial?5character?$AA@ 00505e48 rtxt.obj - 0004:00007e64 ??_C@_0BG@MPE@Can?8t?5translate?5a?5BSF?$AA@ 00505e64 rtxt.obj - 0004:00007e7c ??_C@_0CF@BNNC@IbMac?$CI?$CJ?5not?5divisible?5by?5size?$CIac@ 00505e7c rtxt.obj - 0004:00007ea4 ??_C@_0BF@PJHC@bad?5_cactSuspendUndo?$AA@ 00505ea4 rtxt.obj - 0004:00007ebc ??_C@_0BE@BMIO@isolated?5line?5feeds?$AA@ 00505ebc rtxt.obj - 0004:00007ed0 ??_C@_0CJ@FMK@last?5character?5is?5not?5a?5return?5c@ 00505ed0 rtxt.obj - 0004:00007efc ??_C@_0BF@KGIC@non?9increasing?5mpe?8s?$AA@ 00505efc rtxt.obj - 0004:00007f14 ??_C@_0BG@IMMF@bad?5default?5font?5size?$AA@ 00505f14 rtxt.obj - 0004:00007f2c ??_C@_0P@IJMB@bad?5font?5entry?$AA@ 00505f2c rtxt.obj - 0004:00007f3c ??_C@_09OCFF@no?5MPE?8s?$CB?$AA@ 00505f3c rtxt.obj - 0004:00007f48 ??_C@_0BA@EEMO@cact?5overflowed?$AA@ 00505f48 rtxt.obj - 0004:00007f58 ??_C@_0BC@BPKD@bad?5index?5into?5AG?$AA@ 00505f58 rtxt.obj - 0004:00007f6c ??_C@_0M@FMGH@invalid?5onn?$AA@ 00505f6c rtxt.obj - 0004:00007f78 ??_C@_0BC@GHIO@bad?5group?5element?$AA@ 00505f78 rtxt.obj - 0004:00007f8c ??_C@_0CE@BPKC@why?5is?5there?5an?5active?5undo?5reco@ 00505f8c rtxt.obj - 0004:00007fb0 ??_C@_0BH@JGKA@new?5para?5after?5old?5one?$AA@ 00505fb0 rtxt.obj - 0004:00007fc8 ??_C@_0BI@FHDH@new?5para?5before?5old?5one?$AA@ 00505fc8 rtxt.obj - 0004:00007fe0 ??_C@_09EEFH@bad?5cpSrc?$AA@ 00505fe0 rtxt.obj - 0004:00007fec ??_C@_07JAP@bad?5flo?$AA@ 00505fec rtxt.obj - 0004:00007ff4 ??_C@_0BP@GPDI@bad?5parameters?5to?5FReplaceTxrd?$AA@ 00505ff4 rtxt.obj - 0004:00008014 ??_C@_0BP@GEAI@trying?5to?5replace?5trailing?5EOP?$AA@ 00506014 rtxt.obj - 0004:00008034 ??_C@_0CL@FCLK@can?8t?5copy?5from?5a?5rich?5text?5doc?5@ 00506034 rtxt.obj - 0004:00008060 ??_C@_0BE@GFCP@ensure?5in?5ag?5failed?$AA@ 00506060 rtxt.obj - 0004:00008074 ??_C@_0BH@ILBP@growing?5_pglmpe?5failed?$AA@ 00506074 rtxt.obj - 0004:0000808c ??_C@_0BE@OEMI@_FFindMpe?5messed?5up?$AA@ 0050608c rtxt.obj - 0004:000080a0 ??_C@_0BJ@CHOK@bad?5cpLim?5from?5_FFindMpe?$AA@ 005060a0 rtxt.obj - 0004:000080bc ??_C@_0BJ@PKPG@should?5have?5been?5ensured?$AA@ 005060bc rtxt.obj - 0004:000080d8 ??_C@_0BB@FOPC@cp?5not?5an?5object?$AA@ 005060d8 rtxt.obj - 0004:000080ec ??_C@_0DO@IEAA@This?5rich?5text?5undo?5object?5canno@ 005060ec rtxt.obj - 0004:0000812c ??_C@_0L@INOB@empty?5RTUN?$AA@ 0050612c rtxt.obj - 0004:00008158 ??_C@_0BD@JIFK@xpBase?5?$DO?5xpLimLine?$AA@ 00506158 rtxt2.obj - 0004:0000816c ??_C@_0BN@IIGO@bad?5rectangle?5for?5the?5object?$AA@ 0050616c rtxt2.obj - 0004:0000818c ??_C@_0CC@GHD@why?5is?5_chrd?4cpLimDraw?5?$DN?$DN?5_cpMin@ 0050618c rtxt2.obj - 0004:000081b0 ??_C@_0CB@ODOD@why?5isn?8t?5_ilinInval?5?$DN?$DN?5ilinMac?$DP@ 005061b0 rtxt2.obj - 0004:000081d4 ??_C@_0BL@IJJH@why?5isn?8t?5cpFind?5?$DO?$DN?5cpLim?$DP?$AA@ 005061d4 rtxt2.obj - 0004:000081f0 ??_C@_0N@MFLG@Invalid?5LINs?$AA@ 005061f0 rtxt2.obj - 0004:00008200 ??_C@_0BN@OKNN@why?5isn?8t?5dypFind?5?$DO?$DN?5dypTot?$DP?$AA@ 00506200 rtxt2.obj - 0004:00008220 ??_C@_0BB@HLFD@why?5is?5cch?5zero?$DP?$AA@ 00506220 rtxt2.obj - 0004:00008234 ??_C@_07DPP@bad?5run?$AA@ 00506234 rtxt2.obj - 0004:0000823c ??_C@_0BJ@GBOL@why?5don?8t?5we?5have?5a?5BOP?$DP?$AA@ 0050623c rtxt2.obj - 0004:00008258 ??_C@_0BO@JNII@why?5is?5run?4cpLim?5?$DO?$DN?5cpLimChp?$DP?$AA@ 00506258 rtxt2.obj - 0004:00008278 ??_C@_0BK@NEDM@why?5is?5cpCur?5?$DO?$DN?5cpLimChp?$DP?$AA@ 00506278 rtxt2.obj - 0004:00008294 ??_C@_0BM@DHHO@selection?5is?5on?5in?5InvalCp?$CB?$AA@ 00506294 rtxt2.obj - 0004:000082cc ?vluSysVolFake@@3KA 005062cc sndm.obj - 0004:000082d0 ??_C@_0BB@DFGC@bad?5_cactSuspend?$AA@ 005062d0 sndm.obj - 0004:000082e4 ??_C@_0BI@CEDJ@couldn?8t?5allocate?5queue?$AA@ 005062e4 sndm.obj - 0004:00008320 ?vcbMaxMemWave@SDAM@@2JA 00506320 sndam.obj - 0004:00008358 ??_C@_0P@HMJA@bad?5loop?5count?$AA@ 00506358 sndam.obj - 0004:00008368 ??_C@_0BE@PDLM@Audioman?5messed?5up?$CB?$AA@ 00506368 sndam.obj - 0004:000083a0 ??_C@_0CB@BCE@calling?5_VlmGetSys?5with?5nil?5_hmo@ 005063a0 mididev.obj - 0004:000083c4 ??_C@_0CB@ELPC@calling?5_SetSysVol?5with?5nil?5_hmo@ 005063c4 mididev.obj - 0004:00008408 ??_C@_0BO@JNJB@MSMIX?5still?5has?5active?5sounds?$AA@ 00506408 mididev2.obj - 0004:00008428 ??_C@_0BD@MPCK@MISI?5still?5active?$CB?$AA@ 00506428 mididev2.obj - 0004:0000843c ??_C@_0L@DEEF@nil?5thread?$AA@ 0050643c mididev2.obj - 0004:00008448 ??_C@_09IDNG@nil?5event?$AA@ 00506448 mididev2.obj - 0004:00008454 ??_C@_0BB@HDKE@already?5playing?$CB?$AA@ 00506454 mididev2.obj - 0004:00008468 ??_C@_0BH@FADN@Bad?5pvData?1pmdws?5combo?$AA@ 00506468 mididev2.obj - 0004:00008480 ??_C@_0M@DHJK@Wrong?5pmdws?$AA@ 00506480 mididev2.obj - 0004:0000848c ??_C@_0BF@IOMN@what?5buffer?5is?5this?$DP?$AA@ 0050648c mididev2.obj - 0004:000084a4 ??_C@_0CB@KOKF@calling?5_GetSysVol?5with?5nil?5_hms@ 005064a4 mididev2.obj - 0004:000084c8 ??_C@_0CB@BMGG@calling?5_SetSysVol?5with?5nil?5_hms@ 005064c8 mididev2.obj - 0004:000084ec ??_C@_0CC@EBKD@WMS?5still?5has?5some?5active?5buffer@ 005064ec mididev2.obj - 0004:00008510 ??_C@_0P@GIHP@midiStreamStop?$AA@ 00506510 mididev2.obj - 0004:00008520 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 00506520 mididev2.obj - 0004:00008534 ??_C@_0BA@JHNK@midiStreamPause?$AA@ 00506534 mididev2.obj - 0004:00008544 ??_C@_0O@MCEN@midiStreamOut?$AA@ 00506544 mididev2.obj - 0004:00008554 ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 00506554 mididev2.obj - 0004:00008568 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 00506568 mididev2.obj - 0004:0000857c ??_C@_0BA@PKJI@midiStreamClose?$AA@ 0050657c mididev2.obj - 0004:0000858c ??_C@_0P@FAGH@midiStreamOpen?$AA@ 0050658c mididev2.obj - 0004:0000859c ??_C@_09GPGB@WINMM?4DLL?$AA@ 0050659c mididev2.obj - 0004:000085a8 ??_C@_0BB@KAHJ@negative?5_cmhOut?$AA@ 005065a8 mididev2.obj - 0004:000085bc ??_C@_0BJ@HJFO@why?5is?5_cmhOut?5non?9zero?$DP?$AA@ 005065bc mididev2.obj - 0004:000085d8 ??_C@_0CJ@NKGD@closing?5a?5stream?5that?5still?5has?5@ 005065d8 mididev2.obj - 0004:00008604 ??_C@_0BF@NJBO@pmh?9?$DOlpData?5is?5wrong?$AA@ 00506604 mididev2.obj - 0004:0000861c ??_C@_0N@NPMO@corrupt?5msir?$AA@ 0050661c mididev2.obj - 0004:0000862c ??_C@_09NNCE@wrong?5hms?$AA@ 0050662c mididev2.obj - 0004:00008638 ??_C@_0BI@DGGH@Still?5have?5some?5buffers?$AA@ 00506638 mididev2.obj - 0004:00008650 ??_C@_0BC@ELJP@Still?5have?5an?5HMS?$AA@ 00506650 mididev2.obj - 0004:000086a4 ??_C@_0DI@IFAL@why?5are?5you?5calling?5this?5when?5th@ 005066a4 dlg.obj - 0004:000086dc ??_C@_0P@BJLM@bad?5combo?5item?$AA@ 005066dc dlg.obj - 0004:000086ec ??_C@_0BJ@CDJF@not?5a?5text?5item?5or?5combo?$AA@ 005066ec dlg.obj - 0004:00008708 ??_C@_0BP@GJMK@why?5did?5setting?5the?5data?5fail?$DP?$AA@ 00506708 dlg.obj - 0004:00008728 ??_C@_0BA@LEDF@not?5a?5check?5box?$AA@ 00506728 dlg.obj - 0004:00008758 ?_szDlgProp@@3QADA 00506758 dlgwin.obj - 0004:0000875c ??_C@_0BH@KIEH@no?5dits?5in?5this?5dialog?$AA@ 0050675c dlgwin.obj - 0004:00008774 ??_C@_0BI@GHJH@no?5items?5in?5this?5dialog?$AA@ 00506774 dlgwin.obj - 0004:0000878c ??_C@_0BH@NFFD@wrong?5lim?5on?5edit?5item?$AA@ 0050678c dlgwin.obj - 0004:000087a4 ??_C@_0BL@IDGN@bad?5call?5to?5DLG?3?3SelectDit?$AA@ 005067a4 dlgwin.obj - 0004:000087c0 ??_C@_0BE@FDKG@no?5radio?5button?5set?$AA@ 005067c0 dlgwin.obj - 0004:000087d4 ??_C@_0BD@CCEM@not?5a?5radio?5group?$CB?$AA@ 005067d4 dlgwin.obj - 0004:000087e8 ??_C@_0L@BPLN@no?5dialog?$CB?$AA@ 005067e8 dlgwin.obj - 0004:000087f4 ??_C@_0BH@KEF@wrong?5lim?5on?5check?5box?$AA@ 005067f4 dlgwin.obj - 0004:0000880c ??_C@_0BB@JHMD@not?5a?5check?5box?$CB?$AA@ 0050680c dlgwin.obj - 0004:00008820 ??_C@_0BC@OOLE@wrong?5lim?5on?5item?$AA@ 00506820 dlgwin.obj - 0004:00008834 ??_C@_0BI@NNCK@not?5edit?5item?5or?5combo?$CB?$AA@ 00506834 dlgwin.obj - 0004:0000884c ??_C@_0BI@MIMM@Couldn?8t?5get?5combo?5hwnd?$AA@ 0050684c dlgwin.obj - 0004:00008864 ??_C@_0L@PEDO@not?5combo?$CB?$AA@ 00506864 dlgwin.obj - 0004:0000888c ?_szCtlProp@@3QADA 0050688c ctl.obj - 0004:00008898 ??_C@_0BO@GIFH@CTL?5already?5has?5an?5OS?5control?$AA@ 00506898 ctl.obj - 0004:000088b8 ??_C@_0BP@GBPK@control?5isn?8t?5based?5in?5an?5hwnd?$AA@ 005068b8 ctl.obj - 0004:000088d8 ??_C@_0DB@JCMI@exactly?5one?5of?5?$CIfscbHorz?0fscbVer@ 005068d8 ctl.obj - 0004:0000890c ??_C@_09LIFG@SCROLLBAR?$AA@ 0050690c ctl.obj - 0004:00008918 ??_C@_0CJ@MLJM@can?5only?5add?5controls?5to?5hwnd?5ba@ 00506918 ctl.obj - 0004:00008944 ??_C@_0BE@ODCL@scb?5already?5created?$AA@ 00506944 ctl.obj - 0004:00008958 ??_C@_0CI@NMHP@parent?5of?5size?5box?5doesn?8t?5have?5@ 00506958 ctl.obj - 0004:00008980 ??_C@_0L@LOLL@nil?5parent?$AA@ 00506980 ctl.obj - 0004:000089b0 ?_cmmGVDS@GVDS@@1UCMM@CMH@@A 005069b0 video.obj - 0004:000089b8 ?_rgcmmeGVDS@GVDS@@0QAUCMME@CMH@@A 005069b8 video.obj - 0004:000089c8 ??_C@_08KPNA@avivideo?$AA@ 005069c8 video.obj - 0004:000089d4 ??_C@_0BI@HPNN@getting?5position?5failed?$AA@ 005069d4 video.obj - 0004:000089ec ??_C@_0P@ICM@seeking?5failed?$AA@ 005069ec video.obj - 0004:00008a1c ??_C@_0L@JHNP@bad?5dlnSel?$AA@ 00506a1c text.obj - 0004:00008a28 ??_C@_0BH@BMDK@baseline?5not?5supported?$AA@ 00506a28 text.obj - 0004:00008a40 ??_C@_0BG@LJHF@bad?5call?5to?5_UnlockLn?$AA@ 00506a40 text.obj - 0004:00008a58 ??_C@_0BH@COAP@null?5character?5in?5EDSL?$AA@ 00506a58 text.obj - 0004:00008a8c ??_C@_0BC@MABH@shrinking?5failed?$CB?$AA@ 00506a8c mbmp.obj - 0004:00008aa0 ??_C@_0BN@HMNP@Empty?5source?5bitmap?5for?5MBMP?$AA@ 00506aa0 mbmp.obj - 0004:00008ac0 ??_C@_0BC@JEGH@Invalid?5rectangle?$AA@ 00506ac0 mbmp.obj - 0004:00008ad4 ??_C@_0BL@DNGM@Attempted?5to?5read?5bad?5MBMP?$AA@ 00506ad4 mbmp.obj - 0004:00008af0 ??_C@_0BC@ICFM@Wrong?5sized?5block?$AA@ 00506af0 mbmp.obj - 0004:00008b04 ??_C@_0BA@DPNI@bad?5row?5in?5MBMP?$AA@ 00506b04 mbmp.obj - 0004:00008b14 ??_C@_0BC@FLNL@_hqrgb?5wrong?5size?$AA@ 00506b14 mbmp.obj - 0004:00008b28 ??_C@_0O@JBAC@_cbRgcb?5wrong?$AA@ 00506b28 mbmp.obj - 0004:00008b38 ??_C@_0BJ@GIGP@compressed?5bitmap?5is?5bad?$AA@ 00506b38 mbmp.obj - 0004:00008b54 ??_C@_0BG@EIAF@palette?5is?5wrong?5size?$AA@ 00506b54 mbmp.obj - 0004:00008b6c ??_C@_0BH@FEMH@Bitmap?5data?5wrong?5size?$AA@ 00506b6c mbmp.obj - 0004:00008b84 ??_C@_0BH@DGGF@Empty?5bitmap?5rectangle?$AA@ 00506b84 mbmp.obj - 0004:00008b9c ??_C@_0DE@EEJE@bad?5compression?5type?5or?5bitmap?5f@ 00506b9c mbmp.obj - 0004:00008bd0 ??_C@_0BE@GKKF@not?5an?58?9bit?5bitmap?$AA@ 00506bd0 mbmp.obj - 0004:00008be4 ??_C@_0BA@NOIG@bad?5bitmap?5file?$AA@ 00506be4 mbmp.obj - 0004:00008c18 ?_cmmDCD@DCD@@1UCMM@CMH@@A 00506c18 chdoc.obj - 0004:00008c20 ?_rgcmmeDCD@DCD@@0QAUCMME@CMH@@A 00506c20 chdoc.obj - 0004:00008e50 ?_cmmTSCG@TSCG@@1UCMM@CMH@@A 00506e50 chdoc.obj - 0004:00008e58 ?_rgcmmeTSCG@TSCG@@0QAUCMME@CMH@@A 00506e58 chdoc.obj - 0004:00008e78 ??_C@_0EI@FAOD@A?5chunk?5with?5this?5CTG?5?$CG?5CNO?5alre@ 00506e78 chdoc.obj - 0004:00008ec0 ??_C@_0L@PLNL@CNO?5is?5bad?$AA@ 00506ec0 chdoc.obj - 0004:00008ecc ??_C@_0L@IPM@CTG?5is?5bad?$AA@ 00506ecc chdoc.obj - 0004:00008ed8 ??_C@_0BL@CGOO@Saving?5chunky?5file?5failed?$CB?$AA@ 00506ed8 chdoc.obj - 0004:00008ef4 ??_C@_0BA@LOOM@Chunk?5not?5found?$AA@ 00506ef4 chdoc.obj - 0004:00008f04 ??_C@_09GEDE@?3?5?$CFf?5?$CF08x?$AA@ 00506f04 chdoc.obj - 0004:00008f10 ??_C@_0BE@LMD@Saving?5chunk?5failed?$AA@ 00506f10 chdoc.obj - 0004:00008f24 ??_C@_0BB@HFBP@chunk?5not?5in?5CFL?$AA@ 00506f24 chdoc.obj - 0004:00008f38 ??_C@_0CM@GOGL@?$CFc?$CFc?$CFc?5?5?$CF3d?5?5?$CF08x?5?5?9?9?9?9?9?9?9?9?5?5?$CFf?5@ 00506f38 chdoc.obj - 0004:00008f64 ??_C@_0L@ICNK@bad?5grfsel?$AA@ 00506f64 chdoc.obj - 0004:00008f70 ??_C@_0CD@HNIH@?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?$CF08x?5?5?$CFf?5?5?$CF0@ 00506f70 chdoc.obj - 0004:00008f94 ??_C@_0DP@KPKG@LPF?5?5PARS?5?5?5SIZE?5?5?5?5?5?$CICHID?$CJ?5?5?5CT@ 00506f94 chdoc.obj - 0004:00008fd4 ??_C@_0BJ@OKHC@ln?5and?5pcki?5both?5not?5nil?$AA@ 00506fd4 chdoc.obj - 0004:00008ff0 ??_C@_0CG@NOLF@Nuke?5all?5changes?5since?5the?5last?5@ 00506ff0 chdoc.obj - 0004:00009018 ??_C@_0BK@HFAD@no?5lines?0?5but?5non?9nil?5sel?$AA@ 00507018 chdoc.obj - 0004:00009034 ??_C@_0CD@LEJK@unhandled?5command?5in?5FEnableDcdC@ 00507034 chdoc.obj - 0004:00009058 ??_C@_0P@NHBP@can?8t?5set?5name?$AA@ 00507058 chdoc.obj - 0004:00009068 ??_C@_0BF@HLBE@Writing?5chunk?5failed?$AA@ 00507068 chdoc.obj - 0004:00009080 ??_C@_0BM@CDEA@Reading?5picture?5file?5failed?$AA@ 00507080 chdoc.obj - 0004:0000909c ??_C@_0BH@PHKE@MetaFiles?$AA?$CK?4EMF?$DL?$CK?4WMF?$AA?$AA@ 0050709c chdoc.obj - 0004:000090b4 ??_C@_0CD@BEKF@The?5Y?5Position?5must?5be?5an?5intege@ 005070b4 chdoc.obj - 0004:000090d8 ??_C@_0CD@OOFC@The?5X?5Position?5must?5be?5an?5intege@ 005070d8 chdoc.obj - 0004:000090fc ??_C@_0DH@IBI@The?5transparent?5pixel?5value?5must@ 005070fc chdoc.obj - 0004:00009134 ??_C@_0BL@HILP@Reading?5bitmap?5file?5failed?$AA@ 00507134 chdoc.obj - 0004:00009150 ??_C@_0P@LKBG@Bitmaps?$AA?$CK?4BMP?$AA?$AA@ 00507150 chdoc.obj - 0004:00009160 ??_C@_0BE@DONP@Opening?5file?5failed?$AA@ 00507160 chdoc.obj - 0004:00009174 ??_C@_0CB@LEBN@That?5CTG?1CNO?5pair?5already?5exists@ 00507174 chdoc.obj - 0004:00009198 ??_C@_0BD@KPOG@can?8t?5set?5new?5name?$AA@ 00507198 chdoc.obj - 0004:000091ac ??_C@_0CP@EHAK@This?5parent?1child?5relationship?5a@ 005071ac chdoc.obj - 0004:000091dc ??_C@_0BC@PPDC@CHID?5value?5is?5bad?$AA@ 005071dc chdoc.obj - 0004:000091f0 ??_C@_0EJ@HCMM@Adopting?5this?5child?5would?5form?5a@ 005071f0 chdoc.obj - 0004:0000923c ??_C@_0BG@LMAO@Child?5ID?5value?5is?5bad?$AA@ 0050723c chdoc.obj - 0004:00009254 ??_C@_0BB@CFDL@Child?5CNO?5is?5bad?$AA@ 00507254 chdoc.obj - 0004:00009268 ??_C@_0BB@NGBM@Child?5CTG?5is?5bad?$AA@ 00507268 chdoc.obj - 0004:0000927c ??_C@_0BC@FBHM@Parent?5CNO?5is?5bad?$AA@ 0050727c chdoc.obj - 0004:00009290 ??_C@_0BC@KCFL@Parent?5CTG?5is?5bad?$AA@ 00507290 chdoc.obj - 0004:000092a4 ??_C@_0BH@CAKH@Adopting?5chunk?5failed?4?$AA@ 005072a4 chdoc.obj - 0004:000092bc ??_C@_0CE@MOFP@This?5chunk?5doesn?8t?5fit?5that?5form@ 005072bc chdoc.obj - 0004:000092e0 ??_C@_0M@EOPN@unknown?5cid?$AA@ 005072e0 chdoc.obj - 0004:000092ec ??_C@_0BI@KJE@Compiling?5script?5failed?$AA@ 005072ec chdoc.obj - 0004:00009304 ??_C@_0CI@BCAA@Unpacking?5failed?5?9?5chunk?5may?5be?5@ 00507304 chdoc.obj - 0004:0000932c ??_C@_0DA@PMEC@Packing?5failed?5?9?5chunk?5may?5be?5in@ 0050732c chdoc.obj - 0004:0000935c ??_C@_0BG@BNCH@Running?5script?5failed?$AA@ 0050735c chdoc.obj - 0004:00009374 ??_C@_0BE@KCPJ@Run?5Script?3?5?$CFf?5?$CF08x?$AA@ 00507374 chdoc.obj - 0004:00009388 ??_C@_0BL@DMFJ@Error?5disassembling?5script?$AA@ 00507388 chdoc.obj - 0004:000093a4 ??_C@_0CM@EGHE@Error?5reading?5script?5?$CIor?5it?8s?5no@ 005073a4 chdoc.obj - 0004:000093d0 ??_C@_0BK@NDB@Couldn?8t?5paste?5everything?$AA@ 005073d0 chdoc.obj - 0004:000093ec ??_C@_04HGI@?8?$CFf?8?$AA@ 005073ec chdoc.obj - 0004:000093f4 ??_C@_0P@CJCE@Cloning?5failed?$AA@ 005073f4 chdoc.obj - 0004:00009404 ??_C@_02JBAA@?$CFf?$AA@ 00507404 chdoc.obj - 0004:00009408 ??_C@_06LPCP@bad?5ln?$AA@ 00507408 chdoc.obj - 0004:00009410 ??_C@_0BG@FPAI@initial?5_ln?5was?5wrong?$AA@ 00507410 chdoc.obj - 0004:00009428 ??_C@_0BH@HAED@nil?5values?5not?5in?5sync?$AA@ 00507428 chdoc.obj - 0004:00009460 ?_cmmAPP@APP@@1UCMM@CMH@@A 00507460 ched.obj - 0004:00009468 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 00507468 ched.obj - 0004:000094b8 ??_C@_0CJ@EJPH@Debug?5Ched?5?$CIAnsi?$DL?5Oct?5?52?51995?$DL?52@ 005074b8 ched.obj - 0004:000094e4 ??_C@_0CG@DCHB@Text?5Files?$AA?$CK?4txt?$DL?$CK?4cht?$AAAll?5Files@ 005074e4 ched.obj - 0004:0000950c ??_C@_0CI@EANG@Chunky?5Files?$AA?$CK?4chk?$DL?$CK?4cfl?$AAAll?5Fil@ 0050750c ched.obj - 0004:00009558 ?_cmmDCGB@DCGB@@1UCMM@CMH@@A 00507558 chgrp.obj - 0004:00009560 ?_rgcmmeDCGB@DCGB@@0QAUCMME@CMH@@A 00507560 chgrp.obj - 0004:000095c0 ??_C@_0CC@FMBH@DOCE?5already?5exists?5for?5the?5chun@ 005075c0 chgrp.obj - 0004:000095e4 ??_C@_08FNKM@Bad?5Size?$AA@ 005075e4 chgrp.obj - 0004:000095f0 ??_C@_0O@NAON@bad?5cls?5value?$AA@ 005075f0 chgrp.obj - 0004:00009600 ??_C@_0O@LJJG@group?5not?5nil?$AA@ 00507600 chgrp.obj - 0004:00009610 ??_C@_0BI@HGBH@group?5doesn?8t?5match?5cls?$AA@ 00507610 chgrp.obj - 0004:00009628 ??_C@_0CA@DHEC@bad?5non?9nil?5selection?5requested?$AA@ 00507628 chgrp.obj - 0004:00009648 ??_C@_0O@MKFF@unhandled?5cid?$AA@ 00507648 chgrp.obj - 0004:00009658 ??_C@_07EENH@bad?5cls?$AA@ 00507658 chgrp.obj - 0004:00009660 ??_C@_02IHLC@?5?5?$AA@ 00507660 chgrp.obj - 0004:00009664 ??_C@_04IPPK@?4?4?4?4?$AA@ 00507664 chgrp.obj - 0004:0000966c ??_C@_05MAAK@?$CF5d?$CJ?5?$AA@ 0050766c chgrp.obj - 0004:00009674 ??_C@_0L@DAKI@?$CF5d?$CJ?5?5FREE?$AA@ 00507674 chgrp.obj - 0004:00009680 ??_C@_08LIFF@bad?5grpb?$AA@ 00507680 chgrp.obj - 0004:0000968c ??_C@_03MFGH@?5?5?5?$AA@ 0050768c chgrp.obj - 0004:00009690 ??_C@_07NDP@?5?5?5?5?5?5?5?$AA@ 00507690 chgrp.obj - 0004:00009698 ??_C@_0L@GJJC@?$CF5d?$CJ?5?5?$CC?$CFs?$CC?$AA@ 00507698 chgrp.obj - 0004:000096a4 ??_C@_0BA@NOLB@wrong?5cls?5value?$AA@ 005076a4 chgrp.obj - 0004:000096b4 ??_C@_09MMBH@?3?5item?5?$CFd?$AA@ 005076b4 chgrp.obj - 0004:000096c0 ??_C@_0BC@BKDP@bad?5cb?5in?5GST?1AST?$AA@ 005076c0 chgrp.obj - 0004:000096d4 ??_C@_0BA@GKAB@bad?5cb?5in?5GG?1AG?$AA@ 005076d4 chgrp.obj - 0004:000096e4 ??_C@_0BA@IEGG@bad?5cb?5in?5GL?1AL?$AA@ 005076e4 chgrp.obj - 0004:00009718 ??_C@_0P@CGPG@lines?5too?5long?$AA@ 00507718 chhex.obj - 0004:00009728 ??_C@_0BL@ILMN@bad?5dscv?5?$CIbad?5logic?5above?$CJ?$AA@ 00507728 chhex.obj - 0004:00009744 ??_C@_0BM@JAMO@ln?5and?5lnHope?5too?5far?5apart?$AA@ 00507744 chhex.obj - 0004:00009760 ??_C@_0CB@HKCL@_fHalfSel?5set?5but?5not?5_fRightSel@ 00507760 chhex.obj - 0004:00009784 ??_C@_0BF@PCNJ@non?9ins?5sel?5in?5fixed?$AA@ 00507784 chhex.obj - 0004:000097c0 ??_C@_0BF@DGBL@losing?5existing?5MBMP?$AA@ 005077c0 chmbmp.obj - 0004:000097f8 ??_C@_0BE@CFKI@losing?5existing?5PIC?$AA@ 005077f8 chpic.obj - 0004:00009830 ?_cmmCHTDD@CHTDD@@1UCMM@CMH@@A 00507830 chtxt.obj - 0004:00009838 ?_rgcmmeCHTDD@CHTDD@@0QAUCMME@CMH@@A 00507838 chtxt.obj - 0004:00009878 ??_C@_0BL@NNEJ@Can?8t?5open?5new?5chunky?5file?$AA@ 00507878 chtxt.obj - 0004:00009894 ??_C@_0BN@HJIE@Compiling?5chunky?5file?5failed?$AA@ 00507894 chtxt.obj - 0004:000098b4 ??_C@_0BN@IOLL@Can?8t?5create?5new?5chunky?5file?$AA@ 005078b4 chtxt.obj - 0004:00009bd8 ?gpMixer@@3PAUIAMMixer@@A 00507bd8 audiod:factory.obj - 0004:00009be0 ?__gfDbgEnabled@@3HA 00507be0 audiod:dpf.obj - 0004:00009be4 ?__guDbgLevel@@3IA 00507be4 audiod:dpf.obj - 0004:00009be8 ?rgchOutputFile@@3QADA 00507be8 audiod:dpf.obj - 0004:00009c28 ?gDebugOutActive@@3HA 00507c28 audiod:dpf.obj - 0004:00009c2c ?gDebugLogActive@@3HA 00507c2c audiod:dpf.obj - 0004:00009da0 ?g_cDebugMemAllocBlocks@@3KA 00507da0 audiod:debugmem.obj - 0004:00009da4 ?g_cbDebugMemAllocNet@@3KA 00507da4 audiod:debugmem.obj - 0004:00009da8 ?g_cbDebugMemAllocGross@@3KA 00507da8 audiod:debugmem.obj - 0004:00009dac ?g_cbDebugMaxNetMemAlloc@@3KA 00507dac audiod:debugmem.obj - 0004:0000bd2c __fltused 00509d2c LIBC:fpinit.obj - 0004:0000bd30 __ldused 00509d30 LIBC:fpinit.obj - 0004:0000bd34 ___fastflag 00509d34 LIBC:fpinit.obj - 0004:0000bd38 __adjust_fdiv 00509d38 LIBC:fpinit.obj - 0004:0000bd3c __FPinit 00509d3c LIBC:fpinit.obj - 0004:0000bd40 __FPmtinit 00509d40 LIBC:fpinit.obj - 0004:0000bd44 __FPmtterm 00509d44 LIBC:fpinit.obj - 0004:0000bd48 __aenvptr 00509d48 LIBC:wincrt0.obj - 0004:0000bd4c __wenvptr 00509d4c LIBC:wincrt0.obj - 0004:0000bd50 __aexit_rtn 00509d50 LIBC:wincrt0.obj - 0004:0000bd64 _errno 00509d64 LIBC:crt0dat.obj - 0004:0000bd68 __doserrno 00509d68 LIBC:crt0dat.obj - 0004:0000bd6c __umaskval 00509d6c LIBC:crt0dat.obj - 0004:0000bd70 __osver 00509d70 LIBC:crt0dat.obj - 0004:0000bd74 __winver 00509d74 LIBC:crt0dat.obj - 0004:0000bd78 __winmajor 00509d78 LIBC:crt0dat.obj - 0004:0000bd7c __winminor 00509d7c LIBC:crt0dat.obj - 0004:0000bd80 ___argc 00509d80 LIBC:crt0dat.obj - 0004:0000bd84 ___argv 00509d84 LIBC:crt0dat.obj - 0004:0000bd88 ___wargv 00509d88 LIBC:crt0dat.obj - 0004:0000bd8c __environ 00509d8c LIBC:crt0dat.obj - 0004:0000bd90 ___initenv 00509d90 LIBC:crt0dat.obj - 0004:0000bd94 __wenviron 00509d94 LIBC:crt0dat.obj - 0004:0000bd98 ___winitenv 00509d98 LIBC:crt0dat.obj - 0004:0000bd9c __pgmptr 00509d9c LIBC:crt0dat.obj - 0004:0000bda0 __wpgmptr 00509da0 LIBC:crt0dat.obj - 0004:0000bda4 __exitflag 00509da4 LIBC:crt0dat.obj - 0004:0000bda8 __C_Termination_Done 00509da8 LIBC:crt0dat.obj - 0004:0000bdac __pnhHeap 00509dac LIBC:malloc.obj - 0004:0000be18 __cfltcvt_tab 00509e18 LIBC:cmiscdat.obj - 0004:0000be48 __XcptActTab 00509e48 LIBC:winxfltr.obj - 0004:0000bec0 __First_FPE_Indx 00509ec0 LIBC:winxfltr.obj - 0004:0000bec4 __Num_FPE 00509ec4 LIBC:winxfltr.obj - 0004:0000bec8 __XcptActTabCount 00509ec8 LIBC:winxfltr.obj - 0004:0000becc __fpecode 00509ecc LIBC:winxfltr.obj - 0004:0000bed0 __pxcptinfoptrs 00509ed0 LIBC:winxfltr.obj - 0004:0000bed8 __mbctype 00509ed8 LIBC:mbctype.obj - 0004:0000bfdc ___mbcodepage 00509fdc LIBC:mbctype.obj - 0004:0000bfe0 ___mblcid 00509fe0 LIBC:mbctype.obj - 0004:0000bfe8 ___mbulinfo 00509fe8 LIBC:mbctype.obj - 0004:0000c0f0 __nhandle 0050a0f0 LIBC:ioinit.obj - 0004:0000c0f8 __osfile 0050a0f8 LIBC:ioinit.obj - 0004:0000c138 __osfhnd 0050a138 LIBC:ioinit.obj - 0004:0000c238 __pipech 0050a238 LIBC:ioinit.obj - 0004:0000c278 __heap_desc 0050a278 LIBC:heapinit.obj - 0004:0000c28c __heap_resetsize 0050a28c LIBC:heapinit.obj - 0004:0000c290 __amblksiz 0050a290 LIBC:heapinit.obj - 0004:0000c294 __heap_regionsize 0050a294 LIBC:heapinit.obj - 0004:0000c298 __heap_maxregsize 0050a298 LIBC:heapinit.obj - 0004:0000c508 __adbgmsg 0050a508 LIBC:crt0msg.obj - 0004:0000c518 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 0050a518 LIBC:hooks.obj - 0004:0000c51c ?__pTerminate@@3P6AXXZA 0050a51c LIBC:hooks.obj - 0004:0000c520 ?__pUnexpected@@3P6AXXZA 0050a520 LIBC:hooks.obj - 0004:0000c524 ?__pInconsistency@@3P6AXXZA 0050a524 LIBC:hooks.obj - 0004:0000c528 __cflush 0050a528 LIBC:fflush.obj - 0004:0000c530 __stdbuf 0050a530 LIBC:_sftbuf.obj - 0004:0000c538 __infinity 0050a538 LIBC:87tran.obj - 0004:0000c542 __minfinity 0050a542 LIBC:87tran.obj - 0004:0000c54c __logemax 0050a54c LIBC:87tran.obj - 0004:0000c57c __OP_POWjmptab 0050a57c LIBC:87tran.obj - 0004:0000c5cc __OP_LOG10jmptab 0050a5cc LIBC:87tran.obj - 0004:0000c5ec __OP_LOGjmptab 0050a5ec LIBC:87tran.obj - 0004:0000c60c __OP_EXPjmptab 0050a60c LIBC:87tran.obj - 0004:0000c62c __newmode 0050a62c LIBC:_newmode.obj - 0004:0000c630 ___mb_cur_max 0050a630 LIBC:nlsdata1.obj - 0004:0000c638 ___decimal_point 0050a638 LIBC:nlsdata1.obj - 0004:0000c63c ___decimal_point_length 0050a63c LIBC:nlsdata1.obj - 0004:0000c640 __pctype 0050a640 LIBC:ctype.obj - 0004:0000c644 __pwctype 0050a644 LIBC:ctype.obj - 0004:0000c648 __ctype 0050a648 LIBC:ctype.obj - 0004:0000ca78 __iob 0050aa78 LIBC:_file.obj - 0004:0000ccf8 __lastiob 0050acf8 LIBC:_file.obj - 0004:0000ccfc __commode 0050acfc LIBC:ncommode.obj - 0004:0000cd00 __indefinite 0050ad00 LIBC:87disp.obj - 0004:0000cd0a __piby2 0050ad0a LIBC:87disp.obj - 0004:0000cd1c __cpower 0050ad1c LIBC:87disp.obj - 0004:0000cdd0 ___lc_handle 0050add0 LIBC:nlsdata2.obj - 0004:0000cde8 ___lc_codepage 0050ade8 LIBC:nlsdata2.obj - 0004:0000ce20 __fmode 0050ae20 LIBC:txtmode.obj - 0004:0000ce28 __d_inf 0050ae28 LIBC:util.obj - 0004:0000ce30 __d_ind 0050ae30 LIBC:util.obj - 0004:0000ce38 __d_max 0050ae38 LIBC:util.obj - 0004:0000ce40 __d_min 0050ae40 LIBC:util.obj - 0004:0000ce48 __d_mzero 0050ae48 LIBC:util.obj - 0004:0000cfdc __matherr_flag 0050afdc LIBC:matherr.obj - 0004:0000cffc ___invalid_mb_chars 0050affc LIBC:setmbval.obj - 0004:0000d008 __pow10pos 0050b008 LIBC:constpow.obj - 0004:0000d168 __pow10neg 0050b168 LIBC:constpow.obj - 0004:0000d2c4 ___xc_a 0050b2c4 LIBC:crt0init.obj - 0004:0000d3d8 ___xc_z 0050b3d8 LIBC:crt0init.obj - 0004:0000d3dc ___xi_a 0050b3dc LIBC:crt0init.obj - 0004:0000d3e8 ___xi_z 0050b3e8 LIBC:crt0init.obj - 0004:0000d3ec ___xp_a 0050b3ec LIBC:crt0init.obj - 0004:0000d3f4 ___xp_z 0050b3f4 LIBC:crt0init.obj - 0004:0000d3f8 ___xt_a 0050b3f8 LIBC:crt0init.obj - 0004:0000d3fc ___xt_z 0050b3fc LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0050c000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0050c014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0050c028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 0050c03c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 0050c050 winmm:WINMM.dll - 0005:00000064 MSVFW32_IMPORT_DESCRIPTOR 0050c064 vfw32:MSVFW32.dll - 0005:00000078 AVIFIL32_IMPORT_DESCRIPTOR 0050c078 vfw32:AVIFIL32.dll - 0005:0000008c __IMPORT_DESCRIPTOR_MSACM32 0050c08c audiod:MSACM32.dll - 0005:000000a0 NULL_IMPORT_DESCRIPTOR 0050c0a0 kernel32:KERNEL32.dll - 0005:000000b4 __NULL_IMPORT_DESCRIPTOR 0050c0b4 audiod:MSACM32.dll - 0005:00000594 __imp__AVIStreamLength@4 0050c594 vfw32:AVIFIL32.dll - 0005:00000598 __imp__AVIStreamStart@4 0050c598 vfw32:AVIFIL32.dll - 0005:0000059c __imp__AVIFileInfoA@12 0050c59c vfw32:AVIFIL32.dll - 0005:000005a0 __imp__AVIFileInit@0 0050c5a0 vfw32:AVIFIL32.dll - 0005:000005a4 __imp__AVIFileExit@0 0050c5a4 vfw32:AVIFIL32.dll - 0005:000005a8 __imp__AVIFileRelease@4 0050c5a8 vfw32:AVIFIL32.dll - 0005:000005ac __imp__AVIStreamRelease@4 0050c5ac vfw32:AVIFIL32.dll - 0005:000005b0 __imp__AVIStreamGetFrameClose@4 0050c5b0 vfw32:AVIFIL32.dll - 0005:000005b4 __imp__AVIStreamGetFrameOpen@8 0050c5b4 vfw32:AVIFIL32.dll - 0005:000005b8 __imp__AVIFileGetStream@16 0050c5b8 vfw32:AVIFIL32.dll - 0005:000005bc __imp__AVIFileOpenA@16 0050c5bc vfw32:AVIFIL32.dll - 0005:000005c0 __imp__AVIStreamSampleToTime@8 0050c5c0 vfw32:AVIFIL32.dll - 0005:000005c4 __imp__AVIStreamTimeToSample@8 0050c5c4 vfw32:AVIFIL32.dll - 0005:000005c8 __imp__AVIStreamGetFrame@8 0050c5c8 vfw32:AVIFIL32.dll - 0005:000005cc \177AVIFIL32_NULL_THUNK_DATA 0050c5cc vfw32:AVIFIL32.dll - 0005:000005d0 __imp__ExtCreateRegion@12 0050c5d0 gdi32:GDI32.dll - 0005:000005d4 __imp__SetWinMetaFileBits@16 0050c5d4 gdi32:GDI32.dll - 0005:000005d8 __imp__CreateRectRgn@16 0050c5d8 gdi32:GDI32.dll - 0005:000005dc __imp__CreateEllipticRgn@16 0050c5dc gdi32:GDI32.dll - 0005:000005e0 __imp__GetClipRgn@8 0050c5e0 gdi32:GDI32.dll - 0005:000005e4 __imp__RealizePalette@4 0050c5e4 gdi32:GDI32.dll - 0005:000005e8 __imp__SelectPalette@12 0050c5e8 gdi32:GDI32.dll - 0005:000005ec __imp__GdiFlush@0 0050c5ec gdi32:GDI32.dll - 0005:000005f0 __imp__SetPaletteEntries@16 0050c5f0 gdi32:GDI32.dll - 0005:000005f4 __imp__AnimatePalette@16 0050c5f4 gdi32:GDI32.dll - 0005:000005f8 __imp__ResizePalette@8 0050c5f8 gdi32:GDI32.dll - 0005:000005fc __imp__CreatePalette@4 0050c5fc gdi32:GDI32.dll - 0005:00000600 __imp__GetDeviceCaps@8 0050c600 gdi32:GDI32.dll - 0005:00000604 __imp__GetSystemPaletteEntries@16 0050c604 gdi32:GDI32.dll - 0005:00000608 __imp__DeleteObject@4 0050c608 gdi32:GDI32.dll - 0005:0000060c __imp__SelectObject@8 0050c60c gdi32:GDI32.dll - 0005:00000610 __imp__SetPolyFillMode@8 0050c610 gdi32:GDI32.dll - 0005:00000614 __imp__DeleteDC@4 0050c614 gdi32:GDI32.dll - 0005:00000618 __imp__DeleteEnhMetaFile@4 0050c618 gdi32:GDI32.dll - 0005:0000061c __imp__GetStockObject@4 0050c61c gdi32:GDI32.dll - 0005:00000620 __imp__CreateDIBSection@24 0050c620 gdi32:GDI32.dll - 0005:00000624 __imp__CreateCompatibleDC@4 0050c624 gdi32:GDI32.dll - 0005:00000628 __imp__CloseEnhMetaFile@4 0050c628 gdi32:GDI32.dll - 0005:0000062c __imp__CombineRgn@16 0050c62c gdi32:GDI32.dll - 0005:00000630 __imp__SetDIBColorTable@16 0050c630 gdi32:GDI32.dll - 0005:00000634 __imp__FillRgn@12 0050c634 gdi32:GDI32.dll - 0005:00000638 __imp__Rectangle@20 0050c638 gdi32:GDI32.dll - 0005:0000063c __imp__IntersectClipRect@20 0050c63c gdi32:GDI32.dll - 0005:00000640 __imp__SetROP2@8 0050c640 gdi32:GDI32.dll - 0005:00000644 __imp__SetTextColor@8 0050c644 gdi32:GDI32.dll - 0005:00000648 __imp__TextOutA@20 0050c648 gdi32:GDI32.dll - 0005:0000064c __imp__SetBkColor@8 0050c64c gdi32:GDI32.dll - 0005:00000650 __imp__GetTextExtentPoint32A@16 0050c650 gdi32:GDI32.dll - 0005:00000654 __imp__GetTextMetricsA@8 0050c654 gdi32:GDI32.dll - 0005:00000658 __imp__SetBkMode@8 0050c658 gdi32:GDI32.dll - 0005:0000065c __imp__CreateBitmap@20 0050c65c gdi32:GDI32.dll - 0005:00000660 __imp__CreateSolidBrush@4 0050c660 gdi32:GDI32.dll - 0005:00000664 __imp__CreatePatternBrush@4 0050c664 gdi32:GDI32.dll - 0005:00000668 __imp__StretchBlt@44 0050c668 gdi32:GDI32.dll - 0005:0000066c __imp__SetStretchBltMode@8 0050c66c gdi32:GDI32.dll - 0005:00000670 __imp__SetTextAlign@8 0050c670 gdi32:GDI32.dll - 0005:00000674 __imp__PlayEnhMetaFile@12 0050c674 gdi32:GDI32.dll - 0005:00000678 __imp__SaveDC@4 0050c678 gdi32:GDI32.dll - 0005:0000067c __imp__RestoreDC@8 0050c67c gdi32:GDI32.dll - 0005:00000680 __imp__GetObjectA@12 0050c680 gdi32:GDI32.dll - 0005:00000684 __imp__CreateFontIndirectA@4 0050c684 gdi32:GDI32.dll - 0005:00000688 __imp__EnumFontsA@16 0050c688 gdi32:GDI32.dll - 0005:0000068c __imp__SelectClipRgn@8 0050c68c gdi32:GDI32.dll - 0005:00000690 __imp__OffsetRgn@12 0050c690 gdi32:GDI32.dll - 0005:00000694 __imp__GetEnhMetaFileA@4 0050c694 gdi32:GDI32.dll - 0005:00000698 __imp__GetEnhMetaFileHeader@12 0050c698 gdi32:GDI32.dll - 0005:0000069c __imp__SetEnhMetaFileBits@8 0050c69c gdi32:GDI32.dll - 0005:000006a0 __imp__GetEnhMetaFileBits@12 0050c6a0 gdi32:GDI32.dll - 0005:000006a4 __imp__CreateRectRgnIndirect@4 0050c6a4 gdi32:GDI32.dll - 0005:000006a8 \177GDI32_NULL_THUNK_DATA 0050c6a8 gdi32:GDI32.dll - 0005:000006ac __imp__GlobalFree@4 0050c6ac kernel32:KERNEL32.dll - 0005:000006b0 __imp__GlobalReAlloc@12 0050c6b0 kernel32:KERNEL32.dll - 0005:000006b4 __imp__GlobalSize@4 0050c6b4 kernel32:KERNEL32.dll - 0005:000006b8 __imp__GlobalAlloc@8 0050c6b8 kernel32:KERNEL32.dll - 0005:000006bc __imp__GetCurrentThreadId@0 0050c6bc kernel32:KERNEL32.dll - 0005:000006c0 __imp__EnterCriticalSection@4 0050c6c0 kernel32:KERNEL32.dll - 0005:000006c4 __imp__LeaveCriticalSection@4 0050c6c4 kernel32:KERNEL32.dll - 0005:000006c8 __imp__IsBadWritePtr@8 0050c6c8 kernel32:KERNEL32.dll - 0005:000006cc __imp__CompareStringA@24 0050c6cc kernel32:KERNEL32.dll - 0005:000006d0 __imp__WideCharToMultiByte@32 0050c6d0 kernel32:KERNEL32.dll - 0005:000006d4 __imp__DeleteFileA@4 0050c6d4 kernel32:KERNEL32.dll - 0005:000006d8 __imp__CreateFileA@28 0050c6d8 kernel32:KERNEL32.dll - 0005:000006dc __imp__CloseHandle@4 0050c6dc kernel32:KERNEL32.dll - 0005:000006e0 __imp__RaiseException@16 0050c6e0 kernel32:KERNEL32.dll - 0005:000006e4 __imp__MultiByteToWideChar@24 0050c6e4 kernel32:KERNEL32.dll - 0005:000006e8 __imp__LoadResource@8 0050c6e8 kernel32:KERNEL32.dll - 0005:000006ec __imp__FindResourceA@12 0050c6ec kernel32:KERNEL32.dll - 0005:000006f0 __imp__LoadLibraryA@4 0050c6f0 kernel32:KERNEL32.dll - 0005:000006f4 __imp__LockResource@4 0050c6f4 kernel32:KERNEL32.dll - 0005:000006f8 __imp__GetVersionExA@4 0050c6f8 kernel32:KERNEL32.dll - 0005:000006fc __imp__Sleep@4 0050c6fc kernel32:KERNEL32.dll - 0005:00000700 __imp__GetProcAddress@8 0050c700 kernel32:KERNEL32.dll - 0005:00000704 __imp__FreeLibrary@4 0050c704 kernel32:KERNEL32.dll - 0005:00000708 __imp__SetThreadPriority@8 0050c708 kernel32:KERNEL32.dll - 0005:0000070c __imp__CreateEventA@16 0050c70c kernel32:KERNEL32.dll - 0005:00000710 __imp__CreateThread@24 0050c710 kernel32:KERNEL32.dll - 0005:00000714 __imp__WaitForSingleObject@8 0050c714 kernel32:KERNEL32.dll - 0005:00000718 __imp__ResumeThread@4 0050c718 kernel32:KERNEL32.dll - 0005:0000071c __imp__SetEvent@4 0050c71c kernel32:KERNEL32.dll - 0005:00000720 __imp__GlobalUnlock@4 0050c720 kernel32:KERNEL32.dll - 0005:00000724 __imp__GetEnvironmentVariableA@12 0050c724 kernel32:KERNEL32.dll - 0005:00000728 __imp__GlobalLock@4 0050c728 kernel32:KERNEL32.dll - 0005:0000072c __imp__GetCommandLineA@0 0050c72c kernel32:KERNEL32.dll - 0005:00000730 __imp__CreateProcessA@40 0050c730 kernel32:KERNEL32.dll - 0005:00000734 __imp__FatalAppExitA@8 0050c734 kernel32:KERNEL32.dll - 0005:00000738 __imp__OutputDebugStringA@4 0050c738 kernel32:KERNEL32.dll - 0005:0000073c __imp__GetLastError@0 0050c73c kernel32:KERNEL32.dll - 0005:00000740 __imp__MoveFileA@8 0050c740 kernel32:KERNEL32.dll - 0005:00000744 __imp__GetFileAttributesA@4 0050c744 kernel32:KERNEL32.dll - 0005:00000748 __imp__SearchPathA@24 0050c748 kernel32:KERNEL32.dll - 0005:0000074c __imp__GetDriveTypeA@4 0050c74c kernel32:KERNEL32.dll - 0005:00000750 __imp__GetTempPathA@8 0050c750 kernel32:KERNEL32.dll - 0005:00000754 __imp__ReadFile@20 0050c754 kernel32:KERNEL32.dll - 0005:00000758 __imp__GetFullPathNameA@16 0050c758 kernel32:KERNEL32.dll - 0005:0000075c __imp__WriteFile@20 0050c75c kernel32:KERNEL32.dll - 0005:00000760 __imp__FlushFileBuffers@4 0050c760 kernel32:KERNEL32.dll - 0005:00000764 __imp__SetEndOfFile@4 0050c764 kernel32:KERNEL32.dll - 0005:00000768 __imp__SetFilePointer@16 0050c768 kernel32:KERNEL32.dll - 0005:0000076c __imp__IsBadReadPtr@8 0050c76c kernel32:KERNEL32.dll - 0005:00000770 __imp__DeleteCriticalSection@4 0050c770 kernel32:KERNEL32.dll - 0005:00000774 __imp__GetVersion@0 0050c774 kernel32:KERNEL32.dll - 0005:00000778 __imp__GetStartupInfoA@4 0050c778 kernel32:KERNEL32.dll - 0005:0000077c __imp__GetModuleHandleA@4 0050c77c kernel32:KERNEL32.dll - 0005:00000780 __imp__GetPrivateProfileStringA@24 0050c780 kernel32:KERNEL32.dll - 0005:00000784 __imp__WritePrivateProfileStringA@16 0050c784 kernel32:KERNEL32.dll - 0005:00000788 __imp__GetPrivateProfileIntA@16 0050c788 kernel32:KERNEL32.dll - 0005:0000078c __imp__GetEnvironmentStrings@0 0050c78c kernel32:KERNEL32.dll - 0005:00000790 __imp__RtlUnwind@16 0050c790 kernel32:KERNEL32.dll - 0005:00000794 __imp___hwrite@12 0050c794 kernel32:KERNEL32.dll - 0005:00000798 __imp___hread@12 0050c798 kernel32:KERNEL32.dll - 0005:0000079c __imp___llseek@12 0050c79c kernel32:KERNEL32.dll - 0005:000007a0 __imp___lcreat@8 0050c7a0 kernel32:KERNEL32.dll - 0005:000007a4 __imp___lclose@4 0050c7a4 kernel32:KERNEL32.dll - 0005:000007a8 __imp___lopen@8 0050c7a8 kernel32:KERNEL32.dll - 0005:000007ac __imp__GlobalHandle@4 0050c7ac kernel32:KERNEL32.dll - 0005:000007b0 __imp__GetProfileIntA@12 0050c7b0 kernel32:KERNEL32.dll - 0005:000007b4 __imp__lstrlenA@4 0050c7b4 kernel32:KERNEL32.dll - 0005:000007b8 __imp__lstrcatA@8 0050c7b8 kernel32:KERNEL32.dll - 0005:000007bc __imp__DebugBreak@0 0050c7bc kernel32:KERNEL32.dll - 0005:000007c0 __imp__GetStdHandle@4 0050c7c0 kernel32:KERNEL32.dll - 0005:000007c4 __imp__ExitProcess@4 0050c7c4 kernel32:KERNEL32.dll - 0005:000007c8 __imp__UnhandledExceptionFilter@4 0050c7c8 kernel32:KERNEL32.dll - 0005:000007cc __imp__GetModuleFileNameA@12 0050c7cc kernel32:KERNEL32.dll - 0005:000007d0 __imp__GetACP@0 0050c7d0 kernel32:KERNEL32.dll - 0005:000007d4 __imp__GetOEMCP@0 0050c7d4 kernel32:KERNEL32.dll - 0005:000007d8 __imp__GetCPInfo@8 0050c7d8 kernel32:KERNEL32.dll - 0005:000007dc __imp__SetStdHandle@8 0050c7dc kernel32:KERNEL32.dll - 0005:000007e0 __imp__InitializeCriticalSection@4 0050c7e0 kernel32:KERNEL32.dll - 0005:000007e4 __imp__GetFileType@4 0050c7e4 kernel32:KERNEL32.dll - 0005:000007e8 __imp__VirtualFree@12 0050c7e8 kernel32:KERNEL32.dll - 0005:000007ec __imp__VirtualAlloc@16 0050c7ec kernel32:KERNEL32.dll - 0005:000007f0 __imp__SetUnhandledExceptionFilter@4 0050c7f0 kernel32:KERNEL32.dll - 0005:000007f4 __imp__IsBadCodePtr@4 0050c7f4 kernel32:KERNEL32.dll - 0005:000007f8 \177KERNEL32_NULL_THUNK_DATA 0050c7f8 kernel32:KERNEL32.dll - 0005:000007fc __imp__acmStreamClose@8 0050c7fc audiod:MSACM32.dll - 0005:00000800 __imp__acmStreamOpen@32 0050c800 audiod:MSACM32.dll - 0005:00000804 __imp__acmStreamUnprepareHeader@12 0050c804 audiod:MSACM32.dll - 0005:00000808 __imp__acmStreamSize@16 0050c808 audiod:MSACM32.dll - 0005:0000080c __imp__acmFormatSuggest@20 0050c80c audiod:MSACM32.dll - 0005:00000810 __imp__acmStreamPrepareHeader@12 0050c810 audiod:MSACM32.dll - 0005:00000814 __imp__acmStreamConvert@12 0050c814 audiod:MSACM32.dll - 0005:00000818 \177MSACM32_NULL_THUNK_DATA 0050c818 audiod:MSACM32.dll - 0005:0000081c __imp__DrawDibOpen@0 0050c81c vfw32:MSVFW32.dll - 0005:00000820 __imp__DrawDibDraw@52 0050c820 vfw32:MSVFW32.dll - 0005:00000824 __imp__DrawDibClose@4 0050c824 vfw32:MSVFW32.dll - 0005:00000828 \177MSVFW32_NULL_THUNK_DATA 0050c828 vfw32:MSVFW32.dll - 0005:0000082c __imp__MessageBoxA@16 0050c82c user32:USER32.dll - 0005:00000830 __imp__SetDlgItemTextA@12 0050c830 user32:USER32.dll - 0005:00000834 __imp__EndDialog@8 0050c834 user32:USER32.dll - 0005:00000838 __imp__GetActiveWindow@0 0050c838 user32:USER32.dll - 0005:0000083c __imp__GetParent@4 0050c83c user32:USER32.dll - 0005:00000840 __imp__DialogBoxParamA@20 0050c840 user32:USER32.dll - 0005:00000844 __imp__IsIconic@4 0050c844 user32:USER32.dll - 0005:00000848 __imp__EndPaint@8 0050c848 user32:USER32.dll - 0005:0000084c __imp__GetMessageTime@0 0050c84c user32:USER32.dll - 0005:00000850 __imp__GetDoubleClickTime@0 0050c850 user32:USER32.dll - 0005:00000854 __imp__DefMDIChildProcA@16 0050c854 user32:USER32.dll - 0005:00000858 __imp__SetClipboardViewer@4 0050c858 user32:USER32.dll - 0005:0000085c __imp__BeginPaint@8 0050c85c user32:USER32.dll - 0005:00000860 __imp__ReleaseDC@8 0050c860 user32:USER32.dll - 0005:00000864 __imp__PostQuitMessage@4 0050c864 user32:USER32.dll - 0005:00000868 __imp__SendMessageA@16 0050c868 user32:USER32.dll - 0005:0000086c __imp__SetWindowLongA@12 0050c86c user32:USER32.dll - 0005:00000870 __imp__DefFrameProcA@20 0050c870 user32:USER32.dll - 0005:00000874 __imp__ChangeClipboardChain@8 0050c874 user32:USER32.dll - 0005:00000878 __imp__TranslateMDISysAccel@8 0050c878 user32:USER32.dll - 0005:0000087c __imp__TranslateAcceleratorA@12 0050c87c user32:USER32.dll - 0005:00000880 __imp__PeekMessageA@20 0050c880 user32:USER32.dll - 0005:00000884 __imp__GetCursorPos@4 0050c884 user32:USER32.dll - 0005:00000888 __imp__TranslateMessage@4 0050c888 user32:USER32.dll - 0005:0000088c __imp__DispatchMessageA@4 0050c88c user32:USER32.dll - 0005:00000890 __imp__GetMessageA@16 0050c890 user32:USER32.dll - 0005:00000894 __imp__LoadIconA@8 0050c894 user32:USER32.dll - 0005:00000898 __imp__GetClipboardOwner@0 0050c898 user32:USER32.dll - 0005:0000089c __imp__SetFocus@4 0050c89c user32:USER32.dll - 0005:000008a0 __imp__GetWindowLongA@8 0050c8a0 user32:USER32.dll - 0005:000008a4 __imp__GetWindow@8 0050c8a4 user32:USER32.dll - 0005:000008a8 __imp__LoadAcceleratorsA@8 0050c8a8 user32:USER32.dll - 0005:000008ac __imp__GetClientRect@8 0050c8ac user32:USER32.dll - 0005:000008b0 __imp__WindowFromPoint@8 0050c8b0 user32:USER32.dll - 0005:000008b4 __imp__FillRect@12 0050c8b4 user32:USER32.dll - 0005:000008b8 __imp__InvertRect@8 0050c8b8 user32:USER32.dll - 0005:000008bc __imp__ScrollWindowEx@32 0050c8bc user32:USER32.dll - 0005:000008c0 __imp__UpdateWindow@4 0050c8c0 user32:USER32.dll - 0005:000008c4 __imp__ValidateRect@8 0050c8c4 user32:USER32.dll - 0005:000008c8 __imp__GetUpdateRect@12 0050c8c8 user32:USER32.dll - 0005:000008cc __imp__GetSystemMetrics@4 0050c8cc user32:USER32.dll - 0005:000008d0 __imp__CreateCursor@28 0050c8d0 user32:USER32.dll - 0005:000008d4 __imp__DestroyCursor@4 0050c8d4 user32:USER32.dll - 0005:000008d8 __imp__SetCapture@4 0050c8d8 user32:USER32.dll - 0005:000008dc __imp__LoadMenuA@8 0050c8dc user32:USER32.dll - 0005:000008e0 __imp__SetMenu@8 0050c8e0 user32:USER32.dll - 0005:000008e4 __imp__CheckMenuItem@12 0050c8e4 user32:USER32.dll - 0005:000008e8 __imp__EnableMenuItem@12 0050c8e8 user32:USER32.dll - 0005:000008ec __imp__GetMenuItemID@8 0050c8ec user32:USER32.dll - 0005:000008f0 __imp__GetSubMenu@8 0050c8f0 user32:USER32.dll - 0005:000008f4 __imp__SetScrollRange@20 0050c8f4 user32:USER32.dll - 0005:000008f8 __imp__SetScrollPos@16 0050c8f8 user32:USER32.dll - 0005:000008fc __imp__GetDlgItemTextA@16 0050c8fc user32:USER32.dll - 0005:00000900 __imp__CheckDlgButton@12 0050c900 user32:USER32.dll - 0005:00000904 __imp__CheckRadioButton@16 0050c904 user32:USER32.dll - 0005:00000908 __imp__IsDlgButtonChecked@8 0050c908 user32:USER32.dll - 0005:0000090c __imp__GetDlgItem@8 0050c90c user32:USER32.dll - 0005:00000910 __imp__SetTimer@16 0050c910 user32:USER32.dll - 0005:00000914 __imp__GetCapture@0 0050c914 user32:USER32.dll - 0005:00000918 __imp__ReleaseCapture@0 0050c918 user32:USER32.dll - 0005:0000091c __imp__InvalidateRect@12 0050c91c user32:USER32.dll - 0005:00000920 __imp__IsZoomed@4 0050c920 user32:USER32.dll - 0005:00000924 __imp__ShowWindow@8 0050c924 user32:USER32.dll - 0005:00000928 __imp__GetDC@4 0050c928 user32:USER32.dll - 0005:0000092c __imp__IsWindow@4 0050c92c user32:USER32.dll - 0005:00000930 __imp__SetCursorPos@8 0050c930 user32:USER32.dll - 0005:00000934 __imp__ShowCursor@4 0050c934 user32:USER32.dll - 0005:00000938 __imp__GetAsyncKeyState@4 0050c938 user32:USER32.dll - 0005:0000093c __imp__GetKeyState@4 0050c93c user32:USER32.dll - 0005:00000940 __imp__LoadCursorA@8 0050c940 user32:USER32.dll - 0005:00000944 __imp__SetCursor@4 0050c944 user32:USER32.dll - 0005:00000948 __imp__CharLowerBuffA@8 0050c948 user32:USER32.dll - 0005:0000094c __imp__ScrollDC@28 0050c94c user32:USER32.dll - 0005:00000950 __imp__CharUpperBuffA@8 0050c950 user32:USER32.dll - 0005:00000954 __imp__SetWindowTextA@8 0050c954 user32:USER32.dll - 0005:00000958 __imp__CreateMDIWindowA@40 0050c958 user32:USER32.dll - 0005:0000095c __imp__DestroyWindow@4 0050c95c user32:USER32.dll - 0005:00000960 __imp__ScreenToClient@8 0050c960 user32:USER32.dll - 0005:00000964 __imp__GetMenuItemCount@4 0050c964 user32:USER32.dll - 0005:00000968 __imp__ClientToScreen@8 0050c968 user32:USER32.dll - 0005:0000096c __imp__SendDlgItemMessageA@20 0050c96c user32:USER32.dll - 0005:00000970 __imp__GetPropA@8 0050c970 user32:USER32.dll - 0005:00000974 __imp__SetPropA@12 0050c974 user32:USER32.dll - 0005:00000978 __imp__GetWindowRect@8 0050c978 user32:USER32.dll - 0005:0000097c __imp__MoveWindow@24 0050c97c user32:USER32.dll - 0005:00000980 __imp__RemovePropA@8 0050c980 user32:USER32.dll - 0005:00000984 __imp__KillTimer@8 0050c984 user32:USER32.dll - 0005:00000988 __imp__SetClipboardData@8 0050c988 user32:USER32.dll - 0005:0000098c __imp__EmptyClipboard@0 0050c98c user32:USER32.dll - 0005:00000990 __imp__OpenClipboard@4 0050c990 user32:USER32.dll - 0005:00000994 __imp__EnumClipboardFormats@4 0050c994 user32:USER32.dll - 0005:00000998 __imp__GetCaretBlinkTime@0 0050c998 user32:USER32.dll - 0005:0000099c __imp__GetMenuStringA@20 0050c99c user32:USER32.dll - 0005:000009a0 __imp__ModifyMenuA@20 0050c9a0 user32:USER32.dll - 0005:000009a4 __imp__InsertMenuA@20 0050c9a4 user32:USER32.dll - 0005:000009a8 __imp__DeleteMenu@12 0050c9a8 user32:USER32.dll - 0005:000009ac __imp__RegisterClassA@4 0050c9ac user32:USER32.dll - 0005:000009b0 __imp__CreateWindowExA@48 0050c9b0 user32:USER32.dll - 0005:000009b4 __imp__CloseClipboard@0 0050c9b4 user32:USER32.dll - 0005:000009b8 __imp__GetClipboardData@4 0050c9b8 user32:USER32.dll - 0005:000009bc __imp__wsprintfA 0050c9bc user32:USER32.dll - 0005:000009c0 __imp__wvsprintfA@12 0050c9c0 user32:USER32.dll - 0005:000009c4 \177USER32_NULL_THUNK_DATA 0050c9c4 user32:USER32.dll - 0005:000009c8 __imp__midiOutUnprepareHeader@12 0050c9c8 winmm:WINMM.dll - 0005:000009cc __imp__midiOutClose@4 0050c9cc winmm:WINMM.dll - 0005:000009d0 __imp__midiOutOpen@20 0050c9d0 winmm:WINMM.dll - 0005:000009d4 __imp__midiOutPrepareHeader@12 0050c9d4 winmm:WINMM.dll - 0005:000009d8 __imp__mciSendCommandA@16 0050c9d8 winmm:WINMM.dll - 0005:000009dc __imp__midiOutReset@4 0050c9dc winmm:WINMM.dll - 0005:000009e0 __imp__midiOutSetVolume@8 0050c9e0 winmm:WINMM.dll - 0005:000009e4 __imp__midiOutGetVolume@8 0050c9e4 winmm:WINMM.dll - 0005:000009e8 __imp__waveOutGetNumDevs@0 0050c9e8 winmm:WINMM.dll - 0005:000009ec __imp__waveOutGetDevCapsA@12 0050c9ec winmm:WINMM.dll - 0005:000009f0 __imp__timeGetTime@0 0050c9f0 winmm:WINMM.dll - 0005:000009f4 __imp__midiOutShortMsg@8 0050c9f4 winmm:WINMM.dll - 0005:000009f8 __imp__timeKillEvent@4 0050c9f8 winmm:WINMM.dll - 0005:000009fc __imp__waveOutPrepareHeader@12 0050c9fc winmm:WINMM.dll - 0005:00000a00 __imp__waveOutUnprepareHeader@12 0050ca00 winmm:WINMM.dll - 0005:00000a04 __imp__waveOutMessage@16 0050ca04 winmm:WINMM.dll - 0005:00000a08 __imp__timeSetEvent@20 0050ca08 winmm:WINMM.dll - 0005:00000a0c __imp__timeGetDevCaps@8 0050ca0c winmm:WINMM.dll - 0005:00000a10 __imp__waveOutClose@4 0050ca10 winmm:WINMM.dll - 0005:00000a14 __imp__waveOutReset@4 0050ca14 winmm:WINMM.dll - 0005:00000a18 __imp__waveOutGetID@8 0050ca18 winmm:WINMM.dll - 0005:00000a1c __imp__waveOutOpen@24 0050ca1c winmm:WINMM.dll - 0005:00000a20 __imp__waveOutGetVolume@8 0050ca20 winmm:WINMM.dll - 0005:00000a24 __imp__waveOutSetVolume@8 0050ca24 winmm:WINMM.dll - 0005:00000a28 __imp__waveOutSetPlaybackRate@8 0050ca28 winmm:WINMM.dll - 0005:00000a2c __imp__waveOutGetErrorTextA@12 0050ca2c winmm:WINMM.dll - 0005:00000a30 __imp__waveOutWrite@12 0050ca30 winmm:WINMM.dll - 0005:00000a34 __imp__waveOutPause@4 0050ca34 winmm:WINMM.dll - 0005:00000a38 __imp__waveOutRestart@4 0050ca38 winmm:WINMM.dll - 0005:00000a3c __imp__waveOutBreakLoop@4 0050ca3c winmm:WINMM.dll - 0005:00000a40 __imp__waveOutGetPosition@12 0050ca40 winmm:WINMM.dll - 0005:00000a44 __imp__waveOutGetPitch@8 0050ca44 winmm:WINMM.dll - 0005:00000a48 __imp__waveOutSetPitch@8 0050ca48 winmm:WINMM.dll - 0005:00000a4c __imp__waveOutGetPlaybackRate@8 0050ca4c winmm:WINMM.dll - 0005:00000a50 \177WINMM_NULL_THUNK_DATA 0050ca50 winmm:WINMM.dll - 0005:00000a54 __imp__GetOpenFileNameA@4 0050ca54 comdlg32:comdlg32.dll - 0005:00000a58 __imp__GetSaveFileNameA@4 0050ca58 comdlg32:comdlg32.dll - 0005:00000a5c \177comdlg32_NULL_THUNK_DATA 0050ca5c comdlg32:comdlg32.dll - - entry point at 0001:000ed81f - - Static symbols - - 0001:000ce180 _$$1000 004cf180 f chtxt.obj - 0001:000ce5e0 _$$8300 004cf5e0 f chtxt.obj - 0001:000ce6e0 _$$8000 004cf6e0 f chtxt.obj - 0001:000cd590 _$$1000 004ce590 f chpic.obj - 0001:000cd9d0 _$$8300 004ce9d0 f chpic.obj - 0001:000cdaa0 _$$8000 004ceaa0 f chpic.obj - 0001:000cca50 _$$1000 004cda50 f chmbmp.obj - 0001:000ccea0 _$$8300 004cdea0 f chmbmp.obj - 0001:000ccf70 _$$8000 004cdf70 f chmbmp.obj - 0001:000c8cd0 _$$1000 004c9cd0 f chhex.obj - 0001:000cc2c0 _$$8300 004cd2c0 f chhex.obj - 0001:000cc2e0 _$$8000 004cd2e0 f chhex.obj - 0001:000c3cb0 _$$1000 004c4cb0 f chgrp.obj - 0001:000c73c0 _$$8000 004c83c0 f chgrp.obj - 0001:000c84f0 _$$8300 004c94f0 f chgrp.obj - 0001:000c2970 _$$8300 004c3970 f ched.obj - 0001:000c2ea0 _$$1000 004c3ea0 f ched.obj - 0001:000c3390 _$$9300 004c4390 f ched.obj - 0001:000c33b0 _$$a300 004c43b0 f ched.obj - 0001:000c33d0 _$$b300 004c43d0 f ched.obj - 0001:000c34c0 _$$8000 004c44c0 f ched.obj - 0001:000b92c0 _$$1000 004ba2c0 f chdoc.obj - 0001:000bc8d0 _$$8000 004bd8d0 f chdoc.obj - 0001:000c2600 _$$8300 004c3600 f chdoc.obj - 0001:000b7420 _$$1000 004b8420 f mbmp.obj - 0001:000b8aa0 _$$a200 004b9aa0 f mbmp.obj - 0001:000b8b40 _$$8000 004b9b40 f mbmp.obj - 0001:000b2e60 _$$1000 004b3e60 f text.obj - 0001:000b6430 _$$8000 004b7430 f text.obj - 0001:000b69d0 _$$a200 004b79d0 f text.obj - 0001:000b0e10 _$$a200 004b1e10 f video.obj - 0001:000b10c0 _$$1000 004b20c0 f video.obj - 0001:000b2990 _$$b200 004b3990 f video.obj - 0001:000b2a80 _$$8000 004b3a80 f video.obj - 0001:000aff50 _$$1000 004b0f50 f ctl.obj - 0001:000b0930 _$$a200 004b1930 f ctl.obj - 0001:000b0990 _$$8000 004b1990 f ctl.obj - 0001:000ae790 _$$1000 004af790 f dlgwin.obj - 0001:000af860 _$$a200 004b0860 f dlgwin.obj - 0001:000af880 _$$8000 004b0880 f dlgwin.obj - 0001:000ad7c0 _$$1000 004ae7c0 f dlg.obj - 0001:000ae060 _$$a200 004af060 f dlg.obj - 0001:000ae0f0 _$$8000 004af0f0 f dlg.obj - 0001:000abdd0 _$$1000 004acdd0 f midi.obj - 0001:000aced0 _$$a200 004aded0 f midi.obj - 0001:000acfa0 _$$8000 004adfa0 f midi.obj - 0001:000a5980 _$$1000 004a6980 f mididev2.obj - 0001:000a8d10 _$$8000 004a9d10 f mididev2.obj - 0001:000ab2b0 _$$a200 004ac2b0 f mididev2.obj - 0001:000a4da0 _$$a200 004a5da0 f mididev.obj - 0001:000a5140 _$$1000 004a6140 f mididev.obj - 0001:000a5290 _$$b200 004a6290 f mididev.obj - 0001:000a52b0 _$$c200 004a62b0 f mididev.obj - 0001:000a52d0 _$$d200 004a62d0 f mididev.obj - 0001:000a5340 _$$8000 004a6340 f mididev.obj - 0001:000a25e0 _$$1000 004a35e0 f sndam.obj - 0001:000a4a80 _$$a200 004a5a80 f sndam.obj - 0001:000a4c90 _$$8000 004a5c90 f sndam.obj - 0001:0009f140 _$$1000 004a0140 f sndm.obj - 0001:000a1f70 _$$a200 004a2f70 f sndm.obj - 0001:000a1f90 _$$8000 004a2f90 f sndm.obj - 0001:00095a90 _$$1000 00496a90 f rtxt2.obj - 0001:00098d50 _$$8000 00499d50 f rtxt2.obj - 0001:0009ea10 _$$a200 0049fa10 f rtxt2.obj - 0001:0008b820 _$$1000 0048c820 f rtxt.obj - 0001:0008ed60 _$$8000 0048fd60 f rtxt.obj - 0001:00095390 _$$a200 00496390 f rtxt.obj - 0001:00088150 _$$1000 00489150 f groups2.obj - 0001:0008b090 _$$8000 0048c090 f groups2.obj - 0001:00080f40 _$$1000 00481f40 f groups.obj - 0001:000878b0 _$$8000 004888b0 f groups.obj - 0001:0007bd40 _$$8000 0047cd40 f screxe.obj - 0001:0007c2f0 _$$1000 0047d2f0 f screxe.obj - 0001:000807f0 _$$9000 004817f0 f screxe.obj - 0001:00074070 _$$1000 00475070 f scrcom.obj - 0001:0007bac0 _$$8000 0047cac0 f scrcom.obj - 0001:000716e0 _$$1000 004726e0 f stream.obj - 0001:00073a20 _$$8000 00474a20 f stream.obj - 0001:000711c0 _$$1000 004721c0 f chse.obj - 0001:000711e0 _$$8000 004721e0 f chse.obj - 0001:0006f960 _$$1000 00470960 f lex.obj - 0001:00071110 _$$8000 00472110 f lex.obj - 0001:00068c00 _$$1000 00469c00 f chcm.obj - 0001:0006c5e0 _$$8000 0046d5e0 f chcm.obj - 0001:0006f060 _$$e200 00470060 f chcm.obj - 0001:000674b0 _$$a200 004684b0 f clip.obj - 0001:000678a0 _$$1000 004688a0 f clip.obj - 0001:00068470 _$$b200 00469470 f clip.obj - 0001:00068490 _$$c200 00469490 f clip.obj - 0001:000684b0 _$$d200 004694b0 f clip.obj - 0001:00068570 _$$8000 00469570 f clip.obj - 0001:0005ffd0 _$$1000 00460fd0 f docb.obj - 0001:000634e0 _$$8000 004644e0 f docb.obj - 0001:000670a0 _$$a200 004680a0 f docb.obj - 0001:0005f890 _$$1000 00460890 f textdoc.obj - 0001:0005f900 _$$8000 00460900 f textdoc.obj - 0001:0005fa40 _$$a200 00460a40 f textdoc.obj - 0001:0005f740 _$$e200 00460740 f scrcomg.obj - 0001:0005f760 _$$1000 00460760 f scrcomg.obj - 0001:0005f780 _$$8000 00460780 f scrcomg.obj - 0001:0005b3e0 _$$e200 0045c3e0 f screxeg.obj - 0001:0005b800 _$$1000 0045c800 f screxeg.obj - 0001:0005f100 _$$f200 00460100 f screxeg.obj - 0001:0005f120 _$$8000 00460120 f screxeg.obj - 0001:000531b0 _$$1000 004541b0 f kidspace.obj - 0001:00056540 _$$8000 00457540 f kidspace.obj - 0001:0005af90 _$$e200 0045bf90 f kidspace.obj - 0001:0004e8b0 _$$1000 0044f8b0 f kidhelp.obj - 0001:00051890 _$$8000 00452890 f kidhelp.obj - 0001:000526f0 _$$e200 004536f0 f kidhelp.obj - 0001:0004cc40 _$$1000 0044dc40 f kidworld.obj - 0001:0004e0a0 _$$e200 0044f0a0 f kidworld.obj - 0001:0004e170 _$$8000 0044f170 f kidworld.obj - 0001:0004be00 _$$1000 0044ce00 f picwin.obj - 0001:0004c480 _$$a200 0044d480 f picwin.obj - 0001:0004c4e0 _$$8000 0044d4e0 f picwin.obj - 0001:0004a3c0 _$$1000 0044b3c0 f menuwin.obj - 0001:0004b8f0 _$$a200 0044c8f0 f menuwin.obj - 0001:0004b950 _$$8000 0044c950 f menuwin.obj - 0001:00049a10 _$$1000 0044aa10 f gobwin.obj - 0001:00049e10 _$$a200 0044ae10 f gobwin.obj - 0001:00049e30 _$$8000 0044ae30 f gobwin.obj - 0001:000453e0 _$$1000 004463e0 f gfxwin.obj - 0001:00047cb0 _$$8000 00448cb0 f gfxwin.obj - 0001:00049520 _$$b200 0044a520 f gfxwin.obj - 0001:000425b0 _$$1000 004435b0 f appbwin.obj - 0001:00044030 _$$a200 00445030 f appbwin.obj - 0001:000447b0 _$$b200 004457b0 f appbwin.obj - 0001:000447d0 _$$c200 004457d0 f appbwin.obj - 0001:000447f0 _$$d200 004457f0 f appbwin.obj - 0001:00044850 _$$8000 00445850 f appbwin.obj - 0001:00041f30 _$$1000 00442f30 f pic.obj - 0001:00041fb0 _$$a200 00442fb0 f pic.obj - 0001:00041fd0 _$$8000 00442fd0 f pic.obj - 0001:0003e9f0 _$$1000 0043f9f0 f region.obj - 0001:00041a50 _$$8000 00442a50 f region.obj - 0001:00041d40 _$$a200 00442d40 f region.obj - 0001:0003e0d0 _$$1000 0043f0d0 f mbmpgui.obj - 0001:0003e560 _$$a200 0043f560 f mbmpgui.obj - 0001:0003e5f0 _$$8000 0043f5f0 f mbmpgui.obj - 0001:000396d0 _$$1000 0043a6d0 f gob.obj - 0001:0003c9e0 _$$8000 0043d9e0 f gob.obj - 0001:0003db60 _$$a200 0043eb60 f gob.obj - 0001:00033020 _$$a200 00434020 f gfx.obj - 0001:00033560 _$$1000 00434560 f gfx.obj - 0001:00034e30 _$$8000 00435e30 f gfx.obj - 0001:00038fa0 _$$b200 00439fa0 f gfx.obj - 0001:00038fc0 _$$c200 00439fc0 f gfx.obj - 0001:00038fe0 _$$d200 00439fe0 f gfx.obj - 0001:00032e20 _$$1000 00433e20 f cursor.obj - 0001:00032e70 _$$a200 00433e70 f cursor.obj - 0001:00032ed0 _$$8000 00433ed0 f cursor.obj - 0001:0002f610 _$$1000 00430610 f cmd.obj - 0001:00032370 _$$8000 00433370 f cmd.obj - 0001:000327d0 _$$a200 004337d0 f cmd.obj - 0001:0002e2c0 _$$a200 0042f2c0 f clok.obj - 0001:0002e640 _$$1000 0042f640 f clok.obj - 0001:0002ee90 _$$b200 0042fe90 f clok.obj - 0001:0002ef00 _$$8000 0042ff00 f clok.obj - 0001:00029580 _$$1000 0042a580 f appb.obj - 0001:0002cb80 _$$8000 0042db80 f appb.obj - 0001:0002dea0 _$$a200 0042eea0 f appb.obj - 0001:0002e0e0 _$$b200 0042f0e0 f appb.obj - 0001:0002e100 _$$c200 0042f100 f appb.obj - 0001:0002e120 _$$d200 0042f120 f appb.obj - 0001:00026a90 _$$8000 00427a90 f fniwin.obj - 0001:000271e0 _$$1000 004281e0 f fniwin.obj - 0001:00029030 _$$9000 0042a030 f fniwin.obj - 0001:00029050 _$$a000 0042a050 f fniwin.obj - 0001:00029070 _$$b000 0042a070 f fniwin.obj - 0001:00025df0 _$$1000 00426df0 f filewin.obj - 0001:00026a70 _$$8000 00427a70 f filewin.obj - 0001:00021340 _$$8000 00422340 f file.obj - 0001:000218a0 _$$1000 004228a0 f file.obj - 0001:00025670 _$$9000 00426670 f file.obj - 0001:00025690 _$$a000 00426690 f file.obj - 0001:000256b0 _$$b000 004266b0 f file.obj - 0001:0001ee60 _$$1000 0041fe60 f crf.obj - 0001:000211f0 _$$8000 004221f0 f crf.obj - 0001:00017390 _$$1000 00418390 f codkauai.obj - 0001:0001e9a0 _$$8000 0041f9a0 f codkauai.obj - 0001:00016400 _$$1000 00417400 f codec.obj - 0001:00016e60 _$$8000 00417e60 f codec.obj - 0001:0000a480 _$$1000 0040b480 f chunk.obj - 0001:00015da0 _$$8000 00416da0 f chunk.obj - 0001:0000a070 _$$1000 0040b070 f memwin.obj - 0001:0000a140 _$$8000 0040b140 f memwin.obj - 0001:00006c40 _$$1000 00407c40 f utilstr.obj - 0001:00009b60 _$$8000 0040ab60 f utilstr.obj - 0001:00006250 _$$1000 00407250 f utilrnd.obj - 0001:00006830 _$$8000 00407830 f utilrnd.obj - 0001:000051b0 _$$1000 004061b0 f utilmem.obj - 0001:00005d80 _$$8000 00406d80 f utilmem.obj - 0001:00002c80 _$$1000 00403c80 f utilint.obj - 0001:00004c60 _$$8000 00405c60 f utilint.obj - 0001:00002150 _$$8000 00403150 f utilerro.obj - 0001:00002690 _$$1000 00403690 f utilerro.obj - 0001:000028c0 _$$9000 004038c0 f utilerro.obj - 0001:000028e0 _$$a000 004038e0 f utilerro.obj - 0001:00002900 _$$b000 00403900 f utilerro.obj - 0001:00001db0 _$$1000 00402db0 f utilcopy.obj - 0001:00002130 _$$8000 00403130 f utilcopy.obj - 0001:00000c60 _$$1000 00401c60 f base.obj - 0001:000019c0 _$$8000 004029c0 f base.obj - 0001:000005e0 _$$8000 004015e0 f util.obj - 0001:00000600 _$$1000 00401600 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:000f3765 _siglookup 004f4765 f LIBC:winsig.obj - 0001:000f2839 _strncnt 004f3839 f LIBC:aw_map.obj - 0001:000f2685 __before 004f3685 f LIBC:heapadd.obj - 0001:000f1610 _$$1000 004f2610 f LIBC:unhandld.obj - 0001:000f1675 _$$2000 004f2675 f LIBC:unhandld.obj - 0001:000f0d8a __abstract_cw 004f1d8a f LIBC:ieee87.obj - 0001:000f0e1d __hw_cw 004f1e1d f LIBC:ieee87.obj - 0001:000f0add __heap_new_region 004f1add f LIBC:heapgrow.obj - 0001:000f01a3 _flsall 004f11a3 f LIBC:fflush.obj - 0001:000ef684 ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 004f0684 f LIBC:frame.obj - 0001:000ef8d2 ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 004f08d2 f LIBC:frame.obj - 0001:000ef9a2 ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 004f09a2 f LIBC:frame.obj - 0001:000efafc ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 004f0afc f LIBC:frame.obj - 0001:000efb89 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 004f0b89 f LIBC:frame.obj - 0001:000efc91 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 004f0c91 f LIBC:frame.obj - 0001:000efcbc ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 004f0cbc f LIBC:frame.obj - 0001:000efeab ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 004f0eab f LIBC:frame.obj - 0001:000eff17 ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 004f0f17 f LIBC:frame.obj - 0001:000ef3ed __heap_grow_emptylist 004f03ed f LIBC:heapinit.obj - 0001:000ef0a1 _getSystemCP 004f00a1 f LIBC:mbctype.obj - 0001:000ef0dc _CPtoLCID 004f00dc f LIBC:mbctype.obj - 0001:000ef11b _setSBCS 004f011b f LIBC:mbctype.obj - 0001:000eeed7 _parse_cmdline 004efed7 f LIBC:stdargv.obj - 0001:000eed41 @x_ismbbtype@12 004efd41 f LIBC:ismbbyte.obj - 0001:000eed06 _xcptlookup 004efd06 f LIBC:winxfltr.obj - 0001:000ee8d8 __cftoe_g 004ef8d8 f LIBC:cvt.obj - 0001:000ee9f9 __cftof_g 004ef9f9 f LIBC:cvt.obj - 0001:000eeb15 __shift 004efb15 f LIBC:cvt.obj - 0001:000ee3e1 __heap_expand_block 004ef3e1 f LIBC:realloc.obj - 0001:000ee24c _doexit 004ef24c f LIBC:crt0dat.obj - 0001:000ee2cb __initterm 004ef2cb f LIBC:crt0dat.obj - 0001:000edd54 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 004eed54 f LIBC:trnsctrl.obj - 0001:000ede48 ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 004eee48 f LIBC:trnsctrl.obj - 0001:000edb6c __unwind_handler 004eeb6c f LIBC:exsup.obj - -FIXUPS: ee8a2 10 5 30 56 6 15 f 23 fffffe8d fffffff3 ffffff8e 5 a fffff233 -FIXUPS: ed920 1e 12 44 13 13 1a00 fffffe56 12 11 11 5d 12 fffffdc6 ffffffb9 -FIXUPS: ef03c 18 a ffffff8e 1a 13 ffffff9e f e ffffff81 b b 1b fffffd1a -FIXUPS: eecec 53 31 110 13 fffffccd fffffd21 c 5 f94 ca 5a 28 1f 17 30 -FIXUPS: efa0d 1d 36 47 11 2c 16 13 29 fffffa90 9a ffffff10 fffffee9 2d -FIXUPS: ef495 e c 3d 55 fffffdbe 16 33 1f d 23 1ae2 7 10 5a 12 fffff5cb -FIXUPS: f04d4 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 -FIXUPS: efdc2 2a 11 ffffff3f fffffe73 ffffffaa fffffb43 21 c1 1c 48 13 -FIXUPS: f0a24 6d 1a 21 14 39 23 15 21 e 77 4f 9 c 17 af 13 1d 1f 13 17 -FIXUPS: f0dbb 1d 13 1a a a f f 1a d e 2f8 37 2f 19 2b e fffffeaa ffffff8c -FIXUPS: f105e d 20 d ffffff0e 72 fffff5bf 2b 2c 2b 1b 34 46 c 25 3c 114 -FIXUPS: f0895 28 a 3b 2e 52 5c 116f 96 d c 32 fffffe42 fffffdcc 3d 49 132 -FIXUPS: f1a25 fffffc33 12 1d 5 55 3c 7 2f b2 15 fffffd8a fffffdd4 2d 32 -FIXUPS: f122b 45 46 29 fffffe17 b 21 f73 17 67 e 177 1a 1d 12 1f 20 d f -FIXUPS: f234f 17 13 22 5b 16 22 f 22 f fffffafe 64 ffffff44 ffffff99 fffffe9a -FIXUPS: f1d5e 24 fffffd3d c 75 18e9 fffffe1b a4 22 fffffa9b 51 2b 29 33 -FIXUPS: f2e99 1a 14 e 14 e fffffc45 d 2b 1a 1f fffffee9 fffffead f3 fffffe7e -FIXUPS: f26d3 a a ffffff59 1b 1b fffffe8e 1a 15ed 18 18 b0 9 e 9 29 4d -FIXUPS: f38d2 c2 75 c 1e 77 c fffffd3a 38 fffffc2c 10 10 18 a1 3e 24 d -FIXUPS: f35dd 34 fffffd6a 78 10 18 162a fb fffffd1d 2e 19 31 1e 2d 10 9 -FIXUPS: f4970 fffffeaa ffffffaf 26 fffffe67 44 fffffdf1 1a 65 1d 2b c 10 -FIXUPS: f457a fffff8cd c5 92 10e 49 c6 4f fffff8ed fffdbfd1 5d 59 59 59 -FIXUPS: cfc96 ba 20 e 2e 131 7c de a3 20 4e 62 2533b 47 3e 110 fffffcdd -FIXUPS: f4daf 133 ef 21 26 10d aa 1f fffffa5d 1c fffdc972 3d 59 c c c c -FIXUPS: d16b7 38 43 18 5b 1c 2f bd a1 b 28 11f 30 30 13 23 10 10 ffffddc9 -FIXUPS: cf93b 39 3e 67 19 70 1175 33 17 3c 21 8b 28 ab 19 8e 1f 10 19 98 -FIXUPS: d105e f3 48 6c 1d 35 1a 41 26 59 7a 98 43 14 f 51 33 55 ffffef0d -FIXUPS: d04ae 5a 32 16 1d 22 29 26 23 22 2b 7d 66 2c a0 1f 32 43 c 19 44 -FIXUPS: d091e 45 52 4a 75 5b 33 34 5d e 2d75 10 10 10 ffffe23c 16 17 39 -FIXUPS: d1c09 1b 32 e 54 38 ca 272 ffffe1b6 16 17 3a 39 38 16 17 3e 39 -FIXUPS: d0396 16 17 39 26 b 31a5 b 55 b 55 b 55 b 55 b 55 b 19 10 10 10 -FIXUPS: d3816 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 fffff7df 12 -FIXUPS: d3126 b 2f 13 2d 30 13 2d 30 13 2d 30 13 2d 30 13 2d 30 13 2d 30 -FIXUPS: d3413 2d 30 13 2d 62 b 55 b fffff635 18 7a 6c 45 12 2f b 44 12 -FIXUPS: d2dc6 b 44 12 2f b 44 12 2f b 44 12 2f b 44 12 2f b 44 12 2f b -FIXUPS: d2839 29 12 18 29 12 18 29 12 18 29 12 18 29 12 18 29 12 18 29 -FIXUPS: d2a66 18 29 12 18 29 12 18 29 12 18 29 fffff7b8 28 28 28 28 28 -FIXUPS: d2498 2f 38 93 22 18 4b 15 18 29 12 18 29 12 18 29 12 18 29 12 -FIXUPS: d2790 29 15 18 29 12 240a 1e 47 30 13 23 10 10 ffffefd6 18 3b fffffc59 -FIXUPS: d3ae6 1e c 5a b8 9 ffffe4c5 60 28 28 28 28 28 28 28 28 28 28 28 -FIXUPS: d2330 1e11 4b 1f 50 69 1ed 63 3b 40 5b 5b 36 168 21 ab 11 41 e4 -FIXUPS: d4998 4f e 1c 10 73 14 16 14 16 14 96 2d b 1426 30 13 fffff66a -FIXUPS: d56b9 e3 7c fffff863 bb 38 38 92 35 10 3f0 7 ffffe75e 16 16 17 -FIXUPS: d3e4e 26 b 4b 29 38 77 30 17 3c 21 e0 260e 89 77 33 17 21 b0 f7 -FIXUPS: d6a62 8a f4 13 2d 13 ffffece9 1c 60 72 8c 30 17 21 d2 20 7e b5 -FIXUPS: d5d74 47 25 34 37 79 19df 23 10 10 fffff5ea 37 29 c6 17 21 29d -FIXUPS: d72f0 13 fffff9f6 6a 3c 2e 6d fffff226 96 136 30 17 21 19d 33 11d -FIXUPS: d65f6 30 26 5a 59 1738 4a 123 17 55 17b 40 8e 31 38 13d 31 30 13 -FIXUPS: d8496 10 10 ffffee8c 16 17 35 26 b 4b 29 93 30 17 3c 21 2e0 30 -FIXUPS: d8ca6 9 31 30 13 2d 13 23 10 10 ffffeb6c 16 16 17 39 26 b 4b 29 -FIXUPS: d7a7a 74 30 17 3c 21 a6 19 27 25 b7 35 1f 7ca b 1a 18 4d 29 4f -FIXUPS: d86ed 30 17 3c 21 80 2a 41 65 31 2b 2b 15 28 3f 28 2b 28 3f 28 -FIXUPS: d8b3c 37 28 3b 28 70e b 22 19 48 1dd 1a 51 4d d8 50 15b b2 17 23 -FIXUPS: d99c1 112 7e 17 23 23 169 29 30 13 23 10 10 ffffe71c 16 17 3d 232e -FIXUPS: da960 30 30 13 23 10 10 ffffe3bc 16 17 49 26 b 4b 29 19 1c 1c 96 -FIXUPS: d9004 17 3c 21 115 19 af 19 17 35 b 22 f90 4b 13 16 39 13 16 3b -FIXUPS: da3e9 14 5a 13 16 15 13 16 13 13 16 28 81 13 16 2f 1e 2a cc 13 -FIXUPS: da76a 13 2e 6f 4f6 25d 16d 13 1a 14c 2d 30 13 23 10 10 ffffeaec -FIXUPS: d9e08 17 39 26 b 4b 29 19 1c 96 30 17 3c 21 a4 4e 30 13 29 18a7 -FIXUPS: dba8d 5a 24 1c 1f 1c 18 1c 2b 1c 3e3 1d2 2e 30 13 23 10 10 ffffe7fc -FIXUPS: daa58 17 3d 26 b 4b 29 93 30 17 3c 21 1aea b6 28 30 13 23 10 10 -FIXUPS: db332 16 16 17 3d 26 b 4b 29 b2 30 17 3c 21 aa 9e 35 1f 1a4 1c -FIXUPS: db970 1c 63 1c 4c19 5a 34 9 9 39 23 30 13 2d 13 2d 13 2d 13 ffffba4f -FIXUPS: dc288 16 17 39 26 b 7d 6d 30 17 3c 21 88 34 ac 14c 3453 1a3 1c -FIXUPS: dfd8a 15 35 19 134 22 b5 e3 8d 72 1d 2c 67 25 36 9 84 5a 21 2b -FIXUPS: e0431 32 1e 68 9 53 39 55 1c ffffebe3 8d 14 26 3d 18 3e 30 ba 87 -FIXUPS: df4be 62 c 57 34 16 16 ca 96 6a 19 68 2f c 2f 44 1e 12 4d 14 12e -FIXUPS: dfb04 ffffef94 7 2f 17 3b 17 10 52 1c 6e 17 32 59 57 9 1d 19 15 -FIXUPS: dee39 90 16 9 aa 41 1d 29 1d 1d 39 84 96 20 ffffebdb 5b 29f 8b -FIXUPS: de15c 58 36 11 64 3d 1b b6 3d 90 3d 8c 3d 90 3d 90 3d 98 3f b6 -FIXUPS: de874 17 2f 10 16e 42 7 b ffffea11 1b 44 8b 95 1c ee 91 1b aa 3b -FIXUPS: dd8cd 19 18 2f 15 19 23 27 74 11 3d fb 28 11 11d 28 11 38 2a 15 -FIXUPS: ddd90 fffff2b6 22 9 26 28 22 31 3b 15 16 2a c 28 22 31 3b 18 18 -FIXUPS: dd2c4 c 28 2f 18 28 2f 18 28 1d 18 36 2d e fffff7c9 2a 9f 1a 2d -FIXUPS: dcd75 36 18 3f 9 c 2f 4b 1a 16 2a 9 9 9 41 9 13 9 9 9 28 13 11 -FIXUPS: dcfd6 28 2f 10 3852 39 21 1b 32 e 54 9b 13 e 2b 13 e 5a 2b 3e 51 -FIXUPS: dc8f0 32 18 33 18 45 71 45 5b 46 33 17 21 65 2a 45ad 9b 13 e 2b -FIXUPS: e12c2 e 5a 2b fffffb5d 16 17 35 21 1b 32 e 54 fffffc2e 16 17 3d -FIXUPS: e0c9d 1b 32 e 54 7d 1d 73 fffffa09 16 fbc 21 1b 32 e 54 50 2f b0 -FIXUPS: e1a73 11 19f 73 fffff7fc 16 17 35 21 1b 32 e 54 84 ae fffff99c -FIXUPS: e10a8 17 39 21 1b 32 e 1708 13 1e 2a 13 1e 16 1e ac2 db8 eb0 e5b -FIXUPS: e1ce2 16 17 35 21 1b 32 e 54 48 9e 10 1c 111 ae 51 3b fffff661 -FIXUPS: e17e8 17 7a50 69 25 27 24 32 81 18d 12 39 13 ffff8d1a 7 46 13 6b -FIXUPS: e23df 34 34 31 ee d 32 1c3 2a 13 1e 2a 13 1e 16 1e 6305 27 24 36 -FIXUPS: e8c2a 4d 38 65 25 27 35 9 50 9 4c 37 9 67 25 27 24 35 52 50 37 -FIXUPS: e90d1 25 27 24 35 52 50 fffff1e4 27 24 36 52 4d 38 65 25 27 36 -FIXUPS: e868c 4c 38 66 25 27 24 32 85 91 25 27 24 36 9 53 9 50 38 9 68 -FIXUPS: e7d0f 9 50 9 4d 36 9 61 25 27 36 51 4c 38 66 25 27 24 36 9 53 9 -FIXUPS: e8176 38 9 68 25 27 24 32 85 91 fffff1a9 51 45 51 39 1b 27 1d 62 -FIXUPS: e7773 12 41 25 35 7f 84 25 27 34 51 50 36 5f 25 27 34 51 50 36 -FIXUPS: e7c8f 25 27 1c16 3a 5d 59 18 3a b3 74 706 30 13 ffffcce4 26 32 -FIXUPS: e70dd 38 4a 38 5c 38 4a 38 6e 38 4a 38 5c 38 4a 38 19 3c 47cb 4d -FIXUPS: ebe82 204 19b 30 37 3f 37 11c 4f 29 71 24d 30 26 10 10 ffffdb0a -FIXUPS: ea31b 8c 30 17 21 166 50 fffff0bb 138 30 17 21 b9 1dc3 28 3e 15 -FIXUPS: eb73f 2d 1c 15 9b 22 60 43 28 2b d a 15 28 58 c5 1b 2f 32 14 2f -FIXUPS: ebbbe 2a 13 a 89 22 22 fffff474 15 28 22 46 2d 26 15 28 2f 28 1f -FIXUPS: eb319 2c 28 67 15 28 46 28 30 27 2b 28 50 10 27 28 1d 2b 28 3a -FIXUPS: ec7e0 ee 30 17 21 ffffddf6 30 17 21 21 76 b 91 ae 1c 31 30 b4 a9 -FIXUPS: eabce 28 b9 d2 2f 39 1f 19b 76 28 84 28 3c fff161f1 1f 13 1d e -FIXUPS: 138a 1f e 32 e 13 1f 30 30 ebab7 5f 8f 30 17 21 bb 42 fa 22 1b6 -FIXUPS: ed502 e2 1a 25 107 196 13 fff13785 21 33 a c c a 14 a 26 a a a -FIXUPS: 1144 a a 24 1b 5 5 18 13 1d 13 1d e 32 13 3d 2c 24 e 1649 20 29 -FIXUPS: 29a6 21 22 e 13 1f 35 6b 30 ffffe9e0 1a 1c 1c 1c 1d a 10 15 f 10 -FIXUPS: 15c7 20 42 e 22 50 e fffff96b 27 14c5 2e 10 1d 8 5 28 d 2e 2d 23 -FIXUPS: 2636 27 1c e 42 26 d 1d 23 1c 36 d 4f d 7b d 4a 20 12 1b 2d fffff7f0 -FIXUPS: 2168 d a 18 b b 19 35 5 17 b 38 1f 5 1b 8 b f 28 d a5 15 1a 1b -FIXUPS: 2415 23 d 63 15 2c d fffff8f5 10 27 d a 9 e 5 24 23 48 d 1e 17 -FIXUPS: 1f59 10 19 25 b 13 10 2b d 31 d 34 d 2c d 13 2e d fffff849 1d 23 -FIXUPS: 19d2 d 2a 23 3e 4f e 5 a d 28 42 3a 1e 9 90 5 66 c c 14 1f 39 1c -FIXUPS: 1d5a 13 32 d 32 111e d d 53 13 d d 6c d d 36 d 43 d d 7b ffffe5db -FIXUPS: 1739 f 21 30 30 70 30 29 14 18 e 14 5 38 1f 1276 d 43 d 53 10 50 -FIXUPS: 2cd2 10 d 11 6 10 29 d 10 86 10 10 e a d a 3b 12 a 6 19 e a 6 24 -FIXUPS: 3599 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 90 67 10 10 23 20 -FIXUPS: 3907 5 5 18 16 8 12 e 13 fffff1d8 d 5fd 36 27 f 21 30 e b 37 29 -FIXUPS: 32a8 15 15 14 e 5b 9 1a 6b 20 2c 23 16 b 27 10 37 1d 31 23 16 15 -FIXUPS: 5914 25 d 23 e 14 5 39 11 5 31 9 a 6 a0 11 19 37 9 a 6 46 40 1d -FIXUPS: 5bf9 12 11 4b 22 e 13 1d fffff934 1e 11 4f 11 b 12 12 12 3e 11 -FIXUPS: 5725 8 7c 11 b 10 10 f f 24 d 15 6 1d 6 1d 6 1f 6 2f 19 fffff968 -FIXUPS: 5275 8 b 71 11 b 8 b b b 2f d d 1a 19 1f 32 1e 11 6f 11 b 18 1f -FIXUPS: 5569 11 b 1f 6 24 6 fffff7e5 11 4f 11 b b 8 b 33 d 4d d 1d 25 15 -FIXUPS: 4f4f 33 d 52 d 1f 28 34 11 bf 11 b 54 11 3f 11 4f fffff7b4 3a 18 -FIXUPS: 4a78 19 58 11 2f 11 2f 11 b b 11 18 19 19 e 10 30 11 4f 11 4f 11 -FIXUPS: 4d15 11 18 19 19 e 10 fffff855 3d d 1d 14 b 33 d 40 d 1f 49 d 2e -FIXUPS: 47aa 6f 11 8 10 77 11 8 10 87 11 b b 28 21 11 b 8 fffff80c 13 b -FIXUPS: 4231 10 6d d 10 2e 13 b a 10 78 39 d 12 3a d 21 11 b 12 82 11 3f -FIXUPS: 457a b b 8 b 33 fffff593 25 d 1a 5f d a3 d 83 d 63 d 78 18 15 4d -FIXUPS: 3ed0 5d 10 10 10 3b 77 d 4a d 29 d 20 13 24 58 29b1 37 d 10 c 33 -FIXUPS: 6ba9 20 8 d 29 29 17 15 23 d f 1e 8 d 29 27 1b 18 b 2b ffffcc14 -FIXUPS: 39a5 6 ae 9b d 2c67 33 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a 2d d -FIXUPS: 6992 1b 2a d 2b d 20 2a d 17 15 2c d f fffff91c 14 42 d 17 55 6 -FIXUPS: 6500 6 30 6 19 f 2b a 12 f 2f e 1e c d 11 14 3a a 49 d 23 1d 1f -FIXUPS: 6759 fffff84a 2d 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 f d c 27 -FIXUPS: 6263 2b 36 d 29 d 35 d 2a 6 3f 2d 13a7 47 1f 1b 2a 22 e 13 1f e -FIXUPS: 78ba ffffe42f 17 3c 1d 10 58 28 10 31 1f 40 e 10 27 d 17 1c 18 -FIXUPS: 5f30 24 d 1428 23 1b b a c 3e d 10 d a 12 1d 23 2d d 11 26 5c 23 -FIXUPS: 75b7 46 d 3c d 14 27 2f 3c 23 1b 32 fffff833 1b 58 d 2d 12 4e 30 -FIXUPS: 7105 17 d 20 10 19 c 10 1d d 2c d 28 10 8 c 3c 23 1b c 3e d 11 -FIXUPS: 7363 3466 10 9 36 d 94 130 2e d 77 20 d 23 20 d 21 c 22 ffffc25b -FIXUPS: 6de9 f 21 49 27 f 21 30 e 18 e 26 36 3240 d 53 13 d 10 d 27 44 -FIXUPS: a2de 17 42 52 13 d 10 d 66 d 1a 46 13 d a0 13 d a0 10 9 d e5 49 -FIXUPS: 9d89 f d 24 14 1a 2b d 51 d 2c e 1a 1d 9 86 9 11 b 39 4e e 4a d -FIXUPS: a0b4 25 13 d 10 d 43 13 fffff2ec d6 2e d 71 d 55 6d 90 23 16 d -FIXUPS: 97a1 d 14 11e 25 25 75 6a 23 2d 23 2d 29 27 25 17e 3d 23 2d 23 -FIXUPS: 8af7 60 62 c7 45 b 1a 8f 23 19 8 10 32 14 d d 1c 29 1b d b 2cd -FIXUPS: 917c 75 23 d d e 14 15 14e d fffff069 33 34 6 57 6 1e 50 6 38 6 -FIXUPS: 8652 45 8 1a 90 29 32 23 d 10 8 19 35 4f 38 51 54 43 62 5a 5c fffff5d8 -FIXUPS: 80bc 13 a 15 8 f a 1a 23 32 23 d d d 1c 20 d 20 2b 2d 23 1b d b -FIXUPS: 830e 3d 6 1d 48 6 36 fffff8b5 d f 45 36 2b 23 1b d f 13 7d d 3a -FIXUPS: 7eaf 36 34 23 1b d 8 1b 32 23 1b d 14 9 6 22 23 13 309a d 21 ffffc792 -FIXUPS: 78fc 32 20 d d 11 1d 33 23 1b d 30 3c 29 23 16 c 1b 23 1b 8 12 -FIXUPS: 7b8a d 53 36 49 23 310d e 1c d 2e d 17 27 c b 2b 1e c b 2e d 2e -FIXUPS: af35 b 28 d 34 25 d 15 2d d 1d 12 4c b 6 bc13 1f 5a 30 35 22 12 -FIXUPS: 16df9 20 e 13 1f 13 1d e 13 1f ffff3cc0 e 10 29 61 38 e b 10 14 -FIXUPS: accb d 4d 2c 23 b945 10 35 23 d 32 35 d 27 23 13 18 22 23 32 23 -FIXUPS: 168be 76 22 33 23 16 b b 36 6d 42 46 ab 1e 25 b9 fffff48a 58 2d -FIXUPS: 161d9 20 20 20 23 21 2c 23 23 45 46 2f 20 23 16 b 3a 1e 31 cb 28 -FIXUPS: 16597 14 31 2d 2c 45 1f 10 fffff6db b 8 22 1f b 1e 3e 1a b 1b 28 -FIXUPS: 15ebb 1c 26 1f b 21 42 b 2b b 51 22 12 1f b 1f 23 16 18 23 fffff818 -FIXUPS: 15947 20 d 1c 13 1c 13 19 1e 1e 34 13 5c 1d d 3c 2b 2d 23 35 23 -FIXUPS: 15c10 5e 27 1c b 2d 29 32 23 d fffff739 d 10 b b b 38 20 d 1f 1a -FIXUPS: 15594 39 1d b 25 31 5e 2d d 2d 41 44 51 1d d 1e 27 31 34 41 1d -FIXUPS: 14f26 d 31 25 23 16 b c 11 37 d 26 115 2a 16 b 24 2e 2e b9 3c e -FIXUPS: 15362 16 15 36 20 d 19 20 2c 35 fffff5e9 1f 1d 18 22 1d 10 19 20 -FIXUPS: 14b5c 3a d 26 23 16 1c 30 2b 23 16 14 20 d 20 37 d 20 10c 36 23 -FIXUPS: 14ef2 14 fffff7af 24 23 16 14 23 23 1b b b 27 16 12 24 15 23 2b -FIXUPS: 14892 17 53 2d 23 1f 20 d 1d 34 23 16 10 14 20 fffff864 10 1d 2d -FIXUPS: 14341 38 23 30 20 d 26 24 20 d 1b 2e 1d 33 23 16 17 23 16 b 27 -FIXUPS: 145df b c 22 1f 17 18 fffff8b8 6 9 10 b 8 39 23 1f 20 d 28 32 25 -FIXUPS: 140a6 33 23 16 c 14 20 d 1d 19 1d 1c 2a 10 25 23 3a 29 fffff93f -FIXUPS: 13c14 b 1c 26 2d 2e 6 9 b 23 23 32 23 d 19 20 d d 17 21 23 16 c -FIXUPS: 13e75 23 d 18 f 13 12 f fffff8f1 1e 24 d 3b d 2d 36 d 31 21 24 -FIXUPS: 1397b 3b d 24 23 1f 23 32 1f 20 d 1c 21 1d 35 23 16 c 27 1d fffff726 -FIXUPS: 13334 d 2e 3a 23 1c 19 12 9 12 3b 23 3d d 66 d 44 55 23 d 2f d -FIXUPS: 13680 25 3c d 35 2d 2e 36 d fffff7bb 1f 20 d 1d 34 23 13 10 17 -FIXUPS: 13092 14 2f 21 1c 27 23 1f 1c 20 d 26 20 d 1b 17 10 c 18 20 2c -FIXUPS: 132ec fffff903 20 d 2a 3c 11 33 10 14 20 d 16 11 25 13 23 23 1f -FIXUPS: 12dfb d 1b 17 f 18 28 23 1f 20 d 1d d 37 fffff8c8 1a 1f 11 33 18 -FIXUPS: 128e9 11 63 20 d 16 36 2f d 2f 20 28 23 13 14 20 d d 16 d 31 d -FIXUPS: 12b7d 19 19 1d fffff8f1 f 9 e 12 12 20 32 23 1f 1c 20 d 1b 14 14 -FIXUPS: 1263b 20 d 1f 27 1d d 2a 1d d 25 28 23 3c 1c 20 fffff998 25 12 -FIXUPS: 12200 23 26 d 29 d d 12 9 11 18 19 f 12 1d 35 1b 25 23 26 1c 20 -FIXUPS: 1243b 1b 14 29 b 9 c fffff93b 1f 9 19 11 29 23 1b 27 32 1f 10 2c -FIXUPS: 11f72 31 d 13 2f 18 8 1d 1a 25 1a 1a 25 45 d 1d 29 d 11 fffff869 -FIXUPS: 11a19 23 1b 27 20 1a 19 3a 1d 3a d 16 e 26 19 a 18 1d 38 23 32 -FIXUPS: 11cc5 24 23 1b d 1c 19 23 32 23 fffff895 22 22 2f 30 18 d 1b 23 -FIXUPS: 117ae 23 d 10 8 a 1b 17 16 1a 1a 14 12 1c f 1c 23 16 27 23 2f 1a -FIXUPS: 119cf fffff702 47 d 39 23 d 58 1a 93 25 22 3f 23 16 2d 23 d 10 -FIXUPS: 11415 a4 23 16 b 12 21 3b 5e 23 1b b 27 1f fffff717 d d 17 1c b -FIXUPS: 10de9 23 13 10 17 1c 1d d f 17 1c b 20 23 2d d 27 d c 43 23 1b -FIXUPS: 11022 25 d 5b fffff959 1c 25 18 d 1b 23 1f 20 d 1b 35 d f 29 f -FIXUPS: 10bae 1b 23 1f 20 d 1d 35 d f 33 23 13 10 17 1c fffff8ce 18 d 54 -FIXUPS: 106bc 16 2e 19 d 37 31 23 d 2b 23 32 23 d 15 11 d d 1b 23 32 1f -FIXUPS: 10957 21 21 23 16 14 fffff88e 23 d 10 32 e 32 1a 30 15 13 1c a -FIXUPS: 103d3 10 10 13 1a 17 12 a0 15 1b 23 16 11 d 10 31 25 15 1b fffff78e -FIXUPS: fdd8 20 21 40 15 1b 15 1b 29 3e 23 d 38 23 d d 11 22 60 3c 3c 1d -FIXUPS: 100fa 31 1d d 41 48 e 2d 26 fffff559 14 27 17 24 27 3e 13 45 28 -FIXUPS: f903 20 d 80 13 b 34 32 d 95 36 9e 24 10 12 33 a3 11 15 1b 4e 20 -FIXUPS: f2f9 1f 21 1f 21 30 23 41 d 38 d 31 d 39 1e 47 18 20 6 20 30 2c -FIXUPS: f62a 16 43 d 1a 1a 17 19 23 74 fffff63b 24 1a 68 6 d 21 16 18 d -FIXUPS: ef42 8 2b 49 37 c 2f c 1e 16 13 43 1a 5b 9e 14 1c 11 1f 30 30 30 -FIXUPS: e8e8 41 5c 32 21 1a 61 6 79 1d 13 25 42 6 6 20 b 26 3d 40 e 1e -FIXUPS: ec75 c 13 23 e 2c d 3c 41 19 fffff632 d 1e 18 30 d 22 15 12 a 15 -FIXUPS: e4c9 29 3e 23 d 3b d 10 58 d 13 39 6b f 7a 21 24 6a 2e 40 e fffff7bf -FIXUPS: e05e 2a 20 d 14 30 46 14 17 15 1f d 15 1c 17 d 15 12 14 20 d f -FIXUPS: e28f 30 46 1d 1e 15 33 d 15 fffff84d f 23 11 1f 17 19 30 80 30 -FIXUPS: dd99 11 16 39 11 16 39 30 1b 25 23 13 18 1d 1d 1d 2b 11 1b 2c 21 -FIXUPS: e029 fffff71d d 2f 32 30 d 3b d 43 d 2f 41 34 d 4a d 46 d 1a 20 -FIXUPS: da2b 23 16 23 2d 20 d 5c 2d 20 d 53 fffff758 2f 30 d 1a 18 6 8 -FIXUPS: d3fe 1c 2c d 31 d 1d 6 8 4b d 50 13 17 22 d 35 d 6f d 50 d 2f d -FIXUPS: cf26 38 23 d 38 23 d 48 23 d 3e d 2f d 48 23 d 48 23 d 2f d 38 -FIXUPS: d27b 15 32 12 f 18 10 a 20 fffff723 d f 29 f 12 1b 30 30 23 1f -FIXUPS: cb9a 16 8 16 17 17 d 20 23 1a c e 3d 3f 7d 23 30 d 80 19 a7 fffff683 -FIXUPS: c5b4 23 31 e e 27 d 23 37 3f 14 12 7e 34 50 40 23 1f 20 d 1d 35 -FIXUPS: c927 f 33 30 23 1f 20 d 1b fffff6c2 d 68 1a 1c 1e 30 22 14 22 23 -FIXUPS: c267 2b 23 d 15 28 15 2e 2e 23 97 23 d 10 4c 2f 2f 39 14 15 d fffff750 -FIXUPS: bcf0 d 2f 23 d 2d 2d 16 19 8 c 22 3c 19 11 28 2d 23 d e 29 34 d -FIXUPS: bfd9 23 32 16 8 27 16 3f fffff6aa 90 41 8 10 43 d 1c 1d d 1c 1d -FIXUPS: b937 1c 1d d 1c 108 28 50 2d 23 d 12 c 25 d 20 15 2e 20 23 fffff5dd -FIXUPS: b258 21 30 e 16 1d 2f 2c 126 3e 2d 23 d 27 d e 1b 2b 14 15 30 1b -FIXUPS: b61c 5e 1d d 2f 23 d 36 23 c339 d e 29 16 d 10 d b cc f e f f f -FIXUPS: 17c49 f f 46 24 33 ac d aa 22 e 13 ffff32d8 27 f 21 49 c48f d 10 -FIXUPS: 176e8 f 22 24 6c 23 16 22 d 60 29 4f 23 16 b b e 30 2c 1a 14 24 -FIXUPS: 179ff 13 10 21 d e 1a fffff74d 29 60 1b 10 22 d 32 38 27 10 8 18 -FIXUPS: 17386 29 12 22 46 23 2a d 36 23 32 23 d 1b 70 23 4d 23 32 5b6e -FIXUPS: 1d217 d 10 d b 1a 27 d 58 d 3e d 2629 d 27 ffff757b 27 f 21 49 -FIXUPS: 16fe9 f 21 30 e 30 2a d 5c 2f 2c 5b68 94 d 2a 1e 1a 2b 26 1d d -FIXUPS: 1ce94 3c 49 23 ab d 2d 22 d 11 22 1f 15 10 1d d 2f e 1f 17 1c 59 -FIXUPS: 18d3d d 3b41 d 21 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 c 1d -FIXUPS: 1caed 68 d 44 7a d 50 36 d ffffbc1f c2 d 2d 22 d 15 1e 1f 15 10 -FIXUPS: 18a9e d 2f e 1f 17 1c 3f 30 30 23 1b d 10 d b 1a 27 d 58 d fffff6dd -FIXUPS: 183f7 d 10 d b 2e 3d a 2b a 1c 1b a 90 10 c 1d d 50 d 44 7a d 50 -FIXUPS: 1879b d 1d 94 d 24 2e 9a1f 13 1f e 13 ffff5bb8 27 f 21 30 23 1b -FIXUPS: 17fb4 10 d b 38 21 2b 21 48 13 4d 28 b6 d b5 32 d 47 22 48 9ba2 -FIXUPS: 21f7e d 18 13 13 20 23 13 18 1d 10 29 27 23 d 3b d 28 25 30 e 18 -FIXUPS: 221f7 22 e 32 13 1d e 13 1f fffff6ad 15 57 23 d 129 7e 2b 25 23 -FIXUPS: 21c47 1c 56 27 23 d d 49 d 17 1d b d 8 5b 36 d 54 13 2d 23 d fffff56a -FIXUPS: 214c9 23 32 23 d 2c d 2b 20 d 1a 20 d 1d 22 54 23 16 d 15 57 23 -FIXUPS: 2179b ee 23 32 23 d 2c d 10 fffff714 22 27 23 d 35 23 2d d 1d 28 -FIXUPS: 211dd 27 23 d 35 23 20 28 35 23 32 23 d 2c d 3b d 1a 20 d 1d fffff799 -FIXUPS: 20c39 d 10 8 33 17 20 1b 27 23 d 1e 1f 17 6c 2f 23 d 15 62 20 d -FIXUPS: 20f17 29 59 e 22 23 2d d 1d fffff729 2d d 27 d d 20 17 20 1b 16 -FIXUPS: 2089d f 1f 17 38 3a 17 3a 2f 23 d 15 32 38 81 20 d 1a 38 47 1f -FIXUPS: 201ec 56 23 d 2f 58 23 5d e 29 32 23 d 15 42 2f 29 19 88 d 3f 1b -FIXUPS: 205f3 23 d 15 11 1d 22 5b 36 30 fffff673 32 20 d 13 1a 41 23 20 -FIXUPS: 1fed9 20 23 20 d 20 13 40 d 13 1d 10 8 36 22 23 39 d 94 23 d 14 -FIXUPS: 201c9 661f 21 30 13 1d e 13 ffff9158 27 f 21 49 27 f 21 49 27 f -FIXUPS: 1fb79 49 27 f 21 30 e 29 49 2f 3e d 3f 17 6670 23 3d 23 38 47 2e -FIXUPS: 2655c 38 1f 9 2c 10 31 23 30 20 1b 5 5 18 e 13 1f e 13 1f e 13 -FIXUPS: 26799 e 32 fffff7e9 d 11 c 16 18 2f d 34 d 22 10 8 c 1c e 30 3f -FIXUPS: 26199 2c 45 1f 10 2d 30 17 20 d 1f 23 32 84 fffff75e 29 50 23 3e -FIXUPS: 25c28 11 1d 20 2a 19 16 11 2c d 17 25 28 2d 2f 30 23 31 2c 10 41 -FIXUPS: 25efd d 2a d 31 d fffff6d3 27 23 16 2f d 71 4a 6 9 f 4d 65 23 16 -FIXUPS: 25919 23 3e 22 11 1d 20 2a 19 16 11 19 21 d 1b 25 28 fffff7bf 33 -FIXUPS: 25302 27 23 32 23 d 34 d 16 24 d 28 25 6 9 f 28 23 32 23 d 34 d -FIXUPS: 255a5 d 21 d 2c 26 11 fffff905 33 d 31 23 16 38 d 1e 6 20 d 30 -FIXUPS: 250e5 1e d 11 33 d 28 23 14 9 32 d 1e 6 20 d 2c 22 15 fffff870 -FIXUPS: 24b62 3b 18 44 1b 25 23 18 2f d 1e 6 20 d 30 26 11 33 d 4a 27 23 -FIXUPS: 24e54 2f d 1e 6 20 d 30 22 fffff662 2a 46 24 23 44 27 22 23 3a -FIXUPS: 24743 28 48 23 19 20 1d d 22 2e 2b 65 23 3d 1b 11 2d 47 23 32 55 -FIXUPS: 24b09 fffff5be 26 32 23 d 7b 2f e 26 46 26 2c 13 d 14 23 32 23 -FIXUPS: 2437e d 6a 24 23 32 23 d d 6c 32 23 16 b fffff525 34 66 c9 2d 42 -FIXUPS: 23cb4 31 21 d 26 7b 3a 21 6a 31 23 d 18 13 a d 1c 28 19 e 26 32 -FIXUPS: 24002 d 79 31 fffff4e7 d 58 a9 37 48 2c 23 16 14 20 d 27 22 9 e -FIXUPS: 23846 23 23 14 9 17 20 d 1d 9 c 2a 29 5c b2 e fffff6f5 26 13 b -FIXUPS: 231f6 23 d 10 a 15 2d 24 d 2f 1b 3c 23 1f 20 d 3c 25 23 1f 20 d -FIXUPS: 234b4 25 29 32 23 d fffff80f 81 25 23 30 d 80 23 16 f b 1d 23 16 -FIXUPS: 22fd0 19 30 23 d e 2f 19 12 10 c 1c d 15 2a 23 d f fffff80d 1d -FIXUPS: 229cf 77 20 d 26 2d 16 19 8 c 22 39 19 11 2b 2d 23 d f 15 2a 23 -FIXUPS: 22c94 10 f e 1e 2a 23 23 fffff8a8 d a 2b 19 a a a 10 b 8 16 2d -FIXUPS: 226f6 d 24 d e 1b 33 1d 31 77 20 d 47 2d 20 d e 22 d 4fee 20 d -FIXUPS: 2798d 12 1f 1a 1d 46 1f 1d ffffa8d5 36 27 f 21 49 27 f 21 49 27 -FIXUPS: 224f8 21 30 e b b 33 20 d 14 4ff0 27 24 1d 20 d 1a 15 1f 20 d 1a -FIXUPS: 2771a 15 12 21 14 e b 46 32 23 d 19 b 2e 29 35 23 d 10 15 fffff8ed -FIXUPS: 2724c 1b 10 d 26 28 d 3a c a6 2e 29 32 23 d 10 b 2e d 1a b 19 b -FIXUPS: 27538 20 d 17 b c 1f a fffff6cd 23 16 3c 1b 23 40 9d 23 1b b 28 -FIXUPS: 26e97 11 94 1d 23 16 35 7e 24 23 1b 10 d 26 35 8 12 3e d 7c 2dcb -FIXUPS: 29fd4 9 1c f d 27 20 1b 5 5 18 e 13 ffffc7ef 80 23 1d 5e d 69 6 -FIXUPS: 26a94 6 98 37 23 16 29 6d 20 b 2f92 64 d 23 1c 34 1d d d 20 29 -FIXUPS: 29d6d 1c f d 24 e 27 1d 82 2d 2f e 9 9 20 18 28 e 9 9 20 fffff7b5 -FIXUPS: 2977b 4b d 2a d 2c d 48 d 21 23 16 e b9 23 16 1d d 10 d 46 11 34 -FIXUPS: 29afe 2f 1c 12 1e 26 32 16 fffff7b0 39 d 13 24 d 17 b 28 1d d 4c -FIXUPS: 294f2 d a 1f 23 2e 16 32 23 d 4b d 13 20 d 2b 38 16 20 d fffff8d8 -FIXUPS: 29014 10 1a c 5f 26 35 23 d 19 1c 2c 35 23 d 10 b 12 f d d 12 11 -FIXUPS: 2927e 2b 2c 32 16 15 10 2d fffff78f 10 e 64 d 12 1a 23 32 23 d -FIXUPS: 28c52 27 2c 16 34 14 1e 1f 29 d 1d 8 11e 26 14 20 d 10 59 26 35 -FIXUPS: 285b7 67 e 29 f4 26 32 16 12 57 d 11 38 32 1d 44 2c 3d d 10 10 -FIXUPS: 289c9 d 10 2f 17 18 15 20 23 32 23 fffff642 b 1c 13 49 53 2c 16 -FIXUPS: 28256 b 16 17 c 6c 15 23 13 22 46 29 6d 39 23 d 15 11 1b 23 2d -FIXUPS: 28575 16 18 fffff6b3 b 6d 13 1c b 23 2e 29 16 e b 77 13 1c b 23 -FIXUPS: 27eb9 29 32 23 d 1a e 8e 59 d 1a 1b 11 39 2f 6f66 e 17 c c 14 27 -FIXUPS: 2f10c 1b 5 5 5 23 e 13 1f 13 ffff88f0 36 27 f 21 30 1b 20 25 e -FIXUPS: 27bd2 11 26 29 16 70ad 29 12 2f 10 29 12 17 f 5 5 15 75 48 1d 14 -FIXUPS: 2eee8 b 1c 22 b 1a 18 14 1d 17 18 28 2d 10 f f fffff7fc 4c 29 16 -FIXUPS: 2e8e3 2a 1d 2f 23 2d 10 2d 38 38 38 38 38 38 33 23 13 18 1d 1c -FIXUPS: 2ec0d 1d 1d 1d 1d 1d 1d 2a fffff604 30 23 16 8a 5d 23 4d 23 27 -FIXUPS: 2e513 d 27 d 1a 1d d 1a 2e 89 30 30 23 16 57 23 32 23 d 1d 25 d -FIXUPS: 2dc99 19 27 50 23 16 1a 69 1c 68 23 18 b b 76 d 37 62 67 6c 23 -FIXUPS: 2e0f4 3e 12 37 3e 15 47 1d d 45 35 fffff4b1 2f 30 30 23 1f 29 d -FIXUPS: 2d88f 36 d e 3b 1e 23 194 c 13 29 5a 10 10 19 19 13 13 13 16 16 -FIXUPS: 2dc5f e e fffff616 32 10 c 35 4f c6 23 16 8 8 14 48 6 10 6 d b -FIXUPS: 2d51d e 3a f 25 11 43 1c 23 16 b 3a 1e 31 fffff759 8 c 1b c 54 -FIXUPS: 2cf2b f 8 15 36 5 b b 21 23 32 28 23 d 93 23 32 23 d 10 27 23 d -FIXUPS: 2d205 22 35 fffff76d 23 2d d 10 18 29 18 26 24 23 2d d d 1d 29 -FIXUPS: 2cba1 14 26 5e 23 2c 11 70 29 32 23 d 2c 23 d 2c fffff7f4 19 23 -FIXUPS: 2c67e 32 23 d 17 22 2d 16 27 23 d d 8 18 15 e 2e 24 c 27 22 26 -FIXUPS: 2c8d8 1c 2d e 14 18 a fffff8b3 8 e c 27 22 26 8 1c 2d 8 19 2d 29 -FIXUPS: 2c395 2a 30 25 17 3d c 1e 37 20 1b 25 40 23 16 27 23 d fffff820 -FIXUPS: 2be3c 2a d 3e 33 27 23 d 22 21 1b 23 16 27 23 d 17 19 23 32 32 -FIXUPS: 2c103 d 17 22 23 32 16 27 23 d fffff76e 23 61 5 5 8 1a 23 7d 23 -FIXUPS: 2bb24 7 9 12 1a 14 d 38 29 2d d 10 10 ca f 1a b b 24 23 4c 1e fffff556 -FIXUPS: 2b35f c 1e 23 16 b 24 1c 3f d 60 23 16 c 2b 23 53 64 36 36 2a 23 -FIXUPS: 2b6e3 25 4c 65 23 15 38 23 15 fffff54c 2c 23 16 6b 5 10 5 5 14 -FIXUPS: 2aec5 10 24 11 a5 23 d 33 5 35 63 1a 50 20 23 12 34 d 5a 23 3b -FIXUPS: 2b329 fffff560 23 ad 23 4d 23 2d 23 2d 23 3d 29 26 10 1b 12 34 -FIXUPS: 2abb2 26 10 1b 2d 19 22 3e 23 2d 23 16 37 23 16 fffff497 26 1a -FIXUPS: 2a29c 5d 23 3e 3f 23 32 20 d 12 1c 23 32 59 d 19 8c 23 32 23 d -FIXUPS: 2a671 58 23 45 48 23 4d 23 564d 17 27 5 5 18 e 13 38 10 10 19 19 -FIXUPS: 2ff77 13 13 16 16 16 e e 1e 30 ffffa0a9 27 f 21 30 10 b 26 55 566c -FIXUPS: 2f888 21 2c 2d 3e 49 23 16 26 19 c7 30 81 15 46 d 6a 5e 10 2d 35 -FIXUPS: 2fd28 37 d 2d 10 8 18 20 40 23 fffff44d 50 12 82 2c 78 d 3f 1c -FIXUPS: 2f4c9 23 d d 33 2f 21 23 28 25 70 23 2f 5e 23 3d 23 2c c 25 23 -FIXUPS: 2f837 27 3d1e d 32 23 d 32 38 38 2c 23 13 18 1d 1d 1d 10 29 12 -FIXUPS: 337d7 5 1d 30 30 30 e 13 1f e 13 ffffb958 27 f 3e84 32 23 d 2a -FIXUPS: 33195 16 2e 23 6d 23 2d 23 a6 10 10 19 19 13 13 13 16 16 16 e e -FIXUPS: 33489 23 32 3b 13 2d fffff610 d 2c 23 d 10 57 23 32 23 d 17 2a -FIXUPS: 32d6b 23 d ee 23 2a d 2c 32 68 23 16 22 21 1d 1d d 29 44 fffff3a6 -FIXUPS: 324c0 23 d d 35 38 7a 23 d 5b 9a 2d 23 d 53 33 2e 31 2f 27 48 23 -FIXUPS: 3293c d 6f 38 ae 23 d 4b 2d fffff4e0 3d 1a 2c 23 32 23 d 2a d 14 -FIXUPS: 32199 d 3d 1a 2c 23 2d d 10 29 3a 23 2d d 10 29 6a 16 1a 23 1d -FIXUPS: 31a6c 2a d ad 29 46 29 61 23 16 d 15 5e 47 25 d 2c 32 60 25 d 2c -FIXUPS: 31ec9 60 23 32 23 d 2a d 14 20 fffff4c4 1f d 29 1f 19 2a 65 d 27 -FIXUPS: 31650 d 44 28 2d 56 4d 23 32 23 d 27 d 64 43 23 32 23 d 30 2a 71 -FIXUPS: 30f0c 32 23 d 2a d 43 56 1f 3b 44 18 2c 40 5a 2a d 38 23 42 bb -FIXUPS: 3136c 16 25 d 32 23 d 3d 2c b 41 fffff40c 26 2c 2c 23 29 114 14 -FIXUPS: 30adc 10 14 15 83 31 23 1b 10 b 1e 37 32 23 13 15 35 1f 33 67 29 -FIXUPS: 30e20 a8 21 fffff344 2c 13 ad e 26 2a d 35 2c 3c 18 10 1f d 24 -FIXUPS: 304bc 16 22 d 138 23 32 23 d 9b 23 32 23 d 10 db 3580 2e 5 1d e -FIXUPS: 33eba 28 10 10 19 19 13 13 13 16 16 16 e e 1e e ffffc09b 27 f 21 -FIXUPS: 30132 27 f 21 30 11 2d 3802 36 15 6b 19 1d 4a 58 c 10 1d f 6 10 -FIXUPS: 33beb 26 a 20 15 35 a e 10 12 27 13 b 14 18 b 12 70 60b6 17 2b -FIXUPS: 39ee1 16 2f 67 1f 20 1b 5 5 5 23 e 13 1f 11 b 24 e 13 1f 13 1d -FIXUPS: 3a11c ffff9806 27 f 21 30 36 616a a d a b 4f d 10 27 13 8 e 16 -FIXUPS: 39c5b c 10 1b 10 1f 15 28 17 1f 1e 2b 1b 10 17 44 2c 16 1e fffff73e -FIXUPS: 395b6 28 17 1f 1e 2b 1b 10 17 6a 2c 16 1e 10 17 5c 2c 16 2f 67 -FIXUPS: 398e9 11 3f 35 3b 92 d 2d 64 30 30 fffff728 d 1a 21 23 32 23 d -FIXUPS: 39343 36 23 16 17 50 10 a d a b 4f d 10 27 13 8 e 16 14 c 10 1b -FIXUPS: 39582 fffff8eb 10 22 d 15 10 2b 1d e 32 49 17 10 2d 23 d 23 10 -FIXUPS: 39061 18 20 28 38 30 23 32 23 d 18 23 23 32 fffff810 27 24 23 16 -FIXUPS: 38add 32 c 6e 23 16 10 16 c 35 48 26 1d d 1c 3c 23 16 37 23 16 -FIXUPS: 38df9 10 8 18 20 11 fffff7ce 4d c 1c 1f 21 20 17 36 14 14 f 1a -FIXUPS: 387b4 5 f 1a 97 40 23 32 23 d 10 10 27 24 23 32 23 d 10 fffff869 -FIXUPS: 382b4 2c 23 d 10 b 27 13 8 8 8 8 13 9 27 1e 17 1b 19 c 32 10 31 -FIXUPS: 384e2 57 2d 3b 9 2a 1c 1c fffff938 23 d 2c 23 d 10 b 27 31 25 1c -FIXUPS: 38089 a 10 1b 5 29 9 a 2d 19 5 15 29 9 a 2d 10 61 23 28 fffff726 -FIXUPS: 37a06 1f 9 14 6d 32 1d 31 17 5c 80 6a 5 35 1a 22 20 5 1e 7 1c 7 -FIXUPS: 37dda 1f 40 39 a f 5e 23 1b fffff79a 20 d 1a 13 1e 24 7 15 21 18 -FIXUPS: 377b7 8 f 7 b 7 10 37 10 5 21 10 a 3c 6 f 6 10 13 40 57 fffff9cf -FIXUPS: 3737b 5 89 29 28 23 d 2c 16 b 27 1b 10 a 8 8 2b 10 35 8 a 10 a -FIXUPS: 375ff d d 11 18 25 d 41 fffff928 8 16 a 10 a 20 d 15 1d 14 5 15 -FIXUPS: 37110 32 14 47 c 8 25 9 14 2b 18 63 c 1a 19 32 20 5 1a fffff8b9 -FIXUPS: 36c34 14 47 c 8 69 9 14 47 8 14 c 1a 19 5 1a 6f 40 23 28 23 d 2c -FIXUPS: 36f63 d 10 b 27 13 8 8 fffff8b1 1e 10 25 11 21 19 7f 5 31 23 28 -FIXUPS: 36a47 d 2c 23 d 10 b 27 13 8 8 8 16 a 10 a 20 d a 10 fffff971 1a -FIXUPS: 36556 16 b 1e 2a e 1f 6 18 4f 15 1d d 12 1f 2d 32 1b 10 b 8 19 -FIXUPS: 36785 19 6 25 39 1a 1a 28 fffff96b 23 32 23 d 22 23 d 22 23 d 1d -FIXUPS: 36318 9 28 23 16 10 d 14 26 c 16 1e 23 32 23 d 10 b 10 18 fffff92e -FIXUPS: 35e42 10 10 19 19 13 13 13 16 16 16 e e 1e 23 31 2c 23 3a 33 23 -FIXUPS: 36097 d 1d 23 d 22 23 d 3a 29 fffff8d3 23 16 8 32 f f 48 27 23 -FIXUPS: 35bb2 8 12 f 70 f c 53 23 1b 10 b c a 14 c a 27 23 28 c a fffff70a -FIXUPS: 354fd 20 b 99 26 7a 28 23 16 47 23 16 2a 3f 2e 23 16 8 2a 31 17 -FIXUPS: 358a4 a 79 32 23 16 15 4a f 48 fffff6d5 d 22 23 d 15 6f 28 21 23 -FIXUPS: 35282 1d 23 d 15 56 1f 23 16 10 2c 1b 23 16 b b 8 10 2e 12 24 c -FIXUPS: 34d69 11 4f 10 8 18 20 23 16 b 1d 23 d 22 23 d 15 4f 28 21 23 16 -FIXUPS: 34fff 23 d 15 36 1f 23 16 b 1d fffff900 1f e 27 c 1e 20 74 1d e -FIXUPS: 34b45 c e c e c 24 10 2d 23 d 31 23 d 10 20 d 10 20 d 42 d fffff9a1 -FIXUPS: 346fe 2b e b b b b 30 23 d d 9 c 1d 27 e b b b b 30 23 d 2c 23 -FIXUPS: 3491f 11 c 1d 30 2c fffff938 11 11 2a 11 2b d 33 d 15 17 21 d 2e -FIXUPS: 34457 3a d 24 d 21 d 8c 8b 25 e b b b b 30 20 d a207 32 80 5b 6c -FIXUPS: 3eb67 5 1d e 13 1f e 13 ffff5442 36 27 f 21 49 27 f 21 49 27 f -FIXUPS: 341f9 30 2b 25 30 23 16 a1d7 20 30 30 30 30 30 23 2d 23 16 2b 2c -FIXUPS: 3e6cc 2d 10 3f d 3f 23 d 25 10 8 18 1d 23 e e 12 2a 18 fffff781 -FIXUPS: 3e080 54 d 2b 20 18 17 d 25 18 28 23 f 27 f 20 25 f 15 1e 27 25 -FIXUPS: 3e33a 1f 40 70 11 b 20 24 30 fffff7d0 30 30 23 16 27 23 16 27 23 -FIXUPS: 3ddc2 47 14 b b b 12 34 17 2f 17 19 28 25 19 24 32 d 17 26 18 27 -FIXUPS: 3d94c 13 e 12 10 17 1c 30 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 3db1c 13 e 12 10 17 1c 27 23 3d 23 fffff8ba d 33 d 26 65 d 2e 23 -FIXUPS: 3d65e 23 d e 20 11 24 38 8 1d 1b 23 13 e 12 2c 1c 22 23 88 d 28 -FIXUPS: 3d929 fffff780 23 13 8 1e 10 24 23 2d d 34 7f e 8 8 c e 12 41 8 -FIXUPS: 3d2fc 11 18 20 20 20 1c 2c c 54 18 24 fffff59c 24 e 2d 1f 26 23 -FIXUPS: 3cb29 23 16 8 10 29 36 3a d 136 25 5e 12 1e 50 e 30 72 23 ed 23 -FIXUPS: 3d04f 8 1e 10 fffff567 2d 23 16 34 23 23 16 b 15 39 2c 22 23 16 -FIXUPS: 3c7cd 6c 23 30 d d 23 23 16 8 2f 1c 24 23 16 8 2f fffff76c 16 1a -FIXUPS: 3c1a9 1f 26 27 28 44 b 5f 12 1d 14 24 2b 12 19 3c 12 1c 4b 15 17 -FIXUPS: 3c495 25 8f b 14 2f b 27 fffff786 1c 4b 15 17 70 b 1c 3f 21 3f -FIXUPS: 3bf39 29 32 16 27 23 d 10 b b b b b 38 d 1c 17 22 41 b 1c fffff80f -FIXUPS: 3b982 32 16 b b b b b b b b 38 d 1c 22 41 18 47 1c b 14 27 28 44 -FIXUPS: 3bc1e 5f 19 2e 24 19 3c fffff7b7 19 10 49 18 12 13 2e 65 f 19 13 -FIXUPS: 3b696 8 25 18 f 16 10 f 16 12 56 22 22 26 d 5f 17 32 17 66 fffff879 -FIXUPS: 3b1ba c 8 39 8 5a 15 4b 1f 25 14 14 8 3c 30 12 1e 29 16 b b b 8 -FIXUPS: 3b449 8 8 c 8 40 12 1c fffff7b6 40 d 77 23 d 22 32 23 16 8 8 48 -FIXUPS: 3ae80 8 4e 37 d 5b 29 4b 23 13 8 48 16 8 4e 4f 29 26 23 fffff59b -FIXUPS: 3a74d d c 23 23 6e 6f 2c 30 d 8f d 7a 67 1a c 26 8 e 12 2e 28 23 -FIXUPS: 3ab71 18 23 32 3f d 12 48 fffff5f5 25 d 2c 43 39 59 2d 14 b b b -FIXUPS: 3a419 15 2b 11 2d 7b d 4c 20 d 61 20 d 5e 1d 58 12 b b b 4af5 10 -FIXUPS: 3f2b1 1c2 f4 5 1d 14 6 26 12 27 10 10 19 19 13 13 13 16 16 16 e -FIXUPS: 3f6eb ffffaa67 27 f 21 49 27 f 21 4b94 16 10 1f 8 2b 3b 1e 2f 10 -FIXUPS: 3ef31 c 6 87 2c 6 a8 1a 3b 23 1b 10 d a b 8 12 d 40 1d c 15 3afb -FIXUPS: 42d11 18 1e 5 1d e 13 1f e 13 1f e 13 ffffbe2f 29 1b 10 d a b 27 -FIXUPS: 3ece9 14 b 4f 10 18 f 10 1f 15 3b3a 18 19 4a 15 38 2b 21 11 31 -FIXUPS: 42a72 10 19 19 13 13 13 16 16 16 e e 1e 89 27 10 2d 30 d 37 d 22 -FIXUPS: 425e6 1d 8 14 8 10 20 d d 8 19 c 3e 16 23 1a 2a e b b 2c 30 30 -FIXUPS: 4281a 2a 2b d 17 2a 15 1c b fffffab8 d 2c 23 d d e 17 10 9 6 b -FIXUPS: 42480 f 17 10 b 18 1c 10 14 8 b 20 d d 1c 14 8 b 10 20 fffffaab -FIXUPS: 42099 8 3a 13 1a 11 8 28 29 16 27 13 b 8 20 1d 8 1f 17 10 f 15 -FIXUPS: 4228c 3a 13 1a 11 8 2d 23 32 fffffa2e a 10 9 8 d d 20 d d 8 19 -FIXUPS: 41e68 3e 16 23 1a 20 29 32 23 d 2c 13 b 8 8 23 1d 8 1f 10 fffffb65 -FIXUPS: 41bfd d d e 17 10 9 6 b a f 17 10 13 13 e 26 d d a 22 10 8 a 10 -FIXUPS: 41d85 9 8 d 9 8 fffffa9f 23 1a 29 29 32 23 d 2c 13 b 8 29 17 15 -FIXUPS: 419f3 39 1d 8 34 15 8 1b 13 1a 11 8 26 23 32 23 d fffffaab 8 a -FIXUPS: 4167b 9 8 d d 8 a 10 d 9 8 d 20 d d 20 d d 13 9 8 d 20 d d 8 19 -FIXUPS: 417ff 3e fffffb95 1a 11 8 24 23 32 23 d 2c 23 d d e 17 10 9 6 b -FIXUPS: 41570 f 17 10 e 26 d d a 22 18 10 9 fffffa96 8 2a 1c 24 17 15 8 -FIXUPS: 411a8 13 1a 11 8 2b 29 16 27 13 b 8 12 1d 8 27 c 17 15 8 3c 1d -FIXUPS: 413a4 1b fffff8b8 b b 3c 49 17 23 2d d 10 21 d 53 32 23 4d 16 2a -FIXUPS: 40f0c 4b 32 2d 23 29 32 23 d 2c 13 b 8 14 fffff6af d 6c d 40 d -FIXUPS: 40879 14 15 70 23 d 27 48 d 1b 23 16 15 5d 27 2e 23 1e 13 1c 23 -FIXUPS: 40b82 34 23 23 6d fffff474 1c 1e 52 36 17 23 18 28 e 50 11 20 8 -FIXUPS: 402c8 3e 1d 35 21 2b d eb d 70 d cb 2a d 62 d 65 d fffff4e1 3f -FIXUPS: 3fc4c 37 d 10 24 d 12 92 a4 23 16 b 3f 1d d 3d 10 1d d 56 1d d -FIXUPS: 3ffd1 1d d 26 58 e 32 17 fffff652 27 f 21 49 27 f 21 30 11 27 13 -FIXUPS: 3f8b1 d 6e 27 55 71 23 2d d 15 27 d 15 27 e 18 4c 21 d 22 5d46 -FIXUPS: 45919 16 e e 1e 30 ffffd4a9 27 f 21 30 23 6d 10 22 d 1f 5 26 10 -FIXUPS: 43002 19 19 13 13 13 16 16 16 e e 2351 13 17 1c 12 10 12 21 92 -FIXUPS: 45581 58 23 14 2c d 73 d f3 20 1b 5 5 5 23 39 10 10 19 19 13 13 -FIXUPS: 458ed fffff2c9 ea 249 23 2d 19 18 18 ba 1d 1b b b a 2b 77 19 15 -FIXUPS: 45186 f9 b 4c 18 15 3d 2e 15 10 2c 10 1d 13 fffff1aa 30 80 23 16 -FIXUPS: 44717 4e 54 29 16 8 8 39 44 28 44 26 d 11 90 32 16 16 16 19 15 -FIXUPS: 44a89 1a d 52 84 23 fffff130 c0 12 e7 18f 9f 3c 25 8 2f 90 22 7 -FIXUPS: 4421e 5f 58 14 23 7 f 15 18 15 15 18 15 15 18 15 15 18 30 fffff099 -FIXUPS: 434ee 3c 2e 42 3f 23 16 137 23 16 b b 95 d 66 29 23 16 2d 118 32 -FIXUPS: 43a9c 7d 50 30 90 23 16 8 8 5a 66bd 23 17 20 d 18 41 e b 15 11 -FIXUPS: 4a4ed 3a 5 1d e 13 ffff8ba0 a 25 e 32 29 16 12d b4 23 16 87 23 -FIXUPS: 434ae 23 69fe d 31 1c 2b d 10 4a d 35 d 14 78 36 d 22 2e 30 23 -FIXUPS: 4a189 2b 33 d 15 14 1c 23 32 23 d 1a 1b fffff79e 9 14 9 42 21 11 -FIXUPS: 49b63 1a 17 d 9 14 9 52 23 16 b b 33 49 12 33 10 13 15 3f d 4b -FIXUPS: 49e05 61 d fffff926 8 c 1c c 3a 8 22 a 10 a 2a d 37 d 14 49 d a -FIXUPS: 49970 17 d 30 13 b 21 14 1d d 1d 17 f fffff8b3 38 8 91 31 40 40 -FIXUPS: 494f9 e b b b b 26 23 32 23 d 10 b f 4a 31 36 30 23 32 23 d 10 -FIXUPS: 49789 8 fffff61a 1e 50 23 32 23 d 10 b b bc c c f 88 c 57 2f 1e -FIXUPS: 490f3 28 1e 14 ab c c f 60 c 57 23 1e fffff243 23 d 11 5b d 92 -FIXUPS: 486ae ab 11 1c 143 22 19 c5 f0 2d 23 d 62 14a 10 10 19 19 13 13 -FIXUPS: 48d4d 16 16 16 e fffff3d2 2a 23 1b d b 27 23 d d 8 f 16 42 d 3c -FIXUPS: 4831c d 37 1e 18 25 d 27 50 6b 18 27 23 16 10 d fffff73a 68 27 -FIXUPS: 47db9 e 18 2e 14 1a 24 20 d 12 15 15 1f c d 52 24 51 38 1a 39 1a -FIXUPS: 4807e 20 4b 23 16 b f fffff536 b 58 17 1d 61 d 16 39 48 bb 11 3c -FIXUPS: 47949 11 2c 33 11 8 8 12 11 49 30 34 38 13 19 73 56 22 11 fffff4b5 -FIXUPS: 470d2 6a d 40 1d 5b d 3f 3a 62 23 16 50 d a 31 1f 23 3d 23 8d 23 -FIXUPS: 47539 31 d 32 23 1a 23 30 23 fffff47e 11c 13 3c d c 2b 17 59 e -FIXUPS: 46d0f 20 d 12 39 d 68 a b f 23 e 58 6 6 f 6 109 1a 85 1f 28 fffff3c9 -FIXUPS: 4648e 1b e9 d aa 25 d 23 15 2c 50 2a 25 d 55 52 23 d 27 28 d 3b -FIXUPS: 46906 5a d 5a d 52 3b 38 34 fffff1c1 d 2d b 17d 6 ac d 55 77 59 -FIXUPS: 4604c 19 9d 14 51 43 15 17 2a 17 25 17 9a 75 d 9a 10 22 1d d 12 -FIXUPS: 4ae42 10 10 19 19 13 13 13 16 16 16 e e ffffaaa2 8c 23 16 1b 1c -FIXUPS: 45adb 11 2d 23 16 b 10 2b 41 2a 1d 21 d 4b2a d 10 12 25 1c 61 2a -FIXUPS: 4a893 d 56 d 5c 54 a6 d 93 23 95 78 23 13 8 c 45 25 2c 2b d 45 -FIXUPS: 4ae17 5 1adb 5 1d e 13 28 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 4ca77 ffffdb12 17 44 19 40 d 13 3c 5d 2b 28 22 1a90 e 1d d 14 c -FIXUPS: 4c25e 4b 25 29 23 60 1f 20 14 4d d 1d3 8 33 24 f 19 f2 2b 8b 23 -FIXUPS: 4c85f 2a 10 29 12 fffff2f4 41 23 51 1c 3a d 18 3f 75 77 61 25 29 -FIXUPS: 4bf04 32 4f 25 38 2c 5a 1f 5c 26 14 b 22 13 16 3d 18 a fffff28a -FIXUPS: 4b48e 23 d 4b 1c 25 3b 31 a 8 f 21 37 1d d 34 77 61 44 29 32 60 -FIXUPS: 4b889 3d d 1e 59 2c 5f 10f 7d 19a1 10 19 19 13 13 13 16 16 16 e -FIXUPS: 4d5db ffffd987 27 f 21 30 34 1c 11 15 8b 5f 3c d 57 3a d b8 101 -FIXUPS: 4b3ff 3a 1c08 8 1b 1a b 61 1e 59 11 11 11 c 61 23 d 28 1c 24 38 -FIXUPS: 4d2f5 51 36 6a 9 40 2e 2a 5 1d e 13 28 fffff6b1 20 d d 8 19 1e -FIXUPS: 4cc39 27 43 9 1f 15 79 20 d 23 23 5d 23 32 20 d 36 34 66 2d 21 -FIXUPS: 4cff6 23 d 10 2185 19 13 13 13 16 16 16 e e 1e 11 b 24 e 32 e 32 -FIXUPS: 4f357 13 1f 30 30 30 ffffd690 e b 1e 29 2c 32 12 21d3 4d 23 32 -FIXUPS: 4ee11 d 10 8 8 15 12 71 9 16 14 20 ff 12 4f 1e 5 1d e 13 1f 13 -FIXUPS: 4f139 e 13 28 10 10 fffff6e7 23 48 25 23 32 23 d d 4e 23 32 23 -FIXUPS: 4ea7e 2c 23 d 16 19 23 1b 32 23 32 23 d d 2e 23 4d 23 5d fffff650 -FIXUPS: 4e39c 32 52 d 1d 3c d 54 42 23 32 23 d 2c 23 d 16 21 28 23 32 32 -FIXUPS: 4e713 d 10 47 d 25 20 23 78 fffff73a 48 10 10 10 23 4f e e e b -FIXUPS: 4e0c5 34 10 2c 23 d 24 10 8 17 21 23 32 23 d 12 49 23 32 23 d fffff8a4 -FIXUPS: 4dc11 d 4b 10 8 c 1c 23 2d 23 16 34 d 6 7b 25 23 16 c 6b 12 b 9 -FIXUPS: 4defe 9 f 9 f 9 f 26 fffff8f0 d 1e 2c 27 d 16 19 1d 11 15 22 3e -FIXUPS: 4d9bf 9 35 d 75 d 6d 1b d 18 10 c 13 13 e 10 e 1d d 5da8 e 13 1f -FIXUPS: 539e9 50 30 30 13 1d 13 1d 13 1d 13 ffff9ad6 27 f 21 49 27 f 21 -FIXUPS: 4d752 27 f 21 30 d 21 19 1c 5d80 16 8 b 38 d 17 58 2c 32 5 1d 50 -FIXUPS: 53777 b b 1c 40 30 30 e 13 1f e 13 1f 11 b 24 30 e 13 fffff7df -FIXUPS: 53163 23 d 2c 2d d 2c 23 d d 8 32 d 24 14 19 ae 15 16 e 27 23 d -FIXUPS: 53459 23 1b 10 2d 2f 13 83 fffff8b4 2b 10 11 b 11 19 16 7 14 7a -FIXUPS: 52f8a 2f 11 2f e 8 8 14 e e 7 10 c 14 e c 20 c 14 21 12 fffff89e -FIXUPS: 529cc 32 23 d 10 27 23 d 64 29 32 23 d 10 27 23 d d b b b 28 9 -FIXUPS: 52c64 39 12 31 22 12 31 f0 fffff77f 7d 35 1d 2e 23 d 28 12 2e 23 -FIXUPS: 5279e 23 d 10 27 23 d 1b 52 10 10 19 19 13 13 13 16 16 16 e e fffff7b0 -FIXUPS: 5214b 34 12 a 1e 19 47 2a 23 d 2c 23 d 2c 23 d 2c 23 d 10 8 c b0 -FIXUPS: 524b1 d 33 23 d 3e 14 19 fffff63c 9 7 41 23 16 f b 22 94 23 d 2c -FIXUPS: 51da1 d 19 88 5a 23 16 87 23 19 84 2a 23 d 2c 23 d 2c 23 fffff498 -FIXUPS: 515ef 54 36 18 d 1b 23 1b 42 23 16 67 d b3 d 2a d bc 23 16 26 91 -FIXUPS: 51aac 16 b 16 29 7 26 23 65 fffff46d b b 11 2e 32 15 34 1d 12 b -FIXUPS: 51175 1a 7 42 7 7f 23 50 20 1a 3b 7 60 16 62 c 67 23 54 7 60 fffff65b -FIXUPS: 50bdc b 27 27 9 37 44 d 13 24 29 d e 2a 28 46 23 16 37 16 26 32 -FIXUPS: 50eda d 32 17 21 88 29 16 b fffff7c4 23 d 10 b b 8 30 2e aa 11 -FIXUPS: 50965 4b 18 11 1b 1a 39 1e 8 2f 16 c 25 12 c 13 65 23 13 c b fffff78f -FIXUPS: 5037b 33 18 15 2e 17 29 23 19 c 15 27 23 d 10 b 21 17 2e 93 7 4b -FIXUPS: 5069d 2a 14 c 82 14 c 25 d fffff5e5 c4 3a 1c 21 c 28 19 4b 43 23 -FIXUPS: 4fff7 24 4a b 1a 30 1a 1a 34 44 d 1f 97 23 32 23 d 10 8 43 36 fffff5aa -FIXUPS: 4f8f1 1e 2a 2a 20 d 2c 20 d 16 1d aa 33 30 20 d 2c 16 b 1a 1a 30 -FIXUPS: 4fc57 13 15 16 1a 2f 3a 36 33 c559 1f 13 ffff3156 27 f 21 49 27 -FIXUPS: 4f538 21 49 27 f 21 49 27 f 21 30 16 30 20 d 7d 55 1b 10 33 20 -FIXUPS: 4f899 40 c701 1f 11 1f e b b b 31 e 32 e 13 1f e 32 e 13 1f 13 -FIXUPS: 5c1b9 e 32 e 13 1f e 32 e 13 1f e fffff7a2 23 3d 23 3d 23 3d 23 -FIXUPS: 5bc29 23 25 33 35 23 3d 23 97 36 23 6d 10 2d 23 d 23 10 8 18 1e -FIXUPS: 5bf9c 1d e fffff65f 14 52 b 22 30 49 17 23 32 23 d 1f 3c 23 1d -FIXUPS: 5b883 36 23 1b 10 8 33 24 23 23 16 1a 1d 23 16 1a fffff7cd 2a 23 -FIXUPS: 5b273 2c 23 d 16 15 92 23 d 2d 30 23 d 25 16 b b b 8 20 13 15 21 -FIXUPS: 5b534 1a 57 2d 15 b fffff77a e 1c 24 19 e 28 23 16 8 8 1a 49 2c -FIXUPS: 5af04 d 11 52 21 14 20 23 16 9 a 4c 6f 39 23 16 67 23 fffff6b0 -FIXUPS: 5a88f 12 1a 58 31 23 d 26 21 c 16 4c 23 16 9 a e4 23 1b 10 47 21 -FIXUPS: 5ac89 23 16 b 9 a 26 29 24 fffff7d7 b 8 8 8 10 19 4e 19 14 19 10 -FIXUPS: 5a650 13 14 19 10 3b 23 14 19 10 36 13 14 19 10 34 14 19 10 27 -FIXUPS: 5a025 24 98 18 23 32 23 d 10 8 49 2c 23 d 36 14 1e 36 21 3b 31 -FIXUPS: 5a39c 21 42 3a 23 32 23 d 2c 23 d fffff5ef 20 23 4d 2a 23 d 2c -FIXUPS: 59c42 d d 8 17 10 12 17 1c f 22 171 f 23 1c f 19 15 28 1a 12 91 -FIXUPS: 5a005 d fffff70b 23 d 11 8 10 3a 19 23 13 49 31 23 d 11 16 49 23 -FIXUPS: 59957 10 22 23 16 52 23 d 11 3a 8 22 23 16 fffff786 27 2a 23 16 -FIXUPS: 5931c f 1e 23 16 17 20 2a 23 d 2c 23 d 16 15 73 23 d 2c 98 18 23 -FIXUPS: 5966e 23 d 10 8 fffff827 f 19 15 28 17 f 12 27 e 2d 23 d 13 2a -FIXUPS: 5906c 32 23 d 1f c 18 18 29 27 23 1d 1a 36 23 1b 10 fffff882 23 -FIXUPS: 58b29 23 2d 23 2d 23 2d 23 2d 40 23 2d 23 2d 2a 23 d 2c 23 d d -FIXUPS: 58e14 8 17 10 12 17 1c f 25 fffff7b3 d 38 3e 23 d 38 23 d 38 3e -FIXUPS: 5881e 13 2c 20 d 3b d 27 30 30 10 8 1e 23 23 23 23 1e 23 2d 23 -FIXUPS: 57f38 21 23 5d 23 5d 23 cd 23 ac d 24 23 cd 23 38 f f 7 23 f f -FIXUPS: 58401 88 23 4d 23 4d 23 7d 10 33 fffff0d7 2e 8d 37 13 21 23 dd -FIXUPS: 5796c 32 13 8 93 28 24 85 53 26 24 6f 23 a6 d 11 19 23 5d 23 5d -FIXUPS: 57e4c 4d 23 fffff2f6 67 23 16 5c 23 d d ca 74 23 1b 32 23 96 10 -FIXUPS: 57572 19 19 13 13 13 16 16 16 e e 1e 23 13 b d fffff635 7d 23 7d -FIXUPS: 56e1c 3d 23 4d 23 16 8 12 15 38 23 16 3e 19 23 2b 6 17 23 c 26 -FIXUPS: 570dc 5d 23 16 1b f f fffff2ed 61 23 37 d 10 b 25 34 b9 3c 23 16 -FIXUPS: 56779 d a3 23 67 96 30 23 16 f9 d b1 30 23 16 2b 3c 32 33 fffff2a9 -FIXUPS: 55f83 46 23 16 33 10 1c 20 b 1c 27 1c 2e 23 16 b 22 ba 23 30 f -FIXUPS: 562aa 7 26 2a 3b 9a d 24 24 23 fffff5ee d 21 bc 46 2d 23 13 39 -FIXUPS: 55c26 10 73 23 13 29 1e 10 23 23 32 23 d 10 8 1e c 49 23 16 2a -FIXUPS: 55ef6 44 fffff400 f 9 6a ca e 10 e 72 25 23 4d 23 32 25 d 36 23 -FIXUPS: 556a6 1a 20 6b 9f 25 c7 16 24 36 35 2e 23 1b fffff263 1a 25 23 -FIXUPS: 54cc4 a 62 d 49 d 29 d 20 20 23 18 b 19 77 6b 9f 23 3d 87 f 9 123 -FIXUPS: 55230 61 73 f 9 fffff2d2 2c 23 d 8f 23 32 23 d 2c 23 d 2c 23 d -FIXUPS: 54856 7 13b 3d 17 2d 14 31 2b 23 23 5b d 4d d 39 d fffff399 2c -FIXUPS: 53fbc d 2c 20 d d 1f d 24 11 19 93 2e 20 d 42 2a 20 d 14 10 65 -FIXUPS: 542cb 38 36 21d 13 23 32 23 bd38 13 1d 30 30 ffff37c9 27 f 21 49 -FIXUPS: 53c39 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 30 2a 20 -FIXUPS: 60022 16 1d 20 1d 17 12 29 23 5 5 21 10 10 19 19 13 13 13 16 16 -FIXUPS: 601ff e e 1e e 13 1f 49 17 e 13 fffff7c3 7b 25 3a 3d 19 1e 16 c -FIXUPS: 5fc69 33 12 1b 12 1d 41 7e 23 d 62 14 21 1c 12 15 24 19 54 1f 48 -FIXUPS: 5ffc7 32 fffff21c 60 10 73 12 28 24 e 69 1a 13 e 2f 49 10 24 e -FIXUPS: 5f534 32 253 14 b b eb 1d f 12 27 26 1e 15 11d fffff1f4 59 51 10 -FIXUPS: 5ed65 55 10 55 e 59 55 e 59 e e 7f 12 10 51 11 25 c 10 c 1a 10 -FIXUPS: 5f0e8 e 69 1a 13 e fffff49e 1f 10 72 26 72 10 1f 10 72 10 1f 10 -FIXUPS: 5e86f 72 2a e e e 72 3f 13 51 8 48 87 74 1d 69 f 10 55 fffff561 -FIXUPS: 5e246 e e e e 2f f 15 1e 59 10 10 10 10 10 10 2f 38 19 10 e e 5d -FIXUPS: 5e4c4 e 30 c 10 72 26 72 fffff770 49 c c 10 5b 10 27 11 49 10 11 -FIXUPS: 5df5f 10 72 10 d c 10 e 72 14 10 c 25 e e e 57 13 4f 10 fffff719 -FIXUPS: 5d943 f 10 4d 24 14 24 38 10 4f e 5b 1a 13 30 1a 13 32 c 1a 10 -FIXUPS: 5dc0d e e 27 87 1d 13 5b 10 10 fffff722 2f e 72 13 2c 79 10 12 -FIXUPS: 5d647 10 67 18 10 27 24 18 10 27 24 18 10 27 24 18 10 28 10 15 -FIXUPS: 5d8d1 e e fffff6f6 1a 13 28 e 42 2f a 19 12 1e 14 6 d f 5a 1a 8f -FIXUPS: 5d25f f 10 e 6d 21 13 22 e 72 13 2f e 72 fffff7f7 4b 24 18 10 e -FIXUPS: 5cd3b 4e 10 e b 13 16 1a 13 e e 4e 10 e 10 e 1a 13 e e 4e 13 11 -FIXUPS: 5cf8b 11 36 fffff717 23 45 20 d 10 21 d 22 4b 23 39 24 50 23 3d -FIXUPS: 5c9a9 30 30 2e 51 23 b 5f e e 58 4d 24 18 10 e fffff732 27 f 21 -FIXUPS: 5c3ec 1d e d 30 20 d 2c 20 d 2c 20 d 16 e 2d 35 10 1f d 32 20 d -FIXUPS: 5c678 d 24 e 10 3e2a d 16 21 24 23 32 23 d 1a 22 1f 2b 32 23 30 -FIXUPS: 60719 2e 5 46 10 10 19 19 13 13 13 16 16 16 e e 7aae 13 1d 13 1d -FIXUPS: 6839c 1d 13 ffff84ed 59 10 10 19 19 13 13 13 16 16 16 e e 1e 2e -FIXUPS: 60a4c fffff9a6 27 f 21 30 23 32 7bb4 f 16 5 1d e 13 1f 13 1d e -FIXUPS: 6815a 1f e 13 1f e 13 1f e 13 1f 11 1f e 13 1f e 13 1f e 13 fffff998 -FIXUPS: 67cd9 23 13 8 20 12 c 2f 25 23 13 8 10 8 1a 2a 23 d 37 2a 23 d -FIXUPS: 67f19 10 14 18 2e b2 14 20 e fffff85e 1b 19 20 23 13 c 12 1c 23 -FIXUPS: 679cf 8 24 13 10 38 12 10 25 1f 6e 20 3f 12 2e 2a 23 d 1b 1e a -FIXUPS: 67c89 fffff84b f 12 20 1c 28 26 30 d d b 45 23 5d 12 8 2a 23 d -FIXUPS: 67739 12 26 28 32 d 2c 23 d 28 29 18 2e fffff88a 1f 25 12 5 14 -FIXUPS: 671d7 28 5 14 13 17 2a 23 d d 2a 23 d 1e 41 37 2e 20 22 23 10 8 -FIXUPS: 67474 23 d 1f fffff8d2 d 27 e 18 2a 2a 23 d 17 20 d 1b 11 19 91 -FIXUPS: 66fb0 d 2c 12 33 2b 30 1b 7 d 21 e 22 18 7 20 fffff871 44 d 31 -FIXUPS: 66a48 2c 23 d 2d d 3f d 27 d 3a d 27 d 11 2a d 11 2a d 26 d 2d -FIXUPS: 66d10 d 11 2e d fffff808 15 29 25 d 16 18 20 2a 23 32 23 d 2e 23 -FIXUPS: 66769 e c 34 23 d 1d 2d d 22 20 d 2b 83 d 11 53 fffff7dc 31 23 -FIXUPS: 6620d 44 38 23 32 23 d d 29 15 8 13 c 18 1a 1b 1b 3e d 1d 11 1d -FIXUPS: 6648b 1d 11 30 26 32 23 fffff7e6 26 c 2e 4c d 54 23 d 26 15 15 -FIXUPS: 65eec b 11 28 46 1c 3a d 54 23 d 13 c 16 22 25 12 5e 6 33 fffff801 -FIXUPS: 659a5 37 d 34 d 4f 12 40 d 2a d 15 23 22 23 13 8 8 1d 8 b 3d 28 -FIXUPS: 65c51 19 c 34 3d 19 18 25 fffff78e 20 2e 25 1b 30 15 1b 34 c 20 -FIXUPS: 6563c 32 23 d d 5e 46 d 2c 1c 50 d 54 d 1f 47 d 1a 31 29 23 fffff6bb -FIXUPS: 65059 23 1a 23 26 1b 8 b 2d 2a d 1b 76 f 2b d 1e 45 d 3b d 11 2a -FIXUPS: 65349 48 d 1f 47 d 1a 2b fffff6a5 12 43 12 27 23 18 b 4a 60 17 -FIXUPS: 64cad 74 23 d 28 12 30 23 d 42 2c 26 4e d 55 1a 71 23 d 10 20 fffff67c -FIXUPS: 646a3 10 8 b d b 11 26 4d 66 32 78 23 d 37 8 3b 23 d 4a 23 d 23 -FIXUPS: 649fb 30 23 d 2e 26 13 26 fffff833 31 a 34 1f 22 1e 30 30 17 34 -FIXUPS: 644b7 d 2e 10 10 19 19 13 13 13 16 16 16 e e 1e 13 8 18 1d 2a fffff409 -FIXUPS: 63a93 14 55 2d 60 23 75 1a af d d2 26 16 4a 53 1a 9d 30 20 30 3c -FIXUPS: 64039 40 60 23 3d 20 40 120 30 e fffff0d8 2a e 32 60 1a0 17 1d -FIXUPS: 63702 23 d 27 12 30 23 d 55 29 3c 23 d 14 15 3d 1e 26 3a 13 1d -FIXUPS: 639ef 3e 2f fffff5c5 d 2b 23 16 37 17 2d 32 29 27 23 d 22 10 15 -FIXUPS: 6320c b 29 27 23 d 31 d 18 1c 26 13 18 2a 10 29 fffff7aa 32 27 -FIXUPS: 62c19 23 1b 1d d 48 26 1b 21 1e e 18 1d d 36 14 21 d 16 5f 33 23 -FIXUPS: 62f09 23 2d 25 2b 23 32 fffff666 10 12 15 34 41 e 1b 14 b 12 1b -FIXUPS: 627dc 1e 25 15 25 26 43 47 26 23 29 4e 26 38 30 1d 43 18 19 59 -FIXUPS: 62267 18 23 27 23 d 30 23 15 15 33 26 14 26 26 26 1a 15 6 2f 26 -FIXUPS: 624f7 22 26 20 1a 26 18 22 29 32 23 fffff689 1a 65 a2 3b 2d 30 -FIXUPS: 61eb2 27 26 32 23 d 1b 54 29 23 16 22 31 3d 27 26 1b 3d 32 16 22 -FIXUPS: 621de 25 26 23 fffff5c4 36 1c 27 23 4d 1e 20 d 1a 29 27 23 d d -FIXUPS: 61a39 23 38 35 23 4d 2a 23 d 10 60 1f 25 22 30 14 26 fffff5b6 30 -FIXUPS: 61339 24 d 6f 29 19 8 76 2f 41 d 2a d 1d 20 d 14 20 d d 8 f 8a -FIXUPS: 61693 3f 17 70 e 29 12 fffff5b7 49 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: 60f82 27 f 41 30 10 70 20 d 52 20 d 4d 27 26 2b 1d d 38 8306 10 -FIXUPS: 695a2 19 19 13 13 13 16 16 16 e e ffff7417 27 f 21 49 27 f 21 49 -FIXUPS: 60be9 f 21 49 27 f 21 49 27 f 83ef 36 d 14 17 74 23 36 27 23 3e -FIXUPS: 692f7 62 10 2d 5f d 27 10 8 18 23 20 1b 5 5 5 23 13 1d e 13 fffff3e2 -FIXUPS: 689b9 23 23 14 26 5a d 99 61 20 8f 23 3e d d0 25 5d 23 18 b b 33 -FIXUPS: 68e9a 6d 46 8c 23 5f d 81 23 fffff34d f 21 33 1d e 2e 34 23 32 -FIXUPS: 685bb 3e 23 13 8 18 13 37 23 32 5c d 58 d 1c 12 5d 43 3f 23 16 -FIXUPS: 6890a 736d 22 1b 47 47 28 204 2b 12 33 2b 10 8 1e 28 5 1d e 13 -FIXUPS: 700c9 11 1f e 32 13 1d e 13 1f e 13 ffff8268 732f 54 36 33 2a 11 -FIXUPS: 6f899 23 19 64 29 32 23 d 10 b 3e 2c b 14 1c 3e 44 26 14 19 40 -FIXUPS: 6fbbc 19 c 44 34 fffff48f 4d c2 2c 13 17 17 17 25 b0 15 1e 17 15 -FIXUPS: 6f40f 26 41 1e 10 1d 17 b 49 bd 18 33 35 40 55 1b 23 19 fffff550 -FIXUPS: 6ed5f 1a 23 16 12 1e 38 14 1a 14 20 14 d 29 14 1f 29 35 23 d 2c -FIXUPS: 6efd6 d 2f 23 d 2c 23 d 10 14 fffff954 2a 8 15 17 8 15 28 8 15 -FIXUPS: 6eaed 8 15 17 8 15 17 8 15 28 8 15 28 8 15 28 8 15 28 8 15 17 fffffa1e -FIXUPS: 6e6d9 40 29 16 8 e 15 32 10 2f 17 d 8 24 18 23 17 2a 2b 17 28 1c -FIXUPS: 6e955 b 22 10 1c 23 17 e 15 fffff85e 23 27 14 2c 23 d d 43 1b 28 -FIXUPS: 6e3e4 25 26 3d 1b 2c 49 d 23 a 14 15 d 12 1d 6e 23 16 12 1e 35 -FIXUPS: 6de93 26 23 13 1c 19 8 20 14 29 20 29 16 b e 1b d 1b 11 62 d 1b -FIXUPS: 6e0f3 24 d 25 23 21 5e 19 20 15 fffff85f 14 1d 23 17 2d 15 12 e -FIXUPS: 6db8c 22 b 13 25 d 30 32 6 19 21 d b 3e d d 3b b f 4d 5c 17 63 -FIXUPS: 6d6db 1e 29 16 b b 29 1b 24 d b 24 2f d b 1f 1b 4a 17 d 19 14 5e -FIXUPS: 6d97c 13 19 38 14 1d 30 2e d fffff90a d 1c 17 13 1e 8 21 d b 3e -FIXUPS: 6d483 d 38 8 c 3b 50 17 4a 2a 10 10 19 19 13 13 13 16 16 16 e fffff926 -FIXUPS: 6d004 14 20 15 43 10 10 16 35 14 42 24 e 24 1c b 34 d 22 d 13 2b -FIXUPS: 6d2a4 8 30 20 15 12 b 16 20 fffff909 d b 3e d d 38 8 c 3b 50 17 -FIXUPS: 6ce15 24 30 30 29 16 8 19 18 24 d 8 1b 17 d 8 1c 15 1c d fffff947 -FIXUPS: 6c93f 8 1d 16 1c d 8 f 14 20 15 26 10 10 16 35 14 42 24 e 27 1b -FIXUPS: 6cb69 35 d 22 d 11 2b 2e 8 fffff811 8 b 19 23 19 84 d 1c c 57 d -FIXUPS: 6c65e d 1c c 2c d d 22 31 e1 3c 29 16 8 19 18 24 d 8 21 fffff4c2 -FIXUPS: 6bde8 13 22 1f 29 46 17 2a 17 40 19 1c f7 10 17 1e 62 d8 23 22 -FIXUPS: 6c2e6 9 17 56 9 b 2f 41 17 35 24 fffff5f8 47 17 41 24 d 8 b 1e -FIXUPS: 6bb72 16 8 b 35 16 1c 15 2f 3a 17 35 24 d 8 b 19 29 16 8 b 4d d -FIXUPS: 6b6f8 8 b 12 18 17 8 b 3a 34 18 12 b e 15 2f 3a 17 35 24 d 8 b -FIXUPS: 6b939 29 16 8 b 35 27 17 15 fffff94b 2c 23 d 2f 29 16 8 b 35 d -FIXUPS: 6b485 b 11 22 8 b 10 35 40 17 41 24 d 8 b 22 23 2d 23 2d 29 fffff8e6 -FIXUPS: 6affd d b 13 22 b 1a 16 18 17 38 1f 20 2e 23 32 23 d 17 a 20 d -FIXUPS: 6b23f 20 1c 2e 23 32 23 d 19 fffff935 16 12 1e 2c 14 20 14 d 29 -FIXUPS: 6ad80 19 29 16 14 29 18 13 18 e e 10 16 19 26 e 2c 19 25 17 21 -FIXUPS: 6afb2 fffff98d 15 19 12 13 12 13 12 45 18 1d 17 1f 23 1b 8 15 17 -FIXUPS: 6aaff 1a 23 16 12 1e 2c 14 20 14 d 29 14 19 fffff906 39 14 21 45 -FIXUPS: 6a63a d 32 29 16 b b b 21 24 36 17 d 1a 1f 28 13 13 29 17 2a 29 -FIXUPS: 6a8c4 23 d 31 d fffff647 23 14 b 16 b 12 1b 23 19 3a 16 2a 1aa -FIXUPS: 6a292 16 14 3d 29 1b b a b b 40 28 5a 1f 22 6a 2b 50 fffff60f 18 -FIXUPS: 69b94 1c 1d 1d 3f 29 18 33 23 d 10 b 15 1c f 2f 2e f 2f e 38 23 -FIXUPS: 69e42 31 9 33 9 30 d 67 81bb 22 e 13 1f ffff7529 27 f 21 49 27 -FIXUPS: 69778 21 30 e b 62 25 2b 107 8 16 12 2d 37 20 d 32 38 38 2b 23 -FIXUPS: 71c0c 2d 23 23 d 2d 23 16 13 d 27 14 39 23 23 16 17 14 80 d 25 -FIXUPS: 71ecd 14 38 23 16 e 19 1a 1f 32 28 fffff6cf 4d 1c 49 35 29 11 42 -FIXUPS: 71852 4a d 2a d 37 1c 2c 94 14 15 1b 26 42 1d 29 d 31 e 14 17 a -FIXUPS: 71b89 60 fffff5d2 1f 4b 1f 26 1a 25 19 49 b 1b 2f 6f 19 24 26 1a -FIXUPS: 71471 19 55 5a 23 19 b 8 35 22 c 31 40 f 5c fffff4d7 5c 1e 3a 23 -FIXUPS: 70c82 30 1c 4b 23 d 30 39 1f 1d 2b 29 16 1e 1a 46 112 27 2d 8b -FIXUPS: 710e2 1a 27 14 1a 25 2b fffff558 76 1a 10 2d 38 41 d 31 23 d 1b -FIXUPS: 708de 1c 16 1c 16 47 10 8 18 1d 23 23 32 23 d 14 27 23 1b d 3f93 -FIXUPS: 74aaa ffffd73d 22 ffffdff9 27 f 21 37 40 3c 6d e b 30 23 d 3b 2f -FIXUPS: 704e0 29 e b 30 23 d 2c 23 d 38 2f 84 403e 10 22 12 37 d 37 23 -FIXUPS: 747f6 26 29 f 31 d 31 23 d 27 d 15 10 3d d 23 26 13 18 1d 22 e -FIXUPS: 74a6a 1f fffff9e4 f 1d d f 1e d 1e 21 d 1c 6 9 21 e b 19 1d d 38 -FIXUPS: 74619 f 1d d 13 1d d 14 1d d f 1e fffffa12 3d 23 32 23 d 13 10 -FIXUPS: 741fc 1d 26 32 23 d 18 11 6 a 34 d 32 18 e 1d d 35 13 1d d 18 24 -FIXUPS: 74458 fffff8d5 9 19 30 49 3c 1f 27 20 42 1d d 1b 20 38 26 1e 16 -FIXUPS: 73fb0 12 2a 1c 24 d 15 1c 21 d 20 19 1c 12 fffff7af 4d d 1a 1c -FIXUPS: 73974 31 6c 1c 36 d 23 2e 20 d 1e 42 20 d 21 20 3d 26 32 23 d 18 -FIXUPS: 73caf 21 21 27 9 fffff761 1b 24 e 2d 2b 20 d 25 3b d 1b 20 3d 26 -FIXUPS: 7367d 16 10 d 2a 21 29 1a 36 18 20 39 22 d 2b 1d 39 fffff6f2 51 -FIXUPS: 7303b 23 d 1e 20 26 32 23 d 18 16 13 16 2e 2a 1a 69 58 45 1b 1f -FIXUPS: 73348 28 32 24 d 2b 36 d 26 fffff64d 60 15 23 1e b b 2d 1c 80 23 -FIXUPS: 72c8a b 18 2e 27 3b 21 d 40 22 34 38 44 3c 23 1e 15 24 9 1a 1d -FIXUPS: 72669 1e 2c 56 26 1b 25 4f 35 d 35 30 d 2e 39 12 13 13 19 c 10 -FIXUPS: 72964 25 13 8 c 19 e 3d 25 2f 23 fffff7fd 21 49 27 f 21 30 e 47 -FIXUPS: 723f9 2f 17 d 1d 23 1b 22 23 1e 16 d 22 6 6 1e 26 1b d 13 16 17 -FIXUPS: 72622 a148 d 18 30 23 26 1a 27 17 27 23 d b0 44 27 27 3b d 15 22 -FIXUPS: 7ca86 15 12 1a 22 e 13 1f e 13 ffff5708 27 a043 15 15 15 15 15 -FIXUPS: 7c39d b 1e d b 1d 84 b 50 c 30 20 e 30 e 77 11 27 23 d d b e 57 -FIXUPS: 7c705 27 fffff763 d 10 43 23 d 10 21 d 10 3b c d c 2f 3e e 4e c -FIXUPS: 7c0c2 28 44 34 46 f 35 b 1b 41 24 1e 12 fffff65e 10 15 e 3a 10 -FIXUPS: 7b996 3f 80 37 41 d 36 76 d 4d 4c 41 d 1d 62 1b 10 35 29 32 23 -FIXUPS: 7bde4 2c 23 d 2c fffff67d 29 16 16 19 12 20 29 16 16 12 19 29 3e -FIXUPS: 7b693 d 38 23 d 38 23 d 10 b 1e 7c 1f 41 d 15 13 30 fffff800 d -FIXUPS: 7b129 23 32 23 d 1d c 3e d d 18 22 29 16 b 16 12 2d 21 23 32 23 -FIXUPS: 7b3ae 67 34 29 16 16 19 12 fffff803 32 23 d 10 b b b b b 2b 69 -FIXUPS: 7ae2c 30 1d 23 32 23 d 10 18 47 24 38 23 38 23 d 10 c b 13 fffff6de -FIXUPS: 7a786 44 d 31 d 43 d 31 d 43 d 3b d 15 57 32 d 3b d 15 21 10 55 -FIXUPS: 7aaf2 16 16 19 119 12 27 20 fffff78d 14 10 2c 23 d 14 f 1d d 1f -FIXUPS: 7a535 1d d 1f 31 19 1e f 27 d 14 5c 23 38 23 d 10 c b b b fffff7fe -FIXUPS: 79f6c 3c 41 29 3e 23 d 10 16 19 11 16 52 58 10 f 26 1b 2c 1f 79 -FIXUPS: 7a2fb d 38 14 10 1b 1a 5f d 24 fffff7be 11 23 23 3b 23 38 23 d -FIXUPS: 79d14 38 d 26 10 e 2f 1d d 10 b e 6 c d 1b 25 21 2a 41 d c c fffff991 -FIXUPS: 798e0 10 d 15 1b d c 15 c 19 1b 10 d 16 15 17 d c 19 1b 10 d 16 -FIXUPS: 79a8f 17 d c ba 29 16 16 fffff9b5 d 1b 27 d 27 d 1b 27 d 27 d 27 -FIXUPS: 796ca 11 26 d 27 d 27 d 1b 1d 34 14 31 d 17 17 15 15 27 fffff97a -FIXUPS: 7925a 17 1b d 10 1a 25 17 25 24 26 f d 24 c d 10 2b 1a 1a d 17 -FIXUPS: 79483 d 16 40 10 17 27 d 1b fffff68d 29 11 26 23 16 2d 23 d 1a -FIXUPS: 78d05 13 45 2c 23 16 2a7 23 38 23 d 10 c 2c d 10 13 40 d 33 d 27 -FIXUPS: 78725 18 29 d 1f 2d d 3e 16 6a 6f e 32 23 16 2d 23 d 3f 16 5b d -FIXUPS: 78aab 1d d 19 52 16 16 32 11 29 fffff735 28 3e 4b 1d d 2d 16 14 -FIXUPS: 78463 d 1b 13 2e d 24 d 1e 31 d 1c e 16 42 d 79 d 1f 1d d 19 3b -FIXUPS: 77cdc 16 b 53 d 61 d 82 10b d5 56 d 3e 1e 26 16 29 d 22 d 1f 1d -FIXUPS: 781d6 19 1d d 19 32 29 1d d 49 fffff604 d 2d 23 d 32 23 d 10 f -FIXUPS: 779fc 24 d 28 25 d 15 25 d 1b 21 1d d 15 7d d 2c 14 1d d 3a 42 -FIXUPS: 77059 23 32 23 d 1a 21 23 32 23 d 10 39 17 1b 29 3e 23 d 10 5f -FIXUPS: 77336 62 5d 25a 16 7f 80 b7 3e 70 23 fffff325 d 43 33 50 23 d 13 -FIXUPS: 76d40 39 29 16 15 15 27 29 16 15 15 27 23 32 23 d 16 25 23 32 23 -FIXUPS: 76fde 10 2b fffff7ae d 2e 15 32 23 32 23 d 10 22 22 1f 28 23 32 -FIXUPS: 769e1 d 1d 3e 2d 3d 23 d 13 c 25 d 2b 3a 23 32 fffff7fe d 55 23 -FIXUPS: 7647e d e 11 15 3a 23 5b 23 d 13 2a 19 9 15 6 6 1c 56 23 31 d 10 -FIXUPS: 76714 50 23 d 10 fffff77c 38 23 d 10 b 63 12 10 19 e 3a 23 5b 23 -FIXUPS: 76137 31 1b 30 36 23 32 23 d 55 23 d 20 31 39 1c 23 fffff620 32 -FIXUPS: 75a31 d 2c 23 d 19 1b 7b 30 23 d 2c 23 d 10 74 23 38 23 d 85 23 -FIXUPS: 75de9 23 2d 23 2d 29 3e 23 fffff481 35 23 162 ab 29 32 23 d 2c -FIXUPS: 756d3 d 1c 8f 23 d 10 e 41 19 66 23 d 21 c 25 d 16 f 1f 29 24 fffff56d -FIXUPS: 74f43 1d 2a 10 29 12 22 1d 1d 1d 4b 23 32 23 d 2c 23 d d 55 1c -FIXUPS: 75214 1b 14 d 11 15 2b 5b 36 22 c4d3 13 1f e 13 ffff3268 27 f 21 -FIXUPS: 74b69 e 26 82 2a 2c 13 d 14 10 2d 38 38 38 38 38 38 38 38 33 10 -FIXUPS: 74ef1 18 c46a 1a 2c 23 16 27 23 d 2a 30 26 23 1b 42 23 27 15 1f -FIXUPS: 81606 13 20 23 16 2f 31 77 23 2d 23 3b 5 1d fffff780 8 18 1d 23 -FIXUPS: 81007 30 32 2c 45 1f 10 2d 33 10 8 18 20 23 32 23 d d 1f 1b 1c -FIXUPS: 812c9 23 32 23 d 15 fffff846 23 32 23 d d 22 3b 1c 12 22 17 21 -FIXUPS: 80d37 37 4a 15 2f 19 10 f 2c 18 10 f 22 10 2d 23 d 32 31 fffff7e5 -FIXUPS: 807a9 23 d 2c 23 d 10 a 29 6 3b 2a 23 d d 29 21 15 2e 1c 15 28 -FIXUPS: 80a1b 6a 1f b 6 20 24 2c 72 fffff6e3 1f 23 16 b 37 16 12 1d 50 -FIXUPS: 803c9 50 20 50 30 2a 23 d 10 b b a 12 ef 35 e 2b 16 29 24 21 1a -FIXUPS: 7fe25 1e d 1a 3e 19 1c 37 65 29 16 1d 3b 1c 19 19 1b 29 16 1d 3f -FIXUPS: 8011f 2a 23 1d 23 16 27 4b 15 13 d fffff7bd d 2c 23 d 10 b a 21 -FIXUPS: 7faee 14 15 2a 26 b 10 16 19 54 1f 45 29 16 4e d 12 2d d 12 58 -FIXUPS: 7fdf9 d fffff8cb 1e b 1d 19 19 10 14 1c 29 16 b 1d 3f 1d 1c 1d -FIXUPS: 7f89a 19 19 10 14 19 29 16 1d 19 1d e c 24 2a fffff8cf 14 23 23 -FIXUPS: 7f36f 13 12 17 20 d 21 23 17 21 12 2e 25 23 13 b 11 6e 20 23 1f -FIXUPS: 7f5ee d 1e 29 16 1d 3f fffff8a3 32 20 14 b b d 10 19 c 12 15 16 -FIXUPS: 7f069 23 30 36 18 c a 19 23 30 6d 23 26 18 11 12 13 25 d fffff848 -FIXUPS: 7eb1e d d d b 11 d b 11 11 d b b 15 f 187 36 17 19 14 1d d 2c 36 -FIXUPS: 7ee82 12 19 1c 23 4b d fffff84b d d d 2e 2e 2e 2e 2e 4b c 30 26 -FIXUPS: 7e979 41 13 19 10 c 1f b 11 d 14 1c d 16 14 f 1c 14 d fffffa62 -FIXUPS: 7e571 d 11 d 11 d 11 d 11 e 9 19 13 9 d b 17 34 33 d 9 11 c 12 -FIXUPS: 7e71f c d 13 11 11 11 fffffbeb 16 e d c d d 19 d d 19 d d 13 12 -FIXUPS: 7e45d d e d e d c d c d c 13 d 1e 16 d 13 fffff8b5 d 10 1d 2c 22 -FIXUPS: 7deab 15 64 25 23 2d 23 2d 23 16 13 10 33 a 6 37 44 49 29 4d 29 -FIXUPS: 7e21a 8f 23 38 9 fffff5f8 20 d 21 33 d 3e 41 55 15 12 10 10 16 -FIXUPS: 7daca d9 76 29 1b b a b 10 12 36 12 30 d 6 5f 29 32 fffff675 23 -FIXUPS: 7d4ae 23 d 15 b a 25 2a 28 2b d 23 9 a 9 20 20 d d5 41 23 16 b -FIXUPS: 7d7b7 1f 59 d 25 76 e fffff642 12 23 57 2c 17 b3 10 2c d 27 d 13 -FIXUPS: 7d157 d 1b 30 d 32 38 38 38 38 4b 10 8 18 1d 1d 1d 29 23 b64e 1f -FIXUPS: 88a67 13 1f 13 1d 13 1d 13 1d 13 ffff4046 27 f 21 49 27 f 21 49 -FIXUPS: 7cce9 f 21 33 1d e 30 32 9b 35 17 b86b d 11 5e 1f 10 6 36 d 20 -FIXUPS: 88869 12 e f 1f 22 e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f e fffff8c1 -FIXUPS: 882f5 34 26 1b b 19 17 63 d 5c 13 13 43 18 2e c 22 22 24 16 1d -FIXUPS: 885cd 34 d 15 c 17 3b 38 26 1d fffff800 14 6 1d 26 12 2a d 27 13 -FIXUPS: 87fec 10 11 19 46 5a 23 d 23 14 2c 2a 23 d 10 b 11 17 37 43 1f -FIXUPS: 882c5 fffff852 d 42 1a 17 26 17 43 1d d 12 20 36 23 16 30 22 35 -FIXUPS: 87d8f 1d c 37 11 f 1e 6 18 d 20 31 23 1d fffff8ee 1b 23 11 35 c -FIXUPS: 87889 22 24 16 1d 6 34 d 15 c 17 2f 29 26 32 23 d d d 8 10 13 8 -FIXUPS: 87ab9 21 d fffff8c6 19 46 5a 23 d 23 14 2c 2a 23 d 10 b 11 17 37 -FIXUPS: 87610 1f 36 23 d 34 19 11 b 2b 26 1b 13 33 14 fffff86a 13 8 24 -FIXUPS: 8707a d 10 20 d 56 d 18 40 3d d 27 d 25 12 2c d e 2d d 37 d 43 -FIXUPS: 87349 20 13 10 10 fffff8ca 16 20 32 17 1e 20 d 25 34 26 1d 2f d -FIXUPS: 86e1f 2f d 29 d 11 e 2a c 27 20 d 4d 20 d 25 30 12 fffff93d 17 -FIXUPS: 8699e d 11 d c 10 c d c 17 17 b b e 3e d 15 13 1a 17 34 42 d 1a -FIXUPS: 86bd2 d 47 6 18 1c fffff963 2b 2b 23 1d 2f d 15 15 20 1f b 1f 13 -FIXUPS: 86753 23 1d 19 29 1a 17 13 a 14 20 6 17 2e 37 26 1d 2f fffff931 -FIXUPS: 8629b 13 17 6 1e 23 1d 2f d 12 15 1f 13 13 a 1d 31 23 1d 2f d 1a -FIXUPS: 864de 13 1e 1d 9 e 25 c 42 fffff953 23 13 10 1a 23 1d 2f d 11 1e -FIXUPS: 86034 6 1f 23 1d 2f d 15 c 28 37 21 12 a 1d 2a 23 1d 2f d 12 fffff936 -FIXUPS: 85ba9 26 17 6 1d 23 1e 12 2f d 15 c 26 13 a 1d 30 23 1d 2f d 11 -FIXUPS: 85df9 23 1d 2f d 10 c 3e 12 fffff91a 1e 23 20 17 17 2d d 19 1b -FIXUPS: 8593e 24 27 23 1e 12 2f d 10 c 3e c 1b 23 13 10 1a 23 1e 12 2f -FIXUPS: 85b88 fffff901 11 9 26 23 1b 10 29 72 d 21 14 14 21 23 1b 10 13 -FIXUPS: 85695 11 23 23 1d 16 9 21 d 23 20 1b 21 20 fffff80a b 6 29 23 32 -FIXUPS: 850b1 d 10 b f 1c 29 5f a9 47 f 29 b 6 24 29 37 23 1b 12 1e 17 -FIXUPS: 853f1 d 45 d fffff7ca d 3b d 2a 30 e 19 3d 30 2c 26 19 21 26 32 -FIXUPS: 84e64 d 39 d e 3e 1d 28 d 2d d 15 b 6 e 1a fffff78f 72 22 2d c -FIXUPS: 84845 3d d 15 32 33 26 1d 2f d 11 20 6 11 c 4a 49 16 82 d 43 32 -FIXUPS: 84b99 c a 20 d fffff768 29 57 38 19 1d 3e 27 29 39 e 32 23 1d 1b -FIXUPS: 845a1 38 f 9 28 16 1d 1c 36 d 1f 17 9 1f 26 1b b fffff85a 1e e -FIXUPS: 83ff9 26 32 23 d 39 d e 46 28 d 2d d 11 14 13 27 12 1e 12 1e 30 -FIXUPS: 8429c 32 23 d 10 b f fffff83f 33 d 28 9 21 13 10 11 19 38 57 23 -FIXUPS: 83d05 24 2a 23 d 10 b 11 17 37 43 1f 33 23 d 27 12 29 65 fffff8a3 -FIXUPS: 83847 2c 2a 19 9 27 9 6 24 23 1b 3c d 1c b 19 22 9 23 14 9 6 29 -FIXUPS: 83a83 23 11 9 6 2b 38 23 fffff97d 23 19 24 23 1d 16 2c 9 19 15 -FIXUPS: 835ed 13 9 1d 14 9 6 22 2e 23 1d 13 19 6 1d 31 23 16 2a 22 2b fffff8bf -FIXUPS: 830db 1e 23 32 23 d 10 b f 1c 29 57 49 30 27 29 3c 23 1e 10 10 -FIXUPS: 833b4 16 13 13 b 19 1b 2c 1b 26 fffff811 43 1f 33 23 d 27 19 11 -FIXUPS: 82dce 2b 12 26 28 23 1d 30 23 1e 1f 23 32 23 d 39 d e 3d 28 d 2d -FIXUPS: 830ae fffff8cb 23 1b 10 6 11 6 25 12 13 13 13 a 20 d 1e 13 10 11 -FIXUPS: 82af6 38 57 23 d 24 2a 23 d 10 b 11 17 fffff9bc d 2a 23 13 c c -FIXUPS: 826d9 e 19 3a 2f 23 1e 24 9 22 23 1d 10 17 6 23 23 1d 10 13 a 1d -FIXUPS: 82939 e c fffff942 2f 9 f 34 9 f 31 2d 23 d 15 10 30 2f 9 f 34 -FIXUPS: 8248f f 3b 17 13 13 36 d 3b d 1e 24 d 1e fffff835 32 39 3f 2c 50 -FIXUPS: 81f7a 10 b 12 29 17 25 30 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 -FIXUPS: 8222e 1a 20 d fffff734 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f -FIXUPS: 81c29 49 27 f 21 30 2c 17 c d 14 23 34 d 25 32 a18a 6 3a 17 20 -FIXUPS: 8c049 12 e f 1f 22 e 13 1f e 13 1f e 13 1f 13 1d 13 1d 13 ffff56c6 -FIXUPS: 818d9 f 21 49 27 f a1a8 1f 33 23 d 27 26 1b d 13 b 17 68 d 34 14 -FIXUPS: 8bd5c 18 40 27 2c d 15 32 2e 26 1d 2f d 11 61 24 fffff7c4 27 13 -FIXUPS: 8b7c9 d 15 10 11 19 46 57 23 d 27 16 9 21 16 9 21 14 2c 14 2c 2a -FIXUPS: 8ba66 d 10 b 11 17 37 fffff91b 31 23 1e 27 23 d 18 c 9 d 1e 26 -FIXUPS: 8b56c c 36 14 f 23 6 11 20 2e 23 1d 13 19 6 1d 31 12 2a fffff8ff -FIXUPS: 8b089 23 1b d b 22 3c 18 a e 11 a e 50 d 46 26 1e 10 d 13 16 16 -FIXUPS: 8b2f4 28 14 3d 27 2c d 1b fffff893 11 19 46 57 23 d 27 f a 9 1e -FIXUPS: 8ae03 23 d 10 b 11 17 37 43 1f 33 23 d 27 23 1b d 13 b 30 fffff91c -FIXUPS: 8a97e d 18 8 24 d 18 a 20 d 20 f 20 d 45 35 d 1f c 6 c 6 2f d 43 -FIXUPS: 8abdd 2c 13 2d d 15 fffff889 d 5f 2a 6 3d 55 34 6 1d 24 63 6 21 -FIXUPS: 8a744 2b 27 16 1d d 1a 39 16 12 1e 1f 20 d 48 b 1b 12 fffff843 -FIXUPS: 8a18b 14 1f 2b 18 c c 19 2f a 64 d 3d 24 6 18 2f 1f f 9 c 20 d -FIXUPS: 8a40e 2d c 22 12 10 10 1d fffff976 6 45 23 1d 2f d 2a d 18 c 1d -FIXUPS: 89f89 23 1d 2f d 2a d 18 c 1d 1d 2f 18 c 15 c 1b 16 d 12 fffff986 -FIXUPS: 89afc 6 27 23 1d 2f d 2c 23 d 11 9 1e 23 32 23 d 15 9 2d 23 1b -FIXUPS: 89d54 b 2a 22 28 d 1c c c fffff9e4 15 d c c 1c a 2b 16 1b f c 1e -FIXUPS: 8990d 3c 23 32 23 d d 9 d 28 23 1d 2f d 15 d b c c fffff8e6 47 -FIXUPS: 8942b 1b 27 29 43 23 1b 10 2f 61 d 26 16 19 23 1b 10 c 16 20 23 -FIXUPS: 896fe 23 d 15 9 2d 26 1d 2f fffff743 36 d e 46 d a4 28 d d 1d 13 -FIXUPS: 89102 20 17 40 23 32 23 d 10 b f 1c 29 5f 2b 2d 1b c 4d c d195 -FIXUPS: 96547 13 1f 13 1d 13 ffff25b6 27 f 21 49 27 f 21 49 27 f 21 30 -FIXUPS: 88d47 19 2a d 70 32 23 1e 2f 26 32 20 d29b 1a 38 4b 12 2d 1e 13 -FIXUPS: 962fb d 21 26 13 18 1d 5 1d e 13 1f e 13 1f e 13 1f e 32 e 32 e -FIXUPS: 9651a fffff6c2 32 23 d 5a 23 d d f 10 16 20 d 20 1e 2e 86 29 117 -FIXUPS: 95f8c 3d 23 32 23 d a7 23 d 32 23 d 10 fffff6c2 14 c 25 d 2c 23 -FIXUPS: 95907 10 b b 1c 2a 23 d d d 8 d 10 d 8 c 11 15 4e 2a 34 50 34 49 -FIXUPS: 95bb9 fffff979 10 b 11 17 14 28 38 14 c 25 d 2c 23 d 10 b 1a 2d -FIXUPS: 9571c 13 c 27 23 d 10 b b 11 17 14 30 fffff88d 1c 32 29 48 11 35 -FIXUPS: 951ca 23 20 d 41 5e 26 18 8 c 1b 9 14 21 d 61 33 11 3c 47 23 13 -FIXUPS: 954db 27 23 fffff897 13 c b b b 1d 9 19 1e 32 21 d 1b c 23 d 22 -FIXUPS: 94f52 c 12 27 26 6 26 26 18 8 c 8 f b fffff99f 32 23 d d c 8 c -FIXUPS: 94a93 10 8 10 28 9 1f 49 1e 19 1b 9 25 ae 25 18 1b 11 1e 22 21 -FIXUPS: 94d65 e 26 fffff7d1 c 8 10 24 d 14 6b 4f d 31 d 97 2f 51 23 9 e -FIXUPS: 94851 c 17 19 19 18 1a 11 11 23 23 14 33 52 fffff8ef 8 10 8 c 8 -FIXUPS: 9430b 4e 23 32 23 d d d 8 10 8 c 8 f b b 31 27 26 32 23 d d c 8 -FIXUPS: 94562 fffff8ac c 8 f 2d 20 88 73 2e 62 26 32 23 d d d 8 10 8 c -FIXUPS: 940df f 8 81 31 2e 53 23 32 23 d d fffff628 c 8 f b b 8 7d 35 29 -FIXUPS: 93a1e 13 1c 82 d a8 d 12 49 29 2b 24 d 2f d 27 2e 77 26 32 23 d -FIXUPS: 934b5 29 29 92 26 1b d 8 c 8 f 8 7d 31 2e 53 23 1b d 8 c 8 f b -FIXUPS: 937d5 2c 28 26 1b d 27 32 fffff5eb 12 12 27 22 18 22 b7 26 13 c -FIXUPS: 93066 10 b b b b 1d 8c 33 18 2e 2d 3c 5c 64 d 44 5b 80 6c 23 fffff56b -FIXUPS: 92a2b 16 13 18 d 19 27 1b b b b a8 6 72 72 75 2d 23 13 c b b b -FIXUPS: 92da9 22 2c 42 19 16 24 10 fffff73b 1c 19 14 20 d 1e 14 19 14 9d -FIXUPS: 9275a 2f 26 13 d 8 f 59 33 18 2e 2a 3c 4b 11 b 8 e 8 13 4a fffff796 -FIXUPS: 921ae 23 b 27 2b 30 21 c 28 21 c 7b 5e 23 13 c b b b 1d 20 48 40 -FIXUPS: 924fa 16 24 10 1f 16 15 32 fffff7de c 27 e 29 c 19 14 37 30 50 -FIXUPS: 91f17 2c d 2d 21 1d d 1a 10 27 18 b b b b 39 19 34 1b 65 1e fffff7fd -FIXUPS: 91988 b 3f 45 1a 58 16 b a 3e 27 e c 8 10 4b d 4b 1f 29 21 1d d -FIXUPS: 91ca3 3c 21 1d d 1c 1e d fffff7c9 44 d 21 53 1a 24 d 44 d 21 15 -FIXUPS: 916eb 3a 64 19 14 23 19 14 23 11 b 9 a b 3d 45 1a 5a 11 b fffff7a7 -FIXUPS: 91136 b 17 1b 11 1f 21 15 13 32 16 4f 26 16 d b 1d 33 1a 54 25 -FIXUPS: 913d8 9 2f c 29 d 1b 65 37 24 fffff82d 18 27 23 13 c 8 f 10 58 -FIXUPS: 90e75 11 13 22 37 16 30 24 13 65 20 11 24 13 29 d 24 f 15 16 24 -FIXUPS: 91109 fffff89e 22 23 16 b b c 18 34 71 2d c 54 26 d 17 13 1f c -FIXUPS: 90c13 26 f 21 14 c 25 16 2d 17 13 23 c fffff7dd 8 8 4f 14 23 36 -FIXUPS: 905fb 1a 1f 2d 19 1a 1c 1d d 19 5a 66 50 5a 1d d 13 18 33 8 20 -FIXUPS: 9093e 8 23 26 fffff659 26 4b 23 32 23 d 2e 2d 23 1e 1f 2c 35 16 -FIXUPS: 90245 d 1a 2a 12 51 1e 5d 15 a3 2d 15 1b 2c 32 23 d fffff799 11 -FIXUPS: 8fcf4 33 1d 2e 10 10 19 19 13 13 13 16 16 16 e e 1e 29 16 15 3b -FIXUPS: 8ff15 29 19 6 1b 20 d 16 18 fffff861 14 35 19 19 3e 24 27 1c 22 -FIXUPS: 8f98d 2d 42 1d 38 44 1c 17 30 18 2a 6 1d 6 1b 1c 19 30 1b 1c 63 -FIXUPS: 8fc97 fffff6cf 1f 19 2a 51 23 32 20 49 9f 26 18 30 45 2d 33 30 -FIXUPS: 8f6dc d d 14 17 1c 10 12 1b 17 25 21 18 18 20 fffff627 18 36 c -FIXUPS: 8eee6 15 94 2a 16 e e 2e c7 19 12 33 23 d 38 21 12 6 1f 2c 24 d -FIXUPS: 8f299 26 13 1e 23 26 fffff672 1e 20 23 32 23 d d 1b 1b 22 8 1e -FIXUPS: 8eb0f 2a 2d 32 32 1f 1d 83 26 50 1a 2c 35 16 32 d 1a 20 19 fffff864 -FIXUPS: 8e6a9 d d d 8 10 51 23 13 c 27 23 d 10 b 1a 22 23 13 c 27 23 d -FIXUPS: 8e8d2 b b 21 23 32 23 d fffff875 f 1b 49 53 26 32 23 d d c 8 f -FIXUPS: 8e3b5 4e 42 74 26 32 23 d d d 8 10 8 c 8 f 1f 49 53 fffff752 35 -FIXUPS: 8de13 3c 1e 1c 23 13 d 8 48 36 34 33 23 13 d 8 10 10 37 59 25 23 -FIXUPS: 8e117 40 42 26 1b d 8 c fffff6c9 d 18 39 37 23 34 28 17 c 2b 41 -FIXUPS: 8da89 23 2b 11 21 19 c 2b 70 23 1a 37 22 3c 6e d 23 23 13 d fffff648 -FIXUPS: 8d3d3 13 2b 62 8 18 2f 20 32 d 3b 8 1b 2c 1a a 18 38 2c 3e f6 3a -FIXUPS: 8d7dc 13 d 17 56 23 13 d 8 fffff70b 1b d 8 d b b 1e 17 34 9 c 1f -FIXUPS: 8d100 14 f 80 1f 27 23 13 4a 23 13 5a 23 13 2c 1e 23 13 d fffff7c9 -FIXUPS: 8cbb4 35 2b 35 1d 14 5f 14 e b 2a d 10 1c 23 2d 23 33 d 2d 23 13 -FIXUPS: 8ce8c 8 d 10 28 30 30 23 3d fffff74c 33 d 15 13 13 1f 2d 2b 22 -FIXUPS: 8c806 43 26 13 18 1f 16 b 3f 76 1a 30 32 20 48 d 14 27 d 36 15 -FIXUPS: 8cb73 fffff6d6 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: 8c542 27 f 21 49 27 f 21 30 12 2d 20 d 12e8d 1a 2d 14 b b 2a 12 -FIXUPS: 9f6fc 1d 10 c 13 10 1e 12 28f 5 1d e 13 1f e 22 e 13 1f e 13 1f -FIXUPS: 9fb3c fffec6e6 12c5b 34 28 23 16 b 25 1c f 2b 14 27 26 29 16 b -FIXUPS: 9f04e b e 27 a6 18 10 c 25 122 1fa 23 16 1a 2d 23 fffff32e 1c 34 -FIXUPS: 9e949 34 1c 23 24 34 19 36 23 d d 60 1c 59 10 30 6e 26 23 16 b -FIXUPS: 9ecb2 1c 4b af 29 34 21 23 fffff5fe 52 23 16 d 2b 1c 15 16 1d 1d -FIXUPS: 9e5c9 23 40 2d 16 d e c e c 8 22 19 22 11 33 29 35 52 11 3a fffff796 -FIXUPS: 9e009 16 e 2c 30 17 1d 8c 10 33 2d 24 1c 24 1c 23 16 13 e 3b 1c -FIXUPS: 9e300 2d 14 20 28 23 19 12 12 4d fffff643 b b b b 19 44 27 23 16 -FIXUPS: 9dba7 26 1c 30 90 23 2d 23 39 24 23 32 23 d 1e 34 36 23 d d 60 -FIXUPS: 9df3f fffff6ae 42 2a 1c 17 19 19 1f b 49 17 21 17 2d 8c 30 23 30 -FIXUPS: 9d8eb f 2f 23 2d 14 c b b b 8 6d 2a 14 fffff72a 18 28 b a 1d 14 -FIXUPS: 9d239 30 23 2d 23 1b 42 23 13 8 44 8 39 16 2d 9 83 1a 24 23 2d -FIXUPS: 9d57c 2d 23 16 fffff40b 51 4b 40 79 3e 18 10 c 25 d 3a 3a 20 32 -FIXUPS: 9ccc2 20 2d 15 11 25 d 46 d 1b a4 64 a4 70 23 49 12c fffff2be 8 -FIXUPS: 9c457 8 8 8 1e 1c 1c e 4b 24 15 36 24 15 2d 24 15 16 24 15 1e 30 -FIXUPS: 9c6df 8 1eb 4a 37 1b 14 17 fffff63a 15 6 5b 23 3d 30 23 a0 16 33 -FIXUPS: 9c209 23 32 23 d d 8 e 3a 18 24 15 29 24 23 32 23 d 13 c e fffff6ba -FIXUPS: 9bb07 12 b2 4c 2e 5 32 5d 23 13 28 1c 2e 14 12 10 12 45 5f 10 17 -FIXUPS: 9beb0 10 b 26 47 22 1e a 25 12 fffff581 52 d 8d d 2a d 13 11 38 -FIXUPS: 9b6e6 38 74 6c 1d 5c 38 3c 3e 23 13 25 39 a 10 35 2d 23 16 b 3c -FIXUPS: 9badc fffff52d 10 8 b b 11 35 21 f 58 d8 30 d 58 d 14 1d 16 31 -FIXUPS: 9b335 2b e 9 1a 88 30 30 30 30 20 23 16 fffff54c 58 4f 18 27 d -FIXUPS: 9ab85 a 19 27 d 3c 6d 6a 12 78 23 13 8 8 e 2f 58 55 2d 23 d 10 -FIXUPS: 9af7d 2c 30 23 fffff56b 8 10 20 e 52 91 f 40 14 6d 49 e e 1e 6 -FIXUPS: 9a804 6 15 1f 4a 9f 19 c 19 46 12 14 2d d 4c d fffff69a d 54 d -FIXUPS: 9a180 1a 1f 50 30 23 1b d e c e c 1b 64 22 23 19 d e 10 10 39 d -FIXUPS: 9a448 15 50 31 7b fffff809 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 99e8c 19 c b b b b 14 73 45 29 1c c 11 e 8 b a2 fffff745 29 28 -FIXUPS: 99889 29 16 11 e b 11 16 b 8 b 97 9e c 47 30 d 55 d 14 b 13 35 -FIXUPS: 99c50 d 14 4e d 46 fffff558 71 d 11 d 11 13 77 d 11 d 3d d 2c d -FIXUPS: 9951e 36 19 38 94 30 11 b 74 30 30 30 23 16 8 e f fffff514 12 1a -FIXUPS: 98d46 40 e 17 3c c 25 18 16 c 16 24 d6 23 26 5e 29 1c c b 8 b dd -FIXUPS: 99185 d 5d 1c 19 39 fffff632 3e d 40 63 5c 23 19 c e 10 10 b b -FIXUPS: 98a70 17 7 35 19 4a 1c 1b 14 40 27 d 40 1f 48 2a 19 d fffff4c1 -FIXUPS: 9821a 71 d 29 d 53 29 34 63 68 23 1b b b 18 99 99 d 44 d 13 2d -FIXUPS: 98702 71 d 29 d 53 29 13 3a fffff37a 23 1b b b 13 6 3f c2 d 29 -FIXUPS: 97dc9 1e d 28 18 46 3e 69 38 23 19 c b b 18 99 97 d 44 d 13 fffff619 -FIXUPS: 977bc 23 d 13 13 33 23 d 38 2c 10 8 1e 23 27 23 13 18 51 b 21 22 -FIXUPS: 97a63 63 58 1b 1d 33 23 17 16 fffff5e3 74 d d 54 1e 8 39 34 2f -FIXUPS: 97379 23 36 30 3c 3b 23 13 10 30 23 51 1c 40 1a 16 26 36 5e 2c -FIXUPS: 9775f 1a fffff408 7b 1a 96 31 15 10 d 17 17 10 13 5a 5f 3b d 2c -FIXUPS: 96e9d 86 8 2a d 94 16 32 39 32 23 13 56 8 5c fffff52d 23 11 b 27 -FIXUPS: 9674c d 2c 20 d d c 8 10 21 d d 70 32 2c 7e 7b 25 17 13 17 23 4b -FIXUPS: 96adc 13 1b 34 c4b6 13 13 13 16 16 16 e e 1e e 13 1f e 32 13 1d -FIXUPS: a3167 13 1f e 13 1f e 13 ffff33ff 14 2d 20 d 32 20 c42d 2c 57 23 -FIXUPS: a2bbf 2e 42 4a 23 2c 2e 63 23 2c 2e 63 23 2d d 1a 9 1e 19 9 1e -FIXUPS: a2f28 4f 5 26 10 10 19 fffff3e1 2d 23 3f 6e 23 32 23 d fb 23 2c -FIXUPS: a26b6 30 53 23 33 2e 3a 52 23 2c 2e 2c 57 23 33 2e 4c 50 23 2c -FIXUPS: a1f6d 13 69 e 32 2c 13 18 29 5b d 18 10 38 23 d 10 10 28 10 8 23 -FIXUPS: a2243 1c 12 38 23 14 37 32 23 2d fffff7d4 c 20 23 25 1c 22 2a 23 -FIXUPS: a1c91 1c c 20 23 25 1c 22 2a 23 25 1c c 40 23 25 1c 22 3a 23 16 -FIXUPS: a1f5b 8 fffff5e7 84 1f 6c 23 3d 23 cd 23 51 d 6f 23 32 23 d a 5f -FIXUPS: a19a0 29 23 25 1c c 20 23 25 1c 22 2a 23 25 fffff5ab 25 1c 2c 2c -FIXUPS: a11c7 1c 60 16 10 2d 23 d 23 10 8 18 1f 1c 12 23 23 14 46 33 23 -FIXUPS: a1472 b 12 29 34 45 fffff6cb 25 1c 3c 23 25 1c 3c 23 25 1c 3c 23 -FIXUPS: a0e01 1c 3c 23 25 1c 4c 23 25 1c 4c 23 25 1c 2c 23 25 1c 2c fffff64b -FIXUPS: a0759 23 51 d 1f 1c 34 23 25 1c 3c 23 2c 1c 15 30 23 32 23 d 17 -FIXUPS: a0a42 57 23 25 1c 3c 23 25 1c 3c fffff590 23 14 27 2c 36 23 16 -FIXUPS: a026d 1a 1c 5f 1a 2d 23 32 23 d 24 42 26 9f 23 1d 30 23 1f 5e 23 -FIXUPS: a0669 23 7c fffff5e0 21 49 27 f 21 30 20 20 e 32 2c 32 1c 60 16 -FIXUPS: 9ff59 2d 20 d 26 10 8 18 1f 1c 12 23 11 15 28 50 5a92 e 13 1f e -FIXUPS: a5c0a 1f e 32 39 10 10 19 19 13 13 13 16 16 16 e e ffff9de7 27 -FIXUPS: 9fba8 21 49 27 f 21 49 27 585b 43 41 19 e6 32 23 10 1d 23 b5 38 -FIXUPS: a586c 5e 2f 23 2d 23 7d 23 7b 5 1d e 32 e 13 1f e 13 1f e fffff485 -FIXUPS: a501e 5 1f 1a 1d 23 3d 23 2e 22 4b 1e 34 e 42 2c 58 1c 10 22 d -FIXUPS: a5339 14 15 7f 28 8 54 54 23 13 fffff5b4 d 1b 47 27 11 1f 11 1f -FIXUPS: a4bbc 32 23 d 3b 23 3c 1c 1c 4e 37 22 1f 33 1b d3 62 11 1f 11 2f -FIXUPS: a4fcc 16 fffff5f8 2f 11 e 37 19 16 61 3a 20 39 3d 27 23 e b b 2c -FIXUPS: a487f 3e 8 14 10 22 d 21 14 15 7b 2c 23 13 fffff6ba 1f 7 10 1c -FIXUPS: a4164 15 2d 8a 49 2a 23 d 27 d 1d 15 31 78 27 10 2d 23 d 27 d 1f -FIXUPS: a44d9 8 38 e a2 fffff75b 23 d 16 1f 11 1f 11 2c 23 d 12 10 21 10 -FIXUPS: a3e90 29 e 29 29 2f 74 1d 2a 23 d 2c 23 d 10 b 48 fffff974 d d -FIXUPS: a3a87 21 2b 2e 8 37 17 13 16 c b 9 18 11 13 10 11 b 19 f 1c 19 -FIXUPS: a3c9c 1a b 8 16 13 b fffff695 27 f 21 30 e b 14 1c3 1a 10 2c 19 -FIXUPS: a368e 53 4e 3a 20 44 42 18 b 11 c 1f 6b 20 16 2f 5b 80 2a 27d9 -FIXUPS: a6273 29 20 1b 5 5 5 23 e 13 28 10 10 19 19 13 13 13 16 16 16 e -FIXUPS: a643b ffffce17 27 f 21 49 27 f 21 2af0 30 e b 61 26 2c 16 a b 10 -FIXUPS: a5f78 21 28 d 18 33 2b d 15 23 23 24 38 1c 45 23 16 2c f c 23 604d -FIXUPS: ac27d 20 1a 5 1d e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f -FIXUPS: ac46c 1d e 13 ffff9902 36 27 f 5ee0 5f 12 30 30 23 16 43 24 30 -FIXUPS: abebc d d 23 23 a1 95 2a 49 1c 2a 35 e b 25 d 13 34 13 24 11 21 -FIXUPS: ab9f1 b 18 10 25 23 16 39 1d f 8 b 2f 23 16 18 15 20 d 10 f f c -FIXUPS: abc0b 1e 23 18 f 2b d 30 d fffff8c2 2f 52 3f d 10 20 d 3d 10 8 -FIXUPS: ab729 14 1d 28 47 23 14 27 a2 10 b 25 d 2a d 32 23 d 10 1a 10 fffff804 -FIXUPS: ab1ff 31 d 10 43 23 d 1e 1e 1d 30 23 d d 23 23 4a 22 8 b 1e 11 -FIXUPS: ab48a 1e 68 2c b b 10 27 16 fffff744 36 18 22 75 d 4c 1c 46 66 -FIXUPS: aaf35 3c 48 23 16 32 11 24 42 23 d 16 10 28 23 2a d 10 b 27 d 14 -FIXUPS: aa851 31 d 17 8 b 30 23 16 18 34 d 10 f f 22 1e 30 12 4e 80 23 -FIXUPS: aab34 f 2b d 30 d 1e 3c 7e 41 fffff787 90 31 10 22 d 10 25 d 2a -FIXUPS: aa5d1 32 23 d 10 28 d 18 b 1e 10 8 b b 29 e 9 1d 10 25 23 1d fffff5f4 -FIXUPS: a9dc3 16 16 e e 1e 19 f 18 23 38 25 23 2d 40 23 4d 16 b 2f 79 20 -FIXUPS: aa0df 66 8 1c 14 1d 28 47 21f fffff565 2a d 55 28 d 11 2e 15 27 -FIXUPS: a9af4 d 36 23 18 19 18 16 18 62 18 5e 2b d 15 2c 10 10 19 19 13 -FIXUPS: a9d9a fffff7b8 14 1d d 2e 42 19 1e c b b 12 b 23 30 23 d d 23 23 -FIXUPS: a979f 2f 15 56 56 c b 36 15 13 55 e fffff676 34 38 18 12 8 17 14 -FIXUPS: a90c6 e 11 6e 6 14 1a0 8 64 30 23 d 32 1b 23 2d 16 25 d 20 15 26 -FIXUPS: a9526 d fffff61f 1f 1c 6a 18 2a 1f 6 1a 35 31 4c e 31 38 12 e c -FIXUPS: a8ddb 6 28 30 23 d 10 11 11 19 30 f 14 19 fffff7ec 2d 23 32 23 -FIXUPS: a87be 2c 2b 1a b 29 1e 13 43 1c 47 b 26 14 1b 22 b 22 30 23 4d -FIXUPS: a8a96 1e 1a c 2f 3c fffff81c 23 d 32 16 20 10 8 b 18 1d 1d 10 1b -FIXUPS: a84bc 16 12 55 b 25 23 60 25 28 23 16 24 9 a 6 1d 1d fffff760 e -FIXUPS: a7e62 37 4d d 6f 20 d 9c 8 16 14 15 28 50 2f 23 14 27 e 21 a3 10 -FIXUPS: a8264 25 d 2a d 32 23 d fffff6fa 11 1f 23 32 23 d 3b 23 16 32 22 -FIXUPS: a7be6 d 36 b 25 23 16 1a 22 5 1f 1a 1d 23 3d 23 16 18 22 2f fffff7ce -FIXUPS: a7607 b 27 3a 3d 8 21 10 2d 23 d 23 10 8 18 20 2a 23 d 16 15 7f -FIXUPS: a78e9 2d 23 d 22 13 46 38 11 fffff791 25 71 28 30 23 d d 9 2b 15 -FIXUPS: a7325 30 15 27 3a 1a 19 16 d 62 1d 5e 2b 23 16 d 6 12 22 23 16 -FIXUPS: a6e09 49 17 10 2d 23 d 23 10 8 18 20 2a 23 d 2c 23 d 10 b a 21 -FIXUPS: a7060 27 1f 17 3c 2a 23 d e 25 fffff823 10 2d 20 d 26 10 8 18 20 -FIXUPS: a6a9a 15 7b 2f 23 13 14 84 32 23 17 26 23 1a 23 23 1a 23 23 16 -FIXUPS: a6dc9 e fffff6c2 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f -FIXUPS: a6749 49 27 f 21 49 27 f 21 30 e 32 2c 45 744f 23 32 23 d 18 23 -FIXUPS: ade9c 17 24 5 1d e 13 1f e 13 1f 39 10 10 19 19 13 13 13 16 16 -FIXUPS: ae07f e e ffff83d7 741d 1b 12 2b 10 10 4d d 1e 10 17 1c 11 2c 28 -FIXUPS: ada79 38 16 1e 2f d 14 9 b c 66 8e 1c 44 70 e 68 fffff557 d 8 1c -FIXUPS: ad336 1a 1d 20 1f 1b 53 24 13 45 1e 30 29 1e 42 35 e3 1f 32 19 -FIXUPS: ad747 e 2d b 62 32 1f 42 fffff6fc 29 d 27 1e 10 8 18 20 e 32 1b -FIXUPS: ad0b1 18 10 c 24 10 8 c 1c 2a 23 d 16 15 28 19 50 2a 2d 23 fffff3cc -FIXUPS: ac6cc 3a 13 23 32 36 68 15 67 31 23 16 b 4c 152 1e 51 1e 63 1dd -FIXUPS: acdf9 23 16 77 10 3f 23 d 14 21 d 211f e 13 1f 13 26 10 10 19 19 -FIXUPS: af167 13 13 16 16 16 e e 1e 16 ffffd2c3 27 f 21 49 27 f 21 30 e -FIXUPS: ac63d 3c 26b0 23 13 c 10 22 d 19 26 23 13 c 10 22 d 36 19 29 16 -FIXUPS: aef03 b 16 b 4f 22 39 29 16 15 19 21 5 fffff985 15 1b 9 1d d d -FIXUPS: aea89 29 16 c 27 23 d 18 f b 29 d 2d 29 19 c 20 d 14 e 24 2b 49 -FIXUPS: aecfe b fffff881 1e 19 17 12 1e 19 19 20 20 d 2a 47 25 d 2f 10 -FIXUPS: ae7e9 e 26 4c 38 58 23 13 c 27 23 d 15 2c d fffff749 30 10 30 11 -FIXUPS: ae1c3 3a 4c 29 16 f 25 d 17 a 3f 23 22 23 1e 19 71 29 16 25 d 15 -FIXUPS: ae4c9 3f 2e 19 22 215d 4b 23 1b b 25 d 27 d 2a d 34 34 5 26 10 -FIXUPS: b08b2 19 19 13 13 13 16 16 16 e e 1e 16 ffffd723 27 f 2221 30 d -FIXUPS: b039a 1f 23 32 23 d 15 b 25 d 31 d 2a d d 37 23 32 23 d 15 b 25 -FIXUPS: b0620 27 d 2a d 34 fffff8ad 27 d 17 42 16 b 25 d 27 d 2a d 42 16 -FIXUPS: b011a 25 d 27 d 2a d 42 29 32 23 d 1b e 2b d 37 fffff720 a 9 53 -FIXUPS: afad9 22 1b 53 27 b 1c d2 60 1e 27 2c d 2f d 56 16 b 25 d 27 d -FIXUPS: afedd d 2f 16 b 25 fffff3c4 1a 125 91 7b 2f ef d 2d 2e 6 2a d 13 -FIXUPS: af7b9 b 8 96 23 d 5f 17 3b 40 b 1c 1a 1e 15 1c c 11 1f4a 28 10 -FIXUPS: b19c2 19 19 13 13 13 16 16 16 e e 1e 30 12 2e e 13 1f 13 1d 12 -FIXUPS: b1bc9 e 13 1f 13 ffffd61d b8 25 21dc f b 4c 8 28 28 8 21 150 b -FIXUPS: b173c 1e b 2f 11 19 28 20 d d 7 20 d d c 12 6d 4b 5 1d e fffff52f -FIXUPS: b0ea7 1a 19 38 12f 4d 4f 23 84 f 26 40 e 20 d d 3a 25 d 18 8f 4a -FIXUPS: b13c9 13 10 a 6d 18 15 29 23 26bd 1c 14 ffffce19 27 f 21 49 27 -FIXUPS: b0ab8 21 49 27 f 21 30 12 3e 52 1e 28 d 9b e 1e 22 d 11 74 32 d -FIXUPS: b0e65 2a74 10 22 d 32 23 d 1d 5 5 18 e 13 1f e 13 1f e 13 38 10 -FIXUPS: b3ab2 19 19 13 13 13 16 16 16 e e fffff8f7 1a 3d 23 16 27 40 23 -FIXUPS: b35c5 17 2d 23 32 23 d 10 2b 23 13 8 11 2f f 30 9 3f 21 58 22 23 -FIXUPS: b38a2 1a fffff64a 1e 1e 8c 2a 2f 34 41 24 2d 17 24 71 23 2d 23 -FIXUPS: b3222 28 1c 23 23 1d b 1d 1c 1c 23 3b 28 5a 23 16 fffff69a 1d 10 -FIXUPS: b2b36 23 d 23 2d 23 d 16 14 19 80 12 b b 26 32 2c 40 49 1b 33 23 -FIXUPS: b2e5c 2c 23 d 1c f e fffff708 30 23 2d 23 16 54 1b 28 23 16 27 -FIXUPS: b27e9 23 4d 23 16 24 13 6d 53 23 32 23 d 10 8 19 29 21 23 16 fffff5f4 -FIXUPS: b20e9 29 35 20 d 2c 20 d 10 1b f 10 3f 30 3b 3f 32 28 9f 2d 23 -FIXUPS: b2456 16 14 19 80 23 2d 23 2d 23 fffff6cd 49 27 f 21 49 27 f 21 -FIXUPS: b1e5c 20 d 2c 20 d 20 16 21 12 26 28 12 b 26 10 1d 2c 24 19 19 -FIXUPS: b20a4 5 5780 23 1b 1b d 1e 26 26 10 16 4d d 23 1c 1f 5 1d e 13 -FIXUPS: b7a39 e 13 1f e 13 1f 13 1d 13 ffffa156 27 f 5784 36 10 10 19 19 -FIXUPS: b74a7 13 13 16 16 16 e e 1e 23 1b d 1b 1b 16 19 31 26 3c 44 74 -FIXUPS: b775d 46 1d 29 f fffff728 d 36 23 d 36 23 d 1b 25 12 26 28 17 19 -FIXUPS: b7147 32 23 16 b 5c 23 34 d 2c 23 1b 42 23 4d 23 2d fffff629 28 -FIXUPS: b6a79 23 44 64 a 27 2c 1f 39 23 26 8 56 8 35 3c 2c 37 1d 23 13 -FIXUPS: b6e24 45 10 14 1d d 1b 13 13 fffff6b4 13 8 44 17 8 2f 23 26 8 36 -FIXUPS: b6722 11 29 1b 42 23 46 27 23 16 16 21 23 26 8 8 64 15 35 18 25 -FIXUPS: b61b1 6 29 6 27 6 36 23 26 4a 6 2a 6 28 6 39 10 13 16 2d 23 d 2a -FIXUPS: b6449 8 18 20 19 e e 85 46 fffff616 1b 3d 31 3d 32 3d 25 23 25 -FIXUPS: b5d5f 10 10 8 8 143 f 20 6c 18 e 26 23 13 46 24 40 23 25 38 23 -FIXUPS: b6164 fffff52c 3b e 25 12 1a 3b 6 7e 20 23 32 23 d d 8 98 24 15 -FIXUPS: b599a 1f 23 32 23 d 20 1b 8 8 8 1e b3 fffff517 23 5e 1f 14 1c e -FIXUPS: b5175 24 12 1e 23 2c 13 f5 28 5 2f 4d 23 b6 33 24 23 13 57 d 1f -FIXUPS: b55cd 43 2e 4c ffffef03 3c 30 16 92 e 269 48 48 1a0 6f 15 21 d -FIXUPS: b4c36 8 1c 7f f 96 f 5e 28 116 23 13 25 36 a 10 35 30 ffffefff -FIXUPS: b4043 21 1f 1d 69 23 32 23 d 10 8 1e 14 8f 22 23 16 40 d 8d d 2a -FIXUPS: b43e0 77 5e 17 18 35 32 20 16 5623 13 13 13 16 16 16 e e ffff9fd7 -FIXUPS: b3c39 f 21 49 27 f 21 49 27 f 21 30 26 8a 12 26 33 55 2c 45 1f -FIXUPS: b3ffc 549a 3b 27 26 2c cd 5c 35 83 2c 64 6c 14 1c 29 28 1a 7f 1f -FIXUPS: b997f 52 d6 5 1d e 13 1f e 3b 10 10 19 fffff4fa 44 2d 23 d 10 b -FIXUPS: b914c b b 8 38 1c 1f 63 50 2f 55 13 11 9 f 1c 49 3f 16 2a 1d d -FIXUPS: b9473 d 9 fffff90e a c 8 24 d 6 24 d 14 29 1e 2c d 28 10 8 c 1c -FIXUPS: b8f43 23 d 2c 23 d 10 b a 21 1c e 27 fffff7b0 33 8d 4f d 4d 4a -FIXUPS: b89ec 17 26 23 32 23 d d 29 10 24 d 1f 35 23 13 3a 23 13 16 17 -FIXUPS: b8c5f f3 d 2a fffff6c0 2d 23 d d 26 23 43 a 15 2b 2a 23 d d f 19 -FIXUPS: b862f 1d 3f 6d 38 6 2d 15 22 2b 9 6 8 10 10 fffff62a 17 31 55 10 -FIXUPS: b8087 39 1c 8 c 10 6 6 a 6 23 17 13 2f 4f b0 78 21 a f d 14 20 -FIXUPS: b8397 19 8 3f b412 13 1d 19 8 ffff42d8 27 f 21 30 2c 17 d 20 13 -FIXUPS: b7c4c d a b e 15 98 16 10 d a b 8 54 d 36 6 b6d0 61 d 32 33 10 -FIXUPS: c35d1 18 1e 5 1d e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f 13 1d -FIXUPS: c37a7 13 1f 13 fffff7ea e 3d a 36 8 20 23 5a 23 23 5a 23 23 16 -FIXUPS: c321a c 22 21 23 4f 1e 23 21 4a 22 1e 24 8e 10 2d 23 fffff5c9 1e -FIXUPS: c2adf 1a 23 7a d d 29 1d d 1b 81 1d d 1b 45 23 16 b 6f 1d 40 33 -FIXUPS: c2e8f d 39 1e ab 1a d c fffff5db 16 b 1a 1f 93 23 44 d 4c 2d 1d -FIXUPS: c27c0 d f 18 27 d a 1d 1f 2b 23 24 2e e 18 e 27 23 a9 1e fffff780 -FIXUPS: c21e3 b 13 10 28 2a 23 d 10 15 16 1b e 30 23 d 2a 1d 2b e 1f 23 -FIXUPS: c2462 17 1b d c 6 66 41 2f fffff8ae 2a 18 4a 10 8 2e 10 31 23 d -FIXUPS: c1fb2 23 d 27 10 8 38 e 27 23 d 11 6 22 2a d 6 15 30 2a 23 fffff858 -FIXUPS: c1a30 19 11 e 11 e d 1f 12 d 12 14 11 b 44 b2 16 18 16 10 32 1e -FIXUPS: c1cef 41 b 2e 30 30 23 16 14 fffff844 23 18 38 34 36 5c 8 1e 23 -FIXUPS: c17f2 8 14 18 22 17 15 15 14 30 1c 29 16 b b 1f 14 e 28 34 20 e -FIXUPS: c11ef 2b 41 8 b b 25 2d e 3f 8 b b 23 11 14 2b 19 17 70 30 18 1d -FIXUPS: c1519 23 32 23 d 1b 34 17 15 fffff6c3 16 14 26 4b 1e 29 56 1c 29 -FIXUPS: c0e82 1b b 28 b 14 22 60 15 1e 155 14 2c 30 14 b a a 1a 1b 8 b -FIXUPS: c0875 b b 26 3a 31 69 12 b b 5d 16 b 12 b b 26 18 28 23 16 14 2e -FIXUPS: c0b5a a 22 18 78 23 23 16 47 fffff3f9 16 3e 1a 8 21 1a 23 23 23 -FIXUPS: c01e2 23 15 1d7 8b 2b 2b 44 a3 d 163 29 16 b b a 1b 17 16 3b 4f -FIXUPS: c0863 fffff436 23 16 b 20 36 11 22 11 11 15 11 c 26 18 17 18 1a -FIXUPS: bfea8 20 36 55 21 12 8 3b 23 16 1b 28 34 23 fffff743 18 2e 12 8 -FIXUPS: bf869 30 2a 23 d 10 2d 23 d 28 2a 2e 17 2e 1f 2e 16 2e 17 2e 1f -FIXUPS: bfb48 19 38 2d 38 1f fffff71c 2a 23 d 10 11 2d 23 d 28 2b 2e 3b -FIXUPS: bf50a 4f 30 30 11 b 43 25 a 1d 99 2c 23 16 e 17 29 e 11 fffff738 -FIXUPS: bef8f 3d 1c 21 23 16 14 21 11 c 18 2e 10 8 27 23 16 14 3b c 1a -FIXUPS: bf1cf 1d 1c 8 39 1f 31 23 1d 30 fffff7a5 b 15 8 23 2a 23 d 10 11 -FIXUPS: beba1 23 d 28 2a 2e 19 2e 22 4b 54 14 b 47 1b 38 14 25 14 12 28 -FIXUPS: beeb7 fffff756 47 4e 69 15 8 58 16 b 15 8 2b 30 30 30 29 16 8 b -FIXUPS: be8dc 17 16 20 3d f 39 35 31 3c 15 8 2b fffff66a 27 2a 23 d 10 -FIXUPS: be1b6 2b 18 2e 17 2e 17 2e 58 29 16 8 b 48 17 16 23 2c f f d 28 -FIXUPS: be48d 34 31 a2 fffff730 2d 1c 3c 23 16 e 11 12 22 24 10 8 28 29 -FIXUPS: bde78 8 b 1b 17 16 1e 54 53 4e 69 15 8 58 16 b 15 fffff66b 4e 35 -FIXUPS: bd7f5 ed 10 10 19 19 13 13 13 16 16 16 e e 1e 14 b b 32 39 2b 2f -FIXUPS: bdafb 3f 5c 40 4d 6b 1f fffff713 51 d 19 10 8 2e 1e 1a 22 12 8 -FIXUPS: bd502 22 10 8 1f 8 17 11 ae 23 1d c e a 15 27 23 16 b 1c fffff853 -FIXUPS: bcf9b 53 23 b 1d 23 32 23 d 4a 11 11 e 18 24 2f 8 b 15 b 21 d 65 -FIXUPS: bd28c 13 e 11 79 8 13 3c fffff7fe 14 28 13 b 39 18 b 3e 29 11 6c -FIXUPS: bcd3d f 11 2e 22 13 31 b 24 3f 16 27 20 1c 21 11 1f 29 16 12 fffff877 -FIXUPS: bc7fe 14 b 13 13 17 22 18 22 b b 1d 23 13 e 65 c e 4d 29 13 8 11 -FIXUPS: bca60 20 19 3b 53 1d 28 15 fffff868 28 27 1c 2e 20 29 1d 66 3a -FIXUPS: bc5ac b b 27 23 32 23 d d e 1e c 2e 15 23 29 16 b 17 2c d 1a fffff7e2 -FIXUPS: bbfba b b 17 c 15 d 5f 11 12 24 64 19 c c 4e b b 10 c 23 49 1e -FIXUPS: bc2b5 30 29 39 d 2b 26 1f fffff8c6 28 56 23 d 27 2a 23 16 b 8 e -FIXUPS: bbdfe 12 8 b 1a 17 19 e c 11 b 28 e 13 1d 29 32 23 d 10 fffff885 -FIXUPS: bb83d 2c 70 10 16 16 16 1e 16 12 63 35 17 21 95 23 d 23 29 1a 12 -FIXUPS: bbb90 b 1e 2a 23 d 2c 23 d 10 fffff6da 16 2a 23 5d 23 13 c 2b 6 -FIXUPS: bb49e 1b 6 12 15 1a 17 1a 42 2b 52 13 17 13 5e 25 b9 23 13 c 1e -FIXUPS: bb801 fffff6e3 3c 79 23 13 26 29 17 28 17 39 f 2f 13 48 f 24 10 -FIXUPS: bb1b6 23 d 20 20 d 26 1c 17 12 47 26 b 17 fffff66c b 10 56 23 d -FIXUPS: baa99 b 20 52 23 d 20 10 2c 23 d 27 29 16 25 2d 1f 23 70 29 13 -FIXUPS: bad9e 1a 64 79 17 fffff6bf 1e 23 32 23 d 10 1e 2d 23 33 30 3f 2b -FIXUPS: ba77c 1e 1f 12 2d 23 d 21 14 41 2b e 1d 20 d 14 31 17 fffff6c6 -FIXUPS: ba063 d 10 29 2a 2e 19 38 32 20 d 4e 4f 9b 12 2e 49 17 14 32 23 -FIXUPS: ba3ff e 1a 25 15 71 23 d 27 23 a027 16 16 e e 1e 30 ffff5669 27 -FIXUPS: b9ca8 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: ba019 a1a7 15 14 21 1d 20 1e 15 1c 7c 5e 2c 20 1b 5 5 5 23 13 1d -FIXUPS: c4447 32 e 13 38 10 10 19 19 13 13 13 fffff7d7 1e 11 70 26 23 32 -FIXUPS: c3e71 d 12 39 23 14 41 28 23 32 23 d 2c 23 d 2c 3e 25 14 30 d 1a -FIXUPS: c4165 1d 20 562a 1d 13 1d 13 1d 16 8 ffffa115 36 27 f 21 39 17 -FIXUPS: c3a79 1a b 5a 7c 16 34 14 17 17 5c 12 23 7 51 1c 13 57df 5 1d e -FIXUPS: c953a 1f e 13 1f e 13 1f 13 1d e 13 1f 30 e 13 1f 19 e 19 e 13 -FIXUPS: c9739 19 27 1e 6 1c fffff811 88 9 1e 14 2f 33 26 3a b 26 2b d aa -FIXUPS: c927a 39 34 24 20 13 6 24 8e 23 10 2d 23 d 23 10 8 18 fffff70b -FIXUPS: c8bf4 1b 2d 1d 23 3c d 74 5c 24 11 1c a 18 18 20 21 d 18 29 13 -FIXUPS: c8ee3 d 18 20 1a 13 21 d 18 22 fffff81b 23 d 35 d d c 46 2a 23 -FIXUPS: c8903 2c 23 d 16 29 28 57 23 d 2c 31 1e c c 15 24 21 1f 29 32 23 -FIXUPS: c8437 13 13 16 16 16 e e 1e 29 16 b b 48 58 d 32 52 31 11 13 9 -FIXUPS: c86c6 d 1e 4c 14 c b 21 14 b fffff7c1 37 14 3a 10 1c c 27 6a 29 -FIXUPS: c8103 1f 29 39 10 44 20 1d 24 10 68 24 32 58 1e c 1f 2a 10 10 19 -FIXUPS: c8424 fffff796 a 18 37 e 9 8 27 12 1d 31 37 d 19 25 95 23 d 29 -FIXUPS: c7e52 32 23 d 10 b b b 20 11 f 12 15 fffff76a 29 66 13 43 6 18 -FIXUPS: c77da 6 10 3f 20 1d 24 43 15 63 24 26 50 24 20 23 16 14 93 d 25 -FIXUPS: c7b92 6 d f fffff725 e 9 8 21 12 1d 31 37 d 19 25 95 23 d 29 29 -FIXUPS: c7544 23 d 10 b b c f 12 15 17 10 1c c 27 fffff7cb 15 1d 10 e 39 -FIXUPS: c6eb2 1a 6a 27 6 18 42 20 1d 24 10 63 24 26 36 28 1a 1e 1b 77 d -FIXUPS: c7233 30 9 1e 18 fffff782 29 19 9 8 22 10 33 23 d 2d 10 8 1e 2a -FIXUPS: c6bb9 30 37 d 19 25 95 23 d 29 29 32 23 d 10 b c fffff694 8 8 24 -FIXUPS: c64de 1c a0 1c 10 15 1a 20 16 1f 2e 14 b 1c 26 ba d 99 39 27 2e -FIXUPS: c6929 18 28 42 29 39 e fffff535 42 8 12 4d 23 32 23 d d 1c 1c 2d -FIXUPS: c6109 23 13 1c b 79 8 13 3c 32 51 d 19 c 8 50 68 be 23 fffff6cf -FIXUPS: c5b83 e 13 25 29 1a 12 12 b 1e 23 13 c 18 10 a 15 17 14 1c 29 20 -FIXUPS: c5d9d d 8f 22 40 b 43 23 13 fffff6da 23 3d 10 2d 23 d 3c d 35 d -FIXUPS: c57e9 10 8 18 20 16 16 8d d ba 2b 55 20 23 1b 10 10 8 63 e 20 fffff49b -FIXUPS: c5009 29 24 2b 16 18 18 1b 1b 28 d e6 22 22 22 22 22 28 d c2 23 -FIXUPS: c5417 23 23 25 d 9a 23 32 23 d fffff562 2c 20 d 1a 1d d 13 29 28 -FIXUPS: c4c68 20 d 44 2a 20 d 10 23 2d 26 2e 55 2d 23 d 2a d f 65 d 8c -FIXUPS: cd537 ffff711b 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f -FIXUPS: c4929 49 27 f 21 30 1e 42 49 17 2a 20 87a3 21 5 26 10 10 19 19 -FIXUPS: cd357 13 13 16 16 16 e e 1e e 13 1f e 13 1f e 13 1f 16 8 12 13 -FIXUPS: cd519 16 fffff95a d 16 25 28 57 23 d 29 e 16 25 11 3b 14 47 23 -FIXUPS: cd0dd 1c 23 16 17 23 1c 41 10 2c 23 d 24 23 13 fffff804 64 d 2f -FIXUPS: ccb40 2f 47 18 8 43 10 33 23 d 18 16 16 19 10 8 1e 2a 1e b 27 2a -FIXUPS: ccde6 d 2c 23 d 1a fffff7c2 36 27 21 e c 18 22 2a b 1a 1d 41 4e -FIXUPS: cc7fd 2e 7 67 30 28 18 23 32 23 d 25 17 34 10 15 4b 10 fffff70b -FIXUPS: cc1a3 9 1d 16 23 27 11 b 8 c 10 34 10 105 68 1e a 57 23 13 8 8 -FIXUPS: cc4fe 42 40 17 10 15 1a 20 16 fffff461 1a 2b 1a 1d 1a d 22 17 36 -FIXUPS: cbc0b 26 28 1a 18 43 28 16 15b 37 25 a8 26 28 8a 12 b 19 1c a4 -FIXUPS: cc15b 9 fffff544 69 26 30 5a 1a 21 1a 10 1d 1a 27 22 23 e 8 8 21 -FIXUPS: cb91d 15 21 c 10 f 13 f 34 1a 1d 13 1a 10 fffff7a1 42 1e e b1 8 -FIXUPS: cb322 f 29 22 19 21 d 12 52 d 45 57 d d 8 8 c 2f 3d 26 22 1a 14 -FIXUPS: cb60a 1a 77 fffff73b 2f d 2d 26 1c 17 8 29 23 3c 38 29 23 44 d -FIXUPS: cb00a 2d 15 44 e c 26 28 e 13 1a a d 24 1b 4e fffff338 d 27 22 -FIXUPS: ca576 19 14 14 25 25 5c 1c 29 49 1f 135 29 29 17c 63 b9 d 51 40 -FIXUPS: cabd2 fd b 5e 19 47 21 10 fffff241 13 1c c 13 18 22 3f 32 5a 29 -FIXUPS: ca19e 45 20 1d 67 15 66 36 2b 6c 33 27 14 b b 15 f 17 37 11 12 -FIXUPS: c9c01 17 21 16 aa 14 25 95 20 d 25 23 13 c e 1a c 1a 29 32 23 d -FIXUPS: c9f44 b b b c f 15 27 2b d 402f 16 16 e e ffffb827 27 f 21 49 27 -FIXUPS: c9968 21 49 27 f 21 30 11 19 46 16 b 2f 1c 24 10 2c 20 d 27 10 -FIXUPS: cdd3f c 12 1d 16 19 10 33 23 d 2d 10 8 1e 28 5 1d e 13 1f e 13 -FIXUPS: cdf49 13 26 10 10 19 19 13 13 13 fffff921 d 3e 28 d 2c 20 d e 64 -FIXUPS: cda89 2d 20 d 26 10 8 18 20 16 3a 1c 24 17 21 95 23 d 23 e 8 e -FIXUPS: ceb2a 13 16 16 16 e e ffffe9c7 27 f 21 49 27 f 21 30 1e 32 49 17 -FIXUPS: cd74a 25 28 57 20 d 2e 1a 26 30 23 32 f51 c 12 12 c c 16 1c 10 -FIXUPS: ce91c 23 d 2d 10 8 1e 28 5 1d e 13 1f e 13 1f 13 26 10 10 19 19 -FIXUPS: ceb17 fffff905 32 20 d 3e 28 d 2c 20 d e 64 10 2d 20 d 26 10 8 -FIXUPS: ce679 20 16 3a 1c 24 17 21 95 23 d 23 e f13 13 16 16 16 e e 1e -FIXUPS: cf829 ffffe879 27 f 21 49 27 f 21 30 1e 32 49 17 11 25 28 57 20 -FIXUPS: ce35b 2e 1a 26 30 106a 8 b 23 e 8 18 d 34 14 8 1a 12 77 20 5 1d -FIXUPS: cf617 13 1f e 13 1f 13 1d 13 26 10 10 19 19 13 fffff906 8 b 17 -FIXUPS: cf094 63 8 b 49 8 b 43 29 16 b a b 12 3e 7 c 2b 42 15 8 b 12 28 -FIXUPS: cf346 91 8 b fffff7cf 16 2a 2d 32 32 1c 1d 86 3f 21 26 3a 14 2d -FIXUPS: ceedf 20 d 2d 14 b a 8 b 1a 8 b 16 47 7 9 3c diff --git a/kauai/OBJ/WIND/CHELP.MAP b/kauai/OBJ/WIND/CHELP.MAP deleted file mode 100644 index 60b03ae0..00000000 --- a/kauai/OBJ/WIND/CHELP.MAP +++ /dev/null @@ -1,6252 +0,0 @@ - chelp - - Timestamp is 3070bcee (Mon Oct 02 21:32:46 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 000c1c1eH .text CODE - 0002:00000000 0000296cH .bss DATA - 0003:00000000 00003760H .rdata DATA - 0004:00000000 0000a074H .data DATA - 0004:0000a074 00000004H .CRT$XCA DATA - 0004:0000a078 00000004H .CRT$XCC DATA - 0004:0000a07c 000000f4H .CRT$XCU DATA - 0004:0000a170 00000004H .CRT$XCZ DATA - 0004:0000a174 00000004H .CRT$XIA DATA - 0004:0000a178 00000008H .CRT$XIC DATA - 0004:0000a180 00000004H .CRT$XIZ DATA - 0004:0000a184 00000004H .CRT$XPA DATA - 0004:0000a188 00000004H .CRT$XPX DATA - 0004:0000a18c 00000004H .CRT$XPZ DATA - 0004:0000a190 00000004H .CRT$XTA DATA - 0004:0000a194 00000004H .CRT$XTZ DATA - 0005:00000000 000000b4H .idata$2 DATA - 0005:000000b4 00000028H .idata$3 DATA - 0005:000000dc 0000047cH .idata$4 DATA - 0005:00000558 0000047cH .idata$5 DATA - 0005:000009d4 000012d8H .idata$6 DATA - 0006:00000000 0000033cH .rsrc$01 DATA - 0006:00000340 00001d5cH .rsrc$02 DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 000008f0H .debug$F DATA - 0008:00000c70 00000000H .debug$G DATA - 0008:00000c70 00000032H .debug$H DATA - 0008:fff1a000 00000000H .debug$P DATA - 0008:fff1a000 00000000H .debug$S DATA - 0008:fff1a000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:000004d0 ?MarkUtilMem@@YGXXZ 004014d0 f util.obj - 0001:00000620 ?PfilNext@FIL@@QAEPAV1@XZ 00401620 f util.obj - 0001:00000650 ?PbllNext@BLL@@QAEPAV1@XZ 00401650 f util.obj - 0001:00000680 ?PfilFirst@FIL@@SGPAV1@XZ 00401680 f util.obj - 0001:000006a0 ?PcflNext@CFL@@QAEPAV1@XZ 004016a0 f util.obj - 0001:000006d0 ?PcflFirst@CFL@@SGPAV1@XZ 004016d0 f util.obj - 0001:000006f0 ?FWouldBe@BLL@@SGHJ@Z 004016f0 f base.obj - 0001:00000730 ?FIs@BLL@@UAEHJ@Z 00401730 f base.obj - 0001:00000760 ?Cls@BLL@@UAEJXZ 00401760 f base.obj - 0001:00000790 ?Cls@BASE@@UAEJXZ 00401790 f base.obj - 0001:000007c0 ?FIs@BASE@@UAEHJ@Z 004017c0 f base.obj - 0001:00000800 ?FWouldBe@BASE@@SGHJ@Z 00401800 f base.obj - 0001:00000830 ??0BASE@@QAE@XZ 00401830 f base.obj - 0001:00000910 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00401910 f base.obj - 0001:00000930 ?_Enter@@YGXXZ 00401930 f base.obj - 0001:00000950 ?_Leave@@YGXXZ 00401950 f base.obj - 0001:00000970 ?AddRef@BASE@@UAEXXZ 00401970 f base.obj - 0001:00000a00 ?Release@BASE@@UAEXXZ 00401a00 f base.obj - 0001:00000ab0 ??2BASE@@SGPAXIPADJ@Z 00401ab0 f base.obj - 0001:00000c80 ?Debugger@@YGXXZ 00401c80 f base.obj - 0001:00000ca0 ??3BASE@@SGXPAX@Z 00401ca0 f base.obj - 0001:00000d20 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401d20 f base.obj - 0001:00000d40 ?AssertValid@BASE@@QAEXK@Z 00401d40 f base.obj - 0001:00000e70 ?MarkMemStub@BASE@@QAEXXZ 00401e70 f base.obj - 0001:00000f50 ?MarkMem@BASE@@UAEXXZ 00401f50 f base.obj - 0001:00000fa0 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401fa0 f base.obj - 0001:00001190 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402190 f base.obj - 0001:00001210 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00402210 f base.obj - 0001:00001290 ?AssertUnmarkedObjs@@YGXXZ 00402290 f base.obj - 0001:00001560 ?UnmarkAllObjs@@YGXXZ 00402560 f base.obj - 0001:00001670 ??0BLL@@QAE@XZ 00402670 f base.obj - 0001:000016c0 ??1BLL@@UAE@XZ 004026c0 f base.obj - 0001:00001710 ?_Attach@BLL@@IAEXPAX@Z 00402710 f base.obj - 0001:000018b0 ?AssertNilOrPvCb@@YGXPAXJ@Z 004028b0 f base.obj - 0001:000018e0 ?AssertValid@BLL@@QAEXK@Z 004028e0 f base.obj - 0001:000019e0 ??_GBLL@@UAEPAXI@Z 004029e0 f base.obj - 0001:000019e0 ??_EBLL@@UAEPAXI@Z 004029e0 f base.obj - 0001:00001a20 ??0STN@@QAE@XZ 00402a20 f base.obj - 0001:00001a80 ?PvAddBv@@YGPAXPAXJ@Z 00402a80 f base.obj - 0001:00001aa0 ?PvSubBv@@YGPAXPAXJ@Z 00402aa0 f base.obj - 0001:00001ac0 ?Enter@MUTX@@QAEXXZ 00402ac0 f base.obj - 0001:00001af0 ?Leave@MUTX@@QAEXXZ 00402af0 f base.obj - 0001:00001b20 ?LwThreadCur@@YGJXZ 00402b20 f base.obj - 0001:00001b40 ?FillPb@@YGXPAXJE@Z 00402b40 f utilcopy.obj - 0001:00001ba0 ?ClearPb@@YGXPAXJ@Z 00402ba0 f utilcopy.obj - 0001:00001bf0 ?ReversePb@@YGXPAXJ@Z 00402bf0 f utilcopy.obj - 0001:00001c50 ?SwapBlocks@@YGXPAXJJ@Z 00402c50 f utilcopy.obj - 0001:00001cd0 ?SwapPb@@YGXPAX0J@Z 00402cd0 f utilcopy.obj - 0001:00001d70 ?MoveElement@@YGXPAXJJJ@Z 00402d70 f utilcopy.obj - 0001:00001e80 ?FEqualRgb@@YGHPAX0J@Z 00402e80 f utilcopy.obj - 0001:00001f00 ?CbEqualRgb@@YGJPAX0J@Z 00402f00 f utilcopy.obj - 0001:00001f90 ?CopyPb@@YGXPAX0J@Z 00402f90 f utilcopy.obj - 0001:00002030 ?BltPb@@YGXPAX0J@Z 00403030 f utilcopy.obj - 0001:00002110 ?FWouldBe@ERS@@SGHJ@Z 00403110 f utilerro.obj - 0001:00002150 ?FIs@ERS@@UAEHJ@Z 00403150 f utilerro.obj - 0001:00002180 ?Cls@ERS@@UAEJXZ 00403180 f utilerro.obj - 0001:000021b0 ??0ERS@@QAE@XZ 004031b0 f utilerro.obj - 0001:00002200 ?Push@ERS@@UAEXJPADJ@Z 00403200 f utilerro.obj - 0001:000023c0 ?FPop@ERS@@UAEHPAJ@Z 004033c0 f utilerro.obj - 0001:000024c0 ?Clear@ERS@@UAEXXZ 004034c0 f utilerro.obj - 0001:00002530 ?Cerc@ERS@@UAEJXZ 00403530 f utilerro.obj - 0001:00002580 ?FIn@ERS@@UAEHJ@Z 00403580 f utilerro.obj - 0001:00002650 ?ErcGet@ERS@@UAEJJ@Z 00403650 f utilerro.obj - 0001:000026f0 ?Flush@ERS@@UAEXJ@Z 004036f0 f utilerro.obj - 0001:000027e0 ?FIn@@YGHJJJ@Z 004037e0 f utilerro.obj - 0001:00002820 ?AssertValid@ERS@@QAEXK@Z 00403820 f utilerro.obj - 0001:000028c0 ??1ERS@@UAE@XZ 004038c0 f utilerro.obj - 0001:000028f0 ??_EERS@@UAEPAXI@Z 004038f0 f utilerro.obj - 0001:000028f0 ??_GERS@@UAEPAXI@Z 004038f0 f utilerro.obj - 0001:00002930 ?SortLw@@YGXPAJ0@Z 00403930 f utilint.obj - 0001:00002980 ?MulLu@@YGXKKPAK0@Z 00403980 f utilint.obj - 0001:000029b0 ?LwMulDivAway@@YGJJJJ@Z 004039b0 f utilint.obj - 0001:00002a40 ?LwDivAway@@YGJJJ@Z 00403a40 f utilint.obj - 0001:00002af0 ?LwRoundAway@@YGJJJ@Z 00403af0 f utilint.obj - 0001:00002b80 ?LwRoundToward@@YGJJJ@Z 00403b80 f utilint.obj - 0001:00002bf0 ?LwRoundClosest@@YGJJJ@Z 00403bf0 f utilint.obj - 0001:00002c90 ?FAdjustIv@@YGHPAJJJJ@Z 00403c90 f utilint.obj - 0001:00002d40 ?LwMul@@YGJJJ@Z 00403d40 f utilint.obj - 0001:00002db0 ?AssertIn@@YGXJJJ@Z 00403db0 f utilint.obj - 0001:00002e30 ?SwapBytesBom@@YGXPAXK@Z 00403e30 f utilint.obj - 0001:00002f10 ?LwMin@@YGJJJ@Z 00403f10 f utilint.obj - 0001:00002f40 ?LwAbs@@YGJJ@Z 00403f40 f utilint.obj - 0001:00002f70 ?SwapBytesRgsw@@YGXPAXJ@Z 00403f70 f utilint.obj - 0001:00003000 ?LwMulDivMod@@YGJJJJPAJ@Z 00404000 f utilint.obj - 0001:00003060 ?SwapBytesRglw@@YGXPAXJ@Z 00404060 f utilint.obj - 0001:00003110 ?AssertBomRglw@@YGXKJ@Z 00404110 f utilint.obj - 0001:000031d0 ??BPT@@QAE?AUtagPOINT@@XZ 004041d0 f utilint.obj - 0001:00003230 ?SwTruncLw@@YGFJ@Z 00404230 f utilint.obj - 0001:00003280 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 00404280 f utilint.obj - 0001:000032d0 ?Map@PT@@QAEXPAVRC@@0@Z 004042d0 f utilint.obj - 0001:000034b0 ?LwMulDiv@@YGJJJJ@Z 004044b0 f utilint.obj - 0001:00003500 ?Transform@PT@@QAEXK@Z 00404500 f utilint.obj - 0001:00003580 ??8RC@@QAEHAAV0@@Z 00404580 f utilint.obj - 0001:00003620 ??9RC@@QAEHAAV0@@Z 00404620 f utilint.obj - 0001:000036d0 ?Union@RC@@QAEXPAV1@0@Z 004046d0 f utilint.obj - 0001:00003740 ?Union@RC@@QAEXPAV1@@Z 00404740 f utilint.obj - 0001:00003820 ?LwMax@@YGJJJ@Z 00404820 f utilint.obj - 0001:00003850 ?Dxp@RC@@QAEJXZ 00404850 f utilint.obj - 0001:00003890 ?Dyp@RC@@QAEJXZ 00404890 f utilint.obj - 0001:000038d0 ?FIntersect@RC@@QAEHPAV1@0@Z 004048d0 f utilint.obj - 0001:000039a0 ?Zero@RC@@QAEXXZ 004049a0 f utilint.obj - 0001:00003a00 ?FEmpty@RC@@QAEHXZ 00404a00 f utilint.obj - 0001:00003a60 ?FIntersect@RC@@QAEHPAV1@@Z 00404a60 f utilint.obj - 0001:00003b20 ?Inset@RC@@QAEXJJ@Z 00404b20 f utilint.obj - 0001:00003b80 ?Map@RC@@QAEXPAV1@0@Z 00404b80 f utilint.obj - 0001:00003dd0 ?Transform@RC@@QAEXK@Z 00404dd0 f utilint.obj - 0001:00003ea0 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 00404ea0 f utilint.obj - 0001:00003f10 ?Offset@RC@@QAEXJJ@Z 00404f10 f utilint.obj - 0001:00003f60 ?OffsetToOrigin@RC@@QAEXXZ 00404f60 f utilint.obj - 0001:00003fc0 ?CenterOnRc@RC@@QAEXPAV1@@Z 00404fc0 f utilint.obj - 0001:00004060 ?FPtIn@RC@@QAEHJJ@Z 00405060 f utilint.obj - 0001:000040e0 ?PinPt@RC@@QAEXPAVPT@@@Z 004050e0 f utilint.obj - 0001:00004160 ?LwBound@@YGJJJJ@Z 00405160 f utilint.obj - 0001:000041a0 ?PinToRc@RC@@QAEXPAV1@@Z 004051a0 f utilint.obj - 0001:00004250 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 00405250 f utilint.obj - 0001:000042b0 ??BRC@@QAE?AUtagRECT@@XZ 004052b0 f utilint.obj - 0001:00004340 ?FContains@RC@@QAEHPAV1@@Z 00405340 f utilint.obj - 0001:000043e0 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 004053e0 f utilint.obj - 0001:00004520 ?FMapToCell@RC@@QAEHJJJJPAJ0@Z 00405520 f utilint.obj - 0001:000045f0 ??0USAC@@QAE@XZ 004055f0 f utilint.obj - 0001:00004650 ?TsCur@USAC@@QAEKXZ 00405650 f utilint.obj - 0001:000046e0 ?LwHighLow@@YGJFF@Z 004056e0 f utilint.obj - 0001:00004710 ?SuHigh@@YGGJ@Z 00405710 f utilint.obj - 0001:00004730 ?SuLow@@YGGJ@Z 00405730 f utilint.obj - 0001:00004750 ?Scale@USAC@@QAEXK@Z 00405750 f utilint.obj - 0001:00004810 ?Set@DVER@@QAEXFF@Z 00405810 f utilint.obj - 0001:00004850 ?FReadable@DVER@@QAEHFF@Z 00405850 f utilint.obj - 0001:00004910 ??_GUSAC@@UAEPAXI@Z 00405910 f utilint.obj - 0001:00004910 ??_EUSAC@@UAEPAXI@Z 00405910 f utilint.obj - 0001:00004950 ?TsCurrentSystem@@YGKXZ 00405950 f utilint.obj - 0001:00004970 ?FFail@DMAGL@@QAEHXZ 00405970 f utilmem.obj - 0001:000049e0 ?Allocate@DMAGL@@QAEXJ@Z 004059e0 f utilmem.obj - 0001:00004a70 ?Resize@DMAGL@@QAEXJ@Z 00405a70 f utilmem.obj - 0001:00004ad0 ?Free@DMAGL@@QAEXJ@Z 00405ad0 f utilmem.obj - 0001:00004b10 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00405b10 f utilmem.obj - 0001:00004e60 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00405e60 f utilmem.obj - 0001:00005270 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00406270 f utilmem.obj - 0001:00005310 ?_LinkMbh@@YGXPAUMBH@@@Z 00406310 f utilmem.obj - 0001:000053b0 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 004063b0 f utilmem.obj - 0001:00005550 ?_AssertMbh@@YGXPAUMBH@@@Z 00406550 f utilmem.obj - 0001:00005790 ?AssertPvAlloced@@YGXPAXJ@Z 00406790 f utilmem.obj - 0001:00005850 ?AssertUnmarkedMem@@YGXXZ 00406850 f utilmem.obj - 0001:00005940 ?UnmarkAllMem@@YGXXZ 00406940 f utilmem.obj - 0001:000059c0 ?MarkPv@@YGXPAX@Z 004069c0 f utilmem.obj - 0001:00005a30 ?FWouldBe@RND@@SGHJ@Z 00406a30 f utilrnd.obj - 0001:00005a70 ?FIs@RND@@UAEHJ@Z 00406a70 f utilrnd.obj - 0001:00005aa0 ?Cls@RND@@UAEJXZ 00406aa0 f utilrnd.obj - 0001:00005ad0 ?FWouldBe@SFL@@SGHJ@Z 00406ad0 f utilrnd.obj - 0001:00005b10 ?FIs@SFL@@UAEHJ@Z 00406b10 f utilrnd.obj - 0001:00005b40 ?Cls@SFL@@UAEJXZ 00406b40 f utilrnd.obj - 0001:00005b70 ??0RND@@QAE@K@Z 00406b70 f utilrnd.obj - 0001:00005c00 ?LwNext@RND@@UAEJJ@Z 00406c00 f utilrnd.obj - 0001:00005cd0 ??0SFL@@QAE@K@Z 00406cd0 f utilrnd.obj - 0001:00005d60 ??1SFL@@UAE@XZ 00406d60 f utilrnd.obj - 0001:00005dd0 ?AssertValid@SFL@@QAEXK@Z 00406dd0 f utilrnd.obj - 0001:00005ea0 ?MarkMem@SFL@@UAEXXZ 00406ea0 f utilrnd.obj - 0001:00005f00 ?Shuffle@SFL@@QAEXJ@Z 00406f00 f utilrnd.obj - 0001:00006010 ?_ShuffleCore@SFL@@IAEXXZ 00407010 f utilrnd.obj - 0001:00006100 ?_FEnsureHq@SFL@@IAEHJ@Z 00407100 f utilrnd.obj - 0001:00006280 ?LwNext@SFL@@UAEJJ@Z 00407280 f utilrnd.obj - 0001:000063e0 ??_ERND@@UAEPAXI@Z 004073e0 f utilrnd.obj - 0001:000063e0 ??_GRND@@UAEPAXI@Z 004073e0 f utilrnd.obj - 0001:00006420 ??_ESFL@@UAEPAXI@Z 00407420 f utilrnd.obj - 0001:00006420 ??_GSFL@@UAEPAXI@Z 00407420 f utilrnd.obj - 0001:00006460 ??0STN@@QAE@PAD@Z 00407460 f utilstr.obj - 0001:00006500 ??4STN@@QAEAAV0@AAV0@@Z 00407500 f utilstr.obj - 0001:000065f0 ?SetRgch@STN@@QAEXPADJ@Z 004075f0 f utilstr.obj - 0001:000066d0 ?SetSzs@STN@@QAEXPAD@Z 004076d0 f utilstr.obj - 0001:00006730 ?Delete@STN@@QAEXJJ@Z 00407730 f utilstr.obj - 0001:00006890 ?FAppendRgch@STN@@QAEHPADJ@Z 00407890 f utilstr.obj - 0001:00006990 ?FInsertRgch@STN@@QAEHJPADJ@Z 00407990 f utilstr.obj - 0001:00006b40 ?FEqualRgch@STN@@QAEHPADJ@Z 00407b40 f utilstr.obj - 0001:00006be0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00407be0 f utilstr.obj - 0001:00006c70 ?CbData@STN@@QAEJXZ 00407c70 f utilstr.obj - 0001:00006cc0 ?GetData@STN@@QAEXPAX@Z 00407cc0 f utilstr.obj - 0001:00006d50 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 00407d50 f utilstr.obj - 0001:00006eb0 ?FSetData@STN@@QAEHPAXJPAJ@Z 00407eb0 f utilstr.obj - 0001:00007370 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 00408370 f utilstr.obj - 0001:000079a0 ?GetSzs@STN@@QAEXPAD@Z 004089a0 f utilstr.obj - 0001:00007a10 ?FFormatSz@STN@@QAAHPADZZ 00408a10 f utilstr.obj - 0001:00007a70 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00408a70 f utilstr.obj - 0001:000082d0 ?CbCharOsk@@YGJF@Z 004092d0 f utilstr.obj - 0001:00008360 ?FGetLw@STN@@QAEHPAJJ@Z 00409360 f utilstr.obj - 0001:00008630 ?Prgch@STN@@QAEPADXZ 00409630 f utilstr.obj - 0001:00008680 ?Psz@STN@@QAEPADXZ 00409680 f utilstr.obj - 0001:000086d0 ?FExpandControls@STN@@QAEHXZ 004096d0 f utilstr.obj - 0001:00008900 ?Cch@STN@@QAEJXZ 00409900 f utilstr.obj - 0001:00008950 ?SetNil@STN@@QAEXXZ 00409950 f utilstr.obj - 0001:000089b0 ?SetSz@STN@@QAEXPAD@Z 004099b0 f utilstr.obj - 0001:000089f0 ?AssertValid@STN@@QAEXK@Z 004099f0 f utilstr.obj - 0001:00008ae0 ?FValidSt@@YGHPAD@Z 00409ae0 f utilstr.obj - 0001:00008b90 ?PrgchSt@@YGPADPAD@Z 00409b90 f utilstr.obj - 0001:00008bb0 ?CchSt@@YGJPAD@Z 00409bb0 f utilstr.obj - 0001:00008be0 ?CchSz@@YGJPAD@Z 00409be0 f utilstr.obj - 0001:00008c80 ?FcmpCompareRgch@@YGKPADJ0J@Z 00409c80 f utilstr.obj - 0001:00008dc0 ?FEqualUserRgch@@YGHPADJ0JK@Z 00409dc0 f utilstr.obj - 0001:00008f30 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00409f30 f utilstr.obj - 0001:00009040 ?UpperRgchs@@YGXPADJ@Z 0040a040 f utilstr.obj - 0001:00009100 ?LowerRgchs@@YGXPADJ@Z 0040a100 f utilstr.obj - 0001:000091c0 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 0040a1c0 f utilstr.obj - 0001:00009370 ?TranslateRgch@@YGXPADJFH@Z 0040a370 f utilstr.obj - 0001:00009460 ?GrfchFromCh@@YGKD@Z 0040a460 f utilstr.obj - 0001:00009590 ?AssertOsk@@YGXF@Z 0040a590 f utilstr.obj - 0001:00009640 ?AssertSt@@YGXPAD@Z 0040a640 f utilstr.obj - 0001:00009690 ?AssertSz@@YGXPAD@Z 0040a690 f utilstr.obj - 0001:000096e0 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 0040a6e0 f memwin.obj - 0001:000097c0 ?FResizePhq@@YGHPAPAXJKJ@Z 0040a7c0 f memwin.obj - 0001:000098f0 ?FreePhq@@YGXPAPAX@Z 0040a8f0 f memwin.obj - 0001:000099a0 ?CbOfHq@@YGJPAX@Z 0040a9a0 f memwin.obj - 0001:000099e0 ?QvFromHq@@YGPAXPAX@Z 0040a9e0 f memwin.obj - 0001:00009a00 ?PvLockHq@@YGPAXPAX@Z 0040aa00 f memwin.obj - 0001:00009a80 ?UnlockHq@@YGXPAX@Z 0040aa80 f memwin.obj - 0001:00009b00 ?AssertHq@@YGXPAX@Z 0040ab00 f memwin.obj - 0001:00009bf0 ?MarkHq@@YGXPAX@Z 0040abf0 f memwin.obj - 0001:00009c30 ?AssertPvCb@@YGXPAXJ@Z 0040ac30 f memwin.obj - 0001:00009cc0 ?FWouldBe@APPB@@SGHJ@Z 0040acc0 f appb.obj - 0001:00009d00 ?FIs@APPB@@UAEHJ@Z 0040ad00 f appb.obj - 0001:00009d30 ?Cls@APPB@@UAEJXZ 0040ad30 f appb.obj - 0001:00009d60 ??0APPB@@QAE@XZ 0040ad60 f appb.obj - 0001:00009e20 ??1APPB@@UAE@XZ 0040ae20 f appb.obj - 0001:00009e60 ?Run@APPB@@UAEXKKJ@Z 0040ae60 f appb.obj - 0001:00009ee0 ?Quit@APPB@@UAEXH@Z 0040aee0 f appb.obj - 0001:00009f80 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 0040af80 f appb.obj - 0001:0000a030 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 0040b030 f appb.obj - 0001:0000a190 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 0040b190 f appb.obj - 0001:0000a2b0 ?RefreshCurs@APPB@@UAEXXZ 0040b2b0 f appb.obj - 0001:0000a360 ?BeginLongOp@APPB@@UAEXXZ 0040b360 f appb.obj - 0001:0000a3d0 ?EndLongOp@APPB@@UAEXH@Z 0040b3d0 f appb.obj - 0001:0000a470 ?GrfcustCur@APPB@@UAEKH@Z 0040b470 f appb.obj - 0001:0000a540 ?ModifyGrfcust@APPB@@UAEXKK@Z 0040b540 f appb.obj - 0001:0000a5b0 ?HideCurs@APPB@@UAEXXZ 0040b5b0 f appb.obj - 0001:0000a600 ?ShowCurs@APPB@@UAEXXZ 0040b600 f appb.obj - 0001:0000a650 ?PositionCurs@APPB@@UAEXJJ@Z 0040b650 f appb.obj - 0001:0000a6b0 ?OnnDefVariable@APPB@@UAEJXZ 0040b6b0 f appb.obj - 0001:0000a770 ?OnnDefFixed@APPB@@UAEJXZ 0040b770 f appb.obj - 0001:0000a890 ?DypTextDef@APPB@@UAEJXZ 0040b890 f appb.obj - 0001:0000a8e0 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 0040b8e0 f appb.obj - 0001:0000a950 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 0040b950 f appb.obj - 0001:0000a9c0 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 0040b9c0 f appb.obj - 0001:0000ad00 ??0PT@@QAE@XZ 0040bd00 f appb.obj - 0001:0000ad20 ?_TakeDownToolTip@APPB@@IAEXXZ 0040bd20 f appb.obj - 0001:0000adf0 ?_EnsureToolTip@APPB@@IAEXXZ 0040bdf0 f appb.obj - 0001:0000af10 ?ResetToolTip@APPB@@UAEXXZ 0040bf10 f appb.obj - 0001:0000af70 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 0040bf70 f appb.obj - 0001:0000b0a0 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 0040c0a0 f appb.obj - 0001:0000b110 ?_FInit@APPB@@MAEHKKJ@Z 0040c110 f appb.obj - 0001:0000b280 ?_FInitSound@APPB@@MAEHJ@Z 0040c280 f appb.obj - 0001:0000b3a0 ?_FInitMenu@APPB@@MAEHXZ 0040c3a0 f appb.obj - 0001:0000b410 ?_Loop@APPB@@MAEXXZ 0040c410 f appb.obj - 0001:0000b560 ?_CleanUp@APPB@@MAEXXZ 0040c560 f appb.obj - 0001:0000b610 ?_Activate@APPB@@MAEXH@Z 0040c610 f appb.obj - 0001:0000b6b0 ?TopOfLoop@APPB@@UAEXXZ 0040c6b0 f appb.obj - 0001:0000b7a0 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 0040c7a0 f appb.obj - 0001:0000b950 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 0040c950 f appb.obj - 0001:0000ba00 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 0040ca00 f appb.obj - 0001:0000bb80 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0040cb80 f appb.obj - 0001:0000bc40 ??4STN@@QAEAAV0@PAD@Z 0040cc40 f appb.obj - 0001:0000bc70 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0040cc70 f appb.obj - 0001:0000bd60 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 0040cd60 f appb.obj - 0001:0000c0e0 ??0RC@@QAE@XZ 0040d0e0 f appb.obj - 0001:0000c100 ?PtTopLeft@RC@@QAE?AVPT@@XZ 0040d100 f appb.obj - 0001:0000c140 ??0PT@@QAE@JJ@Z 0040d140 f appb.obj - 0001:0000c180 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0040d180 f appb.obj - 0001:0000c240 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0040d240 f appb.obj - 0001:0000c330 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 0040d330 f appb.obj - 0001:0000c5e0 ?IvMac@GRPB@@QAEJXZ 0040d5e0 f appb.obj - 0001:0000c610 ?FPush@GL@@QAEHPAX@Z 0040d610 f appb.obj - 0001:0000c650 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 0040d650 f appb.obj - 0001:0000c760 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 0040d760 f appb.obj - 0001:0000c8c0 ?UpdateMarked@APPB@@UAEXXZ 0040d8c0 f appb.obj - 0001:0000c990 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0040d990 f appb.obj - 0001:0000cc50 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 0040dc50 f appb.obj - 0001:0000cd90 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 0040dd90 f appb.obj - 0001:0000d070 ?SwHigh@@YGFJ@Z 0040e070 f appb.obj - 0001:0000d090 ?SwLow@@YGFJ@Z 0040e090 f appb.obj - 0001:0000d0b0 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 0040e0b0 f appb.obj - 0001:0000d220 ?Set@RC@@QAEXJJJJ@Z 0040e220 f appb.obj - 0001:0000d270 ?TsCurrent@@YGKXZ 0040e270 f appb.obj - 0001:0000d290 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 0040e290 f appb.obj - 0001:0000d420 ?OnnSystem@NTL@@QAEJXZ 0040e420 f appb.obj - 0001:0000d450 ??0ACR@@QAE@XZ 0040e450 f appb.obj - 0001:0000d480 ?_FSetProp@APPB@@IAEHJJ@Z 0040e480 f appb.obj - 0001:0000d5c0 ?FSetProp@APPB@@UAEHJJ@Z 0040e5c0 f appb.obj - 0001:0000d920 ??0ACR@@QAE@EEE@Z 0040e920 f appb.obj - 0001:0000d960 ?LwFromBytes@@YGJEEEE@Z 0040e960 f appb.obj - 0001:0000d9a0 ??0ACR@@QAE@HH@Z 0040e9a0 f appb.obj - 0001:0000d9f0 ?FGetProp@APPB@@UAEHJPAJ@Z 0040e9f0 f appb.obj - 0001:0000db30 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 0040eb30 f appb.obj - 0001:0000dd70 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 0040ed70 f appb.obj - 0001:0000df80 ?LuScale@USAC@@QAEKXZ 0040ef80 f appb.obj - 0001:0000dfb0 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 0040efb0 f appb.obj - 0001:0000dfe0 ?FModalLoop@APPB@@UAEHPAJ@Z 0040efe0 f appb.obj - 0001:0000e0d0 ?InvalHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 0040f0d0 f appb.obj - 0001:0000e100 ?EndModal@APPB@@UAEXJ@Z 0040f100 f appb.obj - 0001:0000e170 ?PopModal@APPB@@UAEXXZ 0040f170 f appb.obj - 0001:0000e310 ?PgobScreen@GOB@@SGPAV1@XZ 0040f310 f appb.obj - 0001:0000e330 ?Hwnd@GOB@@QAEPAUHWND__@@XZ 0040f330 f appb.obj - 0001:0000e360 ?Pgpt@GOB@@QAEPAVGPT@@XZ 0040f360 f appb.obj - 0001:0000e390 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 0040f390 f appb.obj - 0001:0000e420 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 0040f420 f appb.obj - 0001:0000e560 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 0040f560 f appb.obj - 0001:0000e620 ?FAllowScreenSaver@APPB@@UAEHXZ 0040f620 f appb.obj - 0001:0000e670 ?AssertValid@APPB@@QAEXK@Z 0040f670 f appb.obj - 0001:0000e830 ?MarkMem@APPB@@UAEXXZ 0040f830 f appb.obj - 0001:0000ead0 ?FAssertProc@@YGHPADJ0PAXJ@Z 0040fad0 f appb.obj - 0001:0000eb20 ?WarnProc@@YGXPADJ0@Z 0040fb20 f appb.obj - 0001:0000eb90 ?WarnProcApp@APPB@@UAEXPADJ0@Z 0040fb90 f appb.obj - 0001:0000edb0 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 0040fdb0 f appb.obj - 0001:0000ee80 ??_GAPPB@@UAEPAXI@Z 0040fe80 f appb.obj - 0001:0000ee80 ??_EAPPB@@UAEPAXI@Z 0040fe80 f appb.obj - 0001:0000eec0 ??1GTE@@UAE@XZ 0040fec0 f appb.obj - 0001:0000eef0 ??1FNI@@UAE@XZ 0040fef0 f appb.obj - 0001:0000ef20 ??_9@$BMA@A 0040ff20 f appb.obj - 0001:0000ef30 ??_9@$BBCE@A 0040ff30 f appb.obj - 0001:0000ef40 ??_9@$BME@A 0040ff40 f appb.obj - 0001:0000ef50 ??_9@$BMI@A 0040ff50 f appb.obj - 0001:0000ef60 ??_9@$BMM@A 0040ff60 f appb.obj - 0001:0000ef70 ??_9@$BNA@A 0040ff70 f appb.obj - 0001:0000efa0 ?PclokFromHid@CLOK@@SGPAV1@J@Z 0040ffa0 f clok.obj - 0001:0000f050 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 00410050 f clok.obj - 0001:0000f0a0 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 004100a0 f clok.obj - 0001:0000f180 ?AssertValid@CLOK@@QAEXK@Z 00410180 f clok.obj - 0001:0000f270 ?MarkAllCloks@CLOK@@SGXXZ 00410270 f clok.obj - 0001:0000f340 ??_9@$BCI@A 00410340 f clok.obj - 0001:0000f460 ?Hid@CMH@@QAEJXZ 00410460 f clok.obj - 0001:0000f490 ?FWouldBe@CMH@@SGHJ@Z 00410490 f cmd.obj - 0001:0000f4d0 ?FIs@CMH@@UAEHJ@Z 004104d0 f cmd.obj - 0001:0000f500 ?Cls@CMH@@UAEJXZ 00410500 f cmd.obj - 0001:0000f530 ?FWouldBe@CEX@@SGHJ@Z 00410530 f cmd.obj - 0001:0000f570 ?FIs@CEX@@UAEHJ@Z 00410570 f cmd.obj - 0001:0000f5a0 ?Cls@CEX@@UAEJXZ 004105a0 f cmd.obj - 0001:0000f5d0 ?AssertValid@CMD@@QAEXK@Z 004105d0 f cmd.obj - 0001:0000f670 ?HidUnique@CMH@@SGJJ@Z 00410670 f cmd.obj - 0001:0000f730 ??0CMH@@QAE@J@Z 00410730 f cmd.obj - 0001:0000f7d0 ??1CMH@@UAE@XZ 004107d0 f cmd.obj - 0001:0000f850 ?AssertValid@CMH@@QAEXK@Z 00410850 f cmd.obj - 0001:0000f8b0 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 004108b0 f cmd.obj - 0001:0000fa50 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 00410a50 f cmd.obj - 0001:0000fb70 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 00410b70 f cmd.obj - 0001:0000fce0 ??0CEX@@IAE@XZ 00410ce0 f cmd.obj - 0001:0000fd40 ??1CEX@@UAE@XZ 00410d40 f cmd.obj - 0001:0000fee0 ?PcexNew@CEX@@SGPAV1@JJ@Z 00410ee0 f cmd.obj - 0001:0000ffe0 ?_FInit@CEX@@MAEHJJ@Z 00410fe0 f cmd.obj - 0001:000100c0 ?StopRecording@CEX@@QAEXXZ 004110c0 f cmd.obj - 0001:00010300 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00411300 f cmd.obj - 0001:00010640 ?StopPlaying@CEX@@QAEXXZ 00411640 f cmd.obj - 0001:00010760 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 00411760 f cmd.obj - 0001:00010ae0 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 00411ae0 f cmd.obj - 0001:00010bb0 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 00411bb0 f cmd.obj - 0001:00010d10 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 00411d10 f cmd.obj - 0001:00010e60 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 00411e60 f cmd.obj - 0001:00011060 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 00412060 f cmd.obj - 0001:00011160 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00412160 f cmd.obj - 0001:00011250 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00412250 f cmd.obj - 0001:00011340 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 00412340 f cmd.obj - 0001:000114c0 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 004124c0 f cmd.obj - 0001:00011640 ?FCidIn@CEX@@UAEHJ@Z 00412640 f cmd.obj - 0001:00011710 ?FlushCid@CEX@@UAEXJ@Z 00412710 f cmd.obj - 0001:00011810 ?FEnqueue@GL@@QAEHPAX@Z 00412810 f cmd.obj - 0001:00011840 ?_TGetNextCmd@CEX@@MAEHXZ 00412840 f cmd.obj - 0001:00011b20 ?SetTemp@CFL@@QAEXH@Z 00412b20 f cmd.obj - 0001:00011b50 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 00412b50 f cmd.obj - 0001:00011c00 ?_CleanUpCmd@CEX@@MAEXXZ 00412c00 f cmd.obj - 0001:00011d30 ?FDispatchNextCmd@CEX@@UAEHXZ 00412d30 f cmd.obj - 0001:00011f60 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00412f60 f cmd.obj - 0001:00012080 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00413080 f cmd.obj - 0001:000122d0 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 004132d0 f cmd.obj - 0001:000123f0 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 004133f0 f cmd.obj - 0001:00012520 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 00413520 f cmd.obj - 0001:00012620 ?EndMouseTracking@CEX@@UAEXXZ 00413620 f cmd.obj - 0001:000126b0 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 004136b0 f cmd.obj - 0001:00012700 ?Suspend@CEX@@UAEXH@Z 00413700 f cmd.obj - 0001:000128d0 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 004138d0 f cmd.obj - 0001:00012960 ?AssertValid@CEX@@QAEXK@Z 00413960 f cmd.obj - 0001:00012b00 ?MarkMem@CEX@@UAEXXZ 00413b00 f cmd.obj - 0001:00012c40 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 00413c40 f cmd.obj - 0001:00012c70 ?FForeground@APPB@@QAEHXZ 00413c70 f cmd.obj - 0001:00012ca0 ?PgobPar@GOB@@QAEPAV1@XZ 00413ca0 f cmd.obj - 0001:00012cd0 ??_ECMH@@UAEPAXI@Z 00413cd0 f cmd.obj - 0001:00012cd0 ??_GCMH@@UAEPAXI@Z 00413cd0 f cmd.obj - 0001:00012d10 ??_ECEX@@UAEPAXI@Z 00413d10 f cmd.obj - 0001:00012d10 ??_GCEX@@UAEPAXI@Z 00413d10 f cmd.obj - 0001:00012d50 ?FWouldBe@CURS@@SGHJ@Z 00413d50 f cursor.obj - 0001:00012d90 ?FIs@CURS@@UAEHJ@Z 00413d90 f cursor.obj - 0001:00012dc0 ?Cls@CURS@@UAEJXZ 00413dc0 f cursor.obj - 0001:00012df0 ??1CURS@@MAE@XZ 00413df0 f cursor.obj - 0001:00012e40 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00413e40 f cursor.obj - 0001:00013290 ?Set@CURS@@QAEXXZ 00414290 f cursor.obj - 0001:000132e0 ??_GCURS@@MAEPAXI@Z 004142e0 f cursor.obj - 0001:000132e0 ??_ECURS@@MAEPAXI@Z 004142e0 f cursor.obj - 0001:00013430 ??0CURS@@IAE@XZ 00414430 f cursor.obj - 0001:00013490 ?FWouldBe@GNV@@SGHJ@Z 00414490 f gfx.obj - 0001:000134d0 ?FIs@GNV@@UAEHJ@Z 004144d0 f gfx.obj - 0001:00013500 ?Cls@GNV@@UAEJXZ 00414500 f gfx.obj - 0001:00013530 ?FWouldBe@GPT@@SGHJ@Z 00414530 f gfx.obj - 0001:00013570 ?FIs@GPT@@UAEHJ@Z 00414570 f gfx.obj - 0001:000135a0 ?Cls@GPT@@UAEJXZ 004145a0 f gfx.obj - 0001:000135d0 ?FWouldBe@NTL@@SGHJ@Z 004145d0 f gfx.obj - 0001:00013610 ?FIs@NTL@@UAEHJ@Z 00414610 f gfx.obj - 0001:00013640 ?Cls@NTL@@UAEJXZ 00414640 f gfx.obj - 0001:00013670 ?SetFromLw@ACR@@QAEXJ@Z 00414670 f gfx.obj - 0001:000136c0 ?LwGet@ACR@@QBEJXZ 004146c0 f gfx.obj - 0001:000136f0 ?GetClr@ACR@@QAEXPAUCLR@@@Z 004146f0 f gfx.obj - 0001:00013780 ?AssertValid@ACR@@QAEXK@Z 00414780 f gfx.obj - 0001:000139d0 ?MoveOrigin@APT@@QAEXJJ@Z 004149d0 f gfx.obj - 0001:00013a80 ??0GNV@@QAE@PAVGPT@@@Z 00414a80 f gfx.obj - 0001:00013b70 ?B0Lw@@YGEJ@Z 00414b70 f gfx.obj - 0001:00013b90 ?B1Lw@@YGEJ@Z 00414b90 f gfx.obj - 0001:00013bb0 ?B2Lw@@YGEJ@Z 00414bb0 f gfx.obj - 0001:00013bd0 ?B3Lw@@YGEJ@Z 00414bd0 f gfx.obj - 0001:00013bf0 ??0GNV@@QAE@PAVGOB@@@Z 00414bf0 f gfx.obj - 0001:00013cf0 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 00414cf0 f gfx.obj - 0001:00013e50 ??1GNV@@UAE@XZ 00414e50 f gfx.obj - 0001:00013ee0 ?_Init@GNV@@AAEXPAVGPT@@@Z 00414ee0 f gfx.obj - 0001:00013ff0 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 00414ff0 f gfx.obj - 0001:00014070 ?AssertValid@GNV@@QAEXK@Z 00415070 f gfx.obj - 0001:00014230 ?Max@RC@@QAEXXZ 00415230 f gfx.obj - 0001:00014290 ?MarkMem@GNV@@UAEXXZ 00415290 f gfx.obj - 0001:000142e0 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 004152e0 f gfx.obj - 0001:00014470 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 00415470 f gfx.obj - 0001:00014560 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00415560 f gfx.obj - 0001:00014710 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 00415710 f gfx.obj - 0001:00014820 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 00415820 f gfx.obj - 0001:000148b0 ?Unlock@GRPB@@QAEXXZ 004158b0 f gfx.obj - 0001:000148f0 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 004158f0 f gfx.obj - 0001:00014a20 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 00415a20 f gfx.obj - 0001:00014b90 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 00415b90 f gfx.obj - 0001:00014c10 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 00415c10 f gfx.obj - 0001:00014ce0 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 00415ce0 f gfx.obj - 0001:00014e60 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 00415e60 f gfx.obj - 0001:00014f80 ?ClipRc@GNV@@QAEXPAVRC@@@Z 00415f80 f gfx.obj - 0001:000150c0 ?SetPenSize@GNV@@QAEXJJ@Z 004160c0 f gfx.obj - 0001:00015180 ?SetFont@GNV@@QAEXJKJJJ@Z 00416180 f gfx.obj - 0001:00015350 ?SetOnn@GNV@@QAEXJ@Z 00416350 f gfx.obj - 0001:000153d0 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 004163d0 f gfx.obj - 0001:00015540 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 00416540 f gfx.obj - 0001:000156c0 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 004166c0 f gfx.obj - 0001:00015790 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 00416790 f gfx.obj - 0001:000158a0 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 004168a0 f gfx.obj - 0001:00015a40 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 00416a40 f gfx.obj - 0001:00015c50 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 00416c50 f gfx.obj - 0001:00015d50 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00416d50 f gfx.obj - 0001:000161d0 ??8ACR@@QBEHABV0@@Z 004171d0 f gfx.obj - 0001:00016210 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00417210 f gfx.obj - 0001:00016780 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00417780 f gfx.obj - 0001:00017170 ??9ACR@@QBEHABV0@@Z 00418170 f gfx.obj - 0001:000171b0 ?Pgpt@GNV@@QAEPAVGPT@@XZ 004181b0 f gfx.obj - 0001:000171e0 ?_LwNextDissolve@@YGJJ@Z 004181e0 f gfx.obj - 0001:00017260 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418260 f gfx.obj - 0001:000175b0 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 004185b0 f gfx.obj - 0001:00017bf0 ??YPT@@QAEAAV0@AAV0@@Z 00418bf0 f gfx.obj - 0001:00017c30 ?DrawMbmp@GNV@@QAEXPAVMBMP@@PAVRC@@@Z 00418c30 f gfx.obj - 0001:00017d20 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 00418d20 f gfx.obj - 0001:00017e10 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 00418e10 f gfx.obj - 0001:00017eb0 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 00418eb0 f gfx.obj - 0001:00017fa0 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00418fa0 f gfx.obj - 0001:00018010 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 00419010 f gfx.obj - 0001:00018080 ?MarkMem@GPT@@UAEXXZ 00419080 f gfx.obj - 0001:000180d0 ?AssertValid@DSF@@QAEXK@Z 004190d0 f gfx.obj - 0001:00018180 ?FInitGfx@@YGHXZ 00419180 f gfx.obj - 0001:000181a0 ??0NTL@@QAE@XZ 004191a0 f gfx.obj - 0001:000181e0 ??1NTL@@UAE@XZ 004191e0 f gfx.obj - 0001:00018240 ?AssertValid@NTL@@QAEXK@Z 00419240 f gfx.obj - 0001:000182d0 ?MarkMem@NTL@@UAEXXZ 004192d0 f gfx.obj - 0001:00018320 ?FValidOnn@NTL@@QAEHJ@Z 00419320 f gfx.obj - 0001:00018380 ?IstnMac@GSTB@@QAEJXZ 00419380 f gfx.obj - 0001:000183b0 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 004193b0 f gfx.obj - 0001:00018470 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 00419470 f gfx.obj - 0001:00018530 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 00419530 f gfx.obj - 0001:00018600 ?OnnMac@NTL@@QAEJXZ 00419600 f gfx.obj - 0001:00018650 ??8PT@@QAEHAAV0@@Z 00419650 f gfx.obj - 0001:000186a0 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 004196a0 f gfx.obj - 0001:00018b70 ??0RC@@QAE@JJJJ@Z 00419b70 f gfx.obj - 0001:00018bc0 ?ScanNext@REGSC@@QAEXJ@Z 00419bc0 f gfx.obj - 0001:00018c30 ?XpFetch@REGSC@@QAEJXZ 00419c30 f gfx.obj - 0001:00018d60 ?XpCur@REGSC@@QAEJXZ 00419d60 f gfx.obj - 0001:00018d90 ?DypCur@REGSC@@QAEJXZ 00419d90 f gfx.obj - 0001:00018dc0 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00419dc0 f gfx.obj - 0001:000192a0 ??_EGNV@@UAEPAXI@Z 0041a2a0 f gfx.obj - 0001:000192a0 ??_GGNV@@UAEPAXI@Z 0041a2a0 f gfx.obj - 0001:000192e0 ??0GDD@@QAE@XZ 0041a2e0 f gfx.obj - 0001:00019320 ??_ENTL@@UAEPAXI@Z 0041a320 f gfx.obj - 0001:00019320 ??_GNTL@@UAEPAXI@Z 0041a320 f gfx.obj - 0001:00019360 ??1GL@@UAE@XZ 0041a360 f gfx.obj - 0001:00019390 ??1GLB@@UAE@XZ 0041a390 f gfx.obj - 0001:000193c0 ?FWouldBe@GOB@@SGHJ@Z 0041a3c0 f gob.obj - 0001:00019400 ?FIs@GOB@@UAEHJ@Z 0041a400 f gob.obj - 0001:00019430 ?Cls@GOB@@UAEJXZ 0041a430 f gob.obj - 0001:00019460 ?FWouldBe@GTE@@SGHJ@Z 0041a460 f gob.obj - 0001:000194a0 ?FIs@GTE@@UAEHJ@Z 0041a4a0 f gob.obj - 0001:000194d0 ?Cls@GTE@@UAEJXZ 0041a4d0 f gob.obj - 0001:00019500 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 0041a500 f gob.obj - 0001:00019620 ?ShutDown@GOB@@SGXXZ 0041a620 f gob.obj - 0001:00019660 ??0GOB@@QAE@PAUGCB@@@Z 0041a660 f gob.obj - 0001:000196e0 ?_Init@GOB@@IAEXPAUGCB@@@Z 0041a6e0 f gob.obj - 0001:00019980 ??0GOB@@QAE@J@Z 0041a980 f gob.obj - 0001:00019a10 ?Release@GOB@@UAEXXZ 0041aa10 f gob.obj - 0001:00019b10 ??1GOB@@MAE@XZ 0041ab10 f gob.obj - 0001:00019d10 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 0041ad10 f gob.obj - 0001:00019dc0 ?BringToFront@GOB@@QAEXXZ 0041adc0 f gob.obj - 0001:00019e10 ?SendBehind@GOB@@QAEXPAV1@@Z 0041ae10 f gob.obj - 0001:0001a060 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 0041b060 f gob.obj - 0001:0001a270 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 0041b270 f gob.obj - 0001:0001a400 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 0041b400 f gob.obj - 0001:0001a600 ?Offset@PT@@QAEXJJ@Z 0041b600 f gob.obj - 0001:0001a630 ??0RC@@QAE@AAUtagRECT@@@Z 0041b630 f gob.obj - 0001:0001a660 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 0041b660 f gob.obj - 0001:0001abe0 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 0041bbe0 f gob.obj - 0001:0001b100 ??HRC@@QAE?AV0@AAVPT@@@Z 0041c100 f gob.obj - 0001:0001b160 ??GRC@@QAE?AV0@AAVPT@@@Z 0041c160 f gob.obj - 0001:0001b1c0 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 0041c1c0 f gob.obj - 0001:0001b850 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 0041c850 f gob.obj - 0001:0001b8a0 ?Maximize@GOB@@UAEXXZ 0041c8a0 f gob.obj - 0001:0001b930 ?SetPos@GOB@@QAEXPAVRC@@0@Z 0041c930 f gob.obj - 0001:0001ba10 ?GetPos@GOB@@QAEXPAVRC@@0@Z 0041ca10 f gob.obj - 0001:0001bac0 ?SetRcFromHwnd@GOB@@QAEXXZ 0041cac0 f gob.obj - 0001:0001bb50 ?GetRc@GOB@@QAEXPAVRC@@J@Z 0041cb50 f gob.obj - 0001:0001bc00 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 0041cc00 f gob.obj - 0001:0001bcb0 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 0041ccb0 f gob.obj - 0001:0001bd30 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 0041cd30 f gob.obj - 0001:0001bdb0 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 0041cdb0 f gob.obj - 0001:0001be60 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 0041ce60 f gob.obj - 0001:0001c060 ??0PT@@QAE@AAUtagPOINT@@@Z 0041d060 f gob.obj - 0001:0001c090 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 0041d090 f gob.obj - 0001:0001c0e0 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 0041d0e0 f gob.obj - 0001:0001c190 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 0041d190 f gob.obj - 0001:0001c2a0 ?FPtIn@GOB@@UAEHJJ@Z 0041d2a0 f gob.obj - 0001:0001c330 ?FPtInBounds@GOB@@UAEHJJ@Z 0041d330 f gob.obj - 0001:0001c3c0 ?MouseDown@GOB@@UAEXJJJK@Z 0041d3c0 f gob.obj - 0001:0001c4d0 ?_SetRcCur@GOB@@AAEXXZ 0041d4d0 f gob.obj - 0001:0001c6f0 ?PgobPrevSib@GOB@@QAEPAV1@XZ 0041d6f0 f gob.obj - 0001:0001c7f0 ?PgobLastChild@GOB@@QAEPAV1@XZ 0041d7f0 f gob.obj - 0001:0001c890 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 0041d890 f gob.obj - 0001:0001c9b0 ?PgobFromCls@GOB@@QAEPAV1@J@Z 0041d9b0 f gob.obj - 0001:0001ca70 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 0041da70 f gob.obj - 0001:0001cb00 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 0041db00 f gob.obj - 0001:0001cb70 ?PgobFromHid@GOB@@QAEPAV1@J@Z 0041db70 f gob.obj - 0001:0001cd40 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 0041dd40 f gob.obj - 0001:0001cda0 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 0041dda0 f gob.obj - 0001:0001cdf0 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 0041ddf0 f gob.obj - 0001:0001ce20 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 0041de20 f gob.obj - 0001:0001ce50 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 0041de50 f gob.obj - 0001:0001ceb0 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 0041deb0 f gob.obj - 0001:0001cf10 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 0041df10 f gob.obj - 0001:0001cf90 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 0041df90 f gob.obj - 0001:0001d4e0 ??ZPT@@QAEAAV0@AAV0@@Z 0041e4e0 f gob.obj - 0001:0001d520 ??YRC@@QAEAAV0@AAVPT@@@Z 0041e520 f gob.obj - 0001:0001d570 ?ValidHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 0041e570 f gob.obj - 0001:0001d590 ??0GCB@@QAE@JPAVGOB@@KJPAVRC@@1@Z 0041e590 f gob.obj - 0001:0001d5f0 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 0041e5f0 f gob.obj - 0001:0001d620 ?_NewRc@GOB@@MAEXXZ 0041e620 f gob.obj - 0001:0001d640 ?_ActivateHwnd@GOB@@MAEXH@Z 0041e640 f gob.obj - 0001:0001d660 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 0041e660 f gob.obj - 0001:0001d690 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 0041e690 f gob.obj - 0001:0001d6c0 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 0041e6c0 f gob.obj - 0001:0001d6f0 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 0041e6f0 f gob.obj - 0001:0001d720 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 0041e720 f gob.obj - 0001:0001d770 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 0041e770 f gob.obj - 0001:0001d800 ?LwState@GOB@@UAEJXZ 0041e800 f gob.obj - 0001:0001d850 ?AssertValid@GOB@@QAEXK@Z 0041e850 f gob.obj - 0001:0001d940 ?MarkMem@GOB@@UAEXXZ 0041e940 f gob.obj - 0001:0001d9b0 ?MarkGobTree@GOB@@QAEXXZ 0041e9b0 f gob.obj - 0001:0001da20 ??0GTE@@QAE@XZ 0041ea20 f gob.obj - 0001:0001da60 ?Init@GTE@@QAEXPAVGOB@@K@Z 0041ea60 f gob.obj - 0001:0001dae0 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 0041eae0 f gob.obj - 0001:0001dce0 ??_GGOB@@MAEPAXI@Z 0041ece0 f gob.obj - 0001:0001dce0 ??_EGOB@@MAEPAXI@Z 0041ece0 f gob.obj - 0001:0001dd20 ??_GGTE@@UAEPAXI@Z 0041ed20 f gob.obj - 0001:0001dd20 ??_EGTE@@UAEPAXI@Z 0041ed20 f gob.obj - 0001:0001dd60 ??_9@$BGA@A 0041ed60 f gob.obj - 0001:0001dd70 ??_9@$BHE@A 0041ed70 f gob.obj - 0001:0001dd80 ??_9@$BHI@A 0041ed80 f gob.obj - 0001:0001dd90 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 0041ed90 f mbmpgui.obj - 0001:0001e250 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 0041f250 f mbmpgui.obj - 0001:0001e6e0 ?_Qrgcb@MBMP@@IAEPAFXZ 0041f6e0 f mbmpgui.obj - 0001:0001e720 ?_Qmbmph@MBMP@@IAEPAUMBMPH@1@XZ 0041f720 f mbmpgui.obj - 0001:0001e860 ?FWouldBe@REGN@@SGHJ@Z 0041f860 f region.obj - 0001:0001e8a0 ?FIs@REGN@@UAEHJ@Z 0041f8a0 f region.obj - 0001:0001e8d0 ?Cls@REGN@@UAEJXZ 0041f8d0 f region.obj - 0001:0001e900 ?FWouldBe@REGSC@@SGHJ@Z 0041f900 f region.obj - 0001:0001e940 ?FIs@REGSC@@UAEHJ@Z 0041f940 f region.obj - 0001:0001e970 ?Cls@REGSC@@UAEJXZ 0041f970 f region.obj - 0001:0001e9a0 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 0041f9a0 f region.obj - 0001:0001eb70 ?FStartRow@REGBL@@QAEHJJ@Z 0041fb70 f region.obj - 0001:0001ed80 ?EndRow@REGBL@@QAEXXZ 0041fd80 f region.obj - 0001:0001ef70 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 0041ff70 f region.obj - 0001:0001f1d0 ??0REGSC@@QAE@XZ 004201d0 f region.obj - 0001:0001f210 ??1REGSC@@UAE@XZ 00420210 f region.obj - 0001:0001f250 ?Free@REGSC@@QAEXXZ 00420250 f region.obj - 0001:0001f2c0 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 004202c0 f region.obj - 0001:0001f330 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 00420330 f region.obj - 0001:0001f370 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 00420370 f region.obj - 0001:0001f4d0 ?_ScanNextCore@REGSC@@IAEXXZ 004204d0 f region.obj - 0001:0001f9d0 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 004209d0 f region.obj - 0001:0001fac0 ??1REGN@@UAE@XZ 00420ac0 f region.obj - 0001:0001fb30 ?SetRc@REGN@@QAEXPAVRC@@@Z 00420b30 f region.obj - 0001:0001fc30 ?Offset@REGN@@QAEXJJ@Z 00420c30 f region.obj - 0001:0001fca0 ?FEmpty@REGN@@QAEHPAVRC@@@Z 00420ca0 f region.obj - 0001:0001fd30 ?FIsRc@REGN@@QAEHPAVRC@@@Z 00420d30 f region.obj - 0001:0001fdc0 ??0REGBL@@QAE@XZ 00420dc0 f region.obj - 0001:0001fe20 ??1REGBL@@UAE@XZ 00420e20 f region.obj - 0001:0001fe80 ?AddXp@REGBL@@QAEXJ@Z 00420e80 f region.obj - 0001:0001ffa0 ?FDone@REGBL@@QAEHXZ 00420fa0 f region.obj - 0001:00020010 ?FUnion@REGN@@QAEHPAV1@0@Z 00421010 f region.obj - 0001:00020250 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 00421250 f region.obj - 0001:00020460 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00421460 f region.obj - 0001:000208f0 ?FIntersect@REGN@@QAEHPAV1@0@Z 004218f0 f region.obj - 0001:00020b60 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00421b60 f region.obj - 0001:00020f50 ?FDiff@REGN@@QAEHPAV1@0@Z 00421f50 f region.obj - 0001:00021180 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 00422180 f region.obj - 0001:00021370 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00422370 f region.obj - 0001:00021790 ??0REGN@@IAE@XZ 00422790 f region.obj - 0001:000217e0 ?FOn@REGSC@@QAEHXZ 004227e0 f region.obj - 0001:00021810 ?CxpCur@REGSC@@QAEJXZ 00422810 f region.obj - 0001:00021840 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 00422840 f region.obj - 0001:00021ba0 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 00422ba0 f region.obj - 0001:00021c50 ?AssertValid@REGN@@QAEXK@Z 00422c50 f region.obj - 0001:00021d30 ?MarkMem@REGN@@UAEXXZ 00422d30 f region.obj - 0001:00021da0 ??_EREGN@@UAEPAXI@Z 00422da0 f region.obj - 0001:00021da0 ??_GREGN@@UAEPAXI@Z 00422da0 f region.obj - 0001:00021de0 ??_GREGBL@@UAEPAXI@Z 00422de0 f region.obj - 0001:00021de0 ??_EREGBL@@UAEPAXI@Z 00422de0 f region.obj - 0001:00021e20 ??_EREGSC@@UAEPAXI@Z 00422e20 f region.obj - 0001:00021e20 ??_GREGSC@@UAEPAXI@Z 00422e20 f region.obj - 0001:00021fb0 _WinMain@16 00422fb0 f appbwin.obj - 0001:00022000 ?Abort@APPB@@UAEXXZ 00423000 f appbwin.obj - 0001:00022040 ?_FInitOS@APPB@@MAEHXZ 00423040 f appbwin.obj - 0001:00022260 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 00423260 f appbwin.obj - 0001:00022320 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 00423320 f appbwin.obj - 0001:000224a0 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 004234a0 f appbwin.obj - 0001:00022610 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 00423610 f appbwin.obj - 0001:00022790 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 00423790 f appbwin.obj - 0001:00022940 ?FlushUserEvents@APPB@@UAEXK@Z 00423940 f appbwin.obj - 0001:000229e0 ?_ShutDownViewer@APPB@@IAEXXZ 004239e0 f appbwin.obj - 0001:00022a30 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00423a30 f appbwin.obj - 0001:00022af0 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00423af0 f appbwin.obj - 0001:00023470 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00424470 f appbwin.obj - 0001:00023520 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00424520 f appbwin.obj - 0001:00023680 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00424680 f appbwin.obj - 0001:00023db0 ?_FInitDebug@APPB@@MAEHXZ 00424db0 f appbwin.obj - 0001:00023e00 ?_FDlgAssert@@YGHPAUHWND__@@IIJ@Z 00424e00 f appbwin.obj - 0001:00023f20 ?FAssertProcApp@APPB@@UAEHPADJ0PAXJ@Z 00424f20 f appbwin.obj - 0001:000244a0 ?FAppendSz@STN@@QAEHPAD@Z 004254a0 f appbwin.obj - 0001:000244e0 ?FAppendStn@STN@@QAEHPAV1@@Z 004254e0 f appbwin.obj - 0001:00024520 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 00425520 f appbwin.obj - 0001:00024770 ?Cno@BACO@@QAEKXZ 00425770 f appbwin.obj - 0001:000248b0 ?PgobFirstChild@GOB@@QAEPAV1@XZ 004258b0 f appbwin.obj - 0001:000248e0 ?PgobNextSib@GOB@@QAEPAV1@XZ 004258e0 f appbwin.obj - 0001:00024910 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 00425910 f gfxwin.obj - 0001:000249a0 ?_Scr@ACR@@AAEKXZ 004259a0 f gfxwin.obj - 0001:00024a60 ?Flush@GPT@@SGXXZ 00425a60 f gfxwin.obj - 0001:00024a80 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 00425a80 f gfxwin.obj - 0001:000252b0 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 004262b0 f gfxwin.obj - 0001:00025350 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 00426350 f gfxwin.obj - 0001:000254b0 ?Fbit@@YGEJ@Z 004264b0 f gfxwin.obj - 0001:000254d0 ?IbFromIbit@@YGJJ@Z 004264d0 f gfxwin.obj - 0001:000254f0 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 004264f0 f gfxwin.obj - 0001:00025600 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 00426600 f gfxwin.obj - 0001:00025730 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 00426730 f gfxwin.obj - 0001:00025940 ??1GPT@@EAE@XZ 00426940 f gfxwin.obj - 0001:00025ab0 ?_Scr@GPT@@AAEKVACR@@@Z 00426ab0 f gfxwin.obj - 0001:00025ba0 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 00426ba0 f gfxwin.obj - 0001:00026190 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 00427190 f gfxwin.obj - 0001:00026280 ?CbRow@GPT@@QAEJXZ 00427280 f gfxwin.obj - 0001:000262e0 ?CbitPixel@GPT@@QAEJXZ 004272e0 f gfxwin.obj - 0001:00026390 ?Lock@GPT@@QAEXXZ 00427390 f gfxwin.obj - 0001:000263e0 ?Unlock@GPT@@QAEXXZ 004273e0 f gfxwin.obj - 0001:00026450 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00427450 f gfxwin.obj - 0001:000264e0 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 004274e0 f gfxwin.obj - 0001:000265b0 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 004275b0 f gfxwin.obj - 0001:00026770 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 00427770 f gfxwin.obj - 0001:000267f0 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 004277f0 f gfxwin.obj - 0001:00026860 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 00427860 f gfxwin.obj - 0001:00026aa0 ?FMax@RC@@QAEHXZ 00427aa0 f gfxwin.obj - 0001:00026b20 ?CbEntry@GLB@@QAEJXZ 00427b20 f gfxwin.obj - 0001:00026b50 ?_EnsurePalette@GPT@@AAEXXZ 00427b50 f gfxwin.obj - 0001:00026c90 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 00427c90 f gfxwin.obj - 0001:00026fc0 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 00427fc0 f gfxwin.obj - 0001:00027070 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 00428070 f gfxwin.obj - 0001:000273c0 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 004283c0 f gfxwin.obj - 0001:00027630 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 00428630 f gfxwin.obj - 0001:000277a0 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 004287a0 f gfxwin.obj - 0001:000278a0 ?_SetStockBrush@GPT@@AAEXH@Z 004288a0 f gfxwin.obj - 0001:00027990 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 00428990 f gfxwin.obj - 0001:00027ca0 ??8APT@@QAEHAAU0@@Z 00428ca0 f gfxwin.obj - 0001:00027cf0 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 00428cf0 f gfxwin.obj - 0001:00028310 ?FSolidFore@APT@@QAEHXZ 00429310 f gfxwin.obj - 0001:00028350 ?FSolidBack@APT@@QAEHXZ 00429350 f gfxwin.obj - 0001:00028390 ?Invert@APT@@QAEXXZ 00429390 f gfxwin.obj - 0001:000283d0 ??0GPT@@AAE@XZ 004293d0 f gfxwin.obj - 0001:00028430 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 00429430 f gfxwin.obj - 0001:00028960 ?AssertValid@GPT@@QAEXK@Z 00429960 f gfxwin.obj - 0001:00028b40 ?MarkStaticMem@GPT@@SGXXZ 00429b40 f gfxwin.obj - 0001:00028b60 ?FInit@NTL@@QAEHXZ 00429b60 f gfxwin.obj - 0001:00028d60 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 00429d60 f gfxwin.obj - 0001:00028e70 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 00429e70 f gfxwin.obj - 0001:00028fc0 ?FFixedPitch@NTL@@QAEHJ@Z 00429fc0 f gfxwin.obj - 0001:00029080 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 0042a080 f gfxwin.obj - 0001:00029120 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 0042a120 f gfxwin.obj - 0001:00029180 ??_EGPT@@EAEPAXI@Z 0042a180 f gfxwin.obj - 0001:00029180 ??_GGPT@@EAEPAXI@Z 0042a180 f gfxwin.obj - 0001:000291c0 ?FInitScreen@GOB@@SGHKJ@Z 0042a1c0 f gobwin.obj - 0001:000292d0 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 0042a2d0 f gobwin.obj - 0001:00029380 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 0042a380 f gobwin.obj - 0001:00029440 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 0042a440 f gobwin.obj - 0001:00029480 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 0042a480 f gobwin.obj - 0001:00029670 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 0042a670 f gobwin.obj - 0001:00029730 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 0042a730 f gobwin.obj - 0001:00029860 ?Clean@GOB@@UAEXXZ 0042a860 f gobwin.obj - 0001:00029940 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 0042a940 f gobwin.obj - 0001:000299f0 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 0042a9f0 f gobwin.obj - 0001:00029b80 ?FWouldBe@MUB@@SGHJ@Z 0042ab80 f menuwin.obj - 0001:00029bc0 ?FIs@MUB@@UAEHJ@Z 0042abc0 f menuwin.obj - 0001:00029bf0 ?Cls@MUB@@UAEJXZ 0042abf0 f menuwin.obj - 0001:00029c20 ??1MUB@@UAE@XZ 0042ac20 f menuwin.obj - 0001:00029c70 ?PmubNew@MUB@@SGPAV1@K@Z 0042ac70 f menuwin.obj - 0001:00029d80 ?Set@MUB@@UAEXXZ 0042ad80 f menuwin.obj - 0001:00029e20 ?Clean@MUB@@UAEXXZ 0042ae20 f menuwin.obj - 0001:0002a020 ?EnqueueWcid@MUB@@UAEXJ@Z 0042b020 f menuwin.obj - 0001:0002a070 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 0042b070 f menuwin.obj - 0001:0002a3e0 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 0042b3e0 f menuwin.obj - 0001:0002a840 ?FRemoveAllListCid@MUB@@UAEHJ@Z 0042b840 f menuwin.obj - 0001:0002aae0 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 0042bae0 f menuwin.obj - 0001:0002ad40 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 0042bd40 f menuwin.obj - 0001:0002aee0 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 0042bee0 f menuwin.obj - 0001:0002aff0 ?_FInitLists@MUB@@AAEHXZ 0042bff0 f menuwin.obj - 0001:0002b460 ?MarkMem@MUB@@UAEXXZ 0042c460 f menuwin.obj - 0001:0002b550 ??_GMUB@@UAEPAXI@Z 0042c550 f menuwin.obj - 0001:0002b550 ??_EMUB@@UAEPAXI@Z 0042c550 f menuwin.obj - 0001:0002b6a0 ??0MUB@@IAE@XZ 0042c6a0 f menuwin.obj - 0001:0002b720 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 0042c720 f picwin.obj - 0001:0002b780 ?FWrite@BLCK@@QAEHPAXH@Z 0042c780 f picwin.obj - 0001:0002b8d0 ?FWouldBe@GRPB@@SGHJ@Z 0042c8d0 f groups.obj - 0001:0002b910 ?FIs@GRPB@@UAEHJ@Z 0042c910 f groups.obj - 0001:0002b940 ?Cls@GRPB@@UAEJXZ 0042c940 f groups.obj - 0001:0002b970 ?FWouldBe@GLB@@SGHJ@Z 0042c970 f groups.obj - 0001:0002b9b0 ?FIs@GLB@@UAEHJ@Z 0042c9b0 f groups.obj - 0001:0002b9e0 ?Cls@GLB@@UAEJXZ 0042c9e0 f groups.obj - 0001:0002ba10 ?FWouldBe@GL@@SGHJ@Z 0042ca10 f groups.obj - 0001:0002ba50 ?FIs@GL@@UAEHJ@Z 0042ca50 f groups.obj - 0001:0002ba80 ?Cls@GL@@UAEJXZ 0042ca80 f groups.obj - 0001:0002bab0 ?FWouldBe@AL@@SGHJ@Z 0042cab0 f groups.obj - 0001:0002baf0 ?FIs@AL@@UAEHJ@Z 0042caf0 f groups.obj - 0001:0002bb20 ?Cls@AL@@UAEJXZ 0042cb20 f groups.obj - 0001:0002bb50 ?FWouldBe@GGB@@SGHJ@Z 0042cb50 f groups.obj - 0001:0002bb90 ?FIs@GGB@@UAEHJ@Z 0042cb90 f groups.obj - 0001:0002bbc0 ?Cls@GGB@@UAEJXZ 0042cbc0 f groups.obj - 0001:0002bbf0 ?FWouldBe@GG@@SGHJ@Z 0042cbf0 f groups.obj - 0001:0002bc30 ?FIs@GG@@UAEHJ@Z 0042cc30 f groups.obj - 0001:0002bc60 ?Cls@GG@@UAEJXZ 0042cc60 f groups.obj - 0001:0002bc90 ?FWouldBe@AG@@SGHJ@Z 0042cc90 f groups.obj - 0001:0002bcd0 ?FIs@AG@@UAEHJ@Z 0042ccd0 f groups.obj - 0001:0002bd00 ?Cls@AG@@UAEJXZ 0042cd00 f groups.obj - 0001:0002bd30 ??1GRPB@@UAE@XZ 0042cd30 f groups.obj - 0001:0002bda0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0042cda0 f groups.obj - 0001:0002bfa0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0042cfa0 f groups.obj - 0001:0002c160 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0042d160 f groups.obj - 0001:0002c1c0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0042d1c0 f groups.obj - 0001:0002c390 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0042d390 f groups.obj - 0001:0002c510 ?AssertValid@GRPB@@QAEXK@Z 0042d510 f groups.obj - 0001:0002c6a0 ?MarkMem@GRPB@@UAEXXZ 0042d6a0 f groups.obj - 0001:0002c710 ??0GLB@@IAE@J@Z 0042d710 f groups.obj - 0001:0002c7a0 ?QvGet@GLB@@QAEPAXJ@Z 0042d7a0 f groups.obj - 0001:0002c830 ?Get@GLB@@QAEXJPAX@Z 0042d830 f groups.obj - 0001:0002c8c0 ?Put@GLB@@QAEXJPAX@Z 0042d8c0 f groups.obj - 0001:0002c970 ?PvLock@GLB@@QAEPAXJ@Z 0042d970 f groups.obj - 0001:0002c9b0 ?SetMinGrow@GLB@@QAEXJ@Z 0042d9b0 f groups.obj - 0001:0002ca40 ?CbRoundToLong@@YGJJ@Z 0042da40 f groups.obj - 0001:0002ca60 ?AssertValid@GLB@@QAEXK@Z 0042da60 f groups.obj - 0001:0002cb00 ?PglNew@GL@@SGPAV1@JJ@Z 0042db00 f groups.obj - 0001:0002cc30 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0042dc30 f groups.obj - 0001:0002cdf0 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0042ddf0 f groups.obj - 0001:0002ce50 ??0GL@@IAE@J@Z 0042de50 f groups.obj - 0001:0002ceb0 ?FFree@GL@@UAEHJ@Z 0042deb0 f groups.obj - 0001:0002cf20 ?CbOnFile@GL@@UAEJXZ 0042df20 f groups.obj - 0001:0002cf80 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0042df80 f groups.obj - 0001:0002d150 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0042e150 f groups.obj - 0001:0002d3a0 ?FInsert@GL@@QAEHJPAXJ@Z 0042e3a0 f groups.obj - 0001:0002d520 ?Delete@GL@@UAEXJ@Z 0042e520 f groups.obj - 0001:0002d580 ?Delete@GL@@QAEXJJ@Z 0042e580 f groups.obj - 0001:0002d6f0 ?Move@GL@@QAEXJJ@Z 0042e6f0 f groups.obj - 0001:0002d7b0 ?FAdd@GL@@UAEHPAXPAJ@Z 0042e7b0 f groups.obj - 0001:0002d860 ?FPop@GL@@QAEHPAX@Z 0042e860 f groups.obj - 0001:0002d970 ?FSetIvMac@GL@@QAEHJ@Z 0042e970 f groups.obj - 0001:0002db80 ?FEnsureSpace@GL@@QAEHJK@Z 0042eb80 f groups.obj - 0001:0002dc50 ?PalNew@AL@@SGPAV1@JJ@Z 0042ec50 f groups.obj - 0001:0002dd80 ??0AL@@IAE@J@Z 0042ed80 f groups.obj - 0001:0002ddf0 ?CbFromCbit@@YGJJ@Z 0042edf0 f groups.obj - 0001:0002de20 ?CbOnFile@AL@@UAEJXZ 0042ee20 f groups.obj - 0001:0002de90 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 0042ee90 f groups.obj - 0001:0002e080 ?_Qb1@GRPB@@IAEPAEJ@Z 0042f080 f groups.obj - 0001:0002e0b0 ?_Qb2@GRPB@@IAEPAEJ@Z 0042f0b0 f groups.obj - 0001:0002e0e0 ?_Cb1@GRPB@@IAEJXZ 0042f0e0 f groups.obj - 0001:0002e110 ??0GRPB@@IAE@XZ 0042f110 f groups.obj - 0001:0002e150 ?Lock@GRPB@@QAEXXZ 0042f150 f groups.obj - 0001:0002e190 ?FFree@AL@@UAEHJ@Z 0042f190 f groups.obj - 0001:0002e230 ?_Qgrfbit@AL@@AAEPAEJ@Z 0042f230 f groups.obj - 0001:0002e270 ?FEnsureSpace@AL@@QAEHJK@Z 0042f270 f groups.obj - 0001:0002e360 ?FAdd@AL@@UAEHPAXPAJ@Z 0042f360 f groups.obj - 0001:0002e560 ?Delete@AL@@UAEXJ@Z 0042f560 f groups.obj - 0001:0002e7e0 ?AssertValid@AL@@QAEXK@Z 0042f7e0 f groups.obj - 0001:0002e8f0 ?_Cb2@GRPB@@IAEJXZ 0042f8f0 f groups.obj - 0001:0002e920 ??0GGB@@IAE@JH@Z 0042f920 f groups.obj - 0001:0002e9e0 ?CbOnFile@GGB@@UAEJXZ 0042f9e0 f groups.obj - 0001:0002ea40 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0042fa40 f groups.obj - 0001:0002ec90 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0042fc90 f groups.obj - 0001:0002efa0 ?FFree@GGB@@UAEHJ@Z 0042ffa0 f groups.obj - 0001:0002f0e0 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 004300e0 f groups.obj - 0001:0002f120 ?FEnsureSpace@GGB@@QAEHJJK@Z 00430120 f groups.obj - 0001:0002f280 ?_RemoveRgb@GGB@@IAEXJJ@Z 00430280 f groups.obj - 0001:0002f3d0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 004303d0 f groups.obj - 0001:0002f540 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00430540 f groups.obj - 0001:0002f650 ?GetFixed@GGB@@QAEXJPAX@Z 00430650 f groups.obj - 0001:0002f760 ?PutFixed@GGB@@QAEXJPAX@Z 00430760 f groups.obj - 0001:0002f8a0 ?Cb@GGB@@QAEJJ@Z 004308a0 f groups.obj - 0001:0002f950 ?QvGet@GGB@@QAEPAXJPAJ@Z 00430950 f groups.obj - 0001:0002fa60 ?PvLock@GGB@@QAEPAXJPAJ@Z 00430a60 f groups.obj - 0001:0002fac0 ?FPut@GGB@@QAEHJJPAX@Z 00430ac0 f groups.obj - 0001:0002fc40 ?GetRgb@GGB@@QAEXJJJPAX@Z 00430c40 f groups.obj - 0001:0002fd50 ?PutRgb@GGB@@QAEXJJJPAX@Z 00430d50 f groups.obj - 0001:0002fe90 ?DeleteRgb@GGB@@QAEXJJJ@Z 00430e90 f groups.obj - 0001:00030080 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00431080 f groups.obj - 0001:00030340 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 00431340 f groups.obj - 0001:000307f0 ?Merge@GGB@@QAEXJJ@Z 004317f0 f groups.obj - 0001:00030a70 ?AssertValid@GGB@@QAEXK@Z 00431a70 f groups.obj - 0001:00030dd0 ?PggNew@GG@@SGPAV1@JJJ@Z 00431dd0 f groups.obj - 0001:00030f20 ??0GG@@IAE@J@Z 00431f20 f groups.obj - 0001:00030f60 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00431f60 f groups.obj - 0001:00031130 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 00432130 f groups.obj - 0001:00031190 ?FInsert@GG@@QAEHJJPAX0@Z 00432190 f groups.obj - 0001:00031440 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 00432440 f groups.obj - 0001:00031710 ?CbFixed@GGB@@QAEJXZ 00432710 f groups.obj - 0001:00031740 ?FAdd@GG@@UAEHJPAJPAX1@Z 00432740 f groups.obj - 0001:00031800 ?Delete@GG@@UAEXJ@Z 00432800 f groups.obj - 0001:00031940 ?Move@GG@@QAEXJJ@Z 00432940 f groups.obj - 0001:000319f0 ?AssertValid@GG@@QAEXK@Z 004329f0 f groups.obj - 0001:00031a60 ?PagNew@AG@@SGPAV1@JJJ@Z 00432a60 f groups.obj - 0001:00031bb0 ??0AG@@IAE@J@Z 00432bb0 f groups.obj - 0001:00031bf0 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00432bf0 f groups.obj - 0001:00031dc0 ?FAdd@AG@@UAEHJPAJPAX1@Z 00432dc0 f groups.obj - 0001:00032150 ?Delete@AG@@UAEXJ@Z 00433150 f groups.obj - 0001:00032300 ?AssertValid@AG@@QAEXK@Z 00433300 f groups.obj - 0001:00032370 ??_EGRPB@@UAEPAXI@Z 00433370 f groups.obj - 0001:00032370 ??_GGRPB@@UAEPAXI@Z 00433370 f groups.obj - 0001:000323b0 ??_GGG@@UAEPAXI@Z 004333b0 f groups.obj - 0001:000323b0 ??_EGG@@UAEPAXI@Z 004333b0 f groups.obj - 0001:000323f0 ??_GAG@@UAEPAXI@Z 004333f0 f groups.obj - 0001:000323f0 ??_EAG@@UAEPAXI@Z 004333f0 f groups.obj - 0001:00032430 ??_EGLB@@UAEPAXI@Z 00433430 f groups.obj - 0001:00032430 ??_GGLB@@UAEPAXI@Z 00433430 f groups.obj - 0001:00032470 ??_GGL@@UAEPAXI@Z 00433470 f groups.obj - 0001:00032470 ??_EGL@@UAEPAXI@Z 00433470 f groups.obj - 0001:000324b0 ??_GAL@@UAEPAXI@Z 004334b0 f groups.obj - 0001:000324b0 ??_EAL@@UAEPAXI@Z 004334b0 f groups.obj - 0001:000324f0 ??_EGGB@@UAEPAXI@Z 004334f0 f groups.obj - 0001:000324f0 ??_GGGB@@UAEPAXI@Z 004334f0 f groups.obj - 0001:00032530 ??1GGB@@UAE@XZ 00433530 f groups.obj - 0001:00032560 ??1GG@@UAE@XZ 00433560 f groups.obj - 0001:00032590 ??1AG@@UAE@XZ 00433590 f groups.obj - 0001:000325c0 ??1AL@@UAE@XZ 004335c0 f groups.obj - 0001:000325f0 ?FWouldBe@GSTB@@SGHJ@Z 004335f0 f groups2.obj - 0001:00032630 ?FIs@GSTB@@UAEHJ@Z 00433630 f groups2.obj - 0001:00032660 ?Cls@GSTB@@UAEJXZ 00433660 f groups2.obj - 0001:00032690 ?FWouldBe@GST@@SGHJ@Z 00433690 f groups2.obj - 0001:000326d0 ?FIs@GST@@UAEHJ@Z 004336d0 f groups2.obj - 0001:00032700 ?Cls@GST@@UAEJXZ 00433700 f groups2.obj - 0001:00032730 ??0GSTB@@IAE@JK@Z 00433730 f groups2.obj - 0001:00032830 ?CbOnFile@GSTB@@UAEJXZ 00433830 f groups2.obj - 0001:000328a0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 004338a0 f groups2.obj - 0001:00032b70 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 00433b70 f groups2.obj - 0001:00032ed0 ?FEnsureSpace@GSTB@@QAEHJJK@Z 00433ed0 f groups2.obj - 0001:00033010 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 00434010 f groups2.obj - 0001:000330e0 ?FPutRgch@GSTB@@QAEHJPADJ@Z 004340e0 f groups2.obj - 0001:000332b0 ?FPutStn@GSTB@@QAEHJPAVSTN@@@Z 004342b0 f groups2.obj - 0001:00033380 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 00434380 f groups2.obj - 0001:00033490 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 00434490 f groups2.obj - 0001:000335a0 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 004345a0 f groups2.obj - 0001:00033670 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 00434670 f groups2.obj - 0001:000337e0 ?GetExtra@GSTB@@QAEXJPAX@Z 004347e0 f groups2.obj - 0001:000338f0 ?_Qst@GSTB@@IAEPADJ@Z 004348f0 f groups2.obj - 0001:00033950 ?_AppendRgch@GSTB@@IAEXPADJ@Z 00434950 f groups2.obj - 0001:00033a10 ?_RemoveSt@GSTB@@IAEXJ@Z 00434a10 f groups2.obj - 0001:00033b40 ?_SwapBytesRgbst@GSTB@@IAEXXZ 00434b40 f groups2.obj - 0001:00033bd0 ?_TranslateGrst@GSTB@@IAEXFH@Z 00434bd0 f groups2.obj - 0001:00033c90 ?_FTranslateGrst@GSTB@@IAEHF@Z 00434c90 f groups2.obj - 0001:00034050 ?CchTotSt@@YGJPAD@Z 00435050 f groups2.obj - 0001:00034080 ?FFree@GSTB@@UAEHJ@Z 00435080 f groups2.obj - 0001:00034150 ?TranslateSt@@YGXPADFH@Z 00435150 f groups2.obj - 0001:00034180 ?AssertValid@GSTB@@QAEXK@Z 00435180 f groups2.obj - 0001:00034460 ?PgstNew@GST@@SGPAV1@JJJ@Z 00435460 f groups2.obj - 0001:000345f0 ?SetSt@STN@@QAEXPAD@Z 004355f0 f groups2.obj - 0001:00034630 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 00435630 f groups2.obj - 0001:000347f0 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 004357f0 f groups2.obj - 0001:000348e0 ?FFindRgch@GST@@UAEHPADJPAJK@Z 004358e0 f groups2.obj - 0001:00034a90 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 00435a90 f groups2.obj - 0001:00034c90 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 00435c90 f groups2.obj - 0001:00034d80 ?Delete@GST@@UAEXJ@Z 00435d80 f groups2.obj - 0001:00034eb0 ?AssertValid@GST@@QAEXK@Z 00435eb0 f groups2.obj - 0001:00034f20 ?_Bst@GSTB@@IAEJJ@Z 00435f20 f groups2.obj - 0001:00034f60 ?_Qbst@GSTB@@IAEPAJJ@Z 00435f60 f groups2.obj - 0001:00034fa0 ?CbExtra@GSTB@@QAEJXZ 00435fa0 f groups2.obj - 0001:00034fd0 ??0GST@@IAE@J@Z 00435fd0 f groups2.obj - 0001:00035030 ??_GGST@@UAEPAXI@Z 00436030 f groups2.obj - 0001:00035030 ??_EGST@@UAEPAXI@Z 00436030 f groups2.obj - 0001:00035070 ??_EGSTB@@UAEPAXI@Z 00436070 f groups2.obj - 0001:00035070 ??_GGSTB@@UAEPAXI@Z 00436070 f groups2.obj - 0001:000350b0 ??1GSTB@@UAE@XZ 004360b0 f groups2.obj - 0001:000350e0 ??1GST@@UAE@XZ 004360e0 f groups2.obj - 0001:00035110 ?FWouldBe@MBMP@@SGHJ@Z 00436110 f mbmp.obj - 0001:00035150 ?FIs@MBMP@@UAEHJ@Z 00436150 f mbmp.obj - 0001:00035180 ?Cls@MBMP@@UAEJXZ 00436180 f mbmp.obj - 0001:000351b0 ??1MBMP@@UAE@XZ 004361b0 f mbmp.obj - 0001:00035220 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 00436220 f mbmp.obj - 0001:00035940 ?PmbmpRead@MBMP@@SGPAV1@PAVBLCK@@@Z 00436940 f mbmp.obj - 0001:00035d80 ?CbOnFile@MBMP@@UAEJXZ 00436d80 f mbmp.obj - 0001:00035de0 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 00436de0 f mbmp.obj - 0001:00035f30 ?GetRc@MBMP@@QAEXPAVRC@@@Z 00436f30 f mbmp.obj - 0001:00035fa0 ?AssertValid@MBMP@@QAEXK@Z 00436fa0 f mbmp.obj - 0001:000360f0 ?MarkMem@MBMP@@UAEXXZ 004370f0 f mbmp.obj - 0001:00036130 ?FReadMbmp@MBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00437130 f mbmp.obj - 0001:00036300 ?BvSubPvs@@YGJPAX0@Z 00437300 f mbmp.obj - 0001:00036320 ??_GMBMP@@UAEPAXI@Z 00437320 f mbmp.obj - 0001:00036320 ??_EMBMP@@UAEPAXI@Z 00437320 f mbmp.obj - 0001:00036360 ??0MBMP@@IAE@XZ 00437360 f mbmp.obj - 0001:000364b0 ?FWouldBe@SNDV@@SGHJ@Z 004374b0 f sndm.obj - 0001:000364f0 ?FIs@SNDV@@UAEHJ@Z 004374f0 f sndm.obj - 0001:00036520 ?Cls@SNDV@@UAEJXZ 00437520 f sndm.obj - 0001:00036550 ?FWouldBe@SNDM@@SGHJ@Z 00437550 f sndm.obj - 0001:00036590 ?FIs@SNDM@@UAEHJ@Z 00437590 f sndm.obj - 0001:000365c0 ?Cls@SNDM@@UAEJXZ 004375c0 f sndm.obj - 0001:000365f0 ?FWouldBe@SNDMQ@@SGHJ@Z 004375f0 f sndm.obj - 0001:00036630 ?FIs@SNDMQ@@UAEHJ@Z 00437630 f sndm.obj - 0001:00036660 ?Cls@SNDMQ@@UAEJXZ 00437660 f sndm.obj - 0001:00036690 ?FWouldBe@SNQUE@@SGHJ@Z 00437690 f sndm.obj - 0001:000366d0 ?FIs@SNQUE@@UAEHJ@Z 004376d0 f sndm.obj - 0001:00036700 ?Cls@SNQUE@@UAEJXZ 00437700 f sndm.obj - 0001:00036730 ?BeginSynch@SNDV@@UAEXXZ 00437730 f sndm.obj - 0001:00036750 ?EndSynch@SNDV@@UAEXXZ 00437750 f sndm.obj - 0001:00036770 ??0SNDM@@IAE@XZ 00437770 f sndm.obj - 0001:000367b0 ??1SNDM@@UAE@XZ 004377b0 f sndm.obj - 0001:000368a0 ?AssertValid@SNDM@@QAEXK@Z 004378a0 f sndm.obj - 0001:00036930 ?MarkMem@SNDM@@UAEXXZ 00437930 f sndm.obj - 0001:000369d0 ?PsndmNew@SNDM@@SGPAV1@XZ 004379d0 f sndm.obj - 0001:00036ac0 ?_FInit@SNDM@@IAEHXZ 00437ac0 f sndm.obj - 0001:00036b80 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 00437b80 f sndm.obj - 0001:00036ca0 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 00437ca0 f sndm.obj - 0001:00036e50 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 00437e50 f sndm.obj - 0001:00036ec0 ?RemoveSndv@SNDM@@UAEXK@Z 00437ec0 f sndm.obj - 0001:00036f60 ?FActive@SNDM@@UAEHXZ 00437f60 f sndm.obj - 0001:00036fc0 ?Activate@SNDM@@UAEXH@Z 00437fc0 f sndm.obj - 0001:000370b0 ?Suspend@SNDM@@UAEXH@Z 004380b0 f sndm.obj - 0001:000371a0 ?SetVlm@SNDM@@UAEXJ@Z 004381a0 f sndm.obj - 0001:00037240 ?VlmCur@SNDM@@UAEJXZ 00438240 f sndm.obj - 0001:000372f0 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 004382f0 f sndm.obj - 0001:000373f0 ?Stop@SNDM@@UAEXJ@Z 004383f0 f sndm.obj - 0001:00037490 ?StopAll@SNDM@@UAEXJJ@Z 00438490 f sndm.obj - 0001:00037530 ?Pause@SNDM@@UAEXJ@Z 00438530 f sndm.obj - 0001:000375d0 ?PauseAll@SNDM@@UAEXJJ@Z 004385d0 f sndm.obj - 0001:00037670 ?Resume@SNDM@@UAEXJ@Z 00438670 f sndm.obj - 0001:00037710 ?ResumeAll@SNDM@@UAEXJJ@Z 00438710 f sndm.obj - 0001:000377b0 ?FPlaying@SNDM@@UAEHJ@Z 004387b0 f sndm.obj - 0001:00037860 ?FPlayingAll@SNDM@@UAEHJJ@Z 00438860 f sndm.obj - 0001:00037910 ?Flush@SNDM@@UAEXXZ 00438910 f sndm.obj - 0001:000379a0 ?BeginSynch@SNDM@@UAEXXZ 004389a0 f sndm.obj - 0001:00037a30 ?EndSynch@SNDM@@UAEXXZ 00438a30 f sndm.obj - 0001:00037ac0 ??1SNDMQ@@UAE@XZ 00438ac0 f sndm.obj - 0001:00037bb0 ?AssertValid@SNDMQ@@QAEXK@Z 00438bb0 f sndm.obj - 0001:00037c40 ?MarkMem@SNDMQ@@UAEXXZ 00438c40 f sndm.obj - 0001:00037ce0 ?_FInit@SNDMQ@@MAEHXZ 00438ce0 f sndm.obj - 0001:00037d90 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 00438d90 f sndm.obj - 0001:00037fb0 ?FActive@SNDMQ@@UAEHXZ 00438fb0 f sndm.obj - 0001:00038010 ?Activate@SNDMQ@@UAEXH@Z 00439010 f sndm.obj - 0001:00038100 ?Suspend@SNDMQ@@UAEXH@Z 00439100 f sndm.obj - 0001:000381f0 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 004391f0 f sndm.obj - 0001:00038320 ?Stop@SNDMQ@@UAEXJ@Z 00439320 f sndm.obj - 0001:000383b0 ?StopAll@SNDMQ@@UAEXJJ@Z 004393b0 f sndm.obj - 0001:00038460 ?Pause@SNDMQ@@UAEXJ@Z 00439460 f sndm.obj - 0001:000384f0 ?PauseAll@SNDMQ@@UAEXJJ@Z 004394f0 f sndm.obj - 0001:000385a0 ?Resume@SNDMQ@@UAEXJ@Z 004395a0 f sndm.obj - 0001:00038630 ?ResumeAll@SNDMQ@@UAEXJJ@Z 00439630 f sndm.obj - 0001:000386e0 ?FPlaying@SNDMQ@@UAEHJ@Z 004396e0 f sndm.obj - 0001:00038790 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 00439790 f sndm.obj - 0001:00038850 ?Flush@SNDMQ@@UAEXXZ 00439850 f sndm.obj - 0001:00038940 ??0SNQUE@@IAE@XZ 00439940 f sndm.obj - 0001:00038980 ??1SNQUE@@UAE@XZ 00439980 f sndm.obj - 0001:00038a80 ?AssertValid@SNQUE@@QAEXK@Z 00439a80 f sndm.obj - 0001:00038b40 ?MarkMem@SNQUE@@UAEXXZ 00439b40 f sndm.obj - 0001:00038c00 ?_FInit@SNQUE@@MAEHXZ 00439c00 f sndm.obj - 0001:00038ca0 ?_Enter@SNQUE@@MAEXXZ 00439ca0 f sndm.obj - 0001:00038cf0 ?_Leave@SNQUE@@MAEXXZ 00439cf0 f sndm.obj - 0001:00038d40 ?_Flush@SNQUE@@MAEXXZ 00439d40 f sndm.obj - 0001:00038e10 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 00439e10 f sndm.obj - 0001:00038f90 ?Stop@SNQUE@@QAEXJ@Z 00439f90 f sndm.obj - 0001:00039090 ?StopAll@SNQUE@@QAEXJ@Z 0043a090 f sndm.obj - 0001:000391a0 ?Pause@SNQUE@@QAEXJ@Z 0043a1a0 f sndm.obj - 0001:000392a0 ?PauseAll@SNQUE@@QAEXJ@Z 0043a2a0 f sndm.obj - 0001:000393c0 ?Resume@SNQUE@@QAEXJ@Z 0043a3c0 f sndm.obj - 0001:000394c0 ?ResumeAll@SNQUE@@QAEXJ@Z 0043a4c0 f sndm.obj - 0001:000395d0 ?FPlaying@SNQUE@@QAEHJ@Z 0043a5d0 f sndm.obj - 0001:000396b0 ?FPlayingAll@SNQUE@@QAEHJ@Z 0043a6b0 f sndm.obj - 0001:00039790 ?Flush@SNQUE@@QAEXXZ 0043a790 f sndm.obj - 0001:000397e0 ?LuVolScale@@YGKKJ@Z 0043a7e0 f sndm.obj - 0001:000398a0 ?LuHighLow@@YGKGG@Z 0043a8a0 f sndm.obj - 0001:00039a00 ??_ESNDM@@UAEPAXI@Z 0043aa00 f sndm.obj - 0001:00039a00 ??_GSNDM@@UAEPAXI@Z 0043aa00 f sndm.obj - 0001:00039a40 ??0SNDV@@QAE@XZ 0043aa40 f sndm.obj - 0001:00039a80 ??1SNDV@@UAE@XZ 0043aa80 f sndm.obj - 0001:00039ab0 ??_GSNDMQ@@UAEPAXI@Z 0043aab0 f sndm.obj - 0001:00039ab0 ??_ESNDMQ@@UAEPAXI@Z 0043aab0 f sndm.obj - 0001:00039af0 ??_ESNQUE@@UAEPAXI@Z 0043aaf0 f sndm.obj - 0001:00039af0 ??_GSNQUE@@UAEPAXI@Z 0043aaf0 f sndm.obj - 0001:00039b30 ??_GSNDV@@UAEPAXI@Z 0043ab30 f sndm.obj - 0001:00039b30 ??_ESNDV@@UAEPAXI@Z 0043ab30 f sndm.obj - 0001:00039b70 ?_SiiAlloc@SNDV@@KGJXZ 0043ab70 f sndm.obj - 0001:00039b90 ?FWouldBe@SDAM@@SGHJ@Z 0043ab90 f sndam.obj - 0001:00039bd0 ?FIs@SDAM@@UAEHJ@Z 0043abd0 f sndam.obj - 0001:00039c00 ?Cls@SDAM@@UAEJXZ 0043ac00 f sndam.obj - 0001:00039c30 ?FWouldBe@CAMS@@SGHJ@Z 0043ac30 f sndam.obj - 0001:00039c70 ?FIs@CAMS@@UAEHJ@Z 0043ac70 f sndam.obj - 0001:00039ca0 ?Cls@CAMS@@UAEJXZ 0043aca0 f sndam.obj - 0001:00039cd0 ?FWouldBe@AMQUE@@SGHJ@Z 0043acd0 f sndam.obj - 0001:00039d10 ?FIs@AMQUE@@UAEHJ@Z 0043ad10 f sndam.obj - 0001:00039d40 ?Cls@AMQUE@@UAEJXZ 0043ad40 f sndam.obj - 0001:00039d70 ??0STBL@@IAE@XZ 0043ad70 f sndam.obj - 0001:00039dd0 ?Write@STBL@@UAGJPBXKPAK@Z 0043add0 f sndam.obj - 0001:00039e00 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 0043ae00 f sndam.obj - 0001:00039e20 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 0043ae20 f sndam.obj - 0001:00039e80 ?Commit@STBL@@UAGJK@Z 0043ae80 f sndam.obj - 0001:00039ea0 ?Revert@STBL@@UAGJXZ 0043aea0 f sndam.obj - 0001:00039ec0 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 0043aec0 f sndam.obj - 0001:00039ee0 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 0043aee0 f sndam.obj - 0001:00039f00 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 0043af00 f sndam.obj - 0001:00039f20 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 0043af20 f sndam.obj - 0001:00039f60 ??1STBL@@IAE@XZ 0043af60 f sndam.obj - 0001:00039fa0 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 0043afa0 f sndam.obj - 0001:0003a030 ?IsEqualGUID@@YGHABU_GUID@@0@Z 0043b030 f sndam.obj - 0001:0003a070 ?AddRef@STBL@@UAGKXZ 0043b070 f sndam.obj - 0001:0003a0c0 ?Release@STBL@@UAGKXZ 0043b0c0 f sndam.obj - 0001:0003a150 ?Read@STBL@@UAGJPAXKPAK@Z 0043b150 f sndam.obj - 0001:0003a230 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 0043b230 f sndam.obj - 0001:0003a370 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 0043b370 f sndam.obj - 0001:0003a6e0 ?CbMem@STBL@@QAEJXZ 0043b6e0 f sndam.obj - 0001:0003a710 ?AssertValid@STBL@@QAEXK@Z 0043b710 f sndam.obj - 0001:0003a7c0 ?MarkMem@STBL@@UAEXXZ 0043b7c0 f sndam.obj - 0001:0003a810 ??0CAMS@@IAE@XZ 0043b810 f sndam.obj - 0001:0003a870 ??1CAMS@@UAE@XZ 0043b870 f sndam.obj - 0001:0003a930 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0043b930 f sndam.obj - 0001:0003abd0 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 0043bbd0 f sndam.obj - 0001:0003ad60 ?AssertValid@CAMS@@QAEXK@Z 0043bd60 f sndam.obj - 0001:0003ae20 ?MarkMem@CAMS@@UAEXXZ 0043be20 f sndam.obj - 0001:0003ae70 ??0AMNOT@@QAE@XZ 0043be70 f sndam.obj - 0001:0003aec0 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 0043bec0 f sndam.obj - 0001:0003aee0 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 0043bee0 f sndam.obj - 0001:0003af00 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 0043bf00 f sndam.obj - 0001:0003af20 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 0043bf20 f sndam.obj - 0001:0003af60 ?AssertValid@AMNOT@@QAEXK@Z 0043bf60 f sndam.obj - 0001:0003afa0 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 0043bfa0 f sndam.obj - 0001:0003b030 ?AddRef@AMNOT@@UAGKXZ 0043c030 f sndam.obj - 0001:0003b080 ?Release@AMNOT@@UAGKXZ 0043c080 f sndam.obj - 0001:0003b100 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 0043c100 f sndam.obj - 0001:0003b160 ??0AMQUE@@IAE@XZ 0043c160 f sndam.obj - 0001:0003b1b0 ??1AMQUE@@UAE@XZ 0043c1b0 f sndam.obj - 0001:0003b230 ?AssertValid@AMQUE@@QAEXK@Z 0043c230 f sndam.obj - 0001:0003b290 ?PamqueNew@AMQUE@@SGPAV1@XZ 0043c290 f sndam.obj - 0001:0003b360 ?_FInit@AMQUE@@MAEHXZ 0043c360 f sndam.obj - 0001:0003b490 ?_Enter@AMQUE@@MAEXXZ 0043c490 f sndam.obj - 0001:0003b4c0 ?_Leave@AMQUE@@MAEXXZ 0043c4c0 f sndam.obj - 0001:0003b4f0 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 0043c4f0 f sndam.obj - 0001:0003b5b0 ?_Queue@AMQUE@@MAEXJ@Z 0043c5b0 f sndam.obj - 0001:0003b890 ?FInMemory@CAMS@@QAEHXZ 0043c890 f sndam.obj - 0001:0003b8c0 ?FInMemory@STBL@@QAEHXZ 0043c8c0 f sndam.obj - 0001:0003b900 ?_PauseQueue@AMQUE@@MAEXJ@Z 0043c900 f sndam.obj - 0001:0003b9d0 ?_ResumeQueue@AMQUE@@MAEXJ@Z 0043c9d0 f sndam.obj - 0001:0003ba30 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 0043ca30 f sndam.obj - 0001:0003bb40 ??0SDAM@@IAE@XZ 0043cb40 f sndam.obj - 0001:0003bb90 ??1SDAM@@UAE@XZ 0043cb90 f sndam.obj - 0001:0003bc30 ?AssertValid@SDAM@@QAEXK@Z 0043cc30 f sndam.obj - 0001:0003bc90 ?PsdamNew@SDAM@@SGPAV1@J@Z 0043cc90 f sndam.obj - 0001:0003bd60 ?FHaveWaveDevice@@YGHK@Z 0043cd60 f sndam.obj - 0001:0003be10 ?_FInit@SDAM@@MAEHJ@Z 0043ce10 f sndam.obj - 0001:0003c040 ?GetFni@FIL@@QAEXPAVFNI@@@Z 0043d040 f sndam.obj - 0001:0003c070 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 0043d070 f sndam.obj - 0001:0003c0c0 ?_Suspend@SDAM@@MAEXH@Z 0043d0c0 f sndam.obj - 0001:0003c1d0 ?SetVlm@SDAM@@UAEXJ@Z 0043d1d0 f sndam.obj - 0001:0003c280 ?VlmCur@SDAM@@UAEJXZ 0043d280 f sndam.obj - 0001:0003c2d0 ?BeginSynch@SDAM@@UAEXXZ 0043d2d0 f sndam.obj - 0001:0003c370 ?EndSynch@SDAM@@UAEXXZ 0043d370 f sndam.obj - 0001:0003c430 ??4FNI@@QAEAAV0@AAV0@@Z 0043d430 f sndam.obj - 0001:0003c480 ?Pcfl@CRF@@QAEPAVCFL@@XZ 0043d480 f sndam.obj - 0001:0003c4b0 ??0IStream@@QAE@XZ 0043d4b0 f sndam.obj - 0001:0003c4f0 ??_GSTBL@@IAEPAXI@Z 0043d4f0 f sndam.obj - 0001:0003c530 ??_GCAMS@@UAEPAXI@Z 0043d530 f sndam.obj - 0001:0003c530 ??_ECAMS@@UAEPAXI@Z 0043d530 f sndam.obj - 0001:0003c570 ??0IAMNotifySink@@QAE@XZ 0043d570 f sndam.obj - 0001:0003c5b0 ??_EAMQUE@@UAEPAXI@Z 0043d5b0 f sndam.obj - 0001:0003c5b0 ??_GAMQUE@@UAEPAXI@Z 0043d5b0 f sndam.obj - 0001:0003c5f0 ??_ESDAM@@UAEPAXI@Z 0043d5f0 f sndam.obj - 0001:0003c5f0 ??_GSDAM@@UAEPAXI@Z 0043d5f0 f sndam.obj - 0001:0003c630 ??0SNDMQ@@QAE@XZ 0043d630 f sndam.obj - 0001:0003c670 ??4BASE@@QAEAAV0@ABV0@@Z 0043d670 f sndam.obj - 0001:0003c6b0 ??0IUnknown@@QAE@XZ 0043d6b0 f sndam.obj - 0001:0003c810 ?FWouldBe@MIDO@@SGHJ@Z 0043d810 f mididev.obj - 0001:0003c850 ?FIs@MIDO@@UAEHJ@Z 0043d850 f mididev.obj - 0001:0003c880 ?Cls@MIDO@@UAEJXZ 0043d880 f mididev.obj - 0001:0003c8b0 ??0MIDO@@QAE@XZ 0043d8b0 f mididev.obj - 0001:0003c950 ??1MIDO@@UAE@XZ 0043d950 f mididev.obj - 0001:0003c9e0 ?_GetSysVol@MIDO@@IAEXXZ 0043d9e0 f mididev.obj - 0001:0003ca60 ?_SetSysVol@MIDO@@IAEXK@Z 0043da60 f mididev.obj - 0001:0003cad0 ?_Reset@MIDO@@IAEXXZ 0043dad0 f mididev.obj - 0001:0003cbb0 ?Suspend@MIDO@@QAEXH@Z 0043dbb0 f mididev.obj - 0001:0003cd50 ??_EMIDO@@UAEPAXI@Z 0043dd50 f mididev.obj - 0001:0003cd50 ??_GMIDO@@UAEPAXI@Z 0043dd50 f mididev.obj - 0001:0003cea0 ?FWouldBe@MDWS@@SGHJ@Z 0043dea0 f mididev2.obj - 0001:0003cee0 ?FIs@MDWS@@UAEHJ@Z 0043dee0 f mididev2.obj - 0001:0003cf10 ?Cls@MDWS@@UAEJXZ 0043df10 f mididev2.obj - 0001:0003cf40 ?FWouldBe@MSQUE@@SGHJ@Z 0043df40 f mididev2.obj - 0001:0003cf80 ?FIs@MSQUE@@UAEHJ@Z 0043df80 f mididev2.obj - 0001:0003cfb0 ?Cls@MSQUE@@UAEJXZ 0043dfb0 f mididev2.obj - 0001:0003cfe0 ?FWouldBe@MDPS@@SGHJ@Z 0043dfe0 f mididev2.obj - 0001:0003d020 ?FIs@MDPS@@UAEHJ@Z 0043e020 f mididev2.obj - 0001:0003d050 ?Cls@MDPS@@UAEJXZ 0043e050 f mididev2.obj - 0001:0003d080 ?FWouldBe@MSMIX@@SGHJ@Z 0043e080 f mididev2.obj - 0001:0003d0c0 ?FIs@MSMIX@@UAEHJ@Z 0043e0c0 f mididev2.obj - 0001:0003d0f0 ?Cls@MSMIX@@UAEJXZ 0043e0f0 f mididev2.obj - 0001:0003d120 ?FWouldBe@MISI@@SGHJ@Z 0043e120 f mididev2.obj - 0001:0003d160 ?FIs@MISI@@UAEHJ@Z 0043e160 f mididev2.obj - 0001:0003d190 ?Cls@MISI@@UAEJXZ 0043e190 f mididev2.obj - 0001:0003d1c0 ?FWouldBe@WMS@@SGHJ@Z 0043e1c0 f mididev2.obj - 0001:0003d200 ?FIs@WMS@@UAEHJ@Z 0043e200 f mididev2.obj - 0001:0003d230 ?Cls@WMS@@UAEJXZ 0043e230 f mididev2.obj - 0001:0003d260 ?FWouldBe@OMS@@SGHJ@Z 0043e260 f mididev2.obj - 0001:0003d2a0 ?FIs@OMS@@UAEHJ@Z 0043e2a0 f mididev2.obj - 0001:0003d2d0 ?Cls@OMS@@UAEJXZ 0043e2d0 f mididev2.obj - 0001:0003d300 ??0MDPS@@IAE@XZ 0043e300 f mididev2.obj - 0001:0003d340 ??1MDPS@@UAE@XZ 0043e340 f mididev2.obj - 0001:0003d3f0 ?AssertValid@MDPS@@QAEXK@Z 0043e3f0 f mididev2.obj - 0001:0003d480 ?MarkMem@MDPS@@UAEXXZ 0043e480 f mididev2.obj - 0001:0003d4d0 ?PmdpsNew@MDPS@@SGPAV1@XZ 0043e4d0 f mididev2.obj - 0001:0003d5a0 ?_FInit@MDPS@@MAEHXZ 0043e5a0 f mididev2.obj - 0001:0003d6a0 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 0043e6a0 f mididev2.obj - 0001:0003d700 ?_Suspend@MDPS@@MAEXH@Z 0043e700 f mididev2.obj - 0001:0003d760 ?SetVlm@MDPS@@UAEXJ@Z 0043e760 f mididev2.obj - 0001:0003d7c0 ?VlmCur@MDPS@@UAEJXZ 0043e7c0 f mididev2.obj - 0001:0003d810 ??0MDWS@@IAE@XZ 0043e810 f mididev2.obj - 0001:0003d850 ??1MDWS@@UAE@XZ 0043e850 f mididev2.obj - 0001:0003d8b0 ?AssertValid@MDWS@@QAEXK@Z 0043e8b0 f mididev2.obj - 0001:0003d940 ?MarkMem@MDWS@@UAEXXZ 0043e940 f mididev2.obj - 0001:0003d990 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0043e990 f mididev2.obj - 0001:0003db40 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 0043eb40 f mididev2.obj - 0001:0003dca0 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 0043eca0 f mididev2.obj - 0001:0003df70 ?PvLockData@MDWS@@QAEPAXPAJ@Z 0043ef70 f mididev2.obj - 0001:0003dff0 ?UnlockData@MDWS@@QAEXXZ 0043eff0 f mididev2.obj - 0001:0003e040 ??0MSQUE@@IAE@XZ 0043f040 f mididev2.obj - 0001:0003e080 ??1MSQUE@@UAE@XZ 0043f080 f mididev2.obj - 0001:0003e120 ?AssertValid@MSQUE@@QAEXK@Z 0043f120 f mididev2.obj - 0001:0003e1b0 ?MarkMem@MSQUE@@UAEXXZ 0043f1b0 f mididev2.obj - 0001:0003e200 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 0043f200 f mididev2.obj - 0001:0003e330 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 0043f330 f mididev2.obj - 0001:0003e440 ?_Enter@MSQUE@@MAEXXZ 0043f440 f mididev2.obj - 0001:0003e470 ?_Leave@MSQUE@@MAEXXZ 0043f470 f mididev2.obj - 0001:0003e4a0 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 0043f4a0 f mididev2.obj - 0001:0003e560 ?_Queue@MSQUE@@MAEXJ@Z 0043f560 f mididev2.obj - 0001:0003e6a0 ?_PauseQueue@MSQUE@@MAEXJ@Z 0043f6a0 f mididev2.obj - 0001:0003e770 ?_ResumeQueue@MSQUE@@MAEXJ@Z 0043f770 f mididev2.obj - 0001:0003e7d0 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 0043f7d0 f mididev2.obj - 0001:0003e890 ??0MSMIX@@IAE@XZ 0043f890 f mididev2.obj - 0001:0003e8e0 ??1MSMIX@@UAE@XZ 0043f8e0 f mididev2.obj - 0001:0003ea90 ?PmsmixNew@MSMIX@@SGPAV1@XZ 0043fa90 f mididev2.obj - 0001:0003eb60 ?_FInit@MSMIX@@IAEHXZ 0043fb60 f mididev2.obj - 0001:0003ec90 ?AssertValid@MSMIX@@QAEXK@Z 0043fc90 f mididev2.obj - 0001:0003ee40 ?MarkMem@MSMIX@@UAEXXZ 0043fe40 f mididev2.obj - 0001:0003eee0 ?Suspend@MSMIX@@QAEXH@Z 0043fee0 f mididev2.obj - 0001:0003efb0 ?_StopStream@MSMIX@@IAEXXZ 0043ffb0 f mididev2.obj - 0001:0003f080 ?SetVlm@MSMIX@@QAEXJ@Z 00440080 f mididev2.obj - 0001:0003f130 ?VlmCur@MSMIX@@QAEJXZ 00440130 f mididev2.obj - 0001:0003f180 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 00440180 f mididev2.obj - 0001:0003f430 ?Dts@MDWS@@QAEKXZ 00440430 f mididev2.obj - 0001:0003f460 ?_Restart@MSMIX@@IAEXH@Z 00440460 f mididev2.obj - 0001:0003f550 ?_SubmitBuffers@MSMIX@@IAEXK@Z 00440550 f mididev2.obj - 0001:0003f850 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 00440850 f mididev2.obj - 0001:0003fda0 ?BHigh@@YGEF@Z 00440da0 f mididev2.obj - 0001:0003fdc0 ?_MidiProc@MSMIX@@KGXKPAXK@Z 00440dc0 f mididev2.obj - 0001:0003fe90 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 00440e90 f mididev2.obj - 0001:000400e0 ?_ThreadProc@MSMIX@@KGKPAX@Z 004410e0 f mididev2.obj - 0001:00040170 ?_LuThread@MSMIX@@IAEKXZ 00441170 f mididev2.obj - 0001:00040370 ?LuMin@@YGKKK@Z 00441370 f mididev2.obj - 0001:000403a0 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 004413a0 f mididev2.obj - 0001:00040460 ?_Reset@MISI@@IAEXXZ 00441460 f mididev2.obj - 0001:00040510 ?_GetSysVol@MISI@@IAEXXZ 00441510 f mididev2.obj - 0001:000406f0 ?_SetSysVol@MISI@@IAEXK@Z 004416f0 f mididev2.obj - 0001:00040870 ?_SetSysVlm@MISI@@IAEXXZ 00441870 f mididev2.obj - 0001:000408b0 ?SetVlm@MISI@@UAEXJ@Z 004418b0 f mididev2.obj - 0001:00040930 ?VlmCur@MISI@@UAEJXZ 00441930 f mididev2.obj - 0001:00040980 ?FActive@MISI@@UAEHXZ 00441980 f mididev2.obj - 0001:000409c0 ?FActivate@MISI@@UAEHH@Z 004419c0 f mididev2.obj - 0001:00040a30 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 00441a30 f mididev2.obj - 0001:00040a80 ??1WMS@@UAE@XZ 00441a80 f mididev2.obj - 0001:00040bb0 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 00441bb0 f mididev2.obj - 0001:00040c50 ?_FInit@WMS@@IAEHXZ 00441c50 f mididev2.obj - 0001:00040f60 ?AssertValid@WMS@@QAEXK@Z 00441f60 f mididev2.obj - 0001:00041100 ?MarkMem@WMS@@UAEXXZ 00442100 f mididev2.obj - 0001:000411c0 ?_FOpen@WMS@@MAEHXZ 004421c0 f mididev2.obj - 0001:00041330 ?_FClose@WMS@@MAEHXZ 00442330 f mididev2.obj - 0001:00041430 ?FActive@WMS@@UAEHXZ 00442430 f mididev2.obj - 0001:00041460 ?FActivate@WMS@@UAEHH@Z 00442460 f mididev2.obj - 0001:000414c0 ?_ResetStream@WMS@@IAEXXZ 004424c0 f mididev2.obj - 0001:00041540 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 00442540 f mididev2.obj - 0001:00041760 ?_CmhSubmitBuffers@WMS@@IAEJXZ 00442760 f mididev2.obj - 0001:00041930 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 00442930 f mididev2.obj - 0001:00041a00 ?StopPlaying@WMS@@UAEXXZ 00442a00 f mididev2.obj - 0001:00041aa0 ?_MidiProc@WMS@@KGXPAXKKKK@Z 00442aa0 f mididev2.obj - 0001:00041b60 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 00442b60 f mididev2.obj - 0001:00041d60 ?_ThreadProc@WMS@@KGKPAX@Z 00442d60 f mididev2.obj - 0001:00041df0 ?_LuThread@WMS@@IAEKXZ 00442df0 f mididev2.obj - 0001:00041eb0 ?_DoCallBacks@WMS@@IAEXXZ 00442eb0 f mididev2.obj - 0001:00041fd0 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 00442fd0 f mididev2.obj - 0001:00042020 ??1OMS@@UAE@XZ 00443020 f mididev2.obj - 0001:00042170 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 00443170 f mididev2.obj - 0001:00042210 ?_FInit@OMS@@IAEHXZ 00443210 f mididev2.obj - 0001:00042310 ?AssertValid@OMS@@QAEXK@Z 00443310 f mididev2.obj - 0001:00042420 ?MarkMem@OMS@@UAEXXZ 00443420 f mididev2.obj - 0001:00042490 ?_FOpen@OMS@@MAEHXZ 00443490 f mididev2.obj - 0001:00042570 ?_FClose@OMS@@MAEHXZ 00443570 f mididev2.obj - 0001:00042670 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 00443670 f mididev2.obj - 0001:00042810 ?StopPlaying@OMS@@UAEXXZ 00443810 f mididev2.obj - 0001:000428b0 ?_ThreadProc@OMS@@KGKPAX@Z 004438b0 f mididev2.obj - 0001:00042940 ?_LuThread@OMS@@IAEKXZ 00443940 f mididev2.obj - 0001:00042c50 ?_ReleaseBuffers@OMS@@IAEXXZ 00443c50 f mididev2.obj - 0001:00042d20 ??_EMDPS@@UAEPAXI@Z 00443d20 f mididev2.obj - 0001:00042d20 ??_GMDPS@@UAEPAXI@Z 00443d20 f mididev2.obj - 0001:00042d60 ??_GMDWS@@UAEPAXI@Z 00443d60 f mididev2.obj - 0001:00042d60 ??_EMDWS@@UAEPAXI@Z 00443d60 f mididev2.obj - 0001:00042da0 ??_GMSQUE@@UAEPAXI@Z 00443da0 f mididev2.obj - 0001:00042da0 ??_EMSQUE@@UAEPAXI@Z 00443da0 f mididev2.obj - 0001:00042de0 ??_GMSMIX@@UAEPAXI@Z 00443de0 f mididev2.obj - 0001:00042de0 ??_EMSMIX@@UAEPAXI@Z 00443de0 f mididev2.obj - 0001:00042e20 ??_GMISI@@UAEPAXI@Z 00443e20 f mididev2.obj - 0001:00042e20 ??_EMISI@@UAEPAXI@Z 00443e20 f mididev2.obj - 0001:00042e60 ??_GWMS@@UAEPAXI@Z 00443e60 f mididev2.obj - 0001:00042e60 ??_EWMS@@UAEPAXI@Z 00443e60 f mididev2.obj - 0001:00042ea0 ??1MISI@@UAE@XZ 00443ea0 f mididev2.obj - 0001:00042ed0 ??_EOMS@@UAEPAXI@Z 00443ed0 f mididev2.obj - 0001:00042ed0 ??_GOMS@@UAEPAXI@Z 00443ed0 f mididev2.obj - 0001:00042f10 ?FWouldBe@MSTP@@SGHJ@Z 00443f10 f midi.obj - 0001:00042f50 ?FIs@MSTP@@UAEHJ@Z 00443f50 f midi.obj - 0001:00042f80 ?Cls@MSTP@@UAEJXZ 00443f80 f midi.obj - 0001:00042fb0 ?FWouldBe@MIDS@@SGHJ@Z 00443fb0 f midi.obj - 0001:00042ff0 ?FIs@MIDS@@UAEHJ@Z 00443ff0 f midi.obj - 0001:00043020 ?Cls@MIDS@@UAEJXZ 00444020 f midi.obj - 0001:00043050 ??0MSTP@@QAE@XZ 00444050 f midi.obj - 0001:000430c0 ??1MSTP@@UAE@XZ 004440c0 f midi.obj - 0001:00043160 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 00444160 f midi.obj - 0001:00043300 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 00444300 f midi.obj - 0001:00043840 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 00444840 f midi.obj - 0001:000438f0 ?AssertValid@MSTP@@QAEXK@Z 004448f0 f midi.obj - 0001:00043a40 ?MarkMem@MSTP@@UAEXXZ 00444a40 f midi.obj - 0001:00043a90 ??0MIDS@@IAE@XZ 00444a90 f midi.obj - 0001:00043ad0 ??1MIDS@@UAE@XZ 00444ad0 f midi.obj - 0001:00043b10 ?AssertValid@MIDS@@QAEXK@Z 00444b10 f midi.obj - 0001:00043b50 ?MarkMem@MIDS@@UAEXXZ 00444b50 f midi.obj - 0001:00043b90 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 00444b90 f midi.obj - 0001:00043cd0 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 00444cd0 f midi.obj - 0001:00043d90 ?CbOnFile@MIDS@@UAEJXZ 00444d90 f midi.obj - 0001:00043e10 ??_GMSTP@@UAEPAXI@Z 00444e10 f midi.obj - 0001:00043e10 ??_EMSTP@@UAEPAXI@Z 00444e10 f midi.obj - 0001:00043e50 ??_EMIDS@@UAEPAXI@Z 00444e50 f midi.obj - 0001:00043e50 ??_GMIDS@@UAEPAXI@Z 00444e50 f midi.obj - 0001:00043e90 ?FReadHq@BLCK@@QAEHPAPAXH@Z 00444e90 f midi.obj - 0001:00044040 ??_9@$BFA@A 00445040 f video.obj - 0001:000442b0 ??0GCB@@QAE@XZ 004452b0 f kidworld.obj - 0001:000442f0 ?FWouldBe@TXHD@@SGHJ@Z 004452f0 f kidhelp.obj - 0001:00044330 ?FIs@TXHD@@UAEHJ@Z 00445330 f kidhelp.obj - 0001:00044360 ?Cls@TXHD@@UAEJXZ 00445360 f kidhelp.obj - 0001:00044390 ??0TXHD@@IAE@PAVRCA@@PAVDOCB@@K@Z 00445390 f kidhelp.obj - 0001:00044480 ??1TXHD@@MAE@XZ 00445480 f kidhelp.obj - 0001:000444f0 ?AssertValid@TXHD@@QAEXK@Z 004454f0 f kidhelp.obj - 0001:000445a0 ?MarkMem@TXHD@@UAEXXZ 004455a0 f kidhelp.obj - 0001:00044600 ?_FReadChunk@TXHD@@MAEHPAVCFL@@KKPAVSTRG@@K@Z 00445600 f kidhelp.obj - 0001:00044ae0 ?_FOpenArg@TXHD@@MAEHJEFF@Z 00445ae0 f kidhelp.obj - 0001:00044d30 ?FSaveToChunk@TXHD@@UAEHPAVCFL@@PAUCKI@@H@Z 00445d30 f kidhelp.obj - 0001:00044f50 ?_FGetObjectRc@TXHD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00445f50 f kidhelp.obj - 0001:00045270 ?_FDrawObject@TXHD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00446270 f kidhelp.obj - 0001:00045680 ?FInsertPicture@TXHD@@QAEHKPAXJJJPAUCHP@@K@Z 00446680 f kidhelp.obj - 0001:000457e0 ?FInsertButton@TXHD@@QAEHKKPAXJJJPAUCHP@@K@Z 004467e0 f kidhelp.obj - 0001:00045960 ?FGroupText@TXHD@@QAEHJJEKPAVSTN@@@Z 00446960 f kidhelp.obj - 0001:00045c00 ?FGrouped@TXHD@@QAEHJPAJ0PAEPAKPAVSTN@@@Z 00446c00 f kidhelp.obj - 0001:00045e60 ?GetHtop@TXHD@@QAEXPAUHTOP@@@Z 00446e60 f kidhelp.obj - 0001:00045ed0 ?FRead@BLCK@@QAEHPAXH@Z 00446ed0 f kidhelp.obj - 0001:00046020 ?XpCenter@RC@@QAEJXZ 00447020 f kidhelp.obj - 0001:00046060 ?YpCenter@RC@@QAEJXZ 00447060 f kidhelp.obj - 0001:000460a0 ?FDirty@DOCB@@UAEHXZ 004470a0 f kidhelp.obj - 0001:00046120 ?SetDirty@DOCB@@UAEXH@Z 00447120 f kidhelp.obj - 0001:00046170 ?_SpcpFromSprmCp@TXRD@@IAEKEJ@Z 00447170 f kidhelp.obj - 0001:000461b0 ?_CpFromSpcp@TXRD@@IAEJK@Z 004471b0 f kidhelp.obj - 0001:000461e0 ??_ETXHD@@MAEPAXI@Z 004471e0 f kidhelp.obj - 0001:000461e0 ??_GTXHD@@MAEPAXI@Z 004471e0 f kidhelp.obj - 0001:00046220 ??0CHP@@QAE@XZ 00447220 f kidhelp.obj - 0001:00046260 ?Prca@TXHD@@QAEPAVRCA@@XZ 00447260 f kidhelp.obj - 0001:00046290 ??1TXRG@@UAE@XZ 00447290 f kidhelp.obj - 0001:000463f0 ?FCmdClickedCore@GOK@@QAEHPAUCMD@@@Z 004473f0 f kidspace.obj - 0001:00046450 ??_9@$BLA@A 00447450 f kidspace.obj - 0001:00046460 ??_9@$BLI@A 00447460 f kidspace.obj - 0001:000465e0 ?FWouldBe@STRG@@SGHJ@Z 004475e0 f screxe.obj - 0001:00046620 ?FIs@STRG@@UAEHJ@Z 00447620 f screxe.obj - 0001:00046650 ?Cls@STRG@@UAEJXZ 00447650 f screxe.obj - 0001:000466c0 ??0STRG@@QAE@XZ 004476c0 f screxe.obj - 0001:00046730 ??1STRG@@UAE@XZ 00447730 f screxe.obj - 0001:000467c0 ?AssertValid@STRG@@QAEXK@Z 004477c0 f screxe.obj - 0001:00046830 ?MarkMem@STRG@@UAEXXZ 00447830 f screxe.obj - 0001:00046880 ?FPut@STRG@@QAEHJPAVSTN@@@Z 00447880 f screxe.obj - 0001:00046990 ?FGet@STRG@@QAEHJPAVSTN@@@Z 00447990 f screxe.obj - 0001:00046a80 ?_FFind@STRG@@IAEHJPAJ@Z 00447a80 f screxe.obj - 0001:00046b90 ?_FEnsureGst@STRG@@IAEHXZ 00447b90 f screxe.obj - 0001:00046c60 ??_GSTRG@@UAEPAXI@Z 00447c60 f screxe.obj - 0001:00046c60 ??_ESTRG@@UAEPAXI@Z 00447c60 f screxe.obj - 0001:00046ca0 ?FWouldBe@TXTB@@SGHJ@Z 00447ca0 f rtxt.obj - 0001:00046ce0 ?FIs@TXTB@@UAEHJ@Z 00447ce0 f rtxt.obj - 0001:00046d10 ?Cls@TXTB@@UAEJXZ 00447d10 f rtxt.obj - 0001:00046d40 ?FWouldBe@TXRD@@SGHJ@Z 00447d40 f rtxt.obj - 0001:00046d80 ?FIs@TXRD@@UAEHJ@Z 00447d80 f rtxt.obj - 0001:00046db0 ?Cls@TXRD@@UAEJXZ 00447db0 f rtxt.obj - 0001:00046de0 ?FWouldBe@TXTG@@SGHJ@Z 00447de0 f rtxt.obj - 0001:00046e20 ?FIs@TXTG@@UAEHJ@Z 00447e20 f rtxt.obj - 0001:00046e50 ?Cls@TXTG@@UAEJXZ 00447e50 f rtxt.obj - 0001:00046e80 ?FWouldBe@TXRG@@SGHJ@Z 00447e80 f rtxt.obj - 0001:00046ec0 ?FIs@TXRG@@UAEHJ@Z 00447ec0 f rtxt.obj - 0001:00046ef0 ?Cls@TXRG@@UAEJXZ 00447ef0 f rtxt.obj - 0001:00046f20 ?FWouldBe@RTUN@@SGHJ@Z 00447f20 f rtxt.obj - 0001:00046f60 ?FIs@RTUN@@UAEHJ@Z 00447f60 f rtxt.obj - 0001:00046f90 ?Cls@RTUN@@UAEJXZ 00447f90 f rtxt.obj - 0001:00046fc0 ?AssertValid@TXTB@@QAEXK@Z 00447fc0 f rtxt.obj - 0001:000471a0 ?MarkMem@TXTB@@UAEXXZ 004481a0 f rtxt.obj - 0001:00047210 ??0TXTB@@IAE@PAVDOCB@@K@Z 00448210 f rtxt.obj - 0001:00047270 ??1TXTB@@MAE@XZ 00448270 f rtxt.obj - 0001:00047300 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 00448300 f rtxt.obj - 0001:00047540 ?_FLoad@TXTB@@MAEHF@Z 00448540 f rtxt.obj - 0001:00047630 ?CpMac@TXTB@@QAEJXZ 00448630 f rtxt.obj - 0001:000476c0 ?SuspendUndo@TXTB@@UAEXXZ 004486c0 f rtxt.obj - 0001:00047710 ?ResumeUndo@TXTB@@UAEXXZ 00448710 f rtxt.obj - 0001:000477a0 ?FSetUndo@TXTB@@UAEHJJJ@Z 004487a0 f rtxt.obj - 0001:00047830 ?CancelUndo@TXTB@@UAEXXZ 00448830 f rtxt.obj - 0001:00047860 ?CommitUndo@TXTB@@UAEXXZ 00448860 f rtxt.obj - 0001:00047890 ?BumpCombineUndo@TXTB@@UAEXXZ 00448890 f rtxt.obj - 0001:000478f0 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 004488f0 f rtxt.obj - 0001:00047b40 ?HideSel@TXTB@@UAEXXZ 00448b40 f rtxt.obj - 0001:00047bc0 ?SetSel@TXTB@@UAEXJJJ@Z 00448bc0 f rtxt.obj - 0001:00047c50 ?ShowSel@TXTB@@UAEXXZ 00448c50 f rtxt.obj - 0001:00047cd0 ?_CacheRange@TXTB@@MAEXJJ@Z 00448cd0 f rtxt.obj - 0001:00047fe0 ?_InvalCache@TXTB@@MAEXJJJ@Z 00448fe0 f rtxt.obj - 0001:00048110 ?_ChFetch@TXTB@@MAEDJ@Z 00449110 f rtxt.obj - 0001:000481c0 ?FetchRgch@TXTB@@UAEXJJPAD@Z 004491c0 f rtxt.obj - 0001:000482b0 ?FMinPara@TXTB@@QAEHJ@Z 004492b0 f rtxt.obj - 0001:000483e0 ?CpMinPara@TXTB@@QAEJJ@Z 004493e0 f rtxt.obj - 0001:00048520 ?CpLimPara@TXTB@@QAEJJ@Z 00449520 f rtxt.obj - 0001:00048690 ?CpPrev@TXTB@@QAEJJH@Z 00449690 f rtxt.obj - 0001:000487a0 ?LowerRgch@@YGXPADJ@Z 004497a0 f rtxt.obj - 0001:000487c0 ?ChLower@@YGDD@Z 004497c0 f rtxt.obj - 0001:000487e0 ?CpNext@TXTB@@QAEJJH@Z 004497e0 f rtxt.obj - 0001:00048910 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 00449910 f rtxt.obj - 0001:00048a30 ?SetAcrBack@TXTB@@QAEXVACR@@K@Z 00449a30 f rtxt.obj - 0001:00048b60 ?SetDxpDef@TXTB@@UAEXJ@Z 00449b60 f rtxt.obj - 0001:00048c20 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 00449c20 f rtxt.obj - 0001:00048d50 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 00449d50 f rtxt.obj - 0001:00048f40 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 00449f40 f rtxt.obj - 0001:000490e0 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 0044a0e0 f rtxt.obj - 0001:000491c0 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 0044a1c0 f rtxt.obj - 0001:000492b0 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0044a2b0 f rtxt.obj - 0001:00049390 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 0044a390 f rtxt.obj - 0001:00049470 ?FTemp@FIL@@QAEHXZ 0044a470 f rtxt.obj - 0001:000494b0 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 0044a4b0 f rtxt.obj - 0001:000495c0 ??0TXRD@@IAE@PAVDOCB@@K@Z 0044a5c0 f rtxt.obj - 0001:00049620 ??1TXRD@@MAE@XZ 0044a620 f rtxt.obj - 0001:00049700 ?IbMac@BSF@@QAEJXZ 0044a700 f rtxt.obj - 0001:00049730 ?AssertValid@TXRD@@QAEXK@Z 0044a730 f rtxt.obj - 0001:000498d0 ?MarkMem@TXRD@@UAEXXZ 0044a8d0 f rtxt.obj - 0001:00049970 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 0044a970 f rtxt.obj - 0001:00049a50 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 0044aa50 f rtxt.obj - 0001:00049cc0 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 0044acc0 f rtxt.obj - 0001:0004a4b0 ?_FOpenArg@TXRD@@MAEHJEFF@Z 0044b4b0 f rtxt.obj - 0001:0004a690 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 0044b690 f rtxt.obj - 0001:0004a770 ?GetFni@CFL@@QAEXPAVFNI@@@Z 0044b770 f rtxt.obj - 0001:0004a7a0 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 0044b7a0 f rtxt.obj - 0001:0004a800 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 0044b800 f rtxt.obj - 0001:0004aac0 ?FSetFni@CFL@@QAEHPAVFNI@@@Z 0044bac0 f rtxt.obj - 0001:0004aaf0 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 0044baf0 f rtxt.obj - 0001:0004afd0 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 0044bfd0 f rtxt.obj - 0001:0004b030 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 0044c030 f rtxt.obj - 0001:0004b2a0 ?_SprmFromSpcp@TXRD@@IAEEK@Z 0044c2a0 f rtxt.obj - 0001:0004b2d0 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 0044c2d0 f rtxt.obj - 0001:0004b400 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 0044c400 f rtxt.obj - 0001:0004b910 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 0044c910 f rtxt.obj - 0001:0004bb70 ?_ReleaseInAg@TXRD@@IAEXJ@Z 0044cb70 f rtxt.obj - 0001:0004bc80 ?_AddRefInAg@TXRD@@IAEXJ@Z 0044cc80 f rtxt.obj - 0001:0004bd70 ?_FSprmInAg@TXRD@@KGHE@Z 0044cd70 f rtxt.obj - 0001:0004bdf0 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 0044cdf0 f rtxt.obj - 0001:0004be40 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 0044ce40 f rtxt.obj - 0001:0004be90 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 0044ce90 f rtxt.obj - 0001:0004bfc0 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 0044cfc0 f rtxt.obj - 0001:0004c0f0 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 0044d0f0 f rtxt.obj - 0001:0004c180 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 0044d180 f rtxt.obj - 0001:0004c680 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 0044d680 f rtxt.obj - 0001:0004c9f0 ?SwHighLow@@YGFEE@Z 0044d9f0 f rtxt.obj - 0001:0004ca20 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 0044da20 f rtxt.obj - 0001:0004cdb0 ?Clear@CHP@@QAEXXZ 0044ddb0 f rtxt.obj - 0001:0004cdf0 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 0044ddf0 f rtxt.obj - 0001:0004cfd0 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 0044dfd0 f rtxt.obj - 0001:0004d120 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 0044e120 f rtxt.obj - 0001:0004d390 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 0044e390 f rtxt.obj - 0001:0004d680 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 0044e680 f rtxt.obj - 0001:0004d8f0 ?FSetUndo@TXRD@@UAEHJJJ@Z 0044e8f0 f rtxt.obj - 0001:0004da00 ?CancelUndo@TXRD@@UAEXXZ 0044ea00 f rtxt.obj - 0001:0004da80 ?CommitUndo@TXRD@@UAEXXZ 0044ea80 f rtxt.obj - 0001:0004dc00 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 0044ec00 f rtxt.obj - 0001:0004ddb0 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 0044edb0 f rtxt.obj - 0001:0004de90 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 0044ee90 f rtxt.obj - 0001:0004e3e0 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 0044f3e0 f rtxt.obj - 0001:0004e670 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 0044f670 f rtxt.obj - 0001:0004e890 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 0044f890 f rtxt.obj - 0001:0004e9c0 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 0044f9c0 f rtxt.obj - 0001:0004eb10 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 0044fb10 f rtxt.obj - 0001:0004f040 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 00450040 f rtxt.obj - 0001:0004f400 ?FFetchObject@TXRD@@QAEHJPAJPAPAX0@Z 00450400 f rtxt.obj - 0001:0004f650 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 00450650 f rtxt.obj - 0001:0004f920 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 00450920 f rtxt.obj - 0001:0004fb00 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 00450b00 f rtxt.obj - 0001:0004fc50 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00450c50 f rtxt.obj - 0001:0004fd60 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00450d60 f rtxt.obj - 0001:0004fec0 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00450ec0 f rtxt.obj - 0001:0004ffb0 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 00450fb0 f rtxt.obj - 0001:000501c0 ??1RTUN@@UAE@XZ 004511c0 f rtxt.obj - 0001:00050220 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 00451220 f rtxt.obj - 0001:000505d0 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 004515d0 f rtxt.obj - 0001:00050630 ?FCombine@RTUN@@QAEHPAV1@@Z 00451630 f rtxt.obj - 0001:000508c0 ?AssertValid@RTUN@@QAEXK@Z 004518c0 f rtxt.obj - 0001:00050990 ?MarkMem@RTUN@@UAEXXZ 00451990 f rtxt.obj - 0001:00050a20 ??_ETXTB@@MAEPAXI@Z 00451a20 f rtxt.obj - 0001:00050a20 ??_GTXTB@@MAEPAXI@Z 00451a20 f rtxt.obj - 0001:00050a60 ??_ETXRD@@MAEPAXI@Z 00451a60 f rtxt.obj - 0001:00050a60 ??_GTXRD@@MAEPAXI@Z 00451a60 f rtxt.obj - 0001:00050aa0 ??0RTUN@@QAE@XZ 00451aa0 f rtxt.obj - 0001:00050ae0 ??0UNDB@@IAE@XZ 00451ae0 f rtxt.obj - 0001:00050b20 ??_EUNDB@@UAEPAXI@Z 00451b20 f rtxt.obj - 0001:00050b20 ??_GUNDB@@UAEPAXI@Z 00451b20 f rtxt.obj - 0001:00050b60 ??_ERTUN@@UAEPAXI@Z 00451b60 f rtxt.obj - 0001:00050b60 ??_GRTUN@@UAEPAXI@Z 00451b60 f rtxt.obj - 0001:00050ba0 ??1UNDB@@UAE@XZ 00451ba0 f rtxt.obj - 0001:00050bd0 ??_9@$BBBE@A 00451bd0 f rtxt.obj - 0001:00050be0 ??_9@$BBBI@A 00451be0 f rtxt.obj - 0001:00050bf0 ?FWouldBe@TRUL@@SGHJ@Z 00451bf0 f rtxt2.obj - 0001:00050c30 ?FIs@TRUL@@UAEHJ@Z 00451c30 f rtxt2.obj - 0001:00050c60 ?Cls@TRUL@@UAEJXZ 00451c60 f rtxt2.obj - 0001:00050c90 ?AssertValid@CHR@@QAEXK@Z 00451c90 f rtxt2.obj - 0001:00050d80 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 00451d80 f rtxt2.obj - 0001:00051150 ?GetNextRun@CHR@@QAEXH@Z 00452150 f rtxt2.obj - 0001:00051740 ?_FFit@CHR@@AAEHXZ 00452740 f rtxt2.obj - 0001:00051830 ?_SetToBop@CHR@@AAEXXZ 00452830 f rtxt2.obj - 0001:00051a10 ?_SkipIgnores@CHR@@AAEXXZ 00452a10 f rtxt2.obj - 0001:00051b10 ?_DoTab@CHR@@AAEXXZ 00452b10 f rtxt2.obj - 0001:00051c70 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 00452c70 f rtxt2.obj - 0001:00051d40 ??1TXTG@@MAE@XZ 00452d40 f rtxt2.obj - 0001:00051e10 ?AssertValid@TXTG@@QAEXK@Z 00452e10 f rtxt2.obj - 0001:00051f70 ?MarkMem@TXTG@@UAEXXZ 00452f70 f rtxt2.obj - 0001:00051ff0 ?_FInit@TXTG@@MAEHXZ 00452ff0 f rtxt2.obj - 0001:00052220 ?_Activate@TXTG@@MAEXH@Z 00453220 f rtxt2.obj - 0001:00052290 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 00453290 f rtxt2.obj - 0001:000525f0 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 004535f0 f rtxt2.obj - 0001:00052ae0 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00453ae0 f rtxt2.obj - 0001:00053070 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 00454070 f rtxt2.obj - 0001:000536a0 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 004546a0 f rtxt2.obj - 0001:00053cd0 ?FBreak@CHR@@QAEHXZ 00454cd0 f rtxt2.obj - 0001:00053d00 ?GetChrd@CHR@@QAEXPAUCHRD@@0@Z 00454d00 f rtxt2.obj - 0001:00053d90 ?DypAscent@CHR@@QAEJXZ 00454d90 f rtxt2.obj - 0001:00053dc0 ?DypDescent@CHR@@QAEJXZ 00454dc0 f rtxt2.obj - 0001:00053df0 ?XpBreak@CHR@@QAEJXZ 00454df0 f rtxt2.obj - 0001:00053e20 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 00454e20 f rtxt2.obj - 0001:00053f20 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00454f20 f rtxt2.obj - 0001:00054500 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 00455500 f rtxt2.obj - 0001:00054640 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00455640 f rtxt2.obj - 0001:000548a0 ?XpMin@CHR@@QAEJXZ 004558a0 f rtxt2.obj - 0001:000548d0 ?FReplace@TXTG@@UAEHPADJJJ@Z 004558d0 f rtxt2.obj - 0001:000549f0 ?InvalCp@TXTG@@UAEXJJJ@Z 004559f0 f rtxt2.obj - 0001:00054bf0 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 00455bf0 f rtxt2.obj - 0001:00054e20 ?GinDefault@GOB@@SGJXZ 00455e20 f rtxt2.obj - 0001:00054e40 ?_Scroll@TXTG@@MAEXJJJJ@Z 00455e40 f rtxt2.obj - 0001:00055410 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 00456410 f rtxt2.obj - 0001:00055440 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 00456440 f rtxt2.obj - 0001:00055570 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 00456570 f rtxt2.obj - 0001:00055670 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 00456670 f rtxt2.obj - 0001:00055ae0 ?Prgch@CHR@@QAEPADXZ 00456ae0 f rtxt2.obj - 0001:00055b10 ?CpMin@CHR@@QAEJXZ 00456b10 f rtxt2.obj - 0001:00055b40 ?FObject@CHR@@QAEHXZ 00456b40 f rtxt2.obj - 0001:00055b70 ?AcrBack@TXTB@@QAE?AVACR@@XZ 00456b70 f rtxt2.obj - 0001:00055ba0 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 00456ba0 f rtxt2.obj - 0001:00055bc0 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 00456bc0 f rtxt2.obj - 0001:00055ff0 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 00456ff0 f rtxt2.obj - 0001:00056100 ?DtsCaret@@YGKXZ 00457100 f rtxt2.obj - 0001:00056120 ?GetSel@TXTG@@UAEXPAJ0@Z 00457120 f rtxt2.obj - 0001:000561a0 ?SetSel@TXTG@@UAEXJJJ@Z 004571a0 f rtxt2.obj - 0001:000563c0 ?ShowSel@TXTG@@QAEXXZ 004573c0 f rtxt2.obj - 0001:00056730 ?HideSel@TXTG@@UAEXXZ 00457730 f rtxt2.obj - 0001:000567c0 ?_SwitchSel@TXTG@@IAEXHJ@Z 004577c0 f rtxt2.obj - 0001:000568f0 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 004578f0 f rtxt2.obj - 0001:00056a70 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 00457a70 f rtxt2.obj - 0001:00056d80 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 00457d80 f rtxt2.obj - 0001:00057870 ?_ScvMax@TXTG@@MAEJH@Z 00458870 f rtxt2.obj - 0001:000578f0 ?_DxpDoc@TXTG@@MAEJXZ 004588f0 f rtxt2.obj - 0001:00057920 ?DxpDef@TXTB@@QAEJXZ 00458920 f rtxt2.obj - 0001:00057950 ?SetDxpTab@TXTG@@UAEXJ@Z 00458950 f rtxt2.obj - 0001:000579a0 ?SetDxpDoc@TXTG@@UAEXJ@Z 004589a0 f rtxt2.obj - 0001:00057a20 ?ShowRuler@TXTG@@UAEXH@Z 00458a20 f rtxt2.obj - 0001:00057bf0 ?_DypTrul@TXTG@@MAEJXZ 00458bf0 f rtxt2.obj - 0001:00057c40 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 00458c40 f rtxt2.obj - 0001:00057c90 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 00458c90 f rtxt2.obj - 0001:00057d40 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 00458d40 f rtxt2.obj - 0001:00057d90 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 00458d90 f rtxt2.obj - 0001:00057dc0 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 00458dc0 f rtxt2.obj - 0001:00057e80 ?AssertValid@TXRG@@QAEXK@Z 00458e80 f rtxt2.obj - 0001:00057ef0 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 00458ef0 f rtxt2.obj - 0001:00057f30 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 00458f30 f rtxt2.obj - 0001:00057f70 ?SetDxpTab@TXRG@@UAEXJ@Z 00458f70 f rtxt2.obj - 0001:000580c0 ?SetSel@TXRG@@UAEXJJJ@Z 004590c0 f rtxt2.obj - 0001:000581f0 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 004591f0 f rtxt2.obj - 0001:00058300 ?_EnsureChpIns@TXRG@@IAEXXZ 00459300 f rtxt2.obj - 0001:00058390 ?FReplace@TXRG@@UAEHPADJJJ@Z 00459390 f rtxt2.obj - 0001:00058540 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 00459540 f rtxt2.obj - 0001:00058680 ?_ClearSel@TXRG@@MAEXXZ 00459680 f rtxt2.obj - 0001:000586d0 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 004596d0 f rtxt2.obj - 0001:00058980 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 00459980 f rtxt2.obj - 0001:00058c10 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 00459c10 f rtxt2.obj - 0001:00058d30 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 00459d30 f rtxt2.obj - 0001:000591e0 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 0045a1e0 f rtxt2.obj - 0001:00059260 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 0045a260 f rtxt2.obj - 0001:000592e0 ?FSetColor@TXRG@@QAEHPAVACR@@0@Z 0045a2e0 f rtxt2.obj - 0001:00059430 ?SetToClear@ACR@@QAEXXZ 0045a430 f rtxt2.obj - 0001:00059460 ?SetToInvert@ACR@@QAEXXZ 0045a460 f rtxt2.obj - 0001:00059490 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 0045a490 f rtxt2.obj - 0001:00059900 ?FEqual@STN@@QAEHPAV1@@Z 0045a900 f rtxt2.obj - 0001:00059960 ??_GTXTG@@MAEPAXI@Z 0045a960 f rtxt2.obj - 0001:00059960 ??_ETXTG@@MAEPAXI@Z 0045a960 f rtxt2.obj - 0001:000599a0 ??0CHR@@QAE@XZ 0045a9a0 f rtxt2.obj - 0001:000599d0 ??_GTXRG@@UAEPAXI@Z 0045a9d0 f rtxt2.obj - 0001:000599d0 ??_ETXRG@@UAEPAXI@Z 0045a9d0 f rtxt2.obj - 0001:00059a10 ?FWouldBe@DOCB@@SGHJ@Z 0045aa10 f docb.obj - 0001:00059a50 ?FIs@DOCB@@UAEHJ@Z 0045aa50 f docb.obj - 0001:00059a80 ?Cls@DOCB@@UAEJXZ 0045aa80 f docb.obj - 0001:00059ab0 ?FWouldBe@DTE@@SGHJ@Z 0045aab0 f docb.obj - 0001:00059af0 ?FIs@DTE@@UAEHJ@Z 0045aaf0 f docb.obj - 0001:00059b20 ?Cls@DTE@@UAEJXZ 0045ab20 f docb.obj - 0001:00059b50 ?FWouldBe@DDG@@SGHJ@Z 0045ab50 f docb.obj - 0001:00059b90 ?FIs@DDG@@UAEHJ@Z 0045ab90 f docb.obj - 0001:00059bc0 ?Cls@DDG@@UAEJXZ 0045abc0 f docb.obj - 0001:00059bf0 ?FWouldBe@DMD@@SGHJ@Z 0045abf0 f docb.obj - 0001:00059c30 ?FIs@DMD@@UAEHJ@Z 0045ac30 f docb.obj - 0001:00059c60 ?Cls@DMD@@UAEJXZ 0045ac60 f docb.obj - 0001:00059c90 ?FWouldBe@DMW@@SGHJ@Z 0045ac90 f docb.obj - 0001:00059cd0 ?FIs@DMW@@UAEHJ@Z 0045acd0 f docb.obj - 0001:00059d00 ?Cls@DMW@@UAEJXZ 0045ad00 f docb.obj - 0001:00059d30 ?FWouldBe@DSG@@SGHJ@Z 0045ad30 f docb.obj - 0001:00059d70 ?FIs@DSG@@UAEHJ@Z 0045ad70 f docb.obj - 0001:00059da0 ?Cls@DSG@@UAEJXZ 0045ada0 f docb.obj - 0001:00059dd0 ?FWouldBe@DSSP@@SGHJ@Z 0045add0 f docb.obj - 0001:00059e10 ?FIs@DSSP@@UAEHJ@Z 0045ae10 f docb.obj - 0001:00059e40 ?Cls@DSSP@@UAEJXZ 0045ae40 f docb.obj - 0001:00059e70 ?FWouldBe@DSSM@@SGHJ@Z 0045ae70 f docb.obj - 0001:00059eb0 ?FIs@DSSM@@UAEHJ@Z 0045aeb0 f docb.obj - 0001:00059ee0 ?Cls@DSSM@@UAEJXZ 0045aee0 f docb.obj - 0001:00059f10 ?FWouldBe@UNDB@@SGHJ@Z 0045af10 f docb.obj - 0001:00059f50 ?FIs@UNDB@@UAEHJ@Z 0045af50 f docb.obj - 0001:00059fa0 ?Cls@UNDB@@UAEJXZ 0045afa0 f docb.obj - 0001:00059fd0 ??0DOCB@@IAE@PAV0@K@Z 0045afd0 f docb.obj - 0001:0005a170 ?Release@DOCB@@UAEXXZ 0045b170 f docb.obj - 0001:0005a380 ?CloseAllDdg@DOCB@@QAEXXZ 0045b380 f docb.obj - 0001:0005a440 ??1DOCB@@MAE@XZ 0045b440 f docb.obj - 0001:0005a690 ?FQueryCloseAll@DOCB@@SGHK@Z 0045b690 f docb.obj - 0001:0005a700 ?FQueryClose@DOCB@@UAEHK@Z 0045b700 f docb.obj - 0001:0005a830 ?_TQuerySave@DOCB@@MAEHH@Z 0045b830 f docb.obj - 0001:0005a8a0 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 0045b8a0 f docb.obj - 0001:0005a9e0 ?FInternal@DOCB@@QAEHXZ 0045b9e0 f docb.obj - 0001:0005aa70 ?SetInternal@DOCB@@QAEXH@Z 0045ba70 f docb.obj - 0001:0005aae0 ?PdocbFromFni@DOCB@@SGPAV1@PAVFNI@@@Z 0045bae0 f docb.obj - 0001:0005ac10 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 0045bc10 f docb.obj - 0001:0005ac40 ?FSave@DOCB@@UAEHJ@Z 0045bc40 f docb.obj - 0001:0005ae10 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 0045be10 f docb.obj - 0001:0005ae40 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 0045be40 f docb.obj - 0001:0005ae80 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 0045be80 f docb.obj - 0001:0005afa0 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 0045bfa0 f docb.obj - 0001:0005b090 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 0045c090 f docb.obj - 0001:0005b140 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 0045c140 f docb.obj - 0001:0005b1d0 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 0045c1d0 f docb.obj - 0001:0005b2d0 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 0045c2d0 f docb.obj - 0001:0005b350 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 0045c350 f docb.obj - 0001:0005b3b0 ?ActivateDmd@DOCB@@QAEXXZ 0045c3b0 f docb.obj - 0001:0005b460 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 0045c460 f docb.obj - 0001:0005b4c0 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 0045c4c0 f docb.obj - 0001:0005b520 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 0045c520 f docb.obj - 0001:0005b580 ?GetName@DOCB@@UAEXPAVSTN@@@Z 0045c580 f docb.obj - 0001:0005b6e0 ?UpdateName@DOCB@@UAEXXZ 0045c6e0 f docb.obj - 0001:0005b800 ?FUndo@DOCB@@UAEHXZ 0045c800 f docb.obj - 0001:0005b8b0 ?FRedo@DOCB@@UAEHXZ 0045c8b0 f docb.obj - 0001:0005b970 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 0045c970 f docb.obj - 0001:0005bb40 ?ClearUndo@DOCB@@UAEXXZ 0045cb40 f docb.obj - 0001:0005bbc0 ?ClearRedo@DOCB@@UAEXXZ 0045cbc0 f docb.obj - 0001:0005bc70 ?SetCundbMax@DOCB@@UAEXJ@Z 0045cc70 f docb.obj - 0001:0005be60 ?CundbMax@DOCB@@UAEJXZ 0045ce60 f docb.obj - 0001:0005beb0 ?CundbUndo@DOCB@@UAEJXZ 0045ceb0 f docb.obj - 0001:0005bf00 ?CundbRedo@DOCB@@UAEJXZ 0045cf00 f docb.obj - 0001:0005bf50 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 0045cf50 f docb.obj - 0001:0005c000 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 0045d000 f docb.obj - 0001:0005c070 ?AssertValid@DOCB@@QAEXK@Z 0045d070 f docb.obj - 0001:0005c2b0 ?MarkMem@DOCB@@UAEXXZ 0045d2b0 f docb.obj - 0001:0005c3a0 ??0DTE@@QAE@XZ 0045d3a0 f docb.obj - 0001:0005c3e0 ?Init@DTE@@QAEXPAVDOCB@@@Z 0045d3e0 f docb.obj - 0001:0005c440 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 0045d440 f docb.obj - 0001:0005c5e0 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 0045d5e0 f docb.obj - 0001:0005c700 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 0045d700 f docb.obj - 0001:0005c7f0 ??1DDG@@MAE@XZ 0045d7f0 f docb.obj - 0001:0005c8e0 ?_FInit@DDG@@MAEHXZ 0045d8e0 f docb.obj - 0001:0005c940 ?Pdmd@DDG@@QAEPAVDMD@@XZ 0045d940 f docb.obj - 0001:0005c970 ?Activate@DDG@@UAEXH@Z 0045d970 f docb.obj - 0001:0005cad0 ?_Activate@DDG@@MAEXH@Z 0045dad0 f docb.obj - 0001:0005cb30 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 0045db30 f docb.obj - 0001:0005cd70 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 0045dd70 f docb.obj - 0001:0005cf00 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 0045df00 f docb.obj - 0001:0005cf30 ?_ClearSel@DDG@@MAEXXZ 0045df30 f docb.obj - 0001:0005cf50 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 0045df50 f docb.obj - 0001:0005cf80 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 0045df80 f docb.obj - 0001:0005cfe0 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 0045dfe0 f docb.obj - 0001:0005d020 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 0045e020 f docb.obj - 0001:0005d080 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 0045e080 f docb.obj - 0001:0005d100 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 0045e100 f docb.obj - 0001:0005d140 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 0045e140 f docb.obj - 0001:0005d260 ?_Scroll@DDG@@MAEXJJJJ@Z 0045e260 f docb.obj - 0001:0005d290 ?_SetScrollValues@DDG@@MAEXXZ 0045e290 f docb.obj - 0001:0005d350 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 0045e350 f docb.obj - 0001:0005d390 ?_ScvMax@DDG@@MAEJH@Z 0045e390 f docb.obj - 0001:0005d3c0 ?_NewRc@DDG@@MAEXXZ 0045e3c0 f docb.obj - 0001:0005d3f0 ?AssertValid@DDG@@QAEXK@Z 0045e3f0 f docb.obj - 0001:0005d5a0 ?MarkMem@DDG@@UAEXXZ 0045e5a0 f docb.obj - 0001:0005d5f0 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 0045e5f0 f docb.obj - 0001:0005d880 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 0045e880 f docb.obj - 0001:0005d920 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 0045e920 f docb.obj - 0001:0005da20 ?_ActivateHwnd@DMD@@MAEXH@Z 0045ea20 f docb.obj - 0001:0005dab0 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 0045eab0 f docb.obj - 0001:0005db10 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 0045eb10 f docb.obj - 0001:0005dc10 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 0045ec10 f docb.obj - 0001:0005dcf0 ?Release@DMW@@UAEXXZ 0045ecf0 f docb.obj - 0001:0005dde0 ?_FInit@DMW@@MAEHXZ 0045ede0 f docb.obj - 0001:0005def0 ?_NewRc@DMW@@MAEXXZ 0045eef0 f docb.obj - 0001:0005df50 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 0045ef50 f docb.obj - 0001:0005e3b0 ?Cddg@DOCB@@QAEJXZ 0045f3b0 f docb.obj - 0001:0005e3f0 ?FActive@DDG@@QAEHXZ 0045f3f0 f docb.obj - 0001:0005e420 ?_Qdsed@DMW@@IAEPAUDSED@1@J@Z 0045f420 f docb.obj - 0001:0005e450 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 0045f450 f docb.obj - 0001:0005e4b0 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 0045f4b0 f docb.obj - 0001:0005e7e0 ?_IdsedEdge@DMW@@IAEJJJ@Z 0045f7e0 f docb.obj - 0001:0005e910 ?_IdsedNext@DMW@@IAEJJJ@Z 0045f910 f docb.obj - 0001:0005ea00 ?_Layout@DMW@@IAEXJ@Z 0045fa00 f docb.obj - 0001:0005ef70 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 0045ff70 f docb.obj - 0001:0005f050 ?Cdsg@DMW@@QAEJXZ 00460050 f docb.obj - 0001:0005f120 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 00460120 f docb.obj - 0001:0005f380 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 00460380 f docb.obj - 0001:0005f4f0 ?TVert@DMW@@QAEHPAVDSG@@@Z 004604f0 f docb.obj - 0001:0005f600 ?AssertValid@DMW@@QAEXK@Z 00460600 f docb.obj - 0001:0005fc60 ?MarkMem@DMW@@UAEXXZ 00460c60 f docb.obj - 0001:0005fcb0 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 00460cb0 f docb.obj - 0001:0005fe80 ??0DSG@@IAE@PAUGCB@@@Z 00460e80 f docb.obj - 0001:0005fef0 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 00460ef0 f docb.obj - 0001:0005ff20 ??1DSG@@MAE@XZ 00460f20 f docb.obj - 0001:0005ff70 ?Pdmw@DSG@@QAEPAVDMW@@XZ 00460f70 f docb.obj - 0001:0005ffa0 ?_FInit@DSG@@MAEHPAV1@KJ@Z 00460fa0 f docb.obj - 0001:00060230 ?Pdocb@DMW@@QAEPAVDOCB@@XZ 00461230 f docb.obj - 0001:00060260 ?DypNormal@DSSP@@SGJXZ 00461260 f docb.obj - 0001:00060280 ?DxpNormal@DSSP@@SGJXZ 00461280 f docb.obj - 0001:000602a0 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 004612a0 f docb.obj - 0001:000603f0 ?Split@DSG@@UAEXKJ@Z 004613f0 f docb.obj - 0001:000604b0 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 004614b0 f docb.obj - 0001:00060530 ?AssertValid@DSG@@QAEXK@Z 00461530 f docb.obj - 0001:000605d0 ??0DSSP@@IAE@PAUGCB@@@Z 004615d0 f docb.obj - 0001:00060630 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 00461630 f docb.obj - 0001:000607c0 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 004617c0 f docb.obj - 0001:00060830 ?MouseDown@DSSP@@UAEXJJJK@Z 00461830 f docb.obj - 0001:00060a20 ??0DSSM@@IAE@PAUGCB@@@Z 00461a20 f docb.obj - 0001:00060a60 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 00461a60 f docb.obj - 0001:00060b70 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 00461b70 f docb.obj - 0001:00060c40 ?MouseDown@DSSM@@UAEXJJJK@Z 00461c40 f docb.obj - 0001:00060f00 ?TVert@DSSM@@QAEHXZ 00461f00 f docb.obj - 0001:00060f60 ??_EDOCB@@MAEPAXI@Z 00461f60 f docb.obj - 0001:00060f60 ??_GDOCB@@MAEPAXI@Z 00461f60 f docb.obj - 0001:00060fa0 ??1DTE@@UAE@XZ 00461fa0 f docb.obj - 0001:00060fd0 ??_GDTE@@UAEPAXI@Z 00461fd0 f docb.obj - 0001:00060fd0 ??_EDTE@@UAEPAXI@Z 00461fd0 f docb.obj - 0001:00061010 ??_GDDG@@MAEPAXI@Z 00462010 f docb.obj - 0001:00061010 ??_EDDG@@MAEPAXI@Z 00462010 f docb.obj - 0001:00061050 ??_GDMD@@UAEPAXI@Z 00462050 f docb.obj - 0001:00061050 ??_EDMD@@UAEPAXI@Z 00462050 f docb.obj - 0001:00061090 ??_EDMW@@UAEPAXI@Z 00462090 f docb.obj - 0001:00061090 ??_GDMW@@UAEPAXI@Z 00462090 f docb.obj - 0001:000610d0 ??0DSED@DMW@@QAE@XZ 004620d0 f docb.obj - 0001:00061100 ??_GDSG@@MAEPAXI@Z 00462100 f docb.obj - 0001:00061100 ??_EDSG@@MAEPAXI@Z 00462100 f docb.obj - 0001:00061140 ??_EDSSP@@UAEPAXI@Z 00462140 f docb.obj - 0001:00061140 ??_GDSSP@@UAEPAXI@Z 00462140 f docb.obj - 0001:00061180 ??_GDSSM@@UAEPAXI@Z 00462180 f docb.obj - 0001:00061180 ??_EDSSM@@UAEPAXI@Z 00462180 f docb.obj - 0001:000611c0 ??1DMD@@UAE@XZ 004621c0 f docb.obj - 0001:000611f0 ??1DMW@@UAE@XZ 004621f0 f docb.obj - 0001:00061220 ??1DSSP@@UAE@XZ 00462220 f docb.obj - 0001:00061250 ??1DSSM@@UAE@XZ 00462250 f docb.obj - 0001:00061280 ??_9@$BIM@A 00462280 f docb.obj - 0001:00061290 ??_9@$BLE@A 00462290 f docb.obj - 0001:000612a0 ??_9@$BLM@A 004622a0 f docb.obj - 0001:000612b0 ?FWouldBe@CLIP@@SGHJ@Z 004622b0 f clip.obj - 0001:000612f0 ?FIs@CLIP@@UAEHJ@Z 004622f0 f clip.obj - 0001:00061320 ?Cls@CLIP@@UAEJXZ 00462320 f clip.obj - 0001:00061370 ??0CLIP@@QAE@XZ 00462370 f clip.obj - 0001:000613e0 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 004623e0 f clip.obj - 0001:00061490 ?Show@CLIP@@QAEXXZ 00462490 f clip.obj - 0001:00061530 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 00462530 f clip.obj - 0001:00061760 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 00462760 f clip.obj - 0001:00061850 ?Import@CLIP@@QAEXXZ 00462850 f clip.obj - 0001:000618d0 ?_EnsureDoc@CLIP@@IAEXXZ 004628d0 f clip.obj - 0001:00061ae0 ?_ImportCur@CLIP@@IAEXXZ 00462ae0 f clip.obj - 0001:00061ca0 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 00462ca0 f clip.obj - 0001:00061e70 ?FInitExport@CLIP@@QAEHXZ 00462e70 f clip.obj - 0001:00061f80 ?PvExport@CLIP@@QAEPAXJJ@Z 00462f80 f clip.obj - 0001:000620a0 ?EndExport@CLIP@@QAEXXZ 004630a0 f clip.obj - 0001:00062120 ?_ExportCur@CLIP@@IAEXXZ 00463120 f clip.obj - 0001:000621f0 ?AssertValid@CLIP@@QAEXK@Z 004631f0 f clip.obj - 0001:000622c0 ?MarkMem@CLIP@@UAEXXZ 004632c0 f clip.obj - 0001:00062380 ??1CLIP@@UAE@XZ 00463380 f clip.obj - 0001:000623b0 ??_ECLIP@@UAEPAXI@Z 004633b0 f clip.obj - 0001:000623b0 ??_GCLIP@@UAEPAXI@Z 004633b0 f clip.obj - 0001:00062500 ?FWouldBe@BSF@@SGHJ@Z 00463500 f stream.obj - 0001:00062540 ?FIs@BSF@@UAEHJ@Z 00463540 f stream.obj - 0001:00062570 ?Cls@BSF@@UAEJXZ 00463570 f stream.obj - 0001:000625c0 ??0BSF@@QAE@XZ 004635c0 f stream.obj - 0001:00062630 ??1BSF@@UAE@XZ 00463630 f stream.obj - 0001:00062720 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00463720 f stream.obj - 0001:00062840 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00463840 f stream.obj - 0001:00062ab0 ?_AttemptMerge@BSF@@IAEXJJ@Z 00463ab0 f stream.obj - 0001:00062ca0 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 00463ca0 f stream.obj - 0001:00063230 ?FReplace@BSF@@QAEHPAXJJJ@Z 00464230 f stream.obj - 0001:000637f0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 004647f0 f stream.obj - 0001:00063b40 ?FetchRgb@BSF@@QAEXJJPAX@Z 00464b40 f stream.obj - 0001:00063d40 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 00464d40 f stream.obj - 0001:00064260 ?FReadHq@FLO@@QAEHPAPAX@Z 00465260 f stream.obj - 0001:000642a0 ?AssertValid@BSF@@QAEXK@Z 004652a0 f stream.obj - 0001:00064520 ?MarkMem@BSF@@UAEXXZ 00465520 f stream.obj - 0001:000645b0 ??_EBSF@@UAEPAXI@Z 004655b0 f stream.obj - 0001:000645b0 ??_GBSF@@UAEPAXI@Z 004655b0 f stream.obj - 0001:000645f0 ?FWouldBe@CFL@@SGHJ@Z 004655f0 f chunk.obj - 0001:00064630 ?FIs@CFL@@UAEHJ@Z 00465630 f chunk.obj - 0001:00064660 ?Cls@CFL@@UAEJXZ 00465660 f chunk.obj - 0001:00064690 ?FWouldBe@CGE@@SGHJ@Z 00465690 f chunk.obj - 0001:000646d0 ?FIs@CGE@@UAEHJ@Z 004656d0 f chunk.obj - 0001:00064700 ?Cls@CGE@@UAEJXZ 00465700 f chunk.obj - 0001:00064730 ??0CFL@@AAE@XZ 00465730 f chunk.obj - 0001:000647a0 ??1CFL@@EAE@XZ 004657a0 f chunk.obj - 0001:00064930 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00465930 f chunk.obj - 0001:00064bc0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00465bc0 f chunk.obj - 0001:00064c10 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00465c10 f chunk.obj - 0001:00064e80 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00465e80 f chunk.obj - 0001:00064fa0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00465fa0 f chunk.obj - 0001:000650d0 ?PcflReadForestFromFlo@CFL@@SGPAV1@PAUFLO@@H@Z 004660d0 f chunk.obj - 0001:00065640 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 00466640 f chunk.obj - 0001:00065690 ?SetCb@CRPSM@@QAEXJ@Z 00466690 f chunk.obj - 0001:000656d0 ?FForest@CFL@@QAEHKK@Z 004666d0 f chunk.obj - 0001:000657e0 ?Grfcrp@CRPSM@@QAEKK@Z 004667e0 f chunk.obj - 0001:00065810 ?ClearGrfcrp@CRPSM@@QAEXK@Z 00466810 f chunk.obj - 0001:00065840 ?SetGrfcrp@CRPSM@@QAEXK@Z 00466840 f chunk.obj - 0001:00065870 ?PcflReadForest@CFL@@QAEPAV1@KKH@Z 00466870 f chunk.obj - 0001:00065960 ?FSetGrfcfl@CFL@@QAEHKK@Z 00466960 f chunk.obj - 0001:00065ab0 ?Release@CFL@@UAEXXZ 00466ab0 f chunk.obj - 0001:00065b90 ?AssertValid@CFL@@QAEXK@Z 00466b90 f chunk.obj - 0001:00066960 ?CbRgch@CRPSM@@QAEJJ@Z 00467960 f chunk.obj - 0001:00066990 ?BvRgch@CRPSM@@QAEJXZ 00467990 f chunk.obj - 0001:000669c0 ?Cb@CRPSM@@QAEJXZ 004679c0 f chunk.obj - 0001:000669f0 ?SuspendAssertValid@@YGXXZ 004679f0 f chunk.obj - 0001:00066a40 ?ResumeAssertValid@@YGXXZ 00467a40 f chunk.obj - 0001:00066a70 ?ElError@FIL@@QAEJXZ 00467a70 f chunk.obj - 0001:00066aa0 ?GrffilCur@FIL@@QAEKXZ 00467aa0 f chunk.obj - 0001:00066ad0 ?MarkMem@CFL@@UAEXXZ 00467ad0 f chunk.obj - 0001:00066ba0 ?_TValidIndex@CFL@@AAEHXZ 00467ba0 f chunk.obj - 0001:000670d0 ?_FReadIndex@CFL@@AAEHXZ 004680d0 f chunk.obj - 0001:00067de0 ?BvRgch@CRPBG@@QAEJXZ 00468de0 f chunk.obj - 0001:00067e10 ?CbRgch@CRPBG@@QAEJJ@Z 00468e10 f chunk.obj - 0001:00067e40 ?Grfcrp@CRPBG@@QAEKK@Z 00468e40 f chunk.obj - 0001:00067e70 ?ClearGrfcrp@CRPBG@@QAEXK@Z 00468e70 f chunk.obj - 0001:00067ea0 ?SetGrfcrp@CRPBG@@QAEXK@Z 00468ea0 f chunk.obj - 0001:00067ed0 ?Cb@CRPBG@@QAEJXZ 00468ed0 f chunk.obj - 0001:00067f00 ?_ReadFreeMap@CFL@@AAEXXZ 00468f00 f chunk.obj - 0001:000680f0 ?FSave@CFL@@QAEHKPAVFNI@@@Z 004690f0 f chunk.obj - 0001:00068940 ?_FWriteIndex@CFL@@AAEHK@Z 00469940 f chunk.obj - 0001:00068ca0 ?FSaveACopy@CFL@@QAEHKPAVFNI@@@Z 00469ca0 f chunk.obj - 0001:00068f70 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00469f70 f chunk.obj - 0001:000690f0 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0046a0f0 f chunk.obj - 0001:00069240 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0046a240 f chunk.obj - 0001:00069320 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0046a320 f chunk.obj - 0001:000693f0 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 0046a3f0 f chunk.obj - 0001:000694a0 ?SetPacked@CFL@@QAEXKKH@Z 0046a4a0 f chunk.obj - 0001:000695e0 ?FPacked@CFL@@QAEHKK@Z 0046a5e0 f chunk.obj - 0001:000696f0 ?_FCreateExtra@CFL@@AAEHXZ 0046a6f0 f chunk.obj - 0001:000697d0 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0046a7d0 f chunk.obj - 0001:00069b10 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0046ab10 f chunk.obj - 0001:00069cb0 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 0046acb0 f chunk.obj - 0001:00069dc0 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 0046adc0 f chunk.obj - 0001:00069f10 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 0046af10 f chunk.obj - 0001:0006a0a0 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 0046b0a0 f chunk.obj - 0001:0006a1d0 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 0046b1d0 f chunk.obj - 0001:0006a400 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 0046b400 f chunk.obj - 0001:0006a4a0 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 0046b4a0 f chunk.obj - 0001:0006a5a0 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 0046b5a0 f chunk.obj - 0001:0006aaa0 ?FWrite@FLO@@QAEHPAX@Z 0046baa0 f chunk.obj - 0001:0006aae0 ?Move@CFL@@QAEXKKKK@Z 0046bae0 f chunk.obj - 0001:0006adf0 ?Delete@CFL@@QAEXKK@Z 0046bdf0 f chunk.obj - 0001:0006b100 ?SetLoner@CFL@@QAEXKKH@Z 0046c100 f chunk.obj - 0001:0006b1f0 ?CckiRef@CFL@@QAEJKK@Z 0046c1f0 f chunk.obj - 0001:0006b2b0 ?TIsDescendent@CFL@@QAEHKKKK@Z 0046c2b0 f chunk.obj - 0001:0006b3d0 ?DeleteChild@CFL@@QAEXKKKKK@Z 0046c3d0 f chunk.obj - 0001:0006b560 ?_FDecRefCount@CFL@@AAEHJ@Z 0046c560 f chunk.obj - 0001:0006b640 ?_DeleteCore@CFL@@AAEXJ@Z 0046c640 f chunk.obj - 0001:0006b700 ?_FreeFpCb@CFL@@AAEXHJJ@Z 0046c700 f chunk.obj - 0001:0006bcc0 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 0046ccc0 f chunk.obj - 0001:0006bdf0 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 0046cdf0 f chunk.obj - 0001:0006bf90 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 0046cf90 f chunk.obj - 0001:0006c0a0 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 0046d0a0 f chunk.obj - 0001:0006c220 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 0046d220 f chunk.obj - 0001:0006c370 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 0046d370 f chunk.obj - 0001:0006c610 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 0046d610 f chunk.obj - 0001:0006c790 ?FGetIcki@CFL@@QAEHKKPAJ@Z 0046d790 f chunk.obj - 0001:0006c800 ?CckiCtg@CFL@@QAEJK@Z 0046d800 f chunk.obj - 0001:0006c8b0 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 0046d8b0 f chunk.obj - 0001:0006ca90 ?Ckid@CFL@@QAEJKK@Z 0046da90 f chunk.obj - 0001:0006cb50 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 0046db50 f chunk.obj - 0001:0006cd30 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 0046dd30 f chunk.obj - 0001:0006cde0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 0046dde0 f chunk.obj - 0001:0006d020 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 0046e020 f chunk.obj - 0001:0006d200 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 0046e200 f chunk.obj - 0001:0006d3c0 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 0046e3c0 f chunk.obj - 0001:0006d4c0 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 0046e4c0 f chunk.obj - 0001:0006dd80 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 0046ed80 f chunk.obj - 0001:0006e130 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 0046f130 f chunk.obj - 0001:0006e250 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 0046f250 f chunk.obj - 0001:0006e290 ?FClone@CFL@@QAEHKKPAV1@PAK@Z 0046f290 f chunk.obj - 0001:0006e2d0 ?_Rti@CFL@@AAEJKK@Z 0046f2d0 f chunk.obj - 0001:0006e340 ?_FSetRti@CFL@@AAEHKKJ@Z 0046f340 f chunk.obj - 0001:0006e460 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 0046f460 f chunk.obj - 0001:0006e620 ??0CGE@@QAE@XZ 0046f620 f chunk.obj - 0001:0006e6a0 ??1CGE@@UAE@XZ 0046f6a0 f chunk.obj - 0001:0006e730 ?AssertValid@CGE@@QAEXK@Z 0046f730 f chunk.obj - 0001:0006e860 ?MarkMem@CGE@@UAEXXZ 0046f860 f chunk.obj - 0001:0006e8d0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 0046f8d0 f chunk.obj - 0001:0006ea20 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 0046fa20 f chunk.obj - 0001:0006ee60 ??_ECFL@@EAEPAXI@Z 0046fe60 f chunk.obj - 0001:0006ee60 ??_GCFL@@EAEPAXI@Z 0046fe60 f chunk.obj - 0001:0006eea0 ??_GCGE@@UAEPAXI@Z 0046fea0 f chunk.obj - 0001:0006eea0 ??_ECGE@@UAEPAXI@Z 0046fea0 f chunk.obj - 0001:0006eee0 ?FWouldBe@CODM@@SGHJ@Z 0046fee0 f codec.obj - 0001:0006ef20 ?FIs@CODM@@UAEHJ@Z 0046ff20 f codec.obj - 0001:0006ef50 ?Cls@CODM@@UAEJXZ 0046ff50 f codec.obj - 0001:0006ef80 ?FWouldBe@CODC@@SGHJ@Z 0046ff80 f codec.obj - 0001:0006efc0 ?FIs@CODC@@UAEHJ@Z 0046ffc0 f codec.obj - 0001:0006eff0 ?Cls@CODC@@UAEJXZ 0046fff0 f codec.obj - 0001:0006f020 ??0CODM@@QAE@PAVCODC@@J@Z 00470020 f codec.obj - 0001:0006f120 ??1CODM@@UAE@XZ 00470120 f codec.obj - 0001:0006f240 ?AssertValid@CODM@@QAEXK@Z 00470240 f codec.obj - 0001:0006f310 ?MarkMem@CODM@@UAEXXZ 00470310 f codec.obj - 0001:0006f400 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00470400 f codec.obj - 0001:0006f510 ?FCanDo@CODM@@UAEHJH@Z 00470510 f codec.obj - 0001:0006f580 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00470580 f codec.obj - 0001:0006f6b0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 004706b0 f codec.obj - 0001:0006f7f0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004707f0 f codec.obj - 0001:0006f9e0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 004709e0 f codec.obj - 0001:0006fd10 ??_ECODM@@UAEPAXI@Z 00470d10 f codec.obj - 0001:0006fd10 ??_GCODM@@UAEPAXI@Z 00470d10 f codec.obj - 0001:0006fd50 ?FWouldBe@KCDC@@SGHJ@Z 00470d50 f codkauai.obj - 0001:0006fd90 ?FIs@KCDC@@UAEHJ@Z 00470d90 f codkauai.obj - 0001:0006fdc0 ?Cls@KCDC@@UAEJXZ 00470dc0 f codkauai.obj - 0001:0006fdf0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00470df0 f codkauai.obj - 0001:0006ff50 ?Set@BITA@@QAEXPAXJ@Z 00470f50 f codkauai.obj - 0001:0006ffb0 ?FWriteBits@BITA@@QAEHKJ@Z 00470fb0 f codkauai.obj - 0001:00070150 ?FWriteLogEncoded@BITA@@QAEHK@Z 00471150 f codkauai.obj - 0001:00070240 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00471240 f codkauai.obj - 0001:00070a00 ?Ibit@BITA@@QAEJXZ 00471a00 f codkauai.obj - 0001:00070a30 ?Ib@BITA@@QAEJXZ 00471a30 f codkauai.obj - 0001:00070a60 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00471a60 f codkauai.obj - 0001:00074740 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00475740 f codkauai.obj - 0001:00075060 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00476060 f codkauai.obj - 0001:00077850 ?FWouldBe@BACO@@SGHJ@Z 00478850 f crf.obj - 0001:00077890 ?FIs@BACO@@UAEHJ@Z 00478890 f crf.obj - 0001:000778c0 ?Cls@BACO@@UAEJXZ 004788c0 f crf.obj - 0001:000778f0 ?FWouldBe@RCA@@SGHJ@Z 004788f0 f crf.obj - 0001:00077930 ?FIs@RCA@@UAEHJ@Z 00478930 f crf.obj - 0001:00077960 ?Cls@RCA@@UAEJXZ 00478960 f crf.obj - 0001:00077990 ?FWouldBe@CRF@@SGHJ@Z 00478990 f crf.obj - 0001:000779d0 ?FIs@CRF@@UAEHJ@Z 004789d0 f crf.obj - 0001:00077a00 ?Cls@CRF@@UAEJXZ 00478a00 f crf.obj - 0001:00077a30 ?FWouldBe@CRM@@SGHJ@Z 00478a30 f crf.obj - 0001:00077a70 ?FIs@CRM@@UAEHJ@Z 00478a70 f crf.obj - 0001:00077aa0 ?Cls@CRM@@UAEJXZ 00478aa0 f crf.obj - 0001:00077ad0 ??0BACO@@IAE@XZ 00478ad0 f crf.obj - 0001:00077b50 ??1BACO@@MAE@XZ 00478b50 f crf.obj - 0001:00077c20 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00478c20 f crf.obj - 0001:00077d10 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00478d10 f crf.obj - 0001:00077d80 ?CbOnFile@BACO@@UAEJXZ 00478d80 f crf.obj - 0001:00077df0 ?AssertValid@BACO@@QAEXK@Z 00478df0 f crf.obj - 0001:00077e80 ?MarkMem@BACO@@UAEXXZ 00478e80 f crf.obj - 0001:00077ef0 ?Release@BACO@@UAEXXZ 00478ef0 f crf.obj - 0001:00078050 ?Detach@BACO@@UAEXXZ 00479050 f crf.obj - 0001:00078180 ?SetCrep@BACO@@UAEXJ@Z 00479180 f crf.obj - 0001:00078200 ??0CRF@@IAE@PAVCFL@@J@Z 00479200 f crf.obj - 0001:000782f0 ??1CRF@@UAE@XZ 004792f0 f crf.obj - 0001:00078450 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 00479450 f crf.obj - 0001:000785a0 ?CactRef@BASE@@QAEJXZ 004795a0 f crf.obj - 0001:000785d0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 004795d0 f crf.obj - 0001:00078a70 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 00479a70 f crf.obj - 0001:00078e50 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00479e50 f crf.obj - 0001:00078fa0 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00479fa0 f crf.obj - 0001:000790f0 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 0047a0f0 f crf.obj - 0001:00079190 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 0047a190 f crf.obj - 0001:00079350 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 0047a350 f crf.obj - 0001:00079540 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 0047a540 f crf.obj - 0001:00079710 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 0047a710 f crf.obj - 0001:00079a90 ?_FPurgeCb@CRF@@IAEHJJ@Z 0047aa90 f crf.obj - 0001:00079d40 ?AssertValid@CRF@@QAEXK@Z 0047ad40 f crf.obj - 0001:00079e70 ?MarkMem@CRF@@UAEXXZ 0047ae70 f crf.obj - 0001:0007a000 ??1CRM@@UAE@XZ 0047b000 f crf.obj - 0001:0007a150 ?PcrmNew@CRM@@SGPAV1@J@Z 0047b150 f crf.obj - 0001:0007a270 ?TLoad@CRM@@UAEHKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 0047b270 f crf.obj - 0001:0007a3c0 ?PbacoFetch@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 0047b3c0 f crf.obj - 0001:0007a580 ?PbacoFind@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 0047b580 f crf.obj - 0001:0007a640 ?FSetCrep@CRM@@UAEHJKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 0047b640 f crf.obj - 0001:0007a790 ?PcrfFindChunk@CRM@@UAEPAVCRF@@KKK@Z 0047b790 f crf.obj - 0001:0007a8d0 ??0CRM@@IAE@XZ 0047b8d0 f crf.obj - 0001:0007a910 ?FAddCfl@CRM@@QAEHPAVCFL@@JPAJ@Z 0047b910 f crf.obj - 0001:0007aa60 ?PcrfGet@CRM@@QAEPAVCRF@@J@Z 0047ba60 f crf.obj - 0001:0007ab50 ?AssertValid@CRM@@QAEXK@Z 0047bb50 f crf.obj - 0001:0007abf0 ?MarkMem@CRM@@UAEXXZ 0047bbf0 f crf.obj - 0001:0007ad30 ??_GCRM@@UAEPAXI@Z 0047bd30 f crf.obj - 0001:0007ad30 ??_ECRM@@UAEPAXI@Z 0047bd30 f crf.obj - 0001:0007ad70 ??0RCA@@QAE@XZ 0047bd70 f crf.obj - 0001:0007adb0 ??1RCA@@UAE@XZ 0047bdb0 f crf.obj - 0001:0007ade0 ??_EBACO@@MAEPAXI@Z 0047bde0 f crf.obj - 0001:0007ade0 ??_GBACO@@MAEPAXI@Z 0047bde0 f crf.obj - 0001:0007ae20 ??_ECRF@@UAEPAXI@Z 0047be20 f crf.obj - 0001:0007ae20 ??_GCRF@@UAEPAXI@Z 0047be20 f crf.obj - 0001:0007ae60 ??_GRCA@@UAEPAXI@Z 0047be60 f crf.obj - 0001:0007ae60 ??_ERCA@@UAEPAXI@Z 0047be60 f crf.obj - 0001:0007aec0 ?FWouldBe@FIL@@SGHJ@Z 0047bec0 f file.obj - 0001:0007af00 ?FIs@FIL@@UAEHJ@Z 0047bf00 f file.obj - 0001:0007af30 ?Cls@FIL@@UAEJXZ 0047bf30 f file.obj - 0001:0007af60 ?FWouldBe@BLCK@@SGHJ@Z 0047bf60 f file.obj - 0001:0007afa0 ?FIs@BLCK@@UAEHJ@Z 0047bfa0 f file.obj - 0001:0007afd0 ?Cls@BLCK@@UAEJXZ 0047bfd0 f file.obj - 0001:0007b000 ?FWouldBe@MSFIL@@SGHJ@Z 0047c000 f file.obj - 0001:0007b040 ?FIs@MSFIL@@UAEHJ@Z 0047c040 f file.obj - 0001:0007b070 ?Cls@MSFIL@@UAEJXZ 0047c070 f file.obj - 0001:0007b0a0 ??0FIL@@IAE@PAVFNI@@K@Z 0047c0a0 f file.obj - 0001:0007b190 ??1FIL@@MAE@XZ 0047c190 f file.obj - 0001:0007b200 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0047c200 f file.obj - 0001:0007b420 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0047c420 f file.obj - 0001:0007b5f0 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0047c5f0 f file.obj - 0001:0007b710 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0047c710 f file.obj - 0001:0007b860 ?FSetGrffil@FIL@@QAEHKK@Z 0047c860 f file.obj - 0001:0007b970 ?Release@FIL@@UAEXXZ 0047c970 f file.obj - 0001:0007ba50 ?SetTemp@FIL@@QAEXH@Z 0047ca50 f file.obj - 0001:0007bad0 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 0047cad0 f file.obj - 0001:0007bbd0 ?ShutDown@FIL@@SGXXZ 0047cbd0 f file.obj - 0001:0007bc90 ?AssertValid@FIL@@QAEXK@Z 0047cc90 f file.obj - 0001:0007bdc0 ?_FRangeIn@@YGHJJJ@Z 0047cdc0 f file.obj - 0001:0007be20 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0047ce20 f file.obj - 0001:0007bef0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0047cef0 f file.obj - 0001:0007bfc0 ?FCopy@FLO@@QAEHPAU1@@Z 0047cfc0 f file.obj - 0001:0007c240 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0047d240 f file.obj - 0001:0007c350 ?FWriteHq@FLO@@QAEHPAXJ@Z 0047d350 f file.obj - 0001:0007c430 ?FTranslate@FLO@@QAEHF@Z 0047d430 f file.obj - 0001:0007c960 ?AssertValid@FLO@@QAEXK@Z 0047d960 f file.obj - 0001:0007ca60 ??0BLCK@@QAE@PAUFLO@@H@Z 0047da60 f file.obj - 0001:0007cba0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0047dba0 f file.obj - 0001:0007cce0 ??0BLCK@@QAE@XZ 0047dce0 f file.obj - 0001:0007cd80 ??1BLCK@@UAE@XZ 0047dd80 f file.obj - 0001:0007cde0 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0047dde0 f file.obj - 0001:0007cf00 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0047df00 f file.obj - 0001:0007d030 ?SetHq@BLCK@@QAEXPAPAXH@Z 0047e030 f file.obj - 0001:0007d110 ?Free@BLCK@@QAEXXZ 0047e110 f file.obj - 0001:0007d1c0 ?HqFree@BLCK@@QAEPAXH@Z 0047e1c0 f file.obj - 0001:0007d370 ?Cb@BLCK@@QAEJH@Z 0047e370 f file.obj - 0001:0007d400 ?FSetTemp@BLCK@@QAEHJH@Z 0047e400 f file.obj - 0001:0007d500 ?FMoveMin@BLCK@@QAEHJ@Z 0047e500 f file.obj - 0001:0007d5f0 ?FMoveLim@BLCK@@QAEHJ@Z 0047e5f0 f file.obj - 0001:0007d6e0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0047e6e0 f file.obj - 0001:0007d880 ?FWouldBe@MSNK@@SGHJ@Z 0047e880 f file.obj - 0001:0007d8c0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0047e8c0 f file.obj - 0001:0007da60 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 0047ea60 f file.obj - 0001:0007dc30 ?FWriteHq@BLCK@@QAEHPAXJH@Z 0047ec30 f file.obj - 0001:0007ddd0 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0047edd0 f file.obj - 0001:0007df70 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0047ef70 f file.obj - 0001:0007e120 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 0047f120 f file.obj - 0001:0007e320 ?FPacked@BLCK@@QAEHPAJ@Z 0047f320 f file.obj - 0001:0007e3c0 ?FUnpackData@BLCK@@QAEHXZ 0047f3c0 f file.obj - 0001:0007e5f0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 0047f5f0 f file.obj - 0001:0007e620 ?CbMem@BLCK@@QAEJXZ 0047f620 f file.obj - 0001:0007e6a0 ?AssertValid@BLCK@@QAEXK@Z 0047f6a0 f file.obj - 0001:0007e8d0 ?MarkMem@BLCK@@UAEXXZ 0047f8d0 f file.obj - 0001:0007e910 ??0MSFIL@@QAE@PAVFIL@@@Z 0047f910 f file.obj - 0001:0007e9b0 ??1MSFIL@@UAE@XZ 0047f9b0 f file.obj - 0001:0007ea40 ?AssertValid@MSFIL@@QAEXK@Z 0047fa40 f file.obj - 0001:0007eb10 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 0047fb10 f file.obj - 0001:0007ec20 ?ReportLine@MSFIL@@UAEXPAD@Z 0047fc20 f file.obj - 0001:0007ecf0 ?Report@MSFIL@@UAEXPAD@Z 0047fcf0 f file.obj - 0001:0007ede0 ?FError@MSFIL@@UAEHXZ 0047fde0 f file.obj - 0001:0007ee90 ??_GFIL@@MAEPAXI@Z 0047fe90 f file.obj - 0001:0007ee90 ??_EFIL@@MAEPAXI@Z 0047fe90 f file.obj - 0001:0007eed0 ??_EBLCK@@UAEPAXI@Z 0047fed0 f file.obj - 0001:0007eed0 ??_GBLCK@@UAEPAXI@Z 0047fed0 f file.obj - 0001:0007ef10 ??_GMSFIL@@UAEPAXI@Z 0047ff10 f file.obj - 0001:0007ef10 ??_EMSFIL@@UAEPAXI@Z 0047ff10 f file.obj - 0001:0007ef50 ??0MSNK@@QAE@XZ 0047ff50 f file.obj - 0001:0007ef90 ?FIs@MSNK@@UAEHJ@Z 0047ff90 f file.obj - 0001:0007efc0 ?Cls@MSNK@@UAEJXZ 0047ffc0 f file.obj - 0001:0007eff0 ??1MSNK@@UAE@XZ 0047fff0 f file.obj - 0001:0007f020 ??_GMSNK@@UAEPAXI@Z 00480020 f file.obj - 0001:0007f020 ??_EMSNK@@UAEPAXI@Z 00480020 f file.obj - 0001:0007f060 ?_HfileOpen@@YGPAXPADHK@Z 00480060 f filewin.obj - 0001:0007f0e0 ?_FOpen@FIL@@IAEHHK@Z 004800e0 f filewin.obj - 0001:0007f320 ?_Close@FIL@@IAEXH@Z 00480320 f filewin.obj - 0001:0007f440 ?Flush@FIL@@QAEXXZ 00480440 f filewin.obj - 0001:0007f4d0 ?_SetFpPos@FIL@@IAEXJ@Z 004804d0 f filewin.obj - 0001:0007f5d0 ?FSetFpMac@FIL@@QAEHJ@Z 004805d0 f filewin.obj - 0001:0007f710 ?FpMac@FIL@@QAEJXZ 00480710 f filewin.obj - 0001:0007f820 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00480820 f filewin.obj - 0001:0007f9e0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 004809e0 f filewin.obj - 0001:0007fbb0 ?FSwapNames@FIL@@QAEHPAV1@@Z 00480bb0 f filewin.obj - 0001:00080040 ?FRename@FIL@@QAEHPAVFNI@@@Z 00481040 f filewin.obj - 0001:00080270 ?FWouldBe@FNI@@SGHJ@Z 00481270 f fniwin.obj - 0001:000802b0 ?FIs@FNI@@UAEHJ@Z 004812b0 f fniwin.obj - 0001:000802e0 ?Cls@FNI@@UAEJXZ 004812e0 f fniwin.obj - 0001:00080310 ?SetNil@FNI@@QAEXXZ 00481310 f fniwin.obj - 0001:00080370 ??0FNI@@QAE@XZ 00481370 f fniwin.obj - 0001:000803c0 ?FGetOpen@FNI@@QAEHPADPAUHWND__@@@Z 004813c0 f fniwin.obj - 0001:00080510 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 00481510 f fniwin.obj - 0001:00080670 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00481670 f fniwin.obj - 0001:000809c0 ?FGetUnique@FNI@@QAEHJ@Z 004819c0 f fniwin.obj - 0001:00080b70 ?FGetTemp@FNI@@QAEHXZ 00481b70 f fniwin.obj - 0001:00080cb0 ?Ftg@FNI@@QAEJXZ 00481cb0 f fniwin.obj - 0001:00080d00 ?Grfvk@FNI@@QAEKXZ 00481d00 f fniwin.obj - 0001:00080f00 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00481f00 f fniwin.obj - 0001:000810c0 ?FChangeFtg@FNI@@QAEHJ@Z 004820c0 f fniwin.obj - 0001:00081230 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00482230 f fniwin.obj - 0001:00081370 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00482370 f fniwin.obj - 0001:00081430 ?TExists@FNI@@QAEHXZ 00482430 f fniwin.obj - 0001:00081670 ?FDelete@FNI@@QAEHXZ 00482670 f fniwin.obj - 0001:00081740 ?FRename@FNI@@QAEHPAV1@@Z 00482740 f fniwin.obj - 0001:00081860 ?FEqual@FNI@@QAEHPAV1@@Z 00482860 f fniwin.obj - 0001:00081920 ?FSameDir@FNI@@QAEHPAV1@@Z 00482920 f fniwin.obj - 0001:00081a60 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 00482a60 f fniwin.obj - 0001:00081d30 ?AssertValid@FNI@@QAEXK@Z 00482d30 f fniwin.obj - 0001:00082070 ?_CchExt@FNI@@AAEJXZ 00483070 f fniwin.obj - 0001:00082170 ?_SetFtgFromName@FNI@@AAEXXZ 00483170 f fniwin.obj - 0001:000822e0 ?ChsUpper@@YGDD@Z 004832e0 f fniwin.obj - 0001:00082300 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00483300 f fniwin.obj - 0001:000824e0 ?FAppendCh@STN@@QAEHD@Z 004834e0 f fniwin.obj - 0001:00082510 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00483510 f fniwin.obj - 0001:00082640 ?FInsertCh@STN@@QAEHJD@Z 00483640 f fniwin.obj - 0001:00082680 ?FEqualUser@STN@@QAEHPAV1@K@Z 00483680 f fniwin.obj - 0001:00082720 ??_GFNI@@UAEPAXI@Z 00483720 f fniwin.obj - 0001:00082720 ??_EFNI@@UAEPAXI@Z 00483720 f fniwin.obj - 0001:00082760 ?FWouldBe@CHSE@@SGHJ@Z 00483760 f chse.obj - 0001:000827a0 ?FIs@CHSE@@UAEHJ@Z 004837a0 f chse.obj - 0001:000827d0 ?Cls@CHSE@@UAEJXZ 004837d0 f chse.obj - 0001:00082800 ??0CHSE@@QAE@XZ 00483800 f chse.obj - 0001:000828a0 ??1CHSE@@UAE@XZ 004838a0 f chse.obj - 0001:000828f0 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 004838f0 f chse.obj - 0001:00082a40 ?Uninit@CHSE@@QAEXXZ 00483a40 f chse.obj - 0001:00082b10 ?AssertValid@CHSE@@QAEXK@Z 00483b10 f chse.obj - 0001:00082c40 ?MarkMem@CHSE@@UAEXXZ 00483c40 f chse.obj - 0001:00082cf0 ?DumpBlck@CHSE@@QAEXPAVBLCK@@@Z 00483cf0 f chse.obj - 0001:00082e30 ?DumpRgb@CHSE@@QAEXPAXJJ@Z 00483e30 f chse.obj - 0001:00082ed0 ?_DumpBsf@CHSE@@IAEXJ@Z 00483ed0 f chse.obj - 0001:00083170 ?FDumpStringTable@CHSE@@QAEHPAVGSTB@@@Z 00484170 f chse.obj - 0001:00083470 ??_ECHSE@@UAEPAXI@Z 00484470 f chse.obj - 0001:00083470 ??_GCHSE@@UAEPAXI@Z 00484470 f chse.obj - 0001:000834b0 ?DumpSz@CHSE@@QAEXPAD@Z 004844b0 f chse.obj - 0001:00083510 ?Error@CHSE@@QAEXPAD@Z 00484510 f chse.obj - 0001:00083590 ?FWouldBe@DLG@@SGHJ@Z 00484590 f dlg.obj - 0001:000835d0 ?FIs@DLG@@UAEHJ@Z 004845d0 f dlg.obj - 0001:00083600 ?Cls@DLG@@UAEJXZ 00484600 f dlg.obj - 0001:00083630 ??0DLG@@AAE@J@Z 00484630 f dlg.obj - 0001:00083670 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 00484670 f dlg.obj - 0001:00083720 ?FGetValues@DLG@@QAEHJJ@Z 00484720 f dlg.obj - 0001:00083910 ?SetValues@DLG@@QAEXJJ@Z 00484910 f dlg.obj - 0001:00083cc0 ?IditFromSit@DLG@@QAEJJ@Z 00484cc0 f dlg.obj - 0001:00083d40 ?_FDitChange@DLG@@AAEHPAJ@Z 00484d40 f dlg.obj - 0001:00083dd0 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 00484dd0 f dlg.obj - 0001:00083f60 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 00484f60 f dlg.obj - 0001:00084200 ?FGetCheck@DLG@@QAEHJ@Z 00485200 f dlg.obj - 0001:000842c0 ?PutCheck@DLG@@QAEXJH@Z 004852c0 f dlg.obj - 0001:00084390 ?FGetLwFromEdit@DLG@@QAEHJPAJPAH@Z 00485390 f dlg.obj - 0001:000844b0 ?FPutLwInEdit@DLG@@QAEHJJ@Z 004854b0 f dlg.obj - 0001:00084540 ?FAddToList@DLG@@QAEHJPAVSTN@@@Z 00485540 f dlg.obj - 0001:000846d0 ?ClearList@DLG@@QAEXJ@Z 004856d0 f dlg.obj - 0001:00084880 ??_GDLG@@UAEPAXI@Z 00485880 f dlg.obj - 0001:00084880 ??_EDLG@@UAEPAXI@Z 00485880 f dlg.obj - 0001:000848c0 ??1DLG@@UAE@XZ 004858c0 f dlg.obj - 0001:00084a00 ?GetDit@DLG@@QAEXJPAUDIT@@@Z 00485a00 f dlg.obj - 0001:00084a30 ?_FInit@DLG@@AAEHXZ 00485a30 f dlgwin.obj - 0001:00084fb0 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 00485fb0 f dlgwin.obj - 0001:00085480 ?IditDo@DLG@@QAEJJ@Z 00486480 f dlgwin.obj - 0001:000854e0 ?SelectDit@DLG@@QAEXJ@Z 004864e0 f dlgwin.obj - 0001:000855f0 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 004865f0 f dlgwin.obj - 0001:00085710 ?_SetRadioGroup@DLG@@AAEXJJ@Z 00486710 f dlgwin.obj - 0001:000857f0 ?_FGetCheckBox@DLG@@AAEHJ@Z 004867f0 f dlgwin.obj - 0001:000858f0 ?_SetCheckBox@DLG@@AAEXJH@Z 004868f0 f dlgwin.obj - 0001:000859f0 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 004869f0 f dlgwin.obj - 0001:00085bb0 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 00486bb0 f dlgwin.obj - 0001:00085d40 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 00486d40 f dlgwin.obj - 0001:00085f10 ?_ClearList@DLG@@AAEXJ@Z 00486f10 f dlgwin.obj - 0001:00086190 ?PutDit@DLG@@QAEXJPAUDIT@@@Z 00487190 f dlgwin.obj - 0001:00086240 ?FWouldBe@CTL@@SGHJ@Z 00487240 f ctl.obj - 0001:00086280 ?FIs@CTL@@UAEHJ@Z 00487280 f ctl.obj - 0001:000862b0 ?Cls@CTL@@UAEJXZ 004872b0 f ctl.obj - 0001:000862e0 ?FWouldBe@SCB@@SGHJ@Z 004872e0 f ctl.obj - 0001:00086320 ?FIs@SCB@@UAEHJ@Z 00487320 f ctl.obj - 0001:00086350 ?Cls@SCB@@UAEJXZ 00487350 f ctl.obj - 0001:00086380 ?FWouldBe@WSB@@SGHJ@Z 00487380 f ctl.obj - 0001:000863c0 ?FIs@WSB@@UAEHJ@Z 004873c0 f ctl.obj - 0001:000863f0 ?Cls@WSB@@UAEJXZ 004873f0 f ctl.obj - 0001:00086420 ??0CTL@@IAE@PAUGCB@@@Z 00487420 f ctl.obj - 0001:00086470 ??1CTL@@MAE@XZ 00487470 f ctl.obj - 0001:000864e0 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 004874e0 f ctl.obj - 0001:00086580 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 00487580 f ctl.obj - 0001:000865b0 ?_NewRc@CTL@@MAEXXZ 004875b0 f ctl.obj - 0001:00086690 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 00487690 f ctl.obj - 0001:000867f0 ?DxpNormal@SCB@@SGJXZ 004877f0 f ctl.obj - 0001:00086830 ?DypNormal@SCB@@SGJXZ 00487830 f ctl.obj - 0001:00086870 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 00487870 f ctl.obj - 0001:000869d0 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 004879d0 f ctl.obj - 0001:00086a70 ?_FCreate@SCB@@IAEHJJJK@Z 00487a70 f ctl.obj - 0001:00086c40 ?SetVal@SCB@@QAEXJH@Z 00487c40 f ctl.obj - 0001:00086cf0 ?SetValMinMax@SCB@@QAEXJJJH@Z 00487cf0 f ctl.obj - 0001:00086de0 ?TrackScroll@SCB@@UAEXJJ@Z 00487de0 f ctl.obj - 0001:00087050 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 00488050 f ctl.obj - 0001:00087280 ??_GCTL@@MAEPAXI@Z 00488280 f ctl.obj - 0001:00087280 ??_ECTL@@MAEPAXI@Z 00488280 f ctl.obj - 0001:000873d0 ?_Hctl@CTL@@IAEPAUHWND__@@XZ 004883d0 f ctl.obj - 0001:00087400 ??0SCB@@IAE@PAUGCB@@@Z 00488400 f ctl.obj - 0001:00087440 ??_ESCB@@UAEPAXI@Z 00488440 f ctl.obj - 0001:00087440 ??_GSCB@@UAEPAXI@Z 00488440 f ctl.obj - 0001:00087480 ??1SCB@@UAE@XZ 00488480 f ctl.obj - 0001:000874b0 ??0WSB@@IAE@PAUGCB@@@Z 004884b0 f ctl.obj - 0001:000874f0 ??_GWSB@@UAEPAXI@Z 004884f0 f ctl.obj - 0001:000874f0 ??_EWSB@@UAEPAXI@Z 004884f0 f ctl.obj - 0001:00087530 ??1WSB@@UAE@XZ 00488530 f ctl.obj - 0001:000876b0 ?FWouldBe@SPLC@@SGHJ@Z 004886b0 f spell.obj - 0001:000876f0 ?FIs@SPLC@@UAEHJ@Z 004886f0 f spell.obj - 0001:00087720 ?Cls@SPLC@@UAEJXZ 00488720 f spell.obj - 0001:00087750 ??0SPLC@@IAE@XZ 00488750 f spell.obj - 0001:00087790 ??1SPLC@@UAE@XZ 00488790 f spell.obj - 0001:000878a0 ?PsplcNew@SPLC@@SGPAV1@GPAVSTN@@@Z 004888a0 f spell.obj - 0001:000879b0 ?_FInit@SPLC@@MAEHGPAVSTN@@@Z 004889b0 f spell.obj - 0001:00087ba0 ?_FEnsureDll@SPLC@@MAEHG@Z 00488ba0 f spell.obj - 0001:00088040 ?_FEnsureMainDict@SPLC@@MAEHGPAVFNI@@@Z 00489040 f spell.obj - 0001:000882c0 ?_FEnsureUserDict@SPLC@@MAEHPAVSTN@@PAVFNI@@@Z 004892c0 f spell.obj - 0001:000885b0 ?_FLoadDictionary@SPLC@@MAEHGPADPAUmdrs@@@Z 004895b0 f spell.obj - 0001:000886a0 ?_FLoadUserDictionary@SPLC@@MAEHPADPAIH@Z 004896a0 f spell.obj - 0001:00088790 ?FSetOptions@SPLC@@UAEHK@Z 00489790 f spell.obj - 0001:00088850 ?FCheck@SPLC@@UAEHPADJPAJ1PAVSTN@@1@Z 00489850 f spell.obj - 0001:00088b40 ?FSuggest@SPLC@@UAEHPADJHPAVSTN@@@Z 00489b40 f spell.obj - 0001:00088e40 ?FIgnoreAll@SPLC@@UAEHPAVSTN@@@Z 00489e40 f spell.obj - 0001:00088f70 ?FChange@SPLC@@UAEHPAVSTN@@0H@Z 00489f70 f spell.obj - 0001:00089110 ?FAddToUser@SPLC@@UAEHPAVSTN@@@Z 0048a110 f spell.obj - 0001:00089240 ?FlushIgnoreList@SPLC@@UAEXXZ 0048a240 f spell.obj - 0001:000892f0 ?FlushChangeList@SPLC@@UAEXH@Z 0048a2f0 f spell.obj - 0001:000893a0 ?SpellInit@SPLC@@IAEGPAKPAUWizSpecChars@@@Z 0048a3a0 f spell.obj - 0001:00089440 ?SpellOptions@SPLC@@IAEGKJ@Z 0048a440 f spell.obj - 0001:000894e0 ?SpellCheck@SPLC@@IAEGKGPAUSpellInputBuffer@@PAUSpellReturnBuffer@@@Z 0048a4e0 f spell.obj - 0001:00089590 ?SpellTerminate@SPLC@@IAEGKH@Z 0048a590 f spell.obj - 0001:00089630 ?SpellOpenMdr@SPLC@@IAEGKPAD0HHGPAUmdrs@@@Z 0048a630 f spell.obj - 0001:000896f0 ?SpellOpenUdr@SPLC@@IAEGKPADHGPAIPAH@Z 0048a6f0 f spell.obj - 0001:000897a0 ?SpellAddUdr@SPLC@@IAEGKIPAD@Z 0048a7a0 f spell.obj - 0001:00089850 ?SpellAddChangeUdr@SPLC@@IAEGKIPAD0@Z 0048a850 f spell.obj - 0001:00089900 ?SpellClearUdr@SPLC@@IAEGKI@Z 0048a900 f spell.obj - 0001:000899a0 ?SpellCloseMdr@SPLC@@IAEGKPAUmdrs@@@Z 0048a9a0 f spell.obj - 0001:00089a40 ?SpellCloseUdr@SPLC@@IAEGKIH@Z 0048aa40 f spell.obj - 0001:00089af0 ?AssertValid@SPLC@@QAEXK@Z 0048aaf0 f spell.obj - 0001:00089b20 ?MarkMem@SPLC@@UAEXXZ 0048ab20 f spell.obj - 0001:00089b70 ??_GSPLC@@UAEPAXI@Z 0048ab70 f spell.obj - 0001:00089b70 ??_ESPLC@@UAEPAXI@Z 0048ab70 f spell.obj - 0001:00089ce0 ?FWouldBe@APP@@SGHJ@Z 0048ace0 f chelp.obj - 0001:00089d20 ?FIs@APP@@UAEHJ@Z 0048ad20 f chelp.obj - 0001:00089d50 ?Cls@APP@@UAEJXZ 0048ad50 f chelp.obj - 0001:00089d80 ?FWouldBe@LIG@@SGHJ@Z 0048ad80 f chelp.obj - 0001:00089dc0 ?FIs@LIG@@UAEHJ@Z 0048adc0 f chelp.obj - 0001:00089df0 ?Cls@LIG@@UAEJXZ 0048adf0 f chelp.obj - 0001:00089e20 ?FWouldBe@LID@@SGHJ@Z 0048ae20 f chelp.obj - 0001:00089e60 ?FIs@LID@@UAEHJ@Z 0048ae60 f chelp.obj - 0001:00089e90 ?Cls@LID@@UAEJXZ 0048ae90 f chelp.obj - 0001:00089ec0 ?FWouldBe@CCG@@SGHJ@Z 0048aec0 f chelp.obj - 0001:00089f00 ?FIs@CCG@@UAEHJ@Z 0048af00 f chelp.obj - 0001:00089f30 ?Cls@CCG@@UAEJXZ 0048af30 f chelp.obj - 0001:00089f60 ?FWouldBe@CCGT@@SGHJ@Z 0048af60 f chelp.obj - 0001:00089fa0 ?FIs@CCGT@@UAEHJ@Z 0048afa0 f chelp.obj - 0001:00089fd0 ?Cls@CCGT@@UAEJXZ 0048afd0 f chelp.obj - 0001:0008a020 ?FrameMain@@YGXXZ 0048b020 f chelp.obj - 0001:0008a080 ?AssertValid@APP@@QAEXK@Z 0048b080 f chelp.obj - 0001:0008a170 ?MarkMem@APP@@UAEXXZ 0048b170 f chelp.obj - 0001:0008a250 ?_FInit@APP@@MAEHKKJ@Z 0048b250 f chelp.obj - 0001:0008a650 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 0048b650 f chelp.obj - 0001:0008a700 ?UpdateHwnd@APP@@UAEXPAUHWND__@@PAVRC@@K@Z 0048b700 f chelp.obj - 0001:0008a7c0 ?_FastUpdate@APP@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0048b7c0 f chelp.obj - 0001:0008a870 ?FCmdOpen@APP@@UAEHPAUCMD@@@Z 0048b870 f chelp.obj - 0001:0008aaa0 ?FOpenDocFile@APP@@QAEHPAVFNI@@J@Z 0048baa0 f chelp.obj - 0001:0008add0 ?FCmdLoadResFile@APP@@UAEHPAUCMD@@@Z 0048bdd0 f chelp.obj - 0001:0008aea0 ?FLoadResFile@APP@@QAEHPAVFNI@@@Z 0048bea0 f chelp.obj - 0001:0008b190 ?FEnableChooseLanguage@APP@@UAEHPAUCMD@@PAK@Z 0048c190 f chelp.obj - 0001:0008b270 ?FCmdChooseLanguage@APP@@UAEHPAUCMD@@@Z 0048c270 f chelp.obj - 0001:0008b440 ?PligNew@APP@@QAEPAVLIG@@HPAUGCB@@PAVTXHD@@@Z 0048c440 f chelp.obj - 0001:0008b4b0 ??0LID@@IAE@XZ 0048c4b0 f chelp.obj - 0001:0008b4f0 ??1LID@@MAE@XZ 0048c4f0 f chelp.obj - 0001:0008b580 ?AssertValid@LID@@QAEXK@Z 0048c580 f chelp.obj - 0001:0008b670 ?MarkMem@LID@@UAEXXZ 0048c670 f chelp.obj - 0001:0008b6e0 ?PlidNew@LID@@SGPAV1@PAVCRM@@KK@Z 0048c6e0 f chelp.obj - 0001:0008b7e0 ?_FInit@LID@@IAEHPAVCRM@@KK@Z 0048c7e0 f chelp.obj - 0001:0008b8d0 ?FRefresh@LID@@QAEHXZ 0048c8d0 f chelp.obj - 0001:0008bb50 ?Ccki@LID@@QAEJXZ 0048cb50 f chelp.obj - 0001:0008bba0 ?GetCki@LID@@QAEXJPAUCKI@@PAPAVCRF@@@Z 0048cba0 f chelp.obj - 0001:0008bc50 ?PmbmpGet@LID@@QAEPAVMBMP@@J@Z 0048cc50 f chelp.obj - 0001:0008bce0 ??0LIG@@IAE@PAVLID@@PAUGCB@@@Z 0048cce0 f chelp.obj - 0001:0008bd20 ?AssertValid@LIG@@QAEXK@Z 0048cd20 f chelp.obj - 0001:0008be30 ?MarkMem@LIG@@UAEXXZ 0048ce30 f chelp.obj - 0001:0008be90 ?PligNew@LIG@@SGPAV1@PAVLID@@PAUGCB@@PAVTXHD@@J@Z 0048ce90 f chelp.obj - 0001:0008c010 ?Plid@LIG@@QAEPAVLID@@XZ 0048d010 f chelp.obj - 0001:0008c0e0 ?_FInit@LIG@@IAEHPAVTXHD@@J@Z 0048d0e0 f chelp.obj - 0001:0008c260 ?Refresh@LIG@@QAEXXZ 0048d260 f chelp.obj - 0001:0008c310 ?Draw@LIG@@UAEXPAVGNV@@PAVRC@@@Z 0048d310 f chelp.obj - 0001:0008c5b0 ?FCmdScroll@LIG@@UAEHPAUCMD@@@Z 0048d5b0 f chelp.obj - 0001:0008c7d0 ?MouseDown@LIG@@UAEXJJJK@Z 0048d7d0 f chelp.obj - 0001:0008ca10 ??0CCG@@QAE@PAUGCB@@PAVTXHD@@HJ@Z 0048da10 f chelp.obj - 0001:0008caf0 ?MouseDown@CCG@@UAEXJJJK@Z 0048daf0 f chelp.obj - 0001:0008cbc0 ?Ccrf@CRM@@QAEJXZ 0048dbc0 f chelp.obj - 0001:0008cc10 ?Draw@CCG@@UAEXPAVGNV@@PAVRC@@@Z 0048dc10 f chelp.obj - 0001:0008ce50 ?_FGetAcrFromPt@CCG@@IAEHJJPAVACR@@PAVRC@@PAJ@Z 0048de50 f chelp.obj - 0001:0008d050 ?FEnsureToolTip@CCG@@UAEHPAPAVGOB@@JJ@Z 0048e050 f chelp.obj - 0001:0008d180 ?FCmdMouseMove@CCG@@UAEHPAUCMD_MOUSE@@@Z 0048e180 f chelp.obj - 0001:0008d3b0 ?AssertValid@CCG@@QAEXK@Z 0048e3b0 f chelp.obj - 0001:0008d450 ??0CCGT@@QAE@PAUGCB@@VACR@@PAVSTN@@@Z 0048e450 f chelp.obj - 0001:0008d4f0 ?SetAcr@CCGT@@QAEXVACR@@PAVSTN@@@Z 0048e4f0 f chelp.obj - 0001:0008d650 ?SetToIndex@ACR@@QAEXE@Z 0048e650 f chelp.obj - 0001:0008d7a0 ?Draw@CCGT@@UAEXPAVGNV@@PAVRC@@@Z 0048e7a0 f chelp.obj - 0001:0008da40 ??1APP@@UAE@XZ 0048ea40 f chelp.obj - 0001:0008da70 ??0APP@@QAE@XZ 0048ea70 f chelp.obj - 0001:0008dab0 ??_ELID@@MAEPAXI@Z 0048eab0 f chelp.obj - 0001:0008dab0 ??_GLID@@MAEPAXI@Z 0048eab0 f chelp.obj - 0001:0008daf0 ??_ELIG@@UAEPAXI@Z 0048eaf0 f chelp.obj - 0001:0008daf0 ??_GLIG@@UAEPAXI@Z 0048eaf0 f chelp.obj - 0001:0008db30 ??_ECCG@@UAEPAXI@Z 0048eb30 f chelp.obj - 0001:0008db30 ??_GCCG@@UAEPAXI@Z 0048eb30 f chelp.obj - 0001:0008db70 ?Val@SCB@@QAEJXZ 0048eb70 f chelp.obj - 0001:0008dba0 ??_GCCGT@@UAEPAXI@Z 0048eba0 f chelp.obj - 0001:0008dba0 ??_ECCGT@@UAEPAXI@Z 0048eba0 f chelp.obj - 0001:0008dbe0 ?ValMax@SCB@@QAEJXZ 0048ebe0 f chelp.obj - 0001:0008dc10 ??_EAPP@@UAEPAXI@Z 0048ec10 f chelp.obj - 0001:0008dc10 ??_GAPP@@UAEPAXI@Z 0048ec10 f chelp.obj - 0001:0008dc50 ??1LIG@@UAE@XZ 0048ec50 f chelp.obj - 0001:0008dc80 ??1CCG@@UAE@XZ 0048ec80 f chelp.obj - 0001:0008dcb0 ??1CCGT@@UAE@XZ 0048ecb0 f chelp.obj - 0001:0008dce0 ??_9@$BBEA@A 0048ece0 f chelp.obj - 0001:0008dcf0 ??_9@$BBEE@A 0048ecf0 f chelp.obj - 0001:0008dd00 ??_9@$BKM@A 0048ed00 f chelp.obj - 0001:0008dd10 ??_9@$BBDI@A 0048ed10 f chelp.obj - 0001:0008dd20 ??_9@$BBDM@A 0048ed20 f chelp.obj - 0001:0008dd30 ?Pdocb@DMD@@QAEPAVDOCB@@XZ 0048ed30 f chelp.obj - 0001:0008dd60 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 0048ed60 f chelp.obj - 0001:0008dd90 ?Pcmm@LIG@@MAEPAUCMM@CMH@@XZ 0048ed90 f chelp.obj - 0001:0008ddc0 ?FWouldBe@HEDO@@SGHJ@Z 0048edc0 f chtop.obj - 0001:0008de00 ?FIs@HEDO@@UAEHJ@Z 0048ee00 f chtop.obj - 0001:0008de30 ?Cls@HEDO@@UAEJXZ 0048ee30 f chtop.obj - 0001:0008de60 ?FWouldBe@TSEL@@SGHJ@Z 0048ee60 f chtop.obj - 0001:0008dea0 ?FIs@TSEL@@UAEHJ@Z 0048eea0 f chtop.obj - 0001:0008ded0 ?Cls@TSEL@@UAEJXZ 0048eed0 f chtop.obj - 0001:0008df00 ?FWouldBe@HEDG@@SGHJ@Z 0048ef00 f chtop.obj - 0001:0008df40 ?FIs@HEDG@@UAEHJ@Z 0048ef40 f chtop.obj - 0001:0008df70 ?Cls@HEDG@@UAEJXZ 0048ef70 f chtop.obj - 0001:0008dfa0 ?FWouldBe@HETD@@SGHJ@Z 0048efa0 f chtop.obj - 0001:0008dfe0 ?FIs@HETD@@UAEHJ@Z 0048efe0 f chtop.obj - 0001:0008e010 ?Cls@HETD@@UAEJXZ 0048f010 f chtop.obj - 0001:0008e040 ?FWouldBe@HETG@@SGHJ@Z 0048f040 f chtop.obj - 0001:0008e080 ?FIs@HETG@@UAEHJ@Z 0048f080 f chtop.obj - 0001:0008e0b0 ?Cls@HETG@@UAEJXZ 0048f0b0 f chtop.obj - 0001:0008e0e0 ?FWouldBe@HTRU@@SGHJ@Z 0048f0e0 f chtop.obj - 0001:0008e120 ?FIs@HTRU@@UAEHJ@Z 0048f120 f chtop.obj - 0001:0008e150 ?Cls@HTRU@@UAEJXZ 0048f150 f chtop.obj - 0001:0008e180 ??0HEDO@@IAE@XZ 0048f180 f chtop.obj - 0001:0008e1c0 ??1HEDO@@MAE@XZ 0048f1c0 f chtop.obj - 0001:0008e220 ?PhedoNew@HEDO@@SGPAV1@PAVFNI@@PAVRCA@@@Z 0048f220 f chtop.obj - 0001:0008e470 ?PddgNew@HEDO@@UAEPAVDDG@@PAUGCB@@@Z 0048f470 f chtop.obj - 0001:0008e4d0 ?FGetFni@HEDO@@UAEHPAVFNI@@@Z 0048f4d0 f chtop.obj - 0001:0008e5b0 ?FSaveToFni@HEDO@@UAEHPAVFNI@@H@Z 0048f5b0 f chtop.obj - 0001:0008e660 ?FGetFniSave@HEDO@@UAEHPAVFNI@@@Z 0048f660 f chtop.obj - 0001:0008e720 ?InvalAllDdg@HEDO@@UAEXK@Z 0048f720 f chtop.obj - 0001:0008e7e0 ?FExportText@HEDO@@UAEHXZ 0048f7e0 f chtop.obj - 0001:0008e9c0 ?DoFindNext@HEDO@@UAEXPAVHETD@@KH@Z 0048f9c0 f chtop.obj - 0001:0008eda0 ?PhetdOpenNext@HEDO@@UAEPAVHETD@@PAV2@@Z 0048fda0 f chtop.obj - 0001:0008f050 ?PhetdOpenPrev@HEDO@@UAEPAVHETD@@PAV2@@Z 00490050 f chtop.obj - 0001:0008f2c0 ?AssertValid@HEDO@@QAEXK@Z 004902c0 f chtop.obj - 0001:0008f350 ??0TSEL@@QAE@PAVCFL@@@Z 00490350 f chtop.obj - 0001:0008f420 ?_SetNil@TSEL@@IAEXXZ 00490420 f chtop.obj - 0001:0008f480 ?FSetIcki@TSEL@@QAEHJ@Z 00490480 f chtop.obj - 0001:0008f550 ?FSetCno@TSEL@@QAEHK@Z 00490550 f chtop.obj - 0001:0008f600 ?Adjust@TSEL@@QAEXXZ 00490600 f chtop.obj - 0001:0008f710 ?AssertValid@TSEL@@QAEXK@Z 00490710 f chtop.obj - 0001:0008f7f0 ??0HEDG@@IAE@PAVHEDO@@PAVCFL@@PAUGCB@@@Z 004907f0 f chtop.obj - 0001:0008f9b0 ?PhedgNew@HEDG@@SGPAV1@PAVHEDO@@PAVCFL@@PAUGCB@@@Z 004909b0 f chtop.obj - 0001:0008fad0 ?_Activate@HEDG@@MAEXH@Z 00490ad0 f chtop.obj - 0001:0008fb60 ?InvalCno@HEDG@@UAEXK@Z 00490b60 f chtop.obj - 0001:0008fca0 ?Draw@HEDG@@UAEXPAVGNV@@PAVRC@@@Z 00490ca0 f chtop.obj - 0001:0008ff70 ?_DrawSel@HEDG@@IAEXPAVGNV@@@Z 00490f70 f chtop.obj - 0001:00090090 ?_SetSel@HEDG@@IAEXJK@Z 00491090 f chtop.obj - 0001:000901c0 ?_ShowSel@HEDG@@IAEXXZ 004911c0 f chtop.obj - 0001:000902b0 ?MouseDown@HEDG@@UAEXJJJK@Z 004912b0 f chtop.obj - 0001:000903b0 ?FCmdKey@HEDG@@UAEHPAUCMD_KEY@@@Z 004913b0 f chtop.obj - 0001:000906b0 ?_ScvMax@HEDG@@MAEJH@Z 004916b0 f chtop.obj - 0001:00090760 ?FEnableHedgCmd@HEDG@@UAEHPAUCMD@@PAK@Z 00491760 f chtop.obj - 0001:00090910 ?FCmdDeleteTopic@HEDG@@UAEHPAUCMD@@@Z 00491910 f chtop.obj - 0001:00090980 ?FCmdEditTopic@HEDG@@UAEHPAUCMD@@@Z 00491980 f chtop.obj - 0001:00090a10 ?FTemp@CFL@@QAEHXZ 00491a10 f chtop.obj - 0001:00090a40 ?FCmdNewTopic@HEDG@@UAEHPAUCMD@@@Z 00491a40 f chtop.obj - 0001:00090ab0 ?FCmdExport@HEDG@@UAEHPAUCMD@@@Z 00491ab0 f chtop.obj - 0001:00090b30 ?_EditTopic@HEDG@@IAEXK@Z 00491b30 f chtop.obj - 0001:00090c10 ?_FCopySel@HEDG@@MAEHPAPAVDOCB@@@Z 00491c10 f chtop.obj - 0001:00090d30 ?_ClearSel@HEDG@@MAEXXZ 00491d30 f chtop.obj - 0001:00090df0 ?_FPaste@HEDG@@MAEHPAVCLIP@@HJ@Z 00491df0 f chtop.obj - 0001:00091050 ?_GetContent@HEDG@@IAEXPAVRC@@@Z 00492050 f chtop.obj - 0001:00091090 ?_IckiFromYp@HEDG@@IAEJJ@Z 00492090 f chtop.obj - 0001:00091110 ?_Scroll@HEDG@@MAEXJJJJ@Z 00492110 f chtop.obj - 0001:00091460 ?_ScrollDxpDyp@HEDG@@MAEXJJ@Z 00492460 f chtop.obj - 0001:00091520 ?FCmdFind@HEDG@@UAEHPAUCMD@@@Z 00492520 f chtop.obj - 0001:00091600 ?FCmdPrint@HEDG@@UAEHPAUCMD@@@Z 00492600 f chtop.obj - 0001:00092580 ?_StartPage@HEDG@@IAEXPAVGNV@@PAVSTN@@JPAVRC@@J@Z 00493580 f chtop.obj - 0001:00092650 ?FCmdCheckSpelling@HEDG@@UAEHPAUCMD@@@Z 00493650 f chtop.obj - 0001:000929a0 ?PdocbPar@DOCB@@QAEPAV1@XZ 004939a0 f chtop.obj - 0001:000929d0 ?PdocbSib@DOCB@@QAEPAV1@XZ 004939d0 f chtop.obj - 0001:00092a00 ?PdocbChd@DOCB@@QAEPAV1@XZ 00493a00 f chtop.obj - 0001:00092a30 ?FCmdDump@HEDG@@UAEHPAUCMD@@@Z 00493a30 f chtop.obj - 0001:00092f10 ?AssertValid@HEDG@@QAEXK@Z 00493f10 f chtop.obj - 0001:00093010 ?CloseDeletedHetd@HETD@@SGXPAVDOCB@@@Z 00494010 f chtop.obj - 0001:000931d0 ?PhetdFromChunk@HETD@@SGPAV1@PAVDOCB@@K@Z 004941d0 f chtop.obj - 0001:00093340 ?Pcfl@HEDO@@QAEPAVCFL@@XZ 00494340 f chtop.obj - 0001:00093370 ?Prca@HEDO@@QAEPAVRCA@@XZ 00494370 f chtop.obj - 0001:000933a0 ?Icki@TSEL@@QAEJXZ 004943a0 f chtop.obj - 0001:000933d0 ?Cno@TSEL@@QAEKXZ 004943d0 f chtop.obj - 0001:00093400 ?Pcmm@HEDG@@MAEPAUCMM@CMH@@XZ 00494400 f chtop.obj - 0001:00093430 ?_YpFromIcki@HEDG@@IAEJJ@Z 00494430 f chtop.obj - 0001:00093480 ?_XpFromIch@HEDG@@IAEJJ@Z 00494480 f chtop.obj - 0001:000934c0 ?Phedo@HEDG@@QAEPAVHEDO@@XZ 004944c0 f chtop.obj - 0001:000934f0 ??0HETD@@IAE@PAVDOCB@@PAVRCA@@PAVCFL@@K@Z 004944f0 f chtop.obj - 0001:00093590 ?Cno@HETD@@QAEKXZ 00494590 f chtop.obj - 0001:000935c0 ??1HETD@@MAE@XZ 004945c0 f chtop.obj - 0001:00093630 ?PhetdNew@HETD@@SGPAV1@PAVDOCB@@PAVRCA@@PAVCFL@@K@Z 00494630 f chtop.obj - 0001:000938f0 ?_FReadChunk@HETD@@MAEHPAVCFL@@KKH@Z 004948f0 f chtop.obj - 0001:00093ae0 ?GetName@HETD@@UAEXPAVSTN@@@Z 00494ae0 f chtop.obj - 0001:00093c70 ?FSave@HETD@@UAEHJ@Z 00494c70 f chtop.obj - 0001:00093e80 ?Phedo@HETD@@QAEPAVHEDO@@XZ 00494e80 f chtop.obj - 0001:00093eb0 ?FSaveToChunk@HETD@@UAEHPAVCFL@@PAUCKI@@H@Z 00494eb0 f chtop.obj - 0001:00094080 ?PdmdNew@HETD@@UAEPAVDMD@@XZ 00495080 f chtop.obj - 0001:000943d0 ?PddgNew@HETD@@UAEPAVDDG@@PAUGCB@@@Z 004953d0 f chtop.obj - 0001:00094430 ?EditHtop@HETD@@QAEXXZ 00495430 f chtop.obj - 0001:00094d10 ?GetRgch@STN@@QAEXPAD@Z 00495d10 f chtop.obj - 0001:00094d80 ?FDoFind@HETD@@QAEHJPAJ0@Z 00495d80 f chtop.obj - 0001:00094eb0 ?FDoReplace@HETD@@QAEHJJPAJ0@Z 00495eb0 f chtop.obj - 0001:00094fb0 ?GetHtopStn@HETD@@QAEXJPAVSTN@@@Z 00495fb0 f chtop.obj - 0001:000950c0 ?AssertValid@HETD@@QAEXK@Z 004960c0 f chtop.obj - 0001:000951e0 ?MarkMem@HETD@@UAEXXZ 004961e0 f chtop.obj - 0001:00095240 ??0HETG@@IAE@PAVHETD@@PAUGCB@@@Z 00496240 f chtop.obj - 0001:00095290 ?Pcmm@HETG@@MAEPAUCMM@CMH@@XZ 00496290 f chtop.obj - 0001:000952c0 ?PhetgNew@HETG@@SGPAV1@PAVHETD@@PAUGCB@@@Z 004962c0 f chtop.obj - 0001:00095400 ?_DypTrul@HETG@@MAEJXZ 00496400 f chtop.obj - 0001:00095450 ?_PtrulNew@HETG@@MAEPAVTRUL@@PAUGCB@@@Z 00496450 f chtop.obj - 0001:00095530 ?FInsertPicture@HETG@@UAEHPAVCRF@@KK@Z 00496530 f chtop.obj - 0001:00095870 ?Phetd@HETG@@QAEPAVHETD@@XZ 00496870 f chtop.obj - 0001:000958a0 ?_FDlgFormatButton@@YGHPAVDLG@@PAJPAX@Z 004968a0 f chtop.obj - 0001:000959e0 ?FInsertButton@HETG@@UAEHPAVCRF@@KK@Z 004969e0 f chtop.obj - 0001:00095da0 ?_FDlgFormatEdit@@YGHPAVDLG@@PAJPAX@Z 00496da0 f chtop.obj - 0001:00095ef0 ?FCmdInsertEdit@HETG@@UAEHPAUCMD@@@Z 00496ef0 f chtop.obj - 0001:000960e0 ?_FCopySel@HETG@@MAEHPAPAVDOCB@@@Z 004970e0 f chtop.obj - 0001:00096240 ?_DrawLinExtra@HETG@@MAEXPAVGNV@@PAVRC@@PAULIN@TXTG@@JJK@Z 00497240 f chtop.obj - 0001:00096410 ?Draw@HETG@@UAEXPAVGNV@@PAVRC@@@Z 00497410 f chtop.obj - 0001:000964c0 ?FCmdGroupText@HETG@@UAEHPAUCMD@@@Z 004974c0 f chtop.obj - 0001:00096820 ?FCmdLineSpacing@HETG@@UAEHPAUCMD@@@Z 00497820 f chtop.obj - 0001:00096a40 ?FEnableHetgCmd@HETG@@UAEHPAUCMD@@PAK@Z 00497a40 f chtop.obj - 0001:00096cf0 ?FCmdFormatPicture@HETG@@UAEHPAUCMD@@@Z 00497cf0 f chtop.obj - 0001:00097070 ?FCmdFormatButton@HETG@@UAEHPAUCMD@@@Z 00498070 f chtop.obj - 0001:00097510 ?FCmdFormatEdit@HETG@@UAEHPAUCMD@@@Z 00498510 f chtop.obj - 0001:00097760 ?FCmdEditHtop@HETG@@UAEHPAUCMD@@@Z 00498760 f chtop.obj - 0001:000977d0 ?FCmdNextTopic@HETG@@UAEHPAUCMD@@@Z 004987d0 f chtop.obj - 0001:000979d0 ?FCmdFind@HETG@@UAEHPAUCMD@@@Z 004989d0 f chtop.obj - 0001:00097c60 ?FCmdPrint@HETG@@UAEHPAUCMD@@@Z 00498c60 f chtop.obj - 0001:00098030 ?FCmdCheckSpelling@HETG@@UAEHPAUCMD@@@Z 00499030 f chtop.obj - 0001:00098150 ?FCheckSpelling@HETG@@UAEHPAJ@Z 00499150 f chtop.obj - 0001:00098960 ?InvalCp@HETG@@UAEXJJJ@Z 00499960 f chtop.obj - 0001:00098a30 ?_FGetOtherSize@HETG@@MAEHPAJ@Z 00499a30 f chtop.obj - 0001:00098b30 ?_FGetOtherSubSuper@HETG@@MAEHPAJ@Z 00499b30 f chtop.obj - 0001:00098c60 ?DypLine@HETG@@QAEJJ@Z 00499c60 f chtop.obj - 0001:00098cf0 ??0HTRU@@IAE@PAUGCB@@PAVTXTG@@@Z 00499cf0 f chtop.obj - 0001:00098d90 ??0TRUL@@IAE@PAUGCB@@@Z 00499d90 f chtop.obj - 0001:00098dd0 ?PhtruNew@HTRU@@SGPAV1@PAUGCB@@PAVTXTG@@JJJJJJK@Z 00499dd0 f chtop.obj - 0001:00098f80 ?Draw@HTRU@@UAEXPAVGNV@@PAVRC@@@Z 00499f80 f chtop.obj - 0001:00099280 ?FCmdTrackMouse@HTRU@@UAEHPAUCMD_MOUSE@@@Z 0049a280 f chtop.obj - 0001:000995f0 ?Ptxtb@TXTG@@QAEPAVTXTB@@XZ 0049a5f0 f chtop.obj - 0001:00099620 ?FCmdFontDialog@HETG@@UAEHPAUCMD@@@Z 0049a620 f chtop.obj - 0001:00099840 ?SetDxpTab@HTRU@@UAEXJ@Z 0049a840 f chtop.obj - 0001:000998e0 ?SetDxpDoc@HTRU@@UAEXJ@Z 0049a8e0 f chtop.obj - 0001:00099980 ?SetXpLeft@HTRU@@UAEXJ@Z 0049a980 f chtop.obj - 0001:00099a20 ?SetDypHeight@HTRU@@UAEXJ@Z 0049aa20 f chtop.obj - 0001:00099ac0 ?AssertValid@HTRU@@QAEXK@Z 0049aac0 f chtop.obj - 0001:00099b80 ?_TokenizeStn@@YGXPAVSTN@@@Z 0049ab80 f chtop.obj - 0001:00099cc0 ?GetSz@STN@@QAEXPAD@Z 0049acc0 f chtop.obj - 0001:00099d30 ?_FDlgFind@@YGHPAVDLG@@PAJPAX@Z 0049ad30 f chtop.obj - 0001:00099e90 ?_FDoFindDlg@@YGHXZ 0049ae90 f chtop.obj - 0001:0009a070 ??_GTRUL@@UAEPAXI@Z 0049b070 f chtop.obj - 0001:0009a070 ??_ETRUL@@UAEPAXI@Z 0049b070 f chtop.obj - 0001:0009a0b0 ??_EHEDO@@MAEPAXI@Z 0049b0b0 f chtop.obj - 0001:0009a0b0 ??_GHEDO@@MAEPAXI@Z 0049b0b0 f chtop.obj - 0001:0009a0f0 ??_GTSEL@@UAEPAXI@Z 0049b0f0 f chtop.obj - 0001:0009a0f0 ??_ETSEL@@UAEPAXI@Z 0049b0f0 f chtop.obj - 0001:0009a130 ??_EHEDG@@UAEPAXI@Z 0049b130 f chtop.obj - 0001:0009a130 ??_GHEDG@@UAEPAXI@Z 0049b130 f chtop.obj - 0001:0009a170 ??1TSEL@@UAE@XZ 0049b170 f chtop.obj - 0001:0009a1a0 ??_GHETD@@MAEPAXI@Z 0049b1a0 f chtop.obj - 0001:0009a1a0 ??_EHETD@@MAEPAXI@Z 0049b1a0 f chtop.obj - 0001:0009a1e0 ??_EHETG@@UAEPAXI@Z 0049b1e0 f chtop.obj - 0001:0009a1e0 ??_GHETG@@UAEPAXI@Z 0049b1e0 f chtop.obj - 0001:0009a220 ??_GHTRU@@UAEPAXI@Z 0049b220 f chtop.obj - 0001:0009a220 ??_EHTRU@@UAEPAXI@Z 0049b220 f chtop.obj - 0001:0009a260 ??1TRUL@@UAE@XZ 0049b260 f chtop.obj - 0001:0009a290 ??1HEDG@@UAE@XZ 0049b290 f chtop.obj - 0001:0009a2d0 ??1HETG@@UAE@XZ 0049b2d0 f chtop.obj - 0001:0009a300 ??1HTRU@@UAE@XZ 0049b300 f chtop.obj - 0001:0009a330 ??_9@$BOA@A 0049b330 f chtop.obj - 0001:0009a340 ??_9@$BOE@A 0049b340 f chtop.obj - 0001:0009a350 ??_9@$BBCI@A 0049b350 f chtop.obj - 0001:0009a360 ??_9@$BBEI@A 0049b360 f chtop.obj - 0001:0009a370 ??_9@$BOI@A 0049b370 f chtop.obj - 0001:0009a380 ??_9@$BBEM@A 0049b380 f chtop.obj - 0001:0009a390 ??_9@$BBCM@A 0049b390 f chtop.obj - 0001:0009a3a0 ??_9@$BBFA@A 0049b3a0 f chtop.obj - 0001:0009a3b0 ??_9@$BBDA@A 0049b3b0 f chtop.obj - 0001:0009a3c0 ??_9@$BBFE@A 0049b3c0 f chtop.obj - 0001:0009a3d0 ??_9@$BBDE@A 0049b3d0 f chtop.obj - 0001:0009a3e0 ??_9@$BNE@A 0049b3e0 f chtop.obj - 0001:0009a3f0 ??_9@$BNI@A 0049b3f0 f chtop.obj - 0001:0009a400 ??_9@$BNM@A 0049b400 f chtop.obj - 0001:0009a410 ?FExportHelpText@@YGHPAVCFL@@PAVMSNK@@@Z 0049b410 f chelpexp.obj - 0001:0009bdba _GetOpenFileNameA@4 0049cdba comdlg32:comdlg32.dll - 0001:0009bdc0 _GetSaveFileNameA@4 0049cdc0 comdlg32:comdlg32.dll - 0001:0009bdc6 _PrintDlgA@4 0049cdc6 comdlg32:comdlg32.dll - 0001:0009bdcc _timeGetTime@0 0049cdcc winmm:WINMM.dll - 0001:0009bdd2 _waveOutGetDevCapsA@12 0049cdd2 winmm:WINMM.dll - 0001:0009bdd8 _waveOutGetNumDevs@0 0049cdd8 winmm:WINMM.dll - 0001:0009bdde _midiOutGetVolume@8 0049cdde winmm:WINMM.dll - 0001:0009bde4 _midiOutSetVolume@8 0049cde4 winmm:WINMM.dll - 0001:0009bdea _midiOutShortMsg@8 0049cdea winmm:WINMM.dll - 0001:0009bdf0 _midiOutReset@4 0049cdf0 winmm:WINMM.dll - 0001:0009bdf6 _midiOutOpen@20 0049cdf6 winmm:WINMM.dll - 0001:0009bdfc _midiOutClose@4 0049cdfc winmm:WINMM.dll - 0001:0009be02 _midiOutUnprepareHeader@12 0049ce02 winmm:WINMM.dll - 0001:0009be08 _midiOutPrepareHeader@12 0049ce08 winmm:WINMM.dll - 0001:0009be10 _AMCreate@16 0049ce10 f audiod:audioman.obj - 0001:0009beaa ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 0049ceaa f audiod:audioman.obj - 0001:0009bef8 _AMFinishCache@20 0049cef8 f audiod:audioman.obj - 0001:0009bf8a _GetAudioManMixer@0 0049cf8a f audiod:audioman.obj - 0001:0009bff3 _TimeToSamples@8 0049cff3 f audiod:audioman.obj - 0001:0009c04c _SamplesToTime@8 0049d04c f audiod:audioman.obj - 0001:0009c0a5 _SizeToSamples@8 0049d0a5 f audiod:audioman.obj - 0001:0009c0fe _SamplesToSize@8 0049d0fe f audiod:audioman.obj - 0001:0009c157 _SoundToStreamAsWave@12 0049d157 f audiod:audioman.obj - 0001:0009c5be _SoundToFileAsWave@8 0049d5be f audiod:audioman.obj - 0001:0009c686 _DetectLeaks@8 0049d686 f audiod:audioman.obj - 0001:0009c6d0 _AllocSoundFromStream@16 0049d6d0 f audiod:sound.obj - 0001:0009c7a8 _AllocSoundFromFile@20 0049d7a8 f audiod:sound.obj - 0001:0009c884 _AllocSoundFromMemory@12 0049d884 f audiod:sound.obj - 0001:0009c922 ??0CAMWavFileSrc@@QAE@XZ 0049d922 f audiod:sound.obj - 0001:0009c978 ??1CAMWavFileSrc@@QAE@XZ 0049d978 f audiod:sound.obj - 0001:0009ca6e ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 0049da6e f audiod:sound.obj - 0001:0009cad8 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 0049dad8 f audiod:sound.obj - 0001:0009cafe ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 0049dafe f audiod:sound.obj - 0001:0009cb80 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 0049db80 f audiod:sound.obj - 0001:0009cddf ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 0049dddf f audiod:sound.obj - 0001:0009d025 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 0049e025 f audiod:sound.obj - 0001:0009d0cb ?AddRef@CAMWavFileSrc@@UAGKXZ 0049e0cb f audiod:sound.obj - 0001:0009d0e9 ?Release@CAMWavFileSrc@@UAGKXZ 0049e0e9 f audiod:sound.obj - 0001:0009d13f ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 0049e13f f audiod:sound.obj - 0001:0009d234 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 0049e234 f audiod:sound.obj - 0001:0009d297 ?GetSamples@CAMWavFileSrc@@UAGKXZ 0049e297 f audiod:sound.obj - 0001:0009d2af ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 0049e2af f audiod:sound.obj - 0001:0009d300 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 0049e300 f audiod:sound.obj - 0001:0009d8fc ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 0049e8fc f audiod:sound.obj - 0001:0009d910 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 0049e910 f audiod:sound.obj - 0001:0009d966 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 0049e966 f audiod:sound.obj - 0001:0009de80 ?IsEqualGUID@@YAHABU_GUID@@0@Z 0049ee80 f audiod:sound.obj - 0001:0009dec0 ??0CRIFF@@QAE@PAUIStream@@@Z 0049eec0 f audiod:sound.obj - 0001:0009df00 ??1CRIFF@@QAE@XZ 0049ef00 f audiod:sound.obj - 0001:0009df40 ?GetStream@CRIFF@@QAEPAUIStream@@XZ 0049ef40 f audiod:sound.obj - 0001:0009df60 ?SwapDWORD@@YAKK@Z 0049ef60 f audiod:sound.obj - 0001:0009df80 ?SwapWORD@@YAGG@Z 0049ef80 f audiod:sound.obj - 0001:0009dfa0 ??0IAMSound@@QAE@XZ 0049efa0 f audiod:sound.obj - 0001:0009dfd0 ??0IAMWavFileSrc@@QAE@XZ 0049efd0 f audiod:sound.obj - 0001:0009e000 ??_GCAMWavFileSrc@@QAEPAXI@Z 0049f000 f audiod:sound.obj - 0001:0009e040 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 0049f040 f audiod:sound.obj - 0001:0009e050 ?AddRef@CAMWavFileSrc@@W3AGKXZ 0049f050 f audiod:sound.obj - 0001:0009e060 ?Release@CAMWavFileSrc@@W3AGKXZ 0049f060 f audiod:sound.obj - 0001:0009e070 _AllocLoopFilter@12 0049f070 f audiod:sndloop.obj - 0001:0009e10e ?AddRef@CAMLoopFilter@@UAGKXZ 0049f10e f audiod:sndloop.obj - 0001:0009e129 ?Release@CAMLoopFilter@@UAGKXZ 0049f129 f audiod:sndloop.obj - 0001:0009e144 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 0049f144 f audiod:sndloop.obj - 0001:0009e1de ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 0049f1de f audiod:sndloop.obj - 0001:0009e314 ?GetSamples@CAMLoopFilter@@UAGKXZ 0049f314 f audiod:sndloop.obj - 0001:0009e345 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 0049f345 f audiod:sndloop.obj - 0001:0009e3af ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049f3af f audiod:sndloop.obj - 0001:0009e5f0 ??0CClassFactory@@QAE@XZ 0049f5f0 f audiod:factory.obj - 0001:0009e624 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 0049f624 f audiod:factory.obj - 0001:0009e957 ?AddRef@CClassFactory@@UAGKXZ 0049f957 f audiod:factory.obj - 0001:0009e975 ?Release@CClassFactory@@UAGKXZ 0049f975 f audiod:factory.obj - 0001:0009e9be ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 0049f9be f audiod:factory.obj - 0001:0009ea53 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 0049fa53 f audiod:factory.obj - 0001:0009f190 ?LockServer@CClassFactory@@UAGJH@Z 004a0190 f audiod:factory.obj - 0001:0009f1b0 ??0IClassFactory@@QAE@XZ 004a01b0 f audiod:factory.obj - 0001:0009f1e0 ??0CAMGateFilter@@QAE@XZ 004a01e0 f audiod:factory.obj - 0001:0009f270 ??0CAMLoopFilter@@QAE@XZ 004a0270 f audiod:factory.obj - 0001:0009f300 ??0CAMFaderFilter@@QAE@XZ 004a0300 f audiod:factory.obj - 0001:0009f390 ??0CAMRandomizeFilter@@QAE@XZ 004a0390 f audiod:factory.obj - 0001:0009f420 ??0CAMDistortFilter@@QAE@XZ 004a0420 f audiod:factory.obj - 0001:0009f4b0 ??0CAMStereoFilter@@QAE@XZ 004a04b0 f audiod:factory.obj - 0001:0009f540 ??0CAMTrimFilter@@QAE@XZ 004a0540 f audiod:factory.obj - 0001:0009f5d0 ??0CAMBiasFilter@@QAE@XZ 004a05d0 f audiod:factory.obj - 0001:0009f660 ??_ECAMGateFilter@@UAEPAXI@Z 004a0660 f audiod:factory.obj - 0001:0009f660 ??_GCAMGateFilter@@UAEPAXI@Z 004a0660 f audiod:factory.obj - 0001:0009f6a0 ??0IAMGateFilter@@QAE@XZ 004a06a0 f audiod:factory.obj - 0001:0009f6d0 ??_GCAMLoopFilter@@UAEPAXI@Z 004a06d0 f audiod:factory.obj - 0001:0009f6d0 ??_ECAMLoopFilter@@UAEPAXI@Z 004a06d0 f audiod:factory.obj - 0001:0009f710 ??0IAMLoopFilter@@QAE@XZ 004a0710 f audiod:factory.obj - 0001:0009f740 ??_GCAMFaderFilter@@UAEPAXI@Z 004a0740 f audiod:factory.obj - 0001:0009f740 ??_ECAMFaderFilter@@UAEPAXI@Z 004a0740 f audiod:factory.obj - 0001:0009f780 ??0IAMFaderFilter@@QAE@XZ 004a0780 f audiod:factory.obj - 0001:0009f7b0 ??_ECAMRandomizeFilter@@UAEPAXI@Z 004a07b0 f audiod:factory.obj - 0001:0009f7b0 ??_GCAMRandomizeFilter@@UAEPAXI@Z 004a07b0 f audiod:factory.obj - 0001:0009f7f0 ??0IAMRandomizeFilter@@QAE@XZ 004a07f0 f audiod:factory.obj - 0001:0009f820 ??_GCAMDistortFilter@@UAEPAXI@Z 004a0820 f audiod:factory.obj - 0001:0009f820 ??_ECAMDistortFilter@@UAEPAXI@Z 004a0820 f audiod:factory.obj - 0001:0009f860 ??0IAMDistortFilter@@QAE@XZ 004a0860 f audiod:factory.obj - 0001:0009f890 ??_GCAMStereoFilter@@UAEPAXI@Z 004a0890 f audiod:factory.obj - 0001:0009f890 ??_ECAMStereoFilter@@UAEPAXI@Z 004a0890 f audiod:factory.obj - 0001:0009f8d0 ??0IAMStereoFilter@@QAE@XZ 004a08d0 f audiod:factory.obj - 0001:0009f900 ??_GCAMTrimFilter@@UAEPAXI@Z 004a0900 f audiod:factory.obj - 0001:0009f900 ??_ECAMTrimFilter@@UAEPAXI@Z 004a0900 f audiod:factory.obj - 0001:0009f940 ??0IAMTrimFilter@@QAE@XZ 004a0940 f audiod:factory.obj - 0001:0009f970 ??_ECAMBiasFilter@@UAEPAXI@Z 004a0970 f audiod:factory.obj - 0001:0009f970 ??_GCAMBiasFilter@@UAEPAXI@Z 004a0970 f audiod:factory.obj - 0001:0009f9b0 ??0IAMBiasFilter@@QAE@XZ 004a09b0 f audiod:factory.obj - 0001:0009f9e0 ??1CAMGateFilter@@UAE@XZ 004a09e0 f audiod:factory.obj - 0001:0009fa40 ??1CAMLoopFilter@@UAE@XZ 004a0a40 f audiod:factory.obj - 0001:0009faa0 ??1CAMFaderFilter@@UAE@XZ 004a0aa0 f audiod:factory.obj - 0001:0009fb00 ??1CAMRandomizeFilter@@UAE@XZ 004a0b00 f audiod:factory.obj - 0001:0009fb60 ??1CAMDistortFilter@@UAE@XZ 004a0b60 f audiod:factory.obj - 0001:0009fbc0 ??1CAMStereoFilter@@UAE@XZ 004a0bc0 f audiod:factory.obj - 0001:0009fc20 ??1CAMTrimFilter@@UAE@XZ 004a0c20 f audiod:factory.obj - 0001:0009fc80 ??1CAMBiasFilter@@UAE@XZ 004a0c80 f audiod:factory.obj - 0001:0009fce0 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0ce0 f audiod:factory.obj - 0001:0009fcf0 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 004a0cf0 f audiod:factory.obj - 0001:0009fd00 ?Release@CAMLoopFilter@@WBE@AGKXZ 004a0d00 f audiod:factory.obj - 0001:0009fd10 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0d10 f audiod:factory.obj - 0001:0009fd20 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 004a0d20 f audiod:factory.obj - 0001:0009fd30 ?Release@CAMBiasFilter@@WBE@AGKXZ 004a0d30 f audiod:factory.obj - 0001:0009fd40 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0d40 f audiod:factory.obj - 0001:0009fd50 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 004a0d50 f audiod:factory.obj - 0001:0009fd60 ?Release@CAMTrimFilter@@WBE@AGKXZ 004a0d60 f audiod:factory.obj - 0001:0009fd70 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0d70 f audiod:factory.obj - 0001:0009fd80 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 004a0d80 f audiod:factory.obj - 0001:0009fd90 ?Release@CAMDistortFilter@@WBE@AGKXZ 004a0d90 f audiod:factory.obj - 0001:0009fda0 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0da0 f audiod:factory.obj - 0001:0009fdb0 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 004a0db0 f audiod:factory.obj - 0001:0009fdc0 ?Release@CAMFaderFilter@@WBE@AGKXZ 004a0dc0 f audiod:factory.obj - 0001:0009fdd0 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0dd0 f audiod:factory.obj - 0001:0009fde0 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 004a0de0 f audiod:factory.obj - 0001:0009fdf0 ?Release@CAMStereoFilter@@WBE@AGKXZ 004a0df0 f audiod:factory.obj - 0001:0009fe00 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0e00 f audiod:factory.obj - 0001:0009fe10 ?AddRef@CAMGateFilter@@WBE@AGKXZ 004a0e10 f audiod:factory.obj - 0001:0009fe20 ?Release@CAMGateFilter@@WBE@AGKXZ 004a0e20 f audiod:factory.obj - 0001:0009fe30 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004a0e30 f audiod:factory.obj - 0001:0009fe40 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 004a0e40 f audiod:factory.obj - 0001:0009fe50 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 004a0e50 f audiod:factory.obj - 0001:0009fe60 _DbgOutActive 004a0e60 f audiod:dpf.obj - 0001:0009fe78 _DbgLogActive 004a0e78 f audiod:dpf.obj - 0001:0009fe90 _DbgLogFile 004a0e90 f audiod:dpf.obj - 0001:0009feb9 ?DbgVPrintF@@YAXPAD0@Z 004a0eb9 f audiod:dpf.obj - 0001:000a0041 _dprintf 004a1041 f audiod:dpf.obj - 0001:000a0092 _DbgEnable@4 004a1092 f audiod:dpf.obj - 0001:000a00ba _DbgSetLevel@4 004a10ba f audiod:dpf.obj - 0001:000a00e2 _DbgGetLevel@0 004a10e2 f audiod:dpf.obj - 0001:000a00f7 _DbgInitialize@4 004a10f7 f audiod:dpf.obj - 0001:000a0150 __Assert@8 004a1150 f audiod:dpf.obj - 0001:000a01f0 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 004a11f0 f audiod:audio.obj - 0001:000a02c0 _AllocCacheFilter@12 004a12c0 f audiod:sndcache.obj - 0001:000a0374 ??0CAMCacheFilter@@QAE@XZ 004a1374 f audiod:sndcache.obj - 0001:000a03b3 ??1CAMCacheFilter@@QAE@XZ 004a13b3 f audiod:sndcache.obj - 0001:000a0456 ?AddRef@CAMCacheFilter@@UAGKXZ 004a1456 f audiod:sndcache.obj - 0001:000a0474 ?Release@CAMCacheFilter@@UAGKXZ 004a1474 f audiod:sndcache.obj - 0001:000a04ca ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 004a14ca f audiod:sndcache.obj - 0001:000a05bc ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004a15bc f audiod:sndcache.obj - 0001:000a0805 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a1805 f audiod:sndcache.obj - 0001:000a0857 ?GetSamples@CAMCacheFilter@@UAGKXZ 004a1857 f audiod:sndcache.obj - 0001:000a0888 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 004a1888 f audiod:sndcache.obj - 0001:000a08dd ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a18dd f audiod:sndcache.obj - 0001:000a0b56 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 004a1b56 f audiod:sndcache.obj - 0001:000a0bd5 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 004a1bd5 f audiod:sndcache.obj - 0001:000a0c56 ?FillCache@CAMCacheFilter@@AAGJKK@Z 004a1c56 f audiod:sndcache.obj - 0001:000a0e65 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 004a1e65 f audiod:sndcache.obj - 0001:000a0f5c ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 004a1f5c f audiod:sndcache.obj - 0001:000a1021 ?SetMode@CAMCacheFilter@@UAGJHH@Z 004a2021 f audiod:sndcache.obj - 0001:000a1190 ??0IAMCacheFilter@@QAE@XZ 004a2190 f audiod:sndcache.obj - 0001:000a11c0 ??_GCAMCacheFilter@@QAEPAXI@Z 004a21c0 f audiod:sndcache.obj - 0001:000a1200 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 004a2200 f audiod:sndcache.obj - 0001:000a1210 ?AddRef@CAMCacheFilter@@W3AGKXZ 004a2210 f audiod:sndcache.obj - 0001:000a1220 ?Release@CAMCacheFilter@@W3AGKXZ 004a2220 f audiod:sndcache.obj - 0001:000a1230 _HRESULTFromMMRESULT@4 004a2230 f audiod:utils.obj - 0001:000a14b4 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 004a24b4 f audiod:utils.obj - 0001:000a15a7 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 004a25a7 f audiod:utils.obj - 0001:000a1667 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004a2667 f audiod:utils.obj - 0001:000a1691 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004a2691 f audiod:utils.obj - 0001:000a16f3 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004a26f3 f audiod:utils.obj - 0001:000a1715 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004a2715 f audiod:utils.obj - 0001:000a1736 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004a2736 f audiod:utils.obj - 0001:000a176b ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004a276b f audiod:utils.obj - 0001:000a179d ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 004a279d f audiod:utils.obj - 0001:000a1887 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 004a2887 f audiod:utils.obj - 0001:000a1966 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 004a2966 f audiod:utils.obj - 0001:000a1b30 ?MultDivUL@@YAKKKK@Z 004a2b30 f audiod:utils.obj - 0001:000a1ba0 ??2CDebugMem@@SAPAXI@Z 004a2ba0 f audiod:debugmem.obj - 0001:000a1bbe ??3CDebugMem@@SAXPAX@Z 004a2bbe f audiod:debugmem.obj - 0001:000a1bda ?AllocPtr@CDebugMem@@SAPAXIK@Z 004a2bda f audiod:debugmem.obj - 0001:000a1c70 ?FreePtr@CDebugMem@@SAHPAX@Z 004a2c70 f audiod:debugmem.obj - 0001:000a1d58 ?DetectLeaks@CDebugMem@@SAHK@Z 004a2d58 f audiod:debugmem.obj - 0001:000a1e20 _AMRIFFStream_CreateFromIStream@8 004a2e20 f audiod:riffstrm.obj - 0001:000a1e98 ??0CAMRIFFStream@@QAE@PAUIStream@@@Z 004a2e98 f audiod:riffstrm.obj - 0001:000a1efd ??1CAMRIFFStream@@QAE@XZ 004a2efd f audiod:riffstrm.obj - 0001:000a1f4a ?AddRef@CAMRIFFStream@@UAGKXZ 004a2f4a f audiod:riffstrm.obj - 0001:000a1f68 ?Release@CAMRIFFStream@@UAGKXZ 004a2f68 f audiod:riffstrm.obj - 0001:000a1fbe ?QueryInterface@CAMRIFFStream@@UAGJABU_GUID@@PAPAX@Z 004a2fbe f audiod:riffstrm.obj - 0001:000a2059 ?Descend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@0I@Z 004a3059 f audiod:riffstrm.obj - 0001:000a2214 ?Ascend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004a3214 f audiod:riffstrm.obj - 0001:000a2349 ?CreateChunk@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004a3349 f audiod:riffstrm.obj - 0001:000a2403 ?MyRead@CAMRIFFStream@@AAGJPAXJ@Z 004a3403 f audiod:riffstrm.obj - 0001:000a244b ?MyWrite@CAMRIFFStream@@AAGJPBXJ@Z 004a344b f audiod:riffstrm.obj - 0001:000a2493 ?MySeek@CAMRIFFStream@@AAGJJH@Z 004a3493 f audiod:riffstrm.obj - 0001:000a24f0 ??0IAMRIFFStream@@QAE@XZ 004a34f0 f audiod:riffstrm.obj - 0001:000a2520 ??_GCAMRIFFStream@@QAEPAXI@Z 004a3520 f audiod:riffstrm.obj - 0001:000a2560 ??0CFileStream@@QAE@PADKK@Z 004a3560 f audiod:stream.obj - 0001:000a2694 ??1CFileStream@@QAE@XZ 004a3694 f audiod:stream.obj - 0001:000a26e0 ?AddRef@CFileStream@@UAGKXZ 004a36e0 f audiod:stream.obj - 0001:000a26fe ?Release@CFileStream@@UAGKXZ 004a36fe f audiod:stream.obj - 0001:000a2754 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 004a3754 f audiod:stream.obj - 0001:000a27ef ?Read@CFileStream@@UAGJPAXKPAK@Z 004a37ef f audiod:stream.obj - 0001:000a2847 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004a3847 f audiod:stream.obj - 0001:000a291e ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 004a391e f audiod:stream.obj - 0001:000a2999 ?Write@CFileStream@@UAGJPBXKPAK@Z 004a3999 f audiod:stream.obj - 0001:000a29e0 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 004a39e0 f audiod:stream.obj - 0001:000a29f7 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004a39f7 f audiod:stream.obj - 0001:000a2a0e ?Commit@CFileStream@@UAGJK@Z 004a3a0e f audiod:stream.obj - 0001:000a2a25 ?Revert@CFileStream@@UAGJXZ 004a3a25 f audiod:stream.obj - 0001:000a2a3c ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004a3a3c f audiod:stream.obj - 0001:000a2a53 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004a3a53 f audiod:stream.obj - 0001:000a2a6a ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 004a3a6a f audiod:stream.obj - 0001:000a2a81 ??0CMemoryStream@@AAE@PAV0@@Z 004a3a81 f audiod:stream.obj - 0001:000a2b4c ??0CMemoryStream@@QAE@PAUIStream@@K@Z 004a3b4c f audiod:stream.obj - 0001:000a2c34 ??0CMemoryStream@@QAE@PADKK@Z 004a3c34 f audiod:stream.obj - 0001:000a2ca3 ??1CMemoryStream@@QAE@XZ 004a3ca3 f audiod:stream.obj - 0001:000a2ce8 ?AddRef@CMemoryStream@@UAGKXZ 004a3ce8 f audiod:stream.obj - 0001:000a2d06 ?Release@CMemoryStream@@UAGKXZ 004a3d06 f audiod:stream.obj - 0001:000a2d5c ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 004a3d5c f audiod:stream.obj - 0001:000a2dfa ?Read@CMemoryStream@@UAGJPAXKPAK@Z 004a3dfa f audiod:stream.obj - 0001:000a2e99 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 004a3e99 f audiod:stream.obj - 0001:000a2f36 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 004a3f36 f audiod:stream.obj - 0001:000a2f97 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 004a3f97 f audiod:stream.obj - 0001:000a3036 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 004a4036 f audiod:stream.obj - 0001:000a304d ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004a404d f audiod:stream.obj - 0001:000a3064 ?Commit@CMemoryStream@@UAGJK@Z 004a4064 f audiod:stream.obj - 0001:000a307b ?Revert@CMemoryStream@@UAGJXZ 004a407b f audiod:stream.obj - 0001:000a3092 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004a4092 f audiod:stream.obj - 0001:000a30a9 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004a40a9 f audiod:stream.obj - 0001:000a30c0 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 004a40c0 f audiod:stream.obj - 0001:000a30e0 ??_GCFileStream@@QAEPAXI@Z 004a40e0 f audiod:stream.obj - 0001:000a3120 ??_GCMemoryStream@@QAEPAXI@Z 004a4120 f audiod:stream.obj - 0001:000a315a _acmFormatSuggest@20 004a415a f audiod:MSACM32.dll - 0001:000a3160 _acmStreamSize@16 004a4160 f audiod:MSACM32.dll - 0001:000a3166 _acmStreamPrepareHeader@12 004a4166 f audiod:MSACM32.dll - 0001:000a316c _acmStreamOpen@32 004a416c f audiod:MSACM32.dll - 0001:000a3172 _acmStreamClose@8 004a4172 f audiod:MSACM32.dll - 0001:000a3178 _acmStreamUnprepareHeader@12 004a4178 f audiod:MSACM32.dll - 0001:000a317e _acmStreamConvert@12 004a417e f audiod:MSACM32.dll - 0001:000a3190 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 004a4190 f audiod:riff.obj - 0001:000a31c0 ?ReadLongData@CRIFF@@QAEJPAK@Z 004a41c0 f audiod:riff.obj - 0001:000a3229 ?ReadShortData@CRIFF@@QAEJPAG@Z 004a4229 f audiod:riff.obj - 0001:000a3294 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 004a4294 f audiod:riff.obj - 0001:000a33d0 ??0CAMPassThruFilter@@QAE@XZ 004a43d0 f audiod:sndpass.obj - 0001:000a33fa ??1CAMPassThruFilter@@UAE@XZ 004a43fa f audiod:sndpass.obj - 0001:000a3477 ?AddRef@CAMPassThruFilter@@UAGKXZ 004a4477 f audiod:sndpass.obj - 0001:000a3495 ?Release@CAMPassThruFilter@@UAGKXZ 004a4495 f audiod:sndpass.obj - 0001:000a34ee ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 004a44ee f audiod:sndpass.obj - 0001:000a3589 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a4589 f audiod:sndpass.obj - 0001:000a35db ?GetSamples@CAMPassThruFilter@@UAGKXZ 004a45db f audiod:sndpass.obj - 0001:000a3618 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 004a4618 f audiod:sndpass.obj - 0001:000a366d ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a466d f audiod:sndpass.obj - 0001:000a36e3 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 004a46e3 f audiod:sndpass.obj - 0001:000a3727 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 004a4727 f audiod:sndpass.obj - 0001:000a37f0 ??_ECAMPassThruFilter@@UAEPAXI@Z 004a47f0 f audiod:sndpass.obj - 0001:000a37f0 ??_GCAMPassThruFilter@@UAEPAXI@Z 004a47f0 f audiod:sndpass.obj - 0001:000a3830 _AllocScheduleFilter@8 004a4830 f audiod:sndsched.obj - 0001:000a38ca ??0CAMScheduleFilter@@QAE@XZ 004a48ca f audiod:sndsched.obj - 0001:000a3909 ??1CAMScheduleFilter@@QAE@XZ 004a4909 f audiod:sndsched.obj - 0001:000a3990 ?AddRef@CAMScheduleFilter@@UAGKXZ 004a4990 f audiod:sndsched.obj - 0001:000a39ae ?Release@CAMScheduleFilter@@UAGKXZ 004a49ae f audiod:sndsched.obj - 0001:000a3a04 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 004a4a04 f audiod:sndsched.obj - 0001:000a3af6 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 004a4af6 f audiod:sndsched.obj - 0001:000a3b1f ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a4b1f f audiod:sndsched.obj - 0001:000a3b71 ?GetSamples@CAMScheduleFilter@@UAGKXZ 004a4b71 f audiod:sndsched.obj - 0001:000a3bae ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 004a4bae f audiod:sndsched.obj - 0001:000a3c03 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a4c03 f audiod:sndsched.obj - 0001:000a3c60 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 004a4c60 f audiod:sndsched.obj - 0001:000a3c77 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 004a4c77 f audiod:sndsched.obj - 0001:000a3c8e ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 004a4c8e f audiod:sndsched.obj - 0001:000a3ca5 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 004a4ca5 f audiod:sndsched.obj - 0001:000a3cbc ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 004a4cbc f audiod:sndsched.obj - 0001:000a3cd3 ?ClearAll@CAMScheduleFilter@@UAGJXZ 004a4cd3 f audiod:sndsched.obj - 0001:000a3cea ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 004a4cea f audiod:sndsched.obj - 0001:000a3cfe ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 004a4cfe f audiod:sndsched.obj - 0001:000a3d15 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 004a4d15 f audiod:sndsched.obj - 0001:000a3d2c ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004a4d2c f audiod:sndsched.obj - 0001:000a3d40 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 004a4d40 f audiod:sndsched.obj - 0001:000a3d60 ??0IAMScheduleFilter@@QAE@XZ 004a4d60 f audiod:sndsched.obj - 0001:000a3d90 ??_GCAMScheduleFilter@@QAEPAXI@Z 004a4d90 f audiod:sndsched.obj - 0001:000a3dd0 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 004a4dd0 f audiod:sndsched.obj - 0001:000a3de0 ?AddRef@CAMScheduleFilter@@W3AGKXZ 004a4de0 f audiod:sndsched.obj - 0001:000a3df0 ?Release@CAMScheduleFilter@@W3AGKXZ 004a4df0 f audiod:sndsched.obj - 0001:000a3e00 _AllocMixFilter@12 004a4e00 f audiod:sndmix.obj - 0001:000a3eb4 ??0CAMMixFilter@@QAE@XZ 004a4eb4 f audiod:sndmix.obj - 0001:000a3ef3 ??1CAMMixFilter@@QAE@XZ 004a4ef3 f audiod:sndmix.obj - 0001:000a3fa2 ?AddRef@CAMMixFilter@@UAGKXZ 004a4fa2 f audiod:sndmix.obj - 0001:000a3fc0 ?Release@CAMMixFilter@@UAGKXZ 004a4fc0 f audiod:sndmix.obj - 0001:000a4016 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 004a5016 f audiod:sndmix.obj - 0001:000a4108 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 004a5108 f audiod:sndmix.obj - 0001:000a41f3 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 004a51f3 f audiod:sndmix.obj - 0001:000a449a ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 004a549a f audiod:sndmix.obj - 0001:000a44fb ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 004a54fb f audiod:sndmix.obj - 0001:000a4536 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a5536 f audiod:sndmix.obj - 0001:000a4588 ?GetSamples@CAMMixFilter@@UAGKXZ 004a5588 f audiod:sndmix.obj - 0001:000a45b9 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 004a55b9 f audiod:sndmix.obj - 0001:000a465c ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a565c f audiod:sndmix.obj - 0001:000a481d ?SetCacheSize@CAMMixFilter@@UAGJK@Z 004a581d f audiod:sndmix.obj - 0001:000a4834 ?SetMode@CAMMixFilter@@UAGJHH@Z 004a5834 f audiod:sndmix.obj - 0001:000a4930 ??0IAMMixFilter@@QAE@XZ 004a5930 f audiod:sndmix.obj - 0001:000a4960 ??_GCAMMixFilter@@QAEPAXI@Z 004a5960 f audiod:sndmix.obj - 0001:000a49a0 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 004a59a0 f audiod:sndmix.obj - 0001:000a49b0 ?AddRef@CAMMixFilter@@W3AGKXZ 004a59b0 f audiod:sndmix.obj - 0001:000a49c0 ?Release@CAMMixFilter@@W3AGKXZ 004a59c0 f audiod:sndmix.obj - 0001:000a49d0 _AllocGainFilter@16 004a59d0 f audiod:sndgain.obj - 0001:000a4a72 ??0CAMGainFilter@@QAE@XZ 004a5a72 f audiod:sndgain.obj - 0001:000a4ae5 ??1CAMGainFilter@@QAE@XZ 004a5ae5 f audiod:sndgain.obj - 0001:000a4ba1 ?AddRef@CAMGainFilter@@UAGKXZ 004a5ba1 f audiod:sndgain.obj - 0001:000a4bbf ?Release@CAMGainFilter@@UAGKXZ 004a5bbf f audiod:sndgain.obj - 0001:000a4c15 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 004a5c15 f audiod:sndgain.obj - 0001:000a4d07 ?EnterFilter@CAMGainFilter@@AAGXXZ 004a5d07 f audiod:sndgain.obj - 0001:000a4d31 ?LeaveFilter@CAMGainFilter@@AAGXXZ 004a5d31 f audiod:sndgain.obj - 0001:000a4d5b ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 004a5d5b f audiod:sndgain.obj - 0001:000a4e35 ?SetGain@CAMGainFilter@@UAGJMM@Z 004a5e35 f audiod:sndgain.obj - 0001:000a4ea0 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a5ea0 f audiod:sndgain.obj - 0001:000a4f07 ?GetSamples@CAMGainFilter@@UAGKXZ 004a5f07 f audiod:sndgain.obj - 0001:000a4f5a ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 004a5f5a f audiod:sndgain.obj - 0001:000a4fc1 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a5fc1 f audiod:sndgain.obj - 0001:000a5096 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 004a6096 f audiod:sndgain.obj - 0001:000a50f9 ?SetMode@CAMGainFilter@@UAGJHH@Z 004a60f9 f audiod:sndgain.obj - 0001:000a51e0 ??0IAMGainFilter@@QAE@XZ 004a61e0 f audiod:sndgain.obj - 0001:000a5210 ??_GMUTX@@QAEPAXI@Z 004a6210 f audiod:sndgain.obj - 0001:000a5250 ??_GCAMGainFilter@@QAEPAXI@Z 004a6250 f audiod:sndgain.obj - 0001:000a5290 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 004a6290 f audiod:sndgain.obj - 0001:000a52a0 ?AddRef@CAMGainFilter@@W3AGKXZ 004a62a0 f audiod:sndgain.obj - 0001:000a52b0 ?Release@CAMGainFilter@@W3AGKXZ 004a62b0 f audiod:sndgain.obj - 0001:000a52c0 _AllocDelayFilter@28 004a62c0 f audiod:sndecho.obj - 0001:000a536e ??0CAMDelayFilter@@QAE@XZ 004a636e f audiod:sndecho.obj - 0001:000a53ad ??1CAMDelayFilter@@QAE@XZ 004a63ad f audiod:sndecho.obj - 0001:000a5488 ?AddRef@CAMDelayFilter@@UAGKXZ 004a6488 f audiod:sndecho.obj - 0001:000a54a6 ?Release@CAMDelayFilter@@UAGKXZ 004a64a6 f audiod:sndecho.obj - 0001:000a54fc ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 004a64fc f audiod:sndecho.obj - 0001:000a55ee ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 004a65ee f audiod:sndecho.obj - 0001:000a5917 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a6917 f audiod:sndecho.obj - 0001:000a5969 ?GetSamples@CAMDelayFilter@@UAGKXZ 004a6969 f audiod:sndecho.obj - 0001:000a599a ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 004a699a f audiod:sndecho.obj - 0001:000a5a37 ?MixInNewData@CAMDelayFilter@@QAGJXZ 004a6a37 f audiod:sndecho.obj - 0001:000a5d58 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a6d58 f audiod:sndecho.obj - 0001:000a612f ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 004a712f f audiod:sndecho.obj - 0001:000a6173 ?SetMode@CAMDelayFilter@@UAGJHH@Z 004a7173 f audiod:sndecho.obj - 0001:000a6240 ??0IAMDelayFilter@@QAE@XZ 004a7240 f audiod:sndecho.obj - 0001:000a6270 ??_GCAMDelayFilter@@QAEPAXI@Z 004a7270 f audiod:sndecho.obj - 0001:000a62b0 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 004a72b0 f audiod:sndecho.obj - 0001:000a62c0 ?AddRef@CAMDelayFilter@@W3AGKXZ 004a72c0 f audiod:sndecho.obj - 0001:000a62d0 ?Release@CAMDelayFilter@@W3AGKXZ 004a72d0 f audiod:sndecho.obj - 0001:000a62e0 _AllocConvertFilter@12 004a72e0 f audiod:sndcnvt.obj - 0001:000a637e ??0CAMConvertFilter@@QAE@XZ 004a737e f audiod:sndcnvt.obj - 0001:000a63bd ??1CAMConvertFilter@@QAE@XZ 004a73bd f audiod:sndcnvt.obj - 0001:000a647c ?AddRef@CAMConvertFilter@@UAGKXZ 004a747c f audiod:sndcnvt.obj - 0001:000a649a ?Release@CAMConvertFilter@@UAGKXZ 004a749a f audiod:sndcnvt.obj - 0001:000a64f0 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 004a74f0 f audiod:sndcnvt.obj - 0001:000a65e2 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 004a75e2 f audiod:sndcnvt.obj - 0001:000a6730 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a7730 f audiod:sndcnvt.obj - 0001:000a67a9 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 004a77a9 f audiod:sndcnvt.obj - 0001:000a680b ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 004a780b f audiod:sndcnvt.obj - 0001:000a686d ?GetSamples@CAMConvertFilter@@UAGKXZ 004a786d f audiod:sndcnvt.obj - 0001:000a68b4 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 004a78b4 f audiod:sndcnvt.obj - 0001:000a6931 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a7931 f audiod:sndcnvt.obj - 0001:000a6d6e ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 004a7d6e f audiod:sndcnvt.obj - 0001:000a6dbc ?SetMode@CAMConvertFilter@@UAGJHH@Z 004a7dbc f audiod:sndcnvt.obj - 0001:000a6e90 ??0IAMConvertFilter@@QAE@XZ 004a7e90 f audiod:sndcnvt.obj - 0001:000a6ec0 ??_GCAMConvertFilter@@QAEPAXI@Z 004a7ec0 f audiod:sndcnvt.obj - 0001:000a6f00 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 004a7f00 f audiod:sndcnvt.obj - 0001:000a6f10 ?AddRef@CAMConvertFilter@@W3AGKXZ 004a7f10 f audiod:sndcnvt.obj - 0001:000a6f20 ?Release@CAMConvertFilter@@W3AGKXZ 004a7f20 f audiod:sndcnvt.obj - 0001:000a6f30 _AllocClipFilter@16 004a7f30 f audiod:sndclip.obj - 0001:000a6fd2 ??0CAMClipFilter@@QAE@XZ 004a7fd2 f audiod:sndclip.obj - 0001:000a7011 ??1CAMClipFilter@@QAE@XZ 004a8011 f audiod:sndclip.obj - 0001:000a7098 ?AddRef@CAMClipFilter@@UAGKXZ 004a8098 f audiod:sndclip.obj - 0001:000a70b6 ?Release@CAMClipFilter@@UAGKXZ 004a80b6 f audiod:sndclip.obj - 0001:000a710c ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 004a810c f audiod:sndclip.obj - 0001:000a71fe ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 004a81fe f audiod:sndclip.obj - 0001:000a7310 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a8310 f audiod:sndclip.obj - 0001:000a7365 ?GetSamples@CAMClipFilter@@UAGKXZ 004a8365 f audiod:sndclip.obj - 0001:000a7396 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 004a8396 f audiod:sndclip.obj - 0001:000a742c ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 004a842c f audiod:sndclip.obj - 0001:000a749f ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a849f f audiod:sndclip.obj - 0001:000a766b ?SetCacheSize@CAMClipFilter@@UAGJK@Z 004a866b f audiod:sndclip.obj - 0001:000a76af ?SetMode@CAMClipFilter@@UAGJHH@Z 004a86af f audiod:sndclip.obj - 0001:000a7780 ??0IAMClipFilter@@QAE@XZ 004a8780 f audiod:sndclip.obj - 0001:000a77b0 ??_GCAMClipFilter@@QAEPAXI@Z 004a87b0 f audiod:sndclip.obj - 0001:000a77f0 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 004a87f0 f audiod:sndclip.obj - 0001:000a7800 ?AddRef@CAMClipFilter@@W3AGKXZ 004a8800 f audiod:sndclip.obj - 0001:000a7810 ?Release@CAMClipFilter@@W3AGKXZ 004a8810 f audiod:sndclip.obj - 0001:000a7820 _AllocAppendFilter@16 004a8820 f audiod:sndapend.obj - 0001:000a78d8 ??0CAMAppendFilter@@QAE@XZ 004a88d8 f audiod:sndapend.obj - 0001:000a7917 ??1CAMAppendFilter@@QAE@XZ 004a8917 f audiod:sndapend.obj - 0001:000a79bd ?AddRef@CAMAppendFilter@@UAGKXZ 004a89bd f audiod:sndapend.obj - 0001:000a79db ?Release@CAMAppendFilter@@UAGKXZ 004a89db f audiod:sndapend.obj - 0001:000a7a31 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 004a8a31 f audiod:sndapend.obj - 0001:000a7b23 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 004a8b23 f audiod:sndapend.obj - 0001:000a7b9b ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 004a8b9b f audiod:sndapend.obj - 0001:000a8275 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004a9275 f audiod:sndapend.obj - 0001:000a82ca ?GetSamples@CAMAppendFilter@@UAGKXZ 004a92ca f audiod:sndapend.obj - 0001:000a82fb ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 004a92fb f audiod:sndapend.obj - 0001:000a8350 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a9350 f audiod:sndapend.obj - 0001:000a858e ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 004a958e f audiod:sndapend.obj - 0001:000a85ce ?SetMode@CAMAppendFilter@@UAGJHH@Z 004a95ce f audiod:sndapend.obj - 0001:000a86c0 ??0IAMAppendFilter@@QAE@XZ 004a96c0 f audiod:sndapend.obj - 0001:000a86f0 ??_GCAMAppendFilter@@QAEPAXI@Z 004a96f0 f audiod:sndapend.obj - 0001:000a8730 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 004a9730 f audiod:sndapend.obj - 0001:000a8740 ?AddRef@CAMAppendFilter@@W3AGKXZ 004a9740 f audiod:sndapend.obj - 0001:000a8750 ?Release@CAMAppendFilter@@W3AGKXZ 004a9750 f audiod:sndapend.obj - 0001:000a8760 _AllocSilentSound@12 004a9760 f audiod:sndmute.obj - 0001:000a8814 ??0CAMSilentSound@@QAE@XZ 004a9814 f audiod:sndmute.obj - 0001:000a8885 ??1CAMSilentSound@@QAE@XZ 004a9885 f audiod:sndmute.obj - 0001:000a88bd ?AddRef@CAMSilentSound@@UAGKXZ 004a98bd f audiod:sndmute.obj - 0001:000a88db ?Release@CAMSilentSound@@UAGKXZ 004a98db f audiod:sndmute.obj - 0001:000a8931 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 004a9931 f audiod:sndmute.obj - 0001:000a8a23 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004a9a23 f audiod:sndmute.obj - 0001:000a8ace ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004a9ace f audiod:sndmute.obj - 0001:000a8b47 ?GetSamples@CAMSilentSound@@UAGKXZ 004a9b47 f audiod:sndmute.obj - 0001:000a8b78 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 004a9b78 f audiod:sndmute.obj - 0001:000a8be2 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 004a9be2 f audiod:sndmute.obj - 0001:000a8cc8 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 004a9cc8 f audiod:sndmute.obj - 0001:000a8cdc ?SetMode@CAMSilentSound@@UAGJHH@Z 004a9cdc f audiod:sndmute.obj - 0001:000a8d50 ??0IAMSilentSound@@QAE@XZ 004a9d50 f audiod:sndmute.obj - 0001:000a8d80 ??_GCAMSilentSound@@QAEPAXI@Z 004a9d80 f audiod:sndmute.obj - 0001:000a8dc0 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 004a9dc0 f audiod:sndmute.obj - 0001:000a8dd0 ?AddRef@CAMSilentSound@@W3AGKXZ 004a9dd0 f audiod:sndmute.obj - 0001:000a8de0 ?Release@CAMSilentSound@@W3AGKXZ 004a9de0 f audiod:sndmute.obj - 0001:000a8df0 ??0CAMMixer@@QAE@XZ 004a9df0 f audiod:cmixer.obj - 0001:000a8efa ??1CAMMixer@@QAE@XZ 004a9efa f audiod:cmixer.obj - 0001:000a8fa3 ?AddRef@CAMMixer@@UAGKXZ 004a9fa3 f audiod:cmixer.obj - 0001:000a8fc1 ?Release@CAMMixer@@UAGKXZ 004a9fc1 f audiod:cmixer.obj - 0001:000a9049 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 004aa049 f audiod:cmixer.obj - 0001:000a90e7 ?EnterMixer@CAMMixer@@AAGXXZ 004aa0e7 f audiod:cmixer.obj - 0001:000a9111 ?LeaveMixer@CAMMixer@@AAGXXZ 004aa111 f audiod:cmixer.obj - 0001:000a913b ?EnterPump@CAMMixer@@AAGXXZ 004aa13b f audiod:cmixer.obj - 0001:000a9165 ?LeavePump@CAMMixer@@AAGXXZ 004aa165 f audiod:cmixer.obj - 0001:000a918f ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 004aa18f f audiod:cmixer.obj - 0001:000a92e6 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 004aa2e6 f audiod:cmixer.obj - 0001:000a9429 ?Uninit@CAMMixer@@UAGJXZ 004aa429 f audiod:cmixer.obj - 0001:000a94a1 ?Activate@CAMMixer@@UAGJH@Z 004aa4a1 f audiod:cmixer.obj - 0001:000a94f9 ?Suspend@CAMMixer@@UAGJH@Z 004aa4f9 f audiod:cmixer.obj - 0001:000a95ba ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004aa5ba f audiod:cmixer.obj - 0001:000a96d1 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004aa6d1 f audiod:cmixer.obj - 0001:000a97f3 ?SetMixerVolume@CAMMixer@@UAGJK@Z 004aa7f3 f audiod:cmixer.obj - 0001:000a9862 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 004aa862 f audiod:cmixer.obj - 0001:000a98d1 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 004aa8d1 f audiod:cmixer.obj - 0001:000a999f ?RemixMode@CAMMixer@@UAGHH@Z 004aa99f f audiod:cmixer.obj - 0001:000a99db ?GetAvgSample@CAMMixer@@UAGKXZ 004aa9db f audiod:cmixer.obj - 0001:000a9db2 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 004aadb2 f audiod:cmixer.obj - 0001:000a9ec8 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 004aaec8 f audiod:cmixer.obj - 0001:000a9f14 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 004aaf14 f audiod:cmixer.obj - 0001:000aa085 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 004ab085 f audiod:cmixer.obj - 0001:000aa1db ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ab1db f audiod:cmixer.obj - 0001:000aa28b ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 004ab28b f audiod:cmixer.obj - 0001:000aa31f ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004ab31f f audiod:cmixer.obj - 0001:000aa475 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004ab475 f audiod:cmixer.obj - 0001:000aa58f ?AllocGroup@CAMMixer@@UAGJPAK@Z 004ab58f f audiod:cmixer.obj - 0001:000aa649 ?FreeGroup@CAMMixer@@UAGJK@Z 004ab649 f audiod:cmixer.obj - 0001:000aa6d7 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ab6d7 f audiod:cmixer.obj - 0001:000aa782 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004ab782 f audiod:cmixer.obj - 0001:000aa890 ?StartGroup@CAMMixer@@UAGJKH@Z 004ab890 f audiod:cmixer.obj - 0001:000aa95d ?ResetGroup@CAMMixer@@UAGJK@Z 004ab95d f audiod:cmixer.obj - 0001:000aaa26 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 004aba26 f audiod:cmixer.obj - 0001:000aaaf3 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 004abaf3 f audiod:cmixer.obj - 0001:000aabc0 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 004abbc0 f audiod:cmixer.obj - 0001:000aac95 ?GetInitFile@CAMMixer@@AAGPADXZ 004abc95 f audiod:cmixer.obj - 0001:000aacac ?LoadProfile@CAMMixer@@AAGJXZ 004abcac f audiod:cmixer.obj - 0001:000aadb5 ?SaveProfile@CAMMixer@@AAGJXZ 004abdb5 f audiod:cmixer.obj - 0001:000aaf33 ?DebugSetup@CAMMixer@@AAGJXZ 004abf33 f audiod:cmixer.obj - 0001:000aafc5 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004abfc5 f audiod:cmixer.obj - 0001:000ab017 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004ac017 f audiod:cmixer.obj - 0001:000ab085 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004ac085 f audiod:cmixer.obj - 0001:000ab10f ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004ac10f f audiod:cmixer.obj - 0001:000ab1aa ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004ac1aa f audiod:cmixer.obj - 0001:000ab1f9 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004ac1f9 f audiod:cmixer.obj - 0001:000ab40d ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 004ac40d f audiod:cmixer.obj - 0001:000ab465 ?AllocMixerData@CAMMixer@@AAGJXZ 004ac465 f audiod:cmixer.obj - 0001:000ab6f8 ?FreeMixerData@CAMMixer@@AAGJXZ 004ac6f8 f audiod:cmixer.obj - 0001:000ab7d3 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 004ac7d3 f audiod:cmixer.obj - 0001:000ab8a5 ?FreeOutputDevice@CAMMixer@@AAGJXZ 004ac8a5 f audiod:cmixer.obj - 0001:000ab8e2 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 004ac8e2 f audiod:cmixer.obj - 0001:000ab9e4 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 004ac9e4 f audiod:cmixer.obj - 0001:000aba52 ?ActivateMixer@CAMMixer@@AAGJXZ 004aca52 f audiod:cmixer.obj - 0001:000abcfe ?DeactivateMixer@CAMMixer@@AAGJXZ 004accfe f audiod:cmixer.obj - 0001:000abdbe ?AllocMixerTimer@CAMMixer@@AAGJXZ 004acdbe f audiod:cmixer.obj - 0001:000abe93 ?FreeMixerTimer@CAMMixer@@AAGJXZ 004ace93 f audiod:cmixer.obj - 0001:000abeeb ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 004aceeb f audiod:cmixer.obj - 0001:000ac02a ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 004ad02a f audiod:cmixer.obj - 0001:000ac0a6 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 004ad0a6 f audiod:cmixer.obj - 0001:000ac0e5 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 004ad0e5 f audiod:cmixer.obj - 0001:000ac191 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 004ad191 f audiod:cmixer.obj - 0001:000ac1f4 ?StartMixer@CAMMixer@@AAGXXZ 004ad1f4 f audiod:cmixer.obj - 0001:000ac389 ?StopMixer@CAMMixer@@AAGXXZ 004ad389 f audiod:cmixer.obj - 0001:000ac419 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 004ad419 f audiod:cmixer.obj - 0001:000ac51e ?CalcRemixBuffers@CAMMixer@@AAGKXZ 004ad51e f audiod:cmixer.obj - 0001:000ac5da ?RemixBuffers@CAMMixer@@AAGXK@Z 004ad5da f audiod:cmixer.obj - 0001:000ac717 ?Refresh@CAMMixer@@UAGXXZ 004ad717 f audiod:cmixer.obj - 0001:000ac8ec ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 004ad8ec f audiod:cmixer.obj - 0001:000ac986 ?Pump@CAMMixer@@AAGXXZ 004ad986 f audiod:cmixer.obj - 0001:000ac9ae ?MixNextBuffer@CAMMixer@@AAGHXZ 004ad9ae f audiod:cmixer.obj - 0001:000acbe7 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 004adbe7 f audiod:cmixer.obj - 0001:000acc20 ??0IAMMixer@@QAE@XZ 004adc20 f audiod:cmixer.obj - 0001:000acc50 ??_GCAMMixer@@QAEPAXI@Z 004adc50 f audiod:cmixer.obj - 0001:000acc90 ??_GCAMPlaySnd@@QAEPAXI@Z 004adc90 f audiod:cmixer.obj - 0001:000accd0 ??_GCAMChannel@@QAEPAXI@Z 004adcd0 f audiod:cmixer.obj - 0001:000acd10 ??_GCMixerOut@@QAEPAXI@Z 004add10 f audiod:cmixer.obj - 0001:000acd50 _AllocGateFilter@12 004add50 f audiod:sndgate.obj - 0001:000acdee ?AddRef@CAMGateFilter@@UAGKXZ 004addee f audiod:sndgate.obj - 0001:000ace09 ?Release@CAMGateFilter@@UAGKXZ 004ade09 f audiod:sndgate.obj - 0001:000ace24 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 004ade24 f audiod:sndgate.obj - 0001:000acebe ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 004adebe f audiod:sndgate.obj - 0001:000acfe5 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004adfe5 f audiod:sndgate.obj - 0001:000ad100 _AllocFaderFilter@16 004ae100 f audiod:sndfader.obj - 0001:000ad1a2 ?AddRef@CAMFaderFilter@@UAGKXZ 004ae1a2 f audiod:sndfader.obj - 0001:000ad1bd ?Release@CAMFaderFilter@@UAGKXZ 004ae1bd f audiod:sndfader.obj - 0001:000ad1d8 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 004ae1d8 f audiod:sndfader.obj - 0001:000ad272 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 004ae272 f audiod:sndfader.obj - 0001:000ad344 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004ae344 f audiod:sndfader.obj - 0001:000ad3a0 _AllocRandomizeFilter@8 004ae3a0 f audiod:sndrand.obj - 0001:000ad43a ?AddRef@CAMRandomizeFilter@@UAGKXZ 004ae43a f audiod:sndrand.obj - 0001:000ad455 ?Release@CAMRandomizeFilter@@UAGKXZ 004ae455 f audiod:sndrand.obj - 0001:000ad470 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 004ae470 f audiod:sndrand.obj - 0001:000ad50a ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 004ae50a f audiod:sndrand.obj - 0001:000ad533 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 004ae533 f audiod:sndrand.obj - 0001:000ad54a ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 004ae54a f audiod:sndrand.obj - 0001:000ad561 ?Clear@CAMRandomizeFilter@@UAGJXZ 004ae561 f audiod:sndrand.obj - 0001:000ad580 _AllocDistortFilter@12 004ae580 f audiod:snddist.obj - 0001:000ad61e ?AddRef@CAMDistortFilter@@UAGKXZ 004ae61e f audiod:snddist.obj - 0001:000ad639 ?Release@CAMDistortFilter@@UAGKXZ 004ae639 f audiod:snddist.obj - 0001:000ad654 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 004ae654 f audiod:snddist.obj - 0001:000ad6ee ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004ae6ee f audiod:snddist.obj - 0001:000ad815 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004ae815 f audiod:snddist.obj - 0001:000ad980 _AllocStereoFilter@8 004ae980 f audiod:sndstreo.obj - 0001:000ada1a ?AddRef@CAMStereoFilter@@UAGKXZ 004aea1a f audiod:sndstreo.obj - 0001:000ada35 ?Release@CAMStereoFilter@@UAGKXZ 004aea35 f audiod:sndstreo.obj - 0001:000ada50 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 004aea50 f audiod:sndstreo.obj - 0001:000adaea ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 004aeaea f audiod:sndstreo.obj - 0001:000adbe1 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004aebe1 f audiod:sndstreo.obj - 0001:000adcc0 _AllocTrimFilter@8 004aecc0 f audiod:sndtrim.obj - 0001:000add5a ?AddRef@CAMTrimFilter@@UAGKXZ 004aed5a f audiod:sndtrim.obj - 0001:000add75 ?Release@CAMTrimFilter@@UAGKXZ 004aed75 f audiod:sndtrim.obj - 0001:000add90 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 004aed90 f audiod:sndtrim.obj - 0001:000ade2a ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 004aee2a f audiod:sndtrim.obj - 0001:000adee7 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 004aeee7 f audiod:sndtrim.obj - 0001:000ae1d0 _AllocBiasFilter@8 004af1d0 f audiod:sndbias.obj - 0001:000ae26a ?AddRef@CAMBiasFilter@@UAGKXZ 004af26a f audiod:sndbias.obj - 0001:000ae285 ?Release@CAMBiasFilter@@UAGKXZ 004af285 f audiod:sndbias.obj - 0001:000ae2a0 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 004af2a0 f audiod:sndbias.obj - 0001:000ae33a ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 004af33a f audiod:sndbias.obj - 0001:000ae3b1 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 004af3b1 f audiod:sndbias.obj - 0001:000ae65c ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004af65c f audiod:sndbias.obj - 0001:000ae7b0 ?Interpolate@@YGGMMMGG@Z 004af7b0 f audiod:cmixlib.obj - 0001:000ae818 ?DecibelToInternalVol@@YGGM@Z 004af818 f audiod:cmixlib.obj - 0001:000ae9ab ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 004af9ab f audiod:cmixlib.obj - 0001:000aea68 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 004afa68 f audiod:cmixlib.obj - 0001:000aeac6 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 004afac6 f audiod:cmixlib.obj - 0001:000aec6a ?SixteenPanVol@@YGXKPAE0K0@Z 004afc6a f audiod:cmixlib.obj - 0001:000aecc5 ?SixteenVol@@YGXKPAE0K0@Z 004afcc5 f audiod:cmixlib.obj - 0001:000aed20 ?Sixteen@@YGXKPAE0K0@Z 004afd20 f audiod:cmixlib.obj - 0001:000aed54 ?EightPanVol@@YGXKPAE0K0@Z 004afd54 f audiod:cmixlib.obj - 0001:000aedaf ?EightVol@@YGXKPAE0K0@Z 004afdaf f audiod:cmixlib.obj - 0001:000aee0a ?Eight@@YGXKPAE0K0@Z 004afe0a f audiod:cmixlib.obj - 0001:000aee3e ?Muted@@YGXKPAE0K0@Z 004afe3e f audiod:cmixlib.obj - 0001:000aee5f ?slowMixSixteen@@YGXPAF0KPAE@Z 004afe5f f audiod:cmixlib.obj - 0001:000aef13 ?slowMixEight@@YGXPAE0K0@Z 004aff13 f audiod:cmixlib.obj - 0001:000aefb7 ?MixEight@@YGXPAE0K0@Z 004affb7 f audiod:cmixlib.obj - 0001:000af418 ?MixSixteen@@YGXPAF0KPAE@Z 004b0418 f audiod:cmixlib.obj - 0001:000af8cd ?VolAdjustSixteen@@YGXKPAE0K0@Z 004b08cd f audiod:cmixlib.obj - 0001:000b0691 ?VolAdjustEight@@YGXKPAE0K0@Z 004b1691 f audiod:cmixlib.obj - 0001:000b153d ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 004b253d f audiod:cmixlib.obj - 0001:000b23a4 ?PanVolAdjustEight@@YGXKPAE0K0@Z 004b33a4 f audiod:cmixlib.obj - 0001:000b3330 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 004b4330 f audiod:convert.obj - 0001:000b3a27 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 004b4a27 f audiod:convert.obj - 0001:000b3a63 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 004b4a63 f audiod:convert.obj - 0001:000b3af9 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 004b4af9 f audiod:convert.obj - 0001:000b3b8f ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b4b8f f audiod:convert.obj - 0001:000b3ca6 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b4ca6 f audiod:convert.obj - 0001:000b3e01 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b4e01 f audiod:convert.obj - 0001:000b3fb7 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b4fb7 f audiod:convert.obj - 0001:000b416d ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b516d f audiod:convert.obj - 0001:000b4339 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b5339 f audiod:convert.obj - 0001:000b44f4 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b54f4 f audiod:convert.obj - 0001:000b46f8 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b56f8 f audiod:convert.obj - 0001:000b48b0 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b58b0 f audiod:convert.obj - 0001:000b4a94 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b5a94 f audiod:convert.obj - 0001:000b4c4f ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b5c4f f audiod:convert.obj - 0001:000b4e07 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b5e07 f audiod:convert.obj - 0001:000b500b ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b600b f audiod:convert.obj - 0001:000b51ef ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b61ef f audiod:convert.obj - 0001:000b53c3 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b63c3 f audiod:convert.obj - 0001:000b55aa ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b65aa f audiod:convert.obj - 0001:000b5791 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004b6791 f audiod:convert.obj - 0001:000b5950 ?Mono8ToStereo8@@YAGE@Z 004b6950 f audiod:convert.obj - 0001:000b5970 ?Mono8ToMono16@@YAGE@Z 004b6970 f audiod:convert.obj - 0001:000b59a0 ?Mono16ToStereo16@@YAKG@Z 004b69a0 f audiod:convert.obj - 0001:000b59d0 ?Mono16ToMono8@@YAEG@Z 004b69d0 f audiod:convert.obj - 0001:000b59f0 ?Stereo8ToMono8@@YAEG@Z 004b69f0 f audiod:convert.obj - 0001:000b5a60 ?Stereo8ToStereo16@@YAKG@Z 004b6a60 f audiod:convert.obj - 0001:000b5ab0 ?Stereo16ToStereo8@@YAGK@Z 004b6ab0 f audiod:convert.obj - 0001:000b5af0 ?Stereo16ToMono16@@YAGK@Z 004b6af0 f audiod:convert.obj - 0001:000b5b80 ??0CMixerOut@@QAE@XZ 004b6b80 f audiod:cmixout.obj - 0001:000b5bf0 ??1CMixerOut@@QAE@XZ 004b6bf0 f audiod:cmixout.obj - 0001:000b5c6c ?AddRef@CMixerOut@@UAGKXZ 004b6c6c f audiod:cmixout.obj - 0001:000b5c8a ?Release@CMixerOut@@UAGKXZ 004b6c8a f audiod:cmixout.obj - 0001:000b5ce0 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 004b6ce0 f audiod:cmixout.obj - 0001:000b5d7b ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 004b6d7b f audiod:cmixout.obj - 0001:000b5eba ?Suspend@CMixerOut@@QAGJH@Z 004b6eba f audiod:cmixout.obj - 0001:000b603d ?SuspendPump@CMixerOut@@QAGXXZ 004b703d f audiod:cmixout.obj - 0001:000b607a ?GetNumDevs@CMixerOut@@UAGIXZ 004b707a f audiod:cmixout.obj - 0001:000b60c4 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004b70c4 f audiod:cmixout.obj - 0001:000b6125 ?Close@CMixerOut@@UAGIXZ 004b7125 f audiod:cmixout.obj - 0001:000b6172 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004b7172 f audiod:cmixout.obj - 0001:000b61cb ?GetVolume@CMixerOut@@UAGIPAK@Z 004b71cb f audiod:cmixout.obj - 0001:000b621c ?SetVolume@CMixerOut@@UAGIK@Z 004b721c f audiod:cmixout.obj - 0001:000b628d ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004b728d f audiod:cmixout.obj - 0001:000b62e2 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004b72e2 f audiod:cmixout.obj - 0001:000b6337 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004b7337 f audiod:cmixout.obj - 0001:000b638c ?Pause@CMixerOut@@UAGIXZ 004b738c f audiod:cmixout.obj - 0001:000b63d9 ?Restart@CMixerOut@@UAGIXZ 004b73d9 f audiod:cmixout.obj - 0001:000b6426 ?Reset@CMixerOut@@UAGIXZ 004b7426 f audiod:cmixout.obj - 0001:000b6473 ?BreakLoop@CMixerOut@@UAGIXZ 004b7473 f audiod:cmixout.obj - 0001:000b64c0 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 004b74c0 f audiod:cmixout.obj - 0001:000b6515 ?GetPitch@CMixerOut@@UAGIPAK@Z 004b7515 f audiod:cmixout.obj - 0001:000b6566 ?SetPitch@CMixerOut@@UAGIK@Z 004b7566 f audiod:cmixout.obj - 0001:000b65b7 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 004b75b7 f audiod:cmixout.obj - 0001:000b6608 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 004b7608 f audiod:cmixout.obj - 0001:000b6659 ?GetID@CMixerOut@@UAGIPAI@Z 004b7659 f audiod:cmixout.obj - 0001:000b66aa ?Message@CMixerOut@@UAGIIKK@Z 004b76aa f audiod:cmixout.obj - 0001:000b6703 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 004b7703 f audiod:cmixout.obj - 0001:000b6760 ??0IAMWaveOut@@QAE@XZ 004b7760 f audiod:cmixout.obj - 0001:000b6790 ??_GCRealOut@@QAEPAXI@Z 004b7790 f audiod:cmixout.obj - 0001:000b67d0 ??0CAMPlaySnd@@QAE@XZ 004b77d0 f audiod:cplaysnd.obj - 0001:000b680e ??1CAMPlaySnd@@QAE@XZ 004b780e f audiod:cplaysnd.obj - 0001:000b685b ?AddRef@CAMPlaySnd@@UAGKXZ 004b785b f audiod:cplaysnd.obj - 0001:000b6879 ?Release@CAMPlaySnd@@UAGKXZ 004b7879 f audiod:cplaysnd.obj - 0001:000b68cf ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 004b78cf f audiod:cplaysnd.obj - 0001:000b696a ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 004b796a f audiod:cplaysnd.obj - 0001:000b6a6a ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004b7a6a f audiod:cplaysnd.obj - 0001:000b6aba ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 004b7aba f audiod:cplaysnd.obj - 0001:000b6b10 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004b7b10 f audiod:cplaysnd.obj - 0001:000b6b30 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 004b7b30 f audiod:cplaysnd.obj - 0001:000b6b50 ?AddRef@CAMChannel@@UAGKXZ 004b7b50 f audiod:cchannel.obj - 0001:000b6b6e ?Release@CAMChannel@@UAGKXZ 004b7b6e f audiod:cchannel.obj - 0001:000b6c54 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 004b7c54 f audiod:cchannel.obj - 0001:000b6d2b ??0CAMChannel@@QAE@XZ 004b7d2b f audiod:cchannel.obj - 0001:000b6db0 ??1CAMChannel@@QAE@XZ 004b7db0 f audiod:cchannel.obj - 0001:000b6eb2 ?EnterChannel@CAMChannel@@AAGXXZ 004b7eb2 f audiod:cchannel.obj - 0001:000b6ee2 ?LeaveChannel@CAMChannel@@AAGXXZ 004b7ee2 f audiod:cchannel.obj - 0001:000b6f12 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 004b7f12 f audiod:cchannel.obj - 0001:000b704a ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 004b804a f audiod:cchannel.obj - 0001:000b70f1 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004b80f1 f audiod:cchannel.obj - 0001:000b72a4 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 004b82a4 f audiod:cchannel.obj - 0001:000b753c ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 004b853c f audiod:cchannel.obj - 0001:000b75e8 ?Play@CAMChannel@@UAGJXZ 004b85e8 f audiod:cchannel.obj - 0001:000b767e ?Stop@CAMChannel@@UAGJXZ 004b867e f audiod:cchannel.obj - 0001:000b7776 ?Finish@CAMChannel@@UAGJXZ 004b8776 f audiod:cchannel.obj - 0001:000b77cd ?IsPlaying@CAMChannel@@UAGHXZ 004b87cd f audiod:cchannel.obj - 0001:000b7814 ?Samples@CAMChannel@@UAGKXZ 004b8814 f audiod:cchannel.obj - 0001:000b7868 ?SetPosition@CAMChannel@@UAGJK@Z 004b8868 f audiod:cchannel.obj - 0001:000b790c ?GetPosition@CAMChannel@@UAGJPAK@Z 004b890c f audiod:cchannel.obj - 0001:000b797a ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004b897a f audiod:cchannel.obj - 0001:000b7a24 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004b8a24 f audiod:cchannel.obj - 0001:000b7ad3 ?SetTimePos@CAMChannel@@UAGJK@Z 004b8ad3 f audiod:cchannel.obj - 0001:000b7b43 ?GetTimePos@CAMChannel@@UAGJPAK@Z 004b8b43 f audiod:cchannel.obj - 0001:000b7bbf ?Mute@CAMChannel@@UAGJH@Z 004b8bbf f audiod:cchannel.obj - 0001:000b7c3a ?SetVolume@CAMChannel@@UAGJK@Z 004b8c3a f audiod:cchannel.obj - 0001:000b7cc0 ?SetChannelVol@CAMChannel@@AAGXGG@Z 004b8cc0 f audiod:cchannel.obj - 0001:000b7db5 ?GetVolume@CAMChannel@@UAGJPAK@Z 004b8db5 f audiod:cchannel.obj - 0001:000b7e20 ?SetGain@CAMChannel@@UAGJMM@Z 004b8e20 f audiod:cchannel.obj - 0001:000b7e9f ?GetGain@CAMChannel@@UAGJPAM0@Z 004b8e9f f audiod:cchannel.obj - 0001:000b7f1f ?DoRemix@CAMChannel@@AAGXXZ 004b8f1f f audiod:cchannel.obj - 0001:000b7f5d ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 004b8f5d f audiod:cchannel.obj - 0001:000b7f7d ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 004b8f7d f audiod:cchannel.obj - 0001:000b8231 ?ClearNotify@CAMChannel@@AAGXK@Z 004b9231 f audiod:cchannel.obj - 0001:000b8311 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 004b9311 f audiod:cchannel.obj - 0001:000b8659 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 004b9659 f audiod:cchannel.obj - 0001:000b8821 ?RevertTo@CAMChannel@@UAGJK@Z 004b9821 f audiod:cchannel.obj - 0001:000b8897 ?GetActiveState@CAMChannel@@UAGHXZ 004b9897 f audiod:cchannel.obj - 0001:000b88cc ?DoStart@CAMChannel@@UAGJH@Z 004b98cc f audiod:cchannel.obj - 0001:000b89b5 ?DoReset@CAMChannel@@UAGJXZ 004b99b5 f audiod:cchannel.obj - 0001:000b8a26 ?DoPosition@CAMChannel@@UAGJK@Z 004b9a26 f audiod:cchannel.obj - 0001:000b8a8b ?DoVolume@CAMChannel@@UAGJK@Z 004b9a8b f audiod:cchannel.obj - 0001:000b8af4 ?DoGain@CAMChannel@@UAGJMMH@Z 004b9af4 f audiod:cchannel.obj - 0001:000b8bae ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 004b9bae f audiod:cchannel.obj - 0001:000b8bcb ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 004b9bcb f audiod:cchannel.obj - 0001:000b8be3 ?SetPriority@CAMChannel@@UAGJK@Z 004b9be3 f audiod:cchannel.obj - 0001:000b8c00 ?GetPriority@CAMChannel@@UAGKXZ 004b9c00 f audiod:cchannel.obj - 0001:000b8c18 ?SetGroup@CAMChannel@@UAGJK@Z 004b9c18 f audiod:cchannel.obj - 0001:000b8c35 ?GetGroup@CAMChannel@@UAGKXZ 004b9c35 f audiod:cchannel.obj - 0001:000b8c50 ??0IAMChannel@@QAE@XZ 004b9c50 f audiod:cchannel.obj - 0001:000b8c80 ??0IAMMixerChannel@@QAE@XZ 004b9c80 f audiod:cchannel.obj - 0001:000b8cb0 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 004b9cb0 f audiod:cchannel.obj - 0001:000b8cc0 ?AddRef@CAMChannel@@W3AGKXZ 004b9cc0 f audiod:cchannel.obj - 0001:000b8cd0 ?Release@CAMChannel@@W3AGKXZ 004b9cd0 f audiod:cchannel.obj - 0001:000b8ce0 ??0CRealOut@@QAE@XZ 004b9ce0 f audiod:crealout.obj - 0001:000b8d32 ??1CRealOut@@QAE@XZ 004b9d32 f audiod:crealout.obj - 0001:000b8d82 ?AddRef@CRealOut@@UAGKXZ 004b9d82 f audiod:crealout.obj - 0001:000b8da0 ?Release@CRealOut@@UAGKXZ 004b9da0 f audiod:crealout.obj - 0001:000b8df6 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 004b9df6 f audiod:crealout.obj - 0001:000b8e91 ?GetNumDevs@CRealOut@@UAGIXZ 004b9e91 f audiod:crealout.obj - 0001:000b8ea9 ?Init@CRealOut@@QAGJXZ 004b9ea9 f audiod:crealout.obj - 0001:000b8ec7 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004b9ec7 f audiod:crealout.obj - 0001:000b8f30 ?Close@CRealOut@@UAGIXZ 004b9f30 f audiod:crealout.obj - 0001:000b8f9c ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004b9f9c f audiod:crealout.obj - 0001:000b8fdc ?GetVolume@CRealOut@@UAGIPAK@Z 004b9fdc f audiod:crealout.obj - 0001:000b902a ?SetVolume@CRealOut@@UAGIK@Z 004ba02a f audiod:crealout.obj - 0001:000b9078 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ba078 f audiod:crealout.obj - 0001:000b90bb ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ba0bb f audiod:crealout.obj - 0001:000b90fe ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ba0fe f audiod:crealout.obj - 0001:000b9141 ?Pause@CRealOut@@UAGIXZ 004ba141 f audiod:crealout.obj - 0001:000b917c ?Restart@CRealOut@@UAGIXZ 004ba17c f audiod:crealout.obj - 0001:000b91b7 ?Reset@CRealOut@@UAGIXZ 004ba1b7 f audiod:crealout.obj - 0001:000b91f2 ?BreakLoop@CRealOut@@UAGIXZ 004ba1f2 f audiod:crealout.obj - 0001:000b922d ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 004ba22d f audiod:crealout.obj - 0001:000b9270 ?GetPitch@CRealOut@@UAGIPAK@Z 004ba270 f audiod:crealout.obj - 0001:000b92af ?SetPitch@CRealOut@@UAGIK@Z 004ba2af f audiod:crealout.obj - 0001:000b92ee ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 004ba2ee f audiod:crealout.obj - 0001:000b932d ?SetPlaybackRate@CRealOut@@UAGIK@Z 004ba32d f audiod:crealout.obj - 0001:000b936c ?GetID@CRealOut@@UAGIPAI@Z 004ba36c f audiod:crealout.obj - 0001:000b93ab ?Message@CRealOut@@UAGIIKK@Z 004ba3ab f audiod:crealout.obj - 0001:000b93f2 ?GetErrorText@CRealOut@@UAGIIPADI@Z 004ba3f2 f audiod:crealout.obj - 0001:000b9440 ??0CFakeOut@@QAE@XZ 004ba440 f audiod:cfakeout.obj - 0001:000b94c3 ??1CFakeOut@@QAE@XZ 004ba4c3 f audiod:cfakeout.obj - 0001:000b94e2 ?AddRef@CFakeOut@@UAGKXZ 004ba4e2 f audiod:cfakeout.obj - 0001:000b9500 ?Release@CFakeOut@@UAGKXZ 004ba500 f audiod:cfakeout.obj - 0001:000b9556 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 004ba556 f audiod:cfakeout.obj - 0001:000b95f1 ?Init@CFakeOut@@QAGJXZ 004ba5f1 f audiod:cfakeout.obj - 0001:000b960f ?GetNumDevs@CFakeOut@@UAGIXZ 004ba60f f audiod:cfakeout.obj - 0001:000b9626 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004ba626 f audiod:cfakeout.obj - 0001:000b96db ?Close@CFakeOut@@UAGIXZ 004ba6db f audiod:cfakeout.obj - 0001:000b9739 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004ba739 f audiod:cfakeout.obj - 0001:000b97e1 ?GetVolume@CFakeOut@@UAGIPAK@Z 004ba7e1 f audiod:cfakeout.obj - 0001:000b9836 ?SetVolume@CFakeOut@@UAGIK@Z 004ba836 f audiod:cfakeout.obj - 0001:000b987f ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004ba87f f audiod:cfakeout.obj - 0001:000b98e1 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004ba8e1 f audiod:cfakeout.obj - 0001:000b9943 ?StartPlayback@CFakeOut@@AAGXXZ 004ba943 f audiod:cfakeout.obj - 0001:000b99a1 ?SuspendPump@CFakeOut@@QAGXXZ 004ba9a1 f audiod:cfakeout.obj - 0001:000b9a22 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004baa22 f audiod:cfakeout.obj - 0001:000b9b46 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 004bab46 f audiod:cfakeout.obj - 0001:000b9baa ?Pause@CFakeOut@@UAGIXZ 004babaa f audiod:cfakeout.obj - 0001:000b9c01 ?Restart@CFakeOut@@UAGIXZ 004bac01 f audiod:cfakeout.obj - 0001:000b9c61 ?Reset@CFakeOut@@UAGIXZ 004bac61 f audiod:cfakeout.obj - 0001:000b9cec ?BreakLoop@CFakeOut@@UAGIXZ 004bacec f audiod:cfakeout.obj - 0001:000b9d03 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 004bad03 f audiod:cfakeout.obj - 0001:000b9d1a ?GetPitch@CFakeOut@@UAGIPAK@Z 004bad1a f audiod:cfakeout.obj - 0001:000b9d31 ?SetPitch@CFakeOut@@UAGIK@Z 004bad31 f audiod:cfakeout.obj - 0001:000b9d48 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 004bad48 f audiod:cfakeout.obj - 0001:000b9d5f ?SetPlaybackRate@CFakeOut@@UAGIK@Z 004bad5f f audiod:cfakeout.obj - 0001:000b9d76 ?GetID@CFakeOut@@UAGIPAI@Z 004bad76 f audiod:cfakeout.obj - 0001:000b9d8d ?Message@CFakeOut@@UAGIIKK@Z 004bad8d f audiod:cfakeout.obj - 0001:000b9da4 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 004bada4 f audiod:cfakeout.obj - 0001:000b9dc0 ??_GCFakeOut@@QAEPAXI@Z 004badc0 f audiod:cfakeout.obj - 0001:000b9dfc __alloca_probe 004badfc LIBC:chkstk.obj - 0001:000b9dfc __chkstk 004badfc LIBC:chkstk.obj - 0001:000b9e29 __onexit 004bae29 f LIBC:onexit.obj - 0001:000b9e9f _atexit 004bae9f f LIBC:onexit.obj - 0001:000b9eb1 ___onexitinit 004baeb1 f LIBC:onexit.obj - 0001:000b9ee7 __purecall 004baee7 f LIBC:purevirt.obj - 0001:000b9ef4 _memcmp 004baef4 f LIBC:memcmp.obj - 0001:000b9f13 ??2@YAPAXI@Z 004baf13 f LIBC:new.obj - 0001:000b9f22 ??3@YAXPAX@Z 004baf22 f LIBC:delete.obj - 0001:000b9f30 __ftol 004baf30 f LIBC:ftol.obj - 0001:000b9f58 _fdiv_main_routine 004baf58 f LIBC:adj_fdiv.obj - 0001:000ba06f __adj_fdiv_r 004bb06f f LIBC:adj_fdiv.obj - 0001:000ba50e _fdivp_sti_st 004bb50e f LIBC:adj_fdiv.obj - 0001:000ba521 _fdivrp_sti_st 004bb521 f LIBC:adj_fdiv.obj - 0001:000ba534 __adj_fdiv_m32 004bb534 f LIBC:adj_fdiv.obj - 0001:000ba580 __adj_fdiv_m64 004bb580 f LIBC:adj_fdiv.obj - 0001:000ba5cc __adj_fdiv_m16i 004bb5cc f LIBC:adj_fdiv.obj - 0001:000ba600 __adj_fdiv_m32i 004bb600 f LIBC:adj_fdiv.obj - 0001:000ba634 __adj_fdivr_m32 004bb634 f LIBC:adj_fdiv.obj - 0001:000ba680 __adj_fdivr_m64 004bb680 f LIBC:adj_fdiv.obj - 0001:000ba6cc __adj_fdivr_m16i 004bb6cc f LIBC:adj_fdiv.obj - 0001:000ba700 __adj_fdivr_m32i 004bb700 f LIBC:adj_fdiv.obj - 0001:000ba734 __safe_fdiv 004bb734 f LIBC:adj_fdiv.obj - 0001:000ba749 __safe_fdivr 004bb749 f LIBC:adj_fdiv.obj - 0001:000ba75e __fprem_common 004bb75e f LIBC:adj_fdiv.obj - 0001:000ba964 __adj_fprem 004bb964 f LIBC:adj_fdiv.obj - 0001:000baa16 __fprem1_common 004bba16 f LIBC:adj_fdiv.obj - 0001:000bac1c __adj_fprem1 004bbc1c f LIBC:adj_fdiv.obj - 0001:000bacd1 __safe_fprem 004bbcd1 f LIBC:adj_fdiv.obj - 0001:000bacd7 __safe_fprem1 004bbcd7 f LIBC:adj_fdiv.obj - 0001:000bacdd __adj_fpatan 004bbcdd f LIBC:adj_fdiv.obj - 0001:000bace0 __adj_fptan 004bbce0 f LIBC:adj_fdiv.obj - 0001:000bace3 __fpmath 004bbce3 f LIBC:fpinit.obj - 0001:000bacf7 __fpclear 004bbcf7 f LIBC:fpinit.obj - 0001:000bacf8 __cfltcvt_init 004bbcf8 f LIBC:fpinit.obj - 0001:000bad30 _WinMainCRTStartup 004bbd30 f LIBC:wincrt0.obj - 0001:000bae96 __amsg_exit 004bbe96 f LIBC:wincrt0.obj - 0001:000baec8 _memcpy 004bbec8 f LIBC:memcpy.obj - 0001:000bb018 _memset 004bc018 f LIBC:memset.obj - 0001:000bb05c __global_unwind2 004bc05c f LIBC:exsup.obj - 0001:000bb09e __local_unwind2 004bc09e f LIBC:exsup.obj - 0001:000bb0f8 __abnormal_termination 004bc0f8 f LIBC:exsup.obj - 0001:000bb11b ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 004bc11b f LIBC:trnsctrl.obj - 0001:000bb141 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 004bc141 f LIBC:trnsctrl.obj - 0001:000bb176 ?_CallMemberFunction0@@YGXPAX0@Z 004bc176 f LIBC:trnsctrl.obj - 0001:000bb17d ?_CallMemberFunction1@@YGXPAX00@Z 004bc17d f LIBC:trnsctrl.obj - 0001:000bb184 ?_CallMemberFunction2@@YGXPAX00H@Z 004bc184 f LIBC:trnsctrl.obj - 0001:000bb18b ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 004bc18b f LIBC:trnsctrl.obj - 0001:000bb1d9 ___CxxFrameHandler 004bc1d9 f LIBC:trnsctrl.obj - 0001:000bb210 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 004bc210 f LIBC:trnsctrl.obj - 0001:000bb288 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 004bc288 f LIBC:trnsctrl.obj - 0001:000bb3bc _strcat 004bc3bc f LIBC:strcat.obj - 0001:000bb3c0 _strcpy 004bc3c0 LIBC:strcat.obj - 0001:000bb44d _fclose 004bc44d f LIBC:fclose.obj - 0001:000bb4a9 _fputs 004bc4a9 f LIBC:fputs.obj - 0001:000bb4fb __fsopen 004bc4fb f LIBC:fopen.obj - 0001:000bb51e _fopen 004bc51e f LIBC:fopen.obj - 0001:000bb531 _abs 004bc531 f LIBC:abs.obj - 0001:000bb53c _pow 004bc53c LIBC:87ctran.obj - 0001:000bb546 _log 004bc546 LIBC:87ctran.obj - 0001:000bb550 _log10 004bc550 LIBC:87ctran.obj - 0001:000bb557 _exp 004bc557 LIBC:87ctran.obj - 0001:000bb55e __CIpow 004bc55e LIBC:87ctran.obj - 0001:000bb568 __CIlog 004bc568 LIBC:87ctran.obj - 0001:000bb572 __CIlog10 004bc572 LIBC:87ctran.obj - 0001:000bb579 __CIexp 004bc579 LIBC:87ctran.obj - 0001:000bb580 __lrotl 004bc580 f LIBC:rotl.obj - 0001:000bb591 __rotl 004bc591 f LIBC:rotl.obj - 0001:000bb5bc _memmove 004bc5bc f LIBC:memmove.obj - 0001:000bb70a __cinit 004bc70a f LIBC:crt0dat.obj - 0001:000bb73a _exit 004bc73a f LIBC:crt0dat.obj - 0001:000bb74b __exit 004bc74b f LIBC:crt0dat.obj - 0001:000bb7fb _realloc 004bc7fb f LIBC:realloc.obj - 0001:000bb94d __msize 004bc94d f LIBC:msize.obj - 0001:000bb95e _malloc 004bc95e f LIBC:malloc.obj - 0001:000bb971 __nh_malloc 004bc971 f LIBC:malloc.obj - 0001:000bba30 __heap_split_block 004bca30 f LIBC:malloc.obj - 0001:000bba75 _free 004bca75 f LIBC:free.obj - 0001:000bbadd __setdefaultprecision 004bcadd f LIBC:fp8.obj - 0001:000bbaf0 _ms_p5_test_fdiv 004bcaf0 f LIBC:testfdiv.obj - 0001:000bbb36 _ms_p5_mp_test_fdiv 004bcb36 f LIBC:testfdiv.obj - 0001:000bbc09 __forcdecpt 004bcc09 f LIBC:cvt.obj - 0001:000bbc6e __cropzeros 004bcc6e f LIBC:cvt.obj - 0001:000bbccd __positive 004bcccd f LIBC:cvt.obj - 0001:000bbce2 __fassign 004bcce2 f LIBC:cvt.obj - 0001:000bbd25 __cftoe 004bcd25 f LIBC:cvt.obj - 0001:000bbe78 __cftof 004bce78 f LIBC:cvt.obj - 0001:000bbf94 __cftog 004bcf94 f LIBC:cvt.obj - 0001:000bc03c __cfltcvt 004bd03c f LIBC:cvt.obj - 0001:000bc0b8 __XcptFilter 004bd0b8 f LIBC:winxfltr.obj - 0001:000bc243 __ismbblead 004bd243 f LIBC:ismbbyte.obj - 0001:000bc286 __setenvp 004bd286 f LIBC:stdenvp.obj - 0001:000bc351 __setargv 004bd351 f LIBC:stdargv.obj - 0001:000bc64f __setmbcp 004bd64f f LIBC:mbctype.obj - 0001:000bc7dd ___initmbctable 004bd7dd f LIBC:mbctype.obj - 0001:000bc7e8 __ioinit 004bd7e8 f LIBC:ioinit.obj - 0001:000bc8d6 __heap_init 004bd8d6 f LIBC:heapinit.obj - 0001:000bc953 ___getempty 004bd953 f LIBC:heapinit.obj - 0001:000bc980 __except_handler3 004bd980 f LIBC:exsup3.obj - 0001:000bca2e __seh_longjmp_unwind@4 004bda2e f LIBC:exsup3.obj - 0001:000bca49 __NMSG_WRITE 004bda49 f LIBC:crt0msg.obj - 0001:000bcaa1 __GET_RTERRMSG 004bdaa1 f LIBC:crt0msg.obj - 0001:000bcad6 ___InternalCxxFrameHandler 004bdad6 f LIBC:frame.obj - 0001:000bcf49 ___FrameUnwindToState 004bdf49 f LIBC:frame.obj - 0001:000bd448 ?terminate@@YAXXZ 004be448 f LIBC:hooks.obj - 0001:000bd4ba ?_inconsistency@@YAXXZ 004be4ba f LIBC:hooks.obj - 0001:000bd52c __close 004be52c f LIBC:close.obj - 0001:000bd5c2 __freebuf 004be5c2 f LIBC:_freebuf.obj - 0001:000bd5fa _fflush 004be5fa f LIBC:fflush.obj - 0001:000bd646 __flush 004be646 f LIBC:fflush.obj - 0001:000bd6a8 __flushall 004be6a8 f LIBC:fflush.obj - 0001:000bd71d ___endstdio 004be71d f LIBC:fflush.obj - 0001:000bd731 __stbuf 004be731 f LIBC:_sftbuf.obj - 0001:000bd7b2 __ftbuf 004be7b2 f LIBC:_sftbuf.obj - 0001:000bd7f8 _fwrite 004be7f8 f LIBC:fwrite.obj - 0001:000bd94d __openfile 004be94d f LIBC:_open.obj - 0001:000bdae8 __getstream 004beae8 f LIBC:stream.obj - 0001:000bdb39 __fFEXP 004beb39 LIBC:87tran.obj - 0001:000bdba0 __rtinfpopse 004beba0 LIBC:87tran.obj - 0001:000bdba2 __rtinfnpopse 004beba2 LIBC:87tran.obj - 0001:000bdbb2 __fFLN 004bebb2 LIBC:87tran.obj - 0001:000bdc67 __rtinfpop 004bec67 LIBC:87tran.obj - 0001:000bdc69 __rtinfnpop 004bec69 LIBC:87tran.obj - 0001:000bdc86 __ffexpm1 004bec86 LIBC:87tran.obj - 0001:000bdd30 __cintrindisp2 004bed30 f LIBC:87cdisp.obj - 0001:000bdd6e __cintrindisp1 004bed6e f LIBC:87cdisp.obj - 0001:000bdda4 __ctrandisp2 004beda4 f LIBC:87cdisp.obj - 0001:000bdf15 __ctrandisp1 004bef15 f LIBC:87cdisp.obj - 0001:000bdf41 __fload 004bef41 f LIBC:87cdisp.obj - 0001:000bdf7d __heap_abort 004bef7d f LIBC:hpabort.obj - 0001:000bdf88 __heap_grow 004bef88 f LIBC:heapgrow.obj - 0001:000be071 __heap_grow_region 004bf071 f LIBC:heapgrow.obj - 0001:000be11e __heap_free_region 004bf11e f LIBC:heapgrow.obj - 0001:000be158 __heap_search 004bf158 f LIBC:heapsrch.obj - 0001:000be248 __control87 004bf248 f LIBC:ieee87.obj - 0001:000be283 __controlfp 004bf283 f LIBC:ieee87.obj - 0001:000be3ba __fptrap 004bf3ba f LIBC:crt0fp.obj - 0001:000be3c5 __isctype 004bf3c5 f LIBC:isctype.obj - 0001:000be440 _tolower 004bf440 f LIBC:tolower.obj - 0001:000be50c __ZeroTail 004bf50c f LIBC:intrncvt.obj - 0001:000be56c __IncMan 004bf56c f LIBC:intrncvt.obj - 0001:000be5cd __RoundMan 004bf5cd f LIBC:intrncvt.obj - 0001:000be66a __CopyMan 004bf66a f LIBC:intrncvt.obj - 0001:000be687 __FillZeroMan 004bf687 f LIBC:intrncvt.obj - 0001:000be693 __IsZeroMan 004bf693 f LIBC:intrncvt.obj - 0001:000be6b1 __ShrMan 004bf6b1 f LIBC:intrncvt.obj - 0001:000be75c __ld12cvt 004bf75c f LIBC:intrncvt.obj - 0001:000be8f8 __ld12tod 004bf8f8 f LIBC:intrncvt.obj - 0001:000be90e __ld12tof 004bf90e f LIBC:intrncvt.obj - 0001:000be924 __atodbl 004bf924 f LIBC:intrncvt.obj - 0001:000be955 __atoflt 004bf955 f LIBC:intrncvt.obj - 0001:000be986 __fptostr 004bf986 f LIBC:_fptostr.obj - 0001:000bea04 __fltout 004bfa04 f LIBC:cfout.obj - 0001:000bea67 ___dtold 004bfa67 f LIBC:cfout.obj - 0001:000beb31 ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 004bfb31 f LIBC:unhandld.obj - 0001:000beb8a ?_ValidateRead@@YAHPBXI@Z 004bfb8a f LIBC:validate.obj - 0001:000beba8 ?_ValidateWrite@@YAHPAXI@Z 004bfba8 f LIBC:validate.obj - 0001:000bebc6 ?_ValidateExecute@@YAHP6GHXZ@Z 004bfbc6 f LIBC:validate.obj - 0001:000bebe0 _abort 004bfbe0 f LIBC:abort.obj - 0001:000bebff __dosmaperr 004bfbff f LIBC:dosmap.obj - 0001:000bec68 __alloc_osfhnd 004bfc68 f LIBC:osfinfo.obj - 0001:000bec9e __set_osfhnd 004bfc9e f LIBC:osfinfo.obj - 0001:000bed08 __free_osfhnd 004bfd08 f LIBC:osfinfo.obj - 0001:000bed75 __get_osfhandle 004bfd75 f LIBC:osfinfo.obj - 0001:000bedad __commit 004bfdad f LIBC:commit.obj - 0001:000bedfa __write 004bfdfa f LIBC:write.obj - 0001:000bef93 __fcloseall 004bff93 f LIBC:closeall.obj - 0001:000befc4 __isatty 004bffc4 f LIBC:isatty.obj - 0001:000befde __flsbuf 004bffde f LIBC:_flsbuf.obj - 0001:000bf0ea __sopen 004c00ea f LIBC:open.obj - 0001:000bf434 __trandisp1 004c0434 f LIBC:87disp.obj - 0001:000bf49b __trandisp2 004c049b f LIBC:87disp.obj - 0001:000bf527 __rttospopde 004c0527 LIBC:87disp.obj - 0001:000bf52c __rttospop 004c052c LIBC:87disp.obj - 0001:000bf52e __rtnospop 004c052e LIBC:87disp.obj - 0001:000bf530 __rttosnpop 004c0530 LIBC:87disp.obj - 0001:000bf531 __rtnospopde 004c0531 LIBC:87disp.obj - 0001:000bf538 __rtzeropop 004c0538 LIBC:87disp.obj - 0001:000bf53a __rtzeronpop 004c053a LIBC:87disp.obj - 0001:000bf53f __rtonepop 004c053f LIBC:87disp.obj - 0001:000bf541 __rtonenpop 004c0541 LIBC:87disp.obj - 0001:000bf546 __tosnan1 004c0546 LIBC:87disp.obj - 0001:000bf571 __nosnan2 004c0571 LIBC:87disp.obj - 0001:000bf573 __tosnan2 004c0573 LIBC:87disp.obj - 0001:000bf59b __nan2 004c059b LIBC:87disp.obj - 0001:000bf5da __rtindfpop 004c05da LIBC:87disp.obj - 0001:000bf5dc __rtindfnpop 004c05dc LIBC:87disp.obj - 0001:000bf5ed __rttosnpopde 004c05ed LIBC:87disp.obj - 0001:000bf5f7 __rtchsifneg 004c05f7 LIBC:87disp.obj - 0001:000bf5fe __powhlp 004c05fe f LIBC:powhlp.obj - 0001:000bf7eb __d_inttype 004c07eb f LIBC:powhlp.obj - 0001:000bf83d __87except 004c083d f LIBC:87except.obj - 0001:000bf947 __heap_addblock 004c0947 f LIBC:heapadd.obj - 0001:000bfbfe ___crtGetStringTypeA 004c0bfe f LIBC:aw_str.obj - 0001:000bfd75 ___crtLCMapStringA 004c0d75 f LIBC:aw_map.obj - 0001:000bffd4 ___addl 004c0fd4 f LIBC:mantold.obj - 0001:000bfff7 ___add_12 004c0ff7 f LIBC:mantold.obj - 0001:000c0055 ___shl_12 004c1055 f LIBC:mantold.obj - 0001:000c0093 ___shr_12 004c1093 f LIBC:mantold.obj - 0001:000c00c6 ___mtold12 004c10c6 f LIBC:mantold.obj - 0001:000c01aa ___strgtold12 004c11aa f LIBC:strgtold.obj - 0001:000c07e9 _$I10_OUTPUT 004c17e9 f LIBC:x10fout.obj - 0001:000c0b1f _raise 004c1b1f f LIBC:winsig.obj - 0001:000c0ca4 __lseek 004c1ca4 f LIBC:lseek.obj - 0001:000c0d19 __getbuf 004c1d19 f LIBC:_getbuf.obj - 0001:000c0d64 __chsize 004c1d64 f LIBC:chsize.obj - 0001:000c0e98 __read 004c1e98 f LIBC:read.obj - 0001:000c1092 __set_exp 004c2092 f LIBC:util.obj - 0001:000c10c7 __decomp 004c20c7 f LIBC:util.obj - 0001:000c1195 __frnd 004c2195 f LIBC:frnd.obj - 0001:000c11aa __raise_exc 004c21aa f LIBC:fpexcept.obj - 0001:000c14bc __handle_exc 004c24bc f LIBC:fpexcept.obj - 0001:000c1714 __set_errno 004c2714 f LIBC:fpexcept.obj - 0001:000c1740 __matherr 004c2740 f LIBC:matherr.obj - 0001:000c1743 __statfp 004c2743 f LIBC:fpctrl.obj - 0001:000c1754 __clrfp 004c2754 f LIBC:fpctrl.obj - 0001:000c1766 __ctrlfp 004c2766 f LIBC:fpctrl.obj - 0001:000c1796 __set_statfp 004c2796 f LIBC:fpctrl.obj - 0001:000c17f0 __heap_findaddr 004c27f0 f LIBC:findaddr.obj - 0001:000c185a _calloc 004c285a f LIBC:calloc.obj - 0001:000c1894 ___set_invalid_mb_chars 004c2894 f LIBC:setmbval.obj - 0001:000c18c4 _strncpy 004c28c4 f LIBC:strncpy.obj - 0001:000c18e8 ___ld12mul 004c28e8 f LIBC:tenpow.obj - 0001:000c1b28 ___multtenpow12 004c2b28 f LIBC:tenpow.obj - 0001:000c1b9d __setmode 004c2b9d f LIBC:setmode.obj - 0001:000c1c18 _RtlUnwind@16 004c2c18 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 004c3000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 004c3018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 004c3030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 004c3040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 004c3058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 004c3070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004c30c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004c30e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 004c3108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 004c310c base.obj - 0002:00000120 ?_ers@@3VERS@@A 004c3120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 004c3248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 004c3260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 004c3368 utilstr.obj - 0002:000004a4 ?vpappb@@3PAVAPPB@@A 004c34a4 appb.obj - 0002:000004a8 ?vpsndm@@3PAVSNDM@@A 004c34a8 appb.obj - 0002:000004c0 ?vpcex@@3PAVCEX@@A 004c34c0 appb.obj - 0002:000004e8 ?_pclokFirst@CLOK@@1PAV1@A 004c34e8 clok.obj - 0002:0000052c ?_hidLast@CMH@@0JA 004c352c cmd.obj - 0002:000005b4 ?vcactRealize@@3JA 004c35b4 gfx.obj - 0002:000005c8 ?vntl@@3VNTL@@A 004c35c8 gfx.obj - 0002:00000608 ?_gridLast@GOB@@1JA 004c3608 gob.obj - 0002:00000710 ?vwig@@3UWIG@@A 004c3710 appbwin.obj - 0002:00000740 ?_mutxAssert@@3VMUTX@@A 004c3740 appbwin.obj - 0002:00000768 ?_rgpstn@@3QAPAVSTN@@A 004c3768 appbwin.obj - 0002:0000078c ?_fFlushGdi@GPT@@0HA 004c378c gfxwin.obj - 0002:000007c8 ?_pgobScreen@GOB@@0PAV1@A 004c37c8 gobwin.obj - 0002:00000804 ?vpmubCur@@3PAVMUB@@A 004c3804 menuwin.obj - 0002:000008e4 ?_siiLast@SNDV@@1JA 004c38e4 sndm.obj - 0002:00000e58 ?_clip@@3VCLIP@@A 004c3e58 clip.obj - 0002:00000e7c ?vpclip@@3PAVCLIP@@A 004c3e7c clip.obj - 0002:00000eb4 ?_pcflFirst@CFL@@0PAV1@A 004c3eb4 chunk.obj - 0002:00000ed8 ?_pfilFirst@FIL@@1PAV1@A 004c3ed8 file.obj - 0002:00000ee0 ?_mutxList@FIL@@1VMUTX@@A 004c3ee0 file.obj - 0002:00000f08 ?_fniTemp@@3VFNI@@A 004c3f08 fniwin.obj - 0002:00001178 ?_strg@@3VSTRG@@A 004c4178 chelp.obj - 0002:00001190 ?vapp@@3VAPP@@A 004c4190 chelp.obj - 0002:00001230 ?vpsplc@@3PAVSPLC@@A 004c4230 chelp.obj - 0002:00001238 ?vpstrg@@3PAVSTRG@@A 004c4238 chelp.obj - 0002:00001278 ?_fCaseSensitive@@3HA 004c4278 chtop.obj - 0002:00001650 __bufin 004c4650 - 0002:00002650 __heap_descpages 004c5650 - 0002:00002660 __heap_regions 004c5660 - 0002:00002960 ___onexitend 004c5960 - 0002:00002964 ___onexitbegin 004c5964 - 0002:00002968 __acmdln 004c5968 - 0003:00000058 ??_7KCDC@@6B@ 004c6058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 004c6078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 004c6090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004c60b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004c60c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 004c6100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 004c6118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 004c6138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 004c6158 utilstr.obj - 0003:00000170 ??_7APPB@@6B@ 004c6170 appb.obj - 0003:000002a8 ??_7CMH@@6B@ 004c62a8 cmd.obj - 0003:000002d0 ??_7CEX@@6B@ 004c62d0 cmd.obj - 0003:00000350 ??_7CURS@@6B@ 004c6350 cursor.obj - 0003:00000380 ??_7GNV@@6B@ 004c6380 gfx.obj - 0003:00000398 ??_7NTL@@6B@ 004c6398 gfx.obj - 0003:000003b0 ??_7GOB@@6B@ 004c63b0 gob.obj - 0003:00000438 ??_7GTE@@6B@ 004c6438 gob.obj - 0003:00000450 ??_7REGSC@@6B@ 004c6450 region.obj - 0003:00000468 ??_7REGN@@6B@ 004c6468 region.obj - 0003:00000480 ??_7REGBL@@6B@ 004c6480 region.obj - 0003:00000498 ??_7GPT@@6B@ 004c6498 gfxwin.obj - 0003:000004b0 ??_7MUB@@6B@ 004c64b0 menuwin.obj - 0003:000004e8 ??_7GRPB@@6B@ 004c64e8 groups.obj - 0003:00000518 ??_7GLB@@6B@ 004c6518 groups.obj - 0003:00000548 ??_7GL@@6B@ 004c6548 groups.obj - 0003:00000578 ??_7AL@@6B@ 004c6578 groups.obj - 0003:000005a8 ??_7GGB@@6B@ 004c65a8 groups.obj - 0003:000005d8 ??_7GG@@6B@ 004c65d8 groups.obj - 0003:00000608 ??_7AG@@6B@ 004c6608 groups.obj - 0003:00000638 ??_7GSTB@@6B@ 004c6638 groups2.obj - 0003:00000670 ??_7GST@@6B@ 004c6670 groups2.obj - 0003:000006a8 ??_7MBMP@@6B@ 004c66a8 mbmp.obj - 0003:000006d8 ??_7SNDM@@6B@ 004c66d8 sndm.obj - 0003:00000740 ??_7SNDMQ@@6B@ 004c6740 sndm.obj - 0003:000007b0 ??_7SNQUE@@6B@ 004c67b0 sndm.obj - 0003:000007e8 ??_7SNDV@@6B@ 004c67e8 sndm.obj - 0003:00000848 ??_7STBL@@6B@ 004c6848 sndam.obj - 0003:00000888 ??_7CAMS@@6B@ 004c6888 sndam.obj - 0003:000008b8 ??_7AMNOT@@6B@ 004c68b8 sndam.obj - 0003:000008d8 ??_7AMQUE@@6B@ 004c68d8 sndam.obj - 0003:00000910 ??_7SDAM@@6B@ 004c6910 sndam.obj - 0003:00000980 ??_7IStream@@6B@ 004c6980 sndam.obj - 0003:000009b8 ??_7IAMNotifySink@@6B@ 004c69b8 sndam.obj - 0003:000009d8 ??_7IUnknown@@6B@ 004c69d8 sndam.obj - 0003:000009e8 ??_7MIDO@@6B@ 004c69e8 mididev.obj - 0003:00000a00 ??_7MDPS@@6B@ 004c6a00 mididev2.obj - 0003:00000a70 ??_7MDWS@@6B@ 004c6a70 mididev2.obj - 0003:00000aa0 ??_7MSQUE@@6B@ 004c6aa0 mididev2.obj - 0003:00000ae0 ??_7MSMIX@@6B@ 004c6ae0 mididev2.obj - 0003:00000af8 ??_7MISI@@6B@ 004c6af8 mididev2.obj - 0003:00000b30 ??_7WMS@@6B@ 004c6b30 mididev2.obj - 0003:00000b68 ??_7OMS@@6B@ 004c6b68 mididev2.obj - 0003:00000ba0 ??_7MSTP@@6B@ 004c6ba0 midi.obj - 0003:00000bb8 ??_7MIDS@@6B@ 004c6bb8 midi.obj - 0003:00000be8 ??_7TXHD@@6B@ 004c6be8 kidhelp.obj - 0003:00000d40 ??_7STRG@@6B@ 004c6d40 screxe.obj - 0003:00000d58 ??_7TXTB@@6B@ 004c6d58 rtxt.obj - 0003:00000e48 ??_7TXRD@@6B@ 004c6e48 rtxt.obj - 0003:00000f58 ??_7RTUN@@6B@ 004c6f58 rtxt.obj - 0003:00000f78 ??_7UNDB@@6B@ 004c6f78 rtxt.obj - 0003:00000f98 ??_7TXTG@@6B@ 004c6f98 rtxt2.obj - 0003:000010a0 ??_7TXRG@@6B@ 004c70a0 rtxt2.obj - 0003:000011c0 ??_7DOCB@@6B@ 004c71c0 docb.obj - 0003:00001250 ??_7DTE@@6B@ 004c7250 docb.obj - 0003:00001268 ??_7DDG@@6B@ 004c7268 docb.obj - 0003:00001330 ??_7DMD@@6B@ 004c7330 docb.obj - 0003:000013b8 ??_7DMW@@6B@ 004c73b8 docb.obj - 0003:00001440 ??_7DSG@@6B@ 004c7440 docb.obj - 0003:000014d0 ??_7DSSP@@6B@ 004c74d0 docb.obj - 0003:00001558 ??_7DSSM@@6B@ 004c7558 docb.obj - 0003:000015e0 ??_7CLIP@@6B@ 004c75e0 clip.obj - 0003:000015f8 ??_7BSF@@6B@ 004c75f8 stream.obj - 0003:00001610 ??_7CFL@@6B@ 004c7610 chunk.obj - 0003:00001628 ??_7CGE@@6B@ 004c7628 chunk.obj - 0003:00001640 ??_7CODM@@6B@ 004c7640 codec.obj - 0003:00001670 ??_7BACO@@6B@ 004c7670 crf.obj - 0003:000016a0 ??_7CRF@@6B@ 004c76a0 crf.obj - 0003:000016d0 ??_7CRM@@6B@ 004c76d0 crf.obj - 0003:00001700 ??_7RCA@@6B@ 004c7700 crf.obj - 0003:00001730 ??_7FIL@@6B@ 004c7730 file.obj - 0003:00001748 ??_7BLCK@@6B@ 004c7748 file.obj - 0003:00001760 ??_7MSFIL@@6B@ 004c7760 file.obj - 0003:00001788 ??_7MSNK@@6B@ 004c7788 file.obj - 0003:000017b0 ??_7FNI@@6B@ 004c77b0 fniwin.obj - 0003:000017c8 ??_7CHSE@@6B@ 004c77c8 chse.obj - 0003:000017e0 ??_7DLG@@6B@ 004c77e0 dlg.obj - 0003:00001810 ??_7CTL@@6B@ 004c7810 ctl.obj - 0003:00001898 ??_7SCB@@6B@ 004c7898 ctl.obj - 0003:00001920 ??_7WSB@@6B@ 004c7920 ctl.obj - 0003:000019a8 ??_7SPLC@@6B@ 004c79a8 spell.obj - 0003:000019f8 ??_7LID@@6B@ 004c79f8 chelp.obj - 0003:00001a88 ??_7LIG@@6B@ 004c7a88 chelp.obj - 0003:00001b50 ??_7CCG@@6B@ 004c7b50 chelp.obj - 0003:00001bd8 ??_7CCGT@@6B@ 004c7bd8 chelp.obj - 0003:00001c60 ??_7APP@@6B@ 004c7c60 chelp.obj - 0003:00001da8 ??_7HEDO@@6B@ 004c7da8 chtop.obj - 0003:00001e50 ??_7TSEL@@6B@ 004c7e50 chtop.obj - 0003:00001e68 ??_7HEDG@@6B@ 004c7e68 chtop.obj - 0003:00001f58 ??_7HETD@@6B@ 004c7f58 chtop.obj - 0003:00002068 ??_7HETG@@6B@ 004c8068 chtop.obj - 0003:000021c8 ??_7HTRU@@6B@ 004c81c8 chtop.obj - 0003:00002260 ??_7TRUL@@6B@ 004c8260 chtop.obj - 0003:000022f0 _IID_IUnknown 004c82f0 uuid:com_i.obj - 0003:00002300 _IID_IClassFactory 004c8300 uuid:com_i.obj - 0003:00002310 _IID_IMarshal 004c8310 uuid:com_i.obj - 0003:00002320 _IID_IMalloc 004c8320 uuid:com_i.obj - 0003:00002330 _IID_IStdMarshalInfo 004c8330 uuid:com_i.obj - 0003:00002340 _IID_IExternalConnection 004c8340 uuid:com_i.obj - 0003:00002350 _IID_IWeakRef 004c8350 uuid:com_i.obj - 0003:00002360 _IID_IEnumUnknown 004c8360 uuid:com_i.obj - 0003:00002370 _IID_IBindCtx 004c8370 uuid:com_i.obj - 0003:00002380 _IID_IParseDisplayName 004c8380 uuid:com_i.obj - 0003:00002390 _IID_IEnumMoniker 004c8390 uuid:com_i.obj - 0003:000023a0 _IID_IRunnableObject 004c83a0 uuid:com_i.obj - 0003:000023b0 _IID_IRunningObjectTable 004c83b0 uuid:com_i.obj - 0003:000023c0 _IID_IPersist 004c83c0 uuid:com_i.obj - 0003:000023d0 _IID_IPersistStream 004c83d0 uuid:com_i.obj - 0003:000023e0 _IID_IMoniker 004c83e0 uuid:com_i.obj - 0003:000023f0 _IID_IEnumString 004c83f0 uuid:com_i.obj - 0003:00002400 _IID_IStream 004c8400 uuid:com_i.obj - 0003:00002410 _IID_IEnumSTATSTG 004c8410 uuid:com_i.obj - 0003:00002420 _IID_IStorage 004c8420 uuid:com_i.obj - 0003:00002430 _IID_IPersistFile 004c8430 uuid:com_i.obj - 0003:00002440 _IID_IPersistStorage 004c8440 uuid:com_i.obj - 0003:00002450 _IID_ILockBytes 004c8450 uuid:com_i.obj - 0003:00002460 _IID_IEnumFORMATETC 004c8460 uuid:com_i.obj - 0003:00002470 _IID_IEnumSTATDATA 004c8470 uuid:com_i.obj - 0003:00002480 _IID_IRootStorage 004c8480 uuid:com_i.obj - 0003:00002490 _IID_IAdviseSink 004c8490 uuid:com_i.obj - 0003:000024a0 _IID_IAdviseSink2 004c84a0 uuid:com_i.obj - 0003:000024b0 _IID_IDataObject 004c84b0 uuid:com_i.obj - 0003:000024c0 _IID_IDataAdviseHolder 004c84c0 uuid:com_i.obj - 0003:000024d0 _IID_IMessageFilter 004c84d0 uuid:com_i.obj - 0003:000024e0 _IID_IRpcChannelBuffer 004c84e0 uuid:com_i.obj - 0003:000024f0 _IID_IRpcProxyBuffer 004c84f0 uuid:com_i.obj - 0003:00002500 _IID_IRpcStubBuffer 004c8500 uuid:com_i.obj - 0003:00002510 _IID_IPSFactoryBuffer 004c8510 uuid:com_i.obj - 0003:00002520 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 004c8520 audiod:sound.obj - 0003:00002538 ??_7CAMWavFileSrc@@6BIAMSound@@@ 004c8538 audiod:sound.obj - 0003:00002588 ??_7IAMSound@@6B@ 004c8588 audiod:sound.obj - 0003:000025b0 ??_7IAMWavFileSrc@@6B@ 004c85b0 audiod:sound.obj - 0003:000025d0 _CLSID_AMMixer 004c85d0 audiod:factory.obj - 0003:000025e0 _CLSID_AMWavFileSrc 004c85e0 audiod:factory.obj - 0003:000025f0 _CLSID_AMSilentSound 004c85f0 audiod:factory.obj - 0003:00002600 _CLSID_AMAppendFilter 004c8600 audiod:factory.obj - 0003:00002610 _CLSID_AMClipFilter 004c8610 audiod:factory.obj - 0003:00002620 _CLSID_AMConvertFilter 004c8620 audiod:factory.obj - 0003:00002630 _CLSID_AMDelayFilter 004c8630 audiod:factory.obj - 0003:00002640 _CLSID_AMGainFilter 004c8640 audiod:factory.obj - 0003:00002650 _CLSID_AMGateFilter 004c8650 audiod:factory.obj - 0003:00002660 _CLSID_AMLoopFilter 004c8660 audiod:factory.obj - 0003:00002670 _CLSID_AMMixFilter 004c8670 audiod:factory.obj - 0003:00002680 _CLSID_AMFaderFilter 004c8680 audiod:factory.obj - 0003:00002690 _CLSID_AMScheduleFilter 004c8690 audiod:factory.obj - 0003:000026a0 _CLSID_AMRandomizeFilter 004c86a0 audiod:factory.obj - 0003:000026b0 _CLSID_AMDistortFilter 004c86b0 audiod:factory.obj - 0003:000026c0 _CLSID_AMCacheFilter 004c86c0 audiod:factory.obj - 0003:000026d0 _CLSID_AMTrimFilter 004c86d0 audiod:factory.obj - 0003:000026e0 _CLSID_AMStereoFilter 004c86e0 audiod:factory.obj - 0003:000026f0 _CLSID_AMBiasFilter 004c86f0 audiod:factory.obj - 0003:00002700 _IID_IAMMixer 004c8700 audiod:factory.obj - 0003:00002710 _IID_IAMChannel 004c8710 audiod:factory.obj - 0003:00002720 _IID_IAMWaveOut 004c8720 audiod:factory.obj - 0003:00002730 _IID_IAMSound 004c8730 audiod:factory.obj - 0003:00002740 _IID_IAMNotifySink 004c8740 audiod:factory.obj - 0003:00002750 _IID_IAMWavFileSrc 004c8750 audiod:factory.obj - 0003:00002760 _IID_IAMSilentSound 004c8760 audiod:factory.obj - 0003:00002770 _IID_IAMAppendFilter 004c8770 audiod:factory.obj - 0003:00002780 _IID_IAMClipFilter 004c8780 audiod:factory.obj - 0003:00002790 _IID_IAMConvertFilter 004c8790 audiod:factory.obj - 0003:000027a0 _IID_IAMDelayFilter 004c87a0 audiod:factory.obj - 0003:000027b0 _IID_IAMGainFilter 004c87b0 audiod:factory.obj - 0003:000027c0 _IID_IAMGateFilter 004c87c0 audiod:factory.obj - 0003:000027d0 _IID_IAMLoopFilter 004c87d0 audiod:factory.obj - 0003:000027e0 _IID_IAMMixFilter 004c87e0 audiod:factory.obj - 0003:000027f0 _IID_IAMFaderFilter 004c87f0 audiod:factory.obj - 0003:00002800 _IID_IAMScheduleFilter 004c8800 audiod:factory.obj - 0003:00002810 _IID_IAMRandomizeFilter 004c8810 audiod:factory.obj - 0003:00002820 _IID_IAMDistortFilter 004c8820 audiod:factory.obj - 0003:00002830 _IID_IAMCacheFilter 004c8830 audiod:factory.obj - 0003:00002840 _IID_IAMTrimFilter 004c8840 audiod:factory.obj - 0003:00002850 _IID_IAMStereoFilter 004c8850 audiod:factory.obj - 0003:00002860 _IID_IAMBiasFilter 004c8860 audiod:factory.obj - 0003:00002870 _IID_IAMMixerChannel 004c8870 audiod:factory.obj - 0003:00002880 _IID_IAMRIFFStream 004c8880 audiod:factory.obj - 0003:00002890 ??_7CClassFactory@@6B@ 004c8890 audiod:factory.obj - 0003:000028a8 ??_7IClassFactory@@6B@ 004c88a8 audiod:factory.obj - 0003:000028e8 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 004c88e8 audiod:factory.obj - 0003:000028f8 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 004c88f8 audiod:factory.obj - 0003:00002948 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 004c8948 audiod:factory.obj - 0003:00002958 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 004c8958 audiod:factory.obj - 0003:000029a8 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 004c89a8 audiod:factory.obj - 0003:000029b8 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 004c89b8 audiod:factory.obj - 0003:00002a08 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 004c8a08 audiod:factory.obj - 0003:00002a28 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 004c8a28 audiod:factory.obj - 0003:00002a78 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 004c8a78 audiod:factory.obj - 0003:00002a88 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 004c8a88 audiod:factory.obj - 0003:00002ad8 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 004c8ad8 audiod:factory.obj - 0003:00002ae8 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 004c8ae8 audiod:factory.obj - 0003:00002b38 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 004c8b38 audiod:factory.obj - 0003:00002b48 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 004c8b48 audiod:factory.obj - 0003:00002b98 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 004c8b98 audiod:factory.obj - 0003:00002ba8 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 004c8ba8 audiod:factory.obj - 0003:00002bd0 ??_7IAMGateFilter@@6B@ 004c8bd0 audiod:factory.obj - 0003:00002be0 ??_7IAMLoopFilter@@6B@ 004c8be0 audiod:factory.obj - 0003:00002bf0 ??_7IAMFaderFilter@@6B@ 004c8bf0 audiod:factory.obj - 0003:00002c00 ??_7IAMRandomizeFilter@@6B@ 004c8c00 audiod:factory.obj - 0003:00002c20 ??_7IAMDistortFilter@@6B@ 004c8c20 audiod:factory.obj - 0003:00002c30 ??_7IAMStereoFilter@@6B@ 004c8c30 audiod:factory.obj - 0003:00002c40 ??_7IAMTrimFilter@@6B@ 004c8c40 audiod:factory.obj - 0003:00002c50 ??_7IAMBiasFilter@@6B@ 004c8c50 audiod:factory.obj - 0003:00002da0 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 004c8da0 audiod:sndcache.obj - 0003:00002db0 ??_7CAMCacheFilter@@6BIAMSound@@@ 004c8db0 audiod:sndcache.obj - 0003:00002dd8 ??_7IAMCacheFilter@@6B@ 004c8dd8 audiod:sndcache.obj - 0003:00002de8 ??_7CAMRIFFStream@@6B@ 004c8de8 audiod:riffstrm.obj - 0003:00002e00 ??_7IAMRIFFStream@@6B@ 004c8e00 audiod:riffstrm.obj - 0003:00002e18 ??_7CFileStream@@6B@ 004c8e18 audiod:stream.obj - 0003:00002e50 ??_7CMemoryStream@@6B@ 004c8e50 audiod:stream.obj - 0003:00002e88 ??_7CAMPassThruFilter@@6B@ 004c8e88 audiod:sndpass.obj - 0003:00002eb0 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 004c8eb0 audiod:sndsched.obj - 0003:00002ee8 ??_7CAMScheduleFilter@@6BIAMSound@@@ 004c8ee8 audiod:sndsched.obj - 0003:00002f10 ??_7IAMScheduleFilter@@6B@ 004c8f10 audiod:sndsched.obj - 0003:00002f48 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 004c8f48 audiod:sndmix.obj - 0003:00002f58 ??_7CAMMixFilter@@6BIAMSound@@@ 004c8f58 audiod:sndmix.obj - 0003:00002f80 ??_7IAMMixFilter@@6B@ 004c8f80 audiod:sndmix.obj - 0003:00002f90 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 004c8f90 audiod:sndgain.obj - 0003:00002fa8 ??_7CAMGainFilter@@6BIAMSound@@@ 004c8fa8 audiod:sndgain.obj - 0003:00002fd0 ??_7IAMGainFilter@@6B@ 004c8fd0 audiod:sndgain.obj - 0003:00002fe8 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 004c8fe8 audiod:sndecho.obj - 0003:00002ff8 ??_7CAMDelayFilter@@6BIAMSound@@@ 004c8ff8 audiod:sndecho.obj - 0003:00003028 ??_7IAMDelayFilter@@6B@ 004c9028 audiod:sndecho.obj - 0003:00003038 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 004c9038 audiod:sndcnvt.obj - 0003:00003048 ??_7CAMConvertFilter@@6BIAMSound@@@ 004c9048 audiod:sndcnvt.obj - 0003:00003070 ??_7IAMConvertFilter@@6B@ 004c9070 audiod:sndcnvt.obj - 0003:00003080 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 004c9080 audiod:sndclip.obj - 0003:00003090 ??_7CAMClipFilter@@6BIAMSound@@@ 004c9090 audiod:sndclip.obj - 0003:000030b8 ??_7IAMClipFilter@@6B@ 004c90b8 audiod:sndclip.obj - 0003:000030c8 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 004c90c8 audiod:sndapend.obj - 0003:000030d8 ??_7CAMAppendFilter@@6BIAMSound@@@ 004c90d8 audiod:sndapend.obj - 0003:00003100 ??_7IAMAppendFilter@@6B@ 004c9100 audiod:sndapend.obj - 0003:00003110 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 004c9110 audiod:sndmute.obj - 0003:00003120 ??_7CAMSilentSound@@6BIAMSound@@@ 004c9120 audiod:sndmute.obj - 0003:00003148 ??_7IAMSilentSound@@6B@ 004c9148 audiod:sndmute.obj - 0003:000031d0 ??_7CAMMixer@@6B@ 004c91d0 audiod:cmixer.obj - 0003:00003248 ??_7IAMMixer@@6B@ 004c9248 audiod:cmixer.obj - 0003:00003340 ??_7CMixerOut@@6B@ 004c9340 audiod:cmixout.obj - 0003:000033a0 ??_7IAMWaveOut@@6B@ 004c93a0 audiod:cmixout.obj - 0003:00003400 ??_7CAMPlaySnd@@6B@ 004c9400 audiod:cplaysnd.obj - 0003:00003420 ??_7CAMChannel@@6BIAMMixerChannel@@@ 004c9420 audiod:cchannel.obj - 0003:00003470 ??_7CAMChannel@@6BIAMChannel@@@ 004c9470 audiod:cchannel.obj - 0003:000034d0 ??_7IAMChannel@@6B@ 004c94d0 audiod:cchannel.obj - 0003:00003530 ??_7IAMMixerChannel@@6B@ 004c9530 audiod:cchannel.obj - 0003:00003580 ??_7CRealOut@@6B@ 004c9580 audiod:crealout.obj - 0003:00003600 ??_7CFakeOut@@6B@ 004c9600 audiod:cfakeout.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 004ca020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 004ca024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 004ca064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 004ca068 base.obj - 0004:0000006c ?vcactAV@@3JA 004ca06c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 004ca070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 004ca088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004ca0a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004ca0b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004ca0c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004ca0e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004ca0f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 004ca10c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 004ca120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 004ca13c base.obj - 0004:0000015c ??_C@_0DL@HKA@?6Lost?5object?3?5cls?$DN?8?$CFf?8?0?5size?$DN?$CFd?0@ 004ca15c base.obj - 0004:00000198 ??_C@_03GOHA@nil?$AA@ 004ca198 base.obj - 0004:0000019c ??_C@_0DE@ELAM@Total?5lost?5objects?3?5?$CFd?4?5Press?5?8D@ 004ca19c base.obj - 0004:000001d0 ??_C@_0BH@KF@Raw?5list?5is?5not?5empty?$CB?$AA@ 004ca1d0 base.obj - 0004:000001e8 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 004ca1e8 base.obj - 0004:000001f8 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 004ca1f8 base.obj - 0004:00000208 ??_C@_0O@NAKK@links?5corrupt?$AA@ 004ca208 base.obj - 0004:00000238 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004ca238 utilcopy.obj - 0004:00000268 ?vpers@@3PAVERS@@A 004ca268 utilerro.obj - 0004:0000026c ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004ca26c utilerro.obj - 0004:00000294 ??_C@_08GEE@Error?5?$CFd?$AA@ 004ca294 utilerro.obj - 0004:000002c0 ??_C@_0BF@FJFO@divide?5by?5zero?5error?$AA@ 004ca2c0 utilint.obj - 0004:000002d8 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 004ca2d8 utilint.obj - 0004:000002e8 ??_C@_084overflow?$AA@ 004ca2e8 utilint.obj - 0004:000002f4 ??_C@_0N@INPL@long?5too?5big?$AA@ 004ca2f4 utilint.obj - 0004:00000304 ??_C@_0P@DFPA@long?5too?5small?$AA@ 004ca304 utilint.obj - 0004:00000314 ??_C@_09MGFD@wrong?5bom?$AA@ 004ca314 utilint.obj - 0004:00000320 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 004ca320 utilint.obj - 0004:00000344 ??_C@_0BE@OJMN@empty?5map?5rectangle?$AA@ 004ca344 utilint.obj - 0004:00000358 ??_C@_0BF@OOKN@this?5can?8t?5be?5prcSrc?$AA@ 004ca358 utilint.obj - 0004:00000390 ?vpfnlib@@3P6GJJJ@ZA 004ca390 utilmem.obj - 0004:00000394 ?_fInLiberator@@3HA 004ca394 utilmem.obj - 0004:00000398 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 004ca398 utilmem.obj - 0004:000003bc ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004ca3bc utilmem.obj - 0004:000003d4 ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 004ca3d4 utilmem.obj - 0004:000003fc ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 004ca3fc utilmem.obj - 0004:00000420 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 004ca420 utilmem.obj - 0004:00000440 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 004ca440 utilmem.obj - 0004:00000454 ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 004ca454 utilmem.obj - 0004:00000468 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 004ca468 utilmem.obj - 0004:0000047c ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 004ca47c utilmem.obj - 0004:00000490 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 004ca490 utilmem.obj - 0004:000004a8 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 004ca4a8 utilmem.obj - 0004:000004bc ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004ca4bc utilmem.obj - 0004:000004cc ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 004ca4cc utilmem.obj - 0004:000004e0 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004ca4e0 utilmem.obj - 0004:000004fc ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 004ca4fc utilmem.obj - 0004:00000510 ??_C@_08ECDH@wrong?5cb?$AA@ 004ca510 utilmem.obj - 0004:0000051c ??_C@_06BHIL@nil?5pv?$AA@ 004ca51c utilmem.obj - 0004:00000524 ??_C@_0DA@JKM@?6Lost?5block?3?5size?$DN?$CFd?0?5StackTrace@ 004ca524 utilmem.obj - 0004:00000578 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 004ca578 utilrnd.obj - 0004:00000594 ??_C@_0L@LEMP@_clw?5wrong?$AA@ 004ca594 utilrnd.obj - 0004:000005a0 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 004ca5a0 utilrnd.obj - 0004:000005b0 ??_C@_0L@DINP@wrong?5_clw?$AA@ 004ca5b0 utilrnd.obj - 0004:000006e0 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 004ca6e0 utilstr.obj - 0004:00000708 ??_C@_0BH@GGIJ@BLCK?5is?5not?5big?5enough?$AA@ 004ca708 utilstr.obj - 0004:00000720 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 004ca720 utilstr.obj - 0004:00000730 ??_C@_0BN@MDCJ@bad?5STN?5data?5or?5read?5failure?$AA@ 004ca730 utilstr.obj - 0004:00000750 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 004ca750 utilstr.obj - 0004:00000778 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 004ca778 utilstr.obj - 0004:00000788 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 004ca788 utilstr.obj - 0004:0000079c ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 004ca79c utilstr.obj - 0004:000007ac ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 004ca7ac utilstr.obj - 0004:000007c8 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 004ca7c8 utilstr.obj - 0004:000007e4 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 004ca7e4 utilstr.obj - 0004:000007f0 ??_C@_0BM@CLPI@why?5did?5CompareString?5fail?$DP?$AA@ 004ca7f0 utilstr.obj - 0004:0000080c ??_C@_0CE@IKBC@TranslateRgch?5can?8t?5handle?5this?5@ 004ca80c utilstr.obj - 0004:00000830 ??_C@_07NPFI@bad?5osk?$AA@ 004ca830 utilstr.obj - 0004:00000838 ??_C@_06KJGB@bad?5st?$AA@ 004ca838 utilstr.obj - 0004:00000860 ?vcactSuspendCheckPointers@@3JA 004ca860 memwin.obj - 0004:00000864 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 004ca864 memwin.obj - 0004:00000878 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 004ca878 memwin.obj - 0004:0000088c ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 004ca88c memwin.obj - 0004:000008a4 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004ca8a4 memwin.obj - 0004:000008b4 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004ca8b4 memwin.obj - 0004:000008d8 ??_C@_09BABB@hq?5is?5nil?$AA@ 004ca8d8 memwin.obj - 0004:000008e4 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004ca8e4 memwin.obj - 0004:00000920 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 004ca920 appb.obj - 0004:00000928 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 004ca928 appb.obj - 0004:0000098c ??_C@_07GHND@Generic?$AA@ 004ca98c appb.obj - 0004:00000994 ??_C@_0BC@PEHH@sizes?5don?8t?5match?$AA@ 004ca994 appb.obj - 0004:000009a8 ??_C@_0BB@LOCN@cursor?5not?5found?$AA@ 004ca9a8 appb.obj - 0004:000009bc ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 004ca9bc appb.obj - 0004:000009cc ??_C@_0M@HLIB@Courier?5New?$AA@ 004ca9cc appb.obj - 0004:000009d8 ??_C@_0CH@KHLM@how?5did?5a?5tooltip?5become?5_pgobMo@ 004ca9d8 appb.obj - 0004:00000a00 ??_C@_0BP@KFNN@unhandled?5cid?5in?5FEnableAppCmd?$AA@ 004caa00 appb.obj - 0004:00000a20 ??_C@_0BH@IDIP@nil?5hwnd?5in?5UpdateHwnd?$AA@ 004caa20 appb.obj - 0004:00000a38 ??_C@_0P@FENM@marking?5failed?$AA@ 004caa38 appb.obj - 0004:00000a48 ??_C@_08CFEH@bad?5hwnd?$AA@ 004caa48 appb.obj - 0004:00000a54 ??_C@_0BE@FHLE@unknown?5clip?5format?$AA@ 004caa54 appb.obj - 0004:00000a68 ??_C@_0BM@LGKN@Unbalanced?5call?5to?5PopModal?$AA@ 004caa68 appb.obj - 0004:00000a84 ??_C@_0CN@JDDC@Don?8t?5know?5what?5to?5do?5with?5the?5m@ 004caa84 appb.obj - 0004:00000ab4 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 004caab4 appb.obj - 0004:00000adc ??_C@_0N@DOFL@?$CFs?$CI?$CFd?$CJ?3?5?$CFs?$AN?6?$AA@ 004caadc appb.obj - 0004:00000aec ??_C@_08IGFG@_Frame_W?$AA@ 004caaec appb.obj - 0004:00000b18 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 004cab18 clok.obj - 0004:00000b20 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 004cab20 clok.obj - 0004:00000b30 ??_C@_0BH@FPKJ@_dtimAlarm?5should?5be?50?$AA@ 004cab30 clok.obj - 0004:00000b48 ??_C@_0BD@MPJC@_timNext?5too?5small?$AA@ 004cab48 clok.obj - 0004:00000b80 ?_cmmCMH@CMH@@1UCMM@1@A 004cab80 cmd.obj - 0004:00000b88 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 004cab88 cmd.obj - 0004:00000b98 ??_C@_07JCMM@bad?5hid?$AA@ 004cab98 cmd.obj - 0004:00000ba0 ??_C@_0BE@IGJC@why?5is?5the?5cid?5nil?$DP?$AA@ 004caba0 cmd.obj - 0004:00000bb4 ??_C@_0O@FKP@not?5recording?$AA@ 004cabb4 cmd.obj - 0004:00000bc4 ??_C@_0BN@CBME@not?5playing?5a?5command?5stream?$AA@ 004cabc4 cmd.obj - 0004:00000be4 ??_C@_0BD@CMOM@why?5is?5grfcmm?5nil?$DP?$AA@ 004cabe4 cmd.obj - 0004:00000bf8 ??_C@_0BL@FHGP@event?5queue?5not?5big?5enough?$AA@ 004cabf8 cmd.obj - 0004:00000c14 ??_C@_0BL@DLEE@why?5enqueue?5a?5nil?5command?$DP?$AA@ 004cac14 cmd.obj - 0004:00000c30 ??_C@_0BN@MBPA@why?5check?5for?5a?5nil?5command?$DP?$AA@ 004cac30 cmd.obj - 0004:00000c50 ??_C@_0BJ@IDBN@why?5flush?5a?5nil?5command?$DP?$AA@ 004cac50 cmd.obj - 0004:00000c6c ??_C@_0CB@BCIM@recursing?5into?5FDispatchNextCmd?$CB@ 004cac6c cmd.obj - 0004:00000c90 ??_C@_0CN@NJMF@some?5other?5gob?5is?5already?5tracki@ 004cac90 cmd.obj - 0004:00000d00 ?vaptGray@@3UAPT@@A 004cad00 gfx.obj - 0004:00000d08 ?vaptLtGray@@3UAPT@@A 004cad08 gfx.obj - 0004:00000d10 ?vaptDkGray@@3UAPT@@A 004cad10 gfx.obj - 0004:00000d18 ?_mpgfdgrfpt@@3QAKA 004cad18 gfx.obj - 0004:00000d28 ?_mpgfdgrfptInv@@3QAKA 004cad28 gfx.obj - 0004:00000d38 ??_C@_0M@ELAC@invalid?5ACR?$AA@ 004cad38 gfx.obj - 0004:00000d44 ??_C@_0BH@KGNJ@unexpected?5Special?5ACR?$AA@ 004cad44 gfx.obj - 0004:00000d5c ??_C@_0M@CEND@unknown?5acr?$AA@ 004cad5c gfx.obj - 0004:00000d68 ??_C@_0BF@HMLG@unexpected?5Index?5ACR?$AA@ 004cad68 gfx.obj - 0004:00000d80 ??_C@_0O@KIA@bad?5Index?5ACR?$AA@ 004cad80 gfx.obj - 0004:00000d90 ??_C@_0BD@BMIG@unexpected?5RGB?5ACR?$AA@ 004cad90 gfx.obj - 0004:00000da4 ??_C@_0BD@EIAJ@unexpected?5nil?5ACR?$AA@ 004cada4 gfx.obj - 0004:00000db8 ??_C@_0BC@JKJL@bad?5_gdd?4prcsClip?$AA@ 004cadb8 gfx.obj - 0004:00000dcc ??_C@_0BE@JMIN@empty?5dst?5rectangle?$AA@ 004cadcc gfx.obj - 0004:00000de0 ??_C@_0BE@GMOL@empty?5src?5rectangle?$AA@ 004cade0 gfx.obj - 0004:00000df4 ??_C@_0BA@PPFN@rc?8s?5are?5scaled?$AA@ 004cadf4 gfx.obj - 0004:00000e04 ??_C@_0CO@PIMN@Source?5rectangle?5is?5outside?5the?5@ 004cae04 gfx.obj - 0004:00000e34 ??_C@_0BN@GNCH@Can?8t?5dissolve?5from?5this?5GPT?$AA@ 004cae34 gfx.obj - 0004:00000e54 ??_C@_0M@NJP@Invalid?5onn?$AA@ 004cae54 gfx.obj - 0004:00000e60 ??_C@_0CH@JIKM@Source?5rectangle?5not?5in?5source?5b@ 004cae60 gfx.obj - 0004:00000ea8 ?_cmmGOB@GOB@@1UCMM@CMH@@A 004caea8 gob.obj - 0004:00000eb0 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 004caeb0 gob.obj - 0004:00000f40 ?_ginDefGob@GOB@@1JA 004caf40 gob.obj - 0004:00000f44 ??_C@_0BL@LFFA@screen?5gob?5already?5created?$AA@ 004caf44 gob.obj - 0004:00000f60 ??_C@_0BB@HLJB@corrupt?5gob?5tree?$AA@ 004caf60 gob.obj - 0004:00000f74 ??_C@_0BH@LDKF@gob?5still?5has?5children?$AA@ 004caf74 gob.obj - 0004:00000f8c ??_C@_0BB@BIPD@corrupt?5GOB?5tree?$AA@ 004caf8c gob.obj - 0004:00000fa0 ??_C@_0BL@KBND@don?8t?5have?5the?5same?5parent?$AA@ 004cafa0 gob.obj - 0004:00000fbc ??_C@_0O@LIGN@bad?5gin?5value?$AA@ 004cafbc gob.obj - 0004:00000fcc ??_C@_07LNIO@bad?5gin?$AA@ 004cafcc gob.obj - 0004:00000fd4 ??_C@_0BD@HAPB@no?5port?5to?5draw?5to?$AA@ 004cafd4 gob.obj - 0004:00000fe8 ??_C@_07BFMJ@no?5hwnd?$AA@ 004cafe8 gob.obj - 0004:00000ff0 ??_C@_07CILM@bad?5coo?$AA@ 004caff0 gob.obj - 0004:00000ff8 ??_C@_0O@JPAA@grfcust?5wrong?$AA@ 004caff8 gob.obj - 0004:00001008 ??_C@_0M@FIGF@wrong?5logic?$AA@ 004cb008 gob.obj - 0004:00001014 ??_C@_07PABM@nil?5hid?$AA@ 004cb014 gob.obj - 0004:0000101c ??_C@_0BB@LCPC@bad?5pinned?5point?$AA@ 004cb01c gob.obj - 0004:00001030 ??_C@_0BO@NNPC@_hwnd?5based?5gob?5not?5at?5?$CI0?0?50?$CJ?$AA@ 004cb030 gob.obj - 0004:00001090 ??_C@_0BK@LBAJ@empty?5reference?5rectangle?$AA@ 004cb090 region.obj - 0004:000010ac ??_C@_0BI@NJNM@overflowed?5provided?5pgl?$AA@ 004cb0ac region.obj - 0004:000010c4 ??_C@_0P@EJHA@already?5filled?$AA@ 004cb0c4 region.obj - 0004:000010d4 ??_C@_0BE@KNCN@row?5already?5started?$AA@ 004cb0d4 region.obj - 0004:000010e8 ??_C@_0BD@DNOF@overflow?5in?5EndRow?$AA@ 004cb0e8 region.obj - 0004:000010fc ??_C@_0CA@JIOJ@not?5an?5even?5number?5of?5xp?5values?$AA@ 004cb0fc region.obj - 0004:0000111c ??_C@_0BC@OMHD@logic?5error?5above?$AA@ 004cb11c region.obj - 0004:00001130 ??_C@_0N@FJND@bad?5region?56?$AA@ 004cb130 region.obj - 0004:00001140 ??_C@_0N@KGGK@bad?5region?55?$AA@ 004cb140 region.obj - 0004:00001150 ??_C@_0N@MPN@bad?5region?54?$AA@ 004cb150 region.obj - 0004:00001160 ??_C@_0N@FJBI@bad?5region?53?$AA@ 004cb160 region.obj - 0004:00001170 ??_C@_0N@PDIP@bad?5region?52?$AA@ 004cb170 region.obj - 0004:00001180 ??_C@_0N@MDG@bad?5region?51?$AA@ 004cb180 region.obj - 0004:00001190 ??_C@_0CD@BMHN@why?5is?5_ScanNextCore?5being?5calle@ 004cb190 region.obj - 0004:000011b4 ??_C@_0BC@IADK@overflow?5in?5AddXp?$AA@ 004cb1b4 region.obj - 0004:000011c8 ??_C@_0BM@ODBF@calling?5AddXp?5outside?5a?5row?$AA@ 004cb1c8 region.obj - 0004:000011e4 ??_C@_0L@IENI@bad?5region?$AA@ 004cb1e4 region.obj - 0004:000011f0 ??_C@_0M@MCGN@bad?5regions?$AA@ 004cb1f0 region.obj - 0004:000011fc ??_C@_0CN@CMLG@region?5scanners?5have?5different?5o@ 004cb1fc region.obj - 0004:0000122c ??_C@_0BF@MDBC@we?5shouldn?8t?5be?5here?$AA@ 004cb22c region.obj - 0004:00001244 ??_C@_0BB@PCCB@why?5are?5we?5here?$DP?$AA@ 004cb244 region.obj - 0004:00001258 ??_C@_0BE@FHKJ@_dxp?5should?5be?5zero?$AA@ 004cb258 region.obj - 0004:0000126c ??_C@_08OJLB@bad?5_dxp?$AA@ 004cb26c region.obj - 0004:000012b8 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 004cb2b8 appbwin.obj - 0004:000012d0 ??_C@_03KELD@MDI?$AA@ 004cb2d0 appbwin.obj - 0004:000012d4 ??_C@_03BLAA@APP?$AA@ 004cb2d4 appbwin.obj - 0004:000012d8 ??_C@_0BA@LBBH@Painting?5failed?$AA@ 004cb2d8 appbwin.obj - 0004:000012e8 ??_C@_09HIMI@AssertDlg?$AA@ 004cb2e8 appbwin.obj - 0004:000012f4 ??_C@_0CK@LIEM@Thread?5Assert?$CB?5?$CIY?5?$DN?5Ignore?0?5N?5?$DN?5@ 004cb2f4 appbwin.obj - 0004:00001320 ??_C@_01BJG@?6?$AA@ 004cb320 appbwin.obj - 0004:00001324 ??_C@_04HJKA@?$CF08x?$AA@ 004cb324 appbwin.obj - 0004:0000132c ??_C@_04JGFO@?$CF04x?$AA@ 004cb32c appbwin.obj - 0004:00001334 ??_C@_05NKJJ@?$CF08x?5?$AA@ 004cb334 appbwin.obj - 0004:0000133c ??_C@_0BB@DJOH@Some?5Header?5file?$AA@ 004cb33c appbwin.obj - 0004:00001350 ??_C@_0BI@LAFO@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?3?5?$CFs?$AA@ 004cb350 appbwin.obj - 0004:00001368 ??_C@_0BE@PHBM@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?$AA@ 004cb368 appbwin.obj - 0004:0000137c ??_C@_00A@?$AA@ 004cb37c appbwin.obj - 0004:00001380 ??_C@_0O@JFGJ@bad?5cok?5value?$AA@ 004cb380 appbwin.obj - 0004:00001390 ??_C@_0N@IFFC@bad?5bk?5value?$AA@ 004cb390 appbwin.obj - 0004:000013c0 ?_hpal@GPT@@0PAUHPALETTE__@@A 004cb3c0 gfxwin.obj - 0004:000013c4 ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 004cb3c4 gfxwin.obj - 0004:000013c8 ?_cclrPal@GPT@@0JA 004cb3c8 gfxwin.obj - 0004:000013cc ?_prgclr@GPT@@0PAUCLR@@A 004cb3cc gfxwin.obj - 0004:000013d0 ?_cactPalCur@GPT@@0JA 004cb3d0 gfxwin.obj - 0004:000013d4 ?_cactFlush@GPT@@0JA 004cb3d4 gfxwin.obj - 0004:000013d8 ?_fPalettized@GPT@@0HA 004cb3d8 gfxwin.obj - 0004:00001450 ??_C@_0BJ@PBFH@Shrinking?5palette?5failed?$AA@ 004cb450 gfxwin.obj - 0004:0000146c ??_C@_0BJ@KNCM@shrinking?5palette?5failed?$AA@ 004cb46c gfxwin.obj - 0004:00001488 ??_C@_0CK@ECAI@Setting?5palette?5before?5vwig?4hdcA@ 004cb488 gfxwin.obj - 0004:000014b4 ??_C@_0O@NFNB@wrong?5CbEntry?$AA@ 004cb4b4 gfxwin.obj - 0004:000014c4 ??_C@_0CG@ELJM@why?5doesn?8t?5the?5window?5have?5a?5pa@ 004cb4c4 gfxwin.obj - 0004:000014ec ??_C@_08ILPC@Null?5hdc?$AA@ 004cb4ec gfxwin.obj - 0004:000014f8 ??_C@_09BPPC@Null?5hwnd?$AA@ 004cb4f8 gfxwin.obj - 0004:00001504 ??_C@_0CD@LHJN@GetStockObject?$CISYSTEM_FONT?$CJ?5fail@ 004cb504 gfxwin.obj - 0004:00001528 ??_C@_0CD@IPHD@GetStockObject?$CIWHITE_BRUSH?$CJ?5fail@ 004cb528 gfxwin.obj - 0004:0000154c ??_C@_0CA@BNGH@GetStockObject?$CINULL_PEN?$CJ?5failed?$AA@ 004cb54c gfxwin.obj - 0004:0000156c ??_C@_0BJ@KIOC@pixels?5are?5still?5locked?$CB?$AA@ 004cb56c gfxwin.obj - 0004:00001588 ??_C@_0BF@ELIM@cannot?5select?5bitmap?$AA@ 004cb588 gfxwin.obj - 0004:000015a0 ??_C@_0BG@JHJN@Failed?5to?5GetDC?$CIhNil?$CJ?$AA@ 004cb5a0 gfxwin.obj - 0004:000015b8 ??_C@_0BE@DPNK@bad?5cbitPixel?5value?$AA@ 004cb5b8 gfxwin.obj - 0004:000015cc ??_C@_0BO@BHDB@empty?5rectangle?5for?5offscreen?$AA@ 004cb5cc gfxwin.obj - 0004:000015ec ??_C@_0BP@CMGG@why?5is?5_cactDraw?5?$DO?5_cactFlush?$DP?$AA@ 004cb5ec gfxwin.obj - 0004:0000160c ??_C@_0BG@LAEK@Unmatched?5unlock?5call?$AA@ 004cb60c gfxwin.obj - 0004:00001624 ??_C@_0P@HGNP@use?5solid?5fill?$AA@ 004cb624 gfxwin.obj - 0004:00001634 ??_C@_0CC@HEMK@fore?5and?5back?5colors?5still?5equal@ 004cb634 gfxwin.obj - 0004:00001658 ??_C@_0CI@FAP@Unsupported?5DrawRgch?$CI?$CJ?5foregroun@ 004cb658 gfxwin.obj - 0004:00001680 ??_C@_0BL@JFGJ@bogus?5horizontal?5alignment?$AA@ 004cb680 gfxwin.obj - 0004:0000169c ??_C@_0BJ@MJCK@bogus?5vertical?5alignment?$AA@ 004cb69c gfxwin.obj - 0004:000016b8 ??_C@_0BE@EMDF@Drawing?5MBMP?5failed?$AA@ 004cb6b8 gfxwin.obj - 0004:000016cc ??_C@_0L@PAPO@bad?5_rcOff?$AA@ 004cb6cc gfxwin.obj - 0004:000016d8 ??_C@_0BP@GGFE@Internal?5logical?5font?5mismatch?$AA@ 004cb6d8 gfxwin.obj - 0004:000016f8 ??_C@_0BI@DCMG@internal?5brush?5mismatch?$AA@ 004cb6f8 gfxwin.obj - 0004:00001710 ??_C@_05OOL@No?5DC?$AA@ 004cb710 gfxwin.obj - 0004:00001718 ??_C@_0BG@OFPP@Invalid?5window?5handle?$AA@ 004cb718 gfxwin.obj - 0004:00001730 ??_C@_0BH@FOIP@system?5font?5not?5found?$CB?$AA@ 004cb730 gfxwin.obj - 0004:00001748 ??_C@_0BH@KAMK@Can?8t?5get?5logical?5font?$AA@ 004cb748 gfxwin.obj - 0004:00001760 ??_C@_0BG@JGMN@Can?8t?5get?5system?5font?$AA@ 004cb760 gfxwin.obj - 0004:00001778 ??_C@_0BG@FBMG@font?5already?5in?5list?$CB?$AA@ 004cb778 gfxwin.obj - 0004:00001790 ??_C@_07EMGO@bad?5onn?$AA@ 004cb790 gfxwin.obj - 0004:000017b8 ??_C@_08JNCF@nil?5hwnd?$AA@ 004cb7b8 gobwin.obj - 0004:000017c4 ??_C@_09MLCM@MDICLIENT?$AA@ 004cb7c4 gobwin.obj - 0004:000017d0 ??_C@_0BJ@HBI@can?8t?5destroy?5app?5window?$AA@ 004cb7d0 gobwin.obj - 0004:000017ec ??_C@_0BJ@OPBN@GOB?5doesn?8t?5have?5an?5hwnd?$AA@ 004cb7ec gobwin.obj - 0004:00001828 ??_C@_0BC@EDDP@bad?5client?5window?$AA@ 004cb828 menuwin.obj - 0004:0000183c ??_C@_0CO@PDBN@somebody?5took?5some?5menus?5out?5of?5@ 004cb83c menuwin.obj - 0004:0000186c ??_C@_0N@BINH@bad?5imniBase?$AA@ 004cb86c menuwin.obj - 0004:0000187c ??_C@_09DFOI@bad?5_cmnu?$AA@ 004cb87c menuwin.obj - 0004:000018c8 ??_C@_0P@JECG@negative?5sizes?$AA@ 004cb8c8 groups.obj - 0004:000018d8 ??_C@_06JFMK@bad?5cb?$AA@ 004cb8d8 groups.obj - 0004:000018e0 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 004cb8e0 groups.obj - 0004:000018f0 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 004cb8f0 groups.obj - 0004:00001904 ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 004cb904 groups.obj - 0004:00001918 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 004cb918 groups.obj - 0004:00001934 ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 004cb934 groups.obj - 0004:00001950 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 004cb950 groups.obj - 0004:00001968 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 004cb968 groups.obj - 0004:00001990 ??_C@_08OO@wrong?5bo?$AA@ 004cb990 groups.obj - 0004:0000199c ??_C@_06NHBD@bad?5bo?$AA@ 004cb99c groups.obj - 0004:000019a4 ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 004cb9a4 groups.obj - 0004:000019c0 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 004cb9c0 groups.obj - 0004:000019ec ??_C@_0BJ@LGAF@why?5is?5this?5marked?5free?$DP?$AA@ 004cb9ec groups.obj - 0004:00001a08 ??_C@_0BF@EMCD@everything?5is?5free?$CB?$DP?$AA@ 004cba08 groups.obj - 0004:00001a20 ??_C@_0O@HCLM@already?5free?$CB?$AA@ 004cba20 groups.obj - 0004:00001a30 ??_C@_0BB@PNKH@_cvFree?5is?5wrong?$AA@ 004cba30 groups.obj - 0004:00001a44 ??_C@_0BE@MANP@flag?5area?5too?5small?$AA@ 004cba44 groups.obj - 0004:00001a58 ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 004cba58 groups.obj - 0004:00001a74 ??_C@_07PIIM@bad?5loc?$AA@ 004cba74 groups.obj - 0004:00001a7c ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 004cba7c groups.obj - 0004:00001aa0 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004cbaa0 groups.obj - 0004:00001ac0 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004cbac0 groups.obj - 0004:00001ae0 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 004cbae0 groups.obj - 0004:00001af0 ??_C@_05HCAE@oops?$CB?$AA@ 004cbaf0 groups.obj - 0004:00001af8 ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 004cbaf8 groups.obj - 0004:00001b14 ??_C@_05JLFG@what?$DP?$AA@ 004cbb14 groups.obj - 0004:00001b1c ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 004cbb1c groups.obj - 0004:00001b54 ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 004cbb54 groups.obj - 0004:00001b70 ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 004cbb70 groups.obj - 0004:00001b88 ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 004cbb88 groups.obj - 0004:00001bac ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 004cbbac groups.obj - 0004:00001bbc ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 004cbbbc groups.obj - 0004:00001bd0 ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 004cbbd0 groups.obj - 0004:00001be8 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 004cbbe8 groups.obj - 0004:00001c10 ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 004cbc10 groups.obj - 0004:00001c24 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 004cbc24 groups.obj - 0004:00001c38 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 004cbc38 groups.obj - 0004:00001c4c ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 004cbc4c groups.obj - 0004:00001c64 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 004cbc64 groups.obj - 0004:00001c7c ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 004cbc7c groups.obj - 0004:00001c94 ??_C@_0BM@NBGL@Cant?5insert?5from?5same?5group?$AA@ 004cbc94 groups.obj - 0004:00001cb0 ??_C@_0CC@DEJH@Groups?5have?5different?5fixed?5size@ 004cbcb0 groups.obj - 0004:00001cd4 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 004cbcd4 groups.obj - 0004:00001ce8 ??_C@_0BA@BKJJ@_clocFree?5wrong?$AA@ 004cbce8 groups.obj - 0004:00001cf8 ??_C@_0BE@CBDM@entry?5already?5free?$CB?$AA@ 004cbcf8 groups.obj - 0004:00001d30 ??_C@_0CD@BJKN@cbExtra?5not?5multiple?5of?5size?$CIlon@ 004cbd30 groups2.obj - 0004:00001d54 ??_C@_0M@GFOH@unknown?5osk?$AA@ 004cbd54 groups2.obj - 0004:00001d60 ??_C@_0BL@PADL@file?5corrupt?5or?5not?5a?5GSTB?$AA@ 004cbd60 groups2.obj - 0004:00001d7c ??_C@_0CL@EPJN@why?5is?5this?5string?5table?5growing@ 004cbd7c groups2.obj - 0004:00001da8 ??_C@_0BG@PPCE@string?5entry?5is?5free?$CB?$AA@ 004cbda8 groups2.obj - 0004:00001dc0 ??_C@_0BC@OIJF@last?5element?5free?$AA@ 004cbdc0 groups2.obj - 0004:00001dd4 ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 004cbdd4 groups2.obj - 0004:00001de4 ??_C@_0BL@KJJP@first?5block?5not?5big?5enough?$AA@ 004cbde4 groups2.obj - 0004:00001e00 ??_C@_0BM@DEGE@overlapping?5strings?5in?5GSTB?$AA@ 004cbe00 groups2.obj - 0004:00001e1c ??_C@_0BM@GHNE@can?8t?5translate?5to?5this?5osk?$AA@ 004cbe1c groups2.obj - 0004:00001e38 ??_C@_07PNIM@bad?5bst?$AA@ 004cbe38 groups2.obj - 0004:00001e40 ??_C@_0O@HDCF@bad?5_cbstFree?$AA@ 004cbe40 groups2.obj - 0004:00001e50 ??_C@_0BA@HOMP@grst?5wrong?5size?$AA@ 004cbe50 groups2.obj - 0004:00001e60 ??_C@_0BD@GPKO@_cbstFree?5is?5wrong?$AA@ 004cbe60 groups2.obj - 0004:00001e74 ??_C@_0BF@BDL@rgbst?5area?5too?5small?$AA@ 004cbe74 groups2.obj - 0004:00001e8c ??_C@_0BE@GGCD@grst?5area?5too?5small?$AA@ 004cbe8c groups2.obj - 0004:00001ea0 ??_C@_0N@GMIA@_cbEntry?5bad?$AA@ 004cbea0 groups2.obj - 0004:00001eb0 ??_C@_08IBNI@bad?5fcmp?$AA@ 004cbeb0 groups2.obj - 0004:00001ebc ??_C@_0BA@BCJG@cbExtra?5is?5zero?$AA@ 004cbebc groups2.obj - 0004:00001ecc ??_C@_0BF@IGAN@bad?5_cbstFree?5in?5GST?$AA@ 004cbecc groups2.obj - 0004:00001f04 ??_C@_0BC@MABH@shrinking?5failed?$CB?$AA@ 004cbf04 mbmp.obj - 0004:00001f18 ??_C@_0BN@HMNP@Empty?5source?5bitmap?5for?5MBMP?$AA@ 004cbf18 mbmp.obj - 0004:00001f38 ??_C@_0BC@JEGH@Invalid?5rectangle?$AA@ 004cbf38 mbmp.obj - 0004:00001f4c ??_C@_0BL@DNGM@Attempted?5to?5read?5bad?5MBMP?$AA@ 004cbf4c mbmp.obj - 0004:00001f68 ??_C@_0BC@ICFM@Wrong?5sized?5block?$AA@ 004cbf68 mbmp.obj - 0004:00001f7c ??_C@_0BC@FLNL@_hqrgb?5wrong?5size?$AA@ 004cbf7c mbmp.obj - 0004:00001f90 ??_C@_0O@JBAC@_cbRgcb?5wrong?$AA@ 004cbf90 mbmp.obj - 0004:00001fbc ?vluSysVolFake@@3KA 004cbfbc sndm.obj - 0004:00001fc0 ??_C@_0BB@DFGC@bad?5_cactSuspend?$AA@ 004cbfc0 sndm.obj - 0004:00001fd4 ??_C@_0BI@CEDJ@couldn?8t?5allocate?5queue?$AA@ 004cbfd4 sndm.obj - 0004:00002010 ?vcbMaxMemWave@SDAM@@2JA 004cc010 sndam.obj - 0004:00002048 ??_C@_0P@HMJA@bad?5loop?5count?$AA@ 004cc048 sndam.obj - 0004:00002058 ??_C@_0BE@PDLM@Audioman?5messed?5up?$CB?$AA@ 004cc058 sndam.obj - 0004:00002090 ??_C@_0CB@BCE@calling?5_VlmGetSys?5with?5nil?5_hmo@ 004cc090 mididev.obj - 0004:000020b4 ??_C@_0CB@ELPC@calling?5_SetSysVol?5with?5nil?5_hmo@ 004cc0b4 mididev.obj - 0004:000020f8 ??_C@_0BO@JNJB@MSMIX?5still?5has?5active?5sounds?$AA@ 004cc0f8 mididev2.obj - 0004:00002118 ??_C@_0BD@MPCK@MISI?5still?5active?$CB?$AA@ 004cc118 mididev2.obj - 0004:0000212c ??_C@_0L@DEEF@nil?5thread?$AA@ 004cc12c mididev2.obj - 0004:00002138 ??_C@_09IDNG@nil?5event?$AA@ 004cc138 mididev2.obj - 0004:00002144 ??_C@_0BB@HDKE@already?5playing?$CB?$AA@ 004cc144 mididev2.obj - 0004:00002158 ??_C@_0BH@FADN@Bad?5pvData?1pmdws?5combo?$AA@ 004cc158 mididev2.obj - 0004:00002170 ??_C@_0M@DHJK@Wrong?5pmdws?$AA@ 004cc170 mididev2.obj - 0004:0000217c ??_C@_0BF@IOMN@what?5buffer?5is?5this?$DP?$AA@ 004cc17c mididev2.obj - 0004:00002194 ??_C@_0CB@KOKF@calling?5_GetSysVol?5with?5nil?5_hms@ 004cc194 mididev2.obj - 0004:000021b8 ??_C@_0CB@BMGG@calling?5_SetSysVol?5with?5nil?5_hms@ 004cc1b8 mididev2.obj - 0004:000021dc ??_C@_0CC@EBKD@WMS?5still?5has?5some?5active?5buffer@ 004cc1dc mididev2.obj - 0004:00002200 ??_C@_0P@GIHP@midiStreamStop?$AA@ 004cc200 mididev2.obj - 0004:00002210 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 004cc210 mididev2.obj - 0004:00002224 ??_C@_0BA@JHNK@midiStreamPause?$AA@ 004cc224 mididev2.obj - 0004:00002234 ??_C@_0O@MCEN@midiStreamOut?$AA@ 004cc234 mididev2.obj - 0004:00002244 ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 004cc244 mididev2.obj - 0004:00002258 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 004cc258 mididev2.obj - 0004:0000226c ??_C@_0BA@PKJI@midiStreamClose?$AA@ 004cc26c mididev2.obj - 0004:0000227c ??_C@_0P@FAGH@midiStreamOpen?$AA@ 004cc27c mididev2.obj - 0004:0000228c ??_C@_09GPGB@WINMM?4DLL?$AA@ 004cc28c mididev2.obj - 0004:00002298 ??_C@_0BB@KAHJ@negative?5_cmhOut?$AA@ 004cc298 mididev2.obj - 0004:000022ac ??_C@_0BJ@HJFO@why?5is?5_cmhOut?5non?9zero?$DP?$AA@ 004cc2ac mididev2.obj - 0004:000022c8 ??_C@_0CJ@NKGD@closing?5a?5stream?5that?5still?5has?5@ 004cc2c8 mididev2.obj - 0004:000022f4 ??_C@_0BF@NJBO@pmh?9?$DOlpData?5is?5wrong?$AA@ 004cc2f4 mididev2.obj - 0004:0000230c ??_C@_0N@NPMO@corrupt?5msir?$AA@ 004cc30c mididev2.obj - 0004:0000231c ??_C@_09NNCE@wrong?5hms?$AA@ 004cc31c mididev2.obj - 0004:00002328 ??_C@_0BI@DGGH@Still?5have?5some?5buffers?$AA@ 004cc328 mididev2.obj - 0004:00002340 ??_C@_0BC@ELJP@Still?5have?5an?5HMS?$AA@ 004cc340 mididev2.obj - 0004:00002398 ?_cmmGVDS@GVDS@@1UCMM@CMH@@A 004cc398 video.obj - 0004:000023a0 ?_rgcmmeGVDS@GVDS@@0QAUCMME@CMH@@A 004cc3a0 video.obj - 0004:000023f0 ?_cmmTXHG@TXHG@@1UCMM@CMH@@A 004cc3f0 kidhelp.obj - 0004:000023f8 ?_rgcmmeTXHG@TXHG@@0QAUCMME@CMH@@A 004cc3f8 kidhelp.obj - 0004:00002428 ??_C@_0P@NFKE@string?5missing?$AA@ 004cc428 kidhelp.obj - 0004:00002438 ??_C@_0P@FHNJ@bad?5group?5data?$AA@ 004cc438 kidhelp.obj - 0004:00002448 ??_C@_0BE@FPAB@not?5tracking?5mouse?$CB?$AA@ 004cc448 kidhelp.obj - 0004:0000245c ??_C@_0BN@CKIE@mouse?5already?5being?5tracked?$CB?$AA@ 004cc45c kidhelp.obj - 0004:000024a0 ?_cmmGOK@GOK@@1UCMM@CMH@@A 004cc4a0 kidspace.obj - 0004:000024a8 ?_rgcmmeGOK@GOK@@0QAUCMME@CMH@@A 004cc4a8 kidspace.obj - 0004:00002508 ?_mpgmsgmseEnd@@3QAUGMSE@@A 004cc508 kidspace.obj - 0004:000025b0 ?_mpgmsgmseMove@@3QAUGMSE@@A 004cc5b0 kidspace.obj - 0004:00002658 ?_mpgmsgmseRollOff@@3QAUGMSE@@A 004cc658 kidspace.obj - 0004:00002700 ?_mpgmsgmseMouseDown@@3QAUGMSE@@A 004cc700 kidspace.obj - 0004:000027a8 ?_mpgmsgmseDownOn@@3QAUGMSE@@A 004cc7a8 kidspace.obj - 0004:00002850 ?_mpgmsgmseDownOff@@3QAUGMSE@@A 004cc850 kidspace.obj - 0004:000028f8 ?_mpgmsgmseUpOn@@3QAUGMSE@@A 004cc8f8 kidspace.obj - 0004:000029a0 ?_mpgmsgmseUpOff@@3QAUGMSE@@A 004cc9a0 kidspace.obj - 0004:00002af8 ??_C@_09PGGB@why?5fail?$DP?$AA@ 004ccaf8 screxe.obj - 0004:00002b04 ??_C@_02MECO@?$CFd?$AA@ 004ccb04 screxe.obj - 0004:00002b28 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 004ccb28 rtxt.obj - 0004:00002b30 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 004ccb30 rtxt.obj - 0004:00002c20 ??_C@_0CK@FOFE@stream?5doesn?8t?5end?5with?5a?5carria@ 004ccc20 rtxt.obj - 0004:00002c4c ??_C@_0CD@LPLH@ibMac?5not?5divisible?5by?5size?$CIacha@ 004ccc4c rtxt.obj - 0004:00002c70 ??_C@_0BM@KLFJ@BSF?5has?5a?5partial?5character?$AA@ 004ccc70 rtxt.obj - 0004:00002c8c ??_C@_0BG@MPE@Can?8t?5translate?5a?5BSF?$AA@ 004ccc8c rtxt.obj - 0004:00002ca4 ??_C@_0CF@BNNC@IbMac?$CI?$CJ?5not?5divisible?5by?5size?$CIac@ 004ccca4 rtxt.obj - 0004:00002ccc ??_C@_0BF@PJHC@bad?5_cactSuspendUndo?$AA@ 004ccccc rtxt.obj - 0004:00002ce4 ??_C@_0BE@BMIO@isolated?5line?5feeds?$AA@ 004ccce4 rtxt.obj - 0004:00002cf8 ??_C@_0CJ@FMK@last?5character?5is?5not?5a?5return?5c@ 004cccf8 rtxt.obj - 0004:00002d24 ??_C@_0CH@IHHP@can?8t?5use?5invert?5as?5a?5background@ 004ccd24 rtxt.obj - 0004:00002d4c ??_C@_0CB@JELN@Can?8t?5do?5a?5normal?5save?5?9?5no?5file@ 004ccd4c rtxt.obj - 0004:00002d70 ??_C@_0BF@KGIC@non?9increasing?5mpe?8s?$AA@ 004ccd70 rtxt.obj - 0004:00002d88 ??_C@_0BG@IMMF@bad?5default?5font?5size?$AA@ 004ccd88 rtxt.obj - 0004:00002da0 ??_C@_0P@IJMB@bad?5font?5entry?$AA@ 004ccda0 rtxt.obj - 0004:00002db0 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 004ccdb0 rtxt.obj - 0004:00002dc0 ??_C@_09OCFF@no?5MPE?8s?$CB?$AA@ 004ccdc0 rtxt.obj - 0004:00002dcc ??_C@_0BA@EEMO@cact?5overflowed?$AA@ 004ccdcc rtxt.obj - 0004:00002ddc ??_C@_0BC@BPKD@bad?5index?5into?5AG?$AA@ 004ccddc rtxt.obj - 0004:00002df0 ??_C@_0M@FMGH@invalid?5onn?$AA@ 004ccdf0 rtxt.obj - 0004:00002dfc ??_C@_0BC@GHIO@bad?5group?5element?$AA@ 004ccdfc rtxt.obj - 0004:00002e10 ??_C@_0CE@BPKC@why?5is?5there?5an?5active?5undo?5reco@ 004cce10 rtxt.obj - 0004:00002e34 ??_C@_0BH@JGKA@new?5para?5after?5old?5one?$AA@ 004cce34 rtxt.obj - 0004:00002e4c ??_C@_0BI@FHDH@new?5para?5before?5old?5one?$AA@ 004cce4c rtxt.obj - 0004:00002e64 ??_C@_09EEFH@bad?5cpSrc?$AA@ 004cce64 rtxt.obj - 0004:00002e70 ??_C@_07JAP@bad?5flo?$AA@ 004cce70 rtxt.obj - 0004:00002e78 ??_C@_0BP@GPDI@bad?5parameters?5to?5FReplaceTxrd?$AA@ 004cce78 rtxt.obj - 0004:00002e98 ??_C@_0BP@GEAI@trying?5to?5replace?5trailing?5EOP?$AA@ 004cce98 rtxt.obj - 0004:00002eb8 ??_C@_0CL@FCLK@can?8t?5copy?5from?5a?5rich?5text?5doc?5@ 004cceb8 rtxt.obj - 0004:00002ee4 ??_C@_0BE@GFCP@ensure?5in?5ag?5failed?$AA@ 004ccee4 rtxt.obj - 0004:00002ef8 ??_C@_0BH@ILBP@growing?5_pglmpe?5failed?$AA@ 004ccef8 rtxt.obj - 0004:00002f10 ??_C@_0BE@OEMI@_FFindMpe?5messed?5up?$AA@ 004ccf10 rtxt.obj - 0004:00002f24 ??_C@_0BJ@CHOK@bad?5cpLim?5from?5_FFindMpe?$AA@ 004ccf24 rtxt.obj - 0004:00002f40 ??_C@_0BJ@PKPG@should?5have?5been?5ensured?$AA@ 004ccf40 rtxt.obj - 0004:00002f5c ??_C@_0BB@FOPC@cp?5not?5an?5object?$AA@ 004ccf5c rtxt.obj - 0004:00002f70 ??_C@_0DO@IEAA@This?5rich?5text?5undo?5object?5canno@ 004ccf70 rtxt.obj - 0004:00002fb0 ??_C@_0L@INOB@empty?5RTUN?$AA@ 004ccfb0 rtxt.obj - 0004:00002fe0 ??_C@_0BD@JIFK@xpBase?5?$DO?5xpLimLine?$AA@ 004ccfe0 rtxt2.obj - 0004:00002ff4 ??_C@_0BN@IIGO@bad?5rectangle?5for?5the?5object?$AA@ 004ccff4 rtxt2.obj - 0004:00003014 ??_C@_0CC@GHD@why?5is?5_chrd?4cpLimDraw?5?$DN?$DN?5_cpMin@ 004cd014 rtxt2.obj - 0004:00003038 ??_C@_0CB@ODOD@why?5isn?8t?5_ilinInval?5?$DN?$DN?5ilinMac?$DP@ 004cd038 rtxt2.obj - 0004:0000305c ??_C@_0BL@IJJH@why?5isn?8t?5cpFind?5?$DO?$DN?5cpLim?$DP?$AA@ 004cd05c rtxt2.obj - 0004:00003078 ??_C@_0N@MFLG@Invalid?5LINs?$AA@ 004cd078 rtxt2.obj - 0004:00003088 ??_C@_0BN@OKNN@why?5isn?8t?5dypFind?5?$DO?$DN?5dypTot?$DP?$AA@ 004cd088 rtxt2.obj - 0004:000030a8 ??_C@_0BB@HLFD@why?5is?5cch?5zero?$DP?$AA@ 004cd0a8 rtxt2.obj - 0004:000030bc ??_C@_07DPP@bad?5run?$AA@ 004cd0bc rtxt2.obj - 0004:000030c4 ??_C@_0BJ@GBOL@why?5don?8t?5we?5have?5a?5BOP?$DP?$AA@ 004cd0c4 rtxt2.obj - 0004:000030e0 ??_C@_0BO@JNII@why?5is?5run?4cpLim?5?$DO?$DN?5cpLimChp?$DP?$AA@ 004cd0e0 rtxt2.obj - 0004:00003100 ??_C@_0BK@NEDM@why?5is?5cpCur?5?$DO?$DN?5cpLimChp?$DP?$AA@ 004cd100 rtxt2.obj - 0004:0000311c ??_C@_0BM@DHHO@selection?5is?5on?5in?5InvalCp?$CB?$AA@ 004cd11c rtxt2.obj - 0004:00003154 ?_cactLast@DOCB@@1JA 004cd154 docb.obj - 0004:00003158 ?_pdocbFirst@DOCB@@1PAV1@A 004cd158 docb.obj - 0004:00003160 ?_cmmDDG@DDG@@1UCMM@CMH@@A 004cd160 docb.obj - 0004:00003168 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 004cd168 docb.obj - 0004:00003238 ?_cmmDSG@DSG@@1UCMM@CMH@@A 004cd238 docb.obj - 0004:00003240 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 004cd240 docb.obj - 0004:00003270 ??_C@_0CE@BPAB@why?5wasn?8t?5this?5child?5doc?5releas@ 004cd270 docb.obj - 0004:00003294 ??_C@_0CI@EBJI@we?8re?5recursing?5into?5the?5DOCB?3?3R@ 004cd294 docb.obj - 0004:000032bc ??_C@_0CN@JCIE@why?5are?5there?5still?5DDG?8s?5open?5o@ 004cd2bc docb.obj - 0004:000032ec ??_C@_0BC@HEOH@corrupt?5docb?5tree?$AA@ 004cd2ec docb.obj - 0004:00003300 ??_C@_0CG@LHOP@The?5clipboard?5document?5is?5going?5@ 004cd300 docb.obj - 0004:00003328 ??_C@_0CJ@OGCN@doc?5is?5still?5being?5displayed?5by?5@ 004cd328 docb.obj - 0004:00003354 ??_C@_0BI@KGKL@docb?5still?5has?5children?$AA@ 004cd354 docb.obj - 0004:0000336c ??_C@_0BK@DGAM@Release?5not?5called?5first?$CB?$AA@ 004cd36c docb.obj - 0004:00003388 ??_C@_0DF@HACK@why?5are?5there?5no?5DDGs?5for?5this?5d@ 004cd388 docb.obj - 0004:000033c0 ??_C@_0BI@KKOJ@pddg?5not?5in?5docb?8s?5list?$AA@ 004cd3c0 docb.obj - 0004:000033d8 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 004cd3d8 docb.obj - 0004:000033e4 ??_C@_09IDMC@Clipboard?$AA@ 004cd3e4 docb.obj - 0004:000033f0 ??_C@_0BP@ELKC@unhandled?5cid?5in?5FEnableDdgCmd?$AA@ 004cd3f0 docb.obj - 0004:00003410 ??_C@_0CF@MEK@we?8re?5recursing?5into?5the?5destruc@ 004cd410 docb.obj - 0004:00003438 ??_C@_0CA@OKAI@the?5DSG?5wasn?8t?5added?5to?5the?5DMW?$AA@ 004cd438 docb.obj - 0004:00003458 ??_C@_0BF@HMHJ@DSED?5tree?5is?5trashed?$AA@ 004cd458 docb.obj - 0004:00003470 ??_C@_0BC@CHBK@corrupt?5DSED?5tree?$AA@ 004cd470 docb.obj - 0004:00003484 ??_C@_0O@MJPM@DSED?5tree?5bad?$AA@ 004cd484 docb.obj - 0004:00003494 ??_C@_0CC@BIDP@pdsgSplit?5is?5not?5a?5registered?5DS@ 004cd494 docb.obj - 0004:000034b8 ??_C@_0CA@BLAJ@no?5DSGs?5yet?0?5so?5can?8t?5split?5one?$AA@ 004cd4b8 docb.obj - 0004:000034d8 ??_C@_0BG@IHEB@DSED?5root?5value?5wrong?$AA@ 004cd4d8 docb.obj - 0004:000034f0 ??_C@_0P@LHMI@bad?5root?5value?$AA@ 004cd4f0 docb.obj - 0004:00003500 ??_C@_0O@KHGM@bad?5DSED?5tree?$AA@ 004cd500 docb.obj - 0004:00003510 ??_C@_08HJOC@bad?5node?$AA@ 004cd510 docb.obj - 0004:0000351c ??_C@_0BH@HFEJ@node?5should?5have?5a?5dsg?$AA@ 004cd51c docb.obj - 0004:00003534 ??_C@_0BN@JMDO@nil?5parent?5but?5not?5the?5root?$CB?$AA@ 004cd534 docb.obj - 0004:00003554 ??_C@_0BF@EMHD@split?5can?8t?5be?5moved?$AA@ 004cd554 docb.obj - 0004:0000356c ??_C@_0BB@FBIP@node?5count?5wrong?$AA@ 004cd56c docb.obj - 0004:00003580 ??_C@_0BC@GHEO@idsedRight?5is?5nil?$AA@ 004cd580 docb.obj - 0004:00003594 ??_C@_08GBPF@bad?5edge?$AA@ 004cd594 docb.obj - 0004:000035a0 ??_C@_0CD@NKGA@dsed?5tree?5is?5mangled?5or?5has?5a?5lo@ 004cd5a0 docb.obj - 0004:000035c4 ??_C@_0BO@EEIG@right?5child?8s?5parent?5is?5wrong?$AA@ 004cd5c4 docb.obj - 0004:000035e4 ??_C@_0BN@JDOP@left?5child?8s?5parent?5is?5wrong?$AA@ 004cd5e4 docb.obj - 0004:00003604 ??_C@_0BC@HGNB@nil?5pdsg?5expected?$AA@ 004cd604 docb.obj - 0004:00003618 ??_C@_0BC@EGIE@free?5right?5child?$CB?$AA@ 004cd618 docb.obj - 0004:0000362c ??_C@_0BL@FCAG@non?9nil?5left?5but?5nil?5right?$AA@ 004cd62c docb.obj - 0004:00003648 ??_C@_0BB@POPH@free?5left?5child?$CB?$AA@ 004cd648 docb.obj - 0004:0000365c ??_C@_0BB@BEEP@bad?5_dsno?5in?5DSG?$AA@ 004cd65c docb.obj - 0004:00003670 ??_C@_0BI@HFOK@left?5nil?0?5but?5right?5not?$AA@ 004cd670 docb.obj - 0004:00003688 ??_C@_0BK@PKFL@dsed?4idsedPar?5isn?8t?5right?$AA@ 004cd688 docb.obj - 0004:000036a4 ??_C@_0L@MEPF@free?5node?$CB?$AA@ 004cd6a4 docb.obj - 0004:000036b0 ??_C@_0BP@NDI@some?5DSEDs?0?5but?5nil?5_idsedRoot?$AA@ 004cd6b0 docb.obj - 0004:000036d0 ??_C@_0CC@NHIN@no?5paldsed?5but?5_idsedRoot?5not?5ni@ 004cd6d0 docb.obj - 0004:000036f4 ??_C@_0BL@OHLG@must?5split?5an?5existing?5DSG?$AA@ 004cd6f4 docb.obj - 0004:00003710 ??_C@_0CI@PJOP@why?5are?5we?5splitting?5an?5unattach@ 004cd710 docb.obj - 0004:00003738 ??_C@_0DC@CLKB@must?5specify?5exactly?5one?5of?5?$CIfds@ 004cd738 docb.obj - 0004:0000378c ??_C@_0DI@KPOC@can?8t?5change?5the?5clipboard?5while@ 004cd78c clip.obj - 0004:000037c4 ??_C@_0DI@JOCL@can?8t?5import?5the?5clipboard?5while@ 004cd7c4 clip.obj - 0004:000037fc ??_C@_0BP@ELFF@Already?5exporting?5or?5importing?$AA@ 004cd7fc clip.obj - 0004:0000381c ??_C@_0O@KBJ@not?5exporting?$AA@ 004cd81c clip.obj - 0004:0000382c ??_C@_0BO@NMNE@both?5importing?5and?5exporting?$CB?$AA@ 004cd82c clip.obj - 0004:00003870 ??_C@_0BA@NDF@blck?5is?5too?5big?$AA@ 004cd870 stream.obj - 0004:00003880 ??_C@_0BA@LNIE@cleanup?5failed?$CB?$AA@ 004cd880 stream.obj - 0004:00003890 ??_C@_0CC@LBKJ@didn?8t?5insert?5the?5correct?5amount@ 004cd890 stream.obj - 0004:000038b4 ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 004cd8b4 stream.obj - 0004:000038cc ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 004cd8cc stream.obj - 0004:000038d8 ??_C@_08NKDG@wrong?5ib?$AA@ 004cd8d8 stream.obj - 0004:000038e4 ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 004cd8e4 stream.obj - 0004:00003900 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 004cd900 stream.obj - 0004:00003918 ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 004cd918 stream.obj - 0004:00003934 ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 004cd934 stream.obj - 0004:00003948 ??_C@_0BP@PMGM@wrong?5number?5of?5bytes?5written?$CB?$AA@ 004cd948 stream.obj - 0004:00003968 ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 004cd968 stream.obj - 0004:00003974 ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 004cd974 stream.obj - 0004:0000398c ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 004cd98c stream.obj - 0004:000039a0 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 004cd9a0 stream.obj - 0004:000039d0 ?_rtiLast@CFL@@0JA 004cd9d0 chunk.obj - 0004:000039d4 ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 004cd9d4 chunk.obj - 0004:000039f0 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 004cd9f0 chunk.obj - 0004:00003a10 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 004cda10 chunk.obj - 0004:00003a28 ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 004cda28 chunk.obj - 0004:00003a38 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 004cda38 chunk.obj - 0004:00003a5c ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 004cda5c chunk.obj - 0004:00003a70 ??_C@_08EHFM@Bad?5RTIE?$AA@ 004cda70 chunk.obj - 0004:00003a7c ??_C@_09HBDJ@bad?5index?$AA@ 004cda7c chunk.obj - 0004:00003a88 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 004cda88 chunk.obj - 0004:00003aa8 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 004cdaa8 chunk.obj - 0004:00003abc ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 004cdabc chunk.obj - 0004:00003acc ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 004cdacc chunk.obj - 0004:00003adc ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 004cdadc chunk.obj - 0004:00003af8 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 004cdaf8 chunk.obj - 0004:00003b14 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 004cdb14 chunk.obj - 0004:00003b2c ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 004cdb2c chunk.obj - 0004:00003b50 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 004cdb50 chunk.obj - 0004:00003b6c ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 004cdb6c chunk.obj - 0004:00003b80 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 004cdb80 chunk.obj - 0004:00003b94 ??_C@_06CFJE@bad?5fp?$AA@ 004cdb94 chunk.obj - 0004:00003b9c ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 004cdb9c chunk.obj - 0004:00003bb0 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 004cdbb0 chunk.obj - 0004:00003bc0 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 004cdbc0 chunk.obj - 0004:00003bcc ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 004cdbcc chunk.obj - 0004:00003bf0 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 004cdbf0 chunk.obj - 0004:00003c08 ??_C@_0M@INOI@corrupt?5crp?$AA@ 004cdc08 chunk.obj - 0004:00003c14 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 004cdc14 chunk.obj - 0004:00003c34 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 004cdc34 chunk.obj - 0004:00003c4c ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 004cdc4c chunk.obj - 0004:00003c64 ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 004cdc64 chunk.obj - 0004:00003c84 ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 004cdc84 chunk.obj - 0004:00003c94 ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 004cdc94 chunk.obj - 0004:00003cb8 ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 004cdcb8 chunk.obj - 0004:00003ce4 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 004cdce4 chunk.obj - 0004:00003cfc ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 004cdcfc chunk.obj - 0004:00003d14 ??_C@_0BF@CKCG@corrupt?5chunky?5index?$AA@ 004cdd14 chunk.obj - 0004:00003d2c ??_C@_0BA@GFFG@already?5a?5child?$AA@ 004cdd2c chunk.obj - 0004:00003d3c ??_C@_0BB@GINM@bad?5move?5request?$AA@ 004cdd3c chunk.obj - 0004:00003d50 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 004cdd50 chunk.obj - 0004:00003d60 ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 004cdd60 chunk.obj - 0004:00003d98 ??_C@_03JFP@MIA?$AA@ 004cdd98 chunk.obj - 0004:00003d9c ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 004cdd9c chunk.obj - 0004:00003dc0 ??_C@_0M@OPIM@not?5a?5child?$AA@ 004cddc0 chunk.obj - 0004:00003dcc ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 004cddcc chunk.obj - 0004:00003ddc ??_C@_07NFMH@overlap?$AA@ 004cdddc chunk.obj - 0004:00003de4 ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 004cdde4 chunk.obj - 0004:00003df0 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 004cddf0 chunk.obj - 0004:00003e18 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 004cde18 chunk.obj - 0004:00003e24 ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 004cde24 chunk.obj - 0004:00003e30 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 004cde30 chunk.obj - 0004:00003e44 ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 004cde44 chunk.obj - 0004:00003e70 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 004cde70 chunk.obj - 0004:00003e80 ??_C@_07BDGM@bad?5crp?$AA@ 004cde80 chunk.obj - 0004:00003e88 ??_C@_0CE@COLA@why?5is?5this?5cnom?5already?5in?5the?5@ 004cde88 chunk.obj - 0004:00003eac ??_C@_0BK@ECCP@_FFindCtgCno?5doesn?8t?5work?$AA@ 004cdeac chunk.obj - 0004:00003ec8 ??_C@_0CL@CGLG@how?5can?5the?5root?5already?5have?5be@ 004cdec8 chunk.obj - 0004:00003ef4 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 004cdef4 chunk.obj - 0004:00003f28 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 004cdf28 codec.obj - 0004:00003f48 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 004cdf48 codec.obj - 0004:00003f60 ??_C@_08DJLA@nil?5cfmt?$AA@ 004cdf60 codec.obj - 0004:00003f6c ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 004cdf6c codec.obj - 0004:00003f8c ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 004cdf8c codec.obj - 0004:00003fc8 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 004cdfc8 codkauai.obj - 0004:00003fec ??_C@_07DEPO@bad?5len?$AA@ 004cdfec codkauai.obj - 0004:00003ff4 ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 004cdff4 codkauai.obj - 0004:00004004 ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 004ce004 codkauai.obj - 0004:00004028 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 004ce028 codkauai.obj - 0004:0000403c ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 004ce03c codkauai.obj - 0004:00004050 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 004ce050 codkauai.obj - 0004:0000406c ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 004ce06c codkauai.obj - 0004:0000409c ??_C@_0P@KAFA@still?5attached?$AA@ 004ce09c crf.obj - 0004:000040ac ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 004ce0ac crf.obj - 0004:000040c0 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 004ce0c0 crf.obj - 0004:000040dc ??_C@_0CB@ILAK@someone?5still?5refers?5to?5this?5CRF@ 004ce0dc crf.obj - 0004:00004100 ??_C@_0BD@BILB@BACO?5not?5attached?$CB?$AA@ 004ce100 crf.obj - 0004:00004114 ??_C@_0BF@MMHE@how?5did?5this?5happen?$DP?$AA@ 004ce114 crf.obj - 0004:0000412c ??_C@_0P@DLJO@crep?5too?5small?$AA@ 004ce12c crf.obj - 0004:0000413c ??_C@_0L@BDOO@bad?5pfnrpo?$AA@ 004ce13c crf.obj - 0004:00004148 ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 004ce148 crf.obj - 0004:00004168 ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 004ce168 crf.obj - 0004:00004184 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 004ce184 crf.obj - 0004:000041a0 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 004ce1a0 crf.obj - 0004:000041bc ??_C@_0CA@FCHL@baco?5claims?5to?5not?5be?5attached?$CB?$AA@ 004ce1bc crf.obj - 0004:000041dc ??_C@_0BC@IJA@nil?5object?5reader?$AA@ 004ce1dc crf.obj - 0004:0000420c ?vftgCreator@FIL@@2JA 004ce20c file.obj - 0004:00004210 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 004ce210 file.obj - 0004:00004224 ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 004ce224 file.obj - 0004:00004238 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 004ce238 file.obj - 0004:0000424c ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 004ce24c file.obj - 0004:00004264 ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 004ce264 file.obj - 0004:0000427c ??_C@_0BG@MHHD@writing?5outside?5flo?52?$AA@ 004ce27c file.obj - 0004:00004294 ??_C@_0BO@MEMN@why?5did?5CchTranslateRgb?5fail?$DP?$AA@ 004ce294 file.obj - 0004:000042b4 ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 004ce2b4 file.obj - 0004:000042cc ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 004ce2cc file.obj - 0004:000042e4 ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 004ce2e4 file.obj - 0004:000042f8 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 004ce2f8 file.obj - 0004:00004310 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 004ce310 file.obj - 0004:00004324 ??_C@_0BH@KHHD@reading?5outside?5blck?52?$AA@ 004ce324 file.obj - 0004:0000433c ??_C@_0BH@BMPJ@writing?5outside?5blck?52?$AA@ 004ce33c file.obj - 0004:00004354 ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 004ce354 file.obj - 0004:00004368 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 004ce368 file.obj - 0004:0000437c ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 004ce37c file.obj - 0004:00004390 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 004ce390 file.obj - 0004:000043ac ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 004ce3ac file.obj - 0004:000043c4 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 004ce3c4 file.obj - 0004:000043e0 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 004ce3e0 file.obj - 0004:00004400 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 004ce400 file.obj - 0004:00004424 ??_C@_0L@MCHM@bad?5_fpCur?$AA@ 004ce424 file.obj - 0004:00004450 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 004ce450 filewin.obj - 0004:0000446c ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 004ce46c filewin.obj - 0004:00004488 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 004ce488 filewin.obj - 0004:000044a8 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 004ce4a8 filewin.obj - 0004:000044b8 ??_C@_0P@DBGM@rename?5failure?$AA@ 004ce4b8 filewin.obj - 0004:000044c8 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 004ce4c8 filewin.obj - 0004:000044f8 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 004ce4f8 filewin.obj - 0004:0000452c ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 004ce52c filewin.obj - 0004:00004578 ?vftgTemp@@3JA 004ce578 fniwin.obj - 0004:00004580 ??_C@_08GBDA@Temp?$CF04x?$AA@ 004ce580 fniwin.obj - 0004:0000458c ??_C@_04POLC@?$CFc?3?2?$AA@ 004ce58c fniwin.obj - 0004:00004594 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 004ce594 fniwin.obj - 0004:000045ac ??_C@_07JFJJ@Bad?5FTG?$AA@ 004ce5ac fniwin.obj - 0004:000045b4 ??_C@_07NLCI@bad?5fni?$AA@ 004ce5b4 fniwin.obj - 0004:000045bc ??_C@_0N@NEA@file?5is?5open?$AA@ 004ce5bc fniwin.obj - 0004:000045cc ??_C@_02OOND@?4?4?$AA@ 004ce5cc fniwin.obj - 0004:000045d0 ??_C@_0BC@IKJG@expected?5filename?$AA@ 004ce5d0 fniwin.obj - 0004:000045e4 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 004ce5e4 fniwin.obj - 0004:000045f4 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 004ce5f4 fniwin.obj - 0004:00004608 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 004ce608 fniwin.obj - 0004:00004620 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 004ce620 fniwin.obj - 0004:00004630 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 004ce630 fniwin.obj - 0004:00004640 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 004ce640 fniwin.obj - 0004:00004674 ??_C@_0BF@PNMJ@Dumping?5chunk?5failed?$AA@ 004ce674 chse.obj - 0004:0000468c ??_C@_09DECH@PREPACKED?$AA@ 004ce68c chse.obj - 0004:00004698 ??_C@_02OGOH@?8?5?$AA@ 004ce698 chse.obj - 0004:0000469c ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 004ce69c chse.obj - 0004:000046a4 ??_C@_07POOB@0x?$CF02x?5?$AA@ 004ce6a4 chse.obj - 0004:000046ac ??_C@_05GLIP@?5?5?5?5?5?$AA@ 004ce6ac chse.obj - 0004:000046b4 ??_C@_04EHOP@BYTE?$AA@ 004ce6b4 chse.obj - 0004:000046bc ??_C@_05BME@?7ITEM?$AA@ 004ce6bc chse.obj - 0004:000046c4 ??_C@_05GJCF@?7FREE?$AA@ 004ce6c4 chse.obj - 0004:000046cc ??_C@_06ILO@?7?7?$CC?$CFs?$CC?$AA@ 004ce6cc chse.obj - 0004:000046d4 ??_C@_08DDHM@?7GST?$CI?$CFd?$CJ?$AA@ 004ce6d4 chse.obj - 0004:000046e0 ??_C@_08NEAB@?7AST?$CI?$CFd?$CJ?$AA@ 004ce6e0 chse.obj - 0004:000046ec ??_C@_0BG@IHJL@neither?5a?5GST?5or?5AST?$CB?$AA@ 004ce6ec chse.obj - 0004:00004724 ??_C@_0DI@IFAL@why?5are?5you?5calling?5this?5when?5th@ 004ce724 dlg.obj - 0004:0000475c ??_C@_0P@BJLM@bad?5combo?5item?$AA@ 004ce75c dlg.obj - 0004:0000476c ??_C@_0BJ@CDJF@not?5a?5text?5item?5or?5combo?$AA@ 004ce76c dlg.obj - 0004:00004788 ??_C@_0BP@GJMK@why?5did?5setting?5the?5data?5fail?$DP?$AA@ 004ce788 dlg.obj - 0004:000047a8 ??_C@_0BA@LEDF@not?5a?5check?5box?$AA@ 004ce7a8 dlg.obj - 0004:000047b8 ??_C@_0M@DEMC@not?5a?5combo?$AA@ 004ce7b8 dlg.obj - 0004:000047e8 ?_szDlgProp@@3QADA 004ce7e8 dlgwin.obj - 0004:000047ec ??_C@_0BH@KIEH@no?5dits?5in?5this?5dialog?$AA@ 004ce7ec dlgwin.obj - 0004:00004804 ??_C@_0BI@GHJH@no?5items?5in?5this?5dialog?$AA@ 004ce804 dlgwin.obj - 0004:0000481c ??_C@_0BH@NFFD@wrong?5lim?5on?5edit?5item?$AA@ 004ce81c dlgwin.obj - 0004:00004834 ??_C@_0BL@IDGN@bad?5call?5to?5DLG?3?3SelectDit?$AA@ 004ce834 dlgwin.obj - 0004:00004850 ??_C@_0BE@FDKG@no?5radio?5button?5set?$AA@ 004ce850 dlgwin.obj - 0004:00004864 ??_C@_0BD@CCEM@not?5a?5radio?5group?$CB?$AA@ 004ce864 dlgwin.obj - 0004:00004878 ??_C@_0L@BPLN@no?5dialog?$CB?$AA@ 004ce878 dlgwin.obj - 0004:00004884 ??_C@_0BH@KEF@wrong?5lim?5on?5check?5box?$AA@ 004ce884 dlgwin.obj - 0004:0000489c ??_C@_0BB@JHMD@not?5a?5check?5box?$CB?$AA@ 004ce89c dlgwin.obj - 0004:000048b0 ??_C@_0BC@OOLE@wrong?5lim?5on?5item?$AA@ 004ce8b0 dlgwin.obj - 0004:000048c4 ??_C@_0BI@NNCK@not?5edit?5item?5or?5combo?$CB?$AA@ 004ce8c4 dlgwin.obj - 0004:000048dc ??_C@_0BI@MIMM@Couldn?8t?5get?5combo?5hwnd?$AA@ 004ce8dc dlgwin.obj - 0004:000048f4 ??_C@_0L@PEDO@not?5combo?$CB?$AA@ 004ce8f4 dlgwin.obj - 0004:00004920 ?_pszOom@@3PADA 004ce920 scrcom.obj - 0004:00004924 ?_pszSyntax@@3PADA 004ce924 scrcom.obj - 0004:00004928 ?_rgszop@@3QAUSZOP@@A 004ce928 scrcom.obj - 0004:00004b08 ?_rgarop@@3QAUAROP@@A 004ceb08 scrcom.obj - 0004:00004d78 ?_rgpszKey@@3QAPADA 004ced78 scrcom.obj - 0004:00004d98 ?_rgtomeExp@@3QAUTOME@@A 004ced98 scrcom.obj - 0004:00004ff8 ?_rgtomeOp@@3QAUTOME@@A 004ceff8 scrcom.obj - 0004:000050bc ??_C@_08HOLA@Continue?$AA@ 004cf0bc scrcom.obj - 0004:000050c8 ??_C@_05EABD@Break?$AA@ 004cf0c8 scrcom.obj - 0004:000050d0 ??_C@_05NNJC@While?$AA@ 004cf0d0 scrcom.obj - 0004:000050d8 ??_C@_03HPMG@End?$AA@ 004cf0d8 scrcom.obj - 0004:000050dc ??_C@_04CCEF@Else?$AA@ 004cf0dc scrcom.obj - 0004:000050e4 ??_C@_04CPFE@Elif?$AA@ 004cf0e4 scrcom.obj - 0004:000050ec ??_C@_02BAJ@If?$AA@ 004cf0ec scrcom.obj - 0004:000050f0 ??_C@_04POBJ@Goto?$AA@ 004cf0f0 scrcom.obj - 0004:000050f8 ??_C@_06GDJA@IfGoto?$AA@ 004cf0f8 scrcom.obj - 0004:00005100 ??_C@_0L@KPKB@CopySubStr?$AA@ 004cf100 scrcom.obj - 0004:0000510c ??_C@_06KDAM@LenStr?$AA@ 004cf10c scrcom.obj - 0004:00005114 ??_C@_0L@ICIJ@ConcatStrs?$AA@ 004cf114 scrcom.obj - 0004:00005120 ??_C@_08HOLI@StrToNum?$AA@ 004cf120 scrcom.obj - 0004:0000512c ??_C@_08PBFD@NumToStr?$AA@ 004cf12c scrcom.obj - 0004:00005138 ??_C@_09JFKG@ScaleTime?$AA@ 004cf138 scrcom.obj - 0004:00005144 ??_C@_09KOLA@MergeStrs?$AA@ 004cf144 scrcom.obj - 0004:00005150 ??_C@_07MHIA@NukeStr?$AA@ 004cf150 scrcom.obj - 0004:00005158 ??_C@_07ELLC@MoveStr?$AA@ 004cf158 scrcom.obj - 0004:00005160 ??_C@_07PCEE@CopyStr?$AA@ 004cf160 scrcom.obj - 0004:00005168 ??_C@_05PFIH@Pause?$AA@ 004cf168 scrcom.obj - 0004:00005170 ??_C@_05LKIE@Match?$AA@ 004cf170 scrcom.obj - 0004:00005178 ??_C@_08HGHE@NextCard?$AA@ 004cf178 scrcom.obj - 0004:00005184 ??_C@_0M@GGGO@ShuffleList?$AA@ 004cf184 scrcom.obj - 0004:00005190 ??_C@_07MFK@Shuffle?$AA@ 004cf190 scrcom.obj - 0004:00005198 ??_C@_09CAHB@SetReturn?$AA@ 004cf198 scrcom.obj - 0004:000051a4 ??_C@_06JCBD@Return?$AA@ 004cf1a4 scrcom.obj - 0004:000051ac ??_C@_04LKDK@Exit?$AA@ 004cf1ac scrcom.obj - 0004:000051b4 ??_C@_02DNIN@Go?$AA@ 004cf1b4 scrcom.obj - 0004:000051b8 ??_C@_04HAFI@GoNz?$AA@ 004cf1b8 scrcom.obj - 0004:000051c0 ??_C@_03JNBL@GoZ?$AA@ 004cf1c0 scrcom.obj - 0004:000051c4 ??_C@_04PFCA@GoLe?$AA@ 004cf1c4 scrcom.obj - 0004:000051cc ??_C@_04HLIL@GoGe?$AA@ 004cf1cc scrcom.obj - 0004:000051d4 ??_C@_04PGMH@GoLt?$AA@ 004cf1d4 scrcom.obj - 0004:000051dc ??_C@_04HIGM@GoGt?$AA@ 004cf1dc scrcom.obj - 0004:000051e4 ??_C@_04NIHF@GoNe?$AA@ 004cf1e4 scrcom.obj - 0004:000051ec ??_C@_04FFPC@GoEq?$AA@ 004cf1ec scrcom.obj - 0004:000051f4 ??_C@_06ININ@Select?$AA@ 004cf1f4 scrcom.obj - 0004:000051fc ??_C@_07KEJC@RndList?$AA@ 004cf1fc scrcom.obj - 0004:00005204 ??_C@_07OONJ@PopList?$AA@ 004cf204 scrcom.obj - 0004:0000520c ??_C@_07GBJG@DupList?$AA@ 004cf20c scrcom.obj - 0004:00005214 ??_C@_03JCDI@Rev?$AA@ 004cf214 scrcom.obj - 0004:00005218 ??_C@_03FPBH@Rot?$AA@ 004cf218 scrcom.obj - 0004:0000521c ??_C@_04BCL@Swap?$AA@ 004cf21c scrcom.obj - 0004:00005224 ??_C@_03FBGG@Pop?$AA@ 004cf224 scrcom.obj - 0004:00005228 ??_C@_03MKPO@Dup?$AA@ 004cf228 scrcom.obj - 0004:0000522c ??_C@_02LCLA@Le?$AA@ 004cf22c scrcom.obj - 0004:00005230 ??_C@_02DMBL@Ge?$AA@ 004cf230 scrcom.obj - 0004:00005234 ??_C@_02LBFH@Lt?$AA@ 004cf234 scrcom.obj - 0004:00005238 ??_C@_02DPPM@Gt?$AA@ 004cf238 scrcom.obj - 0004:0000523c ??_C@_02JPOF@Ne?$AA@ 004cf23c scrcom.obj - 0004:00005240 ??_C@_02BCGC@Eq?$AA@ 004cf240 scrcom.obj - 0004:00005244 ??_C@_04ENMP@LNot?$AA@ 004cf244 scrcom.obj - 0004:0000524c ??_C@_04HPKA@LXor?$AA@ 004cf24c scrcom.obj - 0004:00005254 ??_C@_04LILD@BNot?$AA@ 004cf254 scrcom.obj - 0004:0000525c ??_C@_04IKNM@BXor?$AA@ 004cf25c scrcom.obj - 0004:00005264 ??_C@_03FEFN@BOr?$AA@ 004cf264 scrcom.obj - 0004:00005268 ??_C@_04CJLN@BAnd?$AA@ 004cf268 scrcom.obj - 0004:00005270 ??_C@_06NIPH@MulDiv?$AA@ 004cf270 scrcom.obj - 0004:00005278 ??_C@_03OAMN@Rnd?$AA@ 004cf278 scrcom.obj - 0004:0000527c ??_C@_03PGJO@Dec?$AA@ 004cf27c scrcom.obj - 0004:00005280 ??_C@_03PCMM@Inc?$AA@ 004cf280 scrcom.obj - 0004:00005284 ??_C@_03GIFK@Neg?$AA@ 004cf284 scrcom.obj - 0004:00005288 ??_C@_03CEPH@Abs?$AA@ 004cf288 scrcom.obj - 0004:0000528c ??_C@_03PJNJ@Mod?$AA@ 004cf28c scrcom.obj - 0004:00005290 ??_C@_03LANL@Div?$AA@ 004cf290 scrcom.obj - 0004:00005294 ??_C@_03FPMJ@Mul?$AA@ 004cf294 scrcom.obj - 0004:00005298 ??_C@_03KJKL@Sub?$AA@ 004cf298 scrcom.obj - 0004:0000529c ??_C@_03KPJN@Add?$AA@ 004cf29c scrcom.obj - 0004:000052a0 ??_C@_0N@GABD@Syntax?5error?$AA@ 004cf2a0 scrcom.obj - 0004:000052b0 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 004cf2b0 scrcom.obj - 0004:000052c0 ??_C@_02KKOH@?$CC?5?$AA@ 004cf2c0 scrcom.obj - 0004:000052e8 ?_szPoundLine@@3QADA 004cf2e8 lex.obj - 0004:000052f0 ?_mpchgrfct@LEXB@@1QAGA 004cf2f0 lex.obj - 0004:000053f0 ?_rgtt@@3QAFA 004cf3f0 lex.obj - 0004:000054b0 ?_rgttDouble@@3QAFA 004cf4b0 lex.obj - 0004:00005560 ?_rgttEqual@@3QAFA 004cf560 lex.obj - 0004:00005634 ?_szCtlProp@@3QADA 004cf634 ctl.obj - 0004:00005640 ??_C@_0BO@GIFH@CTL?5already?5has?5an?5OS?5control?$AA@ 004cf640 ctl.obj - 0004:00005660 ??_C@_0BP@GBPK@control?5isn?8t?5based?5in?5an?5hwnd?$AA@ 004cf660 ctl.obj - 0004:00005680 ??_C@_0DB@JCMI@exactly?5one?5of?5?$CIfscbHorz?0fscbVer@ 004cf680 ctl.obj - 0004:000056b4 ??_C@_09LIFG@SCROLLBAR?$AA@ 004cf6b4 ctl.obj - 0004:000056c0 ??_C@_0CJ@MLJM@can?5only?5add?5controls?5to?5hwnd?5ba@ 004cf6c0 ctl.obj - 0004:000056ec ??_C@_0BE@ODCL@scb?5already?5created?$AA@ 004cf6ec ctl.obj - 0004:00005700 ??_C@_0CI@NMHP@parent?5of?5size?5box?5doesn?8t?5have?5@ 004cf700 ctl.obj - 0004:00005728 ??_C@_0L@LOLL@nil?5parent?$AA@ 004cf728 ctl.obj - 0004:00005778 ??_C@_06CMDA@Engine?$AA@ 004cf778 spell.obj - 0004:00005780 ??_C@_0EC@FNIF@SOFTWARE?2Microsoft?2Shared?5Tools?2@ 004cf780 spell.obj - 0004:000057c4 ??_C@_0BG@NIBB@why?5is?5_hlib?5not?5nil?$DP?$AA@ 004cf7c4 spell.obj - 0004:000057dc ??_C@_0L@LIGM@Dictionary?$AA@ 004cf7dc spell.obj - 0004:000057e8 ??_C@_05MPGJ@PROOF?$AA@ 004cf7e8 spell.obj - 0004:000057f0 ??_C@_0CJ@KFBK@SOFTWARE?2Microsoft?2Shared?5Tools?5@ 004cf7f0 spell.obj - 0004:0000581c ??_C@_0BO@KEMP@spell?5checker?5not?5initialized?$AA@ 004cf81c spell.obj - 0004:0000583c ??_C@_0BL@PLPN@user?5dictionary?5not?5loaded?$AA@ 004cf83c spell.obj - 0004:00005858 ??_C@_0N@IDKL@nil?5_pfnInit?$AA@ 004cf858 spell.obj - 0004:00005868 ??_C@_0BA@FNEA@nil?5_pfnOptions?$AA@ 004cf868 spell.obj - 0004:00005878 ??_C@_0O@CIDN@nil?5_pfnCheck?$AA@ 004cf878 spell.obj - 0004:00005888 ??_C@_0BC@LBC@nil?5_pfnTerminate?$AA@ 004cf888 spell.obj - 0004:0000589c ??_C@_0BA@NBOA@nil?5_pfnOpenMdr?$AA@ 004cf89c spell.obj - 0004:000058ac ??_C@_0BA@GADP@nil?5_pfnOpenUdr?$AA@ 004cf8ac spell.obj - 0004:000058bc ??_C@_0P@MMDC@nil?5_pfnAddUdr?$AA@ 004cf8bc spell.obj - 0004:000058cc ??_C@_0BF@HABE@nil?5_pfnAddChangeUdr?$AA@ 004cf8cc spell.obj - 0004:000058e4 ??_C@_0BB@EMKC@nil?5_pfnClearUdr?$AA@ 004cf8e4 spell.obj - 0004:000058f8 ??_C@_0BB@JGLM@nil?5_pfnCloseMdr?$AA@ 004cf8f8 spell.obj - 0004:0000590c ??_C@_0BB@CHGD@nil?5_pfnCloseUdr?$AA@ 004cf90c spell.obj - 0004:00005940 ?_cmmAPP@APP@@1UCMM@CMH@@A 004cf940 chelp.obj - 0004:00005948 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 004cf948 chelp.obj - 0004:000059b8 ?_cmmLIG@LIG@@1UCMM@CMH@@A 004cf9b8 chelp.obj - 0004:000059c0 ?_rgcmmeLIG@LIG@@0QAUCMME@CMH@@A 004cf9c0 chelp.obj - 0004:000059f0 ?vsclid@@3GA 004cf9f0 chelp.obj - 0004:00005a90 ??_C@_08PLAM@Other?4?4?4?$AA@ 004cfa90 chelp.obj - 0004:00005a9c ??_C@_07PDHA@Italian?$AA@ 004cfa9c chelp.obj - 0004:00005aa4 ??_C@_07OBPH@Catalan?$AA@ 004cfaa4 chelp.obj - 0004:00005aac ??_C@_07JHAG@Spanish?$AA@ 004cfaac chelp.obj - 0004:00005ab4 ??_C@_0BA@FIOL@French?5Canadian?$AA@ 004cfab4 chelp.obj - 0004:00005ac4 ??_C@_06EINI@French?$AA@ 004cfac4 chelp.obj - 0004:00005acc ??_C@_0N@CPDN@Swiss?5German?$AA@ 004cfacc chelp.obj - 0004:00005adc ??_C@_06DEFE@German?$AA@ 004cfadc chelp.obj - 0004:00005ae4 ??_C@_07EPLG@British?$AA@ 004cfae4 chelp.obj - 0004:00005aec ??_C@_0L@EKGJ@Australian?$AA@ 004cfaec chelp.obj - 0004:00005af8 ??_C@_08HBAD@American?$AA@ 004cfaf8 chelp.obj - 0004:00005b04 ??_C@_0CK@DCHC@Debug?5Chelp?5?$CIAnsi?$DL?5Oct?5?52?51995?$DL?5@ 004cfb04 chelp.obj - 0004:00005b30 ??_C@_0CF@GDLJ@Rich?5Text?5files?$AA?$CK?4rtx?$AAAll?5Files?$AA@ 004cfb30 chelp.obj - 0004:00005b58 ??_C@_0CA@GMNP@Text?5files?$AA?$CK?4txt?$AAAll?5Files?$AA?$CK?4?$CK?$AA?$AA@ 004cfb58 chelp.obj - 0004:00005b78 ??_C@_0CK@OPEJ@Kid?5Help?5Files?$AA?$CK?4khp?$DL?$CK?4chk?$AAAll?5F@ 004cfb78 chelp.obj - 0004:00005ba4 ??_C@_0CL@JJMB@Chunky?5Resource?5Files?$AA?$CK?4chk?$AAAll?5@ 004cfba4 chelp.obj - 0004:00005bd0 ??_C@_0BF@LGG@Can?8t?5open?5that?5file?$AA@ 004cfbd0 chelp.obj - 0004:00005be8 ??_C@_0M@PHFN@unknown?5sca?$AA@ 004cfbe8 chelp.obj - 0004:00005bf4 ??_C@_04IFGG@?5?$CFd?5?$AA@ 004cfbf4 chelp.obj - 0004:00005bfc ??_C@_07DJED@?5Clear?5?$AA@ 004cfbfc chelp.obj - 0004:00005c28 ?_cmmHEDG@HEDG@@1UCMM@CMH@@A 004cfc28 chtop.obj - 0004:00005c30 ?_rgcmmeHEDG@HEDG@@0QAUCMME@CMH@@A 004cfc30 chtop.obj - 0004:00005cd0 ?_cmmHETG@HETG@@1UCMM@CMH@@A 004cfcd0 chtop.obj - 0004:00005cd8 ?_rgcmmeHETG@HETG@@0QAUCMME@CMH@@A 004cfcd8 chtop.obj - 0004:00005e18 ??_C@_0BG@DAHB@Exporting?5file?5failed?$AA@ 004cfe18 chtop.obj - 0004:00005e30 ??_C@_0BP@KJPI@Can?8t?5create?5destination?5file?$CB?$AA@ 004cfe30 chtop.obj - 0004:00005e50 ??_C@_0BD@EODM@Chomp?5files?$AA?$CK?4cht?$AA?$AA@ 004cfe50 chtop.obj - 0004:00005e64 ??_C@_0BE@IKHM@Empty?5search?5string?$AA@ 004cfe64 chtop.obj - 0004:00005e78 ??_C@_0O@IOKP@bad?5topic?5doc?$AA@ 004cfe78 chtop.obj - 0004:00005e88 ??_C@_0BH@HAED@nil?5values?5not?5in?5sync?$AA@ 004cfe88 chtop.obj - 0004:00005ea0 ??_C@_0BB@JBKD@?$CF08x?5?$CF10d?5?5?5?$CC?$CFs?$CC?$AA@ 004cfea0 chtop.obj - 0004:00005eb4 ??_C@_0BL@PGCH@?5?5Hex?5?5?5?5?5?5?5?5?5CNO?5?5?5?5?5Name?$AA@ 004cfeb4 chtop.obj - 0004:00005ed0 ??_C@_0CM@PGCD@Are?5you?5sure?5you?5want?5to?5delete?5@ 004cfed0 chtop.obj - 0004:00005efc ??_C@_0BK@HFAD@no?5lines?0?5but?5non?9nil?5sel?$AA@ 004cfefc chtop.obj - 0004:00005f18 ??_C@_0BK@NDB@Couldn?8t?5paste?5everything?$AA@ 004cff18 chtop.obj - 0004:00005f34 ??_C@_0BA@FEPC@Printing?5failed?$AA@ 004cff34 chtop.obj - 0004:00005f44 ??_C@_0BA@JDHO@Topic?5Width?3?5?$CFd?$AA@ 004cff44 chtop.obj - 0004:00005f54 ??_C@_0CM@IDCF@Script?3?50x?$CF08x?5?$CI?$CFs?$CJ?$DL?5?5Sound?3?5?8?$CFf@ 004cff54 chtop.obj - 0004:00005f80 ??_C@_0BE@LFIL@Topic?50x?$CF08x?5?$CI?$CFs?$CJ?3?5?$AA@ 004cff80 chtop.obj - 0004:00005f94 ??_C@_06JIDD@?9?5?$CFd?5?9?$AA@ 004cff94 chtop.obj - 0004:00005f9c ??_C@_0BE@CEIH@Corrected?5?$CFd?5words?4?$AA@ 004cff9c chtop.obj - 0004:00005fb0 ??_C@_0BF@CIJB@No?5corrections?5made?4?$AA@ 004cffb0 chtop.obj - 0004:00005fc8 ??_C@_0BP@NCNJ@?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?$AA@ 004cffc8 chtop.obj - 0004:00005fe8 ??_C@_0BC@KHNA@Text?5Files?$AA?$CK?4txt?$AA?$AA@ 004cffe8 chtop.obj - 0004:00005ffc ??_C@_0O@BKCB@Comic?5Sans?5MS?$AA@ 004cfffc chtop.obj - 0004:0000600c ??_C@_0BJ@POKF@non?9nil?5cno?5with?5nil?5CFL?$AA@ 004d000c chtop.obj - 0004:00006028 ??_C@_0N@INBF@?3?5Topic?5?$CF08x?$AA@ 004d0028 chtop.obj - 0004:00006038 ??_C@_0BE@LFON@?3?5Untitled?5Topic?5?$CFd?$AA@ 004d0038 chtop.obj - 0004:0000604c ??_C@_09HBNB@wrong?5ctg?$AA@ 004d004c chtop.obj - 0004:00006058 ??_C@_0BE@PPBG@Saving?5topic?5failed?$AA@ 004d0058 chtop.obj - 0004:0000606c ??_C@_0DK@IGLK@Can?8t?5save?5this?5topic?5?9?5it?5doesn@ 004d006c chtop.obj - 0004:000060a8 ??_C@_07CGPG@Bad?5cid?$AA@ 004d00a8 chtop.obj - 0004:000060b0 ??_C@_02JBAA@?$CFf?$AA@ 004d00b0 chtop.obj - 0004:000060b4 ??_C@_04DOFO@WAVE?$AA@ 004d00b4 chtop.obj - 0004:000060bc ??_C@_08OCKL@bad?5_cno?$AA@ 004d00bc chtop.obj - 0004:000060c8 ??_C@_0P@OILF@bad?5mbmp?5chunk?$AA@ 004d00c8 chtop.obj - 0004:000060d8 ??_C@_0BE@IBDH@Topic?5number?5is?5bad?$AA@ 004d00d8 chtop.obj - 0004:000060ec ??_C@_0BB@HPFA@bad?5button?5chunk?$AA@ 004d00ec chtop.obj - 0004:00006100 ??_C@_0N@EDPH@Width?5is?5bad?$AA@ 004d0100 chtop.obj - 0004:00006110 ??_C@_0BG@CCPI@Topic?5number?5was?5bad?$CB?$AA@ 004d0110 chtop.obj - 0004:00006128 ??_C@_0CI@LAKL@Group?5number?5must?5be?5between?50?5a@ 004d0128 chtop.obj - 0004:00006150 ??_C@_0BJ@OBEE@Search?5string?5not?5found?4?$AA@ 004d0150 chtop.obj - 0004:0000616c ??_C@_0BA@OHCO@Replace?5failed?4?$AA@ 004d016c chtop.obj - 0004:0000617c ??_C@_0BN@CGEN@Couldn?8t?5replace?5wrong?5word?$CB?$AA@ 004d017c chtop.obj - 0004:0000619c ??_C@_0P@BMHG@unknown?5button?$AA@ 004d019c chtop.obj - 0004:000061ac ??_C@_0CB@CILJ@Couldn?8t?5create?5spelling?5dialog?$CB@ 004d01ac chtop.obj - 0004:000061d0 ??_C@_0BH@JKOL@Spell?5checking?5failed?$CB?$AA@ 004d01d0 chtop.obj - 0004:000061e8 ??_C@_0CC@KDHK@Couldn?8t?5load?5the?5main?5dictionar@ 004d01e8 chtop.obj - 0004:0000620c ??_C@_05BPFH@Chp?$CFd?$AA@ 004d020c chtop.obj - 0004:00006214 ??_C@_05COAG@Chelp?$AA@ 004d0214 chtop.obj - 0004:0000621c ??_C@_0CC@CLFM@Width?5?$DN?5?$CFd?$DL?5Tab?5?$DN?5?$CFd?$DL?5Height?5?$DN?5?$CF@ 004d021c chtop.obj - 0004:00006240 ??_C@_0O@CDDF@no?5track?5type?$AA@ 004d0240 chtop.obj - 0004:00006274 ??_C@_0BK@OJPL@?$CDendif?5?1?1?$CBNO_HELP_SYMBOLS?$AA@ 004d0274 chelpexp.obj - 0004:00006290 ??_C@_0BI@JBLA@?$CDifndef?5NO_HELP_SYMBOLS?$AA@ 004d0290 chelpexp.obj - 0004:000062a8 ??_C@_08CEGN@ENDCHUNK?$AA@ 004d02a8 chelpexp.obj - 0004:000062b4 ??_C@_0BA@PCFC@?50x?$CFx?50x?$CFx?50x?$CFx?$AA@ 004d02b4 chelpexp.obj - 0004:000062c4 ??_C@_0N@DGEF@?7BO?5OSK?5LONG?$AA@ 004d02c4 chelpexp.obj - 0004:000062d4 ??_C@_0BL@NJBI@?$CDendif?5?1?1HELP_SINGLE_CHUNK?$AA@ 004d02d4 chelpexp.obj - 0004:000062f0 ??_C@_07KLIJ@SUBFILE?$AA@ 004d02f0 chelpexp.obj - 0004:000062f8 ??_C@_0DI@INKG@CHUNK?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?5__HELP_@ 004d02f8 chelpexp.obj - 0004:00006330 ??_C@_0BB@EFDA@SET?5_help_?$CFx_?$CFx?$DN?$AA@ 004d0330 chelpexp.obj - 0004:00006344 ??_C@_0CB@BLLE@?$CDdefine?5__HELP_PACK2?5__HELP_PACK@ 004d0344 chelpexp.obj - 0004:00006368 ??_C@_0BF@CHGJ@?$CDdefine?5__HELP_PACK2?$AA@ 004d0368 chelpexp.obj - 0004:00006380 ??_C@_0BJ@GMCJ@?$CDifdef?5HELP_SINGLE_CHUNK?$AA@ 004d0380 chelpexp.obj - 0004:0000639c ??_C@_0BE@NHCM@?$CDdefine?5__HELP_PACK?$AA@ 004d039c chelpexp.obj - 0004:000063b0 ??_C@_0BJ@NJLM@?$CDdefine?5__HELP_PACK?5PACK?$AA@ 004d03b0 chelpexp.obj - 0004:000063cc ??_C@_0BB@GPGI@?$CDifdef?5PACK_HELP?$AA@ 004d03cc chelpexp.obj - 0004:000063e0 ??_C@_0CD@DBDP@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?5stu@ 004d03e0 chelpexp.obj - 0004:00006404 ??_C@_0BN@PCDE@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?$AA@ 004d0404 chelpexp.obj - 0004:00006424 ??_C@_0BH@GHBL@?$CDifdef?5NO_HELP_SYMBOLS?$AA@ 004d0424 chelpexp.obj - 0004:0000643c ??_C@_06HHGP@?$CDendif?$AA@ 004d043c chelpexp.obj - 0004:00006444 ??_C@_0BP@ONNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5name?$AA@ 004d0444 chelpexp.obj - 0004:00006464 ??_C@_05GMMC@?$CDelse?$AA@ 004d0464 chelpexp.obj - 0004:0000646c ??_C@_0BN@DPNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5?$CC?$CC?$AA@ 004d046c chelpexp.obj - 0004:0000648c ??_C@_0BF@EKJL@?$CDifdef?5NO_HELP_NAMES?$AA@ 004d048c chelpexp.obj - 0004:000064a4 ??_C@_0BE@HDN@?$CDundef?5__HELP_PACK2?$AA@ 004d04a4 chelpexp.obj - 0004:000064b8 ??_C@_0BD@IDIM@?$CDundef?5__HELP_PACK?$AA@ 004d04b8 chelpexp.obj - 0004:000064cc ??_C@_0BF@NAGJ@?$CDundef?5__HELP_SYMBOL?$AA@ 004d04cc chelpexp.obj - 0004:000064e4 ??_C@_0BD@EKLA@?$CDundef?5__HELP_NAME?$AA@ 004d04e4 chelpexp.obj - 0004:000064f8 ??_C@_05OKLJ@WINBO?$AA@ 004d04f8 chelpexp.obj - 0004:00006500 ??_C@_05JOF@MACBO?$AA@ 004d0500 chelpexp.obj - 0004:00006508 ??_C@_04EJID@PACK?$AA@ 004d0508 chelpexp.obj - 0004:00006510 ??_C@_0CA@EOFJ@PARENT?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?50x?$CFx?$CJ?$AA@ 004d0510 chelpexp.obj - 0004:00006530 ??_C@_0DH@PBIG@CHUNK?$CI?8?$CFf?8?0?5_help_cno?0?5__HELP_NA@ 004d0530 chelpexp.obj - 0004:00006568 ??_C@_0BK@IAEE@SET?5_help_?$CFx_?$CFx?$DN_help_cno?$AA@ 004d0568 chelpexp.obj - 0004:00006584 ??_C@_0BA@MCEC@SET?5_help_cno?$CL?$CL?$AA@ 004d0584 chelpexp.obj - 0004:00006594 ??_C@_05DOL@?7?7VAR?$AA@ 004d0594 chelpexp.obj - 0004:0000659c ??_C@_02GDLA@?$DL?5?$AA@ 004d059c chelpexp.obj - 0004:000065a0 ??_C@_0BF@KPBE@?5__HELP_SYMBOL?$CI?5STN?5?$AA@ 004d05a0 chelpexp.obj - 0004:000065b8 ??_C@_04BKHJ@0x?$CFx?$AA@ 004d05b8 chelpexp.obj - 0004:000065c0 ??_C@_0BB@ODIA@?7?7VAR?5LONG?5?8?$CFf?8?5?$AA@ 004d05c0 chelpexp.obj - 0004:000065d4 ??_C@_0BA@FOKJ@bad?5button?5data?$AA@ 004d05d4 chelpexp.obj - 0004:000065e4 ??_C@_0CI@MFKF@?7?7VAR?5LONG?5?8?$CFf?8?5?$CFs?5__HELP_SYMBOL@ 004d05e4 chelpexp.obj - 0004:0000660c ??_C@_0BD@EBFA@bad?5picture?5data?52?$AA@ 004d060c chelpexp.obj - 0004:00006620 ??_C@_0BB@GMFO@bad?5picture?5data?$AA@ 004d0620 chelpexp.obj - 0004:00006634 ??_C@_03JPGF@?$CC?5?$CJ?$AA@ 004d0634 chelpexp.obj - 0004:00006638 ??_C@_0CL@LBJB@?7?7VAR?5BYTE?5?$CFd?5LONG?5?$CFs?5__HELP_SYM@ 004d0638 chelpexp.obj - 0004:00006664 ??_C@_0BA@BFNE@?7ITEM?5LONG?50x?$CFx?$AA@ 004d0664 chelpexp.obj - 0004:00006674 ??_C@_05JMLE@AG?$CI4?$CJ?$AA@ 004d0674 chelpexp.obj - 0004:0000667c ??_C@_05BOND@?50x?$CFx?$AA@ 004d067c chelpexp.obj - 0004:00006988 ?gpMixer@@3PAUIAMMixer@@A 004d0988 audiod:factory.obj - 0004:00006990 ?__gfDbgEnabled@@3HA 004d0990 audiod:dpf.obj - 0004:00006994 ?__guDbgLevel@@3IA 004d0994 audiod:dpf.obj - 0004:00006998 ?rgchOutputFile@@3QADA 004d0998 audiod:dpf.obj - 0004:000069d8 ?gDebugOutActive@@3HA 004d09d8 audiod:dpf.obj - 0004:000069dc ?gDebugLogActive@@3HA 004d09dc audiod:dpf.obj - 0004:00006b50 ?g_cDebugMemAllocBlocks@@3KA 004d0b50 audiod:debugmem.obj - 0004:00006b54 ?g_cbDebugMemAllocNet@@3KA 004d0b54 audiod:debugmem.obj - 0004:00006b58 ?g_cbDebugMemAllocGross@@3KA 004d0b58 audiod:debugmem.obj - 0004:00006b5c ?g_cbDebugMaxNetMemAlloc@@3KA 004d0b5c audiod:debugmem.obj - 0004:00008adc __fltused 004d2adc LIBC:fpinit.obj - 0004:00008ae0 __ldused 004d2ae0 LIBC:fpinit.obj - 0004:00008ae4 ___fastflag 004d2ae4 LIBC:fpinit.obj - 0004:00008ae8 __adjust_fdiv 004d2ae8 LIBC:fpinit.obj - 0004:00008aec __FPinit 004d2aec LIBC:fpinit.obj - 0004:00008af0 __FPmtinit 004d2af0 LIBC:fpinit.obj - 0004:00008af4 __FPmtterm 004d2af4 LIBC:fpinit.obj - 0004:00008af8 __aenvptr 004d2af8 LIBC:wincrt0.obj - 0004:00008afc __wenvptr 004d2afc LIBC:wincrt0.obj - 0004:00008b00 __aexit_rtn 004d2b00 LIBC:wincrt0.obj - 0004:00008b14 _errno 004d2b14 LIBC:crt0dat.obj - 0004:00008b18 __doserrno 004d2b18 LIBC:crt0dat.obj - 0004:00008b1c __umaskval 004d2b1c LIBC:crt0dat.obj - 0004:00008b20 __osver 004d2b20 LIBC:crt0dat.obj - 0004:00008b24 __winver 004d2b24 LIBC:crt0dat.obj - 0004:00008b28 __winmajor 004d2b28 LIBC:crt0dat.obj - 0004:00008b2c __winminor 004d2b2c LIBC:crt0dat.obj - 0004:00008b30 ___argc 004d2b30 LIBC:crt0dat.obj - 0004:00008b34 ___argv 004d2b34 LIBC:crt0dat.obj - 0004:00008b38 ___wargv 004d2b38 LIBC:crt0dat.obj - 0004:00008b3c __environ 004d2b3c LIBC:crt0dat.obj - 0004:00008b40 ___initenv 004d2b40 LIBC:crt0dat.obj - 0004:00008b44 __wenviron 004d2b44 LIBC:crt0dat.obj - 0004:00008b48 ___winitenv 004d2b48 LIBC:crt0dat.obj - 0004:00008b4c __pgmptr 004d2b4c LIBC:crt0dat.obj - 0004:00008b50 __wpgmptr 004d2b50 LIBC:crt0dat.obj - 0004:00008b54 __exitflag 004d2b54 LIBC:crt0dat.obj - 0004:00008b58 __C_Termination_Done 004d2b58 LIBC:crt0dat.obj - 0004:00008b5c __pnhHeap 004d2b5c LIBC:malloc.obj - 0004:00008bc8 __cfltcvt_tab 004d2bc8 LIBC:cmiscdat.obj - 0004:00008bf8 __XcptActTab 004d2bf8 LIBC:winxfltr.obj - 0004:00008c70 __First_FPE_Indx 004d2c70 LIBC:winxfltr.obj - 0004:00008c74 __Num_FPE 004d2c74 LIBC:winxfltr.obj - 0004:00008c78 __XcptActTabCount 004d2c78 LIBC:winxfltr.obj - 0004:00008c7c __fpecode 004d2c7c LIBC:winxfltr.obj - 0004:00008c80 __pxcptinfoptrs 004d2c80 LIBC:winxfltr.obj - 0004:00008c88 __mbctype 004d2c88 LIBC:mbctype.obj - 0004:00008d8c ___mbcodepage 004d2d8c LIBC:mbctype.obj - 0004:00008d90 ___mblcid 004d2d90 LIBC:mbctype.obj - 0004:00008d98 ___mbulinfo 004d2d98 LIBC:mbctype.obj - 0004:00008ea0 __nhandle 004d2ea0 LIBC:ioinit.obj - 0004:00008ea8 __osfile 004d2ea8 LIBC:ioinit.obj - 0004:00008ee8 __osfhnd 004d2ee8 LIBC:ioinit.obj - 0004:00008fe8 __pipech 004d2fe8 LIBC:ioinit.obj - 0004:00009028 __heap_desc 004d3028 LIBC:heapinit.obj - 0004:0000903c __heap_resetsize 004d303c LIBC:heapinit.obj - 0004:00009040 __amblksiz 004d3040 LIBC:heapinit.obj - 0004:00009044 __heap_regionsize 004d3044 LIBC:heapinit.obj - 0004:00009048 __heap_maxregsize 004d3048 LIBC:heapinit.obj - 0004:000092b8 __adbgmsg 004d32b8 LIBC:crt0msg.obj - 0004:000092c8 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 004d32c8 LIBC:hooks.obj - 0004:000092cc ?__pTerminate@@3P6AXXZA 004d32cc LIBC:hooks.obj - 0004:000092d0 ?__pUnexpected@@3P6AXXZA 004d32d0 LIBC:hooks.obj - 0004:000092d4 ?__pInconsistency@@3P6AXXZA 004d32d4 LIBC:hooks.obj - 0004:000092d8 __cflush 004d32d8 LIBC:fflush.obj - 0004:000092e0 __stdbuf 004d32e0 LIBC:_sftbuf.obj - 0004:000092e8 __infinity 004d32e8 LIBC:87tran.obj - 0004:000092f2 __minfinity 004d32f2 LIBC:87tran.obj - 0004:000092fc __logemax 004d32fc LIBC:87tran.obj - 0004:0000932c __OP_POWjmptab 004d332c LIBC:87tran.obj - 0004:0000937c __OP_LOG10jmptab 004d337c LIBC:87tran.obj - 0004:0000939c __OP_LOGjmptab 004d339c LIBC:87tran.obj - 0004:000093bc __OP_EXPjmptab 004d33bc LIBC:87tran.obj - 0004:000093dc __newmode 004d33dc LIBC:_newmode.obj - 0004:000093e0 ___mb_cur_max 004d33e0 LIBC:nlsdata1.obj - 0004:000093e8 ___decimal_point 004d33e8 LIBC:nlsdata1.obj - 0004:000093ec ___decimal_point_length 004d33ec LIBC:nlsdata1.obj - 0004:000093f0 __pctype 004d33f0 LIBC:ctype.obj - 0004:000093f4 __pwctype 004d33f4 LIBC:ctype.obj - 0004:000093f8 __ctype 004d33f8 LIBC:ctype.obj - 0004:00009828 __iob 004d3828 LIBC:_file.obj - 0004:00009aa8 __lastiob 004d3aa8 LIBC:_file.obj - 0004:00009aac __commode 004d3aac LIBC:ncommode.obj - 0004:00009ab0 __indefinite 004d3ab0 LIBC:87disp.obj - 0004:00009aba __piby2 004d3aba LIBC:87disp.obj - 0004:00009acc __cpower 004d3acc LIBC:87disp.obj - 0004:00009b80 ___lc_handle 004d3b80 LIBC:nlsdata2.obj - 0004:00009b98 ___lc_codepage 004d3b98 LIBC:nlsdata2.obj - 0004:00009bd0 __fmode 004d3bd0 LIBC:txtmode.obj - 0004:00009bd8 __d_inf 004d3bd8 LIBC:util.obj - 0004:00009be0 __d_ind 004d3be0 LIBC:util.obj - 0004:00009be8 __d_max 004d3be8 LIBC:util.obj - 0004:00009bf0 __d_min 004d3bf0 LIBC:util.obj - 0004:00009bf8 __d_mzero 004d3bf8 LIBC:util.obj - 0004:00009d8c __matherr_flag 004d3d8c LIBC:matherr.obj - 0004:00009dac ___invalid_mb_chars 004d3dac LIBC:setmbval.obj - 0004:00009db8 __pow10pos 004d3db8 LIBC:constpow.obj - 0004:00009f18 __pow10neg 004d3f18 LIBC:constpow.obj - 0004:0000a074 ___xc_a 004d4074 LIBC:crt0init.obj - 0004:0000a170 ___xc_z 004d4170 LIBC:crt0init.obj - 0004:0000a174 ___xi_a 004d4174 LIBC:crt0init.obj - 0004:0000a180 ___xi_z 004d4180 LIBC:crt0init.obj - 0004:0000a184 ___xp_a 004d4184 LIBC:crt0init.obj - 0004:0000a18c ___xp_z 004d418c LIBC:crt0init.obj - 0004:0000a190 ___xt_a 004d4190 LIBC:crt0init.obj - 0004:0000a194 ___xt_z 004d4194 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 004d5000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 004d5014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 004d5028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 004d503c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 004d5050 winmm:WINMM.dll - 0005:00000064 ADVAPI32_IMPORT_DESCRIPTOR 004d5064 advapi32:ADVAPI32.dll - 0005:00000078 MSVFW32_IMPORT_DESCRIPTOR 004d5078 vfw32:MSVFW32.dll - 0005:0000008c AVIFIL32_IMPORT_DESCRIPTOR 004d508c vfw32:AVIFIL32.dll - 0005:000000a0 __IMPORT_DESCRIPTOR_MSACM32 004d50a0 audiod:MSACM32.dll - 0005:000000b4 NULL_IMPORT_DESCRIPTOR 004d50b4 kernel32:KERNEL32.dll - 0005:000000c8 __NULL_IMPORT_DESCRIPTOR 004d50c8 audiod:MSACM32.dll - 0005:00000558 __imp__RegCloseKey@4 004d5558 advapi32:ADVAPI32.dll - 0005:0000055c __imp__RegQueryValueExA@24 004d555c advapi32:ADVAPI32.dll - 0005:00000560 __imp__RegOpenKeyExA@20 004d5560 advapi32:ADVAPI32.dll - 0005:00000564 \177ADVAPI32_NULL_THUNK_DATA 004d5564 advapi32:ADVAPI32.dll - 0005:00000568 \177AVIFIL32_NULL_THUNK_DATA 004d5568 vfw32:AVIFIL32.dll - 0005:0000056c __imp__GetClipRgn@8 004d556c gdi32:GDI32.dll - 0005:00000570 __imp__CreatePalette@4 004d5570 gdi32:GDI32.dll - 0005:00000574 __imp__GetDeviceCaps@8 004d5574 gdi32:GDI32.dll - 0005:00000578 __imp__CreateFontIndirectA@4 004d5578 gdi32:GDI32.dll - 0005:0000057c __imp__GetObjectA@12 004d557c gdi32:GDI32.dll - 0005:00000580 __imp__ExtCreateRegion@12 004d5580 gdi32:GDI32.dll - 0005:00000584 __imp__OffsetRgn@12 004d5584 gdi32:GDI32.dll - 0005:00000588 __imp__SelectClipRgn@8 004d5588 gdi32:GDI32.dll - 0005:0000058c __imp__CreateRectRgn@16 004d558c gdi32:GDI32.dll - 0005:00000590 __imp__CreateEllipticRgn@16 004d5590 gdi32:GDI32.dll - 0005:00000594 __imp__GdiFlush@0 004d5594 gdi32:GDI32.dll - 0005:00000598 __imp__RealizePalette@4 004d5598 gdi32:GDI32.dll - 0005:0000059c __imp__SelectPalette@12 004d559c gdi32:GDI32.dll - 0005:000005a0 __imp__ResizePalette@8 004d55a0 gdi32:GDI32.dll - 0005:000005a4 __imp__SetPaletteEntries@16 004d55a4 gdi32:GDI32.dll - 0005:000005a8 __imp__AnimatePalette@16 004d55a8 gdi32:GDI32.dll - 0005:000005ac __imp__GetSystemPaletteEntries@16 004d55ac gdi32:GDI32.dll - 0005:000005b0 __imp__SetPolyFillMode@8 004d55b0 gdi32:GDI32.dll - 0005:000005b4 __imp__DeleteObject@4 004d55b4 gdi32:GDI32.dll - 0005:000005b8 __imp__SelectObject@8 004d55b8 gdi32:GDI32.dll - 0005:000005bc __imp__GetStockObject@4 004d55bc gdi32:GDI32.dll - 0005:000005c0 __imp__DeleteDC@4 004d55c0 gdi32:GDI32.dll - 0005:000005c4 __imp__DeleteEnhMetaFile@4 004d55c4 gdi32:GDI32.dll - 0005:000005c8 __imp__CloseEnhMetaFile@4 004d55c8 gdi32:GDI32.dll - 0005:000005cc __imp__CreateDIBSection@24 004d55cc gdi32:GDI32.dll - 0005:000005d0 __imp__CreateCompatibleDC@4 004d55d0 gdi32:GDI32.dll - 0005:000005d4 __imp__SetDIBColorTable@16 004d55d4 gdi32:GDI32.dll - 0005:000005d8 __imp__CombineRgn@16 004d55d8 gdi32:GDI32.dll - 0005:000005dc __imp__Rectangle@20 004d55dc gdi32:GDI32.dll - 0005:000005e0 __imp__FillRgn@12 004d55e0 gdi32:GDI32.dll - 0005:000005e4 __imp__IntersectClipRect@20 004d55e4 gdi32:GDI32.dll - 0005:000005e8 __imp__SetROP2@8 004d55e8 gdi32:GDI32.dll - 0005:000005ec __imp__StartDocA@8 004d55ec gdi32:GDI32.dll - 0005:000005f0 __imp__StartPage@4 004d55f0 gdi32:GDI32.dll - 0005:000005f4 __imp__EndPage@4 004d55f4 gdi32:GDI32.dll - 0005:000005f8 __imp__EndDoc@4 004d55f8 gdi32:GDI32.dll - 0005:000005fc __imp__CreateRectRgnIndirect@4 004d55fc gdi32:GDI32.dll - 0005:00000600 __imp__SetBkColor@8 004d5600 gdi32:GDI32.dll - 0005:00000604 __imp__CreateSolidBrush@4 004d5604 gdi32:GDI32.dll - 0005:00000608 __imp__EnumFontsA@16 004d5608 gdi32:GDI32.dll - 0005:0000060c __imp__SetStretchBltMode@8 004d560c gdi32:GDI32.dll - 0005:00000610 __imp__StretchBlt@44 004d5610 gdi32:GDI32.dll - 0005:00000614 __imp__SetTextAlign@8 004d5614 gdi32:GDI32.dll - 0005:00000618 __imp__CreateBitmap@20 004d5618 gdi32:GDI32.dll - 0005:0000061c __imp__CreatePatternBrush@4 004d561c gdi32:GDI32.dll - 0005:00000620 __imp__GetTextMetricsA@8 004d5620 gdi32:GDI32.dll - 0005:00000624 __imp__GetTextExtentPoint32A@16 004d5624 gdi32:GDI32.dll - 0005:00000628 __imp__SetBkMode@8 004d5628 gdi32:GDI32.dll - 0005:0000062c __imp__TextOutA@20 004d562c gdi32:GDI32.dll - 0005:00000630 __imp__SetTextColor@8 004d5630 gdi32:GDI32.dll - 0005:00000634 \177GDI32_NULL_THUNK_DATA 004d5634 gdi32:GDI32.dll - 0005:00000638 __imp__FindResourceA@12 004d5638 kernel32:KERNEL32.dll - 0005:0000063c __imp__LoadResource@8 004d563c kernel32:KERNEL32.dll - 0005:00000640 __imp__LockResource@4 004d5640 kernel32:KERNEL32.dll - 0005:00000644 __imp__MoveFileA@8 004d5644 kernel32:KERNEL32.dll - 0005:00000648 __imp__GetFileAttributesA@4 004d5648 kernel32:KERNEL32.dll - 0005:0000064c __imp__GetLastError@0 004d564c kernel32:KERNEL32.dll - 0005:00000650 __imp__GetDriveTypeA@4 004d5650 kernel32:KERNEL32.dll - 0005:00000654 __imp__GetTempPathA@8 004d5654 kernel32:KERNEL32.dll - 0005:00000658 __imp__GetFullPathNameA@16 004d5658 kernel32:KERNEL32.dll - 0005:0000065c __imp__WriteFile@20 004d565c kernel32:KERNEL32.dll - 0005:00000660 __imp__ReadFile@20 004d5660 kernel32:KERNEL32.dll - 0005:00000664 __imp__SetEndOfFile@4 004d5664 kernel32:KERNEL32.dll - 0005:00000668 __imp__SetFilePointer@16 004d5668 kernel32:KERNEL32.dll - 0005:0000066c __imp__FlushFileBuffers@4 004d566c kernel32:KERNEL32.dll - 0005:00000670 __imp__DeleteFileA@4 004d5670 kernel32:KERNEL32.dll - 0005:00000674 __imp__CreateFileA@28 004d5674 kernel32:KERNEL32.dll - 0005:00000678 __imp__GlobalLock@4 004d5678 kernel32:KERNEL32.dll - 0005:0000067c __imp__GlobalUnlock@4 004d567c kernel32:KERNEL32.dll - 0005:00000680 __imp__GetVersionExA@4 004d5680 kernel32:KERNEL32.dll - 0005:00000684 __imp__LoadLibraryA@4 004d5684 kernel32:KERNEL32.dll - 0005:00000688 __imp__GetProcAddress@8 004d5688 kernel32:KERNEL32.dll - 0005:0000068c __imp__FreeLibrary@4 004d568c kernel32:KERNEL32.dll - 0005:00000690 __imp__Sleep@4 004d5690 kernel32:KERNEL32.dll - 0005:00000694 __imp__CreateThread@24 004d5694 kernel32:KERNEL32.dll - 0005:00000698 __imp__GetVersion@0 004d5698 kernel32:KERNEL32.dll - 0005:0000069c __imp__GetEnvironmentStrings@0 004d569c kernel32:KERNEL32.dll - 0005:000006a0 __imp__GetStartupInfoA@4 004d56a0 kernel32:KERNEL32.dll - 0005:000006a4 __imp__GetModuleHandleA@4 004d56a4 kernel32:KERNEL32.dll - 0005:000006a8 __imp__GetPrivateProfileStringA@24 004d56a8 kernel32:KERNEL32.dll - 0005:000006ac __imp__WritePrivateProfileStringA@16 004d56ac kernel32:KERNEL32.dll - 0005:000006b0 __imp__GetPrivateProfileIntA@16 004d56b0 kernel32:KERNEL32.dll - 0005:000006b4 __imp___hwrite@12 004d56b4 kernel32:KERNEL32.dll - 0005:000006b8 __imp___hread@12 004d56b8 kernel32:KERNEL32.dll - 0005:000006bc __imp___llseek@12 004d56bc kernel32:KERNEL32.dll - 0005:000006c0 __imp___lcreat@8 004d56c0 kernel32:KERNEL32.dll - 0005:000006c4 __imp___lclose@4 004d56c4 kernel32:KERNEL32.dll - 0005:000006c8 __imp___lopen@8 004d56c8 kernel32:KERNEL32.dll - 0005:000006cc __imp__GlobalHandle@4 004d56cc kernel32:KERNEL32.dll - 0005:000006d0 __imp__GetProfileIntA@12 004d56d0 kernel32:KERNEL32.dll - 0005:000006d4 __imp__lstrlenA@4 004d56d4 kernel32:KERNEL32.dll - 0005:000006d8 __imp__lstrcatA@8 004d56d8 kernel32:KERNEL32.dll - 0005:000006dc __imp__DebugBreak@0 004d56dc kernel32:KERNEL32.dll - 0005:000006e0 __imp__ResumeThread@4 004d56e0 kernel32:KERNEL32.dll - 0005:000006e4 __imp__DeleteCriticalSection@4 004d56e4 kernel32:KERNEL32.dll - 0005:000006e8 __imp__IsBadReadPtr@8 004d56e8 kernel32:KERNEL32.dll - 0005:000006ec __imp__GlobalAlloc@8 004d56ec kernel32:KERNEL32.dll - 0005:000006f0 __imp__GlobalFree@4 004d56f0 kernel32:KERNEL32.dll - 0005:000006f4 __imp__EnterCriticalSection@4 004d56f4 kernel32:KERNEL32.dll - 0005:000006f8 __imp__LeaveCriticalSection@4 004d56f8 kernel32:KERNEL32.dll - 0005:000006fc __imp__GetCurrentThreadId@0 004d56fc kernel32:KERNEL32.dll - 0005:00000700 __imp__GlobalReAlloc@12 004d5700 kernel32:KERNEL32.dll - 0005:00000704 __imp__GlobalSize@4 004d5704 kernel32:KERNEL32.dll - 0005:00000708 __imp__CompareStringA@24 004d5708 kernel32:KERNEL32.dll - 0005:0000070c __imp__WideCharToMultiByte@32 004d570c kernel32:KERNEL32.dll - 0005:00000710 __imp__IsBadWritePtr@8 004d5710 kernel32:KERNEL32.dll - 0005:00000714 __imp__OutputDebugStringA@4 004d5714 kernel32:KERNEL32.dll - 0005:00000718 __imp__GetCommandLineA@0 004d5718 kernel32:KERNEL32.dll - 0005:0000071c __imp__FatalAppExitA@8 004d571c kernel32:KERNEL32.dll - 0005:00000720 __imp__CloseHandle@4 004d5720 kernel32:KERNEL32.dll - 0005:00000724 __imp__WaitForSingleObject@8 004d5724 kernel32:KERNEL32.dll - 0005:00000728 __imp__SetEvent@4 004d5728 kernel32:KERNEL32.dll - 0005:0000072c __imp__SetThreadPriority@8 004d572c kernel32:KERNEL32.dll - 0005:00000730 __imp__RtlUnwind@16 004d5730 kernel32:KERNEL32.dll - 0005:00000734 __imp__ExitProcess@4 004d5734 kernel32:KERNEL32.dll - 0005:00000738 __imp__UnhandledExceptionFilter@4 004d5738 kernel32:KERNEL32.dll - 0005:0000073c __imp__GetModuleFileNameA@12 004d573c kernel32:KERNEL32.dll - 0005:00000740 __imp__GetACP@0 004d5740 kernel32:KERNEL32.dll - 0005:00000744 __imp__GetOEMCP@0 004d5744 kernel32:KERNEL32.dll - 0005:00000748 __imp__GetCPInfo@8 004d5748 kernel32:KERNEL32.dll - 0005:0000074c __imp__GetStdHandle@4 004d574c kernel32:KERNEL32.dll - 0005:00000750 __imp__GetFileType@4 004d5750 kernel32:KERNEL32.dll - 0005:00000754 __imp__VirtualFree@12 004d5754 kernel32:KERNEL32.dll - 0005:00000758 __imp__InitializeCriticalSection@4 004d5758 kernel32:KERNEL32.dll - 0005:0000075c __imp__VirtualAlloc@16 004d575c kernel32:KERNEL32.dll - 0005:00000760 __imp__SetUnhandledExceptionFilter@4 004d5760 kernel32:KERNEL32.dll - 0005:00000764 __imp__IsBadCodePtr@4 004d5764 kernel32:KERNEL32.dll - 0005:00000768 __imp__SetStdHandle@8 004d5768 kernel32:KERNEL32.dll - 0005:0000076c __imp__MultiByteToWideChar@24 004d576c kernel32:KERNEL32.dll - 0005:00000770 __imp__RaiseException@16 004d5770 kernel32:KERNEL32.dll - 0005:00000774 __imp__CreateEventA@16 004d5774 kernel32:KERNEL32.dll - 0005:00000778 \177KERNEL32_NULL_THUNK_DATA 004d5778 kernel32:KERNEL32.dll - 0005:0000077c __imp__acmStreamUnprepareHeader@12 004d577c audiod:MSACM32.dll - 0005:00000780 __imp__acmStreamClose@8 004d5780 audiod:MSACM32.dll - 0005:00000784 __imp__acmStreamOpen@32 004d5784 audiod:MSACM32.dll - 0005:00000788 __imp__acmStreamPrepareHeader@12 004d5788 audiod:MSACM32.dll - 0005:0000078c __imp__acmStreamSize@16 004d578c audiod:MSACM32.dll - 0005:00000790 __imp__acmFormatSuggest@20 004d5790 audiod:MSACM32.dll - 0005:00000794 __imp__acmStreamConvert@12 004d5794 audiod:MSACM32.dll - 0005:00000798 \177MSACM32_NULL_THUNK_DATA 004d5798 audiod:MSACM32.dll - 0005:0000079c \177MSVFW32_NULL_THUNK_DATA 004d579c vfw32:MSVFW32.dll - 0005:000007a0 __imp__TranslateMessage@4 004d57a0 user32:USER32.dll - 0005:000007a4 __imp__DispatchMessageA@4 004d57a4 user32:USER32.dll - 0005:000007a8 __imp__GetMessageA@16 004d57a8 user32:USER32.dll - 0005:000007ac __imp__TranslateAcceleratorA@12 004d57ac user32:USER32.dll - 0005:000007b0 __imp__PeekMessageA@20 004d57b0 user32:USER32.dll - 0005:000007b4 __imp__GetCursorPos@4 004d57b4 user32:USER32.dll - 0005:000007b8 __imp__RegisterClassA@4 004d57b8 user32:USER32.dll - 0005:000007bc __imp__GetDC@4 004d57bc user32:USER32.dll - 0005:000007c0 __imp__SetTimer@16 004d57c0 user32:USER32.dll - 0005:000007c4 __imp__LoadAcceleratorsA@8 004d57c4 user32:USER32.dll - 0005:000007c8 __imp__GetClientRect@8 004d57c8 user32:USER32.dll - 0005:000007cc __imp__LoadIconA@8 004d57cc user32:USER32.dll - 0005:000007d0 __imp__CreateWindowExA@48 004d57d0 user32:USER32.dll - 0005:000007d4 __imp__TranslateMDISysAccel@8 004d57d4 user32:USER32.dll - 0005:000007d8 __imp__ScrollWindowEx@32 004d57d8 user32:USER32.dll - 0005:000007dc __imp__WindowFromPoint@8 004d57dc user32:USER32.dll - 0005:000007e0 __imp__ChangeClipboardChain@8 004d57e0 user32:USER32.dll - 0005:000007e4 __imp__DeleteMenu@12 004d57e4 user32:USER32.dll - 0005:000007e8 __imp__GetSystemMetrics@4 004d57e8 user32:USER32.dll - 0005:000007ec __imp__CreateCursor@28 004d57ec user32:USER32.dll - 0005:000007f0 __imp__DestroyCursor@4 004d57f0 user32:USER32.dll - 0005:000007f4 __imp__SetCapture@4 004d57f4 user32:USER32.dll - 0005:000007f8 __imp__GetCapture@0 004d57f8 user32:USER32.dll - 0005:000007fc __imp__ReleaseCapture@0 004d57fc user32:USER32.dll - 0005:00000800 __imp__InvalidateRect@12 004d5800 user32:USER32.dll - 0005:00000804 __imp__IsZoomed@4 004d5804 user32:USER32.dll - 0005:00000808 __imp__ClientToScreen@8 004d5808 user32:USER32.dll - 0005:0000080c __imp__SetCursorPos@8 004d580c user32:USER32.dll - 0005:00000810 __imp__ShowCursor@4 004d5810 user32:USER32.dll - 0005:00000814 __imp__ScreenToClient@8 004d5814 user32:USER32.dll - 0005:00000818 __imp__UpdateWindow@4 004d5818 user32:USER32.dll - 0005:0000081c __imp__LoadCursorA@8 004d581c user32:USER32.dll - 0005:00000820 __imp__SetCursor@4 004d5820 user32:USER32.dll - 0005:00000824 __imp__ShowWindow@8 004d5824 user32:USER32.dll - 0005:00000828 __imp__DefFrameProcA@20 004d5828 user32:USER32.dll - 0005:0000082c __imp__DefMDIChildProcA@16 004d582c user32:USER32.dll - 0005:00000830 __imp__GetDoubleClickTime@0 004d5830 user32:USER32.dll - 0005:00000834 __imp__GetMessageTime@0 004d5834 user32:USER32.dll - 0005:00000838 __imp__EndPaint@8 004d5838 user32:USER32.dll - 0005:0000083c __imp__ReleaseDC@8 004d583c user32:USER32.dll - 0005:00000840 __imp__BeginPaint@8 004d5840 user32:USER32.dll - 0005:00000844 __imp__IsIconic@4 004d5844 user32:USER32.dll - 0005:00000848 __imp__EndDialog@8 004d5848 user32:USER32.dll - 0005:0000084c __imp__SetDlgItemTextA@12 004d584c user32:USER32.dll - 0005:00000850 __imp__DialogBoxParamA@20 004d5850 user32:USER32.dll - 0005:00000854 __imp__SetScrollRange@20 004d5854 user32:USER32.dll - 0005:00000858 __imp__SetScrollPos@16 004d5858 user32:USER32.dll - 0005:0000085c __imp__GetDlgItemTextA@16 004d585c user32:USER32.dll - 0005:00000860 __imp__CheckDlgButton@12 004d5860 user32:USER32.dll - 0005:00000864 __imp__CheckRadioButton@16 004d5864 user32:USER32.dll - 0005:00000868 __imp__IsDlgButtonChecked@8 004d5868 user32:USER32.dll - 0005:0000086c __imp__GetDlgItem@8 004d586c user32:USER32.dll - 0005:00000870 __imp__SetFocus@4 004d5870 user32:USER32.dll - 0005:00000874 __imp__SendDlgItemMessageA@20 004d5874 user32:USER32.dll - 0005:00000878 __imp__GetPropA@8 004d5878 user32:USER32.dll - 0005:0000087c __imp__GetAsyncKeyState@4 004d587c user32:USER32.dll - 0005:00000880 __imp__SetPropA@12 004d5880 user32:USER32.dll - 0005:00000884 __imp__GetWindowRect@8 004d5884 user32:USER32.dll - 0005:00000888 __imp__RemovePropA@8 004d5888 user32:USER32.dll - 0005:0000088c __imp__KillTimer@8 004d588c user32:USER32.dll - 0005:00000890 __imp__SetClipboardData@8 004d5890 user32:USER32.dll - 0005:00000894 __imp__GetKeyState@4 004d5894 user32:USER32.dll - 0005:00000898 __imp__SetWindowLongA@12 004d5898 user32:USER32.dll - 0005:0000089c __imp__EmptyClipboard@0 004d589c user32:USER32.dll - 0005:000008a0 __imp__OpenClipboard@4 004d58a0 user32:USER32.dll - 0005:000008a4 __imp__EnumClipboardFormats@4 004d58a4 user32:USER32.dll - 0005:000008a8 __imp__GetClipboardData@4 004d58a8 user32:USER32.dll - 0005:000008ac __imp__CloseClipboard@0 004d58ac user32:USER32.dll - 0005:000008b0 __imp__GetCaretBlinkTime@0 004d58b0 user32:USER32.dll - 0005:000008b4 __imp__MoveWindow@24 004d58b4 user32:USER32.dll - 0005:000008b8 __imp__GetMenuStringA@20 004d58b8 user32:USER32.dll - 0005:000008bc __imp__ModifyMenuA@20 004d58bc user32:USER32.dll - 0005:000008c0 __imp__GetWindowLongA@8 004d58c0 user32:USER32.dll - 0005:000008c4 __imp__InsertMenuA@20 004d58c4 user32:USER32.dll - 0005:000008c8 __imp__PostQuitMessage@4 004d58c8 user32:USER32.dll - 0005:000008cc __imp__GetClipboardOwner@0 004d58cc user32:USER32.dll - 0005:000008d0 __imp__SetClipboardViewer@4 004d58d0 user32:USER32.dll - 0005:000008d4 __imp__SendMessageA@16 004d58d4 user32:USER32.dll - 0005:000008d8 __imp__CharLowerBuffA@8 004d58d8 user32:USER32.dll - 0005:000008dc __imp__CharUpperBuffA@8 004d58dc user32:USER32.dll - 0005:000008e0 __imp__GetSubMenu@8 004d58e0 user32:USER32.dll - 0005:000008e4 __imp__GetMenuItemID@8 004d58e4 user32:USER32.dll - 0005:000008e8 __imp__EnableMenuItem@12 004d58e8 user32:USER32.dll - 0005:000008ec __imp__CheckMenuItem@12 004d58ec user32:USER32.dll - 0005:000008f0 __imp__SetMenu@8 004d58f0 user32:USER32.dll - 0005:000008f4 __imp__LoadMenuA@8 004d58f4 user32:USER32.dll - 0005:000008f8 __imp__GetMenuItemCount@4 004d58f8 user32:USER32.dll - 0005:000008fc __imp__SetWindowTextA@8 004d58fc user32:USER32.dll - 0005:00000900 __imp__DestroyWindow@4 004d5900 user32:USER32.dll - 0005:00000904 __imp__CreateMDIWindowA@40 004d5904 user32:USER32.dll - 0005:00000908 __imp__IsWindow@4 004d5908 user32:USER32.dll - 0005:0000090c __imp__ScrollDC@28 004d590c user32:USER32.dll - 0005:00000910 __imp__InvertRect@8 004d5910 user32:USER32.dll - 0005:00000914 __imp__FillRect@12 004d5914 user32:USER32.dll - 0005:00000918 __imp__GetWindow@8 004d5918 user32:USER32.dll - 0005:0000091c __imp__GetParent@4 004d591c user32:USER32.dll - 0005:00000920 __imp__GetActiveWindow@0 004d5920 user32:USER32.dll - 0005:00000924 __imp__GetUpdateRect@12 004d5924 user32:USER32.dll - 0005:00000928 __imp__ValidateRect@8 004d5928 user32:USER32.dll - 0005:0000092c __imp__MessageBoxA@16 004d592c user32:USER32.dll - 0005:00000930 __imp__wsprintfA 004d5930 user32:USER32.dll - 0005:00000934 __imp__wvsprintfA@12 004d5934 user32:USER32.dll - 0005:00000938 \177USER32_NULL_THUNK_DATA 004d5938 user32:USER32.dll - 0005:0000093c __imp__midiOutUnprepareHeader@12 004d593c winmm:WINMM.dll - 0005:00000940 __imp__midiOutClose@4 004d5940 winmm:WINMM.dll - 0005:00000944 __imp__midiOutOpen@20 004d5944 winmm:WINMM.dll - 0005:00000948 __imp__midiOutPrepareHeader@12 004d5948 winmm:WINMM.dll - 0005:0000094c __imp__midiOutReset@4 004d594c winmm:WINMM.dll - 0005:00000950 __imp__midiOutSetVolume@8 004d5950 winmm:WINMM.dll - 0005:00000954 __imp__midiOutGetVolume@8 004d5954 winmm:WINMM.dll - 0005:00000958 __imp__waveOutGetNumDevs@0 004d5958 winmm:WINMM.dll - 0005:0000095c __imp__waveOutGetDevCapsA@12 004d595c winmm:WINMM.dll - 0005:00000960 __imp__timeGetTime@0 004d5960 winmm:WINMM.dll - 0005:00000964 __imp__midiOutShortMsg@8 004d5964 winmm:WINMM.dll - 0005:00000968 __imp__timeGetDevCaps@8 004d5968 winmm:WINMM.dll - 0005:0000096c __imp__waveOutSetVolume@8 004d596c winmm:WINMM.dll - 0005:00000970 __imp__waveOutGetErrorTextA@12 004d5970 winmm:WINMM.dll - 0005:00000974 __imp__waveOutPrepareHeader@12 004d5974 winmm:WINMM.dll - 0005:00000978 __imp__waveOutUnprepareHeader@12 004d5978 winmm:WINMM.dll - 0005:0000097c __imp__timeSetEvent@20 004d597c winmm:WINMM.dll - 0005:00000980 __imp__timeKillEvent@4 004d5980 winmm:WINMM.dll - 0005:00000984 __imp__waveOutClose@4 004d5984 winmm:WINMM.dll - 0005:00000988 __imp__waveOutReset@4 004d5988 winmm:WINMM.dll - 0005:0000098c __imp__waveOutGetID@8 004d598c winmm:WINMM.dll - 0005:00000990 __imp__waveOutOpen@24 004d5990 winmm:WINMM.dll - 0005:00000994 __imp__waveOutGetVolume@8 004d5994 winmm:WINMM.dll - 0005:00000998 __imp__waveOutBreakLoop@4 004d5998 winmm:WINMM.dll - 0005:0000099c __imp__waveOutGetPosition@12 004d599c winmm:WINMM.dll - 0005:000009a0 __imp__waveOutWrite@12 004d59a0 winmm:WINMM.dll - 0005:000009a4 __imp__waveOutPause@4 004d59a4 winmm:WINMM.dll - 0005:000009a8 __imp__waveOutRestart@4 004d59a8 winmm:WINMM.dll - 0005:000009ac __imp__waveOutSetPlaybackRate@8 004d59ac winmm:WINMM.dll - 0005:000009b0 __imp__waveOutMessage@16 004d59b0 winmm:WINMM.dll - 0005:000009b4 __imp__waveOutGetPitch@8 004d59b4 winmm:WINMM.dll - 0005:000009b8 __imp__waveOutSetPitch@8 004d59b8 winmm:WINMM.dll - 0005:000009bc __imp__waveOutGetPlaybackRate@8 004d59bc winmm:WINMM.dll - 0005:000009c0 \177WINMM_NULL_THUNK_DATA 004d59c0 winmm:WINMM.dll - 0005:000009c4 __imp__PrintDlgA@4 004d59c4 comdlg32:comdlg32.dll - 0005:000009c8 __imp__GetOpenFileNameA@4 004d59c8 comdlg32:comdlg32.dll - 0005:000009cc __imp__GetSaveFileNameA@4 004d59cc comdlg32:comdlg32.dll - 0005:000009d0 \177comdlg32_NULL_THUNK_DATA 004d59d0 comdlg32:comdlg32.dll - - entry point at 0001:000bad30 - - Static symbols - - 0001:0009ac80 _$$1000 0049bc80 f chelpexp.obj - 0001:0009aca0 ?_FWriteHelpChunk@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 0049bca0 f chelpexp.obj - 0001:0009b040 ?_FWriteHelpPropAg@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 0049c040 f chelpexp.obj - 0001:0009bb60 ?_AppendHelpStnLw@@YGXPAVSTN@@PAVGST@@JJ@Z 0049cb60 f chelpexp.obj - 0001:0009bc90 _$$e200 0049cc90 f chelpexp.obj - 0001:0009bcb0 _$$8000 0049ccb0 f chelpexp.obj - 0001:0008e450 _$$1000 0048f450 f chtop.obj - 0001:00092470 _$$8000 00493470 f chtop.obj - 0001:0009a050 _$$6300 0049b050 f chtop.obj - 0001:00089cc0 _$$6300 0048acc0 f chelp.obj - 0001:0008a000 _$$7300 0048b000 f chelp.obj - 0001:0008a630 _$$1000 0048b630 f chelp.obj - 0001:0008d690 _$$8000 0048e690 f chelp.obj - 0001:0008d9c0 _$$8300 0048e9c0 f chelp.obj - 0001:0008d9f0 _$$9300 0048e9f0 f chelp.obj - 0001:0008da10 _$$a300 0048ea10 f chelp.obj - 0001:00088020 _$$1000 00489020 f spell.obj - 0001:00089b50 _$$a200 0048ab50 f spell.obj - 0001:00089bb0 _$$8000 0048abb0 f spell.obj - 0001:00087560 _$$1000 00488560 f text.obj - 0001:00087580 _$$8000 00488580 f text.obj - 0001:00087690 _$$a200 00488690 f text.obj - 0001:000867d0 _$$1000 004877d0 f ctl.obj - 0001:00087260 _$$a200 00488260 f ctl.obj - 0001:000872c0 _$$8000 004882c0 f ctl.obj - 0001:00086200 _$$1000 00487200 f lex.obj - 0001:00086220 _$$8000 00487220 f lex.obj - 0001:000861c0 _$$1000 004871c0 f scrcom.obj - 0001:000861e0 _$$8000 004871e0 f scrcom.obj - 0001:00084f90 _$$1000 00485f90 f dlgwin.obj - 0001:00086060 _$$a200 00487060 f dlgwin.obj - 0001:00086080 _$$8000 00487080 f dlgwin.obj - 0001:00083ca0 _$$1000 00484ca0 f dlg.obj - 0001:00084860 _$$a200 00485860 f dlg.obj - 0001:000848f0 _$$8000 004858f0 f dlg.obj - 0001:00082cd0 _$$1000 00483cd0 f chse.obj - 0001:00083450 _$$8000 00484450 f chse.obj - 0001:00080250 _$$8000 00481250 f fniwin.obj - 0001:000809a0 _$$1000 004819a0 f fniwin.obj - 0001:000826c0 _$$9000 004836c0 f fniwin.obj - 0001:000826e0 _$$a000 004836e0 f fniwin.obj - 0001:00082700 _$$b000 00483700 f fniwin.obj - 0001:0007f5b0 _$$1000 004805b0 f filewin.obj - 0001:00080230 _$$8000 00481230 f filewin.obj - 0001:0007aea0 _$$8000 0047bea0 f file.obj - 0001:0007b400 _$$1000 0047c400 f file.obj - 0001:0007ee30 _$$9000 0047fe30 f file.obj - 0001:0007ee50 _$$a000 0047fe50 f file.obj - 0001:0007ee70 _$$b000 0047fe70 f file.obj - 0001:00077cf0 _$$1000 00478cf0 f crf.obj - 0001:0007ad10 _$$8000 0047bd10 f crf.obj - 0001:00070220 _$$1000 00471220 f codkauai.obj - 0001:00077830 _$$8000 00478830 f codkauai.obj - 0001:0006f3e0 _$$1000 004703e0 f codec.obj - 0001:0006fcf0 _$$8000 00470cf0 f codec.obj - 0001:00064910 _$$1000 00465910 f chunk.obj - 0001:0006ee40 _$$8000 0046fe40 f chunk.obj - 0001:000625a0 _$$1000 004635a0 f stream.obj - 0001:00064590 _$$8000 00465590 f stream.obj - 0001:00061350 _$$a200 00462350 f clip.obj - 0001:00061740 _$$1000 00462740 f clip.obj - 0001:00062310 _$$b200 00463310 f clip.obj - 0001:00062330 _$$c200 00463330 f clip.obj - 0001:00062350 _$$d200 00463350 f clip.obj - 0001:000623f0 _$$8000 004633f0 f clip.obj - 0001:00059f80 _$$1000 0045af80 f docb.obj - 0001:0005d490 _$$8000 0045e490 f docb.obj - 0001:00060f40 _$$a200 00461f40 f docb.obj - 0001:00051130 _$$1000 00452130 f rtxt2.obj - 0001:000543f0 _$$8000 004553f0 f rtxt2.obj - 0001:00059940 _$$a200 0045a940 f rtxt2.obj - 0001:00047180 _$$1000 00448180 f rtxt.obj - 0001:0004a3a0 _$$8000 0044b3a0 f rtxt.obj - 0001:00050a00 _$$a200 00451a00 f rtxt.obj - 0001:00046680 _$$8000 00447680 f screxe.obj - 0001:000466a0 _$$1000 004476a0 f screxe.obj - 0001:00046c40 _$$9000 00447c40 f screxe.obj - 0001:00046470 _$$e200 00447470 f screxeg.obj - 0001:00046490 _$$1000 00447490 f screxeg.obj - 0001:000464b0 _$$f200 004474b0 f screxeg.obj - 0001:000464d0 _$$8000 004474d0 f screxeg.obj - 0001:000462c0 _$$1000 004472c0 f kidspace.obj - 0001:000462e0 _$$8000 004472e0 f kidspace.obj - 0001:00046430 _$$e200 00447430 f kidspace.obj - 0001:00044580 _$$1000 00445580 f kidhelp.obj - 0001:00045f10 _$$8000 00446f10 f kidhelp.obj - 0001:00046100 _$$e200 00447100 f kidhelp.obj - 0001:00044160 _$$1000 00445160 f kidworld.obj - 0001:00044180 _$$e200 00445180 f kidworld.obj - 0001:000441a0 _$$8000 004451a0 f kidworld.obj - 0001:00043fe0 _$$a200 00444fe0 f video.obj - 0001:00044000 _$$1000 00445000 f video.obj - 0001:00044020 _$$b200 00445020 f video.obj - 0001:00044050 _$$8000 00445050 f video.obj - 0001:00043820 _$$1000 00444820 f midi.obj - 0001:00043df0 _$$a200 00444df0 f midi.obj - 0001:00043ed0 _$$8000 00444ed0 f midi.obj - 0001:0003d3d0 _$$1000 0043e3d0 f mididev2.obj - 0001:00040760 _$$8000 00441760 f mididev2.obj - 0001:00042d00 _$$a200 00443d00 f mididev2.obj - 0001:0003c7f0 _$$a200 0043d7f0 f mididev.obj - 0001:0003cb90 _$$1000 0043db90 f mididev.obj - 0001:0003cce0 _$$b200 0043dce0 f mididev.obj - 0001:0003cd00 _$$c200 0043dd00 f mididev.obj - 0001:0003cd20 _$$d200 0043dd20 f mididev.obj - 0001:0003cd90 _$$8000 0043dd90 f mididev.obj - 0001:00039f40 _$$1000 0043af40 f sndam.obj - 0001:0003c410 _$$a200 0043d410 f sndam.obj - 0001:0003c6e0 _$$8000 0043d6e0 f sndam.obj - 0001:00036aa0 _$$1000 00437aa0 f sndm.obj - 0001:000398d0 _$$a200 0043a8d0 f sndm.obj - 0001:000398f0 _$$8000 0043a8f0 f sndm.obj - 0001:00035920 _$$1000 00436920 f mbmp.obj - 0001:000362e0 _$$a200 004372e0 f mbmp.obj - 0001:000363a0 _$$8000 004373a0 f mbmp.obj - 0001:00032b50 _$$1000 00433b50 f groups2.obj - 0001:00035010 _$$8000 00436010 f groups2.obj - 0001:0002bf80 _$$1000 0042cf80 f groups.obj - 0001:00032350 _$$8000 00433350 f groups.obj - 0001:0002b6e0 _$$1000 0042c6e0 f picwin.obj - 0001:0002b700 _$$a200 0042c700 f picwin.obj - 0001:0002b7c0 _$$8000 0042c7c0 f picwin.obj - 0001:0002a000 _$$1000 0042b000 f menuwin.obj - 0001:0002b530 _$$a200 0042c530 f menuwin.obj - 0001:0002b590 _$$8000 0042c590 f menuwin.obj - 0001:00029650 _$$1000 0042a650 f gobwin.obj - 0001:00029a50 _$$a200 0042aa50 f gobwin.obj - 0001:00029a70 _$$8000 0042aa70 f gobwin.obj - 0001:00025290 _$$1000 00426290 f gfxwin.obj - 0001:00027b90 _$$8000 00428b90 f gfxwin.obj - 0001:00029160 _$$b200 0042a160 f gfxwin.obj - 0001:00022480 _$$1000 00423480 f appbwin.obj - 0001:00023f00 _$$a200 00424f00 f appbwin.obj - 0001:00024700 _$$b200 00425700 f appbwin.obj - 0001:00024720 _$$c200 00425720 f appbwin.obj - 0001:00024740 _$$d200 00425740 f appbwin.obj - 0001:000247a0 _$$8000 004257a0 f appbwin.obj - 0001:00021e60 _$$1000 00422e60 f pic.obj - 0001:00021e80 _$$a200 00422e80 f pic.obj - 0001:00021ea0 _$$8000 00422ea0 f pic.obj - 0001:0001eb50 _$$1000 0041fb50 f region.obj - 0001:00021a90 _$$8000 00422a90 f region.obj - 0001:00021d80 _$$a200 00422d80 f region.obj - 0001:0001e230 _$$1000 0041f230 f mbmpgui.obj - 0001:0001e6c0 _$$a200 0041f6c0 f mbmpgui.obj - 0001:0001e750 _$$8000 0041f750 f mbmpgui.obj - 0001:00019960 _$$1000 0041a960 f gob.obj - 0001:0001cc30 _$$8000 0041dc30 f gob.obj - 0001:0001dcc0 _$$a200 0041ecc0 f gob.obj - 0001:00013470 _$$a200 00414470 f gfx.obj - 0001:000139b0 _$$1000 004149b0 f gfx.obj - 0001:00015240 _$$8000 00416240 f gfx.obj - 0001:00019230 _$$b200 0041a230 f gfx.obj - 0001:00019250 _$$c200 0041a250 f gfx.obj - 0001:00019270 _$$d200 0041a270 f gfx.obj - 0001:00013270 _$$1000 00414270 f cursor.obj - 0001:000132c0 _$$a200 004142c0 f cursor.obj - 0001:00013320 _$$8000 00414320 f cursor.obj - 0001:0000fa30 _$$1000 00410a30 f cmd.obj - 0001:000127c0 _$$8000 004137c0 f cmd.obj - 0001:00012c20 _$$a200 00413c20 f cmd.obj - 0001:0000ef80 _$$a200 0040ff80 f clok.obj - 0001:0000f160 _$$1000 00410160 f clok.obj - 0001:0000f320 _$$b200 00410320 f clok.obj - 0001:0000f350 _$$8000 00410350 f clok.obj - 0001:0000a170 _$$1000 0040b170 f appb.obj - 0001:0000d810 _$$8000 0040e810 f appb.obj - 0001:0000eb70 _$$a200 0040fb70 f appb.obj - 0001:0000ee10 _$$b200 0040fe10 f appb.obj - 0001:0000ee30 _$$c200 0040fe30 f appb.obj - 0001:0000ee50 _$$d200 0040fe50 f appb.obj - 0001:00009bd0 _$$1000 0040abd0 f memwin.obj - 0001:00009ca0 _$$8000 0040aca0 f memwin.obj - 0001:00006870 _$$1000 00407870 f utilstr.obj - 0001:000096c0 _$$8000 0040a6c0 f utilstr.obj - 0001:00005ee0 _$$1000 00406ee0 f utilrnd.obj - 0001:000063c0 _$$8000 004073c0 f utilrnd.obj - 0001:00004e40 _$$1000 00405e40 f utilmem.obj - 0001:00005a10 _$$8000 00406a10 f utilmem.obj - 0001:00002ad0 _$$1000 00403ad0 f utilint.obj - 0001:000048f0 _$$8000 004058f0 f utilint.obj - 0001:000020f0 _$$8000 004030f0 f utilerro.obj - 0001:00002630 _$$1000 00403630 f utilerro.obj - 0001:00002860 _$$9000 00403860 f utilerro.obj - 0001:00002880 _$$a000 00403880 f utilerro.obj - 0001:000028a0 _$$b000 004038a0 f utilerro.obj - 0001:00001d50 _$$1000 00402d50 f utilcopy.obj - 0001:000020d0 _$$8000 004030d0 f utilcopy.obj - 0001:00000c60 _$$1000 00401c60 f base.obj - 0001:000019c0 _$$8000 004029c0 f base.obj - 0001:000005e0 _$$8000 004015e0 f util.obj - 0001:00000600 _$$1000 00401600 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:000c0c75 _siglookup 004c1c75 f LIBC:winsig.obj - 0001:000bfd49 _strncnt 004c0d49 f LIBC:aw_map.obj - 0001:000bfb95 __before 004c0b95 f LIBC:heapadd.obj - 0001:000beb20 _$$1000 004bfb20 f LIBC:unhandld.obj - 0001:000beb85 _$$2000 004bfb85 f LIBC:unhandld.obj - 0001:000be29a __abstract_cw 004bf29a f LIBC:ieee87.obj - 0001:000be32d __hw_cw 004bf32d f LIBC:ieee87.obj - 0001:000bdfed __heap_new_region 004befed f LIBC:heapgrow.obj - 0001:000bd6b3 _flsall 004be6b3 f LIBC:fflush.obj - 0001:000bcb94 ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 004bdb94 f LIBC:frame.obj - 0001:000bcde2 ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 004bdde2 f LIBC:frame.obj - 0001:000bceb2 ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 004bdeb2 f LIBC:frame.obj - 0001:000bd00c ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 004be00c f LIBC:frame.obj - 0001:000bd099 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 004be099 f LIBC:frame.obj - 0001:000bd1a1 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 004be1a1 f LIBC:frame.obj - 0001:000bd1cc ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 004be1cc f LIBC:frame.obj - 0001:000bd3bb ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 004be3bb f LIBC:frame.obj - 0001:000bd427 ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 004be427 f LIBC:frame.obj - 0001:000bc8fd __heap_grow_emptylist 004bd8fd f LIBC:heapinit.obj - 0001:000bc5b1 _getSystemCP 004bd5b1 f LIBC:mbctype.obj - 0001:000bc5ec _CPtoLCID 004bd5ec f LIBC:mbctype.obj - 0001:000bc62b _setSBCS 004bd62b f LIBC:mbctype.obj - 0001:000bc3e7 _parse_cmdline 004bd3e7 f LIBC:stdargv.obj - 0001:000bc251 @x_ismbbtype@12 004bd251 f LIBC:ismbbyte.obj - 0001:000bc216 _xcptlookup 004bd216 f LIBC:winxfltr.obj - 0001:000bbe50 __cftoe_g 004bce50 f LIBC:cvt.obj - 0001:000bbf71 __cftof_g 004bcf71 f LIBC:cvt.obj - 0001:000bc08d __shift 004bd08d f LIBC:cvt.obj - 0001:000bb8f1 __heap_expand_block 004bc8f1 f LIBC:realloc.obj - 0001:000bb75c _doexit 004bc75c f LIBC:crt0dat.obj - 0001:000bb7db __initterm 004bc7db f LIBC:crt0dat.obj - 0001:000bb264 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 004bc264 f LIBC:trnsctrl.obj - 0001:000bb358 ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 004bc358 f LIBC:trnsctrl.obj - 0001:000bb07c __unwind_handler 004bc07c f LIBC:exsup.obj - -FIXUPS: bae60 44 13 13 161a ffffff81 b b 1b fffffd1a 4c 53 31 110 13 fffffccd -FIXUPS: bbd92 c 5 10 10 5 30 56 6 15 f 23 fffffe49 5 a fffff234 fffffff3 -FIXUPS: baeea ffffff46 1e 1c9a ffffffa6 fffffedb 2d f e c 3d 55 fffffdbe -FIXUPS: bc825 33 1f d 23 23 fffffe56 12 11 11 5d 12 fffffdc6 ffffffb9 a -FIXUPS: bc564 a ffffff8e 1a 13 ffffff9e f edc 19 fffffef2 15 2a 11 ffffff3f -FIXUPS: bd0bf fffffb55 21 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d 36 47 -FIXUPS: bd030 2c 16 13 29 fffffa90 9a 1689 1f 13 17 21 1d 13 1a a a f f -FIXUPS: be361 d e d 7 10 5a 12 fffff5cb d 35 25 ffffff1f fffffcff b8 78 -FIXUPS: bd7d0 10 fffffbb0 12 7c7 1b 34 46 c 25 3c 114 26 28 a 3b 2e 52 -FIXUPS: bdeee 46 6d 1a 21 14 39 23 15 21 e 77 4f 9 c 17 af 13 9f0 2f b2 -FIXUPS: bed2a fffffd8a fffffdd4 2d 32 fffffe54 45 46 29 fffffe17 b 21 42 -FIXUPS: be6ab 2f 19 2b e fffffeaa ffffff8c c d 20 d ffffff0e 72 fffff5bf -FIXUPS: bdb12 2c 1dde 22 f 22 f fffffafe 64 ffffff44 ffffff99 fffffe9a -FIXUPS: bf26e 24 fffffd3d c 75 d 96 d c 32 fffffe42 fffffdcc 3d 49 132 -FIXUPS: bef35 fffffc33 12 1d 5 55 3c 1457 1a 1f fffffee9 fffffead f3 fffffe7e -FIXUPS: bfbe3 a a ffffff59 1b 1b fffffe8e 1a fffffb77 17 67 e 177 1a 1d -FIXUPS: bf7f1 1f 20 d f 13 17 13 22 5b 1432 fffffc2c 10 10 18 a1 3e 24 -FIXUPS: c0aac 41 34 fffffd6a 78 10 18 e fffffe1b a4 22 fffffa9b 51 2b 29 -FIXUPS: c038d 1c 1a 14 e 14 e fffffc45 d 195c 65 1d 2b c 10 c fffff8cd -FIXUPS: c141c 92 10e 49 c6 4f fffff8ed 14 18 18 b0 9 e 9 29 4d fffffc51 -FIXUPS: c0ea4 75 c 1e 77 c fffffd3a 1cf5 47 3e 110 fffffcdd fffffa58 133 -FIXUPS: c24e1 21 26 10d aa 1f fffffa5d 1c fffffdde fb fffffd1d 2e 19 31 -FIXUPS: c1e03 2d 10 9 37 fffffeaa ffffffaf 26 fffffe67 44 fffffdf1 fffdd4f6 -FIXUPS: 9efb0 30 30 13 23 10 10 ffffddc9 1c 39 3e 67 19 70 26 5d 59 59 -FIXUPS: 9d140 66 ba 20 e 2e 131 7c de a3 20 4e 62 105b 1d 35 1a 41 26 59 -FIXUPS: 9e8bb 98 43 14 f 51 33 55 57 3d 59 c c c c 18 38 43 18 5b 1c 2f -FIXUPS: 9edbd a1 b ffffeef5 43 c 19 44 24 45 52 4a 75 5b 33 34 5d e 76 -FIXUPS: 9e15a 17 3c 21 8b 28 ab 19 8e 1f 10 19 98 bb f3 48 fffff05f 17 -FIXUPS: 9d759 39 38 16 17 3e 39 38 16 17 39 26 b 62 1f 5a 32 16 1d 22 29 -FIXUPS: 9daee 23 22 2b 7d 66 2c a0 1f 300a 10 10 10 10 10 10 10 10 10 10 -FIXUPS: a0de6 10 10 10 10 10 10 10 ffffe23c 16 17 39 21 1b 32 e 54 38 ca -FIXUPS: 9f53c ffffe1b6 3151 2d 30 13 2d 30 13 2d 30 13 2d 62 b 55 b 55 -FIXUPS: a0aed 55 b 55 b 55 b 55 b 55 b 19 10 10 10 10 fffff6a1 2f b 44 -FIXUPS: a0457 2f b 44 12 2f b 44 12 2f b 44 12 2f b 2f 13 2d 30 13 2d 30 -FIXUPS: a0763 2d 30 13 2d 30 fffff6f3 18 29 12 18 29 12 18 29 12 18 29 -FIXUPS: a006f 18 29 12 18 7a 6c 45 12 2f b 44 12 2f b 44 12 2f b 44 fffff7f2 -FIXUPS: 9fbd0 12 18 29 12 18 29 12 18 29 15 18 29 12 18 29 12 18 29 12 -FIXUPS: 9fdef 29 12 18 29 12 18 29 12 18 29 122a ffffe4c5 60 28 28 28 28 -FIXUPS: 9f728 28 28 28 28 28 28 28 28 28 28 28 28 28 78 2f 38 93 22 18 -FIXUPS: 9fb27 15 18 29 12 2306 13 4f e 1c 10 73 14 16 14 16 14 96 2d b -FIXUPS: a213b 1e 47 30 13 23 10 10 ffffefd6 18 3b fffffc59 14e 1e c 5a -FIXUPS: a1132 1c6 16 17 39 26 b 4b 29 38 77 30 17 3c 21 e0 1b 4b 1f 50 -FIXUPS: a1774 1ed 63 3b 40 5b 5b 36 168 21 ab 11 41 1169 8c 30 17 21 d2 -FIXUPS: a3100 7e b5 51 47 25 34 37 79 12c 30 13 fffff66a 1c e3 7c fffff863 -FIXUPS: a2646 38 38 92 35 10 3f0 7 ffffe75e 3068 fffff226 96 136 30 17 -FIXUPS: a37a4 19d 33 11d 75 30 26 5a 59 35 89 77 33 17 21 b0 f7 1c 8a f4 -FIXUPS: a4103 2d 13 ffffece9 1c 60 19aa 16 17 35 26 b 4b 29 93 30 17 3c -FIXUPS: a4a90 2e0 30 13 23 10 10 fffff5ea 37 29 c6 17 21 29d 25 13 fffff9f6 -FIXUPS: a4273 3c 2e c3d 29 47 74 30 17 3c 21 a6 19 27 25 b7 35 1f 8f 4a -FIXUPS: a54b4 17 55 17b 40 8e 31 38 13d 31 30 13 23 10 10 487 2b 15 28 -FIXUPS: a5ef4 28 2b 28 3f 28 76 37 28 3b 28 a8 9 31 30 13 2d 13 23 10 10 -FIXUPS: a4e22 16 16 17 39 26 b 2192 17 23 23 169 29 30 13 23 10 10 ffffe71c -FIXUPS: a5a08 17 3d 26 b 1a 18 4d 29 4f 79 30 17 3c 21 80 2a 41 65 31 610 -FIXUPS: a644e 96 30 17 3c 21 115 19 af 19 17 35 b 22 25 b 22 19 48 1dd -FIXUPS: a6aa1 51 4d d8 50 15b b2 17 23 23 112 a11 16 28 81 13 16 2f 1e -FIXUPS: a7b53 cc 13 48 13 2e 6f 60 e6 30 30 13 23 10 10 ffffe3bc 16 17 -FIXUPS: a6358 26 b 4b 29 19 f83 4b 29 19 1c 96 30 17 3c 21 a4 4e 30 13 -FIXUPS: a76da ad 4b 13 16 39 13 16 3b 61 14 5a 13 16 15 13 16 13 1d65 10 -FIXUPS: a7f52 16 17 3d 26 b 4b 29 93 30 17 3c 21 88 25d 16d 13 1a 14c 2d -FIXUPS: a87c0 13 23 10 10 ffffeaec 16 17 39 26 168b 30 17 3c 21 aa 9e 35 -FIXUPS: a8c59 1a4 1c 67 1c 63 1c 66 1c 5a 24 1c 1f 1c 18 1c 2b 1c 3e3 1d2 -FIXUPS: a96d0 30 13 23 78 17 39 26 b 7d 6d 30 17 3c 21 88 34 ac 14c 11 -FIXUPS: a9d38 28 30 13 23 10 10 ffffea5c 16 16 17 3d 26 b 4b 29 4e8e 9 -FIXUPS: ad882 5a 21 2b 19 32 1e 68 9 53 39 55 1c 35 5a 34 9 9 39 23 30 -FIXUPS: adc73 2d 13 2d 13 2d 13 ffffba4f 16 3425 96 6a 19 68 2f c 2f 44 -FIXUPS: ace0a 12 4d 14 12e 69 b0 1a3 1c 17 15 35 19 134 22 b5 e3 8d 72 -FIXUPS: ad707 2c 67 25 ffffeac1 c9 90 16 9 aa 41 1d 29 1d 1d 39 84 96 20 -FIXUPS: ac6e2 8d 14 26 3d 18 3e 30 ba 87 21 62 c 57 34 16 16 ffffefed 3d -FIXUPS: abbad 3d 98 3f b6 d 17 2f 10 16e 42 7 b c 7 2f 17 3b 17 10 52 1c -FIXUPS: ac133 17 32 59 57 9 1d 19 ffffec23 27 74 11 3d fb 28 11 11d 28 -FIXUPS: ab201 38 2a 15 28 11 5b 29f 8b 36 58 36 11 64 3d 1b b6 3d 90 3d -FIXUPS: aba13 3d ffffed54 30 c 28 2f 18 28 2f 18 28 1d 18 36 2d e 21 1b -FIXUPS: aaa0c 8b 95 1c ee 91 1b aa 3b 16 19 18 2f 15 19 fffff5a2 9 41 9 -FIXUPS: aa473 9 9 9 28 13 11 c 28 2f 10 9 22 9 26 28 22 31 3b 15 16 2a -FIXUPS: aa6be 28 22 31 3b 18 fffff674 32 18 33 18 45 71 45 5b 46 33 17 -FIXUPS: aa09c 65 2a 2a 2a 9f 1a 2d 20 36 18 3f 9 c 2f 4b 1a 16 2a 9 40f0 -FIXUPS: ae122 16 17 3d 21 1b 32 e 54 7d 1d 73 fffffa09 16 17 39 21 1b 32 -FIXUPS: ade54 54 9b 13 e 2b 13 e 5a 2b 3e 51 961 1b 32 e 54 84 ae fffff99c -FIXUPS: ae5b8 17 39 21 1b 32 e 54 9b 13 e 2b 13 e 5a 2b fffffb5d 16 17 -FIXUPS: ae424 21 1b 32 e df0 32 e 54 48 9e 10 1c 111 ae 51 3b fffff661 -FIXUPS: aecf8 17 35 21 1b 32 e 54 50 2f b0 40 11 19f 73 fffff7fc 16 17 -FIXUPS: aea04 f1f 34 31 ee d 32 1c3 2a 13 1e 2a 13 1e 16 1e 2a 13 1e 2a -FIXUPS: afdfa 1e 16 1e ac2 db8 eb0 e5b ffffbe21 16 17 35 21 7185 25 27 -FIXUPS: b646a 35 52 50 37 69 25 27 24 35 52 50 37 69 25 27 24 32 81 18d -FIXUPS: b6a8a 39 13 ffff8d1a 7 46 13 6b 34 6407 32 85 91 25 27 24 36 9 -FIXUPS: b5f40 9 50 38 9 68 25 27 24 36 52 4d 38 65 25 27 35 9 50 9 4c 37 -FIXUPS: b6393 fffff208 36 9 53 9 50 38 9 68 25 27 24 32 85 91 25 27 24 -FIXUPS: b598d 52 4d 38 65 25 27 36 51 4c 38 66 25 27 fffff1ad 34 51 50 -FIXUPS: b4f8a 5f 25 27 34 51 50 36 5f 25 27 34 9 50 9 4d 36 9 61 25 27 -FIXUPS: b53f0 51 4c 38 66 25 27 fffff130 5c 38 4a 38 6e 38 4a 38 5c 38 -FIXUPS: b49c3 38 19 3c 40 51 45 51 39 1b 27 1d 62 12 12 41 25 35 7f 84 -FIXUPS: b4e58 4e7e ffffdb0a 4b 8c 30 17 21 166 50 fffff0bb 138 30 17 21 -FIXUPS: b6de9 18 3a 5d 59 18 3a b3 74 706 30 13 ffffcce4 26 32 fe 38 4a -FIXUPS: b8eb4 58 c5 1b 2f 32 14 2f 3e 2a 13 a 89 22 22 39 4d 12a 204 19b -FIXUPS: b9761 37 3f 37 11c 4f 29 71 24d 30 26 10 ffffec5b 46 28 30 27 2b -FIXUPS: b8a39 50 10 27 28 1d 2b 28 3a 1a 28 3e 15 28 2d 1c 15 9b 22 60 -FIXUPS: b8e0d 28 2b d a 15 fffff12a a9 7f 28 b9 d2 2f 39 1f 19b 76 28 84 -FIXUPS: b85fd 3c 1d 15 28 22 46 2d 26 15 28 2f 28 1f 28 2c 28 67 15 1c75 -FIXUPS: ba585 21 bb 42 fa 22 1b6 9d e2 1a 25 107 196 13 ffffef0d ee 30 -FIXUPS: b9e25 21 ffffddf6 30 17 21 21 76 b 91 ae 1c 31 30 fff49295 5 5 -FIXUPS: 11b9 13 1d 13 1d e 32 13 3d 2c 24 e 13 1f 13 1d e 13 1f e 32 e -FIXUPS: 140a 1f 30 30 b8fc7 5f 8f fff47026 a 10 15 f 10 15 20 42 e 22 50 -FIXUPS: 16b7 fffff96b 27 f 21 33 a c c a 14 a 26 a a a a a a 24 1580 1d -FIXUPS: 273c 1c 36 d 4f d 7b d 4a 20 12 1b 2d d 20 29 d 21 22 e 13 1f 35 -FIXUPS: 2ac9 30 ffffe9e0 1a 1c 1c 1c d65 f 28 d a5 15 1a 1b 36 23 d 63 -FIXUPS: 24bd 2c d 18 2e 10 1d 8 5 28 d 2e 2d 23 d 27 1c e 42 26 fffff8b8 -FIXUPS: 1fb2 13 10 2b d 31 d 34 d 2c d 13 2e d 20 35 d a 18 b b 19 35 5 -FIXUPS: 2217 b 38 1f 5 1b 8 fffff90d 90 5 66 c c 14 1f 39 1c 11 13 32 d -FIXUPS: 1dde d 10 27 d a 9 e 5 24 23 48 d 1e 17 33 10 19 fffff7b7 f 21 -FIXUPS: 1799 30 70 30 29 14 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f e -FIXUPS: 1acc a d 28 42 3a 1e 11ed 10 e a d a 3b 12 a 6 19 e a 6 24 13 d -FIXUPS: 2eb6 53 13 d d 6c d d 36 d 43 d d 7b ffffe63b 20b0 67 10 10 23 -FIXUPS: 388c 1b 5 5 18 16 8 12 e 13 fffff238 d 53 d 43 d 53 10 10 d 11 -FIXUPS: 2ca6 10 29 d 10 86 56d 9 1a 6b 20 2c 23 16 b 27 10 37 1d 31 23 -FIXUPS: 3502 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 2038 19 37 -FIXUPS: 57c3 a 6 46 40 1d 13 12 11 4b 22 e 13 1d ffffd7a5 36 27 f 21 30 -FIXUPS: 31c7 b 37 29 16 15 15 14 e 21e0 15 6 1d 6 1d 6 1f 6 2f 11 10 10 -FIXUPS: 5565 b 10 17 13 d 14 2e e 14 5 39 11 5 31 9 a 6 a0 fffff9a1 b 18 -FIXUPS: 513c 6d 11 b 1f 6 24 6 27 1e 11 4f 11 b 12 12 12 3e 11 b 8 7c 11 -FIXUPS: 5405 10 10 f f 24 fffff75c 33 d 4d d 1d 25 15 b 33 d 52 d 1f 28 -FIXUPS: 4dd9 11 bf 11 b 54 11 3f 11 4f 11 b 8 b 71 11 6f fffff7b0 11 2f -FIXUPS: 48ea b b 11 18 19 19 e 10 30 11 4f 11 4f 11 b 11 18 19 19 e 10 -FIXUPS: 4b29 11 4f 11 b b 8 fffff861 40 d 1f 49 d 2e 11 6f 11 8 10 77 11 -FIXUPS: 4642 10 87 11 b b 28 21 11 b 8 10 3a 18 19 19 58 11 fffff7d1 2e -FIXUPS: 407c b a 10 78 39 d 12 3a d 21 11 b 12 82 11 3f 11 b b 8 b 33 d -FIXUPS: 4390 d 1d 14 b 33 fffff5df 1a 5f d a3 d 83 d 63 d 7c 10 10 10 3b -FIXUPS: 3d7f d 4a d 29 d 20 13 24 58 b1 13 b a 10 6d d 2730 d f 22 37 d -FIXUPS: 67ed c 33 d 20 8 d 29 29 17 15 23 d f 1e 8 d 29 27 1b 18 b 2b ffffcf22 -FIXUPS: 39b9 25 29df 1f d f 33 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a 2d d -FIXUPS: 6622 1b 2a d 2b d 20 2a d 17 15 fffff8da 3f 2d 1e 14 42 d 17 55 -FIXUPS: 6168 28 6 30 6 19 f 2b a 12 f 2f e 1e c d 11 14 3a a 49 d 23 fffff820 -FIXUPS: 5be4 d 42 2d 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 f d c 27 d 2b -FIXUPS: 5f54 d 29 d 35 d 2a 12a9 1b 32 23 47 1f 1b 2a 22 e 13 1f e 13 ffffe52f -FIXUPS: 5990 3c 1d 10 58 28 10 31 1f 40 e 10 27 d 17 1c 18 1292 2c d 28 -FIXUPS: 6eb9 8 c 3c 23 1b c 3e d 11 44 26 23 2d d 11 26 5c 23 1b 46 d 3c -FIXUPS: 71e3 14 27 2f 3c 343e ffffc38b 27 f 21 49 27 f 21 30 e 18 e 26 -FIXUPS: 6c09 23 1b 58 d 2d 12 4e 30 2c 17 d 20 10 19 c 10 1d 311e 10 d -FIXUPS: 9fdc d 1a 46 13 d a0 13 d a0 10 9 d e5 49 5c 10 9 36 d 94 130 2e -FIXUPS: a5d4 77 20 d 21 c fffff444 e 1a 1d 9 84 2e e 4a d 16 25 13 d 10 -FIXUPS: 9cc6 43 13 4d d 53 13 d 10 d 27 44 1d 17 42 52 13 fffff456 d 22 -FIXUPS: 93de 14 11e 25 25 75 6a 23 2d 23 2d 29 27 25 17e 3d 23 2d 23 3d -FIXUPS: 99c8 d 24 14 1a 2b d 51 d ffffef30 10 32 14 d d 1c 29 1b d b 2cd -FIXUPS: 8dac 75 23 d d e 14 15 14e d 98 d6 2e d 71 d 55 6d 90 23 ffffee49 -FIXUPS: 8282 45 8 1a 90 29 32 23 d 10 8 19 35 4f 38 51 54 43 62 5a 5c 36 -FIXUPS: 8787 62 c7 45 b 1a 8f 23 19 fffff3c9 23 d d d 1c 20 d 20 2b 2d -FIXUPS: 7edc 1b d b 2f 3d 6 1d 48 6 36 37 33 34 6 57 6 1e 50 6 38 fffff837 -FIXUPS: 7a83 d 3a 15 36 34 23 1b d 8 1b 32 23 1b d 14 9 6 22 23 13 1a 23 -FIXUPS: 7cff a 15 8 f a 1a 23 fffff84a 33 23 1b d 30 3c 29 23 16 c 1b 23 -FIXUPS: 7777 8 12 29 d 53 36 49 23 1b d f 45 36 2b 23 1b d f 3096 c b 28 -FIXUPS: aad5 34 25 d 15 2d d 1d 12 4c b 6 63 d 21 ffffc7c2 16 6 13 12 30 -FIXUPS: 7509 23 32 20 d d 11 8963 ffffa7dd e 10 29 61 38 e b 10 14 25 d -FIXUPS: a885 2c 23 25 e 1c d 2e d 17 27 c b 2b 1e c b 2e d 51cb 18 14 1d -FIXUPS: fc86 18 28 2d 10 f f 23 e 17 c c 14 24 11 16 3c 20 1b 5 5 5 23 -FIXUPS: fe97 13 1f 13 1d fffff98e 1d 1c 1d 1d 1d 1d 1d 1d 1d 2a 10 29 12 -FIXUPS: fa2f 10 29 12 17 f 5 5 15 75 48 1d 14 b b 1c 22 b fffff78d 23 16 -FIXUPS: f429 23 32 23 d 1d 25 d 20 4c 29 16 b 2a 1d 2f 23 2d 10 2d 38 38 -FIXUPS: f75e 38 38 38 33 23 13 fffff555 3e 12 37 3e 15 47 1d d 45 35 30 -FIXUPS: efe9 23 16 8a 5d 23 4d 23 27 20 d 27 d 1a 1d d 1a 2e 89 30 fffff4d9 -FIXUPS: e85b 19 13 13 13 16 16 16 e e 1e 19 67 50 23 16 1a 69 1c 68 23 -FIXUPS: eb74 b b 76 d 37 62 67 6c 23 fffff468 25 11 43 1c 23 16 b 3a 1e -FIXUPS: e366 94 2f 30 30 23 1f 29 d 1e 36 d e 3b 1e 23 194 c 13 29 5a 10 -FIXUPS: ddbc 32 23 d 10 27 23 d 10 22 35 35 32 10 c 35 4f c6 23 16 8 8 -FIXUPS: e116 48 6 10 6 d b 1b e 3a fffff723 11 70 29 32 23 d 2c 23 d 2c -FIXUPS: dabf 8 c 1b c 54 6d f 8 15 36 5 b b 21 23 32 28 23 d 93 fffff757 -FIXUPS: d4f8 1c 2d e 14 18 a 64 30 1b 25 23 2d d 10 18 29 18 26 24 23 2d -FIXUPS: d7c6 d 1d 29 18 14 26 5e 23 fffff838 25 40 23 16 27 23 d 17 19 -FIXUPS: d26c 32 32 23 d 17 22 2d 16 27 23 d d 8 18 15 e 2e 24 c 27 22 fffff87d -FIXUPS: cd69 23 32 16 27 23 d d 8 e c 27 22 26 8 1c 2d 8 19 2d 29 24 2a -FIXUPS: d00f 25 17 3d c 1e 37 20 fffff821 b 24 23 4c 1e 23 23 2a d 3e 33 -FIXUPS: cafb 23 d 22 21 1b 23 16 27 23 d 17 19 12 1e 23 32 32 23 d fffff679 -FIXUPS: c3cc 15 38 23 15 118 23 61 5 5 8 1a 23 7d 23 38 7 9 12 1a 14 d -FIXUPS: c7a9 29 2d d 10 10 ca f 1a fffff473 d 5a 23 3b c2 23 13 c 1e 23 -FIXUPS: bfb2 b 24 1c 3f d 60 23 16 c 2b 23 53 64 36 36 2a 23 27 25 4c fffff5a5 -FIXUPS: b90c 16 37 23 16 b 2c 23 16 6b 5 10 5 5 14 15 10 24 11 a5 23 d -FIXUPS: bc02 5 35 63 1a 50 20 23 12 fffff57e 45 48 23 4d 23 7d 23 ad 23 -FIXUPS: b5b9 23 2d 23 2d 23 3d 29 26 10 1b 12 34 29 26 10 1b 2d 19 22 3e -FIXUPS: b8bc fffff47d 30 10 b 26 55 2a 26 1a 23 5d 23 3e 3f 23 32 20 d -FIXUPS: b01d 1c 23 32 59 d 19 8c 23 32 23 d 43 58 4ed0 10 2d 35 d 37 d -FIXUPS: 10279 40 23 d 17 27 5 5 31 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: ace2 27 f 8df1 23 13 18 1d 1d 1d 10 29 12 2e 5 1d 30 30 30 e 13 -FIXUPS: 13d19 e 13 ffffc26f 40 23 d d 33 2f 21 23 28 25 3533 6d 23 2d 23 -FIXUPS: 137d2 10 10 19 19 13 13 13 16 16 16 e e 1e 23 32 3b 13 2d 23 d -FIXUPS: 13a0b 23 d 32 38 38 fffff601 23 d 17 2a 6c 23 d ee 23 2a d 2c 32 -FIXUPS: 133f9 23 16 22 21 1d 1d d 29 44 23 32 23 d 2a d 16 2e fffff466 -FIXUPS: 12b29 15 1b 2d 23 d 53 33 2e 31 2f 27 48 23 30 d 6f 38 ae 23 d -FIXUPS: 12f69 2d 23 d 2c 23 d 10 57 23 fffff4ed 20 d 3d 1a 2c 23 2d d 10 -FIXUPS: 126df 3a 23 2d d 10 29 6a 16 1a 23 1d 16 41 23 d d 35 38 7a 23 -FIXUPS: 12a34 fffff67b 15 5e 47 25 d 2c 32 60 25 d 2c 32 60 23 32 23 d -FIXUPS: 123f8 d 14 20 d 3d 1a 2c 23 32 23 d 2a d fffff4eb d 44 28 2d 56 -FIXUPS: 11bb9 23 32 23 d 27 d 64 43 23 32 23 d 30 2a 71 23 2a d ad 29 46 -FIXUPS: 12008 61 23 16 fffff45a 18 2c 40 5a 2a d 38 23 42 bb 23 16 25 d -FIXUPS: 11806 23 d 3d 2c b 41 12 1f d 29 1f 19 2a 65 d 27 fffff4d3 15 83 -FIXUPS: 10fe9 23 1b 10 b 1e 37 32 23 13 15 35 1f 33 67 29 15 a8 21 23 32 -FIXUPS: 11381 d 2a d 43 56 1f 3b fffff389 18 10 1f d 24 23 16 22 d 138 -FIXUPS: 10a7c 32 23 d 9b 23 32 23 d 10 db e 26 2c 2c 23 29 114 14 13 10 -FIXUPS: 14384 13 13 13 16 16 16 e e 1e e ffffc06b 27 f 21 49 27 f 21 30 -FIXUPS: 105ea 2d 36 2c 13 ad e 26 2a d 35 2c 380b f 6 10 6 26 a 20 15 35 -FIXUPS: 140df e 10 12 27 13 b 14 18 b 12 70 8c 2e 5 1d e 13 28 10 10 19 -FIXUPS: 1a27c 5 5 23 e 13 1f 11 b 24 e 13 1f 13 1d 13 ffff99c6 27 f 21 -FIXUPS: 13df9 36 1a 36 15 6b 19 1d 4a 58 c 10 5ec0 e 16 14 c 10 1b 10 1f -FIXUPS: 19f66 28 17 1f 1e 2b 1b 10 17 44 2c 16 1e 10 17 2b 2c 16 2f 67 -FIXUPS: 1a23c 20 1b fffff722 2c 16 1e 10 17 5c 2c 16 2f 67 25 11 3f 35 -FIXUPS: 19c39 92 d 2d 64 30 30 10 a d a b 4f d 10 27 13 fffff781 16 17 -FIXUPS: 196a9 10 a d a b 4f d 10 27 13 8 e 16 14 c 10 1b 10 1f 15 28 17 -FIXUPS: 198a4 1e 2b 1b 10 17 fffff903 17 10 2d 23 d 23 10 8 18 20 28 38 -FIXUPS: 193b9 23 32 23 d 18 23 23 32 23 d 1a 21 23 32 23 d 15 36 fffff849 -FIXUPS: 18e62 16 c 35 48 26 1d d 1c 3c 23 16 37 23 16 37 10 8 18 20 11 -FIXUPS: 190fd 10 22 d 15 10 2b 1d e 32 fffff818 1c 1f 21 20 17 36 14 14 -FIXUPS: 18b01 1a 19 5 f 1a 97 40 23 32 23 d 10 10 27 24 23 16 b 32 c 6e -FIXUPS: 18e3c fffff824 23 d 10 b 27 13 8 8 8 8 13 9 27 1e 17 1b 19 c 32 -FIXUPS: 187ff 31 32 57 2d 3b 9 2a 1c 1c 1c 4d fffff8ff 2c 23 d 10 b 27 -FIXUPS: 183c3 25 1c 5 a 10 1b 5 29 9 a 2d 19 5 15 29 9 a 2d 10 61 23 28 -FIXUPS: 18627 d fffff771 9 14 6d 32 1d 31 17 5c 80 6a 5 35 1a 22 20 5 1e -FIXUPS: 180cc 1c 7 6b 1f 40 39 a f 5e 23 1b 1d 23 fffff787 1a 13 1e 24 -FIXUPS: 17ae4 15 21 18 5 8 f 7 b 7 10 37 10 5 21 10 a 3c 6 f 6 10 13 40 -FIXUPS: 17d0f 1b 5c fffff97a 89 29 28 23 d 2c 16 b 27 1b 10 a 8 8 2b 10 -FIXUPS: 17933 8 a 10 a 20 d d 11 18 25 d 41 c 20 fffff91a a 10 a 20 d 15 -FIXUPS: 173fe 14 5 15 64 32 14 47 c 8 25 9 14 2b 18 63 c 1a 19 32 20 5 -FIXUPS: 176c9 15 1d fffff8cd 47 c 8 69 9 14 47 8 14 c 1a 19 5 1a 6f 40 -FIXUPS: 1723c 28 23 d 2c 23 d 10 b 27 13 8 8 8 8 fffff8cf 25 11 21 19 7f -FIXUPS: 16d28 31 23 28 23 d 2c 23 d 10 b 27 13 8 8 8 16 a 10 a 20 d a 10 -FIXUPS: 16f82 32 fffff922 16 b 1e 2a e 1f 6 18 4f 15 1d d 12 1f 2d 32 1b -FIXUPS: 16ad3 b 8 19 6 19 6 25 39 1a 1a 28 28 1e fffff97a 23 d 22 23 d -FIXUPS: 16642 23 d 1d 9 9 28 23 16 10 d 14 26 c 16 1e 23 32 23 d 10 b 10 -FIXUPS: 16861 2e 1a fffff941 35 33 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 1637c 31 2c 23 1b d 1d 23 d 22 23 d 3a 29 23 23 fffff852 79 32 -FIXUPS: 15e8c 16 15 4a f 48 31 23 16 8 12 f 70 f c 53 23 1b 10 b c a 14 -FIXUPS: 16158 a 27 23 28 c fffff752 b b 8 10 2e 12 24 c 24 19 20 b 99 26 -FIXUPS: 15b71 28 23 16 47 23 16 2a 3f 2e 23 16 8 2a 31 17 18 fffff760 36 -FIXUPS: 15569 23 16 b 1d 23 d 22 23 d 15 6f 28 21 23 16 1d 23 d 15 56 1f -FIXUPS: 1584c 16 10 2c 1b 1f 21 23 fffff85b d 10 20 d 42 d 29 11 4f 10 -FIXUPS: 152b1 18 20 23 16 b 1d 23 d 22 23 d 15 4f 28 21 23 16 1d 23 d fffff8e3 -FIXUPS: 14def 11 c 1d 30 2c 45 1f e 27 c 1e 20 74 1d e e c e c e c 24 10 -FIXUPS: 150b6 23 d 31 23 d 10 fffff94b b b b 30 20 d 11 1d ab e b b b b -FIXUPS: 14c63 23 d d 9 c 1d 27 e b b b b 30 23 d 2c fffff88a 30 2b 25 30 -FIXUPS: 1471c 16 b 11 11 2a 11 2b d 33 d 15 17 21 d 2e d 3a d 24 d 21 d -FIXUPS: 149d9 8b 25 e 9eff 23 e e 12 2a 18 e 32 80 5b 6c 117 5 1d e 13 -FIXUPS: 1ed29 e 13 ffff5732 36 27 f 21 49 27 f 21 49 27 f 9ec1 40 70 11 -FIXUPS: 1e5b5 20 24 30 20 20 30 30 30 30 23 2d 23 16 2b 2c 23 2d 10 3f -FIXUPS: 1e8b5 3f 23 d 25 10 8 18 fffff777 24 32 d 17 26 18 27 b 36 54 d -FIXUPS: 1e29c 20 18 17 d 25 18 28 23 f 27 f 20 25 f 15 1e 27 25 32 fffff82f -FIXUPS: 1dd0f e e 1e 23 3d 23 2d 30 30 23 16 27 23 16 27 23 16 47 14 b -FIXUPS: 1dfc3 b 12 34 17 2f 17 19 28 25 fffff875 11 24 38 23 13 e 12 2c -FIXUPS: 1da57 22 23 88 d 28 20 23 13 e 12 10 17 1c 30 10 10 19 19 13 13 -FIXUPS: 1dccd 16 fffff80c 8 c e 12 41 8 20 11 18 20 20 20 1c 2c c 54 18 -FIXUPS: 1d6f9 8d d 33 d 26 65 d 2e 23 32 23 d e fffff53d 3a d 136 25 5e -FIXUPS: 1d07b 1e 50 e 30 72 23 ed 23 13 8 1e 10 24 23 13 8 1e 10 24 23 -FIXUPS: 1d419 d 34 7f e fffff555 16 b 6c 23 30 d d 23 23 16 8 2f 1c 24 -FIXUPS: 1cc2c 16 8 2f 1c 24 e 2d 1f 26 23 5d 23 16 8 10 29 fffff78b 24 -FIXUPS: 1c60d 12 19 3c 12 1c 4b 15 17 c 25 8f b 14 2f b 27 23 2d 23 16 -FIXUPS: 1c916 23 23 16 b 15 39 2c 22 fffff80b 16 27 23 d 10 b b b b b 38 -FIXUPS: 1c31d 1c 17 22 41 b 1c b 16 1a 24 1f 26 27 28 44 b 5f 12 1d fffff74d -FIXUPS: 1bd13 22 41 18 47 1c b 14 27 28 44 b 5f 19 2e 24 19 3c 12 1c 4b -FIXUPS: 1c05b 17 70 b 1c 3f 21 3f 21 29 fffff73c 25 18 f 16 10 f 16 12 -FIXUPS: 1ba2d 22 22 26 d 5f 17 32 17 66 20 29 32 16 b b b b b b b b 38 -FIXUPS: 1b5cd 3c 30 12 1e 29 16 b b b 8 8 8 8 c 8 40 12 1c 19 19 10 49 -FIXUPS: 1b80e 12 13 2e 65 f 19 13 25 fffff7ea 8 4e 37 d 5b 29 4b 23 13 -FIXUPS: 1b2b7 48 16 8 4e 4f 29 26 23 16 8 c 8 39 8 5a 15 4b 1f 25 14 14 -FIXUPS: 1ac98 67 1a c 26 8 e 12 2e 28 23 15 18 23 32 3f d 12 48 d 40 d -FIXUPS: 1afe5 23 d 22 32 23 16 8 8 48 fffff5c4 2b 11 2d 7b d 4c 20 d 61 -FIXUPS: 1a8a9 d 5e 1d 58 12 b b b b 16 d c 23 23 6e 6f 2c 30 d 8f d 4b64 -FIXUPS: 1f79b 19 13 13 13 16 16 16 e e ffffab97 27 f 21 49 27 f 21 30 25 -FIXUPS: 1a53b 2c 43 39 59 2d 14 b b b b 4a81 2c 6 a8 1a 3b 23 1b 10 d a -FIXUPS: 1f2c9 8 12 d 40 1d c 15 13 10 80 1c2 f4 5 1d 14 6 26 12 27 10 36d8 -FIXUPS: 1ed99 29 1b 10 d a b 27 13 14 b 4f 10 18 f 10 1f 15 b 16 10 1f -FIXUPS: 1ef8a 2b 3b 1e 2f 10 44 c 6 3a51 13 13 13 16 16 16 e e 1e 89 27 -FIXUPS: 22c69 2d 30 d 37 d 22 10 8 18 1e 5 1d e 13 1f e 13 1f e fffff8fb -FIXUPS: 22755 1a 2a e b b 2c 30 30 11 2a 2b d 17 2a 15 1c b 13 18 19 4a -FIXUPS: 229dc 38 2b 21 11 31 10 10 19 fffff9f4 17 10 b 18 1c 10 14 8 b -FIXUPS: 2258c d d 1c 14 8 b 10 20 d 1d 8 14 8 10 20 d d 8 19 c 3e fffffaf1 -FIXUPS: 22215 20 1d 8 1f 17 10 f 15 8 3a 13 1a 11 8 2d 23 32 23 d 2c 23 -FIXUPS: 2245a d e 17 10 9 6 b a fffffa26 16 23 1a 20 29 32 23 d 2c 13 b -FIXUPS: 22036 8 23 1d 8 1f 10 f 15 8 3a 13 1a 11 8 28 29 16 27 13 fffffae4 -FIXUPS: 21cf9 13 e 26 d d a 22 10 8 a 10 d 9 8 d 9 8 8 a 10 9 8 d d 20 -FIXUPS: 21e6e d 8 19 c fffffb6e 15 8 39 1d 8 34 15 8 1b 13 1a 11 8 26 23 -FIXUPS: 21bbe 23 d 2c 23 d d e 17 10 9 6 b a f 17 fffffa50 d 20 d d 20 -FIXUPS: 2179a d 13 9 8 d 20 d d 8 19 c 3e 16 23 1a 29 29 32 23 d 2c 13 -FIXUPS: 219ce 8 29 fffffb66 17 10 9 6 b a f 17 10 e 26 d d a 22 18 10 9 -FIXUPS: 21699 8 a 10 9 8 d d 8 a 10 d 9 fffffb3b 29 16 27 13 b 8 12 1d -FIXUPS: 2131c 27 c 17 15 8 3c 1d 8 1b 13 1a 11 8 24 23 32 23 d 2c 23 d -FIXUPS: 21557 fffff955 2d d 10 21 d 53 32 23 4d 29 32 23 d 2c 13 b 8 14 -FIXUPS: 21127 8 2a 1c 24 17 15 8 1b 13 1a 11 8 fffff7ab 14 15 70 23 d 27 -FIXUPS: 20b11 d 1b 23 16 15 5d 27 2e 23 1e 13 1c 23 16 34 23 23 6d e b -FIXUPS: 20ded 3c 49 17 fffff4b0 18 28 e 50 11 20 8 18 3e 1d 35 21 2b d -FIXUPS: 205fc d 70 d cb 2a d 62 d 65 d 70 d 6c d 40 d fffff478 d 12 92 -FIXUPS: 1ff79 23 16 b 3f 1d d 3d 10 1d d 56 1d d 14 1d d 26 58 e 32 17 -FIXUPS: 2023d 1c 1e 52 36 17 fffff642 21 30 11 27 13 1d d 6e 27 55 71 23 -FIXUPS: 1fbc9 d 15 27 d 15 27 e 18 4c 21 d 22 2d 3f 23 37 d 10 5a04 13 -FIXUPS: 2582a 13 16 16 16 e e 1e 30 ffffd59e 5 26 10 10 19 19 13 13 13 -FIXUPS: 22f53 16 16 e e ffffc8e7 27 f 21 49 27 59e9 12 10 12 21 92 38 58 -FIXUPS: 254b8 d 24 e 9 9 20 23 14 2c d 73 d f3 20 1b 5 5 5 23 39 10 10 -FIXUPS: 257eb fffff5f1 2d 19 18 18 ba 1d 1b b b a 2b 77 19 15 22 f9 b 4c -FIXUPS: 251be 15 3d 2e 15 10 2c 10 1d 13 1d 13 17 fffff236 16 85 4e 54 -FIXUPS: 246b2 16 8 8 39 44 28 44 26 d 11 90 32 16 16 16 19 15 22 1a d 52 -FIXUPS: 24a56 23 d ea 249 ffffefa9 18f 9f 3c 25 8 2f 90 22 7 d 5f 58 14 -FIXUPS: 241dc 7 f 15 18 15 15 18 15 15 18 15 15 18 30 164 30 80 ffffeeff -FIXUPS: 2346a 3f 23 16 137 23 16 b b 95 d 66 29 23 16 2d 118 32 23 7d 50 -FIXUPS: 23a69 90 23 16 8 8 5a d c0 12 63a8 d 18 41 e b 15 11 65 3a 5 1d -FIXUPS: 2a197 13 ffff8e30 a 25 e 32 29 16 12d b4 23 16 87 23 32 23 d 10 -FIXUPS: 233fa 676f 2b d 10 4a d 35 d 14 78 36 d 22 2e 30 23 d 2b 33 d 15 -FIXUPS: 29e5d 1c 23 32 23 d 1a 1b 96 23 17 fffff781 d 1d 17 f d 9 14 9 -FIXUPS: 29849 21 11 38 1a 17 d 9 14 9 52 10 13 15 3f d 4b d 61 d 5c d 31 -FIXUPS: 294b1 d 10 b 8 8 8 c 1c c 3a 8 22 a 10 a 2a d 37 d 14 49 d a 24 -FIXUPS: 296d7 d 30 13 b 21 14 fffff80b 2f 1e 14 28 1e 14 ab c c f 60 c -FIXUPS: 291c2 23 1e 14 38 8 91 31 40 40 40 e b b b b 26 23 32 fffff538 -FIXUPS: 289e9 d 62 14a 10 10 19 19 13 13 13 16 16 16 e e 1e 50 23 32 23 -FIXUPS: 28d7e 10 b b bc c c f 88 c fffff2e1 d 37 1e 18 25 d 27 50 6b 18 -FIXUPS: 283c9 23 16 10 d 27 23 d 11 5b d 92 d ab 11 1c 143 22 19 c5 f0 -FIXUPS: 27dd3 d 52 24 51 38 1a 39 1a 12 20 4b 23 16 b f 33 2a 23 1b d b -FIXUPS: 280f6 23 d d 8 f 16 42 d 3c fffff68f 8 8 12 11 49 30 34 38 13 19 -FIXUPS: 27a31 56 22 11 6f 30 68 27 b1 e 18 2e 14 1a 24 20 d 12 15 15 1f -FIXUPS: 27289 23 3d 23 8d 23 2d 31 d 32 23 1a 23 30 23 16 b 58 17 1d 61 -FIXUPS: 27627 16 39 48 bb 11 3c 33 11 2c 33 fffff44d b f 23 e 58 6 6 f -FIXUPS: 26d7a 109 1a 85 1f 28 6 13 6a d 40 1d 5b d 3f 3a 62 23 16 50 d -FIXUPS: 27239 31 fffff49b d 27 28 d 3b d 5a d 5a d 52 3b 38 34 d 11c 13 -FIXUPS: 26af5 d c 2b 17 59 e 8 20 d 12 39 d 68 fffff3c3 17 2a 17 25 17 -FIXUPS: 2619d 75 d 9a 10 22 1d d 12 b c 1b e9 d aa 25 d 23 15 2c 50 2a -FIXUPS: 2662e d 55 52 447b e ffffadb2 8c 23 16 1b 1c 12 11 4d 2a 1d 21 -FIXUPS: 25afe 40 d 2d b 17d 6 ac d 55 77 59 18 19 9d 14 51 43 44e9 5c 54 -FIXUPS: 2a699 d 93 23 95 78 23 13 8 c 45 25 2c 2b d 45 91 5 26 10 10 19 -FIXUPS: 2aad4 13 13 13 16 16 16 1acb 13 16 16 16 e e 1e e ffffdb12 17 44 -FIXUPS: 2a23d 40 d 13 3c 5d 2b 28 22 d d 10 12 25 1c 61 2a 20 d 56 1a84 -FIXUPS: 2bfd9 20 14 4d d 1d3 8 33 24 f 19 f2 2b 8b 23 13 2a 10 29 12 23 -FIXUPS: 2c53c 1d e 13 28 10 10 19 19 13 fffff4bd 25 29 32 32 4f 25 38 2c -FIXUPS: 2bca8 1f 5c 26 14 b 22 13 16 3d 18 a 29 e 1d d 14 c b 4b 25 29 -FIXUPS: 2bf5a fffff2bd 21 37 1d d 34 77 61 44 29 32 60 25 3d d 1e 59 2c -FIXUPS: 2b615 10f 7d 67 41 23 51 1c 3a d 18 3f 75 77 e58 ffffe2e7 27 f -FIXUPS: 2abf9 30 34 1c 11 15 8b 5f 3c d 57 3a d b8 101 16 3a 23 32 23 d -FIXUPS: 2b149 1c 25 3b 31 a 8 82d2 1f e 13 1f 13 1d 13 1d 13 1d 13 ffff912b -FIXUPS: 2c70c 1d 11 16 39 18 d 24 10 10 19 19 13 13 13 16 16 16 e 691e -FIXUPS: 331d8 11 5e 1f 10 6 36 d 20 2a 12 e f 1f 22 e 13 1f e 13 1f e 13 -FIXUPS: 33439 e 13 1f e 13 1f e fffff8c1 d 34 26 1b b 19 17 63 d 5c 13 -FIXUPS: 32f37 43 18 2e c 22 22 24 16 1d 6 34 d 15 c 17 3b 38 26 1d fffff800 -FIXUPS: 329b0 6 1d 26 12 2a d 27 13 10 10 11 19 46 5a 23 d 23 14 2c 2a -FIXUPS: 32c46 d 10 b 11 17 37 43 1f 36 fffff82f 42 1a 17 26 17 43 1d d -FIXUPS: 326c3 20 36 30 23 16 30 22 35 26 1d c 37 11 f 1e 6 18 d 20 31 23 -FIXUPS: 32989 fffff8d9 23 11 35 c 22 22 24 16 1d 6 34 d 15 c 17 2f 29 26 -FIXUPS: 324a1 23 d d d 8 10 13 8 b 21 d 30 fffff8af 46 5a 23 d 23 14 2c -FIXUPS: 31f93 23 d 10 b 11 17 37 43 1f 36 23 d 34 19 11 b 2b 26 1b 13 33 -FIXUPS: 32234 13 fffff86a 8 24 d d 10 20 d 56 d 18 40 3d d 27 d 25 12 2c -FIXUPS: 31cdd e 2d d 37 d 43 d 20 13 10 10 11 fffff8cf 20 32 17 1e 20 d -FIXUPS: 317c5 34 26 1d 2f d 17 2f d 29 d 11 e 2a c 27 20 d 4d 20 d 25 30 -FIXUPS: 31a8b 13 fffff941 2f d 11 d c 10 c d c 17 17 b b e 3e d 15 13 1a -FIXUPS: 31570 34 42 d 1a 35 d 47 6 18 1c 6 fffff988 2b 23 1d 2f d 15 15 -FIXUPS: 3114f 1f b 1f 13 18 23 1d 19 29 1a 17 13 a 14 20 6 17 2e 37 26 -FIXUPS: 3138c 2f d fffff943 13 17 6 1e 23 1d 2f d 12 15 1f 13 13 a 1d 31 -FIXUPS: 30ebc 1d 2f d 1a 1f 13 1e 1d 9 e 25 c 42 d fffff949 1d 2f d 10 -FIXUPS: 309f1 3e 12 28 23 13 10 1a 23 1d 2f d 15 c 28 37 21 12 a 1d 2a -FIXUPS: 30c6c 1d 2f d 12 15 fffff946 c 1b 23 1e 12 2f d 15 c 26 17 6 1d -FIXUPS: 3078c 1e 12 2f d 15 c 26 13 a 1d 30 23 1d 2f d 11 23 fffff930 23 -FIXUPS: 302c9 16 9 21 d 23 20 1b 21 20 6 1e 23 20 17 17 2d d 19 1b 46 24 -FIXUPS: 30549 23 1e 12 2f d 10 c fffff7f8 a9 47 f 29 b 6 24 29 37 23 1b -FIXUPS: 2fff9 1e 17 23 d 45 d 39 11 9 26 23 1b 10 29 72 d 21 14 14 fffff7e1 -FIXUPS: 2fa6f 32 23 d 39 d e 3e 1d 28 d 2d d 15 b 6 e 1a 22 b 6 29 23 32 -FIXUPS: 2fd11 d 10 b f 1c 29 fffff84e d 11 20 6 11 c 4a 49 16 82 d 43 32 -FIXUPS: 2f7f9 c a 20 d 3e d 3b d 2a 30 e 19 3d 30 2c 26 19 fffff7b1 1b -FIXUPS: 2f201 38 f 9 28 16 1d 1c 36 d 1f 17 9 1f 26 1b b 17 72 22 2d c -FIXUPS: 2f4a5 3d d 15 32 33 26 1d fffff818 65 26 1e e 1e 26 32 23 d 39 -FIXUPS: 2ef67 e 46 28 d 2d d 11 14 13 27 12 1e 12 1e 30 e 32 1f 21 23 fffff884 -FIXUPS: 2ea62 9 23 14 9 6 29 9 23 11 9 6 2b 38 23 1b 33 d 28 9 21 13 10 -FIXUPS: 2ec8d 19 38 57 23 d 24 12 fffff908 6 22 2e 23 1d 13 19 6 1d 31 -FIXUPS: 2e7dc 16 2a 22 2b 23 1b 2c 2a 19 9 27 9 6 24 23 1b 3c d 1c b fffff946 -FIXUPS: 2e3a9 23 1e 10 10 a 16 13 13 b 19 1b 2c 1b 26 2d 23 19 24 23 1d -FIXUPS: 2e5df 2c 9 19 15 b 13 9 1d 14 fffff88f 23 1e 1f 23 32 23 d 39 d -FIXUPS: 2e062 3d 28 d 2d d 1a 13 1e 23 32 23 d 10 b f 1c 29 57 49 30 27 -FIXUPS: 2db1c 10 11 19 38 57 23 d 24 2a 23 d 10 b 11 17 37 43 1f 33 23 -FIXUPS: 2ddd2 27 19 11 b 2b 12 26 28 23 1d fffff940 23 1d 10 17 6 23 23 -FIXUPS: 2d909 10 13 a 1d 26 e c 26 23 1b 10 6 11 6 45 12 13 13 13 a 20 -FIXUPS: 2daeb 1e fffff989 34 9 f 3b 17 13 13 36 d 3b d 1e 24 d 1e 24 d -FIXUPS: 2d6a9 23 13 c c 22 e 19 3a 2f 23 1e 24 9 fffff8e3 3a 35 14 22 2a -FIXUPS: 2d1f6 23 d 15 d 13 13 1a 20 d 20 2f 9 f 34 9 f 31 2d 23 d 15 10 -FIXUPS: 2d44b 2f 9 fffff7e6 49 27 f 21 30 2c 17 c d 14 23 34 d 25 32 1f -FIXUPS: 2ceb5 39 3f 2c 50 11 10 b 12 29 17 25 30 45 d 8f79 13 1f e 13 1f -FIXUPS: 360cc 1d 13 ffff67f6 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 -FIXUPS: 2cb99 f 21 49 27 f 90dc d 18 c 9 d 1e 26 1d c 36 14 f 23 6 11 20 -FIXUPS: 35eb9 12 2a d 27 16 9 21 16 9 21 30 14 2a 22 fffff906 22 3c 18 -FIXUPS: 359bf e 11 a e 50 d 46 26 1e 10 d 13 16 16 1b 28 14 3d 27 2c d -FIXUPS: 35c48 20 31 23 1e 27 fffff8c4 d 27 f a 9 1e 2a 23 d 10 b 11 17 -FIXUPS: 3570d 43 1f 33 23 d 27 23 1b d 13 b 30 22 35 23 1b d fffff8fb d -FIXUPS: 35254 a 20 d 20 f 20 d 45 35 d 1f c 6 c 6 2f d 43 d 2c 13 2d d -FIXUPS: 354cb 10 11 19 46 57 fffff8b0 34 6 1d 24 63 6 21 1d 2b 27 16 1d -FIXUPS: 35006 1a 3b 2e 16 12 1e 1f 20 d 48 b 1b 12 13 30 d 18 8 fffff832 -FIXUPS: 34a49 19 2f a 64 d 3d 24 6 18 2f 1f f 9 c 20 d 14 2d c 22 12 10 -FIXUPS: 34ccb 1d 3c d 5f 2a 6 3d fffff946 d 1c c c 1a 6 45 23 1d 2f d 2a -FIXUPS: 3489c 18 c 1d 1c 18 c 15 c 1b 16 d 12 20 d 14 1f 2b 18 fffff9e9 -FIXUPS: 34427 b c c a 18 6 27 23 1d 2f d 2c 23 d 11 9 1e 23 32 23 d 15 -FIXUPS: 3464c 2d 23 1b d b 2a 22 fffff9a1 2d 26 1d 2f d 15 d c c 1c a 2b -FIXUPS: 34209 1b f c 1e 20 3c 23 32 23 d d 9 d 28 23 1d 2f d fffff814 f -FIXUPS: 33c44 29 5f 2b 2d 1b c 4d c 1c 47 24 1b 27 29 43 23 1b 10 2f 61 -FIXUPS: 33fc4 26 16 19 23 32 23 d 15 fffff6ad 2a d 70 32 23 1e 2f 26 32 -FIXUPS: 33921 d 36 d e 46 d a4 28 d d 1d 13 1a 20 17 40 23 32 23 d 10 3678 -FIXUPS: 372a5 42 5 3d e 13 1f e 3b 10 10 19 19 13 13 13 16 16 16 e e ffffc177 -FIXUPS: 33639 f 21 49 27 f 21 30 e 3862 e a c 8 24 d 6 24 d 14 29 1e 2c -FIXUPS: 370d1 28 10 8 c 1c 2a 23 d 2c 23 d 10 b a 21 1c e fffff8c4 15 22 -FIXUPS: 36b85 9 6 8 10 10 1a 33 8d 4f d 4d 4a 23 17 26 23 32 23 d d 29 -FIXUPS: 36eb4 24 d 1f 35 23 13 fffff6a7 6 23 17 13 2f 4f b0 78 21 a f d -FIXUPS: 3686a 20 d 19 8 3f 52 2a 23 d d f 19 17 1d 3f 6d 38 6 fffff63c -FIXUPS: 36159 f 21 30 2c 17 d 20 16 10 d a b 8 54 d 36 6 10 17 31 55 10 -FIXUPS: 36587 39 1c 8 c 10 6 6 427c 4f 5 26 10 10 19 19 13 13 13 16 16 -FIXUPS: 3a9cf e e 1e e 13 1f e 32 13 1d e 13 1f e 13 1f e 13 fffff772 33 -FIXUPS: 3a32d 4c 50 23 2c 2e 2c 57 23 33 2e 42 4a 23 2c 2e 63 23 2c 2e -FIXUPS: 3a799 23 2d d 1a 9 1e 19 9 1e fffff392 23 14 37 32 23 2d 23 2d -FIXUPS: 39d6c 3f 6e 23 32 23 d fb 23 2c 2e 30 53 23 33 2e 3a 52 23 2c 2e -FIXUPS: 3a252 57 fffff554 22 3a 23 16 29 8 a 13 69 e 32 2c 13 18 29 5b -FIXUPS: 39a71 18 10 38 23 d 10 10 28 10 8 23 1f 1c 12 fffff80b 25 1c 22 -FIXUPS: 39469 23 25 1c c 20 23 25 1c 22 2a 23 25 1c c 20 23 25 1c 22 2a -FIXUPS: 3970c 25 1c c 40 23 25 fffff5db 16 b 12 29 34 45 19 84 1f 6c 23 -FIXUPS: 39019 23 cd 23 51 d 6f 23 32 23 d a 5f 19 29 23 25 1c c 20 fffff5a8 -FIXUPS: 3897d 2c 23 25 1c 2c 23 25 1c 2c 2c 32 1c 60 16 10 2d 23 d 23 10 -FIXUPS: 38c61 18 1f 1c 12 23 23 14 46 33 fffff6a8 1c 3c 23 25 1c 3c 23 -FIXUPS: 38581 1c 3c 23 25 1c 3c 23 25 1c 3c 23 25 1c 3c 23 25 1c 4c 23 -FIXUPS: 388b1 1c 4c 23 fffff5b0 1f 5e 23 3d 23 7c 1c 35 23 51 d 1f 1c 34 -FIXUPS: 381cc 25 1c 3c 23 2c 1c 15 30 23 32 23 d 17 d 57 23 fffff588 12 -FIXUPS: 379d9 11 15 28 50 52 23 14 27 2c 36 23 16 b 1a 1c 5f 1a 2d 23 32 -FIXUPS: 37d21 d 24 42 26 9f 23 1d 30 fffff660 49 27 f 21 49 27 f 21 49 -FIXUPS: 376d9 f 21 30 20 20 e 32 2c 32 1c 60 16 10 2d 20 d 26 10 8 18 1f -FIXUPS: 3d51a 1f e 13 1f e 32 e 13 1f e 13 1f e 32 40 39 10 10 19 19 13 -FIXUPS: 3d76a 13 16 16 16 e e ffff9cf7 27 f 598c 43 41 19 e6 32 15 1b 23 -FIXUPS: 3d0ac 1d 23 b5 38 23 5e 2f 23 2d 23 7d 23 7b 5 1d 12 1e 20 30 e -FIXUPS: 3d4f9 e fffff455 22 5 1f 1a 1d 23 3d 23 2e 22 4b 1e 34 e 42 2c -FIXUPS: 3cc1d 1c 10 22 d 21 14 15 7f 28 8 54 54 23 13 fffff5b4 d 1b 47 -FIXUPS: 3c499 11 1f 11 1f 23 32 23 d 3b 23 3c 1c 1c 4e 37 22 1f 33 1b d3 -FIXUPS: 3c899 11 1f 11 2f 23 16 fffff5f8 2f 11 e 37 19 16 61 3a 20 39 3d -FIXUPS: 3c146 23 e b b 2c 26 3e 8 14 10 22 d 21 14 15 7b 2c 23 13 fffff6ba -FIXUPS: 3ba78 7 10 1c 19 15 2d 8a 49 2a 23 d 27 d 1d 15 31 78 27 10 2d -FIXUPS: 3bdc9 d 27 d 1f 10 8 38 e a2 fffff75b 23 d 16 1f 11 1f 11 2c 23 -FIXUPS: 3b786 12 10 21 10 17 29 e 29 29 2f 74 1d 2a 23 d 2c 23 d 10 b 48 -FIXUPS: 3b3c6 d d 7 21 2b 2e 8 37 17 13 16 c b 9 18 11 13 10 11 b 19 f -FIXUPS: 3b5ac 19 37 1a b 8 16 13 b fffff695 27 f 21 30 e b 14 1c3 1a 10 -FIXUPS: 3afbf 19 16 53 4e 3a 20 44 42 18 b 11 c 1f 6b 20 16 2f 5b 80 2a -FIXUPS: 3dc6c 57 29 20 1b 5 5 5 23 e 13 28 10 10 19 19 13 13 13 16 16 16 -FIXUPS: 3de7d e ffffcd27 27 f 21 49 27 f 21 2be0 30 e b 61 26 2c 16 a b -FIXUPS: 3d9c0 8 21 28 d 18 33 2b d 15 23 23 24 38 1c 45 23 16 2c f c 23 -FIXUPS: 43ca9 24 20 1a 5 1d e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f e 13 -FIXUPS: 43ea9 13 1d e 13 ffff9902 36 27 f 5ee0 5f 12 30 30 23 16 43 24 -FIXUPS: 438e9 23 d d 23 23 a1 95 2a 49 1c 2a 35 e b 25 d 13 34 13 24 11 -FIXUPS: 43c8b fffff7b6 b 18 10 25 23 16 39 1d f 8 b 2f 23 16 18 15 20 d -FIXUPS: 4361c f f c 15 1e 23 18 f 2b d 30 d fffff8c2 2f 52 3f d 10 20 d -FIXUPS: 43141 10 8 20 14 1d 28 47 23 14 27 a2 10 b 25 d 2a d 32 23 d 10 -FIXUPS: 43429 10 fffff804 12 31 d 10 43 23 d 1e 1e 1d 30 23 d d 23 23 4a -FIXUPS: 42e88 8 b 1e 11 10 1e 68 2c b b 10 27 16 fffff744 36 18 22 75 d -FIXUPS: 42871 1c 46 66 4c 3c 48 23 16 32 11 24 42 23 d 16 10 28 23 2a d -FIXUPS: 42bd3 b 27 d 14 fffff67b 31 d 17 8 b 30 23 16 18 34 d 10 f f 22 -FIXUPS: 42439 30 12 4e 80 23 18 f 2b d 30 d 1e 3c 7e 41 fffff787 90 31 -FIXUPS: 41f79 22 d 10 25 d 2a d 32 23 d 10 28 d 18 b 1e 10 8 b b 29 e 9 -FIXUPS: 42194 10 25 23 1d fffff5f4 16 16 16 e e 1e 19 f 18 23 38 25 23 -FIXUPS: 41989 40 23 4d 16 b 2f 79 20 d 66 8 1c 14 1d 28 47 21f fffff565 -FIXUPS: 41407 d 55 28 d 11 2e 15 27 2b d 36 23 18 19 18 16 18 62 18 5e -FIXUPS: 41724 d 15 2c 10 10 19 19 13 13 fffff7b8 14 1d d 2e 42 19 1e c -FIXUPS: 4109e b 12 b 23 30 23 d d 23 23 53 2f 15 56 56 c b 36 15 13 55 -FIXUPS: 413b7 fffff676 34 38 18 12 8 17 14 20 e 11 6e 6 14 1a0 8 64 30 -FIXUPS: 40e1c d 32 1b 23 2d 16 25 d 20 15 26 d d fffff61f 1f 1c 6a 18 2a -FIXUPS: 406a8 6 1a 35 31 4c e 31 38 12 e c e 6 28 30 23 d 10 11 11 19 30 -FIXUPS: 40943 14 19 fffff7ec 2d 23 32 23 d 2c 2b 1a b 29 1e 13 43 1c 47 -FIXUPS: 40395 26 14 1b 22 b 22 30 23 4d d 1e 1a c 2f 3c fffff81c 23 d 32 -FIXUPS: 3fe29 20 10 8 b 18 1d 1d 10 1b 23 16 12 55 b 25 23 60 25 28 23 -FIXUPS: 400c2 24 9 a 6 1d 1d fffff760 e b 37 4d d 6f 20 d 9c 8 16 14 15 -FIXUPS: 3faea 50 2f 23 14 27 e 21 a3 10 b 25 d 2a d 32 23 d fffff6fa 11 -FIXUPS: 3f4a9 23 32 23 d 3b 23 16 32 22 40 d 36 b 25 23 16 1a 22 5 1f 1a -FIXUPS: 3f779 23 3d 23 16 18 22 2f fffff7ce e b 27 3a 3d 8 21 10 2d 23 -FIXUPS: 3f196 23 10 8 18 20 2a 23 d 16 15 7f 2c 2d 23 d 22 13 46 38 11 -FIXUPS: 3ebeb 25 71 28 30 23 d d 9 2b 15 16 30 15 27 3a 1a 19 16 d 62 1d -FIXUPS: 3ef4e 2b 23 16 d 6 12 22 23 16 fffff827 49 17 10 2d 23 d 23 10 -FIXUPS: 3e961 18 20 2a 23 d 2c 23 d 10 b a 21 1b 27 1f 17 3c 2a 23 d e -FIXUPS: 3ebd6 fffff823 10 2d 20 d 26 10 8 18 20 11 15 7b 2f 23 13 14 84 -FIXUPS: 3e6a9 23 17 26 23 1a 23 23 1a 23 23 16 17 e fffff6c2 f 21 49 27 -FIXUPS: 3df98 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: 3e309 e 32 2c 45 6974 23 d 18 23 23 17 24 5 1d e 13 1f e 13 1f -FIXUPS: 44eb1 d 24 10 10 19 19 13 13 13 16 16 16 e e ffff8ef7 6af8 14 29 -FIXUPS: 44a04 27 1e 10 8 18 20 e 32 1b d 18 10 c 24 10 8 c 1c 2a 23 d 16 -FIXUPS: 44c1e 28 19 50 2a 23 fffff3cd 2c 27 3a 13 23 32 36 68 15 67 31 -FIXUPS: 4432c 16 b 4c 152 1e 51 1e 63 1dd 91 23 16 77 10 3f 23 d 14 21 -FIXUPS: 4528d e 1e 11 b fffffd52 5 5 31 10 10 19 19 13 13 13 16 16 16 e -FIXUPS: 4514b ffffede7 27 f 21 49 27 f 21 30 e 26 2fad 2f 11 2f 2c 32 5 -FIXUPS: 47129 50 40 30 e 13 1f 11 b 24 30 13 ffffdedb 5 26 10 10 19 19 -FIXUPS: 45217 13 13 16 16 16 1a46 9 37 44 d 13 24 29 d e 2a 28 46 23 16 -FIXUPS: 46ed9 18 d 24 10 10 19 19 13 13 13 16 16 16 e e 1e fffff831 67 -FIXUPS: 468df f a 4a 27 29 32 16 c b c d 91 12 1e 8 25 38 19 37 34 55 23 -FIXUPS: 46c3f c b b b b 27 fffff866 1a 39 1e 8 2f 16 c 25 12 c 13 65 23 -FIXUPS: 466c4 8 c 8 f b 4b 1e f a 4a 23 23 18 8 c 8 f fffff7ce b 21 17 -FIXUPS: 4608e 93 7 4b 3a 2a 14 c 82 14 c 25 d 2c 23 d 10 b b 8 30 2e aa -FIXUPS: 4646e 7 4b 18 11 fffff6b1 30 1a 1a 34 44 d 1f 97 23 32 23 d 10 -FIXUPS: 45dd6 43 36 16 26 33 18 15 2e 17 29 23 19 c 15 27 23 d fffff64c -FIXUPS: 45666 2c 16 b 1a 1a 30 50 13 15 16 1a 2f 3a 36 33 1f c4 3a 1c 21 -FIXUPS: 459f7 28 19 4b 43 23 1e 24 4a b 17ea 13 16 16 16 e e 1e 3e 5 ffffded6 -FIXUPS: 45339 f 21 30 16 30 20 d 7d 55 1b 10 33 20 d 40 10 8 1e 2a 30 2560 -FIXUPS: 47bbc 2d 23 3b 5 1d e 13 fffff7f2 3b 5 5 21 10 10 19 19 13 13 13 -FIXUPS: 47583 16 16 e e fffffd27 10 10 19 19 13 3e2 2c 45 1f 10 2d 33 10 -FIXUPS: 47851 18 20 23 32 23 d d 1f 1b 1c 28 23 32 23 d 15 10 1a 2c 23 -FIXUPS: 47ac2 2f 31 9e77 26 13 18 1d 5 1d e 13 1f e 13 1f e 32 e 32 e 13 -FIXUPS: 51b69 e 13 1f 13 ffff5a46 27 f 21 33 3d e 30 9c73 20 d 20 1e 2e -FIXUPS: 51499 29 117 23 3d 23 32 23 d a7 23 d 32 23 d 10 25 1a 38 4b 12 -FIXUPS: 51908 1e 13 32 d fffff625 1c 2a 23 d d d 8 d 10 d 8 c 11 15 4e -FIXUPS: 51111 34 50 34 49 17 23 32 23 d 5a 23 d d f 10 fffff93a d 2c 23 -FIXUPS: 50d07 10 b 1a 2d 23 13 c 27 23 d 10 b b 11 17 14 30 35 14 c 25 -FIXUPS: 50f1b 2c 23 d 10 b fffff8f8 41 5e 26 18 8 c 1b 9 14 21 d 61 33 -FIXUPS: 50a86 3c 47 23 13 c 27 23 d 10 b 11 17 14 28 38 14 c fffff882 21 -FIXUPS: 50529 1b c 23 d 22 20 c 12 27 26 6 26 26 18 8 c 8 f b 54 1c 32 -FIXUPS: 50798 48 11 35 14 23 20 fffff89e 10 28 9 1f 49 1e 19 1b 9 25 ae -FIXUPS: 50317 18 1b 11 1e 22 21 19 e 26 23 13 c b b b 1d 9 19 1e fffff872 -FIXUPS: 4fd48 97 2f 51 23 9 e 28 c 17 19 19 18 1a 11 11 23 23 14 33 52 -FIXUPS: 5006c 32 23 d d c 8 c 8 10 fffff92e d d d 8 10 8 c 8 f b b 31 27 -FIXUPS: 4fb3f 32 23 d d c 8 10 8 c 8 10 24 d 14 6b 4f d fffff995 32 23 -FIXUPS: 4f701 d d 8 10 8 c 8 f 8 81 31 2e 53 23 32 23 d d d 8 10 8 c 8 -FIXUPS: 4f97b 4e 23 32 fffff670 13 1c 82 d a8 d 12 49 29 2b 24 d 2f d 27 -FIXUPS: 4f372 77 26 32 23 d d c 8 f 2d 20 88 73 2e 62 fffff609 8 7d 31 -FIXUPS: 4ed66 53 23 1b d 8 c 8 f b b 2c 28 26 1b d 27 32 13 c 8 f b b 8 -FIXUPS: 4f011 35 29 fffff65f 8 10 b b b b 1d 8c 33 18 2e 2d 3c 5c 64 d -FIXUPS: 4e9ae 5b 80 6c 23 d 29 29 92 26 1b d 8 c 8 fffff4e7 b a8 6 72 72 -FIXUPS: 4e36c 2d 23 13 c b b b 1d 22 2c 42 19 16 24 10 1f 12 12 27 22 18 -FIXUPS: 4e5d2 b7 26 13 fffff6f7 11 2f 26 13 d 8 f 59 33 18 2e 2a 3c 4b -FIXUPS: 4dfea b 8 e 8 13 4a 13 18 16 13 18 d 19 27 1b b fffff7f5 c 7b 5e -FIXUPS: 4da4c 13 c b b b 1d 20 48 40 19 16 24 10 1f 16 15 32 17 1c 19 14 -FIXUPS: 4dcb0 d 1e 14 19 14 fffff84c 1f 2c d 2d 21 1d d 1a 10 27 18 b b -FIXUPS: 4d6c2 b 39 19 34 1b 65 1e 15 18 23 b 27 2b 30 21 c 28 fffff83f -FIXUPS: 4d189 e c 8 10 4b d 4b 1f 29 21 1d d 22 3c 21 1d d 1c 1e d 2d c -FIXUPS: 4d441 e 29 c 19 14 37 30 fffff814 15 1a 3a 64 19 14 23 19 14 23 -FIXUPS: 4ceaa b 9 a b 3d 45 1a 5a 11 b 9 a b 3f 45 1a 58 16 b a fffff76a -FIXUPS: 4c8a4 4f 26 16 d b 1d 33 1a 54 25 1e 9 2f c 29 d 1b 65 37 24 d -FIXUPS: 4cbee d 21 53 1a 24 d 44 d fffff7da 11 13 22 37 16 30 24 13 65 -FIXUPS: 4c664 11 24 13 29 d 24 f 15 16 24 15 13 1a b 17 1b 11 1f 21 15 -FIXUPS: 4c85c fffff922 c 54 26 d 17 13 1f c 1d 26 f 21 14 c 25 16 2d 17 -FIXUPS: 4c38b 23 c 10 18 27 23 13 c 8 f 10 58 fffff807 19 1a 1c 1d d 19 -FIXUPS: 4bdbd 66 50 5a 1d d 13 18 33 8 20 31 8 23 26 18 22 23 16 b b c -FIXUPS: 4c0ac 34 71 fffff699 1f 2c 35 16 35 d 1a 2a 12 51 1e 5d 15 a3 2d -FIXUPS: 4bade 1b 2c 32 23 d 10 8 8 4f 14 23 36 8 1a 1f fffff799 16 16 16 -FIXUPS: 4b48d e 1e 29 16 15 3b d 29 19 6 1b 20 d 16 18 15 26 4b 23 32 23 -FIXUPS: 4b71e 2e 2d 15 1b 23 fffff870 1d 38 44 1c 17 30 18 2a 6 1d 6 1b -FIXUPS: 4b1da 19 30 1b 1c 63 1a 19 11 33 33 1d 2e 10 10 19 19 13 13 fffff7fa -FIXUPS: 4ac69 2d 33 30 23 d d 14 17 1c 10 12 1b 17 25 21 18 18 20 d 14 -FIXUPS: 4aebd 19 19 3e 24 27 1c 22 17 2d fffff70f 30 12 33 23 d 38 21 12 -FIXUPS: 4a81f 1f 2c 24 d 3e 26 13 1e 23 26 2d 1f 19 2a 51 23 32 20 49 9f -FIXUPS: 4abdc 18 fffff6fb c 27 23 d 10 b b 21 23 32 23 d 1d 1e 20 40 23 -FIXUPS: 4a50e 23 d d 1b 1b 22 8 1e 16 e e 2e c7 fffff8d4 d d d 8 10 8 c -FIXUPS: 4a01f f 1f 49 53 2d 23 d d d 8 10 51 23 13 c 27 23 d 10 b 1a 22 -FIXUPS: 4a2dc fffff80a d 14 62 23 1b 40 42 26 1b d 8 c 8 f 1b 49 53 26 -FIXUPS: 49db1 23 d d c 8 f 34 4e 42 74 26 32 fffff6f8 23 13 d 2f 35 33 -FIXUPS: 497af 1e 1c 23 13 d 8 48 36 34 33 23 13 d 8 10 10 37 59 25 23 28 -FIXUPS: 49aa7 d 12 fffff726 13 d 8 10 d 18 39 37 23 34 28 17 c 2b 41 22 -FIXUPS: 4940c 2b 11 21 19 c 2b 70 23 1a 37 22 3c 6e d fffff663 23 13 d -FIXUPS: 48d24 f 13 2b 62 8 18 2f 20 32 d 3b 8 1b 2c 1a a 18 38 2c 3e f6 -FIXUPS: 49119 23 13 d 17 56 fffff6a0 30 23 3d 26 1b d 8 d b b 1e 17 34 -FIXUPS: 489e4 c 1f 51 14 f 80 1f 27 23 13 4a 23 13 5a 23 13 2c fffff76d -FIXUPS: 4845e 15 60 12 2f 35 2b 35 1d 14 5f 14 e b 2a d 10 1c 23 2d 23 -FIXUPS: 4876f d 2d 23 13 d 8 d 10 28 fffff7a2 2d 20 d 10 33 d 15 13 13 -FIXUPS: 480df 2d 2b 22 d 43 26 13 18 1f 16 b 3f 76 1a 30 32 20 48 d 14 -FIXUPS: 4841b 1250e 1e 5 1d e 13 1f e 22 e 13 fffed2c8 27 f 21 49 27 f -FIXUPS: 47db9 49 27 f 21 49 27 f 21 49 27 f 21 30 12343 32 32 13 8 8 8 -FIXUPS: 5a3b5 c 10 1a c 10 32 30 30 14 b b 2a 12 ed 1d 10 c 13 10 1e 12 -FIXUPS: 5a909 e 9 fffff31c 16 b 25 1c f 2b 14 27 26 29 16 b b b e 27 a6 -FIXUPS: 59e8c 10 c 25 122 1fa 23 16 1a 2d 23 16 1a 2d fffff3a0 34 1c 23 -FIXUPS: 59720 34 19 36 23 d d 60 1c 59 10 30 6e 26 23 16 b 25 1c 4b af -FIXUPS: 59b31 34 21 23 14 34 28 fffff619 d 2b 1c 15 16 1d 1d 1e 23 40 2d -FIXUPS: 593af d e c e c 8 22 19 22 11 33 29 35 52 11 3a 26 1c 34 fffff763 -FIXUPS: 58d99 30 17 1d 8c 10 33 2d 24 1c 24 1c 23 16 13 e 3b 1c 16 2d 14 -FIXUPS: 590a1 28 23 19 12 12 4d 31 52 23 fffff6c0 1d 14 1c 30 23 2d 23 -FIXUPS: 589e7 42 23 13 8 44 8 39 16 2d 9 83 1a 24 23 2d 23 2d 23 16 b 42 -FIXUPS: 58d49 16 fffff4d3 3e 18 10 c 25 d 3a 3a 20 32 16 20 2d 15 11 25 -FIXUPS: 58457 46 d 1b a4 64 a4 70 23 49 12c e 18 28 b fffff285 8 1e 1c -FIXUPS: 57bb5 e 4b 24 15 36 24 15 2d 24 15 16 24 15 1e 30 16 8 1eb 4a 37 -FIXUPS: 5805e 14 17 54 51 4b 40 fffff5a3 3d 30 23 a0 16 33 24 23 32 23 -FIXUPS: 5797e d 8 e 3a 18 24 15 29 24 23 32 23 d 13 c e c 8 8 8 fffff7b8 -FIXUPS: 57335 5 32 5d 23 13 28 1c 2e 14 12 10 12 45 5f 10 17 1c 10 b 26 -FIXUPS: 57628 22 1e a 25 12 1a 15 6 5b fffff5ca 2a d 13 11 38 20 38 74 -FIXUPS: 56ece 1d 5c 38 3c 3e 23 13 25 39 a 10 35 4d 23 16 b 3c 23 19 12 -FIXUPS: 57209 b2 fffff44c 11 35 21 f 58 d8 30 d 58 d 14 1d 16 31 3e 2b -FIXUPS: 56a3e 9 1a 88 30 30 30 30 20 23 16 8 52 d 8d fffff51b 14 a 19 27 -FIXUPS: 5627c 3c 6d 6a 12 78 30 23 13 8 8 e 2f 58 55 2d 23 d 10 67 2c 30 -FIXUPS: 566cc d 10 8 b fffff5a3 91 f 40 14 6d 49 e e 1e 6 1b 6 15 1f 4a -FIXUPS: 55fc7 19 c 19 46 12 14 2d d 4c d 1a 58 4f 18 27 fffff636 1f 50 -FIXUPS: 558d9 23 1b d e c e c 1b 64 22 23 19 d e 10 10 39 d 32 15 50 31 -FIXUPS: 55bf9 e 8 10 20 e fffff81a 13 13 16 16 16 e e 1e 23 19 c b b b -FIXUPS: 5557d 14 73 45 29 1c c 11 e 8 b a2 30 d 54 d 14 fffff748 11 e b -FIXUPS: 54fa3 16 b 8 b 97 9e c 47 30 d 55 d 14 b 13 35 8b d 14 4e d 46 -FIXUPS: 55402 10 10 19 19 fffff563 13 77 d 11 d 3d d 2c d cf 36 19 38 94 -FIXUPS: 54d09 11 b 74 30 30 30 23 16 8 e f 2c 29 28 25 29 fffff4e2 17 3c -FIXUPS: 54493 25 18 16 c 16 24 d6 23 26 5e 29 1c c b 8 b dd 30 d 5d 1c -FIXUPS: 548c4 39 d 71 d 11 d fffff6d3 23 19 c e 10 10 b b b 17 7 35 19 -FIXUPS: 541c6 1c 1b 14 40 27 d 40 1f 48 2a 19 d 1f 12 1a 1f 40 fffff548 -FIXUPS: 539c1 29 34 63 68 23 1b b b 18 99 99 d 44 d 13 2d 7d 71 d 29 d -FIXUPS: 53ea9 29 13 3a 10 3e d 40 63 fffff2e3 6 3f c2 d 29 2c 1e d 28 18 -FIXUPS: 5351a 3e 69 38 23 19 c b b 18 99 97 d 44 d 13 2d 7d 71 d 29 fffff551 -FIXUPS: 52ee5 23 d 38 2c 10 8 1e 23 27 23 13 18 51 b 21 22 1d 63 58 1b -FIXUPS: 531f6 33 23 17 16 20 23 1b b b fffff66f 8 39 34 2f 19 23 36 30 -FIXUPS: 52ade 3b 23 13 10 30 23 51 1c 40 1a 16 26 36 5e 2c 8a 1a 10 33 -FIXUPS: 52e7f d 13 fffff4f3 10 d 17 17 10 13 5a 5f 3b d 2c 10 86 8 2a d -FIXUPS: 52696 16 32 39 32 23 13 56 8 5c 23 74 d d 54 fffff4ae d 2c 20 d -FIXUPS: 51e5f c 8 10 21 d d 70 32 2c 7e 7b 25 17 13 17 23 4b 23 13 1b 34 -FIXUPS: 52221 7b 1a 96 31 fd9a 13 1f e 13 1f e 13 1f 13 1d 13 1d 13 1d -FIXUPS: 6226c fffef9a6 27 f 21 30 14 2d 20 d 32 20 d 23 11 b 27 fffd 14 -FIXUPS: 61df5 2e b2 14 20 e b f 16 5 1d e 13 1f 13 1d e 13 1f e 13 1f e -FIXUPS: 6207a 1f e 13 1f 11 1f fffff960 2a 23 d 1b 1e a 23 19 37 23 13 -FIXUPS: 61bb7 20 12 c 2f 25 23 13 8 10 8 1a 2a 23 d 37 2a 23 d 15 fffff8bf -FIXUPS: 616a4 23 d 28 29 18 2e a 1b 19 20 23 13 c 12 1c 23 13 8 24 13 10 -FIXUPS: 618f6 12 10 25 1f 6e 20 3f 12 fffff86e 23 10 8 30 23 d 1f 11 f -FIXUPS: 61395 20 1c 28 26 30 d d b 45 23 5d 12 8 2a 23 d 2c 12 26 28 32 -FIXUPS: 60f4b d 21 e 22 18 7 20 d 1f 25 12 5 14 13 28 5 14 13 17 2a 23 -FIXUPS: 6113c d 2a 23 d 1e 41 37 2e 20 fffff8a8 d 2d 47 d 11 2e d 2c d -FIXUPS: 60c69 e 18 2a 2a 23 d 17 20 d 1b 11 19 91 23 d 2c 12 33 2b 30 1b -FIXUPS: 60700 20 d 2b 83 d 11 53 d 44 d 31 d 2c 23 d 2d d 3f d 27 d 3a -FIXUPS: 60a45 27 d 11 2a d 11 2a d fffff815 d 1d 11 30 26 32 23 d 15 29 -FIXUPS: 60474 d 16 18 20 2a 23 32 23 d 2e 23 3a e c 34 23 d 1d 2d d fffff83e -FIXUPS: 5ff32 22 25 12 5e 6 33 6 31 23 31 44 38 23 32 23 d d 29 15 8 13 -FIXUPS: 60220 18 1a 1b 1b 3e d 1d 11 fffff7f0 19 c 34 3d 19 18 25 d 26 -FIXUPS: 5fc1c 2e 4c d 54 23 d 26 15 15 15 b 11 28 46 1c 3a d 54 23 d 13 -FIXUPS: 5f702 1f 47 d 1a 31 29 23 17 22 37 d 34 d 4f 12 40 d 2a d 15 23 -FIXUPS: 5fa09 23 13 8 8 1d 8 b 3d 28 fffff705 48 d 1f 47 d 1a 2b 75 20 -FIXUPS: 5f3b9 25 1b 30 15 1b 34 c 20 23 32 23 d d 5e 46 d 2c 1c 50 d 54 -FIXUPS: 5ed7a 55 1a 71 23 d 10 20 d 32 23 1a 23 26 1b 8 b 2d 2a d 1b 76 -FIXUPS: 5f0b1 2b d 1e 45 d 3b d 11 2a fffff6bf 30 23 d 2e 26 13 26 13 12 -FIXUPS: 5e9f0 12 27 23 18 b 4a 60 17 1d 74 23 d 28 12 30 23 d 42 2c 26 -FIXUPS: 5ed6d fffff76e 19 13 13 13 16 16 16 e e 1e 13 8 18 1d 2a 23 d 10 -FIXUPS: 5e66b b d b 11 26 4d 66 32 78 23 d 37 fffff5e3 9d 30 20 30 3c 24 -FIXUPS: 5e029 60 23 3d 20 40 120 30 e 24 31 a 34 1f 22 1e 30 30 17 34 23 -FIXUPS: 5e474 2e 10 10 fffff30e 29 3c 23 d 14 15 3d 1e 26 3a 13 1d 26 3e -FIXUPS: 5da0c 20 17 14 55 2d 60 23 75 1a af d d2 26 16 4a 53 fffff36a b -FIXUPS: 5d1f0 27 23 d 31 d 18 1c 26 13 18 2a 10 29 12 2a e 32 60 1a0 17 -FIXUPS: 5d61d 95 23 d 27 12 30 23 d fffff5ce 36 14 21 d 16 5f 33 23 2d -FIXUPS: 5cedc 2d 25 2b 23 32 23 d 2b 23 16 37 17 2d 32 29 27 23 d 22 10 -FIXUPS: 5d1b6 fffff653 26 43 47 26 23 29 4e 26 38 30 1d 43 18 19 59 26 -FIXUPS: 5cb49 27 59 23 1b 1d d 48 26 1b 21 1e e 18 1d fffff6e3 15 6 2f -FIXUPS: 5c48f 18 22 26 20 1a 26 18 22 29 32 23 d 10 12 15 34 41 e 1b 14 -FIXUPS: 5c708 12 1b 57 1e 25 15 fffff7e8 16 22 31 3d 27 26 1b 3d 32 16 -FIXUPS: 5c181 d 25 26 23 1b 18 23 27 23 d 30 23 15 15 33 26 14 26 26 26 -FIXUPS: 5ba0c 38 35 23 4d 2a 23 d 10 60 1f 25 22 30 14 26 d 1a 65 a2 3b -FIXUPS: 5be19 30 19 27 26 32 23 d 1b 54 29 fffff591 d 14 20 d d 8 f 8a -FIXUPS: 5b643 3f 17 70 e 29 12 6e 36 1c 27 23 4d 1e 20 d 1a 29 27 23 d -FIXUPS: 5b99b 4e fffff5c0 30 10 70 20 d 52 20 d 4d 27 26 2b 1d d 38 d 30 -FIXUPS: 5b2e9 24 d 6f 29 19 8 76 2f 41 d 2a d 1d fffff56f 49 27 f 21 49 -FIXUPS: 5ab99 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f -FIXUPS: 5aee9 49 27 f 833a 27 10 8 18 23 20 1b 5 5 5 23 13 1d e 13 28 10 -FIXUPS: 63422 19 19 13 13 13 16 16 16 e e ffff7547 27 f 81e4 5d 23 18 b -FIXUPS: 62cfa 33 d 6d 46 8c 23 5f d 81 23 1b 36 d 14 17 74 23 36 27 23 -FIXUPS: 6318a d 62 10 2d 5f fffff26d 37 23 32 5c d 58 d 1c 12 5d 43 3f -FIXUPS: 6278c 16 8 12 9d 23 23 14 26 5a d 99 61 20 8f 23 3e d d0 283c 27 -FIXUPS: 65497 15 10 3d d 23 26 13 18 1d 22 e 13 ffffccf8 27 f 21 33 1d -FIXUPS: 62387 2e 34 23 32 1d 3e 23 13 8 18 2c15 38 d f 1d d 13 1d d 14 -FIXUPS: 651f0 d f 1e d 10 22 1b 25 12 37 d 37 23 d 26 29 f 31 d 31 23 fffff9e8 -FIXUPS: 64e4b 32 18 e 1d d 35 13 1d d 18 24 d 15 f 1d d f 1e d 1e 21 d -FIXUPS: 65078 6 9 21 e b 19 1d fffff9d2 d 1b 20 38 26 1e 16 d 12 2a 1c -FIXUPS: 64c2c d 15 1c 21 d 20 19 1c 12 d 3d 26 32 23 d 18 11 6 a fffff866 -FIXUPS: 64693 2e 20 d 1e 42 20 d 21 20 3d 26 32 23 d 18 16 21 21 27 9 c -FIXUPS: 64936 19 30 49 3c 1f 27 20 42 fffff715 1b 20 3d 26 1e 16 10 d 2a -FIXUPS: 642fb 29 1a 36 18 20 39 22 d 2b 1d 39 19 4d d 1a 1c 36 31 6c 1c -FIXUPS: 64663 fffff6ce 18 16 13 16 2e 2a 1a 69 58 45 1b 1f e 28 32 24 d -FIXUPS: 63ffe 36 d 26 1b 1b 24 e 2d 2b 20 d 25 3b fffff6b8 1e b 18 2e 27 -FIXUPS: 6393d 21 d 40 22 34 38 44 3c 23 1e 15 24 9 1a 1d 14 51 63 23 d -FIXUPS: 63c89 20 26 32 23 c026 1f 1f 5a 30 35 22 e 13 1f e 13 ffff3658 -FIXUPS: 63549 f 21 50 e 3d 25 2f 23 29 60 15 23 1e b b 2d 1c 80 bf00 10 -FIXUPS: 6f769 35 23 d 32 35 d 27 23 13 18 22 23 32 23 d 76 22 33 23 16 -FIXUPS: 6fa6d b 36 6d 42 46 ab 1e 25 fffff51c 27 58 2d 20 20 20 20 23 21 -FIXUPS: 6f349 23 23 45 46 2f 20 23 16 b 3a 1e 31 cb 28 e 14 31 2d 2c 45 -FIXUPS: 6f739 fffff6db 10 b 8 22 1f b 1e 3e 1a b 1b 28 14 1c 26 1f b 21 -FIXUPS: 6f02a b 2b b 51 22 12 1f b 1f 23 16 18 fffff82e d 22 20 d 1c 13 -FIXUPS: 6ea5f 13 19 1e 1e 34 13 5c 1d d 3c 2b 2d 23 35 23 d 5e 27 1c b -FIXUPS: 6ed89 29 32 23 fffff723 23 d 10 b b b 38 20 d 1f 1a b 39 1d b 25 -FIXUPS: 6e6eb 5e 2d d 2d 41 44 51 1d d 1e 27 31 34 41 fffff51f d 20 10c -FIXUPS: 6e029 23 16 b c 11 37 d 26 115 2a 16 b 24 2e 2e b9 3c e 2b 16 15 -FIXUPS: 6e463 20 d 19 20 2c fffff613 1d 34 23 16 10 14 20 d 1f 1d 18 22 -FIXUPS: 6dc76 10 19 20 d 3a d 26 23 16 1c 30 2b 23 16 14 20 d 20 fffff874 -FIXUPS: 6d70e 18 4f 24 23 16 14 23 23 16 26 2b 26 23 1b b b 27 16 12 24 -FIXUPS: 6d995 23 2b 1f 17 53 2d 23 1f 20 fffff84b 33 23 16 c 14 20 d 1d -FIXUPS: 6d435 1d 1c 2a 10 25 23 3a 29 17 10 1d 2d 1d 38 23 16 b 27 1b b -FIXUPS: 6d6b6 22 fffff946 19 20 d d 17 21 23 16 c 27 23 d 18 f 13 12 f -FIXUPS: 6d1be 6 9 10 b 8 39 23 1f 20 d 28 32 25 fffff94c 24 23 1f 23 32 -FIXUPS: 6cd3d 20 d 1c 21 1d 35 23 16 c 27 1d 10 22 b 1c 26 2d 2e 6 9 b -FIXUPS: 6cf99 23 32 23 fffff765 66 d 44 55 23 d 2f d 32 25 3c d 35 2d 2e -FIXUPS: 6ca54 d 30 1e 24 d 3b d 2d 36 d 31 21 24 d 3b fffff75c 27 23 1f -FIXUPS: 6c437 20 d 26 20 d 1b 17 10 c 18 20 2c 23 1c 2c d 2e 3a 23 1c 19 -FIXUPS: 6c6b3 9 12 3b 23 3d fffff8dd 14 20 d 16 11 25 13 23 23 1f 20 d -FIXUPS: 6c193 17 f 18 28 23 1f 20 d 1d 34 23 13 10 17 1c 14 2f 21 fffff8d4 -FIXUPS: 6bccd 20 d 16 36 2f d 2f 20 28 23 13 14 20 d d 16 d 31 d f 19 19 -FIXUPS: 6bf3c 23 20 d 2a 3c 11 33 fffff8b6 25 12 1d 23 26 d 29 d d 12 9 -FIXUPS: 6ba05 18 19 f 12 1d 35 1b 25 23 3c 1c 20 d 1a 1f 11 33 18 33 fffff8d5 -FIXUPS: 6b54d 9 19 11 29 23 1b 27 32 1f 10 2c 17 31 d 13 2f 18 8 1d 1a -FIXUPS: 6b7ae 1a 1a 25 45 d 1d 29 d 11 fffff84c 23 2f 1a 1a 17 33 23 1b -FIXUPS: 6b23e 20 1a 19 3a 1d 3a d 16 e 26 19 a 18 1d 38 23 32 27 24 23 -FIXUPS: 6b4fe 23 fffff80f 3b 5e 23 1b b 27 1f 1e 22 22 2f 30 23 32 23 d -FIXUPS: 6afae 8 a 1b 17 16 1a 1a 14 12 1c f 1c 23 16 fffff6b4 43 23 1b -FIXUPS: 6a822 25 d 5b 22 47 d 39 23 d 58 1a 93 25 22 3f 23 16 2d 23 d 10 -FIXUPS: 6ac15 a4 23 16 b 12 fffff70d 16 14 22 1c 25 23 1f 20 d 1b 35 d -FIXUPS: 6a584 29 f 12 1b 23 1f 20 d 1d 35 d f 33 23 2d d 27 d fffff8ac -FIXUPS: 6a04b 1b 1a 18 d 54 23 16 2e 19 d 37 31 23 d 2b 23 32 23 d 15 11 -FIXUPS: 6a301 d 1b 23 32 1f 1a 21 21 fffff82d 48 e 2d 26 35 23 d 10 32 -FIXUPS: 69d84 32 1a 30 15 13 1c a 15 10 10 13 1a 17 12 a0 23 16 11 d 10 -FIXUPS: 6a011 fffff6ed 10 12 33 a3 11 15 1b 4e 20 1f 44 20 21 29 3e 23 -FIXUPS: 699e0 38 23 d d 11 22 60 3c 3c 1d d 31 1d d fffff575 16 43 d 1a -FIXUPS: 691f4 17 19 23 74 d 14 27 17 24 27 3e 13 45 28 10 20 d 80 13 b -FIXUPS: 69532 32 d 95 36 9e fffff566 c 1e 16 13 43 1a 5b 9e 14 1c 11 1f -FIXUPS: 68e79 30 30 30 23 41 d 38 d 31 d 39 1e 47 18 20 6 20 2c fffff68b -FIXUPS: 687d6 3d 40 e 1e 6 c 13 23 e 2c d 3c 41 19 32 24 1a 68 6 d 21 16 -FIXUPS: 68ade d 67 8 2b 49 37 c fffff59a d 10 58 d 13 39 6b f 7a 21 24 -FIXUPS: 6841c 2e 40 e 60 41 5c 32 21 1a 61 6 79 1d 13 25 42 6 6 20 fffff66b -FIXUPS: 67e25 12 14 20 d f 18 30 46 1d 1e 15 33 d 15 1c d 1e 18 30 d 22 -FIXUPS: 6808d 12 a 15 1b 29 3e 23 d fffff889 80 30 30 23 13 18 1d 1d 1d -FIXUPS: 67ba9 11 1b 2c 21 17 1e 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c -FIXUPS: 67e03 fffff776 43 d 2f 41 34 d 4a d 46 d 1a 20 d 23 16 23 2d 20 -FIXUPS: 67821 5c 2d 20 d 53 d f 23 11 1f 17 19 fffff765 10 1c 2c d 31 d -FIXUPS: 671ee 6 8 4b d 50 13 17 22 d 35 d 6f d 50 d 2f d 32 d 2f 32 30 -FIXUPS: 67531 3b fffff812 23 d 3e d 2f d 48 23 d 48 23 d 2f d 38 22 15 -FIXUPS: 67002 12 f 18 10 a 20 d 2f 30 d 1a 18 6 fffff723 30 23 1f 1f 16 -FIXUPS: 668f8 16 17 17 d 20 23 1a c e 3d 3f 7d 23 30 d 80 19 a7 d 38 23 -FIXUPS: 66cce 38 23 d fffff65e 39 14 15 d 19 18 23 31 e e 27 d 23 37 3f -FIXUPS: 66585 12 7e 34 50 40 23 1f 20 d 1d 35 d f 33 30 fffff6cc 8 c 22 -FIXUPS: 65f57 19 11 28 2d 23 d e 29 34 d 5b e 2b 23 d 15 28 15 2e 2e 23 -FIXUPS: 662aa 23 d 10 4c 2f fffff712 1b 1a 5e 1d d 2f 23 d 36 50 2d 23 -FIXUPS: 65c76 12 c 25 d 20 15 2e 20 23 67 1d d 2f 23 d 2d 2d 16 adf4 d -FIXUPS: 70cf7 22 e 13 ffff48d8 27 f 21 49 27 f 21 30 e 16 1d 2f 2c 126 -FIXUPS: 65939 2d 23 d 27 d e 1b 2b 14 15 ae6b 1a 14 24 b 13 10 21 d e 1a -FIXUPS: 709a5 d e 29 16 d 10 d b cc f e f f f f f f 46 24 33 fffff7f5 23 -FIXUPS: 7045e 23 d 1b 70 23 4d 23 32 23 d 10 1a f 22 24 2c 23 16 22 d 60 -FIXUPS: 707aa 4f 23 16 b b e 30 fffff6a3 f 21 49 27 f 21 30 e 30 2a d 5c -FIXUPS: 70129 2c 50 29 60 1b 10 22 d 32 38 27 10 8 18 1d 29 12 22 5b10 -FIXUPS: 75ee0 11 22 1f 15 10 1d d 2f e 1f 17 1c 59 23 1b d 10 d b 1a 27 -FIXUPS: 7612a 58 d 3e d 2629 d 27 ffff76cb 599b a 90 10 c 1d d 68 d 44 -FIXUPS: 75ab0 d 50 36 d 1d 94 d 2a 1e 1a 2b 26 1d d 39 3c 49 23 ab d 2d -FIXUPS: 719ca 3f 30 30 23 1b d 10 d b 1a 27 d 58 d 3e d 3b41 d 21 23 1b -FIXUPS: 75794 10 d b 2e 3d a 2b a 1c ffffbbee d 50 d 44 7a d 50 36 d 1d -FIXUPS: 716e9 d 24 2e 27 c2 d 2d 22 d 15 1e 1f 15 10 1d d 2f e 1f 17 fffff517 -FIXUPS: 70ef0 21 48 13 4d 28 b6 d b5 32 d 47 22 48 23 1b d 10 d b 2e 3d -FIXUPS: 71331 2b a 1c 1b a 90 10 c a87f d 17 21 22 e 13 1f e 32 13 1d e -FIXUPS: 7be0a 1f e 13 1f e 13 ffff4ee8 27 f 21 30 23 1b d 10 d b 38 aa35 -FIXUPS: 7b8e7 32 23 32 23 d 15 b d 27 77 23 1b b c 22 27 23 d 22 17 2d -FIXUPS: 7bbc0 d 2c 23 13 18 17 2a 27 fffff777 10 19 31 27 23 d 7e 34 23 -FIXUPS: 7b5d9 d 63 23 2d d 10 31 27 23 d 5b 23 16 31 27 23 d 17 7 25 7 -FIXUPS: 7af74 3b d 28 25 2f 23 29 27 23 d 65 19 13 11 15 2b 62 23 d 2a -FIXUPS: 7b29c 2d d 10 31 27 23 d 5b 23 2d fffff787 d 49 d 17 1d b d 8 5b -FIXUPS: 7ace8 d 54 13 2d 23 d 32 23 d 18 13 13 20 23 13 18 1d 10 29 27 -FIXUPS: 7af67 fffff58e 54 23 16 d 15 57 23 d ee 23 32 23 d 2c d 10 1f 15 -FIXUPS: 7a872 23 d 129 7e 2b 25 23 1b 1c 56 27 23 fffff566 23 20 28 35 -FIXUPS: 7a1bc 32 23 d 2c d 3b d 1a 20 d 1d 20 36 23 32 23 d 2c d 2b 20 -FIXUPS: 7a46f 1a 20 d 1d fffff7b7 2f 23 d 15 62 20 d 1a 29 59 e 22 23 2d -FIXUPS: 79eb6 1d 28 22 27 23 d 35 23 2d d 1d 28 22 27 23 d fffff6e6 3a -FIXUPS: 797fb 3a 2f 23 d 15 32 38 81 20 d 1a 38 47 1f 23 2d d 10 8 33 17 -FIXUPS: 79b58 1b 27 23 d 1e 1f 17 fffff70a 29 19 88 d 3f 1b 2a 23 d 15 -FIXUPS: 794d9 1d 22 5b 36 30 23 2d d 27 d d 20 17 20 1b 16 2e f 1f 17 fffff69a -FIXUPS: 78e4c d 13 1d 10 8 36 22 23 39 d 94 23 d 14 1f 23 56 23 d 2f 58 -FIXUPS: 791ac 5d e 29 32 23 d 15 42 fffff6b9 27 f 21 49 27 f 21 30 e 29 -FIXUPS: 78b59 2f 3e d 3f 17 23 32 20 d 13 1a 41 23 20 d 20 23 20 d 20 7043 -FIXUPS: 7fe5c 1b 5 5 18 e 13 1f e 13 1f e 13 1f e 32 f 21 30 13 1d e 13 -FIXUPS: 78872 27 f 21 49 27 f 21 6f94 1c e 30 3f 23 2c 45 1f 10 2d 30 17 -FIXUPS: 7faed d 1f 23 32 84 37 23 38 47 2e 23 38 1f 9 2c 10 31 23 fffff720 -FIXUPS: 7f539 17 25 28 2d 2f 30 23 31 2c 10 41 23 d 2a d 31 d 43 d 11 c -FIXUPS: 7f822 18 2f d 34 d 22 10 8 fffff771 21 d 2c 26 11 f 27 23 16 2f -FIXUPS: 7f19e 71 4a 6 9 f 4d 65 23 16 67 23 3e 1e 11 1d 20 2a 19 16 11 -FIXUPS: 7ecdc 20 d 2c 22 15 6 33 d 27 23 32 23 d 34 d 16 24 d 28 25 6 9 -FIXUPS: 7ef51 28 23 32 23 d 34 d 16 fffff909 6 20 d 30 22 15 33 d 31 23 -FIXUPS: 7eaa2 38 d 1e 6 20 d 30 2d 1e d 11 33 d 28 23 14 9 32 d 1e fffff7ae -FIXUPS: 7e495 2d 47 23 32 55 46 23 36 3b 18 44 23 18 2f d 1e 6 20 d 30 -FIXUPS: 7e807 11 33 d 4a 27 23 18 2f d fffff641 d d 6c 32 23 16 b 8 2a -FIXUPS: 7e0f5 24 23 44 27 22 23 3a d 28 48 23 19 20 1d d 22 2e 2b 65 23 -FIXUPS: 7e469 fffff600 e 26 32 23 d 79 31 e 26 32 23 d 7b 2f e 26 46 26 -FIXUPS: 7ddb5 13 d 14 23 32 23 d d 6a 24 23 32 fffff49c 9 c 2a 29 5c b2 -FIXUPS: 7d57e 24 34 66 c9 2d 42 30 31 21 d 26 7b 3a 21 6a 31 23 d 18 13 -FIXUPS: 7d9ff d 1c 28 fffff50b d 3c 25 29 32 23 d 3c d 58 a9 37 48 2c 23 -FIXUPS: 7d282 14 20 d 27 22 9 e 13 23 23 14 9 17 20 d fffff7e0 1c d 15 -FIXUPS: 7cc25 23 d f f 26 13 b 2f 23 d 10 a 15 2d 24 d 2f 1b 3c 23 1f 20 -FIXUPS: 7ce98 3c 25 23 1f fffff83b f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 -FIXUPS: 7c979 23 30 d 80 23 16 2e 19 30 23 d e 2f 19 12 10 fffff73f 1d -FIXUPS: 7c33e 77 20 d 47 2d 20 d e 22 d 21 1d 31 77 20 d 26 2d 16 19 8 -FIXUPS: 7c669 22 39 19 11 2b 2d 23 fffff870 49 27 f 21 30 e b b 33 20 d -FIXUPS: 7c141 16 d a 2b 19 a a a 10 b 8 16 2d 20 d 24 d e 1b 4cd8 32 23 -FIXUPS: 80ff7 19 b 2e 29 35 23 d 10 15 12 20 d 12 12 1f 1a 1d 46 1f 1d -FIXUPS: 7beac 36 27 f 21 49 27 f 4ce2 1a b 19 b 15 20 d 17 b c 1f a 15 -FIXUPS: 80db8 24 1d 20 d 1a 15 1f 20 d 1a 1f 15 12 21 14 e b fffff8b6 24 -FIXUPS: 8084c 1b 10 d 26 35 8 12 3e d 7c 29 23 1b 10 d 26 28 d 3a c a6 -FIXUPS: 80bb9 29 32 23 d 10 b 2e fffff507 69 6 51 6 98 37 23 16 29 6d 20 -FIXUPS: 80423 26 23 16 3c 1b 23 40 9d 23 1b b 28 d 11 94 1d 23 16 35 2ce2 -FIXUPS: 83486 d d 20 29 14 1c e 27 1d 82 2d 2f 18 28 12 9 9 1f 20 1b 5 -FIXUPS: 83711 18 e 13 ffffc91f 80 23 1d 5e 2e0c 2a d 2c d 48 d 21 23 16 -FIXUPS: 830c0 b9 23 16 1d d 10 d 46 11 34 3a 2f 1c 26 32 16 e 64 d 23 1c -FIXUPS: 82bb0 24 d 17 b 28 1d d 4c 11 d a 1f 23 2e 16 32 23 d 4b d 13 20 -FIXUPS: 82e49 2b 38 16 20 d 3f d 4b fffff878 c 5f 26 35 23 d 19 1c 2c 35 -FIXUPS: 829ad d 10 b 12 f d d 12 11 b 2b 2c 32 16 15 10 2d 28 39 d fffff7a3 -FIXUPS: 8234d 12 1a 23 32 23 d 14 27 2c 16 34 14 1e 1f 29 d 1d 8 11e 26 -FIXUPS: 826b3 20 d 10 59 26 35 23 d 10 fffff631 f4 26 32 16 12 57 d 11 -FIXUPS: 82036 32 1d 44 2c 3d d 10 10 2a d 10 2f 17 18 15 20 23 32 23 d -FIXUPS: 822ce e fffff651 49 53 2c 16 b b 16 17 c 6c 15 23 13 22 46 29 6d -FIXUPS: 81c48 23 d 15 11 1b 23 2d 2c 16 18 14 67 e fffff6b5 1c b 23 2e -FIXUPS: 81542 16 e b 77 13 1c b 23 34 29 32 23 d 1a e 8e 59 d 1a 1b 11 -FIXUPS: 8189f 2f 25 b 1c 2abb 1a e 19 d 17 1d 22 e 13 1f 26 3a 23 ffffcd20 -FIXUPS: 81292 27 f 21 30 1b 20 25 e b 11 26 29 16 e b 6d 2b8b 23 38 20 -FIXUPS: 840a9 15 66 15 b c 29 2c 32 23 d 10 b 52 d d 13 8 31 3a e c 42 -FIXUPS: 84385 13 b 18 e fffff930 26 32 23 d f 15 e 15 10 14 2b 22 26 1b -FIXUPS: 83e87 15 16 c 1b 2c 1b b b b 35 15 b c e 21 35 fffff8a3 17 10 8 -FIXUPS: 838f9 23 32 20 d 2c 13 61 2e 23 70 13 12 18 10 2c 20 d 3c 20 d -FIXUPS: 83c1d 2c 10 8 18 1d 1c 1b98 1d 5 1d e 13 1f 13 26 10 10 19 19 13 -FIXUPS: 8597a 13 16 16 16 e e 1e 16 ffffdd63 27 f 21 30 e b 26 3c 1cee -FIXUPS: 85590 22 d 14 18 b b 18 20 c b 8 1c 24 6 9 b 27 29 16 c b 16 25 -FIXUPS: 85777 14 37 c 20 d 1a fffff9d4 20 23 13 c 10 22 d 19 26 23 13 c -FIXUPS: 8531b 22 d 36 19 29 16 b b 16 b 4f 22 39 29 16 15 19 23 fffff977 -FIXUPS: 84ed1 15 1b 9 1d d d 28 29 16 c 27 23 d 18 f b 29 d 2d 29 19 c -FIXUPS: 8510e d 14 e 24 2b 49 9 fffff873 19 1e 19 17 12 1e 19 19 20 20 -FIXUPS: 84b67 2a 47 25 d 2f 10 80 e 26 4c 38 58 23 13 c 27 23 d 15 2c fffff735 -FIXUPS: 84609 30 10 30 11 19 3a 4c 29 16 f 25 d 17 a 3f 23 22 23 1e 19 -FIXUPS: 84919 29 16 25 d 15 a 3f 2e 19 2490 f 4b 23 1b b 25 d 27 d 2a d -FIXUPS: 87033 34 5 26 10 10 19 19 13 13 13 16 16 16 e e 1e 16 ffffd403 -FIXUPS: 845d9 2543 d 30 d 34 1f 23 32 23 d 15 b 25 d 31 d 2a d d 37 23 -FIXUPS: 86d9e 23 d 15 b 25 d 27 d 2a d fffff8d4 d 27 d 17 42 16 b 25 d -FIXUPS: 86873 d 2a d 42 16 b 25 d 27 d 2a d 42 29 32 23 d 1b e 2b d fffff74b -FIXUPS: 8623c a 9 53 37 22 1b 53 27 b 1c d2 60 1e 27 2c d 2f d 56 16 b -FIXUPS: 8663f d 27 d 5d d 2f 16 b fffff3dc d 1a 125 91 7b 2f ef d 2d 2e -FIXUPS: 85efa 2a d 13 75 b 8 96 23 d 5f 17 3b 40 b 1c 1a 1e 15 1c c 20b3 -FIXUPS: 882e2 10 19 19 13 13 13 16 16 16 e e 1e 30 12 2e e 13 1f 13 1d -FIXUPS: 884cb 2e e 13 1f 13 ffffecdb ffffffc0 ffffe852 b8 2340 b 4c 8 28 -FIXUPS: 87ee0 8 21 150 b 8 1e b 2f 11 19 28 20 d d 7 20 d d c 12 6d 4b -FIXUPS: 8826c 1d e 13 fffff6b3 23 84 f 26 40 e 20 d d 3a 25 d 18 8f 4a -FIXUPS: 87c49 16 10 37 18 15 26 13 10 a 6d 18 15 29 23 16 fffff4e0 27 f -FIXUPS: 87359 49 27 f 21 30 12 3e 52 1e 28 d 9b e 1e 22 d 11 74 32 d d -FIXUPS: 87716 11 1a 19 38 12f 4d 32b4 10 10 19 19 13 13 13 16 16 16 e e -FIXUPS: 88592 10 10 19 19 13 13 13 16 16 16 e e 1c 5 ffffebc6 27 f 21 3496 -FIXUPS: 8a75c 4d 23 33 d 4d 23 33 d 4d 23 33 d 3d 23 33 d 3d 23 33 d 4d -FIXUPS: 8ab09 20 10 8 16 5 1d e 13 fffff6af 23 41 d 1e 21 23 41 d 25 1a -FIXUPS: 8a3cc 33 d 3d 23 33 d 3d 23 33 d 4d 23 33 d 3d 23 33 d 5d 23 fffff6e1 -FIXUPS: 89e49 23 32 23 d 3b d 14 15 3a 23 32 23 d 2c 23 d 3b d 14 9 1c -FIXUPS: 8a119 23 32 23 d 3b d 14 17 fffff68c d b b 27 23 d 10 8 4b d 1a -FIXUPS: 89a13 4c 5d 8d 23 1b d 27 23 d d 36 d 5a 15 1f 54 53 1b 66 fffff573 -FIXUPS: 8936f d7 24 17 26 24 17 59 20 3f 1f 23 14 b 36 d 2d 3e 23 14 b -FIXUPS: 89721 d 34 37 23 41 d 1f 30 29 fffff160 32 16 32 16 31 20 59 4e -FIXUPS: 88b8a 1f 29 3d d 10 1a 19 358 92 29 32 16 1a 19 d8 14 7f 71 29 -FIXUPS: 89324 23 d 5876 1f 30 e 13 1f 13 1d 13 1d 13 6d 30 30 ffff9939 -FIXUPS: 886f9 f 21 30 e 32 2c 5d 36 11 2d 13 2a 1c 15 83 32 5f7b 10 1c -FIXUPS: 8e969 10 1a 9 10 20 a 26 1b 5 5 5 5 1e 13 1d e 32 e 13 1f e 13 -FIXUPS: 8eb39 e 13 1f 30 e fffffaeb 10 10 19 19 13 13 13 16 16 16 e e 1e -FIXUPS: 8e7cc 32 23 d 10 8 8 e c 12 c 12 c 10 25 18 b 14 fffffa1b 17 11 -FIXUPS: 8e362 1c 16 25 10 2d 23 d 18 1b 12 b b 26 2d 25 23 28 23 d 2c 1a -FIXUPS: 8e5d7 17 26 14 c 25 18 fffff8cf 1c 23 1b 30 49 14 32 23 16 2b 13 -FIXUPS: 8e0d8 3f 14 21 3d 29 16 b 8 8 b d 65 13 2f d 18 1d 1b 1b fffff8e8 -FIXUPS: 8dc19 23 32 23 d 10 8 8 8 e 14 12 c 12 c 11 65 17 10 17 2f 52 23 -FIXUPS: 8de92 b b 8 e 29 18 22 fffff88e 2a 23 13 8 35 d 2c 23 d 13 14 16 -FIXUPS: 8d90d 1c c 1b 3d 8c 12 30 23 d 15 59 23 13 18 18 50 1a 23 fffff7e2 -FIXUPS: 8d3d6 b 11 3d 14 2e 1f 13 11 5b 1e c 10 14 10 4c e 8 e 18 14 37 -FIXUPS: 8d64d 23 13 1e 13 91 d 8 31 fffff9bb 15 8 8 3d 19 b b 8 7 11 3d -FIXUPS: 8d269 23 17 8 7 10 6 8 d 7 16 1f 23 32 23 d 10 8 8 8 fffff9a6 23 -FIXUPS: 8cd9c 38 23 d 1b 1a 10 8 1e 2a 2a 23 d 10 27 23 d 15 14 1d 30 49 -FIXUPS: 8d04c 23 d 37 d 29 2d 23 fffff814 b 2d 4d 25 31 2e 1c 26 3e 39 -FIXUPS: 8cb1c d 30 23 16 17 23 16 c b b 13 42 23 16 c 13 38 16 2a 10 fffff850 -FIXUPS: 8c599 2d 23 d 32 23 d 21 10 8 18 1d 23 2a 23 d 16 15 34 47 2d 23 -FIXUPS: 8c846 d 9 27 34 22 23 1f 1a fffff6dc 18 26 38 1f 15 15 14 60 1e -FIXUPS: 8c171 28 23 32 23 d 10 4b 23 32 23 d 20 2a a 43 b4 51 1f 12 2e -FIXUPS: 8c56f fffff58f 1e 15 23 30 26 8c 30 46 39 15 33 ac 29 16 b 16 1d -FIXUPS: 8be73 15 21 23 35 23 d d 17 28 13 38 16 28 fffff653 23 32 23 d -FIXUPS: 8b6f0 19 23 14 31 38 20 23 2a 3c 27 29 16 b 30 d 1a 21 1d 2f 1d -FIXUPS: 8b9d3 1d 83 15 21 23 fffff5bd 10 33 3e 3e 31 10 8 1e 23 23 1c 1d -FIXUPS: 8b259 14 17 34 6b 66 3a 5d 7c 16 34 14 17 17 5e 13 39 19 24 fc5a -FIXUPS: 9b27c 1d 19 8 1f 13 1d 13 fffef9b0 36 27 f 21 49 27 f 21 49 27 -FIXUPS: 8ae78 21 49 27 f 21 49 27 f 21 33 30 ff10 26 b 26 14 14 d 7f 5 -FIXUPS: 9b079 e 13 1f e 13 1f e 13 1f e 13 1f 13 1d e 13 1f e 13 1f e 13 -FIXUPS: 9ab89 2a 23 d 1b 48 16 20 2e 1f 23 13 e 6 26 2a 23 d 10 b 26 2c -FIXUPS: 9ae0b 2e 60 e 1b 2e 14 14 14 13 fffff7d9 10 1e 14 d 1c 18 13 b -FIXUPS: 9a849 23 45 17 21 23 45 17 21 23 4b 17 1b 23 4b 17 1b 10 2d 23 -FIXUPS: 9ab36 18 13 fffff6d5 20 15 1e 23 16 40 d d e 8 3e 4b 91 d 2a d -FIXUPS: 9a4bd d a1 2f 5f 30 29 16 b b b e 2a 1f 24 fffff70a 23 d 15 10 -FIXUPS: 99e77 1d 95 23 d 30 29 32 23 d 10 b b b 14 c 15 f 15 2d 28 32 36 -FIXUPS: 9a187 74 17 15 fffff784 8e 23 16 e 24 a 40 4b 23 16 e 1f b 16 a -FIXUPS: 99c0a d 52 23 1b 14 1f 1f 12 30 23 d 2e 12 2e e fffff372 29 16 -FIXUPS: 991a3 b 43 1f 16 50 72 54 48 106 5c 14 21 19 d 7c 23 2f d aa 35 -FIXUPS: 99721 77 c b2 1b 1f d9 23 fffff19c 1c b 17 7 49 d b 10 15 76 25 -FIXUPS: 98c99 e 2b 3f 31 25 2e 39 23 b 3f 85 f 16a 29 16 b 69 1a 12 fffff544 -FIXUPS: 98668 a 18 5c 55 8 26 23 16 8 7 28 23 16 8 b e4 2b 2d d 8 1a 49 -FIXUPS: 989fc 16 32 7 49 36 12 26 fffff770 14 14 46 14 14 16 f d 1e 53 -FIXUPS: 983b7 23 b 1a c 19 b 3e 7e b 23 23 16 18 2c 1b 7 49 16 12 11 fffff792 -FIXUPS: 97dd3 37 2f 21 15 e 45 14 14 f d 53 c b 1b 38 7e b 2d 29 16 b 39 -FIXUPS: 9812e 2d 7 37 2f 21 15 11 fffff61a 23 16 e 38 1e f f f a 59 28 -FIXUPS: 979a6 28 7b 29 16 b b 64 2d 2d 7 e8 19 13 82 29 16 b 2a 32 fffff610 -FIXUPS: 973cd 1d 2f 23 13 2e 1c 10 20 29 16 b 37 e 52 c 7 16 11 c 14 d -FIXUPS: 97666 1b 5e c 16 a9 7 31 14 fffff703 23 16 18 20 19 1c d 22 3b -FIXUPS: 970b3 8 2e 11 3f 7 8 26 1c d 31 81 23 32 23 d 10 b 17 b 2c 2d fffff768 -FIXUPS: 96afd 7 c 14 f f 1f 25 13 1e 53 c b 18 14 c 19 b a7 7 46 b 2d 2a -FIXUPS: 96df6 d 10 23 2b 18 2e fffff7aa c 14 f 1f 25 13 53 c b 18 9a 7 -FIXUPS: 96840 b 2e 30 2a 23 d 10 23 2b 2e 5a 29 32 23 d 2a d 10 fffff6c8 -FIXUPS: 961bb 2e 10 8 1e 2a 16 3a 30 2a 23 d 10 14 1d a5 23 2d 23 2c 6f -FIXUPS: 96539 29 32 23 d 2a d 10 e 31 fffff77e b b 14 13 25 c 37 1f 2d -FIXUPS: 95ee2 16 b b d 14 13 36 c 35 23 32 23 d 20 23 1f 29 10 33 4a 20 -FIXUPS: 95a58 41 f 6 6a 21 20 c 1a 14 c 1a 14 c 1a 14 c 1a 14 c 1a 14 c -FIXUPS: 95ca1 19 5f 23 13 d 6 27 29 fffff7ff 14 10 34 1c 24 24 24 24 24 -FIXUPS: 95744 1a 1a 1a 1a 1a 1a 23 23 17 1a b e d 55 33 33 33 33 33 2e -FIXUPS: 95a1a fffff773 9 14 21 4f 14 48 14 38 9 14 21 68 23 d 41 23 18 -FIXUPS: 95439 29 16 e 45 14 1a 14 1a 14 1a 14 1a 14 fffff7f9 32 25 36 f -FIXUPS: 94e3c 4d e 22 23 32 23 d 10 8 14 17 54 47 2e 17 28 23 13 8 8 8 -FIXUPS: 950f0 12 27 19 14 fffff782 21 2d 23 d d 1e 17 23 1c 15 27 17 42 -FIXUPS: 94a8d 1d 1a 25 29 32 23 d 24 10 52 36 2d 1c 23 2d d ad fffff577 -FIXUPS: 94307 42 30 30 30 30 30 1f 31 23 1d 30 18 e 30 4a 30 55 1b 2a 32 -FIXUPS: 946b8 d 2c 37 d 19 25 39 d0 1c fffff5da 1d 5c 2e 10 31 23 d 38 -FIXUPS: 93fe5 d 27 b 20 4c 23 d 38 4a 10 2c 23 d 2b 2a 23 d 24 d d 10 56 -FIXUPS: 939a9 30 30 30 29 16 2d 12 19 1d 19 22 77 18 39 a 39 7 16 45 23 -FIXUPS: 93cc5 2d 3e 23 d 27 16 18 18 14 4b fffff723 e e 1e 14 14 28 15 -FIXUPS: 93605 1e 10 26 29 16 19 14 32 36 a 59 23 d d 23 f 2a 23 d ce 1a -FIXUPS: 9395b 12 fffff53f 29 20 2d 17 12 d 29 24 2c 26 15 30 15 27 75 20 -FIXUPS: 93185 20 3d 7f 15 20c 10 10 19 19 13 13 13 16 16 fffff467 17 b -FIXUPS: 92a23 18 45 a 3f 7 16 45 23 d 2d 47 23 d 12 2f 78 23 d 17 b 34 -FIXUPS: 92de2 52 17 14 12 12 17 fffff667 28 23 16 13 15 1b 64 29 16 1f -FIXUPS: 92672 b b b b b 44 11 2b 3f 31 25 2e 39 b 23 27 66 19 f 81 fffff684 -FIXUPS: 92059 14 2c 23 5d 23 13 c 2b 6 12 1b 6 12 15 1a 17 1a 42 2b 52 -FIXUPS: 92303 17 13 5e 25 b9 23 13 c 1e fffff6fc 54 23 16 e 2c 7 8 19 f -FIXUPS: 91cd7 62 23 19 1c 1a 8 27 1f 23 32 23 d 25 34 17 1a 3f 28 26 1e -FIXUPS: 92005 fffff7b9 2b 2b 13 34 13 7 a4 23 16 37 23 16 e 21 9 1f 11 -FIXUPS: 91a49 23 16 a 2d 23 16 8 3f 23 25 15 1b 7 fffff773 e 53 9 24 23 -FIXUPS: 913ef e 16 79 8 13 3c 32 51 d 19 e 8 5f 9 af 23 1d c 13 a 15 32 -FIXUPS: 91792 16 b fffff81b 23 d d e 1e c 25 15 1c 29 2d f b e 11 20 22 -FIXUPS: 9117f 22 b 1d 23 13 e 4a c e 48 23 17 1b fffff926 b 28 e 13 21 -FIXUPS: 90cd2 32 23 d 10 b b b c 12 15 d 13 21 f 3a 19 c 18 4b 2e 26 29 -FIXUPS: 90f5d 1c 23 fffff8c1 23 d 10 19 46 1f b 17 44 16 22 17 21 95 23 -FIXUPS: 90ab6 23 29 1a 12 12 b 1e 23 13 1b 19 18 27 e c fffff79b 16 1d -FIXUPS: 90429 37 29 23 31 10 36 36 23 26 1d 4a 33 23 d 30 10 16 2a 2d 10 -FIXUPS: 90756 23 d 41 d 25 1c 15 fffff785 23 d d 31 3c 23 32 1d 21 d 17 -FIXUPS: 9012c 10 38 3b 23 d 2e 1d 22 22 3b 20 12 2d 23 d 21 e 30 23 fffff6b8 -FIXUPS: 8fa82 14 13 43 41 af 23 d 26 c 1f 20 8 33 23 d 34 8d 23 32 1d 21 -FIXUPS: 8fe49 25 d 26 2e 22 3b d 33 fffff6fd 23 32 23 d 18 23 23 33 47 -FIXUPS: 8f7e9 29 16 a 16 1a b 19 3b b 17 13 2e 33 b 3e b 1e 29 32 1d 24 -FIXUPS: 8f212 17 2d 32 20 d 16 32 20 d e 1a 22 15 7a 20 d 49 23 1f 1e 23 -FIXUPS: 8f52e 23 d 10 1e 2d 23 33 19 23 d718 16 16 e e ffff2037 27 f 21 -FIXUPS: 8ee82 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 30 12 -FIXUPS: 8f1c9 d866 d b 9 41 1d 9 b 6b 15 27 2a 23 d 2c 16 b 1d b 1d 12 -FIXUPS: 9cc76 21 5 26 10 10 19 19 13 13 13 fffffa37 d 36 1d 39 20 d 27 -FIXUPS: 9c87f 1a b 1d 15 b d b 1a b 22 18 15 b 10 b 15 12 10 b 13 18 d -FIXUPS: 9ca1f fffff981 e 9 12 24 4e d 31 32 13 20 d 30 e 12 10 b 9 39 79 -FIXUPS: 9c61e 36 1b 13 20 d 2e e 12 10 b 9 fffff952 23 d 2c 23 d 10 b b -FIXUPS: 9c130 b b 26 22 40 4b 18 1e e 9 1c b 1e e 9 2b e 9 d 20 39 1e fffff9d7 -FIXUPS: 9bd6f b b b b 1c 1d 18 1e e 9 1c b 1e e 9 2b e 9 1c 20 28 25 1d -FIXUPS: 9bf74 50 22 1f d 15 22 fffff929 19 19 19 1d 15 19 b c 3d 1d 22 -FIXUPS: 9bae9 2e 37 1e 32 15 10 10 10 10 1a 44 b b 42 2a 23 d 2c 23 fffff8e5 -FIXUPS: 9b647 3e 2c 25 18 1e 14 54 13 15 1a 2f 2c 1f 1f b c 1d b 10 10 -FIXUPS: 9b8db e c 10 10 d 10 b c 10 fffffac0 2a 20 d 10 b b b b 1b 10 10 -FIXUPS: 9b4f7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 diff --git a/kauai/OBJ/WIND/CHELPDMP.MAP b/kauai/OBJ/WIND/CHELPDMP.MAP deleted file mode 100644 index 53aa1d45..00000000 --- a/kauai/OBJ/WIND/CHELPDMP.MAP +++ /dev/null @@ -1,1636 +0,0 @@ - chelpdmp - - Timestamp is 3070be37 (Mon Oct 02 21:38:15 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0002bd44H .text CODE - 0002:00000000 00001bd0H .bss DATA - 0003:00000000 000004e9H .rdata DATA - 0004:00000000 00003de4H .data DATA - 0004:00003de4 00000004H .CRT$XCA DATA - 0004:00003de8 0000006cH .CRT$XCU DATA - 0004:00003e54 00000004H .CRT$XCZ DATA - 0004:00003e58 00000004H .CRT$XIA DATA - 0004:00003e5c 00000008H .CRT$XIC DATA - 0004:00003e64 00000004H .CRT$XIZ DATA - 0004:00003e68 00000004H .CRT$XPA DATA - 0004:00003e6c 00000004H .CRT$XPX DATA - 0004:00003e70 00000004H .CRT$XPZ DATA - 0004:00003e74 00000004H .CRT$XTA DATA - 0004:00003e78 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000ccH .idata$4 DATA - 0005:00000130 000000ccH .idata$5 DATA - 0005:000001fc 00000360H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000690H .debug$F DATA - 0007:000009d0 00000000H .debug$G DATA - 0007:000009d0 00000035H .debug$H DATA - 0007:fffc7000 00000000H .debug$P DATA - 0007:fffc7000 00000000H .debug$S DATA - 0007:fffc7000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:00000510 ?PfilNext@FIL@@QAEPAV1@XZ 00401510 f util.obj - 0001:00000540 ?PbllNext@BLL@@QAEPAV1@XZ 00401540 f util.obj - 0001:00000570 ?PcflNext@CFL@@QAEPAV1@XZ 00401570 f util.obj - 0001:000005a0 ?FWouldBe@BLL@@SGHJ@Z 004015a0 f base.obj - 0001:000005e0 ?FIs@BLL@@UAEHJ@Z 004015e0 f base.obj - 0001:00000610 ?Cls@BLL@@UAEJXZ 00401610 f base.obj - 0001:00000640 ?Cls@BASE@@UAEJXZ 00401640 f base.obj - 0001:00000670 ?FIs@BASE@@UAEHJ@Z 00401670 f base.obj - 0001:000006b0 ?FWouldBe@BASE@@SGHJ@Z 004016b0 f base.obj - 0001:000006e0 ??0BASE@@QAE@XZ 004016e0 f base.obj - 0001:000007c0 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 004017c0 f base.obj - 0001:000007e0 ?_Enter@@YGXXZ 004017e0 f base.obj - 0001:00000800 ?_Leave@@YGXXZ 00401800 f base.obj - 0001:00000820 ?AddRef@BASE@@UAEXXZ 00401820 f base.obj - 0001:000008b0 ?Release@BASE@@UAEXXZ 004018b0 f base.obj - 0001:00000960 ??2BASE@@SGPAXIPADJ@Z 00401960 f base.obj - 0001:00000b30 ?Debugger@@YGXXZ 00401b30 f base.obj - 0001:00000b50 ??3BASE@@SGXPAX@Z 00401b50 f base.obj - 0001:00000bd0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401bd0 f base.obj - 0001:00000bf0 ?AssertValid@BASE@@QAEXK@Z 00401bf0 f base.obj - 0001:00000d20 ?MarkMemStub@BASE@@QAEXXZ 00401d20 f base.obj - 0001:00000e00 ?MarkMem@BASE@@UAEXXZ 00401e00 f base.obj - 0001:00000e50 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401e50 f base.obj - 0001:00001040 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402040 f base.obj - 0001:000010c0 ?_UnlinkDoi@@YGXPAUDOI@@@Z 004020c0 f base.obj - 0001:00001140 ??0BLL@@QAE@XZ 00402140 f base.obj - 0001:00001190 ??1BLL@@UAE@XZ 00402190 f base.obj - 0001:000011e0 ?_Attach@BLL@@IAEXPAX@Z 004021e0 f base.obj - 0001:00001380 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402380 f base.obj - 0001:000013b0 ?AssertValid@BLL@@QAEXK@Z 004023b0 f base.obj - 0001:000014b0 ??_EBLL@@UAEPAXI@Z 004024b0 f base.obj - 0001:000014b0 ??_GBLL@@UAEPAXI@Z 004024b0 f base.obj - 0001:000014f0 ??0STN@@QAE@XZ 004024f0 f base.obj - 0001:00001550 ?PvAddBv@@YGPAXPAXJ@Z 00402550 f base.obj - 0001:00001570 ?PvSubBv@@YGPAXPAXJ@Z 00402570 f base.obj - 0001:00001590 ?Enter@MUTX@@QAEXXZ 00402590 f base.obj - 0001:000015c0 ?Leave@MUTX@@QAEXXZ 004025c0 f base.obj - 0001:000015f0 ?LwThreadCur@@YGJXZ 004025f0 f base.obj - 0001:00001610 ?FillPb@@YGXPAXJE@Z 00402610 f utilcopy.obj - 0001:00001670 ?ClearPb@@YGXPAXJ@Z 00402670 f utilcopy.obj - 0001:000016c0 ?ReversePb@@YGXPAXJ@Z 004026c0 f utilcopy.obj - 0001:00001720 ?SwapBlocks@@YGXPAXJJ@Z 00402720 f utilcopy.obj - 0001:000017c0 ?FEqualRgb@@YGHPAX0J@Z 004027c0 f utilcopy.obj - 0001:00001840 ?CbEqualRgb@@YGJPAX0J@Z 00402840 f utilcopy.obj - 0001:000018d0 ?CopyPb@@YGXPAX0J@Z 004028d0 f utilcopy.obj - 0001:00001970 ?BltPb@@YGXPAX0J@Z 00402970 f utilcopy.obj - 0001:00001a50 ?FWouldBe@ERS@@SGHJ@Z 00402a50 f utilerro.obj - 0001:00001a90 ?FIs@ERS@@UAEHJ@Z 00402a90 f utilerro.obj - 0001:00001ac0 ?Cls@ERS@@UAEJXZ 00402ac0 f utilerro.obj - 0001:00001af0 ??0ERS@@QAE@XZ 00402af0 f utilerro.obj - 0001:00001b40 ?Push@ERS@@UAEXJPADJ@Z 00402b40 f utilerro.obj - 0001:00001d00 ?FPop@ERS@@UAEHPAJ@Z 00402d00 f utilerro.obj - 0001:00001e00 ?Clear@ERS@@UAEXXZ 00402e00 f utilerro.obj - 0001:00001e70 ?Cerc@ERS@@UAEJXZ 00402e70 f utilerro.obj - 0001:00001ec0 ?FIn@ERS@@UAEHJ@Z 00402ec0 f utilerro.obj - 0001:00001f90 ?ErcGet@ERS@@UAEJJ@Z 00402f90 f utilerro.obj - 0001:00002030 ?Flush@ERS@@UAEXJ@Z 00403030 f utilerro.obj - 0001:00002120 ?FIn@@YGHJJJ@Z 00403120 f utilerro.obj - 0001:00002160 ?AssertValid@ERS@@QAEXK@Z 00403160 f utilerro.obj - 0001:00002200 ??1ERS@@UAE@XZ 00403200 f utilerro.obj - 0001:00002230 ??_EERS@@UAEPAXI@Z 00403230 f utilerro.obj - 0001:00002230 ??_GERS@@UAEPAXI@Z 00403230 f utilerro.obj - 0001:00002290 ?LwRoundToward@@YGJJJ@Z 00403290 f utilint.obj - 0001:00002300 ?LwMul@@YGJJJ@Z 00403300 f utilint.obj - 0001:00002370 ?AssertIn@@YGXJJJ@Z 00403370 f utilint.obj - 0001:000023f0 ?SwapBytesBom@@YGXPAXK@Z 004033f0 f utilint.obj - 0001:000024d0 ?LwMin@@YGJJJ@Z 004034d0 f utilint.obj - 0001:00002500 ?SwapBytesRgsw@@YGXPAXJ@Z 00403500 f utilint.obj - 0001:00002590 ?SwapBytesRglw@@YGXPAXJ@Z 00403590 f utilint.obj - 0001:00002640 ?AssertBomRglw@@YGXKJ@Z 00403640 f utilint.obj - 0001:00002700 ?LwMulDiv@@YGJJJJ@Z 00403700 f utilint.obj - 0001:00002750 ?LwMax@@YGJJJ@Z 00403750 f utilint.obj - 0001:00002780 ?LwBound@@YGJJJJ@Z 00403780 f utilint.obj - 0001:000027c0 ??0USAC@@QAE@XZ 004037c0 f utilint.obj - 0001:00002820 ?FReadable@DVER@@QAEHFF@Z 00403820 f utilint.obj - 0001:000028e0 ??_GUSAC@@UAEPAXI@Z 004038e0 f utilint.obj - 0001:000028e0 ??_EUSAC@@UAEPAXI@Z 004038e0 f utilint.obj - 0001:00002920 ?TsCurrentSystem@@YGKXZ 00403920 f utilint.obj - 0001:00002940 ?FFail@DMAGL@@QAEHXZ 00403940 f utilmem.obj - 0001:000029b0 ?Allocate@DMAGL@@QAEXJ@Z 004039b0 f utilmem.obj - 0001:00002a40 ?Resize@DMAGL@@QAEXJ@Z 00403a40 f utilmem.obj - 0001:00002aa0 ?Free@DMAGL@@QAEXJ@Z 00403aa0 f utilmem.obj - 0001:00002ae0 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00403ae0 f utilmem.obj - 0001:00002e30 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00403e30 f utilmem.obj - 0001:00003240 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00404240 f utilmem.obj - 0001:000032e0 ?_LinkMbh@@YGXPAUMBH@@@Z 004042e0 f utilmem.obj - 0001:00003380 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00404380 f utilmem.obj - 0001:00003520 ?_AssertMbh@@YGXPAUMBH@@@Z 00404520 f utilmem.obj - 0001:00003760 ?AssertPvAlloced@@YGXPAXJ@Z 00404760 f utilmem.obj - 0001:00003820 ?MarkPv@@YGXPAX@Z 00404820 f utilmem.obj - 0001:00003890 ?FWouldBe@RND@@SGHJ@Z 00404890 f utilrnd.obj - 0001:000038d0 ?FIs@RND@@UAEHJ@Z 004048d0 f utilrnd.obj - 0001:00003900 ?Cls@RND@@UAEJXZ 00404900 f utilrnd.obj - 0001:00003930 ?FWouldBe@SFL@@SGHJ@Z 00404930 f utilrnd.obj - 0001:00003970 ?FIs@SFL@@UAEHJ@Z 00404970 f utilrnd.obj - 0001:000039a0 ?Cls@SFL@@UAEJXZ 004049a0 f utilrnd.obj - 0001:000039d0 ??0RND@@QAE@K@Z 004049d0 f utilrnd.obj - 0001:00003a60 ?LwNext@RND@@UAEJJ@Z 00404a60 f utilrnd.obj - 0001:00003b30 ??0SFL@@QAE@K@Z 00404b30 f utilrnd.obj - 0001:00003bc0 ??1SFL@@UAE@XZ 00404bc0 f utilrnd.obj - 0001:00003c30 ?AssertValid@SFL@@QAEXK@Z 00404c30 f utilrnd.obj - 0001:00003d00 ?MarkMem@SFL@@UAEXXZ 00404d00 f utilrnd.obj - 0001:00003d60 ?Shuffle@SFL@@QAEXJ@Z 00404d60 f utilrnd.obj - 0001:00003e70 ?_ShuffleCore@SFL@@IAEXXZ 00404e70 f utilrnd.obj - 0001:00003f60 ?_FEnsureHq@SFL@@IAEHJ@Z 00404f60 f utilrnd.obj - 0001:000040e0 ?LwNext@SFL@@UAEJJ@Z 004050e0 f utilrnd.obj - 0001:00004240 ??_ERND@@UAEPAXI@Z 00405240 f utilrnd.obj - 0001:00004240 ??_GRND@@UAEPAXI@Z 00405240 f utilrnd.obj - 0001:00004280 ??_GSFL@@UAEPAXI@Z 00405280 f utilrnd.obj - 0001:00004280 ??_ESFL@@UAEPAXI@Z 00405280 f utilrnd.obj - 0001:000042c0 ??4STN@@QAEAAV0@AAV0@@Z 004052c0 f utilstr.obj - 0001:000043b0 ?SetRgch@STN@@QAEXPADJ@Z 004053b0 f utilstr.obj - 0001:00004490 ?SetSzs@STN@@QAEXPAD@Z 00405490 f utilstr.obj - 0001:000044f0 ?Delete@STN@@QAEXJJ@Z 004054f0 f utilstr.obj - 0001:00004650 ?FAppendRgch@STN@@QAEHPADJ@Z 00405650 f utilstr.obj - 0001:00004750 ?FInsertRgch@STN@@QAEHJPADJ@Z 00405750 f utilstr.obj - 0001:00004900 ?FEqualRgch@STN@@QAEHPADJ@Z 00405900 f utilstr.obj - 0001:000049a0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 004059a0 f utilstr.obj - 0001:00004a30 ?CbData@STN@@QAEJXZ 00405a30 f utilstr.obj - 0001:00004a80 ?GetData@STN@@QAEXPAX@Z 00405a80 f utilstr.obj - 0001:00004b10 ?FSetData@STN@@QAEHPAXJPAJ@Z 00405b10 f utilstr.obj - 0001:00004fd0 ?GetSzs@STN@@QAEXPAD@Z 00405fd0 f utilstr.obj - 0001:00005040 ?FFormatSz@STN@@QAAHPADZZ 00406040 f utilstr.obj - 0001:000050a0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004060a0 f utilstr.obj - 0001:00005900 ?CbCharOsk@@YGJF@Z 00406900 f utilstr.obj - 0001:00005990 ?Prgch@STN@@QAEPADXZ 00406990 f utilstr.obj - 0001:000059e0 ?Psz@STN@@QAEPADXZ 004069e0 f utilstr.obj - 0001:00005a30 ?FExpandControls@STN@@QAEHXZ 00406a30 f utilstr.obj - 0001:00005c60 ?Cch@STN@@QAEJXZ 00406c60 f utilstr.obj - 0001:00005cb0 ?SetNil@STN@@QAEXXZ 00406cb0 f utilstr.obj - 0001:00005d10 ?SetSz@STN@@QAEXPAD@Z 00406d10 f utilstr.obj - 0001:00005d50 ?AssertValid@STN@@QAEXK@Z 00406d50 f utilstr.obj - 0001:00005e40 ?FValidSt@@YGHPAD@Z 00406e40 f utilstr.obj - 0001:00005ef0 ?PrgchSt@@YGPADPAD@Z 00406ef0 f utilstr.obj - 0001:00005f10 ?CchSt@@YGJPAD@Z 00406f10 f utilstr.obj - 0001:00005f40 ?CchSz@@YGJPAD@Z 00406f40 f utilstr.obj - 0001:00005fe0 ?FcmpCompareRgch@@YGKPADJ0J@Z 00406fe0 f utilstr.obj - 0001:00006120 ?FEqualUserRgch@@YGHPADJ0JK@Z 00407120 f utilstr.obj - 0001:00006290 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00407290 f utilstr.obj - 0001:000063a0 ?UpperRgchs@@YGXPADJ@Z 004073a0 f utilstr.obj - 0001:00006460 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00407460 f utilstr.obj - 0001:00006610 ?TranslateRgch@@YGXPADJFH@Z 00407610 f utilstr.obj - 0001:00006700 ?AssertOsk@@YGXF@Z 00407700 f utilstr.obj - 0001:000067b0 ?AssertSt@@YGXPAD@Z 004077b0 f utilstr.obj - 0001:00006800 ?AssertSz@@YGXPAD@Z 00407800 f utilstr.obj - 0001:00006850 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00407850 f memwin.obj - 0001:00006930 ?FResizePhq@@YGHPAPAXJKJ@Z 00407930 f memwin.obj - 0001:00006a60 ?FreePhq@@YGXPAPAX@Z 00407a60 f memwin.obj - 0001:00006b10 ?CbOfHq@@YGJPAX@Z 00407b10 f memwin.obj - 0001:00006b50 ?QvFromHq@@YGPAXPAX@Z 00407b50 f memwin.obj - 0001:00006b70 ?PvLockHq@@YGPAXPAX@Z 00407b70 f memwin.obj - 0001:00006bf0 ?UnlockHq@@YGXPAX@Z 00407bf0 f memwin.obj - 0001:00006c70 ?AssertHq@@YGXPAX@Z 00407c70 f memwin.obj - 0001:00006d60 ?MarkHq@@YGXPAX@Z 00407d60 f memwin.obj - 0001:00006da0 ?AssertPvCb@@YGXPAXJ@Z 00407da0 f memwin.obj - 0001:00006e30 ?FWouldBe@CFL@@SGHJ@Z 00407e30 f chunk.obj - 0001:00006e70 ?FIs@CFL@@UAEHJ@Z 00407e70 f chunk.obj - 0001:00006ea0 ?Cls@CFL@@UAEJXZ 00407ea0 f chunk.obj - 0001:00006ed0 ?FWouldBe@CGE@@SGHJ@Z 00407ed0 f chunk.obj - 0001:00006f10 ?FIs@CGE@@UAEHJ@Z 00407f10 f chunk.obj - 0001:00006f40 ?Cls@CGE@@UAEJXZ 00407f40 f chunk.obj - 0001:00006f70 ??0CFL@@AAE@XZ 00407f70 f chunk.obj - 0001:00006fe0 ??1CFL@@EAE@XZ 00407fe0 f chunk.obj - 0001:00007170 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00408170 f chunk.obj - 0001:00007400 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00408400 f chunk.obj - 0001:00007450 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00408450 f chunk.obj - 0001:00007580 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 00408580 f chunk.obj - 0001:000075d0 ?SetCb@CRPSM@@QAEXJ@Z 004085d0 f chunk.obj - 0001:00007610 ?Grfcrp@CRPSM@@QAEKK@Z 00408610 f chunk.obj - 0001:00007640 ?ClearGrfcrp@CRPSM@@QAEXK@Z 00408640 f chunk.obj - 0001:00007670 ?SetGrfcrp@CRPSM@@QAEXK@Z 00408670 f chunk.obj - 0001:000076a0 ?FSetGrfcfl@CFL@@QAEHKK@Z 004086a0 f chunk.obj - 0001:000077f0 ?Release@CFL@@UAEXXZ 004087f0 f chunk.obj - 0001:000078d0 ?AssertValid@CFL@@QAEXK@Z 004088d0 f chunk.obj - 0001:000086a0 ?CbRgch@CRPSM@@QAEJJ@Z 004096a0 f chunk.obj - 0001:000086d0 ?BvRgch@CRPSM@@QAEJXZ 004096d0 f chunk.obj - 0001:00008700 ?Cb@CRPSM@@QAEJXZ 00409700 f chunk.obj - 0001:00008730 ?SuspendAssertValid@@YGXXZ 00409730 f chunk.obj - 0001:00008780 ?ResumeAssertValid@@YGXXZ 00409780 f chunk.obj - 0001:000087b0 ?ElError@FIL@@QAEJXZ 004097b0 f chunk.obj - 0001:000087e0 ?GrffilCur@FIL@@QAEKXZ 004097e0 f chunk.obj - 0001:00008810 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 00409810 f chunk.obj - 0001:00008870 ?IvMac@GRPB@@QAEJXZ 00409870 f chunk.obj - 0001:000088a0 ?FPush@GL@@QAEHPAX@Z 004098a0 f chunk.obj - 0001:000088e0 ?MarkMem@CFL@@UAEXXZ 004098e0 f chunk.obj - 0001:000089b0 ?_TValidIndex@CFL@@AAEHXZ 004099b0 f chunk.obj - 0001:00008ee0 ?_FReadIndex@CFL@@AAEHXZ 00409ee0 f chunk.obj - 0001:00009bf0 ?BvRgch@CRPBG@@QAEJXZ 0040abf0 f chunk.obj - 0001:00009c20 ?CbRgch@CRPBG@@QAEJJ@Z 0040ac20 f chunk.obj - 0001:00009c50 ?Grfcrp@CRPBG@@QAEKK@Z 0040ac50 f chunk.obj - 0001:00009c80 ?ClearGrfcrp@CRPBG@@QAEXK@Z 0040ac80 f chunk.obj - 0001:00009cb0 ?SetGrfcrp@CRPBG@@QAEXK@Z 0040acb0 f chunk.obj - 0001:00009ce0 ?Cb@CRPBG@@QAEJXZ 0040ace0 f chunk.obj - 0001:00009d10 ?Lock@GRPB@@QAEXXZ 0040ad10 f chunk.obj - 0001:00009d50 ?Unlock@GRPB@@QAEXXZ 0040ad50 f chunk.obj - 0001:00009d90 ?CbFixed@GGB@@QAEJXZ 0040ad90 f chunk.obj - 0001:00009dc0 ?_ReadFreeMap@CFL@@AAEXXZ 0040adc0 f chunk.obj - 0001:00009fb0 ?CbEntry@GLB@@QAEJXZ 0040afb0 f chunk.obj - 0001:00009fe0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 0040afe0 f chunk.obj - 0001:0000a160 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0040b160 f chunk.obj - 0001:0000a2b0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0040b2b0 f chunk.obj - 0001:0000a390 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0040b390 f chunk.obj - 0001:0000a460 ?_FCreateExtra@CFL@@AAEHXZ 0040b460 f chunk.obj - 0001:0000a540 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0040b540 f chunk.obj - 0001:0000a880 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0040b880 f chunk.obj - 0001:0000aa20 ?FWrite@FLO@@QAEHPAX@Z 0040ba20 f chunk.obj - 0001:0000aa60 ?_FreeFpCb@CFL@@AAEXHJJ@Z 0040ba60 f chunk.obj - 0001:0000b020 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 0040c020 f chunk.obj - 0001:0000b130 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 0040c130 f chunk.obj - 0001:0000b2b0 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 0040c2b0 f chunk.obj - 0001:0000b490 ?Ckid@CFL@@QAEJKK@Z 0040c490 f chunk.obj - 0001:0000b550 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 0040c550 f chunk.obj - 0001:0000b730 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 0040c730 f chunk.obj - 0001:0000b7e0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 0040c7e0 f chunk.obj - 0001:0000ba20 ??0CGE@@QAE@XZ 0040ca20 f chunk.obj - 0001:0000baa0 ??1CGE@@UAE@XZ 0040caa0 f chunk.obj - 0001:0000bb30 ?AssertValid@CGE@@QAEXK@Z 0040cb30 f chunk.obj - 0001:0000bc60 ?MarkMem@CGE@@UAEXXZ 0040cc60 f chunk.obj - 0001:0000bcd0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 0040ccd0 f chunk.obj - 0001:0000be20 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 0040ce20 f chunk.obj - 0001:0000c260 ??4FNI@@QAEAAV0@AAV0@@Z 0040d260 f chunk.obj - 0001:0000c2b0 ??_GCFL@@EAEPAXI@Z 0040d2b0 f chunk.obj - 0001:0000c2b0 ??_ECFL@@EAEPAXI@Z 0040d2b0 f chunk.obj - 0001:0000c2f0 ??1FNI@@UAE@XZ 0040d2f0 f chunk.obj - 0001:0000c320 ??_ECGE@@UAEPAXI@Z 0040d320 f chunk.obj - 0001:0000c320 ??_GCGE@@UAEPAXI@Z 0040d320 f chunk.obj - 0001:0000c360 ??4BASE@@QAEAAV0@ABV0@@Z 0040d360 f chunk.obj - 0001:0000c3a0 ?FWouldBe@CODM@@SGHJ@Z 0040d3a0 f codec.obj - 0001:0000c3e0 ?FIs@CODM@@UAEHJ@Z 0040d3e0 f codec.obj - 0001:0000c410 ?Cls@CODM@@UAEJXZ 0040d410 f codec.obj - 0001:0000c440 ?FWouldBe@CODC@@SGHJ@Z 0040d440 f codec.obj - 0001:0000c480 ?FIs@CODC@@UAEHJ@Z 0040d480 f codec.obj - 0001:0000c4b0 ?Cls@CODC@@UAEJXZ 0040d4b0 f codec.obj - 0001:0000c4e0 ??0CODM@@QAE@PAVCODC@@J@Z 0040d4e0 f codec.obj - 0001:0000c5e0 ??1CODM@@UAE@XZ 0040d5e0 f codec.obj - 0001:0000c700 ?AssertValid@CODM@@QAEXK@Z 0040d700 f codec.obj - 0001:0000c7d0 ?MarkMem@CODM@@UAEXXZ 0040d7d0 f codec.obj - 0001:0000c8c0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 0040d8c0 f codec.obj - 0001:0000c9d0 ?FCanDo@CODM@@UAEHJH@Z 0040d9d0 f codec.obj - 0001:0000ca40 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 0040da40 f codec.obj - 0001:0000cb70 ?LwFromBytes@@YGJEEEE@Z 0040db70 f codec.obj - 0001:0000cbb0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 0040dbb0 f codec.obj - 0001:0000ccf0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 0040dcf0 f codec.obj - 0001:0000cee0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0040dee0 f codec.obj - 0001:0000d1f0 ?B0Lw@@YGEJ@Z 0040e1f0 f codec.obj - 0001:0000d210 ?B1Lw@@YGEJ@Z 0040e210 f codec.obj - 0001:0000d230 ?B2Lw@@YGEJ@Z 0040e230 f codec.obj - 0001:0000d250 ?B3Lw@@YGEJ@Z 0040e250 f codec.obj - 0001:0000d290 ??_ECODM@@UAEPAXI@Z 0040e290 f codec.obj - 0001:0000d290 ??_GCODM@@UAEPAXI@Z 0040e290 f codec.obj - 0001:0000d2d0 ?FWouldBe@KCDC@@SGHJ@Z 0040e2d0 f codkauai.obj - 0001:0000d310 ?FIs@KCDC@@UAEHJ@Z 0040e310 f codkauai.obj - 0001:0000d340 ?Cls@KCDC@@UAEJXZ 0040e340 f codkauai.obj - 0001:0000d370 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0040e370 f codkauai.obj - 0001:0000d4d0 ?Set@BITA@@QAEXPAXJ@Z 0040e4d0 f codkauai.obj - 0001:0000d530 ?FWriteBits@BITA@@QAEHKJ@Z 0040e530 f codkauai.obj - 0001:0000d6d0 ?FWriteLogEncoded@BITA@@QAEHK@Z 0040e6d0 f codkauai.obj - 0001:0000d7c0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0040e7c0 f codkauai.obj - 0001:0000df80 ?Ibit@BITA@@QAEJXZ 0040ef80 f codkauai.obj - 0001:0000dfb0 ?Ib@BITA@@QAEJXZ 0040efb0 f codkauai.obj - 0001:0000dfe0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0040efe0 f codkauai.obj - 0001:00011cc0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00412cc0 f codkauai.obj - 0001:000125e0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 004135e0 f codkauai.obj - 0001:00014e30 ?FWouldBe@FIL@@SGHJ@Z 00415e30 f file.obj - 0001:00014e70 ?FIs@FIL@@UAEHJ@Z 00415e70 f file.obj - 0001:00014ea0 ?Cls@FIL@@UAEJXZ 00415ea0 f file.obj - 0001:00014ed0 ?FWouldBe@BLCK@@SGHJ@Z 00415ed0 f file.obj - 0001:00014f10 ?FIs@BLCK@@UAEHJ@Z 00415f10 f file.obj - 0001:00014f40 ?Cls@BLCK@@UAEJXZ 00415f40 f file.obj - 0001:00014f70 ?FWouldBe@MSFIL@@SGHJ@Z 00415f70 f file.obj - 0001:00014fb0 ?FIs@MSFIL@@UAEHJ@Z 00415fb0 f file.obj - 0001:00014fe0 ?Cls@MSFIL@@UAEJXZ 00415fe0 f file.obj - 0001:00015010 ??0FIL@@IAE@PAVFNI@@K@Z 00416010 f file.obj - 0001:00015100 ??1FIL@@MAE@XZ 00416100 f file.obj - 0001:00015170 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00416170 f file.obj - 0001:00015390 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00416390 f file.obj - 0001:00015560 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00416560 f file.obj - 0001:00015680 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00416680 f file.obj - 0001:000157d0 ?FSetGrffil@FIL@@QAEHKK@Z 004167d0 f file.obj - 0001:000158e0 ?Release@FIL@@UAEXXZ 004168e0 f file.obj - 0001:000159c0 ?SetTemp@FIL@@QAEXH@Z 004169c0 f file.obj - 0001:00015a40 ?ShutDown@FIL@@SGXXZ 00416a40 f file.obj - 0001:00015b00 ?AssertValid@FIL@@QAEXK@Z 00416b00 f file.obj - 0001:00015c30 ?_FRangeIn@@YGHJJJ@Z 00416c30 f file.obj - 0001:00015c90 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00416c90 f file.obj - 0001:00015d60 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00416d60 f file.obj - 0001:00015e30 ?FCopy@FLO@@QAEHPAU1@@Z 00416e30 f file.obj - 0001:000160b0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 004170b0 f file.obj - 0001:000161c0 ?AssertValid@FLO@@QAEXK@Z 004171c0 f file.obj - 0001:000162c0 ??0BLCK@@QAE@PAUFLO@@H@Z 004172c0 f file.obj - 0001:00016400 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00417400 f file.obj - 0001:00016540 ??0BLCK@@QAE@XZ 00417540 f file.obj - 0001:000165e0 ??1BLCK@@UAE@XZ 004175e0 f file.obj - 0001:00016640 ?Set@BLCK@@QAEXPAUFLO@@H@Z 00417640 f file.obj - 0001:00016760 ?SetHq@BLCK@@QAEXPAPAXH@Z 00417760 f file.obj - 0001:00016840 ?Free@BLCK@@QAEXXZ 00417840 f file.obj - 0001:000168f0 ?HqFree@BLCK@@QAEPAXH@Z 004178f0 f file.obj - 0001:00016aa0 ?Cb@BLCK@@QAEJH@Z 00417aa0 f file.obj - 0001:00016b30 ?FReadHq@FLO@@QAEHPAPAX@Z 00417b30 f file.obj - 0001:00016b70 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00417b70 f file.obj - 0001:00016d10 ?FWouldBe@MSNK@@SGHJ@Z 00417d10 f file.obj - 0001:00016d50 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00417d50 f file.obj - 0001:00016ef0 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 00417ef0 f file.obj - 0001:000170f0 ?FPacked@BLCK@@QAEHPAJ@Z 004180f0 f file.obj - 0001:00017190 ?FUnpackData@BLCK@@QAEHXZ 00418190 f file.obj - 0001:000173c0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 004183c0 f file.obj - 0001:000173f0 ?AssertValid@BLCK@@QAEXK@Z 004183f0 f file.obj - 0001:00017620 ?MarkMem@BLCK@@UAEXXZ 00418620 f file.obj - 0001:00017660 ??0MSFIL@@QAE@PAVFIL@@@Z 00418660 f file.obj - 0001:00017700 ??1MSFIL@@UAE@XZ 00418700 f file.obj - 0001:00017790 ?AssertValid@MSFIL@@QAEXK@Z 00418790 f file.obj - 0001:00017860 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 00418860 f file.obj - 0001:00017970 ?ReportLine@MSFIL@@UAEXPAD@Z 00418970 f file.obj - 0001:00017a40 ?Report@MSFIL@@UAEXPAD@Z 00418a40 f file.obj - 0001:00017b30 ?FError@MSFIL@@UAEHXZ 00418b30 f file.obj - 0001:00017be0 ??_EFIL@@MAEPAXI@Z 00418be0 f file.obj - 0001:00017be0 ??_GFIL@@MAEPAXI@Z 00418be0 f file.obj - 0001:00017c20 ??_GBLCK@@UAEPAXI@Z 00418c20 f file.obj - 0001:00017c20 ??_EBLCK@@UAEPAXI@Z 00418c20 f file.obj - 0001:00017c60 ??_EMSFIL@@UAEPAXI@Z 00418c60 f file.obj - 0001:00017c60 ??_GMSFIL@@UAEPAXI@Z 00418c60 f file.obj - 0001:00017ca0 ??0MSNK@@QAE@XZ 00418ca0 f file.obj - 0001:00017ce0 ?FIs@MSNK@@UAEHJ@Z 00418ce0 f file.obj - 0001:00017d10 ?Cls@MSNK@@UAEJXZ 00418d10 f file.obj - 0001:00017d40 ??1MSNK@@UAE@XZ 00418d40 f file.obj - 0001:00017d70 ??_GMSNK@@UAEPAXI@Z 00418d70 f file.obj - 0001:00017d70 ??_EMSNK@@UAEPAXI@Z 00418d70 f file.obj - 0001:00017db0 ?_HfileOpen@@YGPAXPADHK@Z 00418db0 f filewin.obj - 0001:00017e30 ?_FOpen@FIL@@IAEHHK@Z 00418e30 f filewin.obj - 0001:00018070 ?_Close@FIL@@IAEXH@Z 00419070 f filewin.obj - 0001:00018190 ?Flush@FIL@@QAEXXZ 00419190 f filewin.obj - 0001:00018220 ?_SetFpPos@FIL@@IAEXJ@Z 00419220 f filewin.obj - 0001:00018320 ?FSetFpMac@FIL@@QAEHJ@Z 00419320 f filewin.obj - 0001:00018460 ?FpMac@FIL@@QAEJXZ 00419460 f filewin.obj - 0001:00018570 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00419570 f filewin.obj - 0001:00018730 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00419730 f filewin.obj - 0001:00018940 ?FWouldBe@FNI@@SGHJ@Z 00419940 f fniwin.obj - 0001:00018980 ?FIs@FNI@@UAEHJ@Z 00419980 f fniwin.obj - 0001:000189b0 ?Cls@FNI@@UAEJXZ 004199b0 f fniwin.obj - 0001:000189e0 ?SetNil@FNI@@QAEXXZ 004199e0 f fniwin.obj - 0001:00018a40 ??0FNI@@QAE@XZ 00419a40 f fniwin.obj - 0001:00018a90 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00419a90 f fniwin.obj - 0001:00018de0 ?FGetUnique@FNI@@QAEHJ@Z 00419de0 f fniwin.obj - 0001:00018f90 ?FGetTemp@FNI@@QAEHXZ 00419f90 f fniwin.obj - 0001:000190d0 ?Ftg@FNI@@QAEJXZ 0041a0d0 f fniwin.obj - 0001:00019120 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0041a120 f fniwin.obj - 0001:000192e0 ?FChangeFtg@FNI@@QAEHJ@Z 0041a2e0 f fniwin.obj - 0001:00019450 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0041a450 f fniwin.obj - 0001:00019590 ?TExists@FNI@@QAEHXZ 0041a590 f fniwin.obj - 0001:000197d0 ?FEqual@FNI@@QAEHPAV1@@Z 0041a7d0 f fniwin.obj - 0001:00019890 ?AssertValid@FNI@@QAEXK@Z 0041a890 f fniwin.obj - 0001:00019bd0 ?_CchExt@FNI@@AAEJXZ 0041abd0 f fniwin.obj - 0001:00019cd0 ?_SetFtgFromName@FNI@@AAEXXZ 0041acd0 f fniwin.obj - 0001:00019e40 ?ChsUpper@@YGDD@Z 0041ae40 f fniwin.obj - 0001:00019e60 ??4STN@@QAEAAV0@PAD@Z 0041ae60 f fniwin.obj - 0001:00019e90 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0041ae90 f fniwin.obj - 0001:0001a070 ?FAppendCh@STN@@QAEHD@Z 0041b070 f fniwin.obj - 0001:0001a0a0 ?FAppendSz@STN@@QAEHPAD@Z 0041b0a0 f fniwin.obj - 0001:0001a0e0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0041b0e0 f fniwin.obj - 0001:0001a210 ?FAppendStn@STN@@QAEHPAV1@@Z 0041b210 f fniwin.obj - 0001:0001a250 ?FInsertCh@STN@@QAEHJD@Z 0041b250 f fniwin.obj - 0001:0001a290 ?FEqual@STN@@QAEHPAV1@@Z 0041b290 f fniwin.obj - 0001:0001a2d0 ?FEqualUser@STN@@QAEHPAV1@K@Z 0041b2d0 f fniwin.obj - 0001:0001a370 ??_GFNI@@UAEPAXI@Z 0041b370 f fniwin.obj - 0001:0001a370 ??_EFNI@@UAEPAXI@Z 0041b370 f fniwin.obj - 0001:0001a3b0 ?FWouldBe@GRPB@@SGHJ@Z 0041b3b0 f groups.obj - 0001:0001a3f0 ?FIs@GRPB@@UAEHJ@Z 0041b3f0 f groups.obj - 0001:0001a420 ?Cls@GRPB@@UAEJXZ 0041b420 f groups.obj - 0001:0001a450 ?FWouldBe@GLB@@SGHJ@Z 0041b450 f groups.obj - 0001:0001a490 ?FIs@GLB@@UAEHJ@Z 0041b490 f groups.obj - 0001:0001a4c0 ?Cls@GLB@@UAEJXZ 0041b4c0 f groups.obj - 0001:0001a4f0 ?FWouldBe@GL@@SGHJ@Z 0041b4f0 f groups.obj - 0001:0001a530 ?FIs@GL@@UAEHJ@Z 0041b530 f groups.obj - 0001:0001a560 ?Cls@GL@@UAEJXZ 0041b560 f groups.obj - 0001:0001a590 ?FWouldBe@GGB@@SGHJ@Z 0041b590 f groups.obj - 0001:0001a5d0 ?FIs@GGB@@UAEHJ@Z 0041b5d0 f groups.obj - 0001:0001a600 ?Cls@GGB@@UAEJXZ 0041b600 f groups.obj - 0001:0001a630 ?FWouldBe@GG@@SGHJ@Z 0041b630 f groups.obj - 0001:0001a670 ?FIs@GG@@UAEHJ@Z 0041b670 f groups.obj - 0001:0001a6a0 ?Cls@GG@@UAEJXZ 0041b6a0 f groups.obj - 0001:0001a6d0 ?FWouldBe@AG@@SGHJ@Z 0041b6d0 f groups.obj - 0001:0001a710 ?FIs@AG@@UAEHJ@Z 0041b710 f groups.obj - 0001:0001a740 ?Cls@AG@@UAEJXZ 0041b740 f groups.obj - 0001:0001a770 ??1GRPB@@UAE@XZ 0041b770 f groups.obj - 0001:0001a7e0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0041b7e0 f groups.obj - 0001:0001a9e0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0041b9e0 f groups.obj - 0001:0001aba0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0041bba0 f groups.obj - 0001:0001ac00 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0041bc00 f groups.obj - 0001:0001add0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0041bdd0 f groups.obj - 0001:0001af50 ?AssertValid@GRPB@@QAEXK@Z 0041bf50 f groups.obj - 0001:0001b0e0 ?MarkMem@GRPB@@UAEXXZ 0041c0e0 f groups.obj - 0001:0001b150 ??0GLB@@IAE@J@Z 0041c150 f groups.obj - 0001:0001b1e0 ?QvGet@GLB@@QAEPAXJ@Z 0041c1e0 f groups.obj - 0001:0001b270 ?Get@GLB@@QAEXJPAX@Z 0041c270 f groups.obj - 0001:0001b300 ?Put@GLB@@QAEXJPAX@Z 0041c300 f groups.obj - 0001:0001b3b0 ?CbRoundToLong@@YGJJ@Z 0041c3b0 f groups.obj - 0001:0001b3d0 ?AssertValid@GLB@@QAEXK@Z 0041c3d0 f groups.obj - 0001:0001b470 ?PglNew@GL@@SGPAV1@JJ@Z 0041c470 f groups.obj - 0001:0001b5a0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0041c5a0 f groups.obj - 0001:0001b760 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0041c760 f groups.obj - 0001:0001b7c0 ??0GL@@IAE@J@Z 0041c7c0 f groups.obj - 0001:0001b820 ?FFree@GL@@UAEHJ@Z 0041c820 f groups.obj - 0001:0001b890 ?CbOnFile@GL@@UAEJXZ 0041c890 f groups.obj - 0001:0001b8f0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0041c8f0 f groups.obj - 0001:0001bac0 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0041cac0 f groups.obj - 0001:0001bd10 ?FInsert@GL@@QAEHJPAXJ@Z 0041cd10 f groups.obj - 0001:0001be90 ?Delete@GL@@UAEXJ@Z 0041ce90 f groups.obj - 0001:0001bef0 ?Delete@GL@@QAEXJJ@Z 0041cef0 f groups.obj - 0001:0001c060 ?FAdd@GL@@UAEHPAXPAJ@Z 0041d060 f groups.obj - 0001:0001c110 ?FPop@GL@@QAEHPAX@Z 0041d110 f groups.obj - 0001:0001c220 ?FEnsureSpace@GL@@QAEHJK@Z 0041d220 f groups.obj - 0001:0001c2f0 ?_Qb1@GRPB@@IAEPAEJ@Z 0041d2f0 f groups.obj - 0001:0001c320 ?_Qb2@GRPB@@IAEPAEJ@Z 0041d320 f groups.obj - 0001:0001c350 ?_Cb1@GRPB@@IAEJXZ 0041d350 f groups.obj - 0001:0001c380 ??0GRPB@@IAE@XZ 0041d380 f groups.obj - 0001:0001c3c0 ?_Cb2@GRPB@@IAEJXZ 0041d3c0 f groups.obj - 0001:0001c3f0 ??0GGB@@IAE@JH@Z 0041d3f0 f groups.obj - 0001:0001c4b0 ?CbOnFile@GGB@@UAEJXZ 0041d4b0 f groups.obj - 0001:0001c510 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0041d510 f groups.obj - 0001:0001c760 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0041d760 f groups.obj - 0001:0001ca70 ?FFree@GGB@@UAEHJ@Z 0041da70 f groups.obj - 0001:0001cbb0 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 0041dbb0 f groups.obj - 0001:0001cbf0 ?FEnsureSpace@GGB@@QAEHJJK@Z 0041dbf0 f groups.obj - 0001:0001cd50 ?_RemoveRgb@GGB@@IAEXJJ@Z 0041dd50 f groups.obj - 0001:0001cea0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0041dea0 f groups.obj - 0001:0001d010 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0041e010 f groups.obj - 0001:0001d120 ?GetFixed@GGB@@QAEXJPAX@Z 0041e120 f groups.obj - 0001:0001d230 ?PutFixed@GGB@@QAEXJPAX@Z 0041e230 f groups.obj - 0001:0001d370 ?Cb@GGB@@QAEJJ@Z 0041e370 f groups.obj - 0001:0001d420 ?QvGet@GGB@@QAEPAXJPAJ@Z 0041e420 f groups.obj - 0001:0001d530 ?PvLock@GGB@@QAEPAXJPAJ@Z 0041e530 f groups.obj - 0001:0001d590 ?GetRgb@GGB@@QAEXJJJPAX@Z 0041e590 f groups.obj - 0001:0001d6a0 ?DeleteRgb@GGB@@QAEXJJJ@Z 0041e6a0 f groups.obj - 0001:0001d890 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0041e890 f groups.obj - 0001:0001db50 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 0041eb50 f groups.obj - 0001:0001e000 ?Merge@GGB@@QAEXJJ@Z 0041f000 f groups.obj - 0001:0001e280 ?AssertValid@GGB@@QAEXK@Z 0041f280 f groups.obj - 0001:0001e5e0 ?PggNew@GG@@SGPAV1@JJJ@Z 0041f5e0 f groups.obj - 0001:0001e730 ??0GG@@IAE@J@Z 0041f730 f groups.obj - 0001:0001e770 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0041f770 f groups.obj - 0001:0001e940 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0041f940 f groups.obj - 0001:0001e9a0 ?FInsert@GG@@QAEHJJPAX0@Z 0041f9a0 f groups.obj - 0001:0001ec50 ?FAdd@GG@@UAEHJPAJPAX1@Z 0041fc50 f groups.obj - 0001:0001ed10 ?Delete@GG@@UAEXJ@Z 0041fd10 f groups.obj - 0001:0001ee50 ?AssertValid@GG@@QAEXK@Z 0041fe50 f groups.obj - 0001:0001eec0 ??0AG@@IAE@J@Z 0041fec0 f groups.obj - 0001:0001ef00 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 0041ff00 f groups.obj - 0001:0001f0d0 ?FAdd@AG@@UAEHJPAJPAX1@Z 004200d0 f groups.obj - 0001:0001f460 ?Delete@AG@@UAEXJ@Z 00420460 f groups.obj - 0001:0001f610 ?AssertValid@AG@@QAEXK@Z 00420610 f groups.obj - 0001:0001f680 ??_GGRPB@@UAEPAXI@Z 00420680 f groups.obj - 0001:0001f680 ??_EGRPB@@UAEPAXI@Z 00420680 f groups.obj - 0001:0001f6c0 ??_EGG@@UAEPAXI@Z 004206c0 f groups.obj - 0001:0001f6c0 ??_GGG@@UAEPAXI@Z 004206c0 f groups.obj - 0001:0001f700 ??_EAG@@UAEPAXI@Z 00420700 f groups.obj - 0001:0001f700 ??_GAG@@UAEPAXI@Z 00420700 f groups.obj - 0001:0001f740 ??_GGLB@@UAEPAXI@Z 00420740 f groups.obj - 0001:0001f740 ??_EGLB@@UAEPAXI@Z 00420740 f groups.obj - 0001:0001f780 ??_EGL@@UAEPAXI@Z 00420780 f groups.obj - 0001:0001f780 ??_GGL@@UAEPAXI@Z 00420780 f groups.obj - 0001:0001f7c0 ??1GLB@@UAE@XZ 004207c0 f groups.obj - 0001:0001f7f0 ??_GGGB@@UAEPAXI@Z 004207f0 f groups.obj - 0001:0001f7f0 ??_EGGB@@UAEPAXI@Z 004207f0 f groups.obj - 0001:0001f830 ??1GGB@@UAE@XZ 00420830 f groups.obj - 0001:0001f860 ??1GG@@UAE@XZ 00420860 f groups.obj - 0001:0001f890 ??1AG@@UAE@XZ 00420890 f groups.obj - 0001:0001f8c0 ??1GL@@UAE@XZ 004208c0 f groups.obj - 0001:0001f8f0 ?FWouldBe@GSTB@@SGHJ@Z 004208f0 f groups2.obj - 0001:0001f930 ?FIs@GSTB@@UAEHJ@Z 00420930 f groups2.obj - 0001:0001f960 ?Cls@GSTB@@UAEJXZ 00420960 f groups2.obj - 0001:0001f990 ?FWouldBe@GST@@SGHJ@Z 00420990 f groups2.obj - 0001:0001f9d0 ?FIs@GST@@UAEHJ@Z 004209d0 f groups2.obj - 0001:0001fa00 ?Cls@GST@@UAEJXZ 00420a00 f groups2.obj - 0001:0001fa30 ??0GSTB@@IAE@JK@Z 00420a30 f groups2.obj - 0001:0001fb30 ?CbOnFile@GSTB@@UAEJXZ 00420b30 f groups2.obj - 0001:0001fba0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 00420ba0 f groups2.obj - 0001:0001fe70 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 00420e70 f groups2.obj - 0001:000201d0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 004211d0 f groups2.obj - 0001:000202e0 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 004212e0 f groups2.obj - 0001:00020450 ?GetExtra@GSTB@@QAEXJPAX@Z 00421450 f groups2.obj - 0001:00020560 ?_Qst@GSTB@@IAEPADJ@Z 00421560 f groups2.obj - 0001:000205c0 ?_AppendRgch@GSTB@@IAEXPADJ@Z 004215c0 f groups2.obj - 0001:00020680 ?_RemoveSt@GSTB@@IAEXJ@Z 00421680 f groups2.obj - 0001:000207b0 ?_SwapBytesRgbst@GSTB@@IAEXXZ 004217b0 f groups2.obj - 0001:00020840 ?_TranslateGrst@GSTB@@IAEXFH@Z 00421840 f groups2.obj - 0001:00020900 ?_FTranslateGrst@GSTB@@IAEHF@Z 00421900 f groups2.obj - 0001:00020cc0 ?CchTotSt@@YGJPAD@Z 00421cc0 f groups2.obj - 0001:00020cf0 ?FFree@GSTB@@UAEHJ@Z 00421cf0 f groups2.obj - 0001:00020dc0 ?TranslateSt@@YGXPADFH@Z 00421dc0 f groups2.obj - 0001:00020df0 ?AssertValid@GSTB@@QAEXK@Z 00421df0 f groups2.obj - 0001:000210d0 ?SetSt@STN@@QAEXPAD@Z 004220d0 f groups2.obj - 0001:00021110 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 00422110 f groups2.obj - 0001:000212d0 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 004222d0 f groups2.obj - 0001:000213c0 ?FFindRgch@GST@@UAEHPADJPAJK@Z 004223c0 f groups2.obj - 0001:00021570 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 00422570 f groups2.obj - 0001:00021770 ?Delete@GST@@UAEXJ@Z 00422770 f groups2.obj - 0001:000218a0 ?AssertValid@GST@@QAEXK@Z 004228a0 f groups2.obj - 0001:00021910 ?_Bst@GSTB@@IAEJJ@Z 00422910 f groups2.obj - 0001:00021950 ?_Qbst@GSTB@@IAEPAJJ@Z 00422950 f groups2.obj - 0001:00021990 ?CbExtra@GSTB@@QAEJXZ 00422990 f groups2.obj - 0001:000219c0 ??0GST@@IAE@J@Z 004229c0 f groups2.obj - 0001:00021a20 ??_EGST@@UAEPAXI@Z 00422a20 f groups2.obj - 0001:00021a20 ??_GGST@@UAEPAXI@Z 00422a20 f groups2.obj - 0001:00021a60 ??_EGSTB@@UAEPAXI@Z 00422a60 f groups2.obj - 0001:00021a60 ??_GGSTB@@UAEPAXI@Z 00422a60 f groups2.obj - 0001:00021aa0 ??1GSTB@@UAE@XZ 00422aa0 f groups2.obj - 0001:00021ad0 ??1GST@@UAE@XZ 00422ad0 f groups2.obj - 0001:00021b40 ?IbMac@BSF@@QAEJXZ 00422b40 f lex.obj - 0001:00021b70 ?FWouldBe@BSF@@SGHJ@Z 00422b70 f stream.obj - 0001:00021bb0 ?FIs@BSF@@UAEHJ@Z 00422bb0 f stream.obj - 0001:00021be0 ?Cls@BSF@@UAEJXZ 00422be0 f stream.obj - 0001:00021c30 ??0BSF@@QAE@XZ 00422c30 f stream.obj - 0001:00021ca0 ??1BSF@@UAE@XZ 00422ca0 f stream.obj - 0001:00021d90 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00422d90 f stream.obj - 0001:00021eb0 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00422eb0 f stream.obj - 0001:00022120 ?_AttemptMerge@BSF@@IAEXJJ@Z 00423120 f stream.obj - 0001:00022310 ?FReplace@BSF@@QAEHPAXJJJ@Z 00423310 f stream.obj - 0001:000228d0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 004238d0 f stream.obj - 0001:00022c20 ?FetchRgb@BSF@@QAEXJJPAX@Z 00423c20 f stream.obj - 0001:00022e20 ?AssertValid@BSF@@QAEXK@Z 00423e20 f stream.obj - 0001:000230a0 ?MarkMem@BSF@@UAEXXZ 004240a0 f stream.obj - 0001:00023130 ??_GBSF@@UAEPAXI@Z 00424130 f stream.obj - 0001:00023130 ??_EBSF@@UAEPAXI@Z 00424130 f stream.obj - 0001:00023210 ?FWouldBe@CHSE@@SGHJ@Z 00424210 f chse.obj - 0001:00023250 ?FIs@CHSE@@UAEHJ@Z 00424250 f chse.obj - 0001:00023280 ?Cls@CHSE@@UAEJXZ 00424280 f chse.obj - 0001:000232b0 ??0CHSE@@QAE@XZ 004242b0 f chse.obj - 0001:00023350 ??1CHSE@@UAE@XZ 00424350 f chse.obj - 0001:000233a0 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 004243a0 f chse.obj - 0001:000234f0 ?Uninit@CHSE@@QAEXXZ 004244f0 f chse.obj - 0001:000235c0 ?AssertValid@CHSE@@QAEXK@Z 004245c0 f chse.obj - 0001:000236f0 ?MarkMem@CHSE@@UAEXXZ 004246f0 f chse.obj - 0001:000237a0 ?DumpBlck@CHSE@@QAEXPAVBLCK@@@Z 004247a0 f chse.obj - 0001:000238e0 ?DumpRgb@CHSE@@QAEXPAXJJ@Z 004248e0 f chse.obj - 0001:00023980 ?_DumpBsf@CHSE@@IAEXJ@Z 00424980 f chse.obj - 0001:00023c20 ?FDumpStringTable@CHSE@@QAEHPAVGSTB@@@Z 00424c20 f chse.obj - 0001:00023f20 ??_ECHSE@@UAEPAXI@Z 00424f20 f chse.obj - 0001:00023f20 ??_GCHSE@@UAEPAXI@Z 00424f20 f chse.obj - 0001:00023f60 ?DumpSz@CHSE@@QAEXPAD@Z 00424f60 f chse.obj - 0001:00023fc0 ?Error@CHSE@@QAEXPAD@Z 00424fc0 f chse.obj - 0001:00024040 _main 00425040 f chelpdmp.obj - 0001:00024440 ?WarnProc@@YGXPADJ0@Z 00425440 f chelpdmp.obj - 0001:000244c0 ?FAssertProc@@YGHPADJ0PAXJ@Z 004254c0 f chelpdmp.obj - 0001:000246a0 ?FExportHelpText@@YGHPAVCFL@@PAVMSNK@@@Z 004256a0 f chelpexp.obj - 0001:00025f40 ?FRead@BLCK@@QAEHPAXH@Z 00426f40 f chelpexp.obj - 0001:00026090 ??0ACR@@QAE@EEE@Z 00427090 f chelpexp.obj - 0001:000260d0 ??0ACR@@QAE@HH@Z 004270d0 f chelpexp.obj - 0001:00026120 ??0MSSIO@@QAE@PAU_iobuf@@@Z 00427120 f mssio.obj - 0001:00026170 ?ReportLine@MSSIO@@UAEXPAD@Z 00427170 f mssio.obj - 0001:000261f0 ?Report@MSSIO@@UAEXPAD@Z 004271f0 f mssio.obj - 0001:00026270 ?FError@MSSIO@@UAEHXZ 00427270 f mssio.obj - 0001:000262e0 ??_GMSSIO@@UAEPAXI@Z 004272e0 f mssio.obj - 0001:000262e0 ??_EMSSIO@@UAEPAXI@Z 004272e0 f mssio.obj - 0001:00026340 ??1MSSIO@@UAE@XZ 00427340 f mssio.obj - 0001:00026366 _timeGetTime@0 00427366 winmm:WINMM.dll - 0001:0002636c __chkstk 0042736c LIBC:chkstk.obj - 0001:0002636c __alloca_probe 0042736c LIBC:chkstk.obj - 0001:00026399 __onexit 00427399 f LIBC:onexit.obj - 0001:0002640f _atexit 0042740f f LIBC:onexit.obj - 0001:00026421 ___onexitinit 00427421 f LIBC:onexit.obj - 0001:00026457 __purecall 00427457 f LIBC:purevirt.obj - 0001:00026464 __ftol 00427464 f LIBC:ftol.obj - 0001:0002648c _fdiv_main_routine 0042748c f LIBC:adj_fdiv.obj - 0001:000265a3 __adj_fdiv_r 004275a3 f LIBC:adj_fdiv.obj - 0001:00026a42 _fdivp_sti_st 00427a42 f LIBC:adj_fdiv.obj - 0001:00026a55 _fdivrp_sti_st 00427a55 f LIBC:adj_fdiv.obj - 0001:00026a68 __adj_fdiv_m32 00427a68 f LIBC:adj_fdiv.obj - 0001:00026ab4 __adj_fdiv_m64 00427ab4 f LIBC:adj_fdiv.obj - 0001:00026b00 __adj_fdiv_m16i 00427b00 f LIBC:adj_fdiv.obj - 0001:00026b34 __adj_fdiv_m32i 00427b34 f LIBC:adj_fdiv.obj - 0001:00026b68 __adj_fdivr_m32 00427b68 f LIBC:adj_fdiv.obj - 0001:00026bb4 __adj_fdivr_m64 00427bb4 f LIBC:adj_fdiv.obj - 0001:00026c00 __adj_fdivr_m16i 00427c00 f LIBC:adj_fdiv.obj - 0001:00026c34 __adj_fdivr_m32i 00427c34 f LIBC:adj_fdiv.obj - 0001:00026c68 __safe_fdiv 00427c68 f LIBC:adj_fdiv.obj - 0001:00026c7d __safe_fdivr 00427c7d f LIBC:adj_fdiv.obj - 0001:00026c92 __fprem_common 00427c92 f LIBC:adj_fdiv.obj - 0001:00026e98 __adj_fprem 00427e98 f LIBC:adj_fdiv.obj - 0001:00026f4a __fprem1_common 00427f4a f LIBC:adj_fdiv.obj - 0001:00027150 __adj_fprem1 00428150 f LIBC:adj_fdiv.obj - 0001:00027205 __safe_fprem 00428205 f LIBC:adj_fdiv.obj - 0001:0002720b __safe_fprem1 0042820b f LIBC:adj_fdiv.obj - 0001:00027211 __adj_fpatan 00428211 f LIBC:adj_fdiv.obj - 0001:00027214 __adj_fptan 00428214 f LIBC:adj_fdiv.obj - 0001:00027217 __fpmath 00428217 f LIBC:fpinit.obj - 0001:0002722b __fpclear 0042822b f LIBC:fpinit.obj - 0001:0002722c __cfltcvt_init 0042822c f LIBC:fpinit.obj - 0001:00027264 _fprintf 00428264 f LIBC:fprintf.obj - 0001:0002729a _printf 0042829a f LIBC:printf.obj - 0001:000272d6 _mainCRTStartup 004282d6 f LIBC:crt0.obj - 0001:000273cf __amsg_exit 004283cf f LIBC:crt0.obj - 0001:000273ef __cinit 004283ef f LIBC:crt0dat.obj - 0001:0002741f _exit 0042841f f LIBC:crt0dat.obj - 0001:00027430 __exit 00428430 f LIBC:crt0dat.obj - 0001:000274e0 _realloc 004284e0 f LIBC:realloc.obj - 0001:00027632 __msize 00428632 f LIBC:msize.obj - 0001:00027643 _malloc 00428643 f LIBC:malloc.obj - 0001:00027656 __nh_malloc 00428656 f LIBC:malloc.obj - 0001:00027715 __heap_split_block 00428715 f LIBC:malloc.obj - 0001:0002775a __setdefaultprecision 0042875a f LIBC:fp8.obj - 0001:0002776d _ms_p5_test_fdiv 0042876d f LIBC:testfdiv.obj - 0001:000277b3 _ms_p5_mp_test_fdiv 004287b3 f LIBC:testfdiv.obj - 0001:00027886 __forcdecpt 00428886 f LIBC:cvt.obj - 0001:000278eb __cropzeros 004288eb f LIBC:cvt.obj - 0001:0002794a __positive 0042894a f LIBC:cvt.obj - 0001:0002795f __fassign 0042895f f LIBC:cvt.obj - 0001:000279a2 __cftoe 004289a2 f LIBC:cvt.obj - 0001:00027af5 __cftof 00428af5 f LIBC:cvt.obj - 0001:00027c11 __cftog 00428c11 f LIBC:cvt.obj - 0001:00027cb9 __cfltcvt 00428cb9 f LIBC:cvt.obj - 0001:00027d35 __stbuf 00428d35 f LIBC:_sftbuf.obj - 0001:00027db6 __ftbuf 00428db6 f LIBC:_sftbuf.obj - 0001:00027dfc __output 00428dfc f LIBC:output.obj - 0001:00028724 __global_unwind2 00429724 f LIBC:exsup.obj - 0001:00028766 __local_unwind2 00429766 f LIBC:exsup.obj - 0001:000287c0 __abnormal_termination 004297c0 f LIBC:exsup.obj - 0001:000287e3 __XcptFilter 004297e3 f LIBC:winxfltr.obj - 0001:0002896e __setenvp 0042996e f LIBC:stdenvp.obj - 0001:00028a39 __setargv 00429a39 f LIBC:stdargv.obj - 0001:00028d37 __setmbcp 00429d37 f LIBC:mbctype.obj - 0001:00028ec5 ___initmbctable 00429ec5 f LIBC:mbctype.obj - 0001:00028ed0 __ioinit 00429ed0 f LIBC:ioinit.obj - 0001:00028fbe __heap_init 00429fbe f LIBC:heapinit.obj - 0001:0002903b ___getempty 0042a03b f LIBC:heapinit.obj - 0001:00029068 __except_handler3 0042a068 f LIBC:exsup3.obj - 0001:00029116 __seh_longjmp_unwind@4 0042a116 f LIBC:exsup3.obj - 0001:00029131 __FF_MSGBANNER 0042a131 f LIBC:crt0msg.obj - 0001:00029157 __NMSG_WRITE 0042a157 f LIBC:crt0msg.obj - 0001:000291af _free 0042a1af f LIBC:free.obj - 0001:00029217 __heap_abort 0042a217 f LIBC:hpabort.obj - 0001:00029222 __heap_grow 0042a222 f LIBC:heapgrow.obj - 0001:0002930b __heap_grow_region 0042a30b f LIBC:heapgrow.obj - 0001:000293b8 __heap_free_region 0042a3b8 f LIBC:heapgrow.obj - 0001:000293f2 __heap_search 0042a3f2 f LIBC:heapsrch.obj - 0001:000294e2 __control87 0042a4e2 f LIBC:ieee87.obj - 0001:0002951d __controlfp 0042a51d f LIBC:ieee87.obj - 0001:00029654 __fptrap 0042a654 f LIBC:crt0fp.obj - 0001:0002965f __isctype 0042a65f f LIBC:isctype.obj - 0001:000296da _tolower 0042a6da f LIBC:tolower.obj - 0001:000297a6 __ZeroTail 0042a7a6 f LIBC:intrncvt.obj - 0001:00029806 __IncMan 0042a806 f LIBC:intrncvt.obj - 0001:00029867 __RoundMan 0042a867 f LIBC:intrncvt.obj - 0001:00029904 __CopyMan 0042a904 f LIBC:intrncvt.obj - 0001:00029921 __FillZeroMan 0042a921 f LIBC:intrncvt.obj - 0001:0002992d __IsZeroMan 0042a92d f LIBC:intrncvt.obj - 0001:0002994b __ShrMan 0042a94b f LIBC:intrncvt.obj - 0001:000299f6 __ld12cvt 0042a9f6 f LIBC:intrncvt.obj - 0001:00029b92 __ld12tod 0042ab92 f LIBC:intrncvt.obj - 0001:00029ba8 __ld12tof 0042aba8 f LIBC:intrncvt.obj - 0001:00029bbe __atodbl 0042abbe f LIBC:intrncvt.obj - 0001:00029bef __atoflt 0042abef f LIBC:intrncvt.obj - 0001:00029c20 __fptostr 0042ac20 f LIBC:_fptostr.obj - 0001:00029c9e __fltout 0042ac9e f LIBC:cfout.obj - 0001:00029d01 ___dtold 0042ad01 f LIBC:cfout.obj - 0001:00029dbc _memmove 0042adbc f LIBC:memmove.obj - 0001:00029f0a _fflush 0042af0a f LIBC:fflush.obj - 0001:00029f56 __flush 0042af56 f LIBC:fflush.obj - 0001:00029fb8 __flushall 0042afb8 f LIBC:fflush.obj - 0001:0002a02d ___endstdio 0042b02d f LIBC:fflush.obj - 0001:0002a041 __isatty 0042b041 f LIBC:isatty.obj - 0001:0002a05b _wctomb 0042b05b f LIBC:wctomb.obj - 0001:0002a0d4 __aulldiv 0042b0d4 f LIBC:ulldiv.obj - 0001:0002a134 __aullrem 0042b134 f LIBC:ullrem.obj - 0001:0002a19e __flsbuf 0042b19e f LIBC:_flsbuf.obj - 0001:0002a2aa __heap_addblock 0042b2aa f LIBC:heapadd.obj - 0001:0002a561 ___crtGetStringTypeA 0042b561 f LIBC:aw_str.obj - 0001:0002a6d8 ___crtLCMapStringA 0042b6d8 f LIBC:aw_map.obj - 0001:0002a937 ___addl 0042b937 f LIBC:mantold.obj - 0001:0002a95a ___add_12 0042b95a f LIBC:mantold.obj - 0001:0002a9b8 ___shl_12 0042b9b8 f LIBC:mantold.obj - 0001:0002a9f6 ___shr_12 0042b9f6 f LIBC:mantold.obj - 0001:0002aa29 ___mtold12 0042ba29 f LIBC:mantold.obj - 0001:0002ab0d ___strgtold12 0042bb0d f LIBC:strgtold.obj - 0001:0002b14c _$I10_OUTPUT 0042c14c f LIBC:x10fout.obj - 0001:0002b482 __commit 0042c482 f LIBC:commit.obj - 0001:0002b4cf __write 0042c4cf f LIBC:write.obj - 0001:0002b668 __fcloseall 0042c668 f LIBC:closeall.obj - 0001:0002b699 __lseek 0042c699 f LIBC:lseek.obj - 0001:0002b70e __getbuf 0042c70e f LIBC:_getbuf.obj - 0001:0002b759 __heap_findaddr 0042c759 f LIBC:findaddr.obj - 0001:0002b7c3 _calloc 0042c7c3 f LIBC:calloc.obj - 0001:0002b7fd ___set_invalid_mb_chars 0042c7fd f LIBC:setmbval.obj - 0001:0002b82c _strncpy 0042c82c f LIBC:strncpy.obj - 0001:0002b850 ___ld12mul 0042c850 f LIBC:tenpow.obj - 0001:0002ba90 ___multtenpow12 0042ca90 f LIBC:tenpow.obj - 0001:0002bb05 __free_osfhnd 0042cb05 f LIBC:osfinfo.obj - 0001:0002bb72 __get_osfhandle 0042cb72 f LIBC:osfinfo.obj - 0001:0002bbaa __dosmaperr 0042cbaa f LIBC:dosmap.obj - 0001:0002bc13 _fclose 0042cc13 f LIBC:fclose.obj - 0001:0002bc6f __close 0042cc6f f LIBC:close.obj - 0001:0002bd05 __freebuf 0042cd05 f LIBC:_freebuf.obj - 0001:0002bd3e _RtlUnwind@16 0042cd3e kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 0042d000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 0042d018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 0042d030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 0042d040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 0042d058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 0042d070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 0042d0c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 0042d0e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 0042d108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 0042d10c base.obj - 0002:00000120 ?_ers@@3VERS@@A 0042d120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 0042d248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 0042d260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 0042d368 utilstr.obj - 0002:00000478 ?_pcflFirst@CFL@@0PAV1@A 0042d478 chunk.obj - 0002:000004a0 ?_pfilFirst@FIL@@1PAV1@A 0042d4a0 file.obj - 0002:000004a8 ?_mutxList@FIL@@1VMUTX@@A 0042d4a8 file.obj - 0002:000004d0 ?_fniTemp@@3VFNI@@A 0042d4d0 fniwin.obj - 0002:000008b8 __heap_descpages 0042d8b8 - 0002:000008c0 __heap_regions 0042d8c0 - 0002:00000bc0 ___onexitend 0042dbc0 - 0002:00000bc4 ___onexitbegin 0042dbc4 - 0002:00000bc8 __acmdln 0042dbc8 - 0002:00000bd0 __bufin 0042dbd0 - 0003:00000058 ??_7KCDC@@6B@ 0042f058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 0042f078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 0042f090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 0042f0b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 0042f0c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 0042f100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 0042f118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 0042f138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 0042f158 utilstr.obj - 0003:00000170 ??_7CFL@@6B@ 0042f170 chunk.obj - 0003:00000188 ??_7CGE@@6B@ 0042f188 chunk.obj - 0003:000001a0 ??_7CODM@@6B@ 0042f1a0 codec.obj - 0003:000001d0 ??_7FIL@@6B@ 0042f1d0 file.obj - 0003:000001e8 ??_7BLCK@@6B@ 0042f1e8 file.obj - 0003:00000200 ??_7MSFIL@@6B@ 0042f200 file.obj - 0003:00000228 ??_7MSNK@@6B@ 0042f228 file.obj - 0003:00000250 ??_7FNI@@6B@ 0042f250 fniwin.obj - 0003:00000268 ??_7GRPB@@6B@ 0042f268 groups.obj - 0003:00000298 ??_7GLB@@6B@ 0042f298 groups.obj - 0003:000002c8 ??_7GL@@6B@ 0042f2c8 groups.obj - 0003:000002f8 ??_7GGB@@6B@ 0042f2f8 groups.obj - 0003:00000328 ??_7GG@@6B@ 0042f328 groups.obj - 0003:00000358 ??_7AG@@6B@ 0042f358 groups.obj - 0003:00000388 ??_7GSTB@@6B@ 0042f388 groups2.obj - 0003:000003c0 ??_7GST@@6B@ 0042f3c0 groups2.obj - 0003:000003f8 ??_7BSF@@6B@ 0042f3f8 stream.obj - 0003:00000420 ??_7CHSE@@6B@ 0042f420 chse.obj - 0003:00000438 ??_7MSSIO@@6B@ 0042f438 mssio.obj - 0003:00000490 ___lookuptable 0042f490 LIBC:output.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 00430020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 00430024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 00430064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 00430068 base.obj - 0004:0000006c ?vcactAV@@3JA 0043006c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 00430070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 00430088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004300a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004300b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004300c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004300e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004300f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0043010c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 00430120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0043013c base.obj - 0004:0000015c ??_C@_03GOHA@nil?$AA@ 0043015c base.obj - 0004:00000160 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 00430160 base.obj - 0004:00000170 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00430170 base.obj - 0004:00000180 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00430180 base.obj - 0004:000001b0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004301b0 utilcopy.obj - 0004:000001e0 ?vpers@@3PAVERS@@A 004301e0 utilerro.obj - 0004:000001e4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004301e4 utilerro.obj - 0004:0000020c ??_C@_08GEE@Error?5?$CFd?$AA@ 0043020c utilerro.obj - 0004:00000238 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 00430238 utilint.obj - 0004:00000248 ??_C@_084overflow?$AA@ 00430248 utilint.obj - 0004:00000254 ??_C@_0N@INPL@long?5too?5big?$AA@ 00430254 utilint.obj - 0004:00000264 ??_C@_0P@DFPA@long?5too?5small?$AA@ 00430264 utilint.obj - 0004:00000274 ??_C@_09MGFD@wrong?5bom?$AA@ 00430274 utilint.obj - 0004:00000280 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 00430280 utilint.obj - 0004:000002c8 ?vpfnlib@@3P6GJJJ@ZA 004302c8 utilmem.obj - 0004:000002cc ?_fInLiberator@@3HA 004302cc utilmem.obj - 0004:000002d0 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 004302d0 utilmem.obj - 0004:000002f4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004302f4 utilmem.obj - 0004:0000030c ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 0043030c utilmem.obj - 0004:00000334 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 00430334 utilmem.obj - 0004:00000358 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 00430358 utilmem.obj - 0004:00000378 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00430378 utilmem.obj - 0004:0000038c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 0043038c utilmem.obj - 0004:000003a0 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 004303a0 utilmem.obj - 0004:000003b4 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 004303b4 utilmem.obj - 0004:000003c8 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 004303c8 utilmem.obj - 0004:000003e0 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 004303e0 utilmem.obj - 0004:000003f4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004303f4 utilmem.obj - 0004:00000404 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 00430404 utilmem.obj - 0004:00000418 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 00430418 utilmem.obj - 0004:00000434 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 00430434 utilmem.obj - 0004:00000448 ??_C@_08ECDH@wrong?5cb?$AA@ 00430448 utilmem.obj - 0004:00000454 ??_C@_06BHIL@nil?5pv?$AA@ 00430454 utilmem.obj - 0004:00000480 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 00430480 utilrnd.obj - 0004:0000049c ??_C@_0L@LEMP@_clw?5wrong?$AA@ 0043049c utilrnd.obj - 0004:000004a8 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 004304a8 utilrnd.obj - 0004:000004b8 ??_C@_0L@DINP@wrong?5_clw?$AA@ 004304b8 utilrnd.obj - 0004:000005e8 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 004305e8 utilstr.obj - 0004:00000610 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 00430610 utilstr.obj - 0004:00000620 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 00430620 utilstr.obj - 0004:00000648 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 00430648 utilstr.obj - 0004:00000658 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 00430658 utilstr.obj - 0004:0000066c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 0043066c utilstr.obj - 0004:00000688 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 00430688 utilstr.obj - 0004:000006a4 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 004306a4 utilstr.obj - 0004:000006b0 ??_C@_0BM@CLPI@why?5did?5CompareString?5fail?$DP?$AA@ 004306b0 utilstr.obj - 0004:000006cc ??_C@_0CE@IKBC@TranslateRgch?5can?8t?5handle?5this?5@ 004306cc utilstr.obj - 0004:000006f0 ??_C@_07NPFI@bad?5osk?$AA@ 004306f0 utilstr.obj - 0004:000006f8 ??_C@_06KJGB@bad?5st?$AA@ 004306f8 utilstr.obj - 0004:00000720 ?vcactSuspendCheckPointers@@3JA 00430720 memwin.obj - 0004:00000724 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 00430724 memwin.obj - 0004:00000738 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 00430738 memwin.obj - 0004:0000074c ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 0043074c memwin.obj - 0004:00000764 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 00430764 memwin.obj - 0004:00000774 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 00430774 memwin.obj - 0004:00000798 ??_C@_09BABB@hq?5is?5nil?$AA@ 00430798 memwin.obj - 0004:000007a4 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004307a4 memwin.obj - 0004:000007e0 ?_rtiLast@CFL@@0JA 004307e0 chunk.obj - 0004:000007e4 ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 004307e4 chunk.obj - 0004:00000800 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 00430800 chunk.obj - 0004:00000820 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 00430820 chunk.obj - 0004:00000838 ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 00430838 chunk.obj - 0004:00000848 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 00430848 chunk.obj - 0004:0000086c ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 0043086c chunk.obj - 0004:00000880 ??_C@_08EHFM@Bad?5RTIE?$AA@ 00430880 chunk.obj - 0004:0000088c ??_C@_09HBDJ@bad?5index?$AA@ 0043088c chunk.obj - 0004:00000898 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 00430898 chunk.obj - 0004:000008b8 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 004308b8 chunk.obj - 0004:000008cc ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 004308cc chunk.obj - 0004:000008dc ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 004308dc chunk.obj - 0004:000008ec ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 004308ec chunk.obj - 0004:00000908 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 00430908 chunk.obj - 0004:00000924 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 00430924 chunk.obj - 0004:0000093c ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 0043093c chunk.obj - 0004:00000960 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 00430960 chunk.obj - 0004:0000097c ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 0043097c chunk.obj - 0004:00000990 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 00430990 chunk.obj - 0004:000009a4 ??_C@_06CFJE@bad?5fp?$AA@ 004309a4 chunk.obj - 0004:000009ac ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 004309ac chunk.obj - 0004:000009c0 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 004309c0 chunk.obj - 0004:000009d0 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 004309d0 chunk.obj - 0004:000009dc ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 004309dc chunk.obj - 0004:00000a00 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 00430a00 chunk.obj - 0004:00000a18 ??_C@_0M@INOI@corrupt?5crp?$AA@ 00430a18 chunk.obj - 0004:00000a24 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 00430a24 chunk.obj - 0004:00000a44 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 00430a44 chunk.obj - 0004:00000a5c ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 00430a5c chunk.obj - 0004:00000a74 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 00430a74 chunk.obj - 0004:00000a8c ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 00430a8c chunk.obj - 0004:00000aa4 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 00430aa4 chunk.obj - 0004:00000ab4 ??_C@_07NFMH@overlap?$AA@ 00430ab4 chunk.obj - 0004:00000abc ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 00430abc chunk.obj - 0004:00000ac8 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 00430ac8 chunk.obj - 0004:00000af0 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 00430af0 chunk.obj - 0004:00000afc ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 00430afc chunk.obj - 0004:00000b08 ??_C@_06JFMK@bad?5cb?$AA@ 00430b08 chunk.obj - 0004:00000b10 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 00430b10 chunk.obj - 0004:00000b20 ??_C@_07BDGM@bad?5crp?$AA@ 00430b20 chunk.obj - 0004:00000b28 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 00430b28 chunk.obj - 0004:00000b58 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 00430b58 codec.obj - 0004:00000b78 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 00430b78 codec.obj - 0004:00000b90 ??_C@_08DJLA@nil?5cfmt?$AA@ 00430b90 codec.obj - 0004:00000b9c ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 00430b9c codec.obj - 0004:00000bbc ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 00430bbc codec.obj - 0004:00000bf8 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00430bf8 codkauai.obj - 0004:00000c1c ??_C@_07DEPO@bad?5len?$AA@ 00430c1c codkauai.obj - 0004:00000c24 ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 00430c24 codkauai.obj - 0004:00000c34 ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 00430c34 codkauai.obj - 0004:00000c58 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 00430c58 codkauai.obj - 0004:00000c6c ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 00430c6c codkauai.obj - 0004:00000c80 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 00430c80 codkauai.obj - 0004:00000c9c ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 00430c9c codkauai.obj - 0004:00000cec ?vftgCreator@FIL@@2JA 00430cec file.obj - 0004:00000cf0 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00430cf0 file.obj - 0004:00000d04 ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 00430d04 file.obj - 0004:00000d18 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 00430d18 file.obj - 0004:00000d2c ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 00430d2c file.obj - 0004:00000d44 ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 00430d44 file.obj - 0004:00000d5c ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 00430d5c file.obj - 0004:00000d74 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 00430d74 file.obj - 0004:00000d8c ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 00430d8c file.obj - 0004:00000da0 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 00430da0 file.obj - 0004:00000db8 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 00430db8 file.obj - 0004:00000dcc ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 00430dcc file.obj - 0004:00000de8 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 00430de8 file.obj - 0004:00000e00 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 00430e00 file.obj - 0004:00000e1c ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 00430e1c file.obj - 0004:00000e3c ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 00430e3c file.obj - 0004:00000e60 ??_C@_0L@MCHM@bad?5_fpCur?$AA@ 00430e60 file.obj - 0004:00000e90 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 00430e90 filewin.obj - 0004:00000eac ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 00430eac filewin.obj - 0004:00000ec8 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 00430ec8 filewin.obj - 0004:00000ee8 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 00430ee8 filewin.obj - 0004:00000f18 ?vftgTemp@@3JA 00430f18 fniwin.obj - 0004:00000f20 ??_C@_00A@?$AA@ 00430f20 fniwin.obj - 0004:00000f24 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00430f24 fniwin.obj - 0004:00000f30 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 00430f30 fniwin.obj - 0004:00000f48 ??_C@_07JFJJ@Bad?5FTG?$AA@ 00430f48 fniwin.obj - 0004:00000f50 ??_C@_07NLCI@bad?5fni?$AA@ 00430f50 fniwin.obj - 0004:00000f58 ??_C@_0BC@IKJG@expected?5filename?$AA@ 00430f58 fniwin.obj - 0004:00000f6c ??_C@_0BA@CKAI@unexpected?5file?$AA@ 00430f6c fniwin.obj - 0004:00000f7c ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 00430f7c fniwin.obj - 0004:00000f90 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 00430f90 fniwin.obj - 0004:00000fa8 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 00430fa8 fniwin.obj - 0004:00000fb8 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 00430fb8 fniwin.obj - 0004:00000fc8 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 00430fc8 fniwin.obj - 0004:00001000 ??_C@_0P@JECG@negative?5sizes?$AA@ 00431000 groups.obj - 0004:00001010 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00431010 groups.obj - 0004:00001020 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00431020 groups.obj - 0004:00001034 ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 00431034 groups.obj - 0004:00001048 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00431048 groups.obj - 0004:00001064 ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 00431064 groups.obj - 0004:00001080 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 00431080 groups.obj - 0004:00001098 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 00431098 groups.obj - 0004:000010c0 ??_C@_08OO@wrong?5bo?$AA@ 004310c0 groups.obj - 0004:000010cc ??_C@_06NHBD@bad?5bo?$AA@ 004310cc groups.obj - 0004:000010d4 ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 004310d4 groups.obj - 0004:000010f0 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 004310f0 groups.obj - 0004:0000111c ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 0043111c groups.obj - 0004:00001138 ??_C@_07PIIM@bad?5loc?$AA@ 00431138 groups.obj - 0004:00001140 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 00431140 groups.obj - 0004:00001164 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 00431164 groups.obj - 0004:00001184 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 00431184 groups.obj - 0004:000011a4 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 004311a4 groups.obj - 0004:000011b4 ??_C@_05HCAE@oops?$CB?$AA@ 004311b4 groups.obj - 0004:000011bc ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 004311bc groups.obj - 0004:000011d8 ??_C@_05JLFG@what?$DP?$AA@ 004311d8 groups.obj - 0004:000011e0 ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 004311e0 groups.obj - 0004:00001218 ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 00431218 groups.obj - 0004:00001234 ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 00431234 groups.obj - 0004:0000124c ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 0043124c groups.obj - 0004:00001270 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 00431270 groups.obj - 0004:00001280 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 00431280 groups.obj - 0004:00001294 ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 00431294 groups.obj - 0004:000012ac ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 004312ac groups.obj - 0004:000012d4 ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 004312d4 groups.obj - 0004:000012e8 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 004312e8 groups.obj - 0004:000012fc ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 004312fc groups.obj - 0004:00001310 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 00431310 groups.obj - 0004:00001328 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 00431328 groups.obj - 0004:00001340 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 00431340 groups.obj - 0004:00001358 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 00431358 groups.obj - 0004:0000136c ??_C@_0BA@BKJJ@_clocFree?5wrong?$AA@ 0043136c groups.obj - 0004:0000137c ??_C@_0BE@CBDM@entry?5already?5free?$CB?$AA@ 0043137c groups.obj - 0004:000013b0 ??_C@_0CD@BJKN@cbExtra?5not?5multiple?5of?5size?$CIlon@ 004313b0 groups2.obj - 0004:000013d4 ??_C@_0M@GFOH@unknown?5osk?$AA@ 004313d4 groups2.obj - 0004:000013e0 ??_C@_0BL@PADL@file?5corrupt?5or?5not?5a?5GSTB?$AA@ 004313e0 groups2.obj - 0004:000013fc ??_C@_0BG@PPCE@string?5entry?5is?5free?$CB?$AA@ 004313fc groups2.obj - 0004:00001414 ??_C@_0BC@OIJF@last?5element?5free?$AA@ 00431414 groups2.obj - 0004:00001428 ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 00431428 groups2.obj - 0004:00001438 ??_C@_0BL@KJJP@first?5block?5not?5big?5enough?$AA@ 00431438 groups2.obj - 0004:00001454 ??_C@_0BM@DEGE@overlapping?5strings?5in?5GSTB?$AA@ 00431454 groups2.obj - 0004:00001470 ??_C@_0BM@GHNE@can?8t?5translate?5to?5this?5osk?$AA@ 00431470 groups2.obj - 0004:0000148c ??_C@_07PNIM@bad?5bst?$AA@ 0043148c groups2.obj - 0004:00001494 ??_C@_0O@HDCF@bad?5_cbstFree?$AA@ 00431494 groups2.obj - 0004:000014a4 ??_C@_0BA@HOMP@grst?5wrong?5size?$AA@ 004314a4 groups2.obj - 0004:000014b4 ??_C@_0BD@GPKO@_cbstFree?5is?5wrong?$AA@ 004314b4 groups2.obj - 0004:000014c8 ??_C@_0BF@BDL@rgbst?5area?5too?5small?$AA@ 004314c8 groups2.obj - 0004:000014e0 ??_C@_0BE@GGCD@grst?5area?5too?5small?$AA@ 004314e0 groups2.obj - 0004:000014f4 ??_C@_0N@GMIA@_cbEntry?5bad?$AA@ 004314f4 groups2.obj - 0004:00001504 ??_C@_08IBNI@bad?5fcmp?$AA@ 00431504 groups2.obj - 0004:00001510 ??_C@_0BA@BCJG@cbExtra?5is?5zero?$AA@ 00431510 groups2.obj - 0004:00001520 ??_C@_0BF@IGAN@bad?5_cbstFree?5in?5GST?$AA@ 00431520 groups2.obj - 0004:00001558 ?_szPoundLine@@3QADA 00431558 lex.obj - 0004:00001560 ?_mpchgrfct@LEXB@@1QAGA 00431560 lex.obj - 0004:00001660 ?_rgtt@@3QAFA 00431660 lex.obj - 0004:00001720 ?_rgttDouble@@3QAFA 00431720 lex.obj - 0004:000017d0 ?_rgttEqual@@3QAFA 004317d0 lex.obj - 0004:000018a8 ??_C@_09PGGB@why?5fail?$DP?$AA@ 004318a8 stream.obj - 0004:000018b4 ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 004318b4 stream.obj - 0004:000018cc ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 004318cc stream.obj - 0004:000018d8 ??_C@_08NKDG@wrong?5ib?$AA@ 004318d8 stream.obj - 0004:000018e4 ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 004318e4 stream.obj - 0004:00001900 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 00431900 stream.obj - 0004:00001918 ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 00431918 stream.obj - 0004:00001934 ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 00431934 stream.obj - 0004:00001948 ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 00431948 stream.obj - 0004:00001954 ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 00431954 stream.obj - 0004:0000196c ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 0043196c stream.obj - 0004:00001980 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 00431980 stream.obj - 0004:000019b0 ?_pszOom@@3PADA 004319b0 scrcom.obj - 0004:000019b4 ?_pszSyntax@@3PADA 004319b4 scrcom.obj - 0004:000019b8 ?_rgszop@@3QAUSZOP@@A 004319b8 scrcom.obj - 0004:00001b98 ?_rgarop@@3QAUAROP@@A 00431b98 scrcom.obj - 0004:00001e08 ?_rgpszKey@@3QAPADA 00431e08 scrcom.obj - 0004:00001e28 ?_rgtomeExp@@3QAUTOME@@A 00431e28 scrcom.obj - 0004:00002088 ?_rgtomeOp@@3QAUTOME@@A 00432088 scrcom.obj - 0004:0000214c ??_C@_08HOLA@Continue?$AA@ 0043214c scrcom.obj - 0004:00002158 ??_C@_05EABD@Break?$AA@ 00432158 scrcom.obj - 0004:00002160 ??_C@_05NNJC@While?$AA@ 00432160 scrcom.obj - 0004:00002168 ??_C@_03HPMG@End?$AA@ 00432168 scrcom.obj - 0004:0000216c ??_C@_04CCEF@Else?$AA@ 0043216c scrcom.obj - 0004:00002174 ??_C@_04CPFE@Elif?$AA@ 00432174 scrcom.obj - 0004:0000217c ??_C@_02BAJ@If?$AA@ 0043217c scrcom.obj - 0004:00002180 ??_C@_04POBJ@Goto?$AA@ 00432180 scrcom.obj - 0004:00002188 ??_C@_06GDJA@IfGoto?$AA@ 00432188 scrcom.obj - 0004:00002190 ??_C@_0L@KPKB@CopySubStr?$AA@ 00432190 scrcom.obj - 0004:0000219c ??_C@_06KDAM@LenStr?$AA@ 0043219c scrcom.obj - 0004:000021a4 ??_C@_0L@ICIJ@ConcatStrs?$AA@ 004321a4 scrcom.obj - 0004:000021b0 ??_C@_08HOLI@StrToNum?$AA@ 004321b0 scrcom.obj - 0004:000021bc ??_C@_08PBFD@NumToStr?$AA@ 004321bc scrcom.obj - 0004:000021c8 ??_C@_09JFKG@ScaleTime?$AA@ 004321c8 scrcom.obj - 0004:000021d4 ??_C@_09KOLA@MergeStrs?$AA@ 004321d4 scrcom.obj - 0004:000021e0 ??_C@_07MHIA@NukeStr?$AA@ 004321e0 scrcom.obj - 0004:000021e8 ??_C@_07ELLC@MoveStr?$AA@ 004321e8 scrcom.obj - 0004:000021f0 ??_C@_07PCEE@CopyStr?$AA@ 004321f0 scrcom.obj - 0004:000021f8 ??_C@_05PFIH@Pause?$AA@ 004321f8 scrcom.obj - 0004:00002200 ??_C@_05LKIE@Match?$AA@ 00432200 scrcom.obj - 0004:00002208 ??_C@_08HGHE@NextCard?$AA@ 00432208 scrcom.obj - 0004:00002214 ??_C@_0M@GGGO@ShuffleList?$AA@ 00432214 scrcom.obj - 0004:00002220 ??_C@_07MFK@Shuffle?$AA@ 00432220 scrcom.obj - 0004:00002228 ??_C@_09CAHB@SetReturn?$AA@ 00432228 scrcom.obj - 0004:00002234 ??_C@_06JCBD@Return?$AA@ 00432234 scrcom.obj - 0004:0000223c ??_C@_04LKDK@Exit?$AA@ 0043223c scrcom.obj - 0004:00002244 ??_C@_02DNIN@Go?$AA@ 00432244 scrcom.obj - 0004:00002248 ??_C@_04HAFI@GoNz?$AA@ 00432248 scrcom.obj - 0004:00002250 ??_C@_03JNBL@GoZ?$AA@ 00432250 scrcom.obj - 0004:00002254 ??_C@_04PFCA@GoLe?$AA@ 00432254 scrcom.obj - 0004:0000225c ??_C@_04HLIL@GoGe?$AA@ 0043225c scrcom.obj - 0004:00002264 ??_C@_04PGMH@GoLt?$AA@ 00432264 scrcom.obj - 0004:0000226c ??_C@_04HIGM@GoGt?$AA@ 0043226c scrcom.obj - 0004:00002274 ??_C@_04NIHF@GoNe?$AA@ 00432274 scrcom.obj - 0004:0000227c ??_C@_04FFPC@GoEq?$AA@ 0043227c scrcom.obj - 0004:00002284 ??_C@_06ININ@Select?$AA@ 00432284 scrcom.obj - 0004:0000228c ??_C@_07KEJC@RndList?$AA@ 0043228c scrcom.obj - 0004:00002294 ??_C@_07OONJ@PopList?$AA@ 00432294 scrcom.obj - 0004:0000229c ??_C@_07GBJG@DupList?$AA@ 0043229c scrcom.obj - 0004:000022a4 ??_C@_03JCDI@Rev?$AA@ 004322a4 scrcom.obj - 0004:000022a8 ??_C@_03FPBH@Rot?$AA@ 004322a8 scrcom.obj - 0004:000022ac ??_C@_04BCL@Swap?$AA@ 004322ac scrcom.obj - 0004:000022b4 ??_C@_03FBGG@Pop?$AA@ 004322b4 scrcom.obj - 0004:000022b8 ??_C@_03MKPO@Dup?$AA@ 004322b8 scrcom.obj - 0004:000022bc ??_C@_02LCLA@Le?$AA@ 004322bc scrcom.obj - 0004:000022c0 ??_C@_02DMBL@Ge?$AA@ 004322c0 scrcom.obj - 0004:000022c4 ??_C@_02LBFH@Lt?$AA@ 004322c4 scrcom.obj - 0004:000022c8 ??_C@_02DPPM@Gt?$AA@ 004322c8 scrcom.obj - 0004:000022cc ??_C@_02JPOF@Ne?$AA@ 004322cc scrcom.obj - 0004:000022d0 ??_C@_02BCGC@Eq?$AA@ 004322d0 scrcom.obj - 0004:000022d4 ??_C@_04ENMP@LNot?$AA@ 004322d4 scrcom.obj - 0004:000022dc ??_C@_04HPKA@LXor?$AA@ 004322dc scrcom.obj - 0004:000022e4 ??_C@_04LILD@BNot?$AA@ 004322e4 scrcom.obj - 0004:000022ec ??_C@_04IKNM@BXor?$AA@ 004322ec scrcom.obj - 0004:000022f4 ??_C@_03FEFN@BOr?$AA@ 004322f4 scrcom.obj - 0004:000022f8 ??_C@_04CJLN@BAnd?$AA@ 004322f8 scrcom.obj - 0004:00002300 ??_C@_06NIPH@MulDiv?$AA@ 00432300 scrcom.obj - 0004:00002308 ??_C@_03OAMN@Rnd?$AA@ 00432308 scrcom.obj - 0004:0000230c ??_C@_03PGJO@Dec?$AA@ 0043230c scrcom.obj - 0004:00002310 ??_C@_03PCMM@Inc?$AA@ 00432310 scrcom.obj - 0004:00002314 ??_C@_03GIFK@Neg?$AA@ 00432314 scrcom.obj - 0004:00002318 ??_C@_03CEPH@Abs?$AA@ 00432318 scrcom.obj - 0004:0000231c ??_C@_03PJNJ@Mod?$AA@ 0043231c scrcom.obj - 0004:00002320 ??_C@_03LANL@Div?$AA@ 00432320 scrcom.obj - 0004:00002324 ??_C@_03FPMJ@Mul?$AA@ 00432324 scrcom.obj - 0004:00002328 ??_C@_03KJKL@Sub?$AA@ 00432328 scrcom.obj - 0004:0000232c ??_C@_03KPJN@Add?$AA@ 0043232c scrcom.obj - 0004:00002330 ??_C@_0N@GABD@Syntax?5error?$AA@ 00432330 scrcom.obj - 0004:00002340 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 00432340 scrcom.obj - 0004:00002350 ??_C@_02KKOH@?$CC?5?$AA@ 00432350 scrcom.obj - 0004:00002394 ??_C@_0BF@PNMJ@Dumping?5chunk?5failed?$AA@ 00432394 chse.obj - 0004:000023ac ??_C@_09DECH@PREPACKED?$AA@ 004323ac chse.obj - 0004:000023b8 ??_C@_02OGOH@?8?5?$AA@ 004323b8 chse.obj - 0004:000023bc ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 004323bc chse.obj - 0004:000023c4 ??_C@_07POOB@0x?$CF02x?5?$AA@ 004323c4 chse.obj - 0004:000023cc ??_C@_05GLIP@?5?5?5?5?5?$AA@ 004323cc chse.obj - 0004:000023d4 ??_C@_04EHOP@BYTE?$AA@ 004323d4 chse.obj - 0004:000023dc ??_C@_05BME@?7ITEM?$AA@ 004323dc chse.obj - 0004:000023e4 ??_C@_05GJCF@?7FREE?$AA@ 004323e4 chse.obj - 0004:000023ec ??_C@_06ILO@?7?7?$CC?$CFs?$CC?$AA@ 004323ec chse.obj - 0004:000023f4 ??_C@_08DDHM@?7GST?$CI?$CFd?$CJ?$AA@ 004323f4 chse.obj - 0004:00002400 ??_C@_08NEAB@?7AST?$CI?$CFd?$CJ?$AA@ 00432400 chse.obj - 0004:0000240c ??_C@_0BG@IHJL@neither?5a?5GST?5or?5AST?$CB?$AA@ 0043240c chse.obj - 0004:0000244c ?_fEnableWarnings@@3HA 0043244c chelpdmp.obj - 0004:00002450 ??_C@_02DILL@?$CFs?$AA@ 00432450 chelpdmp.obj - 0004:00002454 ??_C@_0CJ@HHNJ@Usage?3?5?5chelpdmp?5?$DMsrcFile?$DO?5?$FL?$DMdst@ 00432454 chelpdmp.obj - 0004:00002480 ??_C@_0M@JNPO@Dump?5failed?$AA@ 00432480 chelpdmp.obj - 0004:0000248c ??_C@_0P@NCJB@Memory?5failure?$AA@ 0043248c chelpdmp.obj - 0004:0000249c ??_C@_0CB@NPNL@Couldn?8t?5create?5destination?5file@ 0043249c chelpdmp.obj - 0004:000024c0 ??_C@_0BE@FMFE@Too?5many?5file?5names?$AA@ 004324c0 chelpdmp.obj - 0004:000024d4 ??_C@_0BK@OJAK@Error?3?5Couldn?8t?5open?5?$CFs?6?6?$AA@ 004324d4 chelpdmp.obj - 0004:000024f0 ??_C@_0BL@FFAM@Error?3?5Bad?5file?5name?3?5?$CFs?6?6?$AA@ 004324f0 chelpdmp.obj - 0004:0000250c ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0043250c chelpdmp.obj - 0004:00002548 ??_C@_0EO@JHID@?6Microsoft?5?$CIR?$CJ?5Chunky?5Help?5Dump?5@ 00432548 chelpdmp.obj - 0004:00002598 ??_C@_01BJG@?6?$AA@ 00432598 chelpdmp.obj - 0004:0000259c ??_C@_04OFDJ@?3?5?$CFs?$AA@ 0043259c chelpdmp.obj - 0004:000025a4 ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 004325a4 chelpdmp.obj - 0004:000025b8 ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 004325b8 chelpdmp.obj - 0004:000025c8 ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 004325c8 chelpdmp.obj - 0004:000025d8 ??_C@_05LCJC@?$CF08lx?$AA@ 004325d8 chelpdmp.obj - 0004:000025e0 ??_C@_04JGFO@?$CF04x?$AA@ 004325e0 chelpdmp.obj - 0004:000025e8 ??_C@_04OBKB@?$CF02x?$AA@ 004325e8 chelpdmp.obj - 0004:000025f0 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 004325f0 chelpdmp.obj - 0004:000025fc ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 004325fc chelpdmp.obj - 0004:0000260c ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 0043260c chelpdmp.obj - 0004:0000261c ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 0043261c chelpdmp.obj - 0004:0000265c ??_C@_0BK@OJPL@?$CDendif?5?1?1?$CBNO_HELP_SYMBOLS?$AA@ 0043265c chelpexp.obj - 0004:00002678 ??_C@_0BI@JBLA@?$CDifndef?5NO_HELP_SYMBOLS?$AA@ 00432678 chelpexp.obj - 0004:00002690 ??_C@_08CEGN@ENDCHUNK?$AA@ 00432690 chelpexp.obj - 0004:0000269c ??_C@_0BA@PCFC@?50x?$CFx?50x?$CFx?50x?$CFx?$AA@ 0043269c chelpexp.obj - 0004:000026ac ??_C@_0N@DGEF@?7BO?5OSK?5LONG?$AA@ 004326ac chelpexp.obj - 0004:000026bc ??_C@_0BL@NJBI@?$CDendif?5?1?1HELP_SINGLE_CHUNK?$AA@ 004326bc chelpexp.obj - 0004:000026d8 ??_C@_07KLIJ@SUBFILE?$AA@ 004326d8 chelpexp.obj - 0004:000026e0 ??_C@_0DI@INKG@CHUNK?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?5__HELP_@ 004326e0 chelpexp.obj - 0004:00002718 ??_C@_0BB@EFDA@SET?5_help_?$CFx_?$CFx?$DN?$AA@ 00432718 chelpexp.obj - 0004:0000272c ??_C@_0CB@BLLE@?$CDdefine?5__HELP_PACK2?5__HELP_PACK@ 0043272c chelpexp.obj - 0004:00002750 ??_C@_0BF@CHGJ@?$CDdefine?5__HELP_PACK2?$AA@ 00432750 chelpexp.obj - 0004:00002768 ??_C@_0BJ@GMCJ@?$CDifdef?5HELP_SINGLE_CHUNK?$AA@ 00432768 chelpexp.obj - 0004:00002784 ??_C@_0BE@NHCM@?$CDdefine?5__HELP_PACK?$AA@ 00432784 chelpexp.obj - 0004:00002798 ??_C@_0BJ@NJLM@?$CDdefine?5__HELP_PACK?5PACK?$AA@ 00432798 chelpexp.obj - 0004:000027b4 ??_C@_0BB@GPGI@?$CDifdef?5PACK_HELP?$AA@ 004327b4 chelpexp.obj - 0004:000027c8 ??_C@_0CD@DBDP@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?5stu@ 004327c8 chelpexp.obj - 0004:000027ec ??_C@_0BN@PCDE@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?$AA@ 004327ec chelpexp.obj - 0004:0000280c ??_C@_0BH@GHBL@?$CDifdef?5NO_HELP_SYMBOLS?$AA@ 0043280c chelpexp.obj - 0004:00002824 ??_C@_06HHGP@?$CDendif?$AA@ 00432824 chelpexp.obj - 0004:0000282c ??_C@_0BP@ONNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5name?$AA@ 0043282c chelpexp.obj - 0004:0000284c ??_C@_05GMMC@?$CDelse?$AA@ 0043284c chelpexp.obj - 0004:00002854 ??_C@_0BN@DPNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5?$CC?$CC?$AA@ 00432854 chelpexp.obj - 0004:00002874 ??_C@_0BF@EKJL@?$CDifdef?5NO_HELP_NAMES?$AA@ 00432874 chelpexp.obj - 0004:0000288c ??_C@_0BE@HDN@?$CDundef?5__HELP_PACK2?$AA@ 0043288c chelpexp.obj - 0004:000028a0 ??_C@_0BD@IDIM@?$CDundef?5__HELP_PACK?$AA@ 004328a0 chelpexp.obj - 0004:000028b4 ??_C@_0BF@NAGJ@?$CDundef?5__HELP_SYMBOL?$AA@ 004328b4 chelpexp.obj - 0004:000028cc ??_C@_0BD@EKLA@?$CDundef?5__HELP_NAME?$AA@ 004328cc chelpexp.obj - 0004:000028e0 ??_C@_05OKLJ@WINBO?$AA@ 004328e0 chelpexp.obj - 0004:000028e8 ??_C@_05JOF@MACBO?$AA@ 004328e8 chelpexp.obj - 0004:000028f0 ??_C@_04EJID@PACK?$AA@ 004328f0 chelpexp.obj - 0004:000028f8 ??_C@_0CA@EOFJ@PARENT?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?50x?$CFx?$CJ?$AA@ 004328f8 chelpexp.obj - 0004:00002918 ??_C@_0DH@PBIG@CHUNK?$CI?8?$CFf?8?0?5_help_cno?0?5__HELP_NA@ 00432918 chelpexp.obj - 0004:00002950 ??_C@_0BK@IAEE@SET?5_help_?$CFx_?$CFx?$DN_help_cno?$AA@ 00432950 chelpexp.obj - 0004:0000296c ??_C@_0BA@MCEC@SET?5_help_cno?$CL?$CL?$AA@ 0043296c chelpexp.obj - 0004:0000297c ??_C@_05DOL@?7?7VAR?$AA@ 0043297c chelpexp.obj - 0004:00002984 ??_C@_02GDLA@?$DL?5?$AA@ 00432984 chelpexp.obj - 0004:00002988 ??_C@_0BF@KPBE@?5__HELP_SYMBOL?$CI?5STN?5?$AA@ 00432988 chelpexp.obj - 0004:000029a0 ??_C@_04BKHJ@0x?$CFx?$AA@ 004329a0 chelpexp.obj - 0004:000029a8 ??_C@_0BB@ODIA@?7?7VAR?5LONG?5?8?$CFf?8?5?$AA@ 004329a8 chelpexp.obj - 0004:000029bc ??_C@_0BA@FOKJ@bad?5button?5data?$AA@ 004329bc chelpexp.obj - 0004:000029cc ??_C@_0CI@MFKF@?7?7VAR?5LONG?5?8?$CFf?8?5?$CFs?5__HELP_SYMBOL@ 004329cc chelpexp.obj - 0004:000029f4 ??_C@_0BD@EBFA@bad?5picture?5data?52?$AA@ 004329f4 chelpexp.obj - 0004:00002a08 ??_C@_0BB@GMFO@bad?5picture?5data?$AA@ 00432a08 chelpexp.obj - 0004:00002a1c ??_C@_03JPGF@?$CC?5?$CJ?$AA@ 00432a1c chelpexp.obj - 0004:00002a20 ??_C@_0CL@LBJB@?7?7VAR?5BYTE?5?$CFd?5LONG?5?$CFs?5__HELP_SYM@ 00432a20 chelpexp.obj - 0004:00002a4c ??_C@_0P@FHNJ@bad?5group?5data?$AA@ 00432a4c chelpexp.obj - 0004:00002a5c ??_C@_0BA@BFNE@?7ITEM?5LONG?50x?$CFx?$AA@ 00432a5c chelpexp.obj - 0004:00002a6c ??_C@_05JMLE@AG?$CI4?$CJ?$AA@ 00432a6c chelpexp.obj - 0004:00002a74 ??_C@_05BOND@?50x?$CFx?$AA@ 00432a74 chelpexp.obj - 0004:00002aa0 ??_C@_03HHKO@?$CFs?6?$AA@ 00432aa0 mssio.obj - 0004:00002c04 __fltused 00432c04 LIBC:fpinit.obj - 0004:00002c08 __ldused 00432c08 LIBC:fpinit.obj - 0004:00002c0c ___fastflag 00432c0c LIBC:fpinit.obj - 0004:00002c10 __adjust_fdiv 00432c10 LIBC:fpinit.obj - 0004:00002c14 __FPinit 00432c14 LIBC:fpinit.obj - 0004:00002c18 __FPmtinit 00432c18 LIBC:fpinit.obj - 0004:00002c1c __FPmtterm 00432c1c LIBC:fpinit.obj - 0004:00002c20 __iob 00432c20 LIBC:_file.obj - 0004:00002ea0 __lastiob 00432ea0 LIBC:_file.obj - 0004:00002ea4 __aenvptr 00432ea4 LIBC:crt0.obj - 0004:00002ea8 __wenvptr 00432ea8 LIBC:crt0.obj - 0004:00002eac __aexit_rtn 00432eac LIBC:crt0.obj - 0004:00002eb0 _errno 00432eb0 LIBC:crt0dat.obj - 0004:00002eb4 __doserrno 00432eb4 LIBC:crt0dat.obj - 0004:00002eb8 __umaskval 00432eb8 LIBC:crt0dat.obj - 0004:00002ebc __osver 00432ebc LIBC:crt0dat.obj - 0004:00002ec0 __winver 00432ec0 LIBC:crt0dat.obj - 0004:00002ec4 __winmajor 00432ec4 LIBC:crt0dat.obj - 0004:00002ec8 __winminor 00432ec8 LIBC:crt0dat.obj - 0004:00002ecc ___argc 00432ecc LIBC:crt0dat.obj - 0004:00002ed0 ___argv 00432ed0 LIBC:crt0dat.obj - 0004:00002ed4 ___wargv 00432ed4 LIBC:crt0dat.obj - 0004:00002ed8 __environ 00432ed8 LIBC:crt0dat.obj - 0004:00002edc ___initenv 00432edc LIBC:crt0dat.obj - 0004:00002ee0 __wenviron 00432ee0 LIBC:crt0dat.obj - 0004:00002ee4 ___winitenv 00432ee4 LIBC:crt0dat.obj - 0004:00002ee8 __pgmptr 00432ee8 LIBC:crt0dat.obj - 0004:00002eec __wpgmptr 00432eec LIBC:crt0dat.obj - 0004:00002ef0 __exitflag 00432ef0 LIBC:crt0dat.obj - 0004:00002ef4 __C_Termination_Done 00432ef4 LIBC:crt0dat.obj - 0004:00002ef8 __pnhHeap 00432ef8 LIBC:malloc.obj - 0004:00002f60 __cfltcvt_tab 00432f60 LIBC:cmiscdat.obj - 0004:00002f90 __stdbuf 00432f90 LIBC:_sftbuf.obj - 0004:00002fa0 ___nullstring 00432fa0 LIBC:output.obj - 0004:00002fb4 ___wnullstring 00432fb4 LIBC:output.obj - 0004:00002fb8 __XcptActTab 00432fb8 LIBC:winxfltr.obj - 0004:00003030 __First_FPE_Indx 00433030 LIBC:winxfltr.obj - 0004:00003034 __Num_FPE 00433034 LIBC:winxfltr.obj - 0004:00003038 __XcptActTabCount 00433038 LIBC:winxfltr.obj - 0004:0000303c __fpecode 0043303c LIBC:winxfltr.obj - 0004:00003040 __pxcptinfoptrs 00433040 LIBC:winxfltr.obj - 0004:00003048 __mbctype 00433048 LIBC:mbctype.obj - 0004:0000314c ___mbcodepage 0043314c LIBC:mbctype.obj - 0004:00003150 ___mblcid 00433150 LIBC:mbctype.obj - 0004:00003158 ___mbulinfo 00433158 LIBC:mbctype.obj - 0004:00003260 __nhandle 00433260 LIBC:ioinit.obj - 0004:00003268 __osfile 00433268 LIBC:ioinit.obj - 0004:000032a8 __osfhnd 004332a8 LIBC:ioinit.obj - 0004:000033a8 __pipech 004333a8 LIBC:ioinit.obj - 0004:000033e8 __heap_desc 004333e8 LIBC:heapinit.obj - 0004:000033fc __heap_resetsize 004333fc LIBC:heapinit.obj - 0004:00003400 __amblksiz 00433400 LIBC:heapinit.obj - 0004:00003404 __heap_regionsize 00433404 LIBC:heapinit.obj - 0004:00003408 __heap_maxregsize 00433408 LIBC:heapinit.obj - 0004:00003678 __adbgmsg 00433678 LIBC:crt0msg.obj - 0004:0000367c __newmode 0043367c LIBC:_newmode.obj - 0004:00003680 ___mb_cur_max 00433680 LIBC:nlsdata1.obj - 0004:00003688 ___decimal_point 00433688 LIBC:nlsdata1.obj - 0004:0000368c ___decimal_point_length 0043368c LIBC:nlsdata1.obj - 0004:00003690 __pctype 00433690 LIBC:ctype.obj - 0004:00003694 __pwctype 00433694 LIBC:ctype.obj - 0004:00003698 __ctype 00433698 LIBC:ctype.obj - 0004:000038d0 __cflush 004338d0 LIBC:fflush.obj - 0004:00003978 ___lc_handle 00433978 LIBC:nlsdata2.obj - 0004:00003990 ___lc_codepage 00433990 LIBC:nlsdata2.obj - 0004:000039b4 ___invalid_mb_chars 004339b4 LIBC:setmbval.obj - 0004:00003b28 __pow10pos 00433b28 LIBC:constpow.obj - 0004:00003c88 __pow10neg 00433c88 LIBC:constpow.obj - 0004:00003de4 ___xc_a 00433de4 LIBC:crt0init.obj - 0004:00003e54 ___xc_z 00433e54 LIBC:crt0init.obj - 0004:00003e58 ___xi_a 00433e58 LIBC:crt0init.obj - 0004:00003e64 ___xi_z 00433e64 LIBC:crt0init.obj - 0004:00003e68 ___xp_a 00433e68 LIBC:crt0init.obj - 0004:00003e70 ___xp_z 00433e70 LIBC:crt0init.obj - 0004:00003e74 ___xt_a 00433e74 LIBC:crt0init.obj - 0004:00003e78 ___xt_z 00433e78 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00434000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00434014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00434028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0043403c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00434050 kernel32:KERNEL32.dll - 0005:00000130 __imp__DeleteCriticalSection@4 00434130 kernel32:KERNEL32.dll - 0005:00000134 __imp__IsBadReadPtr@8 00434134 kernel32:KERNEL32.dll - 0005:00000138 __imp__GlobalAlloc@8 00434138 kernel32:KERNEL32.dll - 0005:0000013c __imp__GlobalFree@4 0043413c kernel32:KERNEL32.dll - 0005:00000140 __imp__EnterCriticalSection@4 00434140 kernel32:KERNEL32.dll - 0005:00000144 __imp__LeaveCriticalSection@4 00434144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GetCurrentThreadId@0 00434148 kernel32:KERNEL32.dll - 0005:0000014c __imp__GlobalReAlloc@12 0043414c kernel32:KERNEL32.dll - 0005:00000150 __imp__GlobalSize@4 00434150 kernel32:KERNEL32.dll - 0005:00000154 __imp__CompareStringA@24 00434154 kernel32:KERNEL32.dll - 0005:00000158 __imp__WideCharToMultiByte@32 00434158 kernel32:KERNEL32.dll - 0005:0000015c __imp__IsBadWritePtr@8 0043415c kernel32:KERNEL32.dll - 0005:00000160 __imp__CreateFileA@28 00434160 kernel32:KERNEL32.dll - 0005:00000164 __imp__CloseHandle@4 00434164 kernel32:KERNEL32.dll - 0005:00000168 __imp__DeleteFileA@4 00434168 kernel32:KERNEL32.dll - 0005:0000016c __imp__FlushFileBuffers@4 0043416c kernel32:KERNEL32.dll - 0005:00000170 __imp__SetFilePointer@16 00434170 kernel32:KERNEL32.dll - 0005:00000174 __imp__SetEndOfFile@4 00434174 kernel32:KERNEL32.dll - 0005:00000178 __imp__ReadFile@20 00434178 kernel32:KERNEL32.dll - 0005:0000017c __imp__WriteFile@20 0043417c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetFullPathNameA@16 00434180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetTempPathA@8 00434184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetLastError@0 00434188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetFileAttributesA@4 0043418c kernel32:KERNEL32.dll - 0005:00000190 __imp__InitializeCriticalSection@4 00434190 kernel32:KERNEL32.dll - 0005:00000194 __imp__LoadLibraryA@4 00434194 kernel32:KERNEL32.dll - 0005:00000198 __imp__GetProcAddress@8 00434198 kernel32:KERNEL32.dll - 0005:0000019c __imp__SetStdHandle@8 0043419c kernel32:KERNEL32.dll - 0005:000001a0 __imp__ExitProcess@4 004341a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__MultiByteToWideChar@24 004341a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__GetStartupInfoA@4 004341a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__GetFileType@4 004341ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__GetStdHandle@4 004341b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__VirtualAlloc@16 004341b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__VirtualFree@12 004341b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__GetEnvironmentStrings@0 004341bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__GetCommandLineA@0 004341c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__GetVersion@0 004341c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__GetOEMCP@0 004341c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__GetCPInfo@8 004341cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__GetModuleHandleA@4 004341d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__RtlUnwind@16 004341d4 kernel32:KERNEL32.dll - 0005:000001d8 __imp__UnhandledExceptionFilter@4 004341d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__GetModuleFileNameA@12 004341dc kernel32:KERNEL32.dll - 0005:000001e0 __imp__GetACP@0 004341e0 kernel32:KERNEL32.dll - 0005:000001e4 \177KERNEL32_NULL_THUNK_DATA 004341e4 kernel32:KERNEL32.dll - 0005:000001e8 __imp__CharUpperBuffA@8 004341e8 user32:USER32.dll - 0005:000001ec \177USER32_NULL_THUNK_DATA 004341ec user32:USER32.dll - 0005:000001f0 __imp__timeGetTime@0 004341f0 winmm:WINMM.dll - 0005:000001f4 \177WINMM_NULL_THUNK_DATA 004341f4 winmm:WINMM.dll - 0005:000001f8 \177comdlg32_NULL_THUNK_DATA 004341f8 comdlg32:comdlg32.dll - - entry point at 0001:000272d6 - - Static symbols - - 0001:000262c0 _$$8000 004272c0 f mssio.obj - 0001:00026320 _$$1000 00427320 f mssio.obj - 0001:00024f10 _$$1000 00425f10 f chelpexp.obj - 0001:00024f30 ?_FWriteHelpChunk@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 00425f30 f chelpexp.obj - 0001:000252d0 ?_FWriteHelpPropAg@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 004262d0 f chelpexp.obj - 0001:00025df0 ?_AppendHelpStnLw@@YGXPAVSTN@@PAVGST@@JJ@Z 00426df0 f chelpexp.obj - 0001:00025f20 _$$e200 00426f20 f chelpexp.obj - 0001:00025f80 _$$8000 00426f80 f chelpexp.obj - 0001:00024660 _$$1000 00425660 f chelpdmp.obj - 0001:00024680 _$$8000 00425680 f chelpdmp.obj - 0001:00023780 _$$1000 00424780 f chse.obj - 0001:00023f00 _$$8000 00424f00 f chse.obj - 0001:000231b0 _$$8000 004241b0 f screxe.obj - 0001:000231d0 _$$1000 004241d0 f screxe.obj - 0001:000231f0 _$$9000 004241f0 f screxe.obj - 0001:00023170 _$$1000 00424170 f scrcom.obj - 0001:00023190 _$$8000 00424190 f scrcom.obj - 0001:00021c10 _$$1000 00422c10 f stream.obj - 0001:00023110 _$$8000 00424110 f stream.obj - 0001:00021b00 _$$1000 00422b00 f lex.obj - 0001:00021b20 _$$8000 00422b20 f lex.obj - 0001:0001fe50 _$$1000 00420e50 f groups2.obj - 0001:00021a00 _$$8000 00422a00 f groups2.obj - 0001:0001a9c0 _$$1000 0041b9c0 f groups.obj - 0001:0001f660 _$$8000 00420660 f groups.obj - 0001:00018920 _$$8000 00419920 f fniwin.obj - 0001:00018dc0 _$$1000 00419dc0 f fniwin.obj - 0001:0001a310 _$$9000 0041b310 f fniwin.obj - 0001:0001a330 _$$a000 0041b330 f fniwin.obj - 0001:0001a350 _$$b000 0041b350 f fniwin.obj - 0001:00018300 _$$1000 00419300 f filewin.obj - 0001:00018900 _$$8000 00419900 f filewin.obj - 0001:00014e10 _$$8000 00415e10 f file.obj - 0001:00015370 _$$1000 00416370 f file.obj - 0001:00017b80 _$$9000 00418b80 f file.obj - 0001:00017ba0 _$$a000 00418ba0 f file.obj - 0001:00017bc0 _$$b000 00418bc0 f file.obj - 0001:00014dd0 _$$1000 00415dd0 f crf.obj - 0001:00014df0 _$$8000 00415df0 f crf.obj - 0001:0000d7a0 _$$1000 0040e7a0 f codkauai.obj - 0001:00014db0 _$$8000 00415db0 f codkauai.obj - 0001:0000c8a0 _$$1000 0040d8a0 f codec.obj - 0001:0000d270 _$$8000 0040e270 f codec.obj - 0001:00007150 _$$1000 00408150 f chunk.obj - 0001:0000c240 _$$8000 0040d240 f chunk.obj - 0001:00006d40 _$$1000 00407d40 f memwin.obj - 0001:00006e10 _$$8000 00407e10 f memwin.obj - 0001:00004630 _$$1000 00405630 f utilstr.obj - 0001:00006830 _$$8000 00407830 f utilstr.obj - 0001:00003d40 _$$1000 00404d40 f utilrnd.obj - 0001:00004220 _$$8000 00405220 f utilrnd.obj - 0001:00002e10 _$$1000 00403e10 f utilmem.obj - 0001:00003870 _$$8000 00404870 f utilmem.obj - 0001:00002270 _$$1000 00403270 f utilint.obj - 0001:000028c0 _$$8000 004038c0 f utilint.obj - 0001:00001a30 _$$8000 00402a30 f utilerro.obj - 0001:00001f70 _$$1000 00402f70 f utilerro.obj - 0001:000021a0 _$$9000 004031a0 f utilerro.obj - 0001:000021c0 _$$a000 004031c0 f utilerro.obj - 0001:000021e0 _$$b000 004031e0 f utilerro.obj - 0001:000017a0 _$$1000 004027a0 f utilcopy.obj - 0001:00001a10 _$$8000 00402a10 f utilcopy.obj - 0001:00000b10 _$$1000 00401b10 f base.obj - 0001:00001490 _$$8000 00402490 f base.obj - 0001:000004d0 _$$8000 004014d0 f util.obj - 0001:000004f0 _$$1000 004014f0 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:0002a6ac _strncnt 0042b6ac f LIBC:aw_map.obj - 0001:0002a4f8 __before 0042b4f8 f LIBC:heapadd.obj - 0001:00029fc3 _flsall 0042afc3 f LIBC:fflush.obj - 0001:00029534 __abstract_cw 0042a534 f LIBC:ieee87.obj - 0001:000295c7 __hw_cw 0042a5c7 f LIBC:ieee87.obj - 0001:00029287 __heap_new_region 0042a287 f LIBC:heapgrow.obj - 0001:00028fe5 __heap_grow_emptylist 00429fe5 f LIBC:heapinit.obj - 0001:00028c99 _getSystemCP 00429c99 f LIBC:mbctype.obj - 0001:00028cd4 _CPtoLCID 00429cd4 f LIBC:mbctype.obj - 0001:00028d13 _setSBCS 00429d13 f LIBC:mbctype.obj - 0001:00028acf _parse_cmdline 00429acf f LIBC:stdargv.obj - 0001:00028941 _xcptlookup 00429941 f LIBC:winxfltr.obj - 0001:00028744 __unwind_handler 00429744 f LIBC:exsup.obj - 0001:00028647 _write_char 00429647 f LIBC:output.obj - 0001:00028687 _write_multi_char 00429687 f LIBC:output.obj - 0001:000286b8 _write_string 004296b8 f LIBC:output.obj - 0001:000286ef _get_int_arg 004296ef f LIBC:output.obj - 0001:000286fe _get_int64_arg 004296fe f LIBC:output.obj - 0001:00028712 _get_short_arg 00429712 f LIBC:output.obj - 0001:00027acd __cftoe_g 00428acd f LIBC:cvt.obj - 0001:00027bee __cftof_g 00428bee f LIBC:cvt.obj - 0001:00027d0a __shift 00428d0a f LIBC:cvt.obj - 0001:000275d6 __heap_expand_block 004285d6 f LIBC:realloc.obj - 0001:00027441 _doexit 00428441 f LIBC:crt0dat.obj - 0001:000274c0 __initterm 004284c0 f LIBC:crt0dat.obj - -FIXUPS: 282ca ffffffa3 14 c ffffff8b 5 a fffff233 ffffff46 1e 12 44 13 -FIXUPS: 2743a 1250 e c 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 12 11 11 -FIXUPS: 28496 12 fffffe8a c 5 10 10 5 1c 9 15 f 1f 9 fffffec9 18 1423 fffff662 -FIXUPS: 28d84 46 29 fffffa9e 21 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d -FIXUPS: 28c55 47 11 2c 16 13 29 fffffa90 9a ffffff10 fffffee9 2d 133f 2a -FIXUPS: 299f5 fffffdf5 ffffff4e fffff7c8 4c 9b 1d 6d 10 6b 4f 24 6b 6a -FIXUPS: 29264 14 16 11 ab 17 ff 96 14 1c 2d 16 1d 1b cb 3a 1018 ffffff99 -FIXUPS: 2a4f1 17 24 fffffd3d c 75 d 96 d c 32 fffffe42 ffffffae ffffff6f -FIXUPS: 2a14f ffffff70 d 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 -FIXUPS: 29a9a 19 fffffef2 15df 37 2f 19 2b e fffffc72 1a fffffb77 17 67 -FIXUPS: 2a8cb 177 1a 1d 12 1f 20 d f 13 17 13 22 5b 16 22 f 22 f fffffafe -FIXUPS: 2a77a 12ed e 9 29 4d fffffc51 c2 75 c 1e 77 c fffffd3a 38 fffffc2c -FIXUPS: 2b2d7 10 18 a1 3e 24 d 41 34 fffffd88 d 2b 1a 1f fffffc99 b 21 -FIXUPS: 2c95d 47 3e 110 fffffcde ffffff4f ffffffaf 26 ffffff87 fffffead -FIXUPS: 2c61b fffffe7e fffffe65 1a 65 1d 2b c 10 c fffff8cd c5 92 10e 49 -FIXUPS: 2c02e 4f fffff8ed 14 18 18 b0 fffd57bb e 32 13 3d 2c 24 e 13 1f -FIXUPS: 134c 1d e 13 1f e 32 e 13 1f 30 30 2b890 ffffff8c c d 20 d ffffff40 -FIXUPS: 2cc36 b 1b fffd487b 42 e 22 30 e fffffa9b 27 f 21 33 a c c a 14 -FIXUPS: 10f6 26 a a a a a a 24 1b 5 5 18 13 1d 13 f32 1b e 42 26 d 1d 23 -FIXUPS: 2228 36 d 4f d 7b d 4a 20 12 1b 2d d 20 29 d 21 22 e 13 1f 35 6b -FIXUPS: 25c9 fffff840 10 19 25 b 13 10 2b d 31 d 34 d 2c d 13 2e d 20 35 -FIXUPS: 2025 a 18 b b 19 35 5 17 b 38 1f fffff8d4 3a 1e 9 90 5 66 c c 14 -FIXUPS: 1ba4 39 1c 11 13 32 d 32 d 10 27 d a 9 e 5 24 23 48 d 1e 17 bc6 -FIXUPS: 2a17 ffffebab 27 f 21 30 30 70 30 29 14 18 e 14 5 38 1f 20 1d 23 -FIXUPS: 1882 d 2a 23 3e 4f e 5 a d 28 186c 12 e 13 fffff3c8 d 53 d 43 d -FIXUPS: 2732 10 10 d 11 6 10 43 13 d d 53 13 d d 6c d d 36 d 43 d 42c 1d -FIXUPS: 2e09 23 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 90 67 -FIXUPS: 3179 10 23 20 1b 5 5 18 16 65d 4b 22 e 13 1d fffff115 36 27 f 21 -FIXUPS: 2af9 e b 37 29 16 15 15 14 e 5b 9 1a 6b 20 2c 23 16 b 27 10 648 -FIXUPS: 33d9 20 13 24 58 81 13 b a 10 58 13 b a 10 78 39 d 12 3a d 36 d -FIXUPS: 37c9 e 14 5 39 1d 13 12 d73 14 1b 2a d 2b d 20 2a d 17 15 2c d -FIXUPS: 4747 22 37 d 10 c 33 d 20 18 b 2b ffffea3d d 7e d 4a d ea6 e 1e -FIXUPS: 4281 d 11 14 3a a 49 d 23 1d 1f d f 33 d 3b d 2f d 4b d 1e 27 1f -FIXUPS: 4553 2a d 1a 2d fffff8b2 c 27 d 2b 36 d 29 d 35 d 2a 6 3f 2d 1e -FIXUPS: 4077 42 d 17 55 6 28 6 30 6 19 f 2b a 12 f fffff82f 10 31 1f 40 -FIXUPS: 3af7 10 27 d 17 1c 18 a 24 d 42 2d 1b 14 65 19 3b 9d a 9 f 12 50 -FIXUPS: 3e47 10 10 f 1097 5c 23 1b 46 d 3c d 14 27 2f 3c 23 1b 32 23 47 -FIXUPS: 51e2 1b 2a 22 e 13 1f e 13 ffffe69f 17 3c 1d 10 58 112a 4e 30 2c -FIXUPS: 4c0c d 20 10 19 c 10 1d d 2c d 28 10 8 c 3c 23 1b c 3e d 11 44 -FIXUPS: 4e79 23 2d d 11 2742 9 36 d 94 2e d 77 20 d 21 c 22 ffffd07b 27 -FIXUPS: 48e8 21 49 27 f 21 30 e 18 e 26 36 23 1b 58 d 2d 2530 13 4d d 53 -FIXUPS: 713c d 10 d 27 44 1d 17 42 52 13 d 10 d 66 d 1a 46 13 d a0 10 9 -FIXUPS: 748f e5 49 5c fffff495 17e 3d 23 2d 23 3d f d 24 14 1a 2b d 51 -FIXUPS: 6e1d 2c e 1a 1d 9 84 2e e 4a d 16 25 13 d 10 d fffff067 1c 29 1b -FIXUPS: 60fa b 2cd a 75 23 d d e 14 15 14e d 98 d6 2e d 71 d 55 6d 90 23 -FIXUPS: 69e9 23 2d 29 27 fffff0db b 2f 3d 6 1d 48 6 36 37 33 34 6 57 6 -FIXUPS: 5da1 50 6 38 6 ad 45 8 1a 90 23 19 8 10 32 14 d fffff7c3 d 3a 15 -FIXUPS: 58d5 34 23 1b d 8 1b 32 23 1b d 14 9 6 22 23 13 1a 23 13 a 15 8 -FIXUPS: 5af5 a 1a 23 1b fffff862 23 1b d 30 3c 29 23 16 c 1b 23 1b 8 12 -FIXUPS: 557a d 53 36 49 23 1b d f 45 36 2b 23 1b d f 13 23b3 c b 2e d 2e -FIXUPS: 7c05 b 28 d 34 25 d 15 2d d 1d 12 4c b 6 63 d 21 ffffd4b2 23 32 -FIXUPS: 533e d d 11 1d 7f73 13 1d e 13 1f ffffa4f0 e 10 29 61 38 e b 10 -FIXUPS: 7976 25 d 4d 2c 23 25 e 1c d 2e d 17 27 c b 2b 515c 22 23 32 23 -FIXUPS: cd5e 76 22 33 23 16 b b 36 6d 42 46 ab 1e 25 b9 1f 1f 5a 30 35 -FIXUPS: d269 12 1e 20 e 13 fffff4e4 2b 23 16 14 20 d 20 37 d 20 10c 36 -FIXUPS: ca37 14 31 2d 2c 45 1f 10 10 10 35 23 d 32 35 d 27 23 13 fffff744 -FIXUPS: c402 17 53 2d 23 1f 20 d 1d 34 23 16 10 14 20 d 1f 1d 18 22 1d -FIXUPS: c686 19 20 d 3a d 26 23 16 1c fffff966 d 17 21 23 16 c 27 23 d -FIXUPS: c1ed f 13 12 f 1e 6 9 10 b 8 39 23 1b b b 27 16 12 24 15 23 fffff8ed -FIXUPS: bce1 d 35 2d 2e 36 d 30 1e 24 d 3b d 2d 36 d 31 21 24 d 3b d 24 -FIXUPS: c00a 1f 23 32 23 d 19 20 fffff5ae 39 23 d 58 1a 93 25 22 3f 23 -FIXUPS: b8c2 2d 23 d 10 56 a4 1b 25 23 3d d 66 d 44 55 23 d 2f d 32 fffff60e -FIXUPS: b2b9 23 32 23 d 15 11 d d 1b 23 32 1f 1a 21 21 23 2d d 27 d c 43 -FIXUPS: b56c 1b b 25 d 5b 22 47 fffff7f7 31 d 39 1e 47 18 20 6 20 30 23 -FIXUPS: b022 11 d 10 31 25 15 1b 1a 18 d 54 23 16 2e 19 d 37 31 23 fffff6e1 -FIXUPS: a96a 2b 49 37 c 2f c 1e 16 13 43 1a 5b 9e 14 1c 11 1f 30 30 30 -FIXUPS: ad19 1f 21 1f 21 30 23 41 d 38 fffff6b0 25 42 6 6 20 b 26 3d 40 -FIXUPS: a671 1e 6 c 13 23 e 2c d 3c 41 19 32 24 1a 68 6 d 21 16 18 d fffff5d3 -FIXUPS: 9ee9 29 3e 23 d 3b d 10 58 d 13 39 6b f 7a 21 24 6a 2e 40 e 60 -FIXUPS: a349 5c 32 21 1a 61 6 79 1d fffff690 1f d 15 1c 17 d 15 12 14 20 -FIXUPS: 9c88 f 18 30 46 1d 1e 15 33 d 15 1c d 1e 18 30 d 22 15 12 a fffff880 -FIXUPS: 97b9 30 30 11 16 39 30 1b 25 23 13 18 1d 1d 1d 2b 11 1b 2c 21 17 -FIXUPS: 9a67 17 2a 20 d 14 30 46 14 17 fffff72f 43 d 2f 41 34 d 4a d 46 -FIXUPS: 9464 1a 20 d 23 16 23 2d 20 d 5c 2d 20 d 53 d f 23 11 1f 17 19 -FIXUPS: 8e6e 10 1c 2c d 31 d 1d 6 8 4b d 50 13 17 22 d 35 d 6f d 50 d 2f -FIXUPS: 9194 32 d 2f 32 30 d 3b fffff812 23 d 3e d 2f d 48 23 d 48 23 d -FIXUPS: 8c94 d 38 22 15 32 12 f 18 10 a 20 d 2f 30 d 1a 18 6 fffff643 d -FIXUPS: 84c4 29 34 d 5b 50 40 30 30 30 23 1a c e 3d 3f 7d 23 30 d 80 19 -FIXUPS: 8999 d 38 23 d 38 23 d fffff4b2 21 30 e 16 1d 2f 2c 126 3e 2d 23 -FIXUPS: 81d6 27 d e 1b 2b 14 15 30 1b 1a 5e 1d d 2f 23 d 36 50 2d 5a2c -FIXUPS: dec0 29 16 d 10 d b cc f e f f f f f f 46 24 33 ac d aa 22 e 13 -FIXUPS: 7e52 27 f 21 49 27 5bb5 10 1a f 22 24 6c 23 16 22 d 60 29 4f 23 -FIXUPS: dd32 b b e 30 2c 1a 14 24 b 13 10 21 d e 1a 1d fffff715 2f 2c 50 -FIXUPS: d68e 60 1b 10 22 d 32 38 27 10 8 18 1d 29 12 22 46 23 32 23 d 1b -FIXUPS: d9d9 23 4d 23 32 23 5ab3 1c 59 23 1b d 10 d b 1a 27 d 58 d 3e d -FIXUPS: 15d83 d 27 ffff760b 27 f 21 49 27 f 21 30 e 30 2a d 5b2f 36 d 1d -FIXUPS: 13181 d 2a 1e 1a 2b 26 1d d 39 3c 49 23 ab d 2d 22 d 11 22 1f 15 -FIXUPS: 134d7 1d d 2f e 1f ffffbb4d 58 d 3e d 3b41 d 21 23 1b d 10 d b -FIXUPS: 12d6a 3d a 2b a 1c 1b a 90 10 c 1d d 68 d 44 7a d ffffbc39 24 2e -FIXUPS: ecef c2 d 2d 22 d 15 1e 1f 15 10 1d d 2f e 1f 17 1c 3f 30 30 23 -FIXUPS: f027 d 10 d b 1a 27 fffff6c2 22 48 23 1b d 10 d b 2e 3d a 2b a -FIXUPS: e902 1b a 90 10 c 1d d 50 d 44 7a d 50 36 d 1d 94 a08f 21 30 13 -FIXUPS: 18d79 e 13 ffffd05d ffff84fb 27 f 21 30 23 1b d 10 d b 38 21 2b -FIXUPS: e491 48 13 4d 28 b6 d b5 32 d a1a6 84 37 23 38 47 2e 23 38 1f 9 -FIXUPS: 18af8 10 31 23 30 20 1b 5 5 18 e 13 1f e 13 1f e 13 1f e 32 fffff7f9 -FIXUPS: 184ef 43 d 11 c 16 18 2f d 34 d 22 10 8 c 1c e 30 3f 23 2c 45 1f -FIXUPS: 187a9 2d 30 17 20 d 1f 23 fffff7a3 9 f 4d 65 23 16 67 23 3e 1e -FIXUPS: 18229 1d 20 2a 19 16 11 2c d 17 25 28 2d 2f 30 10 41 23 d 2a d -FIXUPS: 17bf0 1e 6 20 d 30 26 11 33 d 4a 27 23 18 2f d 1e 6 20 d 30 22 -FIXUPS: 17e88 33 d 31 23 16 2f d 71 4a fffff71c 24 23 16 b 8 2a 46 24 23 -FIXUPS: 178b0 27 22 23 3a d 28 48 23 19 20 1d d 22 2e 2b 65 1b 25 23 18 -FIXUPS: 17be3 fffff67c d 1c 28 19 e 26 32 23 d 79 31 e 26 32 23 d 7b 2f -FIXUPS: 17557 26 46 26 2c 13 d 14 23 32 23 d d fffff6d0 20 d 3c 25 29 32 -FIXUPS: 16eb7 d 3c d 58 a9 37 48 2c 23 16 14 20 d 27 22 9 e 13 23 31 23 -FIXUPS: 1722a 18 13 fffff7ad 2e 19 d 15 2a 23 d f f 26 13 b 2f 23 d 10 -FIXUPS: 16ba0 15 2d 24 d 2f 1b 3c 23 1f 20 d 3c 25 23 fffff820 19 8 c 22 -FIXUPS: 16634 19 11 2b 2d 23 d f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 25 -FIXUPS: 1690c 30 d 80 23 fffff764 b 8 16 2d 20 d 24 d e 1b 33 1d 31 77 -FIXUPS: 16345 d 47 2d 20 d e 22 d 21 1d 31 77 20 d 26 2d 329f a6 2c ffffc515 -FIXUPS: 15e52 27 f 21 49 27 f 21 49 27 f 21 30 e b b 33 20 d 14 16 d a -FIXUPS: 16109 19 a a a 3227 b 28 d 11 94 1d 23 16 35 7e 24 23 1b 10 d 26 -FIXUPS: 1962f 8 12 3e d 7c 29 23 1b 10 d 26 28 d 3a 1b33 5 18 e 13 ffffda1f -FIXUPS: 18e39 23 1d 5e d 69 6 51 6 98 37 23 16 29 6d 20 b 26 23 16 3c 1b -FIXUPS: 1924c 40 9d 23 1cca d d 20 29 14 1c f d 24 e 27 1d 82 2d 2f e 9 -FIXUPS: 1b239 20 18 28 e 9 9 20 12 9 9 1f 20 1b fffff7ff d 48 d 21 23 16 -FIXUPS: 1ac20 b9 23 16 1d d 10 d 46 11 34 3a 2f 1c 12 1e 26 32 16 e 64 -FIXUPS: 1af86 23 1c 34 fffff667 29 d 1d 8 11e 26 35 23 d 19 1c 16 32 23 -FIXUPS: 1a911 4b d 13 20 d 2b 38 16 20 d 3f d 4b d 2a d fffff72c 32 1d -FIXUPS: 1a2e9 2c 3d d 10 10 2a d 10 2f 17 18 15 20 23 32 23 d 10 e 64 d -FIXUPS: 1a57f 1a 2c 16 34 14 1e fffff755 53 2c 16 b b 16 17 c 6c 15 23 -FIXUPS: 19f31 22 46 29 6d 39 23 d 15 11 1b 23 2d 26 32 16 12 57 d 11 66be -FIXUPS: 1992c 36 27 f 21 30 1b 20 25 e b 11 26 29 32 23 d 1a e 8e 59 d -FIXUPS: 19c5a 1b 11 39 2f 25 b 1c 13 68cc 12 e f 1f 22 e 13 1f e 13 1f -FIXUPS: 20717 13 1f e 13 1f e 13 1f 13 1d e 13 1f 13 1d 13 1d 13 1d fffff958 -FIXUPS: 20234 13 43 18 2e c 22 22 24 16 1d 6 34 d 15 c 17 3b 38 26 1d 2f -FIXUPS: 204e8 11 5e 1f 10 6 36 d 20 fffff7f4 18 d 20 31 12 2a d 27 14 2c -FIXUPS: 1ff33 23 d 10 b 11 17 37 43 1f 36 23 d 34 26 1b b 19 17 63 d fffff87f -FIXUPS: 1fa57 1b 23 11 35 c 22 22 24 16 1d 6 34 d 15 c 17 2f 29 23 16 30 -FIXUPS: 1fce4 35 26 1d c 37 11 f 1e fffff83f 11 19 46 5a 23 d 23 14 2c -FIXUPS: 1f7a3 23 d 10 b 11 17 37 43 1f 36 23 d 34 19 11 b 2b 26 1b 13 33 -FIXUPS: 1f29b 13 13 8 24 d d 10 20 d 56 d 18 40 3d d 27 d 25 12 2c d e -FIXUPS: 1f528 d 37 d 43 d 20 13 10 fffff8d4 6 16 20 32 17 1e 20 d 25 34 -FIXUPS: 1f02f 1d 2f d 17 2f d 29 d 11 e 2a c 27 20 d 4d 20 d 25 30 fffff942 -FIXUPS: 1ebd8 17 2f d 11 d c 10 c d c 17 17 b b e 3e d 15 13 1a 17 34 42 -FIXUPS: 1ee03 1a 35 d 47 6 18 fffff972 d 2b 2b 23 1d 2f d 15 15 20 1f b -FIXUPS: 1e9a8 13 18 23 1d 19 29 1a 17 13 a 14 20 6 17 2e 37 26 1d fffff925 -FIXUPS: 1e4ff 12 28 23 13 10 1a 23 1d 2f d 12 15 1f 13 17 6 1e 23 1d 2f -FIXUPS: 1e725 1a 1f 13 1e 1d 9 e 25 c fffff988 2f d 15 c 26 17 6 1d 23 -FIXUPS: 1e27a 12 2f d 15 c 26 13 a 1d 30 23 1d 2f d 11 23 23 1d 2f d 10 -FIXUPS: 1ddd9 d 23 20 1b 21 20 6 1e 23 20 17 17 2d d 19 1b 46 24 27 23 -FIXUPS: 1e05a 12 2f d 10 c 3e c 1b 23 1e fffff885 6 24 29 37 23 1b 12 1e -FIXUPS: 1dafe 23 d 45 d 39 11 9 26 23 1b 10 29 72 d 21 14 14 21 23 1d 16 -FIXUPS: 1ddb8 fffff822 d e 3e 1d 28 d 2d d 15 b 6 e 1a 22 b 6 29 23 32 -FIXUPS: 1d7e1 d 10 b f 1c 29 5f a9 47 f 29 fffff7eb 27 9 6 24 23 1b 33 -FIXUPS: 1d2a7 28 9 21 12 1e 12 1e 30 e 32 30 e 19 3d 30 2c 26 19 21 26 -FIXUPS: 1d571 23 d fffff8a5 26 2d 23 19 24 23 1d 16 2c 9 19 15 b 13 9 1d -FIXUPS: 1d00a 9 6 22 2e 23 16 2a 22 2b 23 1b 2c 2a 19 fffff8ab d 1a 13 -FIXUPS: 1cac9 23 32 23 d 10 b f 1c 29 57 49 30 27 29 3c 23 1e 10 10 a 16 -FIXUPS: 1cdad 13 b 19 1b 2c fffff804 17 37 43 1f 33 23 d 27 19 11 b 2b -FIXUPS: 1c7db 26 28 23 1d 30 23 1e 1f 23 32 23 d 39 d e 3d 28 d fffff89c -FIXUPS: 1c2e6 23 23 1d 10 13 a 1d 46 12 13 13 13 a 20 d 1e 13 10 11 19 -FIXUPS: 1c4fe 57 23 d 24 2a 23 d 10 b fffff93b 17 13 13 36 d 3b d 1e 24 -FIXUPS: 1c070 1e 24 d 2a 23 13 c c 22 e 19 3a 2f 23 1e 24 9 22 23 1d 10 -FIXUPS: 1bbdf 2a 2d 23 d 15 d 13 13 1a 20 d 20 2f 9 f 34 9 f 31 2d 23 d -FIXUPS: 1be4b 10 30 2f 9 f 34 9 f fffff82b 30 2c 17 c d 14 23 34 d 25 32 -FIXUPS: 1b8c3 32 39 3f 2c 50 11 10 b 12 29 17 25 30 45 d 2c 3a 35 14 6e7a -FIXUPS: 22a4a 1f e 13 1f 13 1d 13 ffff88e6 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: 1b5b2 27 f 21 49 27 f 21 49 27 f 6f85 27 2c d 1b 20 31 26 1d c -FIXUPS: 227fe 14 f 23 6 11 20 2e 12 2a d 27 16 9 21 16 9 21 30 14 2a 22 -FIXUPS: 22317 d 13 b 30 22 35 23 1b d b 22 3c 18 a e 11 a e 50 d 46 26 -FIXUPS: 225bd 10 d 13 16 16 1b 28 14 fffff92c 35 d 1f c 6 c 6 2f d 43 d -FIXUPS: 220d9 f a 9 1e 2a 23 d 10 b 11 17 37 43 1f 33 23 d 27 23 fffff93a -FIXUPS: 21c4c 1d d 1a 3b 2e 16 12 1e 1f 20 d 48 b 1b 12 13 30 d 18 8 24 -FIXUPS: 21eac 18 a 20 d 20 f 20 d fffff8a4 2f 1f f 9 c 20 d 14 2d c 22 -FIXUPS: 2191b 10 10 1d 3c d 5f 2a 6 3d 55 34 6 1d 24 63 6 21 1d 2b fffff8b9 -FIXUPS: 214d5 2a d 18 c 1d 1c 18 c 15 c 1b 16 d 12 20 d 14 1f 2b 18 c c -FIXUPS: 216d2 2f a 64 d 3d 24 6 fffff924 24 1b 27 29 43 23 1d 2f d 2c 23 -FIXUPS: 212b1 11 9 1e 23 1b d b 2a 22 28 d 1c c c 1a 6 45 23 1d fffff7cb -FIXUPS: 20c71 e 46 d a4 28 d d 1d 13 1a 20 17 40 23 32 23 d 10 b f 1c 29 -FIXUPS: 20fcc 2b 2d 1b c 4d c 1c 2fe9 26 13 18 1d 22 e 13 ffffe9cd 22 ffffddc9 -FIXUPS: 20939 f 21 49 27 f 21 30 e 19 2a d 70 32 23 1e 2f 26 32 20 d 30de -FIXUPS: 23d19 15 1c 21 d 20 19 1c 12 d 3d 12 37 d 37 23 d 26 29 f 31 d -FIXUPS: 23fb3 23 d 27 d 15 10 3d d fffff879 32 23 d 18 16 21 21 27 9 c -FIXUPS: 23a16 19 30 49 3c 1f 27 20 42 1d d 1b 20 38 26 1e 16 d 12 2a 1c -FIXUPS: 2341e 36 18 20 39 22 d 2b 1d 39 19 4d d 1a 1c 36 31 6c 1c 36 d -FIXUPS: 23773 2e 20 d 1e 42 20 d 21 20 3d fffff699 3b 21 d 40 22 34 38 -FIXUPS: 230ed 3c 23 1e 15 24 9 1a 1d 14 51 63 23 d 1e 20 26 1e 16 10 d -FIXUPS: 233ba 21 29 1b8b 3a 23 fffff1d0 3b 5 ffffff9b ffffe9fb 27 f 21 -FIXUPS: 22c39 e 3d 25 2f 23 29 60 15 23 1e b b 2d 1c 80 23 1e b 18 2e 1d0a -FIXUPS: 24c87 23 d 10 b 52 d d 13 8 31 3a e c 42 15 13 b 18 e c 1a e 19 -FIXUPS: 24ed3 17 1d 22 e 13 1f fffff95e 22 26 1b d 15 16 c 1b 2c 1b b b -FIXUPS: 249f1 35 15 b c e 21 35 13 23 38 20 15 15 66 15 b c 29 fffff8a2 -FIXUPS: 244f9 23 70 13 12 18 10 2c 20 d 3c 20 d 32 2c 10 8 18 1d 1c 47 -FIXUPS: 247cf 32 23 d f 15 e 15 10 14 c2d 16 24 24 20 4c 27 21 30 1a 1a -FIXUPS: 25687 ffffebab 27 f 21 30 e b 26 3c 25 17 10 8 21 23 32 20 d 2c -FIXUPS: 2446a c26 16 77 17 21 1b 2c 18 10 1c 17 21 25 34 19 27 28 20 1b -FIXUPS: 25336 35 20 1b 12 15 23 17 5 15 49 24 16 19db 16 b 1d b 1d 12 f -FIXUPS: 26f27 5 1d 18 d 24 10 10 19 19 13 13 13 16 16 16 e e 1e 19 27 ffffdf70 -FIXUPS: 25057 b 1b1c b 1a b 22 18 15 b 10 b 15 12 10 b 13 18 d 12 10 d -FIXUPS: 26cd7 9 41 1d 9 b 6b 15 27 2a 23 d fffff978 10 b 9 39 79 d 36 1b -FIXUPS: 26912 20 d 2e e 12 10 b 9 63 d 36 1d 39 20 d 27 e 1a b 1d 15 b -FIXUPS: 2645e 4b 18 1e e 9 1c b 1e e 9 2b e 9 d 20 39 1e 18 e 9 12 24 4e -FIXUPS: 266d8 31 32 13 20 d 30 e fffff93d e 9 2b e 9 1c 20 28 25 1d f 50 -FIXUPS: 26276 1f d 15 22 2a 23 d 2c 23 d 10 b b b b b 26 22 fffff9c0 1e -FIXUPS: 25e2e 15 10 10 10 10 1a 44 b b 42 2a 23 d 2c 23 d 10 b b b b 1c -FIXUPS: 26064 18 1e e 9 1c b fffff9e8 1f b c 1d b 10 10 2d e c 10 10 d -FIXUPS: 25bc2 b c 10 19 19 19 19 1d 15 19 b c 3d 1d 22 4e 2e fffffa00 10 -FIXUPS: 257c7 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 3e 2c -FIXUPS: 25966 18 1e 14 54 13 15 1a 2f 2c 1688 e 42 23 14 15 34 23 14 15 -FIXUPS: 27279 23 2b 22 e 13 3f 13 ffffe34d 2a 20 d 10 b b b b 1b 10 10 -FIXUPS: 25787 10 diff --git a/kauai/OBJ/WIND/CHMERGE.MAP b/kauai/OBJ/WIND/CHMERGE.MAP deleted file mode 100644 index 432bcdb9..00000000 --- a/kauai/OBJ/WIND/CHMERGE.MAP +++ /dev/null @@ -1,1234 +0,0 @@ - chmerge - - Timestamp is 3070be20 (Mon Oct 02 21:37:52 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 00025548H .text CODE - 0002:00000000 00001a20H .bss DATA - 0003:00000000 00000371H .rdata DATA - 0004:00000000 00002518H .data DATA - 0004:00002518 00000004H .CRT$XCA DATA - 0004:0000251c 00000050H .CRT$XCU DATA - 0004:0000256c 00000004H .CRT$XCZ DATA - 0004:00002570 00000004H .CRT$XIA DATA - 0004:00002574 00000004H .CRT$XIC DATA - 0004:00002578 00000004H .CRT$XIZ DATA - 0004:0000257c 00000004H .CRT$XPA DATA - 0004:00002580 00000004H .CRT$XPX DATA - 0004:00002584 00000004H .CRT$XPZ DATA - 0004:00002588 00000004H .CRT$XTA DATA - 0004:0000258c 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000bcH .idata$4 DATA - 0005:00000120 000000bcH .idata$5 DATA - 0005:000001dc 0000030eH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000430H .debug$F DATA - 0007:00000730 00000000H .debug$G DATA - 0007:00000730 00000034H .debug$H DATA - 0007:fffcf000 00000000H .debug$P DATA - 0007:fffcf000 00000000H .debug$S DATA - 0007:fffcf000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:00000510 ?PfilNext@FIL@@QAEPAV1@XZ 00401510 f util.obj - 0001:00000540 ?PbllNext@BLL@@QAEPAV1@XZ 00401540 f util.obj - 0001:00000570 ?PcflNext@CFL@@QAEPAV1@XZ 00401570 f util.obj - 0001:000005a0 ?FWouldBe@BLL@@SGHJ@Z 004015a0 f base.obj - 0001:000005e0 ?FIs@BLL@@UAEHJ@Z 004015e0 f base.obj - 0001:00000610 ?Cls@BLL@@UAEJXZ 00401610 f base.obj - 0001:00000640 ?Cls@BASE@@UAEJXZ 00401640 f base.obj - 0001:00000670 ?FIs@BASE@@UAEHJ@Z 00401670 f base.obj - 0001:000006b0 ?FWouldBe@BASE@@SGHJ@Z 004016b0 f base.obj - 0001:000006e0 ??0BASE@@QAE@XZ 004016e0 f base.obj - 0001:000007c0 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 004017c0 f base.obj - 0001:000007e0 ?_Enter@@YGXXZ 004017e0 f base.obj - 0001:00000800 ?_Leave@@YGXXZ 00401800 f base.obj - 0001:00000820 ?AddRef@BASE@@UAEXXZ 00401820 f base.obj - 0001:000008b0 ?Release@BASE@@UAEXXZ 004018b0 f base.obj - 0001:00000960 ??2BASE@@SGPAXIPADJ@Z 00401960 f base.obj - 0001:00000b30 ?Debugger@@YGXXZ 00401b30 f base.obj - 0001:00000b50 ??3BASE@@SGXPAX@Z 00401b50 f base.obj - 0001:00000bd0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401bd0 f base.obj - 0001:00000bf0 ?AssertValid@BASE@@QAEXK@Z 00401bf0 f base.obj - 0001:00000d20 ?MarkMemStub@BASE@@QAEXXZ 00401d20 f base.obj - 0001:00000e00 ?MarkMem@BASE@@UAEXXZ 00401e00 f base.obj - 0001:00000e50 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401e50 f base.obj - 0001:00001040 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402040 f base.obj - 0001:000010c0 ?_UnlinkDoi@@YGXPAUDOI@@@Z 004020c0 f base.obj - 0001:00001140 ??0BLL@@QAE@XZ 00402140 f base.obj - 0001:00001190 ??1BLL@@UAE@XZ 00402190 f base.obj - 0001:000011e0 ?_Attach@BLL@@IAEXPAX@Z 004021e0 f base.obj - 0001:00001380 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402380 f base.obj - 0001:000013b0 ?AssertValid@BLL@@QAEXK@Z 004023b0 f base.obj - 0001:000014b0 ??_EBLL@@UAEPAXI@Z 004024b0 f base.obj - 0001:000014b0 ??_GBLL@@UAEPAXI@Z 004024b0 f base.obj - 0001:000014f0 ??0STN@@QAE@XZ 004024f0 f base.obj - 0001:00001550 ?PvAddBv@@YGPAXPAXJ@Z 00402550 f base.obj - 0001:00001570 ?PvSubBv@@YGPAXPAXJ@Z 00402570 f base.obj - 0001:00001590 ?Enter@MUTX@@QAEXXZ 00402590 f base.obj - 0001:000015c0 ?Leave@MUTX@@QAEXXZ 004025c0 f base.obj - 0001:000015f0 ?LwThreadCur@@YGJXZ 004025f0 f base.obj - 0001:00001610 ?FillPb@@YGXPAXJE@Z 00402610 f utilcopy.obj - 0001:00001670 ?ClearPb@@YGXPAXJ@Z 00402670 f utilcopy.obj - 0001:000016e0 ?FEqualRgb@@YGHPAX0J@Z 004026e0 f utilcopy.obj - 0001:00001760 ?CbEqualRgb@@YGJPAX0J@Z 00402760 f utilcopy.obj - 0001:000017f0 ?CopyPb@@YGXPAX0J@Z 004027f0 f utilcopy.obj - 0001:00001890 ?BltPb@@YGXPAX0J@Z 00402890 f utilcopy.obj - 0001:00001970 ?FWouldBe@ERS@@SGHJ@Z 00402970 f utilerro.obj - 0001:000019b0 ?FIs@ERS@@UAEHJ@Z 004029b0 f utilerro.obj - 0001:000019e0 ?Cls@ERS@@UAEJXZ 004029e0 f utilerro.obj - 0001:00001a10 ??0ERS@@QAE@XZ 00402a10 f utilerro.obj - 0001:00001a60 ?Push@ERS@@UAEXJPADJ@Z 00402a60 f utilerro.obj - 0001:00001c20 ?FPop@ERS@@UAEHPAJ@Z 00402c20 f utilerro.obj - 0001:00001d20 ?Clear@ERS@@UAEXXZ 00402d20 f utilerro.obj - 0001:00001d90 ?Cerc@ERS@@UAEJXZ 00402d90 f utilerro.obj - 0001:00001de0 ?FIn@ERS@@UAEHJ@Z 00402de0 f utilerro.obj - 0001:00001eb0 ?ErcGet@ERS@@UAEJJ@Z 00402eb0 f utilerro.obj - 0001:00001f50 ?Flush@ERS@@UAEXJ@Z 00402f50 f utilerro.obj - 0001:00002040 ?FIn@@YGHJJJ@Z 00403040 f utilerro.obj - 0001:00002080 ?AssertValid@ERS@@QAEXK@Z 00403080 f utilerro.obj - 0001:00002120 ??1ERS@@UAE@XZ 00403120 f utilerro.obj - 0001:00002150 ??_GERS@@UAEPAXI@Z 00403150 f utilerro.obj - 0001:00002150 ??_EERS@@UAEPAXI@Z 00403150 f utilerro.obj - 0001:000021b0 ?LwMul@@YGJJJ@Z 004031b0 f utilint.obj - 0001:00002220 ?AssertIn@@YGXJJJ@Z 00403220 f utilint.obj - 0001:000022a0 ?SwapBytesBom@@YGXPAXK@Z 004032a0 f utilint.obj - 0001:00002380 ?LwMin@@YGJJJ@Z 00403380 f utilint.obj - 0001:000023b0 ?SwapBytesRgsw@@YGXPAXJ@Z 004033b0 f utilint.obj - 0001:00002440 ?SwapBytesRglw@@YGXPAXJ@Z 00403440 f utilint.obj - 0001:000024f0 ?AssertBomRglw@@YGXKJ@Z 004034f0 f utilint.obj - 0001:000025b0 ?LwMulDiv@@YGJJJJ@Z 004035b0 f utilint.obj - 0001:00002600 ?LwMax@@YGJJJ@Z 00403600 f utilint.obj - 0001:00002630 ?LwBound@@YGJJJJ@Z 00403630 f utilint.obj - 0001:00002670 ??0USAC@@QAE@XZ 00403670 f utilint.obj - 0001:000026d0 ?Set@DVER@@QAEXFF@Z 004036d0 f utilint.obj - 0001:00002710 ?FReadable@DVER@@QAEHFF@Z 00403710 f utilint.obj - 0001:000027d0 ??_EUSAC@@UAEPAXI@Z 004037d0 f utilint.obj - 0001:000027d0 ??_GUSAC@@UAEPAXI@Z 004037d0 f utilint.obj - 0001:00002810 ?TsCurrentSystem@@YGKXZ 00403810 f utilint.obj - 0001:00002830 ?FFail@DMAGL@@QAEHXZ 00403830 f utilmem.obj - 0001:000028a0 ?Allocate@DMAGL@@QAEXJ@Z 004038a0 f utilmem.obj - 0001:00002930 ?Resize@DMAGL@@QAEXJ@Z 00403930 f utilmem.obj - 0001:00002990 ?Free@DMAGL@@QAEXJ@Z 00403990 f utilmem.obj - 0001:000029d0 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 004039d0 f utilmem.obj - 0001:00002d20 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00403d20 f utilmem.obj - 0001:00003130 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00404130 f utilmem.obj - 0001:000031d0 ?_LinkMbh@@YGXPAUMBH@@@Z 004041d0 f utilmem.obj - 0001:00003270 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00404270 f utilmem.obj - 0001:00003410 ?_AssertMbh@@YGXPAUMBH@@@Z 00404410 f utilmem.obj - 0001:00003650 ?AssertPvAlloced@@YGXPAXJ@Z 00404650 f utilmem.obj - 0001:00003710 ?MarkPv@@YGXPAX@Z 00404710 f utilmem.obj - 0001:00003780 ?FWouldBe@RND@@SGHJ@Z 00404780 f utilrnd.obj - 0001:000037c0 ?FIs@RND@@UAEHJ@Z 004047c0 f utilrnd.obj - 0001:000037f0 ?Cls@RND@@UAEJXZ 004047f0 f utilrnd.obj - 0001:00003820 ?FWouldBe@SFL@@SGHJ@Z 00404820 f utilrnd.obj - 0001:00003860 ?FIs@SFL@@UAEHJ@Z 00404860 f utilrnd.obj - 0001:00003890 ?Cls@SFL@@UAEJXZ 00404890 f utilrnd.obj - 0001:000038c0 ??0RND@@QAE@K@Z 004048c0 f utilrnd.obj - 0001:00003950 ?LwNext@RND@@UAEJJ@Z 00404950 f utilrnd.obj - 0001:00003a20 ??0SFL@@QAE@K@Z 00404a20 f utilrnd.obj - 0001:00003ab0 ??1SFL@@UAE@XZ 00404ab0 f utilrnd.obj - 0001:00003b20 ?AssertValid@SFL@@QAEXK@Z 00404b20 f utilrnd.obj - 0001:00003bf0 ?MarkMem@SFL@@UAEXXZ 00404bf0 f utilrnd.obj - 0001:00003c50 ?Shuffle@SFL@@QAEXJ@Z 00404c50 f utilrnd.obj - 0001:00003d60 ?_ShuffleCore@SFL@@IAEXXZ 00404d60 f utilrnd.obj - 0001:00003e50 ?_FEnsureHq@SFL@@IAEHJ@Z 00404e50 f utilrnd.obj - 0001:00003fd0 ?LwNext@SFL@@UAEJJ@Z 00404fd0 f utilrnd.obj - 0001:00004130 ??_ERND@@UAEPAXI@Z 00405130 f utilrnd.obj - 0001:00004130 ??_GRND@@UAEPAXI@Z 00405130 f utilrnd.obj - 0001:00004170 ??_GSFL@@UAEPAXI@Z 00405170 f utilrnd.obj - 0001:00004170 ??_ESFL@@UAEPAXI@Z 00405170 f utilrnd.obj - 0001:000041b0 ??4STN@@QAEAAV0@AAV0@@Z 004051b0 f utilstr.obj - 0001:000042a0 ?SetRgch@STN@@QAEXPADJ@Z 004052a0 f utilstr.obj - 0001:00004380 ?SetSzs@STN@@QAEXPAD@Z 00405380 f utilstr.obj - 0001:000043e0 ?Delete@STN@@QAEXJJ@Z 004053e0 f utilstr.obj - 0001:00004540 ?FAppendRgch@STN@@QAEHPADJ@Z 00405540 f utilstr.obj - 0001:00004640 ?FInsertRgch@STN@@QAEHJPADJ@Z 00405640 f utilstr.obj - 0001:000047f0 ?FEqualRgch@STN@@QAEHPADJ@Z 004057f0 f utilstr.obj - 0001:00004890 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00405890 f utilstr.obj - 0001:00004920 ?CbData@STN@@QAEJXZ 00405920 f utilstr.obj - 0001:00004970 ?GetData@STN@@QAEXPAX@Z 00405970 f utilstr.obj - 0001:00004a00 ?FSetData@STN@@QAEHPAXJPAJ@Z 00405a00 f utilstr.obj - 0001:00004ec0 ?GetSzs@STN@@QAEXPAD@Z 00405ec0 f utilstr.obj - 0001:00004f30 ?FFormatSz@STN@@QAAHPADZZ 00405f30 f utilstr.obj - 0001:00004f90 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00405f90 f utilstr.obj - 0001:000057f0 ?CbCharOsk@@YGJF@Z 004067f0 f utilstr.obj - 0001:00005880 ?Prgch@STN@@QAEPADXZ 00406880 f utilstr.obj - 0001:000058d0 ?Psz@STN@@QAEPADXZ 004068d0 f utilstr.obj - 0001:00005920 ?Cch@STN@@QAEJXZ 00406920 f utilstr.obj - 0001:00005970 ?SetNil@STN@@QAEXXZ 00406970 f utilstr.obj - 0001:000059d0 ?SetSz@STN@@QAEXPAD@Z 004069d0 f utilstr.obj - 0001:00005a10 ?AssertValid@STN@@QAEXK@Z 00406a10 f utilstr.obj - 0001:00005b00 ?CchSz@@YGJPAD@Z 00406b00 f utilstr.obj - 0001:00005ba0 ?FEqualUserRgch@@YGHPADJ0JK@Z 00406ba0 f utilstr.obj - 0001:00005d10 ?UpperRgchs@@YGXPADJ@Z 00406d10 f utilstr.obj - 0001:00005dd0 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00406dd0 f utilstr.obj - 0001:00005f80 ?AssertOsk@@YGXF@Z 00406f80 f utilstr.obj - 0001:00006030 ?AssertSz@@YGXPAD@Z 00407030 f utilstr.obj - 0001:00006080 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00407080 f memwin.obj - 0001:00006160 ?FResizePhq@@YGHPAPAXJKJ@Z 00407160 f memwin.obj - 0001:00006290 ?FreePhq@@YGXPAPAX@Z 00407290 f memwin.obj - 0001:00006340 ?CbOfHq@@YGJPAX@Z 00407340 f memwin.obj - 0001:00006380 ?QvFromHq@@YGPAXPAX@Z 00407380 f memwin.obj - 0001:000063a0 ?PvLockHq@@YGPAXPAX@Z 004073a0 f memwin.obj - 0001:00006420 ?UnlockHq@@YGXPAX@Z 00407420 f memwin.obj - 0001:000064a0 ?AssertHq@@YGXPAX@Z 004074a0 f memwin.obj - 0001:00006590 ?MarkHq@@YGXPAX@Z 00407590 f memwin.obj - 0001:000065d0 ?AssertPvCb@@YGXPAXJ@Z 004075d0 f memwin.obj - 0001:00006660 ?FWouldBe@CFL@@SGHJ@Z 00407660 f chunk.obj - 0001:000066a0 ?FIs@CFL@@UAEHJ@Z 004076a0 f chunk.obj - 0001:000066d0 ?Cls@CFL@@UAEJXZ 004076d0 f chunk.obj - 0001:00006700 ?FWouldBe@CGE@@SGHJ@Z 00407700 f chunk.obj - 0001:00006740 ?FIs@CGE@@UAEHJ@Z 00407740 f chunk.obj - 0001:00006770 ?Cls@CGE@@UAEJXZ 00407770 f chunk.obj - 0001:000067a0 ??0CFL@@AAE@XZ 004077a0 f chunk.obj - 0001:00006810 ??1CFL@@EAE@XZ 00407810 f chunk.obj - 0001:000069a0 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 004079a0 f chunk.obj - 0001:00006c30 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00407c30 f chunk.obj - 0001:00006c80 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00407c80 f chunk.obj - 0001:00006ef0 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00407ef0 f chunk.obj - 0001:00007010 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00408010 f chunk.obj - 0001:00007140 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 00408140 f chunk.obj - 0001:00007190 ?SetCb@CRPSM@@QAEXJ@Z 00408190 f chunk.obj - 0001:000071d0 ?Grfcrp@CRPSM@@QAEKK@Z 004081d0 f chunk.obj - 0001:00007200 ?ClearGrfcrp@CRPSM@@QAEXK@Z 00408200 f chunk.obj - 0001:00007230 ?SetGrfcrp@CRPSM@@QAEXK@Z 00408230 f chunk.obj - 0001:00007260 ?FSetGrfcfl@CFL@@QAEHKK@Z 00408260 f chunk.obj - 0001:000073b0 ?Release@CFL@@UAEXXZ 004083b0 f chunk.obj - 0001:00007490 ?AssertValid@CFL@@QAEXK@Z 00408490 f chunk.obj - 0001:00008260 ?CbRgch@CRPSM@@QAEJJ@Z 00409260 f chunk.obj - 0001:00008290 ?BvRgch@CRPSM@@QAEJXZ 00409290 f chunk.obj - 0001:000082c0 ?Cb@CRPSM@@QAEJXZ 004092c0 f chunk.obj - 0001:000082f0 ?SuspendAssertValid@@YGXXZ 004092f0 f chunk.obj - 0001:00008340 ?ResumeAssertValid@@YGXXZ 00409340 f chunk.obj - 0001:00008370 ?ElError@FIL@@QAEJXZ 00409370 f chunk.obj - 0001:000083a0 ?GrffilCur@FIL@@QAEKXZ 004093a0 f chunk.obj - 0001:000083d0 ?IvMac@GRPB@@QAEJXZ 004093d0 f chunk.obj - 0001:00008400 ?FPush@GL@@QAEHPAX@Z 00409400 f chunk.obj - 0001:00008440 ?MarkMem@CFL@@UAEXXZ 00409440 f chunk.obj - 0001:00008510 ?_TValidIndex@CFL@@AAEHXZ 00409510 f chunk.obj - 0001:00008a40 ?_FReadIndex@CFL@@AAEHXZ 00409a40 f chunk.obj - 0001:00009750 ?BvRgch@CRPBG@@QAEJXZ 0040a750 f chunk.obj - 0001:00009780 ?CbRgch@CRPBG@@QAEJJ@Z 0040a780 f chunk.obj - 0001:000097b0 ?Grfcrp@CRPBG@@QAEKK@Z 0040a7b0 f chunk.obj - 0001:000097e0 ?ClearGrfcrp@CRPBG@@QAEXK@Z 0040a7e0 f chunk.obj - 0001:00009810 ?SetGrfcrp@CRPBG@@QAEXK@Z 0040a810 f chunk.obj - 0001:00009840 ?Cb@CRPBG@@QAEJXZ 0040a840 f chunk.obj - 0001:00009870 ?Lock@GRPB@@QAEXXZ 0040a870 f chunk.obj - 0001:000098b0 ?Unlock@GRPB@@QAEXXZ 0040a8b0 f chunk.obj - 0001:000098f0 ?CbFixed@GGB@@QAEJXZ 0040a8f0 f chunk.obj - 0001:00009920 ?_ReadFreeMap@CFL@@AAEXXZ 0040a920 f chunk.obj - 0001:00009b10 ?CbEntry@GLB@@QAEJXZ 0040ab10 f chunk.obj - 0001:00009b40 ?FSave@CFL@@QAEHKPAVFNI@@@Z 0040ab40 f chunk.obj - 0001:0000a390 ?FTemp@FIL@@QAEHXZ 0040b390 f chunk.obj - 0001:0000a3d0 ?GetFni@CFL@@QAEXPAVFNI@@@Z 0040b3d0 f chunk.obj - 0001:0000a400 ?GetFni@FIL@@QAEXPAVFNI@@@Z 0040b400 f chunk.obj - 0001:0000a430 ?_FWriteIndex@CFL@@AAEHK@Z 0040b430 f chunk.obj - 0001:0000a790 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 0040b790 f chunk.obj - 0001:0000a910 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0040b910 f chunk.obj - 0001:0000aa60 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0040ba60 f chunk.obj - 0001:0000ab40 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0040bb40 f chunk.obj - 0001:0000ac10 ?SetPacked@CFL@@QAEXKKH@Z 0040bc10 f chunk.obj - 0001:0000ad50 ?_FCreateExtra@CFL@@AAEHXZ 0040bd50 f chunk.obj - 0001:0000ae30 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0040be30 f chunk.obj - 0001:0000b170 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0040c170 f chunk.obj - 0001:0000b310 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 0040c310 f chunk.obj - 0001:0000b420 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 0040c420 f chunk.obj - 0001:0000b570 ?FWrite@BLCK@@QAEHPAXH@Z 0040c570 f chunk.obj - 0001:0000b5b0 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 0040c5b0 f chunk.obj - 0001:0000b740 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 0040c740 f chunk.obj - 0001:0000b970 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 0040c970 f chunk.obj - 0001:0000ba70 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 0040ca70 f chunk.obj - 0001:0000bf70 ?FWrite@FLO@@QAEHPAX@Z 0040cf70 f chunk.obj - 0001:0000bfb0 ?Delete@CFL@@QAEXKK@Z 0040cfb0 f chunk.obj - 0001:0000c2c0 ?SetLoner@CFL@@QAEXKKH@Z 0040d2c0 f chunk.obj - 0001:0000c3b0 ?FLoner@CFL@@QAEHKK@Z 0040d3b0 f chunk.obj - 0001:0000c480 ?CckiRef@CFL@@QAEJKK@Z 0040d480 f chunk.obj - 0001:0000c540 ?TIsDescendent@CFL@@QAEHKKKK@Z 0040d540 f chunk.obj - 0001:0000c660 ?_FDecRefCount@CFL@@AAEHJ@Z 0040d660 f chunk.obj - 0001:0000c740 ?_DeleteCore@CFL@@AAEXJ@Z 0040d740 f chunk.obj - 0001:0000c800 ?_FreeFpCb@CFL@@AAEXHJJ@Z 0040d800 f chunk.obj - 0001:0000cdc0 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 0040ddc0 f chunk.obj - 0001:0000cf60 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 0040df60 f chunk.obj - 0001:0000d0e0 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 0040e0e0 f chunk.obj - 0001:0000d230 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 0040e230 f chunk.obj - 0001:0000d4d0 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 0040e4d0 f chunk.obj - 0001:0000d650 ?Ckid@CFL@@QAEJKK@Z 0040e650 f chunk.obj - 0001:0000d710 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 0040e710 f chunk.obj - 0001:0000d8f0 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 0040e8f0 f chunk.obj - 0001:0000dad0 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 0040ead0 f chunk.obj - 0001:0000dc90 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 0040ec90 f chunk.obj - 0001:0000dd90 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 0040ed90 f chunk.obj - 0001:0000e650 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 0040f650 f chunk.obj - 0001:0000ea00 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 0040fa00 f chunk.obj - 0001:0000eb20 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 0040fb20 f chunk.obj - 0001:0000eb60 ?_Rti@CFL@@AAEJKK@Z 0040fb60 f chunk.obj - 0001:0000ebd0 ?_FSetRti@CFL@@AAEHKKJ@Z 0040fbd0 f chunk.obj - 0001:0000ecf0 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 0040fcf0 f chunk.obj - 0001:0000eeb0 ??0CGE@@QAE@XZ 0040feb0 f chunk.obj - 0001:0000ef30 ??1CGE@@UAE@XZ 0040ff30 f chunk.obj - 0001:0000efc0 ?AssertValid@CGE@@QAEXK@Z 0040ffc0 f chunk.obj - 0001:0000f0f0 ?MarkMem@CGE@@UAEXXZ 004100f0 f chunk.obj - 0001:0000f160 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00410160 f chunk.obj - 0001:0000f2b0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 004102b0 f chunk.obj - 0001:0000f6f0 ??4FNI@@QAEAAV0@AAV0@@Z 004106f0 f chunk.obj - 0001:0000f740 ??_ECFL@@EAEPAXI@Z 00410740 f chunk.obj - 0001:0000f740 ??_GCFL@@EAEPAXI@Z 00410740 f chunk.obj - 0001:0000f780 ??1FNI@@UAE@XZ 00410780 f chunk.obj - 0001:0000f7b0 ??_GCGE@@UAEPAXI@Z 004107b0 f chunk.obj - 0001:0000f7b0 ??_ECGE@@UAEPAXI@Z 004107b0 f chunk.obj - 0001:0000f7f0 ??4BASE@@QAEAAV0@ABV0@@Z 004107f0 f chunk.obj - 0001:0000f830 ?FWouldBe@CODM@@SGHJ@Z 00410830 f codec.obj - 0001:0000f870 ?FIs@CODM@@UAEHJ@Z 00410870 f codec.obj - 0001:0000f8a0 ?Cls@CODM@@UAEJXZ 004108a0 f codec.obj - 0001:0000f8d0 ?FWouldBe@CODC@@SGHJ@Z 004108d0 f codec.obj - 0001:0000f910 ?FIs@CODC@@UAEHJ@Z 00410910 f codec.obj - 0001:0000f940 ?Cls@CODC@@UAEJXZ 00410940 f codec.obj - 0001:0000f970 ??0CODM@@QAE@PAVCODC@@J@Z 00410970 f codec.obj - 0001:0000fa70 ??1CODM@@UAE@XZ 00410a70 f codec.obj - 0001:0000fb90 ?AssertValid@CODM@@QAEXK@Z 00410b90 f codec.obj - 0001:0000fc60 ?MarkMem@CODM@@UAEXXZ 00410c60 f codec.obj - 0001:0000fd50 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00410d50 f codec.obj - 0001:0000fe60 ?FCanDo@CODM@@UAEHJH@Z 00410e60 f codec.obj - 0001:0000fed0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00410ed0 f codec.obj - 0001:00010000 ?LwFromBytes@@YGJEEEE@Z 00411000 f codec.obj - 0001:00010040 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00411040 f codec.obj - 0001:00010180 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00411180 f codec.obj - 0001:00010370 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00411370 f codec.obj - 0001:00010680 ?B0Lw@@YGEJ@Z 00411680 f codec.obj - 0001:000106a0 ?B1Lw@@YGEJ@Z 004116a0 f codec.obj - 0001:000106c0 ?B2Lw@@YGEJ@Z 004116c0 f codec.obj - 0001:000106e0 ?B3Lw@@YGEJ@Z 004116e0 f codec.obj - 0001:00010720 ??_ECODM@@UAEPAXI@Z 00411720 f codec.obj - 0001:00010720 ??_GCODM@@UAEPAXI@Z 00411720 f codec.obj - 0001:00010760 ?FWouldBe@KCDC@@SGHJ@Z 00411760 f codkauai.obj - 0001:000107a0 ?FIs@KCDC@@UAEHJ@Z 004117a0 f codkauai.obj - 0001:000107d0 ?Cls@KCDC@@UAEJXZ 004117d0 f codkauai.obj - 0001:00010800 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00411800 f codkauai.obj - 0001:00010960 ?Set@BITA@@QAEXPAXJ@Z 00411960 f codkauai.obj - 0001:000109c0 ?FWriteBits@BITA@@QAEHKJ@Z 004119c0 f codkauai.obj - 0001:00010b60 ?FWriteLogEncoded@BITA@@QAEHK@Z 00411b60 f codkauai.obj - 0001:00010c50 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00411c50 f codkauai.obj - 0001:00011410 ?Ibit@BITA@@QAEJXZ 00412410 f codkauai.obj - 0001:00011440 ?Ib@BITA@@QAEJXZ 00412440 f codkauai.obj - 0001:00011470 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00412470 f codkauai.obj - 0001:00015150 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00416150 f codkauai.obj - 0001:00015a70 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00416a70 f codkauai.obj - 0001:000182c0 ?FWouldBe@FIL@@SGHJ@Z 004192c0 f file.obj - 0001:00018300 ?FIs@FIL@@UAEHJ@Z 00419300 f file.obj - 0001:00018330 ?Cls@FIL@@UAEJXZ 00419330 f file.obj - 0001:00018360 ?FWouldBe@BLCK@@SGHJ@Z 00419360 f file.obj - 0001:000183a0 ?FIs@BLCK@@UAEHJ@Z 004193a0 f file.obj - 0001:000183d0 ?Cls@BLCK@@UAEJXZ 004193d0 f file.obj - 0001:00018400 ??0FIL@@IAE@PAVFNI@@K@Z 00419400 f file.obj - 0001:000184f0 ??1FIL@@MAE@XZ 004194f0 f file.obj - 0001:00018560 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00419560 f file.obj - 0001:00018780 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00419780 f file.obj - 0001:00018950 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00419950 f file.obj - 0001:00018a70 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00419a70 f file.obj - 0001:00018bc0 ?FSetGrffil@FIL@@QAEHKK@Z 00419bc0 f file.obj - 0001:00018cd0 ?Release@FIL@@UAEXXZ 00419cd0 f file.obj - 0001:00018db0 ?SetTemp@FIL@@QAEXH@Z 00419db0 f file.obj - 0001:00018e30 ?ShutDown@FIL@@SGXXZ 00419e30 f file.obj - 0001:00018ef0 ?AssertValid@FIL@@QAEXK@Z 00419ef0 f file.obj - 0001:00019020 ?_FRangeIn@@YGHJJJ@Z 0041a020 f file.obj - 0001:00019080 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0041a080 f file.obj - 0001:00019150 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0041a150 f file.obj - 0001:00019220 ?FCopy@FLO@@QAEHPAU1@@Z 0041a220 f file.obj - 0001:000194a0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0041a4a0 f file.obj - 0001:000195b0 ?AssertValid@FLO@@QAEXK@Z 0041a5b0 f file.obj - 0001:000196b0 ??0BLCK@@QAE@PAUFLO@@H@Z 0041a6b0 f file.obj - 0001:000197f0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0041a7f0 f file.obj - 0001:00019930 ??0BLCK@@QAE@XZ 0041a930 f file.obj - 0001:000199d0 ??1BLCK@@UAE@XZ 0041a9d0 f file.obj - 0001:00019a30 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0041aa30 f file.obj - 0001:00019b50 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0041ab50 f file.obj - 0001:00019c80 ?SetHq@BLCK@@QAEXPAPAXH@Z 0041ac80 f file.obj - 0001:00019d60 ?Free@BLCK@@QAEXXZ 0041ad60 f file.obj - 0001:00019e10 ?HqFree@BLCK@@QAEPAXH@Z 0041ae10 f file.obj - 0001:00019fc0 ?Cb@BLCK@@QAEJH@Z 0041afc0 f file.obj - 0001:0001a050 ?FMoveMin@BLCK@@QAEHJ@Z 0041b050 f file.obj - 0001:0001a140 ?FMoveLim@BLCK@@QAEHJ@Z 0041b140 f file.obj - 0001:0001a230 ?FReadHq@FLO@@QAEHPAPAX@Z 0041b230 f file.obj - 0001:0001a270 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0041b270 f file.obj - 0001:0001a410 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0041b410 f file.obj - 0001:0001a5b0 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0041b5b0 f file.obj - 0001:0001a750 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0041b750 f file.obj - 0001:0001a900 ?FPacked@BLCK@@QAEHPAJ@Z 0041b900 f file.obj - 0001:0001a9a0 ?FUnpackData@BLCK@@QAEHXZ 0041b9a0 f file.obj - 0001:0001abd0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 0041bbd0 f file.obj - 0001:0001ac00 ?AssertValid@BLCK@@QAEXK@Z 0041bc00 f file.obj - 0001:0001ae30 ?MarkMem@BLCK@@UAEXXZ 0041be30 f file.obj - 0001:0001aed0 ??_GFIL@@MAEPAXI@Z 0041bed0 f file.obj - 0001:0001aed0 ??_EFIL@@MAEPAXI@Z 0041bed0 f file.obj - 0001:0001af10 ??_GBLCK@@UAEPAXI@Z 0041bf10 f file.obj - 0001:0001af10 ??_EBLCK@@UAEPAXI@Z 0041bf10 f file.obj - 0001:0001af50 ?_HfileOpen@@YGPAXPADHK@Z 0041bf50 f filewin.obj - 0001:0001afd0 ?_FOpen@FIL@@IAEHHK@Z 0041bfd0 f filewin.obj - 0001:0001b210 ?_Close@FIL@@IAEXH@Z 0041c210 f filewin.obj - 0001:0001b330 ?Flush@FIL@@QAEXXZ 0041c330 f filewin.obj - 0001:0001b3c0 ?_SetFpPos@FIL@@IAEXJ@Z 0041c3c0 f filewin.obj - 0001:0001b4c0 ?FSetFpMac@FIL@@QAEHJ@Z 0041c4c0 f filewin.obj - 0001:0001b600 ?FpMac@FIL@@QAEJXZ 0041c600 f filewin.obj - 0001:0001b710 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0041c710 f filewin.obj - 0001:0001b8d0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0041c8d0 f filewin.obj - 0001:0001baa0 ?FSwapNames@FIL@@QAEHPAV1@@Z 0041caa0 f filewin.obj - 0001:0001bf30 ?FRename@FIL@@QAEHPAVFNI@@@Z 0041cf30 f filewin.obj - 0001:0001c160 ?FWouldBe@FNI@@SGHJ@Z 0041d160 f fniwin.obj - 0001:0001c1a0 ?FIs@FNI@@UAEHJ@Z 0041d1a0 f fniwin.obj - 0001:0001c1d0 ?Cls@FNI@@UAEJXZ 0041d1d0 f fniwin.obj - 0001:0001c200 ?SetNil@FNI@@QAEXXZ 0041d200 f fniwin.obj - 0001:0001c260 ??0FNI@@QAE@XZ 0041d260 f fniwin.obj - 0001:0001c2b0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0041d2b0 f fniwin.obj - 0001:0001c600 ?FGetUnique@FNI@@QAEHJ@Z 0041d600 f fniwin.obj - 0001:0001c7b0 ?FGetTemp@FNI@@QAEHXZ 0041d7b0 f fniwin.obj - 0001:0001c8f0 ?Ftg@FNI@@QAEJXZ 0041d8f0 f fniwin.obj - 0001:0001c940 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0041d940 f fniwin.obj - 0001:0001cb00 ?FChangeFtg@FNI@@QAEHJ@Z 0041db00 f fniwin.obj - 0001:0001cc70 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0041dc70 f fniwin.obj - 0001:0001cdb0 ?TExists@FNI@@QAEHXZ 0041ddb0 f fniwin.obj - 0001:0001cff0 ?FDelete@FNI@@QAEHXZ 0041dff0 f fniwin.obj - 0001:0001d0c0 ?FRename@FNI@@QAEHPAV1@@Z 0041e0c0 f fniwin.obj - 0001:0001d1e0 ?FEqual@FNI@@QAEHPAV1@@Z 0041e1e0 f fniwin.obj - 0001:0001d2a0 ?FSameDir@FNI@@QAEHPAV1@@Z 0041e2a0 f fniwin.obj - 0001:0001d3e0 ?AssertValid@FNI@@QAEXK@Z 0041e3e0 f fniwin.obj - 0001:0001d720 ?_CchExt@FNI@@AAEJXZ 0041e720 f fniwin.obj - 0001:0001d820 ?_SetFtgFromName@FNI@@AAEXXZ 0041e820 f fniwin.obj - 0001:0001d990 ?ChsUpper@@YGDD@Z 0041e990 f fniwin.obj - 0001:0001d9b0 ??4STN@@QAEAAV0@PAD@Z 0041e9b0 f fniwin.obj - 0001:0001d9e0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0041e9e0 f fniwin.obj - 0001:0001dbc0 ?FAppendCh@STN@@QAEHD@Z 0041ebc0 f fniwin.obj - 0001:0001dbf0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0041ebf0 f fniwin.obj - 0001:0001dd20 ?FAppendStn@STN@@QAEHPAV1@@Z 0041ed20 f fniwin.obj - 0001:0001dd60 ?FInsertCh@STN@@QAEHJD@Z 0041ed60 f fniwin.obj - 0001:0001dda0 ?FEqual@STN@@QAEHPAV1@@Z 0041eda0 f fniwin.obj - 0001:0001dde0 ?FEqualUser@STN@@QAEHPAV1@K@Z 0041ede0 f fniwin.obj - 0001:0001de80 ??_GFNI@@UAEPAXI@Z 0041ee80 f fniwin.obj - 0001:0001de80 ??_EFNI@@UAEPAXI@Z 0041ee80 f fniwin.obj - 0001:0001dec0 ?FWouldBe@GRPB@@SGHJ@Z 0041eec0 f groups.obj - 0001:0001df00 ?FIs@GRPB@@UAEHJ@Z 0041ef00 f groups.obj - 0001:0001df30 ?Cls@GRPB@@UAEJXZ 0041ef30 f groups.obj - 0001:0001df60 ?FWouldBe@GLB@@SGHJ@Z 0041ef60 f groups.obj - 0001:0001dfa0 ?FIs@GLB@@UAEHJ@Z 0041efa0 f groups.obj - 0001:0001dfd0 ?Cls@GLB@@UAEJXZ 0041efd0 f groups.obj - 0001:0001e000 ?FWouldBe@GL@@SGHJ@Z 0041f000 f groups.obj - 0001:0001e040 ?FIs@GL@@UAEHJ@Z 0041f040 f groups.obj - 0001:0001e070 ?Cls@GL@@UAEJXZ 0041f070 f groups.obj - 0001:0001e0a0 ?FWouldBe@GGB@@SGHJ@Z 0041f0a0 f groups.obj - 0001:0001e0e0 ?FIs@GGB@@UAEHJ@Z 0041f0e0 f groups.obj - 0001:0001e110 ?Cls@GGB@@UAEJXZ 0041f110 f groups.obj - 0001:0001e140 ?FWouldBe@GG@@SGHJ@Z 0041f140 f groups.obj - 0001:0001e180 ?FIs@GG@@UAEHJ@Z 0041f180 f groups.obj - 0001:0001e1b0 ?Cls@GG@@UAEJXZ 0041f1b0 f groups.obj - 0001:0001e1e0 ??1GRPB@@UAE@XZ 0041f1e0 f groups.obj - 0001:0001e250 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0041f250 f groups.obj - 0001:0001e450 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0041f450 f groups.obj - 0001:0001e610 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0041f610 f groups.obj - 0001:0001e670 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0041f670 f groups.obj - 0001:0001e840 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0041f840 f groups.obj - 0001:0001e9c0 ?AssertValid@GRPB@@QAEXK@Z 0041f9c0 f groups.obj - 0001:0001eb50 ?MarkMem@GRPB@@UAEXXZ 0041fb50 f groups.obj - 0001:0001ebc0 ??0GLB@@IAE@J@Z 0041fbc0 f groups.obj - 0001:0001ec50 ?QvGet@GLB@@QAEPAXJ@Z 0041fc50 f groups.obj - 0001:0001ece0 ?Get@GLB@@QAEXJPAX@Z 0041fce0 f groups.obj - 0001:0001ed70 ?Put@GLB@@QAEXJPAX@Z 0041fd70 f groups.obj - 0001:0001ee20 ?CbRoundToLong@@YGJJ@Z 0041fe20 f groups.obj - 0001:0001ee40 ?AssertValid@GLB@@QAEXK@Z 0041fe40 f groups.obj - 0001:0001eee0 ?PglNew@GL@@SGPAV1@JJ@Z 0041fee0 f groups.obj - 0001:0001f010 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 00420010 f groups.obj - 0001:0001f1d0 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 004201d0 f groups.obj - 0001:0001f230 ??0GL@@IAE@J@Z 00420230 f groups.obj - 0001:0001f290 ?FFree@GL@@UAEHJ@Z 00420290 f groups.obj - 0001:0001f300 ?CbOnFile@GL@@UAEJXZ 00420300 f groups.obj - 0001:0001f360 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00420360 f groups.obj - 0001:0001f530 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00420530 f groups.obj - 0001:0001f780 ?FInsert@GL@@QAEHJPAXJ@Z 00420780 f groups.obj - 0001:0001f900 ?Delete@GL@@UAEXJ@Z 00420900 f groups.obj - 0001:0001f960 ?Delete@GL@@QAEXJJ@Z 00420960 f groups.obj - 0001:0001fad0 ?FAdd@GL@@UAEHPAXPAJ@Z 00420ad0 f groups.obj - 0001:0001fb80 ?FPop@GL@@QAEHPAX@Z 00420b80 f groups.obj - 0001:0001fc90 ?FEnsureSpace@GL@@QAEHJK@Z 00420c90 f groups.obj - 0001:0001fd60 ?_Qb1@GRPB@@IAEPAEJ@Z 00420d60 f groups.obj - 0001:0001fd90 ?_Qb2@GRPB@@IAEPAEJ@Z 00420d90 f groups.obj - 0001:0001fdc0 ?_Cb1@GRPB@@IAEJXZ 00420dc0 f groups.obj - 0001:0001fdf0 ??0GRPB@@IAE@XZ 00420df0 f groups.obj - 0001:0001fe30 ?_Cb2@GRPB@@IAEJXZ 00420e30 f groups.obj - 0001:0001fe60 ??0GGB@@IAE@JH@Z 00420e60 f groups.obj - 0001:0001ff20 ?CbOnFile@GGB@@UAEJXZ 00420f20 f groups.obj - 0001:0001ff80 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00420f80 f groups.obj - 0001:000201d0 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 004211d0 f groups.obj - 0001:000204e0 ?FFree@GGB@@UAEHJ@Z 004214e0 f groups.obj - 0001:00020620 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 00421620 f groups.obj - 0001:00020660 ?FEnsureSpace@GGB@@QAEHJJK@Z 00421660 f groups.obj - 0001:000207c0 ?_RemoveRgb@GGB@@IAEXJJ@Z 004217c0 f groups.obj - 0001:00020910 ?_AdjustLocs@GGB@@IAEXJJJ@Z 00421910 f groups.obj - 0001:00020a80 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00421a80 f groups.obj - 0001:00020b90 ?GetFixed@GGB@@QAEXJPAX@Z 00421b90 f groups.obj - 0001:00020ca0 ?Cb@GGB@@QAEJJ@Z 00421ca0 f groups.obj - 0001:00020d50 ?QvGet@GGB@@QAEPAXJPAJ@Z 00421d50 f groups.obj - 0001:00020e60 ?PvLock@GGB@@QAEPAXJPAJ@Z 00421e60 f groups.obj - 0001:00020ec0 ?GetRgb@GGB@@QAEXJJJPAX@Z 00421ec0 f groups.obj - 0001:00020fd0 ?DeleteRgb@GGB@@QAEXJJJ@Z 00421fd0 f groups.obj - 0001:000211c0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 004221c0 f groups.obj - 0001:00021480 ?AssertValid@GGB@@QAEXK@Z 00422480 f groups.obj - 0001:000217e0 ?PggNew@GG@@SGPAV1@JJJ@Z 004227e0 f groups.obj - 0001:00021930 ??0GG@@IAE@J@Z 00422930 f groups.obj - 0001:00021970 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00422970 f groups.obj - 0001:00021b40 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 00422b40 f groups.obj - 0001:00021ba0 ?FInsert@GG@@QAEHJJPAX0@Z 00422ba0 f groups.obj - 0001:00021e50 ?FAdd@GG@@UAEHJPAJPAX1@Z 00422e50 f groups.obj - 0001:00021f10 ?Delete@GG@@UAEXJ@Z 00422f10 f groups.obj - 0001:00022050 ?AssertValid@GG@@QAEXK@Z 00423050 f groups.obj - 0001:000220e0 ??_EGRPB@@UAEPAXI@Z 004230e0 f groups.obj - 0001:000220e0 ??_GGRPB@@UAEPAXI@Z 004230e0 f groups.obj - 0001:00022120 ??_EGG@@UAEPAXI@Z 00423120 f groups.obj - 0001:00022120 ??_GGG@@UAEPAXI@Z 00423120 f groups.obj - 0001:00022160 ??_GGLB@@UAEPAXI@Z 00423160 f groups.obj - 0001:00022160 ??_EGLB@@UAEPAXI@Z 00423160 f groups.obj - 0001:000221a0 ??_GGL@@UAEPAXI@Z 004231a0 f groups.obj - 0001:000221a0 ??_EGL@@UAEPAXI@Z 004231a0 f groups.obj - 0001:000221e0 ??1GLB@@UAE@XZ 004231e0 f groups.obj - 0001:00022210 ??_GGGB@@UAEPAXI@Z 00423210 f groups.obj - 0001:00022210 ??_EGGB@@UAEPAXI@Z 00423210 f groups.obj - 0001:00022250 ??1GGB@@UAE@XZ 00423250 f groups.obj - 0001:00022280 ??1GG@@UAE@XZ 00423280 f groups.obj - 0001:000222b0 ??1GL@@UAE@XZ 004232b0 f groups.obj - 0001:00022320 _main 00423320 f chmerge.obj - 0001:00022970 ?WarnProc@@YGXPADJ0@Z 00423970 f chmerge.obj - 0001:000229f0 ?FAssertProc@@YGHPADJ0PAXJ@Z 004239f0 f chmerge.obj - 0001:00022bc6 _timeGetTime@0 00423bc6 winmm:WINMM.dll - 0001:00022bcc __alloca_probe 00423bcc LIBC:chkstk.obj - 0001:00022bcc __chkstk 00423bcc LIBC:chkstk.obj - 0001:00022bf9 __onexit 00423bf9 f LIBC:onexit.obj - 0001:00022c6f _atexit 00423c6f f LIBC:onexit.obj - 0001:00022c81 ___onexitinit 00423c81 f LIBC:onexit.obj - 0001:00022cb7 __purecall 00423cb7 f LIBC:purevirt.obj - 0001:00022cc2 _fprintf 00423cc2 f LIBC:fprintf.obj - 0001:00022cf8 _printf 00423cf8 f LIBC:printf.obj - 0001:00022d34 _mainCRTStartup 00423d34 f LIBC:crt0.obj - 0001:00022e2d __amsg_exit 00423e2d f LIBC:crt0.obj - 0001:00022e4d __cinit 00423e4d f LIBC:crt0dat.obj - 0001:00022e7d _exit 00423e7d f LIBC:crt0dat.obj - 0001:00022e8e __exit 00423e8e f LIBC:crt0dat.obj - 0001:00022f3e _realloc 00423f3e f LIBC:realloc.obj - 0001:00023090 __msize 00424090 f LIBC:msize.obj - 0001:000230a1 _malloc 004240a1 f LIBC:malloc.obj - 0001:000230b4 __nh_malloc 004240b4 f LIBC:malloc.obj - 0001:00023173 __heap_split_block 00424173 f LIBC:malloc.obj - 0001:000231b8 __stbuf 004241b8 f LIBC:_sftbuf.obj - 0001:00023239 __ftbuf 00424239 f LIBC:_sftbuf.obj - 0001:0002327f __output 0042427f f LIBC:output.obj - 0001:00023ba8 __global_unwind2 00424ba8 f LIBC:exsup.obj - 0001:00023bea __local_unwind2 00424bea f LIBC:exsup.obj - 0001:00023c44 __abnormal_termination 00424c44 f LIBC:exsup.obj - 0001:00023c67 __XcptFilter 00424c67 f LIBC:winxfltr.obj - 0001:00023df2 __setenvp 00424df2 f LIBC:stdenvp.obj - 0001:00023ebd __setargv 00424ebd f LIBC:stdargv.obj - 0001:000241bb __setmbcp 004251bb f LIBC:mbctype.obj - 0001:00024349 ___initmbctable 00425349 f LIBC:mbctype.obj - 0001:00024354 __ioinit 00425354 f LIBC:ioinit.obj - 0001:00024442 __heap_init 00425442 f LIBC:heapinit.obj - 0001:000244bf ___getempty 004254bf f LIBC:heapinit.obj - 0001:000244ec __except_handler3 004254ec f LIBC:exsup3.obj - 0001:0002459a __seh_longjmp_unwind@4 0042559a f LIBC:exsup3.obj - 0001:000245b5 __FF_MSGBANNER 004255b5 f LIBC:crt0msg.obj - 0001:000245db __NMSG_WRITE 004255db f LIBC:crt0msg.obj - 0001:00024633 _free 00425633 f LIBC:free.obj - 0001:0002469b __heap_abort 0042569b f LIBC:hpabort.obj - 0001:000246a6 __heap_grow 004256a6 f LIBC:heapgrow.obj - 0001:0002478f __heap_grow_region 0042578f f LIBC:heapgrow.obj - 0001:0002483c __heap_free_region 0042583c f LIBC:heapgrow.obj - 0001:00024876 __heap_search 00425876 f LIBC:heapsrch.obj - 0001:00024966 _fflush 00425966 f LIBC:fflush.obj - 0001:000249b2 __flush 004259b2 f LIBC:fflush.obj - 0001:00024a14 __flushall 00425a14 f LIBC:fflush.obj - 0001:00024a89 ___endstdio 00425a89 f LIBC:fflush.obj - 0001:00024a9d __isatty 00425a9d f LIBC:isatty.obj - 0001:00024ab7 _wctomb 00425ab7 f LIBC:wctomb.obj - 0001:00024b30 __aulldiv 00425b30 f LIBC:ulldiv.obj - 0001:00024b90 __aullrem 00425b90 f LIBC:ullrem.obj - 0001:00024bfa __flsbuf 00425bfa f LIBC:_flsbuf.obj - 0001:00024d06 __heap_addblock 00425d06 f LIBC:heapadd.obj - 0001:00024fbd __commit 00425fbd f LIBC:commit.obj - 0001:0002500a __write 0042600a f LIBC:write.obj - 0001:000251a3 __fcloseall 004261a3 f LIBC:closeall.obj - 0001:000251d4 __fptrap 004261d4 f LIBC:crt0fp.obj - 0001:000251df __lseek 004261df f LIBC:lseek.obj - 0001:00025254 __getbuf 00426254 f LIBC:_getbuf.obj - 0001:0002529f __heap_findaddr 0042629f f LIBC:findaddr.obj - 0001:00025309 __free_osfhnd 00426309 f LIBC:osfinfo.obj - 0001:00025376 __get_osfhandle 00426376 f LIBC:osfinfo.obj - 0001:000253ae __dosmaperr 004263ae f LIBC:dosmap.obj - 0001:00025417 _fclose 00426417 f LIBC:fclose.obj - 0001:00025473 __close 00426473 f LIBC:close.obj - 0001:00025509 __freebuf 00426509 f LIBC:_freebuf.obj - 0001:00025542 _RtlUnwind@16 00426542 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00427000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00427018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00427030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 00427040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 00427058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 00427070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004270c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004270e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 00427108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 0042710c base.obj - 0002:00000120 ?_ers@@3VERS@@A 00427120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 00427248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 00427260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 00427368 utilstr.obj - 0002:00000478 ?_pcflFirst@CFL@@0PAV1@A 00427478 chunk.obj - 0002:000004a0 ?_pfilFirst@FIL@@1PAV1@A 004274a0 file.obj - 0002:000004a8 ?_mutxList@FIL@@1VMUTX@@A 004274a8 file.obj - 0002:000004d0 ?_fniTemp@@3VFNI@@A 004274d0 fniwin.obj - 0002:0000070c __heap_descpages 0042770c - 0002:00000710 __heap_regions 00427710 - 0002:00000a10 ___onexitend 00427a10 - 0002:00000a14 __FPinit 00427a14 - 0002:00000a18 ___onexitbegin 00427a18 - 0002:00000a1c __acmdln 00427a1c - 0002:00000a20 __bufin 00427a20 - 0003:00000058 ??_7KCDC@@6B@ 00429058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00429078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 00429090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004290b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004290c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 00429100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 00429118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 00429138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 00429158 utilstr.obj - 0003:00000170 ??_7CFL@@6B@ 00429170 chunk.obj - 0003:00000188 ??_7CGE@@6B@ 00429188 chunk.obj - 0003:000001a0 ??_7CODM@@6B@ 004291a0 codec.obj - 0003:000001d0 ??_7FIL@@6B@ 004291d0 file.obj - 0003:000001e8 ??_7BLCK@@6B@ 004291e8 file.obj - 0003:00000200 ??_7FNI@@6B@ 00429200 fniwin.obj - 0003:00000218 ??_7GRPB@@6B@ 00429218 groups.obj - 0003:00000248 ??_7GLB@@6B@ 00429248 groups.obj - 0003:00000278 ??_7GL@@6B@ 00429278 groups.obj - 0003:000002a8 ??_7GGB@@6B@ 004292a8 groups.obj - 0003:000002d8 ??_7GG@@6B@ 004292d8 groups.obj - 0003:00000318 ___lookuptable 00429318 LIBC:output.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 0042a020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 0042a024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 0042a064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 0042a068 base.obj - 0004:0000006c ?vcactAV@@3JA 0042a06c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 0042a070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 0042a088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 0042a0a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 0042a0b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 0042a0c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 0042a0e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 0042a0f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0042a10c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 0042a120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0042a13c base.obj - 0004:0000015c ??_C@_03GOHA@nil?$AA@ 0042a15c base.obj - 0004:00000160 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 0042a160 base.obj - 0004:00000170 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 0042a170 base.obj - 0004:00000180 ??_C@_0O@NAKK@links?5corrupt?$AA@ 0042a180 base.obj - 0004:000001b0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 0042a1b0 utilcopy.obj - 0004:000001e0 ?vpers@@3PAVERS@@A 0042a1e0 utilerro.obj - 0004:000001e4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 0042a1e4 utilerro.obj - 0004:0000020c ??_C@_08GEE@Error?5?$CFd?$AA@ 0042a20c utilerro.obj - 0004:00000238 ??_C@_084overflow?$AA@ 0042a238 utilint.obj - 0004:00000244 ??_C@_0N@INPL@long?5too?5big?$AA@ 0042a244 utilint.obj - 0004:00000254 ??_C@_0P@DFPA@long?5too?5small?$AA@ 0042a254 utilint.obj - 0004:00000264 ??_C@_09MGFD@wrong?5bom?$AA@ 0042a264 utilint.obj - 0004:00000270 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 0042a270 utilint.obj - 0004:000002b8 ?vpfnlib@@3P6GJJJ@ZA 0042a2b8 utilmem.obj - 0004:000002bc ?_fInLiberator@@3HA 0042a2bc utilmem.obj - 0004:000002c0 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 0042a2c0 utilmem.obj - 0004:000002e4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 0042a2e4 utilmem.obj - 0004:000002fc ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 0042a2fc utilmem.obj - 0004:00000324 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 0042a324 utilmem.obj - 0004:00000348 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 0042a348 utilmem.obj - 0004:00000368 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 0042a368 utilmem.obj - 0004:0000037c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 0042a37c utilmem.obj - 0004:00000390 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 0042a390 utilmem.obj - 0004:000003a4 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 0042a3a4 utilmem.obj - 0004:000003b8 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 0042a3b8 utilmem.obj - 0004:000003d0 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 0042a3d0 utilmem.obj - 0004:000003e4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 0042a3e4 utilmem.obj - 0004:000003f4 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 0042a3f4 utilmem.obj - 0004:00000408 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 0042a408 utilmem.obj - 0004:00000424 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 0042a424 utilmem.obj - 0004:00000438 ??_C@_08ECDH@wrong?5cb?$AA@ 0042a438 utilmem.obj - 0004:00000444 ??_C@_06BHIL@nil?5pv?$AA@ 0042a444 utilmem.obj - 0004:00000470 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 0042a470 utilrnd.obj - 0004:0000048c ??_C@_0L@LEMP@_clw?5wrong?$AA@ 0042a48c utilrnd.obj - 0004:00000498 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 0042a498 utilrnd.obj - 0004:000004a8 ??_C@_0L@DINP@wrong?5_clw?$AA@ 0042a4a8 utilrnd.obj - 0004:000005d8 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 0042a5d8 utilstr.obj - 0004:00000600 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 0042a600 utilstr.obj - 0004:00000610 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 0042a610 utilstr.obj - 0004:00000638 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 0042a638 utilstr.obj - 0004:00000648 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 0042a648 utilstr.obj - 0004:0000065c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 0042a65c utilstr.obj - 0004:00000678 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 0042a678 utilstr.obj - 0004:00000694 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 0042a694 utilstr.obj - 0004:000006a0 ??_C@_07NPFI@bad?5osk?$AA@ 0042a6a0 utilstr.obj - 0004:000006c8 ?vcactSuspendCheckPointers@@3JA 0042a6c8 memwin.obj - 0004:000006cc ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 0042a6cc memwin.obj - 0004:000006e0 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 0042a6e0 memwin.obj - 0004:000006f4 ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 0042a6f4 memwin.obj - 0004:0000070c ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 0042a70c memwin.obj - 0004:0000071c ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 0042a71c memwin.obj - 0004:00000740 ??_C@_09BABB@hq?5is?5nil?$AA@ 0042a740 memwin.obj - 0004:0000074c ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 0042a74c memwin.obj - 0004:00000788 ?_rtiLast@CFL@@0JA 0042a788 chunk.obj - 0004:0000078c ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 0042a78c chunk.obj - 0004:000007a8 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 0042a7a8 chunk.obj - 0004:000007c8 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 0042a7c8 chunk.obj - 0004:000007e0 ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 0042a7e0 chunk.obj - 0004:000007f0 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 0042a7f0 chunk.obj - 0004:00000814 ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 0042a814 chunk.obj - 0004:00000828 ??_C@_08EHFM@Bad?5RTIE?$AA@ 0042a828 chunk.obj - 0004:00000834 ??_C@_09HBDJ@bad?5index?$AA@ 0042a834 chunk.obj - 0004:00000840 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 0042a840 chunk.obj - 0004:00000860 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 0042a860 chunk.obj - 0004:00000874 ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 0042a874 chunk.obj - 0004:00000884 ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 0042a884 chunk.obj - 0004:00000894 ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 0042a894 chunk.obj - 0004:000008b0 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 0042a8b0 chunk.obj - 0004:000008cc ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 0042a8cc chunk.obj - 0004:000008e4 ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 0042a8e4 chunk.obj - 0004:00000908 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 0042a908 chunk.obj - 0004:00000924 ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 0042a924 chunk.obj - 0004:00000938 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 0042a938 chunk.obj - 0004:0000094c ??_C@_06CFJE@bad?5fp?$AA@ 0042a94c chunk.obj - 0004:00000954 ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 0042a954 chunk.obj - 0004:00000968 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 0042a968 chunk.obj - 0004:00000978 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 0042a978 chunk.obj - 0004:00000984 ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 0042a984 chunk.obj - 0004:000009a8 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 0042a9a8 chunk.obj - 0004:000009c0 ??_C@_0M@INOI@corrupt?5crp?$AA@ 0042a9c0 chunk.obj - 0004:000009cc ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 0042a9cc chunk.obj - 0004:000009ec ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 0042a9ec chunk.obj - 0004:00000a04 ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 0042aa04 chunk.obj - 0004:00000a1c ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 0042aa1c chunk.obj - 0004:00000a3c ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 0042aa3c chunk.obj - 0004:00000a4c ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 0042aa4c chunk.obj - 0004:00000a70 ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 0042aa70 chunk.obj - 0004:00000a9c ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 0042aa9c chunk.obj - 0004:00000ab4 ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 0042aab4 chunk.obj - 0004:00000acc ??_C@_0BA@JOOP@child?5not?5there?$AA@ 0042aacc chunk.obj - 0004:00000adc ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 0042aadc chunk.obj - 0004:00000b14 ??_C@_03JFP@MIA?$AA@ 0042ab14 chunk.obj - 0004:00000b18 ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 0042ab18 chunk.obj - 0004:00000b3c ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 0042ab3c chunk.obj - 0004:00000b4c ??_C@_07NFMH@overlap?$AA@ 0042ab4c chunk.obj - 0004:00000b54 ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 0042ab54 chunk.obj - 0004:00000b60 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 0042ab60 chunk.obj - 0004:00000b88 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 0042ab88 chunk.obj - 0004:00000b94 ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 0042ab94 chunk.obj - 0004:00000ba0 ??_C@_06JFMK@bad?5cb?$AA@ 0042aba0 chunk.obj - 0004:00000ba8 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 0042aba8 chunk.obj - 0004:00000bbc ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 0042abbc chunk.obj - 0004:00000be8 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 0042abe8 chunk.obj - 0004:00000bf8 ??_C@_07BDGM@bad?5crp?$AA@ 0042abf8 chunk.obj - 0004:00000c00 ??_C@_0CE@COLA@why?5is?5this?5cnom?5already?5in?5the?5@ 0042ac00 chunk.obj - 0004:00000c24 ??_C@_0BK@ECCP@_FFindCtgCno?5doesn?8t?5work?$AA@ 0042ac24 chunk.obj - 0004:00000c40 ??_C@_0CL@CGLG@how?5can?5the?5root?5already?5have?5be@ 0042ac40 chunk.obj - 0004:00000c6c ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 0042ac6c chunk.obj - 0004:00000ca0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 0042aca0 codec.obj - 0004:00000cc0 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 0042acc0 codec.obj - 0004:00000cd8 ??_C@_08DJLA@nil?5cfmt?$AA@ 0042acd8 codec.obj - 0004:00000ce4 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 0042ace4 codec.obj - 0004:00000d04 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 0042ad04 codec.obj - 0004:00000d40 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 0042ad40 codkauai.obj - 0004:00000d64 ??_C@_07DEPO@bad?5len?$AA@ 0042ad64 codkauai.obj - 0004:00000d6c ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 0042ad6c codkauai.obj - 0004:00000d7c ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 0042ad7c codkauai.obj - 0004:00000da0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 0042ada0 codkauai.obj - 0004:00000db4 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 0042adb4 codkauai.obj - 0004:00000dc8 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 0042adc8 codkauai.obj - 0004:00000de4 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 0042ade4 codkauai.obj - 0004:00000e34 ?vftgCreator@FIL@@2JA 0042ae34 file.obj - 0004:00000e38 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 0042ae38 file.obj - 0004:00000e4c ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 0042ae4c file.obj - 0004:00000e60 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 0042ae60 file.obj - 0004:00000e74 ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 0042ae74 file.obj - 0004:00000e8c ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 0042ae8c file.obj - 0004:00000ea4 ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 0042aea4 file.obj - 0004:00000ebc ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 0042aebc file.obj - 0004:00000ed4 ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 0042aed4 file.obj - 0004:00000ee8 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 0042aee8 file.obj - 0004:00000f00 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 0042af00 file.obj - 0004:00000f14 ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 0042af14 file.obj - 0004:00000f28 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 0042af28 file.obj - 0004:00000f3c ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 0042af3c file.obj - 0004:00000f50 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 0042af50 file.obj - 0004:00000f6c ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 0042af6c file.obj - 0004:00000f84 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 0042af84 file.obj - 0004:00000fa0 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 0042afa0 file.obj - 0004:00000fc0 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 0042afc0 file.obj - 0004:00001008 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 0042b008 filewin.obj - 0004:00001024 ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 0042b024 filewin.obj - 0004:00001040 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 0042b040 filewin.obj - 0004:00001060 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 0042b060 filewin.obj - 0004:00001070 ??_C@_0P@DBGM@rename?5failure?$AA@ 0042b070 filewin.obj - 0004:00001080 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 0042b080 filewin.obj - 0004:000010b0 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 0042b0b0 filewin.obj - 0004:000010e4 ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 0042b0e4 filewin.obj - 0004:00001130 ?vftgTemp@@3JA 0042b130 fniwin.obj - 0004:00001138 ??_C@_08GBDA@Temp?$CF04x?$AA@ 0042b138 fniwin.obj - 0004:00001144 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 0042b144 fniwin.obj - 0004:0000115c ??_C@_07JFJJ@Bad?5FTG?$AA@ 0042b15c fniwin.obj - 0004:00001164 ??_C@_07NLCI@bad?5fni?$AA@ 0042b164 fniwin.obj - 0004:0000116c ??_C@_0N@NEA@file?5is?5open?$AA@ 0042b16c fniwin.obj - 0004:0000117c ??_C@_0BC@IKJG@expected?5filename?$AA@ 0042b17c fniwin.obj - 0004:00001190 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 0042b190 fniwin.obj - 0004:000011a0 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 0042b1a0 fniwin.obj - 0004:000011b4 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 0042b1b4 fniwin.obj - 0004:000011cc ??_C@_0P@EFJD@unexpected?5dir?$AA@ 0042b1cc fniwin.obj - 0004:000011dc ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 0042b1dc fniwin.obj - 0004:000011ec ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 0042b1ec fniwin.obj - 0004:00001220 ??_C@_0P@JECG@negative?5sizes?$AA@ 0042b220 groups.obj - 0004:00001230 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 0042b230 groups.obj - 0004:00001240 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 0042b240 groups.obj - 0004:00001254 ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 0042b254 groups.obj - 0004:00001268 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 0042b268 groups.obj - 0004:00001284 ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 0042b284 groups.obj - 0004:000012a0 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 0042b2a0 groups.obj - 0004:000012b8 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 0042b2b8 groups.obj - 0004:000012e0 ??_C@_08OO@wrong?5bo?$AA@ 0042b2e0 groups.obj - 0004:000012ec ??_C@_06NHBD@bad?5bo?$AA@ 0042b2ec groups.obj - 0004:000012f4 ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 0042b2f4 groups.obj - 0004:00001310 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 0042b310 groups.obj - 0004:0000133c ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 0042b33c groups.obj - 0004:00001358 ??_C@_07PIIM@bad?5loc?$AA@ 0042b358 groups.obj - 0004:00001360 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 0042b360 groups.obj - 0004:00001384 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 0042b384 groups.obj - 0004:000013a4 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 0042b3a4 groups.obj - 0004:000013c4 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 0042b3c4 groups.obj - 0004:000013d4 ??_C@_05HCAE@oops?$CB?$AA@ 0042b3d4 groups.obj - 0004:000013dc ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 0042b3dc groups.obj - 0004:000013ec ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 0042b3ec groups.obj - 0004:00001400 ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 0042b400 groups.obj - 0004:00001418 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 0042b418 groups.obj - 0004:00001440 ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 0042b440 groups.obj - 0004:00001454 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 0042b454 groups.obj - 0004:00001468 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 0042b468 groups.obj - 0004:0000147c ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 0042b47c groups.obj - 0004:00001494 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 0042b494 groups.obj - 0004:000014ac ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 0042b4ac groups.obj - 0004:000014c4 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 0042b4c4 groups.obj - 0004:0000151c ?_fEnableWarnings@@3HA 0042b51c chmerge.obj - 0004:00001520 ??_C@_0BC@CAHO@Something?5failed?6?$AA@ 0042b520 chmerge.obj - 0004:00001534 ??_C@_02DILL@?$CFs?$AA@ 0042b534 chmerge.obj - 0004:00001538 ??_C@_0DN@LEOE@Usage?3?5?5chmerge?5?$FL?9r?$FN?5?$DMsrcFile0?$DO?5@ 0042b538 chmerge.obj - 0004:00001578 ??_C@_0P@JGCN@what?5happened?$DP?$AA@ 0042b578 chmerge.obj - 0004:00001588 ??_C@_0CB@HHN@Error?3?5Not?5enough?5chunky?5files?6?6@ 0042b588 chmerge.obj - 0004:000015ac ??_C@_0CN@JABG@Error?3?5Duplicate?5chunks?3?5?8?$CFc?$CFc?$CFc@ 0042b5ac chmerge.obj - 0004:000015dc ??_C@_0BO@NFLM@Error?3?5Copying?5chunk?5failed?6?6?$AA@ 0042b5dc chmerge.obj - 0004:000015fc ??_C@_0BK@OJAK@Error?3?5Couldn?8t?5open?5?$CFs?6?6?$AA@ 0042b5fc chmerge.obj - 0004:00001618 ??_C@_0BL@FFAM@Error?3?5Bad?5file?5name?3?5?$CFs?6?6?$AA@ 0042b618 chmerge.obj - 0004:00001634 ??_C@_0CD@GMGF@?9r?5must?5come?5before?5any?5file?5nam@ 0042b634 chmerge.obj - 0004:00001658 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0042b658 chmerge.obj - 0004:00001694 ??_C@_0EP@GKHH@?6Microsoft?5?$CIR?$CJ?5Chunky?5File?5Merge@ 0042b694 chmerge.obj - 0004:000016e4 ??_C@_01BJG@?6?$AA@ 0042b6e4 chmerge.obj - 0004:000016e8 ??_C@_04OFDJ@?3?5?$CFs?$AA@ 0042b6e8 chmerge.obj - 0004:000016f0 ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 0042b6f0 chmerge.obj - 0004:00001704 ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 0042b704 chmerge.obj - 0004:00001714 ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 0042b714 chmerge.obj - 0004:00001724 ??_C@_05LCJC@?$CF08lx?$AA@ 0042b724 chmerge.obj - 0004:0000172c ??_C@_04JGFO@?$CF04x?$AA@ 0042b72c chmerge.obj - 0004:00001734 ??_C@_04OBKB@?$CF02x?$AA@ 0042b734 chmerge.obj - 0004:0000173c ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 0042b73c chmerge.obj - 0004:00001748 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 0042b748 chmerge.obj - 0004:00001758 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 0042b758 chmerge.obj - 0004:00001768 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 0042b768 chmerge.obj - 0004:00001780 __iob 0042b780 LIBC:_file.obj - 0004:00001a00 __lastiob 0042ba00 LIBC:_file.obj - 0004:00001a04 __aenvptr 0042ba04 LIBC:crt0.obj - 0004:00001a08 __wenvptr 0042ba08 LIBC:crt0.obj - 0004:00001a0c __aexit_rtn 0042ba0c LIBC:crt0.obj - 0004:00001a10 _errno 0042ba10 LIBC:crt0dat.obj - 0004:00001a14 __doserrno 0042ba14 LIBC:crt0dat.obj - 0004:00001a18 __umaskval 0042ba18 LIBC:crt0dat.obj - 0004:00001a1c __osver 0042ba1c LIBC:crt0dat.obj - 0004:00001a20 __winver 0042ba20 LIBC:crt0dat.obj - 0004:00001a24 __winmajor 0042ba24 LIBC:crt0dat.obj - 0004:00001a28 __winminor 0042ba28 LIBC:crt0dat.obj - 0004:00001a2c ___argc 0042ba2c LIBC:crt0dat.obj - 0004:00001a30 ___argv 0042ba30 LIBC:crt0dat.obj - 0004:00001a34 ___wargv 0042ba34 LIBC:crt0dat.obj - 0004:00001a38 __environ 0042ba38 LIBC:crt0dat.obj - 0004:00001a3c ___initenv 0042ba3c LIBC:crt0dat.obj - 0004:00001a40 __wenviron 0042ba40 LIBC:crt0dat.obj - 0004:00001a44 ___winitenv 0042ba44 LIBC:crt0dat.obj - 0004:00001a48 __pgmptr 0042ba48 LIBC:crt0dat.obj - 0004:00001a4c __wpgmptr 0042ba4c LIBC:crt0dat.obj - 0004:00001a50 __exitflag 0042ba50 LIBC:crt0dat.obj - 0004:00001a54 __C_Termination_Done 0042ba54 LIBC:crt0dat.obj - 0004:00001a58 __pnhHeap 0042ba58 LIBC:malloc.obj - 0004:00001a60 __stdbuf 0042ba60 LIBC:_sftbuf.obj - 0004:00001a70 ___nullstring 0042ba70 LIBC:output.obj - 0004:00001a84 ___wnullstring 0042ba84 LIBC:output.obj - 0004:00001a88 __XcptActTab 0042ba88 LIBC:winxfltr.obj - 0004:00001b00 __First_FPE_Indx 0042bb00 LIBC:winxfltr.obj - 0004:00001b04 __Num_FPE 0042bb04 LIBC:winxfltr.obj - 0004:00001b08 __XcptActTabCount 0042bb08 LIBC:winxfltr.obj - 0004:00001b0c __fpecode 0042bb0c LIBC:winxfltr.obj - 0004:00001b10 __pxcptinfoptrs 0042bb10 LIBC:winxfltr.obj - 0004:00001b18 __mbctype 0042bb18 LIBC:mbctype.obj - 0004:00001c1c ___mbcodepage 0042bc1c LIBC:mbctype.obj - 0004:00001c20 ___mblcid 0042bc20 LIBC:mbctype.obj - 0004:00001c28 ___mbulinfo 0042bc28 LIBC:mbctype.obj - 0004:00001d30 __nhandle 0042bd30 LIBC:ioinit.obj - 0004:00001d38 __osfile 0042bd38 LIBC:ioinit.obj - 0004:00001d78 __osfhnd 0042bd78 LIBC:ioinit.obj - 0004:00001e78 __pipech 0042be78 LIBC:ioinit.obj - 0004:00001eb8 __heap_desc 0042beb8 LIBC:heapinit.obj - 0004:00001ecc __heap_resetsize 0042becc LIBC:heapinit.obj - 0004:00001ed0 __amblksiz 0042bed0 LIBC:heapinit.obj - 0004:00001ed4 __heap_regionsize 0042bed4 LIBC:heapinit.obj - 0004:00001ed8 __heap_maxregsize 0042bed8 LIBC:heapinit.obj - 0004:00002148 __adbgmsg 0042c148 LIBC:crt0msg.obj - 0004:0000214c __newmode 0042c14c LIBC:_newmode.obj - 0004:00002150 __cflush 0042c150 LIBC:fflush.obj - 0004:00002158 __cfltcvt_tab 0042c158 LIBC:cmiscdat.obj - 0004:00002170 __pctype 0042c170 LIBC:ctype.obj - 0004:00002174 __pwctype 0042c174 LIBC:ctype.obj - 0004:00002178 __ctype 0042c178 LIBC:ctype.obj - 0004:00002380 ___lc_handle 0042c380 LIBC:nlsdata2.obj - 0004:00002398 ___lc_codepage 0042c398 LIBC:nlsdata2.obj - 0004:0000239c ___mb_cur_max 0042c39c LIBC:nlsdata1.obj - 0004:000023a4 ___decimal_point 0042c3a4 LIBC:nlsdata1.obj - 0004:000023a8 ___decimal_point_length 0042c3a8 LIBC:nlsdata1.obj - 0004:00002518 ___xc_a 0042c518 LIBC:crt0init.obj - 0004:0000256c ___xc_z 0042c56c LIBC:crt0init.obj - 0004:00002570 ___xi_a 0042c570 LIBC:crt0init.obj - 0004:00002578 ___xi_z 0042c578 LIBC:crt0init.obj - 0004:0000257c ___xp_a 0042c57c LIBC:crt0init.obj - 0004:00002584 ___xp_z 0042c584 LIBC:crt0init.obj - 0004:00002588 ___xt_a 0042c588 LIBC:crt0init.obj - 0004:0000258c ___xt_z 0042c58c LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0042d000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0042d014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0042d028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0042d03c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 0042d050 kernel32:KERNEL32.dll - 0005:00000120 __imp__DeleteCriticalSection@4 0042d120 kernel32:KERNEL32.dll - 0005:00000124 __imp__IsBadReadPtr@8 0042d124 kernel32:KERNEL32.dll - 0005:00000128 __imp__GlobalAlloc@8 0042d128 kernel32:KERNEL32.dll - 0005:0000012c __imp__GlobalFree@4 0042d12c kernel32:KERNEL32.dll - 0005:00000130 __imp__EnterCriticalSection@4 0042d130 kernel32:KERNEL32.dll - 0005:00000134 __imp__LeaveCriticalSection@4 0042d134 kernel32:KERNEL32.dll - 0005:00000138 __imp__GetCurrentThreadId@0 0042d138 kernel32:KERNEL32.dll - 0005:0000013c __imp__GlobalReAlloc@12 0042d13c kernel32:KERNEL32.dll - 0005:00000140 __imp__GlobalSize@4 0042d140 kernel32:KERNEL32.dll - 0005:00000144 __imp__WideCharToMultiByte@32 0042d144 kernel32:KERNEL32.dll - 0005:00000148 __imp__IsBadWritePtr@8 0042d148 kernel32:KERNEL32.dll - 0005:0000014c __imp__CreateFileA@28 0042d14c kernel32:KERNEL32.dll - 0005:00000150 __imp__CloseHandle@4 0042d150 kernel32:KERNEL32.dll - 0005:00000154 __imp__DeleteFileA@4 0042d154 kernel32:KERNEL32.dll - 0005:00000158 __imp__FlushFileBuffers@4 0042d158 kernel32:KERNEL32.dll - 0005:0000015c __imp__SetFilePointer@16 0042d15c kernel32:KERNEL32.dll - 0005:00000160 __imp__SetEndOfFile@4 0042d160 kernel32:KERNEL32.dll - 0005:00000164 __imp__ReadFile@20 0042d164 kernel32:KERNEL32.dll - 0005:00000168 __imp__WriteFile@20 0042d168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetFullPathNameA@16 0042d16c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetTempPathA@8 0042d170 kernel32:KERNEL32.dll - 0005:00000174 __imp__GetLastError@0 0042d174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetFileAttributesA@4 0042d178 kernel32:KERNEL32.dll - 0005:0000017c __imp__MoveFileA@8 0042d17c kernel32:KERNEL32.dll - 0005:00000180 __imp__InitializeCriticalSection@4 0042d180 kernel32:KERNEL32.dll - 0005:00000184 __imp__ExitProcess@4 0042d184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetVersion@0 0042d188 kernel32:KERNEL32.dll - 0005:0000018c __imp__SetStdHandle@8 0042d18c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetCommandLineA@0 0042d190 kernel32:KERNEL32.dll - 0005:00000194 __imp__VirtualAlloc@16 0042d194 kernel32:KERNEL32.dll - 0005:00000198 __imp__GetStdHandle@4 0042d198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetCPInfo@8 0042d19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetOEMCP@0 0042d1a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__GetStartupInfoA@4 0042d1a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__GetFileType@4 0042d1a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__GetEnvironmentStrings@0 0042d1ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__GetModuleFileNameA@12 0042d1b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__GetACP@0 0042d1b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__VirtualFree@12 0042d1b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__RtlUnwind@16 0042d1bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__UnhandledExceptionFilter@4 0042d1c0 kernel32:KERNEL32.dll - 0005:000001c4 \177KERNEL32_NULL_THUNK_DATA 0042d1c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__CharUpperBuffA@8 0042d1c8 user32:USER32.dll - 0005:000001cc \177USER32_NULL_THUNK_DATA 0042d1cc user32:USER32.dll - 0005:000001d0 __imp__timeGetTime@0 0042d1d0 winmm:WINMM.dll - 0005:000001d4 \177WINMM_NULL_THUNK_DATA 0042d1d4 winmm:WINMM.dll - 0005:000001d8 \177comdlg32_NULL_THUNK_DATA 0042d1d8 comdlg32:comdlg32.dll - - entry point at 0001:00022d34 - - Static symbols - - 0001:00022b90 _$$1000 00423b90 f chmerge.obj - 0001:00022bb0 _$$8000 00423bb0 f chmerge.obj - 0001:000222e0 _$$1000 004232e0 f groups2.obj - 0001:00022300 _$$8000 00423300 f groups2.obj - 0001:0001e430 _$$1000 0041f430 f groups.obj - 0001:000220c0 _$$8000 004230c0 f groups.obj - 0001:0001c140 _$$8000 0041d140 f fniwin.obj - 0001:0001c5e0 _$$1000 0041d5e0 f fniwin.obj - 0001:0001de20 _$$9000 0041ee20 f fniwin.obj - 0001:0001de40 _$$a000 0041ee40 f fniwin.obj - 0001:0001de60 _$$b000 0041ee60 f fniwin.obj - 0001:0001b4a0 _$$1000 0041c4a0 f filewin.obj - 0001:0001c120 _$$8000 0041d120 f filewin.obj - 0001:000182a0 _$$8000 004192a0 f file.obj - 0001:00018760 _$$1000 00419760 f file.obj - 0001:0001ae70 _$$9000 0041be70 f file.obj - 0001:0001ae90 _$$a000 0041be90 f file.obj - 0001:0001aeb0 _$$b000 0041beb0 f file.obj - 0001:00018260 _$$1000 00419260 f crf.obj - 0001:00018280 _$$8000 00419280 f crf.obj - 0001:00010c30 _$$1000 00411c30 f codkauai.obj - 0001:00018240 _$$8000 00419240 f codkauai.obj - 0001:0000fd30 _$$1000 00410d30 f codec.obj - 0001:00010700 _$$8000 00411700 f codec.obj - 0001:00006980 _$$1000 00407980 f chunk.obj - 0001:0000f6d0 _$$8000 004106d0 f chunk.obj - 0001:00006570 _$$1000 00407570 f memwin.obj - 0001:00006640 _$$8000 00407640 f memwin.obj - 0001:00004520 _$$1000 00405520 f utilstr.obj - 0001:00006060 _$$8000 00407060 f utilstr.obj - 0001:00003c30 _$$1000 00404c30 f utilrnd.obj - 0001:00004110 _$$8000 00405110 f utilrnd.obj - 0001:00002d00 _$$1000 00403d00 f utilmem.obj - 0001:00003760 _$$8000 00404760 f utilmem.obj - 0001:00002190 _$$1000 00403190 f utilint.obj - 0001:000027b0 _$$8000 004037b0 f utilint.obj - 0001:00001950 _$$8000 00402950 f utilerro.obj - 0001:00001e90 _$$1000 00402e90 f utilerro.obj - 0001:000020c0 _$$9000 004030c0 f utilerro.obj - 0001:000020e0 _$$a000 004030e0 f utilerro.obj - 0001:00002100 _$$b000 00403100 f utilerro.obj - 0001:000016c0 _$$1000 004026c0 f utilcopy.obj - 0001:00001930 _$$8000 00402930 f utilcopy.obj - 0001:00000b10 _$$1000 00401b10 f base.obj - 0001:00001490 _$$8000 00402490 f base.obj - 0001:000004d0 _$$8000 004014d0 f util.obj - 0001:000004f0 _$$1000 004014f0 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:00024f54 __before 00425f54 f LIBC:heapadd.obj - 0001:00024a1f _flsall 00425a1f f LIBC:fflush.obj - 0001:0002470b __heap_new_region 0042570b f LIBC:heapgrow.obj - 0001:00024469 __heap_grow_emptylist 00425469 f LIBC:heapinit.obj - 0001:0002411d _getSystemCP 0042511d f LIBC:mbctype.obj - 0001:00024158 _CPtoLCID 00425158 f LIBC:mbctype.obj - 0001:00024197 _setSBCS 00425197 f LIBC:mbctype.obj - 0001:00023f53 _parse_cmdline 00424f53 f LIBC:stdargv.obj - 0001:00023dc5 _xcptlookup 00424dc5 f LIBC:winxfltr.obj - 0001:00023bc8 __unwind_handler 00424bc8 f LIBC:exsup.obj - 0001:00023aca _write_char 00424aca f LIBC:output.obj - 0001:00023b0a _write_multi_char 00424b0a f LIBC:output.obj - 0001:00023b3b _write_string 00424b3b f LIBC:output.obj - 0001:00023b72 _get_int_arg 00424b72 f LIBC:output.obj - 0001:00023b81 _get_int64_arg 00424b81 f LIBC:output.obj - 0001:00023b95 _get_short_arg 00424b95 f LIBC:output.obj - 0001:00023034 __heap_expand_block 00424034 f LIBC:realloc.obj - 0001:00022e9f _doexit 00423e9f f LIBC:crt0dat.obj - 0001:00022f1e __initterm 00423f1e f LIBC:crt0dat.obj - -FIXUPS: 23e86 11 5d 12 fffffe8a c 5 10 10 5 1c 9 15 f 1f 9 fffffec9 18 -FIXUPS: 23d28 ffffffa3 14 c ffffffcf ffffff46 1e 12 44 13 13 b4a ff 96 -FIXUPS: 2498d 1c 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 fffffe36 2d f e -FIXUPS: 24102 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 12 1654 fffffcff -FIXUPS: 25280 78 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 fffffdf5 ffffff4e -FIXUPS: 24383 4c 9b 1d 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 16df 34 fffffd88 -FIXUPS: 25c75 2b 1a 1f fffffc99 b 21 42 37 2f 19 2b e fffffc55 c 75 d 96 -FIXUPS: 2581e c 32 fffffe42 ffffffae ffffff6f 18 ffffff70 d 35 25 fffdbe3f -FIXUPS: 13f7 13 1f 30 30 25094 ffffff8c c d 20 d ffffff40 b b 1b fffffe05 -FIXUPS: 26214 26 ffffff9d ffffffdf fffffead f3 fffffe7e fffffd4f 10 10 -FIXUPS: 25d5b a1 3e 24 d fffdb28b 26 a a a a a a 24 1b 5 5 18 13 1d 13 -FIXUPS: 1219 e 32 13 3d 2c 24 e 13 1f 13 1d e 13 1f e 1002 12 1b 2d d 20 -FIXUPS: 2469 d 21 22 e 13 1f 35 6b 30 ffffef0e 42 e 22 30 e fffffa9b 27 -FIXUPS: 1058 21 33 a c c a 14 eca d 20 35 d a 18 b b 19 35 5 17 b 38 1f -FIXUPS: 212e 1b e 42 26 d 1d 23 1c 36 d 4f d 7b d 4a fffff8c3 32 d 10 27 -FIXUPS: 1cdf a 9 e 5 24 23 48 d 1e 17 33 10 19 25 b 13 10 2b d 31 d 34 -FIXUPS: 1f3c 2c d 13 fffff845 1f 20 1d 23 36 d 2a 23 3e 4f e 5 a d 28 42 -FIXUPS: 1a37 1e 9 90 5 66 c c 14 1f 39 1c 11 13 32 a40 5a 13 d d 53 13 -FIXUPS: 2789 d 6c d d 36 d 43 d d 7b ffffec8b 27 f 21 30 30 70 30 29 14 -FIXUPS: 176e e 14 5 1627 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 90 67 10 -FIXUPS: 30a9 23 20 1b 5 5 18 16 8 12 e 13 fffff4a8 d 53 310 27 f 21 30 -FIXUPS: 2a27 b 37 29 16 15 15 14 e 5b 9 1a 6b 20 2c 23 16 b 27 10 37 1d -FIXUPS: 2d29 23 16 15 22 63e a 10 58 13 b a 10 78 39 d 12 3a d 36 d 9e -FIXUPS: 3687 14 5 39 40 1d 13 12 11 4b 22 e 13 1d fffff145 1c10 20 2a d -FIXUPS: 45da 15 2c d f 22 37 d 10 c 33 d 20 18 b 2b ffffea88 d 4a d 29 -FIXUPS: 3289 20 13 24 58 81 13 dd7 3a a 49 d 23 1d 1f d f 33 d 3b d 2f -FIXUPS: 437c 4b d 1e 27 1f b 2a d 1a 2d d 14 1b 2a d 2b fffff8c2 29 d 35 -FIXUPS: 3e99 2a 6 3f 2d 1e 14 42 d 17 55 6 28 6 30 6 19 f 2b a 12 f 2f -FIXUPS: 4147 1e c d 11 fffff868 27 d 17 1c 18 a 24 d 42 2d 1b 14 65 19 -FIXUPS: 3c08 9d a 9 f 12 50 e 10 10 f d c 27 d 2b 36 1112 d 14 27 2f 3c -FIXUPS: 4ffc 1b 32 23 47 1f 1b 2a 22 e 13 1f e 13 ffffe69f 17 3c 1d 10 -FIXUPS: 3911 28 10 31 1f 40 e 1142 10 19 c 10 1d d 2c d 28 10 8 c 3c 23 -FIXUPS: 4c97 c 3e d 11 44 26 23 2d d 11 26 5c 23 1b 46 d 2043 5c 2e d 75 -FIXUPS: 7045 22 ffffd73b 27 f 21 49 27 f 21 30 e 18 e 26 36 23 1b 58 d -FIXUPS: 4a29 12 4e 30 2c 17 d 1edf d 24 14 1a 2b d 51 d 2c e 4a d 16 25 -FIXUPS: 6bbc d 10 d 27 44 1d 17 42 52 13 d a0 10 9 d e5 fffff0de 1b d b -FIXUPS: 62c2 a 75 23 d d e 14 15 14e d 98 d6 2e d 71 d 55 6d 90 23 2d 23 -FIXUPS: 6929 23 2d 23 3d fffff0b5 3d 6 1d 48 6 36 37 33 34 6 57 6 1e 50 -FIXUPS: 5ce7 38 6 ad 45 8 1a 90 23 19 8 10 32 14 d d 1c fffff7e1 15 36 -FIXUPS: 57f9 23 1b d 8 1b 32 23 1b d 14 9 6 22 23 13 1a 23 13 a 15 8 f -FIXUPS: 59ef 1a 23 1b d b fffff888 d 30 3c 29 23 16 c 1b 23 1b 8 12 29 -FIXUPS: 5477 53 36 49 23 1b d f 45 36 2b 23 1b d f 13 7d d 1c80 2e d 2e -FIXUPS: 7435 b 28 d 34 25 d 15 2d d 1d 12 4c b 6 63 d 21 ffffdb72 23 32 -FIXUPS: 522e d d 11 1d 33 23 b4ed e 13 1f ffff6890 e 10 29 61 38 e b 10 -FIXUPS: 71a6 25 d 4d 2c 23 25 e 1c d 2e d 17 27 c b 2b 1e c 8dd7 32 23 -FIXUPS: 101ee 76 22 33 23 16 b b 36 6d 42 46 ab 1e 25 b9 1f 1f 5a 30 35 -FIXUPS: 106f9 12 1e 20 e 13 1f 13 fffff50e 2f 20 23 16 b 3a 1e 31 cb 28 -FIXUPS: fec7 14 31 2d 2c 45 1f 10 10 10 35 23 d 32 35 d 27 23 13 18 22 -FIXUPS: f817 14 1c 26 1f b 21 42 b 2b b 51 22 12 1f b 1f 23 16 18 23 27 -FIXUPS: fafc 2d 20 20 23 21 2c 23 23 45 fffff767 13 5c 1d d 3c 2b 2d 23 -FIXUPS: f550 23 d 5e 27 1c b 2d 29 32 23 d 10 b 8 22 1f b 1e 3e 1a b 1b -FIXUPS: ef04 39 1d b 25 31 5e 2d d 2d 41 44 51 1d d 1e 27 31 34 41 1d d -FIXUPS: f2b7 20 d 1c 13 1c 13 19 1e 1e fffff62d 115 2a 16 b 24 2e 2e b9 -FIXUPS: ec99 e 2b 16 15 36 20 d 19 20 2c 35 23 d 10 b b b 38 20 d 1f 1a -FIXUPS: e659 23 1f 20 d 1d 34 23 16 10 14 20 d 1f 1d 18 22 1d 10 19 20 -FIXUPS: e88c 3a d 26 23 16 b c 11 37 d fffff8e0 14 20 d 1d 19 1d 1c 2a -FIXUPS: e368 25 23 3a 29 17 10 1d 2d 1d 38 23 16 b 27 1b b c 22 1f 17 18 -FIXUPS: e635 fffff906 b 23 23 16 c 27 23 d 18 f 13 12 f 1e 6 9 10 b 8 39 -FIXUPS: e10c 1f 20 d 28 32 25 2f 33 23 16 fffff8ef 30 1e 24 d 3b d 2d 36 -FIXUPS: dc98 31 21 24 d 3b d 24 23 1f 23 16 c 27 1d 10 22 b 1c 26 2d 2e -FIXUPS: df32 fffff75a 1c 2c d 2e 3a 23 1c 19 12 9 12 3b 23 3d d 66 d 44 -FIXUPS: d982 23 d 2f d 32 25 3c d 35 2d 2e 36 fffff798 1f 20 d 1b 17 f -FIXUPS: d391 28 23 1f 20 d 1d d 37 23 1f 20 d 1d 34 23 13 10 17 1c 14 2f -FIXUPS: d626 1c 27 fffff92b 25 23 13 14 20 d d 16 d 31 d f 19 19 1d 23 -FIXUPS: d13f d 2a 3c 11 33 10 14 20 d 16 11 25 13 23 fffff959 1d 1a 25 -FIXUPS: cc98 1a 25 45 d 1d 29 d 11 2f 25 12 1d 23 26 d 29 d d 12 9 11 18 -FIXUPS: cf06 f 12 1d 35 fffff919 d 16 e 26 19 a 18 1d 38 23 32 23 d 1f -FIXUPS: ca26 19 11 29 23 1b 27 32 1f 10 2c 17 31 d 13 2f 18 fffff8de 22 -FIXUPS: c549 30 18 d 1b 23 32 23 d 10 8 a 1b 17 16 1a 1a 14 12 1c f 1c -FIXUPS: c76c 1b 27 20 1a 19 3a 1d fffff720 d 39 23 d 58 1a 93 25 22 3f -FIXUPS: c19c 16 2d 23 d 10 56 a4 23 16 b 12 21 3b 5e 23 1b b 27 1f 1e fffff696 -FIXUPS: bb9e 1f 1a 21 21 23 1f 20 d 1b 35 d f 29 f 12 1b 23 2d d 27 d c -FIXUPS: be39 23 1b b 25 d 5b 22 fffff88b 16 11 d 10 31 25 15 1b 1a 18 d -FIXUPS: b919 23 16 2e 19 d 37 31 23 d 2b 23 32 23 d 15 11 d d 1b fffff7ac -FIXUPS: b314 44 20 21 40 15 1b 15 1b 29 3e 23 d 38 23 d d 11 22 60 3c 3c -FIXUPS: b66d d 31 1d d 41 48 e 2d fffff572 d 14 27 17 24 27 3e 13 45 28 -FIXUPS: ae83 20 d 80 13 b 34 32 d 95 36 9e 24 10 12 33 a3 11 15 1b 4e fffff574 -FIXUPS: a879 1f 21 1f 21 30 23 41 d 38 d 31 d 39 1e 47 18 20 6 20 30 2c -FIXUPS: abaa 16 43 d 1a 1a 17 19 23 fffff67d 32 24 1a 68 6 d 21 16 18 d -FIXUPS: a4c2 8 2b 49 37 c 2f c 1e 16 13 43 1a 5b 9e 14 1c 11 1f 30 30 fffff5ef -FIXUPS: 9e68 41 5c 32 21 1a 61 6 79 1d 13 25 42 6 6 20 b 26 3d 40 e 1e -FIXUPS: a1f5 c 13 23 e 2c d 3c 41 fffff62f 1c d 1e 18 30 d 22 15 12 a 15 -FIXUPS: 9a49 29 3e 23 d 3b d 10 58 d 13 39 6b f 7a 21 24 6a 2e 40 fffff7af -FIXUPS: 95c7 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c 17 d 15 12 14 20 d -FIXUPS: 97f7 18 30 46 1d 1e 15 33 d fffff7ff d 5c 2d 20 d 53 d f 23 11 -FIXUPS: 9299 17 19 30 80 30 30 30 1b 25 23 13 18 1d 1d 1d 2b 11 1b 2c 21 -FIXUPS: 8c3f 6f d 50 d 2f d 32 d 2f 32 30 d 3b d 43 d 2f 41 34 d 4a d 46 -FIXUPS: 9024 1a 20 d 23 16 23 2d fffff80e 12 f 18 10 a 20 d 2f 30 d 1a -FIXUPS: 8a20 6 8 10 1c 2c d 31 d 1d 6 8 4b d 50 13 17 22 d 35 fffff787 -FIXUPS: 83dc 30 d 80 19 a7 d 38 23 d 38 23 d 48 23 d 3e d 2f d 48 23 d -FIXUPS: 87f5 23 d 2f d 38 22 15 fffff5ef d 2d 2d 16 19 8 c 22 3c 19 11 -FIXUPS: 8019 2d 23 d e 29 34 d 5b 50 40 30 30 30 23 1a c e 3d 3f fffff70c -FIXUPS: 7a63 2b 14 15 30 1b 1a 5e 1d d 2f 23 d 36 50 2d 23 d 12 c 25 d -FIXUPS: 7d56 15 2e 20 23 67 1d d 2f 965c f 46 24 33 ac d aa 22 e 13 ffff5f38 -FIXUPS: 76a9 f 21 49 27 f 21 30 e 16 1d 2f 2c 126 3e 2d 23 d 27 d 9788 -FIXUPS: 111cd b e 30 2c 1a 14 24 b 13 10 21 d e 1a 1d d e 29 16 d 10 d -FIXUPS: 113c4 cc f e f f f f fffff7b0 1d 29 12 22 46 23 32 23 d 1b 70 23 -FIXUPS: 10ed9 23 32 23 d 10 1a f 22 24 6c 23 16 22 d 60 29 4f 23 5a3e 2629 -FIXUPS: 19220 27 ffff760b 27 f 21 49 27 f 21 30 e 30 2a d 5c 2f 2c 50 29 -FIXUPS: 10b7e 1b 10 22 d 32 38 27 10 8 5b38 23 ab d 2d 22 d 11 22 1f 15 -FIXUPS: 16967 1d d 2f e 1f 17 1c 59 23 1b d 10 d b 1a 27 d 58 d 3e fffff65a -FIXUPS: 16241 2b a 1c 1b a 90 10 c 1d d 68 d 44 7a d 50 36 d 1d 94 d 2a -FIXUPS: 16666 1a 2b 26 1d d 39 3c ffffbbdb 2f e 1f 17 1c 3f 30 30 23 1b -FIXUPS: 124c4 10 d b 1a 27 d 58 d 3e d 3b41 d 21 23 1b d 10 d b 2e ffffbbb3 -FIXUPS: 11db7 90 10 c 1d d 50 d 44 7a d 50 36 d 1d 94 d 24 2e 27 c2 d 2d -FIXUPS: 1229d d 15 1e 1f 15 10 1d fffff516 10 d b 38 21 2b 21 48 13 4d -FIXUPS: 119f1 b6 d b5 32 d 47 22 48 23 1b d 10 d b 2e 3d a 2b a 1c 9fbd -FIXUPS: 1bd60 c 16 18 2f d 34 d 22 10 8 c 1f 20 1b 5 5 18 e 13 1f e 13 -FIXUPS: 19287 ffff84fb 27 f 21 30 23 1b a09b 27 23 16 67 23 3e 1e 11 1d -FIXUPS: 1ba76 2a 19 16 11 2c d 17 25 28 2d 2f 30 10 41 23 d 2a d 31 d 43 -FIXUPS: 1b548 33 d 31 23 32 23 d 34 d 16 24 d 28 25 6 9 f 28 23 32 23 d -FIXUPS: 1b812 d 16 d 21 d 2c 26 11 fffff876 23 36 3b 18 44 1b 25 23 18 -FIXUPS: 1b2e3 d 1e 6 20 d 30 26 11 33 d 31 23 18 2f d 1e 6 20 d 30 22 fffff6ab -FIXUPS: 1abeb 6c 32 23 16 b 8 2a 46 24 23 44 27 22 23 3a d 28 48 23 19 -FIXUPS: 1af4f 1d d 22 2e 2b 65 23 32 55 fffff5c4 26 32 23 d 79 31 e 26 -FIXUPS: 1a85f 23 d 7b 2f e 26 46 26 2c 13 d 14 23 32 23 d d 6a 24 23 32 -FIXUPS: 1abd1 fffff681 32 23 d 3c d 58 a9 37 48 2c 23 16 14 20 d 27 22 -FIXUPS: 1a575 e 13 23 31 23 d 18 13 a d 1c 28 19 fffff7cc 23 d f f 26 13 -FIXUPS: 19f17 2f 23 d 10 a 15 2d 24 d 2f 1b 3c 23 1f 20 d 3c 25 23 1f 20 -FIXUPS: 1a1c8 3c 25 fffff7fb 19 11 2b 2d 23 d f 15 2a 23 d 10 f e 1e 2a -FIXUPS: 19bec 23 24 81 25 23 30 d 80 23 16 2e 19 d 15 fffff75b d 24 d e -FIXUPS: 1961d 33 1d 31 77 20 d 47 2d 20 d e 22 d 21 1d 31 77 20 d 26 2d -FIXUPS: 1999c 19 8 c 22 371f 1d ffffc185 36 27 f 21 49 27 f 21 30 e b b -FIXUPS: 19460 20 d 14 16 d a 2b 19 a a a 10 b 8 16 2d 37ee d 1a 1f 15 12 -FIXUPS: 1ce12 14 e b 46 32 23 d 19 b 2e 29 35 23 d 10 15 12 20 d 12 12 -FIXUPS: 1d06e 1a 1d 46 fffff8ea a6 2e 29 32 23 d 10 b 2e d 1a b 19 b 15 -FIXUPS: 1cc08 d 17 b c 1f a 15 27 24 1d 20 d 1a 15 1f fffff7a3 b 28 d 11 -FIXUPS: 1c5ec 1d 23 16 35 7e 24 23 1b 10 d 26 35 8 12 3e d 7c 29 23 1b -FIXUPS: 1c927 d 26 28 d 3a 24a3 5 18 e 13 ffffd0af 80 23 1d 5e d 69 6 51 -FIXUPS: 1c14a 98 37 23 16 29 6d 20 b 26 23 16 3c 1b 23 40 9d 23 260d 1c -FIXUPS: 1eb49 1d d d 20 29 14 1c e 27 1d 82 2d 2f e 9 9 20 18 28 e 9 9 -FIXUPS: 1ede9 12 9 9 1f 20 1b fffff7dc 2a d 2c d 48 d 21 23 16 e b9 23 -FIXUPS: 1e862 1d d 10 d 46 11 34 3a 2f 1c 12 1e 26 32 16 e 64 d fffff7d3 -FIXUPS: 1e2d5 35 23 d 10 b 12 f d d 12 11 b 2b 16 32 23 d 4b d 13 20 d -FIXUPS: 1e524 38 16 20 d 3f d 4b fffff769 1a 2c 16 34 14 1e 1f 29 d 1d -FIXUPS: 1dedb 11e 26 14 20 d 10 59 26 35 23 d 10 1a c 5f 26 35 23 d 19 -FIXUPS: 1d96f 32 16 12 57 d 11 38 32 1d 44 2c 3d d 10 10 2a d 10 2f 17 -FIXUPS: 1dc44 15 20 23 32 23 d 10 e 64 d fffff719 39 2f 25 b 1c 13 49 53 -FIXUPS: 1d635 16 b b 16 17 c 6c 15 23 13 22 46 29 6d 39 23 d 15 11 1b 23 -FIXUPS: 1d949 58de 13 1f 13 1d 13 1d 13 ffff9e80 36 27 f 21 30 1b 20 25 -FIXUPS: 1d277 b 11 26 29 32 23 d 1a e 8e 59 d 1a 1b 5a84 26 1d c 37 11 -FIXUPS: 22fbf 1e 6 18 d 20 31 12 2a d 25 22 e 13 1f e 13 1f e 13 1f e 13 -FIXUPS: 231e9 13 1d fffff949 11 b 2b 26 1b 13 33 14 13 1b 23 11 35 c 22 -FIXUPS: 22d2b 24 16 1d 6 34 d 15 c 17 2f 29 23 16 30 22 fffff851 37 d 43 -FIXUPS: 227c9 20 13 10 10 11 19 46 5a 23 d 23 14 2c 2a 23 d 10 b 11 17 -FIXUPS: 22a4d 43 1f 36 23 d 34 fffff880 a 14 20 6 17 2e 37 12 13 13 8 24 -FIXUPS: 224fa d 10 20 d 56 d 18 40 3d d 27 d 25 12 2c d e 2d fffff92d 1a -FIXUPS: 2208e 13 1e 1d 9 e 25 c 42 d 2b 2b 23 1d 2f d 15 15 20 1f b 1f -FIXUPS: 222eb 18 23 1d 19 29 1a 17 fffff933 2f d 11 23 23 1d 2f d 10 c -FIXUPS: 21e2f 12 28 23 13 10 1a 23 1d 2f d 12 15 1f 13 17 6 1e 23 1d 2f -FIXUPS: 2195c 17 17 2d d 19 1b 46 24 27 23 1e 12 2f d 10 c 3e c 1b 23 1e -FIXUPS: 21bec 2f d 15 c 26 17 6 1d 23 fffff8c5 d 45 d 39 11 9 26 23 1b -FIXUPS: 216b7 29 72 d 21 14 14 21 23 1d 16 9 21 d 23 20 1b 21 20 6 1e 23 -FIXUPS: 2114f 6 e 1a 22 b 6 29 23 32 23 d 10 b f 1c 29 5f a9 47 f 29 b -FIXUPS: 21465 24 29 37 23 1b 12 1e 17 fffff7da 21 12 1e 12 1e 30 e 32 30 -FIXUPS: 20e77 19 3d 30 2c 26 19 21 26 32 23 d 39 d e 3e 1d 28 d 2d d 15 -FIXUPS: 209f4 19 15 b 13 9 1d 14 9 6 22 2e 23 16 2a 22 2b 23 1b 2c 2a 19 -FIXUPS: 20c3f 27 9 6 24 23 1b 33 d 28 fffff89a f 1c 29 57 49 30 27 29 3c -FIXUPS: 207ac 1e 10 10 a 16 13 13 b 19 1b 2c 1b 26 2d 23 19 24 23 1d 16 -FIXUPS: 209eb fffff818 b 2b 12 26 28 23 1d 30 23 1e 1f 23 32 23 d 39 d -FIXUPS: 20442 3d 28 d 2d d 1a 13 1e 23 32 23 d 10 fffff88d 13 13 13 a 20 -FIXUPS: 1fecb 1e 13 10 11 19 38 57 23 d 24 2a 23 d 10 b 11 17 37 43 1f -FIXUPS: 20182 23 d 27 19 fffff8ee 1e 24 d 2a 23 13 c c 22 e 19 3a 2f 23 -FIXUPS: 1fc9a 24 9 22 23 1d 10 17 6 23 23 1d 10 13 a 1d 46 fffff90f d 20 -FIXUPS: 1f7b4 9 f 34 9 f 31 2d 23 d 15 10 30 2f 9 f 34 9 f 3b 17 13 13 -FIXUPS: 1fa3c d 3b d 1e 24 fffff80f 32 1f 32 39 3f 2c 50 11 10 b 12 29 -FIXUPS: 1f4d7 25 30 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 13 1a 4437 48 -FIXUPS: 23307 ffffbbdb 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f -FIXUPS: 1f1b9 30 2c 17 c d 14 23 34 d 44be 29 21 c 2b d 24 14 45 15 23 -FIXUPS: 238d5 15 b 23 8 13 18 b 44 24 16 25 16 24 24 20 4c 27 21 30 1a -FIXUPS: 23329 e b b 24 16 85 14 6a 17 21 1b 26 18 16 17 21 18 1d 13 2c -FIXUPS: 235fc 32 21 31 1b 32 11 11 11 18 45 diff --git a/kauai/OBJ/WIND/CHOMP.MAP b/kauai/OBJ/WIND/CHOMP.MAP deleted file mode 100644 index 450b6340..00000000 --- a/kauai/OBJ/WIND/CHOMP.MAP +++ /dev/null @@ -1,2597 +0,0 @@ - chomp - - Timestamp is 3070bd8b (Mon Oct 02 21:35:23 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0004be48H .text CODE - 0002:00000000 00002130H .bss DATA - 0003:00000000 000007a9H .rdata DATA - 0004:00000000 00006664H .data DATA - 0004:00006664 00000004H .CRT$XCA DATA - 0004:00006668 00000080H .CRT$XCU DATA - 0004:000066e8 00000004H .CRT$XCZ DATA - 0004:000066ec 00000004H .CRT$XIA DATA - 0004:000066f0 00000008H .CRT$XIC DATA - 0004:000066f8 00000004H .CRT$XIZ DATA - 0004:000066fc 00000004H .CRT$XPA DATA - 0004:00006700 00000004H .CRT$XPX DATA - 0004:00006704 00000004H .CRT$XPZ DATA - 0004:00006708 00000004H .CRT$XTA DATA - 0004:0000670c 00000004H .CRT$XTZ DATA - 0005:00000000 00000064H .idata$2 DATA - 0005:00000064 00000014H .idata$3 DATA - 0005:00000078 000000f0H .idata$4 DATA - 0005:00000168 000000f0H .idata$5 DATA - 0005:00000258 00000408H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000690H .debug$F DATA - 0007:000009d0 00000000H .debug$G DATA - 0007:000009d0 00000032H .debug$H DATA - 0007:fffa2000 00000000H .debug$P DATA - 0007:fffa2000 00000000H .debug$S DATA - 0007:fffa2000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:00000510 ?PfilNext@FIL@@QAEPAV1@XZ 00401510 f util.obj - 0001:00000540 ?PbllNext@BLL@@QAEPAV1@XZ 00401540 f util.obj - 0001:00000570 ?PcflNext@CFL@@QAEPAV1@XZ 00401570 f util.obj - 0001:000005a0 ?FWouldBe@BLL@@SGHJ@Z 004015a0 f base.obj - 0001:000005e0 ?FIs@BLL@@UAEHJ@Z 004015e0 f base.obj - 0001:00000610 ?Cls@BLL@@UAEJXZ 00401610 f base.obj - 0001:00000640 ?Cls@BASE@@UAEJXZ 00401640 f base.obj - 0001:00000670 ?FIs@BASE@@UAEHJ@Z 00401670 f base.obj - 0001:000006b0 ?FWouldBe@BASE@@SGHJ@Z 004016b0 f base.obj - 0001:000006e0 ??0BASE@@QAE@XZ 004016e0 f base.obj - 0001:000007c0 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 004017c0 f base.obj - 0001:000007e0 ?_Enter@@YGXXZ 004017e0 f base.obj - 0001:00000800 ?_Leave@@YGXXZ 00401800 f base.obj - 0001:00000820 ?AddRef@BASE@@UAEXXZ 00401820 f base.obj - 0001:000008b0 ?Release@BASE@@UAEXXZ 004018b0 f base.obj - 0001:00000960 ??2BASE@@SGPAXIPADJ@Z 00401960 f base.obj - 0001:00000b30 ?Debugger@@YGXXZ 00401b30 f base.obj - 0001:00000b50 ??3BASE@@SGXPAX@Z 00401b50 f base.obj - 0001:00000bd0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401bd0 f base.obj - 0001:00000bf0 ?AssertValid@BASE@@QAEXK@Z 00401bf0 f base.obj - 0001:00000d20 ?MarkMemStub@BASE@@QAEXXZ 00401d20 f base.obj - 0001:00000e00 ?MarkMem@BASE@@UAEXXZ 00401e00 f base.obj - 0001:00000e50 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401e50 f base.obj - 0001:00001040 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402040 f base.obj - 0001:000010c0 ?_UnlinkDoi@@YGXPAUDOI@@@Z 004020c0 f base.obj - 0001:00001140 ??0BLL@@QAE@XZ 00402140 f base.obj - 0001:00001190 ??1BLL@@UAE@XZ 00402190 f base.obj - 0001:000011e0 ?_Attach@BLL@@IAEXPAX@Z 004021e0 f base.obj - 0001:00001380 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402380 f base.obj - 0001:000013b0 ?AssertValid@BLL@@QAEXK@Z 004023b0 f base.obj - 0001:000014b0 ??_EBLL@@UAEPAXI@Z 004024b0 f base.obj - 0001:000014b0 ??_GBLL@@UAEPAXI@Z 004024b0 f base.obj - 0001:000014f0 ??0STN@@QAE@XZ 004024f0 f base.obj - 0001:00001550 ?PvAddBv@@YGPAXPAXJ@Z 00402550 f base.obj - 0001:00001570 ?PvSubBv@@YGPAXPAXJ@Z 00402570 f base.obj - 0001:00001590 ?Enter@MUTX@@QAEXXZ 00402590 f base.obj - 0001:000015c0 ?Leave@MUTX@@QAEXXZ 004025c0 f base.obj - 0001:000015f0 ?LwThreadCur@@YGJXZ 004025f0 f base.obj - 0001:00001610 ?FillPb@@YGXPAXJE@Z 00402610 f utilcopy.obj - 0001:00001670 ?ClearPb@@YGXPAXJ@Z 00402670 f utilcopy.obj - 0001:000016c0 ?ReversePb@@YGXPAXJ@Z 004026c0 f utilcopy.obj - 0001:00001720 ?SwapBlocks@@YGXPAXJJ@Z 00402720 f utilcopy.obj - 0001:000017a0 ?SwapPb@@YGXPAX0J@Z 004027a0 f utilcopy.obj - 0001:00001840 ?FEqualRgb@@YGHPAX0J@Z 00402840 f utilcopy.obj - 0001:000018c0 ?CbEqualRgb@@YGJPAX0J@Z 004028c0 f utilcopy.obj - 0001:00001950 ?CopyPb@@YGXPAX0J@Z 00402950 f utilcopy.obj - 0001:000019f0 ?BltPb@@YGXPAX0J@Z 004029f0 f utilcopy.obj - 0001:00001ad0 ?FWouldBe@ERS@@SGHJ@Z 00402ad0 f utilerro.obj - 0001:00001b10 ?FIs@ERS@@UAEHJ@Z 00402b10 f utilerro.obj - 0001:00001b40 ?Cls@ERS@@UAEJXZ 00402b40 f utilerro.obj - 0001:00001b70 ??0ERS@@QAE@XZ 00402b70 f utilerro.obj - 0001:00001bc0 ?Push@ERS@@UAEXJPADJ@Z 00402bc0 f utilerro.obj - 0001:00001d80 ?FPop@ERS@@UAEHPAJ@Z 00402d80 f utilerro.obj - 0001:00001e80 ?Clear@ERS@@UAEXXZ 00402e80 f utilerro.obj - 0001:00001ef0 ?Cerc@ERS@@UAEJXZ 00402ef0 f utilerro.obj - 0001:00001f40 ?FIn@ERS@@UAEHJ@Z 00402f40 f utilerro.obj - 0001:00002010 ?ErcGet@ERS@@UAEJJ@Z 00403010 f utilerro.obj - 0001:000020b0 ?Flush@ERS@@UAEXJ@Z 004030b0 f utilerro.obj - 0001:000021a0 ?FIn@@YGHJJJ@Z 004031a0 f utilerro.obj - 0001:000021e0 ?AssertValid@ERS@@QAEXK@Z 004031e0 f utilerro.obj - 0001:00002280 ??1ERS@@UAE@XZ 00403280 f utilerro.obj - 0001:000022b0 ??_EERS@@UAEPAXI@Z 004032b0 f utilerro.obj - 0001:000022b0 ??_GERS@@UAEPAXI@Z 004032b0 f utilerro.obj - 0001:000022f0 ?LwGcd@@YGJJJ@Z 004032f0 f utilint.obj - 0001:00002320 ?LuGcd@@YGKKK@Z 00403320 f utilint.obj - 0001:000023b0 ?LwDivAway@@YGJJJ@Z 004033b0 f utilint.obj - 0001:00002460 ?LwRoundAway@@YGJJJ@Z 00403460 f utilint.obj - 0001:000024f0 ?LwRoundToward@@YGJJJ@Z 004034f0 f utilint.obj - 0001:00002560 ?LwMul@@YGJJJ@Z 00403560 f utilint.obj - 0001:000025d0 ?AssertIn@@YGXJJJ@Z 004035d0 f utilint.obj - 0001:00002650 ?SwapBytesBom@@YGXPAXK@Z 00403650 f utilint.obj - 0001:00002730 ?LwMin@@YGJJJ@Z 00403730 f utilint.obj - 0001:00002760 ?LwAbs@@YGJJ@Z 00403760 f utilint.obj - 0001:00002790 ?SwapBytesRgsw@@YGXPAXJ@Z 00403790 f utilint.obj - 0001:00002820 ?SwapBytesRglw@@YGXPAXJ@Z 00403820 f utilint.obj - 0001:000028d0 ?AssertBomRglw@@YGXKJ@Z 004038d0 f utilint.obj - 0001:00002990 ?LwMulDiv@@YGJJJJ@Z 00403990 f utilint.obj - 0001:000029e0 ?LwMax@@YGJJJ@Z 004039e0 f utilint.obj - 0001:00002a10 ?Dyp@RC@@QAEJXZ 00403a10 f utilint.obj - 0001:00002a50 ?Zero@RC@@QAEXXZ 00403a50 f utilint.obj - 0001:00002ab0 ?FEmpty@RC@@QAEHXZ 00403ab0 f utilint.obj - 0001:00002b10 ?Offset@RC@@QAEXJJ@Z 00403b10 f utilint.obj - 0001:00002b60 ?LwBound@@YGJJJJ@Z 00403b60 f utilint.obj - 0001:00002ba0 ?AssertValid@RAT@@QAEXK@Z 00403ba0 f utilint.obj - 0001:00002c20 ??0USAC@@QAE@XZ 00403c20 f utilint.obj - 0001:00002c80 ?LwHighLow@@YGJFF@Z 00403c80 f utilint.obj - 0001:00002cb0 ?SuHigh@@YGGJ@Z 00403cb0 f utilint.obj - 0001:00002cd0 ?SuLow@@YGGJ@Z 00403cd0 f utilint.obj - 0001:00002cf0 ?Set@DVER@@QAEXFF@Z 00403cf0 f utilint.obj - 0001:00002d30 ?FReadable@DVER@@QAEHFF@Z 00403d30 f utilint.obj - 0001:00002df0 ??_EUSAC@@UAEPAXI@Z 00403df0 f utilint.obj - 0001:00002df0 ??_GUSAC@@UAEPAXI@Z 00403df0 f utilint.obj - 0001:00002e30 ?TsCurrentSystem@@YGKXZ 00403e30 f utilint.obj - 0001:00002e50 ?FFail@DMAGL@@QAEHXZ 00403e50 f utilmem.obj - 0001:00002ec0 ?Allocate@DMAGL@@QAEXJ@Z 00403ec0 f utilmem.obj - 0001:00002f50 ?Resize@DMAGL@@QAEXJ@Z 00403f50 f utilmem.obj - 0001:00002fb0 ?Free@DMAGL@@QAEXJ@Z 00403fb0 f utilmem.obj - 0001:00002ff0 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00403ff0 f utilmem.obj - 0001:00003340 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00404340 f utilmem.obj - 0001:00003750 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00404750 f utilmem.obj - 0001:000037f0 ?_LinkMbh@@YGXPAUMBH@@@Z 004047f0 f utilmem.obj - 0001:00003890 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00404890 f utilmem.obj - 0001:00003a30 ?_AssertMbh@@YGXPAUMBH@@@Z 00404a30 f utilmem.obj - 0001:00003c70 ?AssertPvAlloced@@YGXPAXJ@Z 00404c70 f utilmem.obj - 0001:00003d30 ?MarkPv@@YGXPAX@Z 00404d30 f utilmem.obj - 0001:00003da0 ?FWouldBe@RND@@SGHJ@Z 00404da0 f utilrnd.obj - 0001:00003de0 ?FIs@RND@@UAEHJ@Z 00404de0 f utilrnd.obj - 0001:00003e10 ?Cls@RND@@UAEJXZ 00404e10 f utilrnd.obj - 0001:00003e40 ?FWouldBe@SFL@@SGHJ@Z 00404e40 f utilrnd.obj - 0001:00003e80 ?FIs@SFL@@UAEHJ@Z 00404e80 f utilrnd.obj - 0001:00003eb0 ?Cls@SFL@@UAEJXZ 00404eb0 f utilrnd.obj - 0001:00003ee0 ??0RND@@QAE@K@Z 00404ee0 f utilrnd.obj - 0001:00003f70 ?LwNext@RND@@UAEJJ@Z 00404f70 f utilrnd.obj - 0001:00004040 ??0SFL@@QAE@K@Z 00405040 f utilrnd.obj - 0001:000040d0 ??1SFL@@UAE@XZ 004050d0 f utilrnd.obj - 0001:00004140 ?AssertValid@SFL@@QAEXK@Z 00405140 f utilrnd.obj - 0001:00004210 ?MarkMem@SFL@@UAEXXZ 00405210 f utilrnd.obj - 0001:00004270 ?Shuffle@SFL@@QAEXJ@Z 00405270 f utilrnd.obj - 0001:00004380 ?_ShuffleCore@SFL@@IAEXXZ 00405380 f utilrnd.obj - 0001:00004470 ?_FEnsureHq@SFL@@IAEHJ@Z 00405470 f utilrnd.obj - 0001:000045f0 ?LwNext@SFL@@UAEJJ@Z 004055f0 f utilrnd.obj - 0001:00004750 ??_GRND@@UAEPAXI@Z 00405750 f utilrnd.obj - 0001:00004750 ??_ERND@@UAEPAXI@Z 00405750 f utilrnd.obj - 0001:00004790 ??_GSFL@@UAEPAXI@Z 00405790 f utilrnd.obj - 0001:00004790 ??_ESFL@@UAEPAXI@Z 00405790 f utilrnd.obj - 0001:000047d0 ??4STN@@QAEAAV0@AAV0@@Z 004057d0 f utilstr.obj - 0001:000048c0 ?SetRgch@STN@@QAEXPADJ@Z 004058c0 f utilstr.obj - 0001:000049a0 ?SetSzs@STN@@QAEXPAD@Z 004059a0 f utilstr.obj - 0001:00004a00 ?Delete@STN@@QAEXJJ@Z 00405a00 f utilstr.obj - 0001:00004b60 ?FAppendRgch@STN@@QAEHPADJ@Z 00405b60 f utilstr.obj - 0001:00004c60 ?FInsertRgch@STN@@QAEHJPADJ@Z 00405c60 f utilstr.obj - 0001:00004e10 ?FEqualRgch@STN@@QAEHPADJ@Z 00405e10 f utilstr.obj - 0001:00004eb0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00405eb0 f utilstr.obj - 0001:00004f40 ?CbData@STN@@QAEJXZ 00405f40 f utilstr.obj - 0001:00004f90 ?GetData@STN@@QAEXPAX@Z 00405f90 f utilstr.obj - 0001:00005020 ?FSetData@STN@@QAEHPAXJPAJ@Z 00406020 f utilstr.obj - 0001:000054e0 ?GetSzs@STN@@QAEXPAD@Z 004064e0 f utilstr.obj - 0001:00005550 ?FFormatSz@STN@@QAAHPADZZ 00406550 f utilstr.obj - 0001:000055b0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004065b0 f utilstr.obj - 0001:00005e10 ?CbCharOsk@@YGJF@Z 00406e10 f utilstr.obj - 0001:00005ea0 ?Prgch@STN@@QAEPADXZ 00406ea0 f utilstr.obj - 0001:00005ef0 ?Psz@STN@@QAEPADXZ 00406ef0 f utilstr.obj - 0001:00005f40 ?FExpandControls@STN@@QAEHXZ 00406f40 f utilstr.obj - 0001:00006170 ?Cch@STN@@QAEJXZ 00407170 f utilstr.obj - 0001:000061c0 ?SetNil@STN@@QAEXXZ 004071c0 f utilstr.obj - 0001:00006220 ?SetSz@STN@@QAEXPAD@Z 00407220 f utilstr.obj - 0001:00006260 ?AssertValid@STN@@QAEXK@Z 00407260 f utilstr.obj - 0001:00006350 ?FValidSt@@YGHPAD@Z 00407350 f utilstr.obj - 0001:00006400 ?PrgchSt@@YGPADPAD@Z 00407400 f utilstr.obj - 0001:00006420 ?FValidStz@@YGHPAD@Z 00407420 f utilstr.obj - 0001:00006480 ?CchSt@@YGJPAD@Z 00407480 f utilstr.obj - 0001:000064b0 ?PszStz@@YGPADPAD@Z 004074b0 f utilstr.obj - 0001:000064d0 ?CchSz@@YGJPAD@Z 004074d0 f utilstr.obj - 0001:00006570 ?FcmpCompareRgch@@YGKPADJ0J@Z 00407570 f utilstr.obj - 0001:000066b0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004076b0 f utilstr.obj - 0001:00006820 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00407820 f utilstr.obj - 0001:00006930 ?UpperRgchs@@YGXPADJ@Z 00407930 f utilstr.obj - 0001:000069f0 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 004079f0 f utilstr.obj - 0001:00006ba0 ?TranslateRgch@@YGXPADJFH@Z 00407ba0 f utilstr.obj - 0001:00006c90 ?AssertOsk@@YGXF@Z 00407c90 f utilstr.obj - 0001:00006d40 ?AssertSt@@YGXPAD@Z 00407d40 f utilstr.obj - 0001:00006d90 ?AssertStz@@YGXPAD@Z 00407d90 f utilstr.obj - 0001:00006de0 ?AssertSz@@YGXPAD@Z 00407de0 f utilstr.obj - 0001:00006e30 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00407e30 f memwin.obj - 0001:00006f10 ?FResizePhq@@YGHPAPAXJKJ@Z 00407f10 f memwin.obj - 0001:00007040 ?FreePhq@@YGXPAPAX@Z 00408040 f memwin.obj - 0001:000070f0 ?CbOfHq@@YGJPAX@Z 004080f0 f memwin.obj - 0001:00007130 ?QvFromHq@@YGPAXPAX@Z 00408130 f memwin.obj - 0001:00007150 ?PvLockHq@@YGPAXPAX@Z 00408150 f memwin.obj - 0001:000071d0 ?UnlockHq@@YGXPAX@Z 004081d0 f memwin.obj - 0001:00007250 ?AssertHq@@YGXPAX@Z 00408250 f memwin.obj - 0001:00007340 ?MarkHq@@YGXPAX@Z 00408340 f memwin.obj - 0001:00007380 ?AssertPvCb@@YGXPAXJ@Z 00408380 f memwin.obj - 0001:00007410 ?FWouldBe@CFL@@SGHJ@Z 00408410 f chunk.obj - 0001:00007450 ?FIs@CFL@@UAEHJ@Z 00408450 f chunk.obj - 0001:00007480 ?Cls@CFL@@UAEJXZ 00408480 f chunk.obj - 0001:000074b0 ?FWouldBe@CGE@@SGHJ@Z 004084b0 f chunk.obj - 0001:000074f0 ?FIs@CGE@@UAEHJ@Z 004084f0 f chunk.obj - 0001:00007520 ?Cls@CGE@@UAEJXZ 00408520 f chunk.obj - 0001:00007550 ??0CFL@@AAE@XZ 00408550 f chunk.obj - 0001:000075c0 ??1CFL@@EAE@XZ 004085c0 f chunk.obj - 0001:00007750 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00408750 f chunk.obj - 0001:000079e0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 004089e0 f chunk.obj - 0001:00007a30 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00408a30 f chunk.obj - 0001:00007ca0 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00408ca0 f chunk.obj - 0001:00007dc0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00408dc0 f chunk.obj - 0001:00007ef0 ?FWriteChunkTree@CFL@@QAEHKKPAVFIL@@JPAJ@Z 00408ef0 f chunk.obj - 0001:00008170 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 00409170 f chunk.obj - 0001:000081c0 ?SetCb@CRPSM@@QAEXJ@Z 004091c0 f chunk.obj - 0001:00008200 ?FForest@CFL@@QAEHKK@Z 00409200 f chunk.obj - 0001:00008310 ?Grfcrp@CRPSM@@QAEKK@Z 00409310 f chunk.obj - 0001:00008340 ?SetForest@CFL@@QAEXKKH@Z 00409340 f chunk.obj - 0001:00008480 ?ClearGrfcrp@CRPSM@@QAEXK@Z 00409480 f chunk.obj - 0001:000084b0 ?SetGrfcrp@CRPSM@@QAEXK@Z 004094b0 f chunk.obj - 0001:000084e0 ?FSetGrfcfl@CFL@@QAEHKK@Z 004094e0 f chunk.obj - 0001:00008630 ?Release@CFL@@UAEXXZ 00409630 f chunk.obj - 0001:00008710 ?AssertValid@CFL@@QAEXK@Z 00409710 f chunk.obj - 0001:000094e0 ?CbRgch@CRPSM@@QAEJJ@Z 0040a4e0 f chunk.obj - 0001:00009510 ?BvRgch@CRPSM@@QAEJXZ 0040a510 f chunk.obj - 0001:00009540 ?Cb@CRPSM@@QAEJXZ 0040a540 f chunk.obj - 0001:00009570 ?SuspendAssertValid@@YGXXZ 0040a570 f chunk.obj - 0001:000095c0 ?ResumeAssertValid@@YGXXZ 0040a5c0 f chunk.obj - 0001:000095f0 ?ElError@FIL@@QAEJXZ 0040a5f0 f chunk.obj - 0001:00009620 ?GrffilCur@FIL@@QAEKXZ 0040a620 f chunk.obj - 0001:00009650 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 0040a650 f chunk.obj - 0001:000096b0 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 0040a6b0 f chunk.obj - 0001:00009710 ?IvMac@GRPB@@QAEJXZ 0040a710 f chunk.obj - 0001:00009740 ?FPush@GL@@QAEHPAX@Z 0040a740 f chunk.obj - 0001:00009780 ?MarkMem@CFL@@UAEXXZ 0040a780 f chunk.obj - 0001:00009850 ?_TValidIndex@CFL@@AAEHXZ 0040a850 f chunk.obj - 0001:00009d80 ?_FReadIndex@CFL@@AAEHXZ 0040ad80 f chunk.obj - 0001:0000aa90 ?BvRgch@CRPBG@@QAEJXZ 0040ba90 f chunk.obj - 0001:0000aac0 ?CbRgch@CRPBG@@QAEJJ@Z 0040bac0 f chunk.obj - 0001:0000aaf0 ?Grfcrp@CRPBG@@QAEKK@Z 0040baf0 f chunk.obj - 0001:0000ab20 ?ClearGrfcrp@CRPBG@@QAEXK@Z 0040bb20 f chunk.obj - 0001:0000ab50 ?SetGrfcrp@CRPBG@@QAEXK@Z 0040bb50 f chunk.obj - 0001:0000ab80 ?Cb@CRPBG@@QAEJXZ 0040bb80 f chunk.obj - 0001:0000abb0 ?Lock@GRPB@@QAEXXZ 0040bbb0 f chunk.obj - 0001:0000abf0 ?Unlock@GRPB@@QAEXXZ 0040bbf0 f chunk.obj - 0001:0000ac30 ?CbFixed@GGB@@QAEJXZ 0040bc30 f chunk.obj - 0001:0000ac60 ?_ReadFreeMap@CFL@@AAEXXZ 0040bc60 f chunk.obj - 0001:0000ae50 ?CbEntry@GLB@@QAEJXZ 0040be50 f chunk.obj - 0001:0000ae80 ?FSave@CFL@@QAEHKPAVFNI@@@Z 0040be80 f chunk.obj - 0001:0000b6d0 ?FTemp@FIL@@QAEHXZ 0040c6d0 f chunk.obj - 0001:0000b710 ?GetFni@CFL@@QAEXPAVFNI@@@Z 0040c710 f chunk.obj - 0001:0000b740 ?GetFni@FIL@@QAEXPAVFNI@@@Z 0040c740 f chunk.obj - 0001:0000b770 ?_FWriteIndex@CFL@@AAEHK@Z 0040c770 f chunk.obj - 0001:0000bad0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 0040cad0 f chunk.obj - 0001:0000bc50 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0040cc50 f chunk.obj - 0001:0000bda0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0040cda0 f chunk.obj - 0001:0000be80 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0040ce80 f chunk.obj - 0001:0000bf50 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 0040cf50 f chunk.obj - 0001:0000c000 ?SetPacked@CFL@@QAEXKKH@Z 0040d000 f chunk.obj - 0001:0000c140 ?FPacked@CFL@@QAEHKK@Z 0040d140 f chunk.obj - 0001:0000c250 ?_FCreateExtra@CFL@@AAEHXZ 0040d250 f chunk.obj - 0001:0000c330 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0040d330 f chunk.obj - 0001:0000c670 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0040d670 f chunk.obj - 0001:0000c810 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 0040d810 f chunk.obj - 0001:0000c920 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 0040d920 f chunk.obj - 0001:0000ca70 ?FWrite@BLCK@@QAEHPAXH@Z 0040da70 f chunk.obj - 0001:0000cab0 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 0040dab0 f chunk.obj - 0001:0000cc40 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 0040dc40 f chunk.obj - 0001:0000ce70 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 0040de70 f chunk.obj - 0001:0000cf10 ?FPutPv@CFL@@QAEHPAXJKK@Z 0040df10 f chunk.obj - 0001:0000cf90 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 0040df90 f chunk.obj - 0001:0000d090 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 0040e090 f chunk.obj - 0001:0000d590 ?FWrite@FLO@@QAEHPAX@Z 0040e590 f chunk.obj - 0001:0000d5d0 ?SwapData@CFL@@QAEXKKKK@Z 0040e5d0 f chunk.obj - 0001:0000d780 ?SwapChildren@CFL@@QAEXKKKK@Z 0040e780 f chunk.obj - 0001:0000d9a0 ?Delete@CFL@@QAEXKK@Z 0040e9a0 f chunk.obj - 0001:0000dcb0 ?SetLoner@CFL@@QAEXKKH@Z 0040ecb0 f chunk.obj - 0001:0000dda0 ?CckiRef@CFL@@QAEJKK@Z 0040eda0 f chunk.obj - 0001:0000de60 ?TIsDescendent@CFL@@QAEHKKKK@Z 0040ee60 f chunk.obj - 0001:0000df80 ?_FDecRefCount@CFL@@AAEHJ@Z 0040ef80 f chunk.obj - 0001:0000e060 ?_DeleteCore@CFL@@AAEXJ@Z 0040f060 f chunk.obj - 0001:0000e120 ?_FreeFpCb@CFL@@AAEXHJJ@Z 0040f120 f chunk.obj - 0001:0000e6e0 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 0040f6e0 f chunk.obj - 0001:0000e810 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 0040f810 f chunk.obj - 0001:0000e9b0 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 0040f9b0 f chunk.obj - 0001:0000eac0 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 0040fac0 f chunk.obj - 0001:0000ec40 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 0040fc40 f chunk.obj - 0001:0000ed90 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 0040fd90 f chunk.obj - 0001:0000f030 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 00410030 f chunk.obj - 0001:0000f1b0 ?Ckid@CFL@@QAEJKK@Z 004101b0 f chunk.obj - 0001:0000f270 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00410270 f chunk.obj - 0001:0000f450 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00410450 f chunk.obj - 0001:0000f500 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00410500 f chunk.obj - 0001:0000f740 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00410740 f chunk.obj - 0001:0000f920 ?_FSetRti@CFL@@AAEHKKJ@Z 00410920 f chunk.obj - 0001:0000fa40 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00410a40 f chunk.obj - 0001:0000fc00 ??0CGE@@QAE@XZ 00410c00 f chunk.obj - 0001:0000fc80 ??1CGE@@UAE@XZ 00410c80 f chunk.obj - 0001:0000fd10 ?AssertValid@CGE@@QAEXK@Z 00410d10 f chunk.obj - 0001:0000fe40 ?MarkMem@CGE@@UAEXXZ 00410e40 f chunk.obj - 0001:0000feb0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00410eb0 f chunk.obj - 0001:00010000 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00411000 f chunk.obj - 0001:00010440 ??4FNI@@QAEAAV0@AAV0@@Z 00411440 f chunk.obj - 0001:00010490 ??_GCFL@@EAEPAXI@Z 00411490 f chunk.obj - 0001:00010490 ??_ECFL@@EAEPAXI@Z 00411490 f chunk.obj - 0001:000104d0 ??1FNI@@UAE@XZ 004114d0 f chunk.obj - 0001:00010500 ??_GCGE@@UAEPAXI@Z 00411500 f chunk.obj - 0001:00010500 ??_ECGE@@UAEPAXI@Z 00411500 f chunk.obj - 0001:00010540 ??4BASE@@QAEAAV0@ABV0@@Z 00411540 f chunk.obj - 0001:00010580 ?FWouldBe@CODM@@SGHJ@Z 00411580 f codec.obj - 0001:000105c0 ?FIs@CODM@@UAEHJ@Z 004115c0 f codec.obj - 0001:000105f0 ?Cls@CODM@@UAEJXZ 004115f0 f codec.obj - 0001:00010620 ?FWouldBe@CODC@@SGHJ@Z 00411620 f codec.obj - 0001:00010660 ?FIs@CODC@@UAEHJ@Z 00411660 f codec.obj - 0001:00010690 ?Cls@CODC@@UAEJXZ 00411690 f codec.obj - 0001:000106c0 ??0CODM@@QAE@PAVCODC@@J@Z 004116c0 f codec.obj - 0001:000107c0 ??1CODM@@UAE@XZ 004117c0 f codec.obj - 0001:000108e0 ?AssertValid@CODM@@QAEXK@Z 004118e0 f codec.obj - 0001:000109b0 ?MarkMem@CODM@@UAEXXZ 004119b0 f codec.obj - 0001:00010aa0 ?SetCfmtDefault@CODM@@QAEXJ@Z 00411aa0 f codec.obj - 0001:00010b30 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00411b30 f codec.obj - 0001:00010c40 ?FCanDo@CODM@@UAEHJH@Z 00411c40 f codec.obj - 0001:00010cb0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00411cb0 f codec.obj - 0001:00010de0 ?LwFromBytes@@YGJEEEE@Z 00411de0 f codec.obj - 0001:00010e20 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00411e20 f codec.obj - 0001:00010f60 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00411f60 f codec.obj - 0001:00011150 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00412150 f codec.obj - 0001:00011460 ?B0Lw@@YGEJ@Z 00412460 f codec.obj - 0001:00011480 ?B1Lw@@YGEJ@Z 00412480 f codec.obj - 0001:000114a0 ?B2Lw@@YGEJ@Z 004124a0 f codec.obj - 0001:000114c0 ?B3Lw@@YGEJ@Z 004124c0 f codec.obj - 0001:00011500 ??_GCODM@@UAEPAXI@Z 00412500 f codec.obj - 0001:00011500 ??_ECODM@@UAEPAXI@Z 00412500 f codec.obj - 0001:00011540 ?FWouldBe@KCDC@@SGHJ@Z 00412540 f codkauai.obj - 0001:00011580 ?FIs@KCDC@@UAEHJ@Z 00412580 f codkauai.obj - 0001:000115b0 ?Cls@KCDC@@UAEJXZ 004125b0 f codkauai.obj - 0001:000115e0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 004125e0 f codkauai.obj - 0001:00011740 ?Set@BITA@@QAEXPAXJ@Z 00412740 f codkauai.obj - 0001:000117a0 ?FWriteBits@BITA@@QAEHKJ@Z 004127a0 f codkauai.obj - 0001:00011940 ?FWriteLogEncoded@BITA@@QAEHK@Z 00412940 f codkauai.obj - 0001:00011a30 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00412a30 f codkauai.obj - 0001:000121f0 ?Ibit@BITA@@QAEJXZ 004131f0 f codkauai.obj - 0001:00012220 ?Ib@BITA@@QAEJXZ 00413220 f codkauai.obj - 0001:00012250 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00413250 f codkauai.obj - 0001:00015f30 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00416f30 f codkauai.obj - 0001:00016850 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00417850 f codkauai.obj - 0001:00019040 ?FWouldBe@BACO@@SGHJ@Z 0041a040 f crf.obj - 0001:00019080 ?FIs@BACO@@UAEHJ@Z 0041a080 f crf.obj - 0001:000190b0 ?Cls@BACO@@UAEJXZ 0041a0b0 f crf.obj - 0001:000190e0 ??0BACO@@IAE@XZ 0041a0e0 f crf.obj - 0001:00019160 ??1BACO@@MAE@XZ 0041a160 f crf.obj - 0001:00019230 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0041a230 f crf.obj - 0001:00019320 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0041a320 f crf.obj - 0001:00019390 ?CbOnFile@BACO@@UAEJXZ 0041a390 f crf.obj - 0001:00019400 ?AssertValid@BACO@@QAEXK@Z 0041a400 f crf.obj - 0001:00019490 ?MarkMem@BACO@@UAEXXZ 0041a490 f crf.obj - 0001:00019500 ?Release@BACO@@UAEXXZ 0041a500 f crf.obj - 0001:00019660 ?Detach@BACO@@UAEXXZ 0041a660 f crf.obj - 0001:00019790 ?SetCrep@BACO@@UAEXJ@Z 0041a790 f crf.obj - 0001:00019810 ?CactRef@BASE@@QAEJXZ 0041a810 f crf.obj - 0001:00019840 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 0041a840 f crf.obj - 0001:00019a00 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 0041aa00 f crf.obj - 0001:00019bf0 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 0041abf0 f crf.obj - 0001:00019f70 ?AssertValid@CRF@@QAEXK@Z 0041af70 f crf.obj - 0001:0001a0c0 ??_EBACO@@MAEPAXI@Z 0041b0c0 f crf.obj - 0001:0001a0c0 ??_GBACO@@MAEPAXI@Z 0041b0c0 f crf.obj - 0001:0001a120 ?FWouldBe@FIL@@SGHJ@Z 0041b120 f file.obj - 0001:0001a160 ?FIs@FIL@@UAEHJ@Z 0041b160 f file.obj - 0001:0001a190 ?Cls@FIL@@UAEJXZ 0041b190 f file.obj - 0001:0001a1c0 ?FWouldBe@BLCK@@SGHJ@Z 0041b1c0 f file.obj - 0001:0001a200 ?FIs@BLCK@@UAEHJ@Z 0041b200 f file.obj - 0001:0001a230 ?Cls@BLCK@@UAEJXZ 0041b230 f file.obj - 0001:0001a260 ?FWouldBe@MSFIL@@SGHJ@Z 0041b260 f file.obj - 0001:0001a2a0 ?FIs@MSFIL@@UAEHJ@Z 0041b2a0 f file.obj - 0001:0001a2d0 ?Cls@MSFIL@@UAEJXZ 0041b2d0 f file.obj - 0001:0001a300 ??0FIL@@IAE@PAVFNI@@K@Z 0041b300 f file.obj - 0001:0001a3f0 ??1FIL@@MAE@XZ 0041b3f0 f file.obj - 0001:0001a460 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0041b460 f file.obj - 0001:0001a680 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0041b680 f file.obj - 0001:0001a850 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0041b850 f file.obj - 0001:0001a970 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0041b970 f file.obj - 0001:0001aac0 ?FSetGrffil@FIL@@QAEHKK@Z 0041bac0 f file.obj - 0001:0001abd0 ?Release@FIL@@UAEXXZ 0041bbd0 f file.obj - 0001:0001acb0 ?GetStnPath@FIL@@QAEXPAVSTN@@@Z 0041bcb0 f file.obj - 0001:0001ad20 ?SetTemp@FIL@@QAEXH@Z 0041bd20 f file.obj - 0001:0001ada0 ?ShutDown@FIL@@SGXXZ 0041bda0 f file.obj - 0001:0001ae60 ?AssertValid@FIL@@QAEXK@Z 0041be60 f file.obj - 0001:0001af90 ?_FRangeIn@@YGHJJJ@Z 0041bf90 f file.obj - 0001:0001aff0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0041bff0 f file.obj - 0001:0001b0c0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0041c0c0 f file.obj - 0001:0001b190 ?FCopy@FLO@@QAEHPAU1@@Z 0041c190 f file.obj - 0001:0001b410 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0041c410 f file.obj - 0001:0001b520 ?FWriteHq@FLO@@QAEHPAXJ@Z 0041c520 f file.obj - 0001:0001b600 ?FTranslate@FLO@@QAEHF@Z 0041c600 f file.obj - 0001:0001bb30 ?AssertValid@FLO@@QAEXK@Z 0041cb30 f file.obj - 0001:0001bc30 ??0BLCK@@QAE@PAUFLO@@H@Z 0041cc30 f file.obj - 0001:0001bd70 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0041cd70 f file.obj - 0001:0001beb0 ??0BLCK@@QAE@XZ 0041ceb0 f file.obj - 0001:0001bf50 ??1BLCK@@UAE@XZ 0041cf50 f file.obj - 0001:0001bfb0 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0041cfb0 f file.obj - 0001:0001c0d0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0041d0d0 f file.obj - 0001:0001c200 ?SetHq@BLCK@@QAEXPAPAXH@Z 0041d200 f file.obj - 0001:0001c2e0 ?Free@BLCK@@QAEXXZ 0041d2e0 f file.obj - 0001:0001c390 ?HqFree@BLCK@@QAEPAXH@Z 0041d390 f file.obj - 0001:0001c540 ?Cb@BLCK@@QAEJH@Z 0041d540 f file.obj - 0001:0001c5d0 ?FSetTemp@BLCK@@QAEHJH@Z 0041d5d0 f file.obj - 0001:0001c6d0 ?FMoveMin@BLCK@@QAEHJ@Z 0041d6d0 f file.obj - 0001:0001c7c0 ?FMoveLim@BLCK@@QAEHJ@Z 0041d7c0 f file.obj - 0001:0001c8b0 ?FReadHq@FLO@@QAEHPAPAX@Z 0041d8b0 f file.obj - 0001:0001c8f0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0041d8f0 f file.obj - 0001:0001ca90 ?FWouldBe@MSNK@@SGHJ@Z 0041da90 f file.obj - 0001:0001cad0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0041dad0 f file.obj - 0001:0001cc70 ?FWriteHq@BLCK@@QAEHPAXJH@Z 0041dc70 f file.obj - 0001:0001ce10 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0041de10 f file.obj - 0001:0001cfb0 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0041dfb0 f file.obj - 0001:0001d160 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 0041e160 f file.obj - 0001:0001d360 ?FPacked@BLCK@@QAEHPAJ@Z 0041e360 f file.obj - 0001:0001d400 ?FPackData@BLCK@@QAEHJ@Z 0041e400 f file.obj - 0001:0001d640 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 0041e640 f file.obj - 0001:0001d690 ?FUnpackData@BLCK@@QAEHXZ 0041e690 f file.obj - 0001:0001d8c0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 0041e8c0 f file.obj - 0001:0001d8f0 ?AssertValid@BLCK@@QAEXK@Z 0041e8f0 f file.obj - 0001:0001db20 ?MarkMem@BLCK@@UAEXXZ 0041eb20 f file.obj - 0001:0001db60 ??0MSFIL@@QAE@PAVFIL@@@Z 0041eb60 f file.obj - 0001:0001dc00 ??1MSFIL@@UAE@XZ 0041ec00 f file.obj - 0001:0001dc90 ?AssertValid@MSFIL@@QAEXK@Z 0041ec90 f file.obj - 0001:0001dd60 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 0041ed60 f file.obj - 0001:0001de70 ?ReportLine@MSFIL@@UAEXPAD@Z 0041ee70 f file.obj - 0001:0001df40 ?Report@MSFIL@@UAEXPAD@Z 0041ef40 f file.obj - 0001:0001e030 ?FError@MSFIL@@UAEHXZ 0041f030 f file.obj - 0001:0001e0e0 ??_GFIL@@MAEPAXI@Z 0041f0e0 f file.obj - 0001:0001e0e0 ??_EFIL@@MAEPAXI@Z 0041f0e0 f file.obj - 0001:0001e120 ??_GBLCK@@UAEPAXI@Z 0041f120 f file.obj - 0001:0001e120 ??_EBLCK@@UAEPAXI@Z 0041f120 f file.obj - 0001:0001e160 ??_EMSFIL@@UAEPAXI@Z 0041f160 f file.obj - 0001:0001e160 ??_GMSFIL@@UAEPAXI@Z 0041f160 f file.obj - 0001:0001e1a0 ??0MSNK@@QAE@XZ 0041f1a0 f file.obj - 0001:0001e1e0 ?FIs@MSNK@@UAEHJ@Z 0041f1e0 f file.obj - 0001:0001e210 ?Cls@MSNK@@UAEJXZ 0041f210 f file.obj - 0001:0001e240 ??1MSNK@@UAE@XZ 0041f240 f file.obj - 0001:0001e270 ??_EMSNK@@UAEPAXI@Z 0041f270 f file.obj - 0001:0001e270 ??_GMSNK@@UAEPAXI@Z 0041f270 f file.obj - 0001:0001e2b0 ?_HfileOpen@@YGPAXPADHK@Z 0041f2b0 f filewin.obj - 0001:0001e330 ?_FOpen@FIL@@IAEHHK@Z 0041f330 f filewin.obj - 0001:0001e570 ?_Close@FIL@@IAEXH@Z 0041f570 f filewin.obj - 0001:0001e690 ?Flush@FIL@@QAEXXZ 0041f690 f filewin.obj - 0001:0001e720 ?_SetFpPos@FIL@@IAEXJ@Z 0041f720 f filewin.obj - 0001:0001e820 ?FSetFpMac@FIL@@QAEHJ@Z 0041f820 f filewin.obj - 0001:0001e960 ?FpMac@FIL@@QAEJXZ 0041f960 f filewin.obj - 0001:0001ea70 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0041fa70 f filewin.obj - 0001:0001ec30 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0041fc30 f filewin.obj - 0001:0001ee00 ?FSwapNames@FIL@@QAEHPAV1@@Z 0041fe00 f filewin.obj - 0001:0001f290 ?FRename@FIL@@QAEHPAVFNI@@@Z 00420290 f filewin.obj - 0001:0001f4c0 ?FWouldBe@FNI@@SGHJ@Z 004204c0 f fniwin.obj - 0001:0001f500 ?FIs@FNI@@UAEHJ@Z 00420500 f fniwin.obj - 0001:0001f530 ?Cls@FNI@@UAEJXZ 00420530 f fniwin.obj - 0001:0001f560 ?SetNil@FNI@@QAEXXZ 00420560 f fniwin.obj - 0001:0001f5c0 ??0FNI@@QAE@XZ 004205c0 f fniwin.obj - 0001:0001f610 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00420610 f fniwin.obj - 0001:0001f960 ?FGetUnique@FNI@@QAEHJ@Z 00420960 f fniwin.obj - 0001:0001fb10 ?FGetTemp@FNI@@QAEHXZ 00420b10 f fniwin.obj - 0001:0001fc50 ?Ftg@FNI@@QAEJXZ 00420c50 f fniwin.obj - 0001:0001fca0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00420ca0 f fniwin.obj - 0001:0001fe60 ?FChangeFtg@FNI@@QAEHJ@Z 00420e60 f fniwin.obj - 0001:0001ffd0 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00420fd0 f fniwin.obj - 0001:00020110 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00421110 f fniwin.obj - 0001:000201d0 ?TExists@FNI@@QAEHXZ 004211d0 f fniwin.obj - 0001:00020410 ?FDelete@FNI@@QAEHXZ 00421410 f fniwin.obj - 0001:000204e0 ?FRename@FNI@@QAEHPAV1@@Z 004214e0 f fniwin.obj - 0001:00020600 ?FEqual@FNI@@QAEHPAV1@@Z 00421600 f fniwin.obj - 0001:000206c0 ?FSameDir@FNI@@QAEHPAV1@@Z 004216c0 f fniwin.obj - 0001:00020800 ?AssertValid@FNI@@QAEXK@Z 00421800 f fniwin.obj - 0001:00020b40 ?_CchExt@FNI@@AAEJXZ 00421b40 f fniwin.obj - 0001:00020c40 ?_SetFtgFromName@FNI@@AAEXXZ 00421c40 f fniwin.obj - 0001:00020db0 ?ChsUpper@@YGDD@Z 00421db0 f fniwin.obj - 0001:00020dd0 ??4STN@@QAEAAV0@PAD@Z 00421dd0 f fniwin.obj - 0001:00020e00 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00421e00 f fniwin.obj - 0001:00020fe0 ?FAppendCh@STN@@QAEHD@Z 00421fe0 f fniwin.obj - 0001:00021010 ?FAppendSz@STN@@QAEHPAD@Z 00422010 f fniwin.obj - 0001:00021050 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00422050 f fniwin.obj - 0001:00021180 ?FAppendStn@STN@@QAEHPAV1@@Z 00422180 f fniwin.obj - 0001:000211c0 ?FInsertCh@STN@@QAEHJD@Z 004221c0 f fniwin.obj - 0001:00021200 ?FEqual@STN@@QAEHPAV1@@Z 00422200 f fniwin.obj - 0001:00021240 ?FEqualUser@STN@@QAEHPAV1@K@Z 00422240 f fniwin.obj - 0001:00021280 ?FEqualSz@STN@@QAEHPAD@Z 00422280 f fniwin.obj - 0001:00021320 ??_EFNI@@UAEPAXI@Z 00422320 f fniwin.obj - 0001:00021320 ??_GFNI@@UAEPAXI@Z 00422320 f fniwin.obj - 0001:00021360 ?FWouldBe@CHCM@@SGHJ@Z 00422360 f chcm.obj - 0001:000213a0 ?FIs@CHCM@@UAEHJ@Z 004223a0 f chcm.obj - 0001:000213d0 ?Cls@CHCM@@UAEJXZ 004223d0 f chcm.obj - 0001:00021400 ?FWouldBe@CHLX@@SGHJ@Z 00422400 f chcm.obj - 0001:00021440 ?FIs@CHLX@@UAEHJ@Z 00422440 f chcm.obj - 0001:00021470 ?Cls@CHLX@@UAEJXZ 00422470 f chcm.obj - 0001:000214a0 ?FWouldBe@CHDC@@SGHJ@Z 004224a0 f chcm.obj - 0001:000214e0 ?FIs@CHDC@@UAEHJ@Z 004224e0 f chcm.obj - 0001:00021510 ?Cls@CHDC@@UAEJXZ 00422510 f chcm.obj - 0001:00021540 ??0CHCM@@QAE@XZ 00422540 f chcm.obj - 0001:000215e0 ??1CHCM@@UAE@XZ 004225e0 f chcm.obj - 0001:00021730 ?AssertValid@CHCM@@QAEXK@Z 00422730 f chcm.obj - 0001:000218a0 ?MarkMem@CHCM@@UAEXXZ 004228a0 f chcm.obj - 0001:000219a0 ?_Error@CHCM@@IAEXJPAD@Z 004229a0 f chcm.obj - 0001:00021b80 ?_GetRgbFromLw@CHCM@@IAEXJPAE@Z 00422b80 f chcm.obj - 0001:00021cf0 ?SwLow@@YGFJ@Z 00422cf0 f chcm.obj - 0001:00021d10 ?_ErrorOnData@CHCM@@IAEXPAD@Z 00422d10 f chcm.obj - 0001:00021da0 ?_FGetCleanTok@CHCM@@IAEHPAUTOK@@H@Z 00422da0 f chcm.obj - 0001:00022000 ?_SkipPastTok@CHCM@@IAEXJ@Z 00423000 f chcm.obj - 0001:00022090 ?_FParseParenHeader@CHCM@@IAEHPAUPHP@1@JPAJ@Z 00423090 f chcm.obj - 0001:00022410 ?_ParseChunkHeader@CHCM@@IAEXPAK0@Z 00423410 f chcm.obj - 0001:00022600 ?_AppendString@CHCM@@IAEXPAVSTN@@@Z 00423600 f chcm.obj - 0001:00022810 ?_AppendNumber@CHCM@@IAEXJ@Z 00423810 f chcm.obj - 0001:000228b0 ?_ParseBodyChild@CHCM@@IAEXKK@Z 004238b0 f chcm.obj - 0001:000229f0 ?_ParseBodyParent@CHCM@@IAEXKK@Z 004239f0 f chcm.obj - 0001:00022b30 ?_ParseBodyAlign@CHCM@@IAEXXZ 00423b30 f chcm.obj - 0001:00022d20 ?_ParseBodyFile@CHCM@@IAEXXZ 00423d20 f chcm.obj - 0001:00022ea0 ?CchTotSz@@YGJPAD@Z 00423ea0 f chcm.obj - 0001:00022ec0 ?CchTotSt@@YGJPAD@Z 00423ec0 f chcm.obj - 0001:00022ef0 ?_FPrepWrite@CHCM@@IAEHHJKKPAVBLCK@@@Z 00423ef0 f chcm.obj - 0001:00023010 ?CchTotStz@@YGJPAD@Z 00424010 f chcm.obj - 0001:00023040 ?_FEndWrite@CHCM@@IAEHHKKPAVBLCK@@@Z 00424040 f chcm.obj - 0001:00023180 ?_ParseBodyMeta@CHCM@@IAEXHKK@Z 00424180 f chcm.obj - 0001:000233b0 ?Pst@STN@@QAEPADXZ 004243b0 f chcm.obj - 0001:00023400 ?Pstz@STN@@QAEPADXZ 00424400 f chcm.obj - 0001:00023450 ?_ParseBodyBitmap@CHCM@@IAEXHHKK@Z 00424450 f chcm.obj - 0001:000236d0 ?_ParseBodyPalette@CHCM@@IAEXHKK@Z 004246d0 f chcm.obj - 0001:000238e0 ?_ParseBodyMidi@CHCM@@IAEXHKK@Z 004248e0 f chcm.obj - 0001:00023ac0 ?_ParseBodyCursor@CHCM@@IAEXHKK@Z 00424ac0 f chcm.obj - 0001:00024220 ?CbRoundToLong@@YGJJ@Z 00425220 f chcm.obj - 0001:00024240 ?_FParseData@CHCM@@IAEHPAUTOK@@@Z 00425240 f chcm.obj - 0001:00024600 ?_ParseBodyList@CHCM@@IAEXHHKK@Z 00425600 f chcm.obj - 0001:00024bf0 ?IbMac@BSF@@QAEJXZ 00425bf0 f chcm.obj - 0001:00024c20 ?LwLine@LEXB@@QAEJXZ 00425c20 f chcm.obj - 0001:00024c50 ?IchLine@LEXB@@QAEJXZ 00425c50 f chcm.obj - 0001:00024c80 ?_ParseBodyGroup@CHCM@@IAEXHHKK@Z 00425c80 f chcm.obj - 0001:000254e0 ??0ACR@@QAE@EEE@Z 004264e0 f chcm.obj - 0001:00025520 ??0ACR@@QAE@HH@Z 00426520 f chcm.obj - 0001:00025570 ?_ParseBodyStringTable@CHCM@@IAEXHHKK@Z 00426570 f chcm.obj - 0001:00025d30 ?_ParseBodyScript@CHCM@@IAEXHHKK@Z 00426d30 f chcm.obj - 0001:00025e20 ?_ParseBodyPackedFile@CHCM@@IAEXPAH@Z 00426e20 f chcm.obj - 0001:00025fc0 ?_StartSubFile@CHCM@@IAEXHKK@Z 00426fc0 f chcm.obj - 0001:000260e0 ?_EndSubFile@CHCM@@IAEXXZ 004270e0 f chcm.obj - 0001:00026480 ?_ParsePackFmt@CHCM@@IAEXXZ 00427480 f chcm.obj - 0001:00026550 ?FError@CHCM@@QAEHXZ 00427550 f chcm.obj - 0001:00026590 ?_ParseChunkBody@CHCM@@IAEXKK@Z 00427590 f chcm.obj - 0001:00026bf0 ?_ParseAdopt@CHCM@@IAEXXZ 00427bf0 f chcm.obj - 0001:00026d70 ?PcflCompile@CHCM@@QAEPAVCFL@@PAVFNI@@0PAVMSNK@@@Z 00427d70 f chcm.obj - 0001:00027010 ?PcflCompile@CHCM@@QAEPAVCFL@@PAVBSF@@PAVSTN@@PAVFNI@@PAVMSNK@@@Z 00428010 f chcm.obj - 0001:00027700 ??0CHLX@@QAE@PAVBSF@@PAVSTN@@@Z 00428700 f chcm.obj - 0001:00027780 ?_ReadNumTok@LEXB@@MAEXPAUTOK@@DJJ@Z 00428780 f chcm.obj - 0001:000277c0 ??1CHLX@@UAE@XZ 004287c0 f chcm.obj - 0001:00027830 ?FGetTok@CHLX@@UAEHPAUTOK@@@Z 00428830 f chcm.obj - 0001:000279b0 ?FGetTokSkipSemi@CHLX@@UAEHPAUTOK@@@Z 004289b0 f chcm.obj - 0001:00027a50 ?FGetPath@CHLX@@UAEHPAVFNI@@@Z 00428a50 f chcm.obj - 0001:00027c70 ?_Advance@LEXB@@IAEXJ@Z 00428c70 f chcm.obj - 0001:00027cb0 ?_FDoSet@CHLX@@IAEHPAUTOK@@@Z 00428cb0 f chcm.obj - 0001:000280b0 ?AssertValid@CHLX@@QAEXK@Z 004290b0 f chcm.obj - 0001:00028120 ?MarkMem@CHLX@@UAEXXZ 00429120 f chcm.obj - 0001:00028180 ??0CHDC@@QAE@XZ 00429180 f chcm.obj - 0001:00028210 ??1CHDC@@UAE@XZ 00429210 f chcm.obj - 0001:00028290 ?AssertValid@CHDC@@QAEXK@Z 00429290 f chcm.obj - 0001:000283c0 ?MarkMem@CHDC@@UAEXXZ 004293c0 f chcm.obj - 0001:00028430 ?FDecompile@CHDC@@QAEHPAVCFL@@PAVMSNK@@1@Z 00429430 f chcm.obj - 0001:00028980 ?DumpSz@CHSE@@QAEXPAD@Z 00429980 f chcm.obj - 0001:000289e0 ?FError@CHDC@@QAEHXZ 004299e0 f chcm.obj - 0001:00028a20 ?_FDumpScript@CHDC@@IAEHPAUCKI@@@Z 00429a20 f chcm.obj - 0001:00028b70 ?_FDumpList@CHDC@@IAEHPAVBLCK@@H@Z 00429b70 f chcm.obj - 0001:00028d50 ?_FDumpGroup@CHDC@@IAEHPAVBLCK@@H@Z 00429d50 f chcm.obj - 0001:00028f30 ?_FDumpStringTable@CHDC@@IAEHPAVBLCK@@H@Z 00429f30 f chcm.obj - 0001:00029110 ?_WritePack@CHDC@@IAEXJ@Z 0042a110 f chcm.obj - 0001:000291e0 ??_GCHCM@@UAEPAXI@Z 0042a1e0 f chcm.obj - 0001:000291e0 ??_ECHCM@@UAEPAXI@Z 0042a1e0 f chcm.obj - 0001:00029220 ??0TOK@@QAE@XZ 0042a220 f chcm.obj - 0001:00029250 ??0SCCG@@QAE@XZ 0042a250 f chcm.obj - 0001:00029290 ??1SCCG@@UAE@XZ 0042a290 f chcm.obj - 0001:000292c0 ??_ECHLX@@UAEPAXI@Z 0042a2c0 f chcm.obj - 0001:000292c0 ??_GCHLX@@UAEPAXI@Z 0042a2c0 f chcm.obj - 0001:00029300 ??_GCHDC@@UAEPAXI@Z 0042a300 f chcm.obj - 0001:00029300 ??_ECHDC@@UAEPAXI@Z 0042a300 f chcm.obj - 0001:00029340 ??_GSCCG@@UAEPAXI@Z 0042a340 f chcm.obj - 0001:00029340 ??_ESCCG@@UAEPAXI@Z 0042a340 f chcm.obj - 0001:00029380 ?FWouldBe@CHSE@@SGHJ@Z 0042a380 f chse.obj - 0001:000293c0 ?FIs@CHSE@@UAEHJ@Z 0042a3c0 f chse.obj - 0001:000293f0 ?Cls@CHSE@@UAEJXZ 0042a3f0 f chse.obj - 0001:00029420 ??0CHSE@@QAE@XZ 0042a420 f chse.obj - 0001:000294c0 ??1CHSE@@UAE@XZ 0042a4c0 f chse.obj - 0001:00029510 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 0042a510 f chse.obj - 0001:00029660 ?Uninit@CHSE@@QAEXXZ 0042a660 f chse.obj - 0001:00029730 ?AssertValid@CHSE@@QAEXK@Z 0042a730 f chse.obj - 0001:00029860 ?MarkMem@CHSE@@UAEXXZ 0042a860 f chse.obj - 0001:000298f0 ?DumpHeader@CHSE@@QAEXKKPAVSTN@@H@Z 0042a8f0 f chse.obj - 0001:00029a50 ?DumpBlck@CHSE@@QAEXPAVBLCK@@@Z 0042aa50 f chse.obj - 0001:00029b90 ?DumpAdoptCmd@CHSE@@QAEXPAUCKI@@PAUKID@@@Z 0042ab90 f chse.obj - 0001:00029c50 ?_DumpBsf@CHSE@@IAEXJ@Z 0042ac50 f chse.obj - 0001:00029ef0 ?FDumpScript@CHSE@@QAEHPAVSCPT@@PAVSCCB@@@Z 0042aef0 f chse.obj - 0001:0002a040 ?DumpList@CHSE@@QAEXPAVGLB@@@Z 0042b040 f chse.obj - 0001:0002a290 ?DumpGroup@CHSE@@QAEXPAVGGB@@@Z 0042b290 f chse.obj - 0001:0002a540 ?FDumpStringTable@CHSE@@QAEHPAVGSTB@@@Z 0042b540 f chse.obj - 0001:0002a840 ??_GCHSE@@UAEPAXI@Z 0042b840 f chse.obj - 0001:0002a840 ??_ECHSE@@UAEPAXI@Z 0042b840 f chse.obj - 0001:0002a880 ?CbExtra@GSTB@@QAEJXZ 0042b880 f chse.obj - 0001:0002a8b0 ?Error@CHSE@@QAEXPAD@Z 0042b8b0 f chse.obj - 0001:0002a930 ?FWouldBe@GRPB@@SGHJ@Z 0042b930 f groups.obj - 0001:0002a970 ?FIs@GRPB@@UAEHJ@Z 0042b970 f groups.obj - 0001:0002a9a0 ?Cls@GRPB@@UAEJXZ 0042b9a0 f groups.obj - 0001:0002a9d0 ?FWouldBe@GLB@@SGHJ@Z 0042b9d0 f groups.obj - 0001:0002aa10 ?FIs@GLB@@UAEHJ@Z 0042ba10 f groups.obj - 0001:0002aa40 ?Cls@GLB@@UAEJXZ 0042ba40 f groups.obj - 0001:0002aa70 ?FWouldBe@GL@@SGHJ@Z 0042ba70 f groups.obj - 0001:0002aab0 ?FIs@GL@@UAEHJ@Z 0042bab0 f groups.obj - 0001:0002aae0 ?Cls@GL@@UAEJXZ 0042bae0 f groups.obj - 0001:0002ab10 ?FWouldBe@AL@@SGHJ@Z 0042bb10 f groups.obj - 0001:0002ab50 ?FIs@AL@@UAEHJ@Z 0042bb50 f groups.obj - 0001:0002ab80 ?Cls@AL@@UAEJXZ 0042bb80 f groups.obj - 0001:0002abb0 ?FWouldBe@GGB@@SGHJ@Z 0042bbb0 f groups.obj - 0001:0002abf0 ?FIs@GGB@@UAEHJ@Z 0042bbf0 f groups.obj - 0001:0002ac20 ?Cls@GGB@@UAEJXZ 0042bc20 f groups.obj - 0001:0002ac50 ?FWouldBe@GG@@SGHJ@Z 0042bc50 f groups.obj - 0001:0002ac90 ?FIs@GG@@UAEHJ@Z 0042bc90 f groups.obj - 0001:0002acc0 ?Cls@GG@@UAEJXZ 0042bcc0 f groups.obj - 0001:0002acf0 ?FWouldBe@AG@@SGHJ@Z 0042bcf0 f groups.obj - 0001:0002ad30 ?FIs@AG@@UAEHJ@Z 0042bd30 f groups.obj - 0001:0002ad60 ?Cls@AG@@UAEJXZ 0042bd60 f groups.obj - 0001:0002ad90 ??1GRPB@@UAE@XZ 0042bd90 f groups.obj - 0001:0002ae00 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0042be00 f groups.obj - 0001:0002b000 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0042c000 f groups.obj - 0001:0002b1c0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0042c1c0 f groups.obj - 0001:0002b220 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0042c220 f groups.obj - 0001:0002b3f0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0042c3f0 f groups.obj - 0001:0002b570 ?AssertValid@GRPB@@QAEXK@Z 0042c570 f groups.obj - 0001:0002b700 ?MarkMem@GRPB@@UAEXXZ 0042c700 f groups.obj - 0001:0002b770 ??0GLB@@IAE@J@Z 0042c770 f groups.obj - 0001:0002b800 ?QvGet@GLB@@QAEPAXJ@Z 0042c800 f groups.obj - 0001:0002b890 ?Get@GLB@@QAEXJPAX@Z 0042c890 f groups.obj - 0001:0002b920 ?Put@GLB@@QAEXJPAX@Z 0042c920 f groups.obj - 0001:0002b9d0 ?PvLock@GLB@@QAEPAXJ@Z 0042c9d0 f groups.obj - 0001:0002ba10 ?SetMinGrow@GLB@@QAEXJ@Z 0042ca10 f groups.obj - 0001:0002baa0 ?AssertValid@GLB@@QAEXK@Z 0042caa0 f groups.obj - 0001:0002bb40 ?PglNew@GL@@SGPAV1@JJ@Z 0042cb40 f groups.obj - 0001:0002bc70 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0042cc70 f groups.obj - 0001:0002be30 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0042ce30 f groups.obj - 0001:0002be90 ??0GL@@IAE@J@Z 0042ce90 f groups.obj - 0001:0002bef0 ?FFree@GL@@UAEHJ@Z 0042cef0 f groups.obj - 0001:0002bf60 ?CbOnFile@GL@@UAEJXZ 0042cf60 f groups.obj - 0001:0002bfc0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0042cfc0 f groups.obj - 0001:0002c190 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0042d190 f groups.obj - 0001:0002c3e0 ?FInsert@GL@@QAEHJPAXJ@Z 0042d3e0 f groups.obj - 0001:0002c560 ?Delete@GL@@UAEXJ@Z 0042d560 f groups.obj - 0001:0002c5c0 ?Delete@GL@@QAEXJJ@Z 0042d5c0 f groups.obj - 0001:0002c730 ?FAdd@GL@@UAEHPAXPAJ@Z 0042d730 f groups.obj - 0001:0002c7e0 ?FPop@GL@@QAEHPAX@Z 0042d7e0 f groups.obj - 0001:0002c8f0 ?FSetIvMac@GL@@QAEHJ@Z 0042d8f0 f groups.obj - 0001:0002cb00 ?FEnsureSpace@GL@@QAEHJK@Z 0042db00 f groups.obj - 0001:0002cbd0 ?PalNew@AL@@SGPAV1@JJ@Z 0042dbd0 f groups.obj - 0001:0002cd00 ?PalRead@AL@@SGPAV1@PAVBLCK@@PAF1@Z 0042dd00 f groups.obj - 0001:0002cec0 ??0AL@@IAE@J@Z 0042dec0 f groups.obj - 0001:0002cf30 ?CbFromCbit@@YGJJ@Z 0042df30 f groups.obj - 0001:0002cf60 ?CbOnFile@AL@@UAEJXZ 0042df60 f groups.obj - 0001:0002cfd0 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 0042dfd0 f groups.obj - 0001:0002d1c0 ?_Qb1@GRPB@@IAEPAEJ@Z 0042e1c0 f groups.obj - 0001:0002d1f0 ?_Qb2@GRPB@@IAEPAEJ@Z 0042e1f0 f groups.obj - 0001:0002d220 ?_Cb1@GRPB@@IAEJXZ 0042e220 f groups.obj - 0001:0002d250 ?_FRead@AL@@IAEHPAVBLCK@@PAF1@Z 0042e250 f groups.obj - 0001:0002d4d0 ??0GRPB@@IAE@XZ 0042e4d0 f groups.obj - 0001:0002d510 ?FFree@AL@@UAEHJ@Z 0042e510 f groups.obj - 0001:0002d5b0 ?Fbit@@YGEJ@Z 0042e5b0 f groups.obj - 0001:0002d5d0 ?_Qgrfbit@AL@@AAEPAEJ@Z 0042e5d0 f groups.obj - 0001:0002d610 ?IbFromIbit@@YGJJ@Z 0042e610 f groups.obj - 0001:0002d630 ?FEnsureSpace@AL@@QAEHJK@Z 0042e630 f groups.obj - 0001:0002d720 ?FAdd@AL@@UAEHPAXPAJ@Z 0042e720 f groups.obj - 0001:0002d920 ?Delete@AL@@UAEXJ@Z 0042e920 f groups.obj - 0001:0002dba0 ?AssertValid@AL@@QAEXK@Z 0042eba0 f groups.obj - 0001:0002dcb0 ?_Cb2@GRPB@@IAEJXZ 0042ecb0 f groups.obj - 0001:0002dce0 ??0GGB@@IAE@JH@Z 0042ece0 f groups.obj - 0001:0002dda0 ?CbOnFile@GGB@@UAEJXZ 0042eda0 f groups.obj - 0001:0002de00 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0042ee00 f groups.obj - 0001:0002e050 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0042f050 f groups.obj - 0001:0002e360 ?FFree@GGB@@UAEHJ@Z 0042f360 f groups.obj - 0001:0002e4a0 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 0042f4a0 f groups.obj - 0001:0002e4e0 ?FEnsureSpace@GGB@@QAEHJJK@Z 0042f4e0 f groups.obj - 0001:0002e640 ?SetMinGrow@GGB@@QAEXJJ@Z 0042f640 f groups.obj - 0001:0002e6e0 ?_RemoveRgb@GGB@@IAEXJJ@Z 0042f6e0 f groups.obj - 0001:0002e830 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0042f830 f groups.obj - 0001:0002e9a0 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0042f9a0 f groups.obj - 0001:0002eab0 ?PvFixedLock@GGB@@QAEPAXJPAJ@Z 0042fab0 f groups.obj - 0001:0002eb10 ?GetFixed@GGB@@QAEXJPAX@Z 0042fb10 f groups.obj - 0001:0002ec20 ?PutFixed@GGB@@QAEXJPAX@Z 0042fc20 f groups.obj - 0001:0002ed60 ?Cb@GGB@@QAEJJ@Z 0042fd60 f groups.obj - 0001:0002ee10 ?QvGet@GGB@@QAEPAXJPAJ@Z 0042fe10 f groups.obj - 0001:0002ef20 ?PvLock@GGB@@QAEPAXJPAJ@Z 0042ff20 f groups.obj - 0001:0002ef80 ?GetRgb@GGB@@QAEXJJJPAX@Z 0042ff80 f groups.obj - 0001:0002f090 ?DeleteRgb@GGB@@QAEXJJJ@Z 00430090 f groups.obj - 0001:0002f280 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00430280 f groups.obj - 0001:0002f540 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 00430540 f groups.obj - 0001:0002f9f0 ?Merge@GGB@@QAEXJJ@Z 004309f0 f groups.obj - 0001:0002fc70 ?AssertValid@GGB@@QAEXK@Z 00430c70 f groups.obj - 0001:0002ffd0 ?PggNew@GG@@SGPAV1@JJJ@Z 00430fd0 f groups.obj - 0001:00030120 ??0GG@@IAE@J@Z 00431120 f groups.obj - 0001:00030160 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00431160 f groups.obj - 0001:00030330 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 00431330 f groups.obj - 0001:00030390 ?FInsert@GG@@QAEHJJPAX0@Z 00431390 f groups.obj - 0001:00030640 ?FAdd@GG@@UAEHJPAJPAX1@Z 00431640 f groups.obj - 0001:00030700 ?Delete@GG@@UAEXJ@Z 00431700 f groups.obj - 0001:00030840 ?AssertValid@GG@@QAEXK@Z 00431840 f groups.obj - 0001:000308b0 ?PagNew@AG@@SGPAV1@JJJ@Z 004318b0 f groups.obj - 0001:00030a00 ??0AG@@IAE@J@Z 00431a00 f groups.obj - 0001:00030a40 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00431a40 f groups.obj - 0001:00030c10 ?FAdd@AG@@UAEHJPAJPAX1@Z 00431c10 f groups.obj - 0001:00030fa0 ?Delete@AG@@UAEXJ@Z 00431fa0 f groups.obj - 0001:00031150 ?AssertValid@AG@@QAEXK@Z 00432150 f groups.obj - 0001:000311c0 ??_EGRPB@@UAEPAXI@Z 004321c0 f groups.obj - 0001:000311c0 ??_GGRPB@@UAEPAXI@Z 004321c0 f groups.obj - 0001:00031200 ??_GGG@@UAEPAXI@Z 00432200 f groups.obj - 0001:00031200 ??_EGG@@UAEPAXI@Z 00432200 f groups.obj - 0001:00031240 ??_EAG@@UAEPAXI@Z 00432240 f groups.obj - 0001:00031240 ??_GAG@@UAEPAXI@Z 00432240 f groups.obj - 0001:00031280 ??_GGLB@@UAEPAXI@Z 00432280 f groups.obj - 0001:00031280 ??_EGLB@@UAEPAXI@Z 00432280 f groups.obj - 0001:000312c0 ??_EGL@@UAEPAXI@Z 004322c0 f groups.obj - 0001:000312c0 ??_GGL@@UAEPAXI@Z 004322c0 f groups.obj - 0001:00031300 ??1GLB@@UAE@XZ 00432300 f groups.obj - 0001:00031330 ??_EAL@@UAEPAXI@Z 00432330 f groups.obj - 0001:00031330 ??_GAL@@UAEPAXI@Z 00432330 f groups.obj - 0001:00031370 ??_GGGB@@UAEPAXI@Z 00432370 f groups.obj - 0001:00031370 ??_EGGB@@UAEPAXI@Z 00432370 f groups.obj - 0001:000313b0 ??1GGB@@UAE@XZ 004323b0 f groups.obj - 0001:000313e0 ??1GG@@UAE@XZ 004323e0 f groups.obj - 0001:00031410 ??1AG@@UAE@XZ 00432410 f groups.obj - 0001:00031440 ??1GL@@UAE@XZ 00432440 f groups.obj - 0001:00031470 ??1AL@@UAE@XZ 00432470 f groups.obj - 0001:000314a0 ?FWouldBe@GSTB@@SGHJ@Z 004324a0 f groups2.obj - 0001:000314e0 ?FIs@GSTB@@UAEHJ@Z 004324e0 f groups2.obj - 0001:00031510 ?Cls@GSTB@@UAEJXZ 00432510 f groups2.obj - 0001:00031540 ?FWouldBe@GST@@SGHJ@Z 00432540 f groups2.obj - 0001:00031580 ?FIs@GST@@UAEHJ@Z 00432580 f groups2.obj - 0001:000315b0 ?Cls@GST@@UAEJXZ 004325b0 f groups2.obj - 0001:000315e0 ?FWouldBe@AST@@SGHJ@Z 004325e0 f groups2.obj - 0001:00031620 ?FIs@AST@@UAEHJ@Z 00432620 f groups2.obj - 0001:00031650 ?Cls@AST@@UAEJXZ 00432650 f groups2.obj - 0001:00031680 ??0GSTB@@IAE@JK@Z 00432680 f groups2.obj - 0001:00031780 ?CbOnFile@GSTB@@UAEJXZ 00432780 f groups2.obj - 0001:000317f0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 004327f0 f groups2.obj - 0001:00031ac0 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 00432ac0 f groups2.obj - 0001:00031e20 ?FEnsureSpace@GSTB@@QAEHJJK@Z 00432e20 f groups2.obj - 0001:00031f60 ?SetMinGrow@GSTB@@QAEXJJ@Z 00432f60 f groups2.obj - 0001:00031ff0 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 00432ff0 f groups2.obj - 0001:000320c0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 004330c0 f groups2.obj - 0001:000321d0 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 004331d0 f groups2.obj - 0001:000322a0 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 004332a0 f groups2.obj - 0001:00032410 ?GetExtra@GSTB@@QAEXJPAX@Z 00433410 f groups2.obj - 0001:00032520 ?PutExtra@GSTB@@QAEXJPAX@Z 00433520 f groups2.obj - 0001:00032660 ?_Qst@GSTB@@IAEPADJ@Z 00433660 f groups2.obj - 0001:000326c0 ?_AppendRgch@GSTB@@IAEXPADJ@Z 004336c0 f groups2.obj - 0001:00032780 ?_RemoveSt@GSTB@@IAEXJ@Z 00433780 f groups2.obj - 0001:000328b0 ?_SwapBytesRgbst@GSTB@@IAEXXZ 004338b0 f groups2.obj - 0001:00032940 ?_TranslateGrst@GSTB@@IAEXFH@Z 00433940 f groups2.obj - 0001:00032a00 ?_FTranslateGrst@GSTB@@IAEHF@Z 00433a00 f groups2.obj - 0001:00032dc0 ?FFree@GSTB@@UAEHJ@Z 00433dc0 f groups2.obj - 0001:00032e90 ?TranslateSt@@YGXPADFH@Z 00433e90 f groups2.obj - 0001:00032ec0 ?AssertValid@GSTB@@QAEXK@Z 00433ec0 f groups2.obj - 0001:000331a0 ?PgstNew@GST@@SGPAV1@JJJ@Z 004341a0 f groups2.obj - 0001:00033330 ?SetSt@STN@@QAEXPAD@Z 00434330 f groups2.obj - 0001:00033370 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 00434370 f groups2.obj - 0001:00033530 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 00434530 f groups2.obj - 0001:00033620 ?FFindRgch@GST@@UAEHPADJPAJK@Z 00434620 f groups2.obj - 0001:000337d0 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 004347d0 f groups2.obj - 0001:000339d0 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 004349d0 f groups2.obj - 0001:00033ac0 ?Delete@GST@@UAEXJ@Z 00434ac0 f groups2.obj - 0001:00033bf0 ?AssertValid@GST@@QAEXK@Z 00434bf0 f groups2.obj - 0001:00033c60 ?PastNew@AST@@SGPAV1@JJJ@Z 00434c60 f groups2.obj - 0001:00033df0 ?_Bst@GSTB@@IAEJJ@Z 00434df0 f groups2.obj - 0001:00033e30 ?_Qbst@GSTB@@IAEPAJJ@Z 00434e30 f groups2.obj - 0001:00033e70 ??0GST@@IAE@J@Z 00434e70 f groups2.obj - 0001:00033eb0 ??0AST@@IAE@J@Z 00434eb0 f groups2.obj - 0001:00033ef0 ?PastRead@AST@@SGPAV1@PAVBLCK@@PAF1@Z 00434ef0 f groups2.obj - 0001:000340b0 ?FAddRgch@AST@@UAEHPADJPAXPAJ@Z 004350b0 f groups2.obj - 0001:00034360 ?Delete@AST@@UAEXJ@Z 00435360 f groups2.obj - 0001:00034520 ?AssertValid@AST@@QAEXK@Z 00435520 f groups2.obj - 0001:00034590 ??_EGST@@UAEPAXI@Z 00435590 f groups2.obj - 0001:00034590 ??_GGST@@UAEPAXI@Z 00435590 f groups2.obj - 0001:000345d0 ??_EAST@@UAEPAXI@Z 004355d0 f groups2.obj - 0001:000345d0 ??_GAST@@UAEPAXI@Z 004355d0 f groups2.obj - 0001:00034610 ??_EGSTB@@UAEPAXI@Z 00435610 f groups2.obj - 0001:00034610 ??_GGSTB@@UAEPAXI@Z 00435610 f groups2.obj - 0001:00034650 ??1GSTB@@UAE@XZ 00435650 f groups2.obj - 0001:00034680 ??1GST@@UAE@XZ 00435680 f groups2.obj - 0001:000346b0 ??1AST@@UAE@XZ 004356b0 f groups2.obj - 0001:000346e0 ?FWouldBe@LEXB@@SGHJ@Z 004356e0 f lex.obj - 0001:00034720 ?FIs@LEXB@@UAEHJ@Z 00435720 f lex.obj - 0001:00034750 ?Cls@LEXB@@UAEJXZ 00435750 f lex.obj - 0001:00034780 ?_TtFromCh@@YGJD@Z 00435780 f lex.obj - 0001:000347b0 ?_TtFromChCh@@YGJDD@Z 004357b0 f lex.obj - 0001:00034870 ??0LEXB@@QAE@PAVFIL@@H@Z 00435870 f lex.obj - 0001:00034a00 ??0LEXB@@QAE@PAVBSF@@PAVSTN@@H@Z 00435a00 f lex.obj - 0001:00034bf0 ??1LEXB@@UAE@XZ 00435bf0 f lex.obj - 0001:00034c80 ?AssertValid@LEXB@@QAEXK@Z 00435c80 f lex.obj - 0001:00034e80 ?MarkMem@LEXB@@UAEXXZ 00435e80 f lex.obj - 0001:00034ef0 ?GetStnFile@LEXB@@QAEXPAVSTN@@@Z 00435ef0 f lex.obj - 0001:00034fb0 ?_FFetchRgch@LEXB@@IAEHPADJ@Z 00435fb0 f lex.obj - 0001:00035310 ?_FSkipWhiteSpace@LEXB@@IAEHXZ 00436310 f lex.obj - 0001:00035a30 ?FGetTok@LEXB@@UAEHPAUTOK@@@Z 00436a30 f lex.obj - 0001:000360e0 ?CbExtra@LEXB@@UAEJXZ 004370e0 f lex.obj - 0001:00036130 ?GetExtra@LEXB@@UAEXPAX@Z 00437130 f lex.obj - 0001:000361b0 ?_ReadNumber@LEXB@@MAEXPAJDJJ@Z 004371b0 f lex.obj - 0001:000362a0 ?_FReadHex@LEXB@@IAEHPAJ@Z 004372a0 f lex.obj - 0001:00036410 ?_FReadControlCh@LEXB@@IAEHPAD@Z 00437410 f lex.obj - 0001:00036630 ??_GLEXB@@UAEPAXI@Z 00437630 f lex.obj - 0001:00036630 ??_ELEXB@@UAEPAXI@Z 00437630 f lex.obj - 0001:00036670 ?_GrfctCh@LEXB@@IAEKD@Z 00437670 f lex.obj - 0001:000366c0 ?FWouldBe@BSM@@SGHJ@Z 004376c0 f stream.obj - 0001:00036700 ?FIs@BSM@@UAEHJ@Z 00437700 f stream.obj - 0001:00036730 ?Cls@BSM@@UAEJXZ 00437730 f stream.obj - 0001:00036760 ?FWouldBe@BSF@@SGHJ@Z 00437760 f stream.obj - 0001:000367a0 ?FIs@BSF@@UAEHJ@Z 004377a0 f stream.obj - 0001:000367d0 ?Cls@BSF@@UAEJXZ 004377d0 f stream.obj - 0001:00036800 ??0BSM@@QAE@XZ 00437800 f stream.obj - 0001:00036880 ??1BSM@@UAE@XZ 00437880 f stream.obj - 0001:000368f0 ?SetMinGrow@BSM@@QAEXJ@Z 004378f0 f stream.obj - 0001:00036950 ?FetchRgb@BSM@@QAEXJJPAX@Z 00437950 f stream.obj - 0001:00036a00 ?FReplace@BSM@@QAEHPAXJJJ@Z 00437a00 f stream.obj - 0001:00036b90 ?_FEnsureSize@BSM@@IAEHJH@Z 00437b90 f stream.obj - 0001:00036d60 ?AssertValid@BSM@@QAEXK@Z 00437d60 f stream.obj - 0001:00036e10 ?MarkMem@BSM@@UAEXXZ 00437e10 f stream.obj - 0001:00036e50 ??0BSF@@QAE@XZ 00437e50 f stream.obj - 0001:00036ec0 ??1BSF@@UAE@XZ 00437ec0 f stream.obj - 0001:00036fb0 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00437fb0 f stream.obj - 0001:000370d0 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 004380d0 f stream.obj - 0001:00037340 ?_AttemptMerge@BSF@@IAEXJJ@Z 00438340 f stream.obj - 0001:00037530 ?FReplace@BSF@@QAEHPAXJJJ@Z 00438530 f stream.obj - 0001:00037af0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 00438af0 f stream.obj - 0001:00037e40 ?FetchRgb@BSF@@QAEXJJPAX@Z 00438e40 f stream.obj - 0001:00038040 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 00439040 f stream.obj - 0001:00038560 ?AssertValid@BSF@@QAEXK@Z 00439560 f stream.obj - 0001:000387e0 ?MarkMem@BSF@@UAEXXZ 004397e0 f stream.obj - 0001:00038870 ??_EBSM@@UAEPAXI@Z 00439870 f stream.obj - 0001:00038870 ??_GBSM@@UAEPAXI@Z 00439870 f stream.obj - 0001:000388b0 ??_EBSF@@UAEPAXI@Z 004398b0 f stream.obj - 0001:000388b0 ??_GBSF@@UAEPAXI@Z 004398b0 f stream.obj - 0001:000388f0 ?FWouldBe@SCCG@@SGHJ@Z 004398f0 f scrcomg.obj - 0001:00038930 ?FIs@SCCG@@UAEHJ@Z 00439930 f scrcomg.obj - 0001:00038960 ?Cls@SCCG@@UAEJXZ 00439960 f scrcomg.obj - 0001:00038990 ?_OpFromStn@SCCG@@MAEJPAVSTN@@@Z 00439990 f scrcomg.obj - 0001:00038a70 ?_FGetStnFromOp@SCCG@@MAEHJPAVSTN@@@Z 00439a70 f scrcomg.obj - 0001:00038b50 ?_FGetOpFromName@SCCG@@MAEHPAVSTN@@PAJ111PAH@Z 00439b50 f scrcomg.obj - 0001:00038bd0 ?_SwCur@SCCG@@MAEFXZ 00439bd0 f scrcomg.obj - 0001:00038c00 ?_SwBack@SCCG@@MAEFXZ 00439c00 f scrcomg.obj - 0001:00038c30 ?_SwMin@SCCG@@MAEFXZ 00439c30 f scrcomg.obj - 0001:00038db0 ?FWouldBe@SCCB@@SGHJ@Z 00439db0 f scrcom.obj - 0001:00038df0 ?FIs@SCCB@@UAEHJ@Z 00439df0 f scrcom.obj - 0001:00038e20 ?Cls@SCCB@@UAEJXZ 00439e20 f scrcom.obj - 0001:00038e50 ??0SCCB@@QAE@XZ 00439e50 f scrcom.obj - 0001:00038f30 ??1SCCB@@UAE@XZ 00439f30 f scrcom.obj - 0001:00038f90 ?AssertValid@SCCB@@QAEXK@Z 00439f90 f scrcom.obj - 0001:000391c0 ?MarkMem@SCCB@@UAEXXZ 0043a1c0 f scrcom.obj - 0001:00039380 ?_FInit@SCCB@@IAEHPAVLEXB@@HPAVMSNK@@@Z 0043a380 f scrcom.obj - 0001:000396b0 ?_Free@SCCB@@IAEXXZ 0043a6b0 f scrcom.obj - 0001:000398e0 ?PscptCompileLex@SCCB@@UAEPAVSCPT@@PAVLEXB@@HPAVMSNK@@J@Z 0043a8e0 f scrcom.obj - 0001:00039ca0 ?PscptCompileFil@SCCB@@UAEPAVSCPT@@PAVFIL@@HPAVMSNK@@@Z 0043aca0 f scrcom.obj - 0001:00039e30 ?PscptCompileFni@SCCB@@UAEPAVSCPT@@PAVFNI@@HPAVMSNK@@@Z 0043ae30 f scrcom.obj - 0001:00039f70 ?_FGetTok@SCCB@@MAEHPAUTOK@@@Z 0043af70 f scrcom.obj - 0001:0003a080 ?_SwCur@SCCB@@MAEFXZ 0043b080 f scrcom.obj - 0001:0003a0d0 ?_SwBack@SCCB@@MAEFXZ 0043b0d0 f scrcom.obj - 0001:0003a120 ?_SwMin@SCCB@@MAEFXZ 0043b120 f scrcom.obj - 0001:0003a170 ?_ReportError@SCCB@@MAEXPAD@Z 0043b170 f scrcom.obj - 0001:0003a370 ?_PushLw@SCCB@@IAEXJ@Z 0043b370 f scrcom.obj - 0001:0003a4d0 ?_PushString@SCCB@@IAEXPAVSTN@@@Z 0043b4d0 f scrcom.obj - 0001:0003a680 ?_PushOp@SCCB@@IAEXJ@Z 0043b680 f scrcom.obj - 0001:0003a7e0 ?_EndOp@SCCB@@IAEXXZ 0043b7e0 f scrcom.obj - 0001:0003a950 ?SuHighLow@@YGGEE@Z 0043b950 f scrcom.obj - 0001:0003a980 ?_PushVarOp@SCCB@@IAEXJPAURTVN@@@Z 0043b980 f scrcom.obj - 0001:0003ab30 ?_FFindLabel@SCCB@@IAEHPAVSTN@@PAJ@Z 0043bb30 f scrcom.obj - 0001:0003ac50 ?_AddLabel@SCCB@@IAEXPAVSTN@@@Z 0043bc50 f scrcom.obj - 0001:0003ae80 ?_PushLabelRequest@SCCB@@IAEXPAVSTN@@@Z 0043be80 f scrcom.obj - 0001:0003b060 ?_AddLabelLw@SCCB@@IAEXJ@Z 0043c060 f scrcom.obj - 0001:0003b0f0 ?_PushLabelRequestLw@SCCB@@IAEXJ@Z 0043c0f0 f scrcom.obj - 0001:0003b180 ?_OpFromStn@SCCB@@MAEJPAVSTN@@@Z 0043c180 f scrcom.obj - 0001:0003b240 ?_OpFromStnRgszop@SCCB@@IAEJPAVSTN@@PAUSZOP@@@Z 0043c240 f scrcom.obj - 0001:0003b340 ?_FGetStnFromOp@SCCB@@MAEHJPAVSTN@@@Z 0043c340 f scrcom.obj - 0001:0003b400 ?_FGetStnFromOpRgszop@SCCB@@IAEHJPAVSTN@@PAUSZOP@@@Z 0043c400 f scrcom.obj - 0001:0003b500 ?_CompilePost@SCCB@@MAEXXZ 0043c500 f scrcom.obj - 0001:0003bb40 ?_PtomeFromTt@@YGPAUTOME@@JH@Z 0043cb40 f scrcom.obj - 0001:0003bbb0 ?_FResolveToOpl@SCCB@@IAEHJJPAJ@Z 0043cbb0 f scrcom.obj - 0001:0003bfa0 ?_FAddToTree@SCCB@@IAEHPAUETN@@PAJ@Z 0043cfa0 f scrcom.obj - 0001:0003cbe0 ?IstnMac@GSTB@@QAEJXZ 0043dbe0 f scrcom.obj - 0001:0003cc10 ??0SCPT@@IAE@XZ 0043dc10 f scrcom.obj - 0001:0003cc50 ?_SetDepth@SCCB@@IAEXPAUETN@@H@Z 0043dc50 f scrcom.obj - 0001:0003cf60 ?_FConstEtn@SCCB@@IAEHJPAJ@Z 0043df60 f scrcom.obj - 0001:0003d0a0 ?_FCombineConstValues@SCCB@@IAEHJJJPAJ@Z 0043e0a0 f scrcom.obj - 0001:0003d380 ?_EmitCode@SCCB@@IAEXJKPAJ@Z 0043e380 f scrcom.obj - 0001:0003de90 ?_CstFromName@SCCB@@IAEJJ@Z 0043ee90 f scrcom.obj - 0001:0003df90 ?_BeginCst@SCCB@@IAEXJJ@Z 0043ef90 f scrcom.obj - 0001:0003e300 ?_FHandleCst@SCCB@@IAEHJ@Z 0043f300 f scrcom.obj - 0001:0003e9b0 ?_EmitVarAccess@SCCB@@IAEXJPAURTVN@@PAJ11@Z 0043f9b0 f scrcom.obj - 0001:0003ede0 ?_PushOpFromName@SCCB@@IAEXJKJ@Z 0043fde0 f scrcom.obj - 0001:0003efc0 ?_FGetArop@SCCB@@IAEHPAVSTN@@PAUAROP@@PAJ222PAH@Z 0043ffc0 f scrcom.obj - 0001:0003f120 ?_FGetOpFromName@SCCB@@MAEHPAVSTN@@PAJ111PAH@Z 00440120 f scrcom.obj - 0001:0003f190 ?_AddNameRef@SCCB@@IAEXPAVSTN@@PAJ@Z 00440190 f scrcom.obj - 0001:0003f2e0 ?_GetIstnNameFromIetn@SCCB@@IAEXJPAJ@Z 004402e0 f scrcom.obj - 0001:0003f440 ?_GetStnFromIstn@SCCB@@IAEXJPAVSTN@@@Z 00440440 f scrcom.obj - 0001:0003f580 ?_GetRtvnFromName@SCCB@@IAEXJPAURTVN@@@Z 00440580 f scrcom.obj - 0001:0003f640 ?_FKeyWord@SCCB@@IAEHPAVSTN@@@Z 00440640 f scrcom.obj - 0001:0003f760 ?_PushLabelRequestIetn@SCCB@@IAEXJ@Z 00440760 f scrcom.obj - 0001:0003f800 ?_AddLabelIetn@SCCB@@IAEXJ@Z 00440800 f scrcom.obj - 0001:0003f8a0 ?_PushStringIstn@SCCB@@IAEXJ@Z 004408a0 f scrcom.obj - 0001:0003f920 ?_CompileIn@SCCB@@MAEXXZ 00440920 f scrcom.obj - 0001:00040070 ?FDisassemble@SCCB@@UAEHPAVSCPT@@PAVMSNK@@1@Z 00441070 f scrcom.obj - 0001:00040910 ?SwHigh@@YGFJ@Z 00441910 f scrcom.obj - 0001:00040930 ?SetFromStn@RTVN@@QAEXPAVSTN@@@Z 00441930 f scrcom.obj - 0001:00040b80 ?GetStn@RTVN@@QAEXPAVSTN@@@Z 00441b80 f scrcom.obj - 0001:00040e20 ??_ESCPT@@UAEPAXI@Z 00441e20 f scrcom.obj - 0001:00040e20 ??_GSCPT@@UAEPAXI@Z 00441e20 f scrcom.obj - 0001:00040e60 ??_GSCCB@@UAEPAXI@Z 00441e60 f scrcom.obj - 0001:00040e60 ??_ESCCB@@UAEPAXI@Z 00441e60 f scrcom.obj - 0001:00040ea0 ?FWouldBe@SCPT@@SGHJ@Z 00441ea0 f screxe.obj - 0001:00040ee0 ?FIs@SCPT@@UAEHJ@Z 00441ee0 f screxe.obj - 0001:00040f10 ?Cls@SCPT@@UAEJXZ 00441f10 f screxe.obj - 0001:00040f80 ?PscptRead@SCPT@@SGPAV1@PAVCFL@@KK@Z 00441f80 f screxe.obj - 0001:000411c0 ??1SCPT@@UAE@XZ 004421c0 f screxe.obj - 0001:00041270 ?FSaveToChunk@SCPT@@QAEHPAVCFL@@KKH@Z 00442270 f screxe.obj - 0001:00041580 ?AssertValid@SCPT@@QAEXK@Z 00442580 f screxe.obj - 0001:00041650 ?MarkMem@SCPT@@UAEXXZ 00442650 f screxe.obj - 0001:000416e0 ?FWouldBe@MBMP@@SGHJ@Z 004426e0 f mbmp.obj - 0001:00041720 ?FIs@MBMP@@UAEHJ@Z 00442720 f mbmp.obj - 0001:00041750 ?Cls@MBMP@@UAEJXZ 00442750 f mbmp.obj - 0001:00041780 ??1MBMP@@UAE@XZ 00442780 f mbmp.obj - 0001:000417f0 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 004427f0 f mbmp.obj - 0001:000418f0 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 004428f0 f mbmp.obj - 0001:00042010 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 00443010 f mbmp.obj - 0001:00042150 ??0RC@@QAE@XZ 00443150 f mbmp.obj - 0001:00042170 ?Set@RC@@QAEXJJJJ@Z 00443170 f mbmp.obj - 0001:000421c0 ?CbOnFile@MBMP@@UAEJXZ 004431c0 f mbmp.obj - 0001:00042220 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 00443220 f mbmp.obj - 0001:00042370 ?AssertValid@MBMP@@QAEXK@Z 00443370 f mbmp.obj - 0001:000424c0 ?MarkMem@MBMP@@UAEXXZ 004434c0 f mbmp.obj - 0001:00042500 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 00443500 f mbmp.obj - 0001:00042f00 ?BvSubPvs@@YGJPAX0@Z 00443f00 f mbmp.obj - 0001:00042f20 ??_GMBMP@@UAEPAXI@Z 00443f20 f mbmp.obj - 0001:00042f20 ??_EMBMP@@UAEPAXI@Z 00443f20 f mbmp.obj - 0001:00042f60 ??0MBMP@@IAE@XZ 00443f60 f mbmp.obj - 0001:00042fa0 ?_Qrgcb@MBMP@@IAEPAFXZ 00443fa0 f mbmp.obj - 0001:00042fe0 ?_Qmbmph@MBMP@@IAEPAUMBMPH@1@XZ 00443fe0 f mbmp.obj - 0001:00043120 ?FWouldBe@MSTP@@SGHJ@Z 00444120 f midi.obj - 0001:00043160 ?FIs@MSTP@@UAEHJ@Z 00444160 f midi.obj - 0001:00043190 ?Cls@MSTP@@UAEJXZ 00444190 f midi.obj - 0001:000431c0 ?FWouldBe@MIDS@@SGHJ@Z 004441c0 f midi.obj - 0001:00043200 ?FIs@MIDS@@UAEHJ@Z 00444200 f midi.obj - 0001:00043230 ?Cls@MIDS@@UAEJXZ 00444230 f midi.obj - 0001:00043260 ??0MSTP@@QAE@XZ 00444260 f midi.obj - 0001:000432d0 ??1MSTP@@UAE@XZ 004442d0 f midi.obj - 0001:00043370 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 00444370 f midi.obj - 0001:00043510 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 00444510 f midi.obj - 0001:00043a50 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 00444a50 f midi.obj - 0001:00043b00 ?AssertValid@MSTP@@QAEXK@Z 00444b00 f midi.obj - 0001:00043c50 ?MarkMem@MSTP@@UAEXXZ 00444c50 f midi.obj - 0001:00043ca0 ??0MIDS@@IAE@XZ 00444ca0 f midi.obj - 0001:00043ce0 ??1MIDS@@UAE@XZ 00444ce0 f midi.obj - 0001:00043d20 ?AssertValid@MIDS@@QAEXK@Z 00444d20 f midi.obj - 0001:00043d60 ?MarkMem@MIDS@@UAEXXZ 00444d60 f midi.obj - 0001:00043da0 ?PmidsReadNative@MIDS@@SGPAV1@PAVFNI@@@Z 00444da0 f midi.obj - 0001:000447a0 ?BHigh@@YGEF@Z 004457a0 f midi.obj - 0001:000447c0 ?BLow@@YGEF@Z 004457c0 f midi.obj - 0001:000447e0 ??0RAT@@QAE@XZ 004457e0 f midi.obj - 0001:00044810 ??0RAT@@QAE@JJ@Z 00445810 f midi.obj - 0001:00044850 ?Set@RAT@@QAEXJJ@Z 00445850 f midi.obj - 0001:000448e0 ?LwScale@RAT@@QAEJJ@Z 004458e0 f midi.obj - 0001:00044930 ??9@YGHABVRAT@@0@Z 00445930 f midi.obj - 0001:00044970 ?_CbEncodeLu@MIDS@@KGJKPAE@Z 00445970 f midi.obj - 0001:00044a10 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 00445a10 f midi.obj - 0001:00044ad0 ?CbOnFile@MIDS@@UAEJXZ 00445ad0 f midi.obj - 0001:00044b50 ??_EMSTP@@UAEPAXI@Z 00445b50 f midi.obj - 0001:00044b50 ??_GMSTP@@UAEPAXI@Z 00445b50 f midi.obj - 0001:00044b90 ??_EMIDS@@UAEPAXI@Z 00445b90 f midi.obj - 0001:00044b90 ??_GMIDS@@UAEPAXI@Z 00445b90 f midi.obj - 0001:00044bd0 ?IbMac@BSM@@QAEJXZ 00445bd0 f midi.obj - 0001:00044d10 ??0PIC@@IAE@XZ 00445d10 f picwin.obj - 0001:00044d70 ??1PIC@@UAE@XZ 00445d70 f picwin.obj - 0001:00044de0 ?CbOnFile@PIC@@UAEJXZ 00445de0 f picwin.obj - 0001:00044e60 ?FWrite@PIC@@UAEHPAVBLCK@@@Z 00445e60 f picwin.obj - 0001:00045000 ?PpicReadNative@PIC@@SGPAV1@PAVFNI@@@Z 00446000 f picwin.obj - 0001:00045290 ?_HpicReadWmf@PIC@@KGPAUHENHMETAFILE__@@PAVFNI@@@Z 00446290 f picwin.obj - 0001:000454e0 ??_EPIC@@UAEPAXI@Z 004464e0 f picwin.obj - 0001:000454e0 ??_GPIC@@UAEPAXI@Z 004464e0 f picwin.obj - 0001:00045630 ?FWouldBe@PIC@@SGHJ@Z 00446630 f pic.obj - 0001:00045670 ?FIs@PIC@@UAEHJ@Z 00446670 f pic.obj - 0001:000456a0 ?Cls@PIC@@UAEJXZ 004466a0 f pic.obj - 0001:000456f0 ?AssertValid@PIC@@QAEXK@Z 004466f0 f pic.obj - 0001:00045880 _main 00446880 f chomp.obj - 0001:00045eb0 ?WarnProc@@YGXPADJ0@Z 00446eb0 f chomp.obj - 0001:00045f30 ?FAssertProc@@YGHPADJ0PAXJ@Z 00446f30 f chomp.obj - 0001:00046110 ??1MSSIO@@UAE@XZ 00447110 f chomp.obj - 0001:00046250 ??0MSSIO@@QAE@PAU_iobuf@@@Z 00447250 f mssio.obj - 0001:000462a0 ?ReportLine@MSSIO@@UAEXPAD@Z 004472a0 f mssio.obj - 0001:00046320 ?Report@MSSIO@@UAEXPAD@Z 00447320 f mssio.obj - 0001:000463a0 ?FError@MSSIO@@UAEHXZ 004473a0 f mssio.obj - 0001:00046410 ??_EMSSIO@@UAEPAXI@Z 00447410 f mssio.obj - 0001:00046410 ??_GMSSIO@@UAEPAXI@Z 00447410 f mssio.obj - 0001:0004646a _timeGetTime@0 0044746a winmm:WINMM.dll - 0001:00046470 __alloca_probe 00447470 LIBC:chkstk.obj - 0001:00046470 __chkstk 00447470 LIBC:chkstk.obj - 0001:0004649d __onexit 0044749d f LIBC:onexit.obj - 0001:00046513 _atexit 00447513 f LIBC:onexit.obj - 0001:00046525 ___onexitinit 00447525 f LIBC:onexit.obj - 0001:0004655b __purecall 0044755b f LIBC:purevirt.obj - 0001:00046568 __ftol 00447568 f LIBC:ftol.obj - 0001:00046590 _fdiv_main_routine 00447590 f LIBC:adj_fdiv.obj - 0001:000466a7 __adj_fdiv_r 004476a7 f LIBC:adj_fdiv.obj - 0001:00046b46 _fdivp_sti_st 00447b46 f LIBC:adj_fdiv.obj - 0001:00046b59 _fdivrp_sti_st 00447b59 f LIBC:adj_fdiv.obj - 0001:00046b6c __adj_fdiv_m32 00447b6c f LIBC:adj_fdiv.obj - 0001:00046bb8 __adj_fdiv_m64 00447bb8 f LIBC:adj_fdiv.obj - 0001:00046c04 __adj_fdiv_m16i 00447c04 f LIBC:adj_fdiv.obj - 0001:00046c38 __adj_fdiv_m32i 00447c38 f LIBC:adj_fdiv.obj - 0001:00046c6c __adj_fdivr_m32 00447c6c f LIBC:adj_fdiv.obj - 0001:00046cb8 __adj_fdivr_m64 00447cb8 f LIBC:adj_fdiv.obj - 0001:00046d04 __adj_fdivr_m16i 00447d04 f LIBC:adj_fdiv.obj - 0001:00046d38 __adj_fdivr_m32i 00447d38 f LIBC:adj_fdiv.obj - 0001:00046d6c __safe_fdiv 00447d6c f LIBC:adj_fdiv.obj - 0001:00046d81 __safe_fdivr 00447d81 f LIBC:adj_fdiv.obj - 0001:00046d96 __fprem_common 00447d96 f LIBC:adj_fdiv.obj - 0001:00046f9c __adj_fprem 00447f9c f LIBC:adj_fdiv.obj - 0001:0004704e __fprem1_common 0044804e f LIBC:adj_fdiv.obj - 0001:00047254 __adj_fprem1 00448254 f LIBC:adj_fdiv.obj - 0001:00047309 __safe_fprem 00448309 f LIBC:adj_fdiv.obj - 0001:0004730f __safe_fprem1 0044830f f LIBC:adj_fdiv.obj - 0001:00047315 __adj_fpatan 00448315 f LIBC:adj_fdiv.obj - 0001:00047318 __adj_fptan 00448318 f LIBC:adj_fdiv.obj - 0001:0004731b __fpmath 0044831b f LIBC:fpinit.obj - 0001:0004732f __fpclear 0044832f f LIBC:fpinit.obj - 0001:00047330 __cfltcvt_init 00448330 f LIBC:fpinit.obj - 0001:00047368 _fprintf 00448368 f LIBC:fprintf.obj - 0001:0004739e _printf 0044839e f LIBC:printf.obj - 0001:000473da _mainCRTStartup 004483da f LIBC:crt0.obj - 0001:000474d3 __amsg_exit 004484d3 f LIBC:crt0.obj - 0001:000474f3 __cinit 004484f3 f LIBC:crt0dat.obj - 0001:00047523 _exit 00448523 f LIBC:crt0dat.obj - 0001:00047534 __exit 00448534 f LIBC:crt0dat.obj - 0001:000475e4 _realloc 004485e4 f LIBC:realloc.obj - 0001:00047736 __msize 00448736 f LIBC:msize.obj - 0001:00047747 _malloc 00448747 f LIBC:malloc.obj - 0001:0004775a __nh_malloc 0044875a f LIBC:malloc.obj - 0001:00047819 __heap_split_block 00448819 f LIBC:malloc.obj - 0001:0004785e __setdefaultprecision 0044885e f LIBC:fp8.obj - 0001:00047871 _ms_p5_test_fdiv 00448871 f LIBC:testfdiv.obj - 0001:000478b7 _ms_p5_mp_test_fdiv 004488b7 f LIBC:testfdiv.obj - 0001:0004798a __forcdecpt 0044898a f LIBC:cvt.obj - 0001:000479ef __cropzeros 004489ef f LIBC:cvt.obj - 0001:00047a4e __positive 00448a4e f LIBC:cvt.obj - 0001:00047a63 __fassign 00448a63 f LIBC:cvt.obj - 0001:00047aa6 __cftoe 00448aa6 f LIBC:cvt.obj - 0001:00047bf9 __cftof 00448bf9 f LIBC:cvt.obj - 0001:00047d15 __cftog 00448d15 f LIBC:cvt.obj - 0001:00047dbd __cfltcvt 00448dbd f LIBC:cvt.obj - 0001:00047e39 __stbuf 00448e39 f LIBC:_sftbuf.obj - 0001:00047eba __ftbuf 00448eba f LIBC:_sftbuf.obj - 0001:00047f00 __output 00448f00 f LIBC:output.obj - 0001:00048828 __global_unwind2 00449828 f LIBC:exsup.obj - 0001:0004886a __local_unwind2 0044986a f LIBC:exsup.obj - 0001:000488c4 __abnormal_termination 004498c4 f LIBC:exsup.obj - 0001:000488e7 __XcptFilter 004498e7 f LIBC:winxfltr.obj - 0001:00048a72 __setenvp 00449a72 f LIBC:stdenvp.obj - 0001:00048b3d __setargv 00449b3d f LIBC:stdargv.obj - 0001:00048e3b __setmbcp 00449e3b f LIBC:mbctype.obj - 0001:00048fc9 ___initmbctable 00449fc9 f LIBC:mbctype.obj - 0001:00048fd4 __ioinit 00449fd4 f LIBC:ioinit.obj - 0001:000490c2 __heap_init 0044a0c2 f LIBC:heapinit.obj - 0001:0004913f ___getempty 0044a13f f LIBC:heapinit.obj - 0001:0004916c __except_handler3 0044a16c f LIBC:exsup3.obj - 0001:0004921a __seh_longjmp_unwind@4 0044a21a f LIBC:exsup3.obj - 0001:00049235 __FF_MSGBANNER 0044a235 f LIBC:crt0msg.obj - 0001:0004925b __NMSG_WRITE 0044a25b f LIBC:crt0msg.obj - 0001:000492b3 _free 0044a2b3 f LIBC:free.obj - 0001:0004931b __heap_abort 0044a31b f LIBC:hpabort.obj - 0001:00049326 __heap_grow 0044a326 f LIBC:heapgrow.obj - 0001:0004940f __heap_grow_region 0044a40f f LIBC:heapgrow.obj - 0001:000494bc __heap_free_region 0044a4bc f LIBC:heapgrow.obj - 0001:000494f6 __heap_search 0044a4f6 f LIBC:heapsrch.obj - 0001:000495e6 __control87 0044a5e6 f LIBC:ieee87.obj - 0001:00049621 __controlfp 0044a621 f LIBC:ieee87.obj - 0001:00049758 __fptrap 0044a758 f LIBC:crt0fp.obj - 0001:00049763 __isctype 0044a763 f LIBC:isctype.obj - 0001:000497de _tolower 0044a7de f LIBC:tolower.obj - 0001:000498aa __ZeroTail 0044a8aa f LIBC:intrncvt.obj - 0001:0004990a __IncMan 0044a90a f LIBC:intrncvt.obj - 0001:0004996b __RoundMan 0044a96b f LIBC:intrncvt.obj - 0001:00049a08 __CopyMan 0044aa08 f LIBC:intrncvt.obj - 0001:00049a25 __FillZeroMan 0044aa25 f LIBC:intrncvt.obj - 0001:00049a31 __IsZeroMan 0044aa31 f LIBC:intrncvt.obj - 0001:00049a4f __ShrMan 0044aa4f f LIBC:intrncvt.obj - 0001:00049afa __ld12cvt 0044aafa f LIBC:intrncvt.obj - 0001:00049c96 __ld12tod 0044ac96 f LIBC:intrncvt.obj - 0001:00049cac __ld12tof 0044acac f LIBC:intrncvt.obj - 0001:00049cc2 __atodbl 0044acc2 f LIBC:intrncvt.obj - 0001:00049cf3 __atoflt 0044acf3 f LIBC:intrncvt.obj - 0001:00049d24 __fptostr 0044ad24 f LIBC:_fptostr.obj - 0001:00049da2 __fltout 0044ada2 f LIBC:cfout.obj - 0001:00049e05 ___dtold 0044ae05 f LIBC:cfout.obj - 0001:00049ec0 _memmove 0044aec0 f LIBC:memmove.obj - 0001:0004a00e _fflush 0044b00e f LIBC:fflush.obj - 0001:0004a05a __flush 0044b05a f LIBC:fflush.obj - 0001:0004a0bc __flushall 0044b0bc f LIBC:fflush.obj - 0001:0004a131 ___endstdio 0044b131 f LIBC:fflush.obj - 0001:0004a145 __isatty 0044b145 f LIBC:isatty.obj - 0001:0004a15f _wctomb 0044b15f f LIBC:wctomb.obj - 0001:0004a1d8 __aulldiv 0044b1d8 f LIBC:ulldiv.obj - 0001:0004a238 __aullrem 0044b238 f LIBC:ullrem.obj - 0001:0004a2a2 __flsbuf 0044b2a2 f LIBC:_flsbuf.obj - 0001:0004a3ae __heap_addblock 0044b3ae f LIBC:heapadd.obj - 0001:0004a665 ___crtGetStringTypeA 0044b665 f LIBC:aw_str.obj - 0001:0004a7dc ___crtLCMapStringA 0044b7dc f LIBC:aw_map.obj - 0001:0004aa3b ___addl 0044ba3b f LIBC:mantold.obj - 0001:0004aa5e ___add_12 0044ba5e f LIBC:mantold.obj - 0001:0004aabc ___shl_12 0044babc f LIBC:mantold.obj - 0001:0004aafa ___shr_12 0044bafa f LIBC:mantold.obj - 0001:0004ab2d ___mtold12 0044bb2d f LIBC:mantold.obj - 0001:0004ac11 ___strgtold12 0044bc11 f LIBC:strgtold.obj - 0001:0004b250 _$I10_OUTPUT 0044c250 f LIBC:x10fout.obj - 0001:0004b586 __commit 0044c586 f LIBC:commit.obj - 0001:0004b5d3 __write 0044c5d3 f LIBC:write.obj - 0001:0004b76c __fcloseall 0044c76c f LIBC:closeall.obj - 0001:0004b79d __lseek 0044c79d f LIBC:lseek.obj - 0001:0004b812 __getbuf 0044c812 f LIBC:_getbuf.obj - 0001:0004b85d __heap_findaddr 0044c85d f LIBC:findaddr.obj - 0001:0004b8c7 _calloc 0044c8c7 f LIBC:calloc.obj - 0001:0004b901 ___set_invalid_mb_chars 0044c901 f LIBC:setmbval.obj - 0001:0004b930 _strncpy 0044c930 f LIBC:strncpy.obj - 0001:0004b954 ___ld12mul 0044c954 f LIBC:tenpow.obj - 0001:0004bb94 ___multtenpow12 0044cb94 f LIBC:tenpow.obj - 0001:0004bc09 __free_osfhnd 0044cc09 f LIBC:osfinfo.obj - 0001:0004bc76 __get_osfhandle 0044cc76 f LIBC:osfinfo.obj - 0001:0004bcae __dosmaperr 0044ccae f LIBC:dosmap.obj - 0001:0004bd17 _fclose 0044cd17 f LIBC:fclose.obj - 0001:0004bd73 __close 0044cd73 f LIBC:close.obj - 0001:0004be09 __freebuf 0044ce09 f LIBC:_freebuf.obj - 0001:0004be42 _RtlUnwind@16 0044ce42 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 0044d000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 0044d018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 0044d030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 0044d040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 0044d058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 0044d070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 0044d0c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 0044d0e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 0044d108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 0044d10c base.obj - 0002:00000120 ?_ers@@3VERS@@A 0044d120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 0044d248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 0044d260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 0044d368 utilstr.obj - 0002:00000478 ?_pcflFirst@CFL@@0PAV1@A 0044d478 chunk.obj - 0002:000004a0 ?_pfilFirst@FIL@@1PAV1@A 0044d4a0 file.obj - 0002:000004a8 ?_mutxList@FIL@@1VMUTX@@A 0044d4a8 file.obj - 0002:000004d0 ?_fniTemp@@3VFNI@@A 0044d4d0 fniwin.obj - 0002:00000e18 __heap_descpages 0044de18 - 0002:00000e20 __heap_regions 0044de20 - 0002:00001120 ___onexitend 0044e120 - 0002:00001124 ___onexitbegin 0044e124 - 0002:00001128 __acmdln 0044e128 - 0002:00001130 __bufin 0044e130 - 0003:00000058 ??_7KCDC@@6B@ 00450058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00450078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 00450090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004500b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004500c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 00450100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 00450118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 00450138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 00450158 utilstr.obj - 0003:00000170 ??_7CFL@@6B@ 00450170 chunk.obj - 0003:00000188 ??_7CGE@@6B@ 00450188 chunk.obj - 0003:000001a0 ??_7CODM@@6B@ 004501a0 codec.obj - 0003:000001d0 ??_7BACO@@6B@ 004501d0 crf.obj - 0003:00000200 ??_7FIL@@6B@ 00450200 file.obj - 0003:00000218 ??_7BLCK@@6B@ 00450218 file.obj - 0003:00000230 ??_7MSFIL@@6B@ 00450230 file.obj - 0003:00000258 ??_7MSNK@@6B@ 00450258 file.obj - 0003:00000280 ??_7FNI@@6B@ 00450280 fniwin.obj - 0003:00000298 ??_7CHCM@@6B@ 00450298 chcm.obj - 0003:000002b0 ??_7CHLX@@6B@ 004502b0 chcm.obj - 0003:000002e8 ??_7CHDC@@6B@ 004502e8 chcm.obj - 0003:00000300 ??_7SCCG@@6B@ 00450300 chcm.obj - 0003:00000350 ??_7CHSE@@6B@ 00450350 chse.obj - 0003:00000368 ??_7GRPB@@6B@ 00450368 groups.obj - 0003:00000398 ??_7GLB@@6B@ 00450398 groups.obj - 0003:000003c8 ??_7GL@@6B@ 004503c8 groups.obj - 0003:000003f8 ??_7AL@@6B@ 004503f8 groups.obj - 0003:00000428 ??_7GGB@@6B@ 00450428 groups.obj - 0003:00000458 ??_7GG@@6B@ 00450458 groups.obj - 0003:00000488 ??_7AG@@6B@ 00450488 groups.obj - 0003:000004b8 ??_7GSTB@@6B@ 004504b8 groups2.obj - 0003:000004f0 ??_7GST@@6B@ 004504f0 groups2.obj - 0003:00000528 ??_7AST@@6B@ 00450528 groups2.obj - 0003:00000560 ??_7LEXB@@6B@ 00450560 lex.obj - 0003:00000590 ??_7BSM@@6B@ 00450590 stream.obj - 0003:000005a8 ??_7BSF@@6B@ 004505a8 stream.obj - 0003:000005c0 ??_7SCCB@@6B@ 004505c0 scrcom.obj - 0003:00000610 ??_7SCPT@@6B@ 00450610 scrcom.obj - 0003:00000650 ??_7MBMP@@6B@ 00450650 mbmp.obj - 0003:00000680 ??_7MSTP@@6B@ 00450680 midi.obj - 0003:00000698 ??_7MIDS@@6B@ 00450698 midi.obj - 0003:000006c8 ??_7PIC@@6B@ 004506c8 picwin.obj - 0003:000006f8 ??_7MSSIO@@6B@ 004506f8 mssio.obj - 0003:00000750 ___lookuptable 00450750 LIBC:output.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 00451020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 00451024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 00451064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 00451068 base.obj - 0004:0000006c ?vcactAV@@3JA 0045106c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 00451070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 00451088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004510a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004510b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004510c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004510e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004510f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0045110c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 00451120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0045113c base.obj - 0004:0000015c ??_C@_03GOHA@nil?$AA@ 0045115c base.obj - 0004:00000160 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 00451160 base.obj - 0004:00000170 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00451170 base.obj - 0004:00000180 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00451180 base.obj - 0004:000001b0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004511b0 utilcopy.obj - 0004:000001e0 ?vpers@@3PAVERS@@A 004511e0 utilerro.obj - 0004:000001e4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004511e4 utilerro.obj - 0004:0000020c ??_C@_08GEE@Error?5?$CFd?$AA@ 0045120c utilerro.obj - 0004:00000238 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 00451238 utilint.obj - 0004:00000248 ??_C@_084overflow?$AA@ 00451248 utilint.obj - 0004:00000254 ??_C@_0N@INPL@long?5too?5big?$AA@ 00451254 utilint.obj - 0004:00000264 ??_C@_0P@DFPA@long?5too?5small?$AA@ 00451264 utilint.obj - 0004:00000274 ??_C@_09MGFD@wrong?5bom?$AA@ 00451274 utilint.obj - 0004:00000280 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 00451280 utilint.obj - 0004:000002a4 ??_C@_0BN@KEGA@fraction?5not?5in?5lowest?5terms?$AA@ 004512a4 utilint.obj - 0004:000002e8 ?vpfnlib@@3P6GJJJ@ZA 004512e8 utilmem.obj - 0004:000002ec ?_fInLiberator@@3HA 004512ec utilmem.obj - 0004:000002f0 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 004512f0 utilmem.obj - 0004:00000314 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 00451314 utilmem.obj - 0004:0000032c ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 0045132c utilmem.obj - 0004:00000354 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 00451354 utilmem.obj - 0004:00000378 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 00451378 utilmem.obj - 0004:00000398 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00451398 utilmem.obj - 0004:000003ac ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 004513ac utilmem.obj - 0004:000003c0 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 004513c0 utilmem.obj - 0004:000003d4 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 004513d4 utilmem.obj - 0004:000003e8 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 004513e8 utilmem.obj - 0004:00000400 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 00451400 utilmem.obj - 0004:00000414 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 00451414 utilmem.obj - 0004:00000424 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 00451424 utilmem.obj - 0004:00000438 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 00451438 utilmem.obj - 0004:00000454 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 00451454 utilmem.obj - 0004:00000468 ??_C@_08ECDH@wrong?5cb?$AA@ 00451468 utilmem.obj - 0004:00000474 ??_C@_06BHIL@nil?5pv?$AA@ 00451474 utilmem.obj - 0004:000004a0 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 004514a0 utilrnd.obj - 0004:000004bc ??_C@_0L@LEMP@_clw?5wrong?$AA@ 004514bc utilrnd.obj - 0004:000004c8 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 004514c8 utilrnd.obj - 0004:000004d8 ??_C@_0L@DINP@wrong?5_clw?$AA@ 004514d8 utilrnd.obj - 0004:00000608 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 00451608 utilstr.obj - 0004:00000630 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 00451630 utilstr.obj - 0004:00000640 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 00451640 utilstr.obj - 0004:00000668 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 00451668 utilstr.obj - 0004:00000678 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 00451678 utilstr.obj - 0004:0000068c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 0045168c utilstr.obj - 0004:000006a8 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 004516a8 utilstr.obj - 0004:000006c4 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 004516c4 utilstr.obj - 0004:000006d0 ??_C@_0BM@CLPI@why?5did?5CompareString?5fail?$DP?$AA@ 004516d0 utilstr.obj - 0004:000006ec ??_C@_0CE@IKBC@TranslateRgch?5can?8t?5handle?5this?5@ 004516ec utilstr.obj - 0004:00000710 ??_C@_07NPFI@bad?5osk?$AA@ 00451710 utilstr.obj - 0004:00000718 ??_C@_06KJGB@bad?5st?$AA@ 00451718 utilstr.obj - 0004:00000720 ??_C@_07EEGP@bad?5stz?$AA@ 00451720 utilstr.obj - 0004:00000748 ?vcactSuspendCheckPointers@@3JA 00451748 memwin.obj - 0004:0000074c ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 0045174c memwin.obj - 0004:00000760 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 00451760 memwin.obj - 0004:00000774 ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 00451774 memwin.obj - 0004:0000078c ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 0045178c memwin.obj - 0004:0000079c ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 0045179c memwin.obj - 0004:000007c0 ??_C@_09BABB@hq?5is?5nil?$AA@ 004517c0 memwin.obj - 0004:000007cc ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004517cc memwin.obj - 0004:00000808 ?_rtiLast@CFL@@0JA 00451808 chunk.obj - 0004:0000080c ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 0045180c chunk.obj - 0004:00000828 ??_C@_0BC@PEHH@sizes?5don?8t?5match?$AA@ 00451828 chunk.obj - 0004:0000083c ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 0045183c chunk.obj - 0004:0000085c ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 0045185c chunk.obj - 0004:00000874 ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 00451874 chunk.obj - 0004:00000884 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 00451884 chunk.obj - 0004:000008a8 ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 004518a8 chunk.obj - 0004:000008bc ??_C@_08EHFM@Bad?5RTIE?$AA@ 004518bc chunk.obj - 0004:000008c8 ??_C@_09HBDJ@bad?5index?$AA@ 004518c8 chunk.obj - 0004:000008d4 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 004518d4 chunk.obj - 0004:000008f4 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 004518f4 chunk.obj - 0004:00000908 ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 00451908 chunk.obj - 0004:00000918 ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 00451918 chunk.obj - 0004:00000928 ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 00451928 chunk.obj - 0004:00000944 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 00451944 chunk.obj - 0004:00000960 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 00451960 chunk.obj - 0004:00000978 ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 00451978 chunk.obj - 0004:0000099c ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 0045199c chunk.obj - 0004:000009b8 ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 004519b8 chunk.obj - 0004:000009cc ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 004519cc chunk.obj - 0004:000009e0 ??_C@_06CFJE@bad?5fp?$AA@ 004519e0 chunk.obj - 0004:000009e8 ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 004519e8 chunk.obj - 0004:000009fc ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 004519fc chunk.obj - 0004:00000a0c ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 00451a0c chunk.obj - 0004:00000a18 ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 00451a18 chunk.obj - 0004:00000a3c ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 00451a3c chunk.obj - 0004:00000a54 ??_C@_0M@INOI@corrupt?5crp?$AA@ 00451a54 chunk.obj - 0004:00000a60 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 00451a60 chunk.obj - 0004:00000a80 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 00451a80 chunk.obj - 0004:00000a98 ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 00451a98 chunk.obj - 0004:00000ab0 ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 00451ab0 chunk.obj - 0004:00000ad0 ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 00451ad0 chunk.obj - 0004:00000ae0 ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 00451ae0 chunk.obj - 0004:00000b04 ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 00451b04 chunk.obj - 0004:00000b30 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 00451b30 chunk.obj - 0004:00000b48 ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 00451b48 chunk.obj - 0004:00000b60 ??_C@_0BG@PFBG@can?8t?5find?5the?5chunks?$AA@ 00451b60 chunk.obj - 0004:00000b78 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 00451b78 chunk.obj - 0004:00000b88 ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 00451b88 chunk.obj - 0004:00000bc0 ??_C@_03JFP@MIA?$AA@ 00451bc0 chunk.obj - 0004:00000bc4 ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 00451bc4 chunk.obj - 0004:00000be8 ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 00451be8 chunk.obj - 0004:00000bf8 ??_C@_07NFMH@overlap?$AA@ 00451bf8 chunk.obj - 0004:00000c00 ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 00451c00 chunk.obj - 0004:00000c0c ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 00451c0c chunk.obj - 0004:00000c34 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 00451c34 chunk.obj - 0004:00000c40 ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 00451c40 chunk.obj - 0004:00000c4c ??_C@_06JFMK@bad?5cb?$AA@ 00451c4c chunk.obj - 0004:00000c54 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 00451c54 chunk.obj - 0004:00000c68 ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 00451c68 chunk.obj - 0004:00000c94 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 00451c94 chunk.obj - 0004:00000ca4 ??_C@_07BDGM@bad?5crp?$AA@ 00451ca4 chunk.obj - 0004:00000cac ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 00451cac chunk.obj - 0004:00000ce0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 00451ce0 codec.obj - 0004:00000d00 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 00451d00 codec.obj - 0004:00000d18 ??_C@_0CF@HCBN@can?8t?5set?5default?5compression?5to@ 00451d18 codec.obj - 0004:00000d40 ??_C@_08DJLA@nil?5cfmt?$AA@ 00451d40 codec.obj - 0004:00000d4c ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 00451d4c codec.obj - 0004:00000d6c ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 00451d6c codec.obj - 0004:00000da8 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00451da8 codkauai.obj - 0004:00000dcc ??_C@_07DEPO@bad?5len?$AA@ 00451dcc codkauai.obj - 0004:00000dd4 ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 00451dd4 codkauai.obj - 0004:00000de4 ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 00451de4 codkauai.obj - 0004:00000e08 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 00451e08 codkauai.obj - 0004:00000e1c ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 00451e1c codkauai.obj - 0004:00000e30 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 00451e30 codkauai.obj - 0004:00000e4c ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 00451e4c codkauai.obj - 0004:00000e7c ??_C@_0P@KAFA@still?5attached?$AA@ 00451e7c crf.obj - 0004:00000e8c ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 00451e8c crf.obj - 0004:00000ea0 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 00451ea0 crf.obj - 0004:00000ebc ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 00451ebc crf.obj - 0004:00000edc ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 00451edc crf.obj - 0004:00000ef8 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 00451ef8 crf.obj - 0004:00000f14 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 00451f14 crf.obj - 0004:00000f4c ?vftgCreator@FIL@@2JA 00451f4c file.obj - 0004:00000f50 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00451f50 file.obj - 0004:00000f64 ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 00451f64 file.obj - 0004:00000f78 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 00451f78 file.obj - 0004:00000f8c ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 00451f8c file.obj - 0004:00000fa4 ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 00451fa4 file.obj - 0004:00000fbc ??_C@_0BG@MHHD@writing?5outside?5flo?52?$AA@ 00451fbc file.obj - 0004:00000fd4 ??_C@_0BO@MEMN@why?5did?5CchTranslateRgb?5fail?$DP?$AA@ 00451fd4 file.obj - 0004:00000ff4 ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 00451ff4 file.obj - 0004:0000100c ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 0045200c file.obj - 0004:00001024 ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 00452024 file.obj - 0004:00001038 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 00452038 file.obj - 0004:00001050 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 00452050 file.obj - 0004:00001064 ??_C@_0BH@BMPJ@writing?5outside?5blck?52?$AA@ 00452064 file.obj - 0004:0000107c ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 0045207c file.obj - 0004:00001090 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 00452090 file.obj - 0004:000010a4 ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 004520a4 file.obj - 0004:000010b8 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 004520b8 file.obj - 0004:000010d4 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 004520d4 file.obj - 0004:000010ec ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 004520ec file.obj - 0004:00001108 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 00452108 file.obj - 0004:00001128 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 00452128 file.obj - 0004:0000114c ??_C@_0L@MCHM@bad?5_fpCur?$AA@ 0045214c file.obj - 0004:00001178 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 00452178 filewin.obj - 0004:00001194 ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 00452194 filewin.obj - 0004:000011b0 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 004521b0 filewin.obj - 0004:000011d0 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 004521d0 filewin.obj - 0004:000011e0 ??_C@_0P@DBGM@rename?5failure?$AA@ 004521e0 filewin.obj - 0004:000011f0 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 004521f0 filewin.obj - 0004:00001220 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 00452220 filewin.obj - 0004:00001254 ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 00452254 filewin.obj - 0004:000012a0 ?vftgTemp@@3JA 004522a0 fniwin.obj - 0004:000012a8 ??_C@_00A@?$AA@ 004522a8 fniwin.obj - 0004:000012ac ??_C@_08GBDA@Temp?$CF04x?$AA@ 004522ac fniwin.obj - 0004:000012b8 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 004522b8 fniwin.obj - 0004:000012d0 ??_C@_07JFJJ@Bad?5FTG?$AA@ 004522d0 fniwin.obj - 0004:000012d8 ??_C@_07NLCI@bad?5fni?$AA@ 004522d8 fniwin.obj - 0004:000012e0 ??_C@_0N@NEA@file?5is?5open?$AA@ 004522e0 fniwin.obj - 0004:000012f0 ??_C@_0BC@IKJG@expected?5filename?$AA@ 004522f0 fniwin.obj - 0004:00001304 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 00452304 fniwin.obj - 0004:00001314 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 00452314 fniwin.obj - 0004:00001328 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 00452328 fniwin.obj - 0004:00001340 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 00452340 fniwin.obj - 0004:00001350 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 00452350 fniwin.obj - 0004:00001360 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 00452360 fniwin.obj - 0004:00001398 ?_mpertpsz@@3QAPADA 00452398 chcm.obj - 0004:000015a8 ??_C@_07KLIJ@SUBFILE?$AA@ 004525a8 chcm.obj - 0004:000015b0 ??_C@_07NFID@PACKFMT?$AA@ 004525b0 chcm.obj - 0004:000015b8 ??_C@_04EJID@PACK?$AA@ 004525b8 chcm.obj - 0004:000015c0 ??_C@_09DECH@PREPACKED?$AA@ 004525c0 chcm.obj - 0004:000015cc ??_C@_07ONI@PALETTE?$AA@ 004525cc chcm.obj - 0004:000015d4 ??_C@_06MDJJ@CURSOR?$AA@ 004525d4 chcm.obj - 0004:000015dc ??_C@_05EKBD@LONER?$AA@ 004525dc chcm.obj - 0004:000015e4 ??_C@_06INIF@WINOSK?$AA@ 004525e4 chcm.obj - 0004:000015ec ??_C@_06MKGG@MACOSK?$AA@ 004525ec chcm.obj - 0004:000015f4 ??_C@_05OKLJ@WINBO?$AA@ 004525f4 chcm.obj - 0004:000015fc ??_C@_05JOF@MACBO?$AA@ 004525fc chcm.obj - 0004:00001604 ??_C@_03IKKD@AST?$AA@ 00452604 chcm.obj - 0004:00001608 ??_C@_03GGNE@GST?$AA@ 00452608 chcm.obj - 0004:0000160c ??_C@_02EMCK@AG?$AA@ 0045260c chcm.obj - 0004:00001610 ??_C@_02DLNF@GG?$AA@ 00452610 chcm.obj - 0004:00001614 ??_C@_02OHCL@AL?$AA@ 00452614 chcm.obj - 0004:00001618 ??_C@_02JANE@GL?$AA@ 00452618 chcm.obj - 0004:0000161c ??_C@_08EBHJ@SCRIPTPF?$AA@ 0045261c chcm.obj - 0004:00001628 ??_C@_06PDJ@SCRIPT?$AA@ 00452628 chcm.obj - 0004:00001630 ??_C@_04CCOG@MIDI?$AA@ 00452630 chcm.obj - 0004:00001638 ??_C@_04OMIB@MASK?$AA@ 00452638 chcm.obj - 0004:00001640 ??_C@_06MABC@BITMAP?$AA@ 00452640 chcm.obj - 0004:00001648 ??_C@_04MEBI@META?$AA@ 00452648 chcm.obj - 0004:00001650 ??_C@_0L@CDIA@PACKEDFILE?$AA@ 00452650 chcm.obj - 0004:0000165c ??_C@_04CMDA@FILE?$AA@ 0045265c chcm.obj - 0004:00001664 ??_C@_05MANP@ALIGN?$AA@ 00452664 chcm.obj - 0004:0000166c ??_C@_02FNBP@ST?$AA@ 0045266c chcm.obj - 0004:00001670 ??_C@_02PGNF@SZ?$AA@ 00452670 chcm.obj - 0004:00001674 ??_C@_03MFHL@STZ?$AA@ 00452674 chcm.obj - 0004:00001678 ??_C@_03MGFH@STN?$AA@ 00452678 chcm.obj - 0004:0000167c ??_C@_03FOEM@OSK?$AA@ 0045267c chcm.obj - 0004:00001680 ??_C@_02CDGN@BO?$AA@ 00452680 chcm.obj - 0004:00001684 ??_C@_06IBHO@PARENT?$AA@ 00452684 chcm.obj - 0004:0000168c ??_C@_05JKOA@CHILD?$AA@ 0045268c chcm.obj - 0004:00001694 ??_C@_05KFCC@ADOPT?$AA@ 00452694 chcm.obj - 0004:0000169c ??_C@_08CEGN@ENDCHUNK?$AA@ 0045269c chcm.obj - 0004:000016a8 ??_C@_05EPGN@CHUNK?$AA@ 004526a8 chcm.obj - 0004:000016b0 ??_C@_04NIAI@LONG?$AA@ 004526b0 chcm.obj - 0004:000016b8 ??_C@_05HFLA@SHORT?$AA@ 004526b8 chcm.obj - 0004:000016c0 ??_C@_04EHOP@BYTE?$AA@ 004526c0 chcm.obj - 0004:000016c8 ??_C@_03KNCG@VAR?$AA@ 004526c8 chcm.obj - 0004:000016cc ??_C@_04MICK@FREE?$AA@ 004526cc chcm.obj - 0004:000016d4 ??_C@_04KAML@ITEM?$AA@ 004526d4 chcm.obj - 0004:000016dc ??_C@_0BF@FCDC@Unterminated?5SUBFILE?$AA@ 004526dc chcm.obj - 0004:000016f4 ??_C@_0CD@MIGA@Illegal?5LONER?5primitive?5in?5SUBFI@ 004526f4 chcm.obj - 0004:00001718 ??_C@_0BA@OENL@Bad?5pack?5format?$AA@ 00452718 chcm.obj - 0004:00001728 ??_C@_0BP@HBGD@Can?8t?5read?5the?5given?5midi?5file?$AA@ 00452728 chcm.obj - 0004:00001748 ??_C@_0CH@DCDA@Can?8t?5read?5given?5file?5as?5a?5packe@ 00452748 chcm.obj - 0004:00001770 ??_C@_0CB@OGLB@Can?8t?5read?5the?5given?5cursor?5file@ 00452770 chcm.obj - 0004:00001794 ??_C@_0CA@COAM@Disassembling?5the?5script?5failed?$AA@ 00452794 chcm.obj - 0004:000017b4 ??_C@_0CB@PHFL@Can?8t?5read?5the?5given?5bitmap?5file@ 004527b4 chcm.obj - 0004:000017d8 ??_C@_0BL@NGMF@Invalid?5BITMAP?5declaration?$AA@ 004527d8 chcm.obj - 0004:000017f4 ??_C@_0BL@MIBG@CHUNK?5declaration?5expected?$AA@ 004527f4 chcm.obj - 0004:00001810 ??_C@_0BK@BJNH@Invalid?5ADOPT?5declaration?$AA@ 00452810 chcm.obj - 0004:0000182c ??_C@_0BK@LGLK@Script?5compilation?5failed?$AA@ 0045282c chcm.obj - 0004:00001848 ??_C@_0CJ@BDGC@Invalid?5size?5for?5extra?5string?5ta@ 00452848 chcm.obj - 0004:00001874 ??_C@_0BP@EPKP@Invalid?5GST?5or?5AST?5declaration?$AA@ 00452874 chcm.obj - 0004:00001894 ??_C@_0CC@MMMG@Invalid?5size?5for?5fixed?5group?5dat@ 00452894 chcm.obj - 0004:000018b8 ??_C@_0BN@NAAD@Invalid?5GG?5or?5AG?5declaration?$AA@ 004528b8 chcm.obj - 0004:000018d8 ??_C@_0N@GABD@Syntax?5error?$AA@ 004528d8 chcm.obj - 0004:000018e8 ??_C@_0CP@FPHB@Can?8t?5have?5a?5free?5item?5in?5a?5gene@ 004528e8 chcm.obj - 0004:00001918 ??_C@_0BH@CCDO@Too?5much?5data?5for?5item?$AA@ 00452918 chcm.obj - 0004:00001930 ??_C@_0BD@NFIH@Variable?5undefined?$AA@ 00452930 chcm.obj - 0004:00001944 ??_C@_0BO@CKHA@Invalid?5size?5for?5list?5entries?$AA@ 00452944 chcm.obj - 0004:00001964 ??_C@_0BN@FKEL@Invalid?5GL?5or?5AL?5declaration?$AA@ 00452964 chcm.obj - 0004:00001984 ??_C@_0BC@MHJG@ENDCHUNK?5expected?$AA@ 00452984 chcm.obj - 0004:00001998 ??_C@_0BD@PGNF@File?5name?5expected?$AA@ 00452998 chcm.obj - 0004:000019ac ??_C@_0CB@NFHA@Alignment?5parameter?5out?5of?5range@ 004529ac chcm.obj - 0004:000019d0 ??_C@_0BL@IICN@Parent?5chunk?5doesn?8t?5exist?$AA@ 004529d0 chcm.obj - 0004:000019ec ??_C@_0BL@PEGG@Invalid?5PARENT?5declaration?$AA@ 004529ec chcm.obj - 0004:00001a08 ??_C@_0CK@NBM@A?5cycle?5would?5be?5created?5by?5this@ 00452a08 chcm.obj - 0004:00001a34 ??_C@_0BK@NJFM@Child?5chunk?5doesn?8t?5exist?$AA@ 00452a34 chcm.obj - 0004:00001a50 ??_C@_0BK@GHEM@Invalid?5CHILD?5declaration?$AA@ 00452a50 chcm.obj - 0004:00001a6c ??_C@_0BM@KDKG@Duplicate?5CHUNK?5declaration?$AA@ 00452a6c chcm.obj - 0004:00001a88 ??_C@_0BK@CPAG@Invalid?5CHUNK?5declaration?$AA@ 00452a88 chcm.obj - 0004:00001aa4 ??_C@_0BP@HFHD@Close?5parenthesis?5?8?$CJ?8?5expected?$AA@ 00452aa4 chcm.obj - 0004:00001ac4 ??_C@_0BB@MJKM@Unexpected?5Token?$AA@ 00452ac4 chcm.obj - 0004:00001ad8 ??_C@_0BH@JPMM@Numeric?5value?5expected?$AA@ 00452ad8 chcm.obj - 0004:00001af0 ??_C@_0BA@BJOB@String?5expected?$AA@ 00452af0 chcm.obj - 0004:00001b00 ??_C@_0BH@LAAJ@Unexpected?5end?5of?5file?$AA@ 00452b00 chcm.obj - 0004:00001b18 ??_C@_0BO@OOPL@Open?5parenthesis?5?8?$CI?8?5expected?$AA@ 00452b18 chcm.obj - 0004:00001b38 ??_C@_0CB@PIGB@Invalid?5data?5before?5atomic?5chunk@ 00452b38 chcm.obj - 0004:00001b5c ??_C@_0BO@BLMN@Number?5not?5in?5range?5for?5SHORT?$AA@ 00452b5c chcm.obj - 0004:00001b7c ??_C@_0BN@DKKO@Number?5not?5in?5range?5for?5BYTE?$AA@ 00452b7c chcm.obj - 0004:00001b9c ??_C@_0BO@KFJ@Can?8t?5read?5the?5given?5metafile?$AA@ 00452b9c chcm.obj - 0004:00001bbc ??_C@_0BK@CDBP@Can?8t?5open?5the?5given?5file?$AA@ 00452bbc chcm.obj - 0004:00001bd8 ??_C@_0BK@HLHF@Internal?5allocation?5error?$AA@ 00452bd8 chcm.obj - 0004:00001bf4 ??_C@_08KPMF@no?5error?$AA@ 00452bf4 chcm.obj - 0004:00001c00 ??_C@_0BM@MNOP@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?5?3?5?$CFz?$AA@ 00452c00 chcm.obj - 0004:00001c1c ??_C@_0BH@DNDF@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?$AA@ 00452c1c chcm.obj - 0004:00001c34 ??_C@_0BJ@KDB@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?5?3?5?$CFz?$AA@ 00452c34 chcm.obj - 0004:00001c50 ??_C@_0BE@IGCO@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?$AA@ 00452c50 chcm.obj - 0004:00001c64 ??_C@_0BH@IOMP@invalid?5numerical?5mode?$AA@ 00452c64 chcm.obj - 0004:00001c7c ??_C@_0BE@IMFE@Invalid?5string?5mode?$AA@ 00452c7c chcm.obj - 0004:00001c90 ??_C@_0CG@JPEH@legal?5range?5for?5alignment?5is?5?$CI?$CFd@ 00452c90 chcm.obj - 0004:00001cb8 ??_C@_0BF@PEMH@why?5is?5block?5packed?$DP?$AA@ 00452cb8 chcm.obj - 0004:00001cd0 ??_C@_0BO@MKFM@why?5did?5GL?5have?5free?5entries?$DP?$AA@ 00452cd0 chcm.obj - 0004:00001cf0 ??_C@_05JLFG@what?$DP?$AA@ 00452cf0 chcm.obj - 0004:00001cf8 ??_C@_0BO@BBKO@why?5did?5GG?5have?5free?5entries?$DP?$AA@ 00452cf8 chcm.obj - 0004:00001d18 ??_C@_08LCPD@iv?5wrong?$AA@ 00452d18 chcm.obj - 0004:00001d24 ??_C@_0BP@JBND@why?5did?5GST?5have?5free?5entries?$DP?$AA@ 00452d24 chcm.obj - 0004:00001d44 ??_C@_0BC@DAM@not?5a?5packed?5file?$AA@ 00452d44 chcm.obj - 0004:00001d58 ??_C@_0BA@LADO@bad?5packed?5file?$AA@ 00452d58 chcm.obj - 0004:00001d68 ??_C@_0BL@LHPK@FWriteChunkTree?5messed?5up?$CB?$AA@ 00452d68 chcm.obj - 0004:00001d84 ??_C@_08EBMK@Sub?5File?$AA@ 00452d84 chcm.obj - 0004:00001d90 ??_C@_06GELG@Script?$AA@ 00452d90 chcm.obj - 0004:00001d98 ??_C@_0N@KDOG@String?5Table?$AA@ 00452d98 chcm.obj - 0004:00001da8 ??_C@_05GGEJ@Group?$AA@ 00452da8 chcm.obj - 0004:00001db0 ??_C@_04DECM@List?$AA@ 00452db0 chcm.obj - 0004:00001db8 ??_C@_06KIBG@Cursor?$AA@ 00452db8 chcm.obj - 0004:00001dc0 ??_C@_04OHIB@Midi?$AA@ 00452dc0 chcm.obj - 0004:00001dc8 ??_C@_07NBFD@Palette?$AA@ 00452dc8 chcm.obj - 0004:00001dd0 ??_C@_06KLJN@Bitmap?$AA@ 00452dd0 chcm.obj - 0004:00001dd8 ??_C@_08PPBL@Metafile?$AA@ 00452dd8 chcm.obj - 0004:00001de4 ??_C@_0M@CNM@Packed?5File?$AA@ 00452de4 chcm.obj - 0004:00001df0 ??_C@_0BL@JIDN@opening?5source?5file?5failed?$AA@ 00452df0 chcm.obj - 0004:00001e0c ??_C@_0CG@PBKA@Too?5many?5errors?5?9?5compilation?5ab@ 00452e0c chcm.obj - 0004:00001e34 ??_C@_0CB@NPNL@Couldn?8t?5create?5destination?5file@ 00452e34 chcm.obj - 0004:00001e58 ??_C@_0P@NCJB@Memory?5failure?$AA@ 00452e58 chcm.obj - 0004:00001e68 ??_C@_03BCLC@SET?$AA@ 00452e68 chcm.obj - 0004:00001e6c ??_C@_07KDEJ@include?$AA@ 00452e6c chcm.obj - 0004:00001e74 ??_C@_0BE@LKC@PACKFMT?5?$CI0x?$CFx?$CJ?5PACK?$AA@ 00452e74 chcm.obj - 0004:00001ea4 ??_C@_05OIIM@?7PACK?$AA@ 00452ea4 chse.obj - 0004:00001eac ??_C@_0BA@MOLF@CHUNK?$CI?8?$CFf?8?0?5?$CFd?$CJ?$AA@ 00452eac chse.obj - 0004:00001ebc ??_C@_0BG@FJJK@CHUNK?$CI?8?$CFf?8?0?5?$CFd?0?5?$CC?$CFs?$CC?$CJ?$AA@ 00452ebc chse.obj - 0004:00001ed4 ??_C@_0BF@PNMJ@Dumping?5chunk?5failed?$AA@ 00452ed4 chse.obj - 0004:00001eec ??_C@_0BO@PFAI@ADOPT?$CI?8?$CFf?8?0?5?$CFd?0?5?8?$CFf?8?0?5?$CFd?0?5?$CFd?$CJ?$AA@ 00452eec chse.obj - 0004:00001f0c ??_C@_02OGOH@?8?5?$AA@ 00452f0c chse.obj - 0004:00001f10 ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 00452f10 chse.obj - 0004:00001f18 ??_C@_07POOB@0x?$CF02x?5?$AA@ 00452f18 chse.obj - 0004:00001f20 ??_C@_05GLIP@?5?5?5?5?5?$AA@ 00452f20 chse.obj - 0004:00001f28 ??_C@_0BG@PGHF@Dumping?5script?5failed?$AA@ 00452f28 chse.obj - 0004:00001f40 ??_C@_05BME@?7ITEM?$AA@ 00452f40 chse.obj - 0004:00001f48 ??_C@_05GJCF@?7FREE?$AA@ 00452f48 chse.obj - 0004:00001f50 ??_C@_07DGD@?7GL?$CI?$CFd?$CJ?$AA@ 00452f50 chse.obj - 0004:00001f58 ??_C@_07HOKD@?7AL?$CI?$CFd?$CJ?$AA@ 00452f58 chse.obj - 0004:00001f60 ??_C@_0BE@CFD@neither?5a?5GL?5or?5AL?$CB?$AA@ 00452f60 chse.obj - 0004:00001f74 ??_C@_04KCOE@?7VAR?$AA@ 00452f74 chse.obj - 0004:00001f7c ??_C@_07OCCG@?7GG?$CI?$CFd?$CJ?$AA@ 00452f7c chse.obj - 0004:00001f84 ??_C@_07JPOG@?7AG?$CI?$CFd?$CJ?$AA@ 00452f84 chse.obj - 0004:00001f8c ??_C@_0BE@BFPP@neither?5a?5GG?5or?5AG?$CB?$AA@ 00452f8c chse.obj - 0004:00001fa0 ??_C@_06ILO@?7?7?$CC?$CFs?$CC?$AA@ 00452fa0 chse.obj - 0004:00001fa8 ??_C@_08DDHM@?7GST?$CI?$CFd?$CJ?$AA@ 00452fa8 chse.obj - 0004:00001fb4 ??_C@_08NEAB@?7AST?$CI?$CFd?$CJ?$AA@ 00452fb4 chse.obj - 0004:00001fc0 ??_C@_0BG@IHJL@neither?5a?5GST?5or?5AST?$CB?$AA@ 00452fc0 chse.obj - 0004:00001ff8 ??_C@_0P@JECG@negative?5sizes?$AA@ 00452ff8 groups.obj - 0004:00002008 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00453008 groups.obj - 0004:00002018 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00453018 groups.obj - 0004:0000202c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 0045302c groups.obj - 0004:00002040 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00453040 groups.obj - 0004:0000205c ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 0045305c groups.obj - 0004:00002078 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 00453078 groups.obj - 0004:00002090 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 00453090 groups.obj - 0004:000020b8 ??_C@_08OO@wrong?5bo?$AA@ 004530b8 groups.obj - 0004:000020c4 ??_C@_06NHBD@bad?5bo?$AA@ 004530c4 groups.obj - 0004:000020cc ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 004530cc groups.obj - 0004:000020e8 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 004530e8 groups.obj - 0004:00002114 ??_C@_0BK@LHAG@file?5corrupt?5or?5not?5an?5AL?$AA@ 00453114 groups.obj - 0004:00002130 ??_C@_0BJ@LGAF@why?5is?5this?5marked?5free?$DP?$AA@ 00453130 groups.obj - 0004:0000214c ??_C@_0BF@EMCD@everything?5is?5free?$CB?$DP?$AA@ 0045314c groups.obj - 0004:00002164 ??_C@_0O@HCLM@already?5free?$CB?$AA@ 00453164 groups.obj - 0004:00002174 ??_C@_0BB@PNKH@_cvFree?5is?5wrong?$AA@ 00453174 groups.obj - 0004:00002188 ??_C@_0BE@MANP@flag?5area?5too?5small?$AA@ 00453188 groups.obj - 0004:0000219c ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 0045319c groups.obj - 0004:000021b8 ??_C@_07PIIM@bad?5loc?$AA@ 004531b8 groups.obj - 0004:000021c0 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 004531c0 groups.obj - 0004:000021e4 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004531e4 groups.obj - 0004:00002204 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 00453204 groups.obj - 0004:00002224 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 00453224 groups.obj - 0004:00002234 ??_C@_05HCAE@oops?$CB?$AA@ 00453234 groups.obj - 0004:0000223c ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 0045323c groups.obj - 0004:00002258 ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 00453258 groups.obj - 0004:00002290 ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 00453290 groups.obj - 0004:000022ac ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 004532ac groups.obj - 0004:000022c4 ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 004532c4 groups.obj - 0004:000022e8 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 004532e8 groups.obj - 0004:000022f8 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 004532f8 groups.obj - 0004:0000230c ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 0045330c groups.obj - 0004:00002324 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 00453324 groups.obj - 0004:0000234c ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 0045334c groups.obj - 0004:00002360 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 00453360 groups.obj - 0004:00002374 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 00453374 groups.obj - 0004:00002388 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 00453388 groups.obj - 0004:000023a0 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 004533a0 groups.obj - 0004:000023b8 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 004533b8 groups.obj - 0004:000023d0 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 004533d0 groups.obj - 0004:000023e4 ??_C@_0BA@BKJJ@_clocFree?5wrong?$AA@ 004533e4 groups.obj - 0004:000023f4 ??_C@_0BE@CBDM@entry?5already?5free?$CB?$AA@ 004533f4 groups.obj - 0004:00002428 ??_C@_0CD@BJKN@cbExtra?5not?5multiple?5of?5size?$CIlon@ 00453428 groups2.obj - 0004:0000244c ??_C@_0M@GFOH@unknown?5osk?$AA@ 0045344c groups2.obj - 0004:00002458 ??_C@_0BL@PADL@file?5corrupt?5or?5not?5a?5GSTB?$AA@ 00453458 groups2.obj - 0004:00002474 ??_C@_0CL@EPJN@why?5is?5this?5string?5table?5growing@ 00453474 groups2.obj - 0004:000024a0 ??_C@_0BG@PPCE@string?5entry?5is?5free?$CB?$AA@ 004534a0 groups2.obj - 0004:000024b8 ??_C@_0BC@OIJF@last?5element?5free?$AA@ 004534b8 groups2.obj - 0004:000024cc ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 004534cc groups2.obj - 0004:000024dc ??_C@_0BL@KJJP@first?5block?5not?5big?5enough?$AA@ 004534dc groups2.obj - 0004:000024f8 ??_C@_0BM@DEGE@overlapping?5strings?5in?5GSTB?$AA@ 004534f8 groups2.obj - 0004:00002514 ??_C@_0BM@GHNE@can?8t?5translate?5to?5this?5osk?$AA@ 00453514 groups2.obj - 0004:00002530 ??_C@_07PNIM@bad?5bst?$AA@ 00453530 groups2.obj - 0004:00002538 ??_C@_0O@HDCF@bad?5_cbstFree?$AA@ 00453538 groups2.obj - 0004:00002548 ??_C@_0BA@HOMP@grst?5wrong?5size?$AA@ 00453548 groups2.obj - 0004:00002558 ??_C@_0BD@GPKO@_cbstFree?5is?5wrong?$AA@ 00453558 groups2.obj - 0004:0000256c ??_C@_0BF@BDL@rgbst?5area?5too?5small?$AA@ 0045356c groups2.obj - 0004:00002584 ??_C@_0BE@GGCD@grst?5area?5too?5small?$AA@ 00453584 groups2.obj - 0004:00002598 ??_C@_0N@GMIA@_cbEntry?5bad?$AA@ 00453598 groups2.obj - 0004:000025a8 ??_C@_08IBNI@bad?5fcmp?$AA@ 004535a8 groups2.obj - 0004:000025b4 ??_C@_0BA@BCJG@cbExtra?5is?5zero?$AA@ 004535b4 groups2.obj - 0004:000025c4 ??_C@_0BF@IGAN@bad?5_cbstFree?5in?5GST?$AA@ 004535c4 groups2.obj - 0004:00002600 ?_szPoundLine@@3QADA 00453600 lex.obj - 0004:00002608 ?_mpchgrfct@LEXB@@1QAGA 00453608 lex.obj - 0004:00002708 ?_rgtt@@3QAFA 00453708 lex.obj - 0004:000027c8 ?_rgttDouble@@3QAFA 004537c8 lex.obj - 0004:00002878 ?_rgttEqual@@3QAFA 00453878 lex.obj - 0004:00002930 ??_C@_0CO@JMMM@exactly?5one?5of?5_pfil?0?5_pbsf?5shou@ 00453930 lex.obj - 0004:00002960 ??_C@_0CM@JMP@Error?5reading?5file?0?5truncating?5l@ 00453960 lex.obj - 0004:0000298c ??_C@_0BA@EJHI@bad?5table?5entry?$AA@ 0045398c lex.obj - 0004:0000299c ??_C@_09HHAD@bad?5grfct?$AA@ 0045399c lex.obj - 0004:000029a8 ??_C@_0BD@GOAE@how?8d?5we?5get?5here?$DP?$AA@ 004539a8 lex.obj - 0004:000029e0 ??_C@_0BA@NDF@blck?5is?5too?5big?$AA@ 004539e0 stream.obj - 0004:000029f0 ??_C@_09PGGB@why?5fail?$DP?$AA@ 004539f0 stream.obj - 0004:000029fc ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 004539fc stream.obj - 0004:00002a14 ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 00453a14 stream.obj - 0004:00002a20 ??_C@_08NKDG@wrong?5ib?$AA@ 00453a20 stream.obj - 0004:00002a2c ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 00453a2c stream.obj - 0004:00002a48 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 00453a48 stream.obj - 0004:00002a60 ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 00453a60 stream.obj - 0004:00002a7c ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 00453a7c stream.obj - 0004:00002a90 ??_C@_0BP@PMGM@wrong?5number?5of?5bytes?5written?$CB?$AA@ 00453a90 stream.obj - 0004:00002ab0 ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 00453ab0 stream.obj - 0004:00002abc ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 00453abc stream.obj - 0004:00002ad4 ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 00453ad4 stream.obj - 0004:00002ae8 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 00453ae8 stream.obj - 0004:00002b18 ?_rgszopSccg@@3QAUSZOP@@A 00453b18 scrcomg.obj - 0004:00002ec8 ?_rgaropSccg@@3QAUAROP@@A 00453ec8 scrcomg.obj - 0004:000039d8 ??_C@_0N@MHJO@PrintStrStat?$AA@ 004549d8 scrcomg.obj - 0004:000039e8 ??_C@_09FJBA@PrintStat?$AA@ 004549e8 scrcomg.obj - 0004:000039f4 ??_C@_0L@EOIP@StreamThis?$AA@ 004549f4 scrcomg.obj - 0004:00003a00 ??_C@_09HLFA@StreamGob?$AA@ 00454a00 scrcomg.obj - 0004:00003a0c ??_C@_0BA@BIPK@FlushUserEvents?$AA@ 00454a0c scrcomg.obj - 0004:00003a1c ??_C@_09JJPB@ModalHelp?$AA@ 00454a1c scrcomg.obj - 0004:00003a28 ??_C@_0N@DCCE@SetAlarmThis?$AA@ 00454a28 scrcomg.obj - 0004:00003a38 ??_C@_0M@NALO@SetAlarmGob?$AA@ 00454a38 scrcomg.obj - 0004:00003a44 ??_C@_0BF@NFFN@SetToolTipSourceThis?$AA@ 00454a44 scrcomg.obj - 0004:00003a5c ??_C@_0BE@KJIP@SetToolTipSourceGob?$AA@ 00454a5c scrcomg.obj - 0004:00003a70 ??_C@_09MGPK@EndLongOp?$AA@ 00454a70 scrcomg.obj - 0004:00003a7c ??_C@_0M@HDMI@StartLongOp?$AA@ 00454a7c scrcomg.obj - 0004:00003a88 ??_C@_0BA@PADJ@GetMasterVolume?$AA@ 00454a88 scrcomg.obj - 0004:00003a98 ??_C@_0BA@NALN@SetMasterVolume?$AA@ 00454a98 scrcomg.obj - 0004:00003aa8 ??_C@_08EKJJ@PrintStr?$AA@ 00454aa8 scrcomg.obj - 0004:00003ab4 ??_C@_05KGMP@Print?$AA@ 00454ab4 scrcomg.obj - 0004:00003abc ??_C@_0O@CNH@FIsDescendent?$AA@ 00454abc scrcomg.obj - 0004:00003acc ??_C@_0O@MGAI@SetNoSlipThis?$AA@ 00454acc scrcomg.obj - 0004:00003adc ??_C@_0N@PMGO@SetNoSlipGob?$AA@ 00454adc scrcomg.obj - 0004:00003aec ??_C@_0L@GHAL@HeightThis?$AA@ 00454aec scrcomg.obj - 0004:00003af8 ??_C@_09PPGJ@HeightGob?$AA@ 00454af8 scrcomg.obj - 0004:00003b04 ??_C@_09FBEL@WidthThis?$AA@ 00454b04 scrcomg.obj - 0004:00003b10 ??_C@_08LPLG@WidthGob?$AA@ 00454b10 scrcomg.obj - 0004:00003b1c ??_C@_0BB@OEC@RunScriptCnoThis?$AA@ 00454b1c scrcomg.obj - 0004:00003b30 ??_C@_0BA@LGEH@RunScriptCnoGob?$AA@ 00454b30 scrcomg.obj - 0004:00003b40 ??_C@_0BD@KHLA@PlayMouseSoundThis?$AA@ 00454b40 scrcomg.obj - 0004:00003b54 ??_C@_0BC@EENC@PlayMouseSoundGob?$AA@ 00454b54 scrcomg.obj - 0004:00003b68 ??_C@_0BB@HGPP@ResumeSoundClass?$AA@ 00454b68 scrcomg.obj - 0004:00003b7c ??_C@_0M@GKDM@ResumeSound?$AA@ 00454b7c scrcomg.obj - 0004:00003b88 ??_C@_0BA@HHOB@PauseSoundClass?$AA@ 00454b88 scrcomg.obj - 0004:00003b98 ??_C@_0L@NKBB@PauseSound?$AA@ 00454b98 scrcomg.obj - 0004:00003ba4 ??_C@_0BC@CBPJ@PlayingSoundClass?$AA@ 00454ba4 scrcomg.obj - 0004:00003bb8 ??_C@_0N@OGM@PlayingSound?$AA@ 00454bb8 scrcomg.obj - 0004:00003bc8 ??_C@_0P@FBO@StopSoundClass?$AA@ 00454bc8 scrcomg.obj - 0004:00003bd8 ??_C@_09MJBN@StopSound?$AA@ 00454bd8 scrcomg.obj - 0004:00003be4 ??_C@_0N@ELOA@PlaySoundGob?$AA@ 00454be4 scrcomg.obj - 0004:00003bf4 ??_C@_0O@DNLP@PlaySoundThis?$AA@ 00454bf4 scrcomg.obj - 0004:00003c04 ??_C@_0BE@LKGN@DestroyChildrenThis?$AA@ 00454c04 scrcomg.obj - 0004:00003c18 ??_C@_0BD@JJKG@DestroyChildrenGob?$AA@ 00454c18 scrcomg.obj - 0004:00003c2c ??_C@_0P@MKFJ@FilterCmdsThis?$AA@ 00454c2c scrcomg.obj - 0004:00003c3c ??_C@_0O@KNPC@FilterCmdsGob?$AA@ 00454c3c scrcomg.obj - 0004:00003c4c ??_C@_0O@BGJA@GotoFrameThis?$AA@ 00454c4c scrcomg.obj - 0004:00003c5c ??_C@_0N@GEGG@GotoFrameGob?$AA@ 00454c5c scrcomg.obj - 0004:00003c6c ??_C@_0BA@OGKJ@CountFramesThis?$AA@ 00454c6c scrcomg.obj - 0004:00003c7c ??_C@_0P@FNML@CountFramesGob?$AA@ 00454c7c scrcomg.obj - 0004:00003c8c ??_C@_0N@EGDG@CurFrameThis?$AA@ 00454c8c scrcomg.obj - 0004:00003c9c ??_C@_0M@MCIA@CurFrameGob?$AA@ 00454c9c scrcomg.obj - 0004:00003ca8 ??_C@_08FNOO@StopThis?$AA@ 00454ca8 scrcomg.obj - 0004:00003cb4 ??_C@_07BKPI@StopGob?$AA@ 00454cb4 scrcomg.obj - 0004:00003cbc ??_C@_0M@CMKE@PlayingThis?$AA@ 00454cbc scrcomg.obj - 0004:00003cc8 ??_C@_0L@FAND@PlayingGob?$AA@ 00454cc8 scrcomg.obj - 0004:00003cd4 ??_C@_08GJKE@PlayThis?$AA@ 00454cd4 scrcomg.obj - 0004:00003ce0 ??_C@_07FAHC@PlayGob?$AA@ 00454ce0 scrcomg.obj - 0004:00003ce8 ??_C@_06HJIC@Launch?$AA@ 00454ce8 scrcomg.obj - 0004:00003cf0 ??_C@_07BJKF@SetProp?$AA@ 00454cf0 scrcomg.obj - 0004:00003cf8 ??_C@_07EKKJ@GetProp?$AA@ 00454cf8 scrcomg.obj - 0004:00003d00 ??_C@_08ICLP@AlertStr?$AA@ 00454d00 scrcomg.obj - 0004:00003d0c ??_C@_07OMCA@SetEdit?$AA@ 00454d0c scrcomg.obj - 0004:00003d14 ??_C@_07LPCM@GetEdit?$AA@ 00454d14 scrcomg.obj - 0004:00003d1c ??_C@_0L@LCIG@Transition?$AA@ 00454d1c scrcomg.obj - 0004:00003d28 ??_C@_0P@NHOA@CreateHelpThis?$AA@ 00454d28 scrcomg.obj - 0004:00003d38 ??_C@_0O@BENB@CreateHelpGob?$AA@ 00454d38 scrcomg.obj - 0004:00003d48 ??_C@_0BE@LEMJ@ChangeModifierState?$AA@ 00454d48 scrcomg.obj - 0004:00003d5c ??_C@_0BB@BAEK@GetModifierState?$AA@ 00454d5c scrcomg.obj - 0004:00003d70 ??_C@_0M@NBPF@CellNoPause?$AA@ 00454d70 scrcomg.obj - 0004:00003d7c ??_C@_04HPIN@Cell?$AA@ 00454d7c scrcomg.obj - 0004:00003d84 ??_C@_0O@OJNG@SetColorTable?$AA@ 00454d84 scrcomg.obj - 0004:00003d94 ??_C@_08JGAI@SetZThis?$AA@ 00454d94 scrcomg.obj - 0004:00003da0 ??_C@_07PMDM@SetZGob?$AA@ 00454da0 scrcomg.obj - 0004:00003da8 ??_C@_05PEKH@ZThis?$AA@ 00454da8 scrcomg.obj - 0004:00003db0 ??_C@_04FDKD@ZGob?$AA@ 00454db0 scrcomg.obj - 0004:00003db8 ??_C@_05BEMI@YThis?$AA@ 00454db8 scrcomg.obj - 0004:00003dc0 ??_C@_04DMFF@YGob?$AA@ 00454dc0 scrcomg.obj - 0004:00003dc8 ??_C@_05LEON@XThis?$AA@ 00454dc8 scrcomg.obj - 0004:00003dd0 ??_C@_04BJAH@XGob?$AA@ 00454dd0 scrcomg.obj - 0004:00003dd8 ??_C@_09MBMH@GidUnique?$AA@ 00454dd8 scrcomg.obj - 0004:00003de4 ??_C@_0L@KAKM@YMouseThis?$AA@ 00454de4 scrcomg.obj - 0004:00003df0 ??_C@_09FIFJ@YMouseGob?$AA@ 00454df0 scrcomg.obj - 0004:00003dfc ??_C@_0L@CPGO@XMouseThis?$AA@ 00454dfc scrcomg.obj - 0004:00003e08 ??_C@_09JKBB@XMouseGob?$AA@ 00454e08 scrcomg.obj - 0004:00003e14 ??_C@_0L@JPOL@SetRepThis?$AA@ 00454e14 scrcomg.obj - 0004:00003e20 ??_C@_09BPLC@SetRepGob?$AA@ 00454e20 scrcomg.obj - 0004:00003e2c ??_C@_0P@MKCE@SetPictureThis?$AA@ 00454e2c scrcomg.obj - 0004:00003e3c ??_C@_0O@NACO@SetPictureGob?$AA@ 00454e3c scrcomg.obj - 0004:00003e4c ??_C@_0M@CJOF@AnimateThis?$AA@ 00454e4c scrcomg.obj - 0004:00003e58 ??_C@_0L@BBEN@AnimateGob?$AA@ 00454e58 scrcomg.obj - 0004:00003e64 ??_C@_0BA@IJPG@ChangeStateThis?$AA@ 00454e64 scrcomg.obj - 0004:00003e74 ??_C@_0P@CCO@ChangeStateGob?$AA@ 00454e74 scrcomg.obj - 0004:00003e84 ??_C@_09EGDL@StateThis?$AA@ 00454e84 scrcomg.obj - 0004:00003e90 ??_C@_08MPJC@StateGob?$AA@ 00454e90 scrcomg.obj - 0004:00003e9c ??_C@_0O@HCMF@RunScriptThis?$AA@ 00454e9c scrcomg.obj - 0004:00003eac ??_C@_0N@DBLM@RunScriptGob?$AA@ 00454eac scrcomg.obj - 0004:00003ebc ??_C@_05PJFK@Alert?$AA@ 00454ebc scrcomg.obj - 0004:00003ec4 ??_C@_0L@EGFM@EnqueueCid?$AA@ 00454ec4 scrcomg.obj - 0004:00003ed0 ??_C@_08IEPA@SetAlarm?$AA@ 00454ed0 scrcomg.obj - 0004:00003edc ??_C@_07FBMA@TimeCur?$AA@ 00454edc scrcomg.obj - 0004:00003ee4 ??_C@_09EJEF@StopClock?$AA@ 00454ee4 scrcomg.obj - 0004:00003ef0 ??_C@_0L@GGIB@StartClock?$AA@ 00454ef0 scrcomg.obj - 0004:00003efc ??_C@_0N@NMPG@DestroyClock?$AA@ 00454efc scrcomg.obj - 0004:00003f0c ??_C@_0M@EDHP@CreateClock?$AA@ 00454f0c scrcomg.obj - 0004:00003f18 ??_C@_0L@DKEP@FGobExists?$AA@ 00454f18 scrcomg.obj - 0004:00003f24 ??_C@_08KBMA@GidChild?$AA@ 00454f24 scrcomg.obj - 0004:00003f30 ??_C@_0L@OONC@GidPrevSib?$AA@ 00454f30 scrcomg.obj - 0004:00003f3c ??_C@_0L@EPFB@GidNextSib?$AA@ 00454f3c scrcomg.obj - 0004:00003f48 ??_C@_0L@IOKP@GidParThis?$AA@ 00454f48 scrcomg.obj - 0004:00003f54 ??_C@_09FLPF@GidParGob?$AA@ 00454f54 scrcomg.obj - 0004:00003f60 ??_C@_07LLIB@GidThis?$AA@ 00454f60 scrcomg.obj - 0004:00003f68 ??_C@_0M@FHNF@MoveAbsThis?$AA@ 00454f68 scrcomg.obj - 0004:00003f74 ??_C@_0L@CBKE@MoveAbsGob?$AA@ 00454f74 scrcomg.obj - 0004:00003f80 ??_C@_0M@EGNE@MoveRelThis?$AA@ 00454f80 scrcomg.obj - 0004:00003f8c ??_C@_0L@CALD@MoveRelGob?$AA@ 00454f8c scrcomg.obj - 0004:00003f98 ??_C@_0L@OJJL@ResizeThis?$AA@ 00454f98 scrcomg.obj - 0004:00003fa4 ??_C@_09GPEL@ResizeGob?$AA@ 00454fa4 scrcomg.obj - 0004:00003fb0 ??_C@_0M@OOAM@DestroyThis?$AA@ 00454fb0 scrcomg.obj - 0004:00003fbc ??_C@_0L@PILG@DestroyGob?$AA@ 00454fbc scrcomg.obj - 0004:00003fc8 ??_C@_0BA@JGPN@CreateChildThis?$AA@ 00454fc8 scrcomg.obj - 0004:00003fd8 ??_C@_0P@JDJ@CreateChildGob?$AA@ 00454fd8 scrcomg.obj - 0004:00004008 ?_pszOom@@3PADA 00455008 scrcom.obj - 0004:0000400c ?_pszSyntax@@3PADA 0045500c scrcom.obj - 0004:00004010 ?_rgszop@@3QAUSZOP@@A 00455010 scrcom.obj - 0004:000041f0 ?_rgarop@@3QAUAROP@@A 004551f0 scrcom.obj - 0004:00004460 ?_rgpszKey@@3QAPADA 00455460 scrcom.obj - 0004:00004480 ?_rgtomeExp@@3QAUTOME@@A 00455480 scrcom.obj - 0004:000046e0 ?_rgtomeOp@@3QAUTOME@@A 004556e0 scrcom.obj - 0004:000047a4 ??_C@_08HOLA@Continue?$AA@ 004557a4 scrcom.obj - 0004:000047b0 ??_C@_05EABD@Break?$AA@ 004557b0 scrcom.obj - 0004:000047b8 ??_C@_05NNJC@While?$AA@ 004557b8 scrcom.obj - 0004:000047c0 ??_C@_03HPMG@End?$AA@ 004557c0 scrcom.obj - 0004:000047c4 ??_C@_04CCEF@Else?$AA@ 004557c4 scrcom.obj - 0004:000047cc ??_C@_04CPFE@Elif?$AA@ 004557cc scrcom.obj - 0004:000047d4 ??_C@_02BAJ@If?$AA@ 004557d4 scrcom.obj - 0004:000047d8 ??_C@_04POBJ@Goto?$AA@ 004557d8 scrcom.obj - 0004:000047e0 ??_C@_06GDJA@IfGoto?$AA@ 004557e0 scrcom.obj - 0004:000047e8 ??_C@_0L@KPKB@CopySubStr?$AA@ 004557e8 scrcom.obj - 0004:000047f4 ??_C@_06KDAM@LenStr?$AA@ 004557f4 scrcom.obj - 0004:000047fc ??_C@_0L@ICIJ@ConcatStrs?$AA@ 004557fc scrcom.obj - 0004:00004808 ??_C@_08HOLI@StrToNum?$AA@ 00455808 scrcom.obj - 0004:00004814 ??_C@_08PBFD@NumToStr?$AA@ 00455814 scrcom.obj - 0004:00004820 ??_C@_09JFKG@ScaleTime?$AA@ 00455820 scrcom.obj - 0004:0000482c ??_C@_09KOLA@MergeStrs?$AA@ 0045582c scrcom.obj - 0004:00004838 ??_C@_07MHIA@NukeStr?$AA@ 00455838 scrcom.obj - 0004:00004840 ??_C@_07ELLC@MoveStr?$AA@ 00455840 scrcom.obj - 0004:00004848 ??_C@_07PCEE@CopyStr?$AA@ 00455848 scrcom.obj - 0004:00004850 ??_C@_05PFIH@Pause?$AA@ 00455850 scrcom.obj - 0004:00004858 ??_C@_05LKIE@Match?$AA@ 00455858 scrcom.obj - 0004:00004860 ??_C@_08HGHE@NextCard?$AA@ 00455860 scrcom.obj - 0004:0000486c ??_C@_0M@GGGO@ShuffleList?$AA@ 0045586c scrcom.obj - 0004:00004878 ??_C@_07MFK@Shuffle?$AA@ 00455878 scrcom.obj - 0004:00004880 ??_C@_09CAHB@SetReturn?$AA@ 00455880 scrcom.obj - 0004:0000488c ??_C@_06JCBD@Return?$AA@ 0045588c scrcom.obj - 0004:00004894 ??_C@_04LKDK@Exit?$AA@ 00455894 scrcom.obj - 0004:0000489c ??_C@_02DNIN@Go?$AA@ 0045589c scrcom.obj - 0004:000048a0 ??_C@_04HAFI@GoNz?$AA@ 004558a0 scrcom.obj - 0004:000048a8 ??_C@_03JNBL@GoZ?$AA@ 004558a8 scrcom.obj - 0004:000048ac ??_C@_04PFCA@GoLe?$AA@ 004558ac scrcom.obj - 0004:000048b4 ??_C@_04HLIL@GoGe?$AA@ 004558b4 scrcom.obj - 0004:000048bc ??_C@_04PGMH@GoLt?$AA@ 004558bc scrcom.obj - 0004:000048c4 ??_C@_04HIGM@GoGt?$AA@ 004558c4 scrcom.obj - 0004:000048cc ??_C@_04NIHF@GoNe?$AA@ 004558cc scrcom.obj - 0004:000048d4 ??_C@_04FFPC@GoEq?$AA@ 004558d4 scrcom.obj - 0004:000048dc ??_C@_06ININ@Select?$AA@ 004558dc scrcom.obj - 0004:000048e4 ??_C@_07KEJC@RndList?$AA@ 004558e4 scrcom.obj - 0004:000048ec ??_C@_07OONJ@PopList?$AA@ 004558ec scrcom.obj - 0004:000048f4 ??_C@_07GBJG@DupList?$AA@ 004558f4 scrcom.obj - 0004:000048fc ??_C@_03JCDI@Rev?$AA@ 004558fc scrcom.obj - 0004:00004900 ??_C@_03FPBH@Rot?$AA@ 00455900 scrcom.obj - 0004:00004904 ??_C@_04BCL@Swap?$AA@ 00455904 scrcom.obj - 0004:0000490c ??_C@_03FBGG@Pop?$AA@ 0045590c scrcom.obj - 0004:00004910 ??_C@_03MKPO@Dup?$AA@ 00455910 scrcom.obj - 0004:00004914 ??_C@_02LCLA@Le?$AA@ 00455914 scrcom.obj - 0004:00004918 ??_C@_02DMBL@Ge?$AA@ 00455918 scrcom.obj - 0004:0000491c ??_C@_02LBFH@Lt?$AA@ 0045591c scrcom.obj - 0004:00004920 ??_C@_02DPPM@Gt?$AA@ 00455920 scrcom.obj - 0004:00004924 ??_C@_02JPOF@Ne?$AA@ 00455924 scrcom.obj - 0004:00004928 ??_C@_02BCGC@Eq?$AA@ 00455928 scrcom.obj - 0004:0000492c ??_C@_04ENMP@LNot?$AA@ 0045592c scrcom.obj - 0004:00004934 ??_C@_04HPKA@LXor?$AA@ 00455934 scrcom.obj - 0004:0000493c ??_C@_04LILD@BNot?$AA@ 0045593c scrcom.obj - 0004:00004944 ??_C@_04IKNM@BXor?$AA@ 00455944 scrcom.obj - 0004:0000494c ??_C@_03FEFN@BOr?$AA@ 0045594c scrcom.obj - 0004:00004950 ??_C@_04CJLN@BAnd?$AA@ 00455950 scrcom.obj - 0004:00004958 ??_C@_06NIPH@MulDiv?$AA@ 00455958 scrcom.obj - 0004:00004960 ??_C@_03OAMN@Rnd?$AA@ 00455960 scrcom.obj - 0004:00004964 ??_C@_03PGJO@Dec?$AA@ 00455964 scrcom.obj - 0004:00004968 ??_C@_03PCMM@Inc?$AA@ 00455968 scrcom.obj - 0004:0000496c ??_C@_03GIFK@Neg?$AA@ 0045596c scrcom.obj - 0004:00004970 ??_C@_03CEPH@Abs?$AA@ 00455970 scrcom.obj - 0004:00004974 ??_C@_03PJNJ@Mod?$AA@ 00455974 scrcom.obj - 0004:00004978 ??_C@_03LANL@Div?$AA@ 00455978 scrcom.obj - 0004:0000497c ??_C@_03FPMJ@Mul?$AA@ 0045597c scrcom.obj - 0004:00004980 ??_C@_03KJKL@Sub?$AA@ 00455980 scrcom.obj - 0004:00004984 ??_C@_03KPJN@Add?$AA@ 00455984 scrcom.obj - 0004:00004988 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 00455988 scrcom.obj - 0004:00004998 ??_C@_0BA@JIOM@Undefined?5label?$AA@ 00455998 scrcom.obj - 0004:000049a8 ??_C@_0L@MOIL@bad?5opcode?$AA@ 004559a8 scrcom.obj - 0004:000049b4 ??_C@_08DIAC@bad?5rtvn?$AA@ 004559b4 scrcom.obj - 0004:000049c0 ??_C@_0BA@ILFG@duplicate?5label?$AA@ 004559c0 scrcom.obj - 0004:000049d0 ??_C@_03PAAF@0?$CFx?$AA@ 004559d0 scrcom.obj - 0004:000049d4 ??_C@_0BC@EEMM@Variable?5expected?$AA@ 004559d4 scrcom.obj - 0004:000049e8 ??_C@_0N@CDF@Unknown?5name?$AA@ 004559e8 scrcom.obj - 0004:000049f8 ??_C@_07IKFO@bad?5etn?$AA@ 004559f8 scrcom.obj - 0004:00004a00 ??_C@_0BI@OPJE@bad?5opl?5on?5top?5of?5stack?$AA@ 00455a00 scrcom.obj - 0004:00004a18 ??_C@_09DMGD@bad?5stack?$AA@ 00455a18 scrcom.obj - 0004:00004a24 ??_C@_0DI@JMGD@I?5think?5this?5will?5only?5happen?5if@ 00455a24 scrcom.obj - 0004:00004a5c ??_C@_0BN@EOHH@why?5did?5_SetDepth?5move?5this?$DP?$AA@ 00455a5c scrcom.obj - 0004:00004a7c ??_C@_0BO@BAFP@shouldn?8t?5be?5a?5second?5operand?$AA@ 00455a7c scrcom.obj - 0004:00004a9c ??_C@_09LLOH@nil?5ietn3?$AA@ 00455a9c scrcom.obj - 0004:00004aa8 ??_C@_0BC@IOPJ@bad?5comma?5request?$AA@ 00455aa8 scrcom.obj - 0004:00004abc ??_C@_0BK@JLND@fsccTop?5not?5set?5for?5label?$AA@ 00455abc scrcom.obj - 0004:00004ad8 ??_C@_0O@ENEB@non?9nil?5ietn2?$AA@ 00455ad8 scrcom.obj - 0004:00004ae8 ??_C@_0O@LCPI@non?9nil?5ietn1?$AA@ 00455ae8 scrcom.obj - 0004:00004af8 ??_C@_0O@DAAC@what?5is?5this?$DP?$AA@ 00455af8 scrcom.obj - 0004:00004b08 ??_C@_0O@OHNG@non?9nil?5ietn3?$AA@ 00455b08 scrcom.obj - 0004:00004b18 ??_C@_09OOMJ@nil?5ietn1?$AA@ 00455b18 scrcom.obj - 0004:00004b24 ??_C@_0CB@CFOM@fsccTop?5but?5not?5fsccWantVoid?5set@ 00455b24 scrcom.obj - 0004:00004b48 ??_C@_0BA@EGEJ@unexpected?5Elif?$AA@ 00455b48 scrcom.obj - 0004:00004b58 ??_C@_0BB@PCCB@why?5are?5we?5here?$DP?$AA@ 00455b58 scrcom.obj - 0004:00004b6c ??_C@_08NKND@bad?5cstd?$AA@ 00455b6c scrcom.obj - 0004:00004b78 ??_C@_0P@GCAH@unexpected?5End?$AA@ 00455b78 scrcom.obj - 0004:00004b88 ??_C@_0BB@NKHK@unexpected?5Break?$AA@ 00455b88 scrcom.obj - 0004:00004b9c ??_C@_0BE@DCMB@unexpected?5Continue?$AA@ 00455b9c scrcom.obj - 0004:00004bb0 ??_C@_0BA@ELFI@unexpected?5Else?$AA@ 00455bb0 scrcom.obj - 0004:00004bc0 ??_C@_0BF@EOCH@bad?5array?5name?5etn?52?$AA@ 00455bc0 scrcom.obj - 0004:00004bd8 ??_C@_0BD@LMJG@bad?5array?5name?5etn?$AA@ 00455bd8 scrcom.obj - 0004:00004bec ??_C@_0BG@OLCA@bad?5remote?5name?5etn?52?$AA@ 00455bec scrcom.obj - 0004:00004c04 ??_C@_0BE@HJAN@bad?5remote?5name?5etn?$AA@ 00455c04 scrcom.obj - 0004:00004c18 ??_C@_0BG@ECI@bad?5global?5name?5etn?52?$AA@ 00455c18 scrcom.obj - 0004:00004c30 ??_C@_0BE@DHKA@bad?5global?5name?5etn?$AA@ 00455c30 scrcom.obj - 0004:00004c44 ??_C@_0BE@HHAL@bad?5this?5name?5etn?52?$AA@ 00455c44 scrcom.obj - 0004:00004c58 ??_C@_0BC@EAGK@bad?5this?5name?5etn?$AA@ 00455c58 scrcom.obj - 0004:00004c6c ??_C@_0BI@CDHM@Using?5void?5return?5value?$AA@ 00455c6c scrcom.obj - 0004:00004c84 ??_C@_0BL@ILLH@Wrong?5number?5of?5parameters?$AA@ 00455c84 scrcom.obj - 0004:00004ca0 ??_C@_0BB@JCMG@unknown?5function?$AA@ 00455ca0 scrcom.obj - 0004:00004cb4 ??_C@_0N@CHNH@bad?5name?5etn?$AA@ 00455cb4 scrcom.obj - 0004:00004cc4 ??_C@_08LLHB@bad?5istn?$AA@ 00455cc4 scrcom.obj - 0004:00004cd0 ??_C@_0BK@OOEF@Using?5keyword?5as?5variable?$AA@ 00455cd0 scrcom.obj - 0004:00004cec ??_C@_0O@HPI@error?5not?5set?$AA@ 00455cec scrcom.obj - 0004:00004cfc ??_C@_0BJ@ENGF@unexpected?5end?5of?5source?$AA@ 00455cfc scrcom.obj - 0004:00004d18 ??_C@_0BO@IHHD@why?5wasn?8t?5an?5error?5reported?$DP?$AA@ 00455d18 scrcom.obj - 0004:00004d38 ??_C@_0N@JHFK@?$CFd?5?1?$CK0x?$CFx?$CK?1?5?$AA@ 00455d38 scrcom.obj - 0004:00004d48 ??_C@_08DLOH@$L_?$CF04x?5?$AA@ 00455d48 scrcom.obj - 0004:00004d54 ??_C@_0BB@HKCC@bad?5op?5in?5script?$AA@ 00455d54 scrcom.obj - 0004:00004d68 ??_C@_0L@PCEF@bad?5var?5op?$AA@ 00455d68 scrcom.obj - 0004:00004d74 ??_C@_02IIMK@?$DO?$HO?$AA@ 00455d74 scrcom.obj - 0004:00004d78 ??_C@_02KFJP@?$DM?$HO?$AA@ 00455d78 scrcom.obj - 0004:00004d7c ??_C@_03MCIB@?$DO?3?3?$AA@ 00455d7c scrcom.obj - 0004:00004d80 ??_C@_03GGKM@?$DM?3?3?$AA@ 00455d80 scrcom.obj - 0004:00004d84 ??_C@_02IEHK@?$DO?4?$AA@ 00455d84 scrcom.obj - 0004:00004d88 ??_C@_02KJCP@?$DM?4?$AA@ 00455d88 scrcom.obj - 0004:00004d8c ??_C@_02KKOH@?$CC?5?$AA@ 00455d8c scrcom.obj - 0004:00004d90 ??_C@_01HMO@?$CC?$AA@ 00455d90 scrcom.obj - 0004:00004d94 ??_C@_0BG@OHKF@bad?5internal?5variable?$AA@ 00455d94 scrcom.obj - 0004:00004dac ??_C@_0N@MBNM@bad?5variable?$AA@ 00455dac scrcom.obj - 0004:00004dbc ??_C@_0BE@DJNF@bad?5var?5instruction?$AA@ 00455dbc scrcom.obj - 0004:00004dd0 ??_C@_0BA@OBOI@bad?5instruction?$AA@ 00455dd0 scrcom.obj - 0004:00004de0 ??_C@_08BFCK@?$EAL_?$CF04x?5?$AA@ 00455de0 scrcom.obj - 0004:00004dec ??_C@_0DF@MNKJ@Script?5version?5doesn?8t?5match?5scr@ 00455dec scrcom.obj - 0004:00004e24 ??_C@_0BN@HMNK@No?5version?5numbers?5on?5script?$AA@ 00455e24 scrcom.obj - 0004:00004e44 ??_C@_0L@CCNC@bad?5script?$AA@ 00455e44 scrcom.obj - 0004:00004e50 ??_C@_0P@JBBE@bad?5identifier?$AA@ 00455e50 scrcom.obj - 0004:00004e60 ??_C@_04GBMF@?$FL?$CFd?$FN?$AA@ 00455e60 scrcom.obj - 0004:00004ea4 ??_C@_0BC@MABH@shrinking?5failed?$CB?$AA@ 00455ea4 mbmp.obj - 0004:00004eb8 ??_C@_0BN@HMNP@Empty?5source?5bitmap?5for?5MBMP?$AA@ 00455eb8 mbmp.obj - 0004:00004ed8 ??_C@_0BC@JEGH@Invalid?5rectangle?$AA@ 00455ed8 mbmp.obj - 0004:00004eec ??_C@_0BC@ICFM@Wrong?5sized?5block?$AA@ 00455eec mbmp.obj - 0004:00004f00 ??_C@_0BC@FLNL@_hqrgb?5wrong?5size?$AA@ 00455f00 mbmp.obj - 0004:00004f14 ??_C@_0O@JBAC@_cbRgcb?5wrong?$AA@ 00455f14 mbmp.obj - 0004:00004f24 ??_C@_0BJ@GIGP@compressed?5bitmap?5is?5bad?$AA@ 00455f24 mbmp.obj - 0004:00004f40 ??_C@_0BG@EIAF@palette?5is?5wrong?5size?$AA@ 00455f40 mbmp.obj - 0004:00004f58 ??_C@_0BH@FEMH@Bitmap?5data?5wrong?5size?$AA@ 00455f58 mbmp.obj - 0004:00004f70 ??_C@_0BH@DGGF@Empty?5bitmap?5rectangle?$AA@ 00455f70 mbmp.obj - 0004:00004f88 ??_C@_0DE@EEJE@bad?5compression?5type?5or?5bitmap?5f@ 00455f88 mbmp.obj - 0004:00004fbc ??_C@_0BE@GKKF@not?5an?58?9bit?5bitmap?$AA@ 00455fbc mbmp.obj - 0004:00004fd0 ??_C@_0BA@NOIG@bad?5bitmap?5file?$AA@ 00455fd0 mbmp.obj - 0004:0000503c ??_C@_08KPJG@bad?5hpic?$AA@ 0045603c pic.obj - 0004:00005068 ?_fEnableWarnings@@3HA 00456068 chomp.obj - 0004:0000506c ??_C@_02DILL@?$CFs?$AA@ 0045606c chomp.obj - 0004:00005070 ??_C@_0IP@EPBP@Usage?3?6?5?5?5chomp?5?$FL?1c?$FN?5?$DMsrcTextFil@ 00456070 chomp.obj - 0004:00005100 ??_C@_0CD@LHCB@Couldn?8t?5create?5destination?5file@ 00456100 chomp.obj - 0004:00005124 ??_C@_0CN@EBEA@Couldn?8t?5open?5source?5file?5as?5a?5c@ 00456124 chomp.obj - 0004:00005154 ??_C@_0CA@GMJL@Missing?5destination?5file?5name?6?6?$AA@ 00456154 chomp.obj - 0004:00005174 ??_C@_0BL@IDH@Missing?5source?5file?5name?6?6?$AA@ 00456174 chomp.obj - 0004:00005190 ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 00456190 chomp.obj - 0004:000051a0 ??_C@_0BL@INKD@Too?5many?5files?5specified?6?6?$AA@ 004561a0 chomp.obj - 0004:000051bc ??_C@_0BK@FGBF@Bad?5command?5line?5option?6?6?$AA@ 004561bc chomp.obj - 0004:000051d8 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 004561d8 chomp.obj - 0004:00005214 ??_C@_0EK@HCFD@?6Microsoft?5?$CIR?$CJ?5Chunky?5File?5Compi@ 00456214 chomp.obj - 0004:00005260 ??_C@_01BJG@?6?$AA@ 00456260 chomp.obj - 0004:00005264 ??_C@_04OFDJ@?3?5?$CFs?$AA@ 00456264 chomp.obj - 0004:0000526c ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 0045626c chomp.obj - 0004:00005280 ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 00456280 chomp.obj - 0004:00005290 ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 00456290 chomp.obj - 0004:000052a0 ??_C@_05LCJC@?$CF08lx?$AA@ 004562a0 chomp.obj - 0004:000052a8 ??_C@_04JGFO@?$CF04x?$AA@ 004562a8 chomp.obj - 0004:000052b0 ??_C@_04OBKB@?$CF02x?$AA@ 004562b0 chomp.obj - 0004:000052b8 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 004562b8 chomp.obj - 0004:000052c4 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 004562c4 chomp.obj - 0004:000052d4 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 004562d4 chomp.obj - 0004:000052e4 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 004562e4 chomp.obj - 0004:00005320 ??_C@_03HHKO@?$CFs?6?$AA@ 00456320 mssio.obj - 0004:00005484 __fltused 00456484 LIBC:fpinit.obj - 0004:00005488 __ldused 00456488 LIBC:fpinit.obj - 0004:0000548c ___fastflag 0045648c LIBC:fpinit.obj - 0004:00005490 __adjust_fdiv 00456490 LIBC:fpinit.obj - 0004:00005494 __FPinit 00456494 LIBC:fpinit.obj - 0004:00005498 __FPmtinit 00456498 LIBC:fpinit.obj - 0004:0000549c __FPmtterm 0045649c LIBC:fpinit.obj - 0004:000054a0 __iob 004564a0 LIBC:_file.obj - 0004:00005720 __lastiob 00456720 LIBC:_file.obj - 0004:00005724 __aenvptr 00456724 LIBC:crt0.obj - 0004:00005728 __wenvptr 00456728 LIBC:crt0.obj - 0004:0000572c __aexit_rtn 0045672c LIBC:crt0.obj - 0004:00005730 _errno 00456730 LIBC:crt0dat.obj - 0004:00005734 __doserrno 00456734 LIBC:crt0dat.obj - 0004:00005738 __umaskval 00456738 LIBC:crt0dat.obj - 0004:0000573c __osver 0045673c LIBC:crt0dat.obj - 0004:00005740 __winver 00456740 LIBC:crt0dat.obj - 0004:00005744 __winmajor 00456744 LIBC:crt0dat.obj - 0004:00005748 __winminor 00456748 LIBC:crt0dat.obj - 0004:0000574c ___argc 0045674c LIBC:crt0dat.obj - 0004:00005750 ___argv 00456750 LIBC:crt0dat.obj - 0004:00005754 ___wargv 00456754 LIBC:crt0dat.obj - 0004:00005758 __environ 00456758 LIBC:crt0dat.obj - 0004:0000575c ___initenv 0045675c LIBC:crt0dat.obj - 0004:00005760 __wenviron 00456760 LIBC:crt0dat.obj - 0004:00005764 ___winitenv 00456764 LIBC:crt0dat.obj - 0004:00005768 __pgmptr 00456768 LIBC:crt0dat.obj - 0004:0000576c __wpgmptr 0045676c LIBC:crt0dat.obj - 0004:00005770 __exitflag 00456770 LIBC:crt0dat.obj - 0004:00005774 __C_Termination_Done 00456774 LIBC:crt0dat.obj - 0004:00005778 __pnhHeap 00456778 LIBC:malloc.obj - 0004:000057e0 __cfltcvt_tab 004567e0 LIBC:cmiscdat.obj - 0004:00005810 __stdbuf 00456810 LIBC:_sftbuf.obj - 0004:00005820 ___nullstring 00456820 LIBC:output.obj - 0004:00005834 ___wnullstring 00456834 LIBC:output.obj - 0004:00005838 __XcptActTab 00456838 LIBC:winxfltr.obj - 0004:000058b0 __First_FPE_Indx 004568b0 LIBC:winxfltr.obj - 0004:000058b4 __Num_FPE 004568b4 LIBC:winxfltr.obj - 0004:000058b8 __XcptActTabCount 004568b8 LIBC:winxfltr.obj - 0004:000058bc __fpecode 004568bc LIBC:winxfltr.obj - 0004:000058c0 __pxcptinfoptrs 004568c0 LIBC:winxfltr.obj - 0004:000058c8 __mbctype 004568c8 LIBC:mbctype.obj - 0004:000059cc ___mbcodepage 004569cc LIBC:mbctype.obj - 0004:000059d0 ___mblcid 004569d0 LIBC:mbctype.obj - 0004:000059d8 ___mbulinfo 004569d8 LIBC:mbctype.obj - 0004:00005ae0 __nhandle 00456ae0 LIBC:ioinit.obj - 0004:00005ae8 __osfile 00456ae8 LIBC:ioinit.obj - 0004:00005b28 __osfhnd 00456b28 LIBC:ioinit.obj - 0004:00005c28 __pipech 00456c28 LIBC:ioinit.obj - 0004:00005c68 __heap_desc 00456c68 LIBC:heapinit.obj - 0004:00005c7c __heap_resetsize 00456c7c LIBC:heapinit.obj - 0004:00005c80 __amblksiz 00456c80 LIBC:heapinit.obj - 0004:00005c84 __heap_regionsize 00456c84 LIBC:heapinit.obj - 0004:00005c88 __heap_maxregsize 00456c88 LIBC:heapinit.obj - 0004:00005ef8 __adbgmsg 00456ef8 LIBC:crt0msg.obj - 0004:00005efc __newmode 00456efc LIBC:_newmode.obj - 0004:00005f00 ___mb_cur_max 00456f00 LIBC:nlsdata1.obj - 0004:00005f08 ___decimal_point 00456f08 LIBC:nlsdata1.obj - 0004:00005f0c ___decimal_point_length 00456f0c LIBC:nlsdata1.obj - 0004:00005f10 __pctype 00456f10 LIBC:ctype.obj - 0004:00005f14 __pwctype 00456f14 LIBC:ctype.obj - 0004:00005f18 __ctype 00456f18 LIBC:ctype.obj - 0004:00006150 __cflush 00457150 LIBC:fflush.obj - 0004:000061f8 ___lc_handle 004571f8 LIBC:nlsdata2.obj - 0004:00006210 ___lc_codepage 00457210 LIBC:nlsdata2.obj - 0004:00006234 ___invalid_mb_chars 00457234 LIBC:setmbval.obj - 0004:000063a8 __pow10pos 004573a8 LIBC:constpow.obj - 0004:00006508 __pow10neg 00457508 LIBC:constpow.obj - 0004:00006664 ___xc_a 00457664 LIBC:crt0init.obj - 0004:000066e8 ___xc_z 004576e8 LIBC:crt0init.obj - 0004:000066ec ___xi_a 004576ec LIBC:crt0init.obj - 0004:000066f8 ___xi_z 004576f8 LIBC:crt0init.obj - 0004:000066fc ___xp_a 004576fc LIBC:crt0init.obj - 0004:00006704 ___xp_z 00457704 LIBC:crt0init.obj - 0004:00006708 ___xt_a 00457708 LIBC:crt0init.obj - 0004:0000670c ___xt_z 0045770c LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00458000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00458014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00458028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 0045803c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 00458050 winmm:WINMM.dll - 0005:00000064 NULL_IMPORT_DESCRIPTOR 00458064 kernel32:KERNEL32.dll - 0005:00000168 __imp__DeleteEnhMetaFile@4 00458168 gdi32:GDI32.dll - 0005:0000016c __imp__GetEnhMetaFileBits@12 0045816c gdi32:GDI32.dll - 0005:00000170 __imp__GetEnhMetaFileHeader@12 00458170 gdi32:GDI32.dll - 0005:00000174 __imp__GetEnhMetaFileA@4 00458174 gdi32:GDI32.dll - 0005:00000178 __imp__SetWinMetaFileBits@16 00458178 gdi32:GDI32.dll - 0005:0000017c \177GDI32_NULL_THUNK_DATA 0045817c gdi32:GDI32.dll - 0005:00000180 __imp__GlobalReAlloc@12 00458180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GlobalSize@4 00458184 kernel32:KERNEL32.dll - 0005:00000188 __imp__CompareStringA@24 00458188 kernel32:KERNEL32.dll - 0005:0000018c __imp__WideCharToMultiByte@32 0045818c kernel32:KERNEL32.dll - 0005:00000190 __imp__IsBadWritePtr@8 00458190 kernel32:KERNEL32.dll - 0005:00000194 __imp__GetCurrentThreadId@0 00458194 kernel32:KERNEL32.dll - 0005:00000198 __imp__CreateFileA@28 00458198 kernel32:KERNEL32.dll - 0005:0000019c __imp__CloseHandle@4 0045819c kernel32:KERNEL32.dll - 0005:000001a0 __imp__DeleteFileA@4 004581a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__FlushFileBuffers@4 004581a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__SetFilePointer@16 004581a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__SetEndOfFile@4 004581ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__ReadFile@20 004581b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__WriteFile@20 004581b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__EnterCriticalSection@4 004581b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__LeaveCriticalSection@4 004581bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__GetTempPathA@8 004581c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__GetLastError@0 004581c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__GetFileAttributesA@4 004581c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__MoveFileA@8 004581cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__GetEnvironmentVariableA@12 004581d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__MultiByteToWideChar@24 004581d4 kernel32:KERNEL32.dll - 0005:000001d8 __imp__InitializeCriticalSection@4 004581d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__GlobalFree@4 004581dc kernel32:KERNEL32.dll - 0005:000001e0 __imp__GlobalAlloc@8 004581e0 kernel32:KERNEL32.dll - 0005:000001e4 __imp__IsBadReadPtr@8 004581e4 kernel32:KERNEL32.dll - 0005:000001e8 __imp__DeleteCriticalSection@4 004581e8 kernel32:KERNEL32.dll - 0005:000001ec __imp__SearchPathA@24 004581ec kernel32:KERNEL32.dll - 0005:000001f0 __imp__GetFullPathNameA@16 004581f0 kernel32:KERNEL32.dll - 0005:000001f4 __imp__SetStdHandle@8 004581f4 kernel32:KERNEL32.dll - 0005:000001f8 __imp__LoadLibraryA@4 004581f8 kernel32:KERNEL32.dll - 0005:000001fc __imp__ExitProcess@4 004581fc kernel32:KERNEL32.dll - 0005:00000200 __imp__GetProcAddress@8 00458200 kernel32:KERNEL32.dll - 0005:00000204 __imp__GetStartupInfoA@4 00458204 kernel32:KERNEL32.dll - 0005:00000208 __imp__GetFileType@4 00458208 kernel32:KERNEL32.dll - 0005:0000020c __imp__GetModuleHandleA@4 0045820c kernel32:KERNEL32.dll - 0005:00000210 __imp__VirtualAlloc@16 00458210 kernel32:KERNEL32.dll - 0005:00000214 __imp__VirtualFree@12 00458214 kernel32:KERNEL32.dll - 0005:00000218 __imp__GetEnvironmentStrings@0 00458218 kernel32:KERNEL32.dll - 0005:0000021c __imp__GetCommandLineA@0 0045821c kernel32:KERNEL32.dll - 0005:00000220 __imp__GetVersion@0 00458220 kernel32:KERNEL32.dll - 0005:00000224 __imp__GetStdHandle@4 00458224 kernel32:KERNEL32.dll - 0005:00000228 __imp__GetOEMCP@0 00458228 kernel32:KERNEL32.dll - 0005:0000022c __imp__RtlUnwind@16 0045822c kernel32:KERNEL32.dll - 0005:00000230 __imp__UnhandledExceptionFilter@4 00458230 kernel32:KERNEL32.dll - 0005:00000234 __imp__GetModuleFileNameA@12 00458234 kernel32:KERNEL32.dll - 0005:00000238 __imp__GetACP@0 00458238 kernel32:KERNEL32.dll - 0005:0000023c __imp__GetCPInfo@8 0045823c kernel32:KERNEL32.dll - 0005:00000240 \177KERNEL32_NULL_THUNK_DATA 00458240 kernel32:KERNEL32.dll - 0005:00000244 __imp__CharUpperBuffA@8 00458244 user32:USER32.dll - 0005:00000248 \177USER32_NULL_THUNK_DATA 00458248 user32:USER32.dll - 0005:0000024c __imp__timeGetTime@0 0045824c winmm:WINMM.dll - 0005:00000250 \177WINMM_NULL_THUNK_DATA 00458250 winmm:WINMM.dll - 0005:00000254 \177comdlg32_NULL_THUNK_DATA 00458254 comdlg32:comdlg32.dll - - entry point at 0001:000473da - - Static symbols - - 0001:000463f0 _$$8000 004473f0 f mssio.obj - 0001:00046450 _$$1000 00447450 f mssio.obj - 0001:000460d0 _$$1000 004470d0 f chomp.obj - 0001:000460f0 _$$a200 004470f0 f chomp.obj - 0001:00046140 _$$8000 00447140 f chomp.obj - 0001:000456d0 _$$1000 004466d0 f pic.obj - 0001:00045750 _$$a200 00446750 f pic.obj - 0001:00045770 _$$8000 00446770 f pic.obj - 0001:00044e40 _$$1000 00445e40 f picwin.obj - 0001:000454c0 _$$a200 004464c0 f picwin.obj - 0001:00045520 _$$8000 00446520 f picwin.obj - 0001:00043a30 _$$1000 00444a30 f midi.obj - 0001:00044b30 _$$a200 00445b30 f midi.obj - 0001:00044c00 _$$8000 00445c00 f midi.obj - 0001:00041ff0 _$$1000 00442ff0 f mbmp.obj - 0001:00042ee0 _$$a200 00443ee0 f mbmp.obj - 0001:00043010 _$$8000 00444010 f mbmp.obj - 0001:00040f40 _$$8000 00441f40 f screxe.obj - 0001:00040f60 _$$1000 00441f60 f screxe.obj - 0001:000416c0 _$$9000 004426c0 f screxe.obj - 0001:00039360 _$$1000 0043a360 f scrcom.obj - 0001:00040e00 _$$8000 00441e00 f scrcom.obj - 0001:00038c60 _$$e200 00439c60 f scrcomg.obj - 0001:00038c80 _$$1000 00439c80 f scrcomg.obj - 0001:00038ca0 _$$8000 00439ca0 f scrcomg.obj - 0001:00036b70 _$$1000 00437b70 f stream.obj - 0001:00038850 _$$8000 00439850 f stream.obj - 0001:00034e60 _$$1000 00435e60 f lex.obj - 0001:00036610 _$$8000 00437610 f lex.obj - 0001:00031aa0 _$$1000 00432aa0 f groups2.obj - 0001:00034570 _$$8000 00435570 f groups2.obj - 0001:0002afe0 _$$1000 0042bfe0 f groups.obj - 0001:000311a0 _$$8000 004321a0 f groups.obj - 0001:00029a30 _$$1000 0042aa30 f chse.obj - 0001:0002a820 _$$8000 0042b820 f chse.obj - 0001:00021980 _$$1000 00422980 f chcm.obj - 0001:000253d0 _$$8000 004263d0 f chcm.obj - 0001:000291c0 _$$e200 0042a1c0 f chcm.obj - 0001:0001f4a0 _$$8000 004204a0 f fniwin.obj - 0001:0001f940 _$$1000 00420940 f fniwin.obj - 0001:000212c0 _$$9000 004222c0 f fniwin.obj - 0001:000212e0 _$$a000 004222e0 f fniwin.obj - 0001:00021300 _$$b000 00422300 f fniwin.obj - 0001:0001e800 _$$1000 0041f800 f filewin.obj - 0001:0001f480 _$$8000 00420480 f filewin.obj - 0001:0001a100 _$$8000 0041b100 f file.obj - 0001:0001a660 _$$1000 0041b660 f file.obj - 0001:0001e080 _$$9000 0041f080 f file.obj - 0001:0001e0a0 _$$a000 0041f0a0 f file.obj - 0001:0001e0c0 _$$b000 0041f0c0 f file.obj - 0001:00019300 _$$1000 0041a300 f crf.obj - 0001:0001a0a0 _$$8000 0041b0a0 f crf.obj - 0001:00011a10 _$$1000 00412a10 f codkauai.obj - 0001:00019020 _$$8000 0041a020 f codkauai.obj - 0001:00010a80 _$$1000 00411a80 f codec.obj - 0001:000114e0 _$$8000 004124e0 f codec.obj - 0001:00007730 _$$1000 00408730 f chunk.obj - 0001:00010420 _$$8000 00411420 f chunk.obj - 0001:00007320 _$$1000 00408320 f memwin.obj - 0001:000073f0 _$$8000 004083f0 f memwin.obj - 0001:00004b40 _$$1000 00405b40 f utilstr.obj - 0001:00006e10 _$$8000 00407e10 f utilstr.obj - 0001:00004250 _$$1000 00405250 f utilrnd.obj - 0001:00004730 _$$8000 00405730 f utilrnd.obj - 0001:00003320 _$$1000 00404320 f utilmem.obj - 0001:00003d80 _$$8000 00404d80 f utilmem.obj - 0001:00002440 _$$1000 00403440 f utilint.obj - 0001:00002dd0 _$$8000 00403dd0 f utilint.obj - 0001:00001ab0 _$$8000 00402ab0 f utilerro.obj - 0001:00001ff0 _$$1000 00402ff0 f utilerro.obj - 0001:00002220 _$$9000 00403220 f utilerro.obj - 0001:00002240 _$$a000 00403240 f utilerro.obj - 0001:00002260 _$$b000 00403260 f utilerro.obj - 0001:00001820 _$$1000 00402820 f utilcopy.obj - 0001:00001a90 _$$8000 00402a90 f utilcopy.obj - 0001:00000b10 _$$1000 00401b10 f base.obj - 0001:00001490 _$$8000 00402490 f base.obj - 0001:000004d0 _$$8000 004014d0 f util.obj - 0001:000004f0 _$$1000 004014f0 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:0004a7b0 _strncnt 0044b7b0 f LIBC:aw_map.obj - 0001:0004a5fc __before 0044b5fc f LIBC:heapadd.obj - 0001:0004a0c7 _flsall 0044b0c7 f LIBC:fflush.obj - 0001:00049638 __abstract_cw 0044a638 f LIBC:ieee87.obj - 0001:000496cb __hw_cw 0044a6cb f LIBC:ieee87.obj - 0001:0004938b __heap_new_region 0044a38b f LIBC:heapgrow.obj - 0001:000490e9 __heap_grow_emptylist 0044a0e9 f LIBC:heapinit.obj - 0001:00048d9d _getSystemCP 00449d9d f LIBC:mbctype.obj - 0001:00048dd8 _CPtoLCID 00449dd8 f LIBC:mbctype.obj - 0001:00048e17 _setSBCS 00449e17 f LIBC:mbctype.obj - 0001:00048bd3 _parse_cmdline 00449bd3 f LIBC:stdargv.obj - 0001:00048a45 _xcptlookup 00449a45 f LIBC:winxfltr.obj - 0001:00048848 __unwind_handler 00449848 f LIBC:exsup.obj - 0001:0004874b _write_char 0044974b f LIBC:output.obj - 0001:0004878b _write_multi_char 0044978b f LIBC:output.obj - 0001:000487bc _write_string 004497bc f LIBC:output.obj - 0001:000487f3 _get_int_arg 004497f3 f LIBC:output.obj - 0001:00048802 _get_int64_arg 00449802 f LIBC:output.obj - 0001:00048816 _get_short_arg 00449816 f LIBC:output.obj - 0001:00047bd1 __cftoe_g 00448bd1 f LIBC:cvt.obj - 0001:00047cf2 __cftof_g 00448cf2 f LIBC:cvt.obj - 0001:00047e0e __shift 00448e0e f LIBC:cvt.obj - 0001:000476da __heap_expand_block 004486da f LIBC:realloc.obj - 0001:00047545 _doexit 00448545 f LIBC:crt0dat.obj - 0001:000475c4 __initterm 004485c4 f LIBC:crt0dat.obj - -FIXUPS: 484dd fffffec9 18 10 ffffffa3 14 c ffffff8b 5 a fffff233 ffffff46 -FIXUPS: 474c2 12 44 13 13 132b fffffee9 2d f e c 3d 55 fffffdbe 16 33 1f -FIXUPS: 4866d 23 23 fffffe56 12 11 11 5d 12 fffffe8a c 5 10 10 5 1c 9 15 -FIXUPS: 484b5 1f 11d1 cb 3a 37 fffff662 45 46 29 fffffa9e 21 c1 1c 48 13 -FIXUPS: 48b1f ca 5a 28 1f 17 30 35 1d 36 47 11 2c 16 13 29 fffffa90 9a -FIXUPS: 49b9e 19 fffffef2 15 2a 11 fffffdf5 ffffff4e fffff7c8 4c 9b 1d -FIXUPS: 49175 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 14 1c 2d 16 1d -FIXUPS: 4ad1c fffffafe 64 ffffff44 ffffff99 fffffe9a 17 24 fffffd3d c 75 -FIXUPS: 4a3fb 96 d c 32 fffffe42 ffffffae ffffff6f 18 ffffff70 d 35 25 -FIXUPS: 4a149 fffffcff b8 78 44 10 fffffbb0 12 148c b 21 42 37 2f 19 2b -FIXUPS: 4b140 fffffc72 1a fffffb77 17 67 e 177 1a 1d 12 1f 20 d f 13 17 -FIXUPS: 4ac27 22 5b 16 22 f 22 d8d 18 b0 9 e 9 29 4d fffffc51 c2 75 c 1e -FIXUPS: 4ba21 c fffffd3a 38 fffffc2c 10 10 18 a1 3e 24 d 41 34 fffffd88 -FIXUPS: 4b31d 2b 1a 1f 19b9 b 1b fffffd01 47 3e 110 fffffcde ffffff4f ffffffaf -FIXUPS: 4c7f8 ffffff87 fffffead f3 fffffe7e fffffe65 1a 65 1d 2b c 10 c -FIXUPS: 4bdbe c5 92 10e 49 c6 4f fffff8ed 14 fffb574a 1d 13 1d e 32 13 -FIXUPS: 12a9 2c 24 e 13 1f 13 1d e 13 1f e 32 e 13 1f 30 30 4b994 ffffff8c -FIXUPS: 4cdb5 d 20 d ffffff40 fffb57ff 6b 30 ffffef0e 42 e 22 30 e fffffa9b -FIXUPS: 1049 f 21 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 18 f19 38 1f -FIXUPS: 212e 1b e 42 26 d 1d 23 1c 36 d 4f d 7b d 4a 20 12 1b 2d d 20 29 -FIXUPS: 2476 21 22 e 13 1f fffff8a8 1e 17 33 10 19 25 b 13 10 2b d 31 d -FIXUPS: 1f2f d 2c d 13 2e d 20 35 d a 18 b b 19 35 5 17 fffff8bf d 28 42 -FIXUPS: 1a37 1e 9 90 5 66 c c 14 1f 39 1c 11 13 32 d 32 d 10 27 d a 9 e -FIXUPS: 1d05 24 23 48 c2b 43 d d 7b ffffeb2b 27 f 21 30 30 70 30 29 14 -FIXUPS: 176e e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f e 5 192b 12 e 13 fffff348 -FIXUPS: 262f 53 d 43 d 53 10 10 d 11 6 10 29 d 10 7d 13 d d 53 13 d d 6c -FIXUPS: 296f d 36 489 1d 31 23 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f -FIXUPS: 30b9 23 16 90 67 10 10 23 20 1b 5 5 18 16 aed 4b 22 e 13 1d ffffec85 -FIXUPS: 2af2 27 f 21 30 e b 37 29 16 15 15 14 e 5b 9 1a 6b 20 2c 23 16 -FIXUPS: 2dcd 27 10 a4d 10 78 39 d 12 3a d 36 d 5e 11 2f 11 4f 11 4f 11 -FIXUPS: 3ba9 19 12 25 d 23 e 14 5 a9 40 1d 13 12 f9e 20 18 b 2b ffffe574 -FIXUPS: 3305 6 c9 d a3 d 83 d 7e d 4a d 29 d 20 13 24 58 b1 13 b a 10 58 -FIXUPS: 383c b 1155 4b d 1e 27 1f b 2a d 1a 2d d 14 1b 2a d 2b d 20 2a -FIXUPS: 4be3 17 15 2c d f 22 37 d 10 c 33 fffff93c 28 6 30 6 19 f 2b a -FIXUPS: 471b f 2f e 1e c d 11 14 3a a 49 d 23 1d 1f d f 33 d 3b d 2f fffff899 -FIXUPS: 42c5 a 9 f 12 50 e 10 10 f d c 27 d 2b 36 d 29 d 35 d 2a 6 3f 2d -FIXUPS: 4573 14 42 d 17 55 1125 13 1f e 13 ffffe69f 17 3c 1d 10 58 28 10 -FIXUPS: 3f9a 1f 40 e 10 27 d 17 1c 18 a 24 d 42 2d 1b 14 65 19 10ca c 3e -FIXUPS: 530e 11 44 26 23 2d d 11 26 5c 23 1b 46 d 3c d 14 27 2f 3c 23 1b -FIXUPS: 5669 23 47 1f 1b 2a 22 fffff790 e 18 e 26 36 23 1b 58 d 2d 12 4e -FIXUPS: 50d9 2c 17 d 20 10 19 c 10 1d d 2c d 28 10 8 c 3c 23 26bd a0 10 -FIXUPS: 7a12 d e5 49 5c 10 9 36 d 94 2e d 77 20 d 23 20 d 21 c 22 ffffcfab -FIXUPS: 4de9 f 21 49 27 f 21 2678 d 16 25 13 d 10 d 43 13 4d d 53 13 d -FIXUPS: 76e9 d 27 44 1d 17 42 52 13 d 10 d 66 d 1a 46 13 fffff5d0 2d 29 -FIXUPS: 6f99 25 17e 3d 23 2d 23 3d f d 24 14 1a 2b d 51 d 2c e 1a 1d 9 -FIXUPS: 742d 9 11 b 39 4e e fffff056 32 14 d d 1c 29 1b d b 2cd a 75 23 -FIXUPS: 6991 d e 14 15 14e d 98 d6 2e d 71 d 55 6d 90 23 2d fffff116 1a -FIXUPS: 604c 1b d b 2f 3d 6 1d 48 6 36 37 33 34 6 57 6 1e 50 6 38 6 ad -FIXUPS: 6437 8 1a 90 23 19 8 fffff77a d f 13 7d d 3a 15 36 34 23 1b d 8 -FIXUPS: 5e87 32 23 1b d 14 9 6 22 23 13 1a 23 13 a 15 8 f fffff856 d 11 -FIXUPS: 5896 33 23 1b d 30 3c 29 23 16 c 1b 23 1b 8 12 29 d 53 36 49 23 -FIXUPS: 5ba7 d f 45 36 2b 23 246d c b 2b 1e c b 2e d 2e c b 28 d 34 25 -FIXUPS: 828b 15 2d d 1d 12 4c b 6 63 d 21 ffffd3e2 23 32 20 bc2b 20 e 13 -FIXUPS: 114d9 13 1d e 13 1f ffff68f0 e 10 29 61 38 e b 10 14 25 d 4d 2c -FIXUPS: 8024 25 e 1c d 2e d 17 8d50 27 23 13 18 22 23 32 23 d 76 22 33 -FIXUPS: 1102c 16 b b 36 6d 42 46 ab 1e 25 b9 1f 1f 5a 30 35 22 12 fffff393 -FIXUPS: 10814 115 23 23 45 46 2f 20 23 16 b 3a 1e 31 cb 28 e 14 31 2d 2c -FIXUPS: 10cfa 1f 10 10 10 35 23 d 32 35 fffff542 22 1d 10 19 20 d 3a d -FIXUPS: 10459 23 16 1c 30 2b 23 16 14 20 d 20 37 d 20 10c 36 23 16 b c -FIXUPS: 107aa 37 fffff7b9 1d 2d 1d 38 23 16 b 27 1b b c 22 1f 17 18 4f -FIXUPS: 101b9 23 1f 20 d 1d 34 23 16 10 14 20 d 1f 1d fffff8a5 9 10 b 8 -FIXUPS: fc49 23 1f 20 d 28 32 25 2f 33 23 16 c 14 20 d 1d 19 1d 1c 2a 10 -FIXUPS: feed 23 3a 29 17 fffff94a b 1c 26 2d 2e 6 9 b 23 23 32 23 d 19 -FIXUPS: fa77 d d 17 21 23 16 c 27 23 d 18 f 13 12 f 1e fffff8f1 24 d 3b -FIXUPS: f548 2d 36 d 31 21 24 d 3b d 24 23 1f 23 32 1f 20 d 1c 21 1d 35 -FIXUPS: f83c 16 c 27 1d 10 fffff742 d 2e 3a 23 1c 19 12 9 12 3b 23 3d d -FIXUPS: f1fc d 44 55 23 d 2f d 32 25 3c d 35 2d 2e 36 d 30 fffff79c 11 -FIXUPS: ec83 13 23 23 1f 20 d 1b 17 f 18 28 23 1f 20 d 1d 34 23 13 10 17 -FIXUPS: eee2 14 2f 21 1c 27 23 1c fffff933 d 2a 1d d 25 28 23 13 14 20 -FIXUPS: ea20 d 16 d 31 d f 19 19 1d 23 20 d 2a 3c 11 33 10 14 20 d fffff9c5 -FIXUPS: e622 1c 20 d 1b 14 29 b 9 c a f 9 e 12 12 20 32 23 1f 1c 20 d 1b -FIXUPS: e843 14 14 20 d 1f 27 fffff99b 25 1a 1a 25 45 d 1d 29 d 11 2f 25 -FIXUPS: e413 1d 23 26 d 29 d d 12 9 11 18 19 f 12 1d 35 1b 25 fffff8f5 -FIXUPS: def5 24 23 1b d 1c 19 23 32 23 d 1f 9 19 11 29 23 1b 27 32 1f 10 -FIXUPS: e18b 17 31 d 13 2f 18 8 1d fffff8ef 8 a 1b 17 16 1a 1a 14 12 1c -FIXUPS: dc2d 1c 23 1b 27 20 1a 19 3a 1d 3a d 16 e 26 19 a 18 1d 38 23 fffff800 -FIXUPS: d6b2 2d 23 d 10 56 a4 23 16 b 12 21 3b 5e 23 1b b 27 1f 1e 22 22 -FIXUPS: da49 30 18 d 1b 23 32 23 d fffff66d d 1d 35 d f 33 23 2d d 27 d -FIXUPS: d2f6 43 23 1b b 25 d 5b 22 47 d 39 23 d 58 1a 93 25 22 3f fffff7b5 -FIXUPS: ce43 11 d d 1b 23 32 1f 1a 21 21 23 16 14 22 1c 25 23 1f 20 d 1b -FIXUPS: d0c8 d f 29 f 12 1b 23 1f fffff87d d 41 48 e 2d 23 16 11 d 10 31 -FIXUPS: cb96 15 1b 1a 18 d 54 23 16 2e 19 d 37 31 23 d 2b 23 32 23 fffff6c2 -FIXUPS: c586 11 15 1b 4e 20 1f 44 20 21 40 15 1b 15 1b 29 3e 23 d 38 23 -FIXUPS: c878 d 11 22 60 3c 3c 1d d 31 fffff565 1a 1a 17 19 23 74 d 14 27 -FIXUPS: c0aa 24 27 3e 13 45 28 10 20 d 80 13 b 34 32 d 95 36 9e 24 10 12 -FIXUPS: baad 1c 11 1f 30 30 30 30 1f 21 1f 21 30 23 41 d 38 d 31 d 39 1e -FIXUPS: bdfb 18 20 6 20 30 2c 35 16 43 fffff634 e 2c d 3c 41 19 32 24 1a -FIXUPS: b72c 6 d 21 16 18 d 67 8 2b 49 37 c 2f c 1e 16 13 43 1a 5b 9e fffff584 -FIXUPS: b03e 24 6a 2e 40 e 60 41 5c 32 21 1a 61 6 79 1d 13 25 42 6 6 20 -FIXUPS: b460 26 3d 40 e 1e 6 c 13 fffff671 1d 1e 15 33 d 15 1c d 1e 18 -FIXUPS: acf9 d 22 15 12 a 15 1b 29 3e 23 d 3b d 10 58 d 13 39 6b f fffff88b -FIXUPS: a859 11 1b 2c 21 17 1e 17 2a 20 d 14 30 46 14 17 15 1f d 15 1c -FIXUPS: aab3 d 15 12 14 20 d f 18 30 fffff815 d 5c 2d 20 d 53 d f 23 11 -FIXUPS: a519 17 19 30 80 30 30 11 16 39 11 16 39 30 1b 25 23 13 18 1d 1d -FIXUPS: 9ebf 6f d 50 d 2f d 32 d 2f 32 30 d 3b d 43 d 2f 41 34 d 4a d 46 -FIXUPS: a2a4 1a 20 d 23 16 23 2d fffff80e 12 f 18 10 a 20 d 2f 30 d 1a -FIXUPS: 9ca0 6 8 10 1c 2c d 31 d 1d 6 8 4b d 50 13 17 22 d 35 fffff787 -FIXUPS: 965c 30 d 80 19 a7 d 38 23 d 38 23 d 48 23 d 3e d 2f d 48 23 d -FIXUPS: 9a75 23 d 2f d 38 22 15 fffff679 40 23 1f 20 d 1d 35 d f 33 30 -FIXUPS: 936c 1f 20 d 1b 35 d f 29 f 12 1b 30 30 23 1a c e 3d 3f fffff75d -FIXUPS: 8d3b 3c 19 11 28 2d 23 d e 29 34 d 5b 23 32 16 8 27 16 3f 1d d -FIXUPS: 907a 1a 1c 1e 30 22 14 22 23 fffff753 5e 1d d 2f 23 d 36 50 2d -FIXUPS: 8a89 d 12 c 25 d 20 15 2e 20 23 67 1d d 2f 23 d 2d 2d 16 19 8 97da -FIXUPS: 12509 e 13 ffff5f08 27 f 21 49 27 f 21 30 e 16 1d 2f 2c 126 3e -FIXUPS: 8786 23 d 27 d e 1b 2b 14 15 30 1b 979e 24 b 13 10 21 d e 1a 1d -FIXUPS: 12122 e 29 16 d 10 d b cc f e f f f f f f 46 24 33 ac d fffff751 -FIXUPS: 11bb1 d 1b 70 23 4d 23 32 23 d 10 1a f 22 24 6c 23 16 22 d 60 29 -FIXUPS: 11f69 23 16 b b e 30 2c 1a fffff65d 30 e 30 2a d 5c 2f 2c 50 29 -FIXUPS: 118ce 1b 10 22 d 32 38 27 10 8 18 1d 29 12 22 46 23 2a d 36 23 -FIXUPS: 17747 1d d 2f e 1f 17 1c 59 23 1b d 10 d b 1a 27 d 58 d 3e d 2629 -FIXUPS: 1a000 27 ffff757b 27 f 21 49 27 f 5af5 68 d 44 7a d 50 36 d 1d -FIXUPS: 173f1 d 2a 1e 1a 2b 26 1d d 39 3c 49 23 ab d 2d 22 d 11 22 1f 15 -FIXUPS: 132a4 10 d b 1a 27 d 58 d 3e d 3b41 d 21 23 1b d 10 d b 2e 3d a -FIXUPS: 1704c a 1c 1b a 90 10 c 1d ffffbc35 50 36 d 1d 94 d 24 2e 27 c2 -FIXUPS: 1302e 2d 22 d 15 1e 1f 15 10 1d d 2f e 1f 17 1c 3f 30 30 23 1b -FIXUPS: 127d1 b6 d b5 32 d 47 22 48 23 1b d 10 d b 2e 3d a 2b a 1c 1b a -FIXUPS: 12c27 10 c 1d d 50 d 44 7a 8204 2d 23 d 32 23 d 18 13 13 1e 22 -FIXUPS: 1b0d7 13 ffff7478 27 f 21 30 23 1b d 10 d b 38 21 2b 21 48 13 4d -FIXUPS: 1aa09 23 32 23 d 2c d 2b 20 d 1a 20 d 1d 22 54 23 32 23 d 2c d -FIXUPS: 1acc7 1f 15 57 23 d 129 7e 2b 25 fffff56e 22 23 39 d 94 23 d 14 -FIXUPS: 1a669 23 56 23 d 2f 58 23 5d 30 23 32 23 d 2c d 3b d 1a 20 d 1d -FIXUPS: 1a9d3 fffff6e6 30 e 29 49 2f 3e d 3f 17 23 32 20 d 13 1a 41 23 -FIXUPS: 1a36c d 20 23 20 d 20 13 40 d 13 1d 10 8 4b1b 2c 10 31 23 30 20 -FIXUPS: 1f0c7 5 5 18 e 13 1f e 13 1f e 13 1f e 32 f 21 30 13 1d e 13 ffffadc8 -FIXUPS: 1a089 f 4a62 d 22 10 8 c 1c e 30 3f 23 2c 45 1f 10 2d 30 17 20 -FIXUPS: 1ed4a 1f 23 32 84 37 23 38 47 2e 23 38 1f fffff755 11 1d 20 2a -FIXUPS: 1e7a9 16 11 2c d 17 25 28 2d 2f 30 10 41 23 d 2a d 31 d 43 d 11 -FIXUPS: 1ea5c 16 18 2f d fffff718 71 4a 6 9 f 4d 65 23 16 67 23 3e 22 11 -FIXUPS: 1e4ba 20 2a 19 16 11 19 21 d 1b 25 28 2d 29 50 23 3e fffff774 23 -FIXUPS: 1de9e 34 d 16 24 d 28 25 6 9 f 28 23 32 23 d 34 d 16 d 21 d 2c -FIXUPS: 1e122 11 f 27 23 16 2f fffff908 23 18 2f d 1e 6 20 d 30 22 15 33 -FIXUPS: 1dc48 31 23 14 9 32 d 1e 6 20 d 2c 22 15 6 33 d 27 23 fffff79d -FIXUPS: 1d5fc 3d 1b 11 2d 47 23 32 55 46 23 36 3b 18 44 1b 25 23 18 2f -FIXUPS: 1d970 1e 6 20 d 30 26 11 33 d 4a fffff627 23 32 23 d d 6c 32 23 -FIXUPS: 1d242 b 8 2a 46 24 23 44 27 22 23 3a d 28 48 23 19 20 1d d 22 2e -FIXUPS: 1d574 fffff668 1c 28 19 e 26 32 23 d 79 31 e 26 32 23 d 7b 2f e -FIXUPS: 1ceed 46 26 2c 13 d 14 23 32 23 d d 6a fffff4cb 20 d 1d 9 c 2a -FIXUPS: 1c632 5c b2 e 24 34 66 c9 2d 42 30 31 21 d 26 7b 3a 21 6a 31 23 -FIXUPS: 1cb9a 18 13 a fffff4fa 23 1f 20 d 3c 25 29 32 23 d 3c d 58 a9 37 -FIXUPS: 1c3ed 2c 23 16 14 20 d 27 22 9 e 13 23 23 14 9 fffff7c0 23 16 2e -FIXUPS: 1bda9 d 15 2a 23 d f f 26 13 b 2f 23 d 10 a 15 2d 24 d 2f 1b 3c -FIXUPS: 1c01c 1f 20 d 3c fffff825 22 39 19 11 2b 2d 23 d f 15 2a 23 d 10 -FIXUPS: 1ba73 e 1e 2a 23 23 24 81 25 23 30 d 80 23 16 f b fffff75d 2d 20 -FIXUPS: 1b4c3 24 d e 1b 33 1d 31 77 20 d 47 2d 20 d e 22 d 21 1d 31 77 -FIXUPS: 1b826 d 26 2d 16 19 8 fffff84f 36 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: 1b309 e b b 33 20 d 14 16 d a 2b 19 a a a 10 b 8 4cb8 1f 15 12 -FIXUPS: 20172 14 e b 46 32 23 d 19 b 2e 29 35 23 d 10 15 12 20 d 12 12 -FIXUPS: 203ce 1a 1d 46 1f 1d fffff982 29 32 23 d 10 b 2e d 1a b 19 b 15 -FIXUPS: 1ff68 d 17 b c 1f a 15 27 24 1d 20 d 1a 15 1f 20 d fffff7a9 d 11 -FIXUPS: 1f94c 1d 23 16 35 7e 24 23 1b 10 d 26 35 8 12 3e d 7c 29 23 1b -FIXUPS: 1fc87 d 26 28 d 3a c a6 254e e 13 ffffcf6f 80 23 1d 5e d 69 6 51 -FIXUPS: 1f4aa 98 37 23 16 29 6d 20 b 26 23 16 3c 1b 23 40 9d 23 1b b 278b -FIXUPS: 22019 f d 24 e 27 1d 82 2d 2f e 9 9 20 18 28 e 9 9 20 12 9 9 1c -FIXUPS: 22298 d 27 20 1b 5 5 fffff85b 16 e b9 23 16 1d d 10 d 46 11 34 -FIXUPS: 21d8e 2f 1c 12 1e 26 32 16 e 64 d 23 1c 34 1d d d 20 29 fffff7ad -FIXUPS: 217a3 d 12 11 b 2b 16 32 23 d 4b d 13 20 d 2b 38 16 20 d 3f d 4b -FIXUPS: 21a63 2a d 2c d 48 d 21 fffff780 d 1d 8 11e 26 14 20 d 10 59 26 -FIXUPS: 21544 23 d 10 1a c 5f 26 35 23 d 19 1c 2c 35 23 d 10 b 12 fffff768 -FIXUPS: 20eff 2a d 10 2f 17 18 15 20 23 32 23 d 10 e 64 d 12 1a 23 32 23 -FIXUPS: 2119e 14 27 2c 16 34 14 1e 1f fffff74e c 6c 15 23 13 22 46 29 6d -FIXUPS: 20be8 23 d 15 11 1b 23 2d 26 32 16 12 57 d 11 38 32 1d 44 2c 3d -FIXUPS: 20edf fffff6a5 20 25 e b 11 26 29 32 23 d 1a e 8e 59 d 1a 1b 11 -FIXUPS: 2083f 2f 25 b 1c 13 49 53 2c 16 b b 16 976b 16 1d 1a e f 1b 5 1d -FIXUPS: 2a1f7 13 1f 11 1f e 32 13 1d e 13 1f e 13 1f e 13 ffff6142 36 27 -FIXUPS: 20518 21 30 96a6 1e 19 2a 3c 4a 1a 49 23 32 23 d 11 1e 19 2a 3c -FIXUPS: 29ed6 1a 49 23 32 23 d 11 1e 19 2a 3c 4a 1a 49 fffff6f5 13 37 48 -FIXUPS: 298bd d 3a 25 b 29 2c 26 3a 40 29 16 8 8 1f c 1f 1c 8 21 16 32 -FIXUPS: 29b57 22 23 32 23 d fffff732 d 31 23 d 2b 10 8 17 1c 25 29 32 23 -FIXUPS: 294c4 d 2f 2b 13 2b 13 2f 1f 23 2e 5a 2e 6c 2e 24 2e 6c fffff4e1 -FIXUPS: 28cf5 c 44 34 1e 22 1b 47 47 28 204 2b 12 33 2b 10 8 1e 2a e b -FIXUPS: 291ad 3a 32 4c b 8 21 10 2d 37 fffff4bc 55 1b 23 19 c 54 36 33 -FIXUPS: 28968 11 40 23 19 64 29 32 23 d 10 b 3e 2c b 14 1c 3e 44 26 14 -FIXUPS: 28c79 40 fffff4d5 23 d 10 14 26 4d c2 2c 13 17 17 17 25 b0 15 1e -FIXUPS: 284ba 15 60 26 41 1e 10 1d 17 b 49 bd 18 33 35 fffff619 35 23 d -FIXUPS: 27e36 23 d 2c 23 d d b b 2f 1a d 1a 58 1a 1e e 26 29 35 23 d 2c -FIXUPS: 280f6 d 2f 23 d fffff87b 15 28 8 15 28 8 15 28 8 15 28 8 15 17 -FIXUPS: 27b25 ba 1a 23 16 12 1e 38 14 1a 14 20 14 d 29 14 1f fffff99d 2a -FIXUPS: 2776b 17 28 1c f b 22 10 1c 23 17 e 15 b 2a 8 15 17 8 15 28 8 15 -FIXUPS: 2796d 8 15 17 8 15 17 fffff9a7 d 23 a 14 15 d 12 1d 6e 23 16 12 -FIXUPS: 274f2 35 14 1e 40 29 16 8 e 15 32 10 2f 17 d 8 24 18 23 fffff7c5 -FIXUPS: 26ed5 62 d 1b 14 24 d 25 23 21 5e 19 20 15 30 23 27 14 2c 23 d -FIXUPS: 271b0 43 1b 28 2e 25 26 3d 1b 2c fffff7b3 19 21 d b 3e d d 3b b -FIXUPS: 26be5 4d 5c 17 63 b 26 23 13 1c 19 8 20 14 29 20 29 16 b e 1b d -FIXUPS: 2673d 17 d 19 14 5e 10 13 19 38 14 1d 30 2e d 1c 14 1d 23 17 2d -FIXUPS: 269c5 12 e 27 22 b 13 25 d 30 32 fffff902 10 10 19 19 13 13 13 -FIXUPS: 26483 16 16 e e 1e 19 27 50 29 16 b b 29 1b 24 d b 24 2f d b 1f -FIXUPS: 266f3 fffff93b 13 2b 28 8 30 20 15 12 b 16 20 22 d 1c 17 13 1e -FIXUPS: 261ef 21 d b 3e d d 38 8 c 3b 50 17 4a fffff949 24 d 8 1b 17 d -FIXUPS: 25d81 1c 15 1c d 8 11 14 20 15 43 10 10 16 35 14 42 24 e 24 1c -FIXUPS: 25fbe 34 d 22 fffff8e2 1b b 35 d 22 d 11 2b 2e 8 21 d b 3e d d -FIXUPS: 25ad5 8 c 3b 50 17 4a 24 30 30 30 29 16 8 19 fffff8e4 3c 29 16 -FIXUPS: 25650 19 18 24 d 8 21 17 d 8 1d 16 1c d 8 f 14 20 15 26 10 10 16 -FIXUPS: 25854 14 42 24 e fffff7aa 9 17 56 9 b 2f 41 17 35 24 d 8 b 39 23 -FIXUPS: 25285 84 d 1c c 57 d 7c d 1c c 2c d d 22 31 fffff5a4 d 8 b 19 29 -FIXUPS: 24b08 8 b 4d d 8 b 13 22 1f 29 46 17 2a 17 40 19 1c f7 10 17 1e -FIXUPS: 24eb6 d8 23 22 fffff6e0 b 1b 29 16 8 b 35 27 17 15 35 47 17 41 -FIXUPS: 248ab d 8 b 1e 29 16 8 b 35 16 1c 15 2f 3a 17 35 fffff8e7 24 d -FIXUPS: 2438c b 22 23 2d 23 2d 29 16 8 b 12 18 17 8 b 3a 34 18 12 b e 15 -FIXUPS: 245f4 3a 17 35 24 d fffff914 d 13 20 1c 2e 23 32 23 d 19 17 2c -FIXUPS: 2414d d 2f 29 16 8 b 35 d 8 b 11 22 8 b 10 35 40 17 fffff912 16 -FIXUPS: 23c53 26 e 2c 19 25 17 21 29 16 35 d b 13 22 b 1a 16 18 17 38 1f -FIXUPS: 23ecb 2e 23 32 23 d 17 a fffff953 12 1e 2c 14 20 14 d 29 14 19 -FIXUPS: 23a1c 16 12 1e 2c 14 20 14 d 29 14 19 29 16 14 29 18 13 18 e e -FIXUPS: 2358c 13 29 17 2a 29 32 23 d 31 d d 15 19 12 13 12 13 12 45 18 -FIXUPS: 237e3 17 1f 23 1b 8 15 17 14 1a 23 fffff816 b b 40 28 5a 1f 22 -FIXUPS: 23275 2b 50 f 39 14 21 45 28 d 32 29 16 b b b 21 24 36 17 d 1a -FIXUPS: 23551 28 fffff5d8 38 23 16 31 9 33 9 30 d 67 3d 23 14 b 16 b 12 -FIXUPS: 22da9 23 19 3a 16 2a 1aa 29 16 14 3d 29 1b b fffff651 12 2d 37 -FIXUPS: 227cf d 32 38 38 2b 23 13 18 1d 1c 1d 1d 3f 29 18 33 23 d 10 b -FIXUPS: 22a7d 1c f 2f 2e f 2f 8c7c e 19 d 17 1d 22 e 13 1f 30 23 ffff6aa6 -FIXUPS: 223a9 f 21 49 27 f 21 49 27 f 21 30 e b 62 25 2b 107 8 8d77 d c -FIXUPS: 2b4d6 e 18 f 8 d 29 2c 32 23 d 10 b 52 d d 13 8 31 3a e c 42 15 -FIXUPS: 2b768 b 18 e c fffff9ad 19 8 34 e c 4e 15 e 19 f 8 d 2a 2c 32 23 -FIXUPS: 2b327 10 4b d d 13 8 2e e c 42 15 18 15 f fffff890 e 21 35 13 23 -FIXUPS: 2adf4 20 15 15 66 15 b c 29 26 32 23 d 2c 23 d 12 32 28 2c 32 23 -FIXUPS: 2b0d7 10 51 d fffff8a6 c 1a 48 26 32 23 d f 15 e 15 10 14 2b 22 -FIXUPS: 2abc5 16 b b 32 e c 1c 2c 1b b b b 35 15 b fffff8b1 13 61 2e 23 -FIXUPS: 2a6fc 13 12 18 10 2c 20 d 3c 20 d 32 2c 10 8 18 1d 1c 27 2c 32 -FIXUPS: 2a96d 15 f b 20 21 797d 1f e 13 1f 13 1d 13 1d 13 1d 13 1d 13 ffff7f16 -FIXUPS: 2a3c9 f 21 30 e b 26 3c 25 17 10 8 21 23 32 20 d 7a9e 5e 1f 10 -FIXUPS: 320cc 36 d 20 2a 12 e f 1f 22 e 13 1f e 13 1f e 13 1f e 13 1f e -FIXUPS: 322ea 1f 13 1d e fffff8d2 26 1b b 19 17 63 d 5c 13 13 43 18 2e -FIXUPS: 31e1c 22 22 24 16 1d 6 34 d 15 c 17 3b 38 26 1d 2f d fffff7d0 20 -FIXUPS: 31849 12 2a d 27 13 10 10 11 19 46 5a 23 d 23 14 2c 2a 23 d 10 -FIXUPS: 31abe 11 17 37 43 1f 36 23 d fffff87d 23 11 35 c 22 22 24 16 1d -FIXUPS: 31578 34 d 15 c 17 2f 29 23 16 30 22 35 26 1d c 37 11 f 1e 6 18 -FIXUPS: 31036 46 5a 23 d 23 14 2c 2a 23 d 10 b 11 17 37 43 1f 36 23 d 34 -FIXUPS: 31352 11 b 2b 26 1b 13 33 14 13 fffff86a 8 24 d d 10 20 d 56 d -FIXUPS: 30daf 40 3d d 27 d 25 12 2c d e 2d d 37 d 43 d 20 13 10 10 11 fffff8cf -FIXUPS: 3090c 32 17 1e 20 d 25 34 26 1d 2f d 17 2f d 29 d 11 e 2a c 27 -FIXUPS: 30b9d d 4d 20 d 25 30 12 13 fffff941 2f d 11 d c 10 c d c 17 17 -FIXUPS: 306b3 b e 3e d 15 13 1a 17 34 42 d 1a 35 d 47 6 18 1c 6 fffff988 -FIXUPS: 30289 23 1d 2f d 15 15 20 1f b 1f 13 18 23 1d 19 29 1a 17 13 a -FIXUPS: 304a7 20 6 17 2e 37 26 1d 2f d fffff939 28 23 13 10 1a 23 1d 2f -FIXUPS: 30005 12 15 1f 13 17 6 1e 23 1d 2f d 1a 1f 13 1e 1d 9 e 25 c 42 -FIXUPS: 30233 fffff975 15 c 26 17 6 1d 23 1e 12 2f d 15 c 26 13 a 1d 30 -FIXUPS: 2fd8c 1d 2f d 11 23 23 1d 2f d 10 c 3e fffff926 6 1e 23 20 17 17 -FIXUPS: 2f8d7 d 19 1b 46 24 27 23 1e 12 2f d 10 c 3e c 1b 23 13 10 1a 23 -FIXUPS: 2fb5a 12 2f fffff8d5 39 11 9 26 23 1b 10 29 72 d 21 14 14 21 23 -FIXUPS: 2f687 10 13 b 11 23 23 1d 16 9 21 d 23 20 1b 21 fffff808 22 b 6 -FIXUPS: 2f059 23 32 23 d 10 b f 1c 29 5f a9 47 f 29 b 6 24 29 37 23 1b -FIXUPS: 2f3b9 1e 17 23 d 45 fffff799 3e d 3b d 2a 30 e 19 3d 30 2c 26 19 -FIXUPS: 2ee09 26 32 23 d 39 d e 3e 1d 28 d 2d d 15 b 6 e fffff792 17 72 -FIXUPS: 2e820 2d c c 3d d 15 32 33 26 1d 2f d 11 20 6 11 c 4a 49 16 82 -FIXUPS: 2eb34 43 32 10 c a 20 fffff719 1c 29 57 38 19 1d 3e 27 29 39 e -FIXUPS: 2e519 23 1d 1b d 58 f 9 48 16 1d 1c 36 d 1f 17 9 1f 26 1b fffff7ff -FIXUPS: 2df8f 1e e 1e 26 32 23 d 39 d e 46 28 d 2d d 11 14 13 27 12 1e -FIXUPS: 2e20b 1e 30 23 32 23 d 10 b fffff833 1b 33 d 28 9 21 13 10 11 19 -FIXUPS: 2dc5e 57 23 d 24 2a 23 d 10 b 11 17 37 43 1f 33 23 d 27 12 29 fffff8e5 -FIXUPS: 2d80c 1b 2c 2a 19 9 27 9 6 24 23 1b 3c d 1c b 19 22 9 23 14 9 6 -FIXUPS: 2da5a 9 23 11 9 6 2b 38 fffff974 13 b 19 1b 2c 1b 26 2d 23 19 24 -FIXUPS: 2d5ec 1d 16 2c 9 19 15 b 13 9 1d 14 9 6 22 2e 23 16 2a 22 fffff8c9 -FIXUPS: 2d094 e 3d 28 d 2d d 1a 13 1e 23 32 23 d 10 b f 1c 29 57 49 30 -FIXUPS: 2d384 29 3c 23 1e 10 10 a 16 fffff80f 2a 23 d 10 b 11 17 37 43 -FIXUPS: 2cdaf 33 23 d 27 19 11 b 2b 12 26 28 23 1d 30 23 1e 1f 23 32 23 -FIXUPS: 2d04e fffff91b 10 13 a 1d 26 e c 26 23 1b 10 6 11 6 25 12 13 13 -FIXUPS: 2caf4 a 20 d 1e 13 10 11 19 38 57 23 d fffff997 d 3b d 1e 24 d -FIXUPS: 2c6ae 24 d 2a 23 13 c c 22 e 19 3a 2f 23 1e 24 9 22 23 1d 10 17 -FIXUPS: 2c906 23 23 fffff93a 15 d 13 13 1a 20 d 20 2f 9 f 34 9 f 31 2d -FIXUPS: 2c449 d 15 10 30 2f 9 f 34 9 f 3b 17 13 13 fffff832 d 14 23 34 -FIXUPS: 2be6d 25 32 1f 32 39 3f 2c 50 11 10 b 12 29 17 25 30 45 d 2c 3a -FIXUPS: 2c1c9 14 22 2a 2d 23 9453 ffff6286 27 f 21 49 27 f 21 49 27 f 21 -FIXUPS: 2bb32 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 30 2c 17 958d 26 -FIXUPS: 353ac 2f d 11 61 24 10 6 3a 17 20 24 12 e f 1f 22 e 13 1f e 13 -FIXUPS: 35619 e 13 1f 13 1d 13 1d fffff86a 23 d 10 b 11 17 37 43 1f 33 -FIXUPS: 35085 d 27 26 1b d 13 b 17 68 d 34 14 43 18 40 27 2c d 15 32 fffff836 -FIXUPS: 34b94 6 11 20 2e 12 2a d 27 13 2d d 15 10 11 19 46 57 23 d 27 16 -FIXUPS: 34e18 21 16 9 21 14 2c 14 2c fffff906 1e 10 d 13 16 16 1b 28 14 -FIXUPS: 3490d 27 2c d 1b 20 31 23 1e 27 23 d 18 c 9 d 1e 26 1d c 36 14 -FIXUPS: 343ff 17 37 43 1f 33 23 d 27 23 1b d 13 b 30 22 35 23 1b d b 22 -FIXUPS: 346dd 18 a e 11 a e 50 d 46 fffff8d5 1f c 6 c 6 2f d 43 d 2c 13 -FIXUPS: 341e9 d 15 10 11 19 46 57 23 d 27 f a 9 1e 2a 23 d 10 b fffff95e -FIXUPS: 33d69 d 1a 39 16 12 1e 1f 20 d 48 b 1b 12 13 30 d 18 8 24 d 18 -FIXUPS: 33f9e 20 d 20 f 20 d 45 35 fffff889 1f f 9 c 20 d 14 2d c 22 12 -FIXUPS: 33a2b 10 1d 3c d 5f 2a 6 3d 55 34 6 1d 24 63 6 21 1d 2b 27 fffff899 -FIXUPS: 335dc 18 c 1d 1d 2f 18 c 15 c 1b 16 d 12 20 d 14 1f 2b 18 c c 19 -FIXUPS: 33801 a 64 d 3d 24 6 18 fffff963 15 9 2d 23 1b d b 2a 22 28 d 1c -FIXUPS: 333a8 c 1a 6 45 23 1d 2f d 2a d 18 c 1d 1c 23 1d 2f d fffff901 -FIXUPS: 32f07 d 26 16 19 23 1b 10 c 16 20 23 32 23 d 15 9 2d 23 1d 2f d -FIXUPS: 33171 23 d 11 9 1e 23 32 23 fffff7d4 13 1a 20 17 40 23 32 23 d -FIXUPS: 32b5e b f 1c 29 5f 2b 2d 1b c 4d c 1c 47 24 1b 27 29 43 23 1b 10 -FIXUPS: 32519 49 27 f 21 49 27 f 21 30 e 19 2a d 70 32 23 1e 2f 26 32 20 -FIXUPS: 3287e 36 d e 46 d a4 28 d d 47fd d 27 14 39 23 23 16 17 14 80 d -FIXUPS: 373bf e 14 38 23 16 e 19 1a 1f 32 28 10b 22 e 13 1f ffffae49 27 -FIXUPS: 324f8 485a 4a d 2a d 37 1c 2c 94 14 15 1b 26 42 1d 29 d 31 e 14 -FIXUPS: 3705c a 23 60 23 2d 23 23 d 2d 23 16 fffff619 b 1b 2f 6f 19 24 -FIXUPS: 36932 1a 25 19 55 5a 23 19 b 8 35 22 c 31 40 f 5c 14 4d 1c 49 35 -FIXUPS: 36ceb 11 42 fffff4db 23 d 30 39 1f 1d 2b 29 16 1e 1a 46 112 27 -FIXUPS: 3653c 8b 1b 1a 27 14 1a 25 2b 1a 1f 4b 1f 26 1a 25 19 fffff5bb -FIXUPS: 35da0 d 1b 16 1c 16 1c 16 47 10 8 18 1d 23 23 32 23 d 14 27 23 -FIXUPS: 35ff7 d 9a 5c 1e 3a 23 d 30 1c fffff5c2 40 3c 6d e b 30 23 d 3b -FIXUPS: 3595c 84 29 e b 30 23 d 2c 23 d 38 2f 84 30 76 1a 10 2d 38 41 d -FIXUPS: 395f6 23 d 26 29 f 31 d 31 23 d 27 d 15 10 3d d 23 26 13 18 1d -FIXUPS: 39879 e 13 1f e 13 ffffbe28 27 f 21 3bb7 1e 21 d 1c 6 9 21 e b -FIXUPS: 393da 1d d 38 d f 1d d 13 1d d 14 1d d f 1e d 10 22 12 37 d fffffa2e -FIXUPS: 38fff d 3d 26 32 23 d 18 11 6 a 34 d 32 18 e 1d d 35 13 1d d 18 -FIXUPS: 3927b d 15 f 1d d f 1e fffff915 9 c 9 19 30 49 3c 1f 27 20 42 1d -FIXUPS: 38dd6 1b 20 38 26 1e 16 d 12 2a 1c 24 d 15 1c 21 d 20 19 fffff78b -FIXUPS: 38795 19 4d d 1a 1c 36 31 6c 1c 36 d 23 2e 20 d 1e 42 20 d 21 20 -FIXUPS: 38af9 26 32 23 d 18 16 21 21 fffff71c 3c 23 1e 15 24 9 1a 1d 14 -FIXUPS: 38468 63 23 d 1e 20 26 1e 16 10 d 2a 21 29 1a 36 18 20 39 22 d -FIXUPS: 3873f fffff6ed 8 c 19 e 3d 25 2f 23 29 60 15 23 1e b b 2d 1c 80 -FIXUPS: 380fc 1e b 18 2e 27 3b 21 d 40 22 34 38 fffff722 1e 26 1b d 13 -FIXUPS: 37a80 17 1b 47 1e 2c 56 26 1b 25 4f 35 d 35 30 d 2e 39 12 13 13 -FIXUPS: 37dba c 10 1e 25 1f11 13 16 16 16 e e ffffd947 27 f 21 49 27 f -FIXUPS: 377d9 30 e 47 2b 2f 17 d 1d 23 1b 22 23 1e 16 d 22 6 1f2d 27 f -FIXUPS: 39969 30 23 32 23 d 16 21 24 23 32 23 d 1a 22 1f 2b 32 23 30 30 -FIXUPS: 39c67 5 46 10 10 19 19 13 7d2e 27 3e d 18 30 23 26 1a 27 17 27 -FIXUPS: 41bea d b0 44 27 27 3b d 15 22 e 15 12 1a 22 e 13 1f e 13 fffff72b -FIXUPS: 415c7 15 15 15 15 15 15 78 b 1e d b 1d 84 b 50 c 30 20 e 30 e 97 -FIXUPS: 4194a 27 23 d d b e 57 fffff742 2c 23 d 10 43 23 d 10 21 d 10 3b -FIXUPS: 412d4 d c 2f 3e e 4e c 20 28 44 34 46 f 35 b 1b 41 24 fffff643 -FIXUPS: 40c0a 1b 10 15 e 3a 10 14 3f 80 37 41 d 36 76 d 4d 4c 41 d 1d 62 -FIXUPS: 41034 10 35 29 32 23 d 2c 23 fffff684 12 20 29 16 16 19 12 20 29 -FIXUPS: 408e8 16 12 19 29 3e 23 d 38 23 d 38 23 d 10 b 1e 7c 1f 41 d 15 -FIXUPS: 4039b 13 5c d 32 23 32 23 d 1d c 3e d d 18 22 29 16 b 16 12 2d -FIXUPS: 40649 23 32 23 d 67 34 29 16 16 fffff7eb 20 23 32 23 d 10 b b b -FIXUPS: 4008a b 2b 69 23 30 1d 23 32 23 d 10 18 47 24 38 23 38 23 d 10 -FIXUPS: 40390 fffff6e6 b b 1a 44 d 31 d 43 d 31 d 43 d 3b d 15 57 32 d -FIXUPS: 3fd41 d 15 21 10 55 29 16 16 19 119 12 fffff7a3 24 d 14 10 2c 23 -FIXUPS: 3f7d6 14 f 1d d 1f 13 1d d 1f 31 19 1e f 27 d 14 5c 23 38 23 d -FIXUPS: 3fa54 c b fffff7d8 c 30 d 3c 41 29 3e 23 d 10 16 19 11 16 52 58 -FIXUPS: 3f4c0 f 26 1b 2c 1f 79 47 d 38 14 10 1b 1a 5f fffff7c0 16 19 11 -FIXUPS: 3ef3b 23 3b 23 38 23 d 10 38 d 26 10 e 2f 1d d 10 b e 6 c d 1b -FIXUPS: 3f19e 21 2a 41 d fffff975 27 d 20 10 d 15 1b d c 15 c 19 1b 10 -FIXUPS: 3ecd8 16 15 17 d c 19 1b 10 d 16 15 17 d c ba 29 fffff99f 1b 27 -FIXUPS: 3e8b0 1b 27 d 27 d 1b 27 d 27 d 27 d 11 26 d 27 d 27 d 1b 1d 34 -FIXUPS: 3eb16 31 d 17 17 15 fffff982 27 d 2d 17 1b d 10 1a 25 17 25 24 -FIXUPS: 3e68e f d 24 c d 10 2b 1a 1a d 17 29 d 16 40 10 17 27 fffff67b -FIXUPS: 3def8 11 29 11 26 23 16 2d 23 d 1a c 13 45 2c 23 16 2a7 23 38 23 -FIXUPS: 3e414 10 c 2c d 10 13 40 d 33 fffff4fc d 18 29 d 1f 2d d 3e 16 -FIXUPS: 3db7a 6f 30 e 32 23 16 2d 23 d 3f 16 5b d 1f 1d d 19 52 16 16 32 -FIXUPS: 3d5f0 d 28 3e 4b 1d d 2d 16 14 24 d 1b 13 2e d 24 d 1e 31 d 1c -FIXUPS: 3d880 16 42 d 79 d 1f 1d d 19 fffff5dc 23 16 b 53 d 61 d 82 10b -FIXUPS: 3d31d 56 d 3e 1e 26 16 29 d 22 d 1f 1d d 19 1d d 19 32 29 1d d -FIXUPS: 3cbdc 18 d 2d 23 d 32 23 d 10 f d 24 d 28 25 d 15 25 d 1b 21 1d -FIXUPS: 3ce24 15 7d d 2c 14 1d d 3a fffff3a2 40 23 32 23 d 1a 21 23 32 -FIXUPS: 3c481 d 10 39 17 1b 29 3e 23 d 10 5f 17 62 5d 25a 16 7f 80 b7 3e -FIXUPS: 3cbb9 fffff325 23 d 43 33 50 23 d 13 19 39 29 16 15 15 27 29 16 -FIXUPS: 3c14d 15 27 23 32 23 d 16 25 23 32 23 d 10 fffff7b6 23 d 2e 15 -FIXUPS: 3bb39 23 32 23 d 10 22 22 1f 28 23 32 23 d 1d 3e 2d 3d 23 d 13 -FIXUPS: 3bdf2 25 d 2b 3a 23 fffff800 30 d 55 23 d d e 11 15 3a 23 5b 23 -FIXUPS: 3b897 13 2a 19 9 15 6 6 1c 56 23 31 d 10 a 50 23 d fffff77f d 38 -FIXUPS: 3b26b d 10 b 63 12 10 19 e 3a 23 5b 23 d 31 1b 30 36 23 32 23 d -FIXUPS: 3b5b3 23 d 20 31 39 1c fffff620 23 32 23 d 2c 23 d 19 1b 7b 30 -FIXUPS: 3ae8c d 2c 23 d 10 74 23 38 23 d 85 23 2d 23 2d 23 2d 29 3e fffff464 -FIXUPS: 3a684 35 23 162 ab 29 32 23 d 2c 23 d 1c 8f 23 d 10 e 41 19 66 -FIXUPS: 3abac d 21 c 25 d 16 f 1f 29 fffff574 1d 1d 1d 2a 10 29 12 22 1d -FIXUPS: 3a321 1d 4b 23 32 23 d 2c 23 d d 55 1c 1c 1b 14 d 11 15 2b 5b 36 -FIXUPS: 42669 8 18 1d 21 5 ffff7706 27 f 21 30 e 26 82 2a 2c 13 d 14 10 -FIXUPS: 39fd6 38 38 38 38 38 38 38 38 33 10 8 8098 23 32 23 d d 22 3b 1c -FIXUPS: 42396 22 17 21 17 37 4a 15 2f 19 10 f 2c 18 10 f 22 10 2d 23 d -FIXUPS: 42628 31 1a54 16 16 16 e e ffffddb7 27 f 21 33 3d 2a 23 d d 29 -FIXUPS: 4203a 15 2e 1c 15 28 15 6a 1f b 6 20 24 2c 72 1904 2c 64 6c 14 -FIXUPS: 43c97 29 28 1a 7f 1f 1f 52 d6 5 3d e 13 1f e 32 14 6 26 12 27 10 -FIXUPS: 44042 19 19 13 13 fffff4fd b 8 38 1c 1f 63 50 2f 55 13 11 9 f 1c -FIXUPS: 437f5 3f 16 2a 1d d 15 d 9 d 3b 27 26 2c cd 5c 35 fffff7d3 29 10 -FIXUPS: 43318 d 1f 35 e a c 8 24 d 6 24 d 14 29 1e 2c d 28 10 8 c 1c 2d -FIXUPS: 43559 d 10 b b fffff953 21 a f d 14 20 d 19 8 3f 52 2d 23 d d 26 -FIXUPS: 430cc 43 a 15 2b 20 11 3f 23 17 26 23 32 23 d fffff64b 16 10 d -FIXUPS: 42936 b 8 54 d 36 6 10 17 31 55 10 1b4 39 1c 8 c 10 6 6 a 6 23 -FIXUPS: 42d26 13 2f 4f b0 2d40 13 1f 39 10 10 19 19 13 13 13 16 16 16 e -FIXUPS: 45cfb ffffca07 27 f 21 30 2c 17 d 20 13 10 d a b e 15 2dfd b c -FIXUPS: 456db 8e 1c 64 30 16 2a 13 4b 32 2d 63 e 68 2a 23 32 23 d 18 23 -FIXUPS: 45afc 17 24 5 1d e 13 1f fffff65d 19 58 e 2d b 62 32 1f 42 d 1b -FIXUPS: 453dc 2b 10 10 4d d 1e 10 17 1c 11 2c 28 52 38 16 1e 2f d 14 fffff6d4 -FIXUPS: 44d39 c 24 10 8 c 1c 2d 23 d d 8 1c 1f 1a 1d 20 1f 1b 53 24 13 -FIXUPS: 44fb6 1e 30 29 1e 42 35 e3 1f fffff399 4c 152 1e 51 1e 63 1dd 91 -FIXUPS: 44a7c 16 77 10 3f 23 d 14 21 d 14 29 d 27 1e 10 8 18 20 e 32 1b -FIXUPS: 44d11 1899 13 16 16 16 e e ffffdb27 27 f 21 49 27 f 21 30 e 26 -FIXUPS: 442d9 2c 27 3a 13 23 32 36 68 15 67 31 23 16 1bd8 1e 59 11 11 11 -FIXUPS: 461e0 61 23 d 28 1c 24 38 24 51 36 6a 9 40 2e 2a 5 1d e 13 28 10 -FIXUPS: 46552 19 19 13 2a2 16 e e fffff4ae e b 1e 29 2c 32 12 23 5d 23 -FIXUPS: 45ebe 20 d 36 34 66 2d 21 2d 23 d 10 b 8 1b 1a b 1089 10 10 19 -FIXUPS: 471a4 13 13 13 16 16 16 e e fffff417 27 f 21 50 10 22 d 1f 5 26 -FIXUPS: 46792 10 19 19 13 13 13 16 53a 48 38 31 b b b b b 23 8 15 b b 3f -FIXUPS: 46efe 16 25 16 24 24 20 4c 27 21 30 1a 1a 48 5 1d 13 fffff9bc 10 -FIXUPS: 46b16 25 b 1e 13 25 b 31 b b b 24 d b e 26 13 b b 10 19 26 8 15 -FIXUPS: 46d09 b b b b 1d 507 e 42 23 14 15 34 23 14 15 34 23 2b 22 e 13 -FIXUPS: 46889 e b b 14 1d 16 92 96 1d 1e 1f 17 1b 18 1d diff --git a/kauai/OBJ/WIND/FT.MAP b/kauai/OBJ/WIND/FT.MAP deleted file mode 100644 index 89c5030a..00000000 --- a/kauai/OBJ/WIND/FT.MAP +++ /dev/null @@ -1,5872 +0,0 @@ - ft - - Timestamp is 3070babd (Mon Oct 02 21:23:25 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 000b5ea2H .text CODE - 0002:00000000 000025ecH .bss DATA - 0003:00000000 00003b38H .rdata DATA - 0004:00000000 0000814cH .data DATA - 0004:0000814c 00000004H .CRT$XCA DATA - 0004:00008150 00000004H .CRT$XCC DATA - 0004:00008154 000000c8H .CRT$XCU DATA - 0004:0000821c 00000004H .CRT$XCZ DATA - 0004:00008220 00000004H .CRT$XIA DATA - 0004:00008224 00000008H .CRT$XIC DATA - 0004:0000822c 00000004H .CRT$XIZ DATA - 0004:00008230 00000004H .CRT$XPA DATA - 0004:00008234 00000004H .CRT$XPX DATA - 0004:00008238 00000004H .CRT$XPZ DATA - 0004:0000823c 00000004H .CRT$XTA DATA - 0004:00008240 00000004H .CRT$XTZ DATA - 0005:00000000 0000008cH .idata$2 DATA - 0005:0000008c 00000028H .idata$3 DATA - 0005:000000b4 00000470H .idata$4 DATA - 0005:00000524 00000470H .idata$5 DATA - 0005:00000994 000012baH .idata$6 DATA - 0006:00000000 00000114H .rsrc$01 DATA - 0006:00000120 00000624H .rsrc$02 DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 000008f0H .debug$F DATA - 0008:00000c70 00000000H .debug$G DATA - 0008:00000c70 0000002fH .debug$H DATA - 0008:fff2c000 00000000H .debug$P DATA - 0008:fff2c000 00000000H .debug$S DATA - 0008:fff2c000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:000004d0 ?MarkUtilMem@@YGXXZ 004014d0 f util.obj - 0001:00000620 ?PfilNext@FIL@@QAEPAV1@XZ 00401620 f util.obj - 0001:00000650 ?PbllNext@BLL@@QAEPAV1@XZ 00401650 f util.obj - 0001:00000680 ?PfilFirst@FIL@@SGPAV1@XZ 00401680 f util.obj - 0001:000006a0 ?PcflNext@CFL@@QAEPAV1@XZ 004016a0 f util.obj - 0001:000006d0 ?PcflFirst@CFL@@SGPAV1@XZ 004016d0 f util.obj - 0001:000006f0 ?FWouldBe@BLL@@SGHJ@Z 004016f0 f base.obj - 0001:00000730 ?FIs@BLL@@UAEHJ@Z 00401730 f base.obj - 0001:00000760 ?Cls@BLL@@UAEJXZ 00401760 f base.obj - 0001:00000790 ?Cls@BASE@@UAEJXZ 00401790 f base.obj - 0001:000007c0 ?FIs@BASE@@UAEHJ@Z 004017c0 f base.obj - 0001:00000800 ?FWouldBe@BASE@@SGHJ@Z 00401800 f base.obj - 0001:00000830 ??0BASE@@QAE@XZ 00401830 f base.obj - 0001:00000910 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00401910 f base.obj - 0001:00000930 ?_Enter@@YGXXZ 00401930 f base.obj - 0001:00000950 ?_Leave@@YGXXZ 00401950 f base.obj - 0001:00000970 ?AddRef@BASE@@UAEXXZ 00401970 f base.obj - 0001:00000a00 ?Release@BASE@@UAEXXZ 00401a00 f base.obj - 0001:00000ab0 ??2BASE@@SGPAXIPADJ@Z 00401ab0 f base.obj - 0001:00000c80 ?Debugger@@YGXXZ 00401c80 f base.obj - 0001:00000ca0 ??3BASE@@SGXPAX@Z 00401ca0 f base.obj - 0001:00000d20 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401d20 f base.obj - 0001:00000d40 ?AssertValid@BASE@@QAEXK@Z 00401d40 f base.obj - 0001:00000e70 ?MarkMemStub@BASE@@QAEXXZ 00401e70 f base.obj - 0001:00000f50 ?MarkMem@BASE@@UAEXXZ 00401f50 f base.obj - 0001:00000fa0 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401fa0 f base.obj - 0001:00001190 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402190 f base.obj - 0001:00001210 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00402210 f base.obj - 0001:00001290 ?AssertUnmarkedObjs@@YGXXZ 00402290 f base.obj - 0001:00001560 ?UnmarkAllObjs@@YGXXZ 00402560 f base.obj - 0001:00001670 ??0BLL@@QAE@XZ 00402670 f base.obj - 0001:000016c0 ??1BLL@@UAE@XZ 004026c0 f base.obj - 0001:00001710 ?_Attach@BLL@@IAEXPAX@Z 00402710 f base.obj - 0001:000018b0 ?AssertNilOrPvCb@@YGXPAXJ@Z 004028b0 f base.obj - 0001:000018e0 ?AssertValid@BLL@@QAEXK@Z 004028e0 f base.obj - 0001:000019e0 ??_EBLL@@UAEPAXI@Z 004029e0 f base.obj - 0001:000019e0 ??_GBLL@@UAEPAXI@Z 004029e0 f base.obj - 0001:00001a20 ??0STN@@QAE@XZ 00402a20 f base.obj - 0001:00001a80 ?PvAddBv@@YGPAXPAXJ@Z 00402a80 f base.obj - 0001:00001aa0 ?PvSubBv@@YGPAXPAXJ@Z 00402aa0 f base.obj - 0001:00001ac0 ?Enter@MUTX@@QAEXXZ 00402ac0 f base.obj - 0001:00001af0 ?Leave@MUTX@@QAEXXZ 00402af0 f base.obj - 0001:00001b20 ?LwThreadCur@@YGJXZ 00402b20 f base.obj - 0001:00001b40 ?FillPb@@YGXPAXJE@Z 00402b40 f utilcopy.obj - 0001:00001ba0 ?ClearPb@@YGXPAXJ@Z 00402ba0 f utilcopy.obj - 0001:00001bf0 ?ReversePb@@YGXPAXJ@Z 00402bf0 f utilcopy.obj - 0001:00001c50 ?SwapBlocks@@YGXPAXJJ@Z 00402c50 f utilcopy.obj - 0001:00001cd0 ?SwapPb@@YGXPAX0J@Z 00402cd0 f utilcopy.obj - 0001:00001d70 ?MoveElement@@YGXPAXJJJ@Z 00402d70 f utilcopy.obj - 0001:00001e80 ?FEqualRgb@@YGHPAX0J@Z 00402e80 f utilcopy.obj - 0001:00001f00 ?CbEqualRgb@@YGJPAX0J@Z 00402f00 f utilcopy.obj - 0001:00001f90 ?CopyPb@@YGXPAX0J@Z 00402f90 f utilcopy.obj - 0001:00002030 ?BltPb@@YGXPAX0J@Z 00403030 f utilcopy.obj - 0001:00002110 ?FWouldBe@ERS@@SGHJ@Z 00403110 f utilerro.obj - 0001:00002150 ?FIs@ERS@@UAEHJ@Z 00403150 f utilerro.obj - 0001:00002180 ?Cls@ERS@@UAEJXZ 00403180 f utilerro.obj - 0001:000021b0 ??0ERS@@QAE@XZ 004031b0 f utilerro.obj - 0001:00002200 ?Push@ERS@@UAEXJPADJ@Z 00403200 f utilerro.obj - 0001:000023c0 ?FPop@ERS@@UAEHPAJ@Z 004033c0 f utilerro.obj - 0001:000024c0 ?Clear@ERS@@UAEXXZ 004034c0 f utilerro.obj - 0001:00002530 ?Cerc@ERS@@UAEJXZ 00403530 f utilerro.obj - 0001:00002580 ?FIn@ERS@@UAEHJ@Z 00403580 f utilerro.obj - 0001:00002650 ?ErcGet@ERS@@UAEJJ@Z 00403650 f utilerro.obj - 0001:000026f0 ?Flush@ERS@@UAEXJ@Z 004036f0 f utilerro.obj - 0001:000027e0 ?FIn@@YGHJJJ@Z 004037e0 f utilerro.obj - 0001:00002820 ?AssertValid@ERS@@QAEXK@Z 00403820 f utilerro.obj - 0001:000028c0 ??1ERS@@UAE@XZ 004038c0 f utilerro.obj - 0001:000028f0 ??_EERS@@UAEPAXI@Z 004038f0 f utilerro.obj - 0001:000028f0 ??_GERS@@UAEPAXI@Z 004038f0 f utilerro.obj - 0001:00002930 ?LwGcd@@YGJJJ@Z 00403930 f utilint.obj - 0001:00002960 ?LuGcd@@YGKKK@Z 00403960 f utilint.obj - 0001:000029f0 ?SortLw@@YGXPAJ0@Z 004039f0 f utilint.obj - 0001:00002a40 ?MulLw@@YGXJJPAJPAK@Z 00403a40 f utilint.obj - 0001:00002a70 ?LuMulDiv@@YGKKKK@Z 00403a70 f utilint.obj - 0001:00002ad0 ?MulLu@@YGXKKPAK0@Z 00403ad0 f utilint.obj - 0001:00002b00 ?LwMulDivAway@@YGJJJJ@Z 00403b00 f utilint.obj - 0001:00002b90 ?LwDivAway@@YGJJJ@Z 00403b90 f utilint.obj - 0001:00002c40 ?LwRoundAway@@YGJJJ@Z 00403c40 f utilint.obj - 0001:00002cd0 ?LwRoundToward@@YGJJJ@Z 00403cd0 f utilint.obj - 0001:00002d40 ?LwRoundClosest@@YGJJJ@Z 00403d40 f utilint.obj - 0001:00002de0 ?FcmpCompareFracs@@YGKJJJJ@Z 00403de0 f utilint.obj - 0001:00002ec0 ?FAdjustIv@@YGHPAJJJJ@Z 00403ec0 f utilint.obj - 0001:00002f70 ?LwMul@@YGJJJ@Z 00403f70 f utilint.obj - 0001:00002fe0 ?AssertIn@@YGXJJJ@Z 00403fe0 f utilint.obj - 0001:00003060 ?SwapBytesBom@@YGXPAXK@Z 00404060 f utilint.obj - 0001:00003140 ?LwMin@@YGJJJ@Z 00404140 f utilint.obj - 0001:00003170 ?LwAbs@@YGJJ@Z 00404170 f utilint.obj - 0001:000031a0 ?SwapBytesRgsw@@YGXPAXJ@Z 004041a0 f utilint.obj - 0001:00003230 ?LwMulDivMod@@YGJJJJPAJ@Z 00404230 f utilint.obj - 0001:00003290 ?SwapBytesRglw@@YGXPAXJ@Z 00404290 f utilint.obj - 0001:00003340 ?AssertBomRglw@@YGXKJ@Z 00404340 f utilint.obj - 0001:00003400 ??BPT@@QAE?AUtagPOINT@@XZ 00404400 f utilint.obj - 0001:00003460 ?SwTruncLw@@YGFJ@Z 00404460 f utilint.obj - 0001:000034b0 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 004044b0 f utilint.obj - 0001:00003500 ?Map@PT@@QAEXPAVRC@@0@Z 00404500 f utilint.obj - 0001:000036e0 ?LwMulDiv@@YGJJJJ@Z 004046e0 f utilint.obj - 0001:00003730 ?Transform@PT@@QAEXK@Z 00404730 f utilint.obj - 0001:000037b0 ??8RC@@QAEHAAV0@@Z 004047b0 f utilint.obj - 0001:00003850 ??9RC@@QAEHAAV0@@Z 00404850 f utilint.obj - 0001:00003900 ?Union@RC@@QAEXPAV1@0@Z 00404900 f utilint.obj - 0001:00003970 ?Union@RC@@QAEXPAV1@@Z 00404970 f utilint.obj - 0001:00003a50 ?LwMax@@YGJJJ@Z 00404a50 f utilint.obj - 0001:00003a80 ?Dxp@RC@@QAEJXZ 00404a80 f utilint.obj - 0001:00003ac0 ?Dyp@RC@@QAEJXZ 00404ac0 f utilint.obj - 0001:00003b00 ?FIntersect@RC@@QAEHPAV1@0@Z 00404b00 f utilint.obj - 0001:00003bd0 ?Zero@RC@@QAEXXZ 00404bd0 f utilint.obj - 0001:00003c30 ?FEmpty@RC@@QAEHXZ 00404c30 f utilint.obj - 0001:00003c90 ?FIntersect@RC@@QAEHPAV1@@Z 00404c90 f utilint.obj - 0001:00003d50 ?Inset@RC@@QAEXJJ@Z 00404d50 f utilint.obj - 0001:00003db0 ?Map@RC@@QAEXPAV1@0@Z 00404db0 f utilint.obj - 0001:00004000 ?Transform@RC@@QAEXK@Z 00405000 f utilint.obj - 0001:000040d0 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 004050d0 f utilint.obj - 0001:00004140 ?Offset@RC@@QAEXJJ@Z 00405140 f utilint.obj - 0001:00004190 ?OffsetToOrigin@RC@@QAEXXZ 00405190 f utilint.obj - 0001:000041f0 ?CenterOnRc@RC@@QAEXPAV1@@Z 004051f0 f utilint.obj - 0001:00004290 ?FPtIn@RC@@QAEHJJ@Z 00405290 f utilint.obj - 0001:00004310 ?PinPt@RC@@QAEXPAVPT@@@Z 00405310 f utilint.obj - 0001:00004390 ?LwBound@@YGJJJJ@Z 00405390 f utilint.obj - 0001:000043d0 ?PinToRc@RC@@QAEXPAV1@@Z 004053d0 f utilint.obj - 0001:00004480 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 00405480 f utilint.obj - 0001:000044e0 ??BRC@@QAE?AUtagRECT@@XZ 004054e0 f utilint.obj - 0001:00004570 ?FContains@RC@@QAEHPAV1@@Z 00405570 f utilint.obj - 0001:00004610 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 00405610 f utilint.obj - 0001:00004750 ??0USAC@@QAE@XZ 00405750 f utilint.obj - 0001:000047b0 ?TsCur@USAC@@QAEKXZ 004057b0 f utilint.obj - 0001:00004840 ?LwHighLow@@YGJFF@Z 00405840 f utilint.obj - 0001:00004870 ?SuHigh@@YGGJ@Z 00405870 f utilint.obj - 0001:00004890 ?SuLow@@YGGJ@Z 00405890 f utilint.obj - 0001:000048b0 ?Scale@USAC@@QAEXK@Z 004058b0 f utilint.obj - 0001:00004970 ?Set@DVER@@QAEXFF@Z 00405970 f utilint.obj - 0001:000049b0 ?FReadable@DVER@@QAEHFF@Z 004059b0 f utilint.obj - 0001:00004a70 ??_GUSAC@@UAEPAXI@Z 00405a70 f utilint.obj - 0001:00004a70 ??_EUSAC@@UAEPAXI@Z 00405a70 f utilint.obj - 0001:00004ab0 ?TsCurrentSystem@@YGKXZ 00405ab0 f utilint.obj - 0001:00004ad0 ?FFail@DMAGL@@QAEHXZ 00405ad0 f utilmem.obj - 0001:00004b40 ?Allocate@DMAGL@@QAEXJ@Z 00405b40 f utilmem.obj - 0001:00004bd0 ?Resize@DMAGL@@QAEXJ@Z 00405bd0 f utilmem.obj - 0001:00004c30 ?Free@DMAGL@@QAEXJ@Z 00405c30 f utilmem.obj - 0001:00004c70 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00405c70 f utilmem.obj - 0001:00004fc0 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00405fc0 f utilmem.obj - 0001:000053d0 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 004063d0 f utilmem.obj - 0001:00005470 ?_LinkMbh@@YGXPAUMBH@@@Z 00406470 f utilmem.obj - 0001:00005510 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00406510 f utilmem.obj - 0001:000056b0 ?_AssertMbh@@YGXPAUMBH@@@Z 004066b0 f utilmem.obj - 0001:000058f0 ?AssertPvAlloced@@YGXPAXJ@Z 004068f0 f utilmem.obj - 0001:000059b0 ?AssertUnmarkedMem@@YGXXZ 004069b0 f utilmem.obj - 0001:00005aa0 ?UnmarkAllMem@@YGXXZ 00406aa0 f utilmem.obj - 0001:00005b20 ?MarkPv@@YGXPAX@Z 00406b20 f utilmem.obj - 0001:00005b90 ?FWouldBe@RND@@SGHJ@Z 00406b90 f utilrnd.obj - 0001:00005bd0 ?FIs@RND@@UAEHJ@Z 00406bd0 f utilrnd.obj - 0001:00005c00 ?Cls@RND@@UAEJXZ 00406c00 f utilrnd.obj - 0001:00005c30 ?FWouldBe@SFL@@SGHJ@Z 00406c30 f utilrnd.obj - 0001:00005c70 ?FIs@SFL@@UAEHJ@Z 00406c70 f utilrnd.obj - 0001:00005ca0 ?Cls@SFL@@UAEJXZ 00406ca0 f utilrnd.obj - 0001:00005cd0 ??0RND@@QAE@K@Z 00406cd0 f utilrnd.obj - 0001:00005d60 ?LwNext@RND@@UAEJJ@Z 00406d60 f utilrnd.obj - 0001:00005e30 ??0SFL@@QAE@K@Z 00406e30 f utilrnd.obj - 0001:00005ec0 ??1SFL@@UAE@XZ 00406ec0 f utilrnd.obj - 0001:00005f30 ?AssertValid@SFL@@QAEXK@Z 00406f30 f utilrnd.obj - 0001:00006000 ?MarkMem@SFL@@UAEXXZ 00407000 f utilrnd.obj - 0001:00006060 ?Shuffle@SFL@@QAEXJ@Z 00407060 f utilrnd.obj - 0001:00006170 ?_ShuffleCore@SFL@@IAEXXZ 00407170 f utilrnd.obj - 0001:00006260 ?_FEnsureHq@SFL@@IAEHJ@Z 00407260 f utilrnd.obj - 0001:000063e0 ?LwNext@SFL@@UAEJJ@Z 004073e0 f utilrnd.obj - 0001:00006540 ??_GRND@@UAEPAXI@Z 00407540 f utilrnd.obj - 0001:00006540 ??_ERND@@UAEPAXI@Z 00407540 f utilrnd.obj - 0001:00006580 ??_GSFL@@UAEPAXI@Z 00407580 f utilrnd.obj - 0001:00006580 ??_ESFL@@UAEPAXI@Z 00407580 f utilrnd.obj - 0001:000065c0 ??0STN@@QAE@PAD@Z 004075c0 f utilstr.obj - 0001:00006660 ??4STN@@QAEAAV0@AAV0@@Z 00407660 f utilstr.obj - 0001:00006750 ?SetRgch@STN@@QAEXPADJ@Z 00407750 f utilstr.obj - 0001:00006830 ?SetSzs@STN@@QAEXPAD@Z 00407830 f utilstr.obj - 0001:00006890 ?Delete@STN@@QAEXJJ@Z 00407890 f utilstr.obj - 0001:000069f0 ?FAppendRgch@STN@@QAEHPADJ@Z 004079f0 f utilstr.obj - 0001:00006af0 ?FInsertRgch@STN@@QAEHJPADJ@Z 00407af0 f utilstr.obj - 0001:00006ca0 ?FEqualRgch@STN@@QAEHPADJ@Z 00407ca0 f utilstr.obj - 0001:00006d40 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00407d40 f utilstr.obj - 0001:00006dd0 ?CbData@STN@@QAEJXZ 00407dd0 f utilstr.obj - 0001:00006e20 ?GetData@STN@@QAEXPAX@Z 00407e20 f utilstr.obj - 0001:00006eb0 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 00407eb0 f utilstr.obj - 0001:00007010 ?FSetData@STN@@QAEHPAXJPAJ@Z 00408010 f utilstr.obj - 0001:000074d0 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 004084d0 f utilstr.obj - 0001:00007b00 ?GetSzs@STN@@QAEXPAD@Z 00408b00 f utilstr.obj - 0001:00007b70 ?FFormatSz@STN@@QAAHPADZZ 00408b70 f utilstr.obj - 0001:00007bd0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00408bd0 f utilstr.obj - 0001:00008430 ?CbCharOsk@@YGJF@Z 00409430 f utilstr.obj - 0001:000084c0 ?Prgch@STN@@QAEPADXZ 004094c0 f utilstr.obj - 0001:00008510 ?Psz@STN@@QAEPADXZ 00409510 f utilstr.obj - 0001:00008560 ?Cch@STN@@QAEJXZ 00409560 f utilstr.obj - 0001:000085b0 ?SetNil@STN@@QAEXXZ 004095b0 f utilstr.obj - 0001:00008610 ?SetSz@STN@@QAEXPAD@Z 00409610 f utilstr.obj - 0001:00008650 ?AssertValid@STN@@QAEXK@Z 00409650 f utilstr.obj - 0001:00008740 ?FValidSt@@YGHPAD@Z 00409740 f utilstr.obj - 0001:000087f0 ?PrgchSt@@YGPADPAD@Z 004097f0 f utilstr.obj - 0001:00008810 ?CchSt@@YGJPAD@Z 00409810 f utilstr.obj - 0001:00008840 ?CchSz@@YGJPAD@Z 00409840 f utilstr.obj - 0001:000088e0 ?FcmpCompareRgch@@YGKPADJ0J@Z 004098e0 f utilstr.obj - 0001:00008a20 ?FEqualUserRgch@@YGHPADJ0JK@Z 00409a20 f utilstr.obj - 0001:00008b90 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00409b90 f utilstr.obj - 0001:00008ca0 ?UpperRgchs@@YGXPADJ@Z 00409ca0 f utilstr.obj - 0001:00008d60 ?LowerRgchs@@YGXPADJ@Z 00409d60 f utilstr.obj - 0001:00008e20 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00409e20 f utilstr.obj - 0001:00008fd0 ?TranslateRgch@@YGXPADJFH@Z 00409fd0 f utilstr.obj - 0001:000090c0 ?GrfchFromCh@@YGKD@Z 0040a0c0 f utilstr.obj - 0001:000091f0 ?AssertOsk@@YGXF@Z 0040a1f0 f utilstr.obj - 0001:000092a0 ?AssertSt@@YGXPAD@Z 0040a2a0 f utilstr.obj - 0001:000092f0 ?AssertSz@@YGXPAD@Z 0040a2f0 f utilstr.obj - 0001:00009340 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 0040a340 f memwin.obj - 0001:00009420 ?FResizePhq@@YGHPAPAXJKJ@Z 0040a420 f memwin.obj - 0001:00009550 ?FreePhq@@YGXPAPAX@Z 0040a550 f memwin.obj - 0001:00009600 ?FCopyHq@@YGHPAXPAPAXJ@Z 0040a600 f memwin.obj - 0001:00009690 ?CbOfHq@@YGJPAX@Z 0040a690 f memwin.obj - 0001:000096d0 ?QvFromHq@@YGPAXPAX@Z 0040a6d0 f memwin.obj - 0001:000096f0 ?PvLockHq@@YGPAXPAX@Z 0040a6f0 f memwin.obj - 0001:00009770 ?UnlockHq@@YGXPAX@Z 0040a770 f memwin.obj - 0001:000097f0 ?AssertHq@@YGXPAX@Z 0040a7f0 f memwin.obj - 0001:000098e0 ?MarkHq@@YGXPAX@Z 0040a8e0 f memwin.obj - 0001:00009920 ?AssertPvCb@@YGXPAXJ@Z 0040a920 f memwin.obj - 0001:000099b0 ?FWouldBe@GRPB@@SGHJ@Z 0040a9b0 f groups.obj - 0001:000099f0 ?FIs@GRPB@@UAEHJ@Z 0040a9f0 f groups.obj - 0001:00009a20 ?Cls@GRPB@@UAEJXZ 0040aa20 f groups.obj - 0001:00009a50 ?FWouldBe@GLB@@SGHJ@Z 0040aa50 f groups.obj - 0001:00009a90 ?FIs@GLB@@UAEHJ@Z 0040aa90 f groups.obj - 0001:00009ac0 ?Cls@GLB@@UAEJXZ 0040aac0 f groups.obj - 0001:00009af0 ?FWouldBe@GL@@SGHJ@Z 0040aaf0 f groups.obj - 0001:00009b30 ?FIs@GL@@UAEHJ@Z 0040ab30 f groups.obj - 0001:00009b60 ?Cls@GL@@UAEJXZ 0040ab60 f groups.obj - 0001:00009b90 ?FWouldBe@AL@@SGHJ@Z 0040ab90 f groups.obj - 0001:00009bd0 ?FIs@AL@@UAEHJ@Z 0040abd0 f groups.obj - 0001:00009c00 ?Cls@AL@@UAEJXZ 0040ac00 f groups.obj - 0001:00009c30 ?FWouldBe@GGB@@SGHJ@Z 0040ac30 f groups.obj - 0001:00009c70 ?FIs@GGB@@UAEHJ@Z 0040ac70 f groups.obj - 0001:00009ca0 ?Cls@GGB@@UAEJXZ 0040aca0 f groups.obj - 0001:00009cd0 ?FWouldBe@GG@@SGHJ@Z 0040acd0 f groups.obj - 0001:00009d10 ?FIs@GG@@UAEHJ@Z 0040ad10 f groups.obj - 0001:00009d40 ?Cls@GG@@UAEJXZ 0040ad40 f groups.obj - 0001:00009d70 ?FWouldBe@AG@@SGHJ@Z 0040ad70 f groups.obj - 0001:00009db0 ?FIs@AG@@UAEHJ@Z 0040adb0 f groups.obj - 0001:00009de0 ?Cls@AG@@UAEJXZ 0040ade0 f groups.obj - 0001:00009e10 ??1GRPB@@UAE@XZ 0040ae10 f groups.obj - 0001:00009e80 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0040ae80 f groups.obj - 0001:0000a080 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0040b080 f groups.obj - 0001:0000a240 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0040b240 f groups.obj - 0001:0000a2a0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0040b2a0 f groups.obj - 0001:0000a470 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0040b470 f groups.obj - 0001:0000a5f0 ?AssertValid@GRPB@@QAEXK@Z 0040b5f0 f groups.obj - 0001:0000a780 ?MarkMem@GRPB@@UAEXXZ 0040b780 f groups.obj - 0001:0000a7f0 ??0GLB@@IAE@J@Z 0040b7f0 f groups.obj - 0001:0000a880 ?QvGet@GLB@@QAEPAXJ@Z 0040b880 f groups.obj - 0001:0000a910 ?Get@GLB@@QAEXJPAX@Z 0040b910 f groups.obj - 0001:0000a9a0 ?Put@GLB@@QAEXJPAX@Z 0040b9a0 f groups.obj - 0001:0000aa50 ?PvLock@GLB@@QAEPAXJ@Z 0040ba50 f groups.obj - 0001:0000aa90 ?SetMinGrow@GLB@@QAEXJ@Z 0040ba90 f groups.obj - 0001:0000ab20 ?CbRoundToLong@@YGJJ@Z 0040bb20 f groups.obj - 0001:0000ab40 ?AssertValid@GLB@@QAEXK@Z 0040bb40 f groups.obj - 0001:0000abe0 ?PglNew@GL@@SGPAV1@JJ@Z 0040bbe0 f groups.obj - 0001:0000ad10 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0040bd10 f groups.obj - 0001:0000aed0 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0040bed0 f groups.obj - 0001:0000af30 ??0GL@@IAE@J@Z 0040bf30 f groups.obj - 0001:0000af90 ?FFree@GL@@UAEHJ@Z 0040bf90 f groups.obj - 0001:0000b000 ?CbOnFile@GL@@UAEJXZ 0040c000 f groups.obj - 0001:0000b060 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0040c060 f groups.obj - 0001:0000b230 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0040c230 f groups.obj - 0001:0000b480 ?FInsert@GL@@QAEHJPAXJ@Z 0040c480 f groups.obj - 0001:0000b600 ?Delete@GL@@UAEXJ@Z 0040c600 f groups.obj - 0001:0000b660 ?Delete@GL@@QAEXJJ@Z 0040c660 f groups.obj - 0001:0000b7d0 ?Move@GL@@QAEXJJ@Z 0040c7d0 f groups.obj - 0001:0000b890 ?FAdd@GL@@UAEHPAXPAJ@Z 0040c890 f groups.obj - 0001:0000b940 ?FPop@GL@@QAEHPAX@Z 0040c940 f groups.obj - 0001:0000ba50 ?FSetIvMac@GL@@QAEHJ@Z 0040ca50 f groups.obj - 0001:0000bc60 ?FEnsureSpace@GL@@QAEHJK@Z 0040cc60 f groups.obj - 0001:0000bd30 ?PalNew@AL@@SGPAV1@JJ@Z 0040cd30 f groups.obj - 0001:0000be60 ??0AL@@IAE@J@Z 0040ce60 f groups.obj - 0001:0000bed0 ?CbFromCbit@@YGJJ@Z 0040ced0 f groups.obj - 0001:0000bf00 ?CbOnFile@AL@@UAEJXZ 0040cf00 f groups.obj - 0001:0000bf70 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 0040cf70 f groups.obj - 0001:0000c160 ?_Qb1@GRPB@@IAEPAEJ@Z 0040d160 f groups.obj - 0001:0000c190 ?_Qb2@GRPB@@IAEPAEJ@Z 0040d190 f groups.obj - 0001:0000c1c0 ?_Cb1@GRPB@@IAEJXZ 0040d1c0 f groups.obj - 0001:0000c1f0 ??0GRPB@@IAE@XZ 0040d1f0 f groups.obj - 0001:0000c230 ?Lock@GRPB@@QAEXXZ 0040d230 f groups.obj - 0001:0000c270 ?FFree@AL@@UAEHJ@Z 0040d270 f groups.obj - 0001:0000c310 ?Fbit@@YGEJ@Z 0040d310 f groups.obj - 0001:0000c330 ?_Qgrfbit@AL@@AAEPAEJ@Z 0040d330 f groups.obj - 0001:0000c370 ?IbFromIbit@@YGJJ@Z 0040d370 f groups.obj - 0001:0000c390 ?FEnsureSpace@AL@@QAEHJK@Z 0040d390 f groups.obj - 0001:0000c480 ?FAdd@AL@@UAEHPAXPAJ@Z 0040d480 f groups.obj - 0001:0000c680 ?Delete@AL@@UAEXJ@Z 0040d680 f groups.obj - 0001:0000c900 ?AssertValid@AL@@QAEXK@Z 0040d900 f groups.obj - 0001:0000ca10 ?_Cb2@GRPB@@IAEJXZ 0040da10 f groups.obj - 0001:0000ca40 ??0GGB@@IAE@JH@Z 0040da40 f groups.obj - 0001:0000cb00 ?CbOnFile@GGB@@UAEJXZ 0040db00 f groups.obj - 0001:0000cb60 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0040db60 f groups.obj - 0001:0000cdb0 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0040ddb0 f groups.obj - 0001:0000d0c0 ?FFree@GGB@@UAEHJ@Z 0040e0c0 f groups.obj - 0001:0000d200 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 0040e200 f groups.obj - 0001:0000d240 ?FEnsureSpace@GGB@@QAEHJJK@Z 0040e240 f groups.obj - 0001:0000d3a0 ?_RemoveRgb@GGB@@IAEXJJ@Z 0040e3a0 f groups.obj - 0001:0000d4f0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0040e4f0 f groups.obj - 0001:0000d660 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0040e660 f groups.obj - 0001:0000d770 ?GetFixed@GGB@@QAEXJPAX@Z 0040e770 f groups.obj - 0001:0000d880 ?PutFixed@GGB@@QAEXJPAX@Z 0040e880 f groups.obj - 0001:0000d9c0 ?Cb@GGB@@QAEJJ@Z 0040e9c0 f groups.obj - 0001:0000da70 ?QvGet@GGB@@QAEPAXJPAJ@Z 0040ea70 f groups.obj - 0001:0000db80 ?PvLock@GGB@@QAEPAXJPAJ@Z 0040eb80 f groups.obj - 0001:0000dbe0 ?Get@GGB@@QAEXJPAX@Z 0040ebe0 f groups.obj - 0001:0000dcd0 ?FPut@GGB@@QAEHJJPAX@Z 0040ecd0 f groups.obj - 0001:0000de50 ?GetRgb@GGB@@QAEXJJJPAX@Z 0040ee50 f groups.obj - 0001:0000df60 ?PutRgb@GGB@@QAEXJJJPAX@Z 0040ef60 f groups.obj - 0001:0000e0a0 ?DeleteRgb@GGB@@QAEXJJJ@Z 0040f0a0 f groups.obj - 0001:0000e290 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0040f290 f groups.obj - 0001:0000e550 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 0040f550 f groups.obj - 0001:0000ea00 ?Merge@GGB@@QAEXJJ@Z 0040fa00 f groups.obj - 0001:0000ec80 ?AssertValid@GGB@@QAEXK@Z 0040fc80 f groups.obj - 0001:0000efe0 ?PggNew@GG@@SGPAV1@JJJ@Z 0040ffe0 f groups.obj - 0001:0000f130 ??0GG@@IAE@J@Z 00410130 f groups.obj - 0001:0000f170 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00410170 f groups.obj - 0001:0000f340 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 00410340 f groups.obj - 0001:0000f3a0 ?FInsert@GG@@QAEHJJPAX0@Z 004103a0 f groups.obj - 0001:0000f650 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 00410650 f groups.obj - 0001:0000f920 ?Unlock@GRPB@@QAEXXZ 00410920 f groups.obj - 0001:0000f960 ?IvMac@GRPB@@QAEJXZ 00410960 f groups.obj - 0001:0000f990 ?CbFixed@GGB@@QAEJXZ 00410990 f groups.obj - 0001:0000f9c0 ?FAdd@GG@@UAEHJPAJPAX1@Z 004109c0 f groups.obj - 0001:0000fa80 ?Delete@GG@@UAEXJ@Z 00410a80 f groups.obj - 0001:0000fbc0 ?AssertValid@GG@@QAEXK@Z 00410bc0 f groups.obj - 0001:0000fc30 ?PagNew@AG@@SGPAV1@JJJ@Z 00410c30 f groups.obj - 0001:0000fd80 ??0AG@@IAE@J@Z 00410d80 f groups.obj - 0001:0000fdc0 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00410dc0 f groups.obj - 0001:0000ff90 ?FAdd@AG@@UAEHJPAJPAX1@Z 00410f90 f groups.obj - 0001:00010320 ?Delete@AG@@UAEXJ@Z 00411320 f groups.obj - 0001:000104d0 ?AssertValid@AG@@QAEXK@Z 004114d0 f groups.obj - 0001:00010540 ??_GGRPB@@UAEPAXI@Z 00411540 f groups.obj - 0001:00010540 ??_EGRPB@@UAEPAXI@Z 00411540 f groups.obj - 0001:00010580 ??_GGG@@UAEPAXI@Z 00411580 f groups.obj - 0001:00010580 ??_EGG@@UAEPAXI@Z 00411580 f groups.obj - 0001:000105c0 ??_EAG@@UAEPAXI@Z 004115c0 f groups.obj - 0001:000105c0 ??_GAG@@UAEPAXI@Z 004115c0 f groups.obj - 0001:00010600 ??_EGLB@@UAEPAXI@Z 00411600 f groups.obj - 0001:00010600 ??_GGLB@@UAEPAXI@Z 00411600 f groups.obj - 0001:00010640 ??_GGL@@UAEPAXI@Z 00411640 f groups.obj - 0001:00010640 ??_EGL@@UAEPAXI@Z 00411640 f groups.obj - 0001:00010680 ??1GLB@@UAE@XZ 00411680 f groups.obj - 0001:000106b0 ??_EAL@@UAEPAXI@Z 004116b0 f groups.obj - 0001:000106b0 ??_GAL@@UAEPAXI@Z 004116b0 f groups.obj - 0001:000106f0 ??_GGGB@@UAEPAXI@Z 004116f0 f groups.obj - 0001:000106f0 ??_EGGB@@UAEPAXI@Z 004116f0 f groups.obj - 0001:00010730 ??1GGB@@UAE@XZ 00411730 f groups.obj - 0001:00010760 ??1GG@@UAE@XZ 00411760 f groups.obj - 0001:00010790 ??1AG@@UAE@XZ 00411790 f groups.obj - 0001:000107c0 ??1GL@@UAE@XZ 004117c0 f groups.obj - 0001:000107f0 ??1AL@@UAE@XZ 004117f0 f groups.obj - 0001:00010820 ?FWouldBe@GSTB@@SGHJ@Z 00411820 f groups2.obj - 0001:00010860 ?FIs@GSTB@@UAEHJ@Z 00411860 f groups2.obj - 0001:00010890 ?Cls@GSTB@@UAEJXZ 00411890 f groups2.obj - 0001:000108c0 ?FWouldBe@GST@@SGHJ@Z 004118c0 f groups2.obj - 0001:00010900 ?FIs@GST@@UAEHJ@Z 00411900 f groups2.obj - 0001:00010930 ?Cls@GST@@UAEJXZ 00411930 f groups2.obj - 0001:00010960 ??0GSTB@@IAE@JK@Z 00411960 f groups2.obj - 0001:00010a60 ?CbOnFile@GSTB@@UAEJXZ 00411a60 f groups2.obj - 0001:00010ad0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 00411ad0 f groups2.obj - 0001:00010da0 ?FEnsureSpace@GSTB@@QAEHJJK@Z 00411da0 f groups2.obj - 0001:00010ee0 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 00411ee0 f groups2.obj - 0001:00010ff0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 00411ff0 f groups2.obj - 0001:00011100 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 00412100 f groups2.obj - 0001:000111d0 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 004121d0 f groups2.obj - 0001:00011340 ?GetExtra@GSTB@@QAEXJPAX@Z 00412340 f groups2.obj - 0001:00011450 ?_Qst@GSTB@@IAEPADJ@Z 00412450 f groups2.obj - 0001:000114b0 ?_AppendRgch@GSTB@@IAEXPADJ@Z 004124b0 f groups2.obj - 0001:00011570 ?_RemoveSt@GSTB@@IAEXJ@Z 00412570 f groups2.obj - 0001:000116a0 ?_SwapBytesRgbst@GSTB@@IAEXXZ 004126a0 f groups2.obj - 0001:00011730 ?_TranslateGrst@GSTB@@IAEXFH@Z 00412730 f groups2.obj - 0001:000117f0 ?CchTotSt@@YGJPAD@Z 004127f0 f groups2.obj - 0001:00011820 ?FFree@GSTB@@UAEHJ@Z 00412820 f groups2.obj - 0001:000118f0 ?TranslateSt@@YGXPADFH@Z 004128f0 f groups2.obj - 0001:00011920 ?AssertValid@GSTB@@QAEXK@Z 00412920 f groups2.obj - 0001:00011c00 ?PgstNew@GST@@SGPAV1@JJJ@Z 00412c00 f groups2.obj - 0001:00011d90 ?SetSt@STN@@QAEXPAD@Z 00412d90 f groups2.obj - 0001:00011dd0 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 00412dd0 f groups2.obj - 0001:00011ec0 ?FFindRgch@GST@@UAEHPADJPAJK@Z 00412ec0 f groups2.obj - 0001:00012070 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 00413070 f groups2.obj - 0001:00012270 ?Delete@GST@@UAEXJ@Z 00413270 f groups2.obj - 0001:000123a0 ?AssertValid@GST@@QAEXK@Z 004133a0 f groups2.obj - 0001:00012410 ?_Bst@GSTB@@IAEJJ@Z 00413410 f groups2.obj - 0001:00012450 ?_Qbst@GSTB@@IAEPAJJ@Z 00413450 f groups2.obj - 0001:00012490 ??0GST@@IAE@J@Z 00413490 f groups2.obj - 0001:000124f0 ??_GGST@@UAEPAXI@Z 004134f0 f groups2.obj - 0001:000124f0 ??_EGST@@UAEPAXI@Z 004134f0 f groups2.obj - 0001:00012530 ??_GGSTB@@UAEPAXI@Z 00413530 f groups2.obj - 0001:00012530 ??_EGSTB@@UAEPAXI@Z 00413530 f groups2.obj - 0001:00012570 ??1GSTB@@UAE@XZ 00413570 f groups2.obj - 0001:000125a0 ??1GST@@UAE@XZ 004135a0 f groups2.obj - 0001:000125d0 ?FWouldBe@CFL@@SGHJ@Z 004135d0 f chunk.obj - 0001:00012610 ?FIs@CFL@@UAEHJ@Z 00413610 f chunk.obj - 0001:00012640 ?Cls@CFL@@UAEJXZ 00413640 f chunk.obj - 0001:00012670 ?FWouldBe@CGE@@SGHJ@Z 00413670 f chunk.obj - 0001:000126b0 ?FIs@CGE@@UAEHJ@Z 004136b0 f chunk.obj - 0001:000126e0 ?Cls@CGE@@UAEJXZ 004136e0 f chunk.obj - 0001:00012710 ??0CFL@@AAE@XZ 00413710 f chunk.obj - 0001:00012780 ??1CFL@@EAE@XZ 00413780 f chunk.obj - 0001:00012910 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00413910 f chunk.obj - 0001:00012ba0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00413ba0 f chunk.obj - 0001:00012bf0 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00413bf0 f chunk.obj - 0001:00012e60 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00413e60 f chunk.obj - 0001:00012f80 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00413f80 f chunk.obj - 0001:000130b0 ?AssignGrfcrp@CRPSM@@QAEXKK@Z 004140b0 f chunk.obj - 0001:00013100 ?SetCb@CRPSM@@QAEXJ@Z 00414100 f chunk.obj - 0001:00013140 ?Grfcrp@CRPSM@@QAEKK@Z 00414140 f chunk.obj - 0001:00013170 ?ClearGrfcrp@CRPSM@@QAEXK@Z 00414170 f chunk.obj - 0001:000131a0 ?SetGrfcrp@CRPSM@@QAEXK@Z 004141a0 f chunk.obj - 0001:000131d0 ?FSetGrfcfl@CFL@@QAEHKK@Z 004141d0 f chunk.obj - 0001:00013320 ?Release@CFL@@UAEXXZ 00414320 f chunk.obj - 0001:00013400 ?AssertValid@CFL@@QAEXK@Z 00414400 f chunk.obj - 0001:000141d0 ?CbRgch@CRPSM@@QAEJJ@Z 004151d0 f chunk.obj - 0001:00014200 ?BvRgch@CRPSM@@QAEJXZ 00415200 f chunk.obj - 0001:00014230 ?Cb@CRPSM@@QAEJXZ 00415230 f chunk.obj - 0001:00014260 ?SuspendAssertValid@@YGXXZ 00415260 f chunk.obj - 0001:000142b0 ?ResumeAssertValid@@YGXXZ 004152b0 f chunk.obj - 0001:000142e0 ?ElError@FIL@@QAEJXZ 004152e0 f chunk.obj - 0001:00014310 ?GrffilCur@FIL@@QAEKXZ 00415310 f chunk.obj - 0001:00014340 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 00415340 f chunk.obj - 0001:000143a0 ?FWriteRgbSeq@FIL@@QAEHPAXJPAJ@Z 004153a0 f chunk.obj - 0001:00014400 ?FPush@GL@@QAEHPAX@Z 00415400 f chunk.obj - 0001:00014440 ?MarkMem@CFL@@UAEXXZ 00415440 f chunk.obj - 0001:00014510 ?_TValidIndex@CFL@@AAEHXZ 00415510 f chunk.obj - 0001:00014a40 ?_FReadIndex@CFL@@AAEHXZ 00415a40 f chunk.obj - 0001:00015750 ?BvRgch@CRPBG@@QAEJXZ 00416750 f chunk.obj - 0001:00015780 ?CbRgch@CRPBG@@QAEJJ@Z 00416780 f chunk.obj - 0001:000157b0 ?Grfcrp@CRPBG@@QAEKK@Z 004167b0 f chunk.obj - 0001:000157e0 ?ClearGrfcrp@CRPBG@@QAEXK@Z 004167e0 f chunk.obj - 0001:00015810 ?SetGrfcrp@CRPBG@@QAEXK@Z 00416810 f chunk.obj - 0001:00015840 ?Cb@CRPBG@@QAEJXZ 00416840 f chunk.obj - 0001:00015870 ?_ReadFreeMap@CFL@@AAEXXZ 00416870 f chunk.obj - 0001:00015a60 ?CbEntry@GLB@@QAEJXZ 00416a60 f chunk.obj - 0001:00015a90 ?FSave@CFL@@QAEHKPAVFNI@@@Z 00416a90 f chunk.obj - 0001:000162e0 ?FTemp@FIL@@QAEHXZ 004172e0 f chunk.obj - 0001:00016320 ?GetFni@CFL@@QAEXPAVFNI@@@Z 00417320 f chunk.obj - 0001:00016350 ?GetFni@FIL@@QAEXPAVFNI@@@Z 00417350 f chunk.obj - 0001:00016380 ?_FWriteIndex@CFL@@AAEHK@Z 00417380 f chunk.obj - 0001:000166e0 ?SetTemp@CFL@@QAEXH@Z 004176e0 f chunk.obj - 0001:00016710 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00417710 f chunk.obj - 0001:00016890 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00417890 f chunk.obj - 0001:000169e0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 004179e0 f chunk.obj - 0001:00016ac0 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00417ac0 f chunk.obj - 0001:00016b90 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 00417b90 f chunk.obj - 0001:00016c40 ?FReadHq@BLCK@@QAEHPAPAXH@Z 00417c40 f chunk.obj - 0001:00016c80 ?FPacked@CFL@@QAEHKK@Z 00417c80 f chunk.obj - 0001:00016d90 ?_FCreateExtra@CFL@@AAEHXZ 00417d90 f chunk.obj - 0001:00016e70 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00417e70 f chunk.obj - 0001:000171b0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 004181b0 f chunk.obj - 0001:00017350 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00418350 f chunk.obj - 0001:00017460 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00418460 f chunk.obj - 0001:000175b0 ?FWrite@BLCK@@QAEHPAXH@Z 004185b0 f chunk.obj - 0001:000175f0 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 004185f0 f chunk.obj - 0001:00017720 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00418720 f chunk.obj - 0001:00017950 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 00418950 f chunk.obj - 0001:000179f0 ?FPutPv@CFL@@QAEHPAXJKK@Z 004189f0 f chunk.obj - 0001:00017a70 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00418a70 f chunk.obj - 0001:00017f70 ?FWrite@FLO@@QAEHPAX@Z 00418f70 f chunk.obj - 0001:00017fb0 ?Delete@CFL@@QAEXKK@Z 00418fb0 f chunk.obj - 0001:000182c0 ?CckiRef@CFL@@QAEJKK@Z 004192c0 f chunk.obj - 0001:00018380 ?TIsDescendent@CFL@@QAEHKKKK@Z 00419380 f chunk.obj - 0001:000184a0 ?DeleteChild@CFL@@QAEXKKKKK@Z 004194a0 f chunk.obj - 0001:00018630 ?_FDecRefCount@CFL@@AAEHJ@Z 00419630 f chunk.obj - 0001:00018710 ?_DeleteCore@CFL@@AAEXJ@Z 00419710 f chunk.obj - 0001:000187d0 ?_FreeFpCb@CFL@@AAEXHJJ@Z 004197d0 f chunk.obj - 0001:00018d90 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00419d90 f chunk.obj - 0001:00018ee0 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 00419ee0 f chunk.obj - 0001:00019180 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 0041a180 f chunk.obj - 0001:00019360 ?Ckid@CFL@@QAEJKK@Z 0041a360 f chunk.obj - 0001:00019420 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 0041a420 f chunk.obj - 0001:00019600 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 0041a600 f chunk.obj - 0001:000196b0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 0041a6b0 f chunk.obj - 0001:000198f0 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 0041a8f0 f chunk.obj - 0001:00019ad0 ?_FSetRti@CFL@@AAEHKKJ@Z 0041aad0 f chunk.obj - 0001:00019bf0 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 0041abf0 f chunk.obj - 0001:00019db0 ??0CGE@@QAE@XZ 0041adb0 f chunk.obj - 0001:00019e30 ??1CGE@@UAE@XZ 0041ae30 f chunk.obj - 0001:00019ec0 ?AssertValid@CGE@@QAEXK@Z 0041aec0 f chunk.obj - 0001:00019ff0 ?MarkMem@CGE@@UAEXXZ 0041aff0 f chunk.obj - 0001:0001a060 ?Init@CGE@@QAEXPAVCFL@@KK@Z 0041b060 f chunk.obj - 0001:0001a1b0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 0041b1b0 f chunk.obj - 0001:0001a5f0 ??4FNI@@QAEAAV0@AAV0@@Z 0041b5f0 f chunk.obj - 0001:0001a640 ??_ECFL@@EAEPAXI@Z 0041b640 f chunk.obj - 0001:0001a640 ??_GCFL@@EAEPAXI@Z 0041b640 f chunk.obj - 0001:0001a680 ??1FNI@@UAE@XZ 0041b680 f chunk.obj - 0001:0001a6b0 ??_ECGE@@UAEPAXI@Z 0041b6b0 f chunk.obj - 0001:0001a6b0 ??_GCGE@@UAEPAXI@Z 0041b6b0 f chunk.obj - 0001:0001a6f0 ??4BASE@@QAEAAV0@ABV0@@Z 0041b6f0 f chunk.obj - 0001:0001a730 ?FWouldBe@CODM@@SGHJ@Z 0041b730 f codec.obj - 0001:0001a770 ?FIs@CODM@@UAEHJ@Z 0041b770 f codec.obj - 0001:0001a7a0 ?Cls@CODM@@UAEJXZ 0041b7a0 f codec.obj - 0001:0001a7d0 ?FWouldBe@CODC@@SGHJ@Z 0041b7d0 f codec.obj - 0001:0001a810 ?FIs@CODC@@UAEHJ@Z 0041b810 f codec.obj - 0001:0001a840 ?Cls@CODC@@UAEJXZ 0041b840 f codec.obj - 0001:0001a870 ??0CODM@@QAE@PAVCODC@@J@Z 0041b870 f codec.obj - 0001:0001a970 ??1CODM@@UAE@XZ 0041b970 f codec.obj - 0001:0001aa90 ?AssertValid@CODM@@QAEXK@Z 0041ba90 f codec.obj - 0001:0001ab60 ?MarkMem@CODM@@UAEXXZ 0041bb60 f codec.obj - 0001:0001ac50 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 0041bc50 f codec.obj - 0001:0001ad60 ?FCanDo@CODM@@UAEHJH@Z 0041bd60 f codec.obj - 0001:0001add0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 0041bdd0 f codec.obj - 0001:0001af00 ?LwFromBytes@@YGJEEEE@Z 0041bf00 f codec.obj - 0001:0001af40 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 0041bf40 f codec.obj - 0001:0001b080 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 0041c080 f codec.obj - 0001:0001b270 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0041c270 f codec.obj - 0001:0001b580 ?B0Lw@@YGEJ@Z 0041c580 f codec.obj - 0001:0001b5a0 ?B1Lw@@YGEJ@Z 0041c5a0 f codec.obj - 0001:0001b5c0 ?B2Lw@@YGEJ@Z 0041c5c0 f codec.obj - 0001:0001b5e0 ?B3Lw@@YGEJ@Z 0041c5e0 f codec.obj - 0001:0001b620 ??_GCODM@@UAEPAXI@Z 0041c620 f codec.obj - 0001:0001b620 ??_ECODM@@UAEPAXI@Z 0041c620 f codec.obj - 0001:0001b660 ?FWouldBe@KCDC@@SGHJ@Z 0041c660 f codkauai.obj - 0001:0001b6a0 ?FIs@KCDC@@UAEHJ@Z 0041c6a0 f codkauai.obj - 0001:0001b6d0 ?Cls@KCDC@@UAEJXZ 0041c6d0 f codkauai.obj - 0001:0001b700 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0041c700 f codkauai.obj - 0001:0001b860 ?Set@BITA@@QAEXPAXJ@Z 0041c860 f codkauai.obj - 0001:0001b8c0 ?FWriteBits@BITA@@QAEHKJ@Z 0041c8c0 f codkauai.obj - 0001:0001ba60 ?FWriteLogEncoded@BITA@@QAEHK@Z 0041ca60 f codkauai.obj - 0001:0001bb50 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0041cb50 f codkauai.obj - 0001:0001c310 ?Ibit@BITA@@QAEJXZ 0041d310 f codkauai.obj - 0001:0001c340 ?Ib@BITA@@QAEJXZ 0041d340 f codkauai.obj - 0001:0001c370 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0041d370 f codkauai.obj - 0001:00020050 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00421050 f codkauai.obj - 0001:00020970 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00421970 f codkauai.obj - 0001:00023160 ?FWouldBe@BACO@@SGHJ@Z 00424160 f crf.obj - 0001:000231a0 ?FIs@BACO@@UAEHJ@Z 004241a0 f crf.obj - 0001:000231d0 ?Cls@BACO@@UAEJXZ 004241d0 f crf.obj - 0001:00023200 ?FWouldBe@GHQ@@SGHJ@Z 00424200 f crf.obj - 0001:00023240 ?FIs@GHQ@@UAEHJ@Z 00424240 f crf.obj - 0001:00023270 ?Cls@GHQ@@UAEJXZ 00424270 f crf.obj - 0001:000232a0 ?FWouldBe@RCA@@SGHJ@Z 004242a0 f crf.obj - 0001:000232e0 ?FIs@RCA@@UAEHJ@Z 004242e0 f crf.obj - 0001:00023310 ?Cls@RCA@@UAEJXZ 00424310 f crf.obj - 0001:00023340 ?FWouldBe@CRF@@SGHJ@Z 00424340 f crf.obj - 0001:00023380 ?FIs@CRF@@UAEHJ@Z 00424380 f crf.obj - 0001:000233b0 ?Cls@CRF@@UAEJXZ 004243b0 f crf.obj - 0001:000233e0 ??0BACO@@IAE@XZ 004243e0 f crf.obj - 0001:00023460 ??1BACO@@MAE@XZ 00424460 f crf.obj - 0001:00023530 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00424530 f crf.obj - 0001:00023620 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00424620 f crf.obj - 0001:00023690 ?CbOnFile@BACO@@UAEJXZ 00424690 f crf.obj - 0001:00023700 ?AssertValid@BACO@@QAEXK@Z 00424700 f crf.obj - 0001:00023790 ?MarkMem@BACO@@UAEXXZ 00424790 f crf.obj - 0001:00023800 ?Release@BACO@@UAEXXZ 00424800 f crf.obj - 0001:00023960 ?Detach@BACO@@UAEXXZ 00424960 f crf.obj - 0001:00023a90 ?SetCrep@BACO@@UAEXJ@Z 00424a90 f crf.obj - 0001:00023b10 ??0CRF@@IAE@PAVCFL@@J@Z 00424b10 f crf.obj - 0001:00023c00 ??1CRF@@UAE@XZ 00424c00 f crf.obj - 0001:00023d60 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 00424d60 f crf.obj - 0001:00023eb0 ?CactRef@BASE@@QAEJXZ 00424eb0 f crf.obj - 0001:00023ee0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 00424ee0 f crf.obj - 0001:00024380 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 00425380 f crf.obj - 0001:00024760 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00425760 f crf.obj - 0001:000248b0 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 004258b0 f crf.obj - 0001:00024a00 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 00425a00 f crf.obj - 0001:00024aa0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00425aa0 f crf.obj - 0001:00024c60 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00425c60 f crf.obj - 0001:00024e50 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 00425e50 f crf.obj - 0001:00025020 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00426020 f crf.obj - 0001:000253a0 ?_FPurgeCb@CRF@@IAEHJJ@Z 004263a0 f crf.obj - 0001:00025650 ?AssertValid@CRF@@QAEXK@Z 00426650 f crf.obj - 0001:00025780 ?MarkMem@CRF@@UAEXXZ 00426780 f crf.obj - 0001:00025910 ?Pcfl@CRF@@QAEPAVCFL@@XZ 00426910 f crf.obj - 0001:00025940 ?FReadGhq@GHQ@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00426940 f crf.obj - 0001:00025b70 ??0GHQ@@QAE@PAX@Z 00426b70 f crf.obj - 0001:00025bb0 ?MarkMem@GHQ@@UAEXXZ 00426bb0 f crf.obj - 0001:00025c10 ??0RCA@@QAE@XZ 00426c10 f crf.obj - 0001:00025c50 ??1RCA@@UAE@XZ 00426c50 f crf.obj - 0001:00025c80 ??_EGHQ@@UAEPAXI@Z 00426c80 f crf.obj - 0001:00025c80 ??_GGHQ@@UAEPAXI@Z 00426c80 f crf.obj - 0001:00025cc0 ??1GHQ@@UAE@XZ 00426cc0 f crf.obj - 0001:00025d00 ??_EBACO@@MAEPAXI@Z 00426d00 f crf.obj - 0001:00025d00 ??_GBACO@@MAEPAXI@Z 00426d00 f crf.obj - 0001:00025d40 ??_ECRF@@UAEPAXI@Z 00426d40 f crf.obj - 0001:00025d40 ??_GCRF@@UAEPAXI@Z 00426d40 f crf.obj - 0001:00025d80 ??_GRCA@@UAEPAXI@Z 00426d80 f crf.obj - 0001:00025d80 ??_ERCA@@UAEPAXI@Z 00426d80 f crf.obj - 0001:00025de0 ?FWouldBe@FIL@@SGHJ@Z 00426de0 f file.obj - 0001:00025e20 ?FIs@FIL@@UAEHJ@Z 00426e20 f file.obj - 0001:00025e50 ?Cls@FIL@@UAEJXZ 00426e50 f file.obj - 0001:00025e80 ?FWouldBe@BLCK@@SGHJ@Z 00426e80 f file.obj - 0001:00025ec0 ?FIs@BLCK@@UAEHJ@Z 00426ec0 f file.obj - 0001:00025ef0 ?Cls@BLCK@@UAEJXZ 00426ef0 f file.obj - 0001:00025f20 ??0FIL@@IAE@PAVFNI@@K@Z 00426f20 f file.obj - 0001:00026010 ??1FIL@@MAE@XZ 00427010 f file.obj - 0001:00026080 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00427080 f file.obj - 0001:000262a0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 004272a0 f file.obj - 0001:00026470 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00427470 f file.obj - 0001:00026590 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00427590 f file.obj - 0001:000266e0 ?FSetGrffil@FIL@@QAEHKK@Z 004276e0 f file.obj - 0001:000267f0 ?Release@FIL@@UAEXXZ 004277f0 f file.obj - 0001:000268d0 ?SetTemp@FIL@@QAEXH@Z 004278d0 f file.obj - 0001:00026950 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 00427950 f file.obj - 0001:00026a50 ?ShutDown@FIL@@SGXXZ 00427a50 f file.obj - 0001:00026b10 ?AssertValid@FIL@@QAEXK@Z 00427b10 f file.obj - 0001:00026c40 ?_FRangeIn@@YGHJJJ@Z 00427c40 f file.obj - 0001:00026ca0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00427ca0 f file.obj - 0001:00026d70 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00427d70 f file.obj - 0001:00026e40 ?FCopy@FLO@@QAEHPAU1@@Z 00427e40 f file.obj - 0001:000270c0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 004280c0 f file.obj - 0001:000271d0 ?FWriteHq@FLO@@QAEHPAXJ@Z 004281d0 f file.obj - 0001:000272b0 ?FTranslate@FLO@@QAEHF@Z 004282b0 f file.obj - 0001:000277e0 ?AssertValid@FLO@@QAEXK@Z 004287e0 f file.obj - 0001:000278e0 ??0BLCK@@QAE@PAUFLO@@H@Z 004288e0 f file.obj - 0001:00027a20 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00428a20 f file.obj - 0001:00027b60 ??0BLCK@@QAE@XZ 00428b60 f file.obj - 0001:00027c00 ??1BLCK@@UAE@XZ 00428c00 f file.obj - 0001:00027c60 ?Set@BLCK@@QAEXPAUFLO@@H@Z 00428c60 f file.obj - 0001:00027d80 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00428d80 f file.obj - 0001:00027eb0 ?SetHq@BLCK@@QAEXPAPAXH@Z 00428eb0 f file.obj - 0001:00027f90 ?Free@BLCK@@QAEXXZ 00428f90 f file.obj - 0001:00028040 ?HqFree@BLCK@@QAEPAXH@Z 00429040 f file.obj - 0001:000281f0 ?Cb@BLCK@@QAEJH@Z 004291f0 f file.obj - 0001:00028280 ?FSetTemp@BLCK@@QAEHJH@Z 00429280 f file.obj - 0001:00028380 ?FMoveMin@BLCK@@QAEHJ@Z 00429380 f file.obj - 0001:00028470 ?FMoveLim@BLCK@@QAEHJ@Z 00429470 f file.obj - 0001:00028560 ?FReadHq@FLO@@QAEHPAPAX@Z 00429560 f file.obj - 0001:000285a0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 004295a0 f file.obj - 0001:00028740 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00429740 f file.obj - 0001:000288e0 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 004298e0 f file.obj - 0001:00028ab0 ?FWriteHq@BLCK@@QAEHPAXJH@Z 00429ab0 f file.obj - 0001:00028c50 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00429c50 f file.obj - 0001:00028df0 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 00429df0 f file.obj - 0001:00028fa0 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 00429fa0 f file.obj - 0001:000291a0 ?FUnpackData@BLCK@@QAEHXZ 0042a1a0 f file.obj - 0001:000293d0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 0042a3d0 f file.obj - 0001:00029400 ?CbMem@BLCK@@QAEJXZ 0042a400 f file.obj - 0001:00029480 ?AssertValid@BLCK@@QAEXK@Z 0042a480 f file.obj - 0001:000296b0 ?MarkMem@BLCK@@UAEXXZ 0042a6b0 f file.obj - 0001:00029750 ??_GFIL@@MAEPAXI@Z 0042a750 f file.obj - 0001:00029750 ??_EFIL@@MAEPAXI@Z 0042a750 f file.obj - 0001:00029790 ??_GBLCK@@UAEPAXI@Z 0042a790 f file.obj - 0001:00029790 ??_EBLCK@@UAEPAXI@Z 0042a790 f file.obj - 0001:000297d0 ?_HfileOpen@@YGPAXPADHK@Z 0042a7d0 f filewin.obj - 0001:00029850 ?_FOpen@FIL@@IAEHHK@Z 0042a850 f filewin.obj - 0001:00029a90 ?_Close@FIL@@IAEXH@Z 0042aa90 f filewin.obj - 0001:00029bb0 ?Flush@FIL@@QAEXXZ 0042abb0 f filewin.obj - 0001:00029c40 ?_SetFpPos@FIL@@IAEXJ@Z 0042ac40 f filewin.obj - 0001:00029d40 ?FSetFpMac@FIL@@QAEHJ@Z 0042ad40 f filewin.obj - 0001:00029e80 ?FpMac@FIL@@QAEJXZ 0042ae80 f filewin.obj - 0001:00029f90 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0042af90 f filewin.obj - 0001:0002a150 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0042b150 f filewin.obj - 0001:0002a320 ?FSwapNames@FIL@@QAEHPAV1@@Z 0042b320 f filewin.obj - 0001:0002a7b0 ?FRename@FIL@@QAEHPAVFNI@@@Z 0042b7b0 f filewin.obj - 0001:0002a9e0 ?FWouldBe@FNI@@SGHJ@Z 0042b9e0 f fniwin.obj - 0001:0002aa20 ?FIs@FNI@@UAEHJ@Z 0042ba20 f fniwin.obj - 0001:0002aa50 ?Cls@FNI@@UAEJXZ 0042ba50 f fniwin.obj - 0001:0002aa80 ?SetNil@FNI@@QAEXXZ 0042ba80 f fniwin.obj - 0001:0002aae0 ??0FNI@@QAE@XZ 0042bae0 f fniwin.obj - 0001:0002ab30 ?FGetOpen@FNI@@QAEHPADPAUHWND__@@@Z 0042bb30 f fniwin.obj - 0001:0002ac80 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 0042bc80 f fniwin.obj - 0001:0002ade0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0042bde0 f fniwin.obj - 0001:0002b130 ?FGetUnique@FNI@@QAEHJ@Z 0042c130 f fniwin.obj - 0001:0002b2e0 ?FGetTemp@FNI@@QAEHXZ 0042c2e0 f fniwin.obj - 0001:0002b420 ?Ftg@FNI@@QAEJXZ 0042c420 f fniwin.obj - 0001:0002b470 ?Grfvk@FNI@@QAEKXZ 0042c470 f fniwin.obj - 0001:0002b670 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0042c670 f fniwin.obj - 0001:0002b830 ?FChangeFtg@FNI@@QAEHJ@Z 0042c830 f fniwin.obj - 0001:0002b9a0 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0042c9a0 f fniwin.obj - 0001:0002bae0 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 0042cae0 f fniwin.obj - 0001:0002bba0 ?TExists@FNI@@QAEHXZ 0042cba0 f fniwin.obj - 0001:0002bde0 ?FDelete@FNI@@QAEHXZ 0042cde0 f fniwin.obj - 0001:0002beb0 ?FRename@FNI@@QAEHPAV1@@Z 0042ceb0 f fniwin.obj - 0001:0002bfd0 ?FEqual@FNI@@QAEHPAV1@@Z 0042cfd0 f fniwin.obj - 0001:0002c090 ?FSameDir@FNI@@QAEHPAV1@@Z 0042d090 f fniwin.obj - 0001:0002c1d0 ?FUpDir@FNI@@QAEHPAVSTN@@K@Z 0042d1d0 f fniwin.obj - 0001:0002c4a0 ?AssertValid@FNI@@QAEXK@Z 0042d4a0 f fniwin.obj - 0001:0002c7e0 ?_CchExt@FNI@@AAEJXZ 0042d7e0 f fniwin.obj - 0001:0002c8e0 ?_SetFtgFromName@FNI@@AAEXXZ 0042d8e0 f fniwin.obj - 0001:0002ca50 ?ChsUpper@@YGDD@Z 0042da50 f fniwin.obj - 0001:0002ca70 ??4STN@@QAEAAV0@PAD@Z 0042da70 f fniwin.obj - 0001:0002caa0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0042daa0 f fniwin.obj - 0001:0002cc80 ?FAppendCh@STN@@QAEHD@Z 0042dc80 f fniwin.obj - 0001:0002ccb0 ?FAppendSz@STN@@QAEHPAD@Z 0042dcb0 f fniwin.obj - 0001:0002ccf0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0042dcf0 f fniwin.obj - 0001:0002ce20 ?FAppendStn@STN@@QAEHPAV1@@Z 0042de20 f fniwin.obj - 0001:0002ce60 ?FInsertCh@STN@@QAEHJD@Z 0042de60 f fniwin.obj - 0001:0002cea0 ?FEqual@STN@@QAEHPAV1@@Z 0042dea0 f fniwin.obj - 0001:0002cee0 ?FEqualUser@STN@@QAEHPAV1@K@Z 0042dee0 f fniwin.obj - 0001:0002cf80 ??_GFNI@@UAEPAXI@Z 0042df80 f fniwin.obj - 0001:0002cf80 ??_EFNI@@UAEPAXI@Z 0042df80 f fniwin.obj - 0001:0002cfc0 ?FWouldBe@APPB@@SGHJ@Z 0042dfc0 f appb.obj - 0001:0002d000 ?FIs@APPB@@UAEHJ@Z 0042e000 f appb.obj - 0001:0002d030 ?Cls@APPB@@UAEJXZ 0042e030 f appb.obj - 0001:0002d060 ??0APPB@@QAE@XZ 0042e060 f appb.obj - 0001:0002d120 ??1APPB@@UAE@XZ 0042e120 f appb.obj - 0001:0002d160 ?Run@APPB@@UAEXKKJ@Z 0042e160 f appb.obj - 0001:0002d1e0 ?Quit@APPB@@UAEXH@Z 0042e1e0 f appb.obj - 0001:0002d280 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 0042e280 f appb.obj - 0001:0002d330 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 0042e330 f appb.obj - 0001:0002d490 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 0042e490 f appb.obj - 0001:0002d5b0 ?RefreshCurs@APPB@@UAEXXZ 0042e5b0 f appb.obj - 0001:0002d660 ?BeginLongOp@APPB@@UAEXXZ 0042e660 f appb.obj - 0001:0002d6d0 ?EndLongOp@APPB@@UAEXH@Z 0042e6d0 f appb.obj - 0001:0002d770 ?GrfcustCur@APPB@@UAEKH@Z 0042e770 f appb.obj - 0001:0002d840 ?ModifyGrfcust@APPB@@UAEXKK@Z 0042e840 f appb.obj - 0001:0002d8b0 ?HideCurs@APPB@@UAEXXZ 0042e8b0 f appb.obj - 0001:0002d900 ?ShowCurs@APPB@@UAEXXZ 0042e900 f appb.obj - 0001:0002d950 ?PositionCurs@APPB@@UAEXJJ@Z 0042e950 f appb.obj - 0001:0002d9b0 ?OnnDefVariable@APPB@@UAEJXZ 0042e9b0 f appb.obj - 0001:0002da70 ?OnnDefFixed@APPB@@UAEJXZ 0042ea70 f appb.obj - 0001:0002db90 ?DypTextDef@APPB@@UAEJXZ 0042eb90 f appb.obj - 0001:0002dbe0 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 0042ebe0 f appb.obj - 0001:0002dc50 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 0042ec50 f appb.obj - 0001:0002dcc0 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 0042ecc0 f appb.obj - 0001:0002e000 ??0PT@@QAE@XZ 0042f000 f appb.obj - 0001:0002e020 ?_TakeDownToolTip@APPB@@IAEXXZ 0042f020 f appb.obj - 0001:0002e0f0 ?_EnsureToolTip@APPB@@IAEXXZ 0042f0f0 f appb.obj - 0001:0002e210 ?ResetToolTip@APPB@@UAEXXZ 0042f210 f appb.obj - 0001:0002e270 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 0042f270 f appb.obj - 0001:0002e3a0 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 0042f3a0 f appb.obj - 0001:0002e410 ?_FInit@APPB@@MAEHKKJ@Z 0042f410 f appb.obj - 0001:0002e580 ?_FInitSound@APPB@@MAEHJ@Z 0042f580 f appb.obj - 0001:0002e6a0 ?_FInitMenu@APPB@@MAEHXZ 0042f6a0 f appb.obj - 0001:0002e710 ?_Loop@APPB@@MAEXXZ 0042f710 f appb.obj - 0001:0002e860 ?_CleanUp@APPB@@MAEXXZ 0042f860 f appb.obj - 0001:0002e910 ?_Activate@APPB@@MAEXH@Z 0042f910 f appb.obj - 0001:0002e9b0 ?TopOfLoop@APPB@@UAEXXZ 0042f9b0 f appb.obj - 0001:0002eaa0 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 0042faa0 f appb.obj - 0001:0002ec50 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 0042fc50 f appb.obj - 0001:0002ed00 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 0042fd00 f appb.obj - 0001:0002ee80 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 0042fe80 f appb.obj - 0001:0002ef40 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 0042ff40 f appb.obj - 0001:0002f030 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00430030 f appb.obj - 0001:0002f3b0 ??0RC@@QAE@XZ 004303b0 f appb.obj - 0001:0002f3d0 ?PtTopLeft@RC@@QAE?AVPT@@XZ 004303d0 f appb.obj - 0001:0002f410 ??0PT@@QAE@JJ@Z 00430410 f appb.obj - 0001:0002f450 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00430450 f appb.obj - 0001:0002f510 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00430510 f appb.obj - 0001:0002f600 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00430600 f appb.obj - 0001:0002f8b0 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 004308b0 f appb.obj - 0001:0002f9c0 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 004309c0 f appb.obj - 0001:0002fb20 ?UpdateMarked@APPB@@UAEXXZ 00430b20 f appb.obj - 0001:0002fbf0 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 00430bf0 f appb.obj - 0001:0002feb0 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 00430eb0 f appb.obj - 0001:0002fff0 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 00430ff0 f appb.obj - 0001:000302d0 ?SwHigh@@YGFJ@Z 004312d0 f appb.obj - 0001:000302f0 ?SwLow@@YGFJ@Z 004312f0 f appb.obj - 0001:00030310 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 00431310 f appb.obj - 0001:00030480 ?Set@RC@@QAEXJJJJ@Z 00431480 f appb.obj - 0001:000304d0 ?TsCurrent@@YGKXZ 004314d0 f appb.obj - 0001:000304f0 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 004314f0 f appb.obj - 0001:00030680 ?OnnSystem@NTL@@QAEJXZ 00431680 f appb.obj - 0001:000306b0 ??0ACR@@QAE@XZ 004316b0 f appb.obj - 0001:000306e0 ?_FSetProp@APPB@@IAEHJJ@Z 004316e0 f appb.obj - 0001:00030820 ?FSetProp@APPB@@UAEHJJ@Z 00431820 f appb.obj - 0001:00030b80 ??0ACR@@QAE@EEE@Z 00431b80 f appb.obj - 0001:00030bc0 ??0ACR@@QAE@HH@Z 00431bc0 f appb.obj - 0001:00030c10 ?FGetProp@APPB@@UAEHJPAJ@Z 00431c10 f appb.obj - 0001:00030d50 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 00431d50 f appb.obj - 0001:00030f90 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 00431f90 f appb.obj - 0001:000311a0 ?LuScale@USAC@@QAEKXZ 004321a0 f appb.obj - 0001:000311d0 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 004321d0 f appb.obj - 0001:00031200 ?FModalLoop@APPB@@UAEHPAJ@Z 00432200 f appb.obj - 0001:000312f0 ?InvalHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 004322f0 f appb.obj - 0001:00031320 ?EndModal@APPB@@UAEXJ@Z 00432320 f appb.obj - 0001:00031390 ?PopModal@APPB@@UAEXXZ 00432390 f appb.obj - 0001:00031530 ?PgobScreen@GOB@@SGPAV1@XZ 00432530 f appb.obj - 0001:00031550 ?Hwnd@GOB@@QAEPAUHWND__@@XZ 00432550 f appb.obj - 0001:00031580 ?Pgpt@GOB@@QAEPAVGPT@@XZ 00432580 f appb.obj - 0001:000315b0 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 004325b0 f appb.obj - 0001:00031640 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 00432640 f appb.obj - 0001:00031780 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 00432780 f appb.obj - 0001:00031840 ?FAllowScreenSaver@APPB@@UAEHXZ 00432840 f appb.obj - 0001:00031890 ?AssertValid@APPB@@QAEXK@Z 00432890 f appb.obj - 0001:00031a50 ?MarkMem@APPB@@UAEXXZ 00432a50 f appb.obj - 0001:00031cf0 ?FAssertProc@@YGHPADJ0PAXJ@Z 00432cf0 f appb.obj - 0001:00031d40 ?WarnProc@@YGXPADJ0@Z 00432d40 f appb.obj - 0001:00031db0 ?WarnProcApp@APPB@@UAEXPADJ0@Z 00432db0 f appb.obj - 0001:00032040 ??_EAPPB@@UAEPAXI@Z 00433040 f appb.obj - 0001:00032040 ??_GAPPB@@UAEPAXI@Z 00433040 f appb.obj - 0001:00032080 ??1GTE@@UAE@XZ 00433080 f appb.obj - 0001:000320b0 ??_9@$BMA@A 004330b0 f appb.obj - 0001:000320c0 ??_9@$BBCE@A 004330c0 f appb.obj - 0001:000320d0 ??_9@$BME@A 004330d0 f appb.obj - 0001:000320e0 ??_9@$BMI@A 004330e0 f appb.obj - 0001:000320f0 ??_9@$BMM@A 004330f0 f appb.obj - 0001:00032100 ??_9@$BNA@A 00433100 f appb.obj - 0001:00032110 ?FWouldBe@CLOK@@SGHJ@Z 00433110 f clok.obj - 0001:00032150 ?FIs@CLOK@@UAEHJ@Z 00433150 f clok.obj - 0001:00032180 ?Cls@CLOK@@UAEJXZ 00433180 f clok.obj - 0001:000321d0 ??0CLOK@@QAE@JK@Z 004331d0 f clok.obj - 0001:00032290 ??1CLOK@@UAE@XZ 00433290 f clok.obj - 0001:00032370 ?PclokFromHid@CLOK@@SGPAV1@J@Z 00433370 f clok.obj - 0001:00032420 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 00433420 f clok.obj - 0001:00032470 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 00433470 f clok.obj - 0001:00032550 ?Start@CLOK@@QAEXK@Z 00433550 f clok.obj - 0001:00032600 ?TimCur@CLOK@@QAEKH@Z 00433600 f clok.obj - 0001:00032680 ?FSetAlarm@CLOK@@QAEHJPAVCMH@@JH@Z 00433680 f clok.obj - 0001:00032810 ?FCmdAll@CLOK@@UAEHPAUCMD@@@Z 00433810 f clok.obj - 0001:00032b30 ?AssertValid@CLOK@@QAEXK@Z 00433b30 f clok.obj - 0001:00032c20 ?MarkMem@CLOK@@UAEXXZ 00433c20 f clok.obj - 0001:00032c70 ?MarkAllCloks@CLOK@@SGXXZ 00433c70 f clok.obj - 0001:00032d40 ??_ECLOK@@UAEPAXI@Z 00433d40 f clok.obj - 0001:00032d40 ??_GCLOK@@UAEPAXI@Z 00433d40 f clok.obj - 0001:00032d80 ??_9@$BCI@A 00433d80 f clok.obj - 0001:00032ea0 ?Hid@CMH@@QAEJXZ 00433ea0 f clok.obj - 0001:00032ed0 ?Pcmm@CLOK@@MAEPAUCMM@CMH@@XZ 00433ed0 f clok.obj - 0001:00032f00 ?FWouldBe@CMH@@SGHJ@Z 00433f00 f cmd.obj - 0001:00032f40 ?FIs@CMH@@UAEHJ@Z 00433f40 f cmd.obj - 0001:00032f70 ?Cls@CMH@@UAEJXZ 00433f70 f cmd.obj - 0001:00032fa0 ?FWouldBe@CEX@@SGHJ@Z 00433fa0 f cmd.obj - 0001:00032fe0 ?FIs@CEX@@UAEHJ@Z 00433fe0 f cmd.obj - 0001:00033010 ?Cls@CEX@@UAEJXZ 00434010 f cmd.obj - 0001:00033040 ?AssertValid@CMD@@QAEXK@Z 00434040 f cmd.obj - 0001:000330e0 ?HidUnique@CMH@@SGJJ@Z 004340e0 f cmd.obj - 0001:000331a0 ??0CMH@@QAE@J@Z 004341a0 f cmd.obj - 0001:00033240 ??1CMH@@UAE@XZ 00434240 f cmd.obj - 0001:000332c0 ?AssertValid@CMH@@QAEXK@Z 004342c0 f cmd.obj - 0001:00033320 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 00434320 f cmd.obj - 0001:000334c0 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 004344c0 f cmd.obj - 0001:000335e0 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 004345e0 f cmd.obj - 0001:00033750 ??0CEX@@IAE@XZ 00434750 f cmd.obj - 0001:000337b0 ??1CEX@@UAE@XZ 004347b0 f cmd.obj - 0001:00033950 ?PcexNew@CEX@@SGPAV1@JJ@Z 00434950 f cmd.obj - 0001:00033a50 ?_FInit@CEX@@MAEHJJ@Z 00434a50 f cmd.obj - 0001:00033b30 ?Record@CEX@@QAEXPAVCFL@@@Z 00434b30 f cmd.obj - 0001:00033d00 ?StopRecording@CEX@@QAEXXZ 00434d00 f cmd.obj - 0001:00033f40 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00434f40 f cmd.obj - 0001:00034280 ?Play@CEX@@QAEXPAVCFL@@K@Z 00435280 f cmd.obj - 0001:00034490 ?StopPlaying@CEX@@QAEXXZ 00435490 f cmd.obj - 0001:000345b0 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 004355b0 f cmd.obj - 0001:00034930 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 00435930 f cmd.obj - 0001:00034a00 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 00435a00 f cmd.obj - 0001:00034b60 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 00435b60 f cmd.obj - 0001:00034cb0 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 00435cb0 f cmd.obj - 0001:00034eb0 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 00435eb0 f cmd.obj - 0001:00034fb0 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00435fb0 f cmd.obj - 0001:000350a0 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 004360a0 f cmd.obj - 0001:00035190 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 00436190 f cmd.obj - 0001:00035310 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 00436310 f cmd.obj - 0001:00035490 ?FCidIn@CEX@@UAEHJ@Z 00436490 f cmd.obj - 0001:00035560 ?FlushCid@CEX@@UAEXJ@Z 00436560 f cmd.obj - 0001:00035660 ?FEnqueue@GL@@QAEHPAX@Z 00436660 f cmd.obj - 0001:00035690 ?_TGetNextCmd@CEX@@MAEHXZ 00436690 f cmd.obj - 0001:00035970 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 00436970 f cmd.obj - 0001:00035a20 ?_CleanUpCmd@CEX@@MAEXXZ 00436a20 f cmd.obj - 0001:00035b50 ?FDispatchNextCmd@CEX@@UAEHXZ 00436b50 f cmd.obj - 0001:00035d80 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00436d80 f cmd.obj - 0001:00035ea0 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00436ea0 f cmd.obj - 0001:000360f0 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 004370f0 f cmd.obj - 0001:00036210 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 00437210 f cmd.obj - 0001:00036340 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 00437340 f cmd.obj - 0001:00036440 ?EndMouseTracking@CEX@@UAEXXZ 00437440 f cmd.obj - 0001:000364d0 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 004374d0 f cmd.obj - 0001:00036520 ?Suspend@CEX@@UAEXH@Z 00437520 f cmd.obj - 0001:000366f0 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 004376f0 f cmd.obj - 0001:00036780 ?AssertValid@CEX@@QAEXK@Z 00437780 f cmd.obj - 0001:00036920 ?MarkMem@CEX@@UAEXXZ 00437920 f cmd.obj - 0001:00036a60 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 00437a60 f cmd.obj - 0001:00036a90 ?FForeground@APPB@@QAEHXZ 00437a90 f cmd.obj - 0001:00036ac0 ?PgobPar@GOB@@QAEPAV1@XZ 00437ac0 f cmd.obj - 0001:00036af0 ??_GCMH@@UAEPAXI@Z 00437af0 f cmd.obj - 0001:00036af0 ??_ECMH@@UAEPAXI@Z 00437af0 f cmd.obj - 0001:00036b30 ??_GCEX@@UAEPAXI@Z 00437b30 f cmd.obj - 0001:00036b30 ??_ECEX@@UAEPAXI@Z 00437b30 f cmd.obj - 0001:00036b70 ?FWouldBe@CURS@@SGHJ@Z 00437b70 f cursor.obj - 0001:00036bb0 ?FIs@CURS@@UAEHJ@Z 00437bb0 f cursor.obj - 0001:00036be0 ?Cls@CURS@@UAEJXZ 00437be0 f cursor.obj - 0001:00036c10 ??1CURS@@MAE@XZ 00437c10 f cursor.obj - 0001:00036c60 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00437c60 f cursor.obj - 0001:000370b0 ?Set@CURS@@QAEXXZ 004380b0 f cursor.obj - 0001:00037100 ??_ECURS@@MAEPAXI@Z 00438100 f cursor.obj - 0001:00037100 ??_GCURS@@MAEPAXI@Z 00438100 f cursor.obj - 0001:00037250 ??0CURS@@IAE@XZ 00438250 f cursor.obj - 0001:000372b0 ?FWouldBe@GNV@@SGHJ@Z 004382b0 f gfx.obj - 0001:000372f0 ?FIs@GNV@@UAEHJ@Z 004382f0 f gfx.obj - 0001:00037320 ?Cls@GNV@@UAEJXZ 00438320 f gfx.obj - 0001:00037350 ?FWouldBe@GPT@@SGHJ@Z 00438350 f gfx.obj - 0001:00037390 ?FIs@GPT@@UAEHJ@Z 00438390 f gfx.obj - 0001:000373c0 ?Cls@GPT@@UAEJXZ 004383c0 f gfx.obj - 0001:000373f0 ?FWouldBe@NTL@@SGHJ@Z 004383f0 f gfx.obj - 0001:00037430 ?FIs@NTL@@UAEHJ@Z 00438430 f gfx.obj - 0001:00037460 ?Cls@NTL@@UAEJXZ 00438460 f gfx.obj - 0001:00037490 ?FWouldBe@OGN@@SGHJ@Z 00438490 f gfx.obj - 0001:000374d0 ?FIs@OGN@@UAEHJ@Z 004384d0 f gfx.obj - 0001:00037500 ?Cls@OGN@@UAEJXZ 00438500 f gfx.obj - 0001:00037530 ?SetFromLw@ACR@@QAEXJ@Z 00438530 f gfx.obj - 0001:00037580 ?LwGet@ACR@@QBEJXZ 00438580 f gfx.obj - 0001:000375b0 ?GetClr@ACR@@QAEXPAUCLR@@@Z 004385b0 f gfx.obj - 0001:00037640 ?AssertValid@ACR@@QAEXK@Z 00438640 f gfx.obj - 0001:00037890 ?MoveOrigin@APT@@QAEXJJ@Z 00438890 f gfx.obj - 0001:00037940 ??0GNV@@QAE@PAVGPT@@@Z 00438940 f gfx.obj - 0001:00037a30 ??0GNV@@QAE@PAVGOB@@@Z 00438a30 f gfx.obj - 0001:00037b30 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 00438b30 f gfx.obj - 0001:00037c90 ??1GNV@@UAE@XZ 00438c90 f gfx.obj - 0001:00037d20 ?_Init@GNV@@AAEXPAVGPT@@@Z 00438d20 f gfx.obj - 0001:00037e30 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 00438e30 f gfx.obj - 0001:00037eb0 ?AssertValid@GNV@@QAEXK@Z 00438eb0 f gfx.obj - 0001:00038070 ?Max@RC@@QAEXXZ 00439070 f gfx.obj - 0001:000380d0 ?MarkMem@GNV@@UAEXXZ 004390d0 f gfx.obj - 0001:00038120 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00439120 f gfx.obj - 0001:000382b0 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 004392b0 f gfx.obj - 0001:000383a0 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 004393a0 f gfx.obj - 0001:00038550 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 00439550 f gfx.obj - 0001:00038660 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 00439660 f gfx.obj - 0001:000386f0 ?FillOval@GNV@@QAEXPAVRC@@VACR@@@Z 004396f0 f gfx.obj - 0001:000387e0 ?FrameOval@GNV@@QAEXPAVRC@@VACR@@@Z 004397e0 f gfx.obj - 0001:000388f0 ?LineApt@GNV@@QAEXJJJJPAUAPT@@VACR@@1@Z 004398f0 f gfx.obj - 0001:00038ab0 ?FrameOgnApt@GNV@@QAEXPAVOGN@@PAUAPT@@VACR@@2@Z 00439ab0 f gfx.obj - 0001:00038ce0 ?FrameOgn@GNV@@QAEXPAVOGN@@VACR@@@Z 00439ce0 f gfx.obj - 0001:00038e70 ?FramePolyLineApt@GNV@@QAEXPAVOGN@@PAUAPT@@VACR@@2@Z 00439e70 f gfx.obj - 0001:000390a0 ?_HqolyCreate@GNV@@AAEPAXPAVOGN@@K@Z 0043a0a0 f gfx.obj - 0001:00039260 ?_HqolyFrame@GNV@@AAEPAXPAVOGN@@K@Z 0043a260 f gfx.obj - 0001:000393c0 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 0043a3c0 f gfx.obj - 0001:000394f0 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 0043a4f0 f gfx.obj - 0001:00039660 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 0043a660 f gfx.obj - 0001:000396e0 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 0043a6e0 f gfx.obj - 0001:000397b0 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 0043a7b0 f gfx.obj - 0001:00039930 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 0043a930 f gfx.obj - 0001:00039a50 ?IntersectRcVis@GNV@@QAEXPAVRC@@@Z 0043aa50 f gfx.obj - 0001:00039b50 ?ClipRc@GNV@@QAEXPAVRC@@@Z 0043ab50 f gfx.obj - 0001:00039c90 ?SetPenSize@GNV@@QAEXJJ@Z 0043ac90 f gfx.obj - 0001:00039d50 ?SetFont@GNV@@QAEXJKJJJ@Z 0043ad50 f gfx.obj - 0001:00039f20 ?SetFontAlign@GNV@@QAEXJJ@Z 0043af20 f gfx.obj - 0001:00039fb0 ?PrgptLock@OGN@@QAEPAVPT@@J@Z 0043afb0 f gfx.obj - 0001:00039fe0 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 0043afe0 f gfx.obj - 0001:0003a150 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 0043b150 f gfx.obj - 0001:0003a2d0 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 0043b2d0 f gfx.obj - 0001:0003a3a0 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 0043b3a0 f gfx.obj - 0001:0003a4b0 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 0043b4b0 f gfx.obj - 0001:0003a650 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 0043b650 f gfx.obj - 0001:0003a860 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 0043b860 f gfx.obj - 0001:0003a960 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0043b960 f gfx.obj - 0001:0003ade0 ??8ACR@@QBEHABV0@@Z 0043bde0 f gfx.obj - 0001:0003ae20 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0043be20 f gfx.obj - 0001:0003b390 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0043c390 f gfx.obj - 0001:0003bd80 ??9ACR@@QBEHABV0@@Z 0043cd80 f gfx.obj - 0001:0003bdc0 ?Pgpt@GNV@@QAEPAVGPT@@XZ 0043cdc0 f gfx.obj - 0001:0003bdf0 ?_LwNextDissolve@@YGJJ@Z 0043cdf0 f gfx.obj - 0001:0003be70 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0043ce70 f gfx.obj - 0001:0003c1c0 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 0043d1c0 f gfx.obj - 0001:0003c800 ??YPT@@QAEAAV0@AAV0@@Z 0043d800 f gfx.obj - 0001:0003c840 ?DrawPic@GNV@@QAEXPAVPIC@@PAVRC@@@Z 0043d840 f gfx.obj - 0001:0003c930 ?DrawMbmp@GNV@@QAEXPAVMBMP@@JJ@Z 0043d930 f gfx.obj - 0001:0003ca40 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 0043da40 f gfx.obj - 0001:0003cb30 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 0043db30 f gfx.obj - 0001:0003cbd0 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 0043dbd0 f gfx.obj - 0001:0003ccc0 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 0043dcc0 f gfx.obj - 0001:0003cd30 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 0043dd30 f gfx.obj - 0001:0003cda0 ?MarkMem@GPT@@UAEXXZ 0043dda0 f gfx.obj - 0001:0003cdf0 ?AssertValid@DSF@@QAEXK@Z 0043ddf0 f gfx.obj - 0001:0003cea0 ?FInitGfx@@YGHXZ 0043dea0 f gfx.obj - 0001:0003cec0 ??0NTL@@QAE@XZ 0043dec0 f gfx.obj - 0001:0003cf00 ??1NTL@@UAE@XZ 0043df00 f gfx.obj - 0001:0003cf60 ?AssertValid@NTL@@QAEXK@Z 0043df60 f gfx.obj - 0001:0003cff0 ?MarkMem@NTL@@UAEXXZ 0043dff0 f gfx.obj - 0001:0003d040 ?FValidOnn@NTL@@QAEHJ@Z 0043e040 f gfx.obj - 0001:0003d0a0 ?IstnMac@GSTB@@QAEJXZ 0043e0a0 f gfx.obj - 0001:0003d0d0 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 0043e0d0 f gfx.obj - 0001:0003d190 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 0043e190 f gfx.obj - 0001:0003d250 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 0043e250 f gfx.obj - 0001:0003d320 ?OnnMac@NTL@@QAEJXZ 0043e320 f gfx.obj - 0001:0003d370 ?PognTraceRgpt@OGN@@QAEPAV1@PAVPT@@JK@Z 0043e370 f gfx.obj - 0001:0003d660 ??8PT@@QAEHAAV0@@Z 0043e660 f gfx.obj - 0001:0003d6b0 ??HPT@@QAE?AV0@AAV0@@Z 0043e6b0 f gfx.obj - 0001:0003d700 ?_FAddEdge@OGN@@AAEHPAUAEI@1@@Z 0043e700 f gfx.obj - 0001:0003d970 ??GPT@@QAE?AV0@AAV0@@Z 0043e970 f gfx.obj - 0001:0003d9c0 ?IptFindLeftmost@@YGJPAVPT@@JJJ@Z 0043e9c0 f gfx.obj - 0001:0003daa0 ?PognNew@OGN@@SGPAV1@J@Z 0043eaa0 f gfx.obj - 0001:0003dbc0 ??0OGN@@IAE@XZ 0043ebc0 f gfx.obj - 0001:0003dc20 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 0043ec20 f gfx.obj - 0001:0003e0f0 ??0RC@@QAE@JJJJ@Z 0043f0f0 f gfx.obj - 0001:0003e140 ?ScanNext@REGSC@@QAEXJ@Z 0043f140 f gfx.obj - 0001:0003e1b0 ?XpFetch@REGSC@@QAEJXZ 0043f1b0 f gfx.obj - 0001:0003e2e0 ?XpCur@REGSC@@QAEJXZ 0043f2e0 f gfx.obj - 0001:0003e310 ?DypCur@REGSC@@QAEJXZ 0043f310 f gfx.obj - 0001:0003e340 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 0043f340 f gfx.obj - 0001:0003e820 ??_GGNV@@UAEPAXI@Z 0043f820 f gfx.obj - 0001:0003e820 ??_EGNV@@UAEPAXI@Z 0043f820 f gfx.obj - 0001:0003e860 ??0GDD@@QAE@XZ 0043f860 f gfx.obj - 0001:0003e8a0 ??_H@YGXPAXIHP6EX0@Z@Z 0043f8a0 f gfx.obj - 0001:0003e8d0 ??_GNTL@@UAEPAXI@Z 0043f8d0 f gfx.obj - 0001:0003e8d0 ??_ENTL@@UAEPAXI@Z 0043f8d0 f gfx.obj - 0001:0003e910 ??0AEI@OGN@@QAE@XZ 0043f910 f gfx.obj - 0001:0003e940 ??_EOGN@@UAEPAXI@Z 0043f940 f gfx.obj - 0001:0003e940 ??_GOGN@@UAEPAXI@Z 0043f940 f gfx.obj - 0001:0003e980 ??1OGN@@UAE@XZ 0043f980 f gfx.obj - 0001:0003e9b0 ?FWouldBe@GOB@@SGHJ@Z 0043f9b0 f gob.obj - 0001:0003e9f0 ?FIs@GOB@@UAEHJ@Z 0043f9f0 f gob.obj - 0001:0003ea20 ?Cls@GOB@@UAEJXZ 0043fa20 f gob.obj - 0001:0003ea50 ?FWouldBe@GTE@@SGHJ@Z 0043fa50 f gob.obj - 0001:0003ea90 ?FIs@GTE@@UAEHJ@Z 0043fa90 f gob.obj - 0001:0003eac0 ?Cls@GTE@@UAEJXZ 0043fac0 f gob.obj - 0001:0003eaf0 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 0043faf0 f gob.obj - 0001:0003ec10 ?ShutDown@GOB@@SGXXZ 0043fc10 f gob.obj - 0001:0003ec50 ??0GOB@@QAE@PAUGCB@@@Z 0043fc50 f gob.obj - 0001:0003ecd0 ?_Init@GOB@@IAEXPAUGCB@@@Z 0043fcd0 f gob.obj - 0001:0003ef70 ??0GOB@@QAE@J@Z 0043ff70 f gob.obj - 0001:0003f000 ?Release@GOB@@UAEXXZ 00440000 f gob.obj - 0001:0003f100 ??1GOB@@MAE@XZ 00440100 f gob.obj - 0001:0003f300 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 00440300 f gob.obj - 0001:0003f3b0 ?BringToFront@GOB@@QAEXXZ 004403b0 f gob.obj - 0001:0003f400 ?SendBehind@GOB@@QAEXPAV1@@Z 00440400 f gob.obj - 0001:0003f650 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 00440650 f gob.obj - 0001:0003f860 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 00440860 f gob.obj - 0001:0003f9f0 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 004409f0 f gob.obj - 0001:0003fbf0 ?Offset@PT@@QAEXJJ@Z 00440bf0 f gob.obj - 0001:0003fc20 ??0RC@@QAE@AAUtagRECT@@@Z 00440c20 f gob.obj - 0001:0003fc50 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 00440c50 f gob.obj - 0001:000401d0 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 004411d0 f gob.obj - 0001:000406f0 ??HRC@@QAE?AV0@AAVPT@@@Z 004416f0 f gob.obj - 0001:00040750 ??GRC@@QAE?AV0@AAVPT@@@Z 00441750 f gob.obj - 0001:000407b0 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 004417b0 f gob.obj - 0001:00040e40 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 00441e40 f gob.obj - 0001:00040e90 ?Maximize@GOB@@UAEXXZ 00441e90 f gob.obj - 0001:00040f20 ?SetPos@GOB@@QAEXPAVRC@@0@Z 00441f20 f gob.obj - 0001:00041000 ?GetPos@GOB@@QAEXPAVRC@@0@Z 00442000 f gob.obj - 0001:000410b0 ?SetRcFromHwnd@GOB@@QAEXXZ 004420b0 f gob.obj - 0001:00041140 ?GetRc@GOB@@QAEXPAVRC@@J@Z 00442140 f gob.obj - 0001:000411f0 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 004421f0 f gob.obj - 0001:000412a0 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 004422a0 f gob.obj - 0001:00041320 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 00442320 f gob.obj - 0001:000413a0 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 004423a0 f gob.obj - 0001:00041450 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 00442450 f gob.obj - 0001:00041650 ??0PT@@QAE@AAUtagPOINT@@@Z 00442650 f gob.obj - 0001:00041680 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 00442680 f gob.obj - 0001:000416d0 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 004426d0 f gob.obj - 0001:00041780 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 00442780 f gob.obj - 0001:00041890 ?FPtIn@GOB@@UAEHJJ@Z 00442890 f gob.obj - 0001:00041920 ?FPtInBounds@GOB@@UAEHJJ@Z 00442920 f gob.obj - 0001:000419b0 ?MouseDown@GOB@@UAEXJJJK@Z 004429b0 f gob.obj - 0001:00041ac0 ?_SetRcCur@GOB@@AAEXXZ 00442ac0 f gob.obj - 0001:00041ce0 ?PgobPrevSib@GOB@@QAEPAV1@XZ 00442ce0 f gob.obj - 0001:00041de0 ?PgobLastChild@GOB@@QAEPAV1@XZ 00442de0 f gob.obj - 0001:00041e80 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 00442e80 f gob.obj - 0001:00041fa0 ?PgobFromCls@GOB@@QAEPAV1@J@Z 00442fa0 f gob.obj - 0001:00042060 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 00443060 f gob.obj - 0001:000420f0 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 004430f0 f gob.obj - 0001:00042160 ?PgobFromHid@GOB@@QAEPAV1@J@Z 00443160 f gob.obj - 0001:00042330 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 00443330 f gob.obj - 0001:00042390 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 00443390 f gob.obj - 0001:000423e0 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 004433e0 f gob.obj - 0001:00042410 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 00443410 f gob.obj - 0001:00042440 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 00443440 f gob.obj - 0001:000424a0 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 004434a0 f gob.obj - 0001:00042500 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 00443500 f gob.obj - 0001:00042580 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 00443580 f gob.obj - 0001:00042ad0 ??ZPT@@QAEAAV0@AAV0@@Z 00443ad0 f gob.obj - 0001:00042b10 ??YRC@@QAEAAV0@AAVPT@@@Z 00443b10 f gob.obj - 0001:00042b60 ?ValidHwndRcs@@YGXPAUHWND__@@PAUtagRECT@@@Z 00443b60 f gob.obj - 0001:00042b80 ??0GCB@@QAE@JPAVGOB@@KJPAVRC@@1@Z 00443b80 f gob.obj - 0001:00042be0 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 00443be0 f gob.obj - 0001:00042c10 ?_NewRc@GOB@@MAEXXZ 00443c10 f gob.obj - 0001:00042c30 ?_ActivateHwnd@GOB@@MAEXH@Z 00443c30 f gob.obj - 0001:00042c50 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 00443c50 f gob.obj - 0001:00042c80 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 00443c80 f gob.obj - 0001:00042cb0 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 00443cb0 f gob.obj - 0001:00042ce0 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 00443ce0 f gob.obj - 0001:00042d10 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 00443d10 f gob.obj - 0001:00042d60 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 00443d60 f gob.obj - 0001:00042df0 ?LwState@GOB@@UAEJXZ 00443df0 f gob.obj - 0001:00042e40 ?AssertValid@GOB@@QAEXK@Z 00443e40 f gob.obj - 0001:00042f30 ?MarkMem@GOB@@UAEXXZ 00443f30 f gob.obj - 0001:00042fa0 ?MarkGobTree@GOB@@QAEXXZ 00443fa0 f gob.obj - 0001:00043010 ??0GTE@@QAE@XZ 00444010 f gob.obj - 0001:00043050 ?Init@GTE@@QAEXPAVGOB@@K@Z 00444050 f gob.obj - 0001:000430d0 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 004440d0 f gob.obj - 0001:000432d0 ??_EGOB@@MAEPAXI@Z 004442d0 f gob.obj - 0001:000432d0 ??_GGOB@@MAEPAXI@Z 004442d0 f gob.obj - 0001:00043310 ??_GGTE@@UAEPAXI@Z 00444310 f gob.obj - 0001:00043310 ??_EGTE@@UAEPAXI@Z 00444310 f gob.obj - 0001:00043350 ??_9@$BGA@A 00444350 f gob.obj - 0001:00043360 ??_9@$BHE@A 00444360 f gob.obj - 0001:00043370 ??_9@$BHI@A 00444370 f gob.obj - 0001:00043380 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 00444380 f mbmpgui.obj - 0001:00043840 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 00444840 f mbmpgui.obj - 0001:00043cd0 ?_Qrgcb@MBMP@@IAEPAFXZ 00444cd0 f mbmpgui.obj - 0001:00043d10 ?_Qmbmph@MBMP@@IAEPAUMBMPH@1@XZ 00444d10 f mbmpgui.obj - 0001:00043e50 ?FWouldBe@REGN@@SGHJ@Z 00444e50 f region.obj - 0001:00043e90 ?FIs@REGN@@UAEHJ@Z 00444e90 f region.obj - 0001:00043ec0 ?Cls@REGN@@UAEJXZ 00444ec0 f region.obj - 0001:00043ef0 ?FWouldBe@REGSC@@SGHJ@Z 00444ef0 f region.obj - 0001:00043f30 ?FIs@REGSC@@UAEHJ@Z 00444f30 f region.obj - 0001:00043f60 ?Cls@REGSC@@UAEJXZ 00444f60 f region.obj - 0001:00043f90 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 00444f90 f region.obj - 0001:00044160 ?FStartRow@REGBL@@QAEHJJ@Z 00445160 f region.obj - 0001:00044370 ?EndRow@REGBL@@QAEXXZ 00445370 f region.obj - 0001:00044560 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 00445560 f region.obj - 0001:000447c0 ??0REGSC@@QAE@XZ 004457c0 f region.obj - 0001:00044800 ??1REGSC@@UAE@XZ 00445800 f region.obj - 0001:00044840 ?Free@REGSC@@QAEXXZ 00445840 f region.obj - 0001:000448b0 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 004458b0 f region.obj - 0001:00044920 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 00445920 f region.obj - 0001:00044960 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 00445960 f region.obj - 0001:00044ac0 ?_ScanNextCore@REGSC@@IAEXXZ 00445ac0 f region.obj - 0001:00044fc0 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 00445fc0 f region.obj - 0001:000450b0 ??1REGN@@UAE@XZ 004460b0 f region.obj - 0001:00045120 ?SetRc@REGN@@QAEXPAVRC@@@Z 00446120 f region.obj - 0001:00045220 ?Offset@REGN@@QAEXJJ@Z 00446220 f region.obj - 0001:00045290 ?FEmpty@REGN@@QAEHPAVRC@@@Z 00446290 f region.obj - 0001:00045320 ?FIsRc@REGN@@QAEHPAVRC@@@Z 00446320 f region.obj - 0001:000453b0 ??0REGBL@@QAE@XZ 004463b0 f region.obj - 0001:00045410 ??1REGBL@@UAE@XZ 00446410 f region.obj - 0001:00045470 ?AddXp@REGBL@@QAEXJ@Z 00446470 f region.obj - 0001:00045590 ?FDone@REGBL@@QAEHXZ 00446590 f region.obj - 0001:00045600 ?FUnion@REGN@@QAEHPAV1@0@Z 00446600 f region.obj - 0001:00045840 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 00446840 f region.obj - 0001:00045a50 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00446a50 f region.obj - 0001:00045ee0 ?FIntersect@REGN@@QAEHPAV1@0@Z 00446ee0 f region.obj - 0001:00046150 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00447150 f region.obj - 0001:00046540 ?FDiff@REGN@@QAEHPAV1@0@Z 00447540 f region.obj - 0001:00046770 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 00447770 f region.obj - 0001:00046960 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 00447960 f region.obj - 0001:00046d80 ??0REGN@@IAE@XZ 00447d80 f region.obj - 0001:00046dd0 ?FOn@REGSC@@QAEHXZ 00447dd0 f region.obj - 0001:00046e00 ?CxpCur@REGSC@@QAEJXZ 00447e00 f region.obj - 0001:00046e30 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 00447e30 f region.obj - 0001:00047190 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 00448190 f region.obj - 0001:00047240 ?AssertValid@REGN@@QAEXK@Z 00448240 f region.obj - 0001:00047320 ?MarkMem@REGN@@UAEXXZ 00448320 f region.obj - 0001:00047390 ??_GREGN@@UAEPAXI@Z 00448390 f region.obj - 0001:00047390 ??_EREGN@@UAEPAXI@Z 00448390 f region.obj - 0001:000473d0 ??_GREGBL@@UAEPAXI@Z 004483d0 f region.obj - 0001:000473d0 ??_EREGBL@@UAEPAXI@Z 004483d0 f region.obj - 0001:00047410 ??_GREGSC@@UAEPAXI@Z 00448410 f region.obj - 0001:00047410 ??_EREGSC@@UAEPAXI@Z 00448410 f region.obj - 0001:00047450 ?FWouldBe@PIC@@SGHJ@Z 00448450 f pic.obj - 0001:00047490 ?FIs@PIC@@UAEHJ@Z 00448490 f pic.obj - 0001:000474c0 ?Cls@PIC@@UAEJXZ 004484c0 f pic.obj - 0001:000474f0 ?PpicNew@PIC@@SGPAV1@PAUHENHMETAFILE__@@PAVRC@@@Z 004484f0 f pic.obj - 0001:00047610 ?FAddToCfl@PIC@@QAEHPAVCFL@@KPAKK@Z 00448610 f pic.obj - 0001:000477d0 ?AssertValid@PIC@@QAEXK@Z 004487d0 f pic.obj - 0001:00047960 _WinMain@16 00448960 f appbwin.obj - 0001:000479b0 ?Abort@APPB@@UAEXXZ 004489b0 f appbwin.obj - 0001:000479f0 ?_FInitOS@APPB@@MAEHXZ 004489f0 f appbwin.obj - 0001:00047c10 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 00448c10 f appbwin.obj - 0001:00047cd0 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 00448cd0 f appbwin.obj - 0001:00047e50 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 00448e50 f appbwin.obj - 0001:00047fc0 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 00448fc0 f appbwin.obj - 0001:00048140 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 00449140 f appbwin.obj - 0001:000482f0 ?FlushUserEvents@APPB@@UAEXK@Z 004492f0 f appbwin.obj - 0001:00048390 ?_ShutDownViewer@APPB@@IAEXXZ 00449390 f appbwin.obj - 0001:000483e0 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 004493e0 f appbwin.obj - 0001:000484a0 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 004494a0 f appbwin.obj - 0001:00048e20 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00449e20 f appbwin.obj - 0001:00048ed0 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00449ed0 f appbwin.obj - 0001:00049030 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0044a030 f appbwin.obj - 0001:00049760 ?_FInitDebug@APPB@@MAEHXZ 0044a760 f appbwin.obj - 0001:000497b0 ?_FDlgAssert@@YGHPAUHWND__@@IIJ@Z 0044a7b0 f appbwin.obj - 0001:000498d0 ?FAssertProcApp@APPB@@UAEHPADJ0PAXJ@Z 0044a8d0 f appbwin.obj - 0001:00049e50 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 0044ae50 f appbwin.obj - 0001:0004a0a0 ?Cno@BACO@@QAEKXZ 0044b0a0 f appbwin.obj - 0001:0004a1e0 ?PgobFirstChild@GOB@@QAEPAV1@XZ 0044b1e0 f appbwin.obj - 0001:0004a210 ?PgobNextSib@GOB@@QAEPAV1@XZ 0044b210 f appbwin.obj - 0001:0004a240 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 0044b240 f gfxwin.obj - 0001:0004a2d0 ?_Scr@ACR@@AAEKXZ 0044b2d0 f gfxwin.obj - 0001:0004a390 ?Flush@GPT@@SGXXZ 0044b390 f gfxwin.obj - 0001:0004a3b0 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 0044b3b0 f gfxwin.obj - 0001:0004abe0 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 0044bbe0 f gfxwin.obj - 0001:0004ac80 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 0044bc80 f gfxwin.obj - 0001:0004ade0 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 0044bde0 f gfxwin.obj - 0001:0004aef0 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 0044bef0 f gfxwin.obj - 0001:0004b020 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 0044c020 f gfxwin.obj - 0001:0004b230 ??1GPT@@EAE@XZ 0044c230 f gfxwin.obj - 0001:0004b3a0 ?_Scr@GPT@@AAEKVACR@@@Z 0044c3a0 f gfxwin.obj - 0001:0004b490 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 0044c490 f gfxwin.obj - 0001:0004ba80 ?SetOffscreenColors@GPT@@QAEXPAVGL@@@Z 0044ca80 f gfxwin.obj - 0001:0004bbf0 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 0044cbf0 f gfxwin.obj - 0001:0004bce0 ?CbRow@GPT@@QAEJXZ 0044cce0 f gfxwin.obj - 0001:0004bd40 ?CbitPixel@GPT@@QAEJXZ 0044cd40 f gfxwin.obj - 0001:0004bdf0 ?Lock@GPT@@QAEXXZ 0044cdf0 f gfxwin.obj - 0001:0004be40 ?Unlock@GPT@@QAEXXZ 0044ce40 f gfxwin.obj - 0001:0004beb0 ?PgptNewPic@GPT@@SGPAV1@PAVRC@@@Z 0044ceb0 f gfxwin.obj - 0001:0004bff0 ?PpicRelease@GPT@@QAEPAVPIC@@XZ 0044cff0 f gfxwin.obj - 0001:0004c150 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0044d150 f gfxwin.obj - 0001:0004c1e0 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0044d1e0 f gfxwin.obj - 0001:0004c2b0 ?DrawOval@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 0044d2b0 f gfxwin.obj - 0001:0004c380 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 0044d380 f gfxwin.obj - 0001:0004c540 ?DrawPoly@GPT@@QAEXPAXPAUGDD@@@Z 0044d540 f gfxwin.obj - 0001:0004c5c0 ?DrawLine@GPT@@QAEXPAUtagPOINT@@0PAUGDD@@@Z 0044d5c0 f gfxwin.obj - 0001:0004c800 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 0044d800 f gfxwin.obj - 0001:0004c880 ?_FillOval@GPT@@AAEXPAUtagRECT@@@Z 0044d880 f gfxwin.obj - 0001:0004c900 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 0044d900 f gfxwin.obj - 0001:0004c970 ?_FillPoly@GPT@@AAEXPAUOLY@@@Z 0044d970 f gfxwin.obj - 0001:0004c9e0 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 0044d9e0 f gfxwin.obj - 0001:0004cc20 ?FMax@RC@@QAEHXZ 0044dc20 f gfxwin.obj - 0001:0004cca0 ?_EnsurePalette@GPT@@AAEXXZ 0044dca0 f gfxwin.obj - 0001:0004cde0 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 0044dde0 f gfxwin.obj - 0001:0004d110 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 0044e110 f gfxwin.obj - 0001:0004d1c0 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 0044e1c0 f gfxwin.obj - 0001:0004d510 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 0044e510 f gfxwin.obj - 0001:0004d780 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 0044e780 f gfxwin.obj - 0001:0004d8f0 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 0044e8f0 f gfxwin.obj - 0001:0004d9f0 ?_SetStockBrush@GPT@@AAEXH@Z 0044e9f0 f gfxwin.obj - 0001:0004dae0 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 0044eae0 f gfxwin.obj - 0001:0004ddf0 ??8APT@@QAEHAAU0@@Z 0044edf0 f gfxwin.obj - 0001:0004de40 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 0044ee40 f gfxwin.obj - 0001:0004e460 ?FSolidFore@APT@@QAEHXZ 0044f460 f gfxwin.obj - 0001:0004e4a0 ?FSolidBack@APT@@QAEHXZ 0044f4a0 f gfxwin.obj - 0001:0004e4e0 ?Invert@APT@@QAEXXZ 0044f4e0 f gfxwin.obj - 0001:0004e520 ??0GPT@@AAE@XZ 0044f520 f gfxwin.obj - 0001:0004e580 ?DrawPic@GPT@@QAEXPAVPIC@@PAUtagRECT@@PAUGDD@@@Z 0044f580 f gfxwin.obj - 0001:0004e6e0 ?Hpic@PIC@@QAEPAUHENHMETAFILE__@@XZ 0044f6e0 f gfxwin.obj - 0001:0004e710 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 0044f710 f gfxwin.obj - 0001:0004ec40 ?AssertValid@GPT@@QAEXK@Z 0044fc40 f gfxwin.obj - 0001:0004ee20 ?MarkStaticMem@GPT@@SGXXZ 0044fe20 f gfxwin.obj - 0001:0004ee40 ?FInit@NTL@@QAEHXZ 0044fe40 f gfxwin.obj - 0001:0004f040 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 00450040 f gfxwin.obj - 0001:0004f150 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 00450150 f gfxwin.obj - 0001:0004f2a0 ?FFixedPitch@NTL@@QAEHJ@Z 004502a0 f gfxwin.obj - 0001:0004f360 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 00450360 f gfxwin.obj - 0001:0004f400 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 00450400 f gfxwin.obj - 0001:0004f460 ??_GGPT@@EAEPAXI@Z 00450460 f gfxwin.obj - 0001:0004f460 ??_EGPT@@EAEPAXI@Z 00450460 f gfxwin.obj - 0001:0004f4a0 ?FInitScreen@GOB@@SGHKJ@Z 004504a0 f gobwin.obj - 0001:0004f5b0 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 004505b0 f gobwin.obj - 0001:0004f660 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 00450660 f gobwin.obj - 0001:0004f720 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 00450720 f gobwin.obj - 0001:0004f760 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 00450760 f gobwin.obj - 0001:0004f950 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 00450950 f gobwin.obj - 0001:0004fa10 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 00450a10 f gobwin.obj - 0001:0004fb40 ?Clean@GOB@@UAEXXZ 00450b40 f gobwin.obj - 0001:0004fc20 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 00450c20 f gobwin.obj - 0001:0004fcd0 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 00450cd0 f gobwin.obj - 0001:0004fe60 ?FWouldBe@MUB@@SGHJ@Z 00450e60 f menuwin.obj - 0001:0004fea0 ?FIs@MUB@@UAEHJ@Z 00450ea0 f menuwin.obj - 0001:0004fed0 ?Cls@MUB@@UAEJXZ 00450ed0 f menuwin.obj - 0001:0004ff00 ??1MUB@@UAE@XZ 00450f00 f menuwin.obj - 0001:0004ff50 ?PmubNew@MUB@@SGPAV1@K@Z 00450f50 f menuwin.obj - 0001:00050060 ?Set@MUB@@UAEXXZ 00451060 f menuwin.obj - 0001:00050100 ?Clean@MUB@@UAEXXZ 00451100 f menuwin.obj - 0001:00050300 ?EnqueueWcid@MUB@@UAEXJ@Z 00451300 f menuwin.obj - 0001:00050350 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 00451350 f menuwin.obj - 0001:000506c0 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 004516c0 f menuwin.obj - 0001:00050b20 ?FRemoveAllListCid@MUB@@UAEHJ@Z 00451b20 f menuwin.obj - 0001:00050dc0 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 00451dc0 f menuwin.obj - 0001:00051020 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 00452020 f menuwin.obj - 0001:000511c0 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 004521c0 f menuwin.obj - 0001:000512d0 ?_FInitLists@MUB@@AAEHXZ 004522d0 f menuwin.obj - 0001:00051740 ?MarkMem@MUB@@UAEXXZ 00452740 f menuwin.obj - 0001:00051830 ??_EMUB@@UAEPAXI@Z 00452830 f menuwin.obj - 0001:00051830 ??_GMUB@@UAEPAXI@Z 00452830 f menuwin.obj - 0001:00051980 ??0MUB@@IAE@XZ 00452980 f menuwin.obj - 0001:000519c0 ??0PIC@@IAE@XZ 004529c0 f picwin.obj - 0001:00051a20 ??1PIC@@UAE@XZ 00452a20 f picwin.obj - 0001:00051a90 ?CbOnFile@PIC@@UAEJXZ 00452a90 f picwin.obj - 0001:00051b10 ?FWrite@PIC@@UAEHPAVBLCK@@@Z 00452b10 f picwin.obj - 0001:00051cd0 ??_EPIC@@UAEPAXI@Z 00452cd0 f picwin.obj - 0001:00051cd0 ??_GPIC@@UAEPAXI@Z 00452cd0 f picwin.obj - 0001:00051e20 ?FWouldBe@DOCB@@SGHJ@Z 00452e20 f docb.obj - 0001:00051e60 ?FIs@DOCB@@UAEHJ@Z 00452e60 f docb.obj - 0001:00051e90 ?Cls@DOCB@@UAEJXZ 00452e90 f docb.obj - 0001:00051ec0 ?FWouldBe@DTE@@SGHJ@Z 00452ec0 f docb.obj - 0001:00051f00 ?FIs@DTE@@UAEHJ@Z 00452f00 f docb.obj - 0001:00051f30 ?Cls@DTE@@UAEJXZ 00452f30 f docb.obj - 0001:00051f60 ?FWouldBe@DDG@@SGHJ@Z 00452f60 f docb.obj - 0001:00051fa0 ?FIs@DDG@@UAEHJ@Z 00452fa0 f docb.obj - 0001:00051fd0 ?Cls@DDG@@UAEJXZ 00452fd0 f docb.obj - 0001:00052000 ?FWouldBe@DMD@@SGHJ@Z 00453000 f docb.obj - 0001:00052040 ?FIs@DMD@@UAEHJ@Z 00453040 f docb.obj - 0001:00052070 ?Cls@DMD@@UAEJXZ 00453070 f docb.obj - 0001:000520a0 ?FWouldBe@DMW@@SGHJ@Z 004530a0 f docb.obj - 0001:000520e0 ?FIs@DMW@@UAEHJ@Z 004530e0 f docb.obj - 0001:00052110 ?Cls@DMW@@UAEJXZ 00453110 f docb.obj - 0001:00052140 ?FWouldBe@DSG@@SGHJ@Z 00453140 f docb.obj - 0001:00052180 ?FIs@DSG@@UAEHJ@Z 00453180 f docb.obj - 0001:000521b0 ?Cls@DSG@@UAEJXZ 004531b0 f docb.obj - 0001:000521e0 ?FWouldBe@DSSP@@SGHJ@Z 004531e0 f docb.obj - 0001:00052220 ?FIs@DSSP@@UAEHJ@Z 00453220 f docb.obj - 0001:00052250 ?Cls@DSSP@@UAEJXZ 00453250 f docb.obj - 0001:00052280 ?FWouldBe@DSSM@@SGHJ@Z 00453280 f docb.obj - 0001:000522c0 ?FIs@DSSM@@UAEHJ@Z 004532c0 f docb.obj - 0001:000522f0 ?Cls@DSSM@@UAEJXZ 004532f0 f docb.obj - 0001:00052320 ?FWouldBe@UNDB@@SGHJ@Z 00453320 f docb.obj - 0001:00052360 ?FIs@UNDB@@UAEHJ@Z 00453360 f docb.obj - 0001:000523b0 ?Cls@UNDB@@UAEJXZ 004533b0 f docb.obj - 0001:000523e0 ??0DOCB@@IAE@PAV0@K@Z 004533e0 f docb.obj - 0001:00052580 ?Release@DOCB@@UAEXXZ 00453580 f docb.obj - 0001:00052790 ?CloseAllDdg@DOCB@@QAEXXZ 00453790 f docb.obj - 0001:00052850 ??1DOCB@@MAE@XZ 00453850 f docb.obj - 0001:00052aa0 ?FQueryCloseAll@DOCB@@SGHK@Z 00453aa0 f docb.obj - 0001:00052b10 ?FQueryClose@DOCB@@UAEHK@Z 00453b10 f docb.obj - 0001:00052c40 ?_TQuerySave@DOCB@@MAEHH@Z 00453c40 f docb.obj - 0001:00052cb0 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 00453cb0 f docb.obj - 0001:00052df0 ?FInternal@DOCB@@QAEHXZ 00453df0 f docb.obj - 0001:00052e80 ?SetInternal@DOCB@@QAEXH@Z 00453e80 f docb.obj - 0001:00052ef0 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 00453ef0 f docb.obj - 0001:00052f20 ?FSave@DOCB@@UAEHJ@Z 00453f20 f docb.obj - 0001:000530f0 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 004540f0 f docb.obj - 0001:00053120 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 00454120 f docb.obj - 0001:00053160 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 00454160 f docb.obj - 0001:00053280 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 00454280 f docb.obj - 0001:00053370 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 00454370 f docb.obj - 0001:00053420 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 00454420 f docb.obj - 0001:000534b0 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 004544b0 f docb.obj - 0001:000535b0 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 004545b0 f docb.obj - 0001:00053630 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 00454630 f docb.obj - 0001:00053690 ?ActivateDmd@DOCB@@QAEXXZ 00454690 f docb.obj - 0001:00053740 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 00454740 f docb.obj - 0001:000537a0 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 004547a0 f docb.obj - 0001:00053800 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 00454800 f docb.obj - 0001:00053860 ?GetName@DOCB@@UAEXPAVSTN@@@Z 00454860 f docb.obj - 0001:000539c0 ?UpdateName@DOCB@@UAEXXZ 004549c0 f docb.obj - 0001:00053ae0 ?FUndo@DOCB@@UAEHXZ 00454ae0 f docb.obj - 0001:00053b90 ?FRedo@DOCB@@UAEHXZ 00454b90 f docb.obj - 0001:00053c50 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 00454c50 f docb.obj - 0001:00053e20 ?ClearUndo@DOCB@@UAEXXZ 00454e20 f docb.obj - 0001:00053ea0 ?ClearRedo@DOCB@@UAEXXZ 00454ea0 f docb.obj - 0001:00053f50 ?SetCundbMax@DOCB@@UAEXJ@Z 00454f50 f docb.obj - 0001:00054140 ?CundbMax@DOCB@@UAEJXZ 00455140 f docb.obj - 0001:00054190 ?CundbUndo@DOCB@@UAEJXZ 00455190 f docb.obj - 0001:000541e0 ?CundbRedo@DOCB@@UAEJXZ 004551e0 f docb.obj - 0001:00054230 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 00455230 f docb.obj - 0001:000542e0 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 004552e0 f docb.obj - 0001:00054350 ?AssertValid@DOCB@@QAEXK@Z 00455350 f docb.obj - 0001:00054590 ?MarkMem@DOCB@@UAEXXZ 00455590 f docb.obj - 0001:00054680 ??0DTE@@QAE@XZ 00455680 f docb.obj - 0001:000546c0 ?Init@DTE@@QAEXPAVDOCB@@@Z 004556c0 f docb.obj - 0001:00054720 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 00455720 f docb.obj - 0001:000548c0 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 004558c0 f docb.obj - 0001:000549e0 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 004559e0 f docb.obj - 0001:00054ad0 ??1DDG@@MAE@XZ 00455ad0 f docb.obj - 0001:00054bc0 ?_FInit@DDG@@MAEHXZ 00455bc0 f docb.obj - 0001:00054c20 ?Pdmd@DDG@@QAEPAVDMD@@XZ 00455c20 f docb.obj - 0001:00054c50 ?Activate@DDG@@UAEXH@Z 00455c50 f docb.obj - 0001:00054db0 ?_Activate@DDG@@MAEXH@Z 00455db0 f docb.obj - 0001:00054e10 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 00455e10 f docb.obj - 0001:00055050 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 00456050 f docb.obj - 0001:000551e0 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 004561e0 f docb.obj - 0001:00055210 ?_ClearSel@DDG@@MAEXXZ 00456210 f docb.obj - 0001:00055230 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 00456230 f docb.obj - 0001:00055260 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 00456260 f docb.obj - 0001:000552c0 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 004562c0 f docb.obj - 0001:00055300 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 00456300 f docb.obj - 0001:00055360 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 00456360 f docb.obj - 0001:000553e0 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 004563e0 f docb.obj - 0001:00055420 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 00456420 f docb.obj - 0001:00055540 ?_Scroll@DDG@@MAEXJJJJ@Z 00456540 f docb.obj - 0001:00055570 ?_SetScrollValues@DDG@@MAEXXZ 00456570 f docb.obj - 0001:00055630 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 00456630 f docb.obj - 0001:00055670 ?_ScvMax@DDG@@MAEJH@Z 00456670 f docb.obj - 0001:000556a0 ?_NewRc@DDG@@MAEXXZ 004566a0 f docb.obj - 0001:000556d0 ?AssertValid@DDG@@QAEXK@Z 004566d0 f docb.obj - 0001:00055880 ?MarkMem@DDG@@UAEXXZ 00456880 f docb.obj - 0001:000558d0 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 004568d0 f docb.obj - 0001:00055b60 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 00456b60 f docb.obj - 0001:00055c00 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 00456c00 f docb.obj - 0001:00055d00 ?_ActivateHwnd@DMD@@MAEXH@Z 00456d00 f docb.obj - 0001:00055d90 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 00456d90 f docb.obj - 0001:00055df0 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00456df0 f docb.obj - 0001:00055ef0 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 00456ef0 f docb.obj - 0001:00055fd0 ?Release@DMW@@UAEXXZ 00456fd0 f docb.obj - 0001:000560c0 ?_FInit@DMW@@MAEHXZ 004570c0 f docb.obj - 0001:000561d0 ?_NewRc@DMW@@MAEXXZ 004571d0 f docb.obj - 0001:00056230 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 00457230 f docb.obj - 0001:00056690 ?Cddg@DOCB@@QAEJXZ 00457690 f docb.obj - 0001:000566d0 ?FDirty@DOCB@@UAEHXZ 004576d0 f docb.obj - 0001:00056730 ?SetDirty@DOCB@@UAEXH@Z 00457730 f docb.obj - 0001:00056780 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 00457780 f docb.obj - 0001:000567b0 ?FActive@DDG@@QAEHXZ 004577b0 f docb.obj - 0001:000567e0 ?_Qdsed@DMW@@IAEPAUDSED@1@J@Z 004577e0 f docb.obj - 0001:00056810 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 00457810 f docb.obj - 0001:00056870 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 00457870 f docb.obj - 0001:00056ba0 ?_IdsedEdge@DMW@@IAEJJJ@Z 00457ba0 f docb.obj - 0001:00056cd0 ?_IdsedNext@DMW@@IAEJJJ@Z 00457cd0 f docb.obj - 0001:00056dc0 ?_Layout@DMW@@IAEXJ@Z 00457dc0 f docb.obj - 0001:00057330 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 00458330 f docb.obj - 0001:00057410 ?Cdsg@DMW@@QAEJXZ 00458410 f docb.obj - 0001:000574e0 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 004584e0 f docb.obj - 0001:00057740 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 00458740 f docb.obj - 0001:000578b0 ?TVert@DMW@@QAEHPAVDSG@@@Z 004588b0 f docb.obj - 0001:000579c0 ?AssertValid@DMW@@QAEXK@Z 004589c0 f docb.obj - 0001:00058020 ?MarkMem@DMW@@UAEXXZ 00459020 f docb.obj - 0001:00058070 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 00459070 f docb.obj - 0001:00058240 ??0DSG@@IAE@PAUGCB@@@Z 00459240 f docb.obj - 0001:000582b0 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 004592b0 f docb.obj - 0001:000582e0 ??1DSG@@MAE@XZ 004592e0 f docb.obj - 0001:00058330 ?Pdmw@DSG@@QAEPAVDMW@@XZ 00459330 f docb.obj - 0001:00058360 ?_FInit@DSG@@MAEHPAV1@KJ@Z 00459360 f docb.obj - 0001:000585f0 ?Pdocb@DMW@@QAEPAVDOCB@@XZ 004595f0 f docb.obj - 0001:00058620 ?DypNormal@DSSP@@SGJXZ 00459620 f docb.obj - 0001:00058640 ?DxpNormal@DSSP@@SGJXZ 00459640 f docb.obj - 0001:00058660 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 00459660 f docb.obj - 0001:000587b0 ?Split@DSG@@UAEXKJ@Z 004597b0 f docb.obj - 0001:00058870 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 00459870 f docb.obj - 0001:000588f0 ?AssertValid@DSG@@QAEXK@Z 004598f0 f docb.obj - 0001:00058990 ??0DSSP@@IAE@PAUGCB@@@Z 00459990 f docb.obj - 0001:000589f0 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 004599f0 f docb.obj - 0001:00058b80 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 00459b80 f docb.obj - 0001:00058bf0 ?MouseDown@DSSP@@UAEXJJJK@Z 00459bf0 f docb.obj - 0001:00058de0 ??0DSSM@@IAE@PAUGCB@@@Z 00459de0 f docb.obj - 0001:00058e20 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 00459e20 f docb.obj - 0001:00058f30 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 00459f30 f docb.obj - 0001:00059000 ?MouseDown@DSSM@@UAEXJJJK@Z 0045a000 f docb.obj - 0001:000592c0 ?TVert@DSSM@@QAEHXZ 0045a2c0 f docb.obj - 0001:00059320 ??_GDOCB@@MAEPAXI@Z 0045a320 f docb.obj - 0001:00059320 ??_EDOCB@@MAEPAXI@Z 0045a320 f docb.obj - 0001:00059360 ??1DTE@@UAE@XZ 0045a360 f docb.obj - 0001:00059390 ??_EDTE@@UAEPAXI@Z 0045a390 f docb.obj - 0001:00059390 ??_GDTE@@UAEPAXI@Z 0045a390 f docb.obj - 0001:000593d0 ??_EDDG@@MAEPAXI@Z 0045a3d0 f docb.obj - 0001:000593d0 ??_GDDG@@MAEPAXI@Z 0045a3d0 f docb.obj - 0001:00059410 ??_GDMD@@UAEPAXI@Z 0045a410 f docb.obj - 0001:00059410 ??_EDMD@@UAEPAXI@Z 0045a410 f docb.obj - 0001:00059450 ??_GDMW@@UAEPAXI@Z 0045a450 f docb.obj - 0001:00059450 ??_EDMW@@UAEPAXI@Z 0045a450 f docb.obj - 0001:00059490 ??0DSED@DMW@@QAE@XZ 0045a490 f docb.obj - 0001:000594c0 ??_EDSG@@MAEPAXI@Z 0045a4c0 f docb.obj - 0001:000594c0 ??_GDSG@@MAEPAXI@Z 0045a4c0 f docb.obj - 0001:00059500 ??_GDSSP@@UAEPAXI@Z 0045a500 f docb.obj - 0001:00059500 ??_EDSSP@@UAEPAXI@Z 0045a500 f docb.obj - 0001:00059540 ??_GDSSM@@UAEPAXI@Z 0045a540 f docb.obj - 0001:00059540 ??_EDSSM@@UAEPAXI@Z 0045a540 f docb.obj - 0001:00059580 ??1DMD@@UAE@XZ 0045a580 f docb.obj - 0001:000595b0 ??1DMW@@UAE@XZ 0045a5b0 f docb.obj - 0001:000595e0 ??1DSSP@@UAE@XZ 0045a5e0 f docb.obj - 0001:00059610 ??1DSSM@@UAE@XZ 0045a610 f docb.obj - 0001:00059640 ??_9@$BIM@A 0045a640 f docb.obj - 0001:00059650 ??_9@$BLA@A 0045a650 f docb.obj - 0001:00059660 ??_9@$BLE@A 0045a660 f docb.obj - 0001:00059670 ??_9@$BLI@A 0045a670 f docb.obj - 0001:00059680 ??_9@$BLM@A 0045a680 f docb.obj - 0001:00059690 ?FWouldBe@CLIP@@SGHJ@Z 0045a690 f clip.obj - 0001:000596d0 ?FIs@CLIP@@UAEHJ@Z 0045a6d0 f clip.obj - 0001:00059700 ?Cls@CLIP@@UAEJXZ 0045a700 f clip.obj - 0001:00059750 ??0CLIP@@QAE@XZ 0045a750 f clip.obj - 0001:000597c0 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 0045a7c0 f clip.obj - 0001:00059870 ?Show@CLIP@@QAEXXZ 0045a870 f clip.obj - 0001:00059910 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 0045a910 f clip.obj - 0001:00059b40 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 0045ab40 f clip.obj - 0001:00059c30 ?Import@CLIP@@QAEXXZ 0045ac30 f clip.obj - 0001:00059cb0 ?_EnsureDoc@CLIP@@IAEXXZ 0045acb0 f clip.obj - 0001:00059ec0 ?_ImportCur@CLIP@@IAEXXZ 0045aec0 f clip.obj - 0001:0005a080 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 0045b080 f clip.obj - 0001:0005a250 ?FInitExport@CLIP@@QAEHXZ 0045b250 f clip.obj - 0001:0005a360 ?PvExport@CLIP@@QAEPAXJJ@Z 0045b360 f clip.obj - 0001:0005a480 ?EndExport@CLIP@@QAEXXZ 0045b480 f clip.obj - 0001:0005a500 ?_ExportCur@CLIP@@IAEXXZ 0045b500 f clip.obj - 0001:0005a5d0 ?AssertValid@CLIP@@QAEXK@Z 0045b5d0 f clip.obj - 0001:0005a6a0 ?MarkMem@CLIP@@UAEXXZ 0045b6a0 f clip.obj - 0001:0005a760 ??1CLIP@@UAE@XZ 0045b760 f clip.obj - 0001:0005a790 ??_ECLIP@@UAEPAXI@Z 0045b790 f clip.obj - 0001:0005a790 ??_GCLIP@@UAEPAXI@Z 0045b790 f clip.obj - 0001:0005a7d0 ?BvSubPvs@@YGJPAX0@Z 0045b7d0 f clip.obj - 0001:0005a900 ?FWouldBe@BSM@@SGHJ@Z 0045b900 f stream.obj - 0001:0005a940 ?FIs@BSM@@UAEHJ@Z 0045b940 f stream.obj - 0001:0005a970 ?Cls@BSM@@UAEJXZ 0045b970 f stream.obj - 0001:0005a9a0 ?FWouldBe@BSF@@SGHJ@Z 0045b9a0 f stream.obj - 0001:0005a9e0 ?FIs@BSF@@UAEHJ@Z 0045b9e0 f stream.obj - 0001:0005aa10 ?Cls@BSF@@UAEJXZ 0045ba10 f stream.obj - 0001:0005aa40 ??0BSM@@QAE@XZ 0045ba40 f stream.obj - 0001:0005aac0 ??1BSM@@UAE@XZ 0045bac0 f stream.obj - 0001:0005ab30 ?SetMinGrow@BSM@@QAEXJ@Z 0045bb30 f stream.obj - 0001:0005ab90 ?PvLock@BSM@@QAEPAXJ@Z 0045bb90 f stream.obj - 0001:0005ac20 ?Unlock@BSM@@QAEXXZ 0045bc20 f stream.obj - 0001:0005ac80 ?FetchRgb@BSM@@QAEXJJPAX@Z 0045bc80 f stream.obj - 0001:0005ad30 ?FReplace@BSM@@QAEHPAXJJJ@Z 0045bd30 f stream.obj - 0001:0005aec0 ?_FEnsureSize@BSM@@IAEHJH@Z 0045bec0 f stream.obj - 0001:0005b090 ?AssertValid@BSM@@QAEXK@Z 0045c090 f stream.obj - 0001:0005b140 ?MarkMem@BSM@@UAEXXZ 0045c140 f stream.obj - 0001:0005b180 ??0BSF@@QAE@XZ 0045c180 f stream.obj - 0001:0005b1f0 ??1BSF@@UAE@XZ 0045c1f0 f stream.obj - 0001:0005b2e0 ?_IfloFind@BSF@@IAEJJPAJ0@Z 0045c2e0 f stream.obj - 0001:0005b400 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 0045c400 f stream.obj - 0001:0005b670 ?_AttemptMerge@BSF@@IAEXJJ@Z 0045c670 f stream.obj - 0001:0005b860 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 0045c860 f stream.obj - 0001:0005bdf0 ?FReplace@BSF@@QAEHPAXJJJ@Z 0045cdf0 f stream.obj - 0001:0005c3b0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 0045d3b0 f stream.obj - 0001:0005c700 ?FetchRgb@BSF@@QAEXJJPAX@Z 0045d700 f stream.obj - 0001:0005c900 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 0045d900 f stream.obj - 0001:0005ce20 ?AssertValid@BSF@@QAEXK@Z 0045de20 f stream.obj - 0001:0005d0a0 ?MarkMem@BSF@@UAEXXZ 0045e0a0 f stream.obj - 0001:0005d130 ??_EBSM@@UAEPAXI@Z 0045e130 f stream.obj - 0001:0005d130 ??_GBSM@@UAEPAXI@Z 0045e130 f stream.obj - 0001:0005d170 ??_GBSF@@UAEPAXI@Z 0045e170 f stream.obj - 0001:0005d170 ??_EBSF@@UAEPAXI@Z 0045e170 f stream.obj - 0001:0005d1b0 ?FWouldBe@SNDV@@SGHJ@Z 0045e1b0 f sndm.obj - 0001:0005d1f0 ?FIs@SNDV@@UAEHJ@Z 0045e1f0 f sndm.obj - 0001:0005d220 ?Cls@SNDV@@UAEJXZ 0045e220 f sndm.obj - 0001:0005d250 ?FWouldBe@SNDM@@SGHJ@Z 0045e250 f sndm.obj - 0001:0005d290 ?FIs@SNDM@@UAEHJ@Z 0045e290 f sndm.obj - 0001:0005d2c0 ?Cls@SNDM@@UAEJXZ 0045e2c0 f sndm.obj - 0001:0005d2f0 ?FWouldBe@SNDMQ@@SGHJ@Z 0045e2f0 f sndm.obj - 0001:0005d330 ?FIs@SNDMQ@@UAEHJ@Z 0045e330 f sndm.obj - 0001:0005d360 ?Cls@SNDMQ@@UAEJXZ 0045e360 f sndm.obj - 0001:0005d390 ?FWouldBe@SNQUE@@SGHJ@Z 0045e390 f sndm.obj - 0001:0005d3d0 ?FIs@SNQUE@@UAEHJ@Z 0045e3d0 f sndm.obj - 0001:0005d400 ?Cls@SNQUE@@UAEJXZ 0045e400 f sndm.obj - 0001:0005d430 ?BeginSynch@SNDV@@UAEXXZ 0045e430 f sndm.obj - 0001:0005d450 ?EndSynch@SNDV@@UAEXXZ 0045e450 f sndm.obj - 0001:0005d470 ??0SNDM@@IAE@XZ 0045e470 f sndm.obj - 0001:0005d4b0 ??1SNDM@@UAE@XZ 0045e4b0 f sndm.obj - 0001:0005d5a0 ?AssertValid@SNDM@@QAEXK@Z 0045e5a0 f sndm.obj - 0001:0005d630 ?MarkMem@SNDM@@UAEXXZ 0045e630 f sndm.obj - 0001:0005d6d0 ?PsndmNew@SNDM@@SGPAV1@XZ 0045e6d0 f sndm.obj - 0001:0005d7c0 ?_FInit@SNDM@@IAEHXZ 0045e7c0 f sndm.obj - 0001:0005d880 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 0045e880 f sndm.obj - 0001:0005d9a0 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 0045e9a0 f sndm.obj - 0001:0005db50 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 0045eb50 f sndm.obj - 0001:0005dbc0 ?RemoveSndv@SNDM@@UAEXK@Z 0045ebc0 f sndm.obj - 0001:0005dc60 ?FActive@SNDM@@UAEHXZ 0045ec60 f sndm.obj - 0001:0005dcc0 ?Activate@SNDM@@UAEXH@Z 0045ecc0 f sndm.obj - 0001:0005ddb0 ?Suspend@SNDM@@UAEXH@Z 0045edb0 f sndm.obj - 0001:0005dea0 ?SetVlm@SNDM@@UAEXJ@Z 0045eea0 f sndm.obj - 0001:0005df40 ?VlmCur@SNDM@@UAEJXZ 0045ef40 f sndm.obj - 0001:0005dff0 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 0045eff0 f sndm.obj - 0001:0005e0f0 ?Stop@SNDM@@UAEXJ@Z 0045f0f0 f sndm.obj - 0001:0005e190 ?StopAll@SNDM@@UAEXJJ@Z 0045f190 f sndm.obj - 0001:0005e230 ?Pause@SNDM@@UAEXJ@Z 0045f230 f sndm.obj - 0001:0005e2d0 ?PauseAll@SNDM@@UAEXJJ@Z 0045f2d0 f sndm.obj - 0001:0005e370 ?Resume@SNDM@@UAEXJ@Z 0045f370 f sndm.obj - 0001:0005e410 ?ResumeAll@SNDM@@UAEXJJ@Z 0045f410 f sndm.obj - 0001:0005e4b0 ?FPlaying@SNDM@@UAEHJ@Z 0045f4b0 f sndm.obj - 0001:0005e560 ?FPlayingAll@SNDM@@UAEHJJ@Z 0045f560 f sndm.obj - 0001:0005e610 ?Flush@SNDM@@UAEXXZ 0045f610 f sndm.obj - 0001:0005e6a0 ?BeginSynch@SNDM@@UAEXXZ 0045f6a0 f sndm.obj - 0001:0005e730 ?EndSynch@SNDM@@UAEXXZ 0045f730 f sndm.obj - 0001:0005e7c0 ??1SNDMQ@@UAE@XZ 0045f7c0 f sndm.obj - 0001:0005e8b0 ?AssertValid@SNDMQ@@QAEXK@Z 0045f8b0 f sndm.obj - 0001:0005e940 ?MarkMem@SNDMQ@@UAEXXZ 0045f940 f sndm.obj - 0001:0005e9e0 ?_FInit@SNDMQ@@MAEHXZ 0045f9e0 f sndm.obj - 0001:0005ea90 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 0045fa90 f sndm.obj - 0001:0005ecb0 ?FActive@SNDMQ@@UAEHXZ 0045fcb0 f sndm.obj - 0001:0005ed10 ?Activate@SNDMQ@@UAEXH@Z 0045fd10 f sndm.obj - 0001:0005ee00 ?Suspend@SNDMQ@@UAEXH@Z 0045fe00 f sndm.obj - 0001:0005eef0 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 0045fef0 f sndm.obj - 0001:0005f020 ?Stop@SNDMQ@@UAEXJ@Z 00460020 f sndm.obj - 0001:0005f0b0 ?StopAll@SNDMQ@@UAEXJJ@Z 004600b0 f sndm.obj - 0001:0005f160 ?Pause@SNDMQ@@UAEXJ@Z 00460160 f sndm.obj - 0001:0005f1f0 ?PauseAll@SNDMQ@@UAEXJJ@Z 004601f0 f sndm.obj - 0001:0005f2a0 ?Resume@SNDMQ@@UAEXJ@Z 004602a0 f sndm.obj - 0001:0005f330 ?ResumeAll@SNDMQ@@UAEXJJ@Z 00460330 f sndm.obj - 0001:0005f3e0 ?FPlaying@SNDMQ@@UAEHJ@Z 004603e0 f sndm.obj - 0001:0005f490 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 00460490 f sndm.obj - 0001:0005f550 ?Flush@SNDMQ@@UAEXXZ 00460550 f sndm.obj - 0001:0005f640 ??0SNQUE@@IAE@XZ 00460640 f sndm.obj - 0001:0005f680 ??1SNQUE@@UAE@XZ 00460680 f sndm.obj - 0001:0005f780 ?AssertValid@SNQUE@@QAEXK@Z 00460780 f sndm.obj - 0001:0005f840 ?MarkMem@SNQUE@@UAEXXZ 00460840 f sndm.obj - 0001:0005f900 ?_FInit@SNQUE@@MAEHXZ 00460900 f sndm.obj - 0001:0005f9a0 ?_Enter@SNQUE@@MAEXXZ 004609a0 f sndm.obj - 0001:0005f9f0 ?_Leave@SNQUE@@MAEXXZ 004609f0 f sndm.obj - 0001:0005fa40 ?_Flush@SNQUE@@MAEXXZ 00460a40 f sndm.obj - 0001:0005fb10 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 00460b10 f sndm.obj - 0001:0005fc90 ?Stop@SNQUE@@QAEXJ@Z 00460c90 f sndm.obj - 0001:0005fd90 ?StopAll@SNQUE@@QAEXJ@Z 00460d90 f sndm.obj - 0001:0005fea0 ?Pause@SNQUE@@QAEXJ@Z 00460ea0 f sndm.obj - 0001:0005ffa0 ?PauseAll@SNQUE@@QAEXJ@Z 00460fa0 f sndm.obj - 0001:000600c0 ?Resume@SNQUE@@QAEXJ@Z 004610c0 f sndm.obj - 0001:000601c0 ?ResumeAll@SNQUE@@QAEXJ@Z 004611c0 f sndm.obj - 0001:000602d0 ?FPlaying@SNQUE@@QAEHJ@Z 004612d0 f sndm.obj - 0001:000603b0 ?FPlayingAll@SNQUE@@QAEHJ@Z 004613b0 f sndm.obj - 0001:00060490 ?Flush@SNQUE@@QAEXXZ 00461490 f sndm.obj - 0001:000604e0 ?LuVolScale@@YGKKJ@Z 004614e0 f sndm.obj - 0001:000605a0 ?LuHighLow@@YGKGG@Z 004615a0 f sndm.obj - 0001:00060700 ??_ESNDM@@UAEPAXI@Z 00461700 f sndm.obj - 0001:00060700 ??_GSNDM@@UAEPAXI@Z 00461700 f sndm.obj - 0001:00060740 ??0SNDV@@QAE@XZ 00461740 f sndm.obj - 0001:00060780 ??1SNDV@@UAE@XZ 00461780 f sndm.obj - 0001:000607b0 ??_ESNDMQ@@UAEPAXI@Z 004617b0 f sndm.obj - 0001:000607b0 ??_GSNDMQ@@UAEPAXI@Z 004617b0 f sndm.obj - 0001:000607f0 ??_GSNQUE@@UAEPAXI@Z 004617f0 f sndm.obj - 0001:000607f0 ??_ESNQUE@@UAEPAXI@Z 004617f0 f sndm.obj - 0001:00060830 ??_ESNDV@@UAEPAXI@Z 00461830 f sndm.obj - 0001:00060830 ??_GSNDV@@UAEPAXI@Z 00461830 f sndm.obj - 0001:00060870 ?_SiiAlloc@SNDV@@KGJXZ 00461870 f sndm.obj - 0001:00060890 ?FWouldBe@SDAM@@SGHJ@Z 00461890 f sndam.obj - 0001:000608d0 ?FIs@SDAM@@UAEHJ@Z 004618d0 f sndam.obj - 0001:00060900 ?Cls@SDAM@@UAEJXZ 00461900 f sndam.obj - 0001:00060930 ?FWouldBe@CAMS@@SGHJ@Z 00461930 f sndam.obj - 0001:00060970 ?FIs@CAMS@@UAEHJ@Z 00461970 f sndam.obj - 0001:000609a0 ?Cls@CAMS@@UAEJXZ 004619a0 f sndam.obj - 0001:000609d0 ?FWouldBe@AMQUE@@SGHJ@Z 004619d0 f sndam.obj - 0001:00060a10 ?FIs@AMQUE@@UAEHJ@Z 00461a10 f sndam.obj - 0001:00060a40 ?Cls@AMQUE@@UAEJXZ 00461a40 f sndam.obj - 0001:00060a70 ??0STBL@@IAE@XZ 00461a70 f sndam.obj - 0001:00060ad0 ?Write@STBL@@UAGJPBXKPAK@Z 00461ad0 f sndam.obj - 0001:00060b00 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 00461b00 f sndam.obj - 0001:00060b20 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00461b20 f sndam.obj - 0001:00060b80 ?Commit@STBL@@UAGJK@Z 00461b80 f sndam.obj - 0001:00060ba0 ?Revert@STBL@@UAGJXZ 00461ba0 f sndam.obj - 0001:00060bc0 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00461bc0 f sndam.obj - 0001:00060be0 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00461be0 f sndam.obj - 0001:00060c00 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 00461c00 f sndam.obj - 0001:00060c20 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 00461c20 f sndam.obj - 0001:00060c60 ??1STBL@@IAE@XZ 00461c60 f sndam.obj - 0001:00060ca0 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 00461ca0 f sndam.obj - 0001:00060d30 ?IsEqualGUID@@YGHABU_GUID@@0@Z 00461d30 f sndam.obj - 0001:00060d70 ?AddRef@STBL@@UAGKXZ 00461d70 f sndam.obj - 0001:00060dc0 ?Release@STBL@@UAGKXZ 00461dc0 f sndam.obj - 0001:00060e50 ?Read@STBL@@UAGJPAXKPAK@Z 00461e50 f sndam.obj - 0001:00060f30 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00461f30 f sndam.obj - 0001:00061070 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 00462070 f sndam.obj - 0001:000613e0 ?CbMem@STBL@@QAEJXZ 004623e0 f sndam.obj - 0001:00061410 ?AssertValid@STBL@@QAEXK@Z 00462410 f sndam.obj - 0001:000614c0 ?MarkMem@STBL@@UAEXXZ 004624c0 f sndam.obj - 0001:00061510 ??0CAMS@@IAE@XZ 00462510 f sndam.obj - 0001:00061570 ??1CAMS@@UAE@XZ 00462570 f sndam.obj - 0001:00061630 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00462630 f sndam.obj - 0001:000618d0 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 004628d0 f sndam.obj - 0001:00061a60 ?AssertValid@CAMS@@QAEXK@Z 00462a60 f sndam.obj - 0001:00061b20 ?MarkMem@CAMS@@UAEXXZ 00462b20 f sndam.obj - 0001:00061b70 ??0AMNOT@@QAE@XZ 00462b70 f sndam.obj - 0001:00061bc0 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 00462bc0 f sndam.obj - 0001:00061be0 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 00462be0 f sndam.obj - 0001:00061c00 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 00462c00 f sndam.obj - 0001:00061c20 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 00462c20 f sndam.obj - 0001:00061c60 ?AssertValid@AMNOT@@QAEXK@Z 00462c60 f sndam.obj - 0001:00061ca0 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 00462ca0 f sndam.obj - 0001:00061d30 ?AddRef@AMNOT@@UAGKXZ 00462d30 f sndam.obj - 0001:00061d80 ?Release@AMNOT@@UAGKXZ 00462d80 f sndam.obj - 0001:00061e00 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 00462e00 f sndam.obj - 0001:00061e60 ??0AMQUE@@IAE@XZ 00462e60 f sndam.obj - 0001:00061eb0 ??1AMQUE@@UAE@XZ 00462eb0 f sndam.obj - 0001:00061f30 ?AssertValid@AMQUE@@QAEXK@Z 00462f30 f sndam.obj - 0001:00061f90 ?PamqueNew@AMQUE@@SGPAV1@XZ 00462f90 f sndam.obj - 0001:00062060 ?_FInit@AMQUE@@MAEHXZ 00463060 f sndam.obj - 0001:00062190 ?_Enter@AMQUE@@MAEXXZ 00463190 f sndam.obj - 0001:000621c0 ?_Leave@AMQUE@@MAEXXZ 004631c0 f sndam.obj - 0001:000621f0 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004631f0 f sndam.obj - 0001:000622b0 ?_Queue@AMQUE@@MAEXJ@Z 004632b0 f sndam.obj - 0001:00062590 ?FInMemory@CAMS@@QAEHXZ 00463590 f sndam.obj - 0001:000625c0 ?FInMemory@STBL@@QAEHXZ 004635c0 f sndam.obj - 0001:00062600 ?_PauseQueue@AMQUE@@MAEXJ@Z 00463600 f sndam.obj - 0001:000626d0 ?_ResumeQueue@AMQUE@@MAEXJ@Z 004636d0 f sndam.obj - 0001:00062730 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 00463730 f sndam.obj - 0001:00062840 ??0SDAM@@IAE@XZ 00463840 f sndam.obj - 0001:00062890 ??1SDAM@@UAE@XZ 00463890 f sndam.obj - 0001:00062930 ?AssertValid@SDAM@@QAEXK@Z 00463930 f sndam.obj - 0001:00062990 ?PsdamNew@SDAM@@SGPAV1@J@Z 00463990 f sndam.obj - 0001:00062a60 ?FHaveWaveDevice@@YGHK@Z 00463a60 f sndam.obj - 0001:00062b10 ?_FInit@SDAM@@MAEHJ@Z 00463b10 f sndam.obj - 0001:00062d40 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 00463d40 f sndam.obj - 0001:00062d90 ?_Suspend@SDAM@@MAEXH@Z 00463d90 f sndam.obj - 0001:00062ea0 ?SetVlm@SDAM@@UAEXJ@Z 00463ea0 f sndam.obj - 0001:00062f50 ?VlmCur@SDAM@@UAEJXZ 00463f50 f sndam.obj - 0001:00062fa0 ?BeginSynch@SDAM@@UAEXXZ 00463fa0 f sndam.obj - 0001:00063040 ?EndSynch@SDAM@@UAEXXZ 00464040 f sndam.obj - 0001:00063100 ??0IStream@@QAE@XZ 00464100 f sndam.obj - 0001:00063140 ??_GSTBL@@IAEPAXI@Z 00464140 f sndam.obj - 0001:00063180 ??_GCAMS@@UAEPAXI@Z 00464180 f sndam.obj - 0001:00063180 ??_ECAMS@@UAEPAXI@Z 00464180 f sndam.obj - 0001:000631c0 ??0IAMNotifySink@@QAE@XZ 004641c0 f sndam.obj - 0001:00063200 ??_EAMQUE@@UAEPAXI@Z 00464200 f sndam.obj - 0001:00063200 ??_GAMQUE@@UAEPAXI@Z 00464200 f sndam.obj - 0001:00063240 ??_ESDAM@@UAEPAXI@Z 00464240 f sndam.obj - 0001:00063240 ??_GSDAM@@UAEPAXI@Z 00464240 f sndam.obj - 0001:00063280 ??0SNDMQ@@QAE@XZ 00464280 f sndam.obj - 0001:000632c0 ??0IUnknown@@QAE@XZ 004642c0 f sndam.obj - 0001:00063420 ?FWouldBe@MIDO@@SGHJ@Z 00464420 f mididev.obj - 0001:00063460 ?FIs@MIDO@@UAEHJ@Z 00464460 f mididev.obj - 0001:00063490 ?Cls@MIDO@@UAEJXZ 00464490 f mididev.obj - 0001:000634c0 ??0MIDO@@QAE@XZ 004644c0 f mididev.obj - 0001:00063560 ??1MIDO@@UAE@XZ 00464560 f mididev.obj - 0001:000635f0 ?_GetSysVol@MIDO@@IAEXXZ 004645f0 f mididev.obj - 0001:00063670 ?_SetSysVol@MIDO@@IAEXK@Z 00464670 f mididev.obj - 0001:000636e0 ?_Reset@MIDO@@IAEXXZ 004646e0 f mididev.obj - 0001:000637c0 ?Suspend@MIDO@@QAEXH@Z 004647c0 f mididev.obj - 0001:00063960 ??_GMIDO@@UAEPAXI@Z 00464960 f mididev.obj - 0001:00063960 ??_EMIDO@@UAEPAXI@Z 00464960 f mididev.obj - 0001:00063ab0 ?FWouldBe@MDWS@@SGHJ@Z 00464ab0 f mididev2.obj - 0001:00063af0 ?FIs@MDWS@@UAEHJ@Z 00464af0 f mididev2.obj - 0001:00063b20 ?Cls@MDWS@@UAEJXZ 00464b20 f mididev2.obj - 0001:00063b50 ?FWouldBe@MSQUE@@SGHJ@Z 00464b50 f mididev2.obj - 0001:00063b90 ?FIs@MSQUE@@UAEHJ@Z 00464b90 f mididev2.obj - 0001:00063bc0 ?Cls@MSQUE@@UAEJXZ 00464bc0 f mididev2.obj - 0001:00063bf0 ?FWouldBe@MDPS@@SGHJ@Z 00464bf0 f mididev2.obj - 0001:00063c30 ?FIs@MDPS@@UAEHJ@Z 00464c30 f mididev2.obj - 0001:00063c60 ?Cls@MDPS@@UAEJXZ 00464c60 f mididev2.obj - 0001:00063c90 ?FWouldBe@MSMIX@@SGHJ@Z 00464c90 f mididev2.obj - 0001:00063cd0 ?FIs@MSMIX@@UAEHJ@Z 00464cd0 f mididev2.obj - 0001:00063d00 ?Cls@MSMIX@@UAEJXZ 00464d00 f mididev2.obj - 0001:00063d30 ?FWouldBe@MISI@@SGHJ@Z 00464d30 f mididev2.obj - 0001:00063d70 ?FIs@MISI@@UAEHJ@Z 00464d70 f mididev2.obj - 0001:00063da0 ?Cls@MISI@@UAEJXZ 00464da0 f mididev2.obj - 0001:00063dd0 ?FWouldBe@WMS@@SGHJ@Z 00464dd0 f mididev2.obj - 0001:00063e10 ?FIs@WMS@@UAEHJ@Z 00464e10 f mididev2.obj - 0001:00063e40 ?Cls@WMS@@UAEJXZ 00464e40 f mididev2.obj - 0001:00063e70 ?FWouldBe@OMS@@SGHJ@Z 00464e70 f mididev2.obj - 0001:00063eb0 ?FIs@OMS@@UAEHJ@Z 00464eb0 f mididev2.obj - 0001:00063ee0 ?Cls@OMS@@UAEJXZ 00464ee0 f mididev2.obj - 0001:00063f10 ??0MDPS@@IAE@XZ 00464f10 f mididev2.obj - 0001:00063f50 ??1MDPS@@UAE@XZ 00464f50 f mididev2.obj - 0001:00064000 ?AssertValid@MDPS@@QAEXK@Z 00465000 f mididev2.obj - 0001:00064090 ?MarkMem@MDPS@@UAEXXZ 00465090 f mididev2.obj - 0001:000640e0 ?PmdpsNew@MDPS@@SGPAV1@XZ 004650e0 f mididev2.obj - 0001:000641b0 ?_FInit@MDPS@@MAEHXZ 004651b0 f mididev2.obj - 0001:000642b0 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 004652b0 f mididev2.obj - 0001:00064310 ?_Suspend@MDPS@@MAEXH@Z 00465310 f mididev2.obj - 0001:00064370 ?SetVlm@MDPS@@UAEXJ@Z 00465370 f mididev2.obj - 0001:000643d0 ?VlmCur@MDPS@@UAEJXZ 004653d0 f mididev2.obj - 0001:00064420 ??0MDWS@@IAE@XZ 00465420 f mididev2.obj - 0001:00064460 ??1MDWS@@UAE@XZ 00465460 f mididev2.obj - 0001:000644c0 ?AssertValid@MDWS@@QAEXK@Z 004654c0 f mididev2.obj - 0001:00064550 ?MarkMem@MDWS@@UAEXXZ 00465550 f mididev2.obj - 0001:000645a0 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004655a0 f mididev2.obj - 0001:00064750 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 00465750 f mididev2.obj - 0001:000648b0 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 004658b0 f mididev2.obj - 0001:00064b80 ?PvLockData@MDWS@@QAEPAXPAJ@Z 00465b80 f mididev2.obj - 0001:00064c00 ?UnlockData@MDWS@@QAEXXZ 00465c00 f mididev2.obj - 0001:00064c50 ??0MSQUE@@IAE@XZ 00465c50 f mididev2.obj - 0001:00064c90 ??1MSQUE@@UAE@XZ 00465c90 f mididev2.obj - 0001:00064d30 ?AssertValid@MSQUE@@QAEXK@Z 00465d30 f mididev2.obj - 0001:00064dc0 ?MarkMem@MSQUE@@UAEXXZ 00465dc0 f mididev2.obj - 0001:00064e10 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 00465e10 f mididev2.obj - 0001:00064f40 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 00465f40 f mididev2.obj - 0001:00065050 ?_Enter@MSQUE@@MAEXXZ 00466050 f mididev2.obj - 0001:00065080 ?_Leave@MSQUE@@MAEXXZ 00466080 f mididev2.obj - 0001:000650b0 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004660b0 f mididev2.obj - 0001:00065170 ?_Queue@MSQUE@@MAEXJ@Z 00466170 f mididev2.obj - 0001:000652b0 ?_PauseQueue@MSQUE@@MAEXJ@Z 004662b0 f mididev2.obj - 0001:00065380 ?_ResumeQueue@MSQUE@@MAEXJ@Z 00466380 f mididev2.obj - 0001:000653e0 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 004663e0 f mididev2.obj - 0001:000654a0 ??0MSMIX@@IAE@XZ 004664a0 f mididev2.obj - 0001:000654f0 ??1MSMIX@@UAE@XZ 004664f0 f mididev2.obj - 0001:000656a0 ?PmsmixNew@MSMIX@@SGPAV1@XZ 004666a0 f mididev2.obj - 0001:00065770 ?_FInit@MSMIX@@IAEHXZ 00466770 f mididev2.obj - 0001:000658a0 ?AssertValid@MSMIX@@QAEXK@Z 004668a0 f mididev2.obj - 0001:00065a50 ?MarkMem@MSMIX@@UAEXXZ 00466a50 f mididev2.obj - 0001:00065af0 ?Suspend@MSMIX@@QAEXH@Z 00466af0 f mididev2.obj - 0001:00065bc0 ?_StopStream@MSMIX@@IAEXXZ 00466bc0 f mididev2.obj - 0001:00065c90 ?SetVlm@MSMIX@@QAEXJ@Z 00466c90 f mididev2.obj - 0001:00065d40 ?VlmCur@MSMIX@@QAEJXZ 00466d40 f mididev2.obj - 0001:00065d90 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 00466d90 f mididev2.obj - 0001:00066040 ?Dts@MDWS@@QAEKXZ 00467040 f mididev2.obj - 0001:00066070 ?_Restart@MSMIX@@IAEXH@Z 00467070 f mididev2.obj - 0001:00066160 ?_SubmitBuffers@MSMIX@@IAEXK@Z 00467160 f mididev2.obj - 0001:00066460 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 00467460 f mididev2.obj - 0001:000669b0 ?BHigh@@YGEF@Z 004679b0 f mididev2.obj - 0001:000669d0 ?_MidiProc@MSMIX@@KGXKPAXK@Z 004679d0 f mididev2.obj - 0001:00066aa0 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 00467aa0 f mididev2.obj - 0001:00066cf0 ?_ThreadProc@MSMIX@@KGKPAX@Z 00467cf0 f mididev2.obj - 0001:00066d80 ?_LuThread@MSMIX@@IAEKXZ 00467d80 f mididev2.obj - 0001:00066f80 ?LuMin@@YGKKK@Z 00467f80 f mididev2.obj - 0001:00066fb0 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 00467fb0 f mididev2.obj - 0001:00067070 ?_Reset@MISI@@IAEXXZ 00468070 f mididev2.obj - 0001:00067120 ?_GetSysVol@MISI@@IAEXXZ 00468120 f mididev2.obj - 0001:00067300 ?_SetSysVol@MISI@@IAEXK@Z 00468300 f mididev2.obj - 0001:00067480 ?_SetSysVlm@MISI@@IAEXXZ 00468480 f mididev2.obj - 0001:000674c0 ?SetVlm@MISI@@UAEXJ@Z 004684c0 f mididev2.obj - 0001:00067540 ?VlmCur@MISI@@UAEJXZ 00468540 f mididev2.obj - 0001:00067590 ?FActive@MISI@@UAEHXZ 00468590 f mididev2.obj - 0001:000675d0 ?FActivate@MISI@@UAEHH@Z 004685d0 f mididev2.obj - 0001:00067640 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 00468640 f mididev2.obj - 0001:00067690 ??1WMS@@UAE@XZ 00468690 f mididev2.obj - 0001:000677c0 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 004687c0 f mididev2.obj - 0001:00067860 ?_FInit@WMS@@IAEHXZ 00468860 f mididev2.obj - 0001:00067b70 ?AssertValid@WMS@@QAEXK@Z 00468b70 f mididev2.obj - 0001:00067d10 ?MarkMem@WMS@@UAEXXZ 00468d10 f mididev2.obj - 0001:00067dd0 ?_FOpen@WMS@@MAEHXZ 00468dd0 f mididev2.obj - 0001:00067f40 ?_FClose@WMS@@MAEHXZ 00468f40 f mididev2.obj - 0001:00068040 ?FActive@WMS@@UAEHXZ 00469040 f mididev2.obj - 0001:00068070 ?FActivate@WMS@@UAEHH@Z 00469070 f mididev2.obj - 0001:000680d0 ?_ResetStream@WMS@@IAEXXZ 004690d0 f mididev2.obj - 0001:00068150 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 00469150 f mididev2.obj - 0001:00068370 ?_CmhSubmitBuffers@WMS@@IAEJXZ 00469370 f mididev2.obj - 0001:00068540 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 00469540 f mididev2.obj - 0001:00068610 ?StopPlaying@WMS@@UAEXXZ 00469610 f mididev2.obj - 0001:000686b0 ?_MidiProc@WMS@@KGXPAXKKKK@Z 004696b0 f mididev2.obj - 0001:00068770 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 00469770 f mididev2.obj - 0001:00068970 ?_ThreadProc@WMS@@KGKPAX@Z 00469970 f mididev2.obj - 0001:00068a00 ?_LuThread@WMS@@IAEKXZ 00469a00 f mididev2.obj - 0001:00068ac0 ?_DoCallBacks@WMS@@IAEXXZ 00469ac0 f mididev2.obj - 0001:00068be0 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 00469be0 f mididev2.obj - 0001:00068c30 ??1OMS@@UAE@XZ 00469c30 f mididev2.obj - 0001:00068d80 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 00469d80 f mididev2.obj - 0001:00068e20 ?_FInit@OMS@@IAEHXZ 00469e20 f mididev2.obj - 0001:00068f20 ?AssertValid@OMS@@QAEXK@Z 00469f20 f mididev2.obj - 0001:00069030 ?MarkMem@OMS@@UAEXXZ 0046a030 f mididev2.obj - 0001:000690a0 ?_FOpen@OMS@@MAEHXZ 0046a0a0 f mididev2.obj - 0001:00069180 ?_FClose@OMS@@MAEHXZ 0046a180 f mididev2.obj - 0001:00069280 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 0046a280 f mididev2.obj - 0001:00069420 ?StopPlaying@OMS@@UAEXXZ 0046a420 f mididev2.obj - 0001:000694c0 ?_ThreadProc@OMS@@KGKPAX@Z 0046a4c0 f mididev2.obj - 0001:00069550 ?_LuThread@OMS@@IAEKXZ 0046a550 f mididev2.obj - 0001:00069860 ?_ReleaseBuffers@OMS@@IAEXXZ 0046a860 f mididev2.obj - 0001:00069930 ??_EMDPS@@UAEPAXI@Z 0046a930 f mididev2.obj - 0001:00069930 ??_GMDPS@@UAEPAXI@Z 0046a930 f mididev2.obj - 0001:00069970 ??_EMDWS@@UAEPAXI@Z 0046a970 f mididev2.obj - 0001:00069970 ??_GMDWS@@UAEPAXI@Z 0046a970 f mididev2.obj - 0001:000699b0 ??_GMSQUE@@UAEPAXI@Z 0046a9b0 f mididev2.obj - 0001:000699b0 ??_EMSQUE@@UAEPAXI@Z 0046a9b0 f mididev2.obj - 0001:000699f0 ??_EMSMIX@@UAEPAXI@Z 0046a9f0 f mididev2.obj - 0001:000699f0 ??_GMSMIX@@UAEPAXI@Z 0046a9f0 f mididev2.obj - 0001:00069a30 ??_GMISI@@UAEPAXI@Z 0046aa30 f mididev2.obj - 0001:00069a30 ??_EMISI@@UAEPAXI@Z 0046aa30 f mididev2.obj - 0001:00069a70 ??_GWMS@@UAEPAXI@Z 0046aa70 f mididev2.obj - 0001:00069a70 ??_EWMS@@UAEPAXI@Z 0046aa70 f mididev2.obj - 0001:00069ab0 ??1MISI@@UAE@XZ 0046aab0 f mididev2.obj - 0001:00069ae0 ??_EOMS@@UAEPAXI@Z 0046aae0 f mididev2.obj - 0001:00069ae0 ??_GOMS@@UAEPAXI@Z 0046aae0 f mididev2.obj - 0001:00069b20 ?FWouldBe@MSTP@@SGHJ@Z 0046ab20 f midi.obj - 0001:00069b60 ?FIs@MSTP@@UAEHJ@Z 0046ab60 f midi.obj - 0001:00069b90 ?Cls@MSTP@@UAEJXZ 0046ab90 f midi.obj - 0001:00069bc0 ?FWouldBe@MIDS@@SGHJ@Z 0046abc0 f midi.obj - 0001:00069c00 ?FIs@MIDS@@UAEHJ@Z 0046ac00 f midi.obj - 0001:00069c30 ?Cls@MIDS@@UAEJXZ 0046ac30 f midi.obj - 0001:00069c60 ??0MSTP@@QAE@XZ 0046ac60 f midi.obj - 0001:00069cd0 ??1MSTP@@UAE@XZ 0046acd0 f midi.obj - 0001:00069d70 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 0046ad70 f midi.obj - 0001:00069f10 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 0046af10 f midi.obj - 0001:0006a450 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 0046b450 f midi.obj - 0001:0006a500 ?AssertValid@MSTP@@QAEXK@Z 0046b500 f midi.obj - 0001:0006a650 ?MarkMem@MSTP@@UAEXXZ 0046b650 f midi.obj - 0001:0006a6a0 ??0MIDS@@IAE@XZ 0046b6a0 f midi.obj - 0001:0006a6e0 ??1MIDS@@UAE@XZ 0046b6e0 f midi.obj - 0001:0006a720 ?AssertValid@MIDS@@QAEXK@Z 0046b720 f midi.obj - 0001:0006a760 ?MarkMem@MIDS@@UAEXXZ 0046b760 f midi.obj - 0001:0006a7a0 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 0046b7a0 f midi.obj - 0001:0006a8e0 ?BLow@@YGEF@Z 0046b8e0 f midi.obj - 0001:0006a900 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 0046b900 f midi.obj - 0001:0006a9c0 ?CbOnFile@MIDS@@UAEJXZ 0046b9c0 f midi.obj - 0001:0006aa40 ??_GMSTP@@UAEPAXI@Z 0046ba40 f midi.obj - 0001:0006aa40 ??_EMSTP@@UAEPAXI@Z 0046ba40 f midi.obj - 0001:0006aa80 ??_GMIDS@@UAEPAXI@Z 0046ba80 f midi.obj - 0001:0006aa80 ??_EMIDS@@UAEPAXI@Z 0046ba80 f midi.obj - 0001:0006aac0 ?IbMac@BSM@@QAEJXZ 0046bac0 f midi.obj - 0001:0006ac00 ?FWouldBe@DLG@@SGHJ@Z 0046bc00 f dlg.obj - 0001:0006ac40 ?FIs@DLG@@UAEHJ@Z 0046bc40 f dlg.obj - 0001:0006ac70 ?Cls@DLG@@UAEJXZ 0046bc70 f dlg.obj - 0001:0006aca0 ??0DLG@@AAE@J@Z 0046bca0 f dlg.obj - 0001:0006ace0 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 0046bce0 f dlg.obj - 0001:0006ad90 ?FGetValues@DLG@@QAEHJJ@Z 0046bd90 f dlg.obj - 0001:0006af80 ?SetValues@DLG@@QAEXJJ@Z 0046bf80 f dlg.obj - 0001:0006b330 ?IditFromSit@DLG@@QAEJJ@Z 0046c330 f dlg.obj - 0001:0006b3b0 ?_FDitChange@DLG@@AAEHPAJ@Z 0046c3b0 f dlg.obj - 0001:0006b440 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 0046c440 f dlg.obj - 0001:0006b5d0 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 0046c5d0 f dlg.obj - 0001:0006b890 ??_EDLG@@UAEPAXI@Z 0046c890 f dlg.obj - 0001:0006b890 ??_GDLG@@UAEPAXI@Z 0046c890 f dlg.obj - 0001:0006b8d0 ??1DLG@@UAE@XZ 0046c8d0 f dlg.obj - 0001:0006ba10 ?GetDit@DLG@@QAEXJPAUDIT@@@Z 0046ca10 f dlg.obj - 0001:0006ba40 ?_FInit@DLG@@AAEHXZ 0046ca40 f dlgwin.obj - 0001:0006bfc0 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 0046cfc0 f dlgwin.obj - 0001:0006c490 ?IditDo@DLG@@QAEJJ@Z 0046d490 f dlgwin.obj - 0001:0006c4f0 ?SelectDit@DLG@@QAEXJ@Z 0046d4f0 f dlgwin.obj - 0001:0006c600 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 0046d600 f dlgwin.obj - 0001:0006c720 ?_SetRadioGroup@DLG@@AAEXJJ@Z 0046d720 f dlgwin.obj - 0001:0006c800 ?_FGetCheckBox@DLG@@AAEHJ@Z 0046d800 f dlgwin.obj - 0001:0006c900 ?_SetCheckBox@DLG@@AAEXJH@Z 0046d900 f dlgwin.obj - 0001:0006ca00 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 0046da00 f dlgwin.obj - 0001:0006cbc0 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 0046dbc0 f dlgwin.obj - 0001:0006cd50 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 0046dd50 f dlgwin.obj - 0001:0006cf20 ?_ClearList@DLG@@AAEXJ@Z 0046df20 f dlgwin.obj - 0001:0006d1a0 ?PutDit@DLG@@QAEXJPAUDIT@@@Z 0046e1a0 f dlgwin.obj - 0001:0006d1d0 ?FWouldBe@CTL@@SGHJ@Z 0046e1d0 f ctl.obj - 0001:0006d210 ?FIs@CTL@@UAEHJ@Z 0046e210 f ctl.obj - 0001:0006d240 ?Cls@CTL@@UAEJXZ 0046e240 f ctl.obj - 0001:0006d270 ?FWouldBe@SCB@@SGHJ@Z 0046e270 f ctl.obj - 0001:0006d2b0 ?FIs@SCB@@UAEHJ@Z 0046e2b0 f ctl.obj - 0001:0006d2e0 ?Cls@SCB@@UAEJXZ 0046e2e0 f ctl.obj - 0001:0006d310 ?FWouldBe@WSB@@SGHJ@Z 0046e310 f ctl.obj - 0001:0006d350 ?FIs@WSB@@UAEHJ@Z 0046e350 f ctl.obj - 0001:0006d380 ?Cls@WSB@@UAEJXZ 0046e380 f ctl.obj - 0001:0006d3b0 ??0CTL@@IAE@PAUGCB@@@Z 0046e3b0 f ctl.obj - 0001:0006d400 ??1CTL@@MAE@XZ 0046e400 f ctl.obj - 0001:0006d470 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 0046e470 f ctl.obj - 0001:0006d510 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 0046e510 f ctl.obj - 0001:0006d540 ?_NewRc@CTL@@MAEXXZ 0046e540 f ctl.obj - 0001:0006d620 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 0046e620 f ctl.obj - 0001:0006d780 ?DxpNormal@SCB@@SGJXZ 0046e780 f ctl.obj - 0001:0006d7c0 ?DypNormal@SCB@@SGJXZ 0046e7c0 f ctl.obj - 0001:0006d800 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 0046e800 f ctl.obj - 0001:0006d960 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 0046e960 f ctl.obj - 0001:0006da00 ?_FCreate@SCB@@IAEHJJJK@Z 0046ea00 f ctl.obj - 0001:0006dbd0 ?SetVal@SCB@@QAEXJH@Z 0046ebd0 f ctl.obj - 0001:0006dc80 ?SetValMinMax@SCB@@QAEXJJJH@Z 0046ec80 f ctl.obj - 0001:0006dd70 ?TrackScroll@SCB@@UAEXJJ@Z 0046ed70 f ctl.obj - 0001:0006dfe0 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 0046efe0 f ctl.obj - 0001:0006e210 ??_GCTL@@MAEPAXI@Z 0046f210 f ctl.obj - 0001:0006e210 ??_ECTL@@MAEPAXI@Z 0046f210 f ctl.obj - 0001:0006e360 ??0GCB@@QAE@XZ 0046f360 f ctl.obj - 0001:0006e3a0 ?_Hctl@CTL@@IAEPAUHWND__@@XZ 0046f3a0 f ctl.obj - 0001:0006e3d0 ??0SCB@@IAE@PAUGCB@@@Z 0046f3d0 f ctl.obj - 0001:0006e410 ??_GSCB@@UAEPAXI@Z 0046f410 f ctl.obj - 0001:0006e410 ??_ESCB@@UAEPAXI@Z 0046f410 f ctl.obj - 0001:0006e450 ??1SCB@@UAE@XZ 0046f450 f ctl.obj - 0001:0006e480 ??0WSB@@IAE@PAUGCB@@@Z 0046f480 f ctl.obj - 0001:0006e4c0 ??_EWSB@@UAEPAXI@Z 0046f4c0 f ctl.obj - 0001:0006e4c0 ??_GWSB@@UAEPAXI@Z 0046f4c0 f ctl.obj - 0001:0006e500 ??1WSB@@UAE@XZ 0046f500 f ctl.obj - 0001:0006e530 ?FWouldBe@EDCB@@SGHJ@Z 0046f530 f text.obj - 0001:0006e570 ?FIs@EDCB@@UAEHJ@Z 0046f570 f text.obj - 0001:0006e5a0 ?Cls@EDCB@@UAEJXZ 0046f5a0 f text.obj - 0001:0006e5d0 ?FWouldBe@EDSL@@SGHJ@Z 0046f5d0 f text.obj - 0001:0006e610 ?FIs@EDSL@@UAEHJ@Z 0046f610 f text.obj - 0001:0006e640 ?Cls@EDSL@@UAEJXZ 0046f640 f text.obj - 0001:0006e670 ?FWouldBe@EDPL@@SGHJ@Z 0046f670 f text.obj - 0001:0006e6b0 ?FIs@EDPL@@UAEHJ@Z 0046f6b0 f text.obj - 0001:0006e6e0 ?Cls@EDPL@@UAEJXZ 0046f6e0 f text.obj - 0001:0006e710 ?FWouldBe@EDML@@SGHJ@Z 0046f710 f text.obj - 0001:0006e750 ?FIs@EDML@@UAEHJ@Z 0046f750 f text.obj - 0001:0006e780 ?Cls@EDML@@UAEJXZ 0046f780 f text.obj - 0001:0006e7b0 ?FWouldBe@EDMW@@SGHJ@Z 0046f7b0 f text.obj - 0001:0006e7f0 ?FIs@EDMW@@UAEHJ@Z 0046f7f0 f text.obj - 0001:0006e820 ?Cls@EDMW@@UAEJXZ 0046f820 f text.obj - 0001:0006e850 ??0EDPAR@@QAE@JPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 0046f850 f text.obj - 0001:0006e8f0 ?Set@EDPAR@@QAEXJPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 0046f8f0 f text.obj - 0001:0006e9a0 ??0EDCB@@IAE@PAUGCB@@J@Z 0046f9a0 f text.obj - 0001:0006ea60 ??1EDCB@@UAE@XZ 0046fa60 f text.obj - 0001:0006eaf0 ?_FInit@EDCB@@MAEHXZ 0046faf0 f text.obj - 0001:0006ec20 ?Draw@EDCB@@UAEXPAVGNV@@PAVRC@@@Z 0046fc20 f text.obj - 0001:0006eda0 ?FCmdTrackMouse@EDCB@@UAEHPAUCMD_MOUSE@@@Z 0046fda0 f text.obj - 0001:0006f0e0 ?FCmdKey@EDCB@@UAEHPAUCMD_KEY@@@Z 004700e0 f text.obj - 0001:0006fa40 ?FCmdSelIdle@EDCB@@UAEHPAUCMD@@@Z 00470a40 f text.obj - 0001:0006fb50 ?FCmdActivateSel@EDCB@@UAEHPAUCMD@@@Z 00470b50 f text.obj - 0001:0006fb90 ?Activate@EDCB@@UAEXH@Z 00470b90 f text.obj - 0001:0006fc30 ?_GetRcContent@EDCB@@MAEXPAVRC@@@Z 00470c30 f text.obj - 0001:0006fc60 ?_InitGnv@EDCB@@MAEXPAVGNV@@@Z 00470c60 f text.obj - 0001:0006fcb0 ?_NewRc@EDCB@@MAEXXZ 00470cb0 f text.obj - 0001:0006fce0 ?SetSel@EDCB@@QAEXJJJ@Z 00470ce0 f text.obj - 0001:0006fee0 ?_SwitchSel@EDCB@@IAEXHJ@Z 00470ee0 f text.obj - 0001:00070010 ?ShowSel@EDCB@@QAEXHJ@Z 00471010 f text.obj - 0001:00070320 ?_InvertSel@EDCB@@IAEXPAVGNV@@J@Z 00471320 f text.obj - 0001:000704d0 ?_InvertIchRange@EDCB@@IAEXPAVGNV@@JJJ@Z 004714d0 f text.obj - 0001:00070810 ?_UpdateLn@EDCB@@IAEXJJJJJ@Z 00471810 f text.obj - 0001:00070ad0 ?_Scroll@EDCB@@IAEXJJJ@Z 00471ad0 f text.obj - 0001:00070b70 ?_YpFromIch@EDCB@@MAEJJ@Z 00471b70 f text.obj - 0001:00070bb0 ?_ChFetch@EDCB@@IAEDJ@Z 00471bb0 f text.obj - 0001:00070c30 ?_IchPrev@EDCB@@IAEJJH@Z 00471c30 f text.obj - 0001:00070d60 ?_IchNext@EDCB@@IAEJJH@Z 00471d60 f text.obj - 0001:00070e90 ?AssertValid@EDCB@@QAEXK@Z 00471e90 f text.obj - 0001:00070f50 ?MarkMem@EDCB@@UAEXXZ 00471f50 f text.obj - 0001:00070fa0 ??0EDPL@@IAE@PAVEDPAR@@@Z 00471fa0 f text.obj - 0001:000710a0 ?_FInit@EDPL@@MAEHXZ 004720a0 f text.obj - 0001:00071170 ?_YpFromLn@EDPL@@MAEJJ@Z 00472170 f text.obj - 0001:000712d0 ?YpCenter@RC@@QAEJXZ 004722d0 f text.obj - 0001:00071310 ?_LnFromYp@EDPL@@MAEJJ@Z 00472310 f text.obj - 0001:000713a0 ?_HiliteRc@EDPL@@MAEXPAVGNV@@PAVRC@@@Z 004723a0 f text.obj - 0001:00071410 ?_XpFromIch@EDPL@@MAEJJ@Z 00472410 f text.obj - 0001:000715d0 ?_IchFromLnXp@EDPL@@MAEJJJH@Z 004725d0 f text.obj - 0001:00071750 ?_DrawLine@EDPL@@MAEXPAVGNV@@J@Z 00472750 f text.obj - 0001:000718f0 ?_XpOrigin@EDPL@@IAEJXZ 004728f0 f text.obj - 0001:000719c0 ?XpCenter@RC@@QAEJXZ 004729c0 f text.obj - 0001:00071a00 ?AssertValid@EDPL@@QAEXK@Z 00472a00 f text.obj - 0001:00071bd0 ?DtsCaret@@YGKXZ 00472bd0 f text.obj - 0001:00071bf0 ??0EDSL@@IAE@PAVEDPAR@@@Z 00472bf0 f text.obj - 0001:00071c50 ?PedslNew@EDSL@@SGPAV1@PAVEDPAR@@@Z 00472c50 f text.obj - 0001:00071d30 ?_FLockLn@EDSL@@MAEHJPAPADPAJ@Z 00472d30 f text.obj - 0001:00071dd0 ?_UnlockLn@EDSL@@MAEXJPAD@Z 00472dd0 f text.obj - 0001:00071e60 ?_LnFromIch@EDSL@@MAEJJ@Z 00472e60 f text.obj - 0001:00071ee0 ?_IchMinLn@EDSL@@MAEJJ@Z 00472ee0 f text.obj - 0001:00071f50 ?IchMac@EDSL@@UAEJXZ 00472f50 f text.obj - 0001:00071fa0 ?_LnMac@EDSL@@MAEJXZ 00472fa0 f text.obj - 0001:00072100 ?FReplace@EDSL@@UAEHPADJJJJ@Z 00473100 f text.obj - 0001:000723a0 ?_FFilterCh@EDSL@@MAEHD@Z 004733a0 f text.obj - 0001:000723e0 ?CchFetch@EDSL@@UAEJPADJJ@Z 004733e0 f text.obj - 0001:000724b0 ?AssertValid@EDSL@@QAEXK@Z 004734b0 f text.obj - 0001:00072590 ??0EDML@@IAE@PAVEDPAR@@@Z 00473590 f text.obj - 0001:000725f0 ??1EDML@@UAE@XZ 004735f0 f text.obj - 0001:00072670 ?PedmlNew@EDML@@SGPAV1@PAVEDPAR@@@Z 00473670 f text.obj - 0001:00072780 ?_FInit@EDML@@MAEHXZ 00473780 f text.obj - 0001:000727f0 ?GinDefault@GOB@@SGJXZ 004737f0 f text.obj - 0001:00072810 ?_FLockLn@EDML@@MAEHJPAPADPAJ@Z 00473810 f text.obj - 0001:00072990 ?_UnlockLn@EDML@@MAEXJPAD@Z 00473990 f text.obj - 0001:000729f0 ?_LnFromIch@EDML@@MAEJJ@Z 004739f0 f text.obj - 0001:00072b70 ?_IchMinLn@EDML@@MAEJJ@Z 00473b70 f text.obj - 0001:00072c00 ?IchMac@EDML@@UAEJXZ 00473c00 f text.obj - 0001:00072ca0 ?_LnMac@EDML@@MAEJXZ 00473ca0 f text.obj - 0001:00072d00 ?FReplace@EDML@@UAEHPADJJJJ@Z 00473d00 f text.obj - 0001:00073040 ?_FReplaceCore@EDML@@MAEHPADJJJ@Z 00474040 f text.obj - 0001:00073080 ?_ClnEstimate@EDML@@MAEJPADJ@Z 00474080 f text.obj - 0001:000730f0 ?_LnReformat@EDML@@MAEJJPAJ0@Z 004740f0 f text.obj - 0001:000731f0 ?_FFilterCh@EDML@@MAEHD@Z 004741f0 f text.obj - 0001:00073240 ?CchFetch@EDML@@UAEJPADJJ@Z 00474240 f text.obj - 0001:00073310 ?AssertValid@EDML@@QAEXK@Z 00474310 f text.obj - 0001:00073540 ?MarkMem@EDML@@UAEXXZ 00474540 f text.obj - 0001:000735c0 ??0EDMW@@IAE@PAVEDPAR@@@Z 004745c0 f text.obj - 0001:00073600 ?PedmwNew@EDMW@@SGPAV1@PAVEDPAR@@@Z 00474600 f text.obj - 0001:00073710 ?_ClnEstimate@EDMW@@MAEJPADJ@Z 00474710 f text.obj - 0001:00073800 ?_LnReformat@EDMW@@MAEJJPAJ0@Z 00474800 f text.obj - 0001:00073fa0 ?_CichGetBreakables@EDMW@@IAEJPADJPAJJ@Z 00474fa0 f text.obj - 0001:000740f0 ?_NewRc@EDMW@@MAEXXZ 004750f0 f text.obj - 0001:000741c0 ??_GEDCB@@UAEPAXI@Z 004751c0 f text.obj - 0001:000741c0 ??_EEDCB@@UAEPAXI@Z 004751c0 f text.obj - 0001:00074200 ??_GEDPL@@UAEPAXI@Z 00475200 f text.obj - 0001:00074200 ??_EEDPL@@UAEPAXI@Z 00475200 f text.obj - 0001:00074240 ??_GEDSL@@UAEPAXI@Z 00475240 f text.obj - 0001:00074240 ??_EEDSL@@UAEPAXI@Z 00475240 f text.obj - 0001:00074280 ??1EDPL@@UAE@XZ 00475280 f text.obj - 0001:000742b0 ??_EEDML@@UAEPAXI@Z 004752b0 f text.obj - 0001:000742b0 ??_GEDML@@UAEPAXI@Z 004752b0 f text.obj - 0001:000742f0 ??_GEDMW@@UAEPAXI@Z 004752f0 f text.obj - 0001:000742f0 ??_EEDMW@@UAEPAXI@Z 004752f0 f text.obj - 0001:00074330 ??1EDSL@@UAE@XZ 00475330 f text.obj - 0001:00074360 ??1EDMW@@UAE@XZ 00475360 f text.obj - 0001:00074390 ?FWouldBe@TXTB@@SGHJ@Z 00475390 f rtxt.obj - 0001:000743d0 ?FIs@TXTB@@UAEHJ@Z 004753d0 f rtxt.obj - 0001:00074400 ?Cls@TXTB@@UAEJXZ 00475400 f rtxt.obj - 0001:00074430 ?FWouldBe@TXRD@@SGHJ@Z 00475430 f rtxt.obj - 0001:00074470 ?FIs@TXRD@@UAEHJ@Z 00475470 f rtxt.obj - 0001:000744a0 ?Cls@TXRD@@UAEJXZ 004754a0 f rtxt.obj - 0001:000744d0 ?FWouldBe@TXTG@@SGHJ@Z 004754d0 f rtxt.obj - 0001:00074510 ?FIs@TXTG@@UAEHJ@Z 00475510 f rtxt.obj - 0001:00074540 ?Cls@TXTG@@UAEJXZ 00475540 f rtxt.obj - 0001:00074570 ?FWouldBe@TXRG@@SGHJ@Z 00475570 f rtxt.obj - 0001:000745b0 ?FIs@TXRG@@UAEHJ@Z 004755b0 f rtxt.obj - 0001:000745e0 ?Cls@TXRG@@UAEJXZ 004755e0 f rtxt.obj - 0001:00074610 ?FWouldBe@RTUN@@SGHJ@Z 00475610 f rtxt.obj - 0001:00074650 ?FIs@RTUN@@UAEHJ@Z 00475650 f rtxt.obj - 0001:00074680 ?Cls@RTUN@@UAEJXZ 00475680 f rtxt.obj - 0001:000746b0 ?AssertValid@TXTB@@QAEXK@Z 004756b0 f rtxt.obj - 0001:00074890 ?MarkMem@TXTB@@UAEXXZ 00475890 f rtxt.obj - 0001:00074900 ??0TXTB@@IAE@PAVDOCB@@K@Z 00475900 f rtxt.obj - 0001:00074960 ??1TXTB@@MAE@XZ 00475960 f rtxt.obj - 0001:000749f0 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 004759f0 f rtxt.obj - 0001:00074c30 ?_FLoad@TXTB@@MAEHF@Z 00475c30 f rtxt.obj - 0001:00074d20 ?CpMac@TXTB@@QAEJXZ 00475d20 f rtxt.obj - 0001:00074db0 ?SuspendUndo@TXTB@@UAEXXZ 00475db0 f rtxt.obj - 0001:00074e00 ?ResumeUndo@TXTB@@UAEXXZ 00475e00 f rtxt.obj - 0001:00074e90 ?FSetUndo@TXTB@@UAEHJJJ@Z 00475e90 f rtxt.obj - 0001:00074f20 ?CancelUndo@TXTB@@UAEXXZ 00475f20 f rtxt.obj - 0001:00074f50 ?CommitUndo@TXTB@@UAEXXZ 00475f50 f rtxt.obj - 0001:00074f80 ?BumpCombineUndo@TXTB@@UAEXXZ 00475f80 f rtxt.obj - 0001:00074fe0 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 00475fe0 f rtxt.obj - 0001:00075230 ?HideSel@TXTB@@UAEXXZ 00476230 f rtxt.obj - 0001:000752b0 ?SetSel@TXTB@@UAEXJJJ@Z 004762b0 f rtxt.obj - 0001:00075340 ?ShowSel@TXTB@@UAEXXZ 00476340 f rtxt.obj - 0001:000753c0 ?_CacheRange@TXTB@@MAEXJJ@Z 004763c0 f rtxt.obj - 0001:000756d0 ?_InvalCache@TXTB@@MAEXJJJ@Z 004766d0 f rtxt.obj - 0001:00075800 ?_ChFetch@TXTB@@MAEDJ@Z 00476800 f rtxt.obj - 0001:000758b0 ?FetchRgch@TXTB@@UAEXJJPAD@Z 004768b0 f rtxt.obj - 0001:000759a0 ?FMinPara@TXTB@@QAEHJ@Z 004769a0 f rtxt.obj - 0001:00075ad0 ?CpMinPara@TXTB@@QAEJJ@Z 00476ad0 f rtxt.obj - 0001:00075c10 ?CpLimPara@TXTB@@QAEJJ@Z 00476c10 f rtxt.obj - 0001:00075d80 ?CpPrev@TXTB@@QAEJJH@Z 00476d80 f rtxt.obj - 0001:00075e90 ?LowerRgch@@YGXPADJ@Z 00476e90 f rtxt.obj - 0001:00075eb0 ?ChLower@@YGDD@Z 00476eb0 f rtxt.obj - 0001:00075ed0 ?CpNext@TXTB@@QAEJJH@Z 00476ed0 f rtxt.obj - 0001:00076000 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 00477000 f rtxt.obj - 0001:00076120 ?SetDxpDef@TXTB@@UAEXJ@Z 00477120 f rtxt.obj - 0001:000761e0 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 004771e0 f rtxt.obj - 0001:00076310 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 00477310 f rtxt.obj - 0001:00076500 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 00477500 f rtxt.obj - 0001:000766a0 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 004776a0 f rtxt.obj - 0001:00076780 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 00477780 f rtxt.obj - 0001:00076870 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00477870 f rtxt.obj - 0001:00076950 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 00477950 f rtxt.obj - 0001:00076a30 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 00477a30 f rtxt.obj - 0001:00076b40 ??0TXRD@@IAE@PAVDOCB@@K@Z 00477b40 f rtxt.obj - 0001:00076ba0 ??1TXRD@@MAE@XZ 00477ba0 f rtxt.obj - 0001:00076c80 ?IbMac@BSF@@QAEJXZ 00477c80 f rtxt.obj - 0001:00076cb0 ?AssertValid@TXRD@@QAEXK@Z 00477cb0 f rtxt.obj - 0001:00076e50 ?MarkMem@TXRD@@UAEXXZ 00477e50 f rtxt.obj - 0001:00076ef0 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 00477ef0 f rtxt.obj - 0001:00076fd0 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 00477fd0 f rtxt.obj - 0001:00077240 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 00478240 f rtxt.obj - 0001:00077a30 ?_FOpenArg@TXRD@@MAEHJEFF@Z 00478a30 f rtxt.obj - 0001:00077c10 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 00478c10 f rtxt.obj - 0001:00077cf0 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 00478cf0 f rtxt.obj - 0001:00077d50 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 00478d50 f rtxt.obj - 0001:00078010 ?FSetFni@CFL@@QAEHPAVFNI@@@Z 00479010 f rtxt.obj - 0001:00078040 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 00479040 f rtxt.obj - 0001:00078520 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 00479520 f rtxt.obj - 0001:00078580 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 00479580 f rtxt.obj - 0001:000787f0 ?_SprmFromSpcp@TXRD@@IAEEK@Z 004797f0 f rtxt.obj - 0001:00078820 ?_CpFromSpcp@TXRD@@IAEJK@Z 00479820 f rtxt.obj - 0001:00078850 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 00479850 f rtxt.obj - 0001:00078980 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 00479980 f rtxt.obj - 0001:00078e90 ?_SpcpFromSprmCp@TXRD@@IAEKEJ@Z 00479e90 f rtxt.obj - 0001:00078ed0 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 00479ed0 f rtxt.obj - 0001:00079130 ?_ReleaseInAg@TXRD@@IAEXJ@Z 0047a130 f rtxt.obj - 0001:00079240 ?_AddRefInAg@TXRD@@IAEXJ@Z 0047a240 f rtxt.obj - 0001:00079330 ?_FSprmInAg@TXRD@@KGHE@Z 0047a330 f rtxt.obj - 0001:000793b0 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 0047a3b0 f rtxt.obj - 0001:00079400 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 0047a400 f rtxt.obj - 0001:00079450 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 0047a450 f rtxt.obj - 0001:00079580 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 0047a580 f rtxt.obj - 0001:000796b0 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 0047a6b0 f rtxt.obj - 0001:00079740 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 0047a740 f rtxt.obj - 0001:00079c40 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 0047ac40 f rtxt.obj - 0001:00079fb0 ?SwHighLow@@YGFEE@Z 0047afb0 f rtxt.obj - 0001:00079fe0 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 0047afe0 f rtxt.obj - 0001:0007a370 ?Clear@CHP@@QAEXXZ 0047b370 f rtxt.obj - 0001:0007a3b0 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 0047b3b0 f rtxt.obj - 0001:0007a590 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 0047b590 f rtxt.obj - 0001:0007a6e0 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 0047b6e0 f rtxt.obj - 0001:0007a950 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 0047b950 f rtxt.obj - 0001:0007ac40 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 0047bc40 f rtxt.obj - 0001:0007aeb0 ?FSetUndo@TXRD@@UAEHJJJ@Z 0047beb0 f rtxt.obj - 0001:0007afc0 ?CancelUndo@TXRD@@UAEXXZ 0047bfc0 f rtxt.obj - 0001:0007b040 ?CommitUndo@TXRD@@UAEXXZ 0047c040 f rtxt.obj - 0001:0007b1c0 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 0047c1c0 f rtxt.obj - 0001:0007b370 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 0047c370 f rtxt.obj - 0001:0007b450 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 0047c450 f rtxt.obj - 0001:0007b9a0 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 0047c9a0 f rtxt.obj - 0001:0007bc30 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 0047cc30 f rtxt.obj - 0001:0007be50 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 0047ce50 f rtxt.obj - 0001:0007bf80 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 0047cf80 f rtxt.obj - 0001:0007c0d0 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 0047d0d0 f rtxt.obj - 0001:0007c600 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 0047d600 f rtxt.obj - 0001:0007c9c0 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 0047d9c0 f rtxt.obj - 0001:0007cc90 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 0047dc90 f rtxt.obj - 0001:0007ce70 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 0047de70 f rtxt.obj - 0001:0007cfc0 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 0047dfc0 f rtxt.obj - 0001:0007d0d0 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0047e0d0 f rtxt.obj - 0001:0007d230 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0047e230 f rtxt.obj - 0001:0007d320 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 0047e320 f rtxt.obj - 0001:0007d530 ??1RTUN@@UAE@XZ 0047e530 f rtxt.obj - 0001:0007d590 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 0047e590 f rtxt.obj - 0001:0007d940 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 0047e940 f rtxt.obj - 0001:0007d9a0 ?FCombine@RTUN@@QAEHPAV1@@Z 0047e9a0 f rtxt.obj - 0001:0007dc30 ?AssertValid@RTUN@@QAEXK@Z 0047ec30 f rtxt.obj - 0001:0007dd00 ?MarkMem@RTUN@@UAEXXZ 0047ed00 f rtxt.obj - 0001:0007dd90 ??_GTXTB@@MAEPAXI@Z 0047ed90 f rtxt.obj - 0001:0007dd90 ??_ETXTB@@MAEPAXI@Z 0047ed90 f rtxt.obj - 0001:0007ddd0 ??_GTXRD@@MAEPAXI@Z 0047edd0 f rtxt.obj - 0001:0007ddd0 ??_ETXRD@@MAEPAXI@Z 0047edd0 f rtxt.obj - 0001:0007de10 ??0CHP@@QAE@XZ 0047ee10 f rtxt.obj - 0001:0007de50 ??0RTUN@@QAE@XZ 0047ee50 f rtxt.obj - 0001:0007de90 ??0UNDB@@IAE@XZ 0047ee90 f rtxt.obj - 0001:0007ded0 ??_GUNDB@@UAEPAXI@Z 0047eed0 f rtxt.obj - 0001:0007ded0 ??_EUNDB@@UAEPAXI@Z 0047eed0 f rtxt.obj - 0001:0007df10 ??_ERTUN@@UAEPAXI@Z 0047ef10 f rtxt.obj - 0001:0007df10 ??_GRTUN@@UAEPAXI@Z 0047ef10 f rtxt.obj - 0001:0007df50 ??1UNDB@@UAE@XZ 0047ef50 f rtxt.obj - 0001:0007df80 ??_9@$BBBE@A 0047ef80 f rtxt.obj - 0001:0007df90 ??_9@$BBBI@A 0047ef90 f rtxt.obj - 0001:0007dfa0 ?AssertValid@CHR@@QAEXK@Z 0047efa0 f rtxt2.obj - 0001:0007e090 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 0047f090 f rtxt2.obj - 0001:0007e460 ?GetNextRun@CHR@@QAEXH@Z 0047f460 f rtxt2.obj - 0001:0007ea50 ?_FFit@CHR@@AAEHXZ 0047fa50 f rtxt2.obj - 0001:0007eb40 ?_SetToBop@CHR@@AAEXXZ 0047fb40 f rtxt2.obj - 0001:0007ed20 ?_SkipIgnores@CHR@@AAEXXZ 0047fd20 f rtxt2.obj - 0001:0007ee20 ?_DoTab@CHR@@AAEXXZ 0047fe20 f rtxt2.obj - 0001:0007ef80 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 0047ff80 f rtxt2.obj - 0001:0007f050 ??1TXTG@@MAE@XZ 00480050 f rtxt2.obj - 0001:0007f120 ?AssertValid@TXTG@@QAEXK@Z 00480120 f rtxt2.obj - 0001:0007f280 ?MarkMem@TXTG@@UAEXXZ 00480280 f rtxt2.obj - 0001:0007f300 ?_FInit@TXTG@@MAEHXZ 00480300 f rtxt2.obj - 0001:0007f530 ?_Activate@TXTG@@MAEXH@Z 00480530 f rtxt2.obj - 0001:0007f5a0 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 004805a0 f rtxt2.obj - 0001:0007f900 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00480900 f rtxt2.obj - 0001:0007fdf0 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00480df0 f rtxt2.obj - 0001:00080380 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 00481380 f rtxt2.obj - 0001:000809b0 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 004819b0 f rtxt2.obj - 0001:00080fe0 ?FBreak@CHR@@QAEHXZ 00481fe0 f rtxt2.obj - 0001:00081010 ?GetChrd@CHR@@QAEXPAUCHRD@@0@Z 00482010 f rtxt2.obj - 0001:000810a0 ?DypAscent@CHR@@QAEJXZ 004820a0 f rtxt2.obj - 0001:000810d0 ?DypDescent@CHR@@QAEJXZ 004820d0 f rtxt2.obj - 0001:00081100 ?XpBreak@CHR@@QAEJXZ 00482100 f rtxt2.obj - 0001:00081130 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 00482130 f rtxt2.obj - 0001:00081230 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00482230 f rtxt2.obj - 0001:00081810 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 00482810 f rtxt2.obj - 0001:00081950 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00482950 f rtxt2.obj - 0001:00081bb0 ?XpMin@CHR@@QAEJXZ 00482bb0 f rtxt2.obj - 0001:00081be0 ?FReplace@TXTG@@UAEHPADJJJ@Z 00482be0 f rtxt2.obj - 0001:00081d00 ?InvalCp@TXTG@@UAEXJJJ@Z 00482d00 f rtxt2.obj - 0001:00081f00 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 00482f00 f rtxt2.obj - 0001:00082130 ?_Scroll@TXTG@@MAEXJJJJ@Z 00483130 f rtxt2.obj - 0001:00082700 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 00483700 f rtxt2.obj - 0001:00082830 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 00483830 f rtxt2.obj - 0001:00082930 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 00483930 f rtxt2.obj - 0001:00082da0 ?Prgch@CHR@@QAEPADXZ 00483da0 f rtxt2.obj - 0001:00082dd0 ?CpMin@CHR@@QAEJXZ 00483dd0 f rtxt2.obj - 0001:00082e00 ?FObject@CHR@@QAEHXZ 00483e00 f rtxt2.obj - 0001:00082e30 ?AcrBack@TXTB@@QAE?AVACR@@XZ 00483e30 f rtxt2.obj - 0001:00082e60 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 00483e60 f rtxt2.obj - 0001:00082e80 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 00483e80 f rtxt2.obj - 0001:000832b0 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 004842b0 f rtxt2.obj - 0001:000833c0 ?GetSel@TXTG@@UAEXPAJ0@Z 004843c0 f rtxt2.obj - 0001:00083440 ?SetSel@TXTG@@UAEXJJJ@Z 00484440 f rtxt2.obj - 0001:00083660 ?ShowSel@TXTG@@QAEXXZ 00484660 f rtxt2.obj - 0001:000839d0 ?HideSel@TXTG@@UAEXXZ 004849d0 f rtxt2.obj - 0001:00083a60 ?_SwitchSel@TXTG@@IAEXHJ@Z 00484a60 f rtxt2.obj - 0001:00083b90 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 00484b90 f rtxt2.obj - 0001:00083d10 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 00484d10 f rtxt2.obj - 0001:00084020 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 00485020 f rtxt2.obj - 0001:00084b10 ?_ScvMax@TXTG@@MAEJH@Z 00485b10 f rtxt2.obj - 0001:00084b90 ?_DxpDoc@TXTG@@MAEJXZ 00485b90 f rtxt2.obj - 0001:00084bc0 ?DxpDef@TXTB@@QAEJXZ 00485bc0 f rtxt2.obj - 0001:00084bf0 ?SetDxpTab@TXTG@@UAEXJ@Z 00485bf0 f rtxt2.obj - 0001:00084c40 ?SetDxpDoc@TXTG@@UAEXJ@Z 00485c40 f rtxt2.obj - 0001:00084cc0 ?ShowRuler@TXTG@@UAEXH@Z 00485cc0 f rtxt2.obj - 0001:00084e90 ?_DypTrul@TXTG@@MAEJXZ 00485e90 f rtxt2.obj - 0001:00084ee0 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 00485ee0 f rtxt2.obj - 0001:00084f30 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 00485f30 f rtxt2.obj - 0001:00084fe0 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 00485fe0 f rtxt2.obj - 0001:00085030 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 00486030 f rtxt2.obj - 0001:00085060 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 00486060 f rtxt2.obj - 0001:00085120 ?AssertValid@TXRG@@QAEXK@Z 00486120 f rtxt2.obj - 0001:00085190 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 00486190 f rtxt2.obj - 0001:000851d0 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 004861d0 f rtxt2.obj - 0001:00085210 ?SetDxpTab@TXRG@@UAEXJ@Z 00486210 f rtxt2.obj - 0001:00085360 ?SetSel@TXRG@@UAEXJJJ@Z 00486360 f rtxt2.obj - 0001:00085490 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 00486490 f rtxt2.obj - 0001:000855a0 ?_EnsureChpIns@TXRG@@IAEXXZ 004865a0 f rtxt2.obj - 0001:00085630 ?FReplace@TXRG@@UAEHPADJJJ@Z 00486630 f rtxt2.obj - 0001:000857e0 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 004867e0 f rtxt2.obj - 0001:00085920 ?_ClearSel@TXRG@@MAEXXZ 00486920 f rtxt2.obj - 0001:00085970 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 00486970 f rtxt2.obj - 0001:00085c20 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 00486c20 f rtxt2.obj - 0001:00085eb0 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 00486eb0 f rtxt2.obj - 0001:00085fd0 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 00486fd0 f rtxt2.obj - 0001:00086480 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 00487480 f rtxt2.obj - 0001:00086500 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 00487500 f rtxt2.obj - 0001:00086580 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 00487580 f rtxt2.obj - 0001:00086a10 ??_ETXTG@@MAEPAXI@Z 00487a10 f rtxt2.obj - 0001:00086a10 ??_GTXTG@@MAEPAXI@Z 00487a10 f rtxt2.obj - 0001:00086a50 ??0CHR@@QAE@XZ 00487a50 f rtxt2.obj - 0001:00086a80 ??_ETXRG@@UAEPAXI@Z 00487a80 f rtxt2.obj - 0001:00086a80 ??_GTXRG@@UAEPAXI@Z 00487a80 f rtxt2.obj - 0001:00086ac0 ??1TXRG@@UAE@XZ 00487ac0 f rtxt2.obj - 0001:00086af0 ?FWouldBe@MBMP@@SGHJ@Z 00487af0 f mbmp.obj - 0001:00086b30 ?FIs@MBMP@@UAEHJ@Z 00487b30 f mbmp.obj - 0001:00086b60 ?Cls@MBMP@@UAEJXZ 00487b60 f mbmp.obj - 0001:00086b90 ??1MBMP@@UAE@XZ 00487b90 f mbmp.obj - 0001:00086c00 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 00487c00 f mbmp.obj - 0001:00086d00 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 00487d00 f mbmp.obj - 0001:00087420 ?CbOnFile@MBMP@@UAEJXZ 00488420 f mbmp.obj - 0001:00087480 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 00488480 f mbmp.obj - 0001:000875d0 ?GetRc@MBMP@@QAEXPAVRC@@@Z 004885d0 f mbmp.obj - 0001:00087640 ?AssertValid@MBMP@@QAEXK@Z 00488640 f mbmp.obj - 0001:00087790 ?MarkMem@MBMP@@UAEXXZ 00488790 f mbmp.obj - 0001:000877f0 ??_GMBMP@@UAEPAXI@Z 004887f0 f mbmp.obj - 0001:000877f0 ??_EMBMP@@UAEPAXI@Z 004887f0 f mbmp.obj - 0001:00087830 ??0MBMP@@IAE@XZ 00488830 f mbmp.obj - 0001:00087a20 ?FWouldBe@APP@@SGHJ@Z 00488a20 f ft.obj - 0001:00087a60 ?FIs@APP@@UAEHJ@Z 00488a60 f ft.obj - 0001:00087a90 ?Cls@APP@@UAEJXZ 00488a90 f ft.obj - 0001:00087ac0 ?FrameMain@@YGXXZ 00488ac0 f ft.obj - 0001:00087ae0 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 00488ae0 f ft.obj - 0001:00087b10 ?_FInit@APP@@MAEHKKJ@Z 00488b10 f ft.obj - 0001:00087b70 ?FCmdTestSuite@APP@@QAEHPAUCMD@@@Z 00488b70 f ft.obj - 0001:00087ba0 ?FWouldBe@GPRC@@SGHJ@Z 00488ba0 f ft.obj - 0001:00087be0 ?FIs@GPRC@@UAEHJ@Z 00488be0 f ft.obj - 0001:00087c10 ?Cls@GPRC@@UAEJXZ 00488c10 f ft.obj - 0001:00087c40 ?FWouldBe@GFRC@@SGHJ@Z 00488c40 f ft.obj - 0001:00087c80 ?FIs@GFRC@@UAEHJ@Z 00488c80 f ft.obj - 0001:00087cb0 ?Cls@GFRC@@UAEJXZ 00488cb0 f ft.obj - 0001:00087ce0 ??0GPRC@@QAE@PAUGCB@@PAUAPT@@VACR@@2H@Z 00488ce0 f ft.obj - 0001:00087d70 ??1GPRC@@UAE@XZ 00488d70 f ft.obj - 0001:00087e00 ?MarkMem@GPRC@@UAEXXZ 00488e00 f ft.obj - 0001:00087e60 ?Draw@GPRC@@UAEXPAVGNV@@PAVRC@@@Z 00488e60 f ft.obj - 0001:000880a0 ?FCmdTrackMouse@GPRC@@UAEHPAUCMD_MOUSE@@@Z 004890a0 f ft.obj - 0001:00088440 ??0GFRC@@QAE@PAUGCB@@VACR@@H@Z 00489440 f ft.obj - 0001:000884a0 ?Draw@GFRC@@UAEXPAVGNV@@PAVRC@@@Z 004894a0 f ft.obj - 0001:00088540 ?MouseDown@GFRC@@UAEXJJJK@Z 00489540 f ft.obj - 0001:000885e0 ?FWouldBe@TDC@@SGHJ@Z 004895e0 f ft.obj - 0001:00088620 ?FIs@TDC@@UAEHJ@Z 00489620 f ft.obj - 0001:00088650 ?Cls@TDC@@UAEJXZ 00489650 f ft.obj - 0001:00088680 ?_NewRc@TDC@@MAEXXZ 00489680 f ft.obj - 0001:000887d0 ?Draw@TDC@@UAEXPAVGNV@@PAVRC@@@Z 004897d0 f ft.obj - 0001:00088820 ?FWouldBe@DWN@@SGHJ@Z 00489820 f ft.obj - 0001:00088860 ?FIs@DWN@@UAEHJ@Z 00489860 f ft.obj - 0001:00088890 ?Cls@DWN@@UAEJXZ 00489890 f ft.obj - 0001:000888c0 ?PdwnNew@DWN@@SGPAV1@XZ 004898c0 f ft.obj - 0001:00089070 ??0TDC@@QAE@PAUGCB@@@Z 0048a070 f ft.obj - 0001:000890b0 ??0DWN@@IAE@PAUGCB@@@Z 0048a0b0 f ft.obj - 0001:000890f0 ?Pcmm@DWN@@MAEPAUCMM@CMH@@XZ 0048a0f0 f ft.obj - 0001:00089120 ?FCmdScroll@DWN@@UAEHPAUCMD@@@Z 0048a120 f ft.obj - 0001:00089320 ?FWouldBe@TTW@@SGHJ@Z 0048a320 f ft.obj - 0001:00089360 ?FIs@TTW@@UAEHJ@Z 0048a360 f ft.obj - 0001:00089390 ?Cls@TTW@@UAEJXZ 0048a390 f ft.obj - 0001:000893c0 ?PttwNew@TTW@@SGPAV1@XZ 0048a3c0 f ft.obj - 0001:00089590 ??0TTW@@QAE@PAUGCB@@@Z 0048a590 f ft.obj - 0001:000895d0 ?Draw@TTW@@UAEXPAVGNV@@PAVRC@@@Z 0048a5d0 f ft.obj - 0001:000898b0 ?MouseDown@TTW@@UAEXJJJK@Z 0048a8b0 f ft.obj - 0001:00089940 ?FWouldBe@RTW@@SGHJ@Z 0048a940 f ft.obj - 0001:00089980 ?FIs@RTW@@UAEHJ@Z 0048a980 f ft.obj - 0001:000899b0 ?Cls@RTW@@UAEJXZ 0048a9b0 f ft.obj - 0001:000899e0 ?PrtwNew@RTW@@SGPAV1@XZ 0048a9e0 f ft.obj - 0001:00089af0 ??0RTW@@QAE@PAUGCB@@@Z 0048aaf0 f ft.obj - 0001:00089b40 ?FCmdNewTestWnd@APP@@QAEHPAUCMD@@@Z 0048ab40 f ft.obj - 0001:00089d20 ??0DOC@@QAE@XZ 0048ad20 f ft.obj - 0001:00089d60 ?FCmdTextTestWnd@APP@@QAEHPAUCMD@@@Z 0048ad60 f ft.obj - 0001:00089d90 ?FCmdTimeTestRc@APP@@QAEHPAUCMD@@@Z 0048ad90 f ft.obj - 0001:00089dc0 ?MouseDown@RTW@@UAEXJJJK@Z 0048adc0 f ft.obj - 0001:0008a270 ?Draw@RTW@@UAEXPAVGNV@@PAVRC@@@Z 0048b270 f ft.obj - 0001:0008a370 ?FCmdMacro@APP@@QAEHPAUCMD@@@Z 0048b370 f ft.obj - 0001:0008a5b0 ?FEnableMacro@APP@@QAEHPAUCMD@@PAK@Z 0048b5b0 f ft.obj - 0001:0008a620 ?FCmdTestFni@APP@@QAEHPAUCMD@@@Z 0048b620 f ft.obj - 0001:0008a770 ?PtMap@WOP@@QAE?AVPT@@JJJ@Z 0048b770 f ft.obj - 0001:0008a810 ??0DOCP@@QAE@XZ 0048b810 f ft.obj - 0001:0008a8b0 ?PddgNew@DOCP@@UAEPAVDDG@@PAUGCB@@@Z 0048b8b0 f ft.obj - 0001:0008a8e0 ?GetRcPic@DOCP@@QAEXPAVRC@@@Z 0048b8e0 f ft.obj - 0001:0008a9a0 ??0DDP@@IAE@PAVDOCP@@PAUGCB@@@Z 0048b9a0 f ft.obj - 0001:0008a9e0 ?PddpNew@DDP@@SGPAV1@PAVDOCP@@PAUGCB@@@Z 0048b9e0 f ft.obj - 0001:0008ab00 ?Draw@DDP@@UAEXPAVGNV@@PAVRC@@@Z 0048bb00 f ft.obj - 0001:0008ac10 ?DrawRc@DDP@@QAEXPAVGNV@@@Z 0048bc10 f ft.obj - 0001:0008ac60 ?DrawNumbers@DDP@@QAEXPAVGNV@@@Z 0048bc60 f ft.obj - 0001:0008acf0 ?MouseDown@DDP@@UAEXJJJK@Z 0048bcf0 f ft.obj - 0001:0008af10 ?FCmdTestPerspective@APP@@QAEHPAUCMD@@@Z 0048bf10 f ft.obj - 0001:0008afa0 ??0DOCPIC@@IAE@XZ 0048bfa0 f ft.obj - 0001:0008afe0 ??1DOCPIC@@UAE@XZ 0048bfe0 f ft.obj - 0001:0008b040 ??0ACR@@QAE@E@Z 0048c040 f ft.obj - 0001:0008b080 ?MarkMem@DOCPIC@@UAEXXZ 0048c080 f ft.obj - 0001:0008b0d0 ?PdocpicNew@DOCPIC@@SGPAV1@XZ 0048c0d0 f ft.obj - 0001:0008b4f0 ?PddgNew@DOCPIC@@UAEPAVDDG@@PAUGCB@@@Z 0048c4f0 f ft.obj - 0001:0008b520 ?FSaveToFni@DOCPIC@@UAEHPAVFNI@@H@Z 0048c520 f ft.obj - 0001:0008b5e0 ?QrgptGet@OGN@@QAEPAVPT@@J@Z 0048c5e0 f ft.obj - 0001:0008b610 ??0DDPIC@@IAE@PAVDOCPIC@@PAUGCB@@@Z 0048c610 f ft.obj - 0001:0008b650 ?PddpicNew@DDPIC@@SGPAV1@PAVDOCPIC@@PAUGCB@@@Z 0048c650 f ft.obj - 0001:0008b770 ?Draw@DDPIC@@UAEXPAVGNV@@PAVRC@@@Z 0048c770 f ft.obj - 0001:0008b8b0 ?Ppic@DOCPIC@@QAEPAVPIC@@XZ 0048c8b0 f ft.obj - 0001:0008b8e0 ?FRecording@CEX@@QAEHXZ 0048c8e0 f ft.obj - 0001:0008b920 ?FPlaying@CEX@@QAEHXZ 0048c920 f ft.obj - 0001:0008b960 ?FCmdTestPictures@APP@@QAEHPAUCMD@@@Z 0048c960 f ft.obj - 0001:0008b9d0 ??0DOCGPT@@IAE@XZ 0048c9d0 f ft.obj - 0001:0008ba10 ??1DOCGPT@@UAE@XZ 0048ca10 f ft.obj - 0001:0008ba70 ?MarkMem@DOCGPT@@UAEXXZ 0048ca70 f ft.obj - 0001:0008bac0 ?PdocgptNew@DOCGPT@@SGPAV1@XZ 0048cac0 f ft.obj - 0001:0008c0e0 ?SetToIndex@ACR@@QAEXE@Z 0048d0e0 f ft.obj - 0001:0008c120 ?Val@SCB@@QAEJXZ 0048d120 f ft.obj - 0001:0008c150 ?ValMin@SCB@@QAEJXZ 0048d150 f ft.obj - 0001:0008c180 ?ValMax@SCB@@QAEJXZ 0048d180 f ft.obj - 0001:0008c1b0 ?PddgNew@DOCGPT@@UAEPAVDDG@@PAUGCB@@@Z 0048d1b0 f ft.obj - 0001:0008c1e0 ??0DDGPT@@IAE@PAVDOCGPT@@PAUGCB@@@Z 0048d1e0 f ft.obj - 0001:0008c220 ?PddgptNew@DDGPT@@SGPAV1@PAVDOCGPT@@PAUGCB@@@Z 0048d220 f ft.obj - 0001:0008c340 ?Draw@DDGPT@@UAEXPAVGNV@@PAVRC@@@Z 0048d340 f ft.obj - 0001:0008c420 ?Pgpt@DOCGPT@@QAEPAVGPT@@XZ 0048d420 f ft.obj - 0001:0008c450 ?FCmdTestMbmps@APP@@QAEHPAUCMD@@@Z 0048d450 f ft.obj - 0001:0008c4c0 ?FCmdFastUpdate@APP@@QAEHPAUCMD@@@Z 0048d4c0 f ft.obj - 0001:0008c4f0 ??0TAN@@IAE@PAUGCB@@@Z 0048d4f0 f ft.obj - 0001:0008c530 ?Pcmm@TAN@@MAEPAUCMM@CMH@@XZ 0048d530 f ft.obj - 0001:0008c560 ?PtanNew@TAN@@SGPAV1@XZ 0048d560 f ft.obj - 0001:0008c7f0 ?FCmdAlarm@TAN@@UAEHPAUCMD@@@Z 0048d7f0 f ft.obj - 0001:0008c970 ?Draw@TAN@@UAEXPAVGNV@@PAVRC@@@Z 0048d970 f ft.obj - 0001:0008c9b0 ?FCmdTextEdit@APP@@QAEHPAUCMD@@@Z 0048d9b0 f ft.obj - 0001:0008c9e0 ?PtedNew@TED@@SGPAV1@XZ 0048d9e0 f ft.obj - 0001:0008cea0 ??0EDPAR@@QAE@XZ 0048dea0 f ft.obj - 0001:0008cee0 ??0TED@@IAE@XZ 0048dee0 f ft.obj - 0001:0008cf20 ?FCmdBadKey@TED@@UAEHPAUCMD_BADKEY@@@Z 0048df20 f ft.obj - 0001:0008d010 ?Draw@TED@@UAEXPAVGNV@@PAVRC@@@Z 0048e010 f ft.obj - 0001:0008d0d0 ??1APP@@UAE@XZ 0048e0d0 f ft.obj - 0001:0008d100 ??0APP@@QAE@XZ 0048e100 f ft.obj - 0001:0008d140 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 0048e140 f ft.obj - 0001:0008d170 ??_EGPRC@@UAEPAXI@Z 0048e170 f ft.obj - 0001:0008d170 ??_GGPRC@@UAEPAXI@Z 0048e170 f ft.obj - 0001:0008d1b0 ??_GGFRC@@UAEPAXI@Z 0048e1b0 f ft.obj - 0001:0008d1b0 ??_EGFRC@@UAEPAXI@Z 0048e1b0 f ft.obj - 0001:0008d1f0 ??_GTDC@@UAEPAXI@Z 0048e1f0 f ft.obj - 0001:0008d1f0 ??_ETDC@@UAEPAXI@Z 0048e1f0 f ft.obj - 0001:0008d230 ??_GDWN@@UAEPAXI@Z 0048e230 f ft.obj - 0001:0008d230 ??_EDWN@@UAEPAXI@Z 0048e230 f ft.obj - 0001:0008d270 ??_GTTW@@UAEPAXI@Z 0048e270 f ft.obj - 0001:0008d270 ??_ETTW@@UAEPAXI@Z 0048e270 f ft.obj - 0001:0008d2b0 ??1DWN@@UAE@XZ 0048e2b0 f ft.obj - 0001:0008d2e0 ??_ERTW@@UAEPAXI@Z 0048e2e0 f ft.obj - 0001:0008d2e0 ??_GRTW@@UAEPAXI@Z 0048e2e0 f ft.obj - 0001:0008d320 ??_GDOC@@UAEPAXI@Z 0048e320 f ft.obj - 0001:0008d320 ??_EDOC@@UAEPAXI@Z 0048e320 f ft.obj - 0001:0008d360 ??_GDOCP@@UAEPAXI@Z 0048e360 f ft.obj - 0001:0008d360 ??_EDOCP@@UAEPAXI@Z 0048e360 f ft.obj - 0001:0008d3a0 ??_GDDP@@UAEPAXI@Z 0048e3a0 f ft.obj - 0001:0008d3a0 ??_EDDP@@UAEPAXI@Z 0048e3a0 f ft.obj - 0001:0008d3e0 ??_EDOCPIC@@UAEPAXI@Z 0048e3e0 f ft.obj - 0001:0008d3e0 ??_GDOCPIC@@UAEPAXI@Z 0048e3e0 f ft.obj - 0001:0008d420 ??_EDDPIC@@UAEPAXI@Z 0048e420 f ft.obj - 0001:0008d420 ??_GDDPIC@@UAEPAXI@Z 0048e420 f ft.obj - 0001:0008d460 ??_EDOCGPT@@UAEPAXI@Z 0048e460 f ft.obj - 0001:0008d460 ??_GDOCGPT@@UAEPAXI@Z 0048e460 f ft.obj - 0001:0008d4a0 ??_EDDGPT@@UAEPAXI@Z 0048e4a0 f ft.obj - 0001:0008d4a0 ??_GDDGPT@@UAEPAXI@Z 0048e4a0 f ft.obj - 0001:0008d4e0 ??_GTAN@@UAEPAXI@Z 0048e4e0 f ft.obj - 0001:0008d4e0 ??_ETAN@@UAEPAXI@Z 0048e4e0 f ft.obj - 0001:0008d520 ??_ETED@@UAEPAXI@Z 0048e520 f ft.obj - 0001:0008d520 ??_GTED@@UAEPAXI@Z 0048e520 f ft.obj - 0001:0008d560 ??_GAPP@@UAEPAXI@Z 0048e560 f ft.obj - 0001:0008d560 ??_EAPP@@UAEPAXI@Z 0048e560 f ft.obj - 0001:0008d5a0 ??1GFRC@@UAE@XZ 0048e5a0 f ft.obj - 0001:0008d5d0 ??1TDC@@UAE@XZ 0048e5d0 f ft.obj - 0001:0008d600 ??1TTW@@UAE@XZ 0048e600 f ft.obj - 0001:0008d630 ??1RTW@@UAE@XZ 0048e630 f ft.obj - 0001:0008d660 ??1DOC@@UAE@XZ 0048e660 f ft.obj - 0001:0008d690 ??1DOCP@@UAE@XZ 0048e690 f ft.obj - 0001:0008d6c0 ??1DDP@@UAE@XZ 0048e6c0 f ft.obj - 0001:0008d6f0 ??1DDPIC@@UAE@XZ 0048e6f0 f ft.obj - 0001:0008d720 ??1DDGPT@@UAE@XZ 0048e720 f ft.obj - 0001:0008d750 ??1TAN@@UAE@XZ 0048e750 f ft.obj - 0001:0008d780 ??1TED@@UAE@XZ 0048e780 f ft.obj - 0001:0008d7b0 ??_9@$BIE@A 0048e7b0 f ft.obj - 0001:0008d7c0 ?TestUtil@@YGXXZ 0048e7c0 f test.obj - 0001:0008d850 ?TestInt@@YGXXZ 0048e850 f test.obj - 0001:0008e5f0 ?SwMin@@YGFFF@Z 0048f5f0 f test.obj - 0001:0008e620 ?SwMax@@YGFFF@Z 0048f620 f test.obj - 0001:0008e650 ?SuMin@@YGGGG@Z 0048f650 f test.obj - 0001:0008e680 ?SuMax@@YGGGG@Z 0048f680 f test.obj - 0001:0008e6b0 ?LuMax@@YGKKK@Z 0048f6b0 f test.obj - 0001:0008e6e0 ?SwAbs@@YGFF@Z 0048f6e0 f test.obj - 0001:0008e700 ?LwMulSw@@YGJFF@Z 0048f700 f test.obj - 0001:0008e720 ?TestMem@@YGXXZ 0048f720 f test.obj - 0001:0008ecd0 ?CbRoundToShort@@YGJJ@Z 0048fcd0 f test.obj - 0001:0008ecf0 ?TestGl@@YGXXZ 0048fcf0 f test.obj - 0001:0008f1b0 ?TestGg@@YGXXZ 004901b0 f test.obj - 0001:0008f710 ?TestErs@@YGXXZ 00490710 f test.obj - 0001:0008fb00 ?TestCrf@@YGXXZ 00490b00 f test.obj - 0001:00090036 _GetOpenFileNameA@4 00491036 comdlg32:comdlg32.dll - 0001:0009003c _GetSaveFileNameA@4 0049103c comdlg32:comdlg32.dll - 0001:00090042 _timeGetTime@0 00491042 winmm:WINMM.dll - 0001:00090048 _waveOutGetDevCapsA@12 00491048 winmm:WINMM.dll - 0001:0009004e _waveOutGetNumDevs@0 0049104e winmm:WINMM.dll - 0001:00090054 _midiOutGetVolume@8 00491054 winmm:WINMM.dll - 0001:0009005a _midiOutSetVolume@8 0049105a winmm:WINMM.dll - 0001:00090060 _midiOutShortMsg@8 00491060 winmm:WINMM.dll - 0001:00090066 _midiOutReset@4 00491066 winmm:WINMM.dll - 0001:0009006c _midiOutOpen@20 0049106c winmm:WINMM.dll - 0001:00090072 _midiOutClose@4 00491072 winmm:WINMM.dll - 0001:00090078 _midiOutUnprepareHeader@12 00491078 winmm:WINMM.dll - 0001:0009007e _midiOutPrepareHeader@12 0049107e winmm:WINMM.dll - 0001:00090090 _AMCreate@16 00491090 f audiod:audioman.obj - 0001:0009012a ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 0049112a f audiod:audioman.obj - 0001:00090178 _AMFinishCache@20 00491178 f audiod:audioman.obj - 0001:0009020a _GetAudioManMixer@0 0049120a f audiod:audioman.obj - 0001:00090273 _TimeToSamples@8 00491273 f audiod:audioman.obj - 0001:000902cc _SamplesToTime@8 004912cc f audiod:audioman.obj - 0001:00090325 _SizeToSamples@8 00491325 f audiod:audioman.obj - 0001:0009037e _SamplesToSize@8 0049137e f audiod:audioman.obj - 0001:000903d7 _SoundToStreamAsWave@12 004913d7 f audiod:audioman.obj - 0001:0009083e _SoundToFileAsWave@8 0049183e f audiod:audioman.obj - 0001:00090906 _DetectLeaks@8 00491906 f audiod:audioman.obj - 0001:00090950 _AllocSoundFromStream@16 00491950 f audiod:sound.obj - 0001:00090a28 _AllocSoundFromFile@20 00491a28 f audiod:sound.obj - 0001:00090b04 _AllocSoundFromMemory@12 00491b04 f audiod:sound.obj - 0001:00090ba2 ??0CAMWavFileSrc@@QAE@XZ 00491ba2 f audiod:sound.obj - 0001:00090bf8 ??1CAMWavFileSrc@@QAE@XZ 00491bf8 f audiod:sound.obj - 0001:00090cee ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 00491cee f audiod:sound.obj - 0001:00090d58 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 00491d58 f audiod:sound.obj - 0001:00090d7e ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 00491d7e f audiod:sound.obj - 0001:00090e00 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 00491e00 f audiod:sound.obj - 0001:0009105f ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 0049205f f audiod:sound.obj - 0001:000912a5 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 004922a5 f audiod:sound.obj - 0001:0009134b ?AddRef@CAMWavFileSrc@@UAGKXZ 0049234b f audiod:sound.obj - 0001:00091369 ?Release@CAMWavFileSrc@@UAGKXZ 00492369 f audiod:sound.obj - 0001:000913bf ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 004923bf f audiod:sound.obj - 0001:000914b4 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 004924b4 f audiod:sound.obj - 0001:00091517 ?GetSamples@CAMWavFileSrc@@UAGKXZ 00492517 f audiod:sound.obj - 0001:0009152f ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 0049252f f audiod:sound.obj - 0001:00091580 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 00492580 f audiod:sound.obj - 0001:00091b7c ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 00492b7c f audiod:sound.obj - 0001:00091b90 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 00492b90 f audiod:sound.obj - 0001:00091be6 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 00492be6 f audiod:sound.obj - 0001:00092100 ?IsEqualGUID@@YAHABU_GUID@@0@Z 00493100 f audiod:sound.obj - 0001:00092140 ??0CRIFF@@QAE@PAUIStream@@@Z 00493140 f audiod:sound.obj - 0001:00092180 ??1CRIFF@@QAE@XZ 00493180 f audiod:sound.obj - 0001:000921c0 ?GetStream@CRIFF@@QAEPAUIStream@@XZ 004931c0 f audiod:sound.obj - 0001:000921e0 ?SwapDWORD@@YAKK@Z 004931e0 f audiod:sound.obj - 0001:00092200 ?SwapWORD@@YAGG@Z 00493200 f audiod:sound.obj - 0001:00092220 ??0IAMSound@@QAE@XZ 00493220 f audiod:sound.obj - 0001:00092250 ??0IAMWavFileSrc@@QAE@XZ 00493250 f audiod:sound.obj - 0001:00092280 ??_GCAMWavFileSrc@@QAEPAXI@Z 00493280 f audiod:sound.obj - 0001:000922c0 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 004932c0 f audiod:sound.obj - 0001:000922d0 ?AddRef@CAMWavFileSrc@@W3AGKXZ 004932d0 f audiod:sound.obj - 0001:000922e0 ?Release@CAMWavFileSrc@@W3AGKXZ 004932e0 f audiod:sound.obj - 0001:000922f0 _AllocLoopFilter@12 004932f0 f audiod:sndloop.obj - 0001:0009238e ?AddRef@CAMLoopFilter@@UAGKXZ 0049338e f audiod:sndloop.obj - 0001:000923a9 ?Release@CAMLoopFilter@@UAGKXZ 004933a9 f audiod:sndloop.obj - 0001:000923c4 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 004933c4 f audiod:sndloop.obj - 0001:0009245e ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 0049345e f audiod:sndloop.obj - 0001:00092594 ?GetSamples@CAMLoopFilter@@UAGKXZ 00493594 f audiod:sndloop.obj - 0001:000925c5 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 004935c5 f audiod:sndloop.obj - 0001:0009262f ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049362f f audiod:sndloop.obj - 0001:00092870 ??0CClassFactory@@QAE@XZ 00493870 f audiod:factory.obj - 0001:000928a4 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 004938a4 f audiod:factory.obj - 0001:00092bd7 ?AddRef@CClassFactory@@UAGKXZ 00493bd7 f audiod:factory.obj - 0001:00092bf5 ?Release@CClassFactory@@UAGKXZ 00493bf5 f audiod:factory.obj - 0001:00092c3e ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 00493c3e f audiod:factory.obj - 0001:00092cd3 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 00493cd3 f audiod:factory.obj - 0001:00093410 ?LockServer@CClassFactory@@UAGJH@Z 00494410 f audiod:factory.obj - 0001:00093430 ??0IClassFactory@@QAE@XZ 00494430 f audiod:factory.obj - 0001:00093460 ??0CAMGateFilter@@QAE@XZ 00494460 f audiod:factory.obj - 0001:000934f0 ??0CAMLoopFilter@@QAE@XZ 004944f0 f audiod:factory.obj - 0001:00093580 ??0CAMFaderFilter@@QAE@XZ 00494580 f audiod:factory.obj - 0001:00093610 ??0CAMRandomizeFilter@@QAE@XZ 00494610 f audiod:factory.obj - 0001:000936a0 ??0CAMDistortFilter@@QAE@XZ 004946a0 f audiod:factory.obj - 0001:00093730 ??0CAMStereoFilter@@QAE@XZ 00494730 f audiod:factory.obj - 0001:000937c0 ??0CAMTrimFilter@@QAE@XZ 004947c0 f audiod:factory.obj - 0001:00093850 ??0CAMBiasFilter@@QAE@XZ 00494850 f audiod:factory.obj - 0001:000938e0 ??_GCAMGateFilter@@UAEPAXI@Z 004948e0 f audiod:factory.obj - 0001:000938e0 ??_ECAMGateFilter@@UAEPAXI@Z 004948e0 f audiod:factory.obj - 0001:00093920 ??0IAMGateFilter@@QAE@XZ 00494920 f audiod:factory.obj - 0001:00093950 ??_GCAMLoopFilter@@UAEPAXI@Z 00494950 f audiod:factory.obj - 0001:00093950 ??_ECAMLoopFilter@@UAEPAXI@Z 00494950 f audiod:factory.obj - 0001:00093990 ??0IAMLoopFilter@@QAE@XZ 00494990 f audiod:factory.obj - 0001:000939c0 ??_ECAMFaderFilter@@UAEPAXI@Z 004949c0 f audiod:factory.obj - 0001:000939c0 ??_GCAMFaderFilter@@UAEPAXI@Z 004949c0 f audiod:factory.obj - 0001:00093a00 ??0IAMFaderFilter@@QAE@XZ 00494a00 f audiod:factory.obj - 0001:00093a30 ??_ECAMRandomizeFilter@@UAEPAXI@Z 00494a30 f audiod:factory.obj - 0001:00093a30 ??_GCAMRandomizeFilter@@UAEPAXI@Z 00494a30 f audiod:factory.obj - 0001:00093a70 ??0IAMRandomizeFilter@@QAE@XZ 00494a70 f audiod:factory.obj - 0001:00093aa0 ??_ECAMDistortFilter@@UAEPAXI@Z 00494aa0 f audiod:factory.obj - 0001:00093aa0 ??_GCAMDistortFilter@@UAEPAXI@Z 00494aa0 f audiod:factory.obj - 0001:00093ae0 ??0IAMDistortFilter@@QAE@XZ 00494ae0 f audiod:factory.obj - 0001:00093b10 ??_ECAMStereoFilter@@UAEPAXI@Z 00494b10 f audiod:factory.obj - 0001:00093b10 ??_GCAMStereoFilter@@UAEPAXI@Z 00494b10 f audiod:factory.obj - 0001:00093b50 ??0IAMStereoFilter@@QAE@XZ 00494b50 f audiod:factory.obj - 0001:00093b80 ??_ECAMTrimFilter@@UAEPAXI@Z 00494b80 f audiod:factory.obj - 0001:00093b80 ??_GCAMTrimFilter@@UAEPAXI@Z 00494b80 f audiod:factory.obj - 0001:00093bc0 ??0IAMTrimFilter@@QAE@XZ 00494bc0 f audiod:factory.obj - 0001:00093bf0 ??_GCAMBiasFilter@@UAEPAXI@Z 00494bf0 f audiod:factory.obj - 0001:00093bf0 ??_ECAMBiasFilter@@UAEPAXI@Z 00494bf0 f audiod:factory.obj - 0001:00093c30 ??0IAMBiasFilter@@QAE@XZ 00494c30 f audiod:factory.obj - 0001:00093c60 ??1CAMGateFilter@@UAE@XZ 00494c60 f audiod:factory.obj - 0001:00093cc0 ??1CAMLoopFilter@@UAE@XZ 00494cc0 f audiod:factory.obj - 0001:00093d20 ??1CAMFaderFilter@@UAE@XZ 00494d20 f audiod:factory.obj - 0001:00093d80 ??1CAMRandomizeFilter@@UAE@XZ 00494d80 f audiod:factory.obj - 0001:00093de0 ??1CAMDistortFilter@@UAE@XZ 00494de0 f audiod:factory.obj - 0001:00093e40 ??1CAMStereoFilter@@UAE@XZ 00494e40 f audiod:factory.obj - 0001:00093ea0 ??1CAMTrimFilter@@UAE@XZ 00494ea0 f audiod:factory.obj - 0001:00093f00 ??1CAMBiasFilter@@UAE@XZ 00494f00 f audiod:factory.obj - 0001:00093f60 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00494f60 f audiod:factory.obj - 0001:00093f70 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 00494f70 f audiod:factory.obj - 0001:00093f80 ?Release@CAMLoopFilter@@WBE@AGKXZ 00494f80 f audiod:factory.obj - 0001:00093f90 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00494f90 f audiod:factory.obj - 0001:00093fa0 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 00494fa0 f audiod:factory.obj - 0001:00093fb0 ?Release@CAMBiasFilter@@WBE@AGKXZ 00494fb0 f audiod:factory.obj - 0001:00093fc0 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00494fc0 f audiod:factory.obj - 0001:00093fd0 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 00494fd0 f audiod:factory.obj - 0001:00093fe0 ?Release@CAMTrimFilter@@WBE@AGKXZ 00494fe0 f audiod:factory.obj - 0001:00093ff0 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00494ff0 f audiod:factory.obj - 0001:00094000 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 00495000 f audiod:factory.obj - 0001:00094010 ?Release@CAMDistortFilter@@WBE@AGKXZ 00495010 f audiod:factory.obj - 0001:00094020 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00495020 f audiod:factory.obj - 0001:00094030 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 00495030 f audiod:factory.obj - 0001:00094040 ?Release@CAMFaderFilter@@WBE@AGKXZ 00495040 f audiod:factory.obj - 0001:00094050 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00495050 f audiod:factory.obj - 0001:00094060 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 00495060 f audiod:factory.obj - 0001:00094070 ?Release@CAMStereoFilter@@WBE@AGKXZ 00495070 f audiod:factory.obj - 0001:00094080 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00495080 f audiod:factory.obj - 0001:00094090 ?AddRef@CAMGateFilter@@WBE@AGKXZ 00495090 f audiod:factory.obj - 0001:000940a0 ?Release@CAMGateFilter@@WBE@AGKXZ 004950a0 f audiod:factory.obj - 0001:000940b0 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004950b0 f audiod:factory.obj - 0001:000940c0 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 004950c0 f audiod:factory.obj - 0001:000940d0 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 004950d0 f audiod:factory.obj - 0001:000940e0 _DbgOutActive 004950e0 f audiod:dpf.obj - 0001:000940f8 _DbgLogActive 004950f8 f audiod:dpf.obj - 0001:00094110 _DbgLogFile 00495110 f audiod:dpf.obj - 0001:00094139 ?DbgVPrintF@@YAXPAD0@Z 00495139 f audiod:dpf.obj - 0001:000942c1 _dprintf 004952c1 f audiod:dpf.obj - 0001:00094312 _DbgEnable@4 00495312 f audiod:dpf.obj - 0001:0009433a _DbgSetLevel@4 0049533a f audiod:dpf.obj - 0001:00094362 _DbgGetLevel@0 00495362 f audiod:dpf.obj - 0001:00094377 _DbgInitialize@4 00495377 f audiod:dpf.obj - 0001:000943d0 __Assert@8 004953d0 f audiod:dpf.obj - 0001:00094470 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 00495470 f audiod:audio.obj - 0001:00094540 _AllocCacheFilter@12 00495540 f audiod:sndcache.obj - 0001:000945f4 ??0CAMCacheFilter@@QAE@XZ 004955f4 f audiod:sndcache.obj - 0001:00094633 ??1CAMCacheFilter@@QAE@XZ 00495633 f audiod:sndcache.obj - 0001:000946d6 ?AddRef@CAMCacheFilter@@UAGKXZ 004956d6 f audiod:sndcache.obj - 0001:000946f4 ?Release@CAMCacheFilter@@UAGKXZ 004956f4 f audiod:sndcache.obj - 0001:0009474a ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 0049574a f audiod:sndcache.obj - 0001:0009483c ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 0049583c f audiod:sndcache.obj - 0001:00094a85 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00495a85 f audiod:sndcache.obj - 0001:00094ad7 ?GetSamples@CAMCacheFilter@@UAGKXZ 00495ad7 f audiod:sndcache.obj - 0001:00094b08 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 00495b08 f audiod:sndcache.obj - 0001:00094b5d ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00495b5d f audiod:sndcache.obj - 0001:00094dd6 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 00495dd6 f audiod:sndcache.obj - 0001:00094e55 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 00495e55 f audiod:sndcache.obj - 0001:00094ed6 ?FillCache@CAMCacheFilter@@AAGJKK@Z 00495ed6 f audiod:sndcache.obj - 0001:000950e5 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 004960e5 f audiod:sndcache.obj - 0001:000951dc ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 004961dc f audiod:sndcache.obj - 0001:000952a1 ?SetMode@CAMCacheFilter@@UAGJHH@Z 004962a1 f audiod:sndcache.obj - 0001:00095410 ??0IAMCacheFilter@@QAE@XZ 00496410 f audiod:sndcache.obj - 0001:00095440 ??_GCAMCacheFilter@@QAEPAXI@Z 00496440 f audiod:sndcache.obj - 0001:00095480 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 00496480 f audiod:sndcache.obj - 0001:00095490 ?AddRef@CAMCacheFilter@@W3AGKXZ 00496490 f audiod:sndcache.obj - 0001:000954a0 ?Release@CAMCacheFilter@@W3AGKXZ 004964a0 f audiod:sndcache.obj - 0001:000954b0 _HRESULTFromMMRESULT@4 004964b0 f audiod:utils.obj - 0001:00095734 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 00496734 f audiod:utils.obj - 0001:00095827 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 00496827 f audiod:utils.obj - 0001:000958e7 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004968e7 f audiod:utils.obj - 0001:00095911 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 00496911 f audiod:utils.obj - 0001:00095973 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 00496973 f audiod:utils.obj - 0001:00095995 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 00496995 f audiod:utils.obj - 0001:000959b6 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004969b6 f audiod:utils.obj - 0001:000959eb ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004969eb f audiod:utils.obj - 0001:00095a1d ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 00496a1d f audiod:utils.obj - 0001:00095b07 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 00496b07 f audiod:utils.obj - 0001:00095be6 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 00496be6 f audiod:utils.obj - 0001:00095db0 ?MultDivUL@@YAKKKK@Z 00496db0 f audiod:utils.obj - 0001:00095e20 ??2CDebugMem@@SAPAXI@Z 00496e20 f audiod:debugmem.obj - 0001:00095e3e ??3CDebugMem@@SAXPAX@Z 00496e3e f audiod:debugmem.obj - 0001:00095e5a ?AllocPtr@CDebugMem@@SAPAXIK@Z 00496e5a f audiod:debugmem.obj - 0001:00095ef0 ?FreePtr@CDebugMem@@SAHPAX@Z 00496ef0 f audiod:debugmem.obj - 0001:00095fd8 ?DetectLeaks@CDebugMem@@SAHK@Z 00496fd8 f audiod:debugmem.obj - 0001:000960a0 _AMRIFFStream_CreateFromIStream@8 004970a0 f audiod:riffstrm.obj - 0001:00096118 ??0CAMRIFFStream@@QAE@PAUIStream@@@Z 00497118 f audiod:riffstrm.obj - 0001:0009617d ??1CAMRIFFStream@@QAE@XZ 0049717d f audiod:riffstrm.obj - 0001:000961ca ?AddRef@CAMRIFFStream@@UAGKXZ 004971ca f audiod:riffstrm.obj - 0001:000961e8 ?Release@CAMRIFFStream@@UAGKXZ 004971e8 f audiod:riffstrm.obj - 0001:0009623e ?QueryInterface@CAMRIFFStream@@UAGJABU_GUID@@PAPAX@Z 0049723e f audiod:riffstrm.obj - 0001:000962d9 ?Descend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@0I@Z 004972d9 f audiod:riffstrm.obj - 0001:00096494 ?Ascend@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 00497494 f audiod:riffstrm.obj - 0001:000965c9 ?CreateChunk@CAMRIFFStream@@UAGIPAU_MMCKINFO@@I@Z 004975c9 f audiod:riffstrm.obj - 0001:00096683 ?MyRead@CAMRIFFStream@@AAGJPAXJ@Z 00497683 f audiod:riffstrm.obj - 0001:000966cb ?MyWrite@CAMRIFFStream@@AAGJPBXJ@Z 004976cb f audiod:riffstrm.obj - 0001:00096713 ?MySeek@CAMRIFFStream@@AAGJJH@Z 00497713 f audiod:riffstrm.obj - 0001:00096770 ??0IAMRIFFStream@@QAE@XZ 00497770 f audiod:riffstrm.obj - 0001:000967a0 ??_GCAMRIFFStream@@QAEPAXI@Z 004977a0 f audiod:riffstrm.obj - 0001:000967e0 ??0CFileStream@@QAE@PADKK@Z 004977e0 f audiod:stream.obj - 0001:00096914 ??1CFileStream@@QAE@XZ 00497914 f audiod:stream.obj - 0001:00096960 ?AddRef@CFileStream@@UAGKXZ 00497960 f audiod:stream.obj - 0001:0009697e ?Release@CFileStream@@UAGKXZ 0049797e f audiod:stream.obj - 0001:000969d4 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 004979d4 f audiod:stream.obj - 0001:00096a6f ?Read@CFileStream@@UAGJPAXKPAK@Z 00497a6f f audiod:stream.obj - 0001:00096ac7 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00497ac7 f audiod:stream.obj - 0001:00096b9e ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 00497b9e f audiod:stream.obj - 0001:00096c19 ?Write@CFileStream@@UAGJPBXKPAK@Z 00497c19 f audiod:stream.obj - 0001:00096c60 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 00497c60 f audiod:stream.obj - 0001:00096c77 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00497c77 f audiod:stream.obj - 0001:00096c8e ?Commit@CFileStream@@UAGJK@Z 00497c8e f audiod:stream.obj - 0001:00096ca5 ?Revert@CFileStream@@UAGJXZ 00497ca5 f audiod:stream.obj - 0001:00096cbc ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00497cbc f audiod:stream.obj - 0001:00096cd3 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00497cd3 f audiod:stream.obj - 0001:00096cea ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 00497cea f audiod:stream.obj - 0001:00096d01 ??0CMemoryStream@@AAE@PAV0@@Z 00497d01 f audiod:stream.obj - 0001:00096dcc ??0CMemoryStream@@QAE@PAUIStream@@K@Z 00497dcc f audiod:stream.obj - 0001:00096eb4 ??0CMemoryStream@@QAE@PADKK@Z 00497eb4 f audiod:stream.obj - 0001:00096f23 ??1CMemoryStream@@QAE@XZ 00497f23 f audiod:stream.obj - 0001:00096f68 ?AddRef@CMemoryStream@@UAGKXZ 00497f68 f audiod:stream.obj - 0001:00096f86 ?Release@CMemoryStream@@UAGKXZ 00497f86 f audiod:stream.obj - 0001:00096fdc ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 00497fdc f audiod:stream.obj - 0001:0009707a ?Read@CMemoryStream@@UAGJPAXKPAK@Z 0049807a f audiod:stream.obj - 0001:00097119 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00498119 f audiod:stream.obj - 0001:000971b6 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 004981b6 f audiod:stream.obj - 0001:00097217 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 00498217 f audiod:stream.obj - 0001:000972b6 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 004982b6 f audiod:stream.obj - 0001:000972cd ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 004982cd f audiod:stream.obj - 0001:000972e4 ?Commit@CMemoryStream@@UAGJK@Z 004982e4 f audiod:stream.obj - 0001:000972fb ?Revert@CMemoryStream@@UAGJXZ 004982fb f audiod:stream.obj - 0001:00097312 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00498312 f audiod:stream.obj - 0001:00097329 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00498329 f audiod:stream.obj - 0001:00097340 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 00498340 f audiod:stream.obj - 0001:00097360 ??_GCFileStream@@QAEPAXI@Z 00498360 f audiod:stream.obj - 0001:000973a0 ??_GCMemoryStream@@QAEPAXI@Z 004983a0 f audiod:stream.obj - 0001:000973da _acmFormatSuggest@20 004983da f audiod:MSACM32.dll - 0001:000973e0 _acmStreamSize@16 004983e0 f audiod:MSACM32.dll - 0001:000973e6 _acmStreamPrepareHeader@12 004983e6 f audiod:MSACM32.dll - 0001:000973ec _acmStreamOpen@32 004983ec f audiod:MSACM32.dll - 0001:000973f2 _acmStreamClose@8 004983f2 f audiod:MSACM32.dll - 0001:000973f8 _acmStreamUnprepareHeader@12 004983f8 f audiod:MSACM32.dll - 0001:000973fe _acmStreamConvert@12 004983fe f audiod:MSACM32.dll - 0001:00097410 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 00498410 f audiod:riff.obj - 0001:00097440 ?ReadLongData@CRIFF@@QAEJPAK@Z 00498440 f audiod:riff.obj - 0001:000974a9 ?ReadShortData@CRIFF@@QAEJPAG@Z 004984a9 f audiod:riff.obj - 0001:00097514 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 00498514 f audiod:riff.obj - 0001:00097650 ??0CAMPassThruFilter@@QAE@XZ 00498650 f audiod:sndpass.obj - 0001:0009767a ??1CAMPassThruFilter@@UAE@XZ 0049867a f audiod:sndpass.obj - 0001:000976f7 ?AddRef@CAMPassThruFilter@@UAGKXZ 004986f7 f audiod:sndpass.obj - 0001:00097715 ?Release@CAMPassThruFilter@@UAGKXZ 00498715 f audiod:sndpass.obj - 0001:0009776e ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 0049876e f audiod:sndpass.obj - 0001:00097809 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00498809 f audiod:sndpass.obj - 0001:0009785b ?GetSamples@CAMPassThruFilter@@UAGKXZ 0049885b f audiod:sndpass.obj - 0001:00097898 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 00498898 f audiod:sndpass.obj - 0001:000978ed ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004988ed f audiod:sndpass.obj - 0001:00097963 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 00498963 f audiod:sndpass.obj - 0001:000979a7 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 004989a7 f audiod:sndpass.obj - 0001:00097a70 ??_ECAMPassThruFilter@@UAEPAXI@Z 00498a70 f audiod:sndpass.obj - 0001:00097a70 ??_GCAMPassThruFilter@@UAEPAXI@Z 00498a70 f audiod:sndpass.obj - 0001:00097ab0 _AllocScheduleFilter@8 00498ab0 f audiod:sndsched.obj - 0001:00097b4a ??0CAMScheduleFilter@@QAE@XZ 00498b4a f audiod:sndsched.obj - 0001:00097b89 ??1CAMScheduleFilter@@QAE@XZ 00498b89 f audiod:sndsched.obj - 0001:00097c10 ?AddRef@CAMScheduleFilter@@UAGKXZ 00498c10 f audiod:sndsched.obj - 0001:00097c2e ?Release@CAMScheduleFilter@@UAGKXZ 00498c2e f audiod:sndsched.obj - 0001:00097c84 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 00498c84 f audiod:sndsched.obj - 0001:00097d76 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 00498d76 f audiod:sndsched.obj - 0001:00097d9f ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00498d9f f audiod:sndsched.obj - 0001:00097df1 ?GetSamples@CAMScheduleFilter@@UAGKXZ 00498df1 f audiod:sndsched.obj - 0001:00097e2e ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 00498e2e f audiod:sndsched.obj - 0001:00097e83 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00498e83 f audiod:sndsched.obj - 0001:00097ee0 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 00498ee0 f audiod:sndsched.obj - 0001:00097ef7 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 00498ef7 f audiod:sndsched.obj - 0001:00097f0e ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 00498f0e f audiod:sndsched.obj - 0001:00097f25 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 00498f25 f audiod:sndsched.obj - 0001:00097f3c ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 00498f3c f audiod:sndsched.obj - 0001:00097f53 ?ClearAll@CAMScheduleFilter@@UAGJXZ 00498f53 f audiod:sndsched.obj - 0001:00097f6a ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 00498f6a f audiod:sndsched.obj - 0001:00097f7e ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 00498f7e f audiod:sndsched.obj - 0001:00097f95 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 00498f95 f audiod:sndsched.obj - 0001:00097fac ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 00498fac f audiod:sndsched.obj - 0001:00097fc0 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 00498fc0 f audiod:sndsched.obj - 0001:00097fe0 ??0IAMScheduleFilter@@QAE@XZ 00498fe0 f audiod:sndsched.obj - 0001:00098010 ??_GCAMScheduleFilter@@QAEPAXI@Z 00499010 f audiod:sndsched.obj - 0001:00098050 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 00499050 f audiod:sndsched.obj - 0001:00098060 ?AddRef@CAMScheduleFilter@@W3AGKXZ 00499060 f audiod:sndsched.obj - 0001:00098070 ?Release@CAMScheduleFilter@@W3AGKXZ 00499070 f audiod:sndsched.obj - 0001:00098080 _AllocMixFilter@12 00499080 f audiod:sndmix.obj - 0001:00098134 ??0CAMMixFilter@@QAE@XZ 00499134 f audiod:sndmix.obj - 0001:00098173 ??1CAMMixFilter@@QAE@XZ 00499173 f audiod:sndmix.obj - 0001:00098222 ?AddRef@CAMMixFilter@@UAGKXZ 00499222 f audiod:sndmix.obj - 0001:00098240 ?Release@CAMMixFilter@@UAGKXZ 00499240 f audiod:sndmix.obj - 0001:00098296 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 00499296 f audiod:sndmix.obj - 0001:00098388 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 00499388 f audiod:sndmix.obj - 0001:00098473 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 00499473 f audiod:sndmix.obj - 0001:0009871a ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 0049971a f audiod:sndmix.obj - 0001:0009877b ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 0049977b f audiod:sndmix.obj - 0001:000987b6 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004997b6 f audiod:sndmix.obj - 0001:00098808 ?GetSamples@CAMMixFilter@@UAGKXZ 00499808 f audiod:sndmix.obj - 0001:00098839 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 00499839 f audiod:sndmix.obj - 0001:000988dc ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004998dc f audiod:sndmix.obj - 0001:00098a9d ?SetCacheSize@CAMMixFilter@@UAGJK@Z 00499a9d f audiod:sndmix.obj - 0001:00098ab4 ?SetMode@CAMMixFilter@@UAGJHH@Z 00499ab4 f audiod:sndmix.obj - 0001:00098bb0 ??0IAMMixFilter@@QAE@XZ 00499bb0 f audiod:sndmix.obj - 0001:00098be0 ??_GCAMMixFilter@@QAEPAXI@Z 00499be0 f audiod:sndmix.obj - 0001:00098c20 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 00499c20 f audiod:sndmix.obj - 0001:00098c30 ?AddRef@CAMMixFilter@@W3AGKXZ 00499c30 f audiod:sndmix.obj - 0001:00098c40 ?Release@CAMMixFilter@@W3AGKXZ 00499c40 f audiod:sndmix.obj - 0001:00098c50 _AllocGainFilter@16 00499c50 f audiod:sndgain.obj - 0001:00098cf2 ??0CAMGainFilter@@QAE@XZ 00499cf2 f audiod:sndgain.obj - 0001:00098d65 ??1CAMGainFilter@@QAE@XZ 00499d65 f audiod:sndgain.obj - 0001:00098e21 ?AddRef@CAMGainFilter@@UAGKXZ 00499e21 f audiod:sndgain.obj - 0001:00098e3f ?Release@CAMGainFilter@@UAGKXZ 00499e3f f audiod:sndgain.obj - 0001:00098e95 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 00499e95 f audiod:sndgain.obj - 0001:00098f87 ?EnterFilter@CAMGainFilter@@AAGXXZ 00499f87 f audiod:sndgain.obj - 0001:00098fb1 ?LeaveFilter@CAMGainFilter@@AAGXXZ 00499fb1 f audiod:sndgain.obj - 0001:00098fdb ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 00499fdb f audiod:sndgain.obj - 0001:000990b5 ?SetGain@CAMGainFilter@@UAGJMM@Z 0049a0b5 f audiod:sndgain.obj - 0001:00099120 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0049a120 f audiod:sndgain.obj - 0001:00099187 ?GetSamples@CAMGainFilter@@UAGKXZ 0049a187 f audiod:sndgain.obj - 0001:000991da ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 0049a1da f audiod:sndgain.obj - 0001:00099241 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049a241 f audiod:sndgain.obj - 0001:00099316 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 0049a316 f audiod:sndgain.obj - 0001:00099379 ?SetMode@CAMGainFilter@@UAGJHH@Z 0049a379 f audiod:sndgain.obj - 0001:00099460 ??0IAMGainFilter@@QAE@XZ 0049a460 f audiod:sndgain.obj - 0001:00099490 ??_GMUTX@@QAEPAXI@Z 0049a490 f audiod:sndgain.obj - 0001:000994d0 ??_GCAMGainFilter@@QAEPAXI@Z 0049a4d0 f audiod:sndgain.obj - 0001:00099510 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 0049a510 f audiod:sndgain.obj - 0001:00099520 ?AddRef@CAMGainFilter@@W3AGKXZ 0049a520 f audiod:sndgain.obj - 0001:00099530 ?Release@CAMGainFilter@@W3AGKXZ 0049a530 f audiod:sndgain.obj - 0001:00099540 _AllocDelayFilter@28 0049a540 f audiod:sndecho.obj - 0001:000995ee ??0CAMDelayFilter@@QAE@XZ 0049a5ee f audiod:sndecho.obj - 0001:0009962d ??1CAMDelayFilter@@QAE@XZ 0049a62d f audiod:sndecho.obj - 0001:00099708 ?AddRef@CAMDelayFilter@@UAGKXZ 0049a708 f audiod:sndecho.obj - 0001:00099726 ?Release@CAMDelayFilter@@UAGKXZ 0049a726 f audiod:sndecho.obj - 0001:0009977c ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 0049a77c f audiod:sndecho.obj - 0001:0009986e ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 0049a86e f audiod:sndecho.obj - 0001:00099b97 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0049ab97 f audiod:sndecho.obj - 0001:00099be9 ?GetSamples@CAMDelayFilter@@UAGKXZ 0049abe9 f audiod:sndecho.obj - 0001:00099c1a ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 0049ac1a f audiod:sndecho.obj - 0001:00099cb7 ?MixInNewData@CAMDelayFilter@@QAGJXZ 0049acb7 f audiod:sndecho.obj - 0001:00099fd8 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049afd8 f audiod:sndecho.obj - 0001:0009a3af ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 0049b3af f audiod:sndecho.obj - 0001:0009a3f3 ?SetMode@CAMDelayFilter@@UAGJHH@Z 0049b3f3 f audiod:sndecho.obj - 0001:0009a4c0 ??0IAMDelayFilter@@QAE@XZ 0049b4c0 f audiod:sndecho.obj - 0001:0009a4f0 ??_GCAMDelayFilter@@QAEPAXI@Z 0049b4f0 f audiod:sndecho.obj - 0001:0009a530 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 0049b530 f audiod:sndecho.obj - 0001:0009a540 ?AddRef@CAMDelayFilter@@W3AGKXZ 0049b540 f audiod:sndecho.obj - 0001:0009a550 ?Release@CAMDelayFilter@@W3AGKXZ 0049b550 f audiod:sndecho.obj - 0001:0009a560 _AllocConvertFilter@12 0049b560 f audiod:sndcnvt.obj - 0001:0009a5fe ??0CAMConvertFilter@@QAE@XZ 0049b5fe f audiod:sndcnvt.obj - 0001:0009a63d ??1CAMConvertFilter@@QAE@XZ 0049b63d f audiod:sndcnvt.obj - 0001:0009a6fc ?AddRef@CAMConvertFilter@@UAGKXZ 0049b6fc f audiod:sndcnvt.obj - 0001:0009a71a ?Release@CAMConvertFilter@@UAGKXZ 0049b71a f audiod:sndcnvt.obj - 0001:0009a770 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 0049b770 f audiod:sndcnvt.obj - 0001:0009a862 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 0049b862 f audiod:sndcnvt.obj - 0001:0009a9b0 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0049b9b0 f audiod:sndcnvt.obj - 0001:0009aa29 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 0049ba29 f audiod:sndcnvt.obj - 0001:0009aa8b ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 0049ba8b f audiod:sndcnvt.obj - 0001:0009aaed ?GetSamples@CAMConvertFilter@@UAGKXZ 0049baed f audiod:sndcnvt.obj - 0001:0009ab34 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 0049bb34 f audiod:sndcnvt.obj - 0001:0009abb1 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049bbb1 f audiod:sndcnvt.obj - 0001:0009afee ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 0049bfee f audiod:sndcnvt.obj - 0001:0009b03c ?SetMode@CAMConvertFilter@@UAGJHH@Z 0049c03c f audiod:sndcnvt.obj - 0001:0009b110 ??0IAMConvertFilter@@QAE@XZ 0049c110 f audiod:sndcnvt.obj - 0001:0009b140 ??_GCAMConvertFilter@@QAEPAXI@Z 0049c140 f audiod:sndcnvt.obj - 0001:0009b180 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 0049c180 f audiod:sndcnvt.obj - 0001:0009b190 ?AddRef@CAMConvertFilter@@W3AGKXZ 0049c190 f audiod:sndcnvt.obj - 0001:0009b1a0 ?Release@CAMConvertFilter@@W3AGKXZ 0049c1a0 f audiod:sndcnvt.obj - 0001:0009b1b0 _AllocClipFilter@16 0049c1b0 f audiod:sndclip.obj - 0001:0009b252 ??0CAMClipFilter@@QAE@XZ 0049c252 f audiod:sndclip.obj - 0001:0009b291 ??1CAMClipFilter@@QAE@XZ 0049c291 f audiod:sndclip.obj - 0001:0009b318 ?AddRef@CAMClipFilter@@UAGKXZ 0049c318 f audiod:sndclip.obj - 0001:0009b336 ?Release@CAMClipFilter@@UAGKXZ 0049c336 f audiod:sndclip.obj - 0001:0009b38c ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 0049c38c f audiod:sndclip.obj - 0001:0009b47e ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 0049c47e f audiod:sndclip.obj - 0001:0009b590 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0049c590 f audiod:sndclip.obj - 0001:0009b5e5 ?GetSamples@CAMClipFilter@@UAGKXZ 0049c5e5 f audiod:sndclip.obj - 0001:0009b616 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 0049c616 f audiod:sndclip.obj - 0001:0009b6ac ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 0049c6ac f audiod:sndclip.obj - 0001:0009b71f ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049c71f f audiod:sndclip.obj - 0001:0009b8eb ?SetCacheSize@CAMClipFilter@@UAGJK@Z 0049c8eb f audiod:sndclip.obj - 0001:0009b92f ?SetMode@CAMClipFilter@@UAGJHH@Z 0049c92f f audiod:sndclip.obj - 0001:0009ba00 ??0IAMClipFilter@@QAE@XZ 0049ca00 f audiod:sndclip.obj - 0001:0009ba30 ??_GCAMClipFilter@@QAEPAXI@Z 0049ca30 f audiod:sndclip.obj - 0001:0009ba70 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 0049ca70 f audiod:sndclip.obj - 0001:0009ba80 ?AddRef@CAMClipFilter@@W3AGKXZ 0049ca80 f audiod:sndclip.obj - 0001:0009ba90 ?Release@CAMClipFilter@@W3AGKXZ 0049ca90 f audiod:sndclip.obj - 0001:0009baa0 _AllocAppendFilter@16 0049caa0 f audiod:sndapend.obj - 0001:0009bb58 ??0CAMAppendFilter@@QAE@XZ 0049cb58 f audiod:sndapend.obj - 0001:0009bb97 ??1CAMAppendFilter@@QAE@XZ 0049cb97 f audiod:sndapend.obj - 0001:0009bc3d ?AddRef@CAMAppendFilter@@UAGKXZ 0049cc3d f audiod:sndapend.obj - 0001:0009bc5b ?Release@CAMAppendFilter@@UAGKXZ 0049cc5b f audiod:sndapend.obj - 0001:0009bcb1 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 0049ccb1 f audiod:sndapend.obj - 0001:0009bda3 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 0049cda3 f audiod:sndapend.obj - 0001:0009be1b ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 0049ce1b f audiod:sndapend.obj - 0001:0009c4f5 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0049d4f5 f audiod:sndapend.obj - 0001:0009c54a ?GetSamples@CAMAppendFilter@@UAGKXZ 0049d54a f audiod:sndapend.obj - 0001:0009c57b ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 0049d57b f audiod:sndapend.obj - 0001:0009c5d0 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0049d5d0 f audiod:sndapend.obj - 0001:0009c80e ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 0049d80e f audiod:sndapend.obj - 0001:0009c84e ?SetMode@CAMAppendFilter@@UAGJHH@Z 0049d84e f audiod:sndapend.obj - 0001:0009c940 ??0IAMAppendFilter@@QAE@XZ 0049d940 f audiod:sndapend.obj - 0001:0009c970 ??_GCAMAppendFilter@@QAEPAXI@Z 0049d970 f audiod:sndapend.obj - 0001:0009c9b0 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 0049d9b0 f audiod:sndapend.obj - 0001:0009c9c0 ?AddRef@CAMAppendFilter@@W3AGKXZ 0049d9c0 f audiod:sndapend.obj - 0001:0009c9d0 ?Release@CAMAppendFilter@@W3AGKXZ 0049d9d0 f audiod:sndapend.obj - 0001:0009c9e0 _AllocSilentSound@12 0049d9e0 f audiod:sndmute.obj - 0001:0009ca94 ??0CAMSilentSound@@QAE@XZ 0049da94 f audiod:sndmute.obj - 0001:0009cb05 ??1CAMSilentSound@@QAE@XZ 0049db05 f audiod:sndmute.obj - 0001:0009cb3d ?AddRef@CAMSilentSound@@UAGKXZ 0049db3d f audiod:sndmute.obj - 0001:0009cb5b ?Release@CAMSilentSound@@UAGKXZ 0049db5b f audiod:sndmute.obj - 0001:0009cbb1 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 0049dbb1 f audiod:sndmute.obj - 0001:0009cca3 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 0049dca3 f audiod:sndmute.obj - 0001:0009cd4e ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 0049dd4e f audiod:sndmute.obj - 0001:0009cdc7 ?GetSamples@CAMSilentSound@@UAGKXZ 0049ddc7 f audiod:sndmute.obj - 0001:0009cdf8 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 0049ddf8 f audiod:sndmute.obj - 0001:0009ce62 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 0049de62 f audiod:sndmute.obj - 0001:0009cf48 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 0049df48 f audiod:sndmute.obj - 0001:0009cf5c ?SetMode@CAMSilentSound@@UAGJHH@Z 0049df5c f audiod:sndmute.obj - 0001:0009cfd0 ??0IAMSilentSound@@QAE@XZ 0049dfd0 f audiod:sndmute.obj - 0001:0009d000 ??_GCAMSilentSound@@QAEPAXI@Z 0049e000 f audiod:sndmute.obj - 0001:0009d040 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 0049e040 f audiod:sndmute.obj - 0001:0009d050 ?AddRef@CAMSilentSound@@W3AGKXZ 0049e050 f audiod:sndmute.obj - 0001:0009d060 ?Release@CAMSilentSound@@W3AGKXZ 0049e060 f audiod:sndmute.obj - 0001:0009d070 ??0CAMMixer@@QAE@XZ 0049e070 f audiod:cmixer.obj - 0001:0009d17a ??1CAMMixer@@QAE@XZ 0049e17a f audiod:cmixer.obj - 0001:0009d223 ?AddRef@CAMMixer@@UAGKXZ 0049e223 f audiod:cmixer.obj - 0001:0009d241 ?Release@CAMMixer@@UAGKXZ 0049e241 f audiod:cmixer.obj - 0001:0009d2c9 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 0049e2c9 f audiod:cmixer.obj - 0001:0009d367 ?EnterMixer@CAMMixer@@AAGXXZ 0049e367 f audiod:cmixer.obj - 0001:0009d391 ?LeaveMixer@CAMMixer@@AAGXXZ 0049e391 f audiod:cmixer.obj - 0001:0009d3bb ?EnterPump@CAMMixer@@AAGXXZ 0049e3bb f audiod:cmixer.obj - 0001:0009d3e5 ?LeavePump@CAMMixer@@AAGXXZ 0049e3e5 f audiod:cmixer.obj - 0001:0009d40f ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 0049e40f f audiod:cmixer.obj - 0001:0009d566 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 0049e566 f audiod:cmixer.obj - 0001:0009d6a9 ?Uninit@CAMMixer@@UAGJXZ 0049e6a9 f audiod:cmixer.obj - 0001:0009d721 ?Activate@CAMMixer@@UAGJH@Z 0049e721 f audiod:cmixer.obj - 0001:0009d779 ?Suspend@CAMMixer@@UAGJH@Z 0049e779 f audiod:cmixer.obj - 0001:0009d83a ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 0049e83a f audiod:cmixer.obj - 0001:0009d951 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 0049e951 f audiod:cmixer.obj - 0001:0009da73 ?SetMixerVolume@CAMMixer@@UAGJK@Z 0049ea73 f audiod:cmixer.obj - 0001:0009dae2 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 0049eae2 f audiod:cmixer.obj - 0001:0009db51 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 0049eb51 f audiod:cmixer.obj - 0001:0009dc1f ?RemixMode@CAMMixer@@UAGHH@Z 0049ec1f f audiod:cmixer.obj - 0001:0009dc5b ?GetAvgSample@CAMMixer@@UAGKXZ 0049ec5b f audiod:cmixer.obj - 0001:0009e032 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 0049f032 f audiod:cmixer.obj - 0001:0009e148 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 0049f148 f audiod:cmixer.obj - 0001:0009e194 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 0049f194 f audiod:cmixer.obj - 0001:0009e305 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 0049f305 f audiod:cmixer.obj - 0001:0009e45b ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 0049f45b f audiod:cmixer.obj - 0001:0009e50b ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 0049f50b f audiod:cmixer.obj - 0001:0009e59f ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 0049f59f f audiod:cmixer.obj - 0001:0009e6f5 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 0049f6f5 f audiod:cmixer.obj - 0001:0009e80f ?AllocGroup@CAMMixer@@UAGJPAK@Z 0049f80f f audiod:cmixer.obj - 0001:0009e8c9 ?FreeGroup@CAMMixer@@UAGJK@Z 0049f8c9 f audiod:cmixer.obj - 0001:0009e957 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 0049f957 f audiod:cmixer.obj - 0001:0009ea02 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 0049fa02 f audiod:cmixer.obj - 0001:0009eb10 ?StartGroup@CAMMixer@@UAGJKH@Z 0049fb10 f audiod:cmixer.obj - 0001:0009ebdd ?ResetGroup@CAMMixer@@UAGJK@Z 0049fbdd f audiod:cmixer.obj - 0001:0009eca6 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 0049fca6 f audiod:cmixer.obj - 0001:0009ed73 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 0049fd73 f audiod:cmixer.obj - 0001:0009ee40 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 0049fe40 f audiod:cmixer.obj - 0001:0009ef15 ?GetInitFile@CAMMixer@@AAGPADXZ 0049ff15 f audiod:cmixer.obj - 0001:0009ef2c ?LoadProfile@CAMMixer@@AAGJXZ 0049ff2c f audiod:cmixer.obj - 0001:0009f035 ?SaveProfile@CAMMixer@@AAGJXZ 004a0035 f audiod:cmixer.obj - 0001:0009f1b3 ?DebugSetup@CAMMixer@@AAGJXZ 004a01b3 f audiod:cmixer.obj - 0001:0009f245 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004a0245 f audiod:cmixer.obj - 0001:0009f297 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 004a0297 f audiod:cmixer.obj - 0001:0009f305 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004a0305 f audiod:cmixer.obj - 0001:0009f38f ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 004a038f f audiod:cmixer.obj - 0001:0009f42a ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004a042a f audiod:cmixer.obj - 0001:0009f479 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004a0479 f audiod:cmixer.obj - 0001:0009f68d ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 004a068d f audiod:cmixer.obj - 0001:0009f6e5 ?AllocMixerData@CAMMixer@@AAGJXZ 004a06e5 f audiod:cmixer.obj - 0001:0009f978 ?FreeMixerData@CAMMixer@@AAGJXZ 004a0978 f audiod:cmixer.obj - 0001:0009fa53 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 004a0a53 f audiod:cmixer.obj - 0001:0009fb25 ?FreeOutputDevice@CAMMixer@@AAGJXZ 004a0b25 f audiod:cmixer.obj - 0001:0009fb62 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 004a0b62 f audiod:cmixer.obj - 0001:0009fc64 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 004a0c64 f audiod:cmixer.obj - 0001:0009fcd2 ?ActivateMixer@CAMMixer@@AAGJXZ 004a0cd2 f audiod:cmixer.obj - 0001:0009ff7e ?DeactivateMixer@CAMMixer@@AAGJXZ 004a0f7e f audiod:cmixer.obj - 0001:000a003e ?AllocMixerTimer@CAMMixer@@AAGJXZ 004a103e f audiod:cmixer.obj - 0001:000a0113 ?FreeMixerTimer@CAMMixer@@AAGJXZ 004a1113 f audiod:cmixer.obj - 0001:000a016b ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 004a116b f audiod:cmixer.obj - 0001:000a02aa ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 004a12aa f audiod:cmixer.obj - 0001:000a0326 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 004a1326 f audiod:cmixer.obj - 0001:000a0365 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 004a1365 f audiod:cmixer.obj - 0001:000a0411 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 004a1411 f audiod:cmixer.obj - 0001:000a0474 ?StartMixer@CAMMixer@@AAGXXZ 004a1474 f audiod:cmixer.obj - 0001:000a0609 ?StopMixer@CAMMixer@@AAGXXZ 004a1609 f audiod:cmixer.obj - 0001:000a0699 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 004a1699 f audiod:cmixer.obj - 0001:000a079e ?CalcRemixBuffers@CAMMixer@@AAGKXZ 004a179e f audiod:cmixer.obj - 0001:000a085a ?RemixBuffers@CAMMixer@@AAGXK@Z 004a185a f audiod:cmixer.obj - 0001:000a0997 ?Refresh@CAMMixer@@UAGXXZ 004a1997 f audiod:cmixer.obj - 0001:000a0b6c ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 004a1b6c f audiod:cmixer.obj - 0001:000a0c06 ?Pump@CAMMixer@@AAGXXZ 004a1c06 f audiod:cmixer.obj - 0001:000a0c2e ?MixNextBuffer@CAMMixer@@AAGHXZ 004a1c2e f audiod:cmixer.obj - 0001:000a0e67 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 004a1e67 f audiod:cmixer.obj - 0001:000a0ea0 ??0IAMMixer@@QAE@XZ 004a1ea0 f audiod:cmixer.obj - 0001:000a0ed0 ??_GCAMMixer@@QAEPAXI@Z 004a1ed0 f audiod:cmixer.obj - 0001:000a0f10 ??_GCAMPlaySnd@@QAEPAXI@Z 004a1f10 f audiod:cmixer.obj - 0001:000a0f50 ??_GCAMChannel@@QAEPAXI@Z 004a1f50 f audiod:cmixer.obj - 0001:000a0f90 ??_GCMixerOut@@QAEPAXI@Z 004a1f90 f audiod:cmixer.obj - 0001:000a0fd0 _AllocGateFilter@12 004a1fd0 f audiod:sndgate.obj - 0001:000a106e ?AddRef@CAMGateFilter@@UAGKXZ 004a206e f audiod:sndgate.obj - 0001:000a1089 ?Release@CAMGateFilter@@UAGKXZ 004a2089 f audiod:sndgate.obj - 0001:000a10a4 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 004a20a4 f audiod:sndgate.obj - 0001:000a113e ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 004a213e f audiod:sndgate.obj - 0001:000a1265 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a2265 f audiod:sndgate.obj - 0001:000a1380 _AllocFaderFilter@16 004a2380 f audiod:sndfader.obj - 0001:000a1422 ?AddRef@CAMFaderFilter@@UAGKXZ 004a2422 f audiod:sndfader.obj - 0001:000a143d ?Release@CAMFaderFilter@@UAGKXZ 004a243d f audiod:sndfader.obj - 0001:000a1458 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 004a2458 f audiod:sndfader.obj - 0001:000a14f2 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 004a24f2 f audiod:sndfader.obj - 0001:000a15c4 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a25c4 f audiod:sndfader.obj - 0001:000a1620 _AllocRandomizeFilter@8 004a2620 f audiod:sndrand.obj - 0001:000a16ba ?AddRef@CAMRandomizeFilter@@UAGKXZ 004a26ba f audiod:sndrand.obj - 0001:000a16d5 ?Release@CAMRandomizeFilter@@UAGKXZ 004a26d5 f audiod:sndrand.obj - 0001:000a16f0 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 004a26f0 f audiod:sndrand.obj - 0001:000a178a ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 004a278a f audiod:sndrand.obj - 0001:000a17b3 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 004a27b3 f audiod:sndrand.obj - 0001:000a17ca ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 004a27ca f audiod:sndrand.obj - 0001:000a17e1 ?Clear@CAMRandomizeFilter@@UAGJXZ 004a27e1 f audiod:sndrand.obj - 0001:000a1800 _AllocDistortFilter@12 004a2800 f audiod:snddist.obj - 0001:000a189e ?AddRef@CAMDistortFilter@@UAGKXZ 004a289e f audiod:snddist.obj - 0001:000a18b9 ?Release@CAMDistortFilter@@UAGKXZ 004a28b9 f audiod:snddist.obj - 0001:000a18d4 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 004a28d4 f audiod:snddist.obj - 0001:000a196e ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004a296e f audiod:snddist.obj - 0001:000a1a95 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a2a95 f audiod:snddist.obj - 0001:000a1c00 _AllocStereoFilter@8 004a2c00 f audiod:sndstreo.obj - 0001:000a1c9a ?AddRef@CAMStereoFilter@@UAGKXZ 004a2c9a f audiod:sndstreo.obj - 0001:000a1cb5 ?Release@CAMStereoFilter@@UAGKXZ 004a2cb5 f audiod:sndstreo.obj - 0001:000a1cd0 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 004a2cd0 f audiod:sndstreo.obj - 0001:000a1d6a ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 004a2d6a f audiod:sndstreo.obj - 0001:000a1e61 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a2e61 f audiod:sndstreo.obj - 0001:000a1f40 _AllocTrimFilter@8 004a2f40 f audiod:sndtrim.obj - 0001:000a1fda ?AddRef@CAMTrimFilter@@UAGKXZ 004a2fda f audiod:sndtrim.obj - 0001:000a1ff5 ?Release@CAMTrimFilter@@UAGKXZ 004a2ff5 f audiod:sndtrim.obj - 0001:000a2010 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 004a3010 f audiod:sndtrim.obj - 0001:000a20aa ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 004a30aa f audiod:sndtrim.obj - 0001:000a2167 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 004a3167 f audiod:sndtrim.obj - 0001:000a2450 _AllocBiasFilter@8 004a3450 f audiod:sndbias.obj - 0001:000a24ea ?AddRef@CAMBiasFilter@@UAGKXZ 004a34ea f audiod:sndbias.obj - 0001:000a2505 ?Release@CAMBiasFilter@@UAGKXZ 004a3505 f audiod:sndbias.obj - 0001:000a2520 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 004a3520 f audiod:sndbias.obj - 0001:000a25ba ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 004a35ba f audiod:sndbias.obj - 0001:000a2631 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 004a3631 f audiod:sndbias.obj - 0001:000a28dc ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004a38dc f audiod:sndbias.obj - 0001:000a2a30 ?Interpolate@@YGGMMMGG@Z 004a3a30 f audiod:cmixlib.obj - 0001:000a2a98 ?DecibelToInternalVol@@YGGM@Z 004a3a98 f audiod:cmixlib.obj - 0001:000a2c2b ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 004a3c2b f audiod:cmixlib.obj - 0001:000a2ce8 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 004a3ce8 f audiod:cmixlib.obj - 0001:000a2d46 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 004a3d46 f audiod:cmixlib.obj - 0001:000a2eea ?SixteenPanVol@@YGXKPAE0K0@Z 004a3eea f audiod:cmixlib.obj - 0001:000a2f45 ?SixteenVol@@YGXKPAE0K0@Z 004a3f45 f audiod:cmixlib.obj - 0001:000a2fa0 ?Sixteen@@YGXKPAE0K0@Z 004a3fa0 f audiod:cmixlib.obj - 0001:000a2fd4 ?EightPanVol@@YGXKPAE0K0@Z 004a3fd4 f audiod:cmixlib.obj - 0001:000a302f ?EightVol@@YGXKPAE0K0@Z 004a402f f audiod:cmixlib.obj - 0001:000a308a ?Eight@@YGXKPAE0K0@Z 004a408a f audiod:cmixlib.obj - 0001:000a30be ?Muted@@YGXKPAE0K0@Z 004a40be f audiod:cmixlib.obj - 0001:000a30df ?slowMixSixteen@@YGXPAF0KPAE@Z 004a40df f audiod:cmixlib.obj - 0001:000a3193 ?slowMixEight@@YGXPAE0K0@Z 004a4193 f audiod:cmixlib.obj - 0001:000a3237 ?MixEight@@YGXPAE0K0@Z 004a4237 f audiod:cmixlib.obj - 0001:000a3698 ?MixSixteen@@YGXPAF0KPAE@Z 004a4698 f audiod:cmixlib.obj - 0001:000a3b4d ?VolAdjustSixteen@@YGXKPAE0K0@Z 004a4b4d f audiod:cmixlib.obj - 0001:000a4911 ?VolAdjustEight@@YGXKPAE0K0@Z 004a5911 f audiod:cmixlib.obj - 0001:000a57bd ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 004a67bd f audiod:cmixlib.obj - 0001:000a6624 ?PanVolAdjustEight@@YGXKPAE0K0@Z 004a7624 f audiod:cmixlib.obj - 0001:000a75b0 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 004a85b0 f audiod:convert.obj - 0001:000a7ca7 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 004a8ca7 f audiod:convert.obj - 0001:000a7ce3 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 004a8ce3 f audiod:convert.obj - 0001:000a7d79 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 004a8d79 f audiod:convert.obj - 0001:000a7e0f ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a8e0f f audiod:convert.obj - 0001:000a7f26 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a8f26 f audiod:convert.obj - 0001:000a8081 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9081 f audiod:convert.obj - 0001:000a8237 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9237 f audiod:convert.obj - 0001:000a83ed ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a93ed f audiod:convert.obj - 0001:000a85b9 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a95b9 f audiod:convert.obj - 0001:000a8774 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9774 f audiod:convert.obj - 0001:000a8978 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9978 f audiod:convert.obj - 0001:000a8b30 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9b30 f audiod:convert.obj - 0001:000a8d14 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9d14 f audiod:convert.obj - 0001:000a8ecf ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004a9ecf f audiod:convert.obj - 0001:000a9087 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004aa087 f audiod:convert.obj - 0001:000a928b ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004aa28b f audiod:convert.obj - 0001:000a946f ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004aa46f f audiod:convert.obj - 0001:000a9643 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004aa643 f audiod:convert.obj - 0001:000a982a ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004aa82a f audiod:convert.obj - 0001:000a9a11 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004aaa11 f audiod:convert.obj - 0001:000a9bd0 ?Mono8ToStereo8@@YAGE@Z 004aabd0 f audiod:convert.obj - 0001:000a9bf0 ?Mono8ToMono16@@YAGE@Z 004aabf0 f audiod:convert.obj - 0001:000a9c20 ?Mono16ToStereo16@@YAKG@Z 004aac20 f audiod:convert.obj - 0001:000a9c50 ?Mono16ToMono8@@YAEG@Z 004aac50 f audiod:convert.obj - 0001:000a9c70 ?Stereo8ToMono8@@YAEG@Z 004aac70 f audiod:convert.obj - 0001:000a9ce0 ?Stereo8ToStereo16@@YAKG@Z 004aace0 f audiod:convert.obj - 0001:000a9d30 ?Stereo16ToStereo8@@YAGK@Z 004aad30 f audiod:convert.obj - 0001:000a9d70 ?Stereo16ToMono16@@YAGK@Z 004aad70 f audiod:convert.obj - 0001:000a9e00 ??0CMixerOut@@QAE@XZ 004aae00 f audiod:cmixout.obj - 0001:000a9e70 ??1CMixerOut@@QAE@XZ 004aae70 f audiod:cmixout.obj - 0001:000a9eec ?AddRef@CMixerOut@@UAGKXZ 004aaeec f audiod:cmixout.obj - 0001:000a9f0a ?Release@CMixerOut@@UAGKXZ 004aaf0a f audiod:cmixout.obj - 0001:000a9f60 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 004aaf60 f audiod:cmixout.obj - 0001:000a9ffb ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 004aaffb f audiod:cmixout.obj - 0001:000aa13a ?Suspend@CMixerOut@@QAGJH@Z 004ab13a f audiod:cmixout.obj - 0001:000aa2bd ?SuspendPump@CMixerOut@@QAGXXZ 004ab2bd f audiod:cmixout.obj - 0001:000aa2fa ?GetNumDevs@CMixerOut@@UAGIXZ 004ab2fa f audiod:cmixout.obj - 0001:000aa344 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004ab344 f audiod:cmixout.obj - 0001:000aa3a5 ?Close@CMixerOut@@UAGIXZ 004ab3a5 f audiod:cmixout.obj - 0001:000aa3f2 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004ab3f2 f audiod:cmixout.obj - 0001:000aa44b ?GetVolume@CMixerOut@@UAGIPAK@Z 004ab44b f audiod:cmixout.obj - 0001:000aa49c ?SetVolume@CMixerOut@@UAGIK@Z 004ab49c f audiod:cmixout.obj - 0001:000aa50d ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004ab50d f audiod:cmixout.obj - 0001:000aa562 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004ab562 f audiod:cmixout.obj - 0001:000aa5b7 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004ab5b7 f audiod:cmixout.obj - 0001:000aa60c ?Pause@CMixerOut@@UAGIXZ 004ab60c f audiod:cmixout.obj - 0001:000aa659 ?Restart@CMixerOut@@UAGIXZ 004ab659 f audiod:cmixout.obj - 0001:000aa6a6 ?Reset@CMixerOut@@UAGIXZ 004ab6a6 f audiod:cmixout.obj - 0001:000aa6f3 ?BreakLoop@CMixerOut@@UAGIXZ 004ab6f3 f audiod:cmixout.obj - 0001:000aa740 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 004ab740 f audiod:cmixout.obj - 0001:000aa795 ?GetPitch@CMixerOut@@UAGIPAK@Z 004ab795 f audiod:cmixout.obj - 0001:000aa7e6 ?SetPitch@CMixerOut@@UAGIK@Z 004ab7e6 f audiod:cmixout.obj - 0001:000aa837 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 004ab837 f audiod:cmixout.obj - 0001:000aa888 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 004ab888 f audiod:cmixout.obj - 0001:000aa8d9 ?GetID@CMixerOut@@UAGIPAI@Z 004ab8d9 f audiod:cmixout.obj - 0001:000aa92a ?Message@CMixerOut@@UAGIIKK@Z 004ab92a f audiod:cmixout.obj - 0001:000aa983 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 004ab983 f audiod:cmixout.obj - 0001:000aa9e0 ??0IAMWaveOut@@QAE@XZ 004ab9e0 f audiod:cmixout.obj - 0001:000aaa10 ??_GCRealOut@@QAEPAXI@Z 004aba10 f audiod:cmixout.obj - 0001:000aaa50 ??0CAMPlaySnd@@QAE@XZ 004aba50 f audiod:cplaysnd.obj - 0001:000aaa8e ??1CAMPlaySnd@@QAE@XZ 004aba8e f audiod:cplaysnd.obj - 0001:000aaadb ?AddRef@CAMPlaySnd@@UAGKXZ 004abadb f audiod:cplaysnd.obj - 0001:000aaaf9 ?Release@CAMPlaySnd@@UAGKXZ 004abaf9 f audiod:cplaysnd.obj - 0001:000aab4f ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 004abb4f f audiod:cplaysnd.obj - 0001:000aabea ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 004abbea f audiod:cplaysnd.obj - 0001:000aacea ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004abcea f audiod:cplaysnd.obj - 0001:000aad3a ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 004abd3a f audiod:cplaysnd.obj - 0001:000aad90 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004abd90 f audiod:cplaysnd.obj - 0001:000aadb0 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 004abdb0 f audiod:cplaysnd.obj - 0001:000aadd0 ?AddRef@CAMChannel@@UAGKXZ 004abdd0 f audiod:cchannel.obj - 0001:000aadee ?Release@CAMChannel@@UAGKXZ 004abdee f audiod:cchannel.obj - 0001:000aaed4 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 004abed4 f audiod:cchannel.obj - 0001:000aafab ??0CAMChannel@@QAE@XZ 004abfab f audiod:cchannel.obj - 0001:000ab030 ??1CAMChannel@@QAE@XZ 004ac030 f audiod:cchannel.obj - 0001:000ab132 ?EnterChannel@CAMChannel@@AAGXXZ 004ac132 f audiod:cchannel.obj - 0001:000ab162 ?LeaveChannel@CAMChannel@@AAGXXZ 004ac162 f audiod:cchannel.obj - 0001:000ab192 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 004ac192 f audiod:cchannel.obj - 0001:000ab2ca ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 004ac2ca f audiod:cchannel.obj - 0001:000ab371 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 004ac371 f audiod:cchannel.obj - 0001:000ab524 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 004ac524 f audiod:cchannel.obj - 0001:000ab7bc ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 004ac7bc f audiod:cchannel.obj - 0001:000ab868 ?Play@CAMChannel@@UAGJXZ 004ac868 f audiod:cchannel.obj - 0001:000ab8fe ?Stop@CAMChannel@@UAGJXZ 004ac8fe f audiod:cchannel.obj - 0001:000ab9f6 ?Finish@CAMChannel@@UAGJXZ 004ac9f6 f audiod:cchannel.obj - 0001:000aba4d ?IsPlaying@CAMChannel@@UAGHXZ 004aca4d f audiod:cchannel.obj - 0001:000aba94 ?Samples@CAMChannel@@UAGKXZ 004aca94 f audiod:cchannel.obj - 0001:000abae8 ?SetPosition@CAMChannel@@UAGJK@Z 004acae8 f audiod:cchannel.obj - 0001:000abb8c ?GetPosition@CAMChannel@@UAGJPAK@Z 004acb8c f audiod:cchannel.obj - 0001:000abbfa ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004acbfa f audiod:cchannel.obj - 0001:000abca4 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004acca4 f audiod:cchannel.obj - 0001:000abd53 ?SetTimePos@CAMChannel@@UAGJK@Z 004acd53 f audiod:cchannel.obj - 0001:000abdc3 ?GetTimePos@CAMChannel@@UAGJPAK@Z 004acdc3 f audiod:cchannel.obj - 0001:000abe3f ?Mute@CAMChannel@@UAGJH@Z 004ace3f f audiod:cchannel.obj - 0001:000abeba ?SetVolume@CAMChannel@@UAGJK@Z 004aceba f audiod:cchannel.obj - 0001:000abf40 ?SetChannelVol@CAMChannel@@AAGXGG@Z 004acf40 f audiod:cchannel.obj - 0001:000ac035 ?GetVolume@CAMChannel@@UAGJPAK@Z 004ad035 f audiod:cchannel.obj - 0001:000ac0a0 ?SetGain@CAMChannel@@UAGJMM@Z 004ad0a0 f audiod:cchannel.obj - 0001:000ac11f ?GetGain@CAMChannel@@UAGJPAM0@Z 004ad11f f audiod:cchannel.obj - 0001:000ac19f ?DoRemix@CAMChannel@@AAGXXZ 004ad19f f audiod:cchannel.obj - 0001:000ac1dd ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 004ad1dd f audiod:cchannel.obj - 0001:000ac1fd ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 004ad1fd f audiod:cchannel.obj - 0001:000ac4b1 ?ClearNotify@CAMChannel@@AAGXK@Z 004ad4b1 f audiod:cchannel.obj - 0001:000ac591 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 004ad591 f audiod:cchannel.obj - 0001:000ac8d9 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 004ad8d9 f audiod:cchannel.obj - 0001:000acaa1 ?RevertTo@CAMChannel@@UAGJK@Z 004adaa1 f audiod:cchannel.obj - 0001:000acb17 ?GetActiveState@CAMChannel@@UAGHXZ 004adb17 f audiod:cchannel.obj - 0001:000acb4c ?DoStart@CAMChannel@@UAGJH@Z 004adb4c f audiod:cchannel.obj - 0001:000acc35 ?DoReset@CAMChannel@@UAGJXZ 004adc35 f audiod:cchannel.obj - 0001:000acca6 ?DoPosition@CAMChannel@@UAGJK@Z 004adca6 f audiod:cchannel.obj - 0001:000acd0b ?DoVolume@CAMChannel@@UAGJK@Z 004add0b f audiod:cchannel.obj - 0001:000acd74 ?DoGain@CAMChannel@@UAGJMMH@Z 004add74 f audiod:cchannel.obj - 0001:000ace2e ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 004ade2e f audiod:cchannel.obj - 0001:000ace4b ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 004ade4b f audiod:cchannel.obj - 0001:000ace63 ?SetPriority@CAMChannel@@UAGJK@Z 004ade63 f audiod:cchannel.obj - 0001:000ace80 ?GetPriority@CAMChannel@@UAGKXZ 004ade80 f audiod:cchannel.obj - 0001:000ace98 ?SetGroup@CAMChannel@@UAGJK@Z 004ade98 f audiod:cchannel.obj - 0001:000aceb5 ?GetGroup@CAMChannel@@UAGKXZ 004adeb5 f audiod:cchannel.obj - 0001:000aced0 ??0IAMChannel@@QAE@XZ 004aded0 f audiod:cchannel.obj - 0001:000acf00 ??0IAMMixerChannel@@QAE@XZ 004adf00 f audiod:cchannel.obj - 0001:000acf30 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 004adf30 f audiod:cchannel.obj - 0001:000acf40 ?AddRef@CAMChannel@@W3AGKXZ 004adf40 f audiod:cchannel.obj - 0001:000acf50 ?Release@CAMChannel@@W3AGKXZ 004adf50 f audiod:cchannel.obj - 0001:000acf60 ??0CRealOut@@QAE@XZ 004adf60 f audiod:crealout.obj - 0001:000acfb2 ??1CRealOut@@QAE@XZ 004adfb2 f audiod:crealout.obj - 0001:000ad002 ?AddRef@CRealOut@@UAGKXZ 004ae002 f audiod:crealout.obj - 0001:000ad020 ?Release@CRealOut@@UAGKXZ 004ae020 f audiod:crealout.obj - 0001:000ad076 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 004ae076 f audiod:crealout.obj - 0001:000ad111 ?GetNumDevs@CRealOut@@UAGIXZ 004ae111 f audiod:crealout.obj - 0001:000ad129 ?Init@CRealOut@@QAGJXZ 004ae129 f audiod:crealout.obj - 0001:000ad147 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004ae147 f audiod:crealout.obj - 0001:000ad1b0 ?Close@CRealOut@@UAGIXZ 004ae1b0 f audiod:crealout.obj - 0001:000ad21c ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004ae21c f audiod:crealout.obj - 0001:000ad25c ?GetVolume@CRealOut@@UAGIPAK@Z 004ae25c f audiod:crealout.obj - 0001:000ad2aa ?SetVolume@CRealOut@@UAGIK@Z 004ae2aa f audiod:crealout.obj - 0001:000ad2f8 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ae2f8 f audiod:crealout.obj - 0001:000ad33b ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ae33b f audiod:crealout.obj - 0001:000ad37e ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004ae37e f audiod:crealout.obj - 0001:000ad3c1 ?Pause@CRealOut@@UAGIXZ 004ae3c1 f audiod:crealout.obj - 0001:000ad3fc ?Restart@CRealOut@@UAGIXZ 004ae3fc f audiod:crealout.obj - 0001:000ad437 ?Reset@CRealOut@@UAGIXZ 004ae437 f audiod:crealout.obj - 0001:000ad472 ?BreakLoop@CRealOut@@UAGIXZ 004ae472 f audiod:crealout.obj - 0001:000ad4ad ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 004ae4ad f audiod:crealout.obj - 0001:000ad4f0 ?GetPitch@CRealOut@@UAGIPAK@Z 004ae4f0 f audiod:crealout.obj - 0001:000ad52f ?SetPitch@CRealOut@@UAGIK@Z 004ae52f f audiod:crealout.obj - 0001:000ad56e ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 004ae56e f audiod:crealout.obj - 0001:000ad5ad ?SetPlaybackRate@CRealOut@@UAGIK@Z 004ae5ad f audiod:crealout.obj - 0001:000ad5ec ?GetID@CRealOut@@UAGIPAI@Z 004ae5ec f audiod:crealout.obj - 0001:000ad62b ?Message@CRealOut@@UAGIIKK@Z 004ae62b f audiod:crealout.obj - 0001:000ad672 ?GetErrorText@CRealOut@@UAGIIPADI@Z 004ae672 f audiod:crealout.obj - 0001:000ad6c0 ??0CFakeOut@@QAE@XZ 004ae6c0 f audiod:cfakeout.obj - 0001:000ad743 ??1CFakeOut@@QAE@XZ 004ae743 f audiod:cfakeout.obj - 0001:000ad762 ?AddRef@CFakeOut@@UAGKXZ 004ae762 f audiod:cfakeout.obj - 0001:000ad780 ?Release@CFakeOut@@UAGKXZ 004ae780 f audiod:cfakeout.obj - 0001:000ad7d6 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 004ae7d6 f audiod:cfakeout.obj - 0001:000ad871 ?Init@CFakeOut@@QAGJXZ 004ae871 f audiod:cfakeout.obj - 0001:000ad88f ?GetNumDevs@CFakeOut@@UAGIXZ 004ae88f f audiod:cfakeout.obj - 0001:000ad8a6 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 004ae8a6 f audiod:cfakeout.obj - 0001:000ad95b ?Close@CFakeOut@@UAGIXZ 004ae95b f audiod:cfakeout.obj - 0001:000ad9b9 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004ae9b9 f audiod:cfakeout.obj - 0001:000ada61 ?GetVolume@CFakeOut@@UAGIPAK@Z 004aea61 f audiod:cfakeout.obj - 0001:000adab6 ?SetVolume@CFakeOut@@UAGIK@Z 004aeab6 f audiod:cfakeout.obj - 0001:000adaff ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004aeaff f audiod:cfakeout.obj - 0001:000adb61 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004aeb61 f audiod:cfakeout.obj - 0001:000adbc3 ?StartPlayback@CFakeOut@@AAGXXZ 004aebc3 f audiod:cfakeout.obj - 0001:000adc21 ?SuspendPump@CFakeOut@@QAGXXZ 004aec21 f audiod:cfakeout.obj - 0001:000adca2 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 004aeca2 f audiod:cfakeout.obj - 0001:000addc6 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 004aedc6 f audiod:cfakeout.obj - 0001:000ade2a ?Pause@CFakeOut@@UAGIXZ 004aee2a f audiod:cfakeout.obj - 0001:000ade81 ?Restart@CFakeOut@@UAGIXZ 004aee81 f audiod:cfakeout.obj - 0001:000adee1 ?Reset@CFakeOut@@UAGIXZ 004aeee1 f audiod:cfakeout.obj - 0001:000adf6c ?BreakLoop@CFakeOut@@UAGIXZ 004aef6c f audiod:cfakeout.obj - 0001:000adf83 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 004aef83 f audiod:cfakeout.obj - 0001:000adf9a ?GetPitch@CFakeOut@@UAGIPAK@Z 004aef9a f audiod:cfakeout.obj - 0001:000adfb1 ?SetPitch@CFakeOut@@UAGIK@Z 004aefb1 f audiod:cfakeout.obj - 0001:000adfc8 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 004aefc8 f audiod:cfakeout.obj - 0001:000adfdf ?SetPlaybackRate@CFakeOut@@UAGIK@Z 004aefdf f audiod:cfakeout.obj - 0001:000adff6 ?GetID@CFakeOut@@UAGIPAI@Z 004aeff6 f audiod:cfakeout.obj - 0001:000ae00d ?Message@CFakeOut@@UAGIIKK@Z 004af00d f audiod:cfakeout.obj - 0001:000ae024 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 004af024 f audiod:cfakeout.obj - 0001:000ae040 ??_GCFakeOut@@QAEPAXI@Z 004af040 f audiod:cfakeout.obj - 0001:000ae07c __chkstk 004af07c LIBC:chkstk.obj - 0001:000ae07c __alloca_probe 004af07c LIBC:chkstk.obj - 0001:000ae0a9 __onexit 004af0a9 f LIBC:onexit.obj - 0001:000ae11f _atexit 004af11f f LIBC:onexit.obj - 0001:000ae131 ___onexitinit 004af131 f LIBC:onexit.obj - 0001:000ae167 __purecall 004af167 f LIBC:purevirt.obj - 0001:000ae174 _memcmp 004af174 f LIBC:memcmp.obj - 0001:000ae193 ??2@YAPAXI@Z 004af193 f LIBC:new.obj - 0001:000ae1a2 ??3@YAXPAX@Z 004af1a2 f LIBC:delete.obj - 0001:000ae1af _WinMainCRTStartup 004af1af f LIBC:wincrt0.obj - 0001:000ae315 __amsg_exit 004af315 f LIBC:wincrt0.obj - 0001:000ae348 _memcpy 004af348 f LIBC:memcpy.obj - 0001:000ae498 _memset 004af498 f LIBC:memset.obj - 0001:000ae4dc __global_unwind2 004af4dc f LIBC:exsup.obj - 0001:000ae51e __local_unwind2 004af51e f LIBC:exsup.obj - 0001:000ae578 __abnormal_termination 004af578 f LIBC:exsup.obj - 0001:000ae59b ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 004af59b f LIBC:trnsctrl.obj - 0001:000ae5c1 ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 004af5c1 f LIBC:trnsctrl.obj - 0001:000ae5f6 ?_CallMemberFunction0@@YGXPAX0@Z 004af5f6 f LIBC:trnsctrl.obj - 0001:000ae5fd ?_CallMemberFunction1@@YGXPAX00@Z 004af5fd f LIBC:trnsctrl.obj - 0001:000ae604 ?_CallMemberFunction2@@YGXPAX00H@Z 004af604 f LIBC:trnsctrl.obj - 0001:000ae60b ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 004af60b f LIBC:trnsctrl.obj - 0001:000ae659 ___CxxFrameHandler 004af659 f LIBC:trnsctrl.obj - 0001:000ae690 ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 004af690 f LIBC:trnsctrl.obj - 0001:000ae708 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 004af708 f LIBC:trnsctrl.obj - 0001:000ae83c __ftol 004af83c f LIBC:ftol.obj - 0001:000ae863 __fpmath 004af863 f LIBC:fpinit.obj - 0001:000ae877 __fpclear 004af877 f LIBC:fpinit.obj - 0001:000ae878 __cfltcvt_init 004af878 f LIBC:fpinit.obj - 0001:000ae8b0 _strcat 004af8b0 f LIBC:strcat.obj - 0001:000ae8b4 _strcpy 004af8b4 LIBC:strcat.obj - 0001:000ae941 _fclose 004af941 f LIBC:fclose.obj - 0001:000ae99d _fputs 004af99d f LIBC:fputs.obj - 0001:000ae9ef __fsopen 004af9ef f LIBC:fopen.obj - 0001:000aea12 _fopen 004afa12 f LIBC:fopen.obj - 0001:000aea28 _fdiv_main_routine 004afa28 f LIBC:adj_fdiv.obj - 0001:000aeb3f __adj_fdiv_r 004afb3f f LIBC:adj_fdiv.obj - 0001:000aefde _fdivp_sti_st 004affde f LIBC:adj_fdiv.obj - 0001:000aeff1 _fdivrp_sti_st 004afff1 f LIBC:adj_fdiv.obj - 0001:000af004 __adj_fdiv_m32 004b0004 f LIBC:adj_fdiv.obj - 0001:000af050 __adj_fdiv_m64 004b0050 f LIBC:adj_fdiv.obj - 0001:000af09c __adj_fdiv_m16i 004b009c f LIBC:adj_fdiv.obj - 0001:000af0d0 __adj_fdiv_m32i 004b00d0 f LIBC:adj_fdiv.obj - 0001:000af104 __adj_fdivr_m32 004b0104 f LIBC:adj_fdiv.obj - 0001:000af150 __adj_fdivr_m64 004b0150 f LIBC:adj_fdiv.obj - 0001:000af19c __adj_fdivr_m16i 004b019c f LIBC:adj_fdiv.obj - 0001:000af1d0 __adj_fdivr_m32i 004b01d0 f LIBC:adj_fdiv.obj - 0001:000af204 __safe_fdiv 004b0204 f LIBC:adj_fdiv.obj - 0001:000af219 __safe_fdivr 004b0219 f LIBC:adj_fdiv.obj - 0001:000af22e __fprem_common 004b022e f LIBC:adj_fdiv.obj - 0001:000af434 __adj_fprem 004b0434 f LIBC:adj_fdiv.obj - 0001:000af4e6 __fprem1_common 004b04e6 f LIBC:adj_fdiv.obj - 0001:000af6ec __adj_fprem1 004b06ec f LIBC:adj_fdiv.obj - 0001:000af7a1 __safe_fprem 004b07a1 f LIBC:adj_fdiv.obj - 0001:000af7a7 __safe_fprem1 004b07a7 f LIBC:adj_fdiv.obj - 0001:000af7ad __adj_fpatan 004b07ad f LIBC:adj_fdiv.obj - 0001:000af7b0 __adj_fptan 004b07b0 f LIBC:adj_fdiv.obj - 0001:000af7b3 _abs 004b07b3 f LIBC:abs.obj - 0001:000af7c0 _pow 004b07c0 LIBC:87ctran.obj - 0001:000af7ca _log 004b07ca LIBC:87ctran.obj - 0001:000af7d4 _log10 004b07d4 LIBC:87ctran.obj - 0001:000af7db _exp 004b07db LIBC:87ctran.obj - 0001:000af7e2 __CIpow 004b07e2 LIBC:87ctran.obj - 0001:000af7ec __CIlog 004b07ec LIBC:87ctran.obj - 0001:000af7f6 __CIlog10 004b07f6 LIBC:87ctran.obj - 0001:000af7fd __CIexp 004b07fd LIBC:87ctran.obj - 0001:000af804 __lrotl 004b0804 f LIBC:rotl.obj - 0001:000af815 __rotl 004b0815 f LIBC:rotl.obj - 0001:000af840 _memmove 004b0840 f LIBC:memmove.obj - 0001:000af98e __cinit 004b098e f LIBC:crt0dat.obj - 0001:000af9be _exit 004b09be f LIBC:crt0dat.obj - 0001:000af9cf __exit 004b09cf f LIBC:crt0dat.obj - 0001:000afa7f _realloc 004b0a7f f LIBC:realloc.obj - 0001:000afbd1 __msize 004b0bd1 f LIBC:msize.obj - 0001:000afbe2 _malloc 004b0be2 f LIBC:malloc.obj - 0001:000afbf5 __nh_malloc 004b0bf5 f LIBC:malloc.obj - 0001:000afcb4 __heap_split_block 004b0cb4 f LIBC:malloc.obj - 0001:000afcf9 _free 004b0cf9 f LIBC:free.obj - 0001:000afd61 __XcptFilter 004b0d61 f LIBC:winxfltr.obj - 0001:000afeec __ismbblead 004b0eec f LIBC:ismbbyte.obj - 0001:000aff2f __setenvp 004b0f2f f LIBC:stdenvp.obj - 0001:000afffa __setargv 004b0ffa f LIBC:stdargv.obj - 0001:000b02f8 __setmbcp 004b12f8 f LIBC:mbctype.obj - 0001:000b0486 ___initmbctable 004b1486 f LIBC:mbctype.obj - 0001:000b0491 __ioinit 004b1491 f LIBC:ioinit.obj - 0001:000b057f __heap_init 004b157f f LIBC:heapinit.obj - 0001:000b05fc ___getempty 004b15fc f LIBC:heapinit.obj - 0001:000b062c __except_handler3 004b162c f LIBC:exsup3.obj - 0001:000b06da __seh_longjmp_unwind@4 004b16da f LIBC:exsup3.obj - 0001:000b06f5 __NMSG_WRITE 004b16f5 f LIBC:crt0msg.obj - 0001:000b074d __GET_RTERRMSG 004b174d f LIBC:crt0msg.obj - 0001:000b0782 ___InternalCxxFrameHandler 004b1782 f LIBC:frame.obj - 0001:000b0bf5 ___FrameUnwindToState 004b1bf5 f LIBC:frame.obj - 0001:000b10f4 ?terminate@@YAXXZ 004b20f4 f LIBC:hooks.obj - 0001:000b1166 ?_inconsistency@@YAXXZ 004b2166 f LIBC:hooks.obj - 0001:000b11d8 __setdefaultprecision 004b21d8 f LIBC:fp8.obj - 0001:000b11eb _ms_p5_test_fdiv 004b21eb f LIBC:testfdiv.obj - 0001:000b1231 _ms_p5_mp_test_fdiv 004b2231 f LIBC:testfdiv.obj - 0001:000b1304 __forcdecpt 004b2304 f LIBC:cvt.obj - 0001:000b1369 __cropzeros 004b2369 f LIBC:cvt.obj - 0001:000b13c8 __positive 004b23c8 f LIBC:cvt.obj - 0001:000b13dd __fassign 004b23dd f LIBC:cvt.obj - 0001:000b1420 __cftoe 004b2420 f LIBC:cvt.obj - 0001:000b1573 __cftof 004b2573 f LIBC:cvt.obj - 0001:000b168f __cftog 004b268f f LIBC:cvt.obj - 0001:000b1737 __cfltcvt 004b2737 f LIBC:cvt.obj - 0001:000b17b3 __close 004b27b3 f LIBC:close.obj - 0001:000b1849 __freebuf 004b2849 f LIBC:_freebuf.obj - 0001:000b1881 _fflush 004b2881 f LIBC:fflush.obj - 0001:000b18cd __flush 004b28cd f LIBC:fflush.obj - 0001:000b192f __flushall 004b292f f LIBC:fflush.obj - 0001:000b19a4 ___endstdio 004b29a4 f LIBC:fflush.obj - 0001:000b19b8 __stbuf 004b29b8 f LIBC:_sftbuf.obj - 0001:000b1a39 __ftbuf 004b2a39 f LIBC:_sftbuf.obj - 0001:000b1a7f _fwrite 004b2a7f f LIBC:fwrite.obj - 0001:000b1bd4 __openfile 004b2bd4 f LIBC:_open.obj - 0001:000b1d6f __getstream 004b2d6f f LIBC:stream.obj - 0001:000b1dbd __fFEXP 004b2dbd LIBC:87tran.obj - 0001:000b1e24 __rtinfpopse 004b2e24 LIBC:87tran.obj - 0001:000b1e26 __rtinfnpopse 004b2e26 LIBC:87tran.obj - 0001:000b1e36 __fFLN 004b2e36 LIBC:87tran.obj - 0001:000b1eeb __rtinfpop 004b2eeb LIBC:87tran.obj - 0001:000b1eed __rtinfnpop 004b2eed LIBC:87tran.obj - 0001:000b1f0a __ffexpm1 004b2f0a LIBC:87tran.obj - 0001:000b1fb4 __cintrindisp2 004b2fb4 f LIBC:87cdisp.obj - 0001:000b1ff2 __cintrindisp1 004b2ff2 f LIBC:87cdisp.obj - 0001:000b2028 __ctrandisp2 004b3028 f LIBC:87cdisp.obj - 0001:000b2199 __ctrandisp1 004b3199 f LIBC:87cdisp.obj - 0001:000b21c5 __fload 004b31c5 f LIBC:87cdisp.obj - 0001:000b2201 __heap_abort 004b3201 f LIBC:hpabort.obj - 0001:000b220c __heap_grow 004b320c f LIBC:heapgrow.obj - 0001:000b22f5 __heap_grow_region 004b32f5 f LIBC:heapgrow.obj - 0001:000b23a2 __heap_free_region 004b33a2 f LIBC:heapgrow.obj - 0001:000b23dc __heap_search 004b33dc f LIBC:heapsrch.obj - 0001:000b24dd ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 004b34dd f LIBC:unhandld.obj - 0001:000b2536 ?_ValidateRead@@YAHPBXI@Z 004b3536 f LIBC:validate.obj - 0001:000b2554 ?_ValidateWrite@@YAHPAXI@Z 004b3554 f LIBC:validate.obj - 0001:000b2572 ?_ValidateExecute@@YAHP6GHXZ@Z 004b3572 f LIBC:validate.obj - 0001:000b258c _abort 004b358c f LIBC:abort.obj - 0001:000b25ab __control87 004b35ab f LIBC:ieee87.obj - 0001:000b25e6 __controlfp 004b35e6 f LIBC:ieee87.obj - 0001:000b271d __fptrap 004b371d f LIBC:crt0fp.obj - 0001:000b2728 __isctype 004b3728 f LIBC:isctype.obj - 0001:000b27a3 _tolower 004b37a3 f LIBC:tolower.obj - 0001:000b286f __ZeroTail 004b386f f LIBC:intrncvt.obj - 0001:000b28cf __IncMan 004b38cf f LIBC:intrncvt.obj - 0001:000b2930 __RoundMan 004b3930 f LIBC:intrncvt.obj - 0001:000b29cd __CopyMan 004b39cd f LIBC:intrncvt.obj - 0001:000b29ea __FillZeroMan 004b39ea f LIBC:intrncvt.obj - 0001:000b29f6 __IsZeroMan 004b39f6 f LIBC:intrncvt.obj - 0001:000b2a14 __ShrMan 004b3a14 f LIBC:intrncvt.obj - 0001:000b2abf __ld12cvt 004b3abf f LIBC:intrncvt.obj - 0001:000b2c5b __ld12tod 004b3c5b f LIBC:intrncvt.obj - 0001:000b2c71 __ld12tof 004b3c71 f LIBC:intrncvt.obj - 0001:000b2c87 __atodbl 004b3c87 f LIBC:intrncvt.obj - 0001:000b2cb8 __atoflt 004b3cb8 f LIBC:intrncvt.obj - 0001:000b2ce9 __fptostr 004b3ce9 f LIBC:_fptostr.obj - 0001:000b2d67 __fltout 004b3d67 f LIBC:cfout.obj - 0001:000b2dca ___dtold 004b3dca f LIBC:cfout.obj - 0001:000b2e83 __dosmaperr 004b3e83 f LIBC:dosmap.obj - 0001:000b2eec __alloc_osfhnd 004b3eec f LIBC:osfinfo.obj - 0001:000b2f22 __set_osfhnd 004b3f22 f LIBC:osfinfo.obj - 0001:000b2f8c __free_osfhnd 004b3f8c f LIBC:osfinfo.obj - 0001:000b2ff9 __get_osfhandle 004b3ff9 f LIBC:osfinfo.obj - 0001:000b3031 __commit 004b4031 f LIBC:commit.obj - 0001:000b307e __write 004b407e f LIBC:write.obj - 0001:000b3217 __fcloseall 004b4217 f LIBC:closeall.obj - 0001:000b3248 __isatty 004b4248 f LIBC:isatty.obj - 0001:000b3262 __flsbuf 004b4262 f LIBC:_flsbuf.obj - 0001:000b336e __sopen 004b436e f LIBC:open.obj - 0001:000b36b8 __trandisp1 004b46b8 f LIBC:87disp.obj - 0001:000b371f __trandisp2 004b471f f LIBC:87disp.obj - 0001:000b37ab __rttospopde 004b47ab LIBC:87disp.obj - 0001:000b37b0 __rttospop 004b47b0 LIBC:87disp.obj - 0001:000b37b2 __rtnospop 004b47b2 LIBC:87disp.obj - 0001:000b37b4 __rttosnpop 004b47b4 LIBC:87disp.obj - 0001:000b37b5 __rtnospopde 004b47b5 LIBC:87disp.obj - 0001:000b37bc __rtzeropop 004b47bc LIBC:87disp.obj - 0001:000b37be __rtzeronpop 004b47be LIBC:87disp.obj - 0001:000b37c3 __rtonepop 004b47c3 LIBC:87disp.obj - 0001:000b37c5 __rtonenpop 004b47c5 LIBC:87disp.obj - 0001:000b37ca __tosnan1 004b47ca LIBC:87disp.obj - 0001:000b37f5 __nosnan2 004b47f5 LIBC:87disp.obj - 0001:000b37f7 __tosnan2 004b47f7 LIBC:87disp.obj - 0001:000b381f __nan2 004b481f LIBC:87disp.obj - 0001:000b385e __rtindfpop 004b485e LIBC:87disp.obj - 0001:000b3860 __rtindfnpop 004b4860 LIBC:87disp.obj - 0001:000b3871 __rttosnpopde 004b4871 LIBC:87disp.obj - 0001:000b387b __rtchsifneg 004b487b LIBC:87disp.obj - 0001:000b3882 __powhlp 004b4882 f LIBC:powhlp.obj - 0001:000b3a6f __d_inttype 004b4a6f f LIBC:powhlp.obj - 0001:000b3ac1 __87except 004b4ac1 f LIBC:87except.obj - 0001:000b3bcb __heap_addblock 004b4bcb f LIBC:heapadd.obj - 0001:000b3e82 _raise 004b4e82 f LIBC:winsig.obj - 0001:000b4007 ___crtGetStringTypeA 004b5007 f LIBC:aw_str.obj - 0001:000b417e ___crtLCMapStringA 004b517e f LIBC:aw_map.obj - 0001:000b43dd ___addl 004b53dd f LIBC:mantold.obj - 0001:000b4400 ___add_12 004b5400 f LIBC:mantold.obj - 0001:000b445e ___shl_12 004b545e f LIBC:mantold.obj - 0001:000b449c ___shr_12 004b549c f LIBC:mantold.obj - 0001:000b44cf ___mtold12 004b54cf f LIBC:mantold.obj - 0001:000b45b3 ___strgtold12 004b55b3 f LIBC:strgtold.obj - 0001:000b4bf2 _$I10_OUTPUT 004b5bf2 f LIBC:x10fout.obj - 0001:000b4f28 __lseek 004b5f28 f LIBC:lseek.obj - 0001:000b4f9d __getbuf 004b5f9d f LIBC:_getbuf.obj - 0001:000b4fe8 __chsize 004b5fe8 f LIBC:chsize.obj - 0001:000b511c __read 004b611c f LIBC:read.obj - 0001:000b5316 __set_exp 004b6316 f LIBC:util.obj - 0001:000b534b __decomp 004b634b f LIBC:util.obj - 0001:000b5419 __frnd 004b6419 f LIBC:frnd.obj - 0001:000b542e __raise_exc 004b642e f LIBC:fpexcept.obj - 0001:000b5740 __handle_exc 004b6740 f LIBC:fpexcept.obj - 0001:000b5998 __set_errno 004b6998 f LIBC:fpexcept.obj - 0001:000b59c4 __matherr 004b69c4 f LIBC:matherr.obj - 0001:000b59c7 __statfp 004b69c7 f LIBC:fpctrl.obj - 0001:000b59d8 __clrfp 004b69d8 f LIBC:fpctrl.obj - 0001:000b59ea __ctrlfp 004b69ea f LIBC:fpctrl.obj - 0001:000b5a1a __set_statfp 004b6a1a f LIBC:fpctrl.obj - 0001:000b5a74 __heap_findaddr 004b6a74 f LIBC:findaddr.obj - 0001:000b5ade _calloc 004b6ade f LIBC:calloc.obj - 0001:000b5b18 ___set_invalid_mb_chars 004b6b18 f LIBC:setmbval.obj - 0001:000b5b48 _strncpy 004b6b48 f LIBC:strncpy.obj - 0001:000b5b6c ___ld12mul 004b6b6c f LIBC:tenpow.obj - 0001:000b5dac ___multtenpow12 004b6dac f LIBC:tenpow.obj - 0001:000b5e21 __setmode 004b6e21 f LIBC:setmode.obj - 0001:000b5e9c _RtlUnwind@16 004b6e9c kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 004b7000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 004b7018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 004b7030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 004b7040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 004b7058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 004b7070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004b70c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004b70e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 004b7108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 004b710c base.obj - 0002:00000120 ?_ers@@3VERS@@A 004b7120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 004b7248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 004b7260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 004b7368 utilstr.obj - 0002:00000488 ?_pcflFirst@CFL@@0PAV1@A 004b7488 chunk.obj - 0002:000004b0 ?_pfilFirst@FIL@@1PAV1@A 004b74b0 file.obj - 0002:000004b8 ?_mutxList@FIL@@1VMUTX@@A 004b74b8 file.obj - 0002:000004e0 ?_fniTemp@@3VFNI@@A 004b74e0 fniwin.obj - 0002:0000062c ?vpappb@@3PAVAPPB@@A 004b762c appb.obj - 0002:00000630 ?vpsndm@@3PAVSNDM@@A 004b7630 appb.obj - 0002:00000648 ?vpcex@@3PAVCEX@@A 004b7648 appb.obj - 0002:00000670 ?_pclokFirst@CLOK@@1PAV1@A 004b7670 clok.obj - 0002:000006b4 ?_hidLast@CMH@@0JA 004b76b4 cmd.obj - 0002:0000073c ?vcactRealize@@3JA 004b773c gfx.obj - 0002:00000750 ?vntl@@3VNTL@@A 004b7750 gfx.obj - 0002:00000790 ?_gridLast@GOB@@1JA 004b7790 gob.obj - 0002:00000898 ?vwig@@3UWIG@@A 004b7898 appbwin.obj - 0002:000008c8 ?_mutxAssert@@3VMUTX@@A 004b78c8 appbwin.obj - 0002:000008f0 ?_rgpstn@@3QAPAVSTN@@A 004b78f0 appbwin.obj - 0002:00000914 ?_fFlushGdi@GPT@@0HA 004b7914 gfxwin.obj - 0002:00000950 ?_pgobScreen@GOB@@0PAV1@A 004b7950 gobwin.obj - 0002:0000098c ?vpmubCur@@3PAVMUB@@A 004b798c menuwin.obj - 0002:00000a50 ?_clip@@3VCLIP@@A 004b7a50 clip.obj - 0002:00000a74 ?vpclip@@3PAVCLIP@@A 004b7a74 clip.obj - 0002:00000acc ?_siiLast@SNDV@@1JA 004b7acc sndm.obj - 0002:00000de0 ?vclok@@3VCLOK@@A 004b7de0 ft.obj - 0002:00000e18 ?vapp@@3VAPP@@A 004b7e18 ft.obj - 0002:00000eb0 ?vrnd@@3VRND@@A 004b7eb0 ft.obj - 0002:00000ec8 ?_rgacr@@3QAVACR@@A 004b7ec8 ft.obj - 0002:000012d0 __bufin 004b82d0 - 0002:000022d0 __heap_descpages 004b92d0 - 0002:000022e0 __heap_regions 004b92e0 - 0002:000025e0 ___onexitend 004b95e0 - 0002:000025e4 ___onexitbegin 004b95e4 - 0002:000025e8 __acmdln 004b95e8 - 0003:00000058 ??_7KCDC@@6B@ 004ba058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 004ba078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 004ba090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004ba0b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004ba0c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 004ba100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 004ba118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 004ba138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 004ba158 utilstr.obj - 0003:00000170 ??_7GRPB@@6B@ 004ba170 groups.obj - 0003:000001a0 ??_7GLB@@6B@ 004ba1a0 groups.obj - 0003:000001d0 ??_7GL@@6B@ 004ba1d0 groups.obj - 0003:00000200 ??_7AL@@6B@ 004ba200 groups.obj - 0003:00000230 ??_7GGB@@6B@ 004ba230 groups.obj - 0003:00000260 ??_7GG@@6B@ 004ba260 groups.obj - 0003:00000290 ??_7AG@@6B@ 004ba290 groups.obj - 0003:000002c0 ??_7GSTB@@6B@ 004ba2c0 groups2.obj - 0003:000002f8 ??_7GST@@6B@ 004ba2f8 groups2.obj - 0003:00000330 ??_7CFL@@6B@ 004ba330 chunk.obj - 0003:00000348 ??_7CGE@@6B@ 004ba348 chunk.obj - 0003:00000360 ??_7CODM@@6B@ 004ba360 codec.obj - 0003:00000390 ??_7BACO@@6B@ 004ba390 crf.obj - 0003:000003c0 ??_7CRF@@6B@ 004ba3c0 crf.obj - 0003:000003f0 ??_7GHQ@@6B@ 004ba3f0 crf.obj - 0003:00000420 ??_7RCA@@6B@ 004ba420 crf.obj - 0003:00000450 ??_7FIL@@6B@ 004ba450 file.obj - 0003:00000468 ??_7BLCK@@6B@ 004ba468 file.obj - 0003:00000480 ??_7FNI@@6B@ 004ba480 fniwin.obj - 0003:00000498 ??_7APPB@@6B@ 004ba498 appb.obj - 0003:000005d0 ??_7CLOK@@6B@ 004ba5d0 clok.obj - 0003:00000600 ??_7CMH@@6B@ 004ba600 cmd.obj - 0003:00000628 ??_7CEX@@6B@ 004ba628 cmd.obj - 0003:000006a8 ??_7CURS@@6B@ 004ba6a8 cursor.obj - 0003:000006d8 ??_7GNV@@6B@ 004ba6d8 gfx.obj - 0003:000006f0 ??_7NTL@@6B@ 004ba6f0 gfx.obj - 0003:00000708 ??_7OGN@@6B@ 004ba708 gfx.obj - 0003:00000738 ??_7GOB@@6B@ 004ba738 gob.obj - 0003:000007c0 ??_7GTE@@6B@ 004ba7c0 gob.obj - 0003:000007d8 ??_7REGSC@@6B@ 004ba7d8 region.obj - 0003:000007f0 ??_7REGN@@6B@ 004ba7f0 region.obj - 0003:00000808 ??_7REGBL@@6B@ 004ba808 region.obj - 0003:00000820 ??_7GPT@@6B@ 004ba820 gfxwin.obj - 0003:00000838 ??_7MUB@@6B@ 004ba838 menuwin.obj - 0003:00000870 ??_7PIC@@6B@ 004ba870 picwin.obj - 0003:000008a0 ??_7DOCB@@6B@ 004ba8a0 docb.obj - 0003:00000930 ??_7DTE@@6B@ 004ba930 docb.obj - 0003:00000948 ??_7DDG@@6B@ 004ba948 docb.obj - 0003:00000a10 ??_7DMD@@6B@ 004baa10 docb.obj - 0003:00000a98 ??_7DMW@@6B@ 004baa98 docb.obj - 0003:00000b20 ??_7DSG@@6B@ 004bab20 docb.obj - 0003:00000bb0 ??_7DSSP@@6B@ 004babb0 docb.obj - 0003:00000c38 ??_7DSSM@@6B@ 004bac38 docb.obj - 0003:00000cc0 ??_7CLIP@@6B@ 004bacc0 clip.obj - 0003:00000cd8 ??_7BSM@@6B@ 004bacd8 stream.obj - 0003:00000cf0 ??_7BSF@@6B@ 004bacf0 stream.obj - 0003:00000d08 ??_7SNDM@@6B@ 004bad08 sndm.obj - 0003:00000d70 ??_7SNDMQ@@6B@ 004bad70 sndm.obj - 0003:00000de0 ??_7SNQUE@@6B@ 004bade0 sndm.obj - 0003:00000e18 ??_7SNDV@@6B@ 004bae18 sndm.obj - 0003:00000e78 ??_7STBL@@6B@ 004bae78 sndam.obj - 0003:00000eb8 ??_7CAMS@@6B@ 004baeb8 sndam.obj - 0003:00000ee8 ??_7AMNOT@@6B@ 004baee8 sndam.obj - 0003:00000f08 ??_7AMQUE@@6B@ 004baf08 sndam.obj - 0003:00000f40 ??_7SDAM@@6B@ 004baf40 sndam.obj - 0003:00000fb0 ??_7IStream@@6B@ 004bafb0 sndam.obj - 0003:00000fe8 ??_7IAMNotifySink@@6B@ 004bafe8 sndam.obj - 0003:00001008 ??_7IUnknown@@6B@ 004bb008 sndam.obj - 0003:00001018 ??_7MIDO@@6B@ 004bb018 mididev.obj - 0003:00001030 ??_7MDPS@@6B@ 004bb030 mididev2.obj - 0003:000010a0 ??_7MDWS@@6B@ 004bb0a0 mididev2.obj - 0003:000010d0 ??_7MSQUE@@6B@ 004bb0d0 mididev2.obj - 0003:00001110 ??_7MSMIX@@6B@ 004bb110 mididev2.obj - 0003:00001128 ??_7MISI@@6B@ 004bb128 mididev2.obj - 0003:00001160 ??_7WMS@@6B@ 004bb160 mididev2.obj - 0003:00001198 ??_7OMS@@6B@ 004bb198 mididev2.obj - 0003:000011d0 ??_7MSTP@@6B@ 004bb1d0 midi.obj - 0003:000011e8 ??_7MIDS@@6B@ 004bb1e8 midi.obj - 0003:00001218 ??_7DLG@@6B@ 004bb218 dlg.obj - 0003:00001248 ??_7CTL@@6B@ 004bb248 ctl.obj - 0003:000012d0 ??_7SCB@@6B@ 004bb2d0 ctl.obj - 0003:00001358 ??_7WSB@@6B@ 004bb358 ctl.obj - 0003:000013e0 ??_7EDCB@@6B@ 004bb3e0 text.obj - 0003:000014b0 ??_7EDPL@@6B@ 004bb4b0 text.obj - 0003:00001588 ??_7EDSL@@6B@ 004bb588 text.obj - 0003:00001660 ??_7EDML@@6B@ 004bb660 text.obj - 0003:00001740 ??_7EDMW@@6B@ 004bb740 text.obj - 0003:00001820 ??_7TXTB@@6B@ 004bb820 rtxt.obj - 0003:00001910 ??_7TXRD@@6B@ 004bb910 rtxt.obj - 0003:00001a20 ??_7RTUN@@6B@ 004bba20 rtxt.obj - 0003:00001a40 ??_7UNDB@@6B@ 004bba40 rtxt.obj - 0003:00001a60 ??_7TXTG@@6B@ 004bba60 rtxt2.obj - 0003:00001b68 ??_7TXRG@@6B@ 004bbb68 rtxt2.obj - 0003:00001c88 ??_7MBMP@@6B@ 004bbc88 mbmp.obj - 0003:00001cb8 ??_7GPRC@@6B@ 004bbcb8 ft.obj - 0003:00001d40 ??_7GFRC@@6B@ 004bbd40 ft.obj - 0003:00001dc8 ??_7TDC@@6B@ 004bbdc8 ft.obj - 0003:00001e50 ??_7DWN@@6B@ 004bbe50 ft.obj - 0003:00001ed8 ??_7TTW@@6B@ 004bbed8 ft.obj - 0003:00001f60 ??_7RTW@@6B@ 004bbf60 ft.obj - 0003:00001fe8 ??_7DOC@@6B@ 004bbfe8 ft.obj - 0003:00002078 ??_7DOCP@@6B@ 004bc078 ft.obj - 0003:00002108 ??_7DDP@@6B@ 004bc108 ft.obj - 0003:000021d0 ??_7DOCPIC@@6B@ 004bc1d0 ft.obj - 0003:00002260 ??_7DDPIC@@6B@ 004bc260 ft.obj - 0003:00002328 ??_7DOCGPT@@6B@ 004bc328 ft.obj - 0003:000023b8 ??_7DDGPT@@6B@ 004bc3b8 ft.obj - 0003:00002480 ??_7TAN@@6B@ 004bc480 ft.obj - 0003:00002508 ??_7TED@@6B@ 004bc508 ft.obj - 0003:00002590 ??_7APP@@6B@ 004bc590 ft.obj - 0003:000026c8 _IID_IUnknown 004bc6c8 uuid:com_i.obj - 0003:000026d8 _IID_IClassFactory 004bc6d8 uuid:com_i.obj - 0003:000026e8 _IID_IMarshal 004bc6e8 uuid:com_i.obj - 0003:000026f8 _IID_IMalloc 004bc6f8 uuid:com_i.obj - 0003:00002708 _IID_IStdMarshalInfo 004bc708 uuid:com_i.obj - 0003:00002718 _IID_IExternalConnection 004bc718 uuid:com_i.obj - 0003:00002728 _IID_IWeakRef 004bc728 uuid:com_i.obj - 0003:00002738 _IID_IEnumUnknown 004bc738 uuid:com_i.obj - 0003:00002748 _IID_IBindCtx 004bc748 uuid:com_i.obj - 0003:00002758 _IID_IParseDisplayName 004bc758 uuid:com_i.obj - 0003:00002768 _IID_IEnumMoniker 004bc768 uuid:com_i.obj - 0003:00002778 _IID_IRunnableObject 004bc778 uuid:com_i.obj - 0003:00002788 _IID_IRunningObjectTable 004bc788 uuid:com_i.obj - 0003:00002798 _IID_IPersist 004bc798 uuid:com_i.obj - 0003:000027a8 _IID_IPersistStream 004bc7a8 uuid:com_i.obj - 0003:000027b8 _IID_IMoniker 004bc7b8 uuid:com_i.obj - 0003:000027c8 _IID_IEnumString 004bc7c8 uuid:com_i.obj - 0003:000027d8 _IID_IStream 004bc7d8 uuid:com_i.obj - 0003:000027e8 _IID_IEnumSTATSTG 004bc7e8 uuid:com_i.obj - 0003:000027f8 _IID_IStorage 004bc7f8 uuid:com_i.obj - 0003:00002808 _IID_IPersistFile 004bc808 uuid:com_i.obj - 0003:00002818 _IID_IPersistStorage 004bc818 uuid:com_i.obj - 0003:00002828 _IID_ILockBytes 004bc828 uuid:com_i.obj - 0003:00002838 _IID_IEnumFORMATETC 004bc838 uuid:com_i.obj - 0003:00002848 _IID_IEnumSTATDATA 004bc848 uuid:com_i.obj - 0003:00002858 _IID_IRootStorage 004bc858 uuid:com_i.obj - 0003:00002868 _IID_IAdviseSink 004bc868 uuid:com_i.obj - 0003:00002878 _IID_IAdviseSink2 004bc878 uuid:com_i.obj - 0003:00002888 _IID_IDataObject 004bc888 uuid:com_i.obj - 0003:00002898 _IID_IDataAdviseHolder 004bc898 uuid:com_i.obj - 0003:000028a8 _IID_IMessageFilter 004bc8a8 uuid:com_i.obj - 0003:000028b8 _IID_IRpcChannelBuffer 004bc8b8 uuid:com_i.obj - 0003:000028c8 _IID_IRpcProxyBuffer 004bc8c8 uuid:com_i.obj - 0003:000028d8 _IID_IRpcStubBuffer 004bc8d8 uuid:com_i.obj - 0003:000028e8 _IID_IPSFactoryBuffer 004bc8e8 uuid:com_i.obj - 0003:000028f8 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 004bc8f8 audiod:sound.obj - 0003:00002910 ??_7CAMWavFileSrc@@6BIAMSound@@@ 004bc910 audiod:sound.obj - 0003:00002960 ??_7IAMSound@@6B@ 004bc960 audiod:sound.obj - 0003:00002988 ??_7IAMWavFileSrc@@6B@ 004bc988 audiod:sound.obj - 0003:000029a8 _CLSID_AMMixer 004bc9a8 audiod:factory.obj - 0003:000029b8 _CLSID_AMWavFileSrc 004bc9b8 audiod:factory.obj - 0003:000029c8 _CLSID_AMSilentSound 004bc9c8 audiod:factory.obj - 0003:000029d8 _CLSID_AMAppendFilter 004bc9d8 audiod:factory.obj - 0003:000029e8 _CLSID_AMClipFilter 004bc9e8 audiod:factory.obj - 0003:000029f8 _CLSID_AMConvertFilter 004bc9f8 audiod:factory.obj - 0003:00002a08 _CLSID_AMDelayFilter 004bca08 audiod:factory.obj - 0003:00002a18 _CLSID_AMGainFilter 004bca18 audiod:factory.obj - 0003:00002a28 _CLSID_AMGateFilter 004bca28 audiod:factory.obj - 0003:00002a38 _CLSID_AMLoopFilter 004bca38 audiod:factory.obj - 0003:00002a48 _CLSID_AMMixFilter 004bca48 audiod:factory.obj - 0003:00002a58 _CLSID_AMFaderFilter 004bca58 audiod:factory.obj - 0003:00002a68 _CLSID_AMScheduleFilter 004bca68 audiod:factory.obj - 0003:00002a78 _CLSID_AMRandomizeFilter 004bca78 audiod:factory.obj - 0003:00002a88 _CLSID_AMDistortFilter 004bca88 audiod:factory.obj - 0003:00002a98 _CLSID_AMCacheFilter 004bca98 audiod:factory.obj - 0003:00002aa8 _CLSID_AMTrimFilter 004bcaa8 audiod:factory.obj - 0003:00002ab8 _CLSID_AMStereoFilter 004bcab8 audiod:factory.obj - 0003:00002ac8 _CLSID_AMBiasFilter 004bcac8 audiod:factory.obj - 0003:00002ad8 _IID_IAMMixer 004bcad8 audiod:factory.obj - 0003:00002ae8 _IID_IAMChannel 004bcae8 audiod:factory.obj - 0003:00002af8 _IID_IAMWaveOut 004bcaf8 audiod:factory.obj - 0003:00002b08 _IID_IAMSound 004bcb08 audiod:factory.obj - 0003:00002b18 _IID_IAMNotifySink 004bcb18 audiod:factory.obj - 0003:00002b28 _IID_IAMWavFileSrc 004bcb28 audiod:factory.obj - 0003:00002b38 _IID_IAMSilentSound 004bcb38 audiod:factory.obj - 0003:00002b48 _IID_IAMAppendFilter 004bcb48 audiod:factory.obj - 0003:00002b58 _IID_IAMClipFilter 004bcb58 audiod:factory.obj - 0003:00002b68 _IID_IAMConvertFilter 004bcb68 audiod:factory.obj - 0003:00002b78 _IID_IAMDelayFilter 004bcb78 audiod:factory.obj - 0003:00002b88 _IID_IAMGainFilter 004bcb88 audiod:factory.obj - 0003:00002b98 _IID_IAMGateFilter 004bcb98 audiod:factory.obj - 0003:00002ba8 _IID_IAMLoopFilter 004bcba8 audiod:factory.obj - 0003:00002bb8 _IID_IAMMixFilter 004bcbb8 audiod:factory.obj - 0003:00002bc8 _IID_IAMFaderFilter 004bcbc8 audiod:factory.obj - 0003:00002bd8 _IID_IAMScheduleFilter 004bcbd8 audiod:factory.obj - 0003:00002be8 _IID_IAMRandomizeFilter 004bcbe8 audiod:factory.obj - 0003:00002bf8 _IID_IAMDistortFilter 004bcbf8 audiod:factory.obj - 0003:00002c08 _IID_IAMCacheFilter 004bcc08 audiod:factory.obj - 0003:00002c18 _IID_IAMTrimFilter 004bcc18 audiod:factory.obj - 0003:00002c28 _IID_IAMStereoFilter 004bcc28 audiod:factory.obj - 0003:00002c38 _IID_IAMBiasFilter 004bcc38 audiod:factory.obj - 0003:00002c48 _IID_IAMMixerChannel 004bcc48 audiod:factory.obj - 0003:00002c58 _IID_IAMRIFFStream 004bcc58 audiod:factory.obj - 0003:00002c68 ??_7CClassFactory@@6B@ 004bcc68 audiod:factory.obj - 0003:00002c80 ??_7IClassFactory@@6B@ 004bcc80 audiod:factory.obj - 0003:00002cc0 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 004bccc0 audiod:factory.obj - 0003:00002cd0 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 004bccd0 audiod:factory.obj - 0003:00002d20 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 004bcd20 audiod:factory.obj - 0003:00002d30 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 004bcd30 audiod:factory.obj - 0003:00002d80 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 004bcd80 audiod:factory.obj - 0003:00002d90 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 004bcd90 audiod:factory.obj - 0003:00002de0 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 004bcde0 audiod:factory.obj - 0003:00002e00 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 004bce00 audiod:factory.obj - 0003:00002e50 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 004bce50 audiod:factory.obj - 0003:00002e60 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 004bce60 audiod:factory.obj - 0003:00002eb0 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 004bceb0 audiod:factory.obj - 0003:00002ec0 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 004bcec0 audiod:factory.obj - 0003:00002f10 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 004bcf10 audiod:factory.obj - 0003:00002f20 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 004bcf20 audiod:factory.obj - 0003:00002f70 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 004bcf70 audiod:factory.obj - 0003:00002f80 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 004bcf80 audiod:factory.obj - 0003:00002fa8 ??_7IAMGateFilter@@6B@ 004bcfa8 audiod:factory.obj - 0003:00002fb8 ??_7IAMLoopFilter@@6B@ 004bcfb8 audiod:factory.obj - 0003:00002fc8 ??_7IAMFaderFilter@@6B@ 004bcfc8 audiod:factory.obj - 0003:00002fd8 ??_7IAMRandomizeFilter@@6B@ 004bcfd8 audiod:factory.obj - 0003:00002ff8 ??_7IAMDistortFilter@@6B@ 004bcff8 audiod:factory.obj - 0003:00003008 ??_7IAMStereoFilter@@6B@ 004bd008 audiod:factory.obj - 0003:00003018 ??_7IAMTrimFilter@@6B@ 004bd018 audiod:factory.obj - 0003:00003028 ??_7IAMBiasFilter@@6B@ 004bd028 audiod:factory.obj - 0003:00003178 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 004bd178 audiod:sndcache.obj - 0003:00003188 ??_7CAMCacheFilter@@6BIAMSound@@@ 004bd188 audiod:sndcache.obj - 0003:000031b0 ??_7IAMCacheFilter@@6B@ 004bd1b0 audiod:sndcache.obj - 0003:000031c0 ??_7CAMRIFFStream@@6B@ 004bd1c0 audiod:riffstrm.obj - 0003:000031d8 ??_7IAMRIFFStream@@6B@ 004bd1d8 audiod:riffstrm.obj - 0003:000031f0 ??_7CFileStream@@6B@ 004bd1f0 audiod:stream.obj - 0003:00003228 ??_7CMemoryStream@@6B@ 004bd228 audiod:stream.obj - 0003:00003260 ??_7CAMPassThruFilter@@6B@ 004bd260 audiod:sndpass.obj - 0003:00003288 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 004bd288 audiod:sndsched.obj - 0003:000032c0 ??_7CAMScheduleFilter@@6BIAMSound@@@ 004bd2c0 audiod:sndsched.obj - 0003:000032e8 ??_7IAMScheduleFilter@@6B@ 004bd2e8 audiod:sndsched.obj - 0003:00003320 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 004bd320 audiod:sndmix.obj - 0003:00003330 ??_7CAMMixFilter@@6BIAMSound@@@ 004bd330 audiod:sndmix.obj - 0003:00003358 ??_7IAMMixFilter@@6B@ 004bd358 audiod:sndmix.obj - 0003:00003368 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 004bd368 audiod:sndgain.obj - 0003:00003380 ??_7CAMGainFilter@@6BIAMSound@@@ 004bd380 audiod:sndgain.obj - 0003:000033a8 ??_7IAMGainFilter@@6B@ 004bd3a8 audiod:sndgain.obj - 0003:000033c0 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 004bd3c0 audiod:sndecho.obj - 0003:000033d0 ??_7CAMDelayFilter@@6BIAMSound@@@ 004bd3d0 audiod:sndecho.obj - 0003:00003400 ??_7IAMDelayFilter@@6B@ 004bd400 audiod:sndecho.obj - 0003:00003410 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 004bd410 audiod:sndcnvt.obj - 0003:00003420 ??_7CAMConvertFilter@@6BIAMSound@@@ 004bd420 audiod:sndcnvt.obj - 0003:00003448 ??_7IAMConvertFilter@@6B@ 004bd448 audiod:sndcnvt.obj - 0003:00003458 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 004bd458 audiod:sndclip.obj - 0003:00003468 ??_7CAMClipFilter@@6BIAMSound@@@ 004bd468 audiod:sndclip.obj - 0003:00003490 ??_7IAMClipFilter@@6B@ 004bd490 audiod:sndclip.obj - 0003:000034a0 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 004bd4a0 audiod:sndapend.obj - 0003:000034b0 ??_7CAMAppendFilter@@6BIAMSound@@@ 004bd4b0 audiod:sndapend.obj - 0003:000034d8 ??_7IAMAppendFilter@@6B@ 004bd4d8 audiod:sndapend.obj - 0003:000034e8 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 004bd4e8 audiod:sndmute.obj - 0003:000034f8 ??_7CAMSilentSound@@6BIAMSound@@@ 004bd4f8 audiod:sndmute.obj - 0003:00003520 ??_7IAMSilentSound@@6B@ 004bd520 audiod:sndmute.obj - 0003:000035a8 ??_7CAMMixer@@6B@ 004bd5a8 audiod:cmixer.obj - 0003:00003620 ??_7IAMMixer@@6B@ 004bd620 audiod:cmixer.obj - 0003:00003718 ??_7CMixerOut@@6B@ 004bd718 audiod:cmixout.obj - 0003:00003778 ??_7IAMWaveOut@@6B@ 004bd778 audiod:cmixout.obj - 0003:000037d8 ??_7CAMPlaySnd@@6B@ 004bd7d8 audiod:cplaysnd.obj - 0003:000037f8 ??_7CAMChannel@@6BIAMMixerChannel@@@ 004bd7f8 audiod:cchannel.obj - 0003:00003848 ??_7CAMChannel@@6BIAMChannel@@@ 004bd848 audiod:cchannel.obj - 0003:000038a8 ??_7IAMChannel@@6B@ 004bd8a8 audiod:cchannel.obj - 0003:00003908 ??_7IAMMixerChannel@@6B@ 004bd908 audiod:cchannel.obj - 0003:00003958 ??_7CRealOut@@6B@ 004bd958 audiod:crealout.obj - 0003:000039d8 ??_7CFakeOut@@6B@ 004bd9d8 audiod:cfakeout.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 004be020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 004be024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 004be064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 004be068 base.obj - 0004:0000006c ?vcactAV@@3JA 004be06c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 004be070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 004be088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004be0a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004be0b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004be0c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004be0e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004be0f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 004be10c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 004be120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 004be13c base.obj - 0004:0000015c ??_C@_0DL@HKA@?6Lost?5object?3?5cls?$DN?8?$CFf?8?0?5size?$DN?$CFd?0@ 004be15c base.obj - 0004:00000198 ??_C@_03GOHA@nil?$AA@ 004be198 base.obj - 0004:0000019c ??_C@_0DE@ELAM@Total?5lost?5objects?3?5?$CFd?4?5Press?5?8D@ 004be19c base.obj - 0004:000001d0 ??_C@_0BH@KF@Raw?5list?5is?5not?5empty?$CB?$AA@ 004be1d0 base.obj - 0004:000001e8 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 004be1e8 base.obj - 0004:000001f8 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 004be1f8 base.obj - 0004:00000208 ??_C@_0O@NAKK@links?5corrupt?$AA@ 004be208 base.obj - 0004:00000238 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004be238 utilcopy.obj - 0004:00000268 ?vpers@@3PAVERS@@A 004be268 utilerro.obj - 0004:0000026c ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004be26c utilerro.obj - 0004:00000294 ??_C@_08GEE@Error?5?$CFd?$AA@ 004be294 utilerro.obj - 0004:000002c0 ??_C@_0BF@FJFO@divide?5by?5zero?5error?$AA@ 004be2c0 utilint.obj - 0004:000002d8 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 004be2d8 utilint.obj - 0004:000002e8 ??_C@_084overflow?$AA@ 004be2e8 utilint.obj - 0004:000002f4 ??_C@_0N@INPL@long?5too?5big?$AA@ 004be2f4 utilint.obj - 0004:00000304 ??_C@_0P@DFPA@long?5too?5small?$AA@ 004be304 utilint.obj - 0004:00000314 ??_C@_09MGFD@wrong?5bom?$AA@ 004be314 utilint.obj - 0004:00000320 ??_C@_0CD@HGAH@cb?5is?5not?5a?5multiple?5of?5size?$CIlon@ 004be320 utilint.obj - 0004:00000344 ??_C@_0BE@OJMN@empty?5map?5rectangle?$AA@ 004be344 utilint.obj - 0004:00000358 ??_C@_0BF@OOKN@this?5can?8t?5be?5prcSrc?$AA@ 004be358 utilint.obj - 0004:00000390 ?vpfnlib@@3P6GJJJ@ZA 004be390 utilmem.obj - 0004:00000394 ?_fInLiberator@@3HA 004be394 utilmem.obj - 0004:00000398 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 004be398 utilmem.obj - 0004:000003bc ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004be3bc utilmem.obj - 0004:000003d4 ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 004be3d4 utilmem.obj - 0004:000003fc ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 004be3fc utilmem.obj - 0004:00000420 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 004be420 utilmem.obj - 0004:00000440 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 004be440 utilmem.obj - 0004:00000454 ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 004be454 utilmem.obj - 0004:00000468 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 004be468 utilmem.obj - 0004:0000047c ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 004be47c utilmem.obj - 0004:00000490 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 004be490 utilmem.obj - 0004:000004a8 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 004be4a8 utilmem.obj - 0004:000004bc ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004be4bc utilmem.obj - 0004:000004cc ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 004be4cc utilmem.obj - 0004:000004e0 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004be4e0 utilmem.obj - 0004:000004fc ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 004be4fc utilmem.obj - 0004:00000510 ??_C@_08ECDH@wrong?5cb?$AA@ 004be510 utilmem.obj - 0004:0000051c ??_C@_06BHIL@nil?5pv?$AA@ 004be51c utilmem.obj - 0004:00000524 ??_C@_0DA@JKM@?6Lost?5block?3?5size?$DN?$CFd?0?5StackTrace@ 004be524 utilmem.obj - 0004:00000578 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 004be578 utilrnd.obj - 0004:00000594 ??_C@_0L@LEMP@_clw?5wrong?$AA@ 004be594 utilrnd.obj - 0004:000005a0 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 004be5a0 utilrnd.obj - 0004:000005b0 ??_C@_0L@DINP@wrong?5_clw?$AA@ 004be5b0 utilrnd.obj - 0004:000006e0 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 004be6e0 utilstr.obj - 0004:00000708 ??_C@_0BH@GGIJ@BLCK?5is?5not?5big?5enough?$AA@ 004be708 utilstr.obj - 0004:00000720 ??_C@_0N@INOL@bad?5STN?5data?$AA@ 004be720 utilstr.obj - 0004:00000730 ??_C@_0BN@MDCJ@bad?5STN?5data?5or?5read?5failure?$AA@ 004be730 utilstr.obj - 0004:00000750 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 004be750 utilstr.obj - 0004:00000778 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 004be778 utilstr.obj - 0004:00000788 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 004be788 utilstr.obj - 0004:0000079c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 004be79c utilstr.obj - 0004:000007b8 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 004be7b8 utilstr.obj - 0004:000007d4 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 004be7d4 utilstr.obj - 0004:000007e0 ??_C@_0BM@CLPI@why?5did?5CompareString?5fail?$DP?$AA@ 004be7e0 utilstr.obj - 0004:000007fc ??_C@_0CE@IKBC@TranslateRgch?5can?8t?5handle?5this?5@ 004be7fc utilstr.obj - 0004:00000820 ??_C@_07NPFI@bad?5osk?$AA@ 004be820 utilstr.obj - 0004:00000828 ??_C@_06KJGB@bad?5st?$AA@ 004be828 utilstr.obj - 0004:00000850 ?vcactSuspendCheckPointers@@3JA 004be850 memwin.obj - 0004:00000854 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 004be854 memwin.obj - 0004:00000868 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 004be868 memwin.obj - 0004:0000087c ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 004be87c memwin.obj - 0004:00000894 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004be894 memwin.obj - 0004:000008a4 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004be8a4 memwin.obj - 0004:000008c8 ??_C@_09BABB@hq?5is?5nil?$AA@ 004be8c8 memwin.obj - 0004:000008d4 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004be8d4 memwin.obj - 0004:00000910 ??_C@_0P@JECG@negative?5sizes?$AA@ 004be910 groups.obj - 0004:00000920 ??_C@_06JFMK@bad?5cb?$AA@ 004be920 groups.obj - 0004:00000928 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 004be928 groups.obj - 0004:00000938 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 004be938 groups.obj - 0004:0000094c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 004be94c groups.obj - 0004:00000960 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 004be960 groups.obj - 0004:0000097c ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 004be97c groups.obj - 0004:00000998 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 004be998 groups.obj - 0004:000009b0 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 004be9b0 groups.obj - 0004:000009d8 ??_C@_08OO@wrong?5bo?$AA@ 004be9d8 groups.obj - 0004:000009e4 ??_C@_06NHBD@bad?5bo?$AA@ 004be9e4 groups.obj - 0004:000009ec ??_C@_0BJ@JBHO@file?5corrupt?5or?5not?5a?5GL?$AA@ 004be9ec groups.obj - 0004:00000a08 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 004bea08 groups.obj - 0004:00000a34 ??_C@_0BJ@LGAF@why?5is?5this?5marked?5free?$DP?$AA@ 004bea34 groups.obj - 0004:00000a50 ??_C@_0BF@EMCD@everything?5is?5free?$CB?$DP?$AA@ 004bea50 groups.obj - 0004:00000a68 ??_C@_0O@HCLM@already?5free?$CB?$AA@ 004bea68 groups.obj - 0004:00000a78 ??_C@_0BB@PNKH@_cvFree?5is?5wrong?$AA@ 004bea78 groups.obj - 0004:00000a8c ??_C@_0BE@MANP@flag?5area?5too?5small?$AA@ 004bea8c groups.obj - 0004:00000aa0 ??_C@_0BK@LDNE@file?5corrupt?5or?5not?5a?5GGB?$AA@ 004beaa0 groups.obj - 0004:00000abc ??_C@_07PIIM@bad?5loc?$AA@ 004beabc groups.obj - 0004:00000ac4 ??_C@_0CE@IDKE@why?5is?5this?5group?5growing?5so?5lar@ 004beac4 groups.obj - 0004:00000ae8 ??_C@_0BP@BPFO@cb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004beae8 groups.obj - 0004:00000b08 ??_C@_0CA@LBFG@dcb?5not?5divisible?5by?5size?$CIlong?$CJ?$AA@ 004beb08 groups.obj - 0004:00000b28 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 004beb28 groups.obj - 0004:00000b38 ??_C@_05HCAE@oops?$CB?$AA@ 004beb38 groups.obj - 0004:00000b40 ??_C@_0BL@JFLC@logic?5error?5caused?5failure?$AA@ 004beb40 groups.obj - 0004:00000b5c ??_C@_05JLFG@what?$DP?$AA@ 004beb5c groups.obj - 0004:00000b64 ??_C@_0DF@OEHB@why?5are?5we?5here?5when?5cb?5is?5a?5mul@ 004beb64 groups.obj - 0004:00000b9c ??_C@_0BJ@NFJJ@why?5did?5FInsertRgb?5fail?$DP?$AA@ 004beb9c groups.obj - 0004:00000bb8 ??_C@_0BH@DBNP@why?5did?5FMoveRgb?5fail?$DP?$AA@ 004bebb8 groups.obj - 0004:00000bd0 ??_C@_0CE@LIP@can?8t?5merge?5an?5element?5with?5itse@ 004bebd0 groups.obj - 0004:00000bf4 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 004bebf4 groups.obj - 0004:00000c04 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 004bec04 groups.obj - 0004:00000c18 ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 004bec18 groups.obj - 0004:00000c30 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 004bec30 groups.obj - 0004:00000c58 ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 004bec58 groups.obj - 0004:00000c6c ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 004bec6c groups.obj - 0004:00000c80 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 004bec80 groups.obj - 0004:00000c94 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 004bec94 groups.obj - 0004:00000cac ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 004becac groups.obj - 0004:00000cc4 ??_C@_0BI@GMJN@why?5is?5pvFixed?5not?5nil?$DP?$AA@ 004becc4 groups.obj - 0004:00000cdc ??_C@_0BM@NBGL@Cant?5insert?5from?5same?5group?$AA@ 004becdc groups.obj - 0004:00000cf8 ??_C@_0CC@DEJH@Groups?5have?5different?5fixed?5size@ 004becf8 groups.obj - 0004:00000d1c ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 004bed1c groups.obj - 0004:00000d30 ??_C@_0BA@BKJJ@_clocFree?5wrong?$AA@ 004bed30 groups.obj - 0004:00000d40 ??_C@_0BE@CBDM@entry?5already?5free?$CB?$AA@ 004bed40 groups.obj - 0004:00000d78 ??_C@_0CD@BJKN@cbExtra?5not?5multiple?5of?5size?$CIlon@ 004bed78 groups2.obj - 0004:00000d9c ??_C@_0M@GFOH@unknown?5osk?$AA@ 004bed9c groups2.obj - 0004:00000da8 ??_C@_0CL@EPJN@why?5is?5this?5string?5table?5growing@ 004beda8 groups2.obj - 0004:00000dd4 ??_C@_0BG@PPCE@string?5entry?5is?5free?$CB?$AA@ 004bedd4 groups2.obj - 0004:00000dec ??_C@_0BC@OIJF@last?5element?5free?$AA@ 004bedec groups2.obj - 0004:00000e00 ??_C@_0O@HJPJ@no?5extra?5data?$AA@ 004bee00 groups2.obj - 0004:00000e10 ??_C@_0BL@KJJP@first?5block?5not?5big?5enough?$AA@ 004bee10 groups2.obj - 0004:00000e2c ??_C@_0BM@DEGE@overlapping?5strings?5in?5GSTB?$AA@ 004bee2c groups2.obj - 0004:00000e48 ??_C@_0BM@GHNE@can?8t?5translate?5to?5this?5osk?$AA@ 004bee48 groups2.obj - 0004:00000e64 ??_C@_07PNIM@bad?5bst?$AA@ 004bee64 groups2.obj - 0004:00000e6c ??_C@_0O@HDCF@bad?5_cbstFree?$AA@ 004bee6c groups2.obj - 0004:00000e7c ??_C@_0BA@HOMP@grst?5wrong?5size?$AA@ 004bee7c groups2.obj - 0004:00000e8c ??_C@_0BD@GPKO@_cbstFree?5is?5wrong?$AA@ 004bee8c groups2.obj - 0004:00000ea0 ??_C@_0BF@BDL@rgbst?5area?5too?5small?$AA@ 004beea0 groups2.obj - 0004:00000eb8 ??_C@_0BE@GGCD@grst?5area?5too?5small?$AA@ 004beeb8 groups2.obj - 0004:00000ecc ??_C@_0N@GMIA@_cbEntry?5bad?$AA@ 004beecc groups2.obj - 0004:00000edc ??_C@_08IBNI@bad?5fcmp?$AA@ 004beedc groups2.obj - 0004:00000ee8 ??_C@_0BA@BCJG@cbExtra?5is?5zero?$AA@ 004beee8 groups2.obj - 0004:00000ef8 ??_C@_0BF@IGAN@bad?5_cbstFree?5in?5GST?$AA@ 004beef8 groups2.obj - 0004:00000f30 ?_rtiLast@CFL@@0JA 004bef30 chunk.obj - 0004:00000f34 ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 004bef34 chunk.obj - 0004:00000f50 ??_C@_0BC@PEHH@sizes?5don?8t?5match?$AA@ 004bef50 chunk.obj - 0004:00000f64 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 004bef64 chunk.obj - 0004:00000f84 ??_C@_0BH@POPI@who?5is?5using?5this?5FNI?$DP?$AA@ 004bef84 chunk.obj - 0004:00000f9c ??_C@_0BA@FMON@chunk?5not?5there?$AA@ 004bef9c chunk.obj - 0004:00000fac ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 004befac chunk.obj - 0004:00000fd0 ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 004befd0 chunk.obj - 0004:00000fe4 ??_C@_08EHFM@Bad?5RTIE?$AA@ 004befe4 chunk.obj - 0004:00000ff0 ??_C@_09HBDJ@bad?5index?$AA@ 004beff0 chunk.obj - 0004:00000ffc ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 004beffc chunk.obj - 0004:0000101c ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 004bf01c chunk.obj - 0004:00001030 ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 004bf030 chunk.obj - 0004:00001040 ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 004bf040 chunk.obj - 0004:00001050 ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 004bf050 chunk.obj - 0004:0000106c ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 004bf06c chunk.obj - 0004:00001088 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 004bf088 chunk.obj - 0004:000010a0 ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 004bf0a0 chunk.obj - 0004:000010c4 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 004bf0c4 chunk.obj - 0004:000010e0 ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 004bf0e0 chunk.obj - 0004:000010f4 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 004bf0f4 chunk.obj - 0004:00001108 ??_C@_06CFJE@bad?5fp?$AA@ 004bf108 chunk.obj - 0004:00001110 ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 004bf110 chunk.obj - 0004:00001124 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 004bf124 chunk.obj - 0004:00001134 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 004bf134 chunk.obj - 0004:00001140 ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 004bf140 chunk.obj - 0004:00001164 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 004bf164 chunk.obj - 0004:0000117c ??_C@_0M@INOI@corrupt?5crp?$AA@ 004bf17c chunk.obj - 0004:00001188 ??_C@_0BO@NHCC@cfl?5has?5wrong?5non?9nil?5entries?$AA@ 004bf188 chunk.obj - 0004:000011a8 ??_C@_0BI@NEEI@free?5map?5already?5exists?$AA@ 004bf1a8 chunk.obj - 0004:000011c0 ??_C@_0BG@IJMK@free?5map?5already?5read?$AA@ 004bf1c0 chunk.obj - 0004:000011d8 ??_C@_0CA@HDLC@what?5happened?$DP?5?9?5file?5messed?5up?$AA@ 004bf1d8 chunk.obj - 0004:000011f8 ??_C@_0BA@ODCM@file?5not?5a?5temp?$AA@ 004bf1f8 chunk.obj - 0004:00001208 ??_C@_0CD@LPPC@why?5hasn?8t?5the?5free?5map?5been?5rea@ 004bf208 chunk.obj - 0004:0000122c ??_C@_0CM@KNEK@can?8t?5save?5a?5CFL?5that?5has?5no?5fil@ 004bf22c chunk.obj - 0004:00001258 ??_C@_0BG@OKOH@free?5map?5not?5read?5yet?$AA@ 004bf258 chunk.obj - 0004:00001270 ??_C@_0BG@EMLE@Requested?5FLO?5too?5big?$AA@ 004bf270 chunk.obj - 0004:00001288 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 004bf288 chunk.obj - 0004:00001298 ??_C@_0DF@OJF@memory?5failure?5in?5CFL?3?3Delete?5?9?5@ 004bf298 chunk.obj - 0004:000012d0 ??_C@_03JFP@MIA?$AA@ 004bf2d0 chunk.obj - 0004:000012d4 ??_C@_0CE@PBNK@can?8t?5directly?5delete?5a?5child?5ch@ 004bf2d4 chunk.obj - 0004:000012f8 ??_C@_0M@OPIM@not?5a?5child?$AA@ 004bf2f8 chunk.obj - 0004:00001304 ??_C@_0BA@HHCI@ref?5count?5wrong?$AA@ 004bf304 chunk.obj - 0004:00001314 ??_C@_07NFMH@overlap?$AA@ 004bf314 chunk.obj - 0004:0000131c ??_C@_0M@PPOC@bad?5ifsmMin?$AA@ 004bf31c chunk.obj - 0004:00001328 ??_C@_0CH@DNPK@freeing?5space?5that?5overlaps?5free@ 004bf328 chunk.obj - 0004:00001350 ??_C@_08ECP@bad?5fsm?$DP?$AA@ 004bf350 chunk.obj - 0004:0000135c ??_C@_0M@KFDO@bad?5?$CIfp?0cb?$CJ?$AA@ 004bf35c chunk.obj - 0004:00001368 ??_C@_0BB@LFLH@parent?5not?5there?$AA@ 004bf368 chunk.obj - 0004:0000137c ??_C@_0CL@NDJN@Performing?5this?5adoption?5may?5cau@ 004bf37c chunk.obj - 0004:000013a8 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 004bf3a8 chunk.obj - 0004:000013b8 ??_C@_07BDGM@bad?5crp?$AA@ 004bf3b8 chunk.obj - 0004:000013c0 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 004bf3c0 chunk.obj - 0004:000013f0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 004bf3f0 codec.obj - 0004:00001410 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 004bf410 codec.obj - 0004:00001428 ??_C@_08DJLA@nil?5cfmt?$AA@ 004bf428 codec.obj - 0004:00001434 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 004bf434 codec.obj - 0004:00001454 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 004bf454 codec.obj - 0004:00001490 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 004bf490 codkauai.obj - 0004:000014b4 ??_C@_07DEPO@bad?5len?$AA@ 004bf4b4 codkauai.obj - 0004:000014bc ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 004bf4bc codkauai.obj - 0004:000014cc ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 004bf4cc codkauai.obj - 0004:000014f0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 004bf4f0 codkauai.obj - 0004:00001504 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 004bf504 codkauai.obj - 0004:00001518 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 004bf518 codkauai.obj - 0004:00001534 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 004bf534 codkauai.obj - 0004:00001564 ??_C@_0P@KAFA@still?5attached?$AA@ 004bf564 crf.obj - 0004:00001574 ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 004bf574 crf.obj - 0004:00001588 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 004bf588 crf.obj - 0004:000015a4 ??_C@_0CB@ILAK@someone?5still?5refers?5to?5this?5CRF@ 004bf5a4 crf.obj - 0004:000015c8 ??_C@_0BD@BILB@BACO?5not?5attached?$CB?$AA@ 004bf5c8 crf.obj - 0004:000015dc ??_C@_0BF@MMHE@how?5did?5this?5happen?$DP?$AA@ 004bf5dc crf.obj - 0004:000015f4 ??_C@_0P@DLJO@crep?5too?5small?$AA@ 004bf5f4 crf.obj - 0004:00001604 ??_C@_0L@BDOO@bad?5pfnrpo?$AA@ 004bf604 crf.obj - 0004:00001610 ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 004bf610 crf.obj - 0004:00001630 ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 004bf630 crf.obj - 0004:0000164c ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 004bf64c crf.obj - 0004:00001668 ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 004bf668 crf.obj - 0004:00001684 ??_C@_0CA@FCHL@baco?5claims?5to?5not?5be?5attached?$CB?$AA@ 004bf684 crf.obj - 0004:000016c4 ?vftgCreator@FIL@@2JA 004bf6c4 file.obj - 0004:000016c8 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 004bf6c8 file.obj - 0004:000016dc ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 004bf6dc file.obj - 0004:000016f0 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 004bf6f0 file.obj - 0004:00001704 ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 004bf704 file.obj - 0004:0000171c ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 004bf71c file.obj - 0004:00001734 ??_C@_0BG@MHHD@writing?5outside?5flo?52?$AA@ 004bf734 file.obj - 0004:0000174c ??_C@_0BO@MEMN@why?5did?5CchTranslateRgb?5fail?$DP?$AA@ 004bf74c file.obj - 0004:0000176c ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 004bf76c file.obj - 0004:00001784 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 004bf784 file.obj - 0004:0000179c ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 004bf79c file.obj - 0004:000017b0 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 004bf7b0 file.obj - 0004:000017c8 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 004bf7c8 file.obj - 0004:000017dc ??_C@_0BH@KHHD@reading?5outside?5blck?52?$AA@ 004bf7dc file.obj - 0004:000017f4 ??_C@_0BH@BMPJ@writing?5outside?5blck?52?$AA@ 004bf7f4 file.obj - 0004:0000180c ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 004bf80c file.obj - 0004:00001820 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 004bf820 file.obj - 0004:00001834 ??_C@_0BD@DBEC@blck?5is?5wrong?5size?$AA@ 004bf834 file.obj - 0004:00001848 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 004bf848 file.obj - 0004:00001864 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 004bf864 file.obj - 0004:0000187c ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 004bf87c file.obj - 0004:00001898 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 004bf898 file.obj - 0004:000018b8 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 004bf8b8 file.obj - 0004:00001900 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 004bf900 filewin.obj - 0004:0000191c ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 004bf91c filewin.obj - 0004:00001938 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 004bf938 filewin.obj - 0004:00001958 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 004bf958 filewin.obj - 0004:00001968 ??_C@_0P@DBGM@rename?5failure?$AA@ 004bf968 filewin.obj - 0004:00001978 ??_C@_0CN@KNII@trying?5to?5change?5directories?5wit@ 004bf978 filewin.obj - 0004:000019a8 ??_C@_0DB@KBAJ@Why?5are?5you?5calling?5FSwapNames?5o@ 004bf9a8 filewin.obj - 0004:000019dc ??_C@_0CK@JPMP@trying?5to?5change?5directories?5wit@ 004bf9dc filewin.obj - 0004:00001a28 ?vftgTemp@@3JA 004bfa28 fniwin.obj - 0004:00001a30 ??_C@_00A@?$AA@ 004bfa30 fniwin.obj - 0004:00001a34 ??_C@_08GBDA@Temp?$CF04x?$AA@ 004bfa34 fniwin.obj - 0004:00001a40 ??_C@_04POLC@?$CFc?3?2?$AA@ 004bfa40 fniwin.obj - 0004:00001a48 ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 004bfa48 fniwin.obj - 0004:00001a60 ??_C@_07JFJJ@Bad?5FTG?$AA@ 004bfa60 fniwin.obj - 0004:00001a68 ??_C@_07NLCI@bad?5fni?$AA@ 004bfa68 fniwin.obj - 0004:00001a70 ??_C@_0N@NEA@file?5is?5open?$AA@ 004bfa70 fniwin.obj - 0004:00001a80 ??_C@_02OOND@?4?4?$AA@ 004bfa80 fniwin.obj - 0004:00001a84 ??_C@_0BC@IKJG@expected?5filename?$AA@ 004bfa84 fniwin.obj - 0004:00001a98 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 004bfa98 fniwin.obj - 0004:00001aa8 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 004bfaa8 fniwin.obj - 0004:00001abc ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 004bfabc fniwin.obj - 0004:00001ad4 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 004bfad4 fniwin.obj - 0004:00001ae4 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 004bfae4 fniwin.obj - 0004:00001af4 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 004bfaf4 fniwin.obj - 0004:00001b28 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 004bfb28 appb.obj - 0004:00001b30 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 004bfb30 appb.obj - 0004:00001b94 ??_C@_07GHND@Generic?$AA@ 004bfb94 appb.obj - 0004:00001b9c ??_C@_0BB@LOCN@cursor?5not?5found?$AA@ 004bfb9c appb.obj - 0004:00001bb0 ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 004bfbb0 appb.obj - 0004:00001bc0 ??_C@_0M@HLIB@Courier?5New?$AA@ 004bfbc0 appb.obj - 0004:00001bcc ??_C@_0CH@KHLM@how?5did?5a?5tooltip?5become?5_pgobMo@ 004bfbcc appb.obj - 0004:00001bf4 ??_C@_0BP@KFNN@unhandled?5cid?5in?5FEnableAppCmd?$AA@ 004bfbf4 appb.obj - 0004:00001c14 ??_C@_0BH@IDIP@nil?5hwnd?5in?5UpdateHwnd?$AA@ 004bfc14 appb.obj - 0004:00001c2c ??_C@_0P@FENM@marking?5failed?$AA@ 004bfc2c appb.obj - 0004:00001c3c ??_C@_08CFEH@bad?5hwnd?$AA@ 004bfc3c appb.obj - 0004:00001c48 ??_C@_0BE@FHLE@unknown?5clip?5format?$AA@ 004bfc48 appb.obj - 0004:00001c5c ??_C@_0BM@LGKN@Unbalanced?5call?5to?5PopModal?$AA@ 004bfc5c appb.obj - 0004:00001c78 ??_C@_0CN@JDDC@Don?8t?5know?5what?5to?5do?5with?5the?5m@ 004bfc78 appb.obj - 0004:00001ca8 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 004bfca8 appb.obj - 0004:00001cd0 ??_C@_0N@DOFL@?$CFs?$CI?$CFd?$CJ?3?5?$CFs?$AN?6?$AA@ 004bfcd0 appb.obj - 0004:00001ce0 ??_C@_08IGFG@_Frame_W?$AA@ 004bfce0 appb.obj - 0004:00001d10 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 004bfd10 clok.obj - 0004:00001d18 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 004bfd18 clok.obj - 0004:00001d28 ??_C@_0BI@KLNP@clok?5not?5in?5linked?5list?$AA@ 004bfd28 clok.obj - 0004:00001d40 ??_C@_0BH@FPKJ@_dtimAlarm?5should?5be?50?$AA@ 004bfd40 clok.obj - 0004:00001d58 ??_C@_0BD@MPJC@_timNext?5too?5small?$AA@ 004bfd58 clok.obj - 0004:00001d90 ?_cmmCMH@CMH@@1UCMM@1@A 004bfd90 cmd.obj - 0004:00001d98 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 004bfd98 cmd.obj - 0004:00001da8 ??_C@_07JCMM@bad?5hid?$AA@ 004bfda8 cmd.obj - 0004:00001db0 ??_C@_0BE@IGJC@why?5is?5the?5cid?5nil?$DP?$AA@ 004bfdb0 cmd.obj - 0004:00001dc4 ??_C@_0BI@EMJO@why?5isn?8t?5_pglcmdf?5nil?$DP?$AA@ 004bfdc4 cmd.obj - 0004:00001ddc ??_C@_0BN@HKO@already?5recording?5or?5playing?$AA@ 004bfddc cmd.obj - 0004:00001dfc ??_C@_0O@FKP@not?5recording?$AA@ 004bfdfc cmd.obj - 0004:00001e0c ??_C@_0BN@CBME@not?5playing?5a?5command?5stream?$AA@ 004bfe0c cmd.obj - 0004:00001e2c ??_C@_0BD@CMOM@why?5is?5grfcmm?5nil?$DP?$AA@ 004bfe2c cmd.obj - 0004:00001e40 ??_C@_0BL@FHGP@event?5queue?5not?5big?5enough?$AA@ 004bfe40 cmd.obj - 0004:00001e5c ??_C@_0BL@DLEE@why?5enqueue?5a?5nil?5command?$DP?$AA@ 004bfe5c cmd.obj - 0004:00001e78 ??_C@_0BN@MBPA@why?5check?5for?5a?5nil?5command?$DP?$AA@ 004bfe78 cmd.obj - 0004:00001e98 ??_C@_0BJ@IDBN@why?5flush?5a?5nil?5command?$DP?$AA@ 004bfe98 cmd.obj - 0004:00001eb4 ??_C@_0CB@BCIM@recursing?5into?5FDispatchNextCmd?$CB@ 004bfeb4 cmd.obj - 0004:00001ed8 ??_C@_0CN@NJMF@some?5other?5gob?5is?5already?5tracki@ 004bfed8 cmd.obj - 0004:00001f48 ?vaptGray@@3UAPT@@A 004bff48 gfx.obj - 0004:00001f50 ?vaptLtGray@@3UAPT@@A 004bff50 gfx.obj - 0004:00001f58 ?vaptDkGray@@3UAPT@@A 004bff58 gfx.obj - 0004:00001f60 ?_mpgfdgrfpt@@3QAKA 004bff60 gfx.obj - 0004:00001f70 ?_mpgfdgrfptInv@@3QAKA 004bff70 gfx.obj - 0004:00001f80 ??_C@_0M@ELAC@invalid?5ACR?$AA@ 004bff80 gfx.obj - 0004:00001f8c ??_C@_0BH@KGNJ@unexpected?5Special?5ACR?$AA@ 004bff8c gfx.obj - 0004:00001fa4 ??_C@_0M@CEND@unknown?5acr?$AA@ 004bffa4 gfx.obj - 0004:00001fb0 ??_C@_0BF@HMLG@unexpected?5Index?5ACR?$AA@ 004bffb0 gfx.obj - 0004:00001fc8 ??_C@_0O@KIA@bad?5Index?5ACR?$AA@ 004bffc8 gfx.obj - 0004:00001fd8 ??_C@_0BD@BMIG@unexpected?5RGB?5ACR?$AA@ 004bffd8 gfx.obj - 0004:00001fec ??_C@_0BD@EIAJ@unexpected?5nil?5ACR?$AA@ 004bffec gfx.obj - 0004:00002000 ??_C@_0BC@JKJL@bad?5_gdd?4prcsClip?$AA@ 004c0000 gfx.obj - 0004:00002014 ??_C@_0BE@JMIN@empty?5dst?5rectangle?$AA@ 004c0014 gfx.obj - 0004:00002028 ??_C@_0BE@GMOL@empty?5src?5rectangle?$AA@ 004c0028 gfx.obj - 0004:0000203c ??_C@_0BA@PPFN@rc?8s?5are?5scaled?$AA@ 004c003c gfx.obj - 0004:0000204c ??_C@_0CO@PIMN@Source?5rectangle?5is?5outside?5the?5@ 004c004c gfx.obj - 0004:0000207c ??_C@_0BN@GNCH@Can?8t?5dissolve?5from?5this?5GPT?$AA@ 004c007c gfx.obj - 0004:0000209c ??_C@_0M@NJP@Invalid?5onn?$AA@ 004c009c gfx.obj - 0004:000020a8 ??_C@_0CH@JIKM@Source?5rectangle?5not?5in?5source?5b@ 004c00a8 gfx.obj - 0004:000020f0 ?_cmmGOB@GOB@@1UCMM@CMH@@A 004c00f0 gob.obj - 0004:000020f8 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 004c00f8 gob.obj - 0004:00002188 ?_ginDefGob@GOB@@1JA 004c0188 gob.obj - 0004:0000218c ??_C@_0BL@LFFA@screen?5gob?5already?5created?$AA@ 004c018c gob.obj - 0004:000021a8 ??_C@_0BB@HLJB@corrupt?5gob?5tree?$AA@ 004c01a8 gob.obj - 0004:000021bc ??_C@_0BH@LDKF@gob?5still?5has?5children?$AA@ 004c01bc gob.obj - 0004:000021d4 ??_C@_0BB@BIPD@corrupt?5GOB?5tree?$AA@ 004c01d4 gob.obj - 0004:000021e8 ??_C@_0BL@KBND@don?8t?5have?5the?5same?5parent?$AA@ 004c01e8 gob.obj - 0004:00002204 ??_C@_0O@LIGN@bad?5gin?5value?$AA@ 004c0204 gob.obj - 0004:00002214 ??_C@_07LNIO@bad?5gin?$AA@ 004c0214 gob.obj - 0004:0000221c ??_C@_0BD@HAPB@no?5port?5to?5draw?5to?$AA@ 004c021c gob.obj - 0004:00002230 ??_C@_07BFMJ@no?5hwnd?$AA@ 004c0230 gob.obj - 0004:00002238 ??_C@_07CILM@bad?5coo?$AA@ 004c0238 gob.obj - 0004:00002240 ??_C@_0O@JPAA@grfcust?5wrong?$AA@ 004c0240 gob.obj - 0004:00002250 ??_C@_0M@FIGF@wrong?5logic?$AA@ 004c0250 gob.obj - 0004:0000225c ??_C@_07PABM@nil?5hid?$AA@ 004c025c gob.obj - 0004:00002264 ??_C@_0BB@LCPC@bad?5pinned?5point?$AA@ 004c0264 gob.obj - 0004:00002278 ??_C@_0BO@NNPC@_hwnd?5based?5gob?5not?5at?5?$CI0?0?50?$CJ?$AA@ 004c0278 gob.obj - 0004:000022d8 ??_C@_0BK@LBAJ@empty?5reference?5rectangle?$AA@ 004c02d8 region.obj - 0004:000022f4 ??_C@_0BI@NJNM@overflowed?5provided?5pgl?$AA@ 004c02f4 region.obj - 0004:0000230c ??_C@_0P@EJHA@already?5filled?$AA@ 004c030c region.obj - 0004:0000231c ??_C@_0BE@KNCN@row?5already?5started?$AA@ 004c031c region.obj - 0004:00002330 ??_C@_0BD@DNOF@overflow?5in?5EndRow?$AA@ 004c0330 region.obj - 0004:00002344 ??_C@_0CA@JIOJ@not?5an?5even?5number?5of?5xp?5values?$AA@ 004c0344 region.obj - 0004:00002364 ??_C@_0BC@OMHD@logic?5error?5above?$AA@ 004c0364 region.obj - 0004:00002378 ??_C@_0N@FJND@bad?5region?56?$AA@ 004c0378 region.obj - 0004:00002388 ??_C@_0N@KGGK@bad?5region?55?$AA@ 004c0388 region.obj - 0004:00002398 ??_C@_0N@MPN@bad?5region?54?$AA@ 004c0398 region.obj - 0004:000023a8 ??_C@_0N@FJBI@bad?5region?53?$AA@ 004c03a8 region.obj - 0004:000023b8 ??_C@_0N@PDIP@bad?5region?52?$AA@ 004c03b8 region.obj - 0004:000023c8 ??_C@_0N@MDG@bad?5region?51?$AA@ 004c03c8 region.obj - 0004:000023d8 ??_C@_0CD@BMHN@why?5is?5_ScanNextCore?5being?5calle@ 004c03d8 region.obj - 0004:000023fc ??_C@_0BC@IADK@overflow?5in?5AddXp?$AA@ 004c03fc region.obj - 0004:00002410 ??_C@_0BM@ODBF@calling?5AddXp?5outside?5a?5row?$AA@ 004c0410 region.obj - 0004:0000242c ??_C@_0L@IENI@bad?5region?$AA@ 004c042c region.obj - 0004:00002438 ??_C@_0M@MCGN@bad?5regions?$AA@ 004c0438 region.obj - 0004:00002444 ??_C@_0CN@CMLG@region?5scanners?5have?5different?5o@ 004c0444 region.obj - 0004:00002474 ??_C@_0BF@MDBC@we?5shouldn?8t?5be?5here?$AA@ 004c0474 region.obj - 0004:0000248c ??_C@_0BB@PCCB@why?5are?5we?5here?$DP?$AA@ 004c048c region.obj - 0004:000024a0 ??_C@_0BE@FHKJ@_dxp?5should?5be?5zero?$AA@ 004c04a0 region.obj - 0004:000024b4 ??_C@_08OJLB@bad?5_dxp?$AA@ 004c04b4 region.obj - 0004:000024dc ??_C@_08BHPE@nil?5hpic?$AA@ 004c04dc pic.obj - 0004:000024e8 ??_C@_08KPJG@bad?5hpic?$AA@ 004c04e8 pic.obj - 0004:00002518 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 004c0518 appbwin.obj - 0004:00002530 ??_C@_03KELD@MDI?$AA@ 004c0530 appbwin.obj - 0004:00002534 ??_C@_03BLAA@APP?$AA@ 004c0534 appbwin.obj - 0004:00002538 ??_C@_0BA@LBBH@Painting?5failed?$AA@ 004c0538 appbwin.obj - 0004:00002548 ??_C@_09HIMI@AssertDlg?$AA@ 004c0548 appbwin.obj - 0004:00002554 ??_C@_0CK@LIEM@Thread?5Assert?$CB?5?$CIY?5?$DN?5Ignore?0?5N?5?$DN?5@ 004c0554 appbwin.obj - 0004:00002580 ??_C@_01BJG@?6?$AA@ 004c0580 appbwin.obj - 0004:00002584 ??_C@_04HJKA@?$CF08x?$AA@ 004c0584 appbwin.obj - 0004:0000258c ??_C@_04JGFO@?$CF04x?$AA@ 004c058c appbwin.obj - 0004:00002594 ??_C@_05NKJJ@?$CF08x?5?$AA@ 004c0594 appbwin.obj - 0004:0000259c ??_C@_0BB@DJOH@Some?5Header?5file?$AA@ 004c059c appbwin.obj - 0004:000025b0 ??_C@_0BI@LAFO@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?3?5?$CFs?$AA@ 004c05b0 appbwin.obj - 0004:000025c8 ??_C@_0BE@PHBM@Assert?5?$CI?$CFs?5line?5?$CFd?$CJ?$AA@ 004c05c8 appbwin.obj - 0004:000025dc ??_C@_0O@JFGJ@bad?5cok?5value?$AA@ 004c05dc appbwin.obj - 0004:000025ec ??_C@_0N@IFFC@bad?5bk?5value?$AA@ 004c05ec appbwin.obj - 0004:00002620 ?_hpal@GPT@@0PAUHPALETTE__@@A 004c0620 gfxwin.obj - 0004:00002624 ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 004c0624 gfxwin.obj - 0004:00002628 ?_cclrPal@GPT@@0JA 004c0628 gfxwin.obj - 0004:0000262c ?_prgclr@GPT@@0PAUCLR@@A 004c062c gfxwin.obj - 0004:00002630 ?_cactPalCur@GPT@@0JA 004c0630 gfxwin.obj - 0004:00002634 ?_cactFlush@GPT@@0JA 004c0634 gfxwin.obj - 0004:00002638 ?_fPalettized@GPT@@0HA 004c0638 gfxwin.obj - 0004:000026b0 ??_C@_0BJ@PBFH@Shrinking?5palette?5failed?$AA@ 004c06b0 gfxwin.obj - 0004:000026cc ??_C@_0BJ@KNCM@shrinking?5palette?5failed?$AA@ 004c06cc gfxwin.obj - 0004:000026e8 ??_C@_0CK@ECAI@Setting?5palette?5before?5vwig?4hdcA@ 004c06e8 gfxwin.obj - 0004:00002714 ??_C@_0O@NFNB@wrong?5CbEntry?$AA@ 004c0714 gfxwin.obj - 0004:00002724 ??_C@_0CG@ELJM@why?5doesn?8t?5the?5window?5have?5a?5pa@ 004c0724 gfxwin.obj - 0004:0000274c ??_C@_08ILPC@Null?5hdc?$AA@ 004c074c gfxwin.obj - 0004:00002758 ??_C@_09BPPC@Null?5hwnd?$AA@ 004c0758 gfxwin.obj - 0004:00002764 ??_C@_0CD@LHJN@GetStockObject?$CISYSTEM_FONT?$CJ?5fail@ 004c0764 gfxwin.obj - 0004:00002788 ??_C@_0CD@IPHD@GetStockObject?$CIWHITE_BRUSH?$CJ?5fail@ 004c0788 gfxwin.obj - 0004:000027ac ??_C@_0CA@BNGH@GetStockObject?$CINULL_PEN?$CJ?5failed?$AA@ 004c07ac gfxwin.obj - 0004:000027cc ??_C@_0BJ@KIOC@pixels?5are?5still?5locked?$CB?$AA@ 004c07cc gfxwin.obj - 0004:000027e8 ??_C@_0BF@ELIM@cannot?5select?5bitmap?$AA@ 004c07e8 gfxwin.obj - 0004:00002800 ??_C@_0BG@JHJN@Failed?5to?5GetDC?$CIhNil?$CJ?$AA@ 004c0800 gfxwin.obj - 0004:00002818 ??_C@_0BE@DPNK@bad?5cbitPixel?5value?$AA@ 004c0818 gfxwin.obj - 0004:0000282c ??_C@_0BO@BHDB@empty?5rectangle?5for?5offscreen?$AA@ 004c082c gfxwin.obj - 0004:0000284c ??_C@_0CE@KGO@Can?8t?5set?5the?5palette?5of?5this?5po@ 004c084c gfxwin.obj - 0004:00002870 ??_C@_0BP@CMGG@why?5is?5_cactDraw?5?$DO?5_cactFlush?$DP?$AA@ 004c0870 gfxwin.obj - 0004:00002890 ??_C@_0BG@LAEK@Unmatched?5unlock?5call?$AA@ 004c0890 gfxwin.obj - 0004:000028a8 ??_C@_0CB@LNEJ@empty?5rectangle?5for?5metafile?5GPT@ 004c08a8 gfxwin.obj - 0004:000028cc ??_C@_0BB@DMDP@_hdc?5already?5nil?$AA@ 004c08cc gfxwin.obj - 0004:000028e0 ??_C@_0BD@CBEI@not?5a?5MetaFile?5GPT?$AA@ 004c08e0 gfxwin.obj - 0004:000028f4 ??_C@_0P@HGNP@use?5solid?5fill?$AA@ 004c08f4 gfxwin.obj - 0004:00002904 ??_C@_0BF@HLFB@wrote?5off?5end?5of?5OLY?$AA@ 004c0904 gfxwin.obj - 0004:0000291c ??_C@_0BK@OJPP@points?5still?5not?5in?5order?$AA@ 004c091c gfxwin.obj - 0004:00002938 ??_C@_0CC@HEMK@fore?5and?5back?5colors?5still?5equal@ 004c0938 gfxwin.obj - 0004:0000295c ??_C@_0CI@FAP@Unsupported?5DrawRgch?$CI?$CJ?5foregroun@ 004c095c gfxwin.obj - 0004:00002984 ??_C@_0BL@JFGJ@bogus?5horizontal?5alignment?$AA@ 004c0984 gfxwin.obj - 0004:000029a0 ??_C@_0BJ@MJCK@bogus?5vertical?5alignment?$AA@ 004c09a0 gfxwin.obj - 0004:000029bc ??_C@_0BE@EMDF@Drawing?5MBMP?5failed?$AA@ 004c09bc gfxwin.obj - 0004:000029d0 ??_C@_0L@PAPO@bad?5_rcOff?$AA@ 004c09d0 gfxwin.obj - 0004:000029dc ??_C@_0BP@GGFE@Internal?5logical?5font?5mismatch?$AA@ 004c09dc gfxwin.obj - 0004:000029fc ??_C@_0BI@DCMG@internal?5brush?5mismatch?$AA@ 004c09fc gfxwin.obj - 0004:00002a14 ??_C@_05OOL@No?5DC?$AA@ 004c0a14 gfxwin.obj - 0004:00002a1c ??_C@_0BG@OFPP@Invalid?5window?5handle?$AA@ 004c0a1c gfxwin.obj - 0004:00002a34 ??_C@_0BH@FOIP@system?5font?5not?5found?$CB?$AA@ 004c0a34 gfxwin.obj - 0004:00002a4c ??_C@_0BH@KAMK@Can?8t?5get?5logical?5font?$AA@ 004c0a4c gfxwin.obj - 0004:00002a64 ??_C@_0BG@JGMN@Can?8t?5get?5system?5font?$AA@ 004c0a64 gfxwin.obj - 0004:00002a7c ??_C@_0BG@FBMG@font?5already?5in?5list?$CB?$AA@ 004c0a7c gfxwin.obj - 0004:00002a94 ??_C@_07EMGO@bad?5onn?$AA@ 004c0a94 gfxwin.obj - 0004:00002ac0 ??_C@_08JNCF@nil?5hwnd?$AA@ 004c0ac0 gobwin.obj - 0004:00002acc ??_C@_09MLCM@MDICLIENT?$AA@ 004c0acc gobwin.obj - 0004:00002ad8 ??_C@_0BJ@HBI@can?8t?5destroy?5app?5window?$AA@ 004c0ad8 gobwin.obj - 0004:00002af4 ??_C@_0BJ@OPBN@GOB?5doesn?8t?5have?5an?5hwnd?$AA@ 004c0af4 gobwin.obj - 0004:00002b30 ??_C@_0BC@EDDP@bad?5client?5window?$AA@ 004c0b30 menuwin.obj - 0004:00002b44 ??_C@_0CO@PDBN@somebody?5took?5some?5menus?5out?5of?5@ 004c0b44 menuwin.obj - 0004:00002b74 ??_C@_0N@BINH@bad?5imniBase?$AA@ 004c0b74 menuwin.obj - 0004:00002b84 ??_C@_09DFOI@bad?5_cmnu?$AA@ 004c0b84 menuwin.obj - 0004:00002bcc ?_cactLast@DOCB@@1JA 004c0bcc docb.obj - 0004:00002bd0 ?_pdocbFirst@DOCB@@1PAV1@A 004c0bd0 docb.obj - 0004:00002bd8 ?_cmmDDG@DDG@@1UCMM@CMH@@A 004c0bd8 docb.obj - 0004:00002be0 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 004c0be0 docb.obj - 0004:00002cb0 ?_cmmDSG@DSG@@1UCMM@CMH@@A 004c0cb0 docb.obj - 0004:00002cb8 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 004c0cb8 docb.obj - 0004:00002ce8 ??_C@_0CE@BPAB@why?5wasn?8t?5this?5child?5doc?5releas@ 004c0ce8 docb.obj - 0004:00002d0c ??_C@_0CI@EBJI@we?8re?5recursing?5into?5the?5DOCB?3?3R@ 004c0d0c docb.obj - 0004:00002d34 ??_C@_0CN@JCIE@why?5are?5there?5still?5DDG?8s?5open?5o@ 004c0d34 docb.obj - 0004:00002d64 ??_C@_0BC@HEOH@corrupt?5docb?5tree?$AA@ 004c0d64 docb.obj - 0004:00002d78 ??_C@_0CG@LHOP@The?5clipboard?5document?5is?5going?5@ 004c0d78 docb.obj - 0004:00002da0 ??_C@_0CJ@OGCN@doc?5is?5still?5being?5displayed?5by?5@ 004c0da0 docb.obj - 0004:00002dcc ??_C@_0BI@KGKL@docb?5still?5has?5children?$AA@ 004c0dcc docb.obj - 0004:00002de4 ??_C@_0BK@DGAM@Release?5not?5called?5first?$CB?$AA@ 004c0de4 docb.obj - 0004:00002e00 ??_C@_0DF@HACK@why?5are?5there?5no?5DDGs?5for?5this?5d@ 004c0e00 docb.obj - 0004:00002e38 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 004c0e38 docb.obj - 0004:00002e48 ??_C@_0BI@KKOJ@pddg?5not?5in?5docb?8s?5list?$AA@ 004c0e48 docb.obj - 0004:00002e60 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 004c0e60 docb.obj - 0004:00002e6c ??_C@_09IDMC@Clipboard?$AA@ 004c0e6c docb.obj - 0004:00002e78 ??_C@_0BP@ELKC@unhandled?5cid?5in?5FEnableDdgCmd?$AA@ 004c0e78 docb.obj - 0004:00002e98 ??_C@_0CF@MEK@we?8re?5recursing?5into?5the?5destruc@ 004c0e98 docb.obj - 0004:00002ec0 ??_C@_0CA@OKAI@the?5DSG?5wasn?8t?5added?5to?5the?5DMW?$AA@ 004c0ec0 docb.obj - 0004:00002ee0 ??_C@_0BF@HMHJ@DSED?5tree?5is?5trashed?$AA@ 004c0ee0 docb.obj - 0004:00002ef8 ??_C@_0BC@CHBK@corrupt?5DSED?5tree?$AA@ 004c0ef8 docb.obj - 0004:00002f0c ??_C@_0O@MJPM@DSED?5tree?5bad?$AA@ 004c0f0c docb.obj - 0004:00002f1c ??_C@_0CC@BIDP@pdsgSplit?5is?5not?5a?5registered?5DS@ 004c0f1c docb.obj - 0004:00002f40 ??_C@_0CA@BLAJ@no?5DSGs?5yet?0?5so?5can?8t?5split?5one?$AA@ 004c0f40 docb.obj - 0004:00002f60 ??_C@_0BG@IHEB@DSED?5root?5value?5wrong?$AA@ 004c0f60 docb.obj - 0004:00002f78 ??_C@_0P@LHMI@bad?5root?5value?$AA@ 004c0f78 docb.obj - 0004:00002f88 ??_C@_0O@KHGM@bad?5DSED?5tree?$AA@ 004c0f88 docb.obj - 0004:00002f98 ??_C@_08HJOC@bad?5node?$AA@ 004c0f98 docb.obj - 0004:00002fa4 ??_C@_0BH@HFEJ@node?5should?5have?5a?5dsg?$AA@ 004c0fa4 docb.obj - 0004:00002fbc ??_C@_0BN@JMDO@nil?5parent?5but?5not?5the?5root?$CB?$AA@ 004c0fbc docb.obj - 0004:00002fdc ??_C@_0BF@EMHD@split?5can?8t?5be?5moved?$AA@ 004c0fdc docb.obj - 0004:00002ff4 ??_C@_0BB@FBIP@node?5count?5wrong?$AA@ 004c0ff4 docb.obj - 0004:00003008 ??_C@_0BC@GHEO@idsedRight?5is?5nil?$AA@ 004c1008 docb.obj - 0004:0000301c ??_C@_08GBPF@bad?5edge?$AA@ 004c101c docb.obj - 0004:00003028 ??_C@_0CD@NKGA@dsed?5tree?5is?5mangled?5or?5has?5a?5lo@ 004c1028 docb.obj - 0004:0000304c ??_C@_0BO@EEIG@right?5child?8s?5parent?5is?5wrong?$AA@ 004c104c docb.obj - 0004:0000306c ??_C@_0BN@JDOP@left?5child?8s?5parent?5is?5wrong?$AA@ 004c106c docb.obj - 0004:0000308c ??_C@_0BC@HGNB@nil?5pdsg?5expected?$AA@ 004c108c docb.obj - 0004:000030a0 ??_C@_0BC@EGIE@free?5right?5child?$CB?$AA@ 004c10a0 docb.obj - 0004:000030b4 ??_C@_0BL@FCAG@non?9nil?5left?5but?5nil?5right?$AA@ 004c10b4 docb.obj - 0004:000030d0 ??_C@_0BB@POPH@free?5left?5child?$CB?$AA@ 004c10d0 docb.obj - 0004:000030e4 ??_C@_0BB@BEEP@bad?5_dsno?5in?5DSG?$AA@ 004c10e4 docb.obj - 0004:000030f8 ??_C@_0BI@HFOK@left?5nil?0?5but?5right?5not?$AA@ 004c10f8 docb.obj - 0004:00003110 ??_C@_0BK@PKFL@dsed?4idsedPar?5isn?8t?5right?$AA@ 004c1110 docb.obj - 0004:0000312c ??_C@_0L@MEPF@free?5node?$CB?$AA@ 004c112c docb.obj - 0004:00003138 ??_C@_0BP@NDI@some?5DSEDs?0?5but?5nil?5_idsedRoot?$AA@ 004c1138 docb.obj - 0004:00003158 ??_C@_0CC@NHIN@no?5paldsed?5but?5_idsedRoot?5not?5ni@ 004c1158 docb.obj - 0004:0000317c ??_C@_0BL@OHLG@must?5split?5an?5existing?5DSG?$AA@ 004c117c docb.obj - 0004:00003198 ??_C@_0CI@PJOP@why?5are?5we?5splitting?5an?5unattach@ 004c1198 docb.obj - 0004:000031c0 ??_C@_0DC@CLKB@must?5specify?5exactly?5one?5of?5?$CIfds@ 004c11c0 docb.obj - 0004:00003214 ??_C@_0DI@KPOC@can?8t?5change?5the?5clipboard?5while@ 004c1214 clip.obj - 0004:0000324c ??_C@_0DI@JOCL@can?8t?5import?5the?5clipboard?5while@ 004c124c clip.obj - 0004:00003284 ??_C@_0BP@ELFF@Already?5exporting?5or?5importing?$AA@ 004c1284 clip.obj - 0004:000032a4 ??_C@_0O@KBJ@not?5exporting?$AA@ 004c12a4 clip.obj - 0004:000032b4 ??_C@_0BO@NMNE@both?5importing?5and?5exporting?$CB?$AA@ 004c12b4 clip.obj - 0004:000032f8 ??_C@_0BA@NDF@blck?5is?5too?5big?$AA@ 004c12f8 stream.obj - 0004:00003308 ??_C@_0BA@LNIE@cleanup?5failed?$CB?$AA@ 004c1308 stream.obj - 0004:00003318 ??_C@_0CC@LBKJ@didn?8t?5insert?5the?5correct?5amount@ 004c1318 stream.obj - 0004:0000333c ??_C@_09PGGB@why?5fail?$DP?$AA@ 004c133c stream.obj - 0004:00003348 ??_C@_0BF@PIIB@this?5shouldn?8t?5fail?$CB?$AA@ 004c1348 stream.obj - 0004:00003360 ??_C@_0L@KKBG@wrong?5ib?52?$AA@ 004c1360 stream.obj - 0004:0000336c ??_C@_08NKDG@wrong?5ib?$AA@ 004c136c stream.obj - 0004:00003378 ??_C@_0BL@BPPJ@why?5wasn?8t?5this?5flo?5split?$DP?$AA@ 004c1378 stream.obj - 0004:00003394 ??_C@_0BF@OEGA@read?5failed?5in?5fetch?$AA@ 004c1394 stream.obj - 0004:000033ac ??_C@_0BJ@GJFH@group?5element?5wrong?5size?$AA@ 004c13ac stream.obj - 0004:000033c8 ??_C@_0BE@NHHM@_IfloFind?5messed?5up?$AA@ 004c13c8 stream.obj - 0004:000033dc ??_C@_0BP@PMGM@wrong?5number?5of?5bytes?5written?$CB?$AA@ 004c13dc stream.obj - 0004:000033fc ??_C@_0L@PDAP@bad?5_ibMac?$AA@ 004c13fc stream.obj - 0004:00003408 ??_C@_0BH@KDBE@wrong?5sized?5file?5entry?$AA@ 004c1408 stream.obj - 0004:00003420 ??_C@_0BC@OLID@wrong?5sized?5entry?$AA@ 004c1420 stream.obj - 0004:00003434 ??_C@_0N@CPDI@wrong?5_ibMac?$AA@ 004c1434 stream.obj - 0004:00003464 ?vluSysVolFake@@3KA 004c1464 sndm.obj - 0004:00003468 ??_C@_0BB@DFGC@bad?5_cactSuspend?$AA@ 004c1468 sndm.obj - 0004:0000347c ??_C@_0BI@CEDJ@couldn?8t?5allocate?5queue?$AA@ 004c147c sndm.obj - 0004:000034b8 ?vcbMaxMemWave@SDAM@@2JA 004c14b8 sndam.obj - 0004:000034f0 ??_C@_0P@HMJA@bad?5loop?5count?$AA@ 004c14f0 sndam.obj - 0004:00003500 ??_C@_0BE@PDLM@Audioman?5messed?5up?$CB?$AA@ 004c1500 sndam.obj - 0004:00003538 ??_C@_0CB@BCE@calling?5_VlmGetSys?5with?5nil?5_hmo@ 004c1538 mididev.obj - 0004:0000355c ??_C@_0CB@ELPC@calling?5_SetSysVol?5with?5nil?5_hmo@ 004c155c mididev.obj - 0004:000035a0 ??_C@_0BO@JNJB@MSMIX?5still?5has?5active?5sounds?$AA@ 004c15a0 mididev2.obj - 0004:000035c0 ??_C@_0BD@MPCK@MISI?5still?5active?$CB?$AA@ 004c15c0 mididev2.obj - 0004:000035d4 ??_C@_0L@DEEF@nil?5thread?$AA@ 004c15d4 mididev2.obj - 0004:000035e0 ??_C@_09IDNG@nil?5event?$AA@ 004c15e0 mididev2.obj - 0004:000035ec ??_C@_0BB@HDKE@already?5playing?$CB?$AA@ 004c15ec mididev2.obj - 0004:00003600 ??_C@_0BH@FADN@Bad?5pvData?1pmdws?5combo?$AA@ 004c1600 mididev2.obj - 0004:00003618 ??_C@_0M@DHJK@Wrong?5pmdws?$AA@ 004c1618 mididev2.obj - 0004:00003624 ??_C@_0BF@IOMN@what?5buffer?5is?5this?$DP?$AA@ 004c1624 mididev2.obj - 0004:0000363c ??_C@_0CB@KOKF@calling?5_GetSysVol?5with?5nil?5_hms@ 004c163c mididev2.obj - 0004:00003660 ??_C@_0CB@BMGG@calling?5_SetSysVol?5with?5nil?5_hms@ 004c1660 mididev2.obj - 0004:00003684 ??_C@_0CC@EBKD@WMS?5still?5has?5some?5active?5buffer@ 004c1684 mididev2.obj - 0004:000036a8 ??_C@_0P@GIHP@midiStreamStop?$AA@ 004c16a8 mididev2.obj - 0004:000036b8 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 004c16b8 mididev2.obj - 0004:000036cc ??_C@_0BA@JHNK@midiStreamPause?$AA@ 004c16cc mididev2.obj - 0004:000036dc ??_C@_0O@MCEN@midiStreamOut?$AA@ 004c16dc mididev2.obj - 0004:000036ec ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 004c16ec mididev2.obj - 0004:00003700 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 004c1700 mididev2.obj - 0004:00003714 ??_C@_0BA@PKJI@midiStreamClose?$AA@ 004c1714 mididev2.obj - 0004:00003724 ??_C@_0P@FAGH@midiStreamOpen?$AA@ 004c1724 mididev2.obj - 0004:00003734 ??_C@_09GPGB@WINMM?4DLL?$AA@ 004c1734 mididev2.obj - 0004:00003740 ??_C@_0BB@KAHJ@negative?5_cmhOut?$AA@ 004c1740 mididev2.obj - 0004:00003754 ??_C@_0BJ@HJFO@why?5is?5_cmhOut?5non?9zero?$DP?$AA@ 004c1754 mididev2.obj - 0004:00003770 ??_C@_0CJ@NKGD@closing?5a?5stream?5that?5still?5has?5@ 004c1770 mididev2.obj - 0004:0000379c ??_C@_0BF@NJBO@pmh?9?$DOlpData?5is?5wrong?$AA@ 004c179c mididev2.obj - 0004:000037b4 ??_C@_0N@NPMO@corrupt?5msir?$AA@ 004c17b4 mididev2.obj - 0004:000037c4 ??_C@_09NNCE@wrong?5hms?$AA@ 004c17c4 mididev2.obj - 0004:000037d0 ??_C@_0BI@DGGH@Still?5have?5some?5buffers?$AA@ 004c17d0 mididev2.obj - 0004:000037e8 ??_C@_0BC@ELJP@Still?5have?5an?5HMS?$AA@ 004c17e8 mididev2.obj - 0004:0000383c ??_C@_0DI@IFAL@why?5are?5you?5calling?5this?5when?5th@ 004c183c dlg.obj - 0004:00003874 ??_C@_0P@BJLM@bad?5combo?5item?$AA@ 004c1874 dlg.obj - 0004:00003884 ??_C@_0BJ@CDJF@not?5a?5text?5item?5or?5combo?$AA@ 004c1884 dlg.obj - 0004:000038a0 ??_C@_0BP@GJMK@why?5did?5setting?5the?5data?5fail?$DP?$AA@ 004c18a0 dlg.obj - 0004:000038e0 ?_szDlgProp@@3QADA 004c18e0 dlgwin.obj - 0004:000038e4 ??_C@_0BH@KIEH@no?5dits?5in?5this?5dialog?$AA@ 004c18e4 dlgwin.obj - 0004:000038fc ??_C@_0BI@GHJH@no?5items?5in?5this?5dialog?$AA@ 004c18fc dlgwin.obj - 0004:00003914 ??_C@_0BH@NFFD@wrong?5lim?5on?5edit?5item?$AA@ 004c1914 dlgwin.obj - 0004:0000392c ??_C@_0BL@IDGN@bad?5call?5to?5DLG?3?3SelectDit?$AA@ 004c192c dlgwin.obj - 0004:00003948 ??_C@_0BE@FDKG@no?5radio?5button?5set?$AA@ 004c1948 dlgwin.obj - 0004:0000395c ??_C@_0BD@CCEM@not?5a?5radio?5group?$CB?$AA@ 004c195c dlgwin.obj - 0004:00003970 ??_C@_0L@BPLN@no?5dialog?$CB?$AA@ 004c1970 dlgwin.obj - 0004:0000397c ??_C@_0BH@KEF@wrong?5lim?5on?5check?5box?$AA@ 004c197c dlgwin.obj - 0004:00003994 ??_C@_0BB@JHMD@not?5a?5check?5box?$CB?$AA@ 004c1994 dlgwin.obj - 0004:000039a8 ??_C@_0BC@OOLE@wrong?5lim?5on?5item?$AA@ 004c19a8 dlgwin.obj - 0004:000039bc ??_C@_0BI@NNCK@not?5edit?5item?5or?5combo?$CB?$AA@ 004c19bc dlgwin.obj - 0004:000039d4 ??_C@_0BI@MIMM@Couldn?8t?5get?5combo?5hwnd?$AA@ 004c19d4 dlgwin.obj - 0004:000039ec ??_C@_0L@PEDO@not?5combo?$CB?$AA@ 004c19ec dlgwin.obj - 0004:00003a14 ?_szCtlProp@@3QADA 004c1a14 ctl.obj - 0004:00003a20 ??_C@_0BO@GIFH@CTL?5already?5has?5an?5OS?5control?$AA@ 004c1a20 ctl.obj - 0004:00003a40 ??_C@_0BP@GBPK@control?5isn?8t?5based?5in?5an?5hwnd?$AA@ 004c1a40 ctl.obj - 0004:00003a60 ??_C@_0DB@JCMI@exactly?5one?5of?5?$CIfscbHorz?0fscbVer@ 004c1a60 ctl.obj - 0004:00003a94 ??_C@_09LIFG@SCROLLBAR?$AA@ 004c1a94 ctl.obj - 0004:00003aa0 ??_C@_0CJ@MLJM@can?5only?5add?5controls?5to?5hwnd?5ba@ 004c1aa0 ctl.obj - 0004:00003acc ??_C@_0BE@ODCL@scb?5already?5created?$AA@ 004c1acc ctl.obj - 0004:00003ae0 ??_C@_0CI@NMHP@parent?5of?5size?5box?5doesn?8t?5have?5@ 004c1ae0 ctl.obj - 0004:00003b08 ??_C@_0L@LOLL@nil?5parent?$AA@ 004c1b08 ctl.obj - 0004:00003b34 ??_C@_0BE@FPAB@not?5tracking?5mouse?$CB?$AA@ 004c1b34 text.obj - 0004:00003b48 ??_C@_0BN@CKIE@mouse?5already?5being?5tracked?$CB?$AA@ 004c1b48 text.obj - 0004:00003b68 ??_C@_0L@JHNP@bad?5dlnSel?$AA@ 004c1b68 text.obj - 0004:00003b74 ??_C@_0BH@BMDK@baseline?5not?5supported?$AA@ 004c1b74 text.obj - 0004:00003b8c ??_C@_0BG@LJHF@bad?5call?5to?5_UnlockLn?$AA@ 004c1b8c text.obj - 0004:00003ba4 ??_C@_0BH@COAP@null?5character?5in?5EDSL?$AA@ 004c1ba4 text.obj - 0004:00003bbc ??_C@_09GIAD@bad?5lnMin?$AA@ 004c1bbc text.obj - 0004:00003bc8 ??_C@_0BF@HBKN@Why?5did?5this?5happen?$DP?$AA@ 004c1bc8 text.obj - 0004:00003be0 ??_C@_0CD@LPLH@ibMac?5not?5divisible?5by?5size?$CIacha@ 004c1be0 text.obj - 0004:00003c04 ??_C@_0O@JKKP@format?5failed?$AA@ 004c1c04 text.obj - 0004:00003c14 ??_C@_0O@LDJL@bad?5first?5ich?$AA@ 004c1c14 text.obj - 0004:00003c24 ??_C@_0CF@PMAO@ibMac?5not?5a?5divisible?5by?5size?$CIac@ 004c1c24 text.obj - 0004:00003c4c ??_C@_0CE@NLKP@memory?5failure?5in?5EDMW?3?3_LnRefor@ 004c1c4c text.obj - 0004:00003c70 ??_C@_0BD@LNJH@bad?5entry?5in?5rgich?$AA@ 004c1c70 text.obj - 0004:00003c84 ??_C@_09DHAC@bad?5ivMin?$AA@ 004c1c84 text.obj - 0004:00003c90 ??_C@_08DKDJ@bad?5cich?$AA@ 004c1c90 text.obj - 0004:00003c9c ??_C@_0O@GAGK@bad?5beginning?$AA@ 004c1c9c text.obj - 0004:00003cd0 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 004c1cd0 rtxt.obj - 0004:00003cd8 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 004c1cd8 rtxt.obj - 0004:00003dc8 ??_C@_0CK@FOFE@stream?5doesn?8t?5end?5with?5a?5carria@ 004c1dc8 rtxt.obj - 0004:00003df4 ??_C@_0BM@KLFJ@BSF?5has?5a?5partial?5character?$AA@ 004c1df4 rtxt.obj - 0004:00003e10 ??_C@_0BG@MPE@Can?8t?5translate?5a?5BSF?$AA@ 004c1e10 rtxt.obj - 0004:00003e28 ??_C@_0CF@BNNC@IbMac?$CI?$CJ?5not?5divisible?5by?5size?$CIac@ 004c1e28 rtxt.obj - 0004:00003e50 ??_C@_0BF@PJHC@bad?5_cactSuspendUndo?$AA@ 004c1e50 rtxt.obj - 0004:00003e68 ??_C@_0BE@BMIO@isolated?5line?5feeds?$AA@ 004c1e68 rtxt.obj - 0004:00003e7c ??_C@_0CJ@FMK@last?5character?5is?5not?5a?5return?5c@ 004c1e7c rtxt.obj - 0004:00003ea8 ??_C@_0CB@JELN@Can?8t?5do?5a?5normal?5save?5?9?5no?5file@ 004c1ea8 rtxt.obj - 0004:00003ecc ??_C@_0BF@KGIC@non?9increasing?5mpe?8s?$AA@ 004c1ecc rtxt.obj - 0004:00003ee4 ??_C@_0BG@IMMF@bad?5default?5font?5size?$AA@ 004c1ee4 rtxt.obj - 0004:00003efc ??_C@_0P@IJMB@bad?5font?5entry?$AA@ 004c1efc rtxt.obj - 0004:00003f0c ??_C@_09OCFF@no?5MPE?8s?$CB?$AA@ 004c1f0c rtxt.obj - 0004:00003f18 ??_C@_0BA@EEMO@cact?5overflowed?$AA@ 004c1f18 rtxt.obj - 0004:00003f28 ??_C@_0BC@BPKD@bad?5index?5into?5AG?$AA@ 004c1f28 rtxt.obj - 0004:00003f3c ??_C@_0M@FMGH@invalid?5onn?$AA@ 004c1f3c rtxt.obj - 0004:00003f48 ??_C@_0BC@GHIO@bad?5group?5element?$AA@ 004c1f48 rtxt.obj - 0004:00003f5c ??_C@_0CE@BPKC@why?5is?5there?5an?5active?5undo?5reco@ 004c1f5c rtxt.obj - 0004:00003f80 ??_C@_0BH@JGKA@new?5para?5after?5old?5one?$AA@ 004c1f80 rtxt.obj - 0004:00003f98 ??_C@_0BI@FHDH@new?5para?5before?5old?5one?$AA@ 004c1f98 rtxt.obj - 0004:00003fb0 ??_C@_09EEFH@bad?5cpSrc?$AA@ 004c1fb0 rtxt.obj - 0004:00003fbc ??_C@_07JAP@bad?5flo?$AA@ 004c1fbc rtxt.obj - 0004:00003fc4 ??_C@_0BP@GPDI@bad?5parameters?5to?5FReplaceTxrd?$AA@ 004c1fc4 rtxt.obj - 0004:00003fe4 ??_C@_0BP@GEAI@trying?5to?5replace?5trailing?5EOP?$AA@ 004c1fe4 rtxt.obj - 0004:00004004 ??_C@_0CL@FCLK@can?8t?5copy?5from?5a?5rich?5text?5doc?5@ 004c2004 rtxt.obj - 0004:00004030 ??_C@_0BE@GFCP@ensure?5in?5ag?5failed?$AA@ 004c2030 rtxt.obj - 0004:00004044 ??_C@_0BH@ILBP@growing?5_pglmpe?5failed?$AA@ 004c2044 rtxt.obj - 0004:0000405c ??_C@_0BJ@PKPG@should?5have?5been?5ensured?$AA@ 004c205c rtxt.obj - 0004:00004078 ??_C@_0BB@FOPC@cp?5not?5an?5object?$AA@ 004c2078 rtxt.obj - 0004:0000408c ??_C@_0DO@IEAA@This?5rich?5text?5undo?5object?5canno@ 004c208c rtxt.obj - 0004:000040cc ??_C@_0L@INOB@empty?5RTUN?$AA@ 004c20cc rtxt.obj - 0004:000040f8 ??_C@_0BD@JIFK@xpBase?5?$DO?5xpLimLine?$AA@ 004c20f8 rtxt2.obj - 0004:0000410c ??_C@_0BN@IIGO@bad?5rectangle?5for?5the?5object?$AA@ 004c210c rtxt2.obj - 0004:0000412c ??_C@_0CC@GHD@why?5is?5_chrd?4cpLimDraw?5?$DN?$DN?5_cpMin@ 004c212c rtxt2.obj - 0004:00004150 ??_C@_0CB@ODOD@why?5isn?8t?5_ilinInval?5?$DN?$DN?5ilinMac?$DP@ 004c2150 rtxt2.obj - 0004:00004174 ??_C@_0BL@IJJH@why?5isn?8t?5cpFind?5?$DO?$DN?5cpLim?$DP?$AA@ 004c2174 rtxt2.obj - 0004:00004190 ??_C@_0N@MFLG@Invalid?5LINs?$AA@ 004c2190 rtxt2.obj - 0004:000041a0 ??_C@_0BN@OKNN@why?5isn?8t?5dypFind?5?$DO?$DN?5dypTot?$DP?$AA@ 004c21a0 rtxt2.obj - 0004:000041c0 ??_C@_0BB@HLFD@why?5is?5cch?5zero?$DP?$AA@ 004c21c0 rtxt2.obj - 0004:000041d4 ??_C@_07DPP@bad?5run?$AA@ 004c21d4 rtxt2.obj - 0004:000041dc ??_C@_0BJ@GBOL@why?5don?8t?5we?5have?5a?5BOP?$DP?$AA@ 004c21dc rtxt2.obj - 0004:000041f8 ??_C@_0BO@JNII@why?5is?5run?4cpLim?5?$DO?$DN?5cpLimChp?$DP?$AA@ 004c21f8 rtxt2.obj - 0004:00004218 ??_C@_0BK@NEDM@why?5is?5cpCur?5?$DO?$DN?5cpLimChp?$DP?$AA@ 004c2218 rtxt2.obj - 0004:00004234 ??_C@_0BM@DHHO@selection?5is?5on?5in?5InvalCp?$CB?$AA@ 004c2234 rtxt2.obj - 0004:0000426c ??_C@_0BC@MABH@shrinking?5failed?$CB?$AA@ 004c226c mbmp.obj - 0004:00004280 ??_C@_0BN@HMNP@Empty?5source?5bitmap?5for?5MBMP?$AA@ 004c2280 mbmp.obj - 0004:000042a0 ??_C@_0BC@JEGH@Invalid?5rectangle?$AA@ 004c22a0 mbmp.obj - 0004:000042b4 ??_C@_0BC@ICFM@Wrong?5sized?5block?$AA@ 004c22b4 mbmp.obj - 0004:000042c8 ??_C@_0BC@FLNL@_hqrgb?5wrong?5size?$AA@ 004c22c8 mbmp.obj - 0004:000042dc ??_C@_0O@JBAC@_cbRgcb?5wrong?$AA@ 004c22dc mbmp.obj - 0004:00004310 ?_cmmAPP@APP@@1UCMM@CMH@@A 004c2310 ft.obj - 0004:00004318 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 004c2318 ft.obj - 0004:000043e8 ?_rgszColors@@3QAPADA 004c23e8 ft.obj - 0004:00004410 ?_cmmDWN@DWN@@1UCMM@CMH@@A 004c2410 ft.obj - 0004:00004418 ?_rgcmmeDWN@DWN@@0QAUCMME@CMH@@A 004c2418 ft.obj - 0004:00004448 ?_cdwn@DWN@@1JA 004c2448 ft.obj - 0004:00004498 ?_cmmTAN@TAN@@1UCMM@CMH@@A 004c2498 ft.obj - 0004:000044a0 ?_rgcmmeTAN@TAN@@0QAUCMME@CMH@@A 004c24a0 ft.obj - 0004:000044c0 ?_cact@TAN@@1JA 004c24c0 ft.obj - 0004:000044c4 ??_C@_03BJKC@inv?$AA@ 004c24c4 ft.obj - 0004:000044c8 ??_C@_03FGKG@cle?$AA@ 004c24c8 ft.obj - 0004:000044cc ??_C@_03JLNI@whi?$AA@ 004c24cc ft.obj - 0004:000044d0 ??_C@_03BOIF@yel?$AA@ 004c24d0 ft.obj - 0004:000044d4 ??_C@_03IGBO@mag?$AA@ 004c24d4 ft.obj - 0004:000044d8 ??_C@_03CMLD@red?$AA@ 004c24d8 ft.obj - 0004:000044dc ??_C@_03NKFD@cya?$AA@ 004c24dc ft.obj - 0004:000044e0 ??_C@_03LGPO@gre?$AA@ 004c24e0 ft.obj - 0004:000044e4 ??_C@_03KNMA@blu?$AA@ 004c24e4 ft.obj - 0004:000044e8 ??_C@_03KOOM@bla?$AA@ 004c24e8 ft.obj - 0004:000044ec ??_C@_0N@LDEN@Frame?5Tester?$AA@ 004c24ec ft.obj - 0004:000044fc ??_C@_0BC@NAAP@why?5did?5this?5fail?$AA@ 004c24fc ft.obj - 0004:00004510 ??_C@_0BC@JGC@Graphics?5Test?5?$CD?$CFd?$AA@ 004c2510 ft.obj - 0004:00004524 ??_C@_0O@LOGC@Text?5Test?5?$CD?$CFd?$AA@ 004c2524 ft.obj - 0004:00004534 ??_C@_0P@MGLE@?$CI?$CFz?3?$CFz?0?5?$CFc?3?$CFc?$CJ?$AA@ 004c2534 ft.obj - 0004:00004544 ??_C@_0BJ@JMKJ@Frame?5rectangle?5test?5?$CD?$CFd?$AA@ 004c2544 ft.obj - 0004:00004560 ??_C@_0BB@LEHE@elapsed?5time?3?5?$CFu?$AA@ 004c2560 ft.obj - 0004:00004574 ??_C@_0BL@NGNB@Click?5to?5begin?5the?5?$CFs?5test?$AA@ 004c2574 ft.obj - 0004:00004590 ??_C@_0L@DFJD@line?5draw?5?$AA@ 004c2590 ft.obj - 0004:0000459c ??_C@_0P@GNNJ@frame?5polygon?5?$AA@ 004c259c ft.obj - 0004:000045ac ??_C@_0BB@DCKG@frame?5rectangle?5?$AA@ 004c25ac ft.obj - 0004:000045c0 ??_C@_0BN@MEOM@coords?3?5?$CI?$CFd?0?5?$CFd?0?5?$CFd?$CJ?5?5?5?5?5?5?5?5?$AA@ 004c25c0 ft.obj - 0004:000045e0 ??_C@_0BE@CKMC@Animation?5test?5?$CI?$CFd?$CJ?$AA@ 004c25e0 ft.obj - 0004:000045f4 ??_C@_0L@EOEK@Test?5Edits?$AA@ 004c25f4 ft.obj - 0004:0000461c ??_C@_0P@NHJI@AssertVar?5test?$AA@ 004c261c test.obj - 0004:0000462c ??_C@_0M@HGIL@Assert?5Test?$AA@ 004c262c test.obj - 0004:00004638 ??_C@_0BC@DMEM@FResizePhq?5failed?$AA@ 004c2638 test.obj - 0004:0000464c ??_C@_0P@JBNO@FCopyHq?5failed?$AA@ 004c264c test.obj - 0004:0000465c ??_C@_0BI@MPIK@HqAlloc?5failed?5on?5size?3?$AA@ 004c265c test.obj - 0004:00004674 ??_C@_0O@BDAK@PglNew?5failed?$AA@ 004c2674 test.obj - 0004:00004684 ??_C@_0BC@JOAI@0123456789ABCDEFG?$AA@ 004c2684 test.obj - 0004:00004698 ??_C@_0BK@MFEA@bogus?5error?5code?5returned?$AA@ 004c2698 test.obj - 0004:000046b4 ??_C@_0BD@MEPO@invalid?5error?5code?$AA@ 004c26b4 test.obj - 0004:000046c8 ??_C@_0BA@OEOO@lost?5error?5code?$AA@ 004c26c8 test.obj - 0004:000046d8 ??_C@_0BF@JAPP@error?5code?5not?5found?$AA@ 004c26d8 test.obj - 0004:000046f0 ??_C@_0CC@LLOB@bad?5count?5of?5error?5codes?5on?5stac@ 004c26f0 test.obj - 0004:00004714 ??_C@_09LFII@bad?5bytes?$AA@ 004c2714 test.obj - 0004:00004720 ??_C@_0N@LKFM@wrong?5length?$AA@ 004c2720 test.obj - 0004:00004730 ??_C@_0BE@GJFF@creating?5CRF?5failed?$AA@ 004c2730 test.obj - 0004:00004744 ??_C@_0M@JCDB@Test?5string?$AA@ 004c2744 test.obj - 0004:00004750 ??_C@_0BM@OCD@creating?5chunky?5file?5failed?$AA@ 004c2750 test.obj - 0004:00004a70 ?gpMixer@@3PAUIAMMixer@@A 004c2a70 audiod:factory.obj - 0004:00004a78 ?__gfDbgEnabled@@3HA 004c2a78 audiod:dpf.obj - 0004:00004a7c ?__guDbgLevel@@3IA 004c2a7c audiod:dpf.obj - 0004:00004a80 ?rgchOutputFile@@3QADA 004c2a80 audiod:dpf.obj - 0004:00004ac0 ?gDebugOutActive@@3HA 004c2ac0 audiod:dpf.obj - 0004:00004ac4 ?gDebugLogActive@@3HA 004c2ac4 audiod:dpf.obj - 0004:00004c38 ?g_cDebugMemAllocBlocks@@3KA 004c2c38 audiod:debugmem.obj - 0004:00004c3c ?g_cbDebugMemAllocNet@@3KA 004c2c3c audiod:debugmem.obj - 0004:00004c40 ?g_cbDebugMemAllocGross@@3KA 004c2c40 audiod:debugmem.obj - 0004:00004c44 ?g_cbDebugMaxNetMemAlloc@@3KA 004c2c44 audiod:debugmem.obj - 0004:00006a64 __aenvptr 004c4a64 LIBC:wincrt0.obj - 0004:00006a68 __wenvptr 004c4a68 LIBC:wincrt0.obj - 0004:00006a6c __aexit_rtn 004c4a6c LIBC:wincrt0.obj - 0004:00006a80 __fltused 004c4a80 LIBC:fpinit.obj - 0004:00006a84 __ldused 004c4a84 LIBC:fpinit.obj - 0004:00006a88 ___fastflag 004c4a88 LIBC:fpinit.obj - 0004:00006a8c __adjust_fdiv 004c4a8c LIBC:fpinit.obj - 0004:00006a90 __FPinit 004c4a90 LIBC:fpinit.obj - 0004:00006a94 __FPmtinit 004c4a94 LIBC:fpinit.obj - 0004:00006a98 __FPmtterm 004c4a98 LIBC:fpinit.obj - 0004:00006bfc _errno 004c4bfc LIBC:crt0dat.obj - 0004:00006c00 __doserrno 004c4c00 LIBC:crt0dat.obj - 0004:00006c04 __umaskval 004c4c04 LIBC:crt0dat.obj - 0004:00006c08 __osver 004c4c08 LIBC:crt0dat.obj - 0004:00006c0c __winver 004c4c0c LIBC:crt0dat.obj - 0004:00006c10 __winmajor 004c4c10 LIBC:crt0dat.obj - 0004:00006c14 __winminor 004c4c14 LIBC:crt0dat.obj - 0004:00006c18 ___argc 004c4c18 LIBC:crt0dat.obj - 0004:00006c1c ___argv 004c4c1c LIBC:crt0dat.obj - 0004:00006c20 ___wargv 004c4c20 LIBC:crt0dat.obj - 0004:00006c24 __environ 004c4c24 LIBC:crt0dat.obj - 0004:00006c28 ___initenv 004c4c28 LIBC:crt0dat.obj - 0004:00006c2c __wenviron 004c4c2c LIBC:crt0dat.obj - 0004:00006c30 ___winitenv 004c4c30 LIBC:crt0dat.obj - 0004:00006c34 __pgmptr 004c4c34 LIBC:crt0dat.obj - 0004:00006c38 __wpgmptr 004c4c38 LIBC:crt0dat.obj - 0004:00006c3c __exitflag 004c4c3c LIBC:crt0dat.obj - 0004:00006c40 __C_Termination_Done 004c4c40 LIBC:crt0dat.obj - 0004:00006c44 __pnhHeap 004c4c44 LIBC:malloc.obj - 0004:00006c48 __XcptActTab 004c4c48 LIBC:winxfltr.obj - 0004:00006cc0 __First_FPE_Indx 004c4cc0 LIBC:winxfltr.obj - 0004:00006cc4 __Num_FPE 004c4cc4 LIBC:winxfltr.obj - 0004:00006cc8 __XcptActTabCount 004c4cc8 LIBC:winxfltr.obj - 0004:00006ccc __fpecode 004c4ccc LIBC:winxfltr.obj - 0004:00006cd0 __pxcptinfoptrs 004c4cd0 LIBC:winxfltr.obj - 0004:00006cd8 __mbctype 004c4cd8 LIBC:mbctype.obj - 0004:00006ddc ___mbcodepage 004c4ddc LIBC:mbctype.obj - 0004:00006de0 ___mblcid 004c4de0 LIBC:mbctype.obj - 0004:00006de8 ___mbulinfo 004c4de8 LIBC:mbctype.obj - 0004:00006ef0 __nhandle 004c4ef0 LIBC:ioinit.obj - 0004:00006ef8 __osfile 004c4ef8 LIBC:ioinit.obj - 0004:00006f38 __osfhnd 004c4f38 LIBC:ioinit.obj - 0004:00007038 __pipech 004c5038 LIBC:ioinit.obj - 0004:00007078 __heap_desc 004c5078 LIBC:heapinit.obj - 0004:0000708c __heap_resetsize 004c508c LIBC:heapinit.obj - 0004:00007090 __amblksiz 004c5090 LIBC:heapinit.obj - 0004:00007094 __heap_regionsize 004c5094 LIBC:heapinit.obj - 0004:00007098 __heap_maxregsize 004c5098 LIBC:heapinit.obj - 0004:00007308 __adbgmsg 004c5308 LIBC:crt0msg.obj - 0004:00007318 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 004c5318 LIBC:hooks.obj - 0004:0000731c ?__pTerminate@@3P6AXXZA 004c531c LIBC:hooks.obj - 0004:00007320 ?__pUnexpected@@3P6AXXZA 004c5320 LIBC:hooks.obj - 0004:00007324 ?__pInconsistency@@3P6AXXZA 004c5324 LIBC:hooks.obj - 0004:00007390 __cfltcvt_tab 004c5390 LIBC:cmiscdat.obj - 0004:000073bc __cflush 004c53bc LIBC:fflush.obj - 0004:000073c0 __stdbuf 004c53c0 LIBC:_sftbuf.obj - 0004:000073c8 __infinity 004c53c8 LIBC:87tran.obj - 0004:000073d2 __minfinity 004c53d2 LIBC:87tran.obj - 0004:000073dc __logemax 004c53dc LIBC:87tran.obj - 0004:0000740c __OP_POWjmptab 004c540c LIBC:87tran.obj - 0004:0000745c __OP_LOG10jmptab 004c545c LIBC:87tran.obj - 0004:0000747c __OP_LOGjmptab 004c547c LIBC:87tran.obj - 0004:0000749c __OP_EXPjmptab 004c549c LIBC:87tran.obj - 0004:000074bc __newmode 004c54bc LIBC:_newmode.obj - 0004:000074c0 __pctype 004c54c0 LIBC:ctype.obj - 0004:000074c4 __pwctype 004c54c4 LIBC:ctype.obj - 0004:000074c8 __ctype 004c54c8 LIBC:ctype.obj - 0004:00007758 ___mb_cur_max 004c5758 LIBC:nlsdata1.obj - 0004:00007760 ___decimal_point 004c5760 LIBC:nlsdata1.obj - 0004:00007764 ___decimal_point_length 004c5764 LIBC:nlsdata1.obj - 0004:00007900 __iob 004c5900 LIBC:_file.obj - 0004:00007b80 __lastiob 004c5b80 LIBC:_file.obj - 0004:00007b84 __commode 004c5b84 LIBC:ncommode.obj - 0004:00007b88 __indefinite 004c5b88 LIBC:87disp.obj - 0004:00007b92 __piby2 004c5b92 LIBC:87disp.obj - 0004:00007ba4 __cpower 004c5ba4 LIBC:87disp.obj - 0004:00007c70 ___lc_handle 004c5c70 LIBC:nlsdata2.obj - 0004:00007c88 ___lc_codepage 004c5c88 LIBC:nlsdata2.obj - 0004:00007cac __fmode 004c5cac LIBC:txtmode.obj - 0004:00007cb0 __d_inf 004c5cb0 LIBC:util.obj - 0004:00007cb8 __d_ind 004c5cb8 LIBC:util.obj - 0004:00007cc0 __d_max 004c5cc0 LIBC:util.obj - 0004:00007cc8 __d_min 004c5cc8 LIBC:util.obj - 0004:00007cd0 __d_mzero 004c5cd0 LIBC:util.obj - 0004:00007e64 __matherr_flag 004c5e64 LIBC:matherr.obj - 0004:00007e84 ___invalid_mb_chars 004c5e84 LIBC:setmbval.obj - 0004:00007e90 __pow10pos 004c5e90 LIBC:constpow.obj - 0004:00007ff0 __pow10neg 004c5ff0 LIBC:constpow.obj - 0004:0000814c ___xc_a 004c614c LIBC:crt0init.obj - 0004:0000821c ___xc_z 004c621c LIBC:crt0init.obj - 0004:00008220 ___xi_a 004c6220 LIBC:crt0init.obj - 0004:0000822c ___xi_z 004c622c LIBC:crt0init.obj - 0004:00008230 ___xp_a 004c6230 LIBC:crt0init.obj - 0004:00008238 ___xp_z 004c6238 LIBC:crt0init.obj - 0004:0000823c ___xt_a 004c623c LIBC:crt0init.obj - 0004:00008240 ___xt_z 004c6240 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 004c7000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 004c7014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 004c7028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 004c703c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 004c7050 winmm:WINMM.dll - 0005:00000064 MSVFW32_IMPORT_DESCRIPTOR 004c7064 vfw32:MSVFW32.dll - 0005:00000078 __IMPORT_DESCRIPTOR_MSACM32 004c7078 audiod:MSACM32.dll - 0005:0000008c NULL_IMPORT_DESCRIPTOR 004c708c kernel32:KERNEL32.dll - 0005:000000a0 __NULL_IMPORT_DESCRIPTOR 004c70a0 audiod:MSACM32.dll - 0005:00000524 __imp__ExtCreateRegion@12 004c7524 gdi32:GDI32.dll - 0005:00000528 __imp__SelectClipRgn@8 004c7528 gdi32:GDI32.dll - 0005:0000052c __imp__GetClipRgn@8 004c752c gdi32:GDI32.dll - 0005:00000530 __imp__OffsetRgn@12 004c7530 gdi32:GDI32.dll - 0005:00000534 __imp__CreateEllipticRgn@16 004c7534 gdi32:GDI32.dll - 0005:00000538 __imp__GdiFlush@0 004c7538 gdi32:GDI32.dll - 0005:0000053c __imp__CreateRectRgn@16 004c753c gdi32:GDI32.dll - 0005:00000540 __imp__SelectPalette@12 004c7540 gdi32:GDI32.dll - 0005:00000544 __imp__ResizePalette@8 004c7544 gdi32:GDI32.dll - 0005:00000548 __imp__RealizePalette@4 004c7548 gdi32:GDI32.dll - 0005:0000054c __imp__AnimatePalette@16 004c754c gdi32:GDI32.dll - 0005:00000550 __imp__GetSystemPaletteEntries@16 004c7550 gdi32:GDI32.dll - 0005:00000554 __imp__SetPaletteEntries@16 004c7554 gdi32:GDI32.dll - 0005:00000558 __imp__GetDeviceCaps@8 004c7558 gdi32:GDI32.dll - 0005:0000055c __imp__SetPolyFillMode@8 004c755c gdi32:GDI32.dll - 0005:00000560 __imp__CreatePalette@4 004c7560 gdi32:GDI32.dll - 0005:00000564 __imp__SelectObject@8 004c7564 gdi32:GDI32.dll - 0005:00000568 __imp__GetStockObject@4 004c7568 gdi32:GDI32.dll - 0005:0000056c __imp__DeleteObject@4 004c756c gdi32:GDI32.dll - 0005:00000570 __imp__DeleteEnhMetaFile@4 004c7570 gdi32:GDI32.dll - 0005:00000574 __imp__CloseEnhMetaFile@4 004c7574 gdi32:GDI32.dll - 0005:00000578 __imp__DeleteDC@4 004c7578 gdi32:GDI32.dll - 0005:0000057c __imp__CreateCompatibleDC@4 004c757c gdi32:GDI32.dll - 0005:00000580 __imp__SetDIBColorTable@16 004c7580 gdi32:GDI32.dll - 0005:00000584 __imp__CreateDIBSection@24 004c7584 gdi32:GDI32.dll - 0005:00000588 __imp__CombineRgn@16 004c7588 gdi32:GDI32.dll - 0005:0000058c __imp__Rectangle@20 004c758c gdi32:GDI32.dll - 0005:00000590 __imp__CreateEnhMetaFileA@16 004c7590 gdi32:GDI32.dll - 0005:00000594 __imp__FillRgn@12 004c7594 gdi32:GDI32.dll - 0005:00000598 __imp__Polygon@12 004c7598 gdi32:GDI32.dll - 0005:0000059c __imp__Ellipse@20 004c759c gdi32:GDI32.dll - 0005:000005a0 __imp__SetROP2@8 004c75a0 gdi32:GDI32.dll - 0005:000005a4 __imp__SetBkColor@8 004c75a4 gdi32:GDI32.dll - 0005:000005a8 __imp__IntersectClipRect@20 004c75a8 gdi32:GDI32.dll - 0005:000005ac __imp__TextOutA@20 004c75ac gdi32:GDI32.dll - 0005:000005b0 __imp__SetBkMode@8 004c75b0 gdi32:GDI32.dll - 0005:000005b4 __imp__SetTextColor@8 004c75b4 gdi32:GDI32.dll - 0005:000005b8 __imp__GetTextMetricsA@8 004c75b8 gdi32:GDI32.dll - 0005:000005bc __imp__CreatePatternBrush@4 004c75bc gdi32:GDI32.dll - 0005:000005c0 __imp__GetTextExtentPoint32A@16 004c75c0 gdi32:GDI32.dll - 0005:000005c4 __imp__CreateSolidBrush@4 004c75c4 gdi32:GDI32.dll - 0005:000005c8 __imp__SetTextAlign@8 004c75c8 gdi32:GDI32.dll - 0005:000005cc __imp__CreateBitmap@20 004c75cc gdi32:GDI32.dll - 0005:000005d0 __imp__SetStretchBltMode@8 004c75d0 gdi32:GDI32.dll - 0005:000005d4 __imp__RestoreDC@8 004c75d4 gdi32:GDI32.dll - 0005:000005d8 __imp__StretchBlt@44 004c75d8 gdi32:GDI32.dll - 0005:000005dc __imp__SaveDC@4 004c75dc gdi32:GDI32.dll - 0005:000005e0 __imp__EnumFontsA@16 004c75e0 gdi32:GDI32.dll - 0005:000005e4 __imp__PlayEnhMetaFile@12 004c75e4 gdi32:GDI32.dll - 0005:000005e8 __imp__CreateFontIndirectA@4 004c75e8 gdi32:GDI32.dll - 0005:000005ec __imp__CreateRectRgnIndirect@4 004c75ec gdi32:GDI32.dll - 0005:000005f0 __imp__GetObjectA@12 004c75f0 gdi32:GDI32.dll - 0005:000005f4 __imp__GetEnhMetaFileBits@12 004c75f4 gdi32:GDI32.dll - 0005:000005f8 \177GDI32_NULL_THUNK_DATA 004c75f8 gdi32:GDI32.dll - 0005:000005fc __imp__MultiByteToWideChar@24 004c75fc kernel32:KERNEL32.dll - 0005:00000600 __imp__RaiseException@16 004c7600 kernel32:KERNEL32.dll - 0005:00000604 __imp__LockResource@4 004c7604 kernel32:KERNEL32.dll - 0005:00000608 __imp__FindResourceA@12 004c7608 kernel32:KERNEL32.dll - 0005:0000060c __imp__LoadResource@8 004c760c kernel32:KERNEL32.dll - 0005:00000610 __imp__GetProcAddress@8 004c7610 kernel32:KERNEL32.dll - 0005:00000614 __imp__GetVersionExA@4 004c7614 kernel32:KERNEL32.dll - 0005:00000618 __imp__LoadLibraryA@4 004c7618 kernel32:KERNEL32.dll - 0005:0000061c __imp__CreateEventA@16 004c761c kernel32:KERNEL32.dll - 0005:00000620 __imp__FreeLibrary@4 004c7620 kernel32:KERNEL32.dll - 0005:00000624 __imp__Sleep@4 004c7624 kernel32:KERNEL32.dll - 0005:00000628 __imp__ResumeThread@4 004c7628 kernel32:KERNEL32.dll - 0005:0000062c __imp__CreateThread@24 004c762c kernel32:KERNEL32.dll - 0005:00000630 __imp__SetThreadPriority@8 004c7630 kernel32:KERNEL32.dll - 0005:00000634 __imp__GlobalLock@4 004c7634 kernel32:KERNEL32.dll - 0005:00000638 __imp__SetEvent@4 004c7638 kernel32:KERNEL32.dll - 0005:0000063c __imp__WaitForSingleObject@8 004c763c kernel32:KERNEL32.dll - 0005:00000640 __imp__GetCommandLineA@0 004c7640 kernel32:KERNEL32.dll - 0005:00000644 __imp__GlobalUnlock@4 004c7644 kernel32:KERNEL32.dll - 0005:00000648 __imp__FatalAppExitA@8 004c7648 kernel32:KERNEL32.dll - 0005:0000064c __imp__OutputDebugStringA@4 004c764c kernel32:KERNEL32.dll - 0005:00000650 __imp__GetLastError@0 004c7650 kernel32:KERNEL32.dll - 0005:00000654 __imp__MoveFileA@8 004c7654 kernel32:KERNEL32.dll - 0005:00000658 __imp__GetFileAttributesA@4 004c7658 kernel32:KERNEL32.dll - 0005:0000065c __imp__GetDriveTypeA@4 004c765c kernel32:KERNEL32.dll - 0005:00000660 __imp__GetTempPathA@8 004c7660 kernel32:KERNEL32.dll - 0005:00000664 __imp__ReadFile@20 004c7664 kernel32:KERNEL32.dll - 0005:00000668 __imp__GetFullPathNameA@16 004c7668 kernel32:KERNEL32.dll - 0005:0000066c __imp__WriteFile@20 004c766c kernel32:KERNEL32.dll - 0005:00000670 __imp__FlushFileBuffers@4 004c7670 kernel32:KERNEL32.dll - 0005:00000674 __imp__SetEndOfFile@4 004c7674 kernel32:KERNEL32.dll - 0005:00000678 __imp__SetFilePointer@16 004c7678 kernel32:KERNEL32.dll - 0005:0000067c __imp__CreateFileA@28 004c767c kernel32:KERNEL32.dll - 0005:00000680 __imp__DeleteFileA@4 004c7680 kernel32:KERNEL32.dll - 0005:00000684 __imp__CloseHandle@4 004c7684 kernel32:KERNEL32.dll - 0005:00000688 __imp__CompareStringA@24 004c7688 kernel32:KERNEL32.dll - 0005:0000068c __imp__IsBadWritePtr@8 004c768c kernel32:KERNEL32.dll - 0005:00000690 __imp__WideCharToMultiByte@32 004c7690 kernel32:KERNEL32.dll - 0005:00000694 __imp__GetCurrentThreadId@0 004c7694 kernel32:KERNEL32.dll - 0005:00000698 __imp__GlobalSize@4 004c7698 kernel32:KERNEL32.dll - 0005:0000069c __imp__GlobalReAlloc@12 004c769c kernel32:KERNEL32.dll - 0005:000006a0 __imp__GlobalFree@4 004c76a0 kernel32:KERNEL32.dll - 0005:000006a4 __imp__LeaveCriticalSection@4 004c76a4 kernel32:KERNEL32.dll - 0005:000006a8 __imp__EnterCriticalSection@4 004c76a8 kernel32:KERNEL32.dll - 0005:000006ac __imp__DeleteCriticalSection@4 004c76ac kernel32:KERNEL32.dll - 0005:000006b0 __imp__GlobalAlloc@8 004c76b0 kernel32:KERNEL32.dll - 0005:000006b4 __imp__IsBadReadPtr@8 004c76b4 kernel32:KERNEL32.dll - 0005:000006b8 __imp__ExitProcess@4 004c76b8 kernel32:KERNEL32.dll - 0005:000006bc __imp__GetEnvironmentStrings@0 004c76bc kernel32:KERNEL32.dll - 0005:000006c0 __imp__GetStartupInfoA@4 004c76c0 kernel32:KERNEL32.dll - 0005:000006c4 __imp__GetVersion@0 004c76c4 kernel32:KERNEL32.dll - 0005:000006c8 __imp__GetPrivateProfileStringA@24 004c76c8 kernel32:KERNEL32.dll - 0005:000006cc __imp__WritePrivateProfileStringA@16 004c76cc kernel32:KERNEL32.dll - 0005:000006d0 __imp__GetModuleHandleA@4 004c76d0 kernel32:KERNEL32.dll - 0005:000006d4 __imp___hwrite@12 004c76d4 kernel32:KERNEL32.dll - 0005:000006d8 __imp___hread@12 004c76d8 kernel32:KERNEL32.dll - 0005:000006dc __imp__GetPrivateProfileIntA@16 004c76dc kernel32:KERNEL32.dll - 0005:000006e0 __imp___lcreat@8 004c76e0 kernel32:KERNEL32.dll - 0005:000006e4 __imp___lclose@4 004c76e4 kernel32:KERNEL32.dll - 0005:000006e8 __imp___llseek@12 004c76e8 kernel32:KERNEL32.dll - 0005:000006ec __imp__GlobalHandle@4 004c76ec kernel32:KERNEL32.dll - 0005:000006f0 __imp__RtlUnwind@16 004c76f0 kernel32:KERNEL32.dll - 0005:000006f4 __imp___lopen@8 004c76f4 kernel32:KERNEL32.dll - 0005:000006f8 __imp__GetProfileIntA@12 004c76f8 kernel32:KERNEL32.dll - 0005:000006fc __imp__lstrlenA@4 004c76fc kernel32:KERNEL32.dll - 0005:00000700 __imp__lstrcatA@8 004c7700 kernel32:KERNEL32.dll - 0005:00000704 __imp__DebugBreak@0 004c7704 kernel32:KERNEL32.dll - 0005:00000708 __imp__GetStdHandle@4 004c7708 kernel32:KERNEL32.dll - 0005:0000070c __imp__UnhandledExceptionFilter@4 004c770c kernel32:KERNEL32.dll - 0005:00000710 __imp__GetModuleFileNameA@12 004c7710 kernel32:KERNEL32.dll - 0005:00000714 __imp__GetACP@0 004c7714 kernel32:KERNEL32.dll - 0005:00000718 __imp__GetOEMCP@0 004c7718 kernel32:KERNEL32.dll - 0005:0000071c __imp__GetCPInfo@8 004c771c kernel32:KERNEL32.dll - 0005:00000720 __imp__InitializeCriticalSection@4 004c7720 kernel32:KERNEL32.dll - 0005:00000724 __imp__GetFileType@4 004c7724 kernel32:KERNEL32.dll - 0005:00000728 __imp__VirtualFree@12 004c7728 kernel32:KERNEL32.dll - 0005:0000072c __imp__VirtualAlloc@16 004c772c kernel32:KERNEL32.dll - 0005:00000730 __imp__SetUnhandledExceptionFilter@4 004c7730 kernel32:KERNEL32.dll - 0005:00000734 __imp__IsBadCodePtr@4 004c7734 kernel32:KERNEL32.dll - 0005:00000738 __imp__SetStdHandle@8 004c7738 kernel32:KERNEL32.dll - 0005:0000073c \177KERNEL32_NULL_THUNK_DATA 004c773c kernel32:KERNEL32.dll - 0005:00000740 __imp__acmStreamOpen@32 004c7740 audiod:MSACM32.dll - 0005:00000744 __imp__acmStreamPrepareHeader@12 004c7744 audiod:MSACM32.dll - 0005:00000748 __imp__acmStreamClose@8 004c7748 audiod:MSACM32.dll - 0005:0000074c __imp__acmFormatSuggest@20 004c774c audiod:MSACM32.dll - 0005:00000750 __imp__acmStreamSize@16 004c7750 audiod:MSACM32.dll - 0005:00000754 __imp__acmStreamConvert@12 004c7754 audiod:MSACM32.dll - 0005:00000758 __imp__acmStreamUnprepareHeader@12 004c7758 audiod:MSACM32.dll - 0005:0000075c \177MSACM32_NULL_THUNK_DATA 004c775c audiod:MSACM32.dll - 0005:00000760 \177MSVFW32_NULL_THUNK_DATA 004c7760 vfw32:MSVFW32.dll - 0005:00000764 __imp__GetActiveWindow@0 004c7764 user32:USER32.dll - 0005:00000768 __imp__MessageBoxA@16 004c7768 user32:USER32.dll - 0005:0000076c __imp__GetParent@4 004c776c user32:USER32.dll - 0005:00000770 __imp__DialogBoxParamA@20 004c7770 user32:USER32.dll - 0005:00000774 __imp__SetDlgItemTextA@12 004c7774 user32:USER32.dll - 0005:00000778 __imp__EndDialog@8 004c7778 user32:USER32.dll - 0005:0000077c __imp__IsIconic@4 004c777c user32:USER32.dll - 0005:00000780 __imp__BeginPaint@8 004c7780 user32:USER32.dll - 0005:00000784 __imp__ReleaseDC@8 004c7784 user32:USER32.dll - 0005:00000788 __imp__EndPaint@8 004c7788 user32:USER32.dll - 0005:0000078c __imp__GetMessageTime@0 004c778c user32:USER32.dll - 0005:00000790 __imp__GetDoubleClickTime@0 004c7790 user32:USER32.dll - 0005:00000794 __imp__DefMDIChildProcA@16 004c7794 user32:USER32.dll - 0005:00000798 __imp__SetClipboardViewer@4 004c7798 user32:USER32.dll - 0005:0000079c __imp__SendMessageA@16 004c779c user32:USER32.dll - 0005:000007a0 __imp__GetClipboardOwner@0 004c77a0 user32:USER32.dll - 0005:000007a4 __imp__PostQuitMessage@4 004c77a4 user32:USER32.dll - 0005:000007a8 __imp__GetWindowLongA@8 004c77a8 user32:USER32.dll - 0005:000007ac __imp__SetWindowLongA@12 004c77ac user32:USER32.dll - 0005:000007b0 __imp__DefFrameProcA@20 004c77b0 user32:USER32.dll - 0005:000007b4 __imp__ChangeClipboardChain@8 004c77b4 user32:USER32.dll - 0005:000007b8 __imp__TranslateMDISysAccel@8 004c77b8 user32:USER32.dll - 0005:000007bc __imp__TranslateAcceleratorA@12 004c77bc user32:USER32.dll - 0005:000007c0 __imp__PeekMessageA@20 004c77c0 user32:USER32.dll - 0005:000007c4 __imp__GetCursorPos@4 004c77c4 user32:USER32.dll - 0005:000007c8 __imp__TranslateMessage@4 004c77c8 user32:USER32.dll - 0005:000007cc __imp__DispatchMessageA@4 004c77cc user32:USER32.dll - 0005:000007d0 __imp__GetMessageA@16 004c77d0 user32:USER32.dll - 0005:000007d4 __imp__GetCaretBlinkTime@0 004c77d4 user32:USER32.dll - 0005:000007d8 __imp__SetScrollRange@20 004c77d8 user32:USER32.dll - 0005:000007dc __imp__CreateWindowExA@48 004c77dc user32:USER32.dll - 0005:000007e0 __imp__GetDC@4 004c77e0 user32:USER32.dll - 0005:000007e4 __imp__SetTimer@16 004c77e4 user32:USER32.dll - 0005:000007e8 __imp__LoadAcceleratorsA@8 004c77e8 user32:USER32.dll - 0005:000007ec __imp__GetDlgItemTextA@16 004c77ec user32:USER32.dll - 0005:000007f0 __imp__SetScrollPos@16 004c77f0 user32:USER32.dll - 0005:000007f4 __imp__ClientToScreen@8 004c77f4 user32:USER32.dll - 0005:000007f8 __imp__ScrollWindowEx@32 004c77f8 user32:USER32.dll - 0005:000007fc __imp__UpdateWindow@4 004c77fc user32:USER32.dll - 0005:00000800 __imp__ValidateRect@8 004c7800 user32:USER32.dll - 0005:00000804 __imp__GetUpdateRect@12 004c7804 user32:USER32.dll - 0005:00000808 __imp__GetSystemMetrics@4 004c7808 user32:USER32.dll - 0005:0000080c __imp__CreateCursor@28 004c780c user32:USER32.dll - 0005:00000810 __imp__DestroyCursor@4 004c7810 user32:USER32.dll - 0005:00000814 __imp__SetCapture@4 004c7814 user32:USER32.dll - 0005:00000818 __imp__GetCapture@0 004c7818 user32:USER32.dll - 0005:0000081c __imp__ReleaseCapture@0 004c781c user32:USER32.dll - 0005:00000820 __imp__InvalidateRect@12 004c7820 user32:USER32.dll - 0005:00000824 __imp__IsZoomed@4 004c7824 user32:USER32.dll - 0005:00000828 __imp__ShowWindow@8 004c7828 user32:USER32.dll - 0005:0000082c __imp__SetCursorPos@8 004c782c user32:USER32.dll - 0005:00000830 __imp__ShowCursor@4 004c7830 user32:USER32.dll - 0005:00000834 __imp__GetAsyncKeyState@4 004c7834 user32:USER32.dll - 0005:00000838 __imp__GetKeyState@4 004c7838 user32:USER32.dll - 0005:0000083c __imp__LoadCursorA@8 004c783c user32:USER32.dll - 0005:00000840 __imp__SetCursor@4 004c7840 user32:USER32.dll - 0005:00000844 __imp__CharLowerBuffA@8 004c7844 user32:USER32.dll - 0005:00000848 __imp__CharUpperBuffA@8 004c7848 user32:USER32.dll - 0005:0000084c __imp__SendDlgItemMessageA@20 004c784c user32:USER32.dll - 0005:00000850 __imp__GetPropA@8 004c7850 user32:USER32.dll - 0005:00000854 __imp__SetPropA@12 004c7854 user32:USER32.dll - 0005:00000858 __imp__GetWindowRect@8 004c7858 user32:USER32.dll - 0005:0000085c __imp__MoveWindow@24 004c785c user32:USER32.dll - 0005:00000860 __imp__RemovePropA@8 004c7860 user32:USER32.dll - 0005:00000864 __imp__KillTimer@8 004c7864 user32:USER32.dll - 0005:00000868 __imp__SetClipboardData@8 004c7868 user32:USER32.dll - 0005:0000086c __imp__EmptyClipboard@0 004c786c user32:USER32.dll - 0005:00000870 __imp__OpenClipboard@4 004c7870 user32:USER32.dll - 0005:00000874 __imp__EnumClipboardFormats@4 004c7874 user32:USER32.dll - 0005:00000878 __imp__GetClipboardData@4 004c7878 user32:USER32.dll - 0005:0000087c __imp__ScreenToClient@8 004c787c user32:USER32.dll - 0005:00000880 __imp__IsDlgButtonChecked@8 004c7880 user32:USER32.dll - 0005:00000884 __imp__CheckDlgButton@12 004c7884 user32:USER32.dll - 0005:00000888 __imp__CheckRadioButton@16 004c7888 user32:USER32.dll - 0005:0000088c __imp__GetClientRect@8 004c788c user32:USER32.dll - 0005:00000890 __imp__SetFocus@4 004c7890 user32:USER32.dll - 0005:00000894 __imp__WindowFromPoint@8 004c7894 user32:USER32.dll - 0005:00000898 __imp__CloseClipboard@0 004c7898 user32:USER32.dll - 0005:0000089c __imp__GetMenuStringA@20 004c789c user32:USER32.dll - 0005:000008a0 __imp__ModifyMenuA@20 004c78a0 user32:USER32.dll - 0005:000008a4 __imp__InsertMenuA@20 004c78a4 user32:USER32.dll - 0005:000008a8 __imp__DeleteMenu@12 004c78a8 user32:USER32.dll - 0005:000008ac __imp__GetSubMenu@8 004c78ac user32:USER32.dll - 0005:000008b0 __imp__SetMenu@8 004c78b0 user32:USER32.dll - 0005:000008b4 __imp__EnableMenuItem@12 004c78b4 user32:USER32.dll - 0005:000008b8 __imp__CheckMenuItem@12 004c78b8 user32:USER32.dll - 0005:000008bc __imp__SetWindowTextA@8 004c78bc user32:USER32.dll - 0005:000008c0 __imp__LoadMenuA@8 004c78c0 user32:USER32.dll - 0005:000008c4 __imp__GetMenuItemCount@4 004c78c4 user32:USER32.dll - 0005:000008c8 __imp__IsWindow@4 004c78c8 user32:USER32.dll - 0005:000008cc __imp__DestroyWindow@4 004c78cc user32:USER32.dll - 0005:000008d0 __imp__CreateMDIWindowA@40 004c78d0 user32:USER32.dll - 0005:000008d4 __imp__FillRect@12 004c78d4 user32:USER32.dll - 0005:000008d8 __imp__ScrollDC@28 004c78d8 user32:USER32.dll - 0005:000008dc __imp__InvertRect@8 004c78dc user32:USER32.dll - 0005:000008e0 __imp__LoadIconA@8 004c78e0 user32:USER32.dll - 0005:000008e4 __imp__GetWindow@8 004c78e4 user32:USER32.dll - 0005:000008e8 __imp__RegisterClassA@4 004c78e8 user32:USER32.dll - 0005:000008ec __imp__GetMenuItemID@8 004c78ec user32:USER32.dll - 0005:000008f0 __imp__GetDlgItem@8 004c78f0 user32:USER32.dll - 0005:000008f4 __imp__wvsprintfA@12 004c78f4 user32:USER32.dll - 0005:000008f8 __imp__wsprintfA 004c78f8 user32:USER32.dll - 0005:000008fc \177USER32_NULL_THUNK_DATA 004c78fc user32:USER32.dll - 0005:00000900 __imp__midiOutSetVolume@8 004c7900 winmm:WINMM.dll - 0005:00000904 __imp__midiOutClose@4 004c7904 winmm:WINMM.dll - 0005:00000908 __imp__midiOutOpen@20 004c7908 winmm:WINMM.dll - 0005:0000090c __imp__midiOutReset@4 004c790c winmm:WINMM.dll - 0005:00000910 __imp__midiOutPrepareHeader@12 004c7910 winmm:WINMM.dll - 0005:00000914 __imp__midiOutUnprepareHeader@12 004c7914 winmm:WINMM.dll - 0005:00000918 __imp__midiOutGetVolume@8 004c7918 winmm:WINMM.dll - 0005:0000091c __imp__waveOutGetNumDevs@0 004c791c winmm:WINMM.dll - 0005:00000920 __imp__waveOutGetDevCapsA@12 004c7920 winmm:WINMM.dll - 0005:00000924 __imp__timeGetTime@0 004c7924 winmm:WINMM.dll - 0005:00000928 __imp__midiOutShortMsg@8 004c7928 winmm:WINMM.dll - 0005:0000092c __imp__timeKillEvent@4 004c792c winmm:WINMM.dll - 0005:00000930 __imp__waveOutPrepareHeader@12 004c7930 winmm:WINMM.dll - 0005:00000934 __imp__waveOutUnprepareHeader@12 004c7934 winmm:WINMM.dll - 0005:00000938 __imp__waveOutMessage@16 004c7938 winmm:WINMM.dll - 0005:0000093c __imp__timeSetEvent@20 004c793c winmm:WINMM.dll - 0005:00000940 __imp__timeGetDevCaps@8 004c7940 winmm:WINMM.dll - 0005:00000944 __imp__waveOutClose@4 004c7944 winmm:WINMM.dll - 0005:00000948 __imp__waveOutReset@4 004c7948 winmm:WINMM.dll - 0005:0000094c __imp__waveOutGetID@8 004c794c winmm:WINMM.dll - 0005:00000950 __imp__waveOutOpen@24 004c7950 winmm:WINMM.dll - 0005:00000954 __imp__waveOutGetVolume@8 004c7954 winmm:WINMM.dll - 0005:00000958 __imp__waveOutSetVolume@8 004c7958 winmm:WINMM.dll - 0005:0000095c __imp__waveOutSetPlaybackRate@8 004c795c winmm:WINMM.dll - 0005:00000960 __imp__waveOutGetErrorTextA@12 004c7960 winmm:WINMM.dll - 0005:00000964 __imp__waveOutWrite@12 004c7964 winmm:WINMM.dll - 0005:00000968 __imp__waveOutPause@4 004c7968 winmm:WINMM.dll - 0005:0000096c __imp__waveOutRestart@4 004c796c winmm:WINMM.dll - 0005:00000970 __imp__waveOutBreakLoop@4 004c7970 winmm:WINMM.dll - 0005:00000974 __imp__waveOutGetPosition@12 004c7974 winmm:WINMM.dll - 0005:00000978 __imp__waveOutGetPitch@8 004c7978 winmm:WINMM.dll - 0005:0000097c __imp__waveOutSetPitch@8 004c797c winmm:WINMM.dll - 0005:00000980 __imp__waveOutGetPlaybackRate@8 004c7980 winmm:WINMM.dll - 0005:00000984 \177WINMM_NULL_THUNK_DATA 004c7984 winmm:WINMM.dll - 0005:00000988 __imp__GetOpenFileNameA@4 004c7988 comdlg32:comdlg32.dll - 0005:0000098c __imp__GetSaveFileNameA@4 004c798c comdlg32:comdlg32.dll - 0005:00000990 \177comdlg32_NULL_THUNK_DATA 004c7990 comdlg32:comdlg32.dll - - entry point at 0001:000ae1af - - Static symbols - - 0001:0008e5d0 _$$1000 0048f5d0 f test.obj - 0001:00090020 _$$8000 00491020 f test.obj - 0001:00087980 _$$c200 00488980 f ft.obj - 0001:00087de0 _$$1000 00488de0 f ft.obj - 0001:0008b3e0 _$$8000 0048c3e0 f ft.obj - 0001:0008d050 _$$3300 0048e050 f ft.obj - 0001:0008d080 _$$4300 0048e080 f ft.obj - 0001:0008d0a0 _$$5300 0048e0a0 f ft.obj - 0001:00087400 _$$1000 00488400 f mbmp.obj - 0001:000877d0 _$$a200 004887d0 f mbmp.obj - 0001:00087870 _$$8000 00488870 f mbmp.obj - 0001:0007e440 _$$1000 0047f440 f rtxt2.obj - 0001:00081700 _$$8000 00482700 f rtxt2.obj - 0001:000869f0 _$$a200 004879f0 f rtxt2.obj - 0001:00074870 _$$1000 00475870 f rtxt.obj - 0001:00077920 _$$8000 00478920 f rtxt.obj - 0001:0007dd70 _$$a200 0047ed70 f rtxt.obj - 0001:0006e980 _$$1000 0046f980 f text.obj - 0001:00071ff0 _$$8000 00472ff0 f text.obj - 0001:000741a0 _$$a200 004751a0 f text.obj - 0001:0006d760 _$$1000 0046e760 f ctl.obj - 0001:0006e1f0 _$$a200 0046f1f0 f ctl.obj - 0001:0006e250 _$$8000 0046f250 f ctl.obj - 0001:0006bfa0 _$$1000 0046cfa0 f dlgwin.obj - 0001:0006d070 _$$a200 0046e070 f dlgwin.obj - 0001:0006d090 _$$8000 0046e090 f dlgwin.obj - 0001:0006b310 _$$1000 0046c310 f dlg.obj - 0001:0006b870 _$$a200 0046c870 f dlg.obj - 0001:0006b900 _$$8000 0046c900 f dlg.obj - 0001:0006a430 _$$1000 0046b430 f midi.obj - 0001:0006aa20 _$$a200 0046ba20 f midi.obj - 0001:0006aaf0 _$$8000 0046baf0 f midi.obj - 0001:00063fe0 _$$1000 00464fe0 f mididev2.obj - 0001:00067370 _$$8000 00468370 f mididev2.obj - 0001:00069910 _$$a200 0046a910 f mididev2.obj - 0001:00063400 _$$a200 00464400 f mididev.obj - 0001:000637a0 _$$1000 004647a0 f mididev.obj - 0001:000638f0 _$$b200 004648f0 f mididev.obj - 0001:00063910 _$$c200 00464910 f mididev.obj - 0001:00063930 _$$d200 00464930 f mididev.obj - 0001:000639a0 _$$8000 004649a0 f mididev.obj - 0001:00060c40 _$$1000 00461c40 f sndam.obj - 0001:000630e0 _$$a200 004640e0 f sndam.obj - 0001:000632f0 _$$8000 004642f0 f sndam.obj - 0001:0005d7a0 _$$1000 0045e7a0 f sndm.obj - 0001:000605d0 _$$a200 004615d0 f sndm.obj - 0001:000605f0 _$$8000 004615f0 f sndm.obj - 0001:0005aea0 _$$1000 0045bea0 f stream.obj - 0001:0005d110 _$$8000 0045e110 f stream.obj - 0001:00059730 _$$a200 0045a730 f clip.obj - 0001:00059b20 _$$1000 0045ab20 f clip.obj - 0001:0005a6f0 _$$b200 0045b6f0 f clip.obj - 0001:0005a710 _$$c200 0045b710 f clip.obj - 0001:0005a730 _$$d200 0045b730 f clip.obj - 0001:0005a7f0 _$$8000 0045b7f0 f clip.obj - 0001:00052390 _$$1000 00453390 f docb.obj - 0001:00055770 _$$8000 00456770 f docb.obj - 0001:00059300 _$$a200 0045a300 f docb.obj - 0001:00051af0 _$$1000 00452af0 f picwin.obj - 0001:00051cb0 _$$a200 00452cb0 f picwin.obj - 0001:00051d10 _$$8000 00452d10 f picwin.obj - 0001:000502e0 _$$1000 004512e0 f menuwin.obj - 0001:00051810 _$$a200 00452810 f menuwin.obj - 0001:00051870 _$$8000 00452870 f menuwin.obj - 0001:0004f930 _$$1000 00450930 f gobwin.obj - 0001:0004fd30 _$$a200 00450d30 f gobwin.obj - 0001:0004fd50 _$$8000 00450d50 f gobwin.obj - 0001:0004abc0 _$$1000 0044bbc0 f gfxwin.obj - 0001:0004dce0 _$$8000 0044ece0 f gfxwin.obj - 0001:0004f440 _$$b200 00450440 f gfxwin.obj - 0001:00047e30 _$$1000 00448e30 f appbwin.obj - 0001:000498b0 _$$a200 0044a8b0 f appbwin.obj - 0001:0004a030 _$$b200 0044b030 f appbwin.obj - 0001:0004a050 _$$c200 0044b050 f appbwin.obj - 0001:0004a070 _$$d200 0044b070 f appbwin.obj - 0001:0004a0d0 _$$8000 0044b0d0 f appbwin.obj - 0001:000477b0 _$$1000 004487b0 f pic.obj - 0001:00047830 _$$a200 00448830 f pic.obj - 0001:00047850 _$$8000 00448850 f pic.obj - 0001:00044140 _$$1000 00445140 f region.obj - 0001:00047080 _$$8000 00448080 f region.obj - 0001:00047370 _$$a200 00448370 f region.obj - 0001:00043820 _$$1000 00444820 f mbmpgui.obj - 0001:00043cb0 _$$a200 00444cb0 f mbmpgui.obj - 0001:00043d40 _$$8000 00444d40 f mbmpgui.obj - 0001:0003ef50 _$$1000 0043ff50 f gob.obj - 0001:00042220 _$$8000 00443220 f gob.obj - 0001:000432b0 _$$a200 004442b0 f gob.obj - 0001:00037290 _$$a200 00438290 f gfx.obj - 0001:00037870 _$$1000 00438870 f gfx.obj - 0001:00039e10 _$$8000 0043ae10 f gfx.obj - 0001:0003e7b0 _$$b200 0043f7b0 f gfx.obj - 0001:0003e7d0 _$$c200 0043f7d0 f gfx.obj - 0001:0003e7f0 _$$d200 0043f7f0 f gfx.obj - 0001:00037090 _$$1000 00438090 f cursor.obj - 0001:000370e0 _$$a200 004380e0 f cursor.obj - 0001:00037140 _$$8000 00438140 f cursor.obj - 0001:000334a0 _$$1000 004344a0 f cmd.obj - 0001:000365e0 _$$8000 004375e0 f cmd.obj - 0001:00036a40 _$$a200 00437a40 f cmd.obj - 0001:000321b0 _$$a200 004331b0 f clok.obj - 0001:00032530 _$$1000 00433530 f clok.obj - 0001:00032d20 _$$b200 00433d20 f clok.obj - 0001:00032d90 _$$8000 00433d90 f clok.obj - 0001:0002d470 _$$1000 0042e470 f appb.obj - 0001:00030a70 _$$8000 00431a70 f appb.obj - 0001:00031d90 _$$a200 00432d90 f appb.obj - 0001:00031fd0 _$$b200 00432fd0 f appb.obj - 0001:00031ff0 _$$c200 00432ff0 f appb.obj - 0001:00032010 _$$d200 00433010 f appb.obj - 0001:0002a9c0 _$$8000 0042b9c0 f fniwin.obj - 0001:0002b110 _$$1000 0042c110 f fniwin.obj - 0001:0002cf20 _$$9000 0042df20 f fniwin.obj - 0001:0002cf40 _$$a000 0042df40 f fniwin.obj - 0001:0002cf60 _$$b000 0042df60 f fniwin.obj - 0001:00029d20 _$$1000 0042ad20 f filewin.obj - 0001:0002a9a0 _$$8000 0042b9a0 f filewin.obj - 0001:00025dc0 _$$8000 00426dc0 f file.obj - 0001:00026280 _$$1000 00427280 f file.obj - 0001:000296f0 _$$9000 0042a6f0 f file.obj - 0001:00029710 _$$a000 0042a710 f file.obj - 0001:00029730 _$$b000 0042a730 f file.obj - 0001:00023600 _$$1000 00424600 f crf.obj - 0001:00025bf0 _$$8000 00426bf0 f crf.obj - 0001:0001bb30 _$$1000 0041cb30 f codkauai.obj - 0001:00023140 _$$8000 00424140 f codkauai.obj - 0001:0001ac30 _$$1000 0041bc30 f codec.obj - 0001:0001b600 _$$8000 0041c600 f codec.obj - 0001:000128f0 _$$1000 004138f0 f chunk.obj - 0001:0001a5d0 _$$8000 0041b5d0 f chunk.obj - 0001:00010d80 _$$1000 00411d80 f groups2.obj - 0001:000124d0 _$$8000 004134d0 f groups2.obj - 0001:0000a060 _$$1000 0040b060 f groups.obj - 0001:00010520 _$$8000 00411520 f groups.obj - 0001:000098c0 _$$1000 0040a8c0 f memwin.obj - 0001:00009990 _$$8000 0040a990 f memwin.obj - 0001:000069d0 _$$1000 004079d0 f utilstr.obj - 0001:00009320 _$$8000 0040a320 f utilstr.obj - 0001:00006040 _$$1000 00407040 f utilrnd.obj - 0001:00006520 _$$8000 00407520 f utilrnd.obj - 0001:00004fa0 _$$1000 00405fa0 f utilmem.obj - 0001:00005b70 _$$8000 00406b70 f utilmem.obj - 0001:00002c20 _$$1000 00403c20 f utilint.obj - 0001:00004a50 _$$8000 00405a50 f utilint.obj - 0001:000020f0 _$$8000 004030f0 f utilerro.obj - 0001:00002630 _$$1000 00403630 f utilerro.obj - 0001:00002860 _$$9000 00403860 f utilerro.obj - 0001:00002880 _$$a000 00403880 f utilerro.obj - 0001:000028a0 _$$b000 004038a0 f utilerro.obj - 0001:00001d50 _$$1000 00402d50 f utilcopy.obj - 0001:000020d0 _$$8000 004030d0 f utilcopy.obj - 0001:00000c60 _$$1000 00401c60 f base.obj - 0001:000019c0 _$$8000 004029c0 f base.obj - 0001:000005e0 _$$8000 004015e0 f util.obj - 0001:00000600 _$$1000 00401600 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:000b4152 _strncnt 004b5152 f LIBC:aw_map.obj - 0001:000b3fd8 _siglookup 004b4fd8 f LIBC:winsig.obj - 0001:000b3e19 __before 004b4e19 f LIBC:heapadd.obj - 0001:000b25fd __abstract_cw 004b35fd f LIBC:ieee87.obj - 0001:000b2690 __hw_cw 004b3690 f LIBC:ieee87.obj - 0001:000b24cc _$$1000 004b34cc f LIBC:unhandld.obj - 0001:000b2531 _$$2000 004b3531 f LIBC:unhandld.obj - 0001:000b2271 __heap_new_region 004b3271 f LIBC:heapgrow.obj - 0001:000b193a _flsall 004b293a f LIBC:fflush.obj - 0001:000b154b __cftoe_g 004b254b f LIBC:cvt.obj - 0001:000b166c __cftof_g 004b266c f LIBC:cvt.obj - 0001:000b1788 __shift 004b2788 f LIBC:cvt.obj - 0001:000b0840 ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 004b1840 f LIBC:frame.obj - 0001:000b0a8e ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 004b1a8e f LIBC:frame.obj - 0001:000b0b5e ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 004b1b5e f LIBC:frame.obj - 0001:000b0cb8 ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 004b1cb8 f LIBC:frame.obj - 0001:000b0d45 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 004b1d45 f LIBC:frame.obj - 0001:000b0e4d ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 004b1e4d f LIBC:frame.obj - 0001:000b0e78 ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 004b1e78 f LIBC:frame.obj - 0001:000b1067 ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 004b2067 f LIBC:frame.obj - 0001:000b10d3 ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 004b20d3 f LIBC:frame.obj - 0001:000b05a6 __heap_grow_emptylist 004b15a6 f LIBC:heapinit.obj - 0001:000b025a _getSystemCP 004b125a f LIBC:mbctype.obj - 0001:000b0295 _CPtoLCID 004b1295 f LIBC:mbctype.obj - 0001:000b02d4 _setSBCS 004b12d4 f LIBC:mbctype.obj - 0001:000b0090 _parse_cmdline 004b1090 f LIBC:stdargv.obj - 0001:000afefa @x_ismbbtype@12 004b0efa f LIBC:ismbbyte.obj - 0001:000afebf _xcptlookup 004b0ebf f LIBC:winxfltr.obj - 0001:000afb75 __heap_expand_block 004b0b75 f LIBC:realloc.obj - 0001:000af9e0 _doexit 004b09e0 f LIBC:crt0dat.obj - 0001:000afa5f __initterm 004b0a5f f LIBC:crt0dat.obj - 0001:000ae6e4 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 004af6e4 f LIBC:trnsctrl.obj - 0001:000ae7d8 ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 004af7d8 f LIBC:trnsctrl.obj - 0001:000ae4fc __unwind_handler 004af4fc f LIBC:exsup.obj - -FIXUPS: af21d 5 10 10 5 30 56 6 15 f 23 fffffe8d fffffff3 ffffffd0 ffffff46 -FIXUPS: af0ce 12 44 13 13 185a 12 11 11 5d 12 fffffdc6 ffffffb9 a 18 a -FIXUPS: af9f0 1a 13 ffffff9e f e ffffff81 b b 1b fffffeda 5 a fffffdbd -FIXUPS: af67c 53 31 110 13 fffffccd fffffd21 24d9 ffffff1c fffffcff b8 -FIXUPS: b1435 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 ffffff3f fffffe73 -FIXUPS: b0d12 fffffedb 2d f e c 3d 55 fffffdbe 16 33 1f d 23 23 11e0 e -FIXUPS: b1db3 4f 9 c 17 af 13 1d 1f 13 17 21 1d 13 1a a a f f 1a d e d -FIXUPS: b203c 10 5a 12 fffff5cb d 35 10e4 fffffa90 9a ffffff10 ffffff7f -FIXUPS: b21d4 fffff5bf 2b 2c 2b 1b 34 46 c 25 3c 114 26 28 a 3b 2e 52 5c -FIXUPS: b1be0 6d 1a 21 14 39 23 15 c25 2f 19 2b e fffffeaa ffffff8c c d -FIXUPS: b2822 d fffffae0 21 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d 36 47 -FIXUPS: b272b 2c 16 13 bf7 d c 32 fffffe42 fffffdcc 3d 49 132 31 fffffc33 -FIXUPS: b2dfe 1d 5 55 3c 7 2f b2 15 fffffd8d fffffdd4 2d 32 fffffe54 45 -FIXUPS: b2a4d 29 fffffe17 b 21 42 1259 1f 20 d f 13 17 13 22 5b 16 22 f -FIXUPS: b3cd2 f fffffafe 64 ffffff44 ffffff99 fffffe9a 17 24 ffffff9a a -FIXUPS: b35a3 ffffff59 1b 1b fffffd21 c 75 d 16f7 a4 22 fffffa9b 51 2b -FIXUPS: b45de 33 1c 1a 14 e 14 e fffffc45 d 2b 1a 1f fffffee9 fffffead -FIXUPS: b41ca fffffe7e fffffd2f 1a fffffb77 17 67 e 177 1a 1d 19c2 9 e -FIXUPS: b5524 29 4d fffffc51 c2 75 c 1e 77 c fffffd3a 38 fffffd88 44 fffffcdb -FIXUPS: b4bf8 10 18 a1 3e 24 d 41 34 fffffd6a 78 10 18 e 1717 fffffd1d -FIXUPS: b601f 19 31 1e 2d 10 9 37 fffffeaa ffffffaf 26 fffffe21 1a 65 1d -FIXUPS: b5e6b c 10 c fffff8cd c5 92 10e 49 c6 4f fffff8ed 14 18 18 fffdbe61 -FIXUPS: 9130e 59 59 66 ba 20 e 2e 131 7c de a3 20 4e 62 2533f 47 3e 110 -FIXUPS: b6aeb fffffa58 133 ef 21 26 10d aa 1f fffffa5d 1c fffffdde fffdcbcd -FIXUPS: 92dff c c c c 18 38 43 18 5b 1c 2f bd a1 b 28 11f 30 30 13 23 10 -FIXUPS: 932e6 ffffddc9 1c 39 3e 67 19 70 26 1182 17 3c 21 8b 28 ab 19 8e -FIXUPS: 92672 10 19 98 bb f3 48 6c 1d 35 1a 41 26 59 7a 98 43 14 f 51 33 -FIXUPS: 92d12 57 ffffeed5 5a 32 16 1d 22 29 26 23 22 2b 7d 66 2c a0 1f -FIXUPS: 91fde 43 c 19 44 24 45 52 4a 75 5b 33 34 5d e 76 2d0f 10 10 ffffe23c -FIXUPS: 93328 17 39 21 1b 32 e 54 38 ca 272 ffffe1b6 16 17 3a 39 38 16 -FIXUPS: 91a77 3e 39 38 16 17 39 26 b 62 314e 55 b 55 b 55 b 55 b 55 b 19 -FIXUPS: 94f76 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -FIXUPS: 94887 2f b 2f 13 2d 30 13 2d 30 13 2d 30 13 2d 30 13 2d 30 13 2d -FIXUPS: 94b90 13 2d 30 13 2d 62 b 55 b 55 fffff5f8 7a 6c 45 12 2f b 44 -FIXUPS: 94527 2f b 44 12 2f b 44 12 2f b 44 12 2f b 44 12 2f b 44 12 2f -FIXUPS: 94831 44 fffff77d 12 18 29 12 18 29 12 18 29 12 18 29 12 18 29 -FIXUPS: 941a3 18 29 12 18 29 12 18 29 12 18 29 12 18 29 12 fffff7ce 28 -FIXUPS: 93b60 28 28 78 2f 38 93 22 18 4b 15 18 29 12 18 29 12 18 29 12 -FIXUPS: 93ecd 29 12 18 29 15 18 29 12 18 2410 47 30 13 23 10 10 ffffefd6 -FIXUPS: 95494 3b fffffc59 14e 1e c 5a b8 9 ffffe4c5 60 28 28 28 28 28 28 -FIXUPS: 939f8 28 28 28 28 28 28 1e34 1f 50 69 1ed 63 3b 40 5b 5b 36 168 -FIXUPS: 95f34 ab 11 41 e4 13 4f e 1c 10 73 14 16 14 16 14 96 2d b 61 13f5 -FIXUPS: 977c3 fffff66a 1c e3 7c fffff863 bb 38 38 92 35 10 3f0 7 ffffe75e -FIXUPS: 95578 16 17 39 26 b 4b 29 38 77 30 17 3c 21 e0 1b 267c 77 33 17 -FIXUPS: 9802f b0 f7 1c 8a f4 13 2d 13 ffffece9 1c 60 72 8c 30 17 21 d2 -FIXUPS: 97380 7e b5 51 47 25 34 37 79 12c 18d6 10 10 fffff5ea 37 29 c6 -FIXUPS: 9879d 21 29d 25 13 fffff9f6 6a 3c 2e 6d fffff226 96 136 30 17 21 -FIXUPS: 97bc1 33 11d 75 30 26 5a 59 35 174d 123 17 55 17b 40 8e 31 38 13d -FIXUPS: 99bc0 30 13 23 10 10 ffffee8c 16 17 35 26 b 4b 29 93 30 17 3c 21 -FIXUPS: 98ff0 30 13 140c 31 30 13 2d 13 23 10 10 ffffeb6c 16 16 17 39 26 -FIXUPS: 9914f 4b 29 47 74 30 17 3c 21 a6 19 27 25 b7 35 1f 8f 746 1a 18 -FIXUPS: 99d8c 29 4f 79 30 17 3c 21 80 2a 41 65 31 2b 2b 15 28 3f 28 2b -FIXUPS: 9a1ef 3f 28 76 37 28 3b 28 a8 671 22 19 48 1dd 1a 51 4d d8 50 15b -FIXUPS: 9b0f4 17 23 23 112 7e 17 23 23 169 29 30 13 23 10 10 ffffe71c 16 -FIXUPS: 99c9f 3d 26 23ee 30 30 13 23 10 10 ffffe3bc 16 17 49 26 b 4b 29 -FIXUPS: 9a696 1c 1c 96 30 17 3c 21 115 19 af 19 17 35 b 22 25 fb6 13 16 -FIXUPS: 9bab4 13 16 3b 61 14 5a 13 16 15 13 16 13 13 16 28 81 13 16 2f -FIXUPS: 9bda9 2a cc 13 48 13 2e 6f 60 6f3 16d 13 1a 14c 2d 30 13 23 10 -FIXUPS: 9ca96 ffffeaec 16 17 39 26 b 4b 29 19 1c 96 30 17 3c 21 a4 4e 30 -FIXUPS: 9b931 29 ad 1816 5a 24 1c 1f 1c 18 1c 2b 1c 3e3 1d2 2e 30 13 23 -FIXUPS: 9d9c6 10 ffffe7fc 16 17 3d 26 b 4b 29 93 30 17 3c 21 88 1b18 28 -FIXUPS: 9e010 13 23 10 10 ffffea5c 16 16 17 3d 26 b 4b 29 b2 30 17 3c 21 -FIXUPS: 9cde7 9e 35 1f 1a4 1c 67 1c 63 1c 66 4c0d 34 9 9 39 23 30 13 2d -FIXUPS: a1f33 2d 13 2d 13 ffffba4f 16 16 17 39 26 b 7d 6d 30 17 3c 21 88 -FIXUPS: 9dcf9 ac 14c 11 35e5 1c 17 15 35 19 134 22 b5 e3 8d 72 1d 2c 67 -FIXUPS: a1a3f 36 9 84 5a 21 2b 19 32 1e 68 9 53 39 55 1c 35 ffffec3b 14 -FIXUPS: a0a29 3d 18 3e 30 ba 87 21 62 c 57 34 16 16 ca 96 6a 19 68 2f c -FIXUPS: a1028 44 1e 12 4d 14 12e 69 b0 ffffeeeb 2f 17 3b 17 10 52 1c 6e -FIXUPS: a03ca 32 59 57 9 1d 19 15 c9 90 16 9 aa 41 1d 29 1d 1d 39 84 96 -FIXUPS: a0956 c ffffec2a 29f 8b 36 58 36 11 64 3d 1b b6 3d 90 3d 8c 3d -FIXUPS: 9fd60 3d 90 3d 98 3f b6 d 17 2f 10 16e 42 7 b c ffffea20 44 8b -FIXUPS: 9edac 1c ee 91 1b aa 3b 16 19 18 2f 15 19 23 27 74 11 3d fb 28 -FIXUPS: 9f32b 11d 28 11 38 2a 15 28 11 fffff2c7 9 26 28 22 31 3b 15 16 -FIXUPS: 9e932 c 28 22 31 3b 18 18 30 c 28 2f 18 28 2f 18 28 1d 18 36 2d -FIXUPS: 9ec0c 21 fffff7d2 9f 1a 2d 20 36 18 3f 9 c 2f 4b 1a 16 2a 9 9 9 -FIXUPS: 9e6d7 9 13 9 9 9 28 13 11 c 28 2f 10 9 3882 21 1b 32 e 54 9b 13 -FIXUPS: a21e4 2b 13 e 5a 2b 3e 51 ffffbd3c 32 18 33 18 45 71 45 5b 46 33 -FIXUPS: 9e2fb 21 65 2a 2a 461e 13 e 2b 13 e 5a 2b fffffb5d 16 17 35 21 -FIXUPS: a26e0 32 e 54 fffffc2e 16 17 3d 21 1b 32 e 54 7d 1d 73 fffffa09 -FIXUPS: a2008 17 fc6 1b 32 e 54 50 2f b0 40 11 19f 73 fffff7fc 16 17 35 -FIXUPS: a2ca5 1b 32 e 54 84 ae fffff99c 16 17 39 21 1b 32 e 54 16c7 1e -FIXUPS: a4067 13 1e 16 1e ac2 db8 eb0 e5b ffffbe21 16 17 35 21 1b 32 e -FIXUPS: a35a4 48 9e 10 1c 111 ae 51 3b fffff661 16 17 35 7a84 25 27 24 -FIXUPS: aaaea 81 18d 12 39 13 ffff8d1a 7 46 13 6b 34 34 34 31 ee d 32 1c3 -FIXUPS: a3f22 13 1e 2a 13 1e 16 1e 2a 6302 24 36 52 4d 38 65 25 27 35 9 -FIXUPS: aa57e 9 4c 37 9 67 25 27 24 35 52 50 37 69 25 27 24 35 52 50 37 -FIXUPS: a9bb3 24 36 52 4d 38 65 25 27 36 51 4c 38 66 25 27 24 32 85 91 -FIXUPS: aa0e3 27 24 36 9 53 9 50 38 9 68 25 fffff1c1 50 9 4d 36 9 61 25 -FIXUPS: a963a 36 51 4c 38 66 25 27 24 36 9 53 9 50 38 9 68 25 27 24 32 -FIXUPS: a9ad6 91 25 fffff1d5 45 51 39 1b 27 1d 62 12 12 41 25 35 7f 84 -FIXUPS: a90d8 27 34 51 50 36 5f 25 27 34 51 50 36 5f 25 27 34 1c1c 5d 59 -FIXUPS: ab189 3a b3 74 706 30 13 ffffcce4 26 32 fe 38 4a 38 5c 38 4a 38 -FIXUPS: a8aab 38 4a 38 5c 38 4a 38 19 3c 40 47d8 12a 204 19b 30 37 3f 37 -FIXUPS: adbaa 4f 29 71 24d 30 26 10 10 ffffdb0a 4b 8c 30 17 21 166 50 fffff0bb -FIXUPS: aaf48 30 17 21 b9 18 1dd3 3e 15 28 2d 1c 15 9b 22 60 43 28 2b d -FIXUPS: ad0f7 15 28 58 c5 1b 2f 32 14 2f 3e 2a 13 a 89 22 22 39 fffff450 -FIXUPS: ac913 22 46 2d 26 15 28 2f 28 1f 28 2c 28 67 15 28 46 28 30 27 -FIXUPS: acc91 28 50 10 27 28 1d 2b 28 3a 1a 1232 30 17 21 ffffddf6 30 17 -FIXUPS: abf24 21 76 b 91 ae 1c 31 30 b4 a9 7f 28 b9 d2 2f 39 1f 19b 76 -FIXUPS: ac7d1 84 28 3c 1d fff54a63 13 1d e 13 1f e 32 e 13 1f 30 30 ad247 -FIXUPS: ae72f 8f 30 17 21 bb 42 fa 22 1b6 9d e2 1a 25 107 196 13 ffffef0d -FIXUPS: 1079 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 18 13 1d 13 1d e -FIXUPS: 1259 13 3d 2c 24 e 13 1656 29 d 21 22 e 13 1f 35 6b 30 ffffe9e0 -FIXUPS: 14f3 1c 1c 1c 1d a 10 15 f 10 15 20 42 e 22 50 e fffff96b 27 f -FIXUPS: 253c 10 1d 8 5 28 d 2e 2d 23 d 27 1c e 42 26 d 1d 23 1c 36 d 4f -FIXUPS: 27f7 7b d 4a 20 12 1b 2d d fffff818 d a 18 b b 19 35 5 17 b 38 -FIXUPS: 2279 5 1b 8 b f 28 d a5 15 1a 1b 36 23 d 63 15 2c d 18 fffff8ed -FIXUPS: 1e22 d a 9 e 5 24 23 48 d 1e 17 33 10 19 25 b 13 10 2b d 31 d 34 -FIXUPS: 208c 2c d 13 2e d 20 fffff846 23 36 d 2a 23 3e 4f e 5 a d 28 42 -FIXUPS: 1b87 1e 9 90 5 66 c c 14 1f 39 1c 11 13 32 d 32 d 10be d 53 13 -FIXUPS: 2f29 d 6c d d 36 d 43 d d 7b ffffe63b 27 f 21 30 30 70 30 29 14 -FIXUPS: 18be e 14 5 38 1f 20 1203 53 d 43 d 53 10 10 d 11 6 10 29 d 10 -FIXUPS: 2d82 10 10 e a d a 3b 12 a 6 19 e a 6 24 13 67b 22 23 2d 23 16 -FIXUPS: 3601 1a 3e 23 16 12 2f 26 23 16 90 67 10 10 23 20 1b 5 5 18 16 -FIXUPS: 38e7 12 e 13 fffff238 2f65 ffffd645 36 27 f 21 30 e b 37 29 16 -FIXUPS: 325d 15 14 e 5b 9 1a 6b 20 2c 23 16 b 27 10 37 1d 31 23 16 21fd -FIXUPS: 5705 1f 6 2f e 14 5 39 11 5 31 9 a 6 a0 11 19 37 9 a 6 46 40 1d -FIXUPS: 59e9 12 11 4b 22 e 13 fffff950 b 1f 6 24 6 27 1e 11 4f 11 b 12 -FIXUPS: 5529 12 3e 11 b 8 7c 11 b 10 10 f f 24 d 15 6 1d 6 fffff7c8 25 -FIXUPS: 4ee4 b 33 d 52 d 1f 28 34 11 bf 11 b 54 11 3f 11 4f 11 b 8 b 71 -FIXUPS: 52aa 6f 11 b 18 1f 6d fffff757 11 18 19 19 e 10 30 11 4f 11 4f -FIXUPS: 4caa b 11 18 19 19 e 10 2b 11 4f 11 b b 8 b 33 d 4d d fffff87e -FIXUPS: 4739 11 6f 11 8 10 77 11 8 10 87 11 b b 28 21 11 b 8 10 3a 18 19 -FIXUPS: 4a31 58 11 2f 11 2f 11 b fffff7ac 78 39 d 12 3a d 21 11 b 12 82 -FIXUPS: 44ca 3f 11 b b 8 b 33 d 3d d 1d 14 b 33 d 40 d 1f 49 fffff6eb 18 -FIXUPS: 3e16 4d d 5d 10 10 10 3b 77 d 4a d 29 d 20 13 24 58 b1 13 b a 10 -FIXUPS: 424e d 10 2e 13 b a 2776 15 23 d f 1e 8 d 29 27 1b 18 b 2b ffffcdc4 -FIXUPS: 3945 6 ae 9b d 68 25 d 1a 5f d a3 d 83 d 63 d 2972 2a d 1a 2d d -FIXUPS: 6782 1b 2a d 2b d 20 2a d 17 15 2c d f 22 37 d 10 c 33 d 20 8 d -FIXUPS: 69f7 29 fffff934 2b a 12 f 2f e 1e c d 11 14 3a a 49 d 23 1d 1f -FIXUPS: 6549 f 33 d 3b d 2f d 4b d 1e 27 1f fffff8f1 e 10 10 f d c 27 d -FIXUPS: 607e 36 d 29 d 35 d 2a 6 3f 2d 1e 14 42 d 17 55 6 28 6 30 6 19 -FIXUPS: 5af0 3c 1d 10 58 28 10 31 1f 40 e 10 27 d 17 1c 18 a 24 d 42 2d -FIXUPS: 5ddb 14 65 19 3b 9d a 9 f 12 1200 23 2d d 11 26 5c 23 1b 46 d 3c -FIXUPS: 7343 14 27 2f 3c 23 1b 32 23 47 1f 1b 2a 22 e 13 1f e 13 ffffe52f -FIXUPS: 6d8c 1b 58 d 2d 12 4e 30 2c 17 d 20 10 19 c 10 1d d 2c d 28 10 -FIXUPS: 7021 c 3c 23 1b c 3e d 11 44 2cfc e5 49 5c 10 9 36 d 94 130 2e -FIXUPS: a234 77 20 d 21 c 22 ffffc88b 27 f 21 49 27 f 21 30 e 18 e 26 36 -FIXUPS: 9926 43 13 4d d 53 13 d 10 d 27 44 1d 17 42 52 13 d 10 d 66 d 1a -FIXUPS: 9ca9 13 d a0 13 d a0 10 9 fffff6aa 2d 23 2d 23 2d 23 3d f d 24 -FIXUPS: 966d 1a 2b d 51 d 2c e 1a 1d 9 84 2e e 4a d 16 25 13 d 10 fffff22c -FIXUPS: 8b4d 10 32 14 d d 1c 29 1b d b 2cd a 75 23 d d e 14 15 14e d 98 -FIXUPS: 92be 2e d 71 d 55 6d 90 ffffee66 6 ad 45 8 1a 90 29 32 23 d 10 -FIXUPS: 857c 19 35 4f 38 51 54 43 62 5a 5c 36 60 62 c7 45 b 1a 8f 23 fffff3b0 -FIXUPS: 7f0e 23 d d d 1c 20 d 20 2b 2d 23 1b d b 2f 3d 6 1d 48 6 36 37 -FIXUPS: 81ec 34 6 57 6 1e 50 6 fffff85c 13 7d d 3a 15 36 34 23 1b d 8 1b -FIXUPS: 7d49 23 1b d 14 9 6 22 23 13 1a 23 13 a 15 8 f a 1a fffff850 1d -FIXUPS: 7759 23 1b d 30 3c 29 23 16 c 1b 23 1b 8 12 29 d 53 36 49 23 1b -FIXUPS: 7a44 f 45 36 2b 23 1b d 2c07 2e c b 28 d 34 25 d 15 2d d 1d 12 -FIXUPS: a8f5 b 6 63 d 21 ffffcc32 16 6 13 12 30 2f 23 32 20 d d 2d3f b -FIXUPS: a452 14 25 d 4d 2c 23 25 e 1c d 2e d 17 27 c b 9 1d 1e a 6 25 c -FIXUPS: a6b0 2b 1e c b 2e 6e99 13 1f e 13 1f e 13 1f 13 1d e 13 1f e 13 -FIXUPS: 11739 13 1d 13 1d 13 1d 13 1d 13 ffff8b3d e 10 29 61 38 6e14 34 -FIXUPS: 1127e 15 c 17 3b 38 26 1d 2f d 11 5e 1f 10 6 36 d 20 2a 12 e f -FIXUPS: 11527 22 e 13 1f e 13 1f fffff84d d 10 b 11 17 37 43 1f 36 23 d -FIXUPS: 10f99 26 1b b 19 17 63 d 5c 13 13 43 18 2e c 22 22 24 16 1d fffff7fb -FIXUPS: 10a54 35 26 1d c 37 11 f 1e 6 18 d 20 31 12 2a d 27 13 10 10 11 -FIXUPS: 10c96 46 5a 23 d 23 14 2c 2a fffff88c 32 23 d d d 8 10 13 8 b 21 -FIXUPS: 10767 30 d 42 1a 17 26 17 43 1d d 12 20 36 1f 21 30 30 23 16 fffff8e3 -FIXUPS: 10308 d 34 19 11 b 2b 26 1b 13 33 14 13 1b 23 11 35 c 22 22 24 -FIXUPS: 10565 1d 6 34 d 15 c 17 2f 29 fffff887 d e 2d d 37 d 43 d 20 13 -FIXUPS: 1000c 10 11 19 46 5a 23 d 23 14 2c 2a 23 d 10 b 11 17 37 43 1f -FIXUPS: fb22 e 2a c 27 20 d 4d 20 d 25 30 12 13 13 8 24 d d 10 20 d 56 -FIXUPS: fda7 18 40 3d d 27 d 25 12 fffff89b 1a 17 34 42 d 1a 35 d 47 6 -FIXUPS: f8c4 1c 6 16 20 32 17 1e 20 d 25 34 26 1d 2f d 17 2f d 29 d fffff95e -FIXUPS: f486 13 a 14 20 6 17 2e 37 26 1d 2f d 17 2f d 11 d c 10 c d c 17 -FIXUPS: f6b8 b b e 3e d 15 fffff9ad 2f d 1a 1f 13 1e 1d 9 e 25 c 42 d 2b -FIXUPS: f299 23 1d 2f d 15 15 20 1f b 1f 13 18 23 1d 19 29 fffff921 28 -FIXUPS: edd5 21 12 a 1d 2a 23 1d 2f d 12 15 1f 13 17 6 1e 23 1d 2f d 12 -FIXUPS: f00c 1f 13 13 a 1d 31 23 fffff93d 2f d 11 23 23 1d 2f d 10 c 3e -FIXUPS: eb61 28 23 13 10 1a 23 1d 2f d 11 1e 20 6 1f 23 1d 2f d 15 fffff952 -FIXUPS: e6eb d 10 c 3e c 1b 23 1e 12 2f d 15 c 26 17 6 1d 23 1e 12 2f d -FIXUPS: e92d c 26 13 a 1d 30 23 fffff946 d 21 14 14 21 23 1d 16 9 21 d -FIXUPS: e459 20 1b 21 20 6 1e 23 20 17 17 2d d 19 1b 46 24 27 23 1e fffff7a4 -FIXUPS: de59 f 1c 29 5f a9 47 f 29 b 6 24 29 37 23 1b 12 1e 17 23 d 45 -FIXUPS: e1d0 39 11 9 26 23 1b 10 29 fffff7ed 30 2c 26 19 21 26 32 23 d -FIXUPS: dc2a d e 3e 1d 28 d 2d d 15 b 6 e 1a 22 b 6 29 23 32 23 d fffff7e6 -FIXUPS: d656 33 26 1d 2f d 11 20 6 11 c 4a 49 16 82 d 43 32 10 c a 20 d -FIXUPS: d99a d 3b d 2a 30 e 19 fffff797 32 1f 21 23 1d 1b d 58 f 9 48 16 -FIXUPS: d3cc 1c 36 d 1f 17 9 1f 26 1b b 17 72 22 2d c c 3d d fffff806 23 -FIXUPS: ce45 24 12 29 65 26 1e e 1e 26 32 23 d 39 d e 46 28 d 2d d 11 14 -FIXUPS: d142 27 12 1e 12 1e 30 fffff89e 3c d 1c b 19 22 9 23 14 9 6 29 -FIXUPS: cbc3 23 11 9 6 2b 38 23 1b 33 d 28 9 21 13 10 11 19 38 fffff96f -FIXUPS: c740 9 1d 14 9 6 22 2e 23 1d 13 19 6 1d 31 23 16 2a 22 2b 23 1b -FIXUPS: c9b3 2a 19 9 27 9 6 24 23 fffff8b1 57 49 30 27 29 3c 23 1e 10 10 -FIXUPS: c4f4 16 13 13 b 19 1b 2c 1b 26 2d 23 19 24 23 1d 16 2c 9 19 15 -FIXUPS: bf4b 26 28 23 1d 30 23 1e 1f 23 32 23 d 39 d e 3d 28 d 2d d 1a -FIXUPS: c21b 1e 23 32 23 d 10 b f 1c fffff890 a 20 d 1e 13 10 11 19 38 -FIXUPS: bcc5 23 d 24 2a 23 d 10 b 11 17 37 43 1f 33 23 d 27 19 11 b 2b -FIXUPS: b889 23 1e 24 9 22 23 1d 10 17 6 23 23 1d 10 13 a 1d 26 e c 26 -FIXUPS: babc 1b 10 6 11 6 45 12 13 13 fffff96a 10 30 2f 9 f 34 9 f 3b 17 -FIXUPS: b623 13 36 d 3b d 1e 24 d 1e 24 d 2a 23 13 c c 22 e 19 3a fffff8ad -FIXUPS: b12c 30 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 13 1a 20 d 20 2f -FIXUPS: b3ed f 34 9 f 31 2d 23 d fffff7b2 21 49 27 f 21 49 27 f 21 30 2c -FIXUPS: ae5c c d 14 23 34 d 25 32 1f 32 39 3f 2c 50 11 10 b 12 29 8388 -FIXUPS: 13499 14 2a 22 e 13 1f e 13 1f 13 1d 13 ffff7416 27 f 21 49 27 -FIXUPS: aaa8 21 49 27 f 21 49 27 f 21 49 27 8474 16 16 1b 28 14 3d 27 2c -FIXUPS: 1320d 1b 20 31 26 1d c 36 14 f 23 6 11 20 2e 12 2a d 27 16 9 21 -FIXUPS: 1346f fffff92a f a 9 1e 23 1b d 13 b 30 22 35 23 1b d b 22 3c 18 -FIXUPS: 12f9f e 11 a e 50 d 46 26 1e 10 d fffff91a a 20 d 20 f 20 d 45 -FIXUPS: 12b01 d 1f c 6 c 6 2f d 43 d 2c 13 2d d 15 10 11 19 46 57 23 d -FIXUPS: 126cd 6 18 2f 1f f 9 c 20 d 14 2d c 24 2e 16 12 1e 1f 20 d 48 b -FIXUPS: 12929 12 13 30 d 18 8 24 d fffff990 1d 2f d 2a d 18 c 1d 1c 18 -FIXUPS: 1247d 15 c 1b 16 d 12 20 d 14 1f 2b 18 c c 19 2f a 64 d 3d fffff950 -FIXUPS: 1201c 1d 2f d 2c 23 d 11 9 1e 23 32 23 d 15 9 2d 23 1b d b 2a 22 -FIXUPS: 122a3 d 1c c c 1a 6 45 fffff8b9 a4 28 d d 1d 13 1a 20 17 40 23 -FIXUPS: 11de7 10 2f 61 d 26 16 19 23 1d 2f d 15 d b c c a 18 6 96b7 13 -FIXUPS: 1b6b9 e 13 1f ffff6149 27 f 21 49 27 f 21 30 e 19 2a d 70 32 23 -FIXUPS: 11aaa 2f 26 32 20 d 36 d e 46 9452 22 23 32 23 d 76 22 33 23 16 -FIXUPS: 1b1fd b 36 6d 42 46 ab 1e 25 b9 1f 1f 5a 30 35 22 12 1e 20 e 13 -FIXUPS: 1ab1f 45 46 2f 20 23 16 b 3a 1e 31 cb 28 e 14 31 2d 2c 45 1f 10 -FIXUPS: 1aee9 10 35 23 d 32 35 d 27 23 13 fffff540 20 d 3a d 26 23 16 1c -FIXUPS: 1a68e 2b 23 16 14 20 d 20 37 d 20 10c 36 23 16 b c 11 37 d 26 115 -FIXUPS: 1aafc fffff6cb b b 27 16 12 24 15 23 2b 1f 17 53 2d 23 1f 20 d -FIXUPS: 1a3f5 34 23 16 10 14 20 d 1f 1d 18 22 1d 10 fffff866 1f 20 d 28 -FIXUPS: 19e62 25 2f 33 23 16 c 14 20 d 1d 19 1d 1c 2a 10 25 23 3a 29 17 -FIXUPS: 1a0ea 1d 2d 1d 38 23 fffff7a6 23 d 2f d 32 25 3c d 35 2d 2e 36 -FIXUPS: 19b31 30 1e 24 d 3b d 2d 36 d 31 21 24 d 3b d 24 23 1f fffff76e -FIXUPS: 19527 d 26 20 d 1b 17 10 c 18 20 2c 23 1c 2c d 2e 3a 23 1c 19 12 -FIXUPS: 1978c 12 3b 23 3d d 66 d 44 fffff84f 2a 3c 11 33 10 14 20 d 16 -FIXUPS: 1926e 25 13 23 23 1f 20 d 1d 34 23 13 10 17 1c 14 2f 21 1c 27 23 -FIXUPS: 194eb fffff96e d 29 d d 12 9 11 18 19 f 12 1d 35 1b 25 23 13 14 -FIXUPS: 19023 d d 16 d 31 d f 19 19 1d 23 20 fffff93a 23 1b 27 32 1f 10 -FIXUPS: 18b6b 17 31 d 13 2f 18 8 1d 1a 25 1a 1a 25 45 d 1d 29 d 11 2f 25 -FIXUPS: 18df3 1d 23 fffff849 2f 1a 1a 17 33 23 1b 27 20 1a 19 3a 1d 3a -FIXUPS: 1887f 16 e 26 19 a 18 1d 38 23 32 27 24 23 1b d 1c fffff759 23 -FIXUPS: 181f2 2d 23 d 10 56 a4 23 16 b 12 21 3b 5e 23 1b b 27 1f 1e 22 -FIXUPS: 1855a 2f 30 18 d 1b 23 16 27 fffff672 20 d 1d 35 d f 33 23 2d d -FIXUPS: 17e1d d c 43 23 1b b 25 d 5b 22 47 d 39 23 d 58 1a 93 25 22 fffff79f -FIXUPS: 17926 37 31 23 d 2b 23 32 23 d 15 11 d d 1b 23 32 1f 1a 21 21 23 -FIXUPS: 17bd2 14 22 1c 25 18 d 1b 23 fffff7fa 22 60 3c 3c 1d d 31 1d d -FIXUPS: 17666 48 e 2d 15 1b 23 16 11 d 10 31 25 15 1b 1a 18 d 54 23 16 -FIXUPS: 17900 fffff604 d 95 36 9e 24 10 12 33 a3 11 15 1b 4e 20 1f 44 20 -FIXUPS: 172e9 40 15 1b 15 1b 29 3e 23 d 38 23 d d fffff5ae 6 20 30 2c 35 -FIXUPS: 16b10 43 d 1a 1a 17 19 23 74 d 14 27 17 24 27 3e 13 45 28 10 20 -FIXUPS: 16e00 80 13 b 34 fffff623 49 37 c 2f c 1e 16 13 43 1a 5b 9e 14 -FIXUPS: 16789 11 1f 30 30 30 30 23 41 d 38 d 31 d 39 1e 47 18 fffff6c6 -FIXUPS: 160ef 6 20 b 26 3d 40 e 1e 6 c 13 23 e 2c d 3c 41 19 32 24 1a 68 -FIXUPS: 163f2 d 21 16 18 d 67 8 fffff5a8 3e 23 d 3b d 10 58 d 13 39 6b -FIXUPS: 15c63 7a 21 24 6a 2e 40 e 60 41 5c 32 21 1a 61 6 79 1d 13 25 fffff684 -FIXUPS: 15740 1c 17 d 15 12 14 20 d f 18 30 46 1d 1e 15 33 d 15 1c d 1e -FIXUPS: 15989 30 d 22 15 12 a 15 1b fffff911 16 39 11 16 39 1b 25 23 13 -FIXUPS: 15497 1d 1d 1d 2b 11 1b 2c 21 17 1e 17 2a 20 d 14 30 46 14 17 15 -FIXUPS: 1571e fffff78b 34 d 4a d 46 d 1a 20 d 23 16 23 2d 20 d 5c 2d 20 -FIXUPS: 15147 53 d f 23 11 1f 17 19 30 80 30 30 fffff6ba 31 d 1d 6 8 4b -FIXUPS: 14ac4 50 13 17 22 d 35 d 6f d 50 d 2f d 32 d 2f 32 30 d 3b d 43 -FIXUPS: 14e39 2f fffff801 2f d 48 23 d 48 23 d 2f d 38 22 15 32 12 f 18 -FIXUPS: 148bb a 20 d 2f 30 d 1a 18 6 8 10 1c 2c fffff65b d 5b 50 40 30 -FIXUPS: 141a9 30 23 1a c e 3d 3f 7d 23 30 d 80 19 a7 d 38 23 d 38 23 d -FIXUPS: 145ee 23 d 3e fffff5fa 12 c 25 d 20 15 2e 20 23 67 1d d 2f 23 d -FIXUPS: 13e69 2d 16 19 8 c 22 3c 19 11 28 2d 23 d e 29 fffff6cc 30 e 16 -FIXUPS: 1375a 2f 2c 126 3e 2d 23 d 27 d e 1b 2b 14 15 30 1b 1a 5e 1d d -FIXUPS: 13b43 23 d 36 50 2d 23 8607 29 16 d 10 d b cc f e f f f f f f 46 -FIXUPS: 1c471 33 ac d aa 22 e 13 ffff6fa8 27 f 21 49 27 f 87a6 1a f 22 -FIXUPS: 1bedd 6c 23 16 22 d 60 29 4f 23 16 b b e 30 2c 1a 14 24 b 13 10 -FIXUPS: 1c1e3 d e 1a 1d d fffff737 2c 50 29 60 1b 10 22 d 32 38 27 10 8 -FIXUPS: 1bb99 1d 29 12 22 46 23 32 23 d 1b 70 23 4d 23 32 23 d 5ac2 59 -FIXUPS: 2199c 1b d 10 d b 1a 27 d 58 d 3e d 2629 d 27 ffff760b 27 f 21 -FIXUPS: 1b7f2 27 f 21 30 e 30 2a d 5c 5b09 d 1d 94 d 2a 1e 1a 2b 26 1d -FIXUPS: 215fb 39 3c 49 23 ab d 2d 22 d 11 22 1f 15 10 1d d 2f e 1f 17 ffffbb8e -FIXUPS: 1d49f 3e d 3b41 d 21 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 -FIXUPS: 21263 1d d 68 d 44 7a d 50 ffffbc0d 2e 27 c2 d 2d 22 d 15 1e 1f -FIXUPS: 1d211 10 1d d 2f e 1f 17 1c 3f 30 30 23 1b d 10 d b 1a 27 d fffff6d7 -FIXUPS: 1cb59 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 c 1d d 50 d 44 -FIXUPS: 1cea8 d 50 36 d 1d 94 d 9d24 1f e 13 1f e 13 ffff58d8 27 f 21 30 -FIXUPS: 1c72c 1b d 10 d b 38 21 2b 21 48 13 4d 28 b6 d b5 32 d 47 9f10 -FIXUPS: 26a0f b a 21 12 27 1f 15 16 19 22 1a 1f 3d e 32 e c 24 22 e 32 -FIXUPS: 26c6c 1d e 13 1f 1b d 18 e fffff8ee 54 13 2d 23 d 32 23 d 18 13 -FIXUPS: 26769 20 23 13 18 1d 10 29 27 23 d 3b d 28 25 30 2a 23 d 2c 23 -FIXUPS: 2607e 23 d 2c d 10 1f 15 57 23 d 129 7e 2b 25 23 1b 1c 56 27 23 -FIXUPS: 264b0 d 49 d 17 1d b d 8 5b 36 fffff5aa d 1a 20 d 1d 20 36 23 32 -FIXUPS: 25ce1 d 2c d 2b 20 d 1a 20 d 1d 22 54 23 16 d 15 57 23 d ee 23 -FIXUPS: 25747 22 23 2d d 1d 28 22 27 23 d 35 23 2d d 1d 28 22 27 23 d 35 -FIXUPS: 25a2c 20 28 35 23 32 23 d 2c d fffff75d d 1a 38 47 1f 23 2d d 10 -FIXUPS: 253fe 33 17 20 1b 27 23 d 1e 1f 17 6c 2f 23 d 15 62 20 d 1a 29 -FIXUPS: 25739 fffff6b0 1d 22 5b 36 30 23 2d d 27 d d 20 17 20 1b 16 2e -FIXUPS: 2504c 1f 17 38 3a 17 3a 2f 23 d 15 32 38 81 fffff5ce 94 23 d 14 -FIXUPS: 24969 23 56 23 d 2f 58 23 5d e 29 32 23 d 15 42 2f 29 19 88 d 3f -FIXUPS: 24d69 2a 23 d 15 fffff691 2f 3e d 3f 17 23 32 20 d 13 1a 41 23 -FIXUPS: 2466c d 20 23 20 d 20 13 40 d 13 1d 10 8 36 22 23 39 5e6c c 1f -FIXUPS: 2a71c 1b 5 5 18 e 13 1f e 13 ffff99c8 27 f 21 49 27 f 21 49 27 -FIXUPS: 242f8 21 49 27 f 21 30 e 29 5ec0 2c d 17 25 28 2d 2f 30 23 31 2c -FIXUPS: 2a499 41 23 d 2a d 31 d 43 d 11 c 16 18 2f d 34 d 22 10 fffff7b5 -FIXUPS: 29eb2 d 16 d 21 d 2c 26 11 f 27 23 16 2f d 71 4a 6 9 f 4d 65 23 -FIXUPS: 2a20a 1e 11 1d 20 2a 19 16 fffff82a 32 d 1e 6 20 d 2c 22 15 6 33 -FIXUPS: 29c32 27 23 32 23 d 34 d 16 24 d 28 25 6 9 f 28 23 32 23 fffff8fb -FIXUPS: 29784 2f d 1e 6 20 d 30 22 15 33 d 31 23 16 38 d 1e 6 20 d 30 2d -FIXUPS: 29a33 d 11 33 d 28 23 14 fffff799 23 3d 1b 11 2d 47 23 32 55 46 -FIXUPS: 2949c 36 3b 18 44 1b 25 23 18 2f d 1e 6 20 d 30 26 11 33 d 31 fffff640 -FIXUPS: 28dac 32 23 d d 6c 32 23 16 b 8 2a 46 24 23 44 27 22 23 3a d 28 -FIXUPS: 29123 23 19 20 1d d 22 2e 2b fffff668 1c 28 19 e 26 32 23 d 79 -FIXUPS: 28a29 e 26 32 23 d 7b 2f e 26 46 26 2c 13 d 14 23 32 23 d d 6a -FIXUPS: 28230 20 d 1d 9 c 2a 29 5c b2 e 24 34 66 c9 2d 42 30 31 21 d 26 -FIXUPS: 28724 3a 21 6a 31 23 d 18 13 a fffff4fa 23 1f 20 d 3c 25 29 32 -FIXUPS: 27ec7 d 3c d 58 a9 37 48 2c 23 16 14 20 d 27 22 9 e 13 23 23 14 -FIXUPS: 28219 fffff7f6 12 10 c 1c d 15 2a 23 d f f 26 13 b 2f 23 d 10 a -FIXUPS: 27bc5 2d 24 d 2f 1b 3c 23 1f 20 d 3c fffff845 2d 23 d f 15 2a 23 -FIXUPS: 27674 10 f e 1e 2a 23 23 24 81 25 23 30 d 80 23 16 2e 19 30 23 -FIXUPS: 279b9 e 2f fffff71e e 1b 33 1d 31 77 20 d 47 2d 20 d e 22 d 21 -FIXUPS: 2737e 31 77 20 d 26 2d 16 19 8 c 22 39 19 11 fffff894 27 f 21 49 -FIXUPS: 26ec9 f 21 30 e b b 33 20 d 14 16 d a 2b 19 a a a 10 b 8 16 2d -FIXUPS: 270d6 d 24 4543 15 12 21 14 e b 46 32 23 d 19 b 2e 29 35 23 d 10 -FIXUPS: 2b86c 12 20 d 12 12 1f 1a 1d 46 1f 1d ffffb425 4586 32 23 d 10 -FIXUPS: 2b3cf 2e d 1a b 19 b 15 20 d 17 b c 1f a 15 27 24 1d 20 d 1a 15 -FIXUPS: 2b5e4 20 d 1a fffff79c 11 94 1d 23 16 35 7e 24 23 1b 10 d 26 35 -FIXUPS: 2b057 12 3e d 7c 29 23 1b 10 d 26 28 d 3a c a6 2e 2c6e 13 ffffc82f -FIXUPS: 2a859 23 1d 5e d 69 6 51 6 98 37 23 16 29 6d 20 b 26 23 16 3c 1b -FIXUPS: 2ac6c 40 9d 23 1b b 28 2ea6 29 14 1c f d 24 e 27 1d 82 2d 2f e -FIXUPS: 2de40 9 20 18 28 e 9 9 20 12 9 9 1f 20 1b 5 5 18 fffff83f 21 23 -FIXUPS: 2d822 e b9 23 16 1d d 10 d 46 11 34 3a 2f 1c 12 1e 26 32 16 e 64 -FIXUPS: 2db96 23 1c 34 1d d d fffff778 d 4c 11 d a 1f 23 2e 16 32 23 d -FIXUPS: 2d56c d 13 20 d 2b 38 16 20 d 3f d 4b d 2a d 2c d 48 fffff8a9 19 -FIXUPS: 2d099 2c 35 23 d 10 b 12 f d d 12 11 b 2b 2c 32 16 15 10 2d 28 -FIXUPS: 2d300 d 13 24 d 17 b 28 fffff7c6 d 14 27 2c 16 34 14 1e 1f 29 d -FIXUPS: 2ccc3 8 11e 26 14 20 d 10 59 26 35 23 d 10 1a c 5f 26 35 23 fffff6f9 -FIXUPS: 2c75d 11 38 32 1d 44 2c 3d d 10 10 2a d 10 2f 17 18 15 20 23 32 -FIXUPS: 2ca21 d 10 e 64 d 12 1a 23 32 fffff653 16 17 c 6c 15 23 13 22 46 -FIXUPS: 2c312 6d 39 23 d 15 11 1b 23 2d 2c 16 18 14 67 e 29 f4 26 32 16 -FIXUPS: 2c6f9 fffff5cf e b 77 13 1c b 23 34 29 32 23 d 1a e 8e 59 d 1a -FIXUPS: 2bfc5 11 39 2f 25 b 1c 13 49 53 2c 16 b 6e96 5 5 23 e 13 1f 13 -FIXUPS: 2b9cc 36 27 f 21 30 1b 20 25 e b 11 26 29 16 e b 6d 13 1c b 23 -FIXUPS: 2bc89 29 7013 5 15 75 48 1d 14 b b 1c 22 b 1a 18 14 1d 17 18 28 -FIXUPS: 32f13 10 f f 23 e 17 c c 14 27 20 1b fffff882 10 2d 38 38 38 38 -FIXUPS: 329ee 38 33 23 13 18 1d 1c 1d 1d 1d 1d 1d 1d 1d 2a 10 29 12 2f -FIXUPS: 32c5f 29 12 17 f fffff723 20 d 27 d 1a 1d d 1a 2e 89 30 30 23 16 -FIXUPS: 32649 23 32 23 d 1d 25 d 20 4c 29 16 b 2a 1d 2f 23 fffff4ed 23 -FIXUPS: 31d94 b b 76 d 37 62 67 6c 23 28 3e 12 37 3e 15 47 1d d 45 35 30 -FIXUPS: 32209 23 16 8a 5d 23 4d 23 fffff3f9 d e 3b 1e 23 194 c 13 29 5a -FIXUPS: 31a92 10 19 19 13 13 13 16 16 16 e e 1e 19 27 50 23 16 1a 69 1c -FIXUPS: 3135a 8 14 48 6 10 6 d b 1b e 3a f 25 11 43 1c 23 16 b 3a 1e 31 -FIXUPS: 3165a 2f 30 30 23 1f 29 d 1e fffff6c8 36 5 b b 21 23 32 28 23 d -FIXUPS: 30ff9 23 32 23 d 10 27 23 d 10 22 35 35 32 10 c 35 4f c6 23 16 -FIXUPS: 309c9 23 2d d d 1d 29 18 14 26 5e 23 2c 11 70 29 32 23 d 2c 23 -FIXUPS: 30ce0 2c 13 8 c 1b c 54 6d f 8 fffff804 16 27 23 d d 8 18 15 e -FIXUPS: 30721 24 c 27 22 26 8 1c 2d e 14 18 a 64 23 2d d 10 18 29 18 26 -FIXUPS: 301ea 8 19 2d 29 24 2a 30 25 17 3d c 1e 37 20 1b 25 40 23 16 27 -FIXUPS: 304dc d 17 19 23 32 32 23 d 17 22 fffff844 21 1b 23 16 27 23 d -FIXUPS: 2ff30 19 23 32 32 23 d 17 22 23 32 16 27 23 d d 8 e c 27 22 26 -FIXUPS: 301a1 1c fffff81f 38 7 9 12 1a 14 d 38 29 2d d 10 10 ca f 1a b -FIXUPS: 2fc35 24 23 4c 1e 23 23 2a d 3e 33 27 23 d fffff511 d 60 23 16 -FIXUPS: 2f3ee 2b 23 53 64 36 36 2a 23 27 25 4c 65 23 15 38 23 15 118 23 -FIXUPS: 2f8ed 5 5 8 1a 23 7d fffff3e7 15 10 24 11 a5 23 d 33 5 35 63 1a -FIXUPS: 2f009 20 23 12 34 d 5a 23 3b c2 23 13 c 1e 23 16 b 24 1c fffff67f -FIXUPS: 2e9b9 29 26 10 1b 12 34 29 26 10 1b 2d 19 22 3e 23 2d 23 16 37 -FIXUPS: 2ec7c 16 b 2c 23 16 6b 5 10 5 5 fffff552 20 d 12 1c 23 32 59 d -FIXUPS: 2e40d 8c 23 32 23 d 43 58 23 45 48 23 4d 23 7d 23 ad 23 4d 23 2d -FIXUPS: 2e92c 2d 5459 10 19 19 13 13 13 16 16 16 e e 1e 30 ffffa109 27 -FIXUPS: 2e018 21 30 10 b 26 55 2a 26 1a 23 5d 23 3e 3f 23 55cc 19 c7 30 -FIXUPS: 33a09 15 46 d 6a 5e 10 2d 35 d 37 d 2d 10 8 18 20 40 23 d 17 27 -FIXUPS: 33d2c 5 18 e 13 38 fffff5bb 1c 40 23 d d 33 2f 21 23 28 25 70 23 -FIXUPS: 335ab 5e 23 2c c 25 23 1b 27 1d d 21 2c 2d 3e 49 23 16 40ab 2c -FIXUPS: 3794c 13 18 1d 1d 1d 10 29 12 2e 5 1d 30 30 30 e 13 1f e 13 ffffb5d8 -FIXUPS: 33159 f 21 50 12 82 2c 78 d 412b 23 6d 23 2d 23 a6 10 10 19 19 -FIXUPS: 37657 13 13 16 16 16 e e 1e 23 32 3b 13 2d 23 d 32 23 d 32 38 fffff607 -FIXUPS: 36efe 23 d 17 2a 6c 23 d ee 23 2a d 2c 32 68 23 16 22 21 1d 1d -FIXUPS: 372dc 29 44 23 32 23 d 2a d 16 fffff439 23 d 5b 9a 2d 23 d 53 33 -FIXUPS: 36a8a 31 2f 27 48 23 30 d 6f 38 ae 23 d 4b 2d 23 d 2c 23 d 10 57 -FIXUPS: 3639e 2a d 14 20 d 3d 1a 2c 23 2d d 10 29 3a 23 2d d 10 29 6a 16 -FIXUPS: 36699 23 1d 16 41 23 d d 35 38 fffff6df 23 16 d 15 5e 47 25 d 2c -FIXUPS: 36049 60 25 d 2c 32 60 23 32 23 d 2a d 14 20 d 3d 1a 2c 23 32 23 -FIXUPS: 35869 d 27 23 d 44 28 2d 56 4d 23 32 23 d 27 d 64 43 23 32 23 d -FIXUPS: 35c1e 2a 71 23 2a d ad 29 46 29 fffff4e8 d d 75 d 20 19 25 33 8 -FIXUPS: 35499 23 42 bb 23 16 25 d 32 23 d 3d 2c b 41 12 1f d 29 1f 19 2a -FIXUPS: 34d54 35 1f 33 67 29 15 a8 21 23 32 23 d 2a d 43 56 1f 3b 44 18 -FIXUPS: 35180 40 5a 2a d 38 23 32 23 d d fffff49e 2c 23 29 114 14 13 10 -FIXUPS: 34990 15 83 31 23 1b 10 b 1e 37 32 23 32 23 d 2a d 85 d e 3d 37 -FIXUPS: 34d2c 13 fffff3bd ad e 26 2a d 35 2c 3c 18 10 1f d 24 23 16 22 -FIXUPS: 34391 138 23 32 23 d 9b 23 32 23 d 10 db e 26 395f 1d e 13 28 10 -FIXUPS: 38172 19 19 13 13 13 16 16 16 e e 1e e ffffbcbb 27 f 21 49 27 f -FIXUPS: 34019 30 11 2d 36 2c 3bcb 6b 19 1d 4a 58 c 10 1d f 6 10 6 26 a -FIXUPS: 37eab 15 35 a e 10 12 27 13 b 14 18 b 12 70 8c 2e 764f 67 1f 20 -FIXUPS: 3f7f7 5 5 5 23 e 13 1f 11 b 54 e 13 1f 11 1f e 13 1f 13 ffff81f6 -FIXUPS: 37bb9 f 21 30 36 1a 36 7735 d 10 27 13 8 e 16 14 c 10 1b 10 1f -FIXUPS: 3f4e6 28 17 1f 1e 2b 1b 10 17 44 2c 16 1e 10 17 2b 2c 16 fffff73b -FIXUPS: 3ee6d 1b 10 17 6a 2c 16 1e 10 17 5c 2c 16 2f 67 25 11 3f 35 3b -FIXUPS: 3f24b d 2d 64 30 30 10 a d a b fffff75d 38 57 23 d 28 10 26 2a -FIXUPS: 3ec39 a d a b 4f d 10 27 13 8 e 16 14 c 10 1b 10 1f 15 28 17 1f -FIXUPS: 3e774 23 d f 6 b 7 d 8 f 15 a 17 4a 1a 24 26 1a 44 22 26 26 2a -FIXUPS: 3e9d7 a 10 d 56 16 3f 13 11 fffff895 17 23 1b b a 8 8 33 b 20 a -FIXUPS: 3e460 18 19 44 1b 19 40 2d 2b 3c 3b 16 3b 50 26 2a 11 13 e c fffff822 -FIXUPS: 3df79 2d 23 d 23 10 8 18 20 28 38 30 23 32 23 d 18 23 23 32 23 -FIXUPS: 3e21e 1a 21 23 32 23 d 15 36 23 fffff836 16 c 35 48 26 1d d 1c -FIXUPS: 3dcc9 23 16 37 23 16 37 10 8 18 20 11 13 10 22 d 15 10 2b 1d e -FIXUPS: 3df09 49 fffff7f2 5 f 1a 97 40 23 32 23 d 10 10 27 24 23 32 23 -FIXUPS: 3d9be d c 16 10 27 25 23 16 b 32 c 6e 23 16 fffff7b6 9 27 1e 17 -FIXUPS: 3d3a8 19 c 32 10 31 32 57 2d 3b 9 2a 1c 1c 1c 4d c 1c 1f 21 20 -FIXUPS: 3d6a4 36 14 14 f 1a fffff8f8 10 1b 5 29 9 a 2d 19 5 15 29 9 a 2d -FIXUPS: 3d168 61 23 28 23 d 2c 23 d 10 b 27 13 8 8 8 8 fffff90c 35 1a 22 -FIXUPS: 3ccb2 5 1e 7 1c 7 6b 1f 40 39 a f 5e 23 1b 1d 23 d 2c 23 d 10 b -FIXUPS: 3cfa2 31 25 1c 5 fffff745 7 b 7 10 37 10 5 21 10 a 3c 6 f 6 10 -FIXUPS: 3c888 40 57 1b 5c 1f 9 14 6d 32 1d 31 17 5c 80 6a fffff89d a 8 -FIXUPS: 3c4d3 2b 10 35 8 a 10 a 20 d d 11 18 25 d 41 c 20 d 1a 13 1e 24 -FIXUPS: 3c6f4 15 21 18 5 8 fffff951 32 14 47 c 8 25 9 14 2b 18 63 c 1a -FIXUPS: 3c268 32 20 5 1a 15 1d 5 89 29 28 23 d 2c 16 b 27 1b fffff899 19 -FIXUPS: 3bd60 1a 6f 40 23 28 23 d 2c 23 d 10 b 27 13 8 8 8 8 16 a 10 a -FIXUPS: 3bfcf d 15 1d 14 5 15 fffff9a8 2c 23 d 10 b 27 13 8 8 8 16 a 10 -FIXUPS: 3bae7 20 d a 10 64 32 14 47 c 8 69 9 14 47 8 14 c fffff8f3 d 12 -FIXUPS: 3b659 2d 32 1b 10 b 8 19 6 19 6 25 39 1a 1a 28 28 1e 10 25 11 21 -FIXUPS: 3b8b4 7f 5 31 23 28 23 fffff8da 28 23 16 10 d 14 26 c 16 1e 23 -FIXUPS: 3b3fe 23 d 10 b 10 18 2e 1a 2d 16 b 1e 2a e 1f 6 18 4f 15 fffff8ff -FIXUPS: 3af0b 1e 23 3a 33 12 1e 23 1b d 1d 23 d 22 23 d 3a 29 23 23 32 -FIXUPS: 3b1d1 d 22 23 d 22 23 d 1d 9 fffff904 f 70 f c 53 23 1b 10 b c -FIXUPS: 3ad08 14 c a 27 23 28 c a 35 33 10 10 19 19 13 13 13 16 16 16 fffff833 -FIXUPS: 3a74c 3f 2e 23 16 8 2a 31 17 18 a 79 32 23 16 15 4a f 48 31 23 -FIXUPS: 3aa92 8 32 f f 48 27 23 16 8 fffff6b0 1f 23 32 23 d 17 5e 24 42 -FIXUPS: 3a3ec 16 b b 8 10 2e 12 24 c 24 19 20 b 99 26 7a 28 23 16 47 23 -FIXUPS: 39dc0 38 5a 9 1e 23 32 23 d 10 1d 23 d 22 23 d 38 73 28 9 20 23 -FIXUPS: 3a0fe 23 d d 1f 42 18 1b 48 2a fffff731 d 22 23 d 67 26 14 1a 2d -FIXUPS: 39adc 32 23 d 10 1d 23 d 22 23 d 38 73 28 9 20 23 32 23 d 22 23 -FIXUPS: 3957c 16 1d 23 d 15 56 1f 23 16 10 2c 1b 23 16 1d 23 d 15 36 1f -FIXUPS: 3980c 16 1d 23 d 15 56 1f 23 16 1d fffff81e 1d 23 d 22 23 d 15 -FIXUPS: 39270 28 21 23 16 1d 23 d 15 36 1f 23 16 b 1d 23 d 22 23 d 15 6f -FIXUPS: 39538 21 fffff8ee e c e c e c 24 10 2d 23 d 31 23 d 10 20 d 10 -FIXUPS: 38ff4 d 42 d 29 11 4f 10 8 18 20 23 16 fffff964 d d 9 c 1d 27 e -FIXUPS: 38b52 b b b 30 23 d 2c 23 d 11 c 1d 30 2c 45 1f e 27 c 1e 20 74 -FIXUPS: 38e39 fffff8ae 17 21 d 2e d 3a d 24 d 21 d 8c 8b 25 e b b b b 30 -FIXUPS: 389d3 d 11 1d 2b e b b b b 30 fffff7f9 36 27 f 21 49 27 f 21 49 -FIXUPS: 38439 f 21 49 27 f 21 30 2b 25 30 23 16 b 11 11 2a 11 2b d 33 d -FIXUPS: 43e1c 2d 10 3f d 3f 23 d 25 10 8 18 1d 23 e e 12 2a 18 e 32 80 -FIXUPS: 44134 6c 117 5 1d e 13 1f e 13 fffff636 f 27 f 20 25 f 15 1e 27 -FIXUPS: 43a88 32 1f 40 70 11 b 20 24 30 20 20 30 30 30 30 23 2d 23 16 2b -FIXUPS: 43df9 fffff7a4 b b b 12 34 17 2f 17 19 28 25 19 24 32 d 17 26 18 -FIXUPS: 437bf b 36 54 d 2b 20 18 17 d 25 18 28 fffff882 17 1c 30 10 10 -FIXUPS: 4326b 19 13 13 13 16 16 16 e e 1e 23 3d 23 2d 30 30 23 16 27 23 -FIXUPS: 434e2 27 23 16 47 fffff7fa 33 d 26 65 d 2e 23 32 23 d e 20 11 24 -FIXUPS: 42fa9 23 13 e 12 2c 1c 22 23 88 d 28 20 23 13 e 12 fffff78d 13 -FIXUPS: 42967 1e 10 24 23 2d d 34 7f e 8 8 c e 12 41 8 20 11 18 20 20 20 -FIXUPS: 42c21 2c c 54 18 24 8d fffff533 e 2d 1f 26 23 5d 23 16 8 10 29 -FIXUPS: 42459 3a d 136 25 5e 12 1e 50 e 30 72 23 ed 23 13 8 1e 10 24 fffff570 -FIXUPS: 41ebc 16 34 23 23 16 b 15 39 2c 22 23 16 b 6c 23 30 d d 23 23 16 -FIXUPS: 4218a 2f 1c 24 23 16 8 2f 1c fffff766 1a 24 1f 26 27 28 44 b 5f -FIXUPS: 41b7d 1d 14 24 2b 12 19 3c 12 1c 4b 15 17 c 25 8f b 14 2f b 27 -FIXUPS: 41e6c fffff77f 4b 15 17 70 b 1c 3f 21 3f 21 29 32 16 27 23 d 10 -FIXUPS: 4189c b b b b 38 d 1c 17 22 41 b 1c b fffff82d 32 16 b b b b b -FIXUPS: 4128c b b 38 d 1c 22 41 18 47 1c b 14 27 28 44 b 5f 19 2e 24 19 -FIXUPS: 415bd 12 fffff7be 10 49 18 12 13 2e 65 f 19 13 25 8 25 18 f 16 -FIXUPS: 40f90 f 16 12 56 22 22 26 d 5f 17 32 17 66 20 fffff861 c 8 39 8 -FIXUPS: 40ae9 15 4b 1f 25 14 14 8 3c 30 12 1e 29 16 b b b 8 8 8 8 c 8 40 -FIXUPS: 40d3f 1c 19 fffff7dd d 77 23 d 22 32 23 16 8 8 48 16 8 4e 37 d -FIXUPS: 407f5 29 4b 23 13 8 48 16 8 4e 4f 29 26 23 16 fffff59b d c 23 23 -FIXUPS: 4009a 6f 2c 30 d 8f d 7a 67 1a c 26 8 e 12 2e 28 23 15 18 23 32 -FIXUPS: 4049d d 12 48 d fffff60d d 2c 43 39 59 2d 14 b b b b 15 2b 11 2d -FIXUPS: 3fd92 d 4c 20 d 61 20 d 5e 1d 58 12 b b b b 49ca 80 1c2 f4 5 1d -FIXUPS: 44ced 6 26 12 27 10 10 19 19 13 13 13 16 16 16 e e ffffab97 27 -FIXUPS: 3fa08 21 49 27 f 21 30 4a4a 10 1f 8 2b 3b 1e 2f 10 44 c 6 87 2c -FIXUPS: 4474c a8 1a 3b 23 1b 10 d a b 8 12 d 40 1d c 15 13 39d0 18 1e 5 -FIXUPS: 48399 e 13 1f e 13 1f e 13 ffffbf4f 29 1b 10 d a b 27 13 14 b 4f -FIXUPS: 444b7 18 f 10 1f 15 b 3a27 19 4a 15 38 2b 21 11 31 10 10 19 19 -FIXUPS: 480f7 13 13 16 16 16 e e 1e 89 27 10 2d 30 d 37 d 22 10 fffff8fa -FIXUPS: 47c3b 14 8 10 20 d d 8 19 c 3e 16 23 1a 2a e b b 2c 30 30 11 2a -FIXUPS: 47e9f d 17 2a 15 1c b 13 fffffab2 2c 23 d d e 17 10 9 6 b a f 17 -FIXUPS: 47ae6 b 18 1c 10 14 8 b 20 d d 1c 14 8 b 10 20 d fffffab3 8 3a -FIXUPS: 4771e 1a 11 8 28 29 16 27 13 b 8 20 1d 8 1f 17 10 f 15 8 3a 13 -FIXUPS: 47923 11 8 2d 23 32 23 fffffa15 10 9 8 d d 20 d d 8 19 c 3e 16 -FIXUPS: 4750f 1a 20 29 32 23 d 2c 13 b 8 8 23 1d 8 1f 10 f fffffb79 d d -FIXUPS: 47255 17 10 9 6 b a f 17 10 13 13 e 26 d d a 22 10 8 a 10 d 9 8 -FIXUPS: 473d3 9 8 8 fffffaba 1a 29 29 32 23 d 2c 13 b 8 29 17 15 8 39 1d -FIXUPS: 47081 34 15 8 1b 13 1a 11 8 26 23 32 23 d 2c fffffa87 a 10 9 8 -FIXUPS: 46cc9 d 8 a 10 d 9 8 d 20 d d 20 d d 13 9 8 d 20 d d 8 19 c 3e -FIXUPS: 46e83 fffffb99 11 8 24 23 32 23 d 2c 23 d d e 17 10 9 6 b a f 17 -FIXUPS: 46bd6 e 26 d d a 22 18 10 9 8 fffffa96 2a 1c 24 17 15 8 1b 13 1a -FIXUPS: 46816 8 2b 29 16 27 13 b 8 12 1d 8 27 c 17 15 8 3c 1d 8 1b 13 fffff8ba -FIXUPS: 462d2 34 23 23 6d e b b 3c 49 17 23 2d d 10 21 d 53 32 23 4d 29 -FIXUPS: 46664 23 d 2c 13 b 8 14 1d fffff654 d 62 d 65 d 70 d 6c d 40 d -FIXUPS: 45fc9 14 15 70 23 d 27 48 d 1b 23 16 15 5d 27 2e 23 1e 13 1c fffff4b2 -FIXUPS: 45771 58 e 32 17 d 1c 1e 52 36 17 23 18 28 e 50 11 20 8 18 3e 1d -FIXUPS: 45aa8 21 2b d eb d 70 d cb fffff518 18 4c 21 d 22 2d 3f 23 37 d -FIXUPS: 453f0 24 d 12 92 a4 23 16 b 3f 1d d 3d 10 1d d 56 1d d 14 1d 31af -FIXUPS: 48903 16 16 e e ffffc527 27 f 21 49 27 f 21 30 11 27 13 1d d 6e -FIXUPS: 450a3 55 71 23 2d d 15 27 d 15 27 32fb 15 6f 20 d 22 23 32 20 d -FIXUPS: 486ab 8 14 17 3d 31 1a 14 17 48 10 22 d 1f 5 26 10 10 19 19 13 -FIXUPS: 488da 2662 d f3 20 1b 5 5 5 23 39 10 10 19 19 13 13 13 16 16 16 -FIXUPS: 4b1bd e 1e 30 ffffd259 27 f 21 30 22 d 10 247e 19 15 22 f9 b 4c -FIXUPS: 4ab6e 15 3d 2e 15 10 2c 10 1d 13 1d 13 17 1c 12 10 12 21 92 38 -FIXUPS: 4ae59 23 14 2c d fffff2a8 26 d 11 90 32 16 16 16 19 15 22 1a d -FIXUPS: 4a382 84 23 d ea 249 23 2d 19 18 18 ba 1d 1b b b a 2b fffff216 -FIXUPS: 49b69 23 7 f 15 18 15 15 18 15 15 18 15 15 18 30 164 30 80 23 16 -FIXUPS: 49f97 4e 54 29 16 8 8 39 44 28 ffffeff3 29 23 16 2d 118 32 23 7d -FIXUPS: 493e9 30 90 23 16 8 8 5a d c0 12 e7 18f 9f 3c 25 8 2f 90 22 7 d -FIXUPS: 49afd 697a 13 ffff8500 a 25 e 32 29 16 12d b4 23 16 87 23 32 23 -FIXUPS: 48d5e 10 3c 2e 42 3f 23 16 137 23 16 b b 95 d 6f61 2e 30 23 d 2b -FIXUPS: 50107 d 15 14 1c 23 32 23 d 1a 1b 96 23 17 20 d 18 41 e b 15 11 -FIXUPS: 5040d 3a 5 1d fffff72a 1a 17 d 9 14 9 52 10 13 15 3f d 4b d 61 -FIXUPS: 4fd93 5c d 31 1c 2b d 10 4a d 35 d 14 78 36 d fffff870 a 10 a 2a -FIXUPS: 4f8c4 37 d 14 49 d a 24 17 d 30 13 b 21 14 1d d 1d 17 f d 9 14 -FIXUPS: 4fae7 42 21 11 fffff9ce e b b b b 26 23 32 23 d 10 b f 4a 31 36 -FIXUPS: 4f719 23 32 23 d 10 b 8 8 8 c 1c c 3a 8 fffff697 b b bc c c f 88 -FIXUPS: 4f06b 57 2f 1e 14 28 1e 14 ab c c f 60 c 57 23 1e 14 38 8 91 31 -FIXUPS: 4f4a9 40 fffff1f5 ab 11 1c 143 22 19 c5 f0 2d 23 d 62 14a 10 10 -FIXUPS: 4ed2b 19 13 13 13 16 16 16 e e 1e 50 23 32 23 d fffff39b d d 8 -FIXUPS: 4e29a 16 42 d 3c 11 d 37 1e 18 25 d 27 50 6b 18 27 23 16 10 d 27 -FIXUPS: 4e5b9 d 11 5b d 92 fffff780 1a 24 20 d 12 15 15 1f c d 52 24 51 -FIXUPS: 4e02f 1a 39 1a 12 20 4b 23 16 b f 33 2a 23 1b d b 27 fffff643 11 -FIXUPS: 4d8d6 33 11 2c 33 11 2c 33 11 8 8 12 11 49 30 34 38 13 19 73 56 -FIXUPS: 4dc29 11 6f 68 27 b1 e 18 2e fffff47c 23 16 b 58 17 1d 61 d 16 -FIXUPS: 4d446 48 bb 23 14 b 12 9 9 1a 23 16 b b 59 d 142 d 1a 22 11 3c -FIXUPS: 4cd0c 3d 23 8d 23 2d 31 d 32 e 8 20 d 33 3f 8b 23 44 d 34 d 4d -FIXUPS: 4d159 23 1a 23 30 23 16 b 58 17 fffff4f1 85 1f 28 6 13 6a d 40 -FIXUPS: 4c946 5b d 3f 3a 62 23 32 30 d 63 12 17 6 18 34 23 16 50 d a 31 -FIXUPS: 4cce9 fffff4dd 3b 38 34 d 11c 13 3c d c 2b 17 59 e 8 20 d 12 39 -FIXUPS: 4c534 68 a b f 23 e 58 6 6 f 6 109 fffff4a8 1d d 12 b c 1b e9 d -FIXUPS: 4bde9 25 d 23 15 2c 50 2a 25 d 55 52 23 d 27 28 d 3b d 5a d 5a -FIXUPS: 4c174 fffff26f 1d 21 d 40 d 2d b 17d 6 ac d 55 77 59 18 19 9d 14 -FIXUPS: 4b947 43 15 17 2a 17 25 17 9a 75 d 9a 10 4f8e c 45 25 2c 2b d 45 -FIXUPS: 50d37 5 26 10 10 19 19 13 13 13 16 16 16 e e ffffa402 8c 23 16 -FIXUPS: 4b32d 1c 12 11 4d 514b 19 40 d 13 3c 5d 2b 28 22 d d 10 12 25 1c -FIXUPS: 50769 2a 20 d 56 d 5c 54 a6 d 93 23 95 78 23 13 1a22 f2 2b 8b 23 -FIXUPS: 5277f 2a 10 29 12 23 5 1d e 13 28 10 10 19 19 13 13 13 16 16 16 -FIXUPS: 5295d e 1e e ffffdb12 17 1b43 26 14 b 22 13 16 3d 18 a 29 e 1d -FIXUPS: 52153 14 c b 4b 25 29 23 60 1f 20 14 4d d 1d3 8 33 24 f fffff1fc -FIXUPS: 517a9 3d d 1e 59 2c 5f 10f 7d 67 41 23 51 1c 3a d 18 3f 75 77 61 -FIXUPS: 51dc9 29 32 32 4f 25 38 2c 5a 1f fffff0c2 3c d 57 3a d b8 101 16 -FIXUPS: 51359 23 32 23 d 4b 1c 25 3b 31 a 8 f 21 37 1d d 34 77 61 44 29 -FIXUPS: 51724 14ad 34 66 2d 1f 5 1d e 13 28 10 10 19 19 13 13 13 16 16 -FIXUPS: 52def e e ffffe077 27 f 21 30 34 1c 11 15 8b 94a0 1f e 13 1f e -FIXUPS: 5a52a 1f e 13 1f 13 1d 13 1d 13 1d 13 ffff839d e b 1e 29 2c 32 -FIXUPS: 52a99 23 5d 23 32 20 d 75c9 15 10 14 18 2e b2 14 20 e b f 16 5 -FIXUPS: 5a329 e 13 1f 13 1d e 13 1f e 13 1f e 13 1f e 13 1f fffff950 12 -FIXUPS: 59e29 2a 23 d 1b 1e a 23 19 37 23 13 8 20 12 c 2f 25 23 13 8 10 -FIXUPS: 5a05f 1a 2a 23 d 37 2a 23 fffff8a2 32 d 2c 23 d 28 29 18 2e a 1b -FIXUPS: 59b69 20 23 13 c 12 1c 23 13 8 24 13 10 38 12 10 25 1f 6e 20 fffff87d -FIXUPS: 59647 22 23 10 8 30 23 d 1f 11 f 12 20 1c 28 26 30 d d b 45 23 -FIXUPS: 598f9 12 8 2a 23 d 2c 12 26 fffff918 1b 7 d 21 e 22 18 7 20 d 1f -FIXUPS: 593f9 12 5 14 13 28 5 14 13 17 2a 23 d d 2a 23 d 1e 41 37 fffff8c3 -FIXUPS: 58ec9 26 d 2d 47 d 11 2e d 2c d 27 e 18 2a 2a 23 d 17 20 d 1b 11 -FIXUPS: 5915c 91 23 d 2c 12 33 2b fffff7d8 d 22 20 d 2b 83 d 11 53 d 44 -FIXUPS: 58c6a 31 d 2c 23 d 2d d 3f d 27 d 3a d 27 d 11 2a d 11 fffff81e -FIXUPS: 586c1 1d d 1d 11 30 26 32 23 d 15 29 25 d 16 18 20 2a 23 32 23 -FIXUPS: 5893e 2e 23 3a e c 34 23 d 1d fffff859 13 c 16 22 25 12 5e 6 33 -FIXUPS: 583e8 31 23 31 44 38 23 32 23 d d 29 15 8 13 c 18 1a 1b 1b 3e d -FIXUPS: 57e7c 28 d 19 c 34 3d 19 18 25 d 26 c 2e 4c d 54 23 d 26 15 15 -FIXUPS: 5814c b 11 28 46 1c 3a d 54 23 fffff7b1 54 d 1f 47 d 1a 31 29 23 -FIXUPS: 57be3 22 37 d 34 d 4f 12 40 d 2a d 15 23 22 23 13 8 8 1d 8 b fffff6df -FIXUPS: 5753d 47 d 1a 2b 75 20 2e 25 1b 2c 34 50 30 30 15 1b 34 c 20 23 -FIXUPS: 578ce 23 d d 5e 46 d 2c 1c 50 fffff675 71 23 d 10 20 d 32 23 1a -FIXUPS: 57239 26 1b 8 b 2d 2a d 1b 76 f 2b d 1e 45 d 3b d 11 2a d 48 fffff6bd -FIXUPS: 56bdb 2e 26 13 26 13 12 43 12 27 23 18 b 4a 60 17 1d 74 23 d 28 -FIXUPS: 56f0b 30 23 d 42 2c 26 4e d 55 fffff738 13 13 16 16 16 e e 1e 13 -FIXUPS: 568a4 18 1d 2a 23 d 10 8 b d b 11 26 4d 66 32 78 23 d 37 12 30 -FIXUPS: 56219 20 30 3c 24 40 60 23 3d 20 40 120 30 e 24 31 a 34 1f 22 1e -FIXUPS: 566a9 30 17 34 23 d 2e 10 10 19 19 fffff341 23 d 14 15 3d 1e 26 -FIXUPS: 55c29 13 1d 26 3e 2f 20 17 14 55 2d 60 23 75 1a af d d2 26 16 4a -FIXUPS: 56132 1a 9d fffff2e7 27 23 d 31 d 18 1c 26 13 18 2a 10 29 12 2a -FIXUPS: 55697 32 60 1a0 17 1d 95 23 d 27 12 30 23 d 55 29 fffff59a 21 d -FIXUPS: 550b7 5f 33 23 2d 23 2d 25 2b 23 32 23 d 2b 23 16 37 17 2d 32 29 -FIXUPS: 5541f 23 d 22 10 15 6 b fffff6ab 47 26 23 29 4e 26 38 30 1d 43 -FIXUPS: 54d5f 19 59 26 32 27 59 23 1b 1d d 48 26 1b 21 1e e 18 1d d 36 -FIXUPS: 5471a 2f 26 18 22 26 20 1a 26 18 22 29 32 23 d 10 12 15 34 41 e -FIXUPS: 549c9 14 b 12 1b 57 1e 25 15 25 26 fffff7d5 31 3d 27 26 1b 3d 32 -FIXUPS: 5443f 22 d 25 26 23 1b 18 23 27 23 d 30 23 15 15 33 26 14 26 26 -FIXUPS: 546e5 1a 15 fffff633 27 23 d d 4e 23 38 35 23 4d 30 14 26 d 1a -FIXUPS: 53fef a2 3b 2d 30 19 27 26 32 23 d 1b 54 29 23 16 fffff5c6 41 d -FIXUPS: 53900 d 1d 20 d 14 20 d d 8 f 8a d 3f 17 70 e 29 12 6e 36 1c 27 -FIXUPS: 53c6c 4d 1e 20 d 1a fffff5ab f 21 49 27 f 41 30 10 70 20 d 52 20 -FIXUPS: 53515 4d 27 26 2b 1d d 38 d 30 80 24 d 6f 29 19 8 76 8076 e e ffff7557 -FIXUPS: 52e69 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f -FIXUPS: 531b9 49 27 f 21 49 82c8 d 62 10 2d 5f d 27 10 8 18 23 20 1b 5 -FIXUPS: 5b741 5 23 13 1d e 13 48 10 10 19 19 13 13 13 16 16 fffff581 8f -FIXUPS: 5aeec 3e d d0 25 5d 23 18 b b 33 d 6d 46 8c 23 5f d 81 23 1b 36 -FIXUPS: 5b3ea 14 17 74 23 36 27 23 fffff30f 3e 23 13 8 18 13 37 23 32 5c -FIXUPS: 5a9d7 58 d 1c 12 5d 43 3f 23 16 8 12 9d 23 23 14 26 5a d 99 61 -FIXUPS: 5df82 31 23 d 27 d 15 10 3d d 23 26 13 18 1d 22 e 13 1f e 13 ffffc518 -FIXUPS: 5a6d9 f 21 33 1d e 2e 34 23 32 344a e b 19 1d d 38 d f 1d d 13 -FIXUPS: 5dd72 d 14 1d d f 1e d 10 22 12 37 d 37 23 d 26 29 f 31 fffffa1c -FIXUPS: 5d9a9 11 6 a 34 d 32 18 e 1d d 35 13 1d d 18 24 d 15 f 1d d f 1e -FIXUPS: 5dbd0 1e 21 d 1c 6 9 fffff97d 1f 27 20 42 1d d 1b 20 38 26 1e 16 -FIXUPS: 5d770 12 2a 1c 24 d 15 1c 21 d 20 19 1c 12 d 3d 26 32 23 fffff7b0 -FIXUPS: 5d165 6c 1c 36 d 23 2e 20 d 1e 42 20 d 21 20 3d 26 32 23 d 18 16 -FIXUPS: 5d490 21 27 9 c 9 19 30 49 fffff75f 20 d 25 3b d 1b 20 3d 26 1e -FIXUPS: 5ce53 10 d 2a 21 29 1a 36 18 20 39 22 d 2b 1d 39 19 4d d 1a 1c -FIXUPS: 5c849 20 26 32 23 d 18 16 13 16 2e 2a 1a 69 58 45 1b 1f e 28 32 -FIXUPS: 5cb86 d 2b 36 d 26 1b 1b 24 e 2d fffff679 b 2d 1c 80 23 1e b 18 -FIXUPS: 5c49b 27 3b 21 d 40 22 34 38 44 3c 23 1e 15 24 9 1a 1d 14 51 63 -FIXUPS: 5c81e d fffff6df 25 4f 35 d 35 30 d 2e 39 12 13 13 19 c 10 1e 25 -FIXUPS: 5c15c 8 c 19 e 3d 25 2f 23 29 60 15 23 1e fffff80f 23 1b 22 23 -FIXUPS: 5bbda 24 6 25 23 24 19 23 1e 16 d 22 6 6 1e 26 1b d 13 16 17 1b -FIXUPS: 5be29 1e 2c 56 26 57fc 1e e 13 1f e 32 13 1d e 13 1f e 13 1f e -FIXUPS: 6185a ffffa0c8 27 f 21 49 27 f 21 30 e 47 2b 2f 17 d 57e0 2c 2e -FIXUPS: 613b9 23 2c 2e 63 23 2d d 1a 9 1e 19 9 1e 11 4f 5 26 10 10 19 19 -FIXUPS: 61667 13 13 16 16 16 e fffff4c1 fb 23 2c 2e 30 53 23 33 2e 3a 52 -FIXUPS: 60ecc 2c 2e 2c 57 23 33 2e 4c 50 23 2c 2e 2c 57 23 33 2e 42 4a -FIXUPS: 60709 5b d 18 10 38 23 d 10 10 28 10 8 23 1f 1c 12 38 23 14 37 -FIXUPS: 609a9 23 2d 23 2d 23 3f 6e 23 32 23 fffff73b 25 1c c 20 23 25 1c -FIXUPS: 603bf 2a 23 25 1c c 40 23 25 1c 22 3a 23 16 29 8 a 13 69 e 32 2c -FIXUPS: 606c8 18 fffff74c 51 d 6f 23 32 23 d a 5f 19 29 23 25 1c c 20 23 -FIXUPS: 60101 1c 22 2a 23 25 1c c 20 23 25 1c 22 2a fffff610 10 2d 23 d -FIXUPS: 5f949 10 8 18 1f 1c 12 23 23 14 46 33 23 16 b 12 29 34 45 19 84 -FIXUPS: 5fc4d 6c 23 3d 23 cd fffff593 25 1c 3c 23 25 1c 3c 23 25 1c 4c -FIXUPS: 5f58c 25 1c 4c 23 25 1c 2c 23 25 1c 2c 23 25 1c 2c 2c 32 1c 60 -FIXUPS: 5eecc 25 1c 3c 23 2c 1c 15 30 23 32 23 d 17 d 57 23 25 1c 3c 23 -FIXUPS: 5f1e1 1c 3c 23 25 1c 3c 23 25 1c 3c fffff554 1a 1c 5f 1a 2d 23 -FIXUPS: 5e9fe 23 d 24 42 26 9f 23 1d 30 23 1f 5e 23 3d 23 7c 1c 35 23 51 -FIXUPS: 5ee3a 1f 1c 34 fffff5d0 e 32 2c 32 1c 60 16 10 2d 20 d 26 10 8 -FIXUPS: 5e669 1f 1c 12 23 11 15 28 50 52 23 14 27 2c 36 23 16 5a07 39 10 -FIXUPS: 64322 19 19 13 13 13 16 16 16 e e ffff9de7 27 f 21 49 27 f 21 49 -FIXUPS: 5e339 f 21 49 27 f 21 30 20 5940 23 b5 38 23 5e 2f 23 2d 23 7d -FIXUPS: 6406c 7b 5 1d e 32 e 13 1f e 13 1f e 32 e 13 1f e 13 1f e fffff4c5 -FIXUPS: 6378a 22 4b 1e 34 e 42 2c 58 1c 10 22 d 21 14 15 7f 28 8 54 54 -FIXUPS: 63b3c 13 45 43 41 19 e6 32 23 10 fffff47d 23 32 23 d 3b 23 3c 1c -FIXUPS: 63350 4e 37 22 1f 33 1b d3 62 11 1f 11 2f 23 16 1a 22 5 1f 1a 1d -FIXUPS: 636fc 3d fffff650 20 39 3d 27 23 e b b 2c 26 3e 8 14 10 22 d 21 -FIXUPS: 62fad 15 7b 2c 23 13 64 d 1b 47 27 11 1f 11 fffff6b6 49 2a 23 d -FIXUPS: 6295a d 1d 15 31 78 27 10 2d 23 d 27 d 1f 10 8 38 e a2 11 2f 11 -FIXUPS: 62c88 37 19 16 61 fffff707 23 d 12 10 21 10 17 29 e 29 29 2f 74 -FIXUPS: 62639 2a 23 d 2c 23 d 10 b 48 7 1f 7 10 1c 19 15 2d fffff99a 17 -FIXUPS: 621ca 16 c b 9 18 11 13 10 11 b 19 f 1c 19 37 1a b 8 16 13 b 27 -FIXUPS: 623a7 d 16 1f 11 1f 11 fffff83f 1a 10 2c 19 16 53 4e 3a 20 44 42 -FIXUPS: 61e87 b 11 c 1f 6b 20 16 2f 5b 80 2a 23 d d 7 21 2b 2e 8 2800 e -FIXUPS: 6498a 28 10 10 19 19 13 13 13 16 16 16 e e ffffce17 27 f 21 49 -FIXUPS: 61979 f 21 49 27 f 21 30 e b 14 2b0f b 10 8 21 28 d 18 33 2b d -FIXUPS: 646c6 23 23 24 38 1c 45 23 16 2c f c 23 10 57 29 20 1b 5 5 5 6033 -FIXUPS: 6a987 13 1f e 13 1f e 13 1f e 13 1f e 13 1f 13 1d e 13 ffff9902 -FIXUPS: 64442 27 f 21 30 e b 61 26 2c 16 5f1e 30 23 d d 23 23 a1 95 2a -FIXUPS: 6a725 1c 2a 35 e b 25 d 13 34 13 24 11 21 1e 24 20 1a 5 1d e 13 -FIXUPS: 6a138 f 8 b 2f 23 16 18 15 20 d 10 f f c 15 1e 23 18 f 2b d 30 -FIXUPS: 6a348 10 5f 12 30 30 23 16 43 fffff8ac 10 8 20 14 1d 28 47 23 14 -FIXUPS: 69e87 a2 10 b 25 d 2a d 32 23 d 10 1a 10 8 b 18 10 25 23 16 39 -FIXUPS: 6993e 1e 1d 30 23 d d 23 23 4a 22 8 b 1e 11 10 1e 68 2c b b 10 -FIXUPS: 69be9 16 b 2f 52 3f d 10 20 d fffff7cf 66 4c 3c 48 23 16 32 11 -FIXUPS: 696b9 42 23 d 16 10 28 23 2a d 10 b 27 d 14 17 12 31 d 10 43 23 -FIXUPS: 69920 fffff662 18 34 d 10 f f 22 1e 30 12 4e 80 23 18 f 2b d 30 -FIXUPS: 69218 1e 3c 7e 41 12 36 18 22 75 d 4c 1c fffff75d 2a d 32 23 d -FIXUPS: 68ca3 28 d 18 b 1e 10 8 b b 29 e 9 1d 10 25 23 1d 98 31 d 17 8 -FIXUPS: 68f19 30 23 fffff545 18 23 38 25 23 2d 40 23 4d 16 b 2f 79 20 d -FIXUPS: 687a5 8 1c 14 1d 28 47 21f 30 90 31 10 22 d 10 25 fffff515 27 2b -FIXUPS: 68161 36 23 18 19 18 16 18 62 18 5e 2b d 15 2c 10 10 19 19 13 13 -FIXUPS: 6840d 16 16 16 e e 1e 19 fffff801 b b 12 b 23 30 23 d d 23 23 53 -FIXUPS: 67e2e 15 56 56 c b 36 15 13 55 e 26 2a d 55 28 d 11 2e fffff639 -FIXUPS: 67734 11 6e 6 14 1a0 8 64 30 23 d 32 1b 23 2d 16 25 d 20 15 26 -FIXUPS: 67b86 d 1f 14 1d d 2e 42 19 1e fffff641 35 31 4c e 31 38 12 e c -FIXUPS: 6743b 6 28 30 23 d 10 11 11 19 30 f 14 19 bd 34 38 18 12 8 17 14 -FIXUPS: 66e8f b 29 1e 13 43 1c 47 b 26 14 1b 22 b 22 30 23 4d d 1e 1a c -FIXUPS: 67169 3c d 1f 1c 6a 18 2a 1f 6 fffff7be 18 1d 1d 10 1b 23 16 12 -FIXUPS: 66b99 b 25 23 60 25 28 23 16 24 9 a 6 1d 1d 23 2d 23 32 23 d 2c -FIXUPS: 66e75 fffff77a 9c 8 16 14 15 28 50 2f 23 14 27 e 21 a3 10 b 25 -FIXUPS: 668f6 2a d 32 23 d 32 23 d 32 16 20 10 8 fffff72b 16 32 22 40 d -FIXUPS: 66289 b 25 23 16 1a 22 5 1f 1a 1d 23 3d 23 16 18 22 2f 1e e b 37 -FIXUPS: 66546 d 6f 20 fffff767 2d 23 d 23 10 8 18 20 2a 23 d 16 15 7f 2c -FIXUPS: 65f76 23 d 22 13 46 38 11 1f 11 1f 23 32 23 d 3b fffff7b6 2b 15 -FIXUPS: 65985 30 15 27 3a 1a 19 16 d 62 1d 5e 2b 23 16 d 6 12 22 23 16 -FIXUPS: 65c59 e b 27 3a 3d 8 21 fffff830 8 18 20 2a 23 d 2c 23 d 10 b a -FIXUPS: 656a5 1b 27 1f 17 3c 2a 23 d e 25 15 25 71 28 30 23 d d fffff7a3 -FIXUPS: 650e9 11 15 7b 2f 23 13 14 84 32 23 17 26 23 1a 23 23 1a 23 23 -FIXUPS: 65412 17 e 32 49 17 10 2d 23 d 23 fffff6e0 f 21 49 27 f 21 49 27 -FIXUPS: 64d88 21 49 27 f 21 49 27 f 21 30 e 32 2c 45 3f 10 2d 20 d 26 10 -FIXUPS: 650b1 6952 24 5 1d e 13 1f e 13 1f 39 10 10 19 19 13 13 13 16 16 -FIXUPS: 6bbcf e e ffff8ee7 27 f 21 49 27 f 21 49 6a57 8 18 20 e 32 1b d -FIXUPS: 6b729 10 c 24 10 8 c 1c 2a 23 d 16 15 28 19 50 4a 23 32 23 d 18 -FIXUPS: 6b9c9 23 fffff3e2 36 68 15 67 31 23 16 b 4c 152 1e 51 1e 63 1dd -FIXUPS: 6b459 23 16 77 10 3f 23 d 14 21 d 14 29 d 27 1e 12b9 10 10 19 19 -FIXUPS: 6c977 13 13 16 16 16 e e 1e 16 ffffe113 27 f 21 49 27 f 21 30 e -FIXUPS: 6ac9d 3c 2c 27 3a 13 23 183d 29 16 c 27 23 d 18 f b 29 d 2d 29 -FIXUPS: 6c752 c 20 d 14 e 24 2b 49 9 b 1e 5 1d e 13 1f 13 fffff89e 20 20 -FIXUPS: 6c1d7 2a 47 25 d 2f 10 80 e 26 4c 38 58 23 13 c 27 23 d 15 2c d -FIXUPS: 6c541 15 1b 9 1d d d fffff7e8 29 16 f 25 d 17 a 3f 23 22 23 1e -FIXUPS: 6bf18 71 29 16 25 d 15 a 3f 2e 19 22 19 1e 19 17 12 1e 19 1e5a -FIXUPS: 6dfd8 2a d 34 34 5 26 10 10 19 19 13 13 13 16 16 16 e e 1e 16 ffffda63 -FIXUPS: 6bc49 f 21 30 10 30 11 19 3a 1ef4 d 15 b 25 d 31 d 2a d d 37 23 -FIXUPS: 6ddae 23 d 15 b 25 d 27 d 2a d 34 f 4b 23 1b b 25 d fffff8ab d -FIXUPS: 6d883 d 2a d 42 16 b 25 d 27 d 2a d 42 29 32 23 d 1b e 2b d 37 -FIXUPS: 6db39 30 d 34 1f 23 32 fffff75b 27 b 1c d2 60 1e 27 2c d 2f d 56 -FIXUPS: 6d61f b 25 d 27 d 5d d 2f 16 b 25 d 27 d 17 42 16 b fffff67f 2d -FIXUPS: 6cf04 6 2a d 13 75 b 8 96 23 d 5f 17 3b 40 b 1c 1a 1e 15 1c c 11 -FIXUPS: 6d24c a 9 53 37 22 1b 1ff3 16 e e 1e 11 b 24 30 12 2e e 13 1f 13 -FIXUPS: 6f489 12 2e e 13 1f 13 ffffd52d b8 25 d 1a 125 91 7b 2f ef 2158 -FIXUPS: 6effc 1e b 2f 11 19 28 20 d d 7 20 d d c 12 6d 4b 5 1d e 13 28 -FIXUPS: 6f272 10 19 19 13 13 13 16 fffff74e 3a 25 d 18 8f 4a 2b 16 10 37 -FIXUPS: 6ec4e 15 26 13 10 a 6d 18 15 29 23 16 f b 4c 8 28 28 8 21 150 fffff3e2 -FIXUPS: 6e409 52 1e 28 d 9b e 1e 22 d 11 74 32 d d 31 11 1a 19 38 12f 4d -FIXUPS: 6e8ed 23 84 f 26 40 e 20 d 67a6 1f e 13 1f e 13 1f 13 1d e 13 1f -FIXUPS: 75307 13 1f 13 1d 13 ffff8e76 27 f 21 49 27 f 21 49 27 f 21 30 -FIXUPS: 74d6e 44 31 1e 1d d 19 6 24 1d 25 7d 1c 34 2c 21 18 b a 35 7a d -FIXUPS: 750f9 23 1b 1d d 29 1d 5 1d e fffff5dd 8 10 13 2a 1e 3b b 47 53 -FIXUPS: 74914 18 25 25 d 23 c 57 b 61 4c 4e b 3d 88 b b7 b 56 d 19 39 fffff691 -FIXUPS: 7440c 6 e 36 d 18 16 1f 2c f 2d d 24 10 8 1c 23 29 12 2e 17 19 -FIXUPS: 746be 23 d 2b 22 1e 8 8 30 fffff6f2 a5 11 a5 17 20 2c 24 1c 37 -FIXUPS: 740f9 4c 27 6 20 1c 4b f 41 23 1b 1b d 1e 27 25 10 33 23 d 36 23 -FIXUPS: 73a1f 26 2f d 13 1a 34 5e d 2c 23 19 33 21 23 19 2a d 13 1a 23 -FIXUPS: 73ce5 24 26 1b d 1b 1b 21 12 30 7e fffff78b 5b 8 1d 17 19 85 23 -FIXUPS: 7375e 2b f 30 19 38 23 19 d b b e 38 e 3e 10 a 1d 6 2e 24 23 19 -FIXUPS: 739f9 fffff776 1b 16 19 31 26 3c 44 74 19 46 1d 29 f 31 23 1b 1b -FIXUPS: 7344f 1e 26 26 10 16 4d d 23 1c 21 12 e 1c fffff79d b 5c 23 34 -FIXUPS: 72e3d 2c 23 1b 42 23 4d 23 2d 23 36 10 10 19 19 13 13 13 16 16 -FIXUPS: 730cf e e 1e 23 1b d fffff7a5 23 13 55 45 11 2f 10 14 1d d 1b 13 -FIXUPS: 72a98 28 d 36 23 d 36 23 d 1b 45 12 26 28 17 19 7e 32 23 fffff686 -FIXUPS: 723f8 21 23 26 8 8 64 15 35 18 25 15 28 3f 23 44 64 a 27 2c 1f -FIXUPS: 72759 23 26 8 56 8 35 3c 2c 37 fffff67d 10 8 18 20 19 e e 85 46 -FIXUPS: 720cc 13 8 44 17 8 2f 23 26 8 36 42 11 29 1b 42 11 2f 23 46 27 -FIXUPS: 723cc fffff730 13 46 24 40 23 25 38 23 28 4d 6 29 6 27 6 36 23 -FIXUPS: 71db2 4a 6 2a 6 28 6 39 10 13 16 2d 23 d fffff5ff 23 d 20 1b 8 -FIXUPS: 715a9 8 1e b3 3d 1b 3d 31 3d 32 3d 25 23 25 1e 10 10 8 8 143 f -FIXUPS: 71a21 6c 18 e 26 fffff540 23 13 57 d 1f 1b 43 2e 4c 6 3b e 25 12 -FIXUPS: 7124a 3b 6 7e 20 23 32 23 d d 8 98 24 15 26 1f 23 fffff437 116 -FIXUPS: 70a6c 13 25 36 a 10 35 30 40 23 5e 1f 14 1c e 1e 24 12 1e 23 2c -FIXUPS: 70d4b f5 28 5 2f 4d 23 b6 33 ffffeefe d 77 5e 17 18 35 32 20 16 -FIXUPS: 700ad 3c 30 16 92 e 269 48 48 1a0 6f 15 21 d 3c 8 1c 7f f 96 f -FIXUPS: 7090b fffff014 8a 12 26 33 55 2c 45 1f 23 3c b 21 1f 1d 69 23 32 -FIXUPS: 6fca1 d 10 8 1e 14 8f 22 23 16 40 d 8d d f01e 13 1f e 13 1f 13 -FIXUPS: 6f552 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 49 27 f 21 30 26 -FIXUPS: 6f88a b 64 f26e 10 25 1a 38 4b 12 2d 1e 13 32 d 21 26 13 18 1d -FIXUPS: 7ed7c 1d e 13 1f e 13 1f 11 b 24 e 32 e 32 fffff6a9 17 23 32 23 -FIXUPS: 7e61e 5a 23 d d f 10 16 20 d 20 1e 2e 86 29 117 23 3d 23 32 23 -FIXUPS: 7ea2e a7 23 d 32 23 fffff67a 30 35 14 c 25 d 2c 23 d 10 b b 1c -FIXUPS: 7e353 23 d d d 8 d 10 d 8 c 11 15 4e 2a 34 50 34 fffff9a9 23 d -FIXUPS: 7df22 b 11 17 14 28 38 14 c 25 d 2c 23 d 10 b 1a 2d 23 13 c 27 -FIXUPS: 7e165 d 10 b b 11 17 fffff872 b 54 1c 32 29 48 11 35 14 23 20 d -FIXUPS: 7dc3b 5e 26 18 8 c 1b 9 14 21 d 61 33 11 3c 47 23 13 c fffff7ec -FIXUPS: 7d6af c 8 10 8 10 28 9 1f 49 1e 19 1b 9 25 ae 25 18 1b 11 1e 22 -FIXUPS: 7d97c 19 e 26 26 18 8 c 8 fffff7cc 14 6b 4f d 31 d 97 2f 51 23 -FIXUPS: 7d44b e 28 c 17 19 19 18 1a 11 11 23 23 14 33 52 23 32 23 d d fffff891 -FIXUPS: 7cf3b 4e 23 32 23 d d d 8 10 8 c 8 f b b 31 27 26 32 23 d d c 8 -FIXUPS: 7d192 8 c 8 10 24 fffff8cc 88 73 2e 62 26 32 23 d d d 8 10 8 c -FIXUPS: 7cd0f f 8 81 31 2e 53 23 32 23 d d d 8 10 8 c fffff628 8 7d 35 -FIXUPS: 7c62f 1f 13 1c 82 d a8 d 12 49 29 2b 24 d 2f d 27 2e 77 26 32 23 -FIXUPS: 7ca31 d c 8 f 2d fffff77c d 8 c 8 f 8 7d 31 2e 53 23 1b d 8 c 8 -FIXUPS: 7c3ef b b 2c 28 26 1b d 27 32 13 c 8 f b fffff62f 22 b7 26 13 c -FIXUPS: 7bc96 10 b b b b 1d 8c 33 18 2e 2d 3c 5c 64 d 44 5b 80 6c 23 d -FIXUPS: 7c10e 29 92 26 fffff4ba 19 27 1b b b b a8 6 72 72 75 2d 23 13 c -FIXUPS: 7b9a6 b b 1d 22 2c 42 19 16 24 10 1f 12 12 27 22 fffff725 1e 14 -FIXUPS: 7b2c8 14 9d 11 2f 26 13 d 8 f 59 33 18 2e 2a 3c 4b 11 b 8 e 8 13 -FIXUPS: 7b630 13 18 16 13 18 fffff7c2 30 21 c 28 21 c 7b 5e 23 13 c b b -FIXUPS: 7b04c 1d 20 48 40 19 16 24 10 1f 16 15 32 17 1c 19 14 20 fffff7d4 -FIXUPS: 7aa5d 14 37 30 50 1f 2c d 2d 21 1d d 1a 10 27 18 b b b b 39 19 -FIXUPS: 7ad13 1b 65 1e 15 18 23 b 27 fffff82e 58 16 b a 3e 27 e c 8 10 -FIXUPS: 7a7c6 d 4b 1f 29 21 1d d 22 3c 21 1d d 1c 1e d 2d c 27 e 29 fffff811 -FIXUPS: 7a26d d 44 d 21 15 1a 3a 64 19 14 23 19 14 23 11 b 9 a b 3d 45 -FIXUPS: 7a52f 5a 11 b 9 a b 3f 45 fffff74c 21 15 13 32 16 4f 26 40 16 d -FIXUPS: 79f07 1d 33 1a 54 25 1e 9 2f c 29 d 1b 65 37 24 d 44 d 21 53 fffff7a4 -FIXUPS: 799e2 10 58 1b 11 13 22 37 16 30 24 13 65 20 11 24 13 29 d 24 f -FIXUPS: 79caa 16 24 15 13 1a b 17 1b 11 fffff888 34 71 2d c 54 26 d 17 -FIXUPS: 7978b 1f c 1d 26 f 21 30 14 c 25 16 2d 17 13 23 c 10 18 27 23 13 -FIXUPS: 799cb fffff7f0 1a 1f 2d 19 1a 1c 1d d 19 5a 66 50 5a 1d d 13 18 -FIXUPS: 794a5 8 20 31 8 23 26 18 22 23 16 b b c fffff6e8 2d 23 1e 1f 2c -FIXUPS: 78dba 16 35 d 1a 2a 12 51 1e 5d 15 a3 2d 15 1b 2c 32 23 d 10 8 -FIXUPS: 790f7 4f 14 23 36 fffff79f 19 19 13 13 13 16 16 16 e e 1e 29 16 -FIXUPS: 78a8d 3b d 29 19 6 1b 20 d 16 18 15 26 4b 23 32 23 d fffff85a 1c -FIXUPS: 78536 17 2d 42 1d 38 44 1c 17 30 18 2a 6 1d 6 1b 1c 19 30 1b 1c -FIXUPS: 7883d 1a 19 11 33 33 1d 2e 10 fffff70c 49 9f 26 18 30 45 2d 33 -FIXUPS: 78279 23 d d 14 17 1c 10 12 1b 17 25 21 18 18 20 d 14 35 19 19 -FIXUPS: 784ad 24 fffff68e e e 2e c7 19 30 12 33 23 d 38 21 12 6 1f 2c 24 -FIXUPS: 77e1b 3e 26 13 1e 23 26 2d 1f 19 2a 51 23 32 fffff7f4 10 b 1a 22 -FIXUPS: 7789c 13 c 27 23 d 10 b b 21 23 32 23 d 1d 1e 20 23 32 23 d d 1b -FIXUPS: 77b01 22 8 1e fffff8bc 4e 42 74 26 32 23 d d d 8 10 8 c 8 f 1f -FIXUPS: 77656 53 2d 23 d d d 8 10 51 23 13 c 27 23 fffff7f4 23 13 d 8 10 -FIXUPS: 77074 37 59 25 23 1b 40 42 26 1b d 8 c 8 f 1b 49 53 26 32 23 d -FIXUPS: 773ae c 8 f fffff72b 2b 11 21 19 c 2b 70 23 1a 37 22 3c 6e d 23 -FIXUPS: 76dac 13 d 2f 35 33 3c 1e 1c 23 13 d 8 48 36 34 fffff5f9 2c 1a -FIXUPS: 7661f 18 38 2c 3e f6 3a 23 13 d 17 56 23 13 d 8 10 d 18 39 37 23 -FIXUPS: 76a00 28 17 c 2b 41 22 fffff677 14 f 80 1f 27 23 13 4a 23 13 5a -FIXUPS: 7636c 13 2c 1e 23 13 d 8 f 13 2b 62 8 18 2f 20 32 d 3b 8 fffff7e9 -FIXUPS: 75db9 23 2d 23 33 d 2d 23 13 d 8 d 10 28 30 30 23 3d 26 1b d 8 -FIXUPS: 7604c b b 1e 17 34 9 c 1f fffff7d3 18 1f 16 b 3f 76 1a 30 32 20 -FIXUPS: 75ac3 d 14 27 d 36 15 60 12 2f 35 2b 35 1d 14 5f 14 e b 2a d fffff6fb -FIXUPS: 754a9 49 27 f 21 49 27 f 21 49 27 f 21 30 12 2d 20 d 10 33 d 15 -FIXUPS: 7579d 13 1f 2d 2b 22 d 43 26 11cca 14 b b 2a 12 ed 1d 10 c 13 10 -FIXUPS: 87756 12 28f 5 1d e 13 1f e 22 e 13 1f 13 fffed8d6 27 f 21 49 27 -FIXUPS: 86eb9 23 16 b 25 1c f 2b 14 27 26 29 16 b b b e 27 a6 18 10 c 25 -FIXUPS: 8728f 1fa 23 16 1a 2d 23 16 1a fffff34e 7f 34 1c 23 24 34 19 36 -FIXUPS: 86a66 d d 60 1c 59 10 30 6e 26 23 16 b 25 1c 4b af 29 34 21 23 -FIXUPS: 86e5d 34 fffff62b 16 d 2b 1c 15 16 1d 1d 1e 23 40 2d 16 d e c e -FIXUPS: 86690 8 22 19 22 11 33 29 35 52 11 3a 26 1c fffff789 e 2c 30 17 -FIXUPS: 8609d 8c 10 33 2d 24 1c 24 1c 23 16 13 e 3b 1c 16 2d 14 20 28 23 -FIXUPS: 863a5 12 12 4d 31 52 fffff6d9 a 1d 14 1c 30 23 2d 23 1b 42 23 13 -FIXUPS: 85d07 44 8 39 16 2d 9 83 1a 24 23 2d 23 2d 23 16 b 42 2a fffff470 -FIXUPS: 854d2 3e 18 10 c 25 d 3a 3a 20 32 16 20 2d 15 11 25 d 46 d 1b a4 -FIXUPS: 8586d a4 70 23 49 12c e 18 28 fffff288 8 8 1e 1c 1c e 4b 24 15 -FIXUPS: 84f1d 24 15 2d 24 15 16 24 15 1e 30 16 8 1eb 4a 37 1b 14 17 54 -FIXUPS: 853ce 4b fffff5c0 23 3d 30 23 a0 16 33 24 23 32 23 d d 8 e 3a 18 -FIXUPS: 84cb7 15 29 24 23 32 23 d 13 c e c 8 8 fffff774 4c 2e 5 32 5d 23 -FIXUPS: 8469f 28 1c 2e 14 12 10 12 45 5f 10 17 1c 10 b 26 47 22 1e a 25 -FIXUPS: 84949 1a 15 6 fffff638 d 2a d 13 11 38 20 38 74 6c 1d 5c 38 3c -FIXUPS: 842b9 23 13 25 39 a 10 35 2d 23 16 b 3c 23 19 12 12 fffff513 b -FIXUPS: 839d8 35 21 f 58 d8 30 d 58 d 14 1d 16 31 3e 2b e 9 1a 88 30 30 -FIXUPS: 83e39 30 20 23 16 8 52 d fffff5a4 27 d 14 a 19 27 d 3c 6d 6a 12 -FIXUPS: 83709 23 13 8 8 e 2f 58 55 2d 23 d 10 67 2c 30 23 d 10 8 fffff59e -FIXUPS: 82f5d 52 91 f 40 14 6d 29 e e 1e 6 1b 6 15 1f 4a 9f 19 c 19 46 -FIXUPS: 8334d 14 2d d 4c d 1a 58 4f fffff667 14 1a 1f 50 30 23 1b d e c -FIXUPS: 82c5c c 1b 64 22 23 19 d e 10 10 39 d 32 15 50 31 7b e 8 10 fffff81c -FIXUPS: 82764 13 13 13 16 16 16 e e 1e 23 19 c b b b b 14 73 45 29 1c c -FIXUPS: 829bb e 8 b a2 30 d 54 fffff72a 29 16 11 e b 11 16 b 8 b 97 9e -FIXUPS: 82428 47 30 d 55 d 14 b 13 35 8b d 14 4e d 46 50 10 10 fffff577 -FIXUPS: 81cb6 11 13 77 d 11 d 3d d 2c d cf 36 19 38 94 30 11 b 74 30 30 -FIXUPS: 82139 23 16 8 e f 2c 29 28 fffff4e2 40 e 17 3c c 25 18 16 c 16 -FIXUPS: 8183c d6 23 26 5e 29 1c c b 8 b dd 30 d 5d 1c 19 39 d 71 d fffff632 -FIXUPS: 8132d 5c 23 19 c e 10 10 b b b 17 7 35 19 4a 1c 1b 14 40 27 d 40 -FIXUPS: 815f4 48 2a 19 d 1f 12 1a fffff571 29 d 53 29 34 63 68 23 1b b -FIXUPS: 80e4d 18 99 99 d 44 d 13 2d 7d 71 d 29 d 53 29 13 3a 10 3e d fffff368 -FIXUPS: 805fd 13 6 3f c2 d 29 2c 1e d 28 18 46 3e 69 38 23 19 c b b 18 -FIXUPS: 80a18 97 d 44 d 13 2d 7d 71 fffff561 13 13 33 23 d 38 2c 10 8 1e -FIXUPS: 802e2 27 23 13 18 51 b 21 22 1d 63 58 1b 1d 33 23 17 16 20 23 1b -FIXUPS: 7fbfa 54 1e 8 39 34 2f 19 23 36 30 3c 3b 23 13 10 30 23 51 1c 40 -FIXUPS: 7ff89 16 26 36 5e 2c 8a 1a 10 33 23 fffff4cd 31 15 10 d 17 17 10 -FIXUPS: 7f710 5a 5f 3b d 2c 10 86 8 2a d 94 16 32 39 32 23 13 56 8 5c 23 -FIXUPS: 7fbe0 d fffff4c8 27 20 d 2c 20 d d c 8 10 21 d d 70 32 2c 7e 7b -FIXUPS: 7f3ba 17 13 17 23 4b 23 13 1b 34 43 7b 1a 91eb c 1a 5 1d e 13 1f -FIXUPS: 88847 3b 10 10 19 19 13 13 13 16 16 16 e e ffff663e 14 2d 20 d -FIXUPS: 7f049 20 d 23 11 93b9 26 23 32 23 d d 29 10 24 d 1f 35 23 13 3a -FIXUPS: 88657 a c 8 24 d 6 24 d 14 29 1e 2c d 28 10 fffff6a5 55 10 1b4 -FIXUPS: 880a0 1c 8 c 10 6 6 a 6 23 17 13 2f 4f b0 78 21 a f d 14 20 d 19 -FIXUPS: 88398 3f 52 23 6320 1d 13 ffff9376 27 f 21 30 2c 17 d 20 13 10 -FIXUPS: 87c39 a b e 15 98 16 10 d a b 8 54 d 36 6 10 17 666d 1f e 13 1f -FIXUPS: 8e4f7 13 1f e 13 1f e 13 1f 13 1d 13 1d 13 1d 13 1d 13 1d 13 1d -FIXUPS: 8e6dc 1d 13 1d 13 1d fffffa81 1f e 13 1f e 13 1f e 13 1f 13 1d -FIXUPS: 8e2f7 13 1f e 13 1f e 13 1f e 13 1f e 13 1f e 13 1f e fffff9d5 -FIXUPS: 8de75 c 28 e b b 1c 10 30 30 5a 66 18 2b a a 1c 1b 5 5 5 23 13 -FIXUPS: 8e109 e 32 30 e 13 1f e fffff70c 14 a d 16 c b e 1e 22 25 1b b -FIXUPS: 8d9e9 b b b b 4d 1e 39 12 4f a0 4a 29 c a5 4a 29 c a5 fffff737 -FIXUPS: 8d569 e b 45 b 14 22 6e 15 69 1e 14 25 12 20 22 12 24 24 10 1b -FIXUPS: 8d82c 8 e f 10 1e 16 14 c d fffff754 14 bf 18 28 30 30 30 13 1d -FIXUPS: 8d1ff 2a 17 1d 95 23 d 27 25 8 14 15 9 2c 14 41 30 b 65 b 25 12 -FIXUPS: 8cd42 1c 10 19 10 16 10 16 12 16 12 16 12 16 12 19 12 16 12 16 -FIXUPS: 8cecf b 6 b 26 10 11 15 35 3e 14 25 fffff976 b 65 12 2e 49 17 10 -FIXUPS: 8ca91 18 20 19 8 8 c a a d c 3b 7d 24 48 2b 19 2d 10 16 10 1c 10 -FIXUPS: 8cd32 fffff7da 1d 11 2e 17 4e 1c 12 1e 16 2a 17 1d 95 23 d 27 1f -FIXUPS: 8c7aa c c c 10 9 4c 20 f 17 f 31 30 40 fffff7cf 3b 67 24 2a 28 -FIXUPS: 8c229 23 f 12 4c 20 f 17 f 33 25 15 77 10 10 19 19 13 13 13 16 -FIXUPS: 8c4a9 16 e e 1e fffff743 12 1b 23 2f 22 1c 1f 14 8 1c 1a 3e 37 -FIXUPS: 8be08 7f 2e 64 17 15 64 12 2e 49 17 18 28 10 8 18 20 13 fffff6f0 -FIXUPS: 8b819 12 8e 13 1d e 24 4c 42 16 2a 17 1d 95 23 d 27 17 8 c 12 30 -FIXUPS: 8bb86 30 12 c 12 c c 1b 17 fffff7c9 1d 19 22 1a 3c 1d 16 1e d 13 -FIXUPS: 8b53a 1c 36 2d 11 13 4c 14 b b e 2a 31 44 12 d c 28 26 e 25 fffff765 -FIXUPS: 8af31 d 12 104 5 9f 2c 41 40 18 12 5c 2a 24 14 10 10 10 b 31 12 -FIXUPS: 8b320 c 17 c 10 1a 14 b 13 1d fffff62f d b 11 22 46 15 5c 12 3e -FIXUPS: 8ab6a 2a 2c 10 1c 28 15 100 12 2e b 25 b 25 1b b 43 7 1e 17 45 -FIXUPS: 8aec4 fffff740 12 21 8 14 20 13 11 c 44 b 4a 12 12 ae 12 f 13 21 -FIXUPS: 8a86f 10 17 23 14 12 1d 2a 3c 27 f 21 30 fffff860 6 b 13 1b 1d -FIXUPS: 8a2bd e e e 21 3a 27 f 21 30 e b d b 11 22 46 15 73 20 22 c 50 -FIXUPS: 8a5ab 2e 11 fffff7c1 37 1b 14 37 1b 14 37 1e 14 37 1b 14 37 1b -FIXUPS: 89fac 37 1b 14 37 30 12 11 1d 12 2e 30 e 15 a3 4b 6 fffff73d 44 -FIXUPS: 899cc 46 19 11 19 11 19 f 11 22 3a 46 22 3a 2d 14 2a 1b 14 2a 1b -FIXUPS: 89c90 2a 1b 14 2a 1e 14 37 1b fffff92b 12 8 15 8 27 e c 17 a a -FIXUPS: 89776 7 17 a a 11 20 e e 12 3b 27 f 21 30 e d b 11 22 46 fffff8fb -FIXUPS: 8927d 3a b 12 18 28 58 89 33 21 12 b 43 e c 26 13 18 18 1d e 48 -FIXUPS: 89602 27 f 21 30 e 8 e 7 fffff652 b 68 55 3b 10 8 1e 2a e c 28 -FIXUPS: 88eea 20 d 15 e3 27 11 19 22 27 11 72 d 55 d 2a d 5c b 12 7cde -FIXUPS: 90f3e 6 20 d 9a 1c ffff7965 11 c 99 27 f 21 39 17 13 1d 1a 1b 2b -FIXUPS: 88b84 3e 27 f 21 49 27 f 21 30 12 7cbe d 3b 20 d 59 d 4a d 1e 18 -FIXUPS: 90b36 16 25 d 10 44 1d d 15 25 d 31 171 21 d 15 6 20 d a0 21 fffff611 -FIXUPS: 90544 1d d 2c d 14 28 22 d 2f d e 14 1d d 2c d 46 4a d 3b 20 d -FIXUPS: 90831 d 5e d 6d d 5b d fffff865 d 3b 1d d 3e d 24 d d 1e d 14 22 -FIXUPS: 9035d 14 1d d 52 d 14 28 22 d 15 e 14 1d d 16 1d d fffff963 15 -FIXUPS: 8fea0 d 3b 1e d 2e 27 d 26 c 32 d 1b 1e d 11 1d d d 1e d 38 d 1e -FIXUPS: 9010f 2f 2a d 44 15 fffff92c 26 d 13 6 26 d 12 6 21 d 15 6 21 d -FIXUPS: 8fc6d 20 d 15 4a c 25 d 56 d 27 d 12 1e d 2a 27 fffff9e4 d 13 6 -FIXUPS: 8f88c d e b 1d d 14 20 d 13 1e d 18 26 d 13 6 26 d e 1f d e 9 43 -FIXUPS: 8faa3 20 d fffff90d 14 1b d 1e 1b d 1e 1b d 1e 1b d 1e 1b d 1e -FIXUPS: 8f56a d 18 1b d 172 48 22 d 20 1e d 16 6 13 fffff98c 1b d c 1b -FIXUPS: 8f202 c 1b d c 1b d c 1a d c 1b d c 1b d c 1b d c 1b d c 1b d 14 -FIXUPS: 8f3d0 fffffb5a d 11 26 d f 1d d f 1d d 14 1d d 18 1d d 16 1d d -FIXUPS: 8f0c6 1d d 19 1d d c 1a d c 1b d fffffb17 11 20 d 11 20 d 14 1d -FIXUPS: 8ed6b 14 1d d 14 1d d 14 1d d e 1a d e 1a d e 1b d e 1b d f fffffaf9 -FIXUPS: 8ea25 d f 1f d f 22 d e 20 d 14 20 d 16 24 d 16 24 d 16 20 d 16 -FIXUPS: 8ec2e d 11 1d d 11 1d fffffb25 18 d 23 d a 5 5 5 5 5 1b 20 d f -FIXUPS: 8e8b8 d f 20 d f 20 d 14 1d d 14 1d d f 1f d diff --git a/kauai/OBJ/WIND/KPACK.MAP b/kauai/OBJ/WIND/KPACK.MAP deleted file mode 100644 index b1017b09..00000000 --- a/kauai/OBJ/WIND/KPACK.MAP +++ /dev/null @@ -1,903 +0,0 @@ - kpack - - Timestamp is 3070bdec (Mon Oct 02 21:37:00 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 00017b18H .text CODE - 0002:00000000 00001a50H .bss DATA - 0003:00000000 000002e1H .rdata DATA - 0004:00000000 00001df8H .data DATA - 0004:00001df8 00000004H .CRT$XCA DATA - 0004:00001dfc 00000050H .CRT$XCU DATA - 0004:00001e4c 00000004H .CRT$XCZ DATA - 0004:00001e50 00000004H .CRT$XIA DATA - 0004:00001e54 00000004H .CRT$XIC DATA - 0004:00001e58 00000004H .CRT$XIZ DATA - 0004:00001e5c 00000004H .CRT$XPA DATA - 0004:00001e60 00000004H .CRT$XPX DATA - 0004:00001e64 00000004H .CRT$XPZ DATA - 0004:00001e68 00000004H .CRT$XTA DATA - 0004:00001e6c 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000acH .idata$4 DATA - 0005:00000110 000000acH .idata$5 DATA - 0005:000001bc 000002ccH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000430H .debug$F DATA - 0007:00000730 00000000H .debug$G DATA - 0007:00000730 00000032H .debug$H DATA - 0007:fffde000 00000000H .debug$P DATA - 0007:fffde000 00000000H .debug$S DATA - 0007:fffde000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:00000510 ?PfilNext@FIL@@QAEPAV1@XZ 00401510 f util.obj - 0001:00000540 ?PbllNext@BLL@@QAEPAV1@XZ 00401540 f util.obj - 0001:00000570 ?FWouldBe@BLL@@SGHJ@Z 00401570 f base.obj - 0001:000005b0 ?FIs@BLL@@UAEHJ@Z 004015b0 f base.obj - 0001:000005e0 ?Cls@BLL@@UAEJXZ 004015e0 f base.obj - 0001:00000610 ?Cls@BASE@@UAEJXZ 00401610 f base.obj - 0001:00000640 ?FIs@BASE@@UAEHJ@Z 00401640 f base.obj - 0001:00000680 ?FWouldBe@BASE@@SGHJ@Z 00401680 f base.obj - 0001:000006b0 ??0BASE@@QAE@XZ 004016b0 f base.obj - 0001:00000790 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00401790 f base.obj - 0001:000007b0 ?_Enter@@YGXXZ 004017b0 f base.obj - 0001:000007d0 ?_Leave@@YGXXZ 004017d0 f base.obj - 0001:000007f0 ?AddRef@BASE@@UAEXXZ 004017f0 f base.obj - 0001:00000880 ?Release@BASE@@UAEXXZ 00401880 f base.obj - 0001:00000930 ??2BASE@@SGPAXIPADJ@Z 00401930 f base.obj - 0001:00000b00 ?Debugger@@YGXXZ 00401b00 f base.obj - 0001:00000b20 ??3BASE@@SGXPAX@Z 00401b20 f base.obj - 0001:00000ba0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401ba0 f base.obj - 0001:00000bc0 ?AssertValid@BASE@@QAEXK@Z 00401bc0 f base.obj - 0001:00000cf0 ?MarkMemStub@BASE@@QAEXXZ 00401cf0 f base.obj - 0001:00000dd0 ?MarkMem@BASE@@UAEXXZ 00401dd0 f base.obj - 0001:00000e20 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401e20 f base.obj - 0001:00001010 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402010 f base.obj - 0001:00001090 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00402090 f base.obj - 0001:00001110 ??0BLL@@QAE@XZ 00402110 f base.obj - 0001:00001160 ??1BLL@@UAE@XZ 00402160 f base.obj - 0001:000011b0 ?_Attach@BLL@@IAEXPAX@Z 004021b0 f base.obj - 0001:00001350 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402350 f base.obj - 0001:00001380 ?AssertValid@BLL@@QAEXK@Z 00402380 f base.obj - 0001:00001480 ??_GBLL@@UAEPAXI@Z 00402480 f base.obj - 0001:00001480 ??_EBLL@@UAEPAXI@Z 00402480 f base.obj - 0001:000014c0 ??0STN@@QAE@XZ 004024c0 f base.obj - 0001:00001520 ?PvAddBv@@YGPAXPAXJ@Z 00402520 f base.obj - 0001:00001540 ?PvSubBv@@YGPAXPAXJ@Z 00402540 f base.obj - 0001:00001560 ?Enter@MUTX@@QAEXXZ 00402560 f base.obj - 0001:00001590 ?Leave@MUTX@@QAEXXZ 00402590 f base.obj - 0001:000015c0 ?LwThreadCur@@YGJXZ 004025c0 f base.obj - 0001:000015e0 ?FillPb@@YGXPAXJE@Z 004025e0 f utilcopy.obj - 0001:00001640 ?ClearPb@@YGXPAXJ@Z 00402640 f utilcopy.obj - 0001:000016b0 ?FEqualRgb@@YGHPAX0J@Z 004026b0 f utilcopy.obj - 0001:00001730 ?CbEqualRgb@@YGJPAX0J@Z 00402730 f utilcopy.obj - 0001:000017c0 ?CopyPb@@YGXPAX0J@Z 004027c0 f utilcopy.obj - 0001:00001860 ?BltPb@@YGXPAX0J@Z 00402860 f utilcopy.obj - 0001:00001940 ?FWouldBe@ERS@@SGHJ@Z 00402940 f utilerro.obj - 0001:00001980 ?FIs@ERS@@UAEHJ@Z 00402980 f utilerro.obj - 0001:000019b0 ?Cls@ERS@@UAEJXZ 004029b0 f utilerro.obj - 0001:000019e0 ??0ERS@@QAE@XZ 004029e0 f utilerro.obj - 0001:00001a30 ?Push@ERS@@UAEXJPADJ@Z 00402a30 f utilerro.obj - 0001:00001bf0 ?FPop@ERS@@UAEHPAJ@Z 00402bf0 f utilerro.obj - 0001:00001cf0 ?Clear@ERS@@UAEXXZ 00402cf0 f utilerro.obj - 0001:00001d60 ?Cerc@ERS@@UAEJXZ 00402d60 f utilerro.obj - 0001:00001db0 ?FIn@ERS@@UAEHJ@Z 00402db0 f utilerro.obj - 0001:00001e80 ?ErcGet@ERS@@UAEJJ@Z 00402e80 f utilerro.obj - 0001:00001f20 ?Flush@ERS@@UAEXJ@Z 00402f20 f utilerro.obj - 0001:00002010 ?FIn@@YGHJJJ@Z 00403010 f utilerro.obj - 0001:00002050 ?AssertValid@ERS@@QAEXK@Z 00403050 f utilerro.obj - 0001:000020f0 ??1ERS@@UAE@XZ 004030f0 f utilerro.obj - 0001:00002120 ??_EERS@@UAEPAXI@Z 00403120 f utilerro.obj - 0001:00002120 ??_GERS@@UAEPAXI@Z 00403120 f utilerro.obj - 0001:00002180 ?LwMul@@YGJJJ@Z 00403180 f utilint.obj - 0001:000021f0 ?AssertIn@@YGXJJJ@Z 004031f0 f utilint.obj - 0001:00002270 ?SwapBytesBom@@YGXPAXK@Z 00403270 f utilint.obj - 0001:00002350 ?LwMin@@YGJJJ@Z 00403350 f utilint.obj - 0001:00002380 ?SwapBytesRglw@@YGXPAXJ@Z 00403380 f utilint.obj - 0001:00002430 ?LwMax@@YGJJJ@Z 00403430 f utilint.obj - 0001:00002460 ?LwBound@@YGJJJJ@Z 00403460 f utilint.obj - 0001:000024a0 ??0USAC@@QAE@XZ 004034a0 f utilint.obj - 0001:00002520 ??_EUSAC@@UAEPAXI@Z 00403520 f utilint.obj - 0001:00002520 ??_GUSAC@@UAEPAXI@Z 00403520 f utilint.obj - 0001:00002560 ?TsCurrentSystem@@YGKXZ 00403560 f utilint.obj - 0001:00002580 ?FFail@DMAGL@@QAEHXZ 00403580 f utilmem.obj - 0001:000025f0 ?Allocate@DMAGL@@QAEXJ@Z 004035f0 f utilmem.obj - 0001:00002680 ?Resize@DMAGL@@QAEXJ@Z 00403680 f utilmem.obj - 0001:000026e0 ?Free@DMAGL@@QAEXJ@Z 004036e0 f utilmem.obj - 0001:00002720 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00403720 f utilmem.obj - 0001:00002a70 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00403a70 f utilmem.obj - 0001:00002e80 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00403e80 f utilmem.obj - 0001:00002f20 ?_LinkMbh@@YGXPAUMBH@@@Z 00403f20 f utilmem.obj - 0001:00002fc0 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00403fc0 f utilmem.obj - 0001:00003160 ?_AssertMbh@@YGXPAUMBH@@@Z 00404160 f utilmem.obj - 0001:000033a0 ?AssertPvAlloced@@YGXPAXJ@Z 004043a0 f utilmem.obj - 0001:00003460 ?MarkPv@@YGXPAX@Z 00404460 f utilmem.obj - 0001:000034d0 ?FWouldBe@RND@@SGHJ@Z 004044d0 f utilrnd.obj - 0001:00003510 ?FIs@RND@@UAEHJ@Z 00404510 f utilrnd.obj - 0001:00003540 ?Cls@RND@@UAEJXZ 00404540 f utilrnd.obj - 0001:00003570 ?FWouldBe@SFL@@SGHJ@Z 00404570 f utilrnd.obj - 0001:000035b0 ?FIs@SFL@@UAEHJ@Z 004045b0 f utilrnd.obj - 0001:000035e0 ?Cls@SFL@@UAEJXZ 004045e0 f utilrnd.obj - 0001:00003610 ??0RND@@QAE@K@Z 00404610 f utilrnd.obj - 0001:000036a0 ?LwNext@RND@@UAEJJ@Z 004046a0 f utilrnd.obj - 0001:00003770 ??0SFL@@QAE@K@Z 00404770 f utilrnd.obj - 0001:00003800 ??1SFL@@UAE@XZ 00404800 f utilrnd.obj - 0001:00003870 ?AssertValid@SFL@@QAEXK@Z 00404870 f utilrnd.obj - 0001:00003940 ?MarkMem@SFL@@UAEXXZ 00404940 f utilrnd.obj - 0001:000039a0 ?Shuffle@SFL@@QAEXJ@Z 004049a0 f utilrnd.obj - 0001:00003ab0 ?_ShuffleCore@SFL@@IAEXXZ 00404ab0 f utilrnd.obj - 0001:00003ba0 ?_FEnsureHq@SFL@@IAEHJ@Z 00404ba0 f utilrnd.obj - 0001:00003d20 ?LwNext@SFL@@UAEJJ@Z 00404d20 f utilrnd.obj - 0001:00003e80 ??_GRND@@UAEPAXI@Z 00404e80 f utilrnd.obj - 0001:00003e80 ??_ERND@@UAEPAXI@Z 00404e80 f utilrnd.obj - 0001:00003ec0 ??_ESFL@@UAEPAXI@Z 00404ec0 f utilrnd.obj - 0001:00003ec0 ??_GSFL@@UAEPAXI@Z 00404ec0 f utilrnd.obj - 0001:00003f00 ??4STN@@QAEAAV0@AAV0@@Z 00404f00 f utilstr.obj - 0001:00003ff0 ?SetRgch@STN@@QAEXPADJ@Z 00404ff0 f utilstr.obj - 0001:000040d0 ?SetSzs@STN@@QAEXPAD@Z 004050d0 f utilstr.obj - 0001:00004130 ?Delete@STN@@QAEXJJ@Z 00405130 f utilstr.obj - 0001:00004290 ?FAppendRgch@STN@@QAEHPADJ@Z 00405290 f utilstr.obj - 0001:00004390 ?FInsertRgch@STN@@QAEHJPADJ@Z 00405390 f utilstr.obj - 0001:00004540 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00405540 f utilstr.obj - 0001:000045d0 ?GetSzs@STN@@QAEXPAD@Z 004055d0 f utilstr.obj - 0001:00004640 ?FFormatSz@STN@@QAAHPADZZ 00405640 f utilstr.obj - 0001:000046a0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004056a0 f utilstr.obj - 0001:00004f00 ?FGetLw@STN@@QAEHPAJJ@Z 00405f00 f utilstr.obj - 0001:000051d0 ?Prgch@STN@@QAEPADXZ 004061d0 f utilstr.obj - 0001:00005220 ?Psz@STN@@QAEPADXZ 00406220 f utilstr.obj - 0001:00005270 ?Cch@STN@@QAEJXZ 00406270 f utilstr.obj - 0001:000052c0 ?SetNil@STN@@QAEXXZ 004062c0 f utilstr.obj - 0001:00005320 ?SetSz@STN@@QAEXPAD@Z 00406320 f utilstr.obj - 0001:00005360 ?AssertValid@STN@@QAEXK@Z 00406360 f utilstr.obj - 0001:00005450 ?CchSz@@YGJPAD@Z 00406450 f utilstr.obj - 0001:000054f0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004064f0 f utilstr.obj - 0001:00005660 ?UpperRgchs@@YGXPADJ@Z 00406660 f utilstr.obj - 0001:00005720 ?AssertOsk@@YGXF@Z 00406720 f utilstr.obj - 0001:000057d0 ?AssertSz@@YGXPAD@Z 004067d0 f utilstr.obj - 0001:00005820 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00406820 f memwin.obj - 0001:00005900 ?FResizePhq@@YGHPAPAXJKJ@Z 00406900 f memwin.obj - 0001:00005a30 ?FreePhq@@YGXPAPAX@Z 00406a30 f memwin.obj - 0001:00005ae0 ?CbOfHq@@YGJPAX@Z 00406ae0 f memwin.obj - 0001:00005b20 ?QvFromHq@@YGPAXPAX@Z 00406b20 f memwin.obj - 0001:00005b40 ?PvLockHq@@YGPAXPAX@Z 00406b40 f memwin.obj - 0001:00005bc0 ?UnlockHq@@YGXPAX@Z 00406bc0 f memwin.obj - 0001:00005c40 ?AssertHq@@YGXPAX@Z 00406c40 f memwin.obj - 0001:00005d30 ?MarkHq@@YGXPAX@Z 00406d30 f memwin.obj - 0001:00005d70 ?AssertPvCb@@YGXPAXJ@Z 00406d70 f memwin.obj - 0001:00005e20 ?ElError@FIL@@QAEJXZ 00406e20 f chunk.obj - 0001:00005e50 ?IvMac@GRPB@@QAEJXZ 00406e50 f chunk.obj - 0001:00005e80 ?FWrite@FLO@@QAEHPAX@Z 00406e80 f chunk.obj - 0001:00005ee0 ??4FNI@@QAEAAV0@AAV0@@Z 00406ee0 f chunk.obj - 0001:00005f30 ??1FNI@@UAE@XZ 00406f30 f chunk.obj - 0001:00005f60 ??4BASE@@QAEAAV0@ABV0@@Z 00406f60 f chunk.obj - 0001:00005fa0 ?FWouldBe@CODM@@SGHJ@Z 00406fa0 f codec.obj - 0001:00005fe0 ?FIs@CODM@@UAEHJ@Z 00406fe0 f codec.obj - 0001:00006010 ?Cls@CODM@@UAEJXZ 00407010 f codec.obj - 0001:00006040 ?FWouldBe@CODC@@SGHJ@Z 00407040 f codec.obj - 0001:00006080 ?FIs@CODC@@UAEHJ@Z 00407080 f codec.obj - 0001:000060b0 ?Cls@CODC@@UAEJXZ 004070b0 f codec.obj - 0001:000060e0 ??0CODM@@QAE@PAVCODC@@J@Z 004070e0 f codec.obj - 0001:000061e0 ??1CODM@@UAE@XZ 004071e0 f codec.obj - 0001:00006300 ?AssertValid@CODM@@QAEXK@Z 00407300 f codec.obj - 0001:000063d0 ?MarkMem@CODM@@UAEXXZ 004073d0 f codec.obj - 0001:000064c0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 004074c0 f codec.obj - 0001:000065d0 ?FCanDo@CODM@@UAEHJH@Z 004075d0 f codec.obj - 0001:00006640 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00407640 f codec.obj - 0001:00006770 ?LwFromBytes@@YGJEEEE@Z 00407770 f codec.obj - 0001:000067b0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 004077b0 f codec.obj - 0001:000068f0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004078f0 f codec.obj - 0001:00006ae0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00407ae0 f codec.obj - 0001:00006df0 ?B0Lw@@YGEJ@Z 00407df0 f codec.obj - 0001:00006e10 ?B1Lw@@YGEJ@Z 00407e10 f codec.obj - 0001:00006e30 ?B2Lw@@YGEJ@Z 00407e30 f codec.obj - 0001:00006e50 ?B3Lw@@YGEJ@Z 00407e50 f codec.obj - 0001:00006e90 ??_GCODM@@UAEPAXI@Z 00407e90 f codec.obj - 0001:00006e90 ??_ECODM@@UAEPAXI@Z 00407e90 f codec.obj - 0001:00006ed0 ?FWouldBe@KCDC@@SGHJ@Z 00407ed0 f codkauai.obj - 0001:00006f10 ?FIs@KCDC@@UAEHJ@Z 00407f10 f codkauai.obj - 0001:00006f40 ?Cls@KCDC@@UAEJXZ 00407f40 f codkauai.obj - 0001:00006f70 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00407f70 f codkauai.obj - 0001:000070d0 ?Set@BITA@@QAEXPAXJ@Z 004080d0 f codkauai.obj - 0001:00007130 ?FWriteBits@BITA@@QAEHKJ@Z 00408130 f codkauai.obj - 0001:000072d0 ?FWriteLogEncoded@BITA@@QAEHK@Z 004082d0 f codkauai.obj - 0001:000073c0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004083c0 f codkauai.obj - 0001:00007b80 ?Ibit@BITA@@QAEJXZ 00408b80 f codkauai.obj - 0001:00007bb0 ?Ib@BITA@@QAEJXZ 00408bb0 f codkauai.obj - 0001:00007be0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00408be0 f codkauai.obj - 0001:0000b8c0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040c8c0 f codkauai.obj - 0001:0000c1e0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040d1e0 f codkauai.obj - 0001:0000ea30 ?FWouldBe@FIL@@SGHJ@Z 0040fa30 f file.obj - 0001:0000ea70 ?FIs@FIL@@UAEHJ@Z 0040fa70 f file.obj - 0001:0000eaa0 ?Cls@FIL@@UAEJXZ 0040faa0 f file.obj - 0001:0000ead0 ?FWouldBe@BLCK@@SGHJ@Z 0040fad0 f file.obj - 0001:0000eb10 ?FIs@BLCK@@UAEHJ@Z 0040fb10 f file.obj - 0001:0000eb40 ?Cls@BLCK@@UAEJXZ 0040fb40 f file.obj - 0001:0000eb70 ??0FIL@@IAE@PAVFNI@@K@Z 0040fb70 f file.obj - 0001:0000ec60 ??1FIL@@MAE@XZ 0040fc60 f file.obj - 0001:0000ecd0 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0040fcd0 f file.obj - 0001:0000eef0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0040fef0 f file.obj - 0001:0000f0c0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 004100c0 f file.obj - 0001:0000f210 ?FSetGrffil@FIL@@QAEHKK@Z 00410210 f file.obj - 0001:0000f320 ?Release@FIL@@UAEXXZ 00410320 f file.obj - 0001:0000f400 ?SetTemp@FIL@@QAEXH@Z 00410400 f file.obj - 0001:0000f480 ?ShutDown@FIL@@SGXXZ 00410480 f file.obj - 0001:0000f540 ?AssertValid@FIL@@QAEXK@Z 00410540 f file.obj - 0001:0000f670 ?_FRangeIn@@YGHJJJ@Z 00410670 f file.obj - 0001:0000f6d0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 004106d0 f file.obj - 0001:0000f7a0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 004107a0 f file.obj - 0001:0000f870 ?FCopy@FLO@@QAEHPAU1@@Z 00410870 f file.obj - 0001:0000faf0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00410af0 f file.obj - 0001:0000fc00 ?AssertValid@FLO@@QAEXK@Z 00410c00 f file.obj - 0001:0000fd00 ??0BLCK@@QAE@PAUFLO@@H@Z 00410d00 f file.obj - 0001:0000fe40 ??0BLCK@@QAE@XZ 00410e40 f file.obj - 0001:0000fee0 ??1BLCK@@UAE@XZ 00410ee0 f file.obj - 0001:0000ff40 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00410f40 f file.obj - 0001:00010070 ?SetHq@BLCK@@QAEXPAPAXH@Z 00411070 f file.obj - 0001:00010150 ?Free@BLCK@@QAEXXZ 00411150 f file.obj - 0001:00010200 ?HqFree@BLCK@@QAEPAXH@Z 00411200 f file.obj - 0001:000103b0 ?Cb@BLCK@@QAEJH@Z 004113b0 f file.obj - 0001:00010440 ?FReadHq@FLO@@QAEHPAPAX@Z 00411440 f file.obj - 0001:00010480 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00411480 f file.obj - 0001:00010620 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00411620 f file.obj - 0001:000107c0 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 004117c0 f file.obj - 0001:00010960 ?FPacked@BLCK@@QAEHPAJ@Z 00411960 f file.obj - 0001:00010a00 ?FPackData@BLCK@@QAEHJ@Z 00411a00 f file.obj - 0001:00010c40 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 00411c40 f file.obj - 0001:00010c90 ?FUnpackData@BLCK@@QAEHXZ 00411c90 f file.obj - 0001:00010ec0 ?FDecompressPhq@CODM@@QAEHPAPAX@Z 00411ec0 f file.obj - 0001:00010ef0 ?AssertValid@BLCK@@QAEXK@Z 00411ef0 f file.obj - 0001:00011120 ?MarkMem@BLCK@@UAEXXZ 00412120 f file.obj - 0001:000111c0 ??_GFIL@@MAEPAXI@Z 004121c0 f file.obj - 0001:000111c0 ??_EFIL@@MAEPAXI@Z 004121c0 f file.obj - 0001:00011200 ??_EBLCK@@UAEPAXI@Z 00412200 f file.obj - 0001:00011200 ??_GBLCK@@UAEPAXI@Z 00412200 f file.obj - 0001:00011240 ?_HfileOpen@@YGPAXPADHK@Z 00412240 f filewin.obj - 0001:000112c0 ?_FOpen@FIL@@IAEHHK@Z 004122c0 f filewin.obj - 0001:00011500 ?_Close@FIL@@IAEXH@Z 00412500 f filewin.obj - 0001:00011620 ?Flush@FIL@@QAEXXZ 00412620 f filewin.obj - 0001:000116b0 ?_SetFpPos@FIL@@IAEXJ@Z 004126b0 f filewin.obj - 0001:000117b0 ?FpMac@FIL@@QAEJXZ 004127b0 f filewin.obj - 0001:000118c0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 004128c0 f filewin.obj - 0001:00011a80 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00412a80 f filewin.obj - 0001:00011c90 ?FWouldBe@FNI@@SGHJ@Z 00412c90 f fniwin.obj - 0001:00011cd0 ?FIs@FNI@@UAEHJ@Z 00412cd0 f fniwin.obj - 0001:00011d00 ?Cls@FNI@@UAEJXZ 00412d00 f fniwin.obj - 0001:00011d30 ?SetNil@FNI@@QAEXXZ 00412d30 f fniwin.obj - 0001:00011d90 ??0FNI@@QAE@XZ 00412d90 f fniwin.obj - 0001:00011de0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00412de0 f fniwin.obj - 0001:00012130 ?FChangeFtg@FNI@@QAEHJ@Z 00413130 f fniwin.obj - 0001:000122a0 ?FEqual@FNI@@QAEHPAV1@@Z 004132a0 f fniwin.obj - 0001:00012360 ?AssertValid@FNI@@QAEXK@Z 00413360 f fniwin.obj - 0001:000126a0 ?_CchExt@FNI@@AAEJXZ 004136a0 f fniwin.obj - 0001:000127a0 ?_SetFtgFromName@FNI@@AAEXXZ 004137a0 f fniwin.obj - 0001:00012910 ?ChsUpper@@YGDD@Z 00413910 f fniwin.obj - 0001:00012930 ??4STN@@QAEAAV0@PAD@Z 00413930 f fniwin.obj - 0001:00012960 ?FAppendCh@STN@@QAEHD@Z 00413960 f fniwin.obj - 0001:00012990 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00413990 f fniwin.obj - 0001:00012ac0 ?FAppendStn@STN@@QAEHPAV1@@Z 00413ac0 f fniwin.obj - 0001:00012b00 ?FInsertCh@STN@@QAEHJD@Z 00413b00 f fniwin.obj - 0001:00012b40 ?FEqualUser@STN@@QAEHPAV1@K@Z 00413b40 f fniwin.obj - 0001:00012be0 ??_GFNI@@UAEPAXI@Z 00413be0 f fniwin.obj - 0001:00012be0 ??_EFNI@@UAEPAXI@Z 00413be0 f fniwin.obj - 0001:00012c20 ?FWouldBe@GRPB@@SGHJ@Z 00413c20 f groups.obj - 0001:00012c60 ?FIs@GRPB@@UAEHJ@Z 00413c60 f groups.obj - 0001:00012c90 ?Cls@GRPB@@UAEJXZ 00413c90 f groups.obj - 0001:00012cc0 ?FWouldBe@GLB@@SGHJ@Z 00413cc0 f groups.obj - 0001:00012d00 ?FIs@GLB@@UAEHJ@Z 00413d00 f groups.obj - 0001:00012d30 ?Cls@GLB@@UAEJXZ 00413d30 f groups.obj - 0001:00012d60 ?FWouldBe@GL@@SGHJ@Z 00413d60 f groups.obj - 0001:00012da0 ?FIs@GL@@UAEHJ@Z 00413da0 f groups.obj - 0001:00012dd0 ?Cls@GL@@UAEJXZ 00413dd0 f groups.obj - 0001:00012e00 ??1GRPB@@UAE@XZ 00413e00 f groups.obj - 0001:00012e70 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00413e70 f groups.obj - 0001:00013070 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00414070 f groups.obj - 0001:00013230 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00414230 f groups.obj - 0001:00013290 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00414290 f groups.obj - 0001:00013460 ?AssertValid@GRPB@@QAEXK@Z 00414460 f groups.obj - 0001:000135f0 ?MarkMem@GRPB@@UAEXXZ 004145f0 f groups.obj - 0001:00013660 ??0GLB@@IAE@J@Z 00414660 f groups.obj - 0001:000136f0 ?QvGet@GLB@@QAEPAXJ@Z 004146f0 f groups.obj - 0001:00013780 ?Get@GLB@@QAEXJPAX@Z 00414780 f groups.obj - 0001:00013810 ?AssertValid@GLB@@QAEXK@Z 00414810 f groups.obj - 0001:000138b0 ?PglNew@GL@@SGPAV1@JJ@Z 004148b0 f groups.obj - 0001:000139e0 ??0GL@@IAE@J@Z 004149e0 f groups.obj - 0001:00013a40 ?FFree@GL@@UAEHJ@Z 00414a40 f groups.obj - 0001:00013ab0 ?CbOnFile@GL@@UAEJXZ 00414ab0 f groups.obj - 0001:00013b10 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00414b10 f groups.obj - 0001:00013ce0 ?FInsert@GL@@QAEHJPAXJ@Z 00414ce0 f groups.obj - 0001:00013e60 ?Delete@GL@@UAEXJ@Z 00414e60 f groups.obj - 0001:00013ec0 ?Delete@GL@@QAEXJJ@Z 00414ec0 f groups.obj - 0001:00014030 ?FAdd@GL@@UAEHPAXPAJ@Z 00415030 f groups.obj - 0001:000140e0 ?FEnsureSpace@GL@@QAEHJK@Z 004150e0 f groups.obj - 0001:000141b0 ?_Qb1@GRPB@@IAEPAEJ@Z 004151b0 f groups.obj - 0001:000141e0 ?_Cb1@GRPB@@IAEJXZ 004151e0 f groups.obj - 0001:00014210 ??0GRPB@@IAE@XZ 00415210 f groups.obj - 0001:00014270 ??_GGRPB@@UAEPAXI@Z 00415270 f groups.obj - 0001:00014270 ??_EGRPB@@UAEPAXI@Z 00415270 f groups.obj - 0001:000142b0 ??_GGLB@@UAEPAXI@Z 004152b0 f groups.obj - 0001:000142b0 ??_EGLB@@UAEPAXI@Z 004152b0 f groups.obj - 0001:000142f0 ??_EGL@@UAEPAXI@Z 004152f0 f groups.obj - 0001:000142f0 ??_GGL@@UAEPAXI@Z 004152f0 f groups.obj - 0001:00014330 ??1GLB@@UAE@XZ 00415330 f groups.obj - 0001:00014360 ??1GL@@UAE@XZ 00415360 f groups.obj - 0001:000143d0 _main 004153d0 f kpack.obj - 0001:00014cb0 ?_FGetLwFromSzs@@YGHPADPAJ@Z 00415cb0 f kpack.obj - 0001:00014d90 ?WarnProc@@YGXPADJ0@Z 00415d90 f kpack.obj - 0001:00014e10 ?FAssertProc@@YGHPADJ0PAXJ@Z 00415e10 f kpack.obj - 0001:00014fd0 ?CfmtDefault@CODM@@QAEJXZ 00415fd0 f kpack.obj - 0001:00015110 ??0ACR@@QAE@EEE@Z 00416110 f kpack.obj - 0001:00015150 ??0ACR@@QAE@HH@Z 00416150 f kpack.obj - 0001:00015194 _timeGetTime@0 00416194 winmm:WINMM.dll - 0001:0001519c __alloca_probe 0041619c LIBC:chkstk.obj - 0001:0001519c __chkstk 0041619c LIBC:chkstk.obj - 0001:000151c9 __onexit 004161c9 f LIBC:onexit.obj - 0001:0001523f _atexit 0041623f f LIBC:onexit.obj - 0001:00015251 ___onexitinit 00416251 f LIBC:onexit.obj - 0001:00015287 __purecall 00416287 f LIBC:purevirt.obj - 0001:00015292 _fprintf 00416292 f LIBC:fprintf.obj - 0001:000152c8 _printf 004162c8 f LIBC:printf.obj - 0001:00015304 _mainCRTStartup 00416304 f LIBC:crt0.obj - 0001:000153fd __amsg_exit 004163fd f LIBC:crt0.obj - 0001:0001541d __cinit 0041641d f LIBC:crt0dat.obj - 0001:0001544d _exit 0041644d f LIBC:crt0dat.obj - 0001:0001545e __exit 0041645e f LIBC:crt0dat.obj - 0001:0001550e _realloc 0041650e f LIBC:realloc.obj - 0001:00015660 __msize 00416660 f LIBC:msize.obj - 0001:00015671 _malloc 00416671 f LIBC:malloc.obj - 0001:00015684 __nh_malloc 00416684 f LIBC:malloc.obj - 0001:00015743 __heap_split_block 00416743 f LIBC:malloc.obj - 0001:00015788 __stbuf 00416788 f LIBC:_sftbuf.obj - 0001:00015809 __ftbuf 00416809 f LIBC:_sftbuf.obj - 0001:0001584f __output 0041684f f LIBC:output.obj - 0001:00016178 __global_unwind2 00417178 f LIBC:exsup.obj - 0001:000161ba __local_unwind2 004171ba f LIBC:exsup.obj - 0001:00016214 __abnormal_termination 00417214 f LIBC:exsup.obj - 0001:00016237 __XcptFilter 00417237 f LIBC:winxfltr.obj - 0001:000163c2 __setenvp 004173c2 f LIBC:stdenvp.obj - 0001:0001648d __setargv 0041748d f LIBC:stdargv.obj - 0001:0001678b __setmbcp 0041778b f LIBC:mbctype.obj - 0001:00016919 ___initmbctable 00417919 f LIBC:mbctype.obj - 0001:00016924 __ioinit 00417924 f LIBC:ioinit.obj - 0001:00016a12 __heap_init 00417a12 f LIBC:heapinit.obj - 0001:00016a8f ___getempty 00417a8f f LIBC:heapinit.obj - 0001:00016abc __except_handler3 00417abc f LIBC:exsup3.obj - 0001:00016b6a __seh_longjmp_unwind@4 00417b6a f LIBC:exsup3.obj - 0001:00016b85 __FF_MSGBANNER 00417b85 f LIBC:crt0msg.obj - 0001:00016bab __NMSG_WRITE 00417bab f LIBC:crt0msg.obj - 0001:00016c03 _free 00417c03 f LIBC:free.obj - 0001:00016c6b __heap_abort 00417c6b f LIBC:hpabort.obj - 0001:00016c76 __heap_grow 00417c76 f LIBC:heapgrow.obj - 0001:00016d5f __heap_grow_region 00417d5f f LIBC:heapgrow.obj - 0001:00016e0c __heap_free_region 00417e0c f LIBC:heapgrow.obj - 0001:00016e46 __heap_search 00417e46 f LIBC:heapsrch.obj - 0001:00016f36 _fflush 00417f36 f LIBC:fflush.obj - 0001:00016f82 __flush 00417f82 f LIBC:fflush.obj - 0001:00016fe4 __flushall 00417fe4 f LIBC:fflush.obj - 0001:00017059 ___endstdio 00418059 f LIBC:fflush.obj - 0001:0001706d __isatty 0041806d f LIBC:isatty.obj - 0001:00017087 _wctomb 00418087 f LIBC:wctomb.obj - 0001:00017100 __aulldiv 00418100 f LIBC:ulldiv.obj - 0001:00017160 __aullrem 00418160 f LIBC:ullrem.obj - 0001:000171ca __flsbuf 004181ca f LIBC:_flsbuf.obj - 0001:000172d6 __heap_addblock 004182d6 f LIBC:heapadd.obj - 0001:0001758d __commit 0041858d f LIBC:commit.obj - 0001:000175da __write 004185da f LIBC:write.obj - 0001:00017773 __fcloseall 00418773 f LIBC:closeall.obj - 0001:000177a4 __fptrap 004187a4 f LIBC:crt0fp.obj - 0001:000177af __lseek 004187af f LIBC:lseek.obj - 0001:00017824 __getbuf 00418824 f LIBC:_getbuf.obj - 0001:0001786f __heap_findaddr 0041886f f LIBC:findaddr.obj - 0001:000178d9 __free_osfhnd 004188d9 f LIBC:osfinfo.obj - 0001:00017946 __get_osfhandle 00418946 f LIBC:osfinfo.obj - 0001:0001797e __dosmaperr 0041897e f LIBC:dosmap.obj - 0001:000179e7 _fclose 004189e7 f LIBC:fclose.obj - 0001:00017a43 __close 00418a43 f LIBC:close.obj - 0001:00017ad9 __freebuf 00418ad9 f LIBC:_freebuf.obj - 0001:00017b12 _RtlUnwind@16 00418b12 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00419000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00419018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00419030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 00419040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 00419058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 00419070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004190c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004190e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 00419108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 0041910c base.obj - 0002:00000120 ?_ers@@3VERS@@A 00419120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 00419248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 00419260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 00419368 utilstr.obj - 0002:00000478 ?_pcflFirst@CFL@@0PAV1@A 00419478 chunk.obj - 0002:000004a0 ?_pfilFirst@FIL@@1PAV1@A 004194a0 file.obj - 0002:000004a8 ?_mutxList@FIL@@1VMUTX@@A 004194a8 file.obj - 0002:000004d0 ?_fniTemp@@3VFNI@@A 004194d0 fniwin.obj - 0002:0000073c __heap_descpages 0041973c - 0002:00000740 __heap_regions 00419740 - 0002:00000a40 ___onexitend 00419a40 - 0002:00000a44 __FPinit 00419a44 - 0002:00000a48 ___onexitbegin 00419a48 - 0002:00000a4c __acmdln 00419a4c - 0002:00000a50 __bufin 00419a50 - 0003:00000058 ??_7KCDC@@6B@ 0041b058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 0041b078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 0041b090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 0041b0b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 0041b0c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 0041b100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 0041b118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 0041b138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 0041b158 utilstr.obj - 0003:00000170 ??_7CODM@@6B@ 0041b170 codec.obj - 0003:000001a0 ??_7FIL@@6B@ 0041b1a0 file.obj - 0003:000001b8 ??_7BLCK@@6B@ 0041b1b8 file.obj - 0003:000001d0 ??_7FNI@@6B@ 0041b1d0 fniwin.obj - 0003:000001e8 ??_7GRPB@@6B@ 0041b1e8 groups.obj - 0003:00000218 ??_7GLB@@6B@ 0041b218 groups.obj - 0003:00000248 ??_7GL@@6B@ 0041b248 groups.obj - 0003:00000288 ___lookuptable 0041b288 LIBC:output.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 0041c020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 0041c024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 0041c064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 0041c068 base.obj - 0004:0000006c ?vcactAV@@3JA 0041c06c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 0041c070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 0041c088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 0041c0a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 0041c0b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 0041c0c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 0041c0e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 0041c0f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0041c10c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 0041c120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0041c13c base.obj - 0004:0000015c ??_C@_03GOHA@nil?$AA@ 0041c15c base.obj - 0004:00000160 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 0041c160 base.obj - 0004:00000170 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 0041c170 base.obj - 0004:00000180 ??_C@_0O@NAKK@links?5corrupt?$AA@ 0041c180 base.obj - 0004:000001b0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 0041c1b0 utilcopy.obj - 0004:000001e0 ?vpers@@3PAVERS@@A 0041c1e0 utilerro.obj - 0004:000001e4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 0041c1e4 utilerro.obj - 0004:0000020c ??_C@_08GEE@Error?5?$CFd?$AA@ 0041c20c utilerro.obj - 0004:00000238 ??_C@_084overflow?$AA@ 0041c238 utilint.obj - 0004:00000244 ??_C@_0N@INPL@long?5too?5big?$AA@ 0041c244 utilint.obj - 0004:00000254 ??_C@_0P@DFPA@long?5too?5small?$AA@ 0041c254 utilint.obj - 0004:00000288 ?vpfnlib@@3P6GJJJ@ZA 0041c288 utilmem.obj - 0004:0000028c ?_fInLiberator@@3HA 0041c28c utilmem.obj - 0004:00000290 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 0041c290 utilmem.obj - 0004:000002b4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 0041c2b4 utilmem.obj - 0004:000002cc ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 0041c2cc utilmem.obj - 0004:000002f4 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 0041c2f4 utilmem.obj - 0004:00000318 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 0041c318 utilmem.obj - 0004:00000338 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 0041c338 utilmem.obj - 0004:0000034c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 0041c34c utilmem.obj - 0004:00000360 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 0041c360 utilmem.obj - 0004:00000374 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 0041c374 utilmem.obj - 0004:00000388 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 0041c388 utilmem.obj - 0004:000003a0 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 0041c3a0 utilmem.obj - 0004:000003b4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 0041c3b4 utilmem.obj - 0004:000003c4 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 0041c3c4 utilmem.obj - 0004:000003d8 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 0041c3d8 utilmem.obj - 0004:000003f4 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 0041c3f4 utilmem.obj - 0004:00000408 ??_C@_08ECDH@wrong?5cb?$AA@ 0041c408 utilmem.obj - 0004:00000414 ??_C@_06BHIL@nil?5pv?$AA@ 0041c414 utilmem.obj - 0004:00000440 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 0041c440 utilrnd.obj - 0004:0000045c ??_C@_0L@LEMP@_clw?5wrong?$AA@ 0041c45c utilrnd.obj - 0004:00000468 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 0041c468 utilrnd.obj - 0004:00000478 ??_C@_0L@DINP@wrong?5_clw?$AA@ 0041c478 utilrnd.obj - 0004:000005a8 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 0041c5a8 utilstr.obj - 0004:000005d0 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 0041c5d0 utilstr.obj - 0004:000005f8 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 0041c5f8 utilstr.obj - 0004:00000608 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 0041c608 utilstr.obj - 0004:0000061c ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 0041c61c utilstr.obj - 0004:0000062c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 0041c62c utilstr.obj - 0004:00000648 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 0041c648 utilstr.obj - 0004:00000664 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 0041c664 utilstr.obj - 0004:00000670 ??_C@_07NPFI@bad?5osk?$AA@ 0041c670 utilstr.obj - 0004:00000698 ?vcactSuspendCheckPointers@@3JA 0041c698 memwin.obj - 0004:0000069c ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 0041c69c memwin.obj - 0004:000006b0 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 0041c6b0 memwin.obj - 0004:000006c4 ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 0041c6c4 memwin.obj - 0004:000006dc ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 0041c6dc memwin.obj - 0004:000006ec ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 0041c6ec memwin.obj - 0004:00000710 ??_C@_09BABB@hq?5is?5nil?$AA@ 0041c710 memwin.obj - 0004:0000071c ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 0041c71c memwin.obj - 0004:00000758 ?_rtiLast@CFL@@0JA 0041c758 chunk.obj - 0004:0000075c ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 0041c75c chunk.obj - 0004:00000778 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 0041c778 chunk.obj - 0004:00000798 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 0041c798 chunk.obj - 0004:000007bc ??_C@_06JFMK@bad?5cb?$AA@ 0041c7bc chunk.obj - 0004:000007e8 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 0041c7e8 codec.obj - 0004:00000808 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 0041c808 codec.obj - 0004:00000820 ??_C@_08DJLA@nil?5cfmt?$AA@ 0041c820 codec.obj - 0004:0000082c ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 0041c82c codec.obj - 0004:0000084c ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 0041c84c codec.obj - 0004:00000888 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 0041c888 codkauai.obj - 0004:000008ac ??_C@_07DEPO@bad?5len?$AA@ 0041c8ac codkauai.obj - 0004:000008b4 ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 0041c8b4 codkauai.obj - 0004:000008c4 ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 0041c8c4 codkauai.obj - 0004:000008e8 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 0041c8e8 codkauai.obj - 0004:000008fc ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 0041c8fc codkauai.obj - 0004:00000910 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 0041c910 codkauai.obj - 0004:0000092c ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 0041c92c codkauai.obj - 0004:0000097c ?vftgCreator@FIL@@2JA 0041c97c file.obj - 0004:00000980 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 0041c980 file.obj - 0004:00000994 ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 0041c994 file.obj - 0004:000009a8 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 0041c9a8 file.obj - 0004:000009bc ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 0041c9bc file.obj - 0004:000009d4 ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 0041c9d4 file.obj - 0004:000009ec ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 0041c9ec file.obj - 0004:00000a04 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 0041ca04 file.obj - 0004:00000a1c ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 0041ca1c file.obj - 0004:00000a30 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 0041ca30 file.obj - 0004:00000a48 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 0041ca48 file.obj - 0004:00000a5c ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 0041ca5c file.obj - 0004:00000a70 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 0041ca70 file.obj - 0004:00000a84 ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 0041ca84 file.obj - 0004:00000aa0 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 0041caa0 file.obj - 0004:00000ab8 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 0041cab8 file.obj - 0004:00000ad4 ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 0041cad4 file.obj - 0004:00000af4 ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 0041caf4 file.obj - 0004:00000b38 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 0041cb38 filewin.obj - 0004:00000b54 ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 0041cb54 filewin.obj - 0004:00000b70 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 0041cb70 filewin.obj - 0004:00000b90 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 0041cb90 filewin.obj - 0004:00000bc0 ?vftgTemp@@3JA 0041cbc0 fniwin.obj - 0004:00000bc8 ??_C@_07JFJJ@Bad?5FTG?$AA@ 0041cbc8 fniwin.obj - 0004:00000bd0 ??_C@_07NLCI@bad?5fni?$AA@ 0041cbd0 fniwin.obj - 0004:00000bd8 ??_C@_0BC@IKJG@expected?5filename?$AA@ 0041cbd8 fniwin.obj - 0004:00000bec ??_C@_0BA@CKAI@unexpected?5file?$AA@ 0041cbec fniwin.obj - 0004:00000bfc ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 0041cbfc fniwin.obj - 0004:00000c10 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 0041cc10 fniwin.obj - 0004:00000c28 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 0041cc28 fniwin.obj - 0004:00000c38 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 0041cc38 fniwin.obj - 0004:00000c48 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 0041cc48 fniwin.obj - 0004:00000c80 ??_C@_0P@JECG@negative?5sizes?$AA@ 0041cc80 groups.obj - 0004:00000c90 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 0041cc90 groups.obj - 0004:00000ca0 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 0041cca0 groups.obj - 0004:00000cb4 ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 0041ccb4 groups.obj - 0004:00000cc8 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 0041ccc8 groups.obj - 0004:00000ce4 ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 0041cce4 groups.obj - 0004:00000d00 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 0041cd00 groups.obj - 0004:00000d18 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 0041cd18 groups.obj - 0004:00000d40 ??_C@_08OO@wrong?5bo?$AA@ 0041cd40 groups.obj - 0004:00000d4c ??_C@_06NHBD@bad?5bo?$AA@ 0041cd4c groups.obj - 0004:00000d54 ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 0041cd54 groups.obj - 0004:00000dc0 ?_fEnableWarnings@@3HA 0041cdc0 kpack.obj - 0004:00000dc4 ??_C@_02DILL@?$CFs?$AA@ 0041cdc4 kpack.obj - 0004:00000dc8 ??_C@_0ED@NKOA@Usage?3?5?5kpack?5?$FL?9d?$FN?5?$FL?9c?$FL0?$HM1?$HM2?$FN?$FN?5?$FL@ 0041cdc8 kpack.obj - 0004:00000e0c ??_C@_0BN@DFD@Writing?5destination?5failed?6?6?$AA@ 0041ce0c kpack.obj - 0004:00000e2c ??_C@_0BK@ILAN@Unpacking?5source?5failed?6?6?$AA@ 0041ce2c kpack.obj - 0004:00000e48 ??_C@_0BM@HFOH@Source?5file?5is?5not?5packed?6?6?$AA@ 0041ce48 kpack.obj - 0004:00000e64 ??_C@_0BN@HALM@Reading?5source?5file?5failed?6?6?$AA@ 0041ce64 kpack.obj - 0004:00000e84 ??_C@_0CA@FNMG@Can?8t?5create?5destination?5file?6?6?$AA@ 0041ce84 kpack.obj - 0004:00000ea4 ??_C@_0BJ@LEIF@Can?8t?5open?5source?5file?6?6?$AA@ 0041cea4 kpack.obj - 0004:00000ec0 ??_C@_0BH@MOKA@Bad?5compression?5type?6?6?$AA@ 0041cec0 kpack.obj - 0004:00000ed8 ??_C@_0BN@DEOC@Wrong?5number?5of?5file?5names?6?6?$AA@ 0041ced8 kpack.obj - 0004:00000ef8 ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 0041cef8 kpack.obj - 0004:00000f08 ??_C@_0BG@JNKG@Too?5many?5file?5names?6?6?$AA@ 0041cf08 kpack.obj - 0004:00000f20 ??_C@_0BJ@DFMN@Bad?5compression?5format?6?6?$AA@ 0041cf20 kpack.obj - 0004:00000f3c ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0041cf3c kpack.obj - 0004:00000f78 ??_C@_0EI@IOPE@?6Microsoft?5?$CIR?$CJ?5Kauai?5Pack?5Utilit@ 0041cf78 kpack.obj - 0004:00000fc0 ??_C@_01BJG@?6?$AA@ 0041cfc0 kpack.obj - 0004:00000fc4 ??_C@_04OFDJ@?3?5?$CFs?$AA@ 0041cfc4 kpack.obj - 0004:00000fcc ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 0041cfcc kpack.obj - 0004:00000fe0 ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 0041cfe0 kpack.obj - 0004:00000ff0 ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 0041cff0 kpack.obj - 0004:00001000 ??_C@_05LCJC@?$CF08lx?$AA@ 0041d000 kpack.obj - 0004:00001008 ??_C@_04JGFO@?$CF04x?$AA@ 0041d008 kpack.obj - 0004:00001010 ??_C@_04OBKB@?$CF02x?$AA@ 0041d010 kpack.obj - 0004:00001018 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 0041d018 kpack.obj - 0004:00001024 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 0041d024 kpack.obj - 0004:00001034 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 0041d034 kpack.obj - 0004:00001044 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 0041d044 kpack.obj - 0004:00001060 __iob 0041d060 LIBC:_file.obj - 0004:000012e0 __lastiob 0041d2e0 LIBC:_file.obj - 0004:000012e4 __aenvptr 0041d2e4 LIBC:crt0.obj - 0004:000012e8 __wenvptr 0041d2e8 LIBC:crt0.obj - 0004:000012ec __aexit_rtn 0041d2ec LIBC:crt0.obj - 0004:000012f0 _errno 0041d2f0 LIBC:crt0dat.obj - 0004:000012f4 __doserrno 0041d2f4 LIBC:crt0dat.obj - 0004:000012f8 __umaskval 0041d2f8 LIBC:crt0dat.obj - 0004:000012fc __osver 0041d2fc LIBC:crt0dat.obj - 0004:00001300 __winver 0041d300 LIBC:crt0dat.obj - 0004:00001304 __winmajor 0041d304 LIBC:crt0dat.obj - 0004:00001308 __winminor 0041d308 LIBC:crt0dat.obj - 0004:0000130c ___argc 0041d30c LIBC:crt0dat.obj - 0004:00001310 ___argv 0041d310 LIBC:crt0dat.obj - 0004:00001314 ___wargv 0041d314 LIBC:crt0dat.obj - 0004:00001318 __environ 0041d318 LIBC:crt0dat.obj - 0004:0000131c ___initenv 0041d31c LIBC:crt0dat.obj - 0004:00001320 __wenviron 0041d320 LIBC:crt0dat.obj - 0004:00001324 ___winitenv 0041d324 LIBC:crt0dat.obj - 0004:00001328 __pgmptr 0041d328 LIBC:crt0dat.obj - 0004:0000132c __wpgmptr 0041d32c LIBC:crt0dat.obj - 0004:00001330 __exitflag 0041d330 LIBC:crt0dat.obj - 0004:00001334 __C_Termination_Done 0041d334 LIBC:crt0dat.obj - 0004:00001338 __pnhHeap 0041d338 LIBC:malloc.obj - 0004:00001340 __stdbuf 0041d340 LIBC:_sftbuf.obj - 0004:00001350 ___nullstring 0041d350 LIBC:output.obj - 0004:00001364 ___wnullstring 0041d364 LIBC:output.obj - 0004:00001368 __XcptActTab 0041d368 LIBC:winxfltr.obj - 0004:000013e0 __First_FPE_Indx 0041d3e0 LIBC:winxfltr.obj - 0004:000013e4 __Num_FPE 0041d3e4 LIBC:winxfltr.obj - 0004:000013e8 __XcptActTabCount 0041d3e8 LIBC:winxfltr.obj - 0004:000013ec __fpecode 0041d3ec LIBC:winxfltr.obj - 0004:000013f0 __pxcptinfoptrs 0041d3f0 LIBC:winxfltr.obj - 0004:000013f8 __mbctype 0041d3f8 LIBC:mbctype.obj - 0004:000014fc ___mbcodepage 0041d4fc LIBC:mbctype.obj - 0004:00001500 ___mblcid 0041d500 LIBC:mbctype.obj - 0004:00001508 ___mbulinfo 0041d508 LIBC:mbctype.obj - 0004:00001610 __nhandle 0041d610 LIBC:ioinit.obj - 0004:00001618 __osfile 0041d618 LIBC:ioinit.obj - 0004:00001658 __osfhnd 0041d658 LIBC:ioinit.obj - 0004:00001758 __pipech 0041d758 LIBC:ioinit.obj - 0004:00001798 __heap_desc 0041d798 LIBC:heapinit.obj - 0004:000017ac __heap_resetsize 0041d7ac LIBC:heapinit.obj - 0004:000017b0 __amblksiz 0041d7b0 LIBC:heapinit.obj - 0004:000017b4 __heap_regionsize 0041d7b4 LIBC:heapinit.obj - 0004:000017b8 __heap_maxregsize 0041d7b8 LIBC:heapinit.obj - 0004:00001a28 __adbgmsg 0041da28 LIBC:crt0msg.obj - 0004:00001a2c __newmode 0041da2c LIBC:_newmode.obj - 0004:00001a30 __cflush 0041da30 LIBC:fflush.obj - 0004:00001a38 __cfltcvt_tab 0041da38 LIBC:cmiscdat.obj - 0004:00001a50 __pctype 0041da50 LIBC:ctype.obj - 0004:00001a54 __pwctype 0041da54 LIBC:ctype.obj - 0004:00001a58 __ctype 0041da58 LIBC:ctype.obj - 0004:00001c60 ___lc_handle 0041dc60 LIBC:nlsdata2.obj - 0004:00001c78 ___lc_codepage 0041dc78 LIBC:nlsdata2.obj - 0004:00001c7c ___mb_cur_max 0041dc7c LIBC:nlsdata1.obj - 0004:00001c84 ___decimal_point 0041dc84 LIBC:nlsdata1.obj - 0004:00001c88 ___decimal_point_length 0041dc88 LIBC:nlsdata1.obj - 0004:00001df8 ___xc_a 0041ddf8 LIBC:crt0init.obj - 0004:00001e4c ___xc_z 0041de4c LIBC:crt0init.obj - 0004:00001e50 ___xi_a 0041de50 LIBC:crt0init.obj - 0004:00001e58 ___xi_z 0041de58 LIBC:crt0init.obj - 0004:00001e5c ___xp_a 0041de5c LIBC:crt0init.obj - 0004:00001e64 ___xp_z 0041de64 LIBC:crt0init.obj - 0004:00001e68 ___xt_a 0041de68 LIBC:crt0init.obj - 0004:00001e6c ___xt_z 0041de6c LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0041e000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0041e014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0041e028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041e03c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 0041e050 kernel32:KERNEL32.dll - 0005:00000110 __imp__DeleteCriticalSection@4 0041e110 kernel32:KERNEL32.dll - 0005:00000114 __imp__IsBadReadPtr@8 0041e114 kernel32:KERNEL32.dll - 0005:00000118 __imp__GlobalAlloc@8 0041e118 kernel32:KERNEL32.dll - 0005:0000011c __imp__GlobalFree@4 0041e11c kernel32:KERNEL32.dll - 0005:00000120 __imp__EnterCriticalSection@4 0041e120 kernel32:KERNEL32.dll - 0005:00000124 __imp__LeaveCriticalSection@4 0041e124 kernel32:KERNEL32.dll - 0005:00000128 __imp__GetCurrentThreadId@0 0041e128 kernel32:KERNEL32.dll - 0005:0000012c __imp__GlobalReAlloc@12 0041e12c kernel32:KERNEL32.dll - 0005:00000130 __imp__GlobalSize@4 0041e130 kernel32:KERNEL32.dll - 0005:00000134 __imp__WideCharToMultiByte@32 0041e134 kernel32:KERNEL32.dll - 0005:00000138 __imp__IsBadWritePtr@8 0041e138 kernel32:KERNEL32.dll - 0005:0000013c __imp__CreateFileA@28 0041e13c kernel32:KERNEL32.dll - 0005:00000140 __imp__CloseHandle@4 0041e140 kernel32:KERNEL32.dll - 0005:00000144 __imp__DeleteFileA@4 0041e144 kernel32:KERNEL32.dll - 0005:00000148 __imp__FlushFileBuffers@4 0041e148 kernel32:KERNEL32.dll - 0005:0000014c __imp__SetFilePointer@16 0041e14c kernel32:KERNEL32.dll - 0005:00000150 __imp__ReadFile@20 0041e150 kernel32:KERNEL32.dll - 0005:00000154 __imp__WriteFile@20 0041e154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetFullPathNameA@16 0041e158 kernel32:KERNEL32.dll - 0005:0000015c __imp__GetLastError@0 0041e15c kernel32:KERNEL32.dll - 0005:00000160 __imp__InitializeCriticalSection@4 0041e160 kernel32:KERNEL32.dll - 0005:00000164 __imp__ExitProcess@4 0041e164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetVersion@0 0041e168 kernel32:KERNEL32.dll - 0005:0000016c __imp__SetStdHandle@8 0041e16c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetCommandLineA@0 0041e170 kernel32:KERNEL32.dll - 0005:00000174 __imp__VirtualAlloc@16 0041e174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetStdHandle@4 0041e178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetCPInfo@8 0041e17c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetOEMCP@0 0041e180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetStartupInfoA@4 0041e184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetFileType@4 0041e188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetEnvironmentStrings@0 0041e18c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetModuleFileNameA@12 0041e190 kernel32:KERNEL32.dll - 0005:00000194 __imp__GetACP@0 0041e194 kernel32:KERNEL32.dll - 0005:00000198 __imp__VirtualFree@12 0041e198 kernel32:KERNEL32.dll - 0005:0000019c __imp__RtlUnwind@16 0041e19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__UnhandledExceptionFilter@4 0041e1a0 kernel32:KERNEL32.dll - 0005:000001a4 \177KERNEL32_NULL_THUNK_DATA 0041e1a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__CharUpperBuffA@8 0041e1a8 user32:USER32.dll - 0005:000001ac \177USER32_NULL_THUNK_DATA 0041e1ac user32:USER32.dll - 0005:000001b0 __imp__timeGetTime@0 0041e1b0 winmm:WINMM.dll - 0005:000001b4 \177WINMM_NULL_THUNK_DATA 0041e1b4 winmm:WINMM.dll - 0005:000001b8 \177comdlg32_NULL_THUNK_DATA 0041e1b8 comdlg32:comdlg32.dll - - entry point at 0001:00015304 - - Static symbols - - 0001:00014c90 _$$1000 00415c90 f kpack.obj - 0001:00014fb0 _$$a200 00415fb0 f kpack.obj - 0001:00015000 _$$8000 00416000 f kpack.obj - 0001:00014390 _$$1000 00415390 f groups2.obj - 0001:000143b0 _$$8000 004153b0 f groups2.obj - 0001:00013050 _$$1000 00414050 f groups.obj - 0001:00014250 _$$8000 00415250 f groups.obj - 0001:00011c70 _$$8000 00412c70 f fniwin.obj - 0001:00012110 _$$1000 00413110 f fniwin.obj - 0001:00012b80 _$$9000 00413b80 f fniwin.obj - 0001:00012ba0 _$$a000 00413ba0 f fniwin.obj - 0001:00012bc0 _$$b000 00413bc0 f fniwin.obj - 0001:00011790 _$$1000 00412790 f filewin.obj - 0001:00011c50 _$$8000 00412c50 f filewin.obj - 0001:0000ea10 _$$8000 0040fa10 f file.obj - 0001:0000eed0 _$$1000 0040fed0 f file.obj - 0001:00011160 _$$9000 00412160 f file.obj - 0001:00011180 _$$a000 00412180 f file.obj - 0001:000111a0 _$$b000 004121a0 f file.obj - 0001:0000e9d0 _$$1000 0040f9d0 f crf.obj - 0001:0000e9f0 _$$8000 0040f9f0 f crf.obj - 0001:000073a0 _$$1000 004083a0 f codkauai.obj - 0001:0000e9b0 _$$8000 0040f9b0 f codkauai.obj - 0001:000064a0 _$$1000 004074a0 f codec.obj - 0001:00006e70 _$$8000 00407e70 f codec.obj - 0001:00005e00 _$$1000 00406e00 f chunk.obj - 0001:00005ec0 _$$8000 00406ec0 f chunk.obj - 0001:00005d10 _$$1000 00406d10 f memwin.obj - 0001:00005de0 _$$8000 00406de0 f memwin.obj - 0001:00004270 _$$1000 00405270 f utilstr.obj - 0001:00005800 _$$8000 00406800 f utilstr.obj - 0001:00003980 _$$1000 00404980 f utilrnd.obj - 0001:00003e60 _$$8000 00404e60 f utilrnd.obj - 0001:00002a50 _$$1000 00403a50 f utilmem.obj - 0001:000034b0 _$$8000 004044b0 f utilmem.obj - 0001:00002160 _$$1000 00403160 f utilint.obj - 0001:00002500 _$$8000 00403500 f utilint.obj - 0001:00001920 _$$8000 00402920 f utilerro.obj - 0001:00001e60 _$$1000 00402e60 f utilerro.obj - 0001:00002090 _$$9000 00403090 f utilerro.obj - 0001:000020b0 _$$a000 004030b0 f utilerro.obj - 0001:000020d0 _$$b000 004030d0 f utilerro.obj - 0001:00001690 _$$1000 00402690 f utilcopy.obj - 0001:00001900 _$$8000 00402900 f utilcopy.obj - 0001:00000ae0 _$$1000 00401ae0 f base.obj - 0001:00001460 _$$8000 00402460 f base.obj - 0001:000004d0 _$$8000 004014d0 f util.obj - 0001:000004f0 _$$1000 004014f0 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:00017524 __before 00418524 f LIBC:heapadd.obj - 0001:00016fef _flsall 00417fef f LIBC:fflush.obj - 0001:00016cdb __heap_new_region 00417cdb f LIBC:heapgrow.obj - 0001:00016a39 __heap_grow_emptylist 00417a39 f LIBC:heapinit.obj - 0001:000166ed _getSystemCP 004176ed f LIBC:mbctype.obj - 0001:00016728 _CPtoLCID 00417728 f LIBC:mbctype.obj - 0001:00016767 _setSBCS 00417767 f LIBC:mbctype.obj - 0001:00016523 _parse_cmdline 00417523 f LIBC:stdargv.obj - 0001:00016395 _xcptlookup 00417395 f LIBC:winxfltr.obj - 0001:00016198 __unwind_handler 00417198 f LIBC:exsup.obj - 0001:0001609a _write_char 0041709a f LIBC:output.obj - 0001:000160da _write_multi_char 004170da f LIBC:output.obj - 0001:0001610b _write_string 0041710b f LIBC:output.obj - 0001:00016142 _get_int_arg 00417142 f LIBC:output.obj - 0001:00016151 _get_int64_arg 00417151 f LIBC:output.obj - 0001:00016165 _get_short_arg 00417165 f LIBC:output.obj - 0001:00015604 __heap_expand_block 00416604 f LIBC:realloc.obj - 0001:0001546f _doexit 0041646f f LIBC:crt0dat.obj - 0001:000154ee __initterm 004164ee f LIBC:crt0dat.obj - -FIXUPS: 1628a ffffff46 1e 12 44 13 13 4fa fffffdbe 16 33 1f d 23 23 fffffe56 -FIXUPS: 16445 11 11 5d 12 fffffe8a c 5 10 10 5 1c 9 15 f 1f 9 fffffec9 -FIXUPS: 162e8 10 ffffffa3 14 c 884 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 -FIXUPS: 16f5d 1c 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 fffffe36 2d f e -FIXUPS: 166d2 3d 16eb 32 fffffe42 ffffffae ffffff6f 18 ffffff70 d 35 25 -FIXUPS: 17a99 fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 -FIXUPS: 1723e ffffff4e fffff7c7 4c 9b 1d 6d 10 1c52 fffffe7e fffffd4f 10 -FIXUPS: 18313 18 a1 3e 24 d 41 34 fffffd88 d 2b 1a 1f fffffc99 b 21 42 -FIXUPS: 17fe7 2f 19 2b e fffffc55 c 75 d 96 d fffe950b e 13 1f 13 1d e -FIXUPS: 138a 1f e 32 e 13 1f 30 30 17664 ffffff8c c d 20 d ffffff40 b b -FIXUPS: 18a30 fffffe05 ffffffaf 26 ffffff9d ffffffdf fffffead fffe89ef -FIXUPS: 1049 f 21 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 18 13 1d 13 -FIXUPS: 1219 e 32 13 3d 2c eba d 1d 23 1c 36 d 4f d 7b d 4a 20 12 1b 2d -FIXUPS: 23f0 20 29 d 21 22 e 13 1f 35 6b 30 ffffef3e 42 e 22 8e9 13 10 -FIXUPS: 1e80 d 31 d 34 d 2c d 13 2e d 20 35 d a 18 b b 19 35 5 17 b 38 -FIXUPS: 20f9 5 1b e 42 fffff955 5 66 c c 14 1f 39 1c 11 13 32 d 32 d 10 -FIXUPS: 1ca2 d a 9 e 5 24 23 48 d 1e 17 33 10 19 25 fffff7a1 21 30 30 70 -FIXUPS: 16e9 29 14 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f e 5 a d 28 -FIXUPS: 19cd 3a 1e 9 16a9 5 5 18 16 8 12 e 13 fffff4a8 d 53 d 5a 13 d d -FIXUPS: 2739 13 d d 6c d d 36 d 43 d d 7b ffffec8b 27 1663 16 b 27 10 37 -FIXUPS: 2cc8 31 23 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 23 16 90 -FIXUPS: 3059 10 10 23 20 2f5 10 e8 e 14 5 37 22 e 13 1d fffff3c5 36 27 -FIXUPS: 2998 21 30 e b 37 29 16 15 15 14 e 5b 9 1a 6b 20 2c 16e3 2a d 17 -FIXUPS: 433f 2c d f 22 37 d 10 c 33 d 20 18 b 2b ffffed08 d 4a d 29 d 20 -FIXUPS: 328c 24 58 81 13 b b86 a 49 d 23 1d 1f d f 33 d 3b d 2f d 4b d -FIXUPS: 4142 27 1f b 2a d 1a 2d d 14 1b 2a d 2b d fffff8de d 35 d 2a 6 -FIXUPS: 3c58 2d 1e 14 42 d 17 55 6 28 6 30 6 19 f 2b a 12 f 2f e 1e c d -FIXUPS: 3edf 14 fffff87b d 17 1c 18 a 24 d 42 2d 1b 14 65 19 3b 9d a 9 -FIXUPS: 3a17 12 50 e 10 10 f d c 27 d 2b 36 d 1112 14 27 2f 3c 23 1b 32 -FIXUPS: 4dbc 47 1f 1b 2a 22 e 13 1f e 13 ffffe69f 17 3c 1d 10 58 28 10 -FIXUPS: 36ca 1f 40 e 10 1142 19 c 10 1d d 2c d 28 10 8 c 3c 23 1b c 3e -FIXUPS: 4a3e 11 44 26 23 2d d 11 26 5c 23 1b 46 d 3c 1ab3 2e d 75 c 22 -FIXUPS: 44f2 27 f 21 49 27 f 21 30 e 18 e 26 36 23 1b 58 d 2d 12 4e 30 -FIXUPS: 4835 17 d 20 1a00 23 2d 23 3d f d 24 14 1a 2b d 51 d 2c e 4a d -FIXUPS: 64d4 25 13 d 10 d 27 44 1d 17 42 52 13 d fffff353 75 23 d d e 14 -FIXUPS: 5ac5 14e d 98 d6 2e d 71 d 55 6d 23 16 d 22 d 14 11e 25 25 75 6a -FIXUPS: 61fc 2d 23 fffff170 1b d f 13 7d d 3a 15 36 34 23 1b d 14 9 6 22 -FIXUPS: 55fc 19 8 10 32 14 d d 1c 29 1b d b 2cd fffff5ac d d 11 1d 33 23 -FIXUPS: 5037 d 30 3c 29 23 16 c 1b 23 1b 8 12 29 d 53 36 49 23 1b d f 45 -FIXUPS: 536e 2b 1729 27 c b 2b 1e c b 2e d 2e c b 28 d 34 25 d 15 2d d -FIXUPS: 6ce7 12 4c b 6 63 d 21 ffffe122 23 32 1ecb 30 30 1b 23 22 12 1e -FIXUPS: 6f39 13 1d fffff8c0 e 10 29 61 38 e b 10 14 25 d 4d 2c 23 25 e -FIXUPS: 6a63 d 2e d f87 21 d e 1a 1d d e 29 16 d 10 d b cc f e f f f f -FIXUPS: 7c68 f 46 24 33 ac d aa 22 e 13 fffff71f 23 4d 23 32 23 d 10 1a -FIXUPS: 7707 22 24 6c 23 16 22 d 60 29 4f 23 16 b b e 30 2c 1a 14 24 b -FIXUPS: 7a22 fffff697 30 e 30 2a d 5c 2f 2c 50 29 60 1b 10 22 d 32 38 27 -FIXUPS: 73e9 8 18 1d 29 12 22 46 23 32 23 d 1b 5b6e 1d d 2f e 1f 17 1c -FIXUPS: d1e9 23 1b d 10 d b 1a 27 d 58 d 3e d 2629 d 27 ffff760b 27 f 21 -FIXUPS: 7062 27 f 5a65 68 d 44 7a d 50 36 d 1d 94 d 2a 1e 1a 2b 26 1d d -FIXUPS: cea4 3c 49 23 ab d 2d 22 d 11 22 1f 15 ffffbb6d 10 d b 1a 27 d -FIXUPS: 8d02 d 3e d 3b41 d 21 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 -FIXUPS: cad3 1d ffffbc35 50 36 d 1d 94 d 24 2e 27 c2 d 2d 22 d 15 1e 1f -FIXUPS: 8a81 10 1d d 2f e 1f 17 1c 3f 30 30 23 1b fffff53a b6 d b5 32 d -FIXUPS: 835f 22 48 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 c 1d d 50 -FIXUPS: 865a 44 7a 9a29 c 1f 20 1b 5 5 18 e 13 1f e 13 ffffd7cd ffff84fb -FIXUPS: 7f19 f 21 30 23 1b d 10 d b 38 21 2b 21 48 13 4d 9c57 19 16 11 -FIXUPS: 11dfc d 17 25 28 2d 2f 30 10 41 23 d 2a d 31 d 43 d 11 c 16 18 -FIXUPS: 120b9 d 34 d 22 10 fffff7f0 9 f 28 23 16 67 23 3e 22 11 1d 20 2a -FIXUPS: 11b1d 16 11 19 21 d 1b 25 28 2d 29 50 23 3e 1e 11 1d 20 fffff7eb -FIXUPS: 11581 26 11 33 d 31 23 18 2f d 1e 6 20 d 30 22 15 33 d 31 23 32 -FIXUPS: 11841 d 34 d 16 24 d 28 25 fffff79a 8 2a 46 24 23 44 27 22 23 3a -FIXUPS: 11273 28 48 23 19 20 1d d 22 2e 2b 65 1b 25 23 18 2f d 1e 6 20 -FIXUPS: 10c6a 18 13 a d 1c 28 19 e 26 32 23 d 79 31 e 26 46 26 2c 13 d -FIXUPS: 10f49 23 32 23 d d 6c 32 23 16 fffff6d2 25 23 1f 20 d 3c 25 29 -FIXUPS: 108d4 23 d 3c d 58 a9 37 48 2c 23 16 14 20 d 27 22 9 e 13 23 31 -FIXUPS: 10c5d fffff72c 80 23 16 2e 19 d 15 2a 23 d f f 26 13 b 2f 23 d -FIXUPS: 105d6 a 15 2d 24 d 2f 1b 3c 23 1f 20 d fffff7fe d e 22 d 21 1d -FIXUPS: ffff 77 20 d 26 2d 23 d f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 25 -FIXUPS: 1034c 30 fffff821 33 20 d 14 16 d a 2b 19 a a a 10 b 8 16 2d 20 -FIXUPS: fd33 24 d e 1b 33 1d 31 77 20 d 47 2d 29fe 26 35 8 12 3e d 7c 29 -FIXUPS: 12aac 1b 10 d 26 28 d 3a c a6 2c ffffcdc5 36 27 f 21 49 27 f 21 -FIXUPS: fb79 e b 275a 1d 5e d 69 6 51 6 98 37 23 16 29 6d 20 b 26 23 16 -FIXUPS: 1269e 1b 23 40 9d 23 16 35 7e 24 23 1b 10 fd7 2f 1c 12 1e 14 1c -FIXUPS: 139a7 27 1d 82 2d 2f e 9 9 20 18 28 12 9 9 1f 20 1b 5 5 18 e 13 -FIXUPS: 12249 80 1183 20 d 2b 38 16 20 d 3f d 4b d 2a d 2c d 48 d 21 23 -FIXUPS: 136e2 e b9 23 16 1d d 10 d 46 11 34 fffff78a 25 b 1c 13 49 53 2c -FIXUPS: 131a2 d 10 10 2a d 10 2f 17 18 15 20 26 35 23 d 19 1c 16 32 23 -FIXUPS: 133e1 4b d 1ece 13 1f 13 1d 13 ffffd900 36 27 f 21 30 1b 20 25 -FIXUPS: 12da7 b 11 26 29 32 23 d 1a e 8e 59 d 1a 1b 11 39 1f91 9 1d 14 -FIXUPS: 14fe3 6 22 2e 23 16 2a 22 2b 23 1b 33 d 28 9 21 12 1e 30 e 30 22 -FIXUPS: 15287 13 1f e 13 1f fffff96b 2d d 1a 13 1e 23 1e 10 10 a 16 13 -FIXUPS: 14d90 b 19 1b 2c 1b 26 2d 23 19 24 23 1d 16 2c 9 19 15 b fffff8d7 -FIXUPS: 1486e 20 d 1e 13 10 11 19 38 57 23 d 24 12 26 28 23 1d 30 23 1e -FIXUPS: 14b19 23 32 23 d 39 d e 3d 28 fffff8cd d 1e 24 d 1e 24 d 2a 23 -FIXUPS: 1462f c c 22 e 19 3a 2f 23 1e 24 9 22 23 1d 10 17 6 23 12 13 13 -FIXUPS: 1414c 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 13 1a 20 d 20 2f 9 -FIXUPS: 143ec 34 9 f 31 17 13 13 36 d fffff7f9 27 f 21 49 27 f 21 30 2c -FIXUPS: 13e4c c d 14 23 34 d 25 32 1f 32 39 3f 2c 50 11 10 b 12 29 17 25 -FIXUPS: 15e77 20 4c 27 21 30 1a 1a 28 5 1d 39 10 10 19 19 13 13 13 16 16 -FIXUPS: 160df e e 1e 19 27 fffff25e ffffe88b 27 f 21 1d75 28 1f d 37 1b -FIXUPS: 15ad8 1a 1b 6c 15 b b 23 1d 5f 15 b b 4b e f 11 1d 39 17 66 24 -FIXUPS: 15df4 25 16 24 fffff586 e b b b 1f 19 16 aa 4b a7 1b c0 23 17 1b -FIXUPS: 1574e 2b 5b 1b 26 22 18 16 26 47 1b 27 71 32 18 1b diff --git a/kauai/OBJ/WIND/MAKEFILE b/kauai/OBJ/WIND/MAKEFILE index fd776144..08d03dfa 100644 --- a/kauai/OBJ/WIND/MAKEFILE +++ b/kauai/OBJ/WIND/MAKEFILE @@ -4,10 +4,10 @@ .SILENT: -ALL: SETBLD KAUAI_SRC KAUAI_TOOLS +ALL: KAUAI_SRC KAUAI_TOOLS # SETBLD -SETBLD: - Setbld d w n +#SETBLD: +# Setbld d w n KAUAI_SRC: @@ -23,7 +23,7 @@ KAUAI_TOOLS: cd $(KAUAI_ROOT)\obj\wind -CLEAN: SETBLD CLEAN_KAUAI_SRC CLEAN_KAUAI_TOOLS +CLEAN: CLEAN_KAUAI_SRC CLEAN_KAUAI_TOOLS #SETBLD CLEAN_KAUAI_SRC: diff --git a/kauai/OBJ/WIND/MKMBMP.MAP b/kauai/OBJ/WIND/MKMBMP.MAP deleted file mode 100644 index fb5e64e5..00000000 --- a/kauai/OBJ/WIND/MKMBMP.MAP +++ /dev/null @@ -1,1102 +0,0 @@ - mkmbmp - - Timestamp is 3070bdd1 (Mon Oct 02 21:36:33 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0001e43cH .text CODE - 0002:00000000 00001a90H .bss DATA - 0003:00000000 00000359H .rdata DATA - 0004:00000000 00002310H .data DATA - 0004:00002310 00000004H .CRT$XCA DATA - 0004:00002314 00000054H .CRT$XCU DATA - 0004:00002368 00000004H .CRT$XCZ DATA - 0004:0000236c 00000004H .CRT$XIA DATA - 0004:00002370 00000004H .CRT$XIC DATA - 0004:00002374 00000004H .CRT$XIZ DATA - 0004:00002378 00000004H .CRT$XPA DATA - 0004:0000237c 00000004H .CRT$XPX DATA - 0004:00002380 00000004H .CRT$XPZ DATA - 0004:00002384 00000004H .CRT$XTA DATA - 0004:00002388 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000b4H .idata$4 DATA - 0005:00000118 000000b4H .idata$5 DATA - 0005:000001cc 000002f2H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000430H .debug$F DATA - 0007:00000730 00000000H .debug$G DATA - 0007:00000730 00000033H .debug$H DATA - 0007:fffd6000 00000000H .debug$P DATA - 0007:fffd6000 00000000H .debug$S DATA - 0007:fffd6000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:00000510 ?PfilNext@FIL@@QAEPAV1@XZ 00401510 f util.obj - 0001:00000540 ?PbllNext@BLL@@QAEPAV1@XZ 00401540 f util.obj - 0001:00000570 ?FWouldBe@BLL@@SGHJ@Z 00401570 f base.obj - 0001:000005b0 ?FIs@BLL@@UAEHJ@Z 004015b0 f base.obj - 0001:000005e0 ?Cls@BLL@@UAEJXZ 004015e0 f base.obj - 0001:00000610 ?Cls@BASE@@UAEJXZ 00401610 f base.obj - 0001:00000640 ?FIs@BASE@@UAEHJ@Z 00401640 f base.obj - 0001:00000680 ?FWouldBe@BASE@@SGHJ@Z 00401680 f base.obj - 0001:000006b0 ??0BASE@@QAE@XZ 004016b0 f base.obj - 0001:00000790 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 00401790 f base.obj - 0001:000007b0 ?_Enter@@YGXXZ 004017b0 f base.obj - 0001:000007d0 ?_Leave@@YGXXZ 004017d0 f base.obj - 0001:000007f0 ?AddRef@BASE@@UAEXXZ 004017f0 f base.obj - 0001:00000880 ?Release@BASE@@UAEXXZ 00401880 f base.obj - 0001:00000930 ??2BASE@@SGPAXIPADJ@Z 00401930 f base.obj - 0001:00000b00 ?Debugger@@YGXXZ 00401b00 f base.obj - 0001:00000b20 ??3BASE@@SGXPAX@Z 00401b20 f base.obj - 0001:00000ba0 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401ba0 f base.obj - 0001:00000bc0 ?AssertValid@BASE@@QAEXK@Z 00401bc0 f base.obj - 0001:00000cf0 ?MarkMemStub@BASE@@QAEXXZ 00401cf0 f base.obj - 0001:00000dd0 ?MarkMem@BASE@@UAEXXZ 00401dd0 f base.obj - 0001:00000e20 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401e20 f base.obj - 0001:00001010 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00402010 f base.obj - 0001:00001090 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00402090 f base.obj - 0001:00001110 ??0BLL@@QAE@XZ 00402110 f base.obj - 0001:00001160 ??1BLL@@UAE@XZ 00402160 f base.obj - 0001:000011b0 ?_Attach@BLL@@IAEXPAX@Z 004021b0 f base.obj - 0001:00001350 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402350 f base.obj - 0001:00001380 ?AssertValid@BLL@@QAEXK@Z 00402380 f base.obj - 0001:00001480 ??_GBLL@@UAEPAXI@Z 00402480 f base.obj - 0001:00001480 ??_EBLL@@UAEPAXI@Z 00402480 f base.obj - 0001:000014c0 ??0STN@@QAE@XZ 004024c0 f base.obj - 0001:00001520 ?PvAddBv@@YGPAXPAXJ@Z 00402520 f base.obj - 0001:00001540 ?PvSubBv@@YGPAXPAXJ@Z 00402540 f base.obj - 0001:00001560 ?Enter@MUTX@@QAEXXZ 00402560 f base.obj - 0001:00001590 ?Leave@MUTX@@QAEXXZ 00402590 f base.obj - 0001:000015c0 ?LwThreadCur@@YGJXZ 004025c0 f base.obj - 0001:000015e0 ?FillPb@@YGXPAXJE@Z 004025e0 f utilcopy.obj - 0001:00001640 ?ClearPb@@YGXPAXJ@Z 00402640 f utilcopy.obj - 0001:000016b0 ?FEqualRgb@@YGHPAX0J@Z 004026b0 f utilcopy.obj - 0001:00001730 ?CbEqualRgb@@YGJPAX0J@Z 00402730 f utilcopy.obj - 0001:000017c0 ?CopyPb@@YGXPAX0J@Z 004027c0 f utilcopy.obj - 0001:00001860 ?BltPb@@YGXPAX0J@Z 00402860 f utilcopy.obj - 0001:00001940 ?FWouldBe@ERS@@SGHJ@Z 00402940 f utilerro.obj - 0001:00001980 ?FIs@ERS@@UAEHJ@Z 00402980 f utilerro.obj - 0001:000019b0 ?Cls@ERS@@UAEJXZ 004029b0 f utilerro.obj - 0001:000019e0 ??0ERS@@QAE@XZ 004029e0 f utilerro.obj - 0001:00001a30 ?Push@ERS@@UAEXJPADJ@Z 00402a30 f utilerro.obj - 0001:00001bf0 ?FPop@ERS@@UAEHPAJ@Z 00402bf0 f utilerro.obj - 0001:00001cf0 ?Clear@ERS@@UAEXXZ 00402cf0 f utilerro.obj - 0001:00001d60 ?Cerc@ERS@@UAEJXZ 00402d60 f utilerro.obj - 0001:00001db0 ?FIn@ERS@@UAEHJ@Z 00402db0 f utilerro.obj - 0001:00001e80 ?ErcGet@ERS@@UAEJJ@Z 00402e80 f utilerro.obj - 0001:00001f20 ?Flush@ERS@@UAEXJ@Z 00402f20 f utilerro.obj - 0001:00002010 ?FIn@@YGHJJJ@Z 00403010 f utilerro.obj - 0001:00002050 ?AssertValid@ERS@@QAEXK@Z 00403050 f utilerro.obj - 0001:000020f0 ??1ERS@@UAE@XZ 004030f0 f utilerro.obj - 0001:00002120 ??_EERS@@UAEPAXI@Z 00403120 f utilerro.obj - 0001:00002120 ??_GERS@@UAEPAXI@Z 00403120 f utilerro.obj - 0001:00002180 ?LwRoundAway@@YGJJJ@Z 00403180 f utilint.obj - 0001:00002210 ?LwMul@@YGJJJ@Z 00403210 f utilint.obj - 0001:00002280 ?AssertIn@@YGXJJJ@Z 00403280 f utilint.obj - 0001:00002300 ?SwapBytesBom@@YGXPAXK@Z 00403300 f utilint.obj - 0001:000023e0 ?LwMin@@YGJJJ@Z 004033e0 f utilint.obj - 0001:00002410 ?LwAbs@@YGJJ@Z 00403410 f utilint.obj - 0001:00002440 ?SwapBytesRglw@@YGXPAXJ@Z 00403440 f utilint.obj - 0001:000024f0 ?LwMax@@YGJJJ@Z 004034f0 f utilint.obj - 0001:00002520 ?Dyp@RC@@QAEJXZ 00403520 f utilint.obj - 0001:00002560 ?Zero@RC@@QAEXXZ 00403560 f utilint.obj - 0001:000025c0 ?FEmpty@RC@@QAEHXZ 004035c0 f utilint.obj - 0001:00002620 ?Offset@RC@@QAEXJJ@Z 00403620 f utilint.obj - 0001:00002670 ?LwBound@@YGJJJJ@Z 00403670 f utilint.obj - 0001:000026b0 ??0USAC@@QAE@XZ 004036b0 f utilint.obj - 0001:00002730 ??_GUSAC@@UAEPAXI@Z 00403730 f utilint.obj - 0001:00002730 ??_EUSAC@@UAEPAXI@Z 00403730 f utilint.obj - 0001:00002770 ?TsCurrentSystem@@YGKXZ 00403770 f utilint.obj - 0001:00002790 ?FFail@DMAGL@@QAEHXZ 00403790 f utilmem.obj - 0001:00002800 ?Allocate@DMAGL@@QAEXJ@Z 00403800 f utilmem.obj - 0001:00002890 ?Resize@DMAGL@@QAEXJ@Z 00403890 f utilmem.obj - 0001:000028f0 ?Free@DMAGL@@QAEXJ@Z 004038f0 f utilmem.obj - 0001:00002930 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 00403930 f utilmem.obj - 0001:00002c80 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00403c80 f utilmem.obj - 0001:00003090 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00404090 f utilmem.obj - 0001:00003130 ?_LinkMbh@@YGXPAUMBH@@@Z 00404130 f utilmem.obj - 0001:000031d0 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 004041d0 f utilmem.obj - 0001:00003370 ?_AssertMbh@@YGXPAUMBH@@@Z 00404370 f utilmem.obj - 0001:000035b0 ?AssertPvAlloced@@YGXPAXJ@Z 004045b0 f utilmem.obj - 0001:00003670 ?MarkPv@@YGXPAX@Z 00404670 f utilmem.obj - 0001:000036e0 ?FWouldBe@RND@@SGHJ@Z 004046e0 f utilrnd.obj - 0001:00003720 ?FIs@RND@@UAEHJ@Z 00404720 f utilrnd.obj - 0001:00003750 ?Cls@RND@@UAEJXZ 00404750 f utilrnd.obj - 0001:00003780 ?FWouldBe@SFL@@SGHJ@Z 00404780 f utilrnd.obj - 0001:000037c0 ?FIs@SFL@@UAEHJ@Z 004047c0 f utilrnd.obj - 0001:000037f0 ?Cls@SFL@@UAEJXZ 004047f0 f utilrnd.obj - 0001:00003820 ??0RND@@QAE@K@Z 00404820 f utilrnd.obj - 0001:000038b0 ?LwNext@RND@@UAEJJ@Z 004048b0 f utilrnd.obj - 0001:00003980 ??0SFL@@QAE@K@Z 00404980 f utilrnd.obj - 0001:00003a10 ??1SFL@@UAE@XZ 00404a10 f utilrnd.obj - 0001:00003a80 ?AssertValid@SFL@@QAEXK@Z 00404a80 f utilrnd.obj - 0001:00003b50 ?MarkMem@SFL@@UAEXXZ 00404b50 f utilrnd.obj - 0001:00003bb0 ?Shuffle@SFL@@QAEXJ@Z 00404bb0 f utilrnd.obj - 0001:00003cc0 ?_ShuffleCore@SFL@@IAEXXZ 00404cc0 f utilrnd.obj - 0001:00003db0 ?_FEnsureHq@SFL@@IAEHJ@Z 00404db0 f utilrnd.obj - 0001:00003f30 ?LwNext@SFL@@UAEJJ@Z 00404f30 f utilrnd.obj - 0001:00004090 ??_GRND@@UAEPAXI@Z 00405090 f utilrnd.obj - 0001:00004090 ??_ERND@@UAEPAXI@Z 00405090 f utilrnd.obj - 0001:000040d0 ??_GSFL@@UAEPAXI@Z 004050d0 f utilrnd.obj - 0001:000040d0 ??_ESFL@@UAEPAXI@Z 004050d0 f utilrnd.obj - 0001:00004110 ??4STN@@QAEAAV0@AAV0@@Z 00405110 f utilstr.obj - 0001:00004200 ?SetRgch@STN@@QAEXPADJ@Z 00405200 f utilstr.obj - 0001:000042e0 ?SetSzs@STN@@QAEXPAD@Z 004052e0 f utilstr.obj - 0001:00004340 ?Delete@STN@@QAEXJJ@Z 00405340 f utilstr.obj - 0001:000044a0 ?FAppendRgch@STN@@QAEHPADJ@Z 004054a0 f utilstr.obj - 0001:000045a0 ?FInsertRgch@STN@@QAEHJPADJ@Z 004055a0 f utilstr.obj - 0001:00004750 ?FEqualRgch@STN@@QAEHPADJ@Z 00405750 f utilstr.obj - 0001:000047f0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 004057f0 f utilstr.obj - 0001:00004880 ?GetSzs@STN@@QAEXPAD@Z 00405880 f utilstr.obj - 0001:000048f0 ?FFormatSz@STN@@QAAHPADZZ 004058f0 f utilstr.obj - 0001:00004950 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00405950 f utilstr.obj - 0001:000051b0 ?FGetLw@STN@@QAEHPAJJ@Z 004061b0 f utilstr.obj - 0001:00005480 ?Prgch@STN@@QAEPADXZ 00406480 f utilstr.obj - 0001:000054d0 ?Psz@STN@@QAEPADXZ 004064d0 f utilstr.obj - 0001:00005520 ?Cch@STN@@QAEJXZ 00406520 f utilstr.obj - 0001:00005570 ?SetNil@STN@@QAEXXZ 00406570 f utilstr.obj - 0001:000055d0 ?SetSz@STN@@QAEXPAD@Z 004065d0 f utilstr.obj - 0001:00005610 ?AssertValid@STN@@QAEXK@Z 00406610 f utilstr.obj - 0001:00005700 ?CchSz@@YGJPAD@Z 00406700 f utilstr.obj - 0001:000057a0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004067a0 f utilstr.obj - 0001:00005910 ?UpperRgchs@@YGXPADJ@Z 00406910 f utilstr.obj - 0001:000059d0 ?AssertOsk@@YGXF@Z 004069d0 f utilstr.obj - 0001:00005a80 ?AssertSz@@YGXPAD@Z 00406a80 f utilstr.obj - 0001:00005ad0 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00406ad0 f memwin.obj - 0001:00005bb0 ?FResizePhq@@YGHPAPAXJKJ@Z 00406bb0 f memwin.obj - 0001:00005ce0 ?FreePhq@@YGXPAPAX@Z 00406ce0 f memwin.obj - 0001:00005d90 ?CbOfHq@@YGJPAX@Z 00406d90 f memwin.obj - 0001:00005dd0 ?QvFromHq@@YGPAXPAX@Z 00406dd0 f memwin.obj - 0001:00005df0 ?PvLockHq@@YGPAXPAX@Z 00406df0 f memwin.obj - 0001:00005e70 ?UnlockHq@@YGXPAX@Z 00406e70 f memwin.obj - 0001:00005ef0 ?AssertHq@@YGXPAX@Z 00406ef0 f memwin.obj - 0001:00005fe0 ?MarkHq@@YGXPAX@Z 00406fe0 f memwin.obj - 0001:00006020 ?AssertPvCb@@YGXPAXJ@Z 00407020 f memwin.obj - 0001:000060b0 ?FWouldBe@CGE@@SGHJ@Z 004070b0 f chunk.obj - 0001:000060f0 ?FIs@CGE@@UAEHJ@Z 004070f0 f chunk.obj - 0001:00006120 ?Cls@CGE@@UAEJXZ 00407120 f chunk.obj - 0001:00006170 ?Grfcrp@CRPSM@@QAEKK@Z 00407170 f chunk.obj - 0001:000061a0 ?ClearGrfcrp@CRPSM@@QAEXK@Z 004071a0 f chunk.obj - 0001:000061d0 ?SetGrfcrp@CRPSM@@QAEXK@Z 004071d0 f chunk.obj - 0001:00006200 ?AssertValid@CFL@@QAEXK@Z 00407200 f chunk.obj - 0001:00006fd0 ?CbRgch@CRPSM@@QAEJJ@Z 00407fd0 f chunk.obj - 0001:00007000 ?BvRgch@CRPSM@@QAEJXZ 00408000 f chunk.obj - 0001:00007030 ?Cb@CRPSM@@QAEJXZ 00408030 f chunk.obj - 0001:00007060 ?SuspendAssertValid@@YGXXZ 00408060 f chunk.obj - 0001:000070b0 ?ResumeAssertValid@@YGXXZ 004080b0 f chunk.obj - 0001:000070e0 ?ElError@FIL@@QAEJXZ 004080e0 f chunk.obj - 0001:00007110 ?FReadRgbSeq@FIL@@QAEHPAXJPAJ@Z 00408110 f chunk.obj - 0001:00007170 ?IvMac@GRPB@@QAEJXZ 00408170 f chunk.obj - 0001:000071a0 ?FPush@GL@@QAEHPAX@Z 004081a0 f chunk.obj - 0001:000071e0 ?_TValidIndex@CFL@@AAEHXZ 004081e0 f chunk.obj - 0001:00007710 ?Lock@GRPB@@QAEXXZ 00408710 f chunk.obj - 0001:00007750 ?Unlock@GRPB@@QAEXXZ 00408750 f chunk.obj - 0001:00007790 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00408790 f chunk.obj - 0001:00007930 ?FWrite@FLO@@QAEHPAX@Z 00408930 f chunk.obj - 0001:00007970 ?Ckid@CFL@@QAEJKK@Z 00408970 f chunk.obj - 0001:00007a30 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00408a30 f chunk.obj - 0001:00007c10 ??0CGE@@QAE@XZ 00408c10 f chunk.obj - 0001:00007c90 ??1CGE@@UAE@XZ 00408c90 f chunk.obj - 0001:00007d20 ?AssertValid@CGE@@QAEXK@Z 00408d20 f chunk.obj - 0001:00007e50 ?MarkMem@CGE@@UAEXXZ 00408e50 f chunk.obj - 0001:00007ec0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00408ec0 f chunk.obj - 0001:00008010 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00409010 f chunk.obj - 0001:00008450 ??4FNI@@QAEAAV0@AAV0@@Z 00409450 f chunk.obj - 0001:000084a0 ??1FNI@@UAE@XZ 004094a0 f chunk.obj - 0001:000084d0 ??_GCGE@@UAEPAXI@Z 004094d0 f chunk.obj - 0001:000084d0 ??_ECGE@@UAEPAXI@Z 004094d0 f chunk.obj - 0001:00008510 ??4BASE@@QAEAAV0@ABV0@@Z 00409510 f chunk.obj - 0001:00008550 ?FWouldBe@CODM@@SGHJ@Z 00409550 f codec.obj - 0001:00008590 ?FIs@CODM@@UAEHJ@Z 00409590 f codec.obj - 0001:000085c0 ?Cls@CODM@@UAEJXZ 004095c0 f codec.obj - 0001:000085f0 ?FWouldBe@CODC@@SGHJ@Z 004095f0 f codec.obj - 0001:00008630 ?FIs@CODC@@UAEHJ@Z 00409630 f codec.obj - 0001:00008660 ?Cls@CODC@@UAEJXZ 00409660 f codec.obj - 0001:00008690 ??0CODM@@QAE@PAVCODC@@J@Z 00409690 f codec.obj - 0001:00008790 ??1CODM@@UAE@XZ 00409790 f codec.obj - 0001:000088b0 ?AssertValid@CODM@@QAEXK@Z 004098b0 f codec.obj - 0001:00008980 ?MarkMem@CODM@@UAEXXZ 00409980 f codec.obj - 0001:00008a70 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00409a70 f codec.obj - 0001:00008b80 ?FCanDo@CODM@@UAEHJH@Z 00409b80 f codec.obj - 0001:00008bf0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00409bf0 f codec.obj - 0001:00008d20 ?LwFromBytes@@YGJEEEE@Z 00409d20 f codec.obj - 0001:00008d60 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00409d60 f codec.obj - 0001:00008ea0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00409ea0 f codec.obj - 0001:00009090 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0040a090 f codec.obj - 0001:000093a0 ?B0Lw@@YGEJ@Z 0040a3a0 f codec.obj - 0001:000093c0 ?B1Lw@@YGEJ@Z 0040a3c0 f codec.obj - 0001:000093e0 ?B2Lw@@YGEJ@Z 0040a3e0 f codec.obj - 0001:00009400 ?B3Lw@@YGEJ@Z 0040a400 f codec.obj - 0001:00009440 ??_ECODM@@UAEPAXI@Z 0040a440 f codec.obj - 0001:00009440 ??_GCODM@@UAEPAXI@Z 0040a440 f codec.obj - 0001:00009480 ?FWouldBe@KCDC@@SGHJ@Z 0040a480 f codkauai.obj - 0001:000094c0 ?FIs@KCDC@@UAEHJ@Z 0040a4c0 f codkauai.obj - 0001:000094f0 ?Cls@KCDC@@UAEJXZ 0040a4f0 f codkauai.obj - 0001:00009520 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0040a520 f codkauai.obj - 0001:00009680 ?Set@BITA@@QAEXPAXJ@Z 0040a680 f codkauai.obj - 0001:000096e0 ?FWriteBits@BITA@@QAEHKJ@Z 0040a6e0 f codkauai.obj - 0001:00009880 ?FWriteLogEncoded@BITA@@QAEHK@Z 0040a880 f codkauai.obj - 0001:00009970 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0040a970 f codkauai.obj - 0001:0000a130 ?Ibit@BITA@@QAEJXZ 0040b130 f codkauai.obj - 0001:0000a160 ?Ib@BITA@@QAEJXZ 0040b160 f codkauai.obj - 0001:0000a190 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0040b190 f codkauai.obj - 0001:0000de70 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040ee70 f codkauai.obj - 0001:0000e790 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040f790 f codkauai.obj - 0001:00010f80 ?FWouldBe@BACO@@SGHJ@Z 00411f80 f crf.obj - 0001:00010fc0 ?FIs@BACO@@UAEHJ@Z 00411fc0 f crf.obj - 0001:00010ff0 ?Cls@BACO@@UAEJXZ 00411ff0 f crf.obj - 0001:00011020 ??0BACO@@IAE@XZ 00412020 f crf.obj - 0001:000110a0 ??1BACO@@MAE@XZ 004120a0 f crf.obj - 0001:00011170 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00412170 f crf.obj - 0001:00011260 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00412260 f crf.obj - 0001:000112d0 ?CbOnFile@BACO@@UAEJXZ 004122d0 f crf.obj - 0001:00011340 ?AssertValid@BACO@@QAEXK@Z 00412340 f crf.obj - 0001:000113d0 ?MarkMem@BACO@@UAEXXZ 004123d0 f crf.obj - 0001:00011440 ?Release@BACO@@UAEXXZ 00412440 f crf.obj - 0001:000115a0 ?Detach@BACO@@UAEXXZ 004125a0 f crf.obj - 0001:000116d0 ?SetCrep@BACO@@UAEXJ@Z 004126d0 f crf.obj - 0001:00011750 ?CactRef@BASE@@QAEJXZ 00412750 f crf.obj - 0001:00011780 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00412780 f crf.obj - 0001:00011940 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00412940 f crf.obj - 0001:00011b30 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00412b30 f crf.obj - 0001:00011eb0 ?AssertValid@CRF@@QAEXK@Z 00412eb0 f crf.obj - 0001:00012000 ??_EBACO@@MAEPAXI@Z 00413000 f crf.obj - 0001:00012000 ??_GBACO@@MAEPAXI@Z 00413000 f crf.obj - 0001:00012060 ?FWouldBe@FIL@@SGHJ@Z 00413060 f file.obj - 0001:000120a0 ?FIs@FIL@@UAEHJ@Z 004130a0 f file.obj - 0001:000120d0 ?Cls@FIL@@UAEJXZ 004130d0 f file.obj - 0001:00012100 ?FWouldBe@BLCK@@SGHJ@Z 00413100 f file.obj - 0001:00012140 ?FIs@BLCK@@UAEHJ@Z 00413140 f file.obj - 0001:00012170 ?Cls@BLCK@@UAEJXZ 00413170 f file.obj - 0001:000121a0 ??0FIL@@IAE@PAVFNI@@K@Z 004131a0 f file.obj - 0001:00012290 ??1FIL@@MAE@XZ 00413290 f file.obj - 0001:00012300 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00413300 f file.obj - 0001:00012520 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00413520 f file.obj - 0001:000126f0 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 004136f0 f file.obj - 0001:00012810 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00413810 f file.obj - 0001:00012960 ?FSetGrffil@FIL@@QAEHKK@Z 00413960 f file.obj - 0001:00012a70 ?Release@FIL@@UAEXXZ 00413a70 f file.obj - 0001:00012b50 ?SetTemp@FIL@@QAEXH@Z 00413b50 f file.obj - 0001:00012bd0 ?ShutDown@FIL@@SGXXZ 00413bd0 f file.obj - 0001:00012c90 ?AssertValid@FIL@@QAEXK@Z 00413c90 f file.obj - 0001:00012dc0 ?_FRangeIn@@YGHJJJ@Z 00413dc0 f file.obj - 0001:00012e20 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00413e20 f file.obj - 0001:00012ef0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00413ef0 f file.obj - 0001:00012fc0 ?FCopy@FLO@@QAEHPAU1@@Z 00413fc0 f file.obj - 0001:00013240 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00414240 f file.obj - 0001:00013350 ?FWriteHq@FLO@@QAEHPAXJ@Z 00414350 f file.obj - 0001:00013430 ?AssertValid@FLO@@QAEXK@Z 00414430 f file.obj - 0001:00013530 ??0BLCK@@QAE@PAUFLO@@H@Z 00414530 f file.obj - 0001:00013670 ??0BLCK@@QAE@XZ 00414670 f file.obj - 0001:00013710 ??1BLCK@@UAE@XZ 00414710 f file.obj - 0001:00013770 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00414770 f file.obj - 0001:000138a0 ?SetHq@BLCK@@QAEXPAPAXH@Z 004148a0 f file.obj - 0001:00013980 ?Free@BLCK@@QAEXXZ 00414980 f file.obj - 0001:00013a30 ?HqFree@BLCK@@QAEPAXH@Z 00414a30 f file.obj - 0001:00013be0 ?Cb@BLCK@@QAEJH@Z 00414be0 f file.obj - 0001:00013c70 ?FSetTemp@BLCK@@QAEHJH@Z 00414c70 f file.obj - 0001:00013d70 ?FReadHq@FLO@@QAEHPAPAX@Z 00414d70 f file.obj - 0001:00013db0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00414db0 f file.obj - 0001:00013f50 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00414f50 f file.obj - 0001:000140f0 ?FWriteHq@BLCK@@QAEHPAXJH@Z 004150f0 f file.obj - 0001:00014290 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00415290 f file.obj - 0001:00014430 ?FPackData@BLCK@@QAEHJ@Z 00415430 f file.obj - 0001:00014670 ?FCompressPhq@CODM@@QAEHPAPAXJ@Z 00415670 f file.obj - 0001:000146c0 ?AssertValid@BLCK@@QAEXK@Z 004156c0 f file.obj - 0001:000148f0 ?MarkMem@BLCK@@UAEXXZ 004158f0 f file.obj - 0001:00014990 ??_EFIL@@MAEPAXI@Z 00415990 f file.obj - 0001:00014990 ??_GFIL@@MAEPAXI@Z 00415990 f file.obj - 0001:000149d0 ??_EBLCK@@UAEPAXI@Z 004159d0 f file.obj - 0001:000149d0 ??_GBLCK@@UAEPAXI@Z 004159d0 f file.obj - 0001:00014a10 ?_HfileOpen@@YGPAXPADHK@Z 00415a10 f filewin.obj - 0001:00014a90 ?_FOpen@FIL@@IAEHHK@Z 00415a90 f filewin.obj - 0001:00014cd0 ?_Close@FIL@@IAEXH@Z 00415cd0 f filewin.obj - 0001:00014df0 ?Flush@FIL@@QAEXXZ 00415df0 f filewin.obj - 0001:00014e80 ?_SetFpPos@FIL@@IAEXJ@Z 00415e80 f filewin.obj - 0001:00014f80 ?FpMac@FIL@@QAEJXZ 00415f80 f filewin.obj - 0001:00015090 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00416090 f filewin.obj - 0001:00015250 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00416250 f filewin.obj - 0001:00015460 ?FWouldBe@FNI@@SGHJ@Z 00416460 f fniwin.obj - 0001:000154a0 ?FIs@FNI@@UAEHJ@Z 004164a0 f fniwin.obj - 0001:000154d0 ?Cls@FNI@@UAEJXZ 004164d0 f fniwin.obj - 0001:00015500 ?SetNil@FNI@@QAEXXZ 00416500 f fniwin.obj - 0001:00015560 ??0FNI@@QAE@XZ 00416560 f fniwin.obj - 0001:000155b0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 004165b0 f fniwin.obj - 0001:00015900 ?FGetUnique@FNI@@QAEHJ@Z 00416900 f fniwin.obj - 0001:00015ab0 ?FGetTemp@FNI@@QAEHXZ 00416ab0 f fniwin.obj - 0001:00015bf0 ?Ftg@FNI@@QAEJXZ 00416bf0 f fniwin.obj - 0001:00015c40 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00416c40 f fniwin.obj - 0001:00015e00 ?FChangeFtg@FNI@@QAEHJ@Z 00416e00 f fniwin.obj - 0001:00015f70 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00416f70 f fniwin.obj - 0001:000160b0 ?TExists@FNI@@QAEHXZ 004170b0 f fniwin.obj - 0001:000162f0 ?FEqual@FNI@@QAEHPAV1@@Z 004172f0 f fniwin.obj - 0001:000163b0 ?AssertValid@FNI@@QAEXK@Z 004173b0 f fniwin.obj - 0001:000166f0 ?_CchExt@FNI@@AAEJXZ 004176f0 f fniwin.obj - 0001:000167f0 ?_SetFtgFromName@FNI@@AAEXXZ 004177f0 f fniwin.obj - 0001:00016960 ?ChsUpper@@YGDD@Z 00417960 f fniwin.obj - 0001:00016980 ??4STN@@QAEAAV0@PAD@Z 00417980 f fniwin.obj - 0001:000169b0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 004179b0 f fniwin.obj - 0001:00016b90 ?FAppendCh@STN@@QAEHD@Z 00417b90 f fniwin.obj - 0001:00016bc0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00417bc0 f fniwin.obj - 0001:00016cf0 ?FAppendStn@STN@@QAEHPAV1@@Z 00417cf0 f fniwin.obj - 0001:00016d30 ?FInsertCh@STN@@QAEHJD@Z 00417d30 f fniwin.obj - 0001:00016d70 ?FEqual@STN@@QAEHPAV1@@Z 00417d70 f fniwin.obj - 0001:00016db0 ?FEqualUser@STN@@QAEHPAV1@K@Z 00417db0 f fniwin.obj - 0001:00016e50 ??_GFNI@@UAEPAXI@Z 00417e50 f fniwin.obj - 0001:00016e50 ??_EFNI@@UAEPAXI@Z 00417e50 f fniwin.obj - 0001:00016e90 ?FWouldBe@GRPB@@SGHJ@Z 00417e90 f groups.obj - 0001:00016ed0 ?FIs@GRPB@@UAEHJ@Z 00417ed0 f groups.obj - 0001:00016f00 ?Cls@GRPB@@UAEJXZ 00417f00 f groups.obj - 0001:00016f30 ?FWouldBe@GLB@@SGHJ@Z 00417f30 f groups.obj - 0001:00016f70 ?FIs@GLB@@UAEHJ@Z 00417f70 f groups.obj - 0001:00016fa0 ?Cls@GLB@@UAEJXZ 00417fa0 f groups.obj - 0001:00016fd0 ?FWouldBe@GL@@SGHJ@Z 00417fd0 f groups.obj - 0001:00017010 ?FIs@GL@@UAEHJ@Z 00418010 f groups.obj - 0001:00017040 ?Cls@GL@@UAEJXZ 00418040 f groups.obj - 0001:00017070 ??1GRPB@@UAE@XZ 00418070 f groups.obj - 0001:000170e0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 004180e0 f groups.obj - 0001:000172e0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 004182e0 f groups.obj - 0001:000174a0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 004184a0 f groups.obj - 0001:00017500 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00418500 f groups.obj - 0001:000176d0 ?AssertValid@GRPB@@QAEXK@Z 004186d0 f groups.obj - 0001:00017860 ?MarkMem@GRPB@@UAEXXZ 00418860 f groups.obj - 0001:000178d0 ??0GLB@@IAE@J@Z 004188d0 f groups.obj - 0001:00017960 ?QvGet@GLB@@QAEPAXJ@Z 00418960 f groups.obj - 0001:000179f0 ?Get@GLB@@QAEXJPAX@Z 004189f0 f groups.obj - 0001:00017a80 ?Put@GLB@@QAEXJPAX@Z 00418a80 f groups.obj - 0001:00017b30 ?PvLock@GLB@@QAEPAXJ@Z 00418b30 f groups.obj - 0001:00017b70 ?CbRoundToLong@@YGJJ@Z 00418b70 f groups.obj - 0001:00017b90 ?AssertValid@GLB@@QAEXK@Z 00418b90 f groups.obj - 0001:00017c30 ?PglNew@GL@@SGPAV1@JJ@Z 00418c30 f groups.obj - 0001:00017d60 ??0GL@@IAE@J@Z 00418d60 f groups.obj - 0001:00017dc0 ?FFree@GL@@UAEHJ@Z 00418dc0 f groups.obj - 0001:00017e30 ?CbOnFile@GL@@UAEJXZ 00418e30 f groups.obj - 0001:00017e90 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00418e90 f groups.obj - 0001:00018060 ?FInsert@GL@@QAEHJPAXJ@Z 00419060 f groups.obj - 0001:000181e0 ?Delete@GL@@UAEXJ@Z 004191e0 f groups.obj - 0001:00018240 ?Delete@GL@@QAEXJJ@Z 00419240 f groups.obj - 0001:000183b0 ?FAdd@GL@@UAEHPAXPAJ@Z 004193b0 f groups.obj - 0001:00018460 ?FPop@GL@@QAEHPAX@Z 00419460 f groups.obj - 0001:00018570 ?FSetIvMac@GL@@QAEHJ@Z 00419570 f groups.obj - 0001:00018780 ?FEnsureSpace@GL@@QAEHJK@Z 00419780 f groups.obj - 0001:00018850 ?_Qb1@GRPB@@IAEPAEJ@Z 00419850 f groups.obj - 0001:00018880 ?_Qb2@GRPB@@IAEPAEJ@Z 00419880 f groups.obj - 0001:000188b0 ?_Cb1@GRPB@@IAEJXZ 004198b0 f groups.obj - 0001:000188e0 ??0GRPB@@IAE@XZ 004198e0 f groups.obj - 0001:00018920 ?_Cb2@GRPB@@IAEJXZ 00419920 f groups.obj - 0001:00018950 ?_Qloc@GGB@@IAEPAULOC@1@J@Z 00419950 f groups.obj - 0001:00018990 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00419990 f groups.obj - 0001:00018aa0 ?GetFixed@GGB@@QAEXJPAX@Z 00419aa0 f groups.obj - 0001:00018bb0 ?Cb@GGB@@QAEJJ@Z 00419bb0 f groups.obj - 0001:00018c60 ?GetRgb@GGB@@QAEXJJJPAX@Z 00419c60 f groups.obj - 0001:00018d70 ?AssertValid@GGB@@QAEXK@Z 00419d70 f groups.obj - 0001:000190d0 ?AssertValid@GG@@QAEXK@Z 0041a0d0 f groups.obj - 0001:00019160 ??_GGRPB@@UAEPAXI@Z 0041a160 f groups.obj - 0001:00019160 ??_EGRPB@@UAEPAXI@Z 0041a160 f groups.obj - 0001:000191a0 ??_GGLB@@UAEPAXI@Z 0041a1a0 f groups.obj - 0001:000191a0 ??_EGLB@@UAEPAXI@Z 0041a1a0 f groups.obj - 0001:000191e0 ??_EGL@@UAEPAXI@Z 0041a1e0 f groups.obj - 0001:000191e0 ??_GGL@@UAEPAXI@Z 0041a1e0 f groups.obj - 0001:00019220 ??1GLB@@UAE@XZ 0041a220 f groups.obj - 0001:00019250 ??1GL@@UAE@XZ 0041a250 f groups.obj - 0001:000192c0 ?FWouldBe@MBMP@@SGHJ@Z 0041a2c0 f mbmp.obj - 0001:00019300 ?FIs@MBMP@@UAEHJ@Z 0041a300 f mbmp.obj - 0001:00019330 ?Cls@MBMP@@UAEJXZ 0041a330 f mbmp.obj - 0001:00019360 ??1MBMP@@UAE@XZ 0041a360 f mbmp.obj - 0001:000193d0 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 0041a3d0 f mbmp.obj - 0001:000194d0 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 0041a4d0 f mbmp.obj - 0001:00019bf0 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 0041abf0 f mbmp.obj - 0001:00019d30 ??0RC@@QAE@XZ 0041ad30 f mbmp.obj - 0001:00019d50 ?Set@RC@@QAEXJJJJ@Z 0041ad50 f mbmp.obj - 0001:00019da0 ?CbOnFile@MBMP@@UAEJXZ 0041ada0 f mbmp.obj - 0001:00019e00 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 0041ae00 f mbmp.obj - 0001:00019f50 ?AssertValid@MBMP@@QAEXK@Z 0041af50 f mbmp.obj - 0001:0001a0a0 ?MarkMem@MBMP@@UAEXXZ 0041b0a0 f mbmp.obj - 0001:0001a0e0 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0041b0e0 f mbmp.obj - 0001:0001aae0 ?BvSubPvs@@YGJPAX0@Z 0041bae0 f mbmp.obj - 0001:0001ab00 ??_EMBMP@@UAEPAXI@Z 0041bb00 f mbmp.obj - 0001:0001ab00 ??_GMBMP@@UAEPAXI@Z 0041bb00 f mbmp.obj - 0001:0001ab40 ??0MBMP@@IAE@XZ 0041bb40 f mbmp.obj - 0001:0001ab80 ?_Qrgcb@MBMP@@IAEPAFXZ 0041bb80 f mbmp.obj - 0001:0001abc0 ?_Qmbmph@MBMP@@IAEPAUMBMPH@1@XZ 0041bbc0 f mbmp.obj - 0001:0001ad00 ??0ACR@@QAE@EEE@Z 0041bd00 f mbmp.obj - 0001:0001ad40 ??0ACR@@QAE@HH@Z 0041bd40 f mbmp.obj - 0001:0001ad90 _main 0041bd90 f mkmbmp.obj - 0001:0001b660 ?_FGetLwFromSzs@@YGHPADPAJ@Z 0041c660 f mkmbmp.obj - 0001:0001b740 ?WarnProc@@YGXPADJ0@Z 0041c740 f mkmbmp.obj - 0001:0001b7c0 ?FAssertProc@@YGHPADJ0PAXJ@Z 0041c7c0 f mkmbmp.obj - 0001:0001b980 ?CfmtDefault@CODM@@QAEJXZ 0041c980 f mkmbmp.obj - 0001:0001baba _timeGetTime@0 0041caba winmm:WINMM.dll - 0001:0001bac0 __chkstk 0041cac0 LIBC:chkstk.obj - 0001:0001bac0 __alloca_probe 0041cac0 LIBC:chkstk.obj - 0001:0001baed __onexit 0041caed f LIBC:onexit.obj - 0001:0001bb63 _atexit 0041cb63 f LIBC:onexit.obj - 0001:0001bb75 ___onexitinit 0041cb75 f LIBC:onexit.obj - 0001:0001bbab __purecall 0041cbab f LIBC:purevirt.obj - 0001:0001bbb6 _fprintf 0041cbb6 f LIBC:fprintf.obj - 0001:0001bbec _printf 0041cbec f LIBC:printf.obj - 0001:0001bc28 _mainCRTStartup 0041cc28 f LIBC:crt0.obj - 0001:0001bd21 __amsg_exit 0041cd21 f LIBC:crt0.obj - 0001:0001bd41 __cinit 0041cd41 f LIBC:crt0dat.obj - 0001:0001bd71 _exit 0041cd71 f LIBC:crt0dat.obj - 0001:0001bd82 __exit 0041cd82 f LIBC:crt0dat.obj - 0001:0001be32 _realloc 0041ce32 f LIBC:realloc.obj - 0001:0001bf84 __msize 0041cf84 f LIBC:msize.obj - 0001:0001bf95 _malloc 0041cf95 f LIBC:malloc.obj - 0001:0001bfa8 __nh_malloc 0041cfa8 f LIBC:malloc.obj - 0001:0001c067 __heap_split_block 0041d067 f LIBC:malloc.obj - 0001:0001c0ac __stbuf 0041d0ac f LIBC:_sftbuf.obj - 0001:0001c12d __ftbuf 0041d12d f LIBC:_sftbuf.obj - 0001:0001c173 __output 0041d173 f LIBC:output.obj - 0001:0001ca9c __global_unwind2 0041da9c f LIBC:exsup.obj - 0001:0001cade __local_unwind2 0041dade f LIBC:exsup.obj - 0001:0001cb38 __abnormal_termination 0041db38 f LIBC:exsup.obj - 0001:0001cb5b __XcptFilter 0041db5b f LIBC:winxfltr.obj - 0001:0001cce6 __setenvp 0041dce6 f LIBC:stdenvp.obj - 0001:0001cdb1 __setargv 0041ddb1 f LIBC:stdargv.obj - 0001:0001d0af __setmbcp 0041e0af f LIBC:mbctype.obj - 0001:0001d23d ___initmbctable 0041e23d f LIBC:mbctype.obj - 0001:0001d248 __ioinit 0041e248 f LIBC:ioinit.obj - 0001:0001d336 __heap_init 0041e336 f LIBC:heapinit.obj - 0001:0001d3b3 ___getempty 0041e3b3 f LIBC:heapinit.obj - 0001:0001d3e0 __except_handler3 0041e3e0 f LIBC:exsup3.obj - 0001:0001d48e __seh_longjmp_unwind@4 0041e48e f LIBC:exsup3.obj - 0001:0001d4a9 __FF_MSGBANNER 0041e4a9 f LIBC:crt0msg.obj - 0001:0001d4cf __NMSG_WRITE 0041e4cf f LIBC:crt0msg.obj - 0001:0001d527 _free 0041e527 f LIBC:free.obj - 0001:0001d58f __heap_abort 0041e58f f LIBC:hpabort.obj - 0001:0001d59a __heap_grow 0041e59a f LIBC:heapgrow.obj - 0001:0001d683 __heap_grow_region 0041e683 f LIBC:heapgrow.obj - 0001:0001d730 __heap_free_region 0041e730 f LIBC:heapgrow.obj - 0001:0001d76a __heap_search 0041e76a f LIBC:heapsrch.obj - 0001:0001d85a _fflush 0041e85a f LIBC:fflush.obj - 0001:0001d8a6 __flush 0041e8a6 f LIBC:fflush.obj - 0001:0001d908 __flushall 0041e908 f LIBC:fflush.obj - 0001:0001d97d ___endstdio 0041e97d f LIBC:fflush.obj - 0001:0001d991 __isatty 0041e991 f LIBC:isatty.obj - 0001:0001d9ab _wctomb 0041e9ab f LIBC:wctomb.obj - 0001:0001da24 __aulldiv 0041ea24 f LIBC:ulldiv.obj - 0001:0001da84 __aullrem 0041ea84 f LIBC:ullrem.obj - 0001:0001daee __flsbuf 0041eaee f LIBC:_flsbuf.obj - 0001:0001dbfa __heap_addblock 0041ebfa f LIBC:heapadd.obj - 0001:0001deb1 __commit 0041eeb1 f LIBC:commit.obj - 0001:0001defe __write 0041eefe f LIBC:write.obj - 0001:0001e097 __fcloseall 0041f097 f LIBC:closeall.obj - 0001:0001e0c8 __fptrap 0041f0c8 f LIBC:crt0fp.obj - 0001:0001e0d3 __lseek 0041f0d3 f LIBC:lseek.obj - 0001:0001e148 __getbuf 0041f148 f LIBC:_getbuf.obj - 0001:0001e193 __heap_findaddr 0041f193 f LIBC:findaddr.obj - 0001:0001e1fd __free_osfhnd 0041f1fd f LIBC:osfinfo.obj - 0001:0001e26a __get_osfhandle 0041f26a f LIBC:osfinfo.obj - 0001:0001e2a2 __dosmaperr 0041f2a2 f LIBC:dosmap.obj - 0001:0001e30b _fclose 0041f30b f LIBC:fclose.obj - 0001:0001e367 __close 0041f367 f LIBC:close.obj - 0001:0001e3fd __freebuf 0041f3fd f LIBC:_freebuf.obj - 0001:0001e436 _RtlUnwind@16 0041f436 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00420000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00420018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00420030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 00420040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 00420058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 00420070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004200c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004200e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 00420108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 0042010c base.obj - 0002:00000120 ?_ers@@3VERS@@A 00420120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 00420248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 00420260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 00420368 utilstr.obj - 0002:00000478 ?_pcflFirst@CFL@@0PAV1@A 00420478 chunk.obj - 0002:000004a0 ?_pfilFirst@FIL@@1PAV1@A 004204a0 file.obj - 0002:000004a8 ?_mutxList@FIL@@1VMUTX@@A 004204a8 file.obj - 0002:000004d0 ?_fniTemp@@3VFNI@@A 004204d0 fniwin.obj - 0002:0000077c __heap_descpages 0042077c - 0002:00000780 __heap_regions 00420780 - 0002:00000a80 ___onexitend 00420a80 - 0002:00000a84 __FPinit 00420a84 - 0002:00000a88 ___onexitbegin 00420a88 - 0002:00000a8c __acmdln 00420a8c - 0002:00000a90 __bufin 00420a90 - 0003:00000058 ??_7KCDC@@6B@ 00422058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00422078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 00422090 utilglob.obj - 0003:000000b0 ??_7BLL@@6B@ 004220b0 base.obj - 0003:000000c8 ??_7ERS@@6B@ 004220c8 utilerro.obj - 0003:00000100 ??_7USAC@@6B@ 00422100 utilint.obj - 0003:00000118 ??_7RND@@6B@ 00422118 utilrnd.obj - 0003:00000138 ??_7SFL@@6B@ 00422138 utilrnd.obj - 0003:00000158 ?vrgchHex@@3QBDB 00422158 utilstr.obj - 0003:00000170 ??_7CGE@@6B@ 00422170 chunk.obj - 0003:00000188 ??_7CODM@@6B@ 00422188 codec.obj - 0003:000001b8 ??_7BACO@@6B@ 004221b8 crf.obj - 0003:000001e8 ??_7FIL@@6B@ 004221e8 file.obj - 0003:00000200 ??_7BLCK@@6B@ 00422200 file.obj - 0003:00000218 ??_7FNI@@6B@ 00422218 fniwin.obj - 0003:00000230 ??_7GRPB@@6B@ 00422230 groups.obj - 0003:00000260 ??_7GLB@@6B@ 00422260 groups.obj - 0003:00000290 ??_7GL@@6B@ 00422290 groups.obj - 0003:000002c0 ??_7MBMP@@6B@ 004222c0 mbmp.obj - 0003:00000300 ___lookuptable 00422300 LIBC:output.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 00423020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 00423024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 00423064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 00423068 base.obj - 0004:0000006c ?vcactAV@@3JA 0042306c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 00423070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 00423088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004230a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004230b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004230c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004230e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004230f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0042310c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 00423120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0042313c base.obj - 0004:0000015c ??_C@_03GOHA@nil?$AA@ 0042315c base.obj - 0004:00000160 ??_C@_0BA@HJHG@links?5corrupt?53?$AA@ 00423160 base.obj - 0004:00000170 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00423170 base.obj - 0004:00000180 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00423180 base.obj - 0004:000001b0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004231b0 utilcopy.obj - 0004:000001e0 ?vpers@@3PAVERS@@A 004231e0 utilerro.obj - 0004:000001e4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004231e4 utilerro.obj - 0004:0000020c ??_C@_08GEE@Error?5?$CFd?$AA@ 0042320c utilerro.obj - 0004:00000238 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 00423238 utilint.obj - 0004:00000248 ??_C@_084overflow?$AA@ 00423248 utilint.obj - 0004:00000254 ??_C@_0N@INPL@long?5too?5big?$AA@ 00423254 utilint.obj - 0004:00000264 ??_C@_0P@DFPA@long?5too?5small?$AA@ 00423264 utilint.obj - 0004:00000298 ?vpfnlib@@3P6GJJJ@ZA 00423298 utilmem.obj - 0004:0000029c ?_fInLiberator@@3HA 0042329c utilmem.obj - 0004:000002a0 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 004232a0 utilmem.obj - 0004:000002c4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004232c4 utilmem.obj - 0004:000002dc ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 004232dc utilmem.obj - 0004:00000304 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 00423304 utilmem.obj - 0004:00000328 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 00423328 utilmem.obj - 0004:00000348 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00423348 utilmem.obj - 0004:0000035c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 0042335c utilmem.obj - 0004:00000370 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 00423370 utilmem.obj - 0004:00000384 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 00423384 utilmem.obj - 0004:00000398 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 00423398 utilmem.obj - 0004:000003b0 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 004233b0 utilmem.obj - 0004:000003c4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004233c4 utilmem.obj - 0004:000003d4 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 004233d4 utilmem.obj - 0004:000003e8 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004233e8 utilmem.obj - 0004:00000404 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 00423404 utilmem.obj - 0004:00000418 ??_C@_08ECDH@wrong?5cb?$AA@ 00423418 utilmem.obj - 0004:00000424 ??_C@_06BHIL@nil?5pv?$AA@ 00423424 utilmem.obj - 0004:00000450 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 00423450 utilrnd.obj - 0004:0000046c ??_C@_0L@LEMP@_clw?5wrong?$AA@ 0042346c utilrnd.obj - 0004:00000478 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 00423478 utilrnd.obj - 0004:00000488 ??_C@_0L@DINP@wrong?5_clw?$AA@ 00423488 utilrnd.obj - 0004:000005b8 ??_C@_0CG@EFEH@Bad?5character?5position?5to?5delete@ 004235b8 utilstr.obj - 0004:000005e0 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 004235e0 utilstr.obj - 0004:00000608 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 00423608 utilstr.obj - 0004:00000618 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 00423618 utilstr.obj - 0004:0000062c ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 0042362c utilstr.obj - 0004:0000063c ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 0042363c utilstr.obj - 0004:00000658 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 00423658 utilstr.obj - 0004:00000674 ??_C@_0M@PFFO@sz?5too?5long?$AA@ 00423674 utilstr.obj - 0004:00000680 ??_C@_07NPFI@bad?5osk?$AA@ 00423680 utilstr.obj - 0004:000006a8 ?vcactSuspendCheckPointers@@3JA 004236a8 memwin.obj - 0004:000006ac ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 004236ac memwin.obj - 0004:000006c0 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 004236c0 memwin.obj - 0004:000006d4 ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 004236d4 memwin.obj - 0004:000006ec ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004236ec memwin.obj - 0004:000006fc ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004236fc memwin.obj - 0004:00000720 ??_C@_09BABB@hq?5is?5nil?$AA@ 00423720 memwin.obj - 0004:0000072c ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 0042372c memwin.obj - 0004:00000768 ?_rtiLast@CFL@@0JA 00423768 chunk.obj - 0004:0000076c ??_C@_0BK@JEPK@can?8t?5open?5a?5file?5as?5temp?$AA@ 0042376c chunk.obj - 0004:00000788 ??_C@_0BO@DHMK@trying?5to?5create?5an?5open?5file?$AA@ 00423788 chunk.obj - 0004:000007a8 ??_C@_0CC@EPMB@calling?5Release?5without?5an?5AddRe@ 004237a8 chunk.obj - 0004:000007cc ??_C@_0BC@LGMI@RTIE?5out?5of?5order?$AA@ 004237cc chunk.obj - 0004:000007e0 ??_C@_08EHFM@Bad?5RTIE?$AA@ 004237e0 chunk.obj - 0004:000007ec ??_C@_09HBDJ@bad?5index?$AA@ 004237ec chunk.obj - 0004:000007f8 ??_C@_0BN@GHAA@too?5much?5free?5space?5on?5extra?$AA@ 004237f8 chunk.obj - 0004:00000818 ??_C@_0BE@OFKB@too?5much?5free?5space?$AA@ 00423818 chunk.obj - 0004:0000082c ??_C@_0O@CLCN@bad?5cb?5in?5fsm?$AA@ 0042382c chunk.obj - 0004:0000083c ??_C@_0O@PCPB@bad?5fp?5in?5fsm?$AA@ 0042383c chunk.obj - 0004:0000084c ??_C@_0BL@LIPE@overlapping?5chunks?5on?5file?$AA@ 0042384c chunk.obj - 0004:00000868 ??_C@_0BM@GKDA@overlapping?5chunks?5on?5extra?$AA@ 00423868 chunk.obj - 0004:00000884 ??_C@_0BF@GNPF@ref?5counts?5messed?5up?$AA@ 00423884 chunk.obj - 0004:0000089c ??_C@_0CC@OBEB@kid?8s?5not?5sorted?5or?5duplicate?5ki@ 0042389c chunk.obj - 0004:000008c0 ??_C@_0BK@CCBN@chunk?5is?5child?5of?5itself?$CB?$AA@ 004238c0 chunk.obj - 0004:000008dc ??_C@_0BE@NLNN@child?5doesn?8t?5exist?$AA@ 004238dc chunk.obj - 0004:000008f0 ??_C@_0BB@FHCL@crp?5not?5in?5order?$AA@ 004238f0 chunk.obj - 0004:00000904 ??_C@_06CFJE@bad?5fp?$AA@ 00423904 chunk.obj - 0004:0000090c ??_C@_0BC@GCGP@fcrpOnExtra?5wrong?$AA@ 0042390c chunk.obj - 0004:00000920 ??_C@_0O@GMEL@fcrpMarkT?5set?$AA@ 00423920 chunk.obj - 0004:00000930 ??_C@_0M@LMOL@fpMac?5wrong?$AA@ 00423930 chunk.obj - 0004:0000093c ??_C@_0CB@PCMA@free?5map?5never?5read?0?5but?5exists?$CB@ 0042393c chunk.obj - 0004:00000960 ??_C@_0BH@DOJ@why?5isn?8t?5this?5marked?$DP?$AA@ 00423960 chunk.obj - 0004:00000978 ??_C@_0BA@JOOP@child?5not?5there?$AA@ 00423978 chunk.obj - 0004:00000988 ??_C@_06JFMK@bad?5cb?$AA@ 00423988 chunk.obj - 0004:00000990 ??_C@_0BA@OKOG@chunk?5not?5found?$AA@ 00423990 chunk.obj - 0004:000009a0 ??_C@_0BA@DIPK@_pgldps?5not?5nil?$AA@ 004239a0 chunk.obj - 0004:000009d0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 004239d0 codec.obj - 0004:000009f0 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 004239f0 codec.obj - 0004:00000a08 ??_C@_08DJLA@nil?5cfmt?$AA@ 00423a08 codec.obj - 0004:00000a14 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 00423a14 codec.obj - 0004:00000a34 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 00423a34 codec.obj - 0004:00000a70 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00423a70 codkauai.obj - 0004:00000a94 ??_C@_07DEPO@bad?5len?$AA@ 00423a94 codkauai.obj - 0004:00000a9c ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 00423a9c codkauai.obj - 0004:00000aac ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 00423aac codkauai.obj - 0004:00000ad0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 00423ad0 codkauai.obj - 0004:00000ae4 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 00423ae4 codkauai.obj - 0004:00000af8 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 00423af8 codkauai.obj - 0004:00000b14 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 00423b14 codkauai.obj - 0004:00000b44 ??_C@_0P@KAFA@still?5attached?$AA@ 00423b44 crf.obj - 0004:00000b54 ??_C@_0BD@FGGM@Unimplemented?5Code?$AA@ 00423b54 crf.obj - 0004:00000b68 ??_C@_0BJ@HKHH@attached?5baco?5has?5no?5crf?$AA@ 00423b68 crf.obj - 0004:00000b84 ??_C@_0BP@HPEO@why?5isn?8t?5the?5BACO?5in?5the?5CRF?$DP?$AA@ 00423b84 crf.obj - 0004:00000ba4 ??_C@_0BM@KGOB@who?8s?5calling?5BacoDetached?$DP?$AA@ 00423ba4 crf.obj - 0004:00000bc0 ??_C@_0BM@LJLF@BACO?5doesn?8t?5have?5right?5CRF?$AA@ 00423bc0 crf.obj - 0004:00000bdc ??_C@_0BM@JEKJ@who?8s?5calling?5BacoReleased?$DP?$AA@ 00423bdc crf.obj - 0004:00000c14 ?vftgCreator@FIL@@2JA 00423c14 file.obj - 0004:00000c18 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00423c18 file.obj - 0004:00000c2c ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 00423c2c file.obj - 0004:00000c40 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 00423c40 file.obj - 0004:00000c54 ??_C@_0BF@PMGP@different?5sized?5FLOs?$AA@ 00423c54 file.obj - 0004:00000c6c ??_C@_0BG@ENMJ@reading?5outside?5flo?52?$AA@ 00423c6c file.obj - 0004:00000c84 ??_C@_0BG@MHHD@writing?5outside?5flo?52?$AA@ 00423c84 file.obj - 0004:00000c9c ??_C@_0BG@DBJD@accessing?5packed?5data?$AA@ 00423c9c file.obj - 0004:00000cb4 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 00423cb4 file.obj - 0004:00000ccc ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 00423ccc file.obj - 0004:00000ce0 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 00423ce0 file.obj - 0004:00000cf8 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 00423cf8 file.obj - 0004:00000d0c ??_C@_0BH@BMPJ@writing?5outside?5blck?52?$AA@ 00423d0c file.obj - 0004:00000d24 ??_C@_0BC@HBLC@flo?5is?5wrong?5size?$AA@ 00423d24 file.obj - 0004:00000d38 ??_C@_0BE@CIKO@copying?5packed?5data?$AA@ 00423d38 file.obj - 0004:00000d4c ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 00423d4c file.obj - 0004:00000d68 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 00423d68 file.obj - 0004:00000d80 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 00423d80 file.obj - 0004:00000d9c ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 00423d9c file.obj - 0004:00000dbc ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 00423dbc file.obj - 0004:00000e00 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 00423e00 filewin.obj - 0004:00000e1c ??_C@_0BK@COFD@Deleting?5temp?5file?5failed?$AA@ 00423e1c filewin.obj - 0004:00000e38 ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 00423e38 filewin.obj - 0004:00000e58 ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 00423e58 filewin.obj - 0004:00000e88 ?vftgTemp@@3JA 00423e88 fniwin.obj - 0004:00000e90 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00423e90 fniwin.obj - 0004:00000e9c ??_C@_0BH@OECG@ftg?5doesn?8t?5match?5pstn?$AA@ 00423e9c fniwin.obj - 0004:00000eb4 ??_C@_07JFJJ@Bad?5FTG?$AA@ 00423eb4 fniwin.obj - 0004:00000ebc ??_C@_07NLCI@bad?5fni?$AA@ 00423ebc fniwin.obj - 0004:00000ec4 ??_C@_0BC@IKJG@expected?5filename?$AA@ 00423ec4 fniwin.obj - 0004:00000ed8 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 00423ed8 fniwin.obj - 0004:00000ee8 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 00423ee8 fniwin.obj - 0004:00000efc ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 00423efc fniwin.obj - 0004:00000f14 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 00423f14 fniwin.obj - 0004:00000f24 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 00423f24 fniwin.obj - 0004:00000f34 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 00423f34 fniwin.obj - 0004:00000f68 ??_C@_0P@JECG@negative?5sizes?$AA@ 00423f68 groups.obj - 0004:00000f78 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00423f78 groups.obj - 0004:00000f88 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00423f88 groups.obj - 0004:00000f9c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 00423f9c groups.obj - 0004:00000fb0 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00423fb0 groups.obj - 0004:00000fcc ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 00423fcc groups.obj - 0004:00000fe8 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 00423fe8 groups.obj - 0004:00001000 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 00424000 groups.obj - 0004:00001028 ??_C@_08OO@wrong?5bo?$AA@ 00424028 groups.obj - 0004:00001034 ??_C@_06NHBD@bad?5bo?$AA@ 00424034 groups.obj - 0004:0000103c ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 0042403c groups.obj - 0004:00001068 ??_C@_0O@EMCN@element?5free?$CB?$AA@ 00424068 groups.obj - 0004:00001078 ??_C@_0O@CDNJ@bad?5_clocFree?$AA@ 00424078 groups.obj - 0004:00001088 ??_C@_0BB@EHBF@group?5wrong?5size?$AA@ 00424088 groups.obj - 0004:0000109c ??_C@_0BI@IDNG@loc?5extends?5past?5_bvMac?$AA@ 0042409c groups.obj - 0004:000010b4 ??_C@_0CF@GFHJ@zero?5sized?5item?5doesn?8t?5have?5zer@ 004240b4 groups.obj - 0004:000010dc ??_C@_0BD@JGGC@bad?5cb?5in?5free?5loc?$AA@ 004240dc groups.obj - 0004:000010f0 ??_C@_0BC@GMKN@Last?5element?5free?$AA@ 004240f0 groups.obj - 0004:00001104 ??_C@_0BD@PEBC@_clocFree?5is?5wrong?$AA@ 00424104 groups.obj - 0004:00001118 ??_C@_0BF@BIFA@rgloc?5area?5too?5small?$AA@ 00424118 groups.obj - 0004:00001130 ??_C@_0BF@MHIK@group?5area?5too?5small?$AA@ 00424130 groups.obj - 0004:00001148 ??_C@_0BE@LFPJ@bad?5_clocFree?5in?5GG?$AA@ 00424148 groups.obj - 0004:0000119c ??_C@_0BC@MABH@shrinking?5failed?$CB?$AA@ 0042419c mbmp.obj - 0004:000011b0 ??_C@_0BN@HMNP@Empty?5source?5bitmap?5for?5MBMP?$AA@ 004241b0 mbmp.obj - 0004:000011d0 ??_C@_0BC@JEGH@Invalid?5rectangle?$AA@ 004241d0 mbmp.obj - 0004:000011e4 ??_C@_0BC@ICFM@Wrong?5sized?5block?$AA@ 004241e4 mbmp.obj - 0004:000011f8 ??_C@_0BC@FLNL@_hqrgb?5wrong?5size?$AA@ 004241f8 mbmp.obj - 0004:0000120c ??_C@_0O@JBAC@_cbRgcb?5wrong?$AA@ 0042420c mbmp.obj - 0004:0000121c ??_C@_0BJ@GIGP@compressed?5bitmap?5is?5bad?$AA@ 0042421c mbmp.obj - 0004:00001238 ??_C@_0BG@EIAF@palette?5is?5wrong?5size?$AA@ 00424238 mbmp.obj - 0004:00001250 ??_C@_0BH@FEMH@Bitmap?5data?5wrong?5size?$AA@ 00424250 mbmp.obj - 0004:00001268 ??_C@_0BH@DGGF@Empty?5bitmap?5rectangle?$AA@ 00424268 mbmp.obj - 0004:00001280 ??_C@_0DE@EEJE@bad?5compression?5type?5or?5bitmap?5f@ 00424280 mbmp.obj - 0004:000012b4 ??_C@_0BE@GKKF@not?5an?58?9bit?5bitmap?$AA@ 004242b4 mbmp.obj - 0004:000012c8 ??_C@_0BA@NOIG@bad?5bitmap?5file?$AA@ 004242c8 mbmp.obj - 0004:000012f8 ?_fEnableWarnings@@3HA 004242f8 mkmbmp.obj - 0004:000012fc ??_C@_02DILL@?$CFs?$AA@ 004242fc mkmbmp.obj - 0004:00001300 ??_C@_0FP@FPKH@Usage?3?5?5mkmbmp?5?$FL?9c?$FL0?$HM1?$HM2?$FN?$FN?5?$FL?9p?5?$DM@ 00424300 mkmbmp.obj - 0004:00001360 ??_C@_0CF@HGJF@writing?5to?5destination?5file?5fail@ 00424360 mkmbmp.obj - 0004:00001388 ??_C@_0BF@GMGH@allocation?5failure?6?6?$AA@ 00424388 mkmbmp.obj - 0004:000013a0 ??_C@_0CD@LHCB@Couldn?8t?5create?5destination?5file@ 004243a0 mkmbmp.obj - 0004:000013c4 ??_C@_0BI@PHFG@reading?5bitmap?5failed?6?6?$AA@ 004243c4 mkmbmp.obj - 0004:000013dc ??_C@_0BH@MOKA@Bad?5compression?5type?6?6?$AA@ 004243dc mkmbmp.obj - 0004:000013f4 ??_C@_0BN@DEOC@Wrong?5number?5of?5file?5names?6?6?$AA@ 004243f4 mkmbmp.obj - 0004:00001414 ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 00424414 mkmbmp.obj - 0004:00001424 ??_C@_0BG@JNKG@Too?5many?5file?5names?6?6?$AA@ 00424424 mkmbmp.obj - 0004:0000143c ??_C@_0BJ@DFMN@Bad?5compression?5format?6?6?$AA@ 0042443c mkmbmp.obj - 0004:00001458 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 00424458 mkmbmp.obj - 0004:00001494 ??_C@_0EH@HPOK@?6Microsoft?5?$CIR?$CJ?5Make?5Mbmp?5Utility@ 00424494 mkmbmp.obj - 0004:000014dc ??_C@_01BJG@?6?$AA@ 004244dc mkmbmp.obj - 0004:000014e0 ??_C@_04OFDJ@?3?5?$CFs?$AA@ 004244e0 mkmbmp.obj - 0004:000014e8 ??_C@_0BC@JNGB@?$CFs?$CI?$CFld?$CJ?5?3?5warning?$AA@ 004244e8 mkmbmp.obj - 0004:000014fc ??_C@_0O@CKIP@?5?5?5Line?3?5?$CFld?6?$AA@ 004244fc mkmbmp.obj - 0004:0000150c ??_C@_0N@DAAP@?5?5?5File?3?5?$CFs?6?$AA@ 0042450c mkmbmp.obj - 0004:0000151c ??_C@_05LCJC@?$CF08lx?$AA@ 0042451c mkmbmp.obj - 0004:00001524 ??_C@_04JGFO@?$CF04x?$AA@ 00424524 mkmbmp.obj - 0004:0000152c ??_C@_04OBKB@?$CF02x?$AA@ 0042452c mkmbmp.obj - 0004:00001534 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 00424534 mkmbmp.obj - 0004:00001540 ??_C@_0P@ENPC@?5?5?5Address?5?$CFx?6?$AA@ 00424540 mkmbmp.obj - 0004:00001550 ??_C@_0BA@KOEL@?5?5?5Message?3?5?$CFs?6?$AA@ 00424550 mkmbmp.obj - 0004:00001560 ??_C@_0BG@OJDE@An?5assert?5occurred?3?5?6?$AA@ 00424560 mkmbmp.obj - 0004:00001578 __iob 00424578 LIBC:_file.obj - 0004:000017f8 __lastiob 004247f8 LIBC:_file.obj - 0004:000017fc __aenvptr 004247fc LIBC:crt0.obj - 0004:00001800 __wenvptr 00424800 LIBC:crt0.obj - 0004:00001804 __aexit_rtn 00424804 LIBC:crt0.obj - 0004:00001808 _errno 00424808 LIBC:crt0dat.obj - 0004:0000180c __doserrno 0042480c LIBC:crt0dat.obj - 0004:00001810 __umaskval 00424810 LIBC:crt0dat.obj - 0004:00001814 __osver 00424814 LIBC:crt0dat.obj - 0004:00001818 __winver 00424818 LIBC:crt0dat.obj - 0004:0000181c __winmajor 0042481c LIBC:crt0dat.obj - 0004:00001820 __winminor 00424820 LIBC:crt0dat.obj - 0004:00001824 ___argc 00424824 LIBC:crt0dat.obj - 0004:00001828 ___argv 00424828 LIBC:crt0dat.obj - 0004:0000182c ___wargv 0042482c LIBC:crt0dat.obj - 0004:00001830 __environ 00424830 LIBC:crt0dat.obj - 0004:00001834 ___initenv 00424834 LIBC:crt0dat.obj - 0004:00001838 __wenviron 00424838 LIBC:crt0dat.obj - 0004:0000183c ___winitenv 0042483c LIBC:crt0dat.obj - 0004:00001840 __pgmptr 00424840 LIBC:crt0dat.obj - 0004:00001844 __wpgmptr 00424844 LIBC:crt0dat.obj - 0004:00001848 __exitflag 00424848 LIBC:crt0dat.obj - 0004:0000184c __C_Termination_Done 0042484c LIBC:crt0dat.obj - 0004:00001850 __pnhHeap 00424850 LIBC:malloc.obj - 0004:00001858 __stdbuf 00424858 LIBC:_sftbuf.obj - 0004:00001868 ___nullstring 00424868 LIBC:output.obj - 0004:0000187c ___wnullstring 0042487c LIBC:output.obj - 0004:00001880 __XcptActTab 00424880 LIBC:winxfltr.obj - 0004:000018f8 __First_FPE_Indx 004248f8 LIBC:winxfltr.obj - 0004:000018fc __Num_FPE 004248fc LIBC:winxfltr.obj - 0004:00001900 __XcptActTabCount 00424900 LIBC:winxfltr.obj - 0004:00001904 __fpecode 00424904 LIBC:winxfltr.obj - 0004:00001908 __pxcptinfoptrs 00424908 LIBC:winxfltr.obj - 0004:00001910 __mbctype 00424910 LIBC:mbctype.obj - 0004:00001a14 ___mbcodepage 00424a14 LIBC:mbctype.obj - 0004:00001a18 ___mblcid 00424a18 LIBC:mbctype.obj - 0004:00001a20 ___mbulinfo 00424a20 LIBC:mbctype.obj - 0004:00001b28 __nhandle 00424b28 LIBC:ioinit.obj - 0004:00001b30 __osfile 00424b30 LIBC:ioinit.obj - 0004:00001b70 __osfhnd 00424b70 LIBC:ioinit.obj - 0004:00001c70 __pipech 00424c70 LIBC:ioinit.obj - 0004:00001cb0 __heap_desc 00424cb0 LIBC:heapinit.obj - 0004:00001cc4 __heap_resetsize 00424cc4 LIBC:heapinit.obj - 0004:00001cc8 __amblksiz 00424cc8 LIBC:heapinit.obj - 0004:00001ccc __heap_regionsize 00424ccc LIBC:heapinit.obj - 0004:00001cd0 __heap_maxregsize 00424cd0 LIBC:heapinit.obj - 0004:00001f40 __adbgmsg 00424f40 LIBC:crt0msg.obj - 0004:00001f44 __newmode 00424f44 LIBC:_newmode.obj - 0004:00001f48 __cflush 00424f48 LIBC:fflush.obj - 0004:00001f50 __cfltcvt_tab 00424f50 LIBC:cmiscdat.obj - 0004:00001f68 __pctype 00424f68 LIBC:ctype.obj - 0004:00001f6c __pwctype 00424f6c LIBC:ctype.obj - 0004:00001f70 __ctype 00424f70 LIBC:ctype.obj - 0004:00002178 ___lc_handle 00425178 LIBC:nlsdata2.obj - 0004:00002190 ___lc_codepage 00425190 LIBC:nlsdata2.obj - 0004:00002194 ___mb_cur_max 00425194 LIBC:nlsdata1.obj - 0004:0000219c ___decimal_point 0042519c LIBC:nlsdata1.obj - 0004:000021a0 ___decimal_point_length 004251a0 LIBC:nlsdata1.obj - 0004:00002310 ___xc_a 00425310 LIBC:crt0init.obj - 0004:00002368 ___xc_z 00425368 LIBC:crt0init.obj - 0004:0000236c ___xi_a 0042536c LIBC:crt0init.obj - 0004:00002374 ___xi_z 00425374 LIBC:crt0init.obj - 0004:00002378 ___xp_a 00425378 LIBC:crt0init.obj - 0004:00002380 ___xp_z 00425380 LIBC:crt0init.obj - 0004:00002384 ___xt_a 00425384 LIBC:crt0init.obj - 0004:00002388 ___xt_z 00425388 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00426000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00426014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00426028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0042603c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00426050 kernel32:KERNEL32.dll - 0005:00000118 __imp__DeleteCriticalSection@4 00426118 kernel32:KERNEL32.dll - 0005:0000011c __imp__IsBadReadPtr@8 0042611c kernel32:KERNEL32.dll - 0005:00000120 __imp__GlobalAlloc@8 00426120 kernel32:KERNEL32.dll - 0005:00000124 __imp__GlobalFree@4 00426124 kernel32:KERNEL32.dll - 0005:00000128 __imp__EnterCriticalSection@4 00426128 kernel32:KERNEL32.dll - 0005:0000012c __imp__LeaveCriticalSection@4 0042612c kernel32:KERNEL32.dll - 0005:00000130 __imp__GetCurrentThreadId@0 00426130 kernel32:KERNEL32.dll - 0005:00000134 __imp__GlobalReAlloc@12 00426134 kernel32:KERNEL32.dll - 0005:00000138 __imp__GlobalSize@4 00426138 kernel32:KERNEL32.dll - 0005:0000013c __imp__WideCharToMultiByte@32 0042613c kernel32:KERNEL32.dll - 0005:00000140 __imp__IsBadWritePtr@8 00426140 kernel32:KERNEL32.dll - 0005:00000144 __imp__CreateFileA@28 00426144 kernel32:KERNEL32.dll - 0005:00000148 __imp__CloseHandle@4 00426148 kernel32:KERNEL32.dll - 0005:0000014c __imp__DeleteFileA@4 0042614c kernel32:KERNEL32.dll - 0005:00000150 __imp__FlushFileBuffers@4 00426150 kernel32:KERNEL32.dll - 0005:00000154 __imp__SetFilePointer@16 00426154 kernel32:KERNEL32.dll - 0005:00000158 __imp__ReadFile@20 00426158 kernel32:KERNEL32.dll - 0005:0000015c __imp__WriteFile@20 0042615c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetFullPathNameA@16 00426160 kernel32:KERNEL32.dll - 0005:00000164 __imp__GetTempPathA@8 00426164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetLastError@0 00426168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetFileAttributesA@4 0042616c kernel32:KERNEL32.dll - 0005:00000170 __imp__InitializeCriticalSection@4 00426170 kernel32:KERNEL32.dll - 0005:00000174 __imp__ExitProcess@4 00426174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetVersion@0 00426178 kernel32:KERNEL32.dll - 0005:0000017c __imp__SetStdHandle@8 0042617c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetCommandLineA@0 00426180 kernel32:KERNEL32.dll - 0005:00000184 __imp__VirtualAlloc@16 00426184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetStdHandle@4 00426188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetCPInfo@8 0042618c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetOEMCP@0 00426190 kernel32:KERNEL32.dll - 0005:00000194 __imp__GetStartupInfoA@4 00426194 kernel32:KERNEL32.dll - 0005:00000198 __imp__GetFileType@4 00426198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetEnvironmentStrings@0 0042619c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetModuleFileNameA@12 004261a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__GetACP@0 004261a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__VirtualFree@12 004261a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__RtlUnwind@16 004261ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__UnhandledExceptionFilter@4 004261b0 kernel32:KERNEL32.dll - 0005:000001b4 \177KERNEL32_NULL_THUNK_DATA 004261b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__CharUpperBuffA@8 004261b8 user32:USER32.dll - 0005:000001bc \177USER32_NULL_THUNK_DATA 004261bc user32:USER32.dll - 0005:000001c0 __imp__timeGetTime@0 004261c0 winmm:WINMM.dll - 0005:000001c4 \177WINMM_NULL_THUNK_DATA 004261c4 winmm:WINMM.dll - 0005:000001c8 \177comdlg32_NULL_THUNK_DATA 004261c8 comdlg32:comdlg32.dll - - entry point at 0001:0001bc28 - - Static symbols - - 0001:0001b640 _$$1000 0041c640 f mkmbmp.obj - 0001:0001b960 _$$a200 0041c960 f mkmbmp.obj - 0001:0001b9b0 _$$8000 0041c9b0 f mkmbmp.obj - 0001:00019bd0 _$$1000 0041abd0 f mbmp.obj - 0001:0001aac0 _$$a200 0041bac0 f mbmp.obj - 0001:0001abf0 _$$8000 0041bbf0 f mbmp.obj - 0001:00019280 _$$1000 0041a280 f groups2.obj - 0001:000192a0 _$$8000 0041a2a0 f groups2.obj - 0001:000172c0 _$$1000 004182c0 f groups.obj - 0001:00019140 _$$8000 0041a140 f groups.obj - 0001:00015440 _$$8000 00416440 f fniwin.obj - 0001:000158e0 _$$1000 004168e0 f fniwin.obj - 0001:00016df0 _$$9000 00417df0 f fniwin.obj - 0001:00016e10 _$$a000 00417e10 f fniwin.obj - 0001:00016e30 _$$b000 00417e30 f fniwin.obj - 0001:00014f60 _$$1000 00415f60 f filewin.obj - 0001:00015420 _$$8000 00416420 f filewin.obj - 0001:00012040 _$$8000 00413040 f file.obj - 0001:00012500 _$$1000 00413500 f file.obj - 0001:00014930 _$$9000 00415930 f file.obj - 0001:00014950 _$$a000 00415950 f file.obj - 0001:00014970 _$$b000 00415970 f file.obj - 0001:00011240 _$$1000 00412240 f crf.obj - 0001:00011fe0 _$$8000 00412fe0 f crf.obj - 0001:00009950 _$$1000 0040a950 f codkauai.obj - 0001:00010f60 _$$8000 00411f60 f codkauai.obj - 0001:00008a50 _$$1000 00409a50 f codec.obj - 0001:00009420 _$$8000 0040a420 f codec.obj - 0001:00006150 _$$1000 00407150 f chunk.obj - 0001:00008430 _$$8000 00409430 f chunk.obj - 0001:00005fc0 _$$1000 00406fc0 f memwin.obj - 0001:00006090 _$$8000 00407090 f memwin.obj - 0001:00004480 _$$1000 00405480 f utilstr.obj - 0001:00005ab0 _$$8000 00406ab0 f utilstr.obj - 0001:00003b90 _$$1000 00404b90 f utilrnd.obj - 0001:00004070 _$$8000 00405070 f utilrnd.obj - 0001:00002c60 _$$1000 00403c60 f utilmem.obj - 0001:000036c0 _$$8000 004046c0 f utilmem.obj - 0001:00002160 _$$1000 00403160 f utilint.obj - 0001:00002710 _$$8000 00403710 f utilint.obj - 0001:00001920 _$$8000 00402920 f utilerro.obj - 0001:00001e60 _$$1000 00402e60 f utilerro.obj - 0001:00002090 _$$9000 00403090 f utilerro.obj - 0001:000020b0 _$$a000 004030b0 f utilerro.obj - 0001:000020d0 _$$b000 004030d0 f utilerro.obj - 0001:00001690 _$$1000 00402690 f utilcopy.obj - 0001:00001900 _$$8000 00402900 f utilcopy.obj - 0001:00000ae0 _$$1000 00401ae0 f base.obj - 0001:00001460 _$$8000 00402460 f base.obj - 0001:000004d0 _$$8000 004014d0 f util.obj - 0001:000004f0 _$$1000 004014f0 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:0001de48 __before 0041ee48 f LIBC:heapadd.obj - 0001:0001d913 _flsall 0041e913 f LIBC:fflush.obj - 0001:0001d5ff __heap_new_region 0041e5ff f LIBC:heapgrow.obj - 0001:0001d35d __heap_grow_emptylist 0041e35d f LIBC:heapinit.obj - 0001:0001d011 _getSystemCP 0041e011 f LIBC:mbctype.obj - 0001:0001d04c _CPtoLCID 0041e04c f LIBC:mbctype.obj - 0001:0001d08b _setSBCS 0041e08b f LIBC:mbctype.obj - 0001:0001ce47 _parse_cmdline 0041de47 f LIBC:stdargv.obj - 0001:0001ccb9 _xcptlookup 0041dcb9 f LIBC:winxfltr.obj - 0001:0001cabc __unwind_handler 0041dabc f LIBC:exsup.obj - 0001:0001c9be _write_char 0041d9be f LIBC:output.obj - 0001:0001c9fe _write_multi_char 0041d9fe f LIBC:output.obj - 0001:0001ca2f _write_string 0041da2f f LIBC:output.obj - 0001:0001ca66 _get_int_arg 0041da66 f LIBC:output.obj - 0001:0001ca75 _get_int64_arg 0041da75 f LIBC:output.obj - 0001:0001ca89 _get_short_arg 0041da89 f LIBC:output.obj - 0001:0001bf28 __heap_expand_block 0041cf28 f LIBC:realloc.obj - 0001:0001bd93 _doexit 0041cd93 f LIBC:crt0dat.obj - 0001:0001be12 __initterm 0041ce12 f LIBC:crt0dat.obj - -FIXUPS: 1cc0c 10 ffffffa3 14 c ffffffcf ffffff46 1e 12 44 13 13 43f f e -FIXUPS: 1cff6 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 12 11 11 5d 12 fffffe8a -FIXUPS: 1cc90 5 10 10 5 1c 9 15 f 1f 9 fffffec9 6cf 9b 1d 6d 10 6b 4f 24 -FIXUPS: 1d541 6a 30 14 16 11 ab 17 ff 96 14 1c 2d 16 1d 1b cb 3a 37 fffff662 -FIXUPS: 1d0fb 46 29 fffffe36 164d 75 d 96 d c 32 fffffe42 ffffffae ffffff6f -FIXUPS: 1e4c7 ffffff70 d 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 -FIXUPS: 1de12 19 fffffef2 15 2a 11 fffffdf5 ffffff4e fffff7c7 1e91 26 ffffff9d -FIXUPS: 1f0aa fffffead f3 fffffe7e fffffd4f 10 10 18 a1 3e 24 d 41 34 fffffd88 -FIXUPS: 1eb69 2b 1a 1f fffffc99 b 21 42 37 2f 19 2b e fffffc55 fffe2c46 -FIXUPS: 1259 13 3d 2c 24 e 13 1f 13 1d e 13 1f e 32 e 13 1f 30 30 1df88 -FIXUPS: 1f39d c d 20 d ffffff40 b b 1b fffffe05 fffe3440 ffffef3e 42 e -FIXUPS: 1549 fffffad9 27 f 21 33 a c c a 14 a 26 a a a a a a 24 1b 5 5 -FIXUPS: 11b9 13 1d 13 1d ee0 5 1b e 42 26 d 1d 23 1c 36 d 4f d 7b d 4a -FIXUPS: 2389 12 1b 2d d 20 29 d 21 22 e 13 1f 35 6b fffff83d 33 10 19 25 -FIXUPS: 1e32 13 10 2b d 31 d 34 d 2c d 13 2e d 20 35 d a 18 b b 19 35 5 -FIXUPS: 2097 b 38 fffff8b1 42 3a 1e 9 90 5 66 c c 14 1f 39 1c 11 13 32 -FIXUPS: 1c2c 32 d 10 27 d a 9 e 5 24 23 48 d 1e af0 d 7b ffffec8b 27 f -FIXUPS: 15e9 30 30 70 30 29 14 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f -FIXUPS: 1947 5 a d 16f6 10 10 23 20 1b 5 5 18 16 8 12 e 13 fffff4a8 d 53 -FIXUPS: 265f 5a 13 d d 53 13 d d 6c d d 36 d 43 2b6 1a 6b 20 2c 23 16 b -FIXUPS: 2c64 10 37 1d 31 23 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 2f 26 -FIXUPS: 2f4c 16 90 548 2f 11 4f 11 4f 11 7f e 14 5 37 22 e 13 1d fffff1b5 -FIXUPS: 2962 27 f 21 30 e b 37 29 16 15 15 14 e 5b 1a5c d f 22 37 d 10 -FIXUPS: 4619 33 d 20 18 b 2b ffffeadd d 9e d 4a d 29 d 20 13 24 58 b1 13 -FIXUPS: 3467 a 10 a8 cb4 1f d f 33 d 3b d 2f d 4b d 1e 27 1f b 2a d 1a -FIXUPS: 4421 d 14 1b 2a d 2b d 20 2a d 17 15 fffff8da 3f 2d 1e 14 42 d -FIXUPS: 3f2d 55 6 28 6 30 6 19 f 2b a 12 f 2f e 1e c d 11 14 3a a 49 d -FIXUPS: 41c0 fffff820 24 d 42 2d 1b 14 65 19 3b 9d a 9 f 12 50 e 10 10 -FIXUPS: 3cc6 d c 27 d 2b 36 d 29 d 35 d 2a 1139 1b 32 23 47 1f 1b 2a 22 -FIXUPS: 50a7 13 1f e 13 ffffe69f 17 3c 1d 10 58 28 10 31 1f 40 e 10 27 -FIXUPS: 398b 17 1c 18 1122 2c d 28 10 8 c 3c 23 1b c 3e d 11 44 26 23 2d -FIXUPS: 4d26 11 26 5c 23 1b 46 d 3c d 14 27 2f 3c 1b7e ffffdc4b 27 f 21 -FIXUPS: 47a2 27 f 21 30 e 18 e 26 36 23 1b 58 d 2d 12 4e 30 2c 17 d 20 -FIXUPS: 4a99 19 c 10 1d 1afd d 24 14 1a 2b d 51 d 2c e 4a d 16 25 13 d -FIXUPS: 67d9 d 27 44 1d 17 42 52 13 d a0 2e d 75 c fffff2b7 14 15 14e d -FIXUPS: 5f68 d6 2e d 71 d 55 6d 23 16 d 22 d 14 11e 25 25 75 6a 23 2d 23 -FIXUPS: 6529 23 2d 23 3d fffff1a3 1b d 8 1b 32 23 1b d 14 9 6 22 23 19 -FIXUPS: 58cd 10 32 14 d d 1c 29 1b d b 2cd a 75 23 d d fffff5ab 23 16 c -FIXUPS: 5349 23 1b 8 12 29 d 53 36 49 23 1b d f 45 36 2b 23 1b d f 13 7d -FIXUPS: 56a0 3a 15 36 34 172c b 28 d 34 25 d 15 2d d 1d 12 4c b 6 63 d -FIXUPS: 7097 ffffe082 23 32 20 d d 11 1d 33 23 1b d 30 3c 1819 e 10 29 -FIXUPS: 6b81 38 e b 10 14 25 d 4d 2c 23 25 e 1c d 2e d 17 27 c b 2b 1e -FIXUPS: 6e05 b 2e d 2e 20a5 23 d 76 22 33 23 16 b b 36 6d 42 46 ab 1e 25 -FIXUPS: 933a 1f 1f 5a 30 35 22 12 1e 20 13 1d e 13 1f fffff5fe 22 1d 10 -FIXUPS: 8b7f 20 d 3a d 26 e 14 31 2d 2c 45 1f 10 10 10 35 23 d 32 35 d -FIXUPS: 8e59 23 13 18 22 23 fffff7f3 a 15 1b 1f 21 1f 21 23 16 2d 23 d -FIXUPS: 883f 56 a4 1b 25 23 1f 20 d 1d 34 23 16 10 14 20 d 1f 1d fffff8a4 -FIXUPS: 83ba 15 1f d 15 1c 17 d 15 12 14 20 d f 18 30 46 1d 1e 15 33 d -FIXUPS: 85fa 1c d 1e 18 30 d 22 15 fffff86d d 53 d f 23 11 1f 17 19 30 -FIXUPS: 80e9 30 11 16 39 30 1b 25 11 1b 2c 21 17 1e 17 2a 20 d 14 30 46 -FIXUPS: 7a88 2f d 32 d 2f 32 30 d 3b d 43 d 2f 41 34 d 4a d 46 d 1a 20 -FIXUPS: 7ddb 23 16 23 2d 20 d 5c 2d fffff7a1 a 20 d 2f 30 d 1a 18 6 8 10 -FIXUPS: 77ca 2c d 31 d 1d 6 8 4b d 50 13 17 22 d 35 d 6f d 50 fffff78e -FIXUPS: 7222 a7 d 38 23 d 38 23 d 48 23 d 3e d 2f d 48 23 d 48 23 d 2f -FIXUPS: 75d1 38 22 15 32 12 f 18 29c5 29 16 d 10 d b cc f e f f f f f f -FIXUPS: a26d 24 33 ac d aa 22 e 13 ffffcc68 27 f 21 50 30 30 2ab5 1a f -FIXUPS: 9cd9 24 6c 23 16 22 d 60 29 4f 23 16 b b e 30 2c 1a 14 24 b 13 -FIXUPS: 9fe2 21 d e 1a 1d d fffff737 2c 50 29 60 1b 10 22 d 32 38 27 10 -FIXUPS: 99a1 18 1d 29 12 22 46 23 32 23 d 1b 70 23 4d 23 32 23 d 5ac2 59 -FIXUPS: f7bc 1b d 10 d b 1a 27 d 58 d 3e d 2629 d 27 ffff760b 27 f 21 49 -FIXUPS: 9639 f 21 30 e 30 2a d 5c 5b09 d 1d 94 d 2a 1e 1a 2b 26 1d d 39 -FIXUPS: f490 49 23 ab d 2d 22 d 11 22 1f 15 10 1d d 2f e 1f 17 ffffbb8e -FIXUPS: b2bf 3e d 3b41 d 21 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 c -FIXUPS: f0a0 d 68 d 44 7a d 50 ffffbc0d 2e 27 c2 d 2d 22 d 15 1e 1f 15 -FIXUPS: b041 1d d 2f e 1f 17 1c 3f 30 30 23 1b d 10 d b 1a 27 d fffff6d7 -FIXUPS: a979 23 1b d 10 d b 2e 3d a 2b a 1c 1b a 90 10 c 1d d 50 d 44 7a -FIXUPS: acd5 50 36 d 1d 94 d 817d 13 13 1e 22 e 13 ffff7478 27 f 21 30 -FIXUPS: a54c 1b d 10 d b 38 21 2b 21 48 13 4d 28 b6 d b5 32 d 47 8123 20 -FIXUPS: 12a5f 1a 20 d 1d 22 54 23 32 23 d 2c d 10 1f 15 57 23 d 129 7e -FIXUPS: 12e94 25 13 2d 23 d 32 23 d fffff5eb 14 1f 23 56 23 d 2f 58 23 -FIXUPS: 12759 30 23 32 23 d 2c d 3b d 1a 20 d 1d 20 36 23 32 23 d 2c d -FIXUPS: 12123 3f 17 23 32 20 d 13 1a 41 23 20 d 20 23 20 d 20 13 40 d 13 -FIXUPS: 123d9 10 8 36 22 23 39 d 94 23 32c3 16 18 2f d 34 d 22 10 8 c 1f -FIXUPS: 1595c 1b 5 5 18 e 13 1f e 13 ffffc5a8 27 f 21 30 e 29 49 2f 3e -FIXUPS: 15411 28 23 3e 22 11 1d 20 2a 19 16 11 19 21 d 1b 25 28 2d 29 50 -FIXUPS: 156d9 41 23 d 2a d 31 d 43 d 11 fffff89b d 31 23 14 9 32 d 1e 6 -FIXUPS: 151bc d 2c 22 15 6 33 d 27 23 32 23 d 34 d 16 24 d 28 25 6 9 fffff8d7 -FIXUPS: 14cf4 11 2d 47 1b 25 23 18 2f d 1e 6 20 d 30 26 11 33 d 31 23 18 -FIXUPS: 14fc3 d 1e 6 20 d 30 22 15 fffff746 23 d d 6c 32 23 16 b 8 2a 46 -FIXUPS: 14989 23 44 27 22 23 3a d 28 48 23 19 20 1d d 22 2e 2b 65 23 fffff734 -FIXUPS: 143dd 1d 9 c 2a 31 23 d 18 13 a d 1c 28 19 e 26 32 23 d 79 31 e -FIXUPS: 146ad 46 26 2c 13 d 14 23 fffff780 1f 20 d 3c 25 29 32 23 d 3c -FIXUPS: 1409d 58 a9 37 48 2c 23 16 14 20 d 27 22 9 e 13 23 23 14 9 17 fffff7cc -FIXUPS: 13b92 2e 19 d 15 2a 23 d f f 26 13 b 2f 23 d 10 a 15 2d 24 d 2f -FIXUPS: 13ded 3c 23 1f 20 d 3c 25 fffff82d 16 19 8 c 22 39 19 11 2b 2d -FIXUPS: 13869 d f 15 2a 23 d 10 f e 1e 2a 23 23 24 81 25 23 30 d 80 fffff777 -FIXUPS: 132e0 b 8 16 2d 20 d 24 d e 1b 33 1d 31 77 20 d 47 2d 20 d e 22 -FIXUPS: 135c0 21 1d 31 77 20 d 26 2bbb 26 28 d 3a c a6 2c ffffcc25 36 27 -FIXUPS: 130b8 21 49 27 f 21 30 e b b 33 20 d 14 16 d a 2b 19 a a 2a75 6d -FIXUPS: 15dc8 b 26 23 16 3c 1b 23 40 9d 23 16 35 7e 24 23 1b 10 d 26 35 -FIXUPS: 16157 12 3e d 7c 29 23 1b 10 1a92 18 28 e 9 9 20 12 9 9 1f 20 1b -FIXUPS: 17e3c 5 18 e 13 ffffdb9f 80 23 1d 5e d 69 6 51 6 98 37 23 16 1bbe -FIXUPS: 17904 3a 2f 1c 12 1e 26 32 16 e 64 d 23 1c 34 1d d d 20 29 14 1c -FIXUPS: 17bd7 27 1d 82 2d 2f e 9 9 fffff763 d 13 20 d 2b 38 16 20 d 3f -FIXUPS: 175bb 4b d 2a d 2c d 48 d 21 23 16 e b9 23 16 1d d 10 d 46 fffff6ba -FIXUPS: 16f9c 32 23 d 10 e 64 d 12 1a 2c 16 34 14 1e 1f 29 d 1d 8 11e 26 -FIXUPS: 17354 23 d 19 1c 16 32 23 d fffff71e 39 23 d 15 11 1b 23 2d 26 -FIXUPS: 16ca1 16 12 57 d 11 38 32 1d 44 2c 3d d 10 10 2a d 10 2f 17 18 -FIXUPS: 16f59 fffff6de d 1a e 8e 59 d 1a 1b 11 39 2f 25 b 1c 13 49 53 2c -FIXUPS: 1694b b b 16 17 c 6c 15 23 13 22 46 29 3609 2a d 25 22 e 13 1f -FIXUPS: 1a1b7 13 1f e 13 1f 13 1d 13 ffffc1e0 36 27 f 21 30 1b 20 25 e -FIXUPS: 16582 11 26 29 32 3747 1e 12 13 13 8 24 d d 10 20 d 56 d 18 40 -FIXUPS: 19f2c d 27 d 25 12 2c d e 2d d 37 d 43 d 20 fffff94f 10 c 3e c -FIXUPS: 19aa9 23 1e 12 2f d 15 c 26 17 6 1d 23 1d 2f d 11 23 23 1d 2f d -FIXUPS: 19cf7 15 1f 13 17 fffff956 6 29 9 23 11 9 6 2b 38 23 1b 33 d 28 -FIXUPS: 19838 21 12 1e 12 1e 30 e 32 30 11 9 26 23 1e 12 2f fffff92b 14 -FIXUPS: 19363 6 22 2e 23 16 2a 22 2b 23 1b 2c 2a 19 9 27 9 6 24 23 1b 3c -FIXUPS: 19600 1c b 19 22 9 23 14 fffff97c 1a 13 1e 23 1e 10 10 a 16 13 -FIXUPS: 19110 b 19 1b 2c 1b 26 2d 23 19 24 23 1d 16 2c 9 19 15 b 13 9 fffff8e5 -FIXUPS: 18c1b 1e 13 10 11 19 38 57 23 d 24 12 26 28 23 1d 30 23 1e 1f 23 -FIXUPS: 18eee 23 d 39 d e 3d 28 d 2d fffff8a6 22 e 19 3a 2f 23 1e 24 9 -FIXUPS: 189f9 23 1d 10 17 6 23 23 1d 10 13 a 1d 26 e c 46 12 13 13 13 a -FIXUPS: 1857b d 13 13 1a 20 d 20 2f 9 f 34 9 f 31 17 13 13 36 d 3b d 1e -FIXUPS: 187e3 d 1e 24 d 2a 23 13 c fffff82a 14 23 34 d 25 32 1f 32 39 3f -FIXUPS: 18299 50 11 10 b 12 29 17 25 30 45 d 2c 3a 35 14 22 2a 2d 23 d -FIXUPS: 1bc12 10 19 19 13 13 13 16 16 16 e e 1e 19 27 ffffe55e ffffdc0b -FIXUPS: 17ed9 f 21 49 27 f 21 49 27 f 21 30 2c 17 c 3450 26 2c cd 5c 35 -FIXUPS: 1b74b 2c 64 6c 14 1c 29 28 1a 7f 1f 1f 52 d6 5 3d e 13 1f e 32 -FIXUPS: 1bb9d 6 26 12 27 fffff514 23 d 10 b b b b 8 38 1c 1f 63 50 2f 55 -FIXUPS: 1b347 11 9 f 1c 49 3f 16 2a 1d d 15 d 9 d 3b fffff8f2 26 23 32 -FIXUPS: 1ae81 d d 29 10 24 d 1f 35 e a c 8 24 d 6 24 d 14 29 1e 2c d 28 -FIXUPS: 1b0b9 8 c 1c fffff806 17 13 2f 4f b0 78 21 a f d 14 20 d 19 8 3f -FIXUPS: 1abf9 2d 23 d d 26 23 43 a 15 2b 20 11 3f 23 fffff630 d a b e 15 -FIXUPS: 1a4d9 16 10 d a b 8 54 d 36 6 10 17 31 55 10 1b4 39 1c 8 c 10 6 -FIXUPS: 1a8bc a 6 1fc7 27 21 30 1a 1a 28 5 1d 39 10 10 19 19 13 13 13 16 -FIXUPS: 1ca79 16 e e ffffd837 27 f 21 30 2c 17 d 20 13 1ff1 2e 1c 1c 1b -FIXUPS: 1c471 10 25 3b 6c 15 b 23 4a 32 15 b 3d e f 11 1d 39 17 66 24 16 -FIXUPS: 1c7c9 16 24 24 20 fffff552 e b b 4c 16 87 4b 9d 1b 43 11 24 14 -FIXUPS: 1c079 14 ce 23 17 1b 2c 2b 4e 28 d 26 1b 26 46 14 3b 13 diff --git a/kauai/OBJ/WIND/UT.MAP b/kauai/OBJ/WIND/UT.MAP deleted file mode 100644 index 1b146379..00000000 --- a/kauai/OBJ/WIND/UT.MAP +++ /dev/null @@ -1,795 +0,0 @@ - ut - - Timestamp is 3070bafb (Mon Oct 02 21:24:27 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 00014470H .text CODE - 0002:00000000 00001a70H .bss DATA - 0003:00000000 000002b1H .rdata DATA - 0004:00000000 00001b08H .data DATA - 0004:00001b08 00000004H .CRT$XCA DATA - 0004:00001b0c 00000054H .CRT$XCU DATA - 0004:00001b60 00000004H .CRT$XCZ DATA - 0004:00001b64 00000004H .CRT$XIA DATA - 0004:00001b68 00000004H .CRT$XIC DATA - 0004:00001b6c 00000004H .CRT$XIZ DATA - 0004:00001b70 00000004H .CRT$XPA DATA - 0004:00001b74 00000004H .CRT$XPX DATA - 0004:00001b78 00000004H .CRT$XPZ DATA - 0004:00001b7c 00000004H .CRT$XTA DATA - 0004:00001b80 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000a8H .idata$4 DATA - 0005:0000010c 000000a8H .idata$5 DATA - 0005:000001b4 000002beH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00000420H .debug$F DATA - 0007:00000720 00000000H .debug$G DATA - 0007:00000720 0000002fH .debug$H DATA - 0007:fffe1000 00000000H .debug$P DATA - 0007:fffe1000 00000000H .debug$S DATA - 0007:fffe1000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000040 ?FIs@USAC@@UAEHJ@Z 00401040 f utilglob.obj - 0001:00000070 ?Cls@USAC@@UAEJXZ 00401070 f utilglob.obj - 0001:000001b0 ??1RND@@UAE@XZ 004011b0 f utilglob.obj - 0001:000001e0 ??1KCDC@@UAE@XZ 004011e0 f utilglob.obj - 0001:00000210 ??0KCDC@@QAE@XZ 00401210 f utilglob.obj - 0001:00000250 ??1USAC@@UAE@XZ 00401250 f utilglob.obj - 0001:000002a0 ??1BASE@@UAE@XZ 004012a0 f utilglob.obj - 0001:000002f0 ??_EBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:000002f0 ??_GBASE@@UAEPAXI@Z 004012f0 f utilglob.obj - 0001:00000330 ??1CODC@@UAE@XZ 00401330 f utilglob.obj - 0001:00000360 ??_EKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:00000360 ??_GKCDC@@UAEPAXI@Z 00401360 f utilglob.obj - 0001:000003a0 ??0CODC@@QAE@XZ 004013a0 f utilglob.obj - 0001:000003e0 ??_GCODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:000003e0 ??_ECODC@@UAEPAXI@Z 004013e0 f utilglob.obj - 0001:00000420 ??0MUTX@@QAE@XZ 00401420 f utilglob.obj - 0001:00000450 ??1MUTX@@QAE@XZ 00401450 f utilglob.obj - 0001:00000480 ?FCanDo@KCDC@@UAEHHJ@Z 00401480 f utilglob.obj - 0001:00000510 ?PfilNext@FIL@@QAEPAV1@XZ 00401510 f util.obj - 0001:00000540 ?PbllNext@BLL@@QAEPAV1@XZ 00401540 f util.obj - 0001:00000570 ?Cls@BASE@@UAEJXZ 00401570 f base.obj - 0001:000005a0 ?FIs@BASE@@UAEHJ@Z 004015a0 f base.obj - 0001:000005e0 ?FWouldBe@BASE@@SGHJ@Z 004015e0 f base.obj - 0001:00000610 ??0BASE@@QAE@XZ 00401610 f base.obj - 0001:000006f0 ?_PbaseFromDoi@@YGPAVBASE@@PAUDOI@@@Z 004016f0 f base.obj - 0001:00000710 ?_Enter@@YGXXZ 00401710 f base.obj - 0001:00000730 ?_Leave@@YGXXZ 00401730 f base.obj - 0001:00000750 ?AddRef@BASE@@UAEXXZ 00401750 f base.obj - 0001:000007e0 ?Release@BASE@@UAEXXZ 004017e0 f base.obj - 0001:00000890 ??2BASE@@SGPAXIPADJ@Z 00401890 f base.obj - 0001:00000a60 ?Debugger@@YGXXZ 00401a60 f base.obj - 0001:00000a80 ??3BASE@@SGXPAX@Z 00401a80 f base.obj - 0001:00000b00 ?_PdoiFromBase@@YGPAUDOI@@PAX@Z 00401b00 f base.obj - 0001:00000b20 ?AssertValid@BASE@@QAEXK@Z 00401b20 f base.obj - 0001:00000c50 ?MarkMemStub@BASE@@QAEXXZ 00401c50 f base.obj - 0001:00000d30 ?MarkMem@BASE@@UAEXXZ 00401d30 f base.obj - 0001:00000d80 ?_AssertDoi@@YGXPAUDOI@@H@Z 00401d80 f base.obj - 0001:00000f70 ?_LinkDoi@@YGXPAUDOI@@PAPAU1@@Z 00401f70 f base.obj - 0001:00000ff0 ?_UnlinkDoi@@YGXPAUDOI@@@Z 00401ff0 f base.obj - 0001:00001070 ?AssertNilOrPvCb@@YGXPAXJ@Z 00402070 f base.obj - 0001:000010a0 ?AssertValid@BLL@@QAEXK@Z 004020a0 f base.obj - 0001:000011a0 ??0STN@@QAE@XZ 004021a0 f base.obj - 0001:00001200 ?PvAddBv@@YGPAXPAXJ@Z 00402200 f base.obj - 0001:00001220 ?PvSubBv@@YGPAXPAXJ@Z 00402220 f base.obj - 0001:00001240 ?Enter@MUTX@@QAEXXZ 00402240 f base.obj - 0001:00001270 ?Leave@MUTX@@QAEXXZ 00402270 f base.obj - 0001:000012a0 ?LwThreadCur@@YGJXZ 004022a0 f base.obj - 0001:000012c0 ?FillPb@@YGXPAXJE@Z 004022c0 f utilcopy.obj - 0001:00001320 ?ClearPb@@YGXPAXJ@Z 00402320 f utilcopy.obj - 0001:00001390 ?FEqualRgb@@YGHPAX0J@Z 00402390 f utilcopy.obj - 0001:00001410 ?CbEqualRgb@@YGJPAX0J@Z 00402410 f utilcopy.obj - 0001:000014a0 ?CopyPb@@YGXPAX0J@Z 004024a0 f utilcopy.obj - 0001:00001540 ?BltPb@@YGXPAX0J@Z 00402540 f utilcopy.obj - 0001:00001620 ?FWouldBe@ERS@@SGHJ@Z 00402620 f utilerro.obj - 0001:00001660 ?FIs@ERS@@UAEHJ@Z 00402660 f utilerro.obj - 0001:00001690 ?Cls@ERS@@UAEJXZ 00402690 f utilerro.obj - 0001:000016c0 ??0ERS@@QAE@XZ 004026c0 f utilerro.obj - 0001:00001710 ?Push@ERS@@UAEXJPADJ@Z 00402710 f utilerro.obj - 0001:000018d0 ?FPop@ERS@@UAEHPAJ@Z 004028d0 f utilerro.obj - 0001:000019d0 ?Clear@ERS@@UAEXXZ 004029d0 f utilerro.obj - 0001:00001a40 ?Cerc@ERS@@UAEJXZ 00402a40 f utilerro.obj - 0001:00001a90 ?FIn@ERS@@UAEHJ@Z 00402a90 f utilerro.obj - 0001:00001b60 ?ErcGet@ERS@@UAEJJ@Z 00402b60 f utilerro.obj - 0001:00001c00 ?Flush@ERS@@UAEXJ@Z 00402c00 f utilerro.obj - 0001:00001cf0 ?FIn@@YGHJJJ@Z 00402cf0 f utilerro.obj - 0001:00001d30 ?AssertValid@ERS@@QAEXK@Z 00402d30 f utilerro.obj - 0001:00001dd0 ??1ERS@@UAE@XZ 00402dd0 f utilerro.obj - 0001:00001e00 ??_EERS@@UAEPAXI@Z 00402e00 f utilerro.obj - 0001:00001e00 ??_GERS@@UAEPAXI@Z 00402e00 f utilerro.obj - 0001:00001e40 ?LwDivAway@@YGJJJ@Z 00402e40 f utilint.obj - 0001:00001ef0 ?LwMul@@YGJJJ@Z 00402ef0 f utilint.obj - 0001:00001f60 ?AssertIn@@YGXJJJ@Z 00402f60 f utilint.obj - 0001:00001fe0 ?SwapBytesBom@@YGXPAXK@Z 00402fe0 f utilint.obj - 0001:000020c0 ?LwMin@@YGJJJ@Z 004030c0 f utilint.obj - 0001:000020f0 ?LwMulDivMod@@YGJJJJPAJ@Z 004030f0 f utilint.obj - 0001:00002150 ?SwapBytesRglw@@YGXPAXJ@Z 00403150 f utilint.obj - 0001:00002200 ?LwMax@@YGJJJ@Z 00403200 f utilint.obj - 0001:00002230 ??0USAC@@QAE@XZ 00403230 f utilint.obj - 0001:000022b0 ??_EUSAC@@UAEPAXI@Z 004032b0 f utilint.obj - 0001:000022b0 ??_GUSAC@@UAEPAXI@Z 004032b0 f utilint.obj - 0001:000022f0 ?TsCurrentSystem@@YGKXZ 004032f0 f utilint.obj - 0001:00002310 ?FFail@DMAGL@@QAEHXZ 00403310 f utilmem.obj - 0001:00002380 ?Allocate@DMAGL@@QAEXJ@Z 00403380 f utilmem.obj - 0001:00002410 ?Resize@DMAGL@@QAEXJ@Z 00403410 f utilmem.obj - 0001:00002470 ?Free@DMAGL@@QAEXJ@Z 00403470 f utilmem.obj - 0001:000024b0 ?FAllocPvDebug@@YGHPAPAXJKJPADJPAUDMAGL@@@Z 004034b0 f utilmem.obj - 0001:00002800 ?_FResizePpvDebug@@YGHPAPAXJJKJPAUDMAGL@@@Z 00403800 f utilmem.obj - 0001:00002c10 ?FreePpvDebug@@YGXPAPAXPAUDMAGL@@@Z 00403c10 f utilmem.obj - 0001:00002cb0 ?_LinkMbh@@YGXPAUMBH@@@Z 00403cb0 f utilmem.obj - 0001:00002d50 ?_UnlinkMbh@@YGXPAUMBH@@0@Z 00403d50 f utilmem.obj - 0001:00002ef0 ?_AssertMbh@@YGXPAUMBH@@@Z 00403ef0 f utilmem.obj - 0001:00003130 ?AssertPvAlloced@@YGXPAXJ@Z 00404130 f utilmem.obj - 0001:000031f0 ?MarkPv@@YGXPAX@Z 004041f0 f utilmem.obj - 0001:00003260 ?FWouldBe@RND@@SGHJ@Z 00404260 f utilrnd.obj - 0001:000032a0 ?FIs@RND@@UAEHJ@Z 004042a0 f utilrnd.obj - 0001:000032d0 ?Cls@RND@@UAEJXZ 004042d0 f utilrnd.obj - 0001:00003300 ?FWouldBe@SFL@@SGHJ@Z 00404300 f utilrnd.obj - 0001:00003340 ?FIs@SFL@@UAEHJ@Z 00404340 f utilrnd.obj - 0001:00003370 ?Cls@SFL@@UAEJXZ 00404370 f utilrnd.obj - 0001:000033a0 ??0RND@@QAE@K@Z 004043a0 f utilrnd.obj - 0001:00003430 ?LwNext@RND@@UAEJJ@Z 00404430 f utilrnd.obj - 0001:00003500 ??0SFL@@QAE@K@Z 00404500 f utilrnd.obj - 0001:00003590 ??1SFL@@UAE@XZ 00404590 f utilrnd.obj - 0001:00003600 ?AssertValid@SFL@@QAEXK@Z 00404600 f utilrnd.obj - 0001:000036d0 ?MarkMem@SFL@@UAEXXZ 004046d0 f utilrnd.obj - 0001:00003730 ?Shuffle@SFL@@QAEXJ@Z 00404730 f utilrnd.obj - 0001:00003840 ?_ShuffleCore@SFL@@IAEXXZ 00404840 f utilrnd.obj - 0001:00003930 ?_FEnsureHq@SFL@@IAEHJ@Z 00404930 f utilrnd.obj - 0001:00003ab0 ?LwNext@SFL@@UAEJJ@Z 00404ab0 f utilrnd.obj - 0001:00003c10 ??_GRND@@UAEPAXI@Z 00404c10 f utilrnd.obj - 0001:00003c10 ??_ERND@@UAEPAXI@Z 00404c10 f utilrnd.obj - 0001:00003c50 ??_GSFL@@UAEPAXI@Z 00404c50 f utilrnd.obj - 0001:00003c50 ??_ESFL@@UAEPAXI@Z 00404c50 f utilrnd.obj - 0001:00003c90 ?SetRgch@STN@@QAEXPADJ@Z 00404c90 f utilstr.obj - 0001:00003d70 ?SetSzs@STN@@QAEXPAD@Z 00404d70 f utilstr.obj - 0001:00003df0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00404df0 f utilstr.obj - 0001:00003e80 ?GetSzs@STN@@QAEXPAD@Z 00404e80 f utilstr.obj - 0001:00003ef0 ?FFormatSz@STN@@QAAHPADZZ 00404ef0 f utilstr.obj - 0001:00003f50 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00404f50 f utilstr.obj - 0001:000047b0 ?FGetLw@STN@@QAEHPAJJ@Z 004057b0 f utilstr.obj - 0001:00004a80 ?Prgch@STN@@QAEPADXZ 00405a80 f utilstr.obj - 0001:00004ad0 ?Psz@STN@@QAEPADXZ 00405ad0 f utilstr.obj - 0001:00004b20 ?Cch@STN@@QAEJXZ 00405b20 f utilstr.obj - 0001:00004b70 ?SetNil@STN@@QAEXXZ 00405b70 f utilstr.obj - 0001:00004bd0 ?SetSz@STN@@QAEXPAD@Z 00405bd0 f utilstr.obj - 0001:00004c10 ?AssertValid@STN@@QAEXK@Z 00405c10 f utilstr.obj - 0001:00004d00 ?CchSz@@YGJPAD@Z 00405d00 f utilstr.obj - 0001:00004da0 ?FEqualUserRgch@@YGHPADJ0JK@Z 00405da0 f utilstr.obj - 0001:00004f10 ?AssertOsk@@YGXF@Z 00405f10 f utilstr.obj - 0001:00004fc0 ?AssertSz@@YGXPAD@Z 00405fc0 f utilstr.obj - 0001:00005010 ?FAllocHqDebug@@YGHPAPAXJKJPADJ@Z 00406010 f memwin.obj - 0001:000050f0 ?FResizePhq@@YGHPAPAXJKJ@Z 004060f0 f memwin.obj - 0001:00005220 ?FreePhq@@YGXPAPAX@Z 00406220 f memwin.obj - 0001:000052d0 ?CbOfHq@@YGJPAX@Z 004062d0 f memwin.obj - 0001:00005310 ?QvFromHq@@YGPAXPAX@Z 00406310 f memwin.obj - 0001:00005330 ?PvLockHq@@YGPAXPAX@Z 00406330 f memwin.obj - 0001:000053b0 ?UnlockHq@@YGXPAX@Z 004063b0 f memwin.obj - 0001:00005430 ?AssertHq@@YGXPAX@Z 00406430 f memwin.obj - 0001:00005520 ?MarkHq@@YGXPAX@Z 00406520 f memwin.obj - 0001:00005560 ?AssertPvCb@@YGXPAXJ@Z 00406560 f memwin.obj - 0001:000055f0 ?FWouldBe@GRPB@@SGHJ@Z 004065f0 f groups.obj - 0001:00005630 ?FIs@GRPB@@UAEHJ@Z 00406630 f groups.obj - 0001:00005660 ?Cls@GRPB@@UAEJXZ 00406660 f groups.obj - 0001:00005690 ?FWouldBe@GLB@@SGHJ@Z 00406690 f groups.obj - 0001:000056d0 ?FIs@GLB@@UAEHJ@Z 004066d0 f groups.obj - 0001:00005700 ?Cls@GLB@@UAEJXZ 00406700 f groups.obj - 0001:00005730 ?FWouldBe@GL@@SGHJ@Z 00406730 f groups.obj - 0001:00005770 ?FIs@GL@@UAEHJ@Z 00406770 f groups.obj - 0001:000057a0 ?Cls@GL@@UAEJXZ 004067a0 f groups.obj - 0001:000057d0 ??1GRPB@@UAE@XZ 004067d0 f groups.obj - 0001:00005840 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00406840 f groups.obj - 0001:00005a40 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00406a40 f groups.obj - 0001:00005c00 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00406c00 f groups.obj - 0001:00005c60 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00406c60 f groups.obj - 0001:00005e30 ?AssertValid@GRPB@@QAEXK@Z 00406e30 f groups.obj - 0001:00005fc0 ?MarkMem@GRPB@@UAEXXZ 00406fc0 f groups.obj - 0001:00006030 ??0GLB@@IAE@J@Z 00407030 f groups.obj - 0001:000060c0 ?QvGet@GLB@@QAEPAXJ@Z 004070c0 f groups.obj - 0001:00006150 ?Get@GLB@@QAEXJPAX@Z 00407150 f groups.obj - 0001:000061e0 ?AssertValid@GLB@@QAEXK@Z 004071e0 f groups.obj - 0001:00006280 ?PglNew@GL@@SGPAV1@JJ@Z 00407280 f groups.obj - 0001:000063b0 ??0GL@@IAE@J@Z 004073b0 f groups.obj - 0001:00006410 ?FFree@GL@@UAEHJ@Z 00407410 f groups.obj - 0001:00006480 ?CbOnFile@GL@@UAEJXZ 00407480 f groups.obj - 0001:000064e0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 004074e0 f groups.obj - 0001:000066b0 ?FInsert@GL@@QAEHJPAXJ@Z 004076b0 f groups.obj - 0001:00006830 ?Delete@GL@@UAEXJ@Z 00407830 f groups.obj - 0001:00006890 ?Delete@GL@@QAEXJJ@Z 00407890 f groups.obj - 0001:00006a00 ?FAdd@GL@@UAEHPAXPAJ@Z 00407a00 f groups.obj - 0001:00006ab0 ?FEnsureSpace@GL@@QAEHJK@Z 00407ab0 f groups.obj - 0001:00006b80 ?_Qb1@GRPB@@IAEPAEJ@Z 00407b80 f groups.obj - 0001:00006bb0 ?_Cb1@GRPB@@IAEJXZ 00407bb0 f groups.obj - 0001:00006be0 ??0GRPB@@IAE@XZ 00407be0 f groups.obj - 0001:00006c20 ?IvMac@GRPB@@QAEJXZ 00407c20 f groups.obj - 0001:00006c70 ??_EGRPB@@UAEPAXI@Z 00407c70 f groups.obj - 0001:00006c70 ??_GGRPB@@UAEPAXI@Z 00407c70 f groups.obj - 0001:00006cb0 ??_GGLB@@UAEPAXI@Z 00407cb0 f groups.obj - 0001:00006cb0 ??_EGLB@@UAEPAXI@Z 00407cb0 f groups.obj - 0001:00006cf0 ??_EGL@@UAEPAXI@Z 00407cf0 f groups.obj - 0001:00006cf0 ??_GGL@@UAEPAXI@Z 00407cf0 f groups.obj - 0001:00006d30 ??1GLB@@UAE@XZ 00407d30 f groups.obj - 0001:00006d60 ??1GL@@UAE@XZ 00407d60 f groups.obj - 0001:00006df0 ?ElError@FIL@@QAEJXZ 00407df0 f chunk.obj - 0001:00006e40 ??1FNI@@UAE@XZ 00407e40 f chunk.obj - 0001:00006e70 ?FWouldBe@CODM@@SGHJ@Z 00407e70 f codec.obj - 0001:00006eb0 ?FIs@CODM@@UAEHJ@Z 00407eb0 f codec.obj - 0001:00006ee0 ?Cls@CODM@@UAEJXZ 00407ee0 f codec.obj - 0001:00006f10 ?FWouldBe@CODC@@SGHJ@Z 00407f10 f codec.obj - 0001:00006f50 ?FIs@CODC@@UAEHJ@Z 00407f50 f codec.obj - 0001:00006f80 ?Cls@CODC@@UAEJXZ 00407f80 f codec.obj - 0001:00006fb0 ??0CODM@@QAE@PAVCODC@@J@Z 00407fb0 f codec.obj - 0001:000070b0 ??1CODM@@UAE@XZ 004080b0 f codec.obj - 0001:000071d0 ?AssertValid@CODM@@QAEXK@Z 004081d0 f codec.obj - 0001:000072a0 ?MarkMem@CODM@@UAEXXZ 004082a0 f codec.obj - 0001:00007390 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00408390 f codec.obj - 0001:000074a0 ?FCanDo@CODM@@UAEHJH@Z 004084a0 f codec.obj - 0001:00007510 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00408510 f codec.obj - 0001:00007640 ?LwFromBytes@@YGJEEEE@Z 00408640 f codec.obj - 0001:00007680 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00408680 f codec.obj - 0001:000077c0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004087c0 f codec.obj - 0001:000079b0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 004089b0 f codec.obj - 0001:00007cc0 ?B0Lw@@YGEJ@Z 00408cc0 f codec.obj - 0001:00007ce0 ?B1Lw@@YGEJ@Z 00408ce0 f codec.obj - 0001:00007d00 ?B2Lw@@YGEJ@Z 00408d00 f codec.obj - 0001:00007d20 ?B3Lw@@YGEJ@Z 00408d20 f codec.obj - 0001:00007d60 ??_ECODM@@UAEPAXI@Z 00408d60 f codec.obj - 0001:00007d60 ??_GCODM@@UAEPAXI@Z 00408d60 f codec.obj - 0001:00007da0 ?FWouldBe@KCDC@@SGHJ@Z 00408da0 f codkauai.obj - 0001:00007de0 ?FIs@KCDC@@UAEHJ@Z 00408de0 f codkauai.obj - 0001:00007e10 ?Cls@KCDC@@UAEJXZ 00408e10 f codkauai.obj - 0001:00007e40 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00408e40 f codkauai.obj - 0001:00007fa0 ?Set@BITA@@QAEXPAXJ@Z 00408fa0 f codkauai.obj - 0001:00008000 ?FWriteBits@BITA@@QAEHKJ@Z 00409000 f codkauai.obj - 0001:000081a0 ?FWriteLogEncoded@BITA@@QAEHK@Z 004091a0 f codkauai.obj - 0001:00008290 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00409290 f codkauai.obj - 0001:00008a50 ?Ibit@BITA@@QAEJXZ 00409a50 f codkauai.obj - 0001:00008a80 ?Ib@BITA@@QAEJXZ 00409a80 f codkauai.obj - 0001:00008ab0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00409ab0 f codkauai.obj - 0001:0000c790 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040d790 f codkauai.obj - 0001:0000d0b0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040e0b0 f codkauai.obj - 0001:0000f900 ?FWouldBe@BLCK@@SGHJ@Z 00410900 f file.obj - 0001:0000f940 ?FIs@BLCK@@UAEHJ@Z 00410940 f file.obj - 0001:0000f970 ?Cls@BLCK@@UAEJXZ 00410970 f file.obj - 0001:0000f9c0 ?AssertValid@FIL@@QAEXK@Z 004109c0 f file.obj - 0001:0000faf0 ?_FRangeIn@@YGHJJJ@Z 00410af0 f file.obj - 0001:0000fb50 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00410b50 f file.obj - 0001:0000fc20 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00410c20 f file.obj - 0001:0000fcf0 ?AssertValid@FLO@@QAEXK@Z 00410cf0 f file.obj - 0001:0000fdf0 ??0BLCK@@QAE@PAUFLO@@H@Z 00410df0 f file.obj - 0001:0000ff30 ??1BLCK@@UAE@XZ 00410f30 f file.obj - 0001:0000ff90 ?Free@BLCK@@QAEXXZ 00410f90 f file.obj - 0001:00010040 ?Cb@BLCK@@QAEJH@Z 00411040 f file.obj - 0001:000100d0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 004110d0 f file.obj - 0001:00010270 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00411270 f file.obj - 0001:00010410 ?AssertValid@BLCK@@QAEXK@Z 00411410 f file.obj - 0001:00010640 ?MarkMem@BLCK@@UAEXXZ 00411640 f file.obj - 0001:000106e0 ??_EBLCK@@UAEPAXI@Z 004116e0 f file.obj - 0001:000106e0 ??_GBLCK@@UAEPAXI@Z 004116e0 f file.obj - 0001:00010720 ?_HfileOpen@@YGPAXPADHK@Z 00411720 f filewin.obj - 0001:000107a0 ?_FOpen@FIL@@IAEHHK@Z 004117a0 f filewin.obj - 0001:000109e0 ?_SetFpPos@FIL@@IAEXJ@Z 004119e0 f filewin.obj - 0001:00010ae0 ?FpMac@FIL@@QAEJXZ 00411ae0 f filewin.obj - 0001:00010bf0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00411bf0 f filewin.obj - 0001:00010db0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00411db0 f filewin.obj - 0001:00010fc0 ?FWouldBe@FNI@@SGHJ@Z 00411fc0 f fniwin.obj - 0001:00011000 ?FIs@FNI@@UAEHJ@Z 00412000 f fniwin.obj - 0001:00011030 ?Cls@FNI@@UAEJXZ 00412030 f fniwin.obj - 0001:00011060 ?SetNil@FNI@@QAEXXZ 00412060 f fniwin.obj - 0001:000110c0 ??0FNI@@QAE@XZ 004120c0 f fniwin.obj - 0001:00011130 ?AssertValid@FNI@@QAEXK@Z 00412130 f fniwin.obj - 0001:000114d0 ??_GFNI@@UAEPAXI@Z 004124d0 f fniwin.obj - 0001:000114d0 ??_EFNI@@UAEPAXI@Z 004124d0 f fniwin.obj - 0001:00011510 _main 00412510 f ut.obj - 0001:00011660 ?FAssertProc@@YGHPADJ0PAXJ@Z 00412660 f ut.obj - 0001:000117b0 ?WarnProc@@YGXPADJ0@Z 004127b0 f ut.obj - 0001:00011810 ?FFindPrime@@YGHJJPAJ0@Z 00412810 f ut.obj - 0001:00011b26 _timeGetTime@0 00412b26 winmm:WINMM.dll - 0001:00011b2c __alloca_probe 00412b2c LIBC:chkstk.obj - 0001:00011b2c __chkstk 00412b2c LIBC:chkstk.obj - 0001:00011b59 __onexit 00412b59 f LIBC:onexit.obj - 0001:00011bcf _atexit 00412bcf f LIBC:onexit.obj - 0001:00011be1 ___onexitinit 00412be1 f LIBC:onexit.obj - 0001:00011c17 __purecall 00412c17 f LIBC:purevirt.obj - 0001:00011c22 _printf 00412c22 f LIBC:printf.obj - 0001:00011c5e _mainCRTStartup 00412c5e f LIBC:crt0.obj - 0001:00011d57 __amsg_exit 00412d57 f LIBC:crt0.obj - 0001:00011d77 __cinit 00412d77 f LIBC:crt0dat.obj - 0001:00011da7 _exit 00412da7 f LIBC:crt0dat.obj - 0001:00011db8 __exit 00412db8 f LIBC:crt0dat.obj - 0001:00011e68 _realloc 00412e68 f LIBC:realloc.obj - 0001:00011fba __msize 00412fba f LIBC:msize.obj - 0001:00011fcb _malloc 00412fcb f LIBC:malloc.obj - 0001:00011fde __nh_malloc 00412fde f LIBC:malloc.obj - 0001:0001209d __heap_split_block 0041309d f LIBC:malloc.obj - 0001:000120e2 __stbuf 004130e2 f LIBC:_sftbuf.obj - 0001:00012163 __ftbuf 00413163 f LIBC:_sftbuf.obj - 0001:000121a9 __output 004131a9 f LIBC:output.obj - 0001:00012ad0 __global_unwind2 00413ad0 f LIBC:exsup.obj - 0001:00012b12 __local_unwind2 00413b12 f LIBC:exsup.obj - 0001:00012b6c __abnormal_termination 00413b6c f LIBC:exsup.obj - 0001:00012b8f __XcptFilter 00413b8f f LIBC:winxfltr.obj - 0001:00012d1a __setenvp 00413d1a f LIBC:stdenvp.obj - 0001:00012de5 __setargv 00413de5 f LIBC:stdargv.obj - 0001:000130e3 __setmbcp 004140e3 f LIBC:mbctype.obj - 0001:00013271 ___initmbctable 00414271 f LIBC:mbctype.obj - 0001:0001327c __ioinit 0041427c f LIBC:ioinit.obj - 0001:0001336a __heap_init 0041436a f LIBC:heapinit.obj - 0001:000133e7 ___getempty 004143e7 f LIBC:heapinit.obj - 0001:00013414 __except_handler3 00414414 f LIBC:exsup3.obj - 0001:000134c2 __seh_longjmp_unwind@4 004144c2 f LIBC:exsup3.obj - 0001:000134dd __FF_MSGBANNER 004144dd f LIBC:crt0msg.obj - 0001:00013503 __NMSG_WRITE 00414503 f LIBC:crt0msg.obj - 0001:0001355b _free 0041455b f LIBC:free.obj - 0001:000135c3 __heap_abort 004145c3 f LIBC:hpabort.obj - 0001:000135ce __heap_grow 004145ce f LIBC:heapgrow.obj - 0001:000136b7 __heap_grow_region 004146b7 f LIBC:heapgrow.obj - 0001:00013764 __heap_free_region 00414764 f LIBC:heapgrow.obj - 0001:0001379e __heap_search 0041479e f LIBC:heapsrch.obj - 0001:0001388e _fflush 0041488e f LIBC:fflush.obj - 0001:000138da __flush 004148da f LIBC:fflush.obj - 0001:0001393c __flushall 0041493c f LIBC:fflush.obj - 0001:000139b1 ___endstdio 004149b1 f LIBC:fflush.obj - 0001:000139c5 __isatty 004149c5 f LIBC:isatty.obj - 0001:000139df _wctomb 004149df f LIBC:wctomb.obj - 0001:00013a58 __aulldiv 00414a58 f LIBC:ulldiv.obj - 0001:00013ab8 __aullrem 00414ab8 f LIBC:ullrem.obj - 0001:00013b22 __flsbuf 00414b22 f LIBC:_flsbuf.obj - 0001:00013c2e __heap_addblock 00414c2e f LIBC:heapadd.obj - 0001:00013ee5 __commit 00414ee5 f LIBC:commit.obj - 0001:00013f32 __write 00414f32 f LIBC:write.obj - 0001:000140cb __fcloseall 004150cb f LIBC:closeall.obj - 0001:000140fc __fptrap 004150fc f LIBC:crt0fp.obj - 0001:00014107 __lseek 00415107 f LIBC:lseek.obj - 0001:0001417c __getbuf 0041517c f LIBC:_getbuf.obj - 0001:000141c7 __heap_findaddr 004151c7 f LIBC:findaddr.obj - 0001:00014231 __free_osfhnd 00415231 f LIBC:osfinfo.obj - 0001:0001429e __get_osfhandle 0041529e f LIBC:osfinfo.obj - 0001:000142d6 __dosmaperr 004152d6 f LIBC:dosmap.obj - 0001:0001433f _fclose 0041533f f LIBC:fclose.obj - 0001:0001439b __close 0041539b f LIBC:close.obj - 0001:00014431 __freebuf 00415431 f LIBC:_freebuf.obj - 0001:0001446a _RtlUnwind@16 0041546a kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00416000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00416018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00416030 utilglob.obj - 0002:00000040 ?_usac@@3VUSAC@@A 00416040 utilglob.obj - 0002:00000058 ?vmutxBase@@3VMUTX@@A 00416058 utilglob.obj - 0002:00000070 ?vdmglob@@3UDMGLOB@@A 00416070 utilglob.obj - 0002:000000c8 ?vsflUtil@@3VSFL@@A 004160c8 utilglob.obj - 0002:000000e8 ?vrndUtil@@3VRND@@A 004160e8 utilglob.obj - 0002:00000108 ?_pdoiFirst@@3PAUDOI@@A 00416108 base.obj - 0002:0000010c ?_pdoiFirstRaw@@3PAUDOI@@A 0041610c base.obj - 0002:00000120 ?_ers@@3VERS@@A 00416120 utilerro.obj - 0002:00000248 ?_pmbhFirst@@3PAUMBH@@A 00416248 utilmem.obj - 0002:00000260 ?_mpchschsLower@@3QADA 00416260 utilstr.obj - 0002:00000368 ?_mpchschsUpper@@3QADA 00416368 utilstr.obj - 0002:00000488 ?_pcflFirst@CFL@@0PAV1@A 00416488 chunk.obj - 0002:000004b0 ?_pfilFirst@FIL@@1PAV1@A 004164b0 file.obj - 0002:000004b8 ?_mutxList@FIL@@1VMUTX@@A 004164b8 file.obj - 0002:000004e0 ?_fniTemp@@3VFNI@@A 004164e0 fniwin.obj - 0002:0000075c __heap_descpages 0041675c - 0002:00000760 __heap_regions 00416760 - 0002:00000a60 __bufin 00416a60 - 0002:00001a60 ___onexitend 00417a60 - 0002:00001a64 __FPinit 00417a64 - 0002:00001a68 ___onexitbegin 00417a68 - 0002:00001a6c __acmdln 00417a6c - 0003:00000058 ??_7KCDC@@6B@ 00418058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00418078 utilglob.obj - 0003:00000090 ??_7CODC@@6B@ 00418090 utilglob.obj - 0003:000000b0 ??_7ERS@@6B@ 004180b0 utilerro.obj - 0003:000000e8 ??_7USAC@@6B@ 004180e8 utilint.obj - 0003:00000100 ??_7RND@@6B@ 00418100 utilrnd.obj - 0003:00000120 ??_7SFL@@6B@ 00418120 utilrnd.obj - 0003:00000140 ?vrgchHex@@3QBDB 00418140 utilstr.obj - 0003:00000158 ??_7GRPB@@6B@ 00418158 groups.obj - 0003:00000188 ??_7GLB@@6B@ 00418188 groups.obj - 0003:000001b8 ??_7GL@@6B@ 004181b8 groups.obj - 0003:000001e8 ??_7CODM@@6B@ 004181e8 codec.obj - 0003:00000218 ??_7BLCK@@6B@ 00418218 file.obj - 0003:00000230 ??_7FNI@@6B@ 00418230 fniwin.obj - 0003:00000258 ___lookuptable 00418258 LIBC:output.obj - 0004:00000020 ?vpcodmUtil@@3PAVCODM@@A 00419020 utilglob.obj - 0004:00000024 ?vpusac@@3PAVUSAC@@A 00419024 utilglob.obj - 0004:00000064 ?vcactSuspendAssertValid@@3JA 00419064 base.obj - 0004:00000068 ?vcactAVSave@@3JA 00419068 base.obj - 0004:0000006c ?vcactAV@@3JA 0041906c base.obj - 0004:00000070 ??_C@_0BG@JJAC@_cactRef?5not?5positive?$AA@ 00419070 base.obj - 0004:00000088 ??_C@_0BI@BGCA@should?5not?5be?5allocated?$AA@ 00419088 base.obj - 0004:000000a0 ??_C@_0P@LJBL@_lwMagic?5wrong?$AA@ 004190a0 base.obj - 0004:000000b0 ??_C@_0BE@HMID@should?5be?5allocated?$AA@ 004190b0 base.obj - 0004:000000c4 ??_C@_0BL@HGEL@ppdoiPrev?5in?5next?5is?5wrong?$AA@ 004190c4 base.obj - 0004:000000e0 ??_C@_0BE@MNFD@?$CKppdoiPrev?5is?5wrong?$AA@ 004190e0 base.obj - 0004:000000f4 ??_C@_0BF@MAJO@should?5NOT?5be?5linked?$AA@ 004190f4 base.obj - 0004:0000010c ??_C@_0BB@MNAC@should?5be?5linked?$AA@ 0041910c base.obj - 0004:00000120 ??_C@_0BJ@GKJG@negative?5reference?5count?$AA@ 00419120 base.obj - 0004:0000013c ??_C@_0BP@IJOI@magic?5number?5has?5been?5hammered?$AA@ 0041913c base.obj - 0004:0000015c ??_C@_03GOHA@nil?$AA@ 0041915c base.obj - 0004:00000160 ??_C@_0BA@NDOB@links?5corrupt?52?$AA@ 00419160 base.obj - 0004:00000170 ??_C@_0O@NAKK@links?5corrupt?$AA@ 00419170 base.obj - 0004:000001a0 ??_C@_0P@NKO@blocks?5overlap?$AA@ 004191a0 utilcopy.obj - 0004:000001d0 ?vpers@@3PAVERS@@A 004191d0 utilerro.obj - 0004:000001d4 ??_C@_0CF@PIJP@Warning?3?5error?5code?5stack?5has?5fi@ 004191d4 utilerro.obj - 0004:000001fc ??_C@_08GEE@Error?5?$CFd?$AA@ 004191fc utilerro.obj - 0004:00000228 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 00419228 utilint.obj - 0004:00000238 ??_C@_084overflow?$AA@ 00419238 utilint.obj - 0004:00000244 ??_C@_0N@INPL@long?5too?5big?$AA@ 00419244 utilint.obj - 0004:00000254 ??_C@_0P@DFPA@long?5too?5small?$AA@ 00419254 utilint.obj - 0004:00000288 ?vpfnlib@@3P6GJJJ@ZA 00419288 utilmem.obj - 0004:0000028c ?_fInLiberator@@3HA 0041928c utilmem.obj - 0004:00000290 ??_C@_0CE@HNGI@who?8s?5allocating?5a?5humongous?5blo@ 00419290 utilmem.obj - 0004:000002b4 ??_C@_0BI@NIBJ@why?5did?5shrinking?5fail?$DP?$AA@ 004192b4 utilmem.obj - 0004:000002cc ??_C@_0CG@BCGJ@bad?5cbOld?5value?5passed?5to?5_FResi@ 004192cc utilmem.obj - 0004:000002f4 ??_C@_0CC@JIID@who?8s?5resizing?5a?5humongous?5block@ 004192f4 utilmem.obj - 0004:00000318 ??_C@_0BN@MDLF@_pmbhFirst?8s?5prev?5is?5not?5nil?$AA@ 00419318 utilmem.obj - 0004:00000338 ??_C@_0BC@JLHF@next?8s?5prev?5wrong?$AA@ 00419338 utilmem.obj - 0004:0000034c ??_C@_0BC@DBKD@prev?8s?5next?5wrong?$AA@ 0041934c utilmem.obj - 0004:00000360 ??_C@_0BD@GJNJ@prev?5should?5be?5nil?$AA@ 00419360 utilmem.obj - 0004:00000374 ??_C@_0BE@EBAI@prev?5is?5wrongly?5nil?$AA@ 00419374 utilmem.obj - 0004:00000388 ??_C@_0BG@MIPJ@bad?5tail?5magic?5number?$AA@ 00419388 utilmem.obj - 0004:000003a0 ??_C@_0BD@LKFC@wrong?5prev?5in?5next?$AA@ 004193a0 utilmem.obj - 0004:000003b4 ??_C@_0BA@NFHA@first?5has?5prev?$CB?$AA@ 004193b4 utilmem.obj - 0004:000003c4 ??_C@_0BD@BFGK@wrong?5next?5in?5prev?$AA@ 004193c4 utilmem.obj - 0004:000003d8 ??_C@_0BL@FCDN@bigger?5than?5malloced?5block?$AA@ 004193d8 utilmem.obj - 0004:000003f4 ??_C@_0BB@FJEK@bad?5magic?5number?$AA@ 004193f4 utilmem.obj - 0004:00000408 ??_C@_08ECDH@wrong?5cb?$AA@ 00419408 utilmem.obj - 0004:00000414 ??_C@_06BHIL@nil?5pv?$AA@ 00419414 utilmem.obj - 0004:00000440 ??_C@_0BL@DOCB@random?5number?5out?5of?5range?$AA@ 00419440 utilrnd.obj - 0004:0000045c ??_C@_0L@LEMP@_clw?5wrong?$AA@ 0041945c utilrnd.obj - 0004:00000468 ??_C@_0O@LANJ@HQ?5wrong?5size?$AA@ 00419468 utilrnd.obj - 0004:00000478 ??_C@_0L@DINP@wrong?5_clw?$AA@ 00419478 utilrnd.obj - 0004:000005a8 ??_C@_0CG@KHKF@bad?5logic?5above?5?9?5overflowed?5the@ 004195a8 utilstr.obj - 0004:000005d0 ??_C@_0O@KDFK@bad?5dwo?5value?$AA@ 004195d0 utilstr.obj - 0004:000005e0 ??_C@_0BC@KLPG@bad?5format?5string?$AA@ 004195e0 utilstr.obj - 0004:000005f4 ??_C@_0BA@EENP@base?5can?8t?5be?51?$AA@ 004195f4 utilstr.obj - 0004:00000604 ??_C@_0BJ@POJM@internal?5null?5characters?$AA@ 00419604 utilstr.obj - 0004:00000620 ??_C@_0BJ@NCBF@missing?5termination?5byte?$AA@ 00419620 utilstr.obj - 0004:0000063c ??_C@_0M@PFFO@sz?5too?5long?$AA@ 0041963c utilstr.obj - 0004:00000648 ??_C@_07NPFI@bad?5osk?$AA@ 00419648 utilstr.obj - 0004:00000670 ?vcactSuspendCheckPointers@@3JA 00419670 memwin.obj - 0004:00000674 ??_C@_0BD@BDDD@Resizing?5locked?5HQ?$AA@ 00419674 memwin.obj - 0004:00000688 ??_C@_0BC@NKKB@Freeing?5locked?5HQ?$AA@ 00419688 memwin.obj - 0004:0000069c ??_C@_0BF@DAH@overflow?5in?5cactLock?$AA@ 0041969c memwin.obj - 0004:000006b4 ??_C@_0O@GDGK@hq?5not?5locked?$AA@ 004196b4 memwin.obj - 0004:000006c4 ??_C@_0CB@GKFC@beginning?5of?5hq?5block?5is?5trashed@ 004196c4 memwin.obj - 0004:000006e8 ??_C@_09BABB@hq?5is?5nil?$AA@ 004196e8 memwin.obj - 0004:000006f4 ??_C@_0BH@JOIJ@no?5write?5access?5to?5ptr?$AA@ 004196f4 memwin.obj - 0004:00000730 ??_C@_0P@JECG@negative?5sizes?$AA@ 00419730 groups.obj - 0004:00000740 ??_C@_06JFMK@bad?5cb?$AA@ 00419740 groups.obj - 0004:00000748 ??_C@_0BA@NGCD@blck?5wrong?5size?$AA@ 00419748 groups.obj - 0004:00000758 ??_C@_0BE@FNCO@_hqData2?5wrong?5size?$AA@ 00419758 groups.obj - 0004:0000076c ??_C@_0BE@OLBB@_hqData1?5wrong?5size?$AA@ 0041976c groups.obj - 0004:00000780 ??_C@_0BK@PMAJ@cb?8s?5don?8t?5match?5_hqData2?$AA@ 00419780 groups.obj - 0004:0000079c ??_C@_0BK@DLA@cb?8s?5don?8t?5match?5_hqData1?$AA@ 0041979c groups.obj - 0004:000007b8 ??_C@_0BF@EAAF@array?5area?5too?5small?$AA@ 004197b8 groups.obj - 0004:000007d0 ??_C@_0CG@IELP@osk?5not?5invariant?5under?5byte?5swa@ 004197d0 groups.obj - 0004:000007f8 ??_C@_08OO@wrong?5bo?$AA@ 004197f8 groups.obj - 0004:00000804 ??_C@_06NHBD@bad?5bo?$AA@ 00419804 groups.obj - 0004:0000080c ??_C@_0CK@FNFD@who?8s?5trying?5to?5allocate?5a?5list?5@ 0041980c groups.obj - 0004:00000878 ?_rtiLast@CFL@@0JA 00419878 chunk.obj - 0004:000008a0 ??_C@_0BP@EIDM@nil?5default?5compression?5format?$AA@ 004198a0 codec.obj - 0004:000008c0 ??_C@_0BI@OAGF@nil?5default?5compression?$AA@ 004198c0 codec.obj - 0004:000008d8 ??_C@_08DJLA@nil?5cfmt?$AA@ 004198d8 codec.obj - 0004:000008e4 ??_C@_0BO@CCPP@why?5is?5the?5final?5size?5larger?$DP?$AA@ 004198e4 codec.obj - 0004:00000904 ??_C@_0BL@IAEC@decompressed?5to?5wrong?5size?$AA@ 00419904 codec.obj - 0004:00000940 ??_C@_0CE@GFGF@bad?5value?5to?5encode?5logarithmica@ 00419940 codkauai.obj - 0004:00000964 ??_C@_07DEPO@bad?5len?$AA@ 00419964 codkauai.obj - 0004:0000096c ??_C@_0BA@OMPO@links?5are?5wrong?$AA@ 0041996c codkauai.obj - 0004:0000097c ??_C@_0CE@BPEA@failed?5to?5allocate?5memory?5for?5li@ 0041997c codkauai.obj - 0004:000009a0 ??_C@_0BE@GEEJ@bad?5compressed?5data?$AA@ 004199a0 codkauai.obj - 0004:000009b4 ??_C@_0BC@BBEI@unknown?5flag?5byte?$AA@ 004199b4 codkauai.obj - 0004:000009c8 ??_C@_0BM@EDJB@bad?5tail?5of?5compressed?5data?$AA@ 004199c8 codkauai.obj - 0004:000009e4 ??_C@_0BC@FCAL@bad?5source?5stream?$AA@ 004199e4 codkauai.obj - 0004:00000a34 ?vftgCreator@FIL@@2JA 00419a34 file.obj - 0004:00000a38 ??_C@_0BB@BIIN@not?5in?5file?5list?$AA@ 00419a38 file.obj - 0004:00000a4c ??_C@_0BE@FPAE@reading?5outside?5flo?$AA@ 00419a4c file.obj - 0004:00000a60 ??_C@_0BE@NCOM@writing?5outside?5flo?$AA@ 00419a60 file.obj - 0004:00000a74 ??_C@_0BF@DMI@reading?5outside?5blck?$AA@ 00419a74 file.obj - 0004:00000a8c ??_C@_0BE@LBGH@reading?5packed?5data?$AA@ 00419a8c file.obj - 0004:00000aa0 ??_C@_0BF@LJEF@writing?5outside?5blck?$AA@ 00419aa0 file.obj - 0004:00000ab8 ??_C@_0BE@DMIP@writing?5packed?5data?$AA@ 00419ab8 file.obj - 0004:00000acc ??_C@_0BJ@EJCO@block?5should?5be?5unpacked?$AA@ 00419acc file.obj - 0004:00000ae8 ??_C@_0BH@KIDA@block?5should?5be?5packed?$AA@ 00419ae8 file.obj - 0004:00000b00 ??_C@_0BL@GIKM@block?5should?5be?5file?5based?$AA@ 00419b00 file.obj - 0004:00000b1c ??_C@_0BN@OPOC@block?5should?5be?5memory?5based?$AA@ 00419b1c file.obj - 0004:00000b3c ??_C@_0CC@CLGI@both?5the?5_flo?5and?5_hq?5are?5non?9ni@ 00419b3c file.obj - 0004:00000b80 ??_C@_0BK@JJEH@can?8t?5create?5an?5open?5file?$AA@ 00419b80 filewin.obj - 0004:00000b9c ??_C@_0BO@PKAO@can?8t?5write?5to?5read?5only?5file?$AA@ 00419b9c filewin.obj - 0004:00000bbc ??_C@_0O@MKJE@read?5past?5EOF?$AA@ 00419bbc filewin.obj - 0004:00000bf0 ?vftgTemp@@3JA 00419bf0 fniwin.obj - 0004:00000bf8 ??_C@_07NLCI@bad?5fni?$AA@ 00419bf8 fniwin.obj - 0004:00000c00 ??_C@_0BC@IKJG@expected?5filename?$AA@ 00419c00 fniwin.obj - 0004:00000c14 ??_C@_0BA@CKAI@unexpected?5file?$AA@ 00419c14 fniwin.obj - 0004:00000c24 ??_C@_0BE@DKFN@unexpected?5filename?$AA@ 00419c24 fniwin.obj - 0004:00000c38 ??_C@_0BI@LIEJ@expected?5trailing?5slash?$AA@ 00419c38 fniwin.obj - 0004:00000c50 ??_C@_0P@EFJD@unexpected?5dir?$AA@ 00419c50 fniwin.obj - 0004:00000c60 ??_C@_0N@IMMO@named?5empty?$DP?$AA@ 00419c60 fniwin.obj - 0004:00000c70 ??_C@_0BB@NKPE@unexpected?5empty?$AA@ 00419c70 fniwin.obj - 0004:00000ca4 ??_C@_0CD@PKBF@prime?5?$DN?5?$CFld?0?5primitive?5root?5?$DN?5?$CFl@ 00419ca4 ut.obj - 0004:00000cc8 ??_C@_0P@JMFJ@?5?5?5Line?3?5?$CFld?6?$AN?$AA@ 00419cc8 ut.obj - 0004:00000cd8 ??_C@_0O@DMED@?5?5?5File?3?5?$CFs?6?$AN?$AA@ 00419cd8 ut.obj - 0004:00000ce8 ??_C@_02MMHC@?6?$AN?$AA@ 00419ce8 ut.obj - 0004:00000cec ??_C@_03FINO@?$CF8x?$AA@ 00419cec ut.obj - 0004:00000cf0 ??_C@_03LHCA@?$CF4x?$AA@ 00419cf0 ut.obj - 0004:00000cf4 ??_C@_03MANP@?$CF2x?$AA@ 00419cf4 ut.obj - 0004:00000cf8 ??_C@_0L@GJOI@?5?5?5Value?3?5?$AA@ 00419cf8 ut.obj - 0004:00000d04 ??_C@_0BA@GHDO@?5?5?5Address?5?$CFx?6?$AN?$AA@ 00419d04 ut.obj - 0004:00000d14 ??_C@_0N@BPPC@?5?5?5Msg?3?5?$CFs?6?$AN?$AA@ 00419d14 ut.obj - 0004:00000d24 ??_C@_0BH@KNJK@An?5assert?5occurred?3?5?6?$AN?$AA@ 00419d24 ut.obj - 0004:00000d3c ??_C@_09GCGP@Warning?6?$AN?$AA@ 00419d3c ut.obj - 0004:00000d48 ??_C@_03JIMJ@bug?$AA@ 00419d48 ut.obj - 0004:00000d6c __aenvptr 00419d6c LIBC:crt0.obj - 0004:00000d70 __wenvptr 00419d70 LIBC:crt0.obj - 0004:00000d74 __aexit_rtn 00419d74 LIBC:crt0.obj - 0004:00000d78 _errno 00419d78 LIBC:crt0dat.obj - 0004:00000d7c __doserrno 00419d7c LIBC:crt0dat.obj - 0004:00000d80 __umaskval 00419d80 LIBC:crt0dat.obj - 0004:00000d84 __osver 00419d84 LIBC:crt0dat.obj - 0004:00000d88 __winver 00419d88 LIBC:crt0dat.obj - 0004:00000d8c __winmajor 00419d8c LIBC:crt0dat.obj - 0004:00000d90 __winminor 00419d90 LIBC:crt0dat.obj - 0004:00000d94 ___argc 00419d94 LIBC:crt0dat.obj - 0004:00000d98 ___argv 00419d98 LIBC:crt0dat.obj - 0004:00000d9c ___wargv 00419d9c LIBC:crt0dat.obj - 0004:00000da0 __environ 00419da0 LIBC:crt0dat.obj - 0004:00000da4 ___initenv 00419da4 LIBC:crt0dat.obj - 0004:00000da8 __wenviron 00419da8 LIBC:crt0dat.obj - 0004:00000dac ___winitenv 00419dac LIBC:crt0dat.obj - 0004:00000db0 __pgmptr 00419db0 LIBC:crt0dat.obj - 0004:00000db4 __wpgmptr 00419db4 LIBC:crt0dat.obj - 0004:00000db8 __exitflag 00419db8 LIBC:crt0dat.obj - 0004:00000dbc __C_Termination_Done 00419dbc LIBC:crt0dat.obj - 0004:00000dc0 __pnhHeap 00419dc0 LIBC:malloc.obj - 0004:00000dc8 __stdbuf 00419dc8 LIBC:_sftbuf.obj - 0004:00000dd0 __iob 00419dd0 LIBC:_file.obj - 0004:00001050 __lastiob 0041a050 LIBC:_file.obj - 0004:0000105c ___nullstring 0041a05c LIBC:output.obj - 0004:00001070 ___wnullstring 0041a070 LIBC:output.obj - 0004:00001078 __XcptActTab 0041a078 LIBC:winxfltr.obj - 0004:000010f0 __First_FPE_Indx 0041a0f0 LIBC:winxfltr.obj - 0004:000010f4 __Num_FPE 0041a0f4 LIBC:winxfltr.obj - 0004:000010f8 __XcptActTabCount 0041a0f8 LIBC:winxfltr.obj - 0004:000010fc __fpecode 0041a0fc LIBC:winxfltr.obj - 0004:00001100 __pxcptinfoptrs 0041a100 LIBC:winxfltr.obj - 0004:00001108 __mbctype 0041a108 LIBC:mbctype.obj - 0004:0000120c ___mbcodepage 0041a20c LIBC:mbctype.obj - 0004:00001210 ___mblcid 0041a210 LIBC:mbctype.obj - 0004:00001218 ___mbulinfo 0041a218 LIBC:mbctype.obj - 0004:00001320 __nhandle 0041a320 LIBC:ioinit.obj - 0004:00001328 __osfile 0041a328 LIBC:ioinit.obj - 0004:00001368 __osfhnd 0041a368 LIBC:ioinit.obj - 0004:00001468 __pipech 0041a468 LIBC:ioinit.obj - 0004:000014a8 __heap_desc 0041a4a8 LIBC:heapinit.obj - 0004:000014bc __heap_resetsize 0041a4bc LIBC:heapinit.obj - 0004:000014c0 __amblksiz 0041a4c0 LIBC:heapinit.obj - 0004:000014c4 __heap_regionsize 0041a4c4 LIBC:heapinit.obj - 0004:000014c8 __heap_maxregsize 0041a4c8 LIBC:heapinit.obj - 0004:00001738 __adbgmsg 0041a738 LIBC:crt0msg.obj - 0004:0000173c __newmode 0041a73c LIBC:_newmode.obj - 0004:00001740 __cflush 0041a740 LIBC:fflush.obj - 0004:00001748 __cfltcvt_tab 0041a748 LIBC:cmiscdat.obj - 0004:00001760 __pctype 0041a760 LIBC:ctype.obj - 0004:00001764 __pwctype 0041a764 LIBC:ctype.obj - 0004:00001768 __ctype 0041a768 LIBC:ctype.obj - 0004:00001970 ___lc_handle 0041a970 LIBC:nlsdata2.obj - 0004:00001988 ___lc_codepage 0041a988 LIBC:nlsdata2.obj - 0004:0000198c ___mb_cur_max 0041a98c LIBC:nlsdata1.obj - 0004:00001994 ___decimal_point 0041a994 LIBC:nlsdata1.obj - 0004:00001998 ___decimal_point_length 0041a998 LIBC:nlsdata1.obj - 0004:00001b08 ___xc_a 0041ab08 LIBC:crt0init.obj - 0004:00001b60 ___xc_z 0041ab60 LIBC:crt0init.obj - 0004:00001b64 ___xi_a 0041ab64 LIBC:crt0init.obj - 0004:00001b6c ___xi_z 0041ab6c LIBC:crt0init.obj - 0004:00001b70 ___xp_a 0041ab70 LIBC:crt0init.obj - 0004:00001b78 ___xp_z 0041ab78 LIBC:crt0init.obj - 0004:00001b7c ___xt_a 0041ab7c LIBC:crt0init.obj - 0004:00001b80 ___xt_z 0041ab80 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0041b000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0041b014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0041b028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041b03c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 0041b050 kernel32:KERNEL32.dll - 0005:0000010c __imp__DeleteCriticalSection@4 0041b10c kernel32:KERNEL32.dll - 0005:00000110 __imp__IsBadReadPtr@8 0041b110 kernel32:KERNEL32.dll - 0005:00000114 __imp__GlobalAlloc@8 0041b114 kernel32:KERNEL32.dll - 0005:00000118 __imp__GlobalFree@4 0041b118 kernel32:KERNEL32.dll - 0005:0000011c __imp__EnterCriticalSection@4 0041b11c kernel32:KERNEL32.dll - 0005:00000120 __imp__LeaveCriticalSection@4 0041b120 kernel32:KERNEL32.dll - 0005:00000124 __imp__GetCurrentThreadId@0 0041b124 kernel32:KERNEL32.dll - 0005:00000128 __imp__GlobalReAlloc@12 0041b128 kernel32:KERNEL32.dll - 0005:0000012c __imp__GlobalSize@4 0041b12c kernel32:KERNEL32.dll - 0005:00000130 __imp__WideCharToMultiByte@32 0041b130 kernel32:KERNEL32.dll - 0005:00000134 __imp__IsBadWritePtr@8 0041b134 kernel32:KERNEL32.dll - 0005:00000138 __imp__CreateFileA@28 0041b138 kernel32:KERNEL32.dll - 0005:0000013c __imp__CloseHandle@4 0041b13c kernel32:KERNEL32.dll - 0005:00000140 __imp__FlushFileBuffers@4 0041b140 kernel32:KERNEL32.dll - 0005:00000144 __imp__SetFilePointer@16 0041b144 kernel32:KERNEL32.dll - 0005:00000148 __imp__ReadFile@20 0041b148 kernel32:KERNEL32.dll - 0005:0000014c __imp__WriteFile@20 0041b14c kernel32:KERNEL32.dll - 0005:00000150 __imp__GetFullPathNameA@16 0041b150 kernel32:KERNEL32.dll - 0005:00000154 __imp__GetLastError@0 0041b154 kernel32:KERNEL32.dll - 0005:00000158 __imp__InitializeCriticalSection@4 0041b158 kernel32:KERNEL32.dll - 0005:0000015c __imp__ExitProcess@4 0041b15c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetVersion@0 0041b160 kernel32:KERNEL32.dll - 0005:00000164 __imp__SetStdHandle@8 0041b164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetCommandLineA@0 0041b168 kernel32:KERNEL32.dll - 0005:0000016c __imp__VirtualAlloc@16 0041b16c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetStdHandle@4 0041b170 kernel32:KERNEL32.dll - 0005:00000174 __imp__GetCPInfo@8 0041b174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetOEMCP@0 0041b178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetStartupInfoA@4 0041b17c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetFileType@4 0041b180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetEnvironmentStrings@0 0041b184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetModuleFileNameA@12 0041b188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetACP@0 0041b18c kernel32:KERNEL32.dll - 0005:00000190 __imp__VirtualFree@12 0041b190 kernel32:KERNEL32.dll - 0005:00000194 __imp__RtlUnwind@16 0041b194 kernel32:KERNEL32.dll - 0005:00000198 __imp__UnhandledExceptionFilter@4 0041b198 kernel32:KERNEL32.dll - 0005:0000019c \177KERNEL32_NULL_THUNK_DATA 0041b19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__CharUpperBuffA@8 0041b1a0 user32:USER32.dll - 0005:000001a4 \177USER32_NULL_THUNK_DATA 0041b1a4 user32:USER32.dll - 0005:000001a8 __imp__timeGetTime@0 0041b1a8 winmm:WINMM.dll - 0005:000001ac \177WINMM_NULL_THUNK_DATA 0041b1ac winmm:WINMM.dll - 0005:000001b0 \177comdlg32_NULL_THUNK_DATA 0041b1b0 comdlg32:comdlg32.dll - - entry point at 0001:00011c5e - - Static symbols - - 0001:00011af0 _$$1000 00412af0 f test.obj - 0001:00011b10 _$$8000 00412b10 f test.obj - 0001:00011ab0 _$$1000 00412ab0 f ut.obj - 0001:00011ad0 _$$8000 00412ad0 f ut.obj - 0001:00010fa0 _$$8000 00411fa0 f fniwin.obj - 0001:00011110 _$$1000 00412110 f fniwin.obj - 0001:00011470 _$$9000 00412470 f fniwin.obj - 0001:00011490 _$$a000 00412490 f fniwin.obj - 0001:000114b0 _$$b000 004124b0 f fniwin.obj - 0001:00010ac0 _$$1000 00411ac0 f filewin.obj - 0001:00010f80 _$$8000 00411f80 f filewin.obj - 0001:0000f8e0 _$$8000 004108e0 f file.obj - 0001:0000f9a0 _$$1000 004109a0 f file.obj - 0001:00010680 _$$9000 00411680 f file.obj - 0001:000106a0 _$$a000 004116a0 f file.obj - 0001:000106c0 _$$b000 004116c0 f file.obj - 0001:0000f8a0 _$$1000 004108a0 f crf.obj - 0001:0000f8c0 _$$8000 004108c0 f crf.obj - 0001:00008270 _$$1000 00409270 f codkauai.obj - 0001:0000f880 _$$8000 00410880 f codkauai.obj - 0001:00007370 _$$1000 00408370 f codec.obj - 0001:00007d40 _$$8000 00408d40 f codec.obj - 0001:00006dd0 _$$1000 00407dd0 f chunk.obj - 0001:00006e20 _$$8000 00407e20 f chunk.obj - 0001:00006d90 _$$1000 00407d90 f groups2.obj - 0001:00006db0 _$$8000 00407db0 f groups2.obj - 0001:00005a20 _$$1000 00406a20 f groups.obj - 0001:00006c50 _$$8000 00407c50 f groups.obj - 0001:00005500 _$$1000 00406500 f memwin.obj - 0001:000055d0 _$$8000 004065d0 f memwin.obj - 0001:00003dd0 _$$1000 00404dd0 f utilstr.obj - 0001:00004ff0 _$$8000 00405ff0 f utilstr.obj - 0001:00003710 _$$1000 00404710 f utilrnd.obj - 0001:00003bf0 _$$8000 00404bf0 f utilrnd.obj - 0001:000027e0 _$$1000 004037e0 f utilmem.obj - 0001:00003240 _$$8000 00404240 f utilmem.obj - 0001:00001ed0 _$$1000 00402ed0 f utilint.obj - 0001:00002290 _$$8000 00403290 f utilint.obj - 0001:00001600 _$$8000 00402600 f utilerro.obj - 0001:00001b40 _$$1000 00402b40 f utilerro.obj - 0001:00001d70 _$$9000 00402d70 f utilerro.obj - 0001:00001d90 _$$a000 00402d90 f utilerro.obj - 0001:00001db0 _$$b000 00402db0 f utilerro.obj - 0001:00001370 _$$1000 00402370 f utilcopy.obj - 0001:000015e0 _$$8000 004025e0 f utilcopy.obj - 0001:00000a40 _$$1000 00401a40 f base.obj - 0001:00001180 _$$8000 00402180 f base.obj - 0001:000004d0 _$$8000 004014d0 f util.obj - 0001:000004f0 _$$1000 004014f0 f util.obj - 0001:000000a0 _$$8000 004010a0 f utilglob.obj - 0001:00000110 _$$9000 00401110 f utilglob.obj - 0001:00000170 _$$a000 00401170 f utilglob.obj - 0001:00000190 _$$b000 00401190 f utilglob.obj - 0001:00000280 _$$1000 00401280 f utilglob.obj - 0001:00013e7c __before 00414e7c f LIBC:heapadd.obj - 0001:00013947 _flsall 00414947 f LIBC:fflush.obj - 0001:00013633 __heap_new_region 00414633 f LIBC:heapgrow.obj - 0001:00013391 __heap_grow_emptylist 00414391 f LIBC:heapinit.obj - 0001:00013045 _getSystemCP 00414045 f LIBC:mbctype.obj - 0001:00013080 _CPtoLCID 00414080 f LIBC:mbctype.obj - 0001:000130bf _setSBCS 004140bf f LIBC:mbctype.obj - 0001:00012e7b _parse_cmdline 00413e7b f LIBC:stdargv.obj - 0001:00012ced _xcptlookup 00413ced f LIBC:winxfltr.obj - 0001:00012af0 __unwind_handler 00413af0 f LIBC:exsup.obj - 0001:000129f4 _write_char 004139f4 f LIBC:output.obj - 0001:00012a34 _write_multi_char 00413a34 f LIBC:output.obj - 0001:00012a65 _write_string 00413a65 f LIBC:output.obj - 0001:00012a9c _get_int_arg 00413a9c f LIBC:output.obj - 0001:00012aab _get_int64_arg 00413aab f LIBC:output.obj - 0001:00012abf _get_short_arg 00413abf f LIBC:output.obj - 0001:00011f5e __heap_expand_block 00412f5e f LIBC:realloc.obj - 0001:00011dc9 _doexit 00412dc9 f LIBC:crt0dat.obj - 0001:00011e48 __initterm 00412e48 f LIBC:crt0dat.obj - -FIXUPS: 12dc1 5d 12 fffffe8a c 5 10 10 5 1c 9 15 f 1f 9 fffffec9 18 10 -FIXUPS: 12c1a ffffff46 1e 12 44 13 13 c13 96 14 1c 2d 16 1d 1b cb 3a 37 -FIXUPS: 130ec 45 46 29 fffffe36 2d f e c 3d 55 fffffdbe 16 33 1f d 23 23 -FIXUPS: 12d8d 12 11 1340 b8 78 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 -FIXUPS: 13b96 ffffff4e fffff7c9 4c 9b 1d 6d 10 6b 4f 24 6b 6a 30 14 16 -FIXUPS: 1364c ab 17 16fa fffffd88 d 2b 1a 1f fffffc99 b 21 42 37 2f 19 -FIXUPS: 149b2 e fffffc55 c 75 d 96 d c 32 fffffe42 ffffffae ffffff6f 18 -FIXUPS: 1446b d 35 25 ffffff1f fffed006 13 1f 30 30 13fbc ffffff8c c d -FIXUPS: 1540a d ffffff40 b b 1b fffffe05 ffffffaf 26 ffffff9d ffffffdf -FIXUPS: 14f8b f3 fffffe7e fffffd4f 10 10 18 a1 3e 24 d 41 fffec348 a a -FIXUPS: 113a a a a 24 1b 5 5 18 13 1d 13 1d e 32 13 3d 2c 24 e 13 1f 13 -FIXUPS: 1369 e 13 1f e 32 c51 1f 5 2b 20 12 1b 2d d 20 29 d 21 22 35 6b -FIXUPS: 2279 fffff25e 42 e 22 fffffad9 27 f 21 33 a c c a 14 a bf9 17 33 -FIXUPS: 1d49 19 25 b 13 10 2b d 31 d 34 d 2c d 13 2e d 20 35 d a 18 b b -FIXUPS: 1fa6 35 5 17 b fffff8c1 28 42 3a 1e 9 90 5 66 c c 14 1f 39 1c 11 -FIXUPS: 1b4d 32 d 32 d 10 27 d a 9 e 5 24 23 48 d 7ee d 36 d 43 d d 7b -FIXUPS: 1579 30 70 30 29 14 18 e 14 5 38 1f 20 1d 23 36 d 2a 23 3e 4f e -FIXUPS: 18ac a 132d 26 23 16 90 67 10 10 23 20 1b 5 5 18 16 8 12 e 13 fffff4a8 -FIXUPS: 22df 53 d 5a 13 d d 53 13 d d 6c 2bb 15 14 e 5b 9 1a 6b 20 2c 23 -FIXUPS: 2912 b 27 10 37 1d 31 23 16 15 22 23 2d 23 16 3f 1a 3e 23 16 12 -FIXUPS: 2fe9 13 24 58 96 d 10 2e 13 b a 10 a8 e 14 5 37 22 e 13 1d fffff315 -FIXUPS: 2642 27 f 21 30 e b 37 29 16 1885 2a d 2b d 20 2a d 17 15 2c d -FIXUPS: 4117 22 37 d 10 c 33 d 20 18 b 2b ffffec1d d be d 4a d 29 d c7c -FIXUPS: 3c51 d 11 14 3a a 49 d 23 1d 1f d f 33 d 3b d 2f d 4b d 1e 27 1f -FIXUPS: 3f23 2a d 1a 2d d 14 fffff8c4 d 2b 36 d 29 d 35 d 2a 6 3f 2d 1e -FIXUPS: 3a47 42 d 17 55 6 28 6 30 6 19 f 2b a 12 f 2f e fffff833 1f 40 -FIXUPS: 34c7 10 27 d 17 1c 18 a 24 d 42 2d 1b 14 65 19 3b 9d a 9 f 12 50 -FIXUPS: 3817 10 10 f d c 10fd 1b 46 d 3c d 14 27 2f 3c 23 1b 32 23 47 1f -FIXUPS: 4bcd 2a 22 e 13 1f e 13 ffffe69f 17 3c 1d 10 58 28 10 1170 2c 17 -FIXUPS: 45e9 20 10 19 c 10 1d d 2c d 28 10 8 c 3c 23 1b c 3e d 11 44 26 -FIXUPS: 486c 2d d 11 26 5c 14d4 44 1d 17 42 52 2e d 75 c 22 ffffe28b 27 -FIXUPS: 42b8 21 49 27 f 21 30 e 18 e 26 36 23 1b 58 d 2d 12 4e 13f7 25 -FIXUPS: 59aa 75 6a 23 2d 23 2d 23 2d 23 3d f d 24 14 1a 2b d 51 d 2c e -FIXUPS: 5d61 d 16 25 13 d 10 d fffff14a d 1c 29 1b d b 2cd a 75 23 d d -FIXUPS: 534c 14 15 14e d 98 d6 2e d 71 d 55 6d 23 16 d 22 d 14 c95 12 4c -FIXUPS: 6540 6 63 d 21 ffffe6c2 23 1b d 30 3c 29 23 16 c 3b 23 1b d 14 -FIXUPS: 4e61 6 22 23 19 8 10 32 14 1238 d 4d 2c 23 25 e 1c d 2e d 17 27 -FIXUPS: 62e5 b 2b 1e c b 2e d 2e c b 28 d 34 25 d 15 2d d 16a5 9 21 12 -FIXUPS: 7bb9 30 e 32 2e 22 e 13 1f e 13 1f e 13 1f 13 1d 13 ffffe29d e -FIXUPS: 6037 29 61 38 e b 10 14 1695 1b 26 2d 23 19 24 23 1d 16 2c 9 19 -FIXUPS: 7952 b 13 9 1d 14 9 6 22 2e 23 16 2a 22 2b 23 1b 33 d fffff905 -FIXUPS: 7459 30 23 1e 1f 23 32 23 d 39 d e 3d 28 d 2d d 1a 13 1e 23 1e -FIXUPS: 770a 10 a 16 13 13 b 19 1b fffff92a 23 1e 24 9 22 23 1d 10 17 6 -FIXUPS: 71e9 12 13 13 13 a 20 d 1e 13 10 11 19 38 57 23 d 24 12 26 28 fffff92f -FIXUPS: 6d55 20 2f 9 f 34 9 f 31 17 13 13 36 d 3b d 1e 24 d 1e 24 d 2a -FIXUPS: 6fec 13 c c 22 e 19 3a fffff838 32 1f 32 39 3f 2c 50 11 10 b 12 -FIXUPS: 6ab0 17 25 30 45 d 2c 3a 35 14 22 2a 2d 23 d 15 d 13 13 1a 1f68 -FIXUPS: 8c9d aa 22 e 13 fffff06f 2e 22 13 ffffff5b ffffe85b 27 f 21 49 -FIXUPS: 66d9 f 21 49 27 f 21 30 2c 17 c d 14 23 34 d 1fd5 1a 14 24 b 13 -FIXUPS: 8902 21 d e 1a 1d d e 29 16 d 10 d b cc f e f f f f f f 46 24 33 -FIXUPS: 8399 23 32 23 d 1b 70 23 4d 23 32 23 d 10 1a f 22 24 6c 23 16 22 -FIXUPS: 86f1 60 29 4f 23 16 b b e 30 fffff663 f 21 49 27 f 21 30 e 30 2a -FIXUPS: 802e 5c 2f 2c 50 29 60 1b 10 22 d 32 38 27 10 8 18 1d 29 12 22 -FIXUPS: df23 d 11 22 1f 15 10 1d d 2f e 1f 17 1c 59 23 1b d 10 d b 1a 27 -FIXUPS: e17a 58 d 3e d 2629 d 27 ffff760b 5a5b a 90 10 c 1d d 68 d 44 7a -FIXUPS: db0d 50 36 d 1d 94 d 2a 1e 1a 2b 26 1d d 39 3c 49 23 ab d 2d ffffbb19 -FIXUPS: 9a59 30 30 23 1b d 10 d b 1a 27 d 58 d 3e d 3b41 d 21 23 1b d 10 -FIXUPS: d801 b 2e 3d a 2b a 1c ffffbbee d 50 d 44 7a d 50 36 d 1d 94 d -FIXUPS: 976a 2e 27 c2 d 2d 22 d 15 1e 1f 15 10 1d d 2f e 1f 17 fffff517 -FIXUPS: 8f40 21 48 13 4d 28 b6 d b5 32 d 47 22 48 23 1b d 10 d b 2e 3d -FIXUPS: 9381 2b a 1c 1b a 90 10 c 80d9 16 18 2f d 34 d 22 10 8 c 1f 20 -FIXUPS: 116c7 5 5 18 e 13 fffff1bd ffff84fb 27 f 21 30 23 1b d 10 d b 38 -FIXUPS: 111a1 30 26 11 33 d 31 23 18 2f d 1e 6 20 d 30 22 15 33 d 31 10 -FIXUPS: 1146a 23 d 2a d 31 d 43 d 11 fffff7ea 18 13 a d 1c 28 19 e 26 32 -FIXUPS: 10e82 d 79 31 2c 13 d 14 23 44 27 22 2b 65 23 18 2f d 1e 6 20 fffff7b5 -FIXUPS: 10958 21 50 13 b 2f 23 d 10 a 15 2d 24 d 2f 1b 3c 23 1f 20 d 3c -FIXUPS: 10c29 23 1f 20 d 3c 25 31 23 cff 9d 23 16 35 7e 24 23 1b 10 d 26 -FIXUPS: 11caf 8 12 3e d 7c 29 23 1b 10 d 26 28 d 3a c a6 2c ffffe965 36 -FIXUPS: 122ef 3f d 4b d 2a d 2c d 48 d 24 20 1b 5 5 18 e 13 fffff22f 80 -FIXUPS: 117cc 1d 5e d 69 6 51 6 98 37 23 fdc 10 2d d 31 74 fffff4d5 36 -FIXUPS: 12009 f 21 30 1b 20 25 e b 11 46 16 32 23 d 4b d 13 20 d 2b 38 -FIXUPS: 122c2 20 835 fffffa02 e 26 14 1b 42 14 1b 35 20 27 d 1b 1b 17 43 -FIXUPS: 12724 18 30 11 11 2e 1b 11 11 20 13 b b 15 27 diff --git a/kauai/OBJ/WINS/CHED.MAP b/kauai/OBJ/WINS/CHED.MAP deleted file mode 100644 index ef705832..00000000 --- a/kauai/OBJ/WINS/CHED.MAP +++ /dev/null @@ -1,5395 +0,0 @@ - ched - - Timestamp is 3070b3b9 (Mon Oct 02 20:53:29 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 00073668H .text CODE - 0002:00000000 000018dcH .bss DATA - 0003:00000000 000048b8H .rdata DATA - 0004:00000000 0000560cH .data DATA - 0004:0000560c 00000004H .CRT$XCA DATA - 0004:00005610 00000004H .CRT$XCC DATA - 0004:00005614 0000010cH .CRT$XCU DATA - 0004:00005720 00000004H .CRT$XCZ DATA - 0004:00005724 00000004H .CRT$XIA DATA - 0004:00005728 00000008H .CRT$XIC DATA - 0004:00005730 00000004H .CRT$XIZ DATA - 0004:00005734 00000004H .CRT$XPA DATA - 0004:00005738 00000004H .CRT$XPZ DATA - 0004:0000573c 00000004H .CRT$XTA DATA - 0004:00005740 00000004H .CRT$XTZ DATA - 0005:00000000 000000a0H .idata$2 DATA - 0005:000000a0 00000028H .idata$3 DATA - 0005:000000c8 000004acH .idata$4 DATA - 0005:00000574 000004acH .idata$5 DATA - 0005:00000a20 000013eeH .idata$6 DATA - 0006:00000000 000002acH .rsrc$01 DATA - 0006:000002b0 000017d8H .rsrc$02 DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 0000d640H .debug$F DATA - 0008:0000ee40 00000000H .debug$G DATA - 0008:0000ee40 00000031H .debug$H DATA - 0008:fff74000 00000000H .debug$P DATA - 0008:fff74000 00000000H .debug$S DATA - 0008:fff74000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003d0 ?ReversePb@@YGXPAXJ@Z 004013d0 f utilcopy.obj - 0001:00000400 ?ReverseRglw@@YGXPAXJ@Z 00401400 f utilcopy.obj - 0001:00000430 ?SwapBlocks@@YGXPAXJJ@Z 00401430 f utilcopy.obj - 0001:00000460 ?SwapPb@@YGXPAX0J@Z 00401460 f utilcopy.obj - 0001:000004b0 ?MoveElement@@YGXPAXJJJ@Z 004014b0 f utilcopy.obj - 0001:00000520 ?FEqualRgb@@YGHPAX0J@Z 00401520 f utilcopy.obj - 0001:00000560 ?CbEqualRgb@@YGJPAX0J@Z 00401560 f utilcopy.obj - 0001:000005c0 ?CopyPb@@YGXPAX0J@Z 004015c0 f utilcopy.obj - 0001:000005f0 ?BltPb@@YGXPAX0J@Z 004015f0 f utilcopy.obj - 0001:00000660 ?FWouldBe@ERS@@SGHJ@Z 00401660 f utilerro.obj - 0001:00000680 ?FIs@ERS@@UAEHJ@Z 00401680 f utilerro.obj - 0001:00000690 ?Cls@ERS@@UAEJXZ 00401690 f utilerro.obj - 0001:000006a0 ??0ERS@@QAE@XZ 004016a0 f utilerro.obj - 0001:000006d0 ?Push@ERS@@UAEXJ@Z 004016d0 f utilerro.obj - 0001:00000720 ?FPop@ERS@@UAEHPAJ@Z 00401720 f utilerro.obj - 0001:00000770 ?Clear@ERS@@UAEXXZ 00401770 f utilerro.obj - 0001:00000790 ?Cerc@ERS@@UAEJXZ 00401790 f utilerro.obj - 0001:000007a0 ?FIn@ERS@@UAEHJ@Z 004017a0 f utilerro.obj - 0001:000007f0 ?ErcGet@ERS@@UAEJJ@Z 004017f0 f utilerro.obj - 0001:00000830 ?Flush@ERS@@UAEXJ@Z 00401830 f utilerro.obj - 0001:000008d0 ??_GERS@@UAEPAXI@Z 004018d0 f utilerro.obj - 0001:000008d0 ??_EERS@@UAEPAXI@Z 004018d0 f utilerro.obj - 0001:00000900 ?LwGcd@@YGJJJ@Z 00401900 f utilint.obj - 0001:00000920 ?LuGcd@@YGKKK@Z 00401920 f utilint.obj - 0001:00000970 ?SortLw@@YGXPAJ0@Z 00401970 f utilint.obj - 0001:00000990 ?MulLw@@YGXJJPAJPAK@Z 00401990 f utilint.obj - 0001:000009b0 ?LuMulDiv@@YGKKKK@Z 004019b0 f utilint.obj - 0001:000009d0 ?MulLu@@YGXKKPAK0@Z 004019d0 f utilint.obj - 0001:000009f0 ?LwMulDivAway@@YGJJJJ@Z 004019f0 f utilint.obj - 0001:00000a50 ?LwDivAway@@YGJJJ@Z 00401a50 f utilint.obj - 0001:00000a80 ?LwRoundAway@@YGJJJ@Z 00401a80 f utilint.obj - 0001:00000ab0 ?LwRoundToward@@YGJJJ@Z 00401ab0 f utilint.obj - 0001:00000ad0 ?LwRoundClosest@@YGJJJ@Z 00401ad0 f utilint.obj - 0001:00000b20 ?FcmpCompareFracs@@YGKJJJJ@Z 00401b20 f utilint.obj - 0001:00000bb0 ?FAdjustIv@@YGHPAJJJJ@Z 00401bb0 f utilint.obj - 0001:00000c00 ?SwapBytesBom@@YGXPAXK@Z 00401c00 f utilint.obj - 0001:00000c60 ?SwapBytesRgsw@@YGXPAXJ@Z 00401c60 f utilint.obj - 0001:00000c90 ?SwapBytesRglw@@YGXPAXJ@Z 00401c90 f utilint.obj - 0001:00000cc0 ??BPT@@QAE?AUtagPOINT@@XZ 00401cc0 f utilint.obj - 0001:00000d20 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 00401d20 f utilint.obj - 0001:00000d40 ?Map@PT@@QAEXPAVRC@@0@Z 00401d40 f utilint.obj - 0001:00000df0 ?Transform@PT@@QAEXK@Z 00401df0 f utilint.obj - 0001:00000e20 ??8RC@@QAEHAAV0@@Z 00401e20 f utilint.obj - 0001:00000e90 ??9RC@@QAEHAAV0@@Z 00401e90 f utilint.obj - 0001:00000f00 ?Union@RC@@QAEXPAV1@0@Z 00401f00 f utilint.obj - 0001:00000f30 ?Union@RC@@QAEXPAV1@@Z 00401f30 f utilint.obj - 0001:00000fb0 ?FIntersect@RC@@QAEHPAV1@0@Z 00401fb0 f utilint.obj - 0001:00001030 ?FIntersect@RC@@QAEHPAV1@@Z 00402030 f utilint.obj - 0001:000010b0 ?Inset@RC@@QAEXJJ@Z 004020b0 f utilint.obj - 0001:000010d0 ?Map@RC@@QAEXPAV1@0@Z 004020d0 f utilint.obj - 0001:000011f0 ?Transform@RC@@QAEXK@Z 004021f0 f utilint.obj - 0001:00001250 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 00402250 f utilint.obj - 0001:00001280 ?Offset@RC@@QAEXJJ@Z 00402280 f utilint.obj - 0001:000012a0 ?OffsetToOrigin@RC@@QAEXXZ 004022a0 f utilint.obj - 0001:000012c0 ?CenterOnRc@RC@@QAEXPAV1@@Z 004022c0 f utilint.obj - 0001:00001310 ?StretchToRc@RC@@QAEXPAV1@@Z 00402310 f utilint.obj - 0001:000013f0 ?FPtIn@RC@@QAEHJJ@Z 004023f0 f utilint.obj - 0001:00001420 ?PinPt@RC@@QAEXPAVPT@@@Z 00402420 f utilint.obj - 0001:00001460 ?PinToRc@RC@@QAEXPAV1@@Z 00402460 f utilint.obj - 0001:000014b0 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 004024b0 f utilint.obj - 0001:000014d0 ??BRC@@QAE?AUtagRECT@@XZ 004024d0 f utilint.obj - 0001:000015a0 ?FContains@RC@@QAEHPAV1@@Z 004025a0 f utilint.obj - 0001:000015e0 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 004025e0 f utilint.obj - 0001:000016c0 ??0USAC@@QAE@XZ 004026c0 f utilint.obj - 0001:000016f0 ?TsCur@USAC@@QAEKXZ 004026f0 f utilint.obj - 0001:00001750 ?Scale@USAC@@QAEXK@Z 00402750 f utilint.obj - 0001:000017c0 ?Set@DVER@@QAEXFF@Z 004027c0 f utilint.obj - 0001:000017e0 ?FReadable@DVER@@QAEHFF@Z 004027e0 f utilint.obj - 0001:00001820 ??_GUSAC@@UAEPAXI@Z 00402820 f utilint.obj - 0001:00001820 ??_EUSAC@@UAEPAXI@Z 00402820 f utilint.obj - 0001:00001840 ?FAllocPv@@YGHPAPAXJKJ@Z 00402840 f utilmem.obj - 0001:00001910 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00402910 f utilmem.obj - 0001:00001a00 ?FreePpv@@YGXPAPAX@Z 00402a00 f utilmem.obj - 0001:00001a40 ?FWouldBe@RND@@SGHJ@Z 00402a40 f utilrnd.obj - 0001:00001a60 ?FIs@RND@@UAEHJ@Z 00402a60 f utilrnd.obj - 0001:00001a70 ?Cls@RND@@UAEJXZ 00402a70 f utilrnd.obj - 0001:00001a80 ?FWouldBe@SFL@@SGHJ@Z 00402a80 f utilrnd.obj - 0001:00001aa0 ?FIs@SFL@@UAEHJ@Z 00402aa0 f utilrnd.obj - 0001:00001ab0 ?Cls@SFL@@UAEJXZ 00402ab0 f utilrnd.obj - 0001:00001ac0 ??0RND@@QAE@K@Z 00402ac0 f utilrnd.obj - 0001:00001b00 ?LwNext@RND@@UAEJJ@Z 00402b00 f utilrnd.obj - 0001:00001b30 ??0SFL@@QAE@K@Z 00402b30 f utilrnd.obj - 0001:00001b60 ??1SFL@@UAE@XZ 00402b60 f utilrnd.obj - 0001:00001b80 ?Shuffle@SFL@@QAEXJ@Z 00402b80 f utilrnd.obj - 0001:00001bc0 ?ShuffleRglw@SFL@@QAEXJPAJ@Z 00402bc0 f utilrnd.obj - 0001:00001c10 ?_ShuffleCore@SFL@@IAEXXZ 00402c10 f utilrnd.obj - 0001:00001c60 ?_FEnsureHq@SFL@@IAEHJ@Z 00402c60 f utilrnd.obj - 0001:00001cd0 ?LwNext@SFL@@UAEJJ@Z 00402cd0 f utilrnd.obj - 0001:00001d60 ??_GRND@@UAEPAXI@Z 00402d60 f utilrnd.obj - 0001:00001d60 ??_ERND@@UAEPAXI@Z 00402d60 f utilrnd.obj - 0001:00001d80 ??_ESFL@@UAEPAXI@Z 00402d80 f utilrnd.obj - 0001:00001d80 ??_GSFL@@UAEPAXI@Z 00402d80 f utilrnd.obj - 0001:00001da0 ??4STN@@QAEAAV0@AAV0@@Z 00402da0 f utilstr.obj - 0001:00001dc0 ?SetRgch@STN@@QAEXPADJ@Z 00402dc0 f utilstr.obj - 0001:00001e00 ?SetSzs@STN@@QAEXPAD@Z 00402e00 f utilstr.obj - 0001:00001e20 ?Delete@STN@@QAEXJJ@Z 00402e20 f utilstr.obj - 0001:00001e80 ?FAppendRgch@STN@@QAEHPADJ@Z 00402e80 f utilstr.obj - 0001:00001ed0 ?FInsertRgch@STN@@QAEHJPADJ@Z 00402ed0 f utilstr.obj - 0001:00001f90 ?FEqualRgch@STN@@QAEHPADJ@Z 00402f90 f utilstr.obj - 0001:00001fc0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402fc0 f utilstr.obj - 0001:00001fe0 ?CbData@STN@@QAEJXZ 00402fe0 f utilstr.obj - 0001:00001ff0 ?GetData@STN@@QAEXPAX@Z 00402ff0 f utilstr.obj - 0001:00002030 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 00403030 f utilstr.obj - 0001:000020c0 ?FSetData@STN@@QAEHPAXJPAJ@Z 004030c0 f utilstr.obj - 0001:000022f0 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 004032f0 f utilstr.obj - 0001:000025c0 ?FFormatSz@STN@@QAAHPADZZ 004035c0 f utilstr.obj - 0001:000025e0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004035e0 f utilstr.obj - 0001:00002960 ?FGetLw@STN@@QAEHPAJJ@Z 00403960 f utilstr.obj - 0001:00002a50 ?FExpandControls@STN@@QAEHXZ 00403a50 f utilstr.obj - 0001:00002b60 ?CchSz@@YGJPAD@Z 00403b60 f utilstr.obj - 0001:00002b80 ?FcmpCompareRgch@@YGKPADJ0J@Z 00403b80 f utilstr.obj - 0001:00002be0 ?FEqualUserRgch@@YGHPADJ0JK@Z 00403be0 f utilstr.obj - 0001:00002cd0 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00403cd0 f utilstr.obj - 0001:00002d40 ?UpperRgchs@@YGXPADJ@Z 00403d40 f utilstr.obj - 0001:00002da0 ?LowerRgchs@@YGXPADJ@Z 00403da0 f utilstr.obj - 0001:00002e00 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00403e00 f utilstr.obj - 0001:00002f00 ?TranslateRgch@@YGXPADJFH@Z 00403f00 f utilstr.obj - 0001:00002f50 ?GrfchFromCh@@YGKD@Z 00403f50 f utilstr.obj - 0001:00003050 ?FAllocHq@@YGHPAPAXJKJ@Z 00404050 f memwin.obj - 0001:000030c0 ?FResizePhq@@YGHPAPAXJKJ@Z 004040c0 f memwin.obj - 0001:00003160 ?FreePhq@@YGXPAPAX@Z 00404160 f memwin.obj - 0001:00003190 ?CbOfHq@@YGJPAX@Z 00404190 f memwin.obj - 0001:000031a0 ?PvLockHq@@YGPAXPAX@Z 004041a0 f memwin.obj - 0001:000031b0 ?UnlockHq@@YGXPAX@Z 004041b0 f memwin.obj - 0001:000031f0 ?FWouldBe@CFL@@SGHJ@Z 004041f0 f chunk.obj - 0001:00003210 ?FIs@CFL@@UAEHJ@Z 00404210 f chunk.obj - 0001:00003220 ?Cls@CFL@@UAEJXZ 00404220 f chunk.obj - 0001:00003230 ?FWouldBe@CGE@@SGHJ@Z 00404230 f chunk.obj - 0001:00003250 ?FIs@CGE@@UAEHJ@Z 00404250 f chunk.obj - 0001:00003260 ?Cls@CGE@@UAEJXZ 00404260 f chunk.obj - 0001:00003270 ??0CFL@@AAE@XZ 00404270 f chunk.obj - 0001:00003290 ??1CFL@@EAE@XZ 00404290 f chunk.obj - 0001:00003330 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00404330 f chunk.obj - 0001:00003400 ?FReopen@CFL@@QAEHXZ 00404400 f chunk.obj - 0001:000035d0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 004045d0 f chunk.obj - 0001:000035f0 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 004045f0 f chunk.obj - 0001:000036a0 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 004046a0 f chunk.obj - 0001:00003730 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00404730 f chunk.obj - 0001:00003770 ?FWriteChunkTree@CFL@@QAEHKKPAVFIL@@JPAJ@Z 00404770 f chunk.obj - 0001:00003940 ?PcflReadForestFromFlo@CFL@@SGPAV1@PAUFLO@@H@Z 00404940 f chunk.obj - 0001:00003c30 ?FForest@CFL@@QAEHKK@Z 00404c30 f chunk.obj - 0001:00003c80 ?SetForest@CFL@@QAEXKKH@Z 00404c80 f chunk.obj - 0001:00003d00 ?PcflReadForest@CFL@@QAEPAV1@KKH@Z 00404d00 f chunk.obj - 0001:00003db0 ?FSetGrfcfl@CFL@@QAEHKK@Z 00404db0 f chunk.obj - 0001:00003e50 ?Release@CFL@@UAEXXZ 00404e50 f chunk.obj - 0001:00003e70 ?_TValidIndex@CFL@@AAEHXZ 00404e70 f chunk.obj - 0001:000041d0 ?_FReadIndex@CFL@@AAEHXZ 004051d0 f chunk.obj - 0001:00004840 ?_ReadFreeMap@CFL@@AAEXXZ 00405840 f chunk.obj - 0001:000048c0 ?FSave@CFL@@QAEHKPAVFNI@@@Z 004058c0 f chunk.obj - 0001:00004be0 ?_FWriteIndex@CFL@@AAEHK@Z 00405be0 f chunk.obj - 0001:00004d30 ?FSaveACopy@CFL@@QAEHKPAVFNI@@@Z 00405d30 f chunk.obj - 0001:00004ee0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00405ee0 f chunk.obj - 0001:00004fe0 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00405fe0 f chunk.obj - 0001:00005040 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00406040 f chunk.obj - 0001:00005080 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00406080 f chunk.obj - 0001:000050e0 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 004060e0 f chunk.obj - 0001:00005130 ?SetPacked@CFL@@QAEXKKH@Z 00406130 f chunk.obj - 0001:000051b0 ?FPacked@CFL@@QAEHKK@Z 004061b0 f chunk.obj - 0001:00005200 ?FUnpackData@CFL@@QAEHKK@Z 00406200 f chunk.obj - 0001:00005290 ?FPackData@CFL@@QAEHKK@Z 00406290 f chunk.obj - 0001:00005330 ?_FCreateExtra@CFL@@AAEHXZ 00406330 f chunk.obj - 0001:00005360 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00406360 f chunk.obj - 0001:00005470 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00406470 f chunk.obj - 0001:00005510 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00406510 f chunk.obj - 0001:00005590 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00406590 f chunk.obj - 0001:000055e0 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 004065e0 f chunk.obj - 0001:000056a0 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 004066a0 f chunk.obj - 0001:00005720 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00406720 f chunk.obj - 0001:00005800 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 00406800 f chunk.obj - 0001:00005820 ?FPutPv@CFL@@QAEHPAXJKK@Z 00406820 f chunk.obj - 0001:00005840 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 00406840 f chunk.obj - 0001:000058a0 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 004068a0 f chunk.obj - 0001:00005ab0 ?SwapData@CFL@@QAEXKKKK@Z 00406ab0 f chunk.obj - 0001:00005ba0 ?SwapChildren@CFL@@QAEXKKKK@Z 00406ba0 f chunk.obj - 0001:00005c70 ?Move@CFL@@QAEXKKKK@Z 00406c70 f chunk.obj - 0001:00005e60 ?Delete@CFL@@QAEXKK@Z 00406e60 f chunk.obj - 0001:00006000 ?SetLoner@CFL@@QAEXKKH@Z 00407000 f chunk.obj - 0001:00006060 ?FLoner@CFL@@QAEHKK@Z 00407060 f chunk.obj - 0001:000060b0 ?CckiRef@CFL@@QAEJKK@Z 004070b0 f chunk.obj - 0001:00006100 ?TIsDescendent@CFL@@QAEHKKKK@Z 00407100 f chunk.obj - 0001:000061d0 ?DeleteChild@CFL@@QAEXKKKKK@Z 004071d0 f chunk.obj - 0001:00006280 ?_FDecRefCount@CFL@@AAEHJ@Z 00407280 f chunk.obj - 0001:000062c0 ?_DeleteCore@CFL@@AAEXJ@Z 004072c0 f chunk.obj - 0001:00006320 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00407320 f chunk.obj - 0001:00006500 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 00407500 f chunk.obj - 0001:00006570 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 00407570 f chunk.obj - 0001:00006630 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 00407630 f chunk.obj - 0001:00006680 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 00407680 f chunk.obj - 0001:00006720 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00407720 f chunk.obj - 0001:000067b0 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 004077b0 f chunk.obj - 0001:000068d0 ?ChangeChid@CFL@@QAEXKKKKKK@Z 004078d0 f chunk.obj - 0001:00006970 ?Ccki@CFL@@QAEJXZ 00407970 f chunk.obj - 0001:00006980 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 00407980 f chunk.obj - 0001:000069f0 ?FGetIcki@CFL@@QAEHKKPAJ@Z 004079f0 f chunk.obj - 0001:00006a10 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 00407a10 f chunk.obj - 0001:00006ac0 ?Ckid@CFL@@QAEJKK@Z 00407ac0 f chunk.obj - 0001:00006b10 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00407b10 f chunk.obj - 0001:00006b90 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00407b90 f chunk.obj - 0001:00006bd0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00407bd0 f chunk.obj - 0001:00006cb0 ?FGetIkid@CFL@@QAEHKKKKKPAJ@Z 00407cb0 f chunk.obj - 0001:00006d10 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00407d10 f chunk.obj - 0001:00006dd0 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 00407dd0 f chunk.obj - 0001:00006ea0 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 00407ea0 f chunk.obj - 0001:00006f00 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 00407f00 f chunk.obj - 0001:00007310 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 00408310 f chunk.obj - 0001:00007530 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 00408530 f chunk.obj - 0001:000075c0 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 004085c0 f chunk.obj - 0001:000075e0 ?FClone@CFL@@QAEHKKPAV1@PAK@Z 004085e0 f chunk.obj - 0001:00007600 ?_Rti@CFL@@AAEJKK@Z 00408600 f chunk.obj - 0001:00007630 ?_FSetRti@CFL@@AAEHKKJ@Z 00408630 f chunk.obj - 0001:00007700 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00408700 f chunk.obj - 0001:000077d0 ??0CGE@@QAE@XZ 004087d0 f chunk.obj - 0001:000077f0 ??1CGE@@UAE@XZ 004087f0 f chunk.obj - 0001:00007820 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00408820 f chunk.obj - 0001:00007860 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00408860 f chunk.obj - 0001:00007a40 ??_ECFL@@EAEPAXI@Z 00408a40 f chunk.obj - 0001:00007a40 ??_GCFL@@EAEPAXI@Z 00408a40 f chunk.obj - 0001:00007a60 ??_ECGE@@UAEPAXI@Z 00408a60 f chunk.obj - 0001:00007a60 ??_GCGE@@UAEPAXI@Z 00408a60 f chunk.obj - 0001:00007a80 ?FWouldBe@CODM@@SGHJ@Z 00408a80 f codec.obj - 0001:00007aa0 ?FIs@CODM@@UAEHJ@Z 00408aa0 f codec.obj - 0001:00007ab0 ?Cls@CODM@@UAEJXZ 00408ab0 f codec.obj - 0001:00007ac0 ?FWouldBe@CODC@@SGHJ@Z 00408ac0 f codec.obj - 0001:00007ae0 ??0CODM@@QAE@PAVCODC@@J@Z 00408ae0 f codec.obj - 0001:00007b20 ??1CODM@@UAE@XZ 00408b20 f codec.obj - 0001:00007ba0 ?SetCfmtDefault@CODM@@QAEXJ@Z 00408ba0 f codec.obj - 0001:00007bb0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00408bb0 f codec.obj - 0001:00007c00 ?FCanDo@CODM@@UAEHJH@Z 00408c00 f codec.obj - 0001:00007c30 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00408c30 f codec.obj - 0001:00007cb0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00408cb0 f codec.obj - 0001:00007d60 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00408d60 f codec.obj - 0001:00007e80 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00408e80 f codec.obj - 0001:00008090 ??_ECODM@@UAEPAXI@Z 00409090 f codec.obj - 0001:00008090 ??_GCODM@@UAEPAXI@Z 00409090 f codec.obj - 0001:000080b0 ?FWouldBe@KCDC@@SGHJ@Z 004090b0 f codkauai.obj - 0001:000080d0 ?FIs@KCDC@@UAEHJ@Z 004090d0 f codkauai.obj - 0001:000080e0 ?Cls@KCDC@@UAEJXZ 004090e0 f codkauai.obj - 0001:000080f0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 004090f0 f codkauai.obj - 0001:00008170 ?Set@BITA@@QAEXPAXJ@Z 00409170 f codkauai.obj - 0001:00008190 ?FWriteBits@BITA@@QAEHKJ@Z 00409190 f codkauai.obj - 0001:00008250 ?FWriteLogEncoded@BITA@@QAEHK@Z 00409250 f codkauai.obj - 0001:000082a0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004092a0 f codkauai.obj - 0001:000085b0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 004095b0 f codkauai.obj - 0001:0000bee0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040cee0 f codkauai.obj - 0001:0000c2c0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040d2c0 f codkauai.obj - 0001:0000e850 ?FWouldBe@BACO@@SGHJ@Z 0040f850 f crf.obj - 0001:0000e870 ?FIs@BACO@@UAEHJ@Z 0040f870 f crf.obj - 0001:0000e880 ?Cls@BACO@@UAEJXZ 0040f880 f crf.obj - 0001:0000e890 ?FWouldBe@RCA@@SGHJ@Z 0040f890 f crf.obj - 0001:0000e8b0 ?FWouldBe@CRF@@SGHJ@Z 0040f8b0 f crf.obj - 0001:0000e8d0 ?FIs@CRF@@UAEHJ@Z 0040f8d0 f crf.obj - 0001:0000e8e0 ?Cls@CRF@@UAEJXZ 0040f8e0 f crf.obj - 0001:0000e8f0 ?FWouldBe@CABO@@SGHJ@Z 0040f8f0 f crf.obj - 0001:0000e910 ?FIs@CABO@@UAEHJ@Z 0040f910 f crf.obj - 0001:0000e920 ?Cls@CABO@@UAEJXZ 0040f920 f crf.obj - 0001:0000e930 ??0BACO@@IAE@XZ 0040f930 f crf.obj - 0001:0000e960 ??1BACO@@MAE@XZ 0040f960 f crf.obj - 0001:0000e990 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0040f990 f crf.obj - 0001:0000e9d0 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0040f9d0 f crf.obj - 0001:0000e9e0 ?CbOnFile@BACO@@UAEJXZ 0040f9e0 f crf.obj - 0001:0000e9f0 ?Release@BACO@@UAEXXZ 0040f9f0 f crf.obj - 0001:0000ea40 ?Detach@BACO@@UAEXXZ 0040fa40 f crf.obj - 0001:0000ea80 ?SetCrep@BACO@@UAEXJ@Z 0040fa80 f crf.obj - 0001:0000eab0 ??0CRF@@IAE@PAVCFL@@J@Z 0040fab0 f crf.obj - 0001:0000eae0 ??1CRF@@UAE@XZ 0040fae0 f crf.obj - 0001:0000eb70 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 0040fb70 f crf.obj - 0001:0000ebc0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 0040fbc0 f crf.obj - 0001:0000eea0 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 0040fea0 f crf.obj - 0001:0000f090 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00410090 f crf.obj - 0001:0000f100 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00410100 f crf.obj - 0001:0000f180 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 00410180 f crf.obj - 0001:0000f1d0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 004101d0 f crf.obj - 0001:0000f220 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00410220 f crf.obj - 0001:0000f2a0 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 004102a0 f crf.obj - 0001:0000f350 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00410350 f crf.obj - 0001:0000f480 ?_FPurgeCb@CRF@@IAEHJJ@Z 00410480 f crf.obj - 0001:0000f5a0 ??_EBACO@@MAEPAXI@Z 004105a0 f crf.obj - 0001:0000f5a0 ??_GBACO@@MAEPAXI@Z 004105a0 f crf.obj - 0001:0000f5c0 ??_GCRF@@UAEPAXI@Z 004105c0 f crf.obj - 0001:0000f5c0 ??_ECRF@@UAEPAXI@Z 004105c0 f crf.obj - 0001:0000f5f0 ?FWouldBe@FIL@@SGHJ@Z 004105f0 f file.obj - 0001:0000f610 ?FIs@FIL@@UAEHJ@Z 00410610 f file.obj - 0001:0000f620 ?Cls@FIL@@UAEJXZ 00410620 f file.obj - 0001:0000f630 ?FWouldBe@BLCK@@SGHJ@Z 00410630 f file.obj - 0001:0000f650 ?FIs@BLCK@@UAEHJ@Z 00410650 f file.obj - 0001:0000f660 ?Cls@BLCK@@UAEJXZ 00410660 f file.obj - 0001:0000f670 ?FWouldBe@MSFIL@@SGHJ@Z 00410670 f file.obj - 0001:0000f6a0 ?FIs@MSFIL@@UAEHJ@Z 004106a0 f file.obj - 0001:0000f6b0 ?Cls@MSFIL@@UAEJXZ 004106b0 f file.obj - 0001:0000f6c0 ??0FIL@@IAE@PAVFNI@@K@Z 004106c0 f file.obj - 0001:0000f730 ??1FIL@@MAE@XZ 00410730 f file.obj - 0001:0000f780 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00410780 f file.obj - 0001:0000f820 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00410820 f file.obj - 0001:0000f8b0 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 004108b0 f file.obj - 0001:0000f940 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00410940 f file.obj - 0001:0000f9a0 ?FSetGrffil@FIL@@QAEHKK@Z 004109a0 f file.obj - 0001:0000fa30 ?Release@FIL@@UAEXXZ 00410a30 f file.obj - 0001:0000fa60 ?GetStnPath@FIL@@QAEXPAVSTN@@@Z 00410a60 f file.obj - 0001:0000fa90 ?SetTemp@FIL@@QAEXH@Z 00410a90 f file.obj - 0001:0000fad0 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 00410ad0 f file.obj - 0001:0000fb40 ?ShutDown@FIL@@SGXXZ 00410b40 f file.obj - 0001:0000fbb0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00410bb0 f file.obj - 0001:0000fc00 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00410c00 f file.obj - 0001:0000fc50 ?FCopy@FLO@@QAEHPAU1@@Z 00410c50 f file.obj - 0001:0000fd20 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 00410d20 f file.obj - 0001:0000fda0 ?FWriteHq@FLO@@QAEHPAXJ@Z 00410da0 f file.obj - 0001:0000fdf0 ?FTranslate@FLO@@QAEHF@Z 00410df0 f file.obj - 0001:00010100 ??0BLCK@@QAE@PAUFLO@@H@Z 00411100 f file.obj - 0001:00010150 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00411150 f file.obj - 0001:00010190 ??0BLCK@@QAE@XZ 00411190 f file.obj - 0001:000101b0 ??1BLCK@@UAE@XZ 004111b0 f file.obj - 0001:000101d0 ?Set@BLCK@@QAEXPAUFLO@@H@Z 004111d0 f file.obj - 0001:00010210 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00411210 f file.obj - 0001:00010250 ?SetHq@BLCK@@QAEXPAPAXH@Z 00411250 f file.obj - 0001:00010290 ?Free@BLCK@@QAEXXZ 00411290 f file.obj - 0001:000102c0 ?HqFree@BLCK@@QAEPAXH@Z 004112c0 f file.obj - 0001:00010370 ?Cb@BLCK@@QAEJH@Z 00411370 f file.obj - 0001:00010390 ?FSetTemp@BLCK@@QAEHJH@Z 00411390 f file.obj - 0001:00010420 ?FMoveMin@BLCK@@QAEHJ@Z 00411420 f file.obj - 0001:00010490 ?FMoveLim@BLCK@@QAEHJ@Z 00411490 f file.obj - 0001:00010500 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00411500 f file.obj - 0001:00010590 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00411590 f file.obj - 0001:00010620 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 00411620 f file.obj - 0001:000106d0 ?FWriteHq@BLCK@@QAEHPAXJH@Z 004116d0 f file.obj - 0001:00010760 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00411760 f file.obj - 0001:000107e0 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 004117e0 f file.obj - 0001:00010880 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 00411880 f file.obj - 0001:00010960 ?FPacked@BLCK@@QAEHPAJ@Z 00411960 f file.obj - 0001:000109a0 ?FPackData@BLCK@@QAEHJ@Z 004119a0 f file.obj - 0001:00010ac0 ?FUnpackData@BLCK@@QAEHXZ 00411ac0 f file.obj - 0001:00010bc0 ?CbMem@BLCK@@QAEJXZ 00411bc0 f file.obj - 0001:00010be0 ??0MSFIL@@QAE@PAVFIL@@@Z 00411be0 f file.obj - 0001:00010c10 ??1MSFIL@@UAE@XZ 00411c10 f file.obj - 0001:00010c40 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 00411c40 f file.obj - 0001:00010ca0 ?PfilRelease@MSFIL@@QAEPAVFIL@@XZ 00411ca0 f file.obj - 0001:00010cb0 ?ReportLine@MSFIL@@UAEXPAD@Z 00411cb0 f file.obj - 0001:00010d00 ?Report@MSFIL@@UAEXPAD@Z 00411d00 f file.obj - 0001:00010d60 ?FError@MSFIL@@UAEHXZ 00411d60 f file.obj - 0001:00010da0 ??_EFIL@@MAEPAXI@Z 00411da0 f file.obj - 0001:00010da0 ??_GFIL@@MAEPAXI@Z 00411da0 f file.obj - 0001:00010dc0 ??_GBLCK@@UAEPAXI@Z 00411dc0 f file.obj - 0001:00010dc0 ??_EBLCK@@UAEPAXI@Z 00411dc0 f file.obj - 0001:00010de0 ??_GMSFIL@@UAEPAXI@Z 00411de0 f file.obj - 0001:00010de0 ??_EMSFIL@@UAEPAXI@Z 00411de0 f file.obj - 0001:00010e50 ?_FOpen@FIL@@IAEHHK@Z 00411e50 f filewin.obj - 0001:00010f50 ?_Close@FIL@@IAEXH@Z 00411f50 f filewin.obj - 0001:00010fc0 ?Flush@FIL@@QAEXXZ 00411fc0 f filewin.obj - 0001:00010ff0 ?_SetFpPos@FIL@@IAEXJ@Z 00411ff0 f filewin.obj - 0001:00011050 ?FSetFpMac@FIL@@QAEHJ@Z 00412050 f filewin.obj - 0001:000110e0 ?FpMac@FIL@@QAEJXZ 004120e0 f filewin.obj - 0001:00011170 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00412170 f filewin.obj - 0001:00011220 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00412220 f filewin.obj - 0001:000112e0 ?FSwapNames@FIL@@QAEHPAV1@@Z 004122e0 f filewin.obj - 0001:000114c0 ?FRename@FIL@@QAEHPAVFNI@@@Z 004124c0 f filewin.obj - 0001:00011580 ?FWouldBe@FNI@@SGHJ@Z 00412580 f fniwin.obj - 0001:000115a0 ?FIs@FNI@@UAEHJ@Z 004125a0 f fniwin.obj - 0001:000115b0 ?Cls@FNI@@UAEJXZ 004125b0 f fniwin.obj - 0001:000115c0 ?SetNil@FNI@@QAEXXZ 004125c0 f fniwin.obj - 0001:000115d0 ??0FNI@@QAE@XZ 004125d0 f fniwin.obj - 0001:00011600 ?FGetOpen@FNI@@QAEHPADPAUHWND__@@@Z 00412600 f fniwin.obj - 0001:000116c0 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 004126c0 f fniwin.obj - 0001:00011780 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00412780 f fniwin.obj - 0001:000118d0 ?FGetUnique@FNI@@QAEHJ@Z 004128d0 f fniwin.obj - 0001:000119e0 ?FGetTemp@FNI@@QAEHXZ 004129e0 f fniwin.obj - 0001:00011a80 ?Ftg@FNI@@QAEJXZ 00412a80 f fniwin.obj - 0001:00011a90 ?Grfvk@FNI@@QAEKXZ 00412a90 f fniwin.obj - 0001:00011ba0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00412ba0 f fniwin.obj - 0001:00011c10 ?FChangeFtg@FNI@@QAEHJ@Z 00412c10 f fniwin.obj - 0001:00011cc0 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00412cc0 f fniwin.obj - 0001:00011d00 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00412d00 f fniwin.obj - 0001:00011d10 ?TExists@FNI@@QAEHXZ 00412d10 f fniwin.obj - 0001:00011e10 ?FDelete@FNI@@QAEHXZ 00412e10 f fniwin.obj - 0001:00011e40 ?FRename@FNI@@QAEHPAV1@@Z 00412e40 f fniwin.obj - 0001:00011e90 ?FEqual@FNI@@QAEHPAV1@@Z 00412e90 f fniwin.obj - 0001:00011eb0 ?_CchExt@FNI@@AAEJXZ 00412eb0 f fniwin.obj - 0001:00011ef0 ?_SetFtgFromName@FNI@@AAEXXZ 00412ef0 f fniwin.obj - 0001:00011f70 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 00412f70 f fniwin.obj - 0001:000120c0 ??_EFNI@@UAEPAXI@Z 004130c0 f fniwin.obj - 0001:000120c0 ??_GFNI@@UAEPAXI@Z 004130c0 f fniwin.obj - 0001:000120e0 ?FWouldBe@APPB@@SGHJ@Z 004130e0 f appb.obj - 0001:00012100 ?FIs@APPB@@UAEHJ@Z 00413100 f appb.obj - 0001:00012110 ?Cls@APPB@@UAEJXZ 00413110 f appb.obj - 0001:00012120 ??0APPB@@QAE@XZ 00413120 f appb.obj - 0001:00012150 ??1APPB@@UAE@XZ 00413150 f appb.obj - 0001:00012170 ?Run@APPB@@UAEXKKJ@Z 00413170 f appb.obj - 0001:000121a0 ?Quit@APPB@@UAEXH@Z 004131a0 f appb.obj - 0001:000121e0 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 004131e0 f appb.obj - 0001:00012200 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 00413200 f appb.obj - 0001:00012260 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 00413260 f appb.obj - 0001:000122b0 ?RefreshCurs@APPB@@UAEXXZ 004132b0 f appb.obj - 0001:000122f0 ?BeginLongOp@APPB@@UAEXXZ 004132f0 f appb.obj - 0001:00012320 ?EndLongOp@APPB@@UAEXH@Z 00413320 f appb.obj - 0001:00012350 ?GrfcustCur@APPB@@UAEKH@Z 00413350 f appb.obj - 0001:000123b0 ?ModifyGrfcust@APPB@@UAEXKK@Z 004133b0 f appb.obj - 0001:000123d0 ?HideCurs@APPB@@UAEXXZ 004133d0 f appb.obj - 0001:000123e0 ?ShowCurs@APPB@@UAEXXZ 004133e0 f appb.obj - 0001:000123f0 ?PositionCurs@APPB@@UAEXJJ@Z 004133f0 f appb.obj - 0001:00012410 ?OnnDefVariable@APPB@@UAEJXZ 00413410 f appb.obj - 0001:00012470 ?OnnDefFixed@APPB@@UAEJXZ 00413470 f appb.obj - 0001:000124f0 ?DypTextDef@APPB@@UAEJXZ 004134f0 f appb.obj - 0001:00012500 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 00413500 f appb.obj - 0001:00012510 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 00413510 f appb.obj - 0001:00012530 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 00413530 f appb.obj - 0001:000126e0 ?_TakeDownToolTip@APPB@@IAEXXZ 004136e0 f appb.obj - 0001:00012710 ?_EnsureToolTip@APPB@@IAEXXZ 00413710 f appb.obj - 0001:00012790 ?ResetToolTip@APPB@@UAEXXZ 00413790 f appb.obj - 0001:000127b0 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 004137b0 f appb.obj - 0001:00012820 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 00413820 f appb.obj - 0001:00012840 ?_FInit@APPB@@MAEHKKJ@Z 00413840 f appb.obj - 0001:00012910 ?_FInitSound@APPB@@MAEHJ@Z 00413910 f appb.obj - 0001:000129a0 ?_FInitMenu@APPB@@MAEHXZ 004139a0 f appb.obj - 0001:000129c0 ?_Loop@APPB@@MAEXXZ 004139c0 f appb.obj - 0001:00012a60 ?_CleanUp@APPB@@MAEXXZ 00413a60 f appb.obj - 0001:00012ab0 ?_Activate@APPB@@MAEXH@Z 00413ab0 f appb.obj - 0001:00012af0 ?TopOfLoop@APPB@@UAEXXZ 00413af0 f appb.obj - 0001:00012b10 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 00413b10 f appb.obj - 0001:00012bc0 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 00413bc0 f appb.obj - 0001:00012bf0 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 00413bf0 f appb.obj - 0001:00012c70 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00413c70 f appb.obj - 0001:00012c90 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00413c90 f appb.obj - 0001:00012cb0 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00413cb0 f appb.obj - 0001:00012e90 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00413e90 f appb.obj - 0001:00012eb0 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00413eb0 f appb.obj - 0001:00012ed0 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00413ed0 f appb.obj - 0001:00013050 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 00414050 f appb.obj - 0001:000130c0 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 004140c0 f appb.obj - 0001:00013180 ?UpdateMarked@APPB@@UAEXXZ 00414180 f appb.obj - 0001:000131f0 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 004141f0 f appb.obj - 0001:00013320 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 00414320 f appb.obj - 0001:00013370 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 00414370 f appb.obj - 0001:000134d0 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 004144d0 f appb.obj - 0001:000135a0 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 004145a0 f appb.obj - 0001:00013650 ?_FSetProp@APPB@@IAEHJJ@Z 00414650 f appb.obj - 0001:000136e0 ?FSetProp@APPB@@UAEHJJ@Z 004146e0 f appb.obj - 0001:000138b0 ?FGetProp@APPB@@UAEHJPAJ@Z 004148b0 f appb.obj - 0001:00013960 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 00414960 f appb.obj - 0001:00013a50 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 00414a50 f appb.obj - 0001:00013b90 ?FModalLoop@APPB@@UAEHPAJ@Z 00414b90 f appb.obj - 0001:00013bd0 ?EndModal@APPB@@UAEXJ@Z 00414bd0 f appb.obj - 0001:00013be0 ?PopModal@APPB@@UAEXXZ 00414be0 f appb.obj - 0001:00013c90 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 00414c90 f appb.obj - 0001:00013cc0 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 00414cc0 f appb.obj - 0001:00013d10 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 00414d10 f appb.obj - 0001:00013d90 ?FAllowScreenSaver@APPB@@UAEHXZ 00414d90 f appb.obj - 0001:00013db0 ??_GAPPB@@UAEPAXI@Z 00414db0 f appb.obj - 0001:00013db0 ??_EAPPB@@UAEPAXI@Z 00414db0 f appb.obj - 0001:00013e60 ??_9@$BMA@A 00414e60 f appb.obj - 0001:00013e70 ??_9@$BME@A 00414e70 f appb.obj - 0001:00013e80 ??_9@$BMI@A 00414e80 f appb.obj - 0001:00013e90 ??_9@$BBBE@A 00414e90 f appb.obj - 0001:00013ea0 ??_9@$BLI@A 00414ea0 f appb.obj - 0001:00013eb0 ??_9@$BLM@A 00414eb0 f appb.obj - 0001:00013ec0 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 00414ec0 f appb.obj - 0001:00013ed0 ?FWouldBe@CLOK@@SGHJ@Z 00414ed0 f clok.obj - 0001:00013ef0 ?FIs@CLOK@@UAEHJ@Z 00414ef0 f clok.obj - 0001:00013f00 ?Cls@CLOK@@UAEJXZ 00414f00 f clok.obj - 0001:00013f20 ??0CLOK@@QAE@JK@Z 00414f20 f clok.obj - 0001:00013f70 ??1CLOK@@UAE@XZ 00414f70 f clok.obj - 0001:00013fc0 ?PclokFromHid@CLOK@@SGPAV1@J@Z 00414fc0 f clok.obj - 0001:00013fe0 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 00414fe0 f clok.obj - 0001:00014010 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 00415010 f clok.obj - 0001:00014050 ?Start@CLOK@@QAEXK@Z 00415050 f clok.obj - 0001:000140a0 ?Stop@CLOK@@QAEXXZ 004150a0 f clok.obj - 0001:000140d0 ?TimCur@CLOK@@QAEKH@Z 004150d0 f clok.obj - 0001:00014110 ?FSetAlarm@CLOK@@QAEHJPAVCMH@@JH@Z 00415110 f clok.obj - 0001:000141e0 ?FCmdAll@CLOK@@UAEHPAUCMD@@@Z 004151e0 f clok.obj - 0001:00014390 ??_ECLOK@@UAEPAXI@Z 00415390 f clok.obj - 0001:00014390 ??_GCLOK@@UAEPAXI@Z 00415390 f clok.obj - 0001:000143b0 ??_9@$BCE@A 004153b0 f clok.obj - 0001:00014450 ?Pcmm@CLOK@@MAEPAUCMM@CMH@@XZ 00415450 f clok.obj - 0001:00014460 ?FWouldBe@CMH@@SGHJ@Z 00415460 f cmd.obj - 0001:00014480 ?FIs@CMH@@UAEHJ@Z 00415480 f cmd.obj - 0001:00014490 ?Cls@CMH@@UAEJXZ 00415490 f cmd.obj - 0001:000144a0 ?FWouldBe@CEX@@SGHJ@Z 004154a0 f cmd.obj - 0001:000144c0 ?FIs@CEX@@UAEHJ@Z 004154c0 f cmd.obj - 0001:000144d0 ?Cls@CEX@@UAEJXZ 004154d0 f cmd.obj - 0001:000144e0 ?HidUnique@CMH@@SGJJ@Z 004154e0 f cmd.obj - 0001:00014540 ??0CMH@@QAE@J@Z 00415540 f cmd.obj - 0001:00014560 ??1CMH@@UAE@XZ 00415560 f cmd.obj - 0001:00014590 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 00415590 f cmd.obj - 0001:00014630 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 00415630 f cmd.obj - 0001:000146a0 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 004156a0 f cmd.obj - 0001:00014740 ??0CEX@@IAE@XZ 00415740 f cmd.obj - 0001:00014760 ??1CEX@@UAE@XZ 00415760 f cmd.obj - 0001:00014820 ?PcexNew@CEX@@SGPAV1@JJ@Z 00415820 f cmd.obj - 0001:00014870 ?_FInit@CEX@@MAEHJJ@Z 00415870 f cmd.obj - 0001:000148b0 ?StopRecording@CEX@@QAEXXZ 004158b0 f cmd.obj - 0001:00014a00 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00415a00 f cmd.obj - 0001:00014bd0 ?StopPlaying@CEX@@QAEXXZ 00415bd0 f cmd.obj - 0001:00014c40 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 00415c40 f cmd.obj - 0001:00014dc0 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 00415dc0 f cmd.obj - 0001:00014e10 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 00415e10 f cmd.obj - 0001:00014eb0 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 00415eb0 f cmd.obj - 0001:00014f40 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 00415f40 f cmd.obj - 0001:00015040 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 00416040 f cmd.obj - 0001:000150b0 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 004160b0 f cmd.obj - 0001:00015100 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00416100 f cmd.obj - 0001:00015150 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 00416150 f cmd.obj - 0001:00015180 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 00416180 f cmd.obj - 0001:000151b0 ?FCidIn@CEX@@UAEHJ@Z 004161b0 f cmd.obj - 0001:00015200 ?FlushCid@CEX@@UAEXJ@Z 00416200 f cmd.obj - 0001:00015270 ?_TGetNextCmd@CEX@@MAEHXZ 00416270 f cmd.obj - 0001:00015390 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 00416390 f cmd.obj - 0001:000153c0 ?_CleanUpCmd@CEX@@MAEXXZ 004163c0 f cmd.obj - 0001:00015440 ?FDispatchNextCmd@CEX@@UAEHXZ 00416440 f cmd.obj - 0001:00015520 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00416520 f cmd.obj - 0001:00015550 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00416550 f cmd.obj - 0001:00015610 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 00416610 f cmd.obj - 0001:00015660 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 00416660 f cmd.obj - 0001:000156c0 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 004166c0 f cmd.obj - 0001:000156e0 ?EndMouseTracking@CEX@@UAEXXZ 004166e0 f cmd.obj - 0001:00015720 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 00416720 f cmd.obj - 0001:00015730 ?Suspend@CEX@@UAEXH@Z 00416730 f cmd.obj - 0001:00015780 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 00416780 f cmd.obj - 0001:000157a0 ??_GCMH@@UAEPAXI@Z 004167a0 f cmd.obj - 0001:000157a0 ??_ECMH@@UAEPAXI@Z 004167a0 f cmd.obj - 0001:000157c0 ??_GCEX@@UAEPAXI@Z 004167c0 f cmd.obj - 0001:000157c0 ??_ECEX@@UAEPAXI@Z 004167c0 f cmd.obj - 0001:00015870 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 00416870 f cmd.obj - 0001:00015880 ?FWouldBe@CURS@@SGHJ@Z 00416880 f cursor.obj - 0001:000158a0 ?FIs@CURS@@UAEHJ@Z 004168a0 f cursor.obj - 0001:000158b0 ?Cls@CURS@@UAEJXZ 004168b0 f cursor.obj - 0001:000158c0 ??1CURS@@MAE@XZ 004168c0 f cursor.obj - 0001:000158e0 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 004168e0 f cursor.obj - 0001:00015c20 ?Set@CURS@@QAEXXZ 00416c20 f cursor.obj - 0001:00015c40 ??_GCURS@@MAEPAXI@Z 00416c40 f cursor.obj - 0001:00015c40 ??_ECURS@@MAEPAXI@Z 00416c40 f cursor.obj - 0001:00015d00 ?FWouldBe@GNV@@SGHJ@Z 00416d00 f gfx.obj - 0001:00015d20 ?FIs@GNV@@UAEHJ@Z 00416d20 f gfx.obj - 0001:00015d30 ?Cls@GNV@@UAEJXZ 00416d30 f gfx.obj - 0001:00015d40 ?FWouldBe@GPT@@SGHJ@Z 00416d40 f gfx.obj - 0001:00015d60 ?FIs@GPT@@UAEHJ@Z 00416d60 f gfx.obj - 0001:00015d70 ?Cls@GPT@@UAEJXZ 00416d70 f gfx.obj - 0001:00015d80 ?FWouldBe@NTL@@SGHJ@Z 00416d80 f gfx.obj - 0001:00015da0 ?FIs@NTL@@UAEHJ@Z 00416da0 f gfx.obj - 0001:00015db0 ?Cls@NTL@@UAEJXZ 00416db0 f gfx.obj - 0001:00015dc0 ?SetFromLw@ACR@@QAEXJ@Z 00416dc0 f gfx.obj - 0001:00015dd0 ?LwGet@ACR@@QBEJXZ 00416dd0 f gfx.obj - 0001:00015de0 ?GetClr@ACR@@QAEXPAUCLR@@@Z 00416de0 f gfx.obj - 0001:00015e00 ?MoveOrigin@APT@@QAEXJJ@Z 00416e00 f gfx.obj - 0001:00015e70 ??0GNV@@QAE@PAVGPT@@@Z 00416e70 f gfx.obj - 0001:00015eb0 ??0GNV@@QAE@PAVGOB@@@Z 00416eb0 f gfx.obj - 0001:00015ef0 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 00416ef0 f gfx.obj - 0001:00015f30 ??1GNV@@UAE@XZ 00416f30 f gfx.obj - 0001:00015f60 ?_Init@GNV@@AAEXPAVGPT@@@Z 00416f60 f gfx.obj - 0001:00016010 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 00417010 f gfx.obj - 0001:00016080 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00417080 f gfx.obj - 0001:000160f0 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 004170f0 f gfx.obj - 0001:00016130 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00417130 f gfx.obj - 0001:000161b0 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 004171b0 f gfx.obj - 0001:00016200 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 00417200 f gfx.obj - 0001:00016240 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 00417240 f gfx.obj - 0001:00016310 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 00417310 f gfx.obj - 0001:00016410 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 00417410 f gfx.obj - 0001:00016440 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 00417440 f gfx.obj - 0001:00016480 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 00417480 f gfx.obj - 0001:00016540 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 00417540 f gfx.obj - 0001:000165e0 ?IntersectRcVis@GNV@@QAEXPAVRC@@@Z 004175e0 f gfx.obj - 0001:00016660 ?ClipRc@GNV@@QAEXPAVRC@@@Z 00417660 f gfx.obj - 0001:00016740 ?SetPenSize@GNV@@QAEXJJ@Z 00417740 f gfx.obj - 0001:00016780 ?SetFont@GNV@@QAEXJKJJJ@Z 00417780 f gfx.obj - 0001:000167c0 ?SetOnn@GNV@@QAEXJ@Z 004177c0 f gfx.obj - 0001:000167d0 ?SetFontAlign@GNV@@QAEXJJ@Z 004177d0 f gfx.obj - 0001:000167f0 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 004177f0 f gfx.obj - 0001:00016850 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 00417850 f gfx.obj - 0001:00016880 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 00417880 f gfx.obj - 0001:000168f0 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 004178f0 f gfx.obj - 0001:00016950 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 00417950 f gfx.obj - 0001:00016a00 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 00417a00 f gfx.obj - 0001:00016b60 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 00417b60 f gfx.obj - 0001:00016bf0 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00417bf0 f gfx.obj - 0001:00016ea0 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00417ea0 f gfx.obj - 0001:00017250 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418250 f gfx.obj - 0001:00017a50 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418a50 f gfx.obj - 0001:00017c50 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418c50 f gfx.obj - 0001:00018180 ?DrawPic@GNV@@QAEXPAVPIC@@PAVRC@@@Z 00419180 f gfx.obj - 0001:000181c0 ?DrawMbmp@GNV@@QAEXPAVMBMP@@PAVRC@@@Z 004191c0 f gfx.obj - 0001:00018200 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 00419200 f gfx.obj - 0001:00018280 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 00419280 f gfx.obj - 0001:000182d0 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 004192d0 f gfx.obj - 0001:00018330 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00419330 f gfx.obj - 0001:00018350 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 00419350 f gfx.obj - 0001:00018370 ?FInitGfx@@YGHXZ 00419370 f gfx.obj - 0001:00018380 ??0NTL@@QAE@XZ 00419380 f gfx.obj - 0001:000183a0 ??1NTL@@UAE@XZ 004193a0 f gfx.obj - 0001:000183d0 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 004193d0 f gfx.obj - 0001:000183f0 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 004193f0 f gfx.obj - 0001:00018410 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 00419410 f gfx.obj - 0001:00018440 ?OnnMac@NTL@@QAEJXZ 00419440 f gfx.obj - 0001:00018450 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00419450 f gfx.obj - 0001:00018910 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00419910 f gfx.obj - 0001:00018dd0 ??_GGNV@@UAEPAXI@Z 00419dd0 f gfx.obj - 0001:00018dd0 ??_EGNV@@UAEPAXI@Z 00419dd0 f gfx.obj - 0001:00018df0 ??_ENTL@@UAEPAXI@Z 00419df0 f gfx.obj - 0001:00018df0 ??_GNTL@@UAEPAXI@Z 00419df0 f gfx.obj - 0001:00018e10 ?FWouldBe@GOB@@SGHJ@Z 00419e10 f gob.obj - 0001:00018e30 ?FIs@GOB@@UAEHJ@Z 00419e30 f gob.obj - 0001:00018e40 ?Cls@GOB@@UAEJXZ 00419e40 f gob.obj - 0001:00018e50 ?FWouldBe@GTE@@SGHJ@Z 00419e50 f gob.obj - 0001:00018e70 ?FIs@GTE@@UAEHJ@Z 00419e70 f gob.obj - 0001:00018e80 ?Cls@GTE@@UAEJXZ 00419e80 f gob.obj - 0001:00018e90 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 00419e90 f gob.obj - 0001:00018f20 ?ShutDown@GOB@@SGXXZ 00419f20 f gob.obj - 0001:00018f60 ??0GOB@@QAE@PAUGCB@@@Z 00419f60 f gob.obj - 0001:00018f90 ?_Init@GOB@@IAEXPAUGCB@@@Z 00419f90 f gob.obj - 0001:00019030 ??0GOB@@QAE@J@Z 0041a030 f gob.obj - 0001:00019090 ?Release@GOB@@UAEXXZ 0041a090 f gob.obj - 0001:000190e0 ??1GOB@@MAE@XZ 0041a0e0 f gob.obj - 0001:00019180 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 0041a180 f gob.obj - 0001:00019220 ?BringToFront@GOB@@QAEXXZ 0041a220 f gob.obj - 0001:00019230 ?SendBehind@GOB@@QAEXPAV1@@Z 0041a230 f gob.obj - 0001:00019290 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 0041a290 f gob.obj - 0001:000193d0 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 0041a3d0 f gob.obj - 0001:000194c0 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 0041a4c0 f gob.obj - 0001:00019630 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 0041a630 f gob.obj - 0001:00019a30 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 0041aa30 f gob.obj - 0001:00019e00 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 0041ae00 f gob.obj - 0001:0001a240 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 0041b240 f gob.obj - 0001:0001a250 ?Maximize@GOB@@UAEXXZ 0041b250 f gob.obj - 0001:0001a280 ?SetPos@GOB@@QAEXPAVRC@@0@Z 0041b280 f gob.obj - 0001:0001a300 ?GetPos@GOB@@QAEXPAVRC@@0@Z 0041b300 f gob.obj - 0001:0001a350 ?SetRcFromHwnd@GOB@@QAEXXZ 0041b350 f gob.obj - 0001:0001a360 ?GetRc@GOB@@QAEXPAVRC@@J@Z 0041b360 f gob.obj - 0001:0001a3c0 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 0041b3c0 f gob.obj - 0001:0001a420 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 0041b420 f gob.obj - 0001:0001a480 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 0041b480 f gob.obj - 0001:0001a4a0 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 0041b4a0 f gob.obj - 0001:0001a4f0 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 0041b4f0 f gob.obj - 0001:0001a630 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 0041b630 f gob.obj - 0001:0001a650 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 0041b650 f gob.obj - 0001:0001a6d0 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 0041b6d0 f gob.obj - 0001:0001a760 ?FPtIn@GOB@@UAEHJJ@Z 0041b760 f gob.obj - 0001:0001a7a0 ?FPtInBounds@GOB@@UAEHJJ@Z 0041b7a0 f gob.obj - 0001:0001a7e0 ?MouseDown@GOB@@UAEXJJJK@Z 0041b7e0 f gob.obj - 0001:0001a880 ?_SetRcCur@GOB@@AAEXXZ 0041b880 f gob.obj - 0001:0001aae0 ?PgobPrevSib@GOB@@QAEPAV1@XZ 0041bae0 f gob.obj - 0001:0001ab20 ?PgobLastChild@GOB@@QAEPAV1@XZ 0041bb20 f gob.obj - 0001:0001ab40 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 0041bb40 f gob.obj - 0001:0001ab80 ?PgobMdiActive@GOB@@SGPAV1@XZ 0041bb80 f gob.obj - 0001:0001aba0 ?PgobFromCls@GOB@@QAEPAV1@J@Z 0041bba0 f gob.obj - 0001:0001ac00 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 0041bc00 f gob.obj - 0001:0001ac30 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 0041bc30 f gob.obj - 0001:0001ac60 ?PgobFromHid@GOB@@QAEPAV1@J@Z 0041bc60 f gob.obj - 0001:0001acc0 ?PgobFromGrid@GOB@@QAEPAV1@J@Z 0041bcc0 f gob.obj - 0001:0001ad20 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 0041bd20 f gob.obj - 0001:0001ad30 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 0041bd30 f gob.obj - 0001:0001ad40 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 0041bd40 f gob.obj - 0001:0001ad50 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 0041bd50 f gob.obj - 0001:0001ad60 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 0041bd60 f gob.obj - 0001:0001ad70 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 0041bd70 f gob.obj - 0001:0001ad80 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 0041bd80 f gob.obj - 0001:0001ada0 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 0041bda0 f gob.obj - 0001:0001b1c0 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 0041c1c0 f gob.obj - 0001:0001b1d0 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 0041c1d0 f gob.obj - 0001:0001b1e0 ?LwState@GOB@@UAEJXZ 0041c1e0 f gob.obj - 0001:0001b1f0 ??0GTE@@QAE@XZ 0041c1f0 f gob.obj - 0001:0001b210 ?Init@GTE@@QAEXPAVGOB@@K@Z 0041c210 f gob.obj - 0001:0001b240 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 0041c240 f gob.obj - 0001:0001b350 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 0041c350 f gob.obj - 0001:0001b360 ?_NewRc@GOB@@MAEXXZ 0041c360 f gob.obj - 0001:0001b370 ?_ActivateHwnd@GOB@@MAEXH@Z 0041c370 f gob.obj - 0001:0001b380 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 0041c380 f gob.obj - 0001:0001b390 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 0041c390 f gob.obj - 0001:0001b3a0 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 0041c3a0 f gob.obj - 0001:0001b3b0 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 0041c3b0 f gob.obj - 0001:0001b3c0 ??_EGOB@@MAEPAXI@Z 0041c3c0 f gob.obj - 0001:0001b3c0 ??_GGOB@@MAEPAXI@Z 0041c3c0 f gob.obj - 0001:0001b3e0 ??_GGTE@@UAEPAXI@Z 0041c3e0 f gob.obj - 0001:0001b3e0 ??_EGTE@@UAEPAXI@Z 0041c3e0 f gob.obj - 0001:0001b400 ??_9@$BHA@A 0041c400 f gob.obj - 0001:0001b410 ??_9@$BHE@A 0041c410 f gob.obj - 0001:0001b420 ??_9@$BFM@A 0041c420 f gob.obj - 0001:0001b430 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 0041c430 f mbmpgui.obj - 0001:0001b980 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 0041c980 f mbmpgui.obj - 0001:0001bcc0 ?FWouldBe@REGN@@SGHJ@Z 0041ccc0 f region.obj - 0001:0001bce0 ?FIs@REGN@@UAEHJ@Z 0041cce0 f region.obj - 0001:0001bcf0 ?Cls@REGN@@UAEJXZ 0041ccf0 f region.obj - 0001:0001bd00 ?FWouldBe@REGSC@@SGHJ@Z 0041cd00 f region.obj - 0001:0001bd20 ?FIs@REGSC@@UAEHJ@Z 0041cd20 f region.obj - 0001:0001bd30 ?Cls@REGSC@@UAEJXZ 0041cd30 f region.obj - 0001:0001bd40 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 0041cd40 f region.obj - 0001:0001bdf0 ?FStartRow@REGBL@@QAEHJJ@Z 0041cdf0 f region.obj - 0001:0001bea0 ?EndRow@REGBL@@QAEXXZ 0041cea0 f region.obj - 0001:0001bf60 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 0041cf60 f region.obj - 0001:0001c020 ??0REGSC@@QAE@XZ 0041d020 f region.obj - 0001:0001c040 ??1REGSC@@UAE@XZ 0041d040 f region.obj - 0001:0001c060 ?Free@REGSC@@QAEXXZ 0041d060 f region.obj - 0001:0001c090 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 0041d090 f region.obj - 0001:0001c0f0 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 0041d0f0 f region.obj - 0001:0001c110 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 0041d110 f region.obj - 0001:0001c210 ?_ScanNextCore@REGSC@@IAEXXZ 0041d210 f region.obj - 0001:0001c350 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 0041d350 f region.obj - 0001:0001c3a0 ??1REGN@@UAE@XZ 0041d3a0 f region.obj - 0001:0001c3d0 ?SetRc@REGN@@QAEXPAVRC@@@Z 0041d3d0 f region.obj - 0001:0001c430 ?Offset@REGN@@QAEXJJ@Z 0041d430 f region.obj - 0001:0001c460 ?FEmpty@REGN@@QAEHPAVRC@@@Z 0041d460 f region.obj - 0001:0001c4b0 ?FIsRc@REGN@@QAEHPAVRC@@@Z 0041d4b0 f region.obj - 0001:0001c4e0 ?FUnion@REGN@@QAEHPAV1@0@Z 0041d4e0 f region.obj - 0001:0001c600 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 0041d600 f region.obj - 0001:0001c730 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0041d730 f region.obj - 0001:0001ca50 ?FIntersect@REGN@@QAEHPAV1@0@Z 0041da50 f region.obj - 0001:0001cb80 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0041db80 f region.obj - 0001:0001ce80 ?FDiff@REGN@@QAEHPAV1@0@Z 0041de80 f region.obj - 0001:0001cf80 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 0041df80 f region.obj - 0001:0001d090 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0041e090 f region.obj - 0001:0001d3c0 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 0041e3c0 f region.obj - 0001:0001d630 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 0041e630 f region.obj - 0001:0001d690 ??_GREGN@@UAEPAXI@Z 0041e690 f region.obj - 0001:0001d690 ??_EREGN@@UAEPAXI@Z 0041e690 f region.obj - 0001:0001d6b0 ?XpFetch@REGSC@@QAEJXZ 0041e6b0 f region.obj - 0001:0001d730 ??_EREGBL@@UAEPAXI@Z 0041e730 f region.obj - 0001:0001d730 ??_GREGBL@@UAEPAXI@Z 0041e730 f region.obj - 0001:0001d770 ??_EREGSC@@UAEPAXI@Z 0041e770 f region.obj - 0001:0001d770 ??_GREGSC@@UAEPAXI@Z 0041e770 f region.obj - 0001:0001d820 ?FWouldBe@PIC@@SGHJ@Z 0041e820 f pic.obj - 0001:0001d840 ?FIs@PIC@@UAEHJ@Z 0041e840 f pic.obj - 0001:0001d850 ?Cls@PIC@@UAEJXZ 0041e850 f pic.obj - 0001:0001d860 ?GetRc@PIC@@QAEXPAVRC@@@Z 0041e860 f pic.obj - 0001:0001d940 _WinMain@16 0041e940 f appbwin.obj - 0001:0001d980 ?Abort@APPB@@UAEXXZ 0041e980 f appbwin.obj - 0001:0001d9a0 ?_FInitOS@APPB@@MAEHXZ 0041e9a0 f appbwin.obj - 0001:0001db30 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 0041eb30 f appbwin.obj - 0001:0001db80 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 0041eb80 f appbwin.obj - 0001:0001dc20 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 0041ec20 f appbwin.obj - 0001:0001dd10 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 0041ed10 f appbwin.obj - 0001:0001ddd0 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 0041edd0 f appbwin.obj - 0001:0001dee0 ?FlushUserEvents@APPB@@UAEXK@Z 0041eee0 f appbwin.obj - 0001:0001df40 ?_ShutDownViewer@APPB@@IAEXXZ 0041ef40 f appbwin.obj - 0001:0001df70 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 0041ef70 f appbwin.obj - 0001:0001dff0 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0041eff0 f appbwin.obj - 0001:0001e7c0 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 0041f7c0 f appbwin.obj - 0001:0001e830 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0041f830 f appbwin.obj - 0001:0001e920 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0041f920 f appbwin.obj - 0001:0001ede0 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 0041fde0 f appbwin.obj - 0001:0001ef30 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 0041ff30 f gfxwin.obj - 0001:0001ef90 ?_Scr@ACR@@AAEKXZ 0041ff90 f gfxwin.obj - 0001:0001efd0 ?DrawDib@GNV@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAVRC@@@Z 0041ffd0 f gfxwin.obj - 0001:0001f010 ?Flush@GPT@@SGXXZ 00420010 f gfxwin.obj - 0001:0001f020 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 00420020 f gfxwin.obj - 0001:0001f4d0 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 004204d0 f gfxwin.obj - 0001:0001f520 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 00420520 f gfxwin.obj - 0001:0001f5f0 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 004205f0 f gfxwin.obj - 0001:0001f650 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 00420650 f gfxwin.obj - 0001:0001f6a0 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 004206a0 f gfxwin.obj - 0001:0001f750 ??1GPT@@EAE@XZ 00420750 f gfxwin.obj - 0001:0001f7f0 ?_Scr@GPT@@AAEKVACR@@@Z 004207f0 f gfxwin.obj - 0001:0001f870 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 00420870 f gfxwin.obj - 0001:0001fbd0 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 00420bd0 f gfxwin.obj - 0001:0001fc20 ?CbRow@GPT@@QAEJXZ 00420c20 f gfxwin.obj - 0001:0001fc30 ?CbitPixel@GPT@@QAEJXZ 00420c30 f gfxwin.obj - 0001:0001fc80 ?Lock@GPT@@QAEXXZ 00420c80 f gfxwin.obj - 0001:0001fc90 ?Unlock@GPT@@QAEXXZ 00420c90 f gfxwin.obj - 0001:0001fcb0 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00420cb0 f gfxwin.obj - 0001:0001fce0 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00420ce0 f gfxwin.obj - 0001:0001fd30 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 00420d30 f gfxwin.obj - 0001:0001fdf0 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 00420df0 f gfxwin.obj - 0001:0001fe20 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 00420e20 f gfxwin.obj - 0001:0001fe50 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 00420e50 f gfxwin.obj - 0001:00020000 ?_EnsurePalette@GPT@@AAEXXZ 00421000 f gfxwin.obj - 0001:000200c0 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 004210c0 f gfxwin.obj - 0001:000202e0 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 004212e0 f gfxwin.obj - 0001:00020320 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 00421320 f gfxwin.obj - 0001:00020500 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 00421500 f gfxwin.obj - 0001:000205c0 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 004215c0 f gfxwin.obj - 0001:00020690 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 00421690 f gfxwin.obj - 0001:00020710 ?_SetStockBrush@GPT@@AAEXH@Z 00421710 f gfxwin.obj - 0001:00020780 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 00421780 f gfxwin.obj - 0001:00020850 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 00421850 f gfxwin.obj - 0001:00020c30 ?DrawPic@GPT@@QAEXPAVPIC@@PAUtagRECT@@PAUGDD@@@Z 00421c30 f gfxwin.obj - 0001:00020ca0 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 00421ca0 f gfxwin.obj - 0001:00021000 ?DrawDib@GPT@@QAEXPAXPAUtagBITMAPINFOHEADER@@PAUtagRECT@@PAUGDD@@@Z 00422000 f gfxwin.obj - 0001:00021080 ?FInit@NTL@@QAEHXZ 00422080 f gfxwin.obj - 0001:00021140 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 00422140 f gfxwin.obj - 0001:000211a0 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 004221a0 f gfxwin.obj - 0001:00021230 ?FFixedPitch@NTL@@QAEHJ@Z 00422230 f gfxwin.obj - 0001:00021260 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 00422260 f gfxwin.obj - 0001:000212c0 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 004222c0 f gfxwin.obj - 0001:000212f0 ??_GGPT@@EAEPAXI@Z 004222f0 f gfxwin.obj - 0001:000212f0 ??_EGPT@@EAEPAXI@Z 004222f0 f gfxwin.obj - 0001:00021310 ?FInitScreen@GOB@@SGHKJ@Z 00422310 f gobwin.obj - 0001:00021380 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 00422380 f gobwin.obj - 0001:000213e0 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 004223e0 f gobwin.obj - 0001:00021440 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 00422440 f gobwin.obj - 0001:00021470 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 00422470 f gobwin.obj - 0001:00021570 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 00422570 f gobwin.obj - 0001:000215f0 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 004225f0 f gobwin.obj - 0001:00021690 ?Clean@GOB@@UAEXXZ 00422690 f gobwin.obj - 0001:00021710 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 00422710 f gobwin.obj - 0001:00021750 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 00422750 f gobwin.obj - 0001:00021830 ?FWouldBe@MUB@@SGHJ@Z 00422830 f menuwin.obj - 0001:00021850 ?FIs@MUB@@UAEHJ@Z 00422850 f menuwin.obj - 0001:00021860 ?Cls@MUB@@UAEJXZ 00422860 f menuwin.obj - 0001:00021870 ??1MUB@@UAE@XZ 00422870 f menuwin.obj - 0001:00021890 ?PmubNew@MUB@@SGPAV1@K@Z 00422890 f menuwin.obj - 0001:00021920 ?Set@MUB@@UAEXXZ 00422920 f menuwin.obj - 0001:00021970 ?Clean@MUB@@UAEXXZ 00422970 f menuwin.obj - 0001:00021ab0 ?EnqueueWcid@MUB@@UAEXJ@Z 00422ab0 f menuwin.obj - 0001:00021af0 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 00422af0 f menuwin.obj - 0001:00021cf0 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 00422cf0 f menuwin.obj - 0001:00021f80 ?FRemoveAllListCid@MUB@@UAEHJ@Z 00422f80 f menuwin.obj - 0001:00022130 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 00423130 f menuwin.obj - 0001:00022290 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 00423290 f menuwin.obj - 0001:000223d0 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 004233d0 f menuwin.obj - 0001:00022460 ?_FInitLists@MUB@@AAEHXZ 00423460 f menuwin.obj - 0001:00022760 ??_EMUB@@UAEPAXI@Z 00423760 f menuwin.obj - 0001:00022760 ??_GMUB@@UAEPAXI@Z 00423760 f menuwin.obj - 0001:00022810 ??0PIC@@IAE@XZ 00423810 f picwin.obj - 0001:00022840 ??1PIC@@UAE@XZ 00423840 f picwin.obj - 0001:00022860 ?PpicRead@PIC@@SGPAV1@PAVBLCK@@@Z 00423860 f picwin.obj - 0001:00022980 ?CbOnFile@PIC@@UAEJXZ 00423980 f picwin.obj - 0001:000229a0 ?FWrite@PIC@@UAEHPAVBLCK@@@Z 004239a0 f picwin.obj - 0001:00022a80 ?PpicReadNative@PIC@@SGPAV1@PAVFNI@@@Z 00423a80 f picwin.obj - 0001:00022c40 ?_HpicReadWmf@PIC@@KGPAUHENHMETAFILE__@@PAVFNI@@@Z 00423c40 f picwin.obj - 0001:00022dd0 ??_EPIC@@UAEPAXI@Z 00423dd0 f picwin.obj - 0001:00022dd0 ??_GPIC@@UAEPAXI@Z 00423dd0 f picwin.obj - 0001:00022e80 ?FWouldBe@GOKD@@SGHJ@Z 00423e80 f kidworld.obj - 0001:00022ea0 ?FWouldBe@GKDS@@SGHJ@Z 00423ea0 f kidworld.obj - 0001:00022ec0 ?FIs@GKDS@@UAEHJ@Z 00423ec0 f kidworld.obj - 0001:00022ed0 ?Cls@GKDS@@UAEJXZ 00423ed0 f kidworld.obj - 0001:00022ee0 ?FWouldBe@WOKS@@SGHJ@Z 00423ee0 f kidworld.obj - 0001:00022f00 ?FIs@WOKS@@UAEHJ@Z 00423f00 f kidworld.obj - 0001:00022f10 ?Cls@WOKS@@UAEJXZ 00423f10 f kidworld.obj - 0001:00022f20 ?FReadGkds@GKDS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00423f20 f kidworld.obj - 0001:00023100 ??1GKDS@@UAE@XZ 00424100 f kidworld.obj - 0001:00023120 ?Gokk@GKDS@@UAEJXZ 00424120 f kidworld.obj - 0001:00023130 ?FGetCume@GKDS@@UAEHKJPAUCUME@@@Z 00424130 f kidworld.obj - 0001:000231b0 ?GetLop@GKDS@@UAEXJPAULOP@@@Z 004241b0 f kidworld.obj - 0001:000231f0 ??0WOKS@@QAE@PAUGCB@@PAVSTRG@@@Z 004241f0 f kidworld.obj - 0001:000232b0 ??1WOKS@@UAE@XZ 004242b0 f kidworld.obj - 0001:00023310 ?FGobIn@WOKS@@UAEHPAVGOB@@@Z 00424310 f kidworld.obj - 0001:00023330 ?PgokdFetch@WOKS@@UAEPAVGOKD@@KKPAVRCA@@@Z 00424330 f kidworld.obj - 0001:00023350 ?PgokNew@WOKS@@UAEPAVGOK@@PAVGOB@@JKPAVRCA@@@Z 00424350 f kidworld.obj - 0001:000233f0 ?PscegNew@WOKS@@UAEPAVSCEG@@PAVRCA@@PAVGOB@@@Z 004243f0 f kidworld.obj - 0001:00023420 ?PhbalNew@WOKS@@UAEPAVHBAL@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 00424420 f kidworld.obj - 0001:00023460 ?PcmhFromHid@WOKS@@UAEPAVCMH@@J@Z 00424460 f kidworld.obj - 0001:000234a0 ?PclokFromHid@WOKS@@UAEPAVCLOK@@J@Z 004244a0 f kidworld.obj - 0001:000234d0 ?PgobParGob@WOKS@@UAEPAVGOB@@PAV2@@Z 004244d0 f kidworld.obj - 0001:00023500 ?FFindFile@WOKS@@UAEHPAVSTN@@PAVFNI@@@Z 00424500 f kidworld.obj - 0001:00023520 ?TGiveAlert@WOKS@@UAEHPAVSTN@@JJ@Z 00424520 f kidworld.obj - 0001:00023550 ?Print@WOKS@@UAEXPAVSTN@@@Z 00424550 f kidworld.obj - 0001:00023570 ?GrfcustCur@WOKS@@UAEKH@Z 00424570 f kidworld.obj - 0001:000235a0 ?ModifyGrfcust@WOKS@@UAEXKK@Z 004245a0 f kidworld.obj - 0001:000235e0 ?GrfcustAdjust@WOKS@@UAEKK@Z 004245e0 f kidworld.obj - 0001:00023600 ?FModalTopic@WOKS@@UAEHPAVRCA@@KPAJ@Z 00424600 f kidworld.obj - 0001:00023810 ??_EGKDS@@UAEPAXI@Z 00424810 f kidworld.obj - 0001:00023810 ??_GGKDS@@UAEPAXI@Z 00424810 f kidworld.obj - 0001:00023830 ??_EWOKS@@UAEPAXI@Z 00424830 f kidworld.obj - 0001:00023830 ??_GWOKS@@UAEPAXI@Z 00424830 f kidworld.obj - 0001:000238e0 ?PclokAnim@WOKS@@UAEPAVCLOK@@XZ 004248e0 f kidworld.obj - 0001:000238f0 ?PclokNoSlip@WOKS@@UAEPAVCLOK@@XZ 004248f0 f kidworld.obj - 0001:00023900 ?PclokGen@WOKS@@UAEPAVCLOK@@XZ 00424900 f kidworld.obj - 0001:00023910 ?PclokReset@WOKS@@UAEPAVCLOK@@XZ 00424910 f kidworld.obj - 0001:00023920 ?FWouldBe@TXHD@@SGHJ@Z 00424920 f kidhelp.obj - 0001:00023940 ?FIs@TXHD@@UAEHJ@Z 00424940 f kidhelp.obj - 0001:00023950 ?Cls@TXHD@@UAEJXZ 00424950 f kidhelp.obj - 0001:00023960 ?FWouldBe@TXHG@@SGHJ@Z 00424960 f kidhelp.obj - 0001:00023980 ?FIs@TXHG@@UAEHJ@Z 00424980 f kidhelp.obj - 0001:00023990 ?Cls@TXHG@@UAEJXZ 00424990 f kidhelp.obj - 0001:000239a0 ?FWouldBe@HBAL@@SGHJ@Z 004249a0 f kidhelp.obj - 0001:000239c0 ?FIs@HBAL@@UAEHJ@Z 004249c0 f kidhelp.obj - 0001:000239d0 ?Cls@HBAL@@UAEJXZ 004249d0 f kidhelp.obj - 0001:000239e0 ?FWouldBe@HBTN@@SGHJ@Z 004249e0 f kidhelp.obj - 0001:00023a00 ?FIs@HBTN@@UAEHJ@Z 00424a00 f kidhelp.obj - 0001:00023a10 ?Cls@HBTN@@UAEJXZ 00424a10 f kidhelp.obj - 0001:00023a20 ??0TXHD@@IAE@PAVRCA@@PAVDOCB@@K@Z 00424a20 f kidhelp.obj - 0001:00023a70 ??1TXHD@@MAE@XZ 00424a70 f kidhelp.obj - 0001:00023aa0 ?PtxhdReadChunk@TXHD@@SGPAV1@PAVRCA@@PAVCFL@@KKPAVSTRG@@K@Z 00424aa0 f kidhelp.obj - 0001:00023b20 ?_FReadChunk@TXHD@@MAEHPAVCFL@@KKPAVSTRG@@K@Z 00424b20 f kidhelp.obj - 0001:00023e00 ?_FOpenArg@TXHD@@MAEHJEFF@Z 00424e00 f kidhelp.obj - 0001:00023fa0 ?FSaveToChunk@TXHD@@UAEHPAVCFL@@PAUCKI@@H@Z 00424fa0 f kidhelp.obj - 0001:000240e0 ?_FGetObjectRc@TXHD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 004250e0 f kidhelp.obj - 0001:00024280 ?_FDrawObject@TXHD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00425280 f kidhelp.obj - 0001:00024510 ?FGrouped@TXHD@@QAEHJPAJ0PAEPAKPAVSTN@@@Z 00425510 f kidhelp.obj - 0001:00024630 ?GetHtop@TXHD@@QAEXPAUHTOP@@@Z 00425630 f kidhelp.obj - 0001:00024650 ??0TXHG@@IAE@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 00425650 f kidhelp.obj - 0001:00024680 ?PtxhgNew@TXHG@@SGPAV1@PAVWOKS@@PAVTXHD@@PAUGCB@@@Z 00425680 f kidhelp.obj - 0001:000246e0 ?_FInit@TXHG@@MAEHXZ 004256e0 f kidhelp.obj - 0001:00024ad0 ?FPtIn@TXHG@@UAEHJJ@Z 00425ad0 f kidhelp.obj - 0001:00024b10 ?FCmdTrackMouse@TXHG@@UAEHPAUCMD_MOUSE@@@Z 00425b10 f kidhelp.obj - 0001:00024c10 ?FCmdBadKey@TXHG@@UAEHPAUCMD_BADKEY@@@Z 00425c10 f kidhelp.obj - 0001:00024c80 ?FGroupFromPt@TXHG@@UAEHJJPAEPAK@Z 00425c80 f kidhelp.obj - 0001:00024cd0 ?DoHit@TXHG@@UAEXEKKJ@Z 00425cd0 f kidhelp.obj - 0001:00024d50 ?_FRunScript@TXHG@@MAEHEKJDKPAJ@Z 00425d50 f kidhelp.obj - 0001:00024e80 ?FCmdMouseMove@TXHG@@UAEHPAUCMD_MOUSE@@@Z 00425e80 f kidhelp.obj - 0001:00024ee0 ?SetCursor@TXHG@@UAEXK@Z 00425ee0 f kidhelp.obj - 0001:00024f30 ?PhbalCreate@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@KPAUHTOP@@@Z 00425f30 f kidhelp.obj - 0001:00024fb0 ?PhbalNew@HBAL@@SGPAV1@PAVWOKS@@PAVGOB@@PAVRCA@@PAVTXHD@@PAUHTOP@@@Z 00425fb0 f kidhelp.obj - 0001:00025150 ??0HBAL@@IAE@PAUGCB@@@Z 00426150 f kidhelp.obj - 0001:00025170 ?_FInit@HBAL@@MAEHPAVWOKS@@PAVTXHD@@PAUHTOP@@PAVRCA@@@Z 00426170 f kidhelp.obj - 0001:000251b0 ?FSetTopic@HBAL@@UAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 004261b0 f kidhelp.obj - 0001:000251f0 ?_FSetTopic@HBAL@@MAEHPAVTXHD@@PAUHTOP@@PAVRCA@@@Z 004261f0 f kidhelp.obj - 0001:00025400 ?_SetGorp@HBAL@@MAEXPAVGORP@@JJ@Z 00426400 f kidhelp.obj - 0001:000254d0 ??0HBTN@@IAE@PAUGCB@@@Z 004264d0 f kidhelp.obj - 0001:000254f0 ?PhbtnNew@HBTN@@SGPAV1@PAVWOKS@@PAVGOB@@JKPAVRCA@@EKJJ@Z 004264f0 f kidhelp.obj - 0001:00025600 ?FPtIn@HBTN@@UAEHJJ@Z 00426600 f kidhelp.obj - 0001:000256c0 ?FCmdClicked@HBTN@@UAEHPAUCMD_MOUSE@@@Z 004266c0 f kidhelp.obj - 0001:000257b0 ??_GTXHD@@MAEPAXI@Z 004267b0 f kidhelp.obj - 0001:000257b0 ??_ETXHD@@MAEPAXI@Z 004267b0 f kidhelp.obj - 0001:000257d0 ??_ETXHG@@UAEPAXI@Z 004267d0 f kidhelp.obj - 0001:000257d0 ??_GTXHG@@UAEPAXI@Z 004267d0 f kidhelp.obj - 0001:000257f0 ??_GHBAL@@UAEPAXI@Z 004267f0 f kidhelp.obj - 0001:000257f0 ??_EHBAL@@UAEPAXI@Z 004267f0 f kidhelp.obj - 0001:00025810 ??_EHBTN@@UAEPAXI@Z 00426810 f kidhelp.obj - 0001:00025810 ??_GHBTN@@UAEPAXI@Z 00426810 f kidhelp.obj - 0001:00025830 ?FDirty@DOCB@@UAEHXZ 00426830 f kidhelp.obj - 0001:00025850 ?SetDirty@DOCB@@UAEXH@Z 00426850 f kidhelp.obj - 0001:00025870 ?Pcmm@GOK@@MAEPAUCMM@CMH@@XZ 00426870 f kidhelp.obj - 0001:00025880 ?Pcmm@TXHG@@MAEPAUCMM@CMH@@XZ 00426880 f kidhelp.obj - 0001:00025890 ?FWouldBe@GOK@@SGHJ@Z 00426890 f kidspace.obj - 0001:000258b0 ?FIs@GOK@@UAEHJ@Z 004268b0 f kidspace.obj - 0001:000258c0 ?Cls@GOK@@UAEJXZ 004268c0 f kidspace.obj - 0001:000258d0 ?FWouldBe@GORP@@SGHJ@Z 004268d0 f kidspace.obj - 0001:000258f0 ?FIs@GORP@@UAEHJ@Z 004268f0 f kidspace.obj - 0001:00025900 ?Cls@GORP@@UAEJXZ 00426900 f kidspace.obj - 0001:00025910 ?FWouldBe@GORF@@SGHJ@Z 00426910 f kidspace.obj - 0001:00025930 ?FIs@GORF@@UAEHJ@Z 00426930 f kidspace.obj - 0001:00025940 ?Cls@GORF@@UAEJXZ 00426940 f kidspace.obj - 0001:00025950 ?FWouldBe@GORB@@SGHJ@Z 00426950 f kidspace.obj - 0001:00025970 ?FIs@GORB@@UAEHJ@Z 00426970 f kidspace.obj - 0001:00025980 ?Cls@GORB@@UAEJXZ 00426980 f kidspace.obj - 0001:00025990 ?FWouldBe@GORT@@SGHJ@Z 00426990 f kidspace.obj - 0001:000259b0 ?FIs@GORT@@UAEHJ@Z 004269b0 f kidspace.obj - 0001:000259c0 ?Cls@GORT@@UAEJXZ 004269c0 f kidspace.obj - 0001:000259d0 ?FWouldBe@GORV@@SGHJ@Z 004269d0 f kidspace.obj - 0001:000259f0 ?FIs@GORV@@UAEHJ@Z 004269f0 f kidspace.obj - 0001:00025a00 ?Cls@GORV@@UAEJXZ 00426a00 f kidspace.obj - 0001:00025a10 ?PgokNew@GOK@@SGPAV1@PAVWOKS@@PAVGOB@@JPAVGOKD@@PAVRCA@@@Z 00426a10 f kidspace.obj - 0001:00025ac0 ?_PgobBefore@GOK@@KGPAVGOB@@PAV2@J@Z 00426ac0 f kidspace.obj - 0001:00025b10 ??0GOK@@IAE@PAUGCB@@@Z 00426b10 f kidspace.obj - 0001:00025b50 ??1GOK@@MAE@XZ 00426b50 f kidspace.obj - 0001:00025c60 ?_FInit@GOK@@MAEHPAVWOKS@@KPAVRCA@@@Z 00426c60 f kidspace.obj - 0001:00025cc0 ?_FInit@GOK@@MAEHPAVWOKS@@PAVGOKD@@PAVRCA@@@Z 00426cc0 f kidspace.obj - 0001:00025dc0 ?_ChidMouse@GOK@@IAEKXZ 00426dc0 f kidspace.obj - 0001:00025df0 ?_FAdjustGms@GOK@@MAEHPAUGMSE@@@Z 00426df0 f kidspace.obj - 0001:00025e80 ?_FSetGms@GOK@@MAEHJK@Z 00426e80 f kidspace.obj - 0001:00025f00 ?_FSetGmsCore@GOK@@MAEHJKPAH@Z 00426f00 f kidspace.obj - 0001:00026010 ?_FSetRep@GOK@@MAEHKKKJJPAH@Z 00427010 f kidspace.obj - 0001:000263c0 ?_FAdvanceFrame@GOK@@MAEHXZ 004273c0 f kidspace.obj - 0001:00026570 ?_FEnterState@GOK@@MAEHJ@Z 00427570 f kidspace.obj - 0001:00026660 ?FPtIn@GOK@@UAEHJJ@Z 00427660 f kidspace.obj - 0001:000266f0 ?FPtInBounds@GOK@@UAEHJJ@Z 004276f0 f kidspace.obj - 0001:00026730 ?Draw@GOK@@UAEXPAVGNV@@PAVRC@@@Z 00427730 f kidspace.obj - 0001:00026780 ?FCmdAlarm@GOK@@UAEHPAUCMD@@@Z 00427780 f kidspace.obj - 0001:00026810 ?FCmdAll@GOK@@UAEHPAUCMD@@@Z 00427810 f kidspace.obj - 0001:000268f0 ?_FFilterCmd@GOK@@IAEHPAUCMD@@KPAH@Z 004278f0 f kidspace.obj - 0001:00026990 ?FFilterCidHid@GOK@@UAEHJJK@Z 00427990 f kidspace.obj - 0001:00026b60 ?_FFindCmflt@GOK@@IAEHJJPAUCMFLT@1@PAJ@Z 00427b60 f kidspace.obj - 0001:00026c20 ?FCmdMouseMove@GOK@@UAEHPAUCMD_MOUSE@@@Z 00427c20 f kidspace.obj - 0001:00026cc0 ?SetCursor@GOK@@UAEXK@Z 00427cc0 f kidspace.obj - 0001:00026d60 ?FCmdTrackMouse@GOK@@UAEHPAUCMD_MOUSE@@@Z 00427d60 f kidspace.obj - 0001:00026e60 ?FEnsureToolTip@GOK@@UAEHPAPAVGOB@@JJ@Z 00427e60 f kidspace.obj - 0001:00026f50 ?_CnoToolTip@GOK@@IAEKXZ 00427f50 f kidspace.obj - 0001:00026fa0 ?SetHidToolTip@GOK@@QAEXJ@Z 00427fa0 f kidspace.obj - 0001:00026fb0 ?LwState@GOK@@UAEJXZ 00427fb0 f kidspace.obj - 0001:00026fd0 ?GetPtReg@GOK@@QAEXPAVPT@@J@Z 00427fd0 f kidspace.obj - 0001:00027020 ?GetRcContent@GOK@@QAEXPAVRC@@@Z 00428020 f kidspace.obj - 0001:00027050 ?SetZPlane@GOK@@QAEXJ@Z 00428050 f kidspace.obj - 0001:000270a0 ?SetNoSlip@GOK@@QAEXH@Z 004280a0 f kidspace.obj - 0001:000270d0 ?FRunScript@GOK@@UAEHKPAJJ0PAH@Z 004280d0 f kidspace.obj - 0001:00027150 ?FRunScriptCno@GOK@@UAEHKPAJJ0PAH@Z 00428150 f kidspace.obj - 0001:00027240 ?FChangeState@GOK@@UAEHJ@Z 00428240 f kidspace.obj - 0001:00027250 ?FSetRep@GOK@@UAEHKKKJJK@Z 00428250 f kidspace.obj - 0001:000272c0 ?FCmdClicked@GOK@@UAEHPAUCMD_MOUSE@@@Z 004282c0 f kidspace.obj - 0001:00027410 ?_PgorpNew@GOK@@MAEPAVGORP@@PAVCRF@@KK@Z 00428410 f kidspace.obj - 0001:00027480 ?_SetGorp@GOK@@MAEXPAVGORP@@JJ@Z 00428480 f kidspace.obj - 0001:00027630 ?_DeferGorp@GOK@@IAEXH@Z 00428630 f kidspace.obj - 0001:00027690 ?FPlay@GOK@@UAEHXZ 00428690 f kidspace.obj - 0001:000276b0 ?FPlaying@GOK@@UAEHXZ 004286b0 f kidspace.obj - 0001:000276d0 ?Stop@GOK@@UAEXXZ 004286d0 f kidspace.obj - 0001:000276e0 ?GotoNfr@GOK@@UAEXJ@Z 004286e0 f kidspace.obj - 0001:00027730 ?NfrMac@GOK@@UAEJXZ 00428730 f kidspace.obj - 0001:00027750 ?NfrCur@GOK@@UAEJXZ 00428750 f kidspace.obj - 0001:00027770 ?SiiPlaySound@GOK@@UAEJKKJJJKJJ@Z 00428770 f kidspace.obj - 0001:00027810 ?_DeferSnd@GOK@@IAEXH@Z 00428810 f kidspace.obj - 0001:00027860 ?SiiPlayMouseSound@GOK@@UAEJKK@Z 00428860 f kidspace.obj - 0001:00027980 ?_PlayMouseSound@GOK@@IAEXK@Z 00428980 f kidspace.obj - 0001:00027a40 ?Suspend@GOK@@UAEXXZ 00428a40 f kidspace.obj - 0001:00027a50 ?Resume@GOK@@UAEXXZ 00428a50 f kidspace.obj - 0001:00027a60 ?Stream@GOK@@UAEXH@Z 00428a60 f kidspace.obj - 0001:00027aa0 ?NfrMac@GORP@@UAEJXZ 00428aa0 f kidspace.obj - 0001:00027ab0 ?NfrCur@GORP@@UAEJXZ 00428ab0 f kidspace.obj - 0001:00027ac0 ?GotoNfr@GORP@@UAEXJ@Z 00428ac0 f kidspace.obj - 0001:00027ad0 ?FPlaying@GORP@@UAEHXZ 00428ad0 f kidspace.obj - 0001:00027ae0 ?FPlay@GORP@@UAEHXZ 00428ae0 f kidspace.obj - 0001:00027af0 ?Stop@GORP@@UAEXXZ 00428af0 f kidspace.obj - 0001:00027b00 ?Suspend@GORP@@UAEXXZ 00428b00 f kidspace.obj - 0001:00027b10 ?Resume@GORP@@UAEXXZ 00428b10 f kidspace.obj - 0001:00027b20 ?Stream@GORP@@UAEXH@Z 00428b20 f kidspace.obj - 0001:00027b30 ?PgorfNew@GORF@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 00428b30 f kidspace.obj - 0001:00027cb0 ?Draw@GORF@@UAEXPAVGNV@@PAVRC@@@Z 00428cb0 f kidspace.obj - 0001:00027d10 ?FPtIn@GORF@@UAEHJJ@Z 00428d10 f kidspace.obj - 0001:00027d40 ?SetDxpDyp@GORF@@UAEXJJ@Z 00428d40 f kidspace.obj - 0001:00027d70 ?GetRc@GORF@@UAEXPAVRC@@@Z 00428d70 f kidspace.obj - 0001:00027da0 ?GetRcContent@GORF@@UAEXPAVRC@@@Z 00428da0 f kidspace.obj - 0001:00027dc0 ?PgorbNew@GORB@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 00428dc0 f kidspace.obj - 0001:00027e10 ??1GORB@@MAE@XZ 00428e10 f kidspace.obj - 0001:00027e60 ?Draw@GORB@@UAEXPAVGNV@@PAVRC@@@Z 00428e60 f kidspace.obj - 0001:00027ed0 ?FPtIn@GORB@@UAEHJJ@Z 00428ed0 f kidspace.obj - 0001:00027f40 ?SetDxpDyp@GORB@@UAEXJJ@Z 00428f40 f kidspace.obj - 0001:00027f50 ?GetRc@GORB@@UAEXPAVRC@@@Z 00428f50 f kidspace.obj - 0001:00027fa0 ?GetRcContent@GORB@@UAEXPAVRC@@@Z 00428fa0 f kidspace.obj - 0001:00027fc0 ?Stream@GORB@@UAEXH@Z 00428fc0 f kidspace.obj - 0001:00027fd0 ?PgortNew@GORT@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 00428fd0 f kidspace.obj - 0001:000282e0 ??1GORT@@MAE@XZ 004292e0 f kidspace.obj - 0001:00028330 ?Draw@GORT@@UAEXPAVGNV@@PAVRC@@@Z 00429330 f kidspace.obj - 0001:000284c0 ?_DrawRow@GORT@@IAEXPAVGNV@@PAVMBMP@@PAVRC@@2JJ@Z 004294c0 f kidspace.obj - 0001:00028780 ?FCmdClickedCore@GOK@@QAEHPAUCMD@@@Z 00429780 f kidspace.obj - 0001:00028790 ?FPtIn@GORT@@UAEHJJ@Z 00429790 f kidspace.obj - 0001:00028870 ?_MapZpToMbmp@GORT@@IAEXPAJPAFJJ@Z 00429870 f kidspace.obj - 0001:000288f0 ?SetDxpDyp@GORT@@UAEXJJ@Z 004298f0 f kidspace.obj - 0001:00028980 ?_ComputeFlexZp@GORT@@IAEXPAJ0JPAF@Z 00429980 f kidspace.obj - 0001:00028a50 ?GetRc@GORT@@UAEXPAVRC@@@Z 00429a50 f kidspace.obj - 0001:00028b10 ?_MapZpFlex@GORT@@IAEXPAJPAFJJ@Z 00429b10 f kidspace.obj - 0001:00028be0 ?GetRcContent@GORT@@UAEXPAVRC@@@Z 00429be0 f kidspace.obj - 0001:00028c10 ?Stream@GORT@@UAEXH@Z 00429c10 f kidspace.obj - 0001:00028c20 ?PgorvNew@GORV@@SGPAV1@PAVGOK@@PAVCRF@@KK@Z 00429c20 f kidspace.obj - 0001:00028c90 ?_FInit@GORV@@MAEHPAVGOK@@PAVCRF@@KK@Z 00429c90 f kidspace.obj - 0001:00028e00 ??1GORV@@MAE@XZ 00429e00 f kidspace.obj - 0001:00028e30 ?Draw@GORV@@UAEXPAVGNV@@PAVRC@@@Z 00429e30 f kidspace.obj - 0001:00028e70 ?FPtIn@GORV@@UAEHJJ@Z 00429e70 f kidspace.obj - 0001:00028ea0 ?SetDxpDyp@GORV@@UAEXJJ@Z 00429ea0 f kidspace.obj - 0001:00028ef0 ?GetRc@GORV@@UAEXPAVRC@@@Z 00429ef0 f kidspace.obj - 0001:00028f10 ?GetRcContent@GORV@@UAEXPAVRC@@@Z 00429f10 f kidspace.obj - 0001:00028f30 ?NfrMac@GORV@@UAEJXZ 00429f30 f kidspace.obj - 0001:00028f40 ?NfrCur@GORV@@UAEJXZ 00429f40 f kidspace.obj - 0001:00028f50 ?GotoNfr@GORV@@UAEXJ@Z 00429f50 f kidspace.obj - 0001:00028f60 ?FPlaying@GORV@@UAEHXZ 00429f60 f kidspace.obj - 0001:00028f90 ?FPlay@GORV@@UAEHXZ 00429f90 f kidspace.obj - 0001:00028fd0 ?Stop@GORV@@UAEXXZ 00429fd0 f kidspace.obj - 0001:00028fe0 ?Suspend@GORV@@UAEXXZ 00429fe0 f kidspace.obj - 0001:00029050 ?Resume@GORV@@UAEXXZ 0042a050 f kidspace.obj - 0001:00029080 ??_EGORP@@UAEPAXI@Z 0042a080 f kidspace.obj - 0001:00029080 ??_GGORP@@UAEPAXI@Z 0042a080 f kidspace.obj - 0001:000290a0 ??_GGOK@@MAEPAXI@Z 0042a0a0 f kidspace.obj - 0001:000290a0 ??_EGOK@@MAEPAXI@Z 0042a0a0 f kidspace.obj - 0001:000290c0 ??_GGORB@@MAEPAXI@Z 0042a0c0 f kidspace.obj - 0001:000290c0 ??_EGORB@@MAEPAXI@Z 0042a0c0 f kidspace.obj - 0001:000290e0 ??_EGORT@@MAEPAXI@Z 0042a0e0 f kidspace.obj - 0001:000290e0 ??_GGORT@@MAEPAXI@Z 0042a0e0 f kidspace.obj - 0001:00029100 ??_EGORV@@MAEPAXI@Z 0042a100 f kidspace.obj - 0001:00029100 ??_GGORV@@MAEPAXI@Z 0042a100 f kidspace.obj - 0001:00029120 ??_EGORF@@UAEPAXI@Z 0042a120 f kidspace.obj - 0001:00029120 ??_GGORF@@UAEPAXI@Z 0042a120 f kidspace.obj - 0001:00029140 ??_9@$BKM@A 0042a140 f kidspace.obj - 0001:00029150 ??_9@$BLE@A 0042a150 f kidspace.obj - 0001:00029160 ?FWouldBe@SCEG@@SGHJ@Z 0042a160 f screxeg.obj - 0001:00029180 ?FIs@SCEG@@UAEHJ@Z 0042a180 f screxeg.obj - 0001:00029190 ?Cls@SCEG@@UAEJXZ 0042a190 f screxeg.obj - 0001:000291a0 ??0SCEG@@QAE@PAVWOKS@@PAVRCA@@PAVGOB@@@Z 0042a1a0 f screxeg.obj - 0001:000291e0 ?FResume@SCEG@@UAEHPAJPAH@Z 0042a1e0 f screxeg.obj - 0001:00029200 ?_PgobThis@SCEG@@MAEPAVGOB@@XZ 0042a200 f screxeg.obj - 0001:00029220 ?_PgobFromHid@SCEG@@MAEPAVGOB@@J@Z 0042a220 f screxeg.obj - 0001:00029240 ?_PpglrtvmThis@SCEG@@MAEPAPAVGL@@XZ 0042a240 f screxeg.obj - 0001:00029260 ?_PpglrtvmGlobal@SCEG@@MAEPAPAVGL@@XZ 0042a260 f screxeg.obj - 0001:00029270 ?_PpglrtvmRemote@SCEG@@MAEPAPAVGL@@J@Z 0042a270 f screxeg.obj - 0001:00029290 ?_SwCur@SCEG@@MAEFXZ 0042a290 f screxeg.obj - 0001:000292a0 ?_SwMin@SCEG@@MAEFXZ 0042a2a0 f screxeg.obj - 0001:000292b0 ?_FExecOp@SCEG@@MAEHJ@Z 0042a2b0 f screxeg.obj - 0001:0002b1e0 ?_DoAlert@SCEG@@IAEXJ@Z 0042c1e0 f screxeg.obj - 0001:0002b3f0 ?_DoEditControl@SCEG@@IAEXJJH@Z 0042c3f0 f screxeg.obj - 0001:0002b500 ?_SetColorTable@SCEG@@IAEXK@Z 0042c500 f screxeg.obj - 0001:0002b530 ?_PglclrGet@SCEG@@IAEPAVGL@@K@Z 0042c530 f screxeg.obj - 0001:0002b590 ?FReadColorTable@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0042c590 f screxeg.obj - 0001:0002b640 ?_FLaunch@SCEG@@IAEHJ@Z 0042c640 f screxeg.obj - 0001:0002b6e0 ??_ECABO@@UAEPAXI@Z 0042c6e0 f screxeg.obj - 0001:0002b6e0 ??_GCABO@@UAEPAXI@Z 0042c6e0 f screxeg.obj - 0001:0002b7b0 ??_ESCEG@@UAEPAXI@Z 0042c7b0 f screxeg.obj - 0001:0002b7b0 ??_GSCEG@@UAEPAXI@Z 0042c7b0 f screxeg.obj - 0001:0002b7d0 ?FWouldBe@SCCG@@SGHJ@Z 0042c7d0 f scrcomg.obj - 0001:0002b7f0 ?FIs@SCCG@@UAEHJ@Z 0042c7f0 f scrcomg.obj - 0001:0002b800 ?Cls@SCCG@@UAEJXZ 0042c800 f scrcomg.obj - 0001:0002b810 ?_OpFromStn@SCCG@@MAEJPAVSTN@@@Z 0042c810 f scrcomg.obj - 0001:0002b840 ?_FGetStnFromOp@SCCG@@MAEHJPAVSTN@@@Z 0042c840 f scrcomg.obj - 0001:0002b880 ?_FGetOpFromName@SCCG@@MAEHPAVSTN@@PAJ111PAH@Z 0042c880 f scrcomg.obj - 0001:0002b8f0 ?_SwCur@SCCG@@MAEFXZ 0042c8f0 f scrcomg.obj - 0001:0002b900 ?_SwBack@SCCG@@MAEFXZ 0042c900 f scrcomg.obj - 0001:0002b910 ?_SwMin@SCCG@@MAEFXZ 0042c910 f scrcomg.obj - 0001:0002ba80 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 0042ca80 f textdoc.obj - 0001:0002ba90 ?FWouldBe@DOCB@@SGHJ@Z 0042ca90 f docb.obj - 0001:0002bab0 ?FIs@DOCB@@UAEHJ@Z 0042cab0 f docb.obj - 0001:0002bac0 ?Cls@DOCB@@UAEJXZ 0042cac0 f docb.obj - 0001:0002bad0 ?FWouldBe@DTE@@SGHJ@Z 0042cad0 f docb.obj - 0001:0002baf0 ?FIs@DTE@@UAEHJ@Z 0042caf0 f docb.obj - 0001:0002bb00 ?Cls@DTE@@UAEJXZ 0042cb00 f docb.obj - 0001:0002bb10 ?FWouldBe@DDG@@SGHJ@Z 0042cb10 f docb.obj - 0001:0002bb30 ?FIs@DDG@@UAEHJ@Z 0042cb30 f docb.obj - 0001:0002bb40 ?Cls@DDG@@UAEJXZ 0042cb40 f docb.obj - 0001:0002bb50 ?FWouldBe@DMD@@SGHJ@Z 0042cb50 f docb.obj - 0001:0002bb70 ?FIs@DMD@@UAEHJ@Z 0042cb70 f docb.obj - 0001:0002bb80 ?Cls@DMD@@UAEJXZ 0042cb80 f docb.obj - 0001:0002bb90 ?FWouldBe@DMW@@SGHJ@Z 0042cb90 f docb.obj - 0001:0002bbb0 ?FIs@DMW@@UAEHJ@Z 0042cbb0 f docb.obj - 0001:0002bbc0 ?Cls@DMW@@UAEJXZ 0042cbc0 f docb.obj - 0001:0002bbd0 ?FWouldBe@DSG@@SGHJ@Z 0042cbd0 f docb.obj - 0001:0002bbf0 ?FIs@DSG@@UAEHJ@Z 0042cbf0 f docb.obj - 0001:0002bc00 ?Cls@DSG@@UAEJXZ 0042cc00 f docb.obj - 0001:0002bc10 ?FWouldBe@DSSP@@SGHJ@Z 0042cc10 f docb.obj - 0001:0002bc30 ?FIs@DSSP@@UAEHJ@Z 0042cc30 f docb.obj - 0001:0002bc40 ?Cls@DSSP@@UAEJXZ 0042cc40 f docb.obj - 0001:0002bc50 ?FWouldBe@DSSM@@SGHJ@Z 0042cc50 f docb.obj - 0001:0002bc70 ?FIs@DSSM@@UAEHJ@Z 0042cc70 f docb.obj - 0001:0002bc80 ?Cls@DSSM@@UAEJXZ 0042cc80 f docb.obj - 0001:0002bc90 ?FWouldBe@UNDB@@SGHJ@Z 0042cc90 f docb.obj - 0001:0002bcc0 ??0DOCB@@IAE@PAV0@K@Z 0042ccc0 f docb.obj - 0001:0002bd30 ?Release@DOCB@@UAEXXZ 0042cd30 f docb.obj - 0001:0002bde0 ?CloseAllDdg@DOCB@@QAEXXZ 0042cde0 f docb.obj - 0001:0002be50 ??1DOCB@@MAE@XZ 0042ce50 f docb.obj - 0001:0002bed0 ?FQueryCloseAll@DOCB@@SGHK@Z 0042ced0 f docb.obj - 0001:0002bf10 ?FQueryClose@DOCB@@UAEHK@Z 0042cf10 f docb.obj - 0001:0002bfd0 ?_TQuerySave@DOCB@@MAEHH@Z 0042cfd0 f docb.obj - 0001:0002bff0 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 0042cff0 f docb.obj - 0001:0002c060 ?FInternal@DOCB@@QAEHXZ 0042d060 f docb.obj - 0001:0002c080 ?SetInternal@DOCB@@QAEXH@Z 0042d080 f docb.obj - 0001:0002c0a0 ?PdocbFromFni@DOCB@@SGPAV1@PAVFNI@@@Z 0042d0a0 f docb.obj - 0001:0002c110 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 0042d110 f docb.obj - 0001:0002c120 ?FSave@DOCB@@UAEHJ@Z 0042d120 f docb.obj - 0001:0002c1c0 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 0042d1c0 f docb.obj - 0001:0002c1d0 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 0042d1d0 f docb.obj - 0001:0002c1f0 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 0042d1f0 f docb.obj - 0001:0002c230 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 0042d230 f docb.obj - 0001:0002c290 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 0042d290 f docb.obj - 0001:0002c2c0 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 0042d2c0 f docb.obj - 0001:0002c300 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 0042d300 f docb.obj - 0001:0002c330 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 0042d330 f docb.obj - 0001:0002c350 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 0042d350 f docb.obj - 0001:0002c360 ?ActivateDmd@DOCB@@QAEXXZ 0042d360 f docb.obj - 0001:0002c3a0 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 0042d3a0 f docb.obj - 0001:0002c3b0 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 0042d3b0 f docb.obj - 0001:0002c3d0 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 0042d3d0 f docb.obj - 0001:0002c3e0 ?GetName@DOCB@@UAEXPAVSTN@@@Z 0042d3e0 f docb.obj - 0001:0002c490 ?UpdateName@DOCB@@UAEXXZ 0042d490 f docb.obj - 0001:0002c540 ?FUndo@DOCB@@UAEHXZ 0042d540 f docb.obj - 0001:0002c590 ?FRedo@DOCB@@UAEHXZ 0042d590 f docb.obj - 0001:0002c5e0 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 0042d5e0 f docb.obj - 0001:0002c6d0 ?ClearUndo@DOCB@@UAEXXZ 0042d6d0 f docb.obj - 0001:0002c730 ?ClearRedo@DOCB@@UAEXXZ 0042d730 f docb.obj - 0001:0002c780 ?SetCundbMax@DOCB@@UAEXJ@Z 0042d780 f docb.obj - 0001:0002c830 ?CundbMax@DOCB@@UAEJXZ 0042d830 f docb.obj - 0001:0002c840 ?CundbUndo@DOCB@@UAEJXZ 0042d840 f docb.obj - 0001:0002c850 ?CundbRedo@DOCB@@UAEJXZ 0042d850 f docb.obj - 0001:0002c870 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 0042d870 f docb.obj - 0001:0002c880 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 0042d880 f docb.obj - 0001:0002c8a0 ??0DTE@@QAE@XZ 0042d8a0 f docb.obj - 0001:0002c8c0 ?Init@DTE@@QAEXPAVDOCB@@@Z 0042d8c0 f docb.obj - 0001:0002c8e0 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 0042d8e0 f docb.obj - 0001:0002c9b0 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 0042d9b0 f docb.obj - 0001:0002ca20 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 0042da20 f docb.obj - 0001:0002ca60 ??1DDG@@MAE@XZ 0042da60 f docb.obj - 0001:0002caa0 ?_FInit@DDG@@MAEHXZ 0042daa0 f docb.obj - 0001:0002cad0 ?Pdmd@DDG@@QAEPAVDMD@@XZ 0042dad0 f docb.obj - 0001:0002cae0 ?Activate@DDG@@UAEXH@Z 0042dae0 f docb.obj - 0001:0002cb70 ?_Activate@DDG@@MAEXH@Z 0042db70 f docb.obj - 0001:0002cbb0 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 0042dbb0 f docb.obj - 0001:0002ccd0 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 0042dcd0 f docb.obj - 0001:0002cde0 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 0042dde0 f docb.obj - 0001:0002cdf0 ?_ClearSel@DDG@@MAEXXZ 0042ddf0 f docb.obj - 0001:0002ce00 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 0042de00 f docb.obj - 0001:0002ce10 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 0042de10 f docb.obj - 0001:0002ce50 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 0042de50 f docb.obj - 0001:0002ce70 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 0042de70 f docb.obj - 0001:0002cea0 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 0042dea0 f docb.obj - 0001:0002cee0 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 0042dee0 f docb.obj - 0001:0002cf00 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 0042df00 f docb.obj - 0001:0002cfa0 ?_Scroll@DDG@@MAEXJJJJ@Z 0042dfa0 f docb.obj - 0001:0002cfb0 ?_SetScrollValues@DDG@@MAEXXZ 0042dfb0 f docb.obj - 0001:0002d030 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 0042e030 f docb.obj - 0001:0002d050 ?_ScvMax@DDG@@MAEJH@Z 0042e050 f docb.obj - 0001:0002d060 ?_NewRc@DDG@@MAEXXZ 0042e060 f docb.obj - 0001:0002d070 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 0042e070 f docb.obj - 0001:0002d170 ?PdmdTop@DMD@@SGPAV1@XZ 0042e170 f docb.obj - 0001:0002d1a0 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 0042e1a0 f docb.obj - 0001:0002d1c0 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 0042e1c0 f docb.obj - 0001:0002d230 ?_ActivateHwnd@DMD@@MAEXH@Z 0042e230 f docb.obj - 0001:0002d260 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 0042e260 f docb.obj - 0001:0002d2a0 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 0042e2a0 f docb.obj - 0001:0002d2f0 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 0042e2f0 f docb.obj - 0001:0002d320 ?Release@DMW@@UAEXXZ 0042e320 f docb.obj - 0001:0002d360 ?_FInit@DMW@@MAEHXZ 0042e360 f docb.obj - 0001:0002d3a0 ?_NewRc@DMW@@MAEXXZ 0042e3a0 f docb.obj - 0001:0002d3b0 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 0042e3b0 f docb.obj - 0001:0002d550 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 0042e550 f docb.obj - 0001:0002d580 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 0042e580 f docb.obj - 0001:0002d660 ?_IdsedEdge@DMW@@IAEJJJ@Z 0042e660 f docb.obj - 0001:0002d6c0 ?_IdsedNext@DMW@@IAEJJJ@Z 0042e6c0 f docb.obj - 0001:0002d710 ?_Layout@DMW@@IAEXJ@Z 0042e710 f docb.obj - 0001:0002daf0 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 0042eaf0 f docb.obj - 0001:0002dbc0 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 0042ebc0 f docb.obj - 0001:0002ddf0 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 0042edf0 f docb.obj - 0001:0002de30 ?TVert@DMW@@QAEHPAVDSG@@@Z 0042ee30 f docb.obj - 0001:0002de80 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 0042ee80 f docb.obj - 0001:0002df10 ??0DSG@@IAE@PAUGCB@@@Z 0042ef10 f docb.obj - 0001:0002df30 ??1DSG@@MAE@XZ 0042ef30 f docb.obj - 0001:0002df50 ?_FInit@DSG@@MAEHPAV1@KJ@Z 0042ef50 f docb.obj - 0001:0002e0c0 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 0042f0c0 f docb.obj - 0001:0002e140 ?Split@DSG@@UAEXKJ@Z 0042f140 f docb.obj - 0001:0002e160 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 0042f160 f docb.obj - 0001:0002e1a0 ??0DSSP@@IAE@PAUGCB@@@Z 0042f1a0 f docb.obj - 0001:0002e1c0 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 0042f1c0 f docb.obj - 0001:0002e290 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 0042f290 f docb.obj - 0001:0002e2a0 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 0042f2a0 f docb.obj - 0001:0002e2d0 ?MouseDown@DSSP@@UAEXJJJK@Z 0042f2d0 f docb.obj - 0001:0002e420 ??0DSSM@@IAE@PAUGCB@@@Z 0042f420 f docb.obj - 0001:0002e440 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 0042f440 f docb.obj - 0001:0002e4c0 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 0042f4c0 f docb.obj - 0001:0002e540 ?MouseDown@DSSM@@UAEXJJJK@Z 0042f540 f docb.obj - 0001:0002e6c0 ?TVert@DSSM@@QAEHXZ 0042f6c0 f docb.obj - 0001:0002e6e0 ??_GDOCB@@MAEPAXI@Z 0042f6e0 f docb.obj - 0001:0002e6e0 ??_EDOCB@@MAEPAXI@Z 0042f6e0 f docb.obj - 0001:0002e700 ??_GDTE@@UAEPAXI@Z 0042f700 f docb.obj - 0001:0002e700 ??_EDTE@@UAEPAXI@Z 0042f700 f docb.obj - 0001:0002e720 ??_EDDG@@MAEPAXI@Z 0042f720 f docb.obj - 0001:0002e720 ??_GDDG@@MAEPAXI@Z 0042f720 f docb.obj - 0001:0002e740 ??_EDMD@@UAEPAXI@Z 0042f740 f docb.obj - 0001:0002e740 ??_GDMD@@UAEPAXI@Z 0042f740 f docb.obj - 0001:0002e760 ??_EDMW@@UAEPAXI@Z 0042f760 f docb.obj - 0001:0002e760 ??_GDMW@@UAEPAXI@Z 0042f760 f docb.obj - 0001:0002e780 ??_GDSG@@MAEPAXI@Z 0042f780 f docb.obj - 0001:0002e780 ??_EDSG@@MAEPAXI@Z 0042f780 f docb.obj - 0001:0002e7a0 ??_GDSSP@@UAEPAXI@Z 0042f7a0 f docb.obj - 0001:0002e7a0 ??_EDSSP@@UAEPAXI@Z 0042f7a0 f docb.obj - 0001:0002e7c0 ??_EDSSM@@UAEPAXI@Z 0042f7c0 f docb.obj - 0001:0002e7c0 ??_GDSSM@@UAEPAXI@Z 0042f7c0 f docb.obj - 0001:0002e7e0 ??_9@$BII@A 0042f7e0 f docb.obj - 0001:0002e7f0 ??_9@$BLA@A 0042f7f0 f docb.obj - 0001:0002e800 ?FWouldBe@CLIP@@SGHJ@Z 0042f800 f clip.obj - 0001:0002e820 ?FIs@CLIP@@UAEHJ@Z 0042f820 f clip.obj - 0001:0002e830 ?Cls@CLIP@@UAEJXZ 0042f830 f clip.obj - 0001:0002e850 ??0CLIP@@QAE@XZ 0042f850 f clip.obj - 0001:0002e870 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 0042f870 f clip.obj - 0001:0002e8a0 ?Show@CLIP@@QAEXXZ 0042f8a0 f clip.obj - 0001:0002e8e0 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 0042f8e0 f clip.obj - 0001:0002e9a0 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 0042f9a0 f clip.obj - 0001:0002ea10 ?Import@CLIP@@QAEXXZ 0042fa10 f clip.obj - 0001:0002ea50 ?_EnsureDoc@CLIP@@IAEXXZ 0042fa50 f clip.obj - 0001:0002eb50 ?_ImportCur@CLIP@@IAEXXZ 0042fb50 f clip.obj - 0001:0002ec30 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 0042fc30 f clip.obj - 0001:0002ecc0 ?FInitExport@CLIP@@QAEHXZ 0042fcc0 f clip.obj - 0001:0002ed10 ?PvExport@CLIP@@QAEPAXJJ@Z 0042fd10 f clip.obj - 0001:0002ed70 ?EndExport@CLIP@@QAEXXZ 0042fd70 f clip.obj - 0001:0002ed90 ?_ExportCur@CLIP@@IAEXXZ 0042fd90 f clip.obj - 0001:0002ee00 ??_GCLIP@@UAEPAXI@Z 0042fe00 f clip.obj - 0001:0002ee00 ??_ECLIP@@UAEPAXI@Z 0042fe00 f clip.obj - 0001:0002eeb0 ?FWouldBe@CHCM@@SGHJ@Z 0042feb0 f chcm.obj - 0001:0002eed0 ?FIs@CHCM@@UAEHJ@Z 0042fed0 f chcm.obj - 0001:0002eee0 ?Cls@CHCM@@UAEJXZ 0042fee0 f chcm.obj - 0001:0002eef0 ?FWouldBe@CHLX@@SGHJ@Z 0042fef0 f chcm.obj - 0001:0002ef10 ?FIs@CHLX@@UAEHJ@Z 0042ff10 f chcm.obj - 0001:0002ef20 ?Cls@CHLX@@UAEJXZ 0042ff20 f chcm.obj - 0001:0002ef30 ??0CHCM@@QAE@XZ 0042ff30 f chcm.obj - 0001:0002ef60 ??1CHCM@@UAE@XZ 0042ff60 f chcm.obj - 0001:0002f010 ?_Error@CHCM@@IAEXJPAD@Z 00430010 f chcm.obj - 0001:0002f0f0 ?_GetRgbFromLw@CHCM@@IAEXJPAE@Z 004300f0 f chcm.obj - 0001:0002f190 ?_ErrorOnData@CHCM@@IAEXPAD@Z 00430190 f chcm.obj - 0001:0002f1c0 ?_FGetCleanTok@CHCM@@IAEHPAUTOK@@H@Z 004301c0 f chcm.obj - 0001:0002f350 ?_SkipPastTok@CHCM@@IAEXJ@Z 00430350 f chcm.obj - 0001:0002f390 ?_FParseParenHeader@CHCM@@IAEHPAUPHP@1@JPAJ@Z 00430390 f chcm.obj - 0001:0002f500 ?_ParseChunkHeader@CHCM@@IAEXPAK0@Z 00430500 f chcm.obj - 0001:0002f5f0 ?_AppendString@CHCM@@IAEXPAVSTN@@@Z 004305f0 f chcm.obj - 0001:0002f690 ?_AppendNumber@CHCM@@IAEXJ@Z 00430690 f chcm.obj - 0001:0002f6e0 ?_ParseBodyChild@CHCM@@IAEXKK@Z 004306e0 f chcm.obj - 0001:0002f7d0 ?_ParseBodyParent@CHCM@@IAEXKK@Z 004307d0 f chcm.obj - 0001:0002f8c0 ?_ParseBodyAlign@CHCM@@IAEXXZ 004308c0 f chcm.obj - 0001:0002f9d0 ?_ParseBodyFile@CHCM@@IAEXXZ 004309d0 f chcm.obj - 0001:0002fa90 ?_FPrepWrite@CHCM@@IAEHHJKKPAVBLCK@@@Z 00430a90 f chcm.obj - 0001:0002fae0 ?_FEndWrite@CHCM@@IAEHHKKPAVBLCK@@@Z 00430ae0 f chcm.obj - 0001:0002fb20 ?_ParseBodyMeta@CHCM@@IAEXHKK@Z 00430b20 f chcm.obj - 0001:0002fc50 ?_ParseBodyBitmap@CHCM@@IAEXHHKK@Z 00430c50 f chcm.obj - 0001:0002fdf0 ?_ParseBodyPalette@CHCM@@IAEXHKK@Z 00430df0 f chcm.obj - 0001:0002ff30 ?_ParseBodyMidi@CHCM@@IAEXHKK@Z 00430f30 f chcm.obj - 0001:00030050 ?_ParseBodyCursor@CHCM@@IAEXHKK@Z 00431050 f chcm.obj - 0001:00030490 ?_FParseData@CHCM@@IAEHPAUTOK@@@Z 00431490 f chcm.obj - 0001:000306e0 ?_ParseBodyList@CHCM@@IAEXHHKK@Z 004316e0 f chcm.obj - 0001:000309f0 ?_ParseBodyGroup@CHCM@@IAEXHHKK@Z 004319f0 f chcm.obj - 0001:00030dc0 ?_ParseBodyStringTable@CHCM@@IAEXHHKK@Z 00431dc0 f chcm.obj - 0001:00031250 ?_ParseBodyScript@CHCM@@IAEXHHKK@Z 00432250 f chcm.obj - 0001:000312f0 ?_ParseBodyPackedFile@CHCM@@IAEXPAH@Z 004322f0 f chcm.obj - 0001:00031400 ?_StartSubFile@CHCM@@IAEXHKK@Z 00432400 f chcm.obj - 0001:00031490 ?_EndSubFile@CHCM@@IAEXXZ 00432490 f chcm.obj - 0001:000316b0 ?_ParsePackFmt@CHCM@@IAEXXZ 004326b0 f chcm.obj - 0001:00031730 ?_ParseChunkBody@CHCM@@IAEXKK@Z 00432730 f chcm.obj - 0001:00031b10 ?_ParseAdopt@CHCM@@IAEXXZ 00432b10 f chcm.obj - 0001:00031c20 ?PcflCompile@CHCM@@QAEPAVCFL@@PAVBSF@@PAVSTN@@PAVFNI@@PAVMSNK@@@Z 00432c20 f chcm.obj - 0001:00031f00 ??0CHLX@@QAE@PAVBSF@@PAVSTN@@@Z 00432f00 f chcm.obj - 0001:00031f30 ?_ReadNumTok@LEXB@@MAEXPAUTOK@@DJJ@Z 00432f30 f chcm.obj - 0001:00031f50 ??1CHLX@@UAE@XZ 00432f50 f chcm.obj - 0001:00031f80 ?FGetTok@CHLX@@UAEHPAUTOK@@@Z 00432f80 f chcm.obj - 0001:00032090 ?FGetTokSkipSemi@CHLX@@UAEHPAUTOK@@@Z 00433090 f chcm.obj - 0001:000320d0 ?FGetPath@CHLX@@UAEHPAVFNI@@@Z 004330d0 f chcm.obj - 0001:00032240 ?_FDoSet@CHLX@@IAEHPAUTOK@@@Z 00433240 f chcm.obj - 0001:00032520 ??_GCHCM@@UAEPAXI@Z 00433520 f chcm.obj - 0001:00032520 ??_ECHCM@@UAEPAXI@Z 00433520 f chcm.obj - 0001:00032540 ??_GCHLX@@UAEPAXI@Z 00433540 f chcm.obj - 0001:00032540 ??_ECHLX@@UAEPAXI@Z 00433540 f chcm.obj - 0001:00032560 ??_ESCCG@@UAEPAXI@Z 00433560 f chcm.obj - 0001:00032560 ??_GSCCG@@UAEPAXI@Z 00433560 f chcm.obj - 0001:00032580 ?FWouldBe@LEXB@@SGHJ@Z 00433580 f lex.obj - 0001:000325a0 ?FIs@LEXB@@UAEHJ@Z 004335a0 f lex.obj - 0001:000325b0 ?Cls@LEXB@@UAEJXZ 004335b0 f lex.obj - 0001:000325c0 ?_TtFromCh@@YGJD@Z 004335c0 f lex.obj - 0001:000325e0 ?_TtFromChCh@@YGJDD@Z 004335e0 f lex.obj - 0001:00032650 ??0LEXB@@QAE@PAVFIL@@H@Z 00433650 f lex.obj - 0001:000326f0 ??0LEXB@@QAE@PAVBSF@@PAVSTN@@H@Z 004336f0 f lex.obj - 0001:00032790 ??1LEXB@@UAE@XZ 00433790 f lex.obj - 0001:000327d0 ?GetStnFile@LEXB@@QAEXPAVSTN@@@Z 004337d0 f lex.obj - 0001:000327e0 ?_FFetchRgch@LEXB@@IAEHPADJ@Z 004337e0 f lex.obj - 0001:00032910 ?_FSkipWhiteSpace@LEXB@@IAEHXZ 00433910 f lex.obj - 0001:00032dc0 ?FGetTok@LEXB@@UAEHPAUTOK@@@Z 00433dc0 f lex.obj - 0001:00033220 ?CbExtra@LEXB@@UAEJXZ 00434220 f lex.obj - 0001:00033230 ?GetExtra@LEXB@@UAEXPAX@Z 00434230 f lex.obj - 0001:00033240 ?_ReadNumber@LEXB@@MAEXPAJDJJ@Z 00434240 f lex.obj - 0001:000332c0 ?_FReadHex@LEXB@@IAEHPAJ@Z 004342c0 f lex.obj - 0001:000333a0 ?_FReadControlCh@LEXB@@IAEHPAD@Z 004343a0 f lex.obj - 0001:00033550 ??_ELEXB@@UAEPAXI@Z 00434550 f lex.obj - 0001:00033550 ??_GLEXB@@UAEPAXI@Z 00434550 f lex.obj - 0001:00033590 ?FWouldBe@BSM@@SGHJ@Z 00434590 f stream.obj - 0001:000335b0 ?FIs@BSM@@UAEHJ@Z 004345b0 f stream.obj - 0001:000335c0 ?Cls@BSM@@UAEJXZ 004345c0 f stream.obj - 0001:000335d0 ?FWouldBe@BSF@@SGHJ@Z 004345d0 f stream.obj - 0001:000335f0 ?FIs@BSF@@UAEHJ@Z 004345f0 f stream.obj - 0001:00033600 ?Cls@BSF@@UAEJXZ 00434600 f stream.obj - 0001:00033610 ??0BSM@@QAE@XZ 00434610 f stream.obj - 0001:00033630 ??1BSM@@UAE@XZ 00434630 f stream.obj - 0001:00033650 ?SetMinGrow@BSM@@QAEXJ@Z 00434650 f stream.obj - 0001:00033660 ?FetchRgb@BSM@@QAEXJJPAX@Z 00434660 f stream.obj - 0001:00033680 ?FReplace@BSM@@QAEHPAXJJJ@Z 00434680 f stream.obj - 0001:00033710 ?_FEnsureSize@BSM@@IAEHJH@Z 00434710 f stream.obj - 0001:000337f0 ??0BSF@@QAE@XZ 004347f0 f stream.obj - 0001:00033810 ??1BSF@@UAE@XZ 00434810 f stream.obj - 0001:00033880 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00434880 f stream.obj - 0001:00033910 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00434910 f stream.obj - 0001:00033a40 ?_AttemptMerge@BSF@@IAEXJJ@Z 00434a40 f stream.obj - 0001:00033b30 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 00434b30 f stream.obj - 0001:00033e40 ?FReplace@BSF@@QAEHPAXJJJ@Z 00434e40 f stream.obj - 0001:00034130 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 00435130 f stream.obj - 0001:000342d0 ?FetchRgb@BSF@@QAEXJJPAX@Z 004352d0 f stream.obj - 0001:00034380 ?FWriteRgb@BSF@@QAEHPAUFLO@@J@Z 00435380 f stream.obj - 0001:000343c0 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 004353c0 f stream.obj - 0001:00034570 ??_EBSM@@UAEPAXI@Z 00435570 f stream.obj - 0001:00034570 ??_GBSM@@UAEPAXI@Z 00435570 f stream.obj - 0001:00034590 ??_EBSF@@UAEPAXI@Z 00435590 f stream.obj - 0001:00034590 ??_GBSF@@UAEPAXI@Z 00435590 f stream.obj - 0001:000345b0 ?FWouldBe@SCCB@@SGHJ@Z 004355b0 f scrcom.obj - 0001:000345d0 ?FIs@SCCB@@UAEHJ@Z 004355d0 f scrcom.obj - 0001:000345e0 ?Cls@SCCB@@UAEJXZ 004355e0 f scrcom.obj - 0001:000345f0 ??0SCCB@@QAE@XZ 004355f0 f scrcom.obj - 0001:00034620 ??1SCCB@@UAE@XZ 00435620 f scrcom.obj - 0001:00034640 ?_FInit@SCCB@@IAEHPAVLEXB@@HPAVMSNK@@@Z 00435640 f scrcom.obj - 0001:000347a0 ?_Free@SCCB@@IAEXXZ 004357a0 f scrcom.obj - 0001:000348b0 ?PscptCompileLex@SCCB@@UAEPAVSCPT@@PAVLEXB@@HPAVMSNK@@J@Z 004358b0 f scrcom.obj - 0001:000349a0 ?PscptCompileFil@SCCB@@UAEPAVSCPT@@PAVFIL@@HPAVMSNK@@@Z 004359a0 f scrcom.obj - 0001:00034a00 ?PscptCompileFni@SCCB@@UAEPAVSCPT@@PAVFNI@@HPAVMSNK@@@Z 00435a00 f scrcom.obj - 0001:00034a50 ?_FGetTok@SCCB@@MAEHPAUTOK@@@Z 00435a50 f scrcom.obj - 0001:00034a90 ?_SwCur@SCCB@@MAEFXZ 00435a90 f scrcom.obj - 0001:00034aa0 ?_SwBack@SCCB@@MAEFXZ 00435aa0 f scrcom.obj - 0001:00034ab0 ?_SwMin@SCCB@@MAEFXZ 00435ab0 f scrcom.obj - 0001:00034ac0 ?_ReportError@SCCB@@MAEXPAD@Z 00435ac0 f scrcom.obj - 0001:00034b60 ?_PushLw@SCCB@@IAEXJ@Z 00435b60 f scrcom.obj - 0001:00034bc0 ?_PushString@SCCB@@IAEXPAVSTN@@@Z 00435bc0 f scrcom.obj - 0001:00034c50 ?_PushOp@SCCB@@IAEXJ@Z 00435c50 f scrcom.obj - 0001:00034cb0 ?_EndOp@SCCB@@IAEXXZ 00435cb0 f scrcom.obj - 0001:00034d30 ?_PushVarOp@SCCB@@IAEXJPAURTVN@@@Z 00435d30 f scrcom.obj - 0001:00034da0 ?_FFindLabel@SCCB@@IAEHPAVSTN@@PAJ@Z 00435da0 f scrcom.obj - 0001:00034df0 ?_AddLabel@SCCB@@IAEXPAVSTN@@@Z 00435df0 f scrcom.obj - 0001:00034ea0 ?_PushLabelRequest@SCCB@@IAEXPAVSTN@@@Z 00435ea0 f scrcom.obj - 0001:00034f30 ?_AddLabelLw@SCCB@@IAEXJ@Z 00435f30 f scrcom.obj - 0001:00034f80 ?_PushLabelRequestLw@SCCB@@IAEXJ@Z 00435f80 f scrcom.obj - 0001:00034fd0 ?_OpFromStn@SCCB@@MAEJPAVSTN@@@Z 00435fd0 f scrcom.obj - 0001:00034ff0 ?_OpFromStnRgszop@SCCB@@IAEJPAVSTN@@PAUSZOP@@@Z 00435ff0 f scrcom.obj - 0001:00035040 ?_FGetStnFromOp@SCCB@@MAEHJPAVSTN@@@Z 00436040 f scrcom.obj - 0001:00035060 ?_FGetStnFromOpRgszop@SCCB@@IAEHJPAVSTN@@PAUSZOP@@@Z 00436060 f scrcom.obj - 0001:000350b0 ?_CompilePost@SCCB@@MAEXXZ 004360b0 f scrcom.obj - 0001:00035350 ?_PtomeFromTt@@YGPAUTOME@@JH@Z 00436350 f scrcom.obj - 0001:00035380 ?_FResolveToOpl@SCCB@@IAEHJJPAJ@Z 00436380 f scrcom.obj - 0001:000354e0 ?_FAddToTree@SCCB@@IAEHPAUETN@@PAJ@Z 004364e0 f scrcom.obj - 0001:00035a70 ?_SetDepth@SCCB@@IAEXPAUETN@@H@Z 00436a70 f scrcom.obj - 0001:00035c00 ?_FConstEtn@SCCB@@IAEHJPAJ@Z 00436c00 f scrcom.obj - 0001:00035c50 ?_FCombineConstValues@SCCB@@IAEHJJJPAJ@Z 00436c50 f scrcom.obj - 0001:00035ec0 ?_EmitCode@SCCB@@IAEXJKPAJ@Z 00436ec0 f scrcom.obj - 0001:00036490 ?_CstFromName@SCCB@@IAEJJ@Z 00437490 f scrcom.obj - 0001:00036550 ?_BeginCst@SCCB@@IAEXJJ@Z 00437550 f scrcom.obj - 0001:00036750 ?_FHandleCst@SCCB@@IAEHJ@Z 00437750 f scrcom.obj - 0001:00036a60 ?_EmitVarAccess@SCCB@@IAEXJPAURTVN@@PAJ11@Z 00437a60 f scrcom.obj - 0001:00036b70 ?_PushOpFromName@SCCB@@IAEXJKJ@Z 00437b70 f scrcom.obj - 0001:00036c90 ?_FGetArop@SCCB@@IAEHPAVSTN@@PAUAROP@@PAJ222PAH@Z 00437c90 f scrcom.obj - 0001:00036d10 ?_FGetOpFromName@SCCB@@MAEHPAVSTN@@PAJ111PAH@Z 00437d10 f scrcom.obj - 0001:00036d40 ?_AddNameRef@SCCB@@IAEXPAVSTN@@PAJ@Z 00437d40 f scrcom.obj - 0001:00036dc0 ?_GetIstnNameFromIetn@SCCB@@IAEXJPAJ@Z 00437dc0 f scrcom.obj - 0001:00036df0 ?_GetStnFromIstn@SCCB@@IAEXJPAVSTN@@@Z 00437df0 f scrcom.obj - 0001:00036e20 ?_GetRtvnFromName@SCCB@@IAEXJPAURTVN@@@Z 00437e20 f scrcom.obj - 0001:00036e80 ?_FKeyWord@SCCB@@IAEHPAVSTN@@@Z 00437e80 f scrcom.obj - 0001:00036f10 ?_PushLabelRequestIetn@SCCB@@IAEXJ@Z 00437f10 f scrcom.obj - 0001:00036f60 ?_AddLabelIetn@SCCB@@IAEXJ@Z 00437f60 f scrcom.obj - 0001:00036fb0 ?_PushStringIstn@SCCB@@IAEXJ@Z 00437fb0 f scrcom.obj - 0001:00036ff0 ?_CompileIn@SCCB@@MAEXXZ 00437ff0 f scrcom.obj - 0001:000372c0 ?FDisassemble@SCCB@@UAEHPAVSCPT@@PAVMSNK@@1@Z 004382c0 f scrcom.obj - 0001:00037700 ?SetFromStn@RTVN@@QAEXPAVSTN@@@Z 00438700 f scrcom.obj - 0001:000377f0 ?GetStn@RTVN@@QAEXPAVSTN@@@Z 004387f0 f scrcom.obj - 0001:00037910 ??_GSCPT@@UAEPAXI@Z 00438910 f scrcom.obj - 0001:00037910 ??_ESCPT@@UAEPAXI@Z 00438910 f scrcom.obj - 0001:00037930 ??_ESCCB@@UAEPAXI@Z 00438930 f scrcom.obj - 0001:00037930 ??_GSCCB@@UAEPAXI@Z 00438930 f scrcom.obj - 0001:00037950 ?FWouldBe@SCEB@@SGHJ@Z 00438950 f screxe.obj - 0001:00037970 ?FIs@SCEB@@UAEHJ@Z 00438970 f screxe.obj - 0001:00037980 ?Cls@SCEB@@UAEJXZ 00438980 f screxe.obj - 0001:00037990 ?FWouldBe@SCPT@@SGHJ@Z 00438990 f screxe.obj - 0001:000379b0 ?FIs@SCPT@@UAEHJ@Z 004389b0 f screxe.obj - 0001:000379c0 ?Cls@SCPT@@UAEJXZ 004389c0 f screxe.obj - 0001:000379d0 ?FWouldBe@STRG@@SGHJ@Z 004389d0 f screxe.obj - 0001:000379f0 ?FIs@STRG@@UAEHJ@Z 004389f0 f screxe.obj - 0001:00037a00 ?Cls@STRG@@UAEJXZ 00438a00 f screxe.obj - 0001:00037a10 ??0SCEB@@QAE@PAVRCA@@PAVSTRG@@@Z 00438a10 f screxe.obj - 0001:00037a60 ??1SCEB@@UAE@XZ 00438a60 f screxe.obj - 0001:00037aa0 ?Free@SCEB@@UAEXXZ 00438aa0 f screxe.obj - 0001:00037b50 ?FRunScript@SCEB@@UAEHPAVSCPT@@PAJJ1PAH@Z 00438b50 f screxe.obj - 0001:00037ba0 ?FAttachScript@SCEB@@UAEHPAVSCPT@@PAJJ@Z 00438ba0 f screxe.obj - 0001:00037ca0 ?FResume@SCEB@@UAEHPAJPAH@Z 00438ca0 f screxe.obj - 0001:00037e30 ?_AddParameters@SCEB@@MAEXPAJJ@Z 00438e30 f screxe.obj - 0001:00037f00 ?_AddStrings@SCEB@@MAEXPAVGST@@@Z 00438f00 f screxe.obj - 0001:00037fc0 ?_SwCur@SCEB@@MAEFXZ 00438fc0 f screxe.obj - 0001:00037fd0 ?_SwMin@SCEB@@MAEFXZ 00438fd0 f screxe.obj - 0001:00037fe0 ?_FExecVarOp@SCEB@@MAEHJPAURTVN@@@Z 00438fe0 f screxe.obj - 0001:00038130 ?_FExecOp@SCEB@@MAEHJ@Z 00439130 f screxe.obj - 0001:00038d10 ?_LwPop@SCEB@@IAEJXZ 00439d10 f screxe.obj - 0001:00038d60 ?_QlwGet@SCEB@@IAEPAJJ@Z 00439d60 f screxe.obj - 0001:00038db0 ?_Error@SCEB@@IAEXH@Z 00439db0 f screxe.obj - 0001:00038dc0 ?_Rotate@SCEB@@IAEXJJ@Z 00439dc0 f screxe.obj - 0001:00038e00 ?_Reverse@SCEB@@IAEXJ@Z 00439e00 f screxe.obj - 0001:00038e40 ?_DupList@SCEB@@IAEXJ@Z 00439e40 f screxe.obj - 0001:00038ea0 ?_PopList@SCEB@@IAEXJ@Z 00439ea0 f screxe.obj - 0001:00038ee0 ?_Select@SCEB@@IAEXJJ@Z 00439ee0 f screxe.obj - 0001:00038f30 ?_Match@SCEB@@IAEXJ@Z 00439f30 f screxe.obj - 0001:00038f90 ?_RndList@SCEB@@IAEXJ@Z 00439f90 f screxe.obj - 0001:00038fd0 ?_CopySubStr@SCEB@@IAEXJJJJ@Z 00439fd0 f screxe.obj - 0001:000390d0 ?_ConcatStrs@SCEB@@IAEXJJJ@Z 0043a0d0 f screxe.obj - 0001:000391e0 ?_LenStr@SCEB@@IAEXJ@Z 0043a1e0 f screxe.obj - 0001:00039250 ?_FReadStringReg@@YGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0043a250 f screxe.obj - 0001:00039350 ?_MergeStrings@SCEB@@IAEXKK@Z 0043a350 f screxe.obj - 0001:00039430 ?_NumToStr@SCEB@@IAEXJJ@Z 0043a430 f screxe.obj - 0001:000394d0 ?_StrToNum@SCEB@@IAEXJJJ@Z 0043a4d0 f screxe.obj - 0001:00039580 ?_PushVar@SCEB@@MAEXPAVGL@@PAURTVN@@@Z 0043a580 f screxe.obj - 0001:00039620 ?_AssignVar@SCEB@@MAEXPAPAVGL@@PAURTVN@@J@Z 0043a620 f screxe.obj - 0001:00039660 ?_PglrtvmThis@SCEB@@MAEPAVGL@@XZ 0043a660 f screxe.obj - 0001:00039670 ?_PpglrtvmThis@SCEB@@MAEPAPAVGL@@XZ 0043a670 f screxe.obj - 0001:00039680 ?_PglrtvmGlobal@SCEB@@MAEPAVGL@@XZ 0043a680 f screxe.obj - 0001:00039690 ?_PpglrtvmGlobal@SCEB@@MAEPAPAVGL@@XZ 0043a690 f screxe.obj - 0001:000396a0 ?_PglrtvmRemote@SCEB@@MAEPAVGL@@J@Z 0043a6a0 f screxe.obj - 0001:000396c0 ?_PpglrtvmRemote@SCEB@@MAEPAPAVGL@@J@Z 0043a6c0 f screxe.obj - 0001:000396d0 ?FFindRtvm@@YGHPAVGL@@PAURTVN@@PAJ2@Z 0043a6d0 f screxe.obj - 0001:00039770 ?FAssignRtvm@@YGHPAPAVGL@@PAURTVN@@J@Z 0043a770 f screxe.obj - 0001:00039810 ?FReadScript@SCPT@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0043a810 f screxe.obj - 0001:00039860 ?PscptRead@SCPT@@SGPAV1@PAVCFL@@KK@Z 0043a860 f screxe.obj - 0001:00039990 ??1SCPT@@UAE@XZ 0043a990 f screxe.obj - 0001:000399d0 ?FSaveToChunk@SCPT@@QAEHPAVCFL@@KKH@Z 0043a9d0 f screxe.obj - 0001:00039bc0 ??0STRG@@QAE@XZ 0043abc0 f screxe.obj - 0001:00039be0 ??1STRG@@UAE@XZ 0043abe0 f screxe.obj - 0001:00039c10 ?FPut@STRG@@QAEHJPAVSTN@@@Z 0043ac10 f screxe.obj - 0001:00039c80 ?FGet@STRG@@QAEHJPAVSTN@@@Z 0043ac80 f screxe.obj - 0001:00039cd0 ?FAdd@STRG@@QAEHPAJPAVSTN@@@Z 0043acd0 f screxe.obj - 0001:00039d20 ?Delete@STRG@@QAEXJ@Z 0043ad20 f screxe.obj - 0001:00039d50 ?FMove@STRG@@QAEHJJ@Z 0043ad50 f screxe.obj - 0001:00039e00 ?_FFind@STRG@@IAEHJPAJ@Z 0043ae00 f screxe.obj - 0001:00039e90 ?_FEnsureGst@STRG@@IAEHXZ 0043ae90 f screxe.obj - 0001:00039ed0 ??_GSCEB@@UAEPAXI@Z 0043aed0 f screxe.obj - 0001:00039ed0 ??_ESCEB@@UAEPAXI@Z 0043aed0 f screxe.obj - 0001:00039ef0 ??_ESTRG@@UAEPAXI@Z 0043aef0 f screxe.obj - 0001:00039ef0 ??_GSTRG@@UAEPAXI@Z 0043aef0 f screxe.obj - 0001:00039f10 ?FWouldBe@GRPB@@SGHJ@Z 0043af10 f groups.obj - 0001:00039f30 ?FIs@GRPB@@UAEHJ@Z 0043af30 f groups.obj - 0001:00039f40 ?Cls@GRPB@@UAEJXZ 0043af40 f groups.obj - 0001:00039f50 ?FWouldBe@GLB@@SGHJ@Z 0043af50 f groups.obj - 0001:00039f70 ?FIs@GLB@@UAEHJ@Z 0043af70 f groups.obj - 0001:00039f80 ?Cls@GLB@@UAEJXZ 0043af80 f groups.obj - 0001:00039f90 ?FWouldBe@GL@@SGHJ@Z 0043af90 f groups.obj - 0001:00039fb0 ?FIs@GL@@UAEHJ@Z 0043afb0 f groups.obj - 0001:00039fc0 ?Cls@GL@@UAEJXZ 0043afc0 f groups.obj - 0001:00039fd0 ?FWouldBe@AL@@SGHJ@Z 0043afd0 f groups.obj - 0001:00039ff0 ?FIs@AL@@UAEHJ@Z 0043aff0 f groups.obj - 0001:0003a000 ?Cls@AL@@UAEJXZ 0043b000 f groups.obj - 0001:0003a010 ?FWouldBe@GGB@@SGHJ@Z 0043b010 f groups.obj - 0001:0003a030 ?FIs@GGB@@UAEHJ@Z 0043b030 f groups.obj - 0001:0003a040 ?Cls@GGB@@UAEJXZ 0043b040 f groups.obj - 0001:0003a050 ?FWouldBe@GG@@SGHJ@Z 0043b050 f groups.obj - 0001:0003a070 ?FIs@GG@@UAEHJ@Z 0043b070 f groups.obj - 0001:0003a080 ?Cls@GG@@UAEJXZ 0043b080 f groups.obj - 0001:0003a090 ?FWouldBe@AG@@SGHJ@Z 0043b090 f groups.obj - 0001:0003a0b0 ?FIs@AG@@UAEHJ@Z 0043b0b0 f groups.obj - 0001:0003a0c0 ?Cls@AG@@UAEJXZ 0043b0c0 f groups.obj - 0001:0003a0d0 ??1GRPB@@UAE@XZ 0043b0d0 f groups.obj - 0001:0003a100 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0043b100 f groups.obj - 0001:0003a1e0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0043b1e0 f groups.obj - 0001:0003a2b0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0043b2b0 f groups.obj - 0001:0003a300 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0043b300 f groups.obj - 0001:0003a3d0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0043b3d0 f groups.obj - 0001:0003a490 ??0GLB@@IAE@J@Z 0043b490 f groups.obj - 0001:0003a4c0 ?QvGet@GLB@@QAEPAXJ@Z 0043b4c0 f groups.obj - 0001:0003a4e0 ?Get@GLB@@QAEXJPAX@Z 0043b4e0 f groups.obj - 0001:0003a500 ?Put@GLB@@QAEXJPAX@Z 0043b500 f groups.obj - 0001:0003a520 ?PvLock@GLB@@QAEPAXJ@Z 0043b520 f groups.obj - 0001:0003a540 ?SetMinGrow@GLB@@QAEXJ@Z 0043b540 f groups.obj - 0001:0003a570 ?PglNew@GL@@SGPAV1@JJ@Z 0043b570 f groups.obj - 0001:0003a5d0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0043b5d0 f groups.obj - 0001:0003a630 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0043b630 f groups.obj - 0001:0003a680 ??0GL@@IAE@J@Z 0043b680 f groups.obj - 0001:0003a6a0 ?FFree@GL@@UAEHJ@Z 0043b6a0 f groups.obj - 0001:0003a6c0 ?CbOnFile@GL@@UAEJXZ 0043b6c0 f groups.obj - 0001:0003a6d0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0043b6d0 f groups.obj - 0001:0003a740 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0043b740 f groups.obj - 0001:0003a810 ?FInsert@GL@@QAEHJPAXJ@Z 0043b810 f groups.obj - 0001:0003a8b0 ?Delete@GL@@UAEXJ@Z 0043b8b0 f groups.obj - 0001:0003a8c0 ?Delete@GL@@QAEXJJ@Z 0043b8c0 f groups.obj - 0001:0003a900 ?Move@GL@@QAEXJJ@Z 0043b900 f groups.obj - 0001:0003a920 ?FAdd@GL@@UAEHPAXPAJ@Z 0043b920 f groups.obj - 0001:0003a950 ?FPop@GL@@QAEHPAX@Z 0043b950 f groups.obj - 0001:0003a980 ?FSetIvMac@GL@@QAEHJ@Z 0043b980 f groups.obj - 0001:0003a9d0 ?FEnsureSpace@GL@@QAEHJK@Z 0043b9d0 f groups.obj - 0001:0003aa10 ?PalNew@AL@@SGPAV1@JJ@Z 0043ba10 f groups.obj - 0001:0003aa70 ?PalRead@AL@@SGPAV1@PAVBLCK@@PAF1@Z 0043ba70 f groups.obj - 0001:0003aad0 ??0AL@@IAE@J@Z 0043bad0 f groups.obj - 0001:0003aaf0 ?CbOnFile@AL@@UAEJXZ 0043baf0 f groups.obj - 0001:0003ab10 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 0043bb10 f groups.obj - 0001:0003ab90 ?_FRead@AL@@IAEHPAVBLCK@@PAF1@Z 0043bb90 f groups.obj - 0001:0003ac90 ?FFree@AL@@UAEHJ@Z 0043bc90 f groups.obj - 0001:0003acd0 ?FEnsureSpace@AL@@QAEHJK@Z 0043bcd0 f groups.obj - 0001:0003ad20 ?FAdd@AL@@UAEHPAXPAJ@Z 0043bd20 f groups.obj - 0001:0003adc0 ?Delete@AL@@UAEXJ@Z 0043bdc0 f groups.obj - 0001:0003ae70 ??0GGB@@IAE@JH@Z 0043be70 f groups.obj - 0001:0003aeb0 ?CbOnFile@GGB@@UAEJXZ 0043beb0 f groups.obj - 0001:0003aec0 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0043bec0 f groups.obj - 0001:0003afb0 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0043bfb0 f groups.obj - 0001:0003b140 ?FFree@GGB@@UAEHJ@Z 0043c140 f groups.obj - 0001:0003b170 ?FEnsureSpace@GGB@@QAEHJJK@Z 0043c170 f groups.obj - 0001:0003b200 ?SetMinGrow@GGB@@QAEXJJ@Z 0043c200 f groups.obj - 0001:0003b230 ?_RemoveRgb@GGB@@IAEXJJ@Z 0043c230 f groups.obj - 0001:0003b280 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0043c280 f groups.obj - 0001:0003b2d0 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0043c2d0 f groups.obj - 0001:0003b310 ?PvFixedLock@GGB@@QAEPAXJPAJ@Z 0043c310 f groups.obj - 0001:0003b340 ?GetFixed@GGB@@QAEXJPAX@Z 0043c340 f groups.obj - 0001:0003b370 ?PutFixed@GGB@@QAEXJPAX@Z 0043c370 f groups.obj - 0001:0003b3a0 ?Cb@GGB@@QAEJJ@Z 0043c3a0 f groups.obj - 0001:0003b3c0 ?QvGet@GGB@@QAEPAXJPAJ@Z 0043c3c0 f groups.obj - 0001:0003b400 ?PvLock@GGB@@QAEPAXJPAJ@Z 0043c400 f groups.obj - 0001:0003b430 ?Get@GGB@@QAEXJPAX@Z 0043c430 f groups.obj - 0001:0003b470 ?FPut@GGB@@QAEHJJPAX@Z 0043c470 f groups.obj - 0001:0003b4e0 ?GetRgb@GGB@@QAEXJJJPAX@Z 0043c4e0 f groups.obj - 0001:0003b520 ?PutRgb@GGB@@QAEXJJJPAX@Z 0043c520 f groups.obj - 0001:0003b560 ?DeleteRgb@GGB@@QAEXJJJ@Z 0043c560 f groups.obj - 0001:0003b5f0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0043c5f0 f groups.obj - 0001:0003b710 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 0043c710 f groups.obj - 0001:0003b8a0 ?Merge@GGB@@QAEXJJ@Z 0043c8a0 f groups.obj - 0001:0003b940 ?PggNew@GG@@SGPAV1@JJJ@Z 0043c940 f groups.obj - 0001:0003b9b0 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0043c9b0 f groups.obj - 0001:0003ba10 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0043ca10 f groups.obj - 0001:0003ba60 ?FInsert@GG@@QAEHJJPAX0@Z 0043ca60 f groups.obj - 0001:0003bb30 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 0043cb30 f groups.obj - 0001:0003bc40 ?FAdd@GG@@UAEHJPAJPAX1@Z 0043cc40 f groups.obj - 0001:0003bc70 ?Delete@GG@@UAEXJ@Z 0043cc70 f groups.obj - 0001:0003bcd0 ?Move@GG@@QAEXJJ@Z 0043ccd0 f groups.obj - 0001:0003bcf0 ?PagNew@AG@@SGPAV1@JJJ@Z 0043ccf0 f groups.obj - 0001:0003bd60 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 0043cd60 f groups.obj - 0001:0003bdc0 ?FAdd@AG@@UAEHJPAJPAX1@Z 0043cdc0 f groups.obj - 0001:0003bed0 ?Delete@AG@@UAEXJ@Z 0043ced0 f groups.obj - 0001:0003bf60 ??_GGRPB@@UAEPAXI@Z 0043cf60 f groups.obj - 0001:0003bf60 ??_EGRPB@@UAEPAXI@Z 0043cf60 f groups.obj - 0001:0003bf80 ??_GGG@@UAEPAXI@Z 0043cf80 f groups.obj - 0001:0003bf80 ??_EGG@@UAEPAXI@Z 0043cf80 f groups.obj - 0001:0003bfa0 ??_EAG@@UAEPAXI@Z 0043cfa0 f groups.obj - 0001:0003bfa0 ??_GAG@@UAEPAXI@Z 0043cfa0 f groups.obj - 0001:0003bfc0 ??_GGLB@@UAEPAXI@Z 0043cfc0 f groups.obj - 0001:0003bfc0 ??_EGLB@@UAEPAXI@Z 0043cfc0 f groups.obj - 0001:0003bfe0 ??_GGL@@UAEPAXI@Z 0043cfe0 f groups.obj - 0001:0003bfe0 ??_EGL@@UAEPAXI@Z 0043cfe0 f groups.obj - 0001:0003c000 ??_GAL@@UAEPAXI@Z 0043d000 f groups.obj - 0001:0003c000 ??_EAL@@UAEPAXI@Z 0043d000 f groups.obj - 0001:0003c020 ??_GGGB@@UAEPAXI@Z 0043d020 f groups.obj - 0001:0003c020 ??_EGGB@@UAEPAXI@Z 0043d020 f groups.obj - 0001:0003c040 ?FWouldBe@GSTB@@SGHJ@Z 0043d040 f groups2.obj - 0001:0003c060 ?FIs@GSTB@@UAEHJ@Z 0043d060 f groups2.obj - 0001:0003c070 ?Cls@GSTB@@UAEJXZ 0043d070 f groups2.obj - 0001:0003c080 ?FWouldBe@GST@@SGHJ@Z 0043d080 f groups2.obj - 0001:0003c0a0 ?FIs@GST@@UAEHJ@Z 0043d0a0 f groups2.obj - 0001:0003c0b0 ?Cls@GST@@UAEJXZ 0043d0b0 f groups2.obj - 0001:0003c0c0 ?FWouldBe@AST@@SGHJ@Z 0043d0c0 f groups2.obj - 0001:0003c0e0 ?FIs@AST@@UAEHJ@Z 0043d0e0 f groups2.obj - 0001:0003c0f0 ?Cls@AST@@UAEJXZ 0043d0f0 f groups2.obj - 0001:0003c100 ??0GSTB@@IAE@JK@Z 0043d100 f groups2.obj - 0001:0003c140 ?CbOnFile@GSTB@@UAEJXZ 0043d140 f groups2.obj - 0001:0003c150 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 0043d150 f groups2.obj - 0001:0003c250 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 0043d250 f groups2.obj - 0001:0003c420 ?FEnsureSpace@GSTB@@QAEHJJK@Z 0043d420 f groups2.obj - 0001:0003c490 ?SetMinGrow@GSTB@@QAEXJJ@Z 0043d490 f groups2.obj - 0001:0003c4b0 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 0043d4b0 f groups2.obj - 0001:0003c4d0 ?FPutRgch@GSTB@@QAEHJPADJ@Z 0043d4d0 f groups2.obj - 0001:0003c570 ?FPutStn@GSTB@@QAEHJPAVSTN@@@Z 0043d570 f groups2.obj - 0001:0003c590 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 0043d590 f groups2.obj - 0001:0003c5c0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 0043d5c0 f groups2.obj - 0001:0003c5e0 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 0043d5e0 f groups2.obj - 0001:0003c600 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 0043d600 f groups2.obj - 0001:0003c670 ?GetExtra@GSTB@@QAEXJPAX@Z 0043d670 f groups2.obj - 0001:0003c6a0 ?PutExtra@GSTB@@QAEXJPAX@Z 0043d6a0 f groups2.obj - 0001:0003c6d0 ?_Qst@GSTB@@IAEPADJ@Z 0043d6d0 f groups2.obj - 0001:0003c6f0 ?_AppendRgch@GSTB@@IAEXPADJ@Z 0043d6f0 f groups2.obj - 0001:0003c720 ?_RemoveSt@GSTB@@IAEXJ@Z 0043d720 f groups2.obj - 0001:0003c780 ?_SwapBytesRgbst@GSTB@@IAEXXZ 0043d780 f groups2.obj - 0001:0003c7c0 ?_TranslateGrst@GSTB@@IAEXFH@Z 0043d7c0 f groups2.obj - 0001:0003c870 ?_FTranslateGrst@GSTB@@IAEHF@Z 0043d870 f groups2.obj - 0001:0003ca90 ?FFree@GSTB@@UAEHJ@Z 0043da90 f groups2.obj - 0001:0003cac0 ?PgstNew@GST@@SGPAV1@JJJ@Z 0043dac0 f groups2.obj - 0001:0003cb30 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 0043db30 f groups2.obj - 0001:0003cb90 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 0043db90 f groups2.obj - 0001:0003cbc0 ?FFindRgch@GST@@UAEHPADJPAJK@Z 0043dbc0 f groups2.obj - 0001:0003cc90 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 0043dc90 f groups2.obj - 0001:0003cd30 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 0043dd30 f groups2.obj - 0001:0003cd50 ?Delete@GST@@UAEXJ@Z 0043dd50 f groups2.obj - 0001:0003cd90 ?Move@GST@@QAEXJJ@Z 0043dd90 f groups2.obj - 0001:0003cdb0 ?PastNew@AST@@SGPAV1@JJJ@Z 0043ddb0 f groups2.obj - 0001:0003ce20 ?PastRead@AST@@SGPAV1@PAVBLCK@@PAF1@Z 0043de20 f groups2.obj - 0001:0003ce80 ?FAddRgch@AST@@UAEHPADJPAXPAJ@Z 0043de80 f groups2.obj - 0001:0003cf50 ?Delete@AST@@UAEXJ@Z 0043df50 f groups2.obj - 0001:0003cfc0 ??_GGST@@UAEPAXI@Z 0043dfc0 f groups2.obj - 0001:0003cfc0 ??_EGST@@UAEPAXI@Z 0043dfc0 f groups2.obj - 0001:0003cfe0 ??_GAST@@UAEPAXI@Z 0043dfe0 f groups2.obj - 0001:0003cfe0 ??_EAST@@UAEPAXI@Z 0043dfe0 f groups2.obj - 0001:0003d000 ??_GGSTB@@UAEPAXI@Z 0043e000 f groups2.obj - 0001:0003d000 ??_EGSTB@@UAEPAXI@Z 0043e000 f groups2.obj - 0001:0003d020 ?FWouldBe@TXTB@@SGHJ@Z 0043e020 f rtxt.obj - 0001:0003d040 ?FIs@TXTB@@UAEHJ@Z 0043e040 f rtxt.obj - 0001:0003d050 ?Cls@TXTB@@UAEJXZ 0043e050 f rtxt.obj - 0001:0003d060 ?FWouldBe@TXPD@@SGHJ@Z 0043e060 f rtxt.obj - 0001:0003d080 ?FIs@TXPD@@UAEHJ@Z 0043e080 f rtxt.obj - 0001:0003d090 ?Cls@TXPD@@UAEJXZ 0043e090 f rtxt.obj - 0001:0003d0a0 ?FWouldBe@TXRD@@SGHJ@Z 0043e0a0 f rtxt.obj - 0001:0003d0c0 ?FIs@TXRD@@UAEHJ@Z 0043e0c0 f rtxt.obj - 0001:0003d0d0 ?Cls@TXRD@@UAEJXZ 0043e0d0 f rtxt.obj - 0001:0003d0e0 ?FWouldBe@TXTG@@SGHJ@Z 0043e0e0 f rtxt.obj - 0001:0003d100 ?FIs@TXTG@@UAEHJ@Z 0043e100 f rtxt.obj - 0001:0003d110 ?Cls@TXTG@@UAEJXZ 0043e110 f rtxt.obj - 0001:0003d120 ?FWouldBe@TXLG@@SGHJ@Z 0043e120 f rtxt.obj - 0001:0003d140 ?FIs@TXLG@@UAEHJ@Z 0043e140 f rtxt.obj - 0001:0003d150 ?Cls@TXLG@@UAEJXZ 0043e150 f rtxt.obj - 0001:0003d160 ?FWouldBe@TXRG@@SGHJ@Z 0043e160 f rtxt.obj - 0001:0003d180 ?FIs@TXRG@@UAEHJ@Z 0043e180 f rtxt.obj - 0001:0003d190 ?Cls@TXRG@@UAEJXZ 0043e190 f rtxt.obj - 0001:0003d1a0 ?FWouldBe@RTUN@@SGHJ@Z 0043e1a0 f rtxt.obj - 0001:0003d1c0 ?FIs@RTUN@@UAEHJ@Z 0043e1c0 f rtxt.obj - 0001:0003d1d0 ?Cls@RTUN@@UAEJXZ 0043e1d0 f rtxt.obj - 0001:0003d1e0 ??0TXTB@@IAE@PAVDOCB@@K@Z 0043e1e0 f rtxt.obj - 0001:0003d220 ??1TXTB@@MAE@XZ 0043e220 f rtxt.obj - 0001:0003d270 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 0043e270 f rtxt.obj - 0001:0003d350 ?_FLoad@TXTB@@MAEHF@Z 0043e350 f rtxt.obj - 0001:0003d3e0 ?CpMac@TXTB@@QAEJXZ 0043e3e0 f rtxt.obj - 0001:0003d3f0 ?SuspendUndo@TXTB@@UAEXXZ 0043e3f0 f rtxt.obj - 0001:0003d400 ?ResumeUndo@TXTB@@UAEXXZ 0043e400 f rtxt.obj - 0001:0003d410 ?FSetUndo@TXTB@@UAEHJJJ@Z 0043e410 f rtxt.obj - 0001:0003d420 ?CancelUndo@TXTB@@UAEXXZ 0043e420 f rtxt.obj - 0001:0003d430 ?CommitUndo@TXTB@@UAEXXZ 0043e430 f rtxt.obj - 0001:0003d440 ?BumpCombineUndo@TXTB@@UAEXXZ 0043e440 f rtxt.obj - 0001:0003d450 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 0043e450 f rtxt.obj - 0001:0003d570 ?HideSel@TXTB@@UAEXXZ 0043e570 f rtxt.obj - 0001:0003d5a0 ?SetSel@TXTB@@UAEXJJJ@Z 0043e5a0 f rtxt.obj - 0001:0003d5e0 ?ShowSel@TXTB@@UAEXXZ 0043e5e0 f rtxt.obj - 0001:0003d610 ?_CacheRange@TXTB@@MAEXJJ@Z 0043e610 f rtxt.obj - 0001:0003d760 ?_InvalCache@TXTB@@MAEXJJJ@Z 0043e760 f rtxt.obj - 0001:0003d810 ?_ChFetch@TXTB@@MAEDJ@Z 0043e810 f rtxt.obj - 0001:0003d840 ?FetchRgch@TXTB@@UAEXJJPAD@Z 0043e840 f rtxt.obj - 0001:0003d8b0 ?FMinPara@TXTB@@QAEHJ@Z 0043e8b0 f rtxt.obj - 0001:0003d940 ?CpMinPara@TXTB@@QAEJJ@Z 0043e940 f rtxt.obj - 0001:0003d9f0 ?CpLimPara@TXTB@@QAEJJ@Z 0043e9f0 f rtxt.obj - 0001:0003dab0 ?CpPrev@TXTB@@QAEJJH@Z 0043eab0 f rtxt.obj - 0001:0003db40 ?CpNext@TXTB@@QAEJJH@Z 0043eb40 f rtxt.obj - 0001:0003dbe0 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 0043ebe0 f rtxt.obj - 0001:0003dc60 ?SetDxpDef@TXTB@@UAEXJ@Z 0043ec60 f rtxt.obj - 0001:0003dca0 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 0043eca0 f rtxt.obj - 0001:0003dd00 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 0043ed00 f rtxt.obj - 0001:0003ddc0 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 0043edc0 f rtxt.obj - 0001:0003de30 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 0043ee30 f rtxt.obj - 0001:0003de60 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 0043ee60 f rtxt.obj - 0001:0003de70 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0043ee70 f rtxt.obj - 0001:0003de80 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 0043ee80 f rtxt.obj - 0001:0003dec0 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 0043eec0 f rtxt.obj - 0001:0003df10 ??0TXPD@@IAE@PAVDOCB@@K@Z 0043ef10 f rtxt.obj - 0001:0003df30 ?PtxpdNew@TXPD@@SGPAV1@PAVFNI@@PAVBSF@@FPAVDOCB@@K@Z 0043ef30 f rtxt.obj - 0001:0003df90 ?PddgNew@TXPD@@UAEPAVDDG@@PAUGCB@@@Z 0043ef90 f rtxt.obj - 0001:0003dfd0 ?FSaveToFni@TXPD@@UAEHPAVFNI@@H@Z 0043efd0 f rtxt.obj - 0001:0003e100 ??0TXRD@@IAE@PAVDOCB@@K@Z 0043f100 f rtxt.obj - 0001:0003e140 ??1TXRD@@MAE@XZ 0043f140 f rtxt.obj - 0001:0003e1a0 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 0043f1a0 f rtxt.obj - 0001:0003e1f0 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 0043f1f0 f rtxt.obj - 0001:0003e330 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 0043f330 f rtxt.obj - 0001:0003e7d0 ?_FOpenArg@TXRD@@MAEHJEFF@Z 0043f7d0 f rtxt.obj - 0001:0003e8c0 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 0043f8c0 f rtxt.obj - 0001:0003e900 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 0043f900 f rtxt.obj - 0001:0003e920 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 0043f920 f rtxt.obj - 0001:0003ea40 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 0043fa40 f rtxt.obj - 0001:0003ecf0 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 0043fcf0 f rtxt.obj - 0001:0003ed00 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 0043fd00 f rtxt.obj - 0001:0003ee10 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 0043fe10 f rtxt.obj - 0001:0003eed0 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 0043fed0 f rtxt.obj - 0001:0003f180 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 00440180 f rtxt.obj - 0001:0003f2a0 ?_ReleaseInAg@TXRD@@IAEXJ@Z 004402a0 f rtxt.obj - 0001:0003f320 ?_AddRefInAg@TXRD@@IAEXJ@Z 00440320 f rtxt.obj - 0001:0003f380 ?_FSprmInAg@TXRD@@KGHE@Z 00440380 f rtxt.obj - 0001:0003f3b0 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 004403b0 f rtxt.obj - 0001:0003f3e0 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 004403e0 f rtxt.obj - 0001:0003f410 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 00440410 f rtxt.obj - 0001:0003f4b0 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 004404b0 f rtxt.obj - 0001:0003f550 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 00440550 f rtxt.obj - 0001:0003f580 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 00440580 f rtxt.obj - 0001:0003f890 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 00440890 f rtxt.obj - 0001:0003faf0 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 00440af0 f rtxt.obj - 0001:0003fd00 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 00440d00 f rtxt.obj - 0001:0003fdf0 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 00440df0 f rtxt.obj - 0001:0003fe90 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 00440e90 f rtxt.obj - 0001:0003ffe0 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 00440fe0 f rtxt.obj - 0001:00040170 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 00441170 f rtxt.obj - 0001:000402c0 ?FSetUndo@TXRD@@UAEHJJJ@Z 004412c0 f rtxt.obj - 0001:00040340 ?CancelUndo@TXRD@@UAEXXZ 00441340 f rtxt.obj - 0001:00040380 ?CommitUndo@TXRD@@UAEXXZ 00441380 f rtxt.obj - 0001:00040410 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 00441410 f rtxt.obj - 0001:000404d0 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 004414d0 f rtxt.obj - 0001:00040510 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 00441510 f rtxt.obj - 0001:000407b0 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 004417b0 f rtxt.obj - 0001:000408d0 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 004418d0 f rtxt.obj - 0001:00040990 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 00441990 f rtxt.obj - 0001:000409c0 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 004419c0 f rtxt.obj - 0001:00040a00 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 00441a00 f rtxt.obj - 0001:00040cf0 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 00441cf0 f rtxt.obj - 0001:00040f50 ?FFetchObject@TXRD@@QAEHJPAJPAPAX0@Z 00441f50 f rtxt.obj - 0001:00041040 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 00442040 f rtxt.obj - 0001:000411c0 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 004421c0 f rtxt.obj - 0001:000412d0 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 004422d0 f rtxt.obj - 0001:00041340 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00442340 f rtxt.obj - 0001:00041350 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00442350 f rtxt.obj - 0001:000413d0 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004423d0 f rtxt.obj - 0001:000413e0 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 004423e0 f rtxt.obj - 0001:000414a0 ??1RTUN@@UAE@XZ 004424a0 f rtxt.obj - 0001:000414d0 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 004424d0 f rtxt.obj - 0001:00041670 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 00442670 f rtxt.obj - 0001:00041680 ?FCombine@RTUN@@QAEHPAV1@@Z 00442680 f rtxt.obj - 0001:00041760 ??_GTXTB@@MAEPAXI@Z 00442760 f rtxt.obj - 0001:00041760 ??_ETXTB@@MAEPAXI@Z 00442760 f rtxt.obj - 0001:00041780 ??_GTXPD@@UAEPAXI@Z 00442780 f rtxt.obj - 0001:00041780 ??_ETXPD@@UAEPAXI@Z 00442780 f rtxt.obj - 0001:000417a0 ??_GTXRD@@MAEPAXI@Z 004427a0 f rtxt.obj - 0001:000417a0 ??_ETXRD@@MAEPAXI@Z 004427a0 f rtxt.obj - 0001:000417c0 ??_ERTUN@@UAEPAXI@Z 004427c0 f rtxt.obj - 0001:000417c0 ??_GRTUN@@UAEPAXI@Z 004427c0 f rtxt.obj - 0001:000417e0 ??_9@$BBBA@A 004427e0 f rtxt.obj - 0001:000417f0 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 004427f0 f rtxt2.obj - 0001:00041980 ?GetNextRun@CHR@@QAEXH@Z 00442980 f rtxt2.obj - 0001:00041cf0 ?_FFit@CHR@@AAEHXZ 00442cf0 f rtxt2.obj - 0001:00041d50 ?_SetToBop@CHR@@AAEXXZ 00442d50 f rtxt2.obj - 0001:00041e10 ?_SkipIgnores@CHR@@AAEXXZ 00442e10 f rtxt2.obj - 0001:00041e90 ?_DoTab@CHR@@AAEXXZ 00442e90 f rtxt2.obj - 0001:00041f40 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 00442f40 f rtxt2.obj - 0001:00041fa0 ??1TXTG@@MAE@XZ 00442fa0 f rtxt2.obj - 0001:00041ff0 ?_FInit@TXTG@@MAEHXZ 00442ff0 f rtxt2.obj - 0001:00042110 ?_Activate@TXTG@@MAEXH@Z 00443110 f rtxt2.obj - 0001:00042140 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 00443140 f rtxt2.obj - 0001:00042300 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00443300 f rtxt2.obj - 0001:00042570 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00443570 f rtxt2.obj - 0001:00042840 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 00443840 f rtxt2.obj - 0001:00042bc0 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 00443bc0 f rtxt2.obj - 0001:00042f70 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 00443f70 f rtxt2.obj - 0001:00043010 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00444010 f rtxt2.obj - 0001:000432b0 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 004442b0 f rtxt2.obj - 0001:00043340 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00444340 f rtxt2.obj - 0001:00043480 ?FReplace@TXTG@@UAEHPADJJJ@Z 00444480 f rtxt2.obj - 0001:00043500 ?InvalCp@TXTG@@UAEXJJJ@Z 00444500 f rtxt2.obj - 0001:000435f0 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 004445f0 f rtxt2.obj - 0001:00043760 ?_Scroll@TXTG@@MAEXJJJJ@Z 00444760 f rtxt2.obj - 0001:00043ba0 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 00444ba0 f rtxt2.obj - 0001:00043c30 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 00444c30 f rtxt2.obj - 0001:00043c90 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 00444c90 f rtxt2.obj - 0001:00043f80 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 00444f80 f rtxt2.obj - 0001:00043f90 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 00444f90 f rtxt2.obj - 0001:00044180 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 00445180 f rtxt2.obj - 0001:00044200 ?GetSel@TXTG@@UAEXPAJ0@Z 00445200 f rtxt2.obj - 0001:00044220 ?SetSel@TXTG@@UAEXJJJ@Z 00445220 f rtxt2.obj - 0001:00044330 ?ShowSel@TXTG@@QAEXXZ 00445330 f rtxt2.obj - 0001:000445a0 ?HideSel@TXTG@@UAEXXZ 004455a0 f rtxt2.obj - 0001:000445d0 ?_SwitchSel@TXTG@@IAEXHJ@Z 004455d0 f rtxt2.obj - 0001:00044650 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 00445650 f rtxt2.obj - 0001:00044700 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 00445700 f rtxt2.obj - 0001:00044900 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 00445900 f rtxt2.obj - 0001:00044ed0 ?_ScvMax@TXTG@@MAEJH@Z 00445ed0 f rtxt2.obj - 0001:00044f30 ?_DxpDoc@TXTG@@MAEJXZ 00445f30 f rtxt2.obj - 0001:00044f40 ?SetDxpTab@TXTG@@UAEXJ@Z 00445f40 f rtxt2.obj - 0001:00044f50 ?SetDxpDoc@TXTG@@UAEXJ@Z 00445f50 f rtxt2.obj - 0001:00044f80 ?ShowRuler@TXTG@@UAEXH@Z 00445f80 f rtxt2.obj - 0001:000450a0 ?_DypTrul@TXTG@@MAEJXZ 004460a0 f rtxt2.obj - 0001:000450b0 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 004460b0 f rtxt2.obj - 0001:000450c0 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 004460c0 f rtxt2.obj - 0001:00045110 ??0TXLG@@IAE@PAVTXTB@@PAUGCB@@JKJJ@Z 00446110 f rtxt2.obj - 0001:000451f0 ?PtxlgNew@TXLG@@SGPAV1@PAVTXTB@@PAUGCB@@JKJJ@Z 004461f0 f rtxt2.obj - 0001:00045270 ?_DxpDoc@TXLG@@MAEJXZ 00446270 f rtxt2.obj - 0001:00045280 ?SetDxpTab@TXLG@@UAEXJ@Z 00446280 f rtxt2.obj - 0001:000452f0 ?SetDxpDoc@TXLG@@UAEXJ@Z 004462f0 f rtxt2.obj - 0001:00045300 ?_FetchChp@TXLG@@MAEXJPAUCHP@@PAJ1@Z 00446300 f rtxt2.obj - 0001:00045380 ?_FetchPap@TXLG@@MAEXJPAUPAP@@PAJ1@Z 00446380 f rtxt2.obj - 0001:000453e0 ?_FCopySel@TXLG@@MAEHPAPAVDOCB@@@Z 004463e0 f rtxt2.obj - 0001:000454b0 ?_ClearSel@TXLG@@MAEXXZ 004464b0 f rtxt2.obj - 0001:000454e0 ?_FPaste@TXLG@@MAEHPAVCLIP@@HJ@Z 004464e0 f rtxt2.obj - 0001:00045630 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 00446630 f rtxt2.obj - 0001:00045660 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 00446660 f rtxt2.obj - 0001:00045670 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 00446670 f rtxt2.obj - 0001:000456e0 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 004466e0 f rtxt2.obj - 0001:00045710 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 00446710 f rtxt2.obj - 0001:00045740 ?SetDxpTab@TXRG@@UAEXJ@Z 00446740 f rtxt2.obj - 0001:00045830 ?SetSel@TXRG@@UAEXJJJ@Z 00446830 f rtxt2.obj - 0001:000458e0 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 004468e0 f rtxt2.obj - 0001:00045970 ?_EnsureChpIns@TXRG@@IAEXXZ 00446970 f rtxt2.obj - 0001:000459b0 ?FReplace@TXRG@@UAEHPADJJJ@Z 004469b0 f rtxt2.obj - 0001:00045ac0 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 00446ac0 f rtxt2.obj - 0001:00045b80 ?_ClearSel@TXRG@@MAEXXZ 00446b80 f rtxt2.obj - 0001:00045bb0 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 00446bb0 f rtxt2.obj - 0001:00045d50 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 00446d50 f rtxt2.obj - 0001:00045ec0 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 00446ec0 f rtxt2.obj - 0001:00045f60 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 00446f60 f rtxt2.obj - 0001:00046200 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 00447200 f rtxt2.obj - 0001:00046210 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 00447210 f rtxt2.obj - 0001:00046220 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 00447220 f rtxt2.obj - 0001:00046480 ??_GTXTG@@MAEPAXI@Z 00447480 f rtxt2.obj - 0001:00046480 ??_ETXTG@@MAEPAXI@Z 00447480 f rtxt2.obj - 0001:000464a0 ??_GTXLG@@UAEPAXI@Z 004474a0 f rtxt2.obj - 0001:000464a0 ??_ETXLG@@UAEPAXI@Z 004474a0 f rtxt2.obj - 0001:000464c0 ??_ETXRG@@UAEPAXI@Z 004474c0 f rtxt2.obj - 0001:000464c0 ??_GTXRG@@UAEPAXI@Z 004474c0 f rtxt2.obj - 0001:000464e0 ?FWouldBe@SNDV@@SGHJ@Z 004474e0 f sndm.obj - 0001:00046500 ?FWouldBe@SNDM@@SGHJ@Z 00447500 f sndm.obj - 0001:00046520 ?FIs@SNDM@@UAEHJ@Z 00447520 f sndm.obj - 0001:00046530 ?Cls@SNDM@@UAEJXZ 00447530 f sndm.obj - 0001:00046540 ?FWouldBe@SNDMQ@@SGHJ@Z 00447540 f sndm.obj - 0001:00046560 ?FIs@SNDMQ@@UAEHJ@Z 00447560 f sndm.obj - 0001:00046570 ?Cls@SNDMQ@@UAEJXZ 00447570 f sndm.obj - 0001:00046580 ?FWouldBe@SNQUE@@SGHJ@Z 00447580 f sndm.obj - 0001:000465a0 ?FIs@SNQUE@@UAEHJ@Z 004475a0 f sndm.obj - 0001:000465b0 ?Cls@SNQUE@@UAEJXZ 004475b0 f sndm.obj - 0001:000465c0 ?BeginSynch@SNDV@@UAEXXZ 004475c0 f sndm.obj - 0001:000465d0 ?EndSynch@SNDV@@UAEXXZ 004475d0 f sndm.obj - 0001:000465e0 ??0SNDM@@IAE@XZ 004475e0 f sndm.obj - 0001:00046600 ??1SNDM@@UAE@XZ 00447600 f sndm.obj - 0001:00046670 ?PsndmNew@SNDM@@SGPAV1@XZ 00447670 f sndm.obj - 0001:000466b0 ?_FInit@SNDM@@IAEHXZ 004476b0 f sndm.obj - 0001:000466e0 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 004476e0 f sndm.obj - 0001:00046760 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 00447760 f sndm.obj - 0001:00046830 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 00447830 f sndm.obj - 0001:00046860 ?RemoveSndv@SNDM@@UAEXK@Z 00447860 f sndm.obj - 0001:000468b0 ?FActive@SNDM@@UAEHXZ 004478b0 f sndm.obj - 0001:000468c0 ?Activate@SNDM@@UAEXH@Z 004478c0 f sndm.obj - 0001:00046930 ?Suspend@SNDM@@UAEXH@Z 00447930 f sndm.obj - 0001:00046980 ?SetVlm@SNDM@@UAEXJ@Z 00447980 f sndm.obj - 0001:000469d0 ?VlmCur@SNDM@@UAEJXZ 004479d0 f sndm.obj - 0001:00046a20 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 00447a20 f sndm.obj - 0001:00046a90 ?Stop@SNDM@@UAEXJ@Z 00447a90 f sndm.obj - 0001:00046ae0 ?StopAll@SNDM@@UAEXJJ@Z 00447ae0 f sndm.obj - 0001:00046b30 ?Pause@SNDM@@UAEXJ@Z 00447b30 f sndm.obj - 0001:00046b80 ?PauseAll@SNDM@@UAEXJJ@Z 00447b80 f sndm.obj - 0001:00046bd0 ?Resume@SNDM@@UAEXJ@Z 00447bd0 f sndm.obj - 0001:00046c20 ?ResumeAll@SNDM@@UAEXJJ@Z 00447c20 f sndm.obj - 0001:00046c70 ?FPlaying@SNDM@@UAEHJ@Z 00447c70 f sndm.obj - 0001:00046cd0 ?FPlayingAll@SNDM@@UAEHJJ@Z 00447cd0 f sndm.obj - 0001:00046d30 ?Flush@SNDM@@UAEXXZ 00447d30 f sndm.obj - 0001:00046d70 ?BeginSynch@SNDM@@UAEXXZ 00447d70 f sndm.obj - 0001:00046db0 ?EndSynch@SNDM@@UAEXXZ 00447db0 f sndm.obj - 0001:00046df0 ??1SNDMQ@@UAE@XZ 00447df0 f sndm.obj - 0001:00046e60 ?_FInit@SNDMQ@@MAEHXZ 00447e60 f sndm.obj - 0001:00046e90 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 00447e90 f sndm.obj - 0001:00046fa0 ?FActive@SNDMQ@@UAEHXZ 00447fa0 f sndm.obj - 0001:00046fb0 ?Activate@SNDMQ@@UAEXH@Z 00447fb0 f sndm.obj - 0001:00047000 ?Suspend@SNDMQ@@UAEXH@Z 00448000 f sndm.obj - 0001:00047040 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 00448040 f sndm.obj - 0001:000470b0 ?Stop@SNDMQ@@UAEXJ@Z 004480b0 f sndm.obj - 0001:000470f0 ?StopAll@SNDMQ@@UAEXJJ@Z 004480f0 f sndm.obj - 0001:00047150 ?Pause@SNDMQ@@UAEXJ@Z 00448150 f sndm.obj - 0001:00047190 ?PauseAll@SNDMQ@@UAEXJJ@Z 00448190 f sndm.obj - 0001:000471f0 ?Resume@SNDMQ@@UAEXJ@Z 004481f0 f sndm.obj - 0001:00047230 ?ResumeAll@SNDMQ@@UAEXJJ@Z 00448230 f sndm.obj - 0001:00047290 ?FPlaying@SNDMQ@@UAEHJ@Z 00448290 f sndm.obj - 0001:000472f0 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 004482f0 f sndm.obj - 0001:00047360 ?Flush@SNDMQ@@UAEXXZ 00448360 f sndm.obj - 0001:000473e0 ??0SNQUE@@IAE@XZ 004483e0 f sndm.obj - 0001:00047400 ??1SNQUE@@UAE@XZ 00448400 f sndm.obj - 0001:00047480 ?_FInit@SNQUE@@MAEHXZ 00448480 f sndm.obj - 0001:000474a0 ?_Enter@SNQUE@@MAEXXZ 004484a0 f sndm.obj - 0001:000474b0 ?_Leave@SNQUE@@MAEXXZ 004484b0 f sndm.obj - 0001:000474c0 ?_Flush@SNQUE@@MAEXXZ 004484c0 f sndm.obj - 0001:00047520 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 00448520 f sndm.obj - 0001:000475e0 ?Stop@SNQUE@@QAEXJ@Z 004485e0 f sndm.obj - 0001:00047660 ?StopAll@SNQUE@@QAEXJ@Z 00448660 f sndm.obj - 0001:000476f0 ?Pause@SNQUE@@QAEXJ@Z 004486f0 f sndm.obj - 0001:00047770 ?PauseAll@SNQUE@@QAEXJ@Z 00448770 f sndm.obj - 0001:00047810 ?Resume@SNQUE@@QAEXJ@Z 00448810 f sndm.obj - 0001:00047890 ?ResumeAll@SNQUE@@QAEXJ@Z 00448890 f sndm.obj - 0001:00047920 ?FPlaying@SNQUE@@QAEHJ@Z 00448920 f sndm.obj - 0001:00047990 ?FPlayingAll@SNQUE@@QAEHJ@Z 00448990 f sndm.obj - 0001:00047a00 ?Flush@SNQUE@@QAEXXZ 00448a00 f sndm.obj - 0001:00047a10 ?LuVolScale@@YGKKJ@Z 00448a10 f sndm.obj - 0001:00047aa0 ??_GSNDM@@UAEPAXI@Z 00448aa0 f sndm.obj - 0001:00047aa0 ??_ESNDM@@UAEPAXI@Z 00448aa0 f sndm.obj - 0001:00047ac0 ??_GSNDMQ@@UAEPAXI@Z 00448ac0 f sndm.obj - 0001:00047ac0 ??_ESNDMQ@@UAEPAXI@Z 00448ac0 f sndm.obj - 0001:00047ae0 ??_GSNQUE@@UAEPAXI@Z 00448ae0 f sndm.obj - 0001:00047ae0 ??_ESNQUE@@UAEPAXI@Z 00448ae0 f sndm.obj - 0001:00047b90 ?FWouldBe@SDAM@@SGHJ@Z 00448b90 f sndam.obj - 0001:00047bb0 ?FIs@SDAM@@UAEHJ@Z 00448bb0 f sndam.obj - 0001:00047bc0 ?Cls@SDAM@@UAEJXZ 00448bc0 f sndam.obj - 0001:00047bd0 ?FWouldBe@CAMS@@SGHJ@Z 00448bd0 f sndam.obj - 0001:00047bf0 ?FIs@CAMS@@UAEHJ@Z 00448bf0 f sndam.obj - 0001:00047c00 ?Cls@CAMS@@UAEJXZ 00448c00 f sndam.obj - 0001:00047c10 ?FWouldBe@AMQUE@@SGHJ@Z 00448c10 f sndam.obj - 0001:00047c30 ?FIs@AMQUE@@UAEHJ@Z 00448c30 f sndam.obj - 0001:00047c40 ?Cls@AMQUE@@UAEJXZ 00448c40 f sndam.obj - 0001:00047c60 ??0STBL@@IAE@XZ 00448c60 f sndam.obj - 0001:00047c90 ?Write@STBL@@UAGJPBXKPAK@Z 00448c90 f sndam.obj - 0001:00047cb0 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 00448cb0 f sndam.obj - 0001:00047cc0 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00448cc0 f sndam.obj - 0001:00047d00 ?Commit@STBL@@UAGJK@Z 00448d00 f sndam.obj - 0001:00047d10 ?Revert@STBL@@UAGJXZ 00448d10 f sndam.obj - 0001:00047d20 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00448d20 f sndam.obj - 0001:00047d30 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00448d30 f sndam.obj - 0001:00047d40 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 00448d40 f sndam.obj - 0001:00047d50 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 00448d50 f sndam.obj - 0001:00047d70 ??1STBL@@IAE@XZ 00448d70 f sndam.obj - 0001:00047d80 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 00448d80 f sndam.obj - 0001:00047de0 ?AddRef@STBL@@UAGKXZ 00448de0 f sndam.obj - 0001:00047df0 ?Release@STBL@@UAGKXZ 00448df0 f sndam.obj - 0001:00047e20 ?Read@STBL@@UAGJPAXKPAK@Z 00448e20 f sndam.obj - 0001:00047e90 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00448e90 f sndam.obj - 0001:00047f30 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 00448f30 f sndam.obj - 0001:00048110 ??0CAMS@@IAE@XZ 00449110 f sndam.obj - 0001:00048130 ??1CAMS@@UAE@XZ 00449130 f sndam.obj - 0001:00048170 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00449170 f sndam.obj - 0001:00048270 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 00449270 f sndam.obj - 0001:000482e0 ??0AMNOT@@QAE@XZ 004492e0 f sndam.obj - 0001:00048300 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 00449300 f sndam.obj - 0001:00048310 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 00449310 f sndam.obj - 0001:00048320 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 00449320 f sndam.obj - 0001:00048330 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 00449330 f sndam.obj - 0001:00048340 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 00449340 f sndam.obj - 0001:000483a0 ?AddRef@AMNOT@@UAGKXZ 004493a0 f sndam.obj - 0001:000483b0 ?Release@AMNOT@@UAGKXZ 004493b0 f sndam.obj - 0001:000483d0 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 004493d0 f sndam.obj - 0001:000483f0 ??0AMQUE@@IAE@XZ 004493f0 f sndam.obj - 0001:00048420 ??1AMQUE@@UAE@XZ 00449420 f sndam.obj - 0001:00048460 ?PamqueNew@AMQUE@@SGPAV1@XZ 00449460 f sndam.obj - 0001:000484a0 ?_FInit@AMQUE@@MAEHXZ 004494a0 f sndam.obj - 0001:00048510 ?_Enter@AMQUE@@MAEXXZ 00449510 f sndam.obj - 0001:00048520 ?_Leave@AMQUE@@MAEXXZ 00449520 f sndam.obj - 0001:00048530 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 00449530 f sndam.obj - 0001:00048550 ?_Queue@AMQUE@@MAEXJ@Z 00449550 f sndam.obj - 0001:00048730 ?_PauseQueue@AMQUE@@MAEXJ@Z 00449730 f sndam.obj - 0001:000487a0 ?_ResumeQueue@AMQUE@@MAEXJ@Z 004497a0 f sndam.obj - 0001:000487b0 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 004497b0 f sndam.obj - 0001:00048840 ??0SDAM@@IAE@XZ 00449840 f sndam.obj - 0001:00048860 ??1SDAM@@UAE@XZ 00449860 f sndam.obj - 0001:000488a0 ?PsdamNew@SDAM@@SGPAV1@J@Z 004498a0 f sndam.obj - 0001:000488f0 ?FHaveWaveDevice@@YGHK@Z 004498f0 f sndam.obj - 0001:00048960 ?_FInit@SDAM@@MAEHJ@Z 00449960 f sndam.obj - 0001:00048ac0 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 00449ac0 f sndam.obj - 0001:00048ad0 ?_Suspend@SDAM@@MAEXH@Z 00449ad0 f sndam.obj - 0001:00048b50 ?SetVlm@SDAM@@UAEXJ@Z 00449b50 f sndam.obj - 0001:00048b90 ?VlmCur@SDAM@@UAEJXZ 00449b90 f sndam.obj - 0001:00048ba0 ?BeginSynch@SDAM@@UAEXXZ 00449ba0 f sndam.obj - 0001:00048bd0 ?EndSynch@SDAM@@UAEXXZ 00449bd0 f sndam.obj - 0001:00048c30 ??_GCAMS@@UAEPAXI@Z 00449c30 f sndam.obj - 0001:00048c30 ??_ECAMS@@UAEPAXI@Z 00449c30 f sndam.obj - 0001:00048c50 ??_EAMQUE@@UAEPAXI@Z 00449c50 f sndam.obj - 0001:00048c50 ??_GAMQUE@@UAEPAXI@Z 00449c50 f sndam.obj - 0001:00048c70 ??_GSDAM@@UAEPAXI@Z 00449c70 f sndam.obj - 0001:00048c70 ??_ESDAM@@UAEPAXI@Z 00449c70 f sndam.obj - 0001:00048d30 ?FWouldBe@MIDO@@SGHJ@Z 00449d30 f mididev.obj - 0001:00048d50 ?FIs@MIDO@@UAEHJ@Z 00449d50 f mididev.obj - 0001:00048d60 ?Cls@MIDO@@UAEJXZ 00449d60 f mididev.obj - 0001:00048d70 ??0MIDO@@QAE@XZ 00449d70 f mididev.obj - 0001:00048db0 ??1MIDO@@UAE@XZ 00449db0 f mididev.obj - 0001:00048df0 ?_GetSysVol@MIDO@@IAEXXZ 00449df0 f mididev.obj - 0001:00048e10 ?_SetSysVol@MIDO@@IAEXK@Z 00449e10 f mididev.obj - 0001:00048e30 ?_Reset@MIDO@@IAEXXZ 00449e30 f mididev.obj - 0001:00048e90 ?Suspend@MIDO@@QAEXH@Z 00449e90 f mididev.obj - 0001:00048f80 ??_EMIDO@@UAEPAXI@Z 00449f80 f mididev.obj - 0001:00048f80 ??_GMIDO@@UAEPAXI@Z 00449f80 f mididev.obj - 0001:00049030 ?FWouldBe@MDWS@@SGHJ@Z 0044a030 f mididev2.obj - 0001:00049050 ?FIs@MDWS@@UAEHJ@Z 0044a050 f mididev2.obj - 0001:00049060 ?Cls@MDWS@@UAEJXZ 0044a060 f mididev2.obj - 0001:00049070 ?FWouldBe@MSQUE@@SGHJ@Z 0044a070 f mididev2.obj - 0001:00049090 ?FIs@MSQUE@@UAEHJ@Z 0044a090 f mididev2.obj - 0001:000490a0 ?Cls@MSQUE@@UAEJXZ 0044a0a0 f mididev2.obj - 0001:000490b0 ?FWouldBe@MDPS@@SGHJ@Z 0044a0b0 f mididev2.obj - 0001:000490d0 ?FIs@MDPS@@UAEHJ@Z 0044a0d0 f mididev2.obj - 0001:000490e0 ?Cls@MDPS@@UAEJXZ 0044a0e0 f mididev2.obj - 0001:000490f0 ?FWouldBe@MSMIX@@SGHJ@Z 0044a0f0 f mididev2.obj - 0001:00049110 ?FIs@MSMIX@@UAEHJ@Z 0044a110 f mididev2.obj - 0001:00049120 ?Cls@MSMIX@@UAEJXZ 0044a120 f mididev2.obj - 0001:00049130 ?FWouldBe@MISI@@SGHJ@Z 0044a130 f mididev2.obj - 0001:00049150 ?FIs@MISI@@UAEHJ@Z 0044a150 f mididev2.obj - 0001:00049160 ?Cls@MISI@@UAEJXZ 0044a160 f mididev2.obj - 0001:00049170 ?FWouldBe@WMS@@SGHJ@Z 0044a170 f mididev2.obj - 0001:00049190 ?FIs@WMS@@UAEHJ@Z 0044a190 f mididev2.obj - 0001:000491a0 ?Cls@WMS@@UAEJXZ 0044a1a0 f mididev2.obj - 0001:000491b0 ?FWouldBe@OMS@@SGHJ@Z 0044a1b0 f mididev2.obj - 0001:000491d0 ?FIs@OMS@@UAEHJ@Z 0044a1d0 f mididev2.obj - 0001:000491e0 ?Cls@OMS@@UAEJXZ 0044a1e0 f mididev2.obj - 0001:000491f0 ??0MDPS@@IAE@XZ 0044a1f0 f mididev2.obj - 0001:00049210 ??1MDPS@@UAE@XZ 0044a210 f mididev2.obj - 0001:00049250 ?PmdpsNew@MDPS@@SGPAV1@XZ 0044a250 f mididev2.obj - 0001:00049290 ?_FInit@MDPS@@MAEHXZ 0044a290 f mididev2.obj - 0001:000492e0 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 0044a2e0 f mididev2.obj - 0001:000492f0 ?_Suspend@MDPS@@MAEXH@Z 0044a2f0 f mididev2.obj - 0001:00049300 ?SetVlm@MDPS@@UAEXJ@Z 0044a300 f mididev2.obj - 0001:00049310 ?VlmCur@MDPS@@UAEJXZ 0044a310 f mididev2.obj - 0001:00049320 ??0MDWS@@IAE@XZ 0044a320 f mididev2.obj - 0001:00049340 ??1MDWS@@UAE@XZ 0044a340 f mididev2.obj - 0001:00049370 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0044a370 f mididev2.obj - 0001:000493e0 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 0044a3e0 f mididev2.obj - 0001:00049450 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 0044a450 f mididev2.obj - 0001:000495d0 ?PvLockData@MDWS@@QAEPAXPAJ@Z 0044a5d0 f mididev2.obj - 0001:000495f0 ?UnlockData@MDWS@@QAEXXZ 0044a5f0 f mididev2.obj - 0001:00049610 ??0MSQUE@@IAE@XZ 0044a610 f mididev2.obj - 0001:00049630 ??1MSQUE@@UAE@XZ 0044a630 f mididev2.obj - 0001:00049680 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 0044a680 f mididev2.obj - 0001:000496d0 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 0044a6d0 f mididev2.obj - 0001:00049700 ?_Enter@MSQUE@@MAEXXZ 0044a700 f mididev2.obj - 0001:00049710 ?_Leave@MSQUE@@MAEXXZ 0044a710 f mididev2.obj - 0001:00049720 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 0044a720 f mididev2.obj - 0001:00049740 ?_Queue@MSQUE@@MAEXJ@Z 0044a740 f mididev2.obj - 0001:00049800 ?_PauseQueue@MSQUE@@MAEXJ@Z 0044a800 f mididev2.obj - 0001:00049870 ?_ResumeQueue@MSQUE@@MAEXJ@Z 0044a870 f mididev2.obj - 0001:00049880 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 0044a880 f mididev2.obj - 0001:000498e0 ??0MSMIX@@IAE@XZ 0044a8e0 f mididev2.obj - 0001:00049910 ??1MSMIX@@UAE@XZ 0044a910 f mididev2.obj - 0001:000499a0 ?PmsmixNew@MSMIX@@SGPAV1@XZ 0044a9a0 f mididev2.obj - 0001:000499e0 ?_FInit@MSMIX@@IAEHXZ 0044a9e0 f mididev2.obj - 0001:00049a80 ?Suspend@MSMIX@@QAEXH@Z 0044aa80 f mididev2.obj - 0001:00049ae0 ?_StopStream@MSMIX@@IAEXXZ 0044aae0 f mididev2.obj - 0001:00049b30 ?SetVlm@MSMIX@@QAEXJ@Z 0044ab30 f mididev2.obj - 0001:00049b90 ?VlmCur@MSMIX@@QAEJXZ 0044ab90 f mididev2.obj - 0001:00049ba0 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 0044aba0 f mididev2.obj - 0001:00049d10 ?_Restart@MSMIX@@IAEXH@Z 0044ad10 f mididev2.obj - 0001:00049d90 ?_SubmitBuffers@MSMIX@@IAEXK@Z 0044ad90 f mididev2.obj - 0001:00049f50 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 0044af50 f mididev2.obj - 0001:0004a220 ?_MidiProc@MSMIX@@KGXKPAXK@Z 0044b220 f mididev2.obj - 0001:0004a240 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 0044b240 f mididev2.obj - 0001:0004a310 ?_ThreadProc@MSMIX@@KGKPAX@Z 0044b310 f mididev2.obj - 0001:0004a320 ?_LuThread@MSMIX@@IAEKXZ 0044b320 f mididev2.obj - 0001:0004a450 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 0044b450 f mididev2.obj - 0001:0004a490 ?_Reset@MISI@@IAEXXZ 0044b490 f mididev2.obj - 0001:0004a4d0 ?_GetSysVol@MISI@@IAEXXZ 0044b4d0 f mididev2.obj - 0001:0004a5e0 ?_SetSysVol@MISI@@IAEXK@Z 0044b5e0 f mididev2.obj - 0001:0004a600 ?_SetSysVlm@MISI@@IAEXXZ 0044b600 f mididev2.obj - 0001:0004a620 ?SetVlm@MISI@@UAEXJ@Z 0044b620 f mididev2.obj - 0001:0004a640 ?VlmCur@MISI@@UAEJXZ 0044b640 f mididev2.obj - 0001:0004a650 ?FActive@MISI@@UAEHXZ 0044b650 f mididev2.obj - 0001:0004a660 ?FActivate@MISI@@UAEHH@Z 0044b660 f mididev2.obj - 0001:0004a680 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 0044b680 f mididev2.obj - 0001:0004a6b0 ??1WMS@@UAE@XZ 0044b6b0 f mididev2.obj - 0001:0004a730 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 0044b730 f mididev2.obj - 0001:0004a780 ?_FInit@WMS@@IAEHXZ 0044b780 f mididev2.obj - 0001:0004a940 ?_FOpen@WMS@@MAEHXZ 0044b940 f mididev2.obj - 0001:0004a9f0 ?_FClose@WMS@@MAEHXZ 0044b9f0 f mididev2.obj - 0001:0004aa60 ?FActive@WMS@@UAEHXZ 0044ba60 f mididev2.obj - 0001:0004aa70 ?FActivate@WMS@@UAEHH@Z 0044ba70 f mididev2.obj - 0001:0004aaa0 ?_ResetStream@WMS@@IAEXXZ 0044baa0 f mididev2.obj - 0001:0004aad0 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 0044bad0 f mididev2.obj - 0001:0004aba0 ?_CmhSubmitBuffers@WMS@@IAEJXZ 0044bba0 f mididev2.obj - 0001:0004acc0 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 0044bcc0 f mididev2.obj - 0001:0004ad30 ?StopPlaying@WMS@@UAEXXZ 0044bd30 f mididev2.obj - 0001:0004ae00 ?_MidiProc@WMS@@KGXPAXKKKK@Z 0044be00 f mididev2.obj - 0001:0004ae20 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 0044be20 f mididev2.obj - 0001:0004aea0 ?_ThreadProc@WMS@@KGKPAX@Z 0044bea0 f mididev2.obj - 0001:0004aeb0 ?_LuThread@WMS@@IAEKXZ 0044beb0 f mididev2.obj - 0001:0004af00 ?_DoCallBacks@WMS@@IAEXXZ 0044bf00 f mididev2.obj - 0001:0004af90 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 0044bf90 f mididev2.obj - 0001:0004afc0 ??1OMS@@UAE@XZ 0044bfc0 f mididev2.obj - 0001:0004b030 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 0044c030 f mididev2.obj - 0001:0004b080 ?_FInit@OMS@@IAEHXZ 0044c080 f mididev2.obj - 0001:0004b110 ?_FOpen@OMS@@MAEHXZ 0044c110 f mididev2.obj - 0001:0004b180 ?_FClose@OMS@@MAEHXZ 0044c180 f mididev2.obj - 0001:0004b1f0 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 0044c1f0 f mididev2.obj - 0001:0004b280 ?StopPlaying@OMS@@UAEXXZ 0044c280 f mididev2.obj - 0001:0004b2b0 ?_ThreadProc@OMS@@KGKPAX@Z 0044c2b0 f mididev2.obj - 0001:0004b2c0 ?_LuThread@OMS@@IAEKXZ 0044c2c0 f mididev2.obj - 0001:0004b440 ?_ReleaseBuffers@OMS@@IAEXXZ 0044c440 f mididev2.obj - 0001:0004b4d0 ??_GMDPS@@UAEPAXI@Z 0044c4d0 f mididev2.obj - 0001:0004b4d0 ??_EMDPS@@UAEPAXI@Z 0044c4d0 f mididev2.obj - 0001:0004b4f0 ??_EMDWS@@UAEPAXI@Z 0044c4f0 f mididev2.obj - 0001:0004b4f0 ??_GMDWS@@UAEPAXI@Z 0044c4f0 f mididev2.obj - 0001:0004b510 ??_EMSQUE@@UAEPAXI@Z 0044c510 f mididev2.obj - 0001:0004b510 ??_GMSQUE@@UAEPAXI@Z 0044c510 f mididev2.obj - 0001:0004b530 ??_EMSMIX@@UAEPAXI@Z 0044c530 f mididev2.obj - 0001:0004b530 ??_GMSMIX@@UAEPAXI@Z 0044c530 f mididev2.obj - 0001:0004b550 ??_EMISI@@UAEPAXI@Z 0044c550 f mididev2.obj - 0001:0004b550 ??_GMISI@@UAEPAXI@Z 0044c550 f mididev2.obj - 0001:0004b570 ??_EWMS@@UAEPAXI@Z 0044c570 f mididev2.obj - 0001:0004b570 ??_GWMS@@UAEPAXI@Z 0044c570 f mididev2.obj - 0001:0004b590 ??_EOMS@@UAEPAXI@Z 0044c590 f mididev2.obj - 0001:0004b590 ??_GOMS@@UAEPAXI@Z 0044c590 f mididev2.obj - 0001:0004b5b0 ?FWouldBe@MSTP@@SGHJ@Z 0044c5b0 f midi.obj - 0001:0004b5d0 ?FIs@MSTP@@UAEHJ@Z 0044c5d0 f midi.obj - 0001:0004b5e0 ?Cls@MSTP@@UAEJXZ 0044c5e0 f midi.obj - 0001:0004b5f0 ?FWouldBe@MIDS@@SGHJ@Z 0044c5f0 f midi.obj - 0001:0004b610 ?FIs@MIDS@@UAEHJ@Z 0044c610 f midi.obj - 0001:0004b620 ?Cls@MIDS@@UAEJXZ 0044c620 f midi.obj - 0001:0004b630 ??0MSTP@@QAE@XZ 0044c630 f midi.obj - 0001:0004b650 ??1MSTP@@UAE@XZ 0044c650 f midi.obj - 0001:0004b690 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 0044c690 f midi.obj - 0001:0004b720 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 0044c720 f midi.obj - 0001:0004ba80 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 0044ca80 f midi.obj - 0001:0004bad0 ??0MIDS@@IAE@XZ 0044cad0 f midi.obj - 0001:0004baf0 ??1MIDS@@UAE@XZ 0044caf0 f midi.obj - 0001:0004bb10 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 0044cb10 f midi.obj - 0001:0004bb80 ?PmidsReadNative@MIDS@@SGPAV1@PAVFNI@@@Z 0044cb80 f midi.obj - 0001:0004c230 ?_CbEncodeLu@MIDS@@KGJKPAE@Z 0044d230 f midi.obj - 0001:0004c280 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 0044d280 f midi.obj - 0001:0004c2a0 ?CbOnFile@MIDS@@UAEJXZ 0044d2a0 f midi.obj - 0001:0004c2c0 ??_EMSTP@@UAEPAXI@Z 0044d2c0 f midi.obj - 0001:0004c2c0 ??_GMSTP@@UAEPAXI@Z 0044d2c0 f midi.obj - 0001:0004c2e0 ??_GMIDS@@UAEPAXI@Z 0044d2e0 f midi.obj - 0001:0004c2e0 ??_EMIDS@@UAEPAXI@Z 0044d2e0 f midi.obj - 0001:0004c390 ?FWouldBe@DLG@@SGHJ@Z 0044d390 f dlg.obj - 0001:0004c3b0 ?FIs@DLG@@UAEHJ@Z 0044d3b0 f dlg.obj - 0001:0004c3c0 ?Cls@DLG@@UAEJXZ 0044d3c0 f dlg.obj - 0001:0004c3d0 ??0DLG@@AAE@J@Z 0044d3d0 f dlg.obj - 0001:0004c3f0 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 0044d3f0 f dlg.obj - 0001:0004c450 ?FGetValues@DLG@@QAEHJJ@Z 0044d450 f dlg.obj - 0001:0004c520 ?SetValues@DLG@@QAEXJJ@Z 0044d520 f dlg.obj - 0001:0004c700 ?IditFromSit@DLG@@QAEJJ@Z 0044d700 f dlg.obj - 0001:0004c750 ?_FDitChange@DLG@@AAEHPAJ@Z 0044d750 f dlg.obj - 0001:0004c7a0 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 0044d7a0 f dlg.obj - 0001:0004c800 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 0044d800 f dlg.obj - 0001:0004c920 ?FGetCheck@DLG@@QAEHJ@Z 0044d920 f dlg.obj - 0001:0004c940 ?PutCheck@DLG@@QAEXJH@Z 0044d940 f dlg.obj - 0001:0004c970 ?FGetLwFromEdit@DLG@@QAEHJPAJPAH@Z 0044d970 f dlg.obj - 0001:0004c9f0 ?FPutLwInEdit@DLG@@QAEHJJ@Z 0044d9f0 f dlg.obj - 0001:0004ca50 ??_EDLG@@UAEPAXI@Z 0044da50 f dlg.obj - 0001:0004ca50 ??_GDLG@@UAEPAXI@Z 0044da50 f dlg.obj - 0001:0004cb00 ?_FInit@DLG@@AAEHXZ 0044db00 f dlgwin.obj - 0001:0004ce30 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 0044de30 f dlgwin.obj - 0001:0004d140 ?IditDo@DLG@@QAEJJ@Z 0044e140 f dlgwin.obj - 0001:0004d180 ?SelectDit@DLG@@QAEXJ@Z 0044e180 f dlgwin.obj - 0001:0004d1e0 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 0044e1e0 f dlgwin.obj - 0001:0004d240 ?_SetRadioGroup@DLG@@AAEXJJ@Z 0044e240 f dlgwin.obj - 0001:0004d280 ?_FGetCheckBox@DLG@@AAEHJ@Z 0044e280 f dlgwin.obj - 0001:0004d2c0 ?_SetCheckBox@DLG@@AAEXJH@Z 0044e2c0 f dlgwin.obj - 0001:0004d300 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 0044e300 f dlgwin.obj - 0001:0004d360 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 0044e360 f dlgwin.obj - 0001:0004d3a0 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 0044e3a0 f dlgwin.obj - 0001:0004d400 ?_ClearList@DLG@@AAEXJ@Z 0044e400 f dlgwin.obj - 0001:0004d4f0 ?FWouldBe@CTL@@SGHJ@Z 0044e4f0 f ctl.obj - 0001:0004d510 ?FIs@CTL@@UAEHJ@Z 0044e510 f ctl.obj - 0001:0004d520 ?Cls@CTL@@UAEJXZ 0044e520 f ctl.obj - 0001:0004d530 ?FWouldBe@SCB@@SGHJ@Z 0044e530 f ctl.obj - 0001:0004d550 ?FIs@SCB@@UAEHJ@Z 0044e550 f ctl.obj - 0001:0004d560 ?Cls@SCB@@UAEJXZ 0044e560 f ctl.obj - 0001:0004d570 ?FWouldBe@WSB@@SGHJ@Z 0044e570 f ctl.obj - 0001:0004d590 ?FIs@WSB@@UAEHJ@Z 0044e590 f ctl.obj - 0001:0004d5a0 ?Cls@WSB@@UAEJXZ 0044e5a0 f ctl.obj - 0001:0004d5b0 ??0CTL@@IAE@PAUGCB@@@Z 0044e5b0 f ctl.obj - 0001:0004d5d0 ??1CTL@@MAE@XZ 0044e5d0 f ctl.obj - 0001:0004d610 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 0044e610 f ctl.obj - 0001:0004d650 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 0044e650 f ctl.obj - 0001:0004d670 ?_NewRc@CTL@@MAEXXZ 0044e670 f ctl.obj - 0001:0004d6f0 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 0044e6f0 f ctl.obj - 0001:0004d7b0 ?DxpNormal@SCB@@SGJXZ 0044e7b0 f ctl.obj - 0001:0004d7d0 ?DypNormal@SCB@@SGJXZ 0044e7d0 f ctl.obj - 0001:0004d7f0 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 0044e7f0 f ctl.obj - 0001:0004d8d0 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 0044e8d0 f ctl.obj - 0001:0004d940 ?_FCreate@SCB@@IAEHJJJK@Z 0044e940 f ctl.obj - 0001:0004da50 ?SetValMinMax@SCB@@QAEXJJJH@Z 0044ea50 f ctl.obj - 0001:0004dae0 ?TrackScroll@SCB@@UAEXJJ@Z 0044eae0 f ctl.obj - 0001:0004dc80 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 0044ec80 f ctl.obj - 0001:0004ddd0 ??_ESCB@@UAEPAXI@Z 0044edd0 f ctl.obj - 0001:0004ddd0 ??_GSCB@@UAEPAXI@Z 0044edd0 f ctl.obj - 0001:0004ddf0 ??_GWSB@@UAEPAXI@Z 0044edf0 f ctl.obj - 0001:0004ddf0 ??_EWSB@@UAEPAXI@Z 0044edf0 f ctl.obj - 0001:0004de10 ??_GCTL@@MAEPAXI@Z 0044ee10 f ctl.obj - 0001:0004de10 ??_ECTL@@MAEPAXI@Z 0044ee10 f ctl.obj - 0001:0004dec0 ?FWouldBe@GVID@@SGHJ@Z 0044eec0 f video.obj - 0001:0004dee0 ?FIs@GVID@@UAEHJ@Z 0044eee0 f video.obj - 0001:0004def0 ?Cls@GVID@@UAEJXZ 0044eef0 f video.obj - 0001:0004df00 ?FWouldBe@GVDS@@SGHJ@Z 0044ef00 f video.obj - 0001:0004df20 ?FIs@GVDS@@UAEHJ@Z 0044ef20 f video.obj - 0001:0004df30 ?Cls@GVDS@@UAEJXZ 0044ef30 f video.obj - 0001:0004df40 ?FWouldBe@GVDW@@SGHJ@Z 0044ef40 f video.obj - 0001:0004df60 ?FIs@GVDW@@UAEHJ@Z 0044ef60 f video.obj - 0001:0004df70 ?Cls@GVDW@@UAEJXZ 0044ef70 f video.obj - 0001:0004df90 ?PgvidNew@GVID@@SGPAV1@PAVFNI@@PAVGOB@@HJ@Z 0044ef90 f video.obj - 0001:0004dfc0 ??0GVID@@IAE@J@Z 0044efc0 f video.obj - 0001:0004dfe0 ??0GVDS@@IAE@J@Z 0044efe0 f video.obj - 0001:0004e000 ??1GVDS@@MAE@XZ 0044f000 f video.obj - 0001:0004e060 ?_FInit@GVDS@@MAEHPAVFNI@@PAVGOB@@@Z 0044f060 f video.obj - 0001:0004e180 ?PgvdsNew@GVDS@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 0044f180 f video.obj - 0001:0004e1f0 ?NfrMac@GVDS@@UAEJXZ 0044f1f0 f video.obj - 0001:0004e200 ?NfrCur@GVDS@@UAEJXZ 0044f200 f video.obj - 0001:0004e210 ?GotoNfr@GVDS@@UAEXJ@Z 0044f210 f video.obj - 0001:0004e230 ?FPlaying@GVDS@@UAEHXZ 0044f230 f video.obj - 0001:0004e240 ?FPlay@GVDS@@UAEHPAVRC@@@Z 0044f240 f video.obj - 0001:0004e2b0 ?SetRcPlay@GVDS@@UAEXPAVRC@@@Z 0044f2b0 f video.obj - 0001:0004e2f0 ?Stop@GVDS@@UAEXXZ 0044f2f0 f video.obj - 0001:0004e310 ?FCmdAll@GVDS@@UAEHPAUCMD@@@Z 0044f310 f video.obj - 0001:0004e390 ?Draw@GVDS@@UAEXPAVGNV@@PAVRC@@@Z 0044f390 f video.obj - 0001:0004e3c0 ?GetRc@GVDS@@UAEXPAVRC@@@Z 0044f3c0 f video.obj - 0001:0004e3e0 ?PgvdwNew@GVDW@@SGPAV1@PAVFNI@@PAVGOB@@J@Z 0044f3e0 f video.obj - 0001:0004e450 ??0GVDW@@IAE@J@Z 0044f450 f video.obj - 0001:0004e470 ??1GVDW@@MAE@XZ 0044f470 f video.obj - 0001:0004e4e0 ?_FInit@GVDW@@MAEHPAVFNI@@PAVGOB@@@Z 0044f4e0 f video.obj - 0001:0004e6a0 ?NfrMac@GVDW@@UAEJXZ 0044f6a0 f video.obj - 0001:0004e6b0 ?NfrCur@GVDW@@UAEJXZ 0044f6b0 f video.obj - 0001:0004e700 ?GotoNfr@GVDW@@UAEXJ@Z 0044f700 f video.obj - 0001:0004e740 ?FPlaying@GVDW@@UAEHXZ 0044f740 f video.obj - 0001:0004e7c0 ?FPlay@GVDW@@UAEHPAVRC@@@Z 0044f7c0 f video.obj - 0001:0004e820 ?SetRcPlay@GVDW@@UAEXPAVRC@@@Z 0044f820 f video.obj - 0001:0004e860 ?Stop@GVDW@@UAEXXZ 0044f860 f video.obj - 0001:0004e8a0 ?Draw@GVDW@@UAEXPAVGNV@@PAVRC@@@Z 0044f8a0 f video.obj - 0001:0004e8b0 ?_SetRc@GVDW@@MAEXXZ 0044f8b0 f video.obj - 0001:0004e9c0 ?GetRc@GVDW@@UAEXPAVRC@@@Z 0044f9c0 f video.obj - 0001:0004e9f0 ??_GGVID@@MAEPAXI@Z 0044f9f0 f video.obj - 0001:0004e9f0 ??_EGVID@@MAEPAXI@Z 0044f9f0 f video.obj - 0001:0004ea20 ??_GGVDS@@MAEPAXI@Z 0044fa20 f video.obj - 0001:0004ea20 ??_EGVDS@@MAEPAXI@Z 0044fa20 f video.obj - 0001:0004ea40 ??_GGVDW@@MAEPAXI@Z 0044fa40 f video.obj - 0001:0004ea40 ??_EGVDW@@MAEPAXI@Z 0044fa40 f video.obj - 0001:0004ea60 ??_9@$BEM@A 0044fa60 f video.obj - 0001:0004eb00 ?Pcmm@GVDS@@MAEPAUCMM@CMH@@XZ 0044fb00 f video.obj - 0001:0004eb10 ?FWouldBe@EDCB@@SGHJ@Z 0044fb10 f text.obj - 0001:0004eb30 ?FIs@EDCB@@UAEHJ@Z 0044fb30 f text.obj - 0001:0004eb40 ?Cls@EDCB@@UAEJXZ 0044fb40 f text.obj - 0001:0004eb50 ?FWouldBe@EDSL@@SGHJ@Z 0044fb50 f text.obj - 0001:0004eb70 ?FIs@EDSL@@UAEHJ@Z 0044fb70 f text.obj - 0001:0004eb80 ?Cls@EDSL@@UAEJXZ 0044fb80 f text.obj - 0001:0004eb90 ?FWouldBe@EDPL@@SGHJ@Z 0044fb90 f text.obj - 0001:0004ebb0 ?FIs@EDPL@@UAEHJ@Z 0044fbb0 f text.obj - 0001:0004ebc0 ?Cls@EDPL@@UAEJXZ 0044fbc0 f text.obj - 0001:0004ebd0 ?Set@EDPAR@@QAEXJPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 0044fbd0 f text.obj - 0001:0004ec50 ??0EDCB@@IAE@PAUGCB@@J@Z 0044fc50 f text.obj - 0001:0004eca0 ??1EDCB@@UAE@XZ 0044fca0 f text.obj - 0001:0004ecd0 ?_FInit@EDCB@@MAEHXZ 0044fcd0 f text.obj - 0001:0004ed60 ?Draw@EDCB@@UAEXPAVGNV@@PAVRC@@@Z 0044fd60 f text.obj - 0001:0004ee00 ?FCmdTrackMouse@EDCB@@UAEHPAUCMD_MOUSE@@@Z 0044fe00 f text.obj - 0001:0004ef40 ?FCmdKey@EDCB@@UAEHPAUCMD_KEY@@@Z 0044ff40 f text.obj - 0001:0004f390 ?FCmdSelIdle@EDCB@@UAEHPAUCMD@@@Z 00450390 f text.obj - 0001:0004f410 ?FCmdActivateSel@EDCB@@UAEHPAUCMD@@@Z 00450410 f text.obj - 0001:0004f430 ?Activate@EDCB@@UAEXH@Z 00450430 f text.obj - 0001:0004f470 ?_GetRcContent@EDCB@@MAEXPAVRC@@@Z 00450470 f text.obj - 0001:0004f480 ?_InitGnv@EDCB@@MAEXPAVGNV@@@Z 00450480 f text.obj - 0001:0004f4b0 ?_NewRc@EDCB@@MAEXXZ 004504b0 f text.obj - 0001:0004f4c0 ?SetSel@EDCB@@QAEXJJJ@Z 004504c0 f text.obj - 0001:0004f5b0 ?_SwitchSel@EDCB@@IAEXHJ@Z 004505b0 f text.obj - 0001:0004f630 ?ShowSel@EDCB@@QAEXHJ@Z 00450630 f text.obj - 0001:0004f800 ?_InvertSel@EDCB@@IAEXPAVGNV@@J@Z 00450800 f text.obj - 0001:0004f8d0 ?_InvertIchRange@EDCB@@IAEXPAVGNV@@JJJ@Z 004508d0 f text.obj - 0001:0004fad0 ?_UpdateLn@EDCB@@IAEXJJJJJ@Z 00450ad0 f text.obj - 0001:0004fc50 ?_Scroll@EDCB@@IAEXJJJ@Z 00450c50 f text.obj - 0001:0004fca0 ?_YpFromIch@EDCB@@MAEJJ@Z 00450ca0 f text.obj - 0001:0004fcd0 ?_ChFetch@EDCB@@IAEDJ@Z 00450cd0 f text.obj - 0001:0004fd00 ?_IchPrev@EDCB@@IAEJJH@Z 00450d00 f text.obj - 0001:0004fda0 ?_IchNext@EDCB@@IAEJJH@Z 00450da0 f text.obj - 0001:0004fe30 ??0EDPL@@IAE@PAVEDPAR@@@Z 00450e30 f text.obj - 0001:0004fed0 ?_FInit@EDPL@@MAEHXZ 00450ed0 f text.obj - 0001:0004ff40 ?_YpFromLn@EDPL@@MAEJJ@Z 00450f40 f text.obj - 0001:00050000 ?_LnFromYp@EDPL@@MAEJJ@Z 00451000 f text.obj - 0001:00050050 ?_HiliteRc@EDPL@@MAEXPAVGNV@@PAVRC@@@Z 00451050 f text.obj - 0001:00050070 ?_XpFromIch@EDPL@@MAEJJ@Z 00451070 f text.obj - 0001:00050160 ?_IchFromLnXp@EDPL@@MAEJJJH@Z 00451160 f text.obj - 0001:00050260 ?_DrawLine@EDPL@@MAEXPAVGNV@@J@Z 00451260 f text.obj - 0001:00050370 ?_XpOrigin@EDPL@@IAEJXZ 00451370 f text.obj - 0001:000503e0 ??0EDSL@@IAE@PAVEDPAR@@@Z 004513e0 f text.obj - 0001:00050400 ?PedslNew@EDSL@@SGPAV1@PAVEDPAR@@@Z 00451400 f text.obj - 0001:00050450 ?_FLockLn@EDSL@@MAEHJPAPADPAJ@Z 00451450 f text.obj - 0001:00050490 ?_UnlockLn@EDSL@@MAEXJPAD@Z 00451490 f text.obj - 0001:000504a0 ?_LnFromIch@EDSL@@MAEJJ@Z 004514a0 f text.obj - 0001:000504c0 ?_IchMinLn@EDSL@@MAEJJ@Z 004514c0 f text.obj - 0001:000504e0 ?IchMac@EDSL@@UAEJXZ 004514e0 f text.obj - 0001:000504f0 ?_LnMac@EDSL@@MAEJXZ 004514f0 f text.obj - 0001:00050500 ?FReplace@EDSL@@UAEHPADJJJJ@Z 00451500 f text.obj - 0001:00050690 ?_FFilterCh@EDSL@@MAEHD@Z 00451690 f text.obj - 0001:000506b0 ?CchFetch@EDSL@@UAEJPADJJ@Z 004516b0 f text.obj - 0001:000507a0 ??_GEDCB@@UAEPAXI@Z 004517a0 f text.obj - 0001:000507a0 ??_EEDCB@@UAEPAXI@Z 004517a0 f text.obj - 0001:000507c0 ??_GEDPL@@UAEPAXI@Z 004517c0 f text.obj - 0001:000507c0 ??_EEDPL@@UAEPAXI@Z 004517c0 f text.obj - 0001:000507e0 ??_EEDSL@@UAEPAXI@Z 004517e0 f text.obj - 0001:000507e0 ??_GEDSL@@UAEPAXI@Z 004517e0 f text.obj - 0001:00050800 ?FWouldBe@MBMP@@SGHJ@Z 00451800 f mbmp.obj - 0001:00050820 ?FIs@MBMP@@UAEHJ@Z 00451820 f mbmp.obj - 0001:00050830 ?Cls@MBMP@@UAEJXZ 00451830 f mbmp.obj - 0001:00050840 ??1MBMP@@UAE@XZ 00451840 f mbmp.obj - 0001:00050860 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 00451860 f mbmp.obj - 0001:000508d0 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 004518d0 f mbmp.obj - 0001:00050cb0 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 00451cb0 f mbmp.obj - 0001:00050d60 ?PmbmpRead@MBMP@@SGPAV1@PAVBLCK@@@Z 00451d60 f mbmp.obj - 0001:00050eb0 ?CbOnFile@MBMP@@UAEJXZ 00451eb0 f mbmp.obj - 0001:00050ec0 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 00451ec0 f mbmp.obj - 0001:00050f20 ?GetRc@MBMP@@QAEXPAVRC@@@Z 00451f20 f mbmp.obj - 0001:00050f50 ?FPtIn@MBMP@@QAEHJJ@Z 00451f50 f mbmp.obj - 0001:00050ff0 ?FReadMbmp@MBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00451ff0 f mbmp.obj - 0001:00051050 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 00452050 f mbmp.obj - 0001:00051500 ??_EMBMP@@UAEPAXI@Z 00452500 f mbmp.obj - 0001:00051500 ??_GMBMP@@UAEPAXI@Z 00452500 f mbmp.obj - 0001:000515b0 ?FWouldBe@DOC@@SGHJ@Z 004525b0 f chdoc.obj - 0001:000515d0 ?FIs@DOC@@UAEHJ@Z 004525d0 f chdoc.obj - 0001:000515e0 ?Cls@DOC@@UAEJXZ 004525e0 f chdoc.obj - 0001:000515f0 ?FWouldBe@DOCE@@SGHJ@Z 004525f0 f chdoc.obj - 0001:00051610 ?FIs@DOCE@@UAEHJ@Z 00452610 f chdoc.obj - 0001:00051620 ?Cls@DOCE@@UAEJXZ 00452620 f chdoc.obj - 0001:00051630 ?FWouldBe@DCLB@@SGHJ@Z 00452630 f chdoc.obj - 0001:00051650 ?FIs@DCLB@@UAEHJ@Z 00452650 f chdoc.obj - 0001:00051660 ?Cls@DCLB@@UAEJXZ 00452660 f chdoc.obj - 0001:00051670 ?FWouldBe@DCD@@SGHJ@Z 00452670 f chdoc.obj - 0001:00051690 ?FIs@DCD@@UAEHJ@Z 00452690 f chdoc.obj - 0001:000516a0 ?Cls@DCD@@UAEJXZ 004526a0 f chdoc.obj - 0001:000516b0 ?FWouldBe@SEL@@SGHJ@Z 004526b0 f chdoc.obj - 0001:000516d0 ?FIs@SEL@@UAEHJ@Z 004526d0 f chdoc.obj - 0001:000516e0 ?Cls@SEL@@UAEJXZ 004526e0 f chdoc.obj - 0001:000516f0 ?FWouldBe@TSCG@@SGHJ@Z 004526f0 f chdoc.obj - 0001:00051710 ?FIs@TSCG@@UAEHJ@Z 00452710 f chdoc.obj - 0001:00051720 ?Cls@TSCG@@UAEJXZ 00452720 f chdoc.obj - 0001:00051730 ?_FDlgAddChunk@@YGHPAVDLG@@PAJPAX@Z 00452730 f chdoc.obj - 0001:000518a0 ??0DOC@@IAE@XZ 004528a0 f chdoc.obj - 0001:000518c0 ??1DOC@@MAE@XZ 004528c0 f chdoc.obj - 0001:00051900 ?PdocNew@DOC@@SGPAV1@PAVFNI@@@Z 00452900 f chdoc.obj - 0001:00051970 ?PddgNew@DOC@@UAEPAVDDG@@PAUGCB@@@Z 00452970 f chdoc.obj - 0001:00051990 ?FGetFni@DOC@@UAEHPAVFNI@@@Z 00452990 f chdoc.obj - 0001:000519d0 ?FSaveToFni@DOC@@UAEHPAVFNI@@H@Z 004529d0 f chdoc.obj - 0001:00051a50 ?FGetFniSave@DOC@@UAEHPAVFNI@@@Z 00452a50 f chdoc.obj - 0001:00051a70 ??0DOCE@@IAE@PAVDOCB@@PAVCFL@@KK@Z 00452a70 f chdoc.obj - 0001:00051aa0 ?_FInit@DOCE@@IAEHXZ 00452aa0 f chdoc.obj - 0001:00051b10 ?PdoceFromChunk@DOCE@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 00452b10 f chdoc.obj - 0001:00051b70 ?CloseDeletedDoce@DOCE@@SGXPAVDOCB@@@Z 00452b70 f chdoc.obj - 0001:00051bc0 ?GetName@DOCE@@UAEXPAVSTN@@@Z 00452bc0 f chdoc.obj - 0001:00051c20 ?FSave@DOCE@@UAEHJ@Z 00452c20 f chdoc.obj - 0001:00051de0 ?_FSaveToChunk@DOCE@@MAEHKKH@Z 00452de0 f chdoc.obj - 0001:00051f20 ??0DCLB@@IAE@PAVDOCB@@PAUGCB@@@Z 00452f20 f chdoc.obj - 0001:00051fc0 ?_LnFromYp@DCLB@@IAEJJ@Z 00452fc0 f chdoc.obj - 0001:00051ff0 ?_Scroll@DCLB@@MAEXJJJJ@Z 00452ff0 f chdoc.obj - 0001:00052220 ?_ScrollDxpDyp@DCLB@@MAEXJJ@Z 00453220 f chdoc.obj - 0001:00052290 ?_GetContent@DCLB@@IAEXPAVRC@@@Z 00453290 f chdoc.obj - 0001:000522b0 ?GetMinMax@DCLB@@MAEXPAVRC@@@Z 004532b0 f chdoc.obj - 0001:000522f0 ??0DCD@@IAE@PAVDOCB@@PAVCFL@@PAUGCB@@@Z 004532f0 f chdoc.obj - 0001:00052350 ?PdcdNew@DCD@@SGPAV1@PAVDOCB@@PAVCFL@@PAUGCB@@@Z 00453350 f chdoc.obj - 0001:000523c0 ?_Activate@DCD@@MAEXH@Z 004533c0 f chdoc.obj - 0001:00052400 ?InvalAllDcd@DCD@@SGXPAVDOCB@@PAVCFL@@PAUCKI@@PAUKID@@@Z 00453400 f chdoc.obj - 0001:00052460 ?_InvalCkiKid@DCD@@IAEXPAUCKI@@PAUKID@@@Z 00453460 f chdoc.obj - 0001:00052550 ?Draw@DCD@@UAEXPAVGNV@@PAVRC@@@Z 00453550 f chdoc.obj - 0001:000529c0 ?_DrawSel@DCD@@IAEXPAVGNV@@@Z 004539c0 f chdoc.obj - 0001:00052a30 ?_SetSel@DCD@@IAEXJPAUCKI@@PAUKID@@@Z 00453a30 f chdoc.obj - 0001:00052b00 ?_ShowSel@DCD@@IAEXXZ 00453b00 f chdoc.obj - 0001:00052b90 ?MouseDown@DCD@@UAEXJJJK@Z 00453b90 f chdoc.obj - 0001:00052f00 ?_HiliteLn@DCD@@IAEXJ@Z 00453f00 f chdoc.obj - 0001:00052fa0 ?FCmdReopen@DCD@@UAEHPAUCMD@@@Z 00453fa0 f chdoc.obj - 0001:000530b0 ?FCmdKey@DCD@@UAEHPAUCMD_KEY@@@Z 004540b0 f chdoc.obj - 0001:000532d0 ?_ScvMax@DCD@@MAEJH@Z 004542d0 f chdoc.obj - 0001:00053330 ?FEnableDcdCmd@DCD@@UAEHPAUCMD@@PAK@Z 00454330 f chdoc.obj - 0001:00053430 ?_FAddChunk@DCD@@IAEHKPAUCKI@@PAH@Z 00454430 f chdoc.obj - 0001:000535d0 ?FCmdAddChunk@DCD@@UAEHPAUCMD@@@Z 004545d0 f chdoc.obj - 0001:00053660 ?FCmdAddPicChunk@DCD@@UAEHPAUCMD@@@Z 00454660 f chdoc.obj - 0001:000537d0 ?_FDlgMbmp@@YGHPAVDLG@@PAJPAX@Z 004547d0 f chdoc.obj - 0001:000539a0 ?FCmdAddBitmapChunk@DCD@@UAEHPAUCMD@@@Z 004549a0 f chdoc.obj - 0001:00053c40 ?FCmdAddFileChunk@DCD@@UAEHPAUCMD@@@Z 00454c40 f chdoc.obj - 0001:00053da0 ?_FDlgEditChunkInfo@@YGHPAVDLG@@PAJPAX@Z 00454da0 f chdoc.obj - 0001:00053ee0 ?_FEditChunkInfo@DCD@@IAEHPAUCKI@@@Z 00454ee0 f chdoc.obj - 0001:00054040 ?FCmdEditChunkInfo@DCD@@UAEHPAUCMD@@@Z 00455040 f chdoc.obj - 0001:000540e0 ?FCmdDeleteChunk@DCD@@UAEHPAUCMD@@@Z 004550e0 f chdoc.obj - 0001:00054190 ?_FDlgChangeChid@@YGHPAVDLG@@PAJPAX@Z 00455190 f chdoc.obj - 0001:000542a0 ?_FChangeChid@DCD@@IAEHPAUCKI@@PAUKID@@@Z 004552a0 f chdoc.obj - 0001:000543a0 ?FCmdChangeChid@DCD@@UAEHPAUCMD@@@Z 004553a0 f chdoc.obj - 0001:00054460 ?_FDlgAdoptChunk@@YGHPAVDLG@@PAJPAX@Z 00455460 f chdoc.obj - 0001:00054740 ?_FDoAdoptChunkDlg@DCD@@IAEHPAUCKI@@PAUKID@@@Z 00455740 f chdoc.obj - 0001:00054970 ?FCmdAdoptChunk@DCD@@UAEHPAUCMD@@@Z 00455970 f chdoc.obj - 0001:000549d0 ?FCmdUnadoptChunk@DCD@@UAEHPAUCMD@@@Z 004559d0 f chdoc.obj - 0001:00054a60 ?FCmdEditChunk@DCD@@UAEHPAUCMD@@@Z 00455a60 f chdoc.obj - 0001:00054ab0 ?Pcmm@DCD@@MAEPAUCMM@CMH@@XZ 00455ab0 f chdoc.obj - 0001:00054ac0 ?_EditCki@DCD@@IAEXPAUCKI@@J@Z 00455ac0 f chdoc.obj - 0001:00054db0 ?FCmdImportScript@DCD@@UAEHPAUCMD@@@Z 00455db0 f chdoc.obj - 0001:00054f80 ?Draw@TSCG@@UAEXPAVGNV@@PAVRC@@@Z 00455f80 f chdoc.obj - 0001:00054fa0 ?FCmdTestScript@DCD@@UAEHPAUCMD@@@Z 00455fa0 f chdoc.obj - 0001:00055090 ?FCmdStopSound@DCD@@UAEHPAUCMD@@@Z 00456090 f chdoc.obj - 0001:000550c0 ?FCmdPack@DCD@@UAEHPAUCMD@@@Z 004560c0 f chdoc.obj - 0001:000551b0 ?FTestScript@DCD@@QAEHKKJ@Z 004561b0 f chdoc.obj - 0001:00055310 ?Pcmm@TSCG@@MAEPAUCMM@CMH@@XZ 00456310 f chdoc.obj - 0001:00055320 ?FCmdDisasmScript@DCD@@UAEHPAUCMD@@@Z 00456320 f chdoc.obj - 0001:00055490 ?_FCopySel@DCD@@MAEHPAPAVDOCB@@@Z 00456490 f chdoc.obj - 0001:00055520 ?_ClearSel@DCD@@MAEXXZ 00456520 f chdoc.obj - 0001:00055590 ?_FPaste@DCD@@MAEHPAVCLIP@@HJ@Z 00456590 f chdoc.obj - 0001:00055740 ?FCmdSetColorTable@DCD@@UAEHPAUCMD@@@Z 00456740 f chdoc.obj - 0001:000557f0 ?FCmdFilterChunk@DCD@@UAEHPAUCMD@@@Z 004567f0 f chdoc.obj - 0001:00055ab0 ?FCmdCloneChunk@DCD@@UAEHPAUCMD@@@Z 00456ab0 f chdoc.obj - 0001:00055b80 ?FGetCtgFromStn@@YGHPAKPAVSTN@@@Z 00456b80 f chdoc.obj - 0001:00055c00 ?_FGetCtg@@YGHPAVDLG@@JPAK@Z 00456c00 f chdoc.obj - 0001:00055c50 ?_PutCtgStn@@YGXPAVDLG@@JK@Z 00456c50 f chdoc.obj - 0001:00055ca0 ??0SEL@@QAE@PAVCFL@@@Z 00456ca0 f chdoc.obj - 0001:00055cd0 ??0SEL@@QAE@AAV0@@Z 00456cd0 f chdoc.obj - 0001:00055d00 ??1SEL@@UAE@XZ 00456d00 f chdoc.obj - 0001:00055d30 ??4SEL@@QAEAAV0@AAV0@@Z 00456d30 f chdoc.obj - 0001:00055d70 ?_SetNil@SEL@@IAEXXZ 00456d70 f chdoc.obj - 0001:00055d80 ?GrfselGetCkiKid@SEL@@QAEKPAUCKI@@PAUKID@@@Z 00456d80 f chdoc.obj - 0001:00055de0 ?FSetLn@SEL@@QAEHJ@Z 00456de0 f chdoc.obj - 0001:00055e70 ?LnLim@SEL@@QAEJXZ 00456e70 f chdoc.obj - 0001:00055ed0 ?FAdvance@SEL@@QAEHXZ 00456ed0 f chdoc.obj - 0001:00055fd0 ?FRetreat@SEL@@QAEHXZ 00456fd0 f chdoc.obj - 0001:00056090 ?FSetCkiKid@SEL@@QAEHPAUCKI@@PAUKID@@H@Z 00457090 f chdoc.obj - 0001:00056100 ?Adjust@SEL@@QAEXH@Z 00457100 f chdoc.obj - 0001:00056230 ?HideKids@SEL@@QAEXH@Z 00457230 f chdoc.obj - 0001:00056260 ?HideList@SEL@@QAEXH@Z 00457260 f chdoc.obj - 0001:00056290 ?FGetCtgFilter@SEL@@QAEHJPAK@Z 00457290 f chdoc.obj - 0001:000562c0 ?FreeFilterList@SEL@@QAEXXZ 004572c0 f chdoc.obj - 0001:000562f0 ?FAddCtgFilter@SEL@@QAEHK@Z 004572f0 f chdoc.obj - 0001:00056340 ?_FFilter@SEL@@IAEHKK@Z 00457340 f chdoc.obj - 0001:000563b0 ??_ETSCG@@UAEPAXI@Z 004573b0 f chdoc.obj - 0001:000563b0 ??_GTSCG@@UAEPAXI@Z 004573b0 f chdoc.obj - 0001:000563d0 ??_GDOC@@MAEPAXI@Z 004573d0 f chdoc.obj - 0001:000563d0 ??_EDOC@@MAEPAXI@Z 004573d0 f chdoc.obj - 0001:000563f0 ??_GDOCE@@UAEPAXI@Z 004573f0 f chdoc.obj - 0001:000563f0 ??_EDOCE@@UAEPAXI@Z 004573f0 f chdoc.obj - 0001:00056410 ??_GDCLB@@UAEPAXI@Z 00457410 f chdoc.obj - 0001:00056410 ??_EDCLB@@UAEPAXI@Z 00457410 f chdoc.obj - 0001:00056430 ??_EDCD@@UAEPAXI@Z 00457430 f chdoc.obj - 0001:00056430 ??_GDCD@@UAEPAXI@Z 00457430 f chdoc.obj - 0001:00056460 ??_ESEL@@UAEPAXI@Z 00457460 f chdoc.obj - 0001:00056460 ??_GSEL@@UAEPAXI@Z 00457460 f chdoc.obj - 0001:00056480 ??_9@$BBAA@A 00457480 f chdoc.obj - 0001:00056490 ??_9@$BOA@A 00457490 f chdoc.obj - 0001:000564a0 ??_9@$BBAE@A 004574a0 f chdoc.obj - 0001:000564b0 ??_9@$BOE@A 004574b0 f chdoc.obj - 0001:000564c0 ??_9@$BBAI@A 004574c0 f chdoc.obj - 0001:000564d0 ??_9@$BOI@A 004574d0 f chdoc.obj - 0001:000564e0 ??_9@$BBAM@A 004574e0 f chdoc.obj - 0001:000564f0 ??_9@$BMM@A 004574f0 f chdoc.obj - 0001:00056500 ??_9@$BOM@A 00457500 f chdoc.obj - 0001:00056510 ??_9@$BPA@A 00457510 f chdoc.obj - 0001:00056520 ??_9@$BNA@A 00457520 f chdoc.obj - 0001:00056530 ??_9@$BPE@A 00457530 f chdoc.obj - 0001:00056540 ??_9@$BNE@A 00457540 f chdoc.obj - 0001:00056550 ??_9@$BPI@A 00457550 f chdoc.obj - 0001:00056560 ??_9@$BNI@A 00457560 f chdoc.obj - 0001:00056570 ??_9@$BPM@A 00457570 f chdoc.obj - 0001:00056580 ??_9@$BNM@A 00457580 f chdoc.obj - 0001:000565b0 ?FWouldBe@APP@@SGHJ@Z 004575b0 f ched.obj - 0001:000565d0 ?FIs@APP@@UAEHJ@Z 004575d0 f ched.obj - 0001:000565e0 ?Cls@APP@@UAEJXZ 004575e0 f ched.obj - 0001:000565f0 ?FrameMain@@YGXXZ 004575f0 f ched.obj - 0001:00056610 ?_FInit@APP@@MAEHKKJ@Z 00457610 f ched.obj - 0001:00056800 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 00457800 f ched.obj - 0001:00056830 ?UpdateHwnd@APP@@UAEXPAUHWND__@@PAVRC@@K@Z 00457830 f ched.obj - 0001:00056870 ?_FastUpdate@APP@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 00457870 f ched.obj - 0001:000568b0 ?FCmdOpen@APP@@UAEHPAUCMD@@@Z 004578b0 f ched.obj - 0001:00056a40 ??_GAPP@@UAEPAXI@Z 00457a40 f ched.obj - 0001:00056a40 ??_EAPP@@UAEPAXI@Z 00457a40 f ched.obj - 0001:00056a60 ??_9@$BBCI@A 00457a60 f ched.obj - 0001:00056b00 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 00457b00 f ched.obj - 0001:00056b10 ?FWouldBe@DOCG@@SGHJ@Z 00457b10 f chgrp.obj - 0001:00056b30 ?FIs@DOCG@@UAEHJ@Z 00457b30 f chgrp.obj - 0001:00056b40 ?Cls@DOCG@@UAEJXZ 00457b40 f chgrp.obj - 0001:00056b50 ?FWouldBe@DOCI@@SGHJ@Z 00457b50 f chgrp.obj - 0001:00056b70 ?FIs@DOCI@@UAEHJ@Z 00457b70 f chgrp.obj - 0001:00056b80 ?Cls@DOCI@@UAEJXZ 00457b80 f chgrp.obj - 0001:00056b90 ?FWouldBe@DCGB@@SGHJ@Z 00457b90 f chgrp.obj - 0001:00056bb0 ?FIs@DCGB@@UAEHJ@Z 00457bb0 f chgrp.obj - 0001:00056bc0 ?Cls@DCGB@@UAEJXZ 00457bc0 f chgrp.obj - 0001:00056bd0 ?FWouldBe@DCGL@@SGHJ@Z 00457bd0 f chgrp.obj - 0001:00056bf0 ?FIs@DCGL@@UAEHJ@Z 00457bf0 f chgrp.obj - 0001:00056c00 ?Cls@DCGL@@UAEJXZ 00457c00 f chgrp.obj - 0001:00056c10 ?FWouldBe@DCGG@@SGHJ@Z 00457c10 f chgrp.obj - 0001:00056c30 ?FIs@DCGG@@UAEHJ@Z 00457c30 f chgrp.obj - 0001:00056c40 ?Cls@DCGG@@UAEJXZ 00457c40 f chgrp.obj - 0001:00056c50 ?FWouldBe@DCST@@SGHJ@Z 00457c50 f chgrp.obj - 0001:00056c70 ?FIs@DCST@@UAEHJ@Z 00457c70 f chgrp.obj - 0001:00056c80 ?Cls@DCST@@UAEJXZ 00457c80 f chgrp.obj - 0001:00056c90 ??0DOCG@@IAE@PAVDOCB@@PAVCFL@@KKJ@Z 00457c90 f chgrp.obj - 0001:00056cd0 ??1DOCG@@MAE@XZ 00457cd0 f chgrp.obj - 0001:00056d00 ?PdocgNew@DOCG@@SGPAV1@PAVDOCB@@PAVCFL@@KKJ@Z 00457d00 f chgrp.obj - 0001:00056d70 ?_FDlgGrpbNew@@YGHPAVDLG@@PAJPAX@Z 00457d70 f chgrp.obj - 0001:00056e30 ?_FRead@DOCG@@MAEHPAVBLCK@@@Z 00457e30 f chgrp.obj - 0001:000570d0 ?PddgNew@DOCG@@UAEPAVDDG@@PAUGCB@@@Z 004580d0 f chgrp.obj - 0001:00057150 ?_FWrite@DOCG@@MAEHPAVBLCK@@H@Z 00458150 f chgrp.obj - 0001:00057170 ?_CbOnFile@DOCG@@MAEJXZ 00458170 f chgrp.obj - 0001:00057180 ??0DCGB@@IAE@PAVDOCB@@PAVGRPB@@JJPAUGCB@@@Z 00458180 f chgrp.obj - 0001:00057210 ?InvalAllDcgb@DCGB@@SGXPAVDOCB@@PAVGRPB@@JJJ@Z 00458210 f chgrp.obj - 0001:00057270 ?_InvalIv@DCGB@@IAEXJJJ@Z 00458270 f chgrp.obj - 0001:00057360 ?_Activate@DCGB@@MAEXH@Z 00458360 f chgrp.obj - 0001:000573a0 ?_ScvMax@DCGB@@MAEJH@Z 004583a0 f chgrp.obj - 0001:00057410 ?_SetSel@DCGB@@IAEXJ@Z 00458410 f chgrp.obj - 0001:000574d0 ?_ShowSel@DCGB@@IAEXXZ 004584d0 f chgrp.obj - 0001:00057560 ?_DrawSel@DCGB@@IAEXPAVGNV@@@Z 00458560 f chgrp.obj - 0001:000575d0 ?FCmdKey@DCGB@@UAEHPAUCMD_KEY@@@Z 004585d0 f chgrp.obj - 0001:00057780 ?MouseDown@DCGB@@UAEXJJJK@Z 00458780 f chgrp.obj - 0001:00057930 ?FEnableDcgbCmd@DCGB@@UAEHPAUCMD@@PAK@Z 00458930 f chgrp.obj - 0001:000579d0 ?FCmdEditItem@DCGB@@UAEHPAUCMD@@@Z 004589d0 f chgrp.obj - 0001:00057a00 ?_EditIvDln@DCGB@@IAEXJJ@Z 00458a00 f chgrp.obj - 0001:00057a40 ?FCmdDeleteItem@DCGB@@UAEHPAUCMD@@@Z 00458a40 f chgrp.obj - 0001:00057a60 ?_DeleteIv@DCGB@@IAEXJ@Z 00458a60 f chgrp.obj - 0001:00057b00 ??0DCGL@@IAE@PAVDOCB@@PAVGLB@@JPAUGCB@@@Z 00458b00 f chgrp.obj - 0001:00057b30 ?PdcglNew@DCGL@@SGPAV1@PAVDOCB@@PAVGLB@@JPAUGCB@@@Z 00458b30 f chgrp.obj - 0001:00057ba0 ?Draw@DCGL@@UAEXPAVGNV@@PAVRC@@@Z 00458ba0 f chgrp.obj - 0001:00057e50 ?FCmdAddItem@DCGL@@UAEHPAUCMD@@@Z 00458e50 f chgrp.obj - 0001:00057f60 ??0DCGG@@IAE@PAVDOCB@@PAVGGB@@JPAUGCB@@@Z 00458f60 f chgrp.obj - 0001:00057fa0 ?PdcggNew@DCGG@@SGPAV1@PAVDOCB@@PAVGGB@@JPAUGCB@@@Z 00458fa0 f chgrp.obj - 0001:00058010 ?Draw@DCGG@@UAEXPAVGNV@@PAVRC@@@Z 00459010 f chgrp.obj - 0001:000583f0 ?FCmdAddItem@DCGG@@UAEHPAUCMD@@@Z 004593f0 f chgrp.obj - 0001:00058500 ??0DCST@@IAE@PAVDOCB@@PAVGSTB@@JPAUGCB@@@Z 00459500 f chgrp.obj - 0001:00058550 ?PdcstNew@DCST@@SGPAV1@PAVDOCB@@PAVGSTB@@JPAUGCB@@@Z 00459550 f chgrp.obj - 0001:000585c0 ?Draw@DCST@@UAEXPAVGNV@@PAVRC@@@Z 004595c0 f chgrp.obj - 0001:000589d0 ?FCmdAddItem@DCST@@UAEHPAUCMD@@@Z 004599d0 f chgrp.obj - 0001:00058b00 ??0DOCI@@IAE@PAVDOCB@@PAVGRPB@@JJJ@Z 00459b00 f chgrp.obj - 0001:00058b40 ?PdociNew@DOCI@@SGPAV1@PAVDOCB@@PAVGRPB@@JJJ@Z 00459b40 f chgrp.obj - 0001:00058ba0 ?_FInit@DOCI@@IAEHXZ 00459ba0 f chgrp.obj - 0001:00058c10 ?PddgNew@DOCI@@UAEPAVDDG@@PAUGCB@@@Z 00459c10 f chgrp.obj - 0001:00058c30 ?GetName@DOCI@@UAEXPAVSTN@@@Z 00459c30 f chgrp.obj - 0001:00058c90 ?FSave@DOCI@@UAEHJ@Z 00459c90 f chgrp.obj - 0001:00058cd0 ?_FSaveToItem@DOCI@@MAEHJH@Z 00459cd0 f chgrp.obj - 0001:00058d20 ?_FWrite@DOCI@@MAEHJ@Z 00459d20 f chgrp.obj - 0001:00058e40 ?_HqRead@DOCI@@MAEPAXXZ 00459e40 f chgrp.obj - 0001:00059080 ??_GDOCG@@MAEPAXI@Z 0045a080 f chgrp.obj - 0001:00059080 ??_EDOCG@@MAEPAXI@Z 0045a080 f chgrp.obj - 0001:000590a0 ??_GDCGB@@UAEPAXI@Z 0045a0a0 f chgrp.obj - 0001:000590a0 ??_EDCGB@@UAEPAXI@Z 0045a0a0 f chgrp.obj - 0001:000590c0 ??_GDCGL@@UAEPAXI@Z 0045a0c0 f chgrp.obj - 0001:000590c0 ??_EDCGL@@UAEPAXI@Z 0045a0c0 f chgrp.obj - 0001:000590e0 ??_GDCGG@@UAEPAXI@Z 0045a0e0 f chgrp.obj - 0001:000590e0 ??_EDCGG@@UAEPAXI@Z 0045a0e0 f chgrp.obj - 0001:00059100 ??_GDCST@@UAEPAXI@Z 0045a100 f chgrp.obj - 0001:00059100 ??_EDCST@@UAEPAXI@Z 0045a100 f chgrp.obj - 0001:00059120 ??_GDOCI@@UAEPAXI@Z 0045a120 f chgrp.obj - 0001:00059120 ??_EDOCI@@UAEPAXI@Z 0045a120 f chgrp.obj - 0001:00059150 ?Pcmm@DCGB@@MAEPAUCMM@CMH@@XZ 0045a150 f chgrp.obj - 0001:00059160 ?FWouldBe@DCH@@SGHJ@Z 0045a160 f chhex.obj - 0001:00059180 ?FIs@DCH@@UAEHJ@Z 0045a180 f chhex.obj - 0001:00059190 ?Cls@DCH@@UAEJXZ 0045a190 f chhex.obj - 0001:000591a0 ?FWouldBe@DOCH@@SGHJ@Z 0045a1a0 f chhex.obj - 0001:000591c0 ?FIs@DOCH@@UAEHJ@Z 0045a1c0 f chhex.obj - 0001:000591d0 ?Cls@DOCH@@UAEJXZ 0045a1d0 f chhex.obj - 0001:000591e0 ?FWouldBe@DHEX@@SGHJ@Z 0045a1e0 f chhex.obj - 0001:00059200 ?FIs@DHEX@@UAEHJ@Z 0045a200 f chhex.obj - 0001:00059210 ?Cls@DHEX@@UAEJXZ 0045a210 f chhex.obj - 0001:00059220 ?PdhexNew@DHEX@@SGPAV1@XZ 0045a220 f chhex.obj - 0001:00059260 ?PddgNew@DHEX@@UAEPAVDDG@@PAUGCB@@@Z 0045a260 f chhex.obj - 0001:00059280 ??0DCH@@IAE@PAVDOCB@@PAVBSF@@HPAUGCB@@@Z 0045a280 f chhex.obj - 0001:000592e0 ?PdchNew@DCH@@SGPAV1@PAVDOCB@@PAVBSF@@HPAUGCB@@@Z 0045a2e0 f chhex.obj - 0001:00059350 ?_Activate@DCH@@MAEXH@Z 0045a350 f chhex.obj - 0001:000593b0 ?Draw@DCH@@UAEXPAVGNV@@PAVRC@@@Z 0045a3b0 f chhex.obj - 0001:00059740 ?_DrawHeader@DCH@@IAEXPAVGNV@@@Z 0045a740 f chhex.obj - 0001:000598e0 ?FCmdKey@DCH@@UAEHPAUCMD_KEY@@@Z 0045a8e0 f chhex.obj - 0001:00059c60 ?_FReplace@DCH@@IAEHPAEJJJH@Z 0045ac60 f chhex.obj - 0001:00059d30 ?_InvalAllDch@DCH@@IAEXJJJ@Z 0045ad30 f chhex.obj - 0001:00059d80 ?_InvalIb@DCH@@IAEXJJJ@Z 0045ad80 f chhex.obj - 0001:00059ed0 ?_SwitchSel@DCH@@IAEXH@Z 0045aed0 f chhex.obj - 0001:00059f40 ?_ShowSel@DCH@@IAEXXZ 0045af40 f chhex.obj - 0001:0005a040 ?_InvertSel@DCH@@IAEXPAVGNV@@@Z 0045b040 f chhex.obj - 0001:0005a2d0 ?_InvertIbRange@DCH@@IAEXPAVGNV@@JJH@Z 0045b2d0 f chhex.obj - 0001:0005a4b0 ?_SetHalfSel@DCH@@IAEXJ@Z 0045b4b0 f chhex.obj - 0001:0005a570 ?_SetSel@DCH@@IAEXJJH@Z 0045b570 f chhex.obj - 0001:0005a720 ?_SetHexSel@DCH@@IAEXH@Z 0045b720 f chhex.obj - 0001:0005a780 ?_IchFromCb@DCH@@IAEJJHH@Z 0045b780 f chhex.obj - 0001:0005a7e0 ?_XpFromIb@DCH@@IAEJJH@Z 0045b7e0 f chhex.obj - 0001:0005a810 ?_XpFromCb@DCH@@IAEJJHH@Z 0045b810 f chhex.obj - 0001:0005a840 ?_YpFromIb@DCH@@IAEJJ@Z 0045b840 f chhex.obj - 0001:0005a860 ?_IbFromPt@DCH@@IAEJJJPAH0@Z 0045b860 f chhex.obj - 0001:0005a9c0 ?MouseDown@DCH@@UAEXJJJK@Z 0045b9c0 f chhex.obj - 0001:0005ab40 ?_ScvMax@DCH@@MAEJH@Z 0045bb40 f chhex.obj - 0001:0005abc0 ?_FCopySel@DCH@@MAEHPAPAVDOCB@@@Z 0045bbc0 f chhex.obj - 0001:0005ac80 ?_ClearSel@DCH@@MAEXXZ 0045bc80 f chhex.obj - 0001:0005aca0 ?_FPaste@DCH@@MAEHPAVCLIP@@HJ@Z 0045bca0 f chhex.obj - 0001:0005ae80 ??0DOCH@@IAE@PAVDOCB@@PAVCFL@@KK@Z 0045be80 f chhex.obj - 0001:0005aeb0 ?PdochNew@DOCH@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 0045beb0 f chhex.obj - 0001:0005af10 ?_FRead@DOCH@@MAEHPAVBLCK@@@Z 0045bf10 f chhex.obj - 0001:0005afc0 ?PddgNew@DOCH@@UAEPAVDDG@@PAUGCB@@@Z 0045bfc0 f chhex.obj - 0001:0005afe0 ?_CbOnFile@DOCH@@MAEJXZ 0045bfe0 f chhex.obj - 0001:0005aff0 ?_FWrite@DOCH@@MAEHPAVBLCK@@H@Z 0045bff0 f chhex.obj - 0001:0005b0d0 ??_GDHEX@@UAEPAXI@Z 0045c0d0 f chhex.obj - 0001:0005b0d0 ??_EDHEX@@UAEPAXI@Z 0045c0d0 f chhex.obj - 0001:0005b100 ??_GDCH@@UAEPAXI@Z 0045c100 f chhex.obj - 0001:0005b100 ??_EDCH@@UAEPAXI@Z 0045c100 f chhex.obj - 0001:0005b120 ??_GDOCH@@UAEPAXI@Z 0045c120 f chhex.obj - 0001:0005b120 ??_EDOCH@@UAEPAXI@Z 0045c120 f chhex.obj - 0001:0005b150 ?FWouldBe@DOCMBMP@@SGHJ@Z 0045c150 f chmbmp.obj - 0001:0005b170 ?FIs@DOCMBMP@@UAEHJ@Z 0045c170 f chmbmp.obj - 0001:0005b180 ?Cls@DOCMBMP@@UAEJXZ 0045c180 f chmbmp.obj - 0001:0005b190 ?FWouldBe@DCMBMP@@SGHJ@Z 0045c190 f chmbmp.obj - 0001:0005b1b0 ?FIs@DCMBMP@@UAEHJ@Z 0045c1b0 f chmbmp.obj - 0001:0005b1c0 ?Cls@DCMBMP@@UAEJXZ 0045c1c0 f chmbmp.obj - 0001:0005b1d0 ??0DOCMBMP@@IAE@PAVDOCB@@PAVCFL@@KK@Z 0045c1d0 f chmbmp.obj - 0001:0005b200 ??1DOCMBMP@@MAE@XZ 0045c200 f chmbmp.obj - 0001:0005b230 ?PdocmbmpNew@DOCMBMP@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 0045c230 f chmbmp.obj - 0001:0005b290 ?PddgNew@DOCMBMP@@UAEPAVDDG@@PAUGCB@@@Z 0045c290 f chmbmp.obj - 0001:0005b2b0 ?_CbOnFile@DOCMBMP@@MAEJXZ 0045c2b0 f chmbmp.obj - 0001:0005b2c0 ?_FWrite@DOCMBMP@@MAEHPAVBLCK@@H@Z 0045c2c0 f chmbmp.obj - 0001:0005b2d0 ?_FRead@DOCMBMP@@MAEHPAVBLCK@@@Z 0045c2d0 f chmbmp.obj - 0001:0005b2f0 ??0DCMBMP@@IAE@PAVDOCB@@PAVMBMP@@PAUGCB@@@Z 0045c2f0 f chmbmp.obj - 0001:0005b320 ?GetMinMax@DCMBMP@@MAEXPAVRC@@@Z 0045c320 f chmbmp.obj - 0001:0005b340 ?PdcmbmpNew@DCMBMP@@SGPAV1@PAVDOCB@@PAVMBMP@@PAUGCB@@@Z 0045c340 f chmbmp.obj - 0001:0005b3c0 ?Draw@DCMBMP@@UAEXPAVGNV@@PAVRC@@@Z 0045c3c0 f chmbmp.obj - 0001:0005b450 ??_GDOCMBMP@@MAEPAXI@Z 0045c450 f chmbmp.obj - 0001:0005b450 ??_EDOCMBMP@@MAEPAXI@Z 0045c450 f chmbmp.obj - 0001:0005b470 ??_EDCMBMP@@UAEPAXI@Z 0045c470 f chmbmp.obj - 0001:0005b470 ??_GDCMBMP@@UAEPAXI@Z 0045c470 f chmbmp.obj - 0001:0005b520 ?FWouldBe@DOCPIC@@SGHJ@Z 0045c520 f chpic.obj - 0001:0005b540 ?FIs@DOCPIC@@UAEHJ@Z 0045c540 f chpic.obj - 0001:0005b550 ?Cls@DOCPIC@@UAEJXZ 0045c550 f chpic.obj - 0001:0005b560 ?FWouldBe@DCPIC@@SGHJ@Z 0045c560 f chpic.obj - 0001:0005b580 ?FIs@DCPIC@@UAEHJ@Z 0045c580 f chpic.obj - 0001:0005b590 ?Cls@DCPIC@@UAEJXZ 0045c590 f chpic.obj - 0001:0005b5a0 ??0DOCPIC@@IAE@PAVDOCB@@PAVCFL@@KK@Z 0045c5a0 f chpic.obj - 0001:0005b5d0 ??1DOCPIC@@MAE@XZ 0045c5d0 f chpic.obj - 0001:0005b600 ?PdocpicNew@DOCPIC@@SGPAV1@PAVDOCB@@PAVCFL@@KK@Z 0045c600 f chpic.obj - 0001:0005b660 ?PddgNew@DOCPIC@@UAEPAVDDG@@PAUGCB@@@Z 0045c660 f chpic.obj - 0001:0005b680 ?_CbOnFile@DOCPIC@@MAEJXZ 0045c680 f chpic.obj - 0001:0005b690 ?_FWrite@DOCPIC@@MAEHPAVBLCK@@H@Z 0045c690 f chpic.obj - 0001:0005b6a0 ?_FRead@DOCPIC@@MAEHPAVBLCK@@@Z 0045c6a0 f chpic.obj - 0001:0005b6c0 ??0DCPIC@@IAE@PAVDOCB@@PAVPIC@@PAUGCB@@@Z 0045c6c0 f chpic.obj - 0001:0005b6f0 ?GetMinMax@DCPIC@@MAEXPAVRC@@@Z 0045c6f0 f chpic.obj - 0001:0005b710 ?PdcpicNew@DCPIC@@SGPAV1@PAVDOCB@@PAVPIC@@PAUGCB@@@Z 0045c710 f chpic.obj - 0001:0005b790 ?Draw@DCPIC@@UAEXPAVGNV@@PAVRC@@@Z 0045c790 f chpic.obj - 0001:0005b810 ??_EDOCPIC@@MAEPAXI@Z 0045c810 f chpic.obj - 0001:0005b810 ??_GDOCPIC@@MAEPAXI@Z 0045c810 f chpic.obj - 0001:0005b830 ??_EDCPIC@@UAEPAXI@Z 0045c830 f chpic.obj - 0001:0005b830 ??_GDCPIC@@UAEPAXI@Z 0045c830 f chpic.obj - 0001:0005b8e0 ??0CHTXD@@IAE@PAVDOCB@@K@Z 0045c8e0 f chtxt.obj - 0001:0005b900 ?PchtxdNew@CHTXD@@SGPAV1@PAVFNI@@PAVBSF@@FPAVDOCB@@K@Z 0045c900 f chtxt.obj - 0001:0005b970 ?PddgNew@CHTXD@@UAEPAVDDG@@PAUGCB@@@Z 0045c970 f chtxt.obj - 0001:0005b9b0 ??0CHTDD@@IAE@PAVTXTB@@PAUGCB@@JKJJ@Z 0045c9b0 f chtxt.obj - 0001:0005b9f0 ?PchtddNew@CHTDD@@SGPAV1@PAVTXTB@@PAUGCB@@JKJJ@Z 0045c9f0 f chtxt.obj - 0001:0005ba70 ?FCmdCompileChunky@CHTDD@@UAEHPAUCMD@@@Z 0045ca70 f chtxt.obj - 0001:0005bc20 ?FCmdCompileScript@CHTDD@@UAEHPAUCMD@@@Z 0045cc20 f chtxt.obj - 0001:0005bd90 ?OpenSinkDoc@@YGXPAVMSFIL@@@Z 0045cd90 f chtxt.obj - 0001:0005be50 ??_GCHTXD@@UAEPAXI@Z 0045ce50 f chtxt.obj - 0001:0005be50 ??_ECHTXD@@UAEPAXI@Z 0045ce50 f chtxt.obj - 0001:0005be70 ??_GCHTDD@@UAEPAXI@Z 0045ce70 f chtxt.obj - 0001:0005be70 ??_ECHTDD@@UAEPAXI@Z 0045ce70 f chtxt.obj - 0001:0005bf20 ?Pcmm@CHTDD@@MAEPAUCMM@CMH@@XZ 0045cf20 f chtxt.obj - 0001:0005bf26 _GetOpenFileNameA@4 0045cf26 comdlg32:comdlg32.dll - 0001:0005bf2c _GetSaveFileNameA@4 0045cf2c comdlg32:comdlg32.dll - 0001:0005bf32 _timeGetTime@0 0045cf32 winmm:WINMM.dll - 0001:0005bf38 _waveOutGetDevCapsA@12 0045cf38 winmm:WINMM.dll - 0001:0005bf3e _waveOutGetNumDevs@0 0045cf3e winmm:WINMM.dll - 0001:0005bf44 _midiOutGetVolume@8 0045cf44 winmm:WINMM.dll - 0001:0005bf4a _midiOutSetVolume@8 0045cf4a winmm:WINMM.dll - 0001:0005bf50 _midiOutShortMsg@8 0045cf50 winmm:WINMM.dll - 0001:0005bf56 _midiOutReset@4 0045cf56 winmm:WINMM.dll - 0001:0005bf5c _midiOutOpen@20 0045cf5c winmm:WINMM.dll - 0001:0005bf62 _midiOutClose@4 0045cf62 winmm:WINMM.dll - 0001:0005bf68 _midiOutUnprepareHeader@12 0045cf68 winmm:WINMM.dll - 0001:0005bf6e _midiOutPrepareHeader@12 0045cf6e winmm:WINMM.dll - 0001:0005bf74 _mciSendCommandA@16 0045cf74 winmm:WINMM.dll - 0001:0005bf7a _DrawDibDraw@52 0045cf7a vfw32:MSVFW32.dll - 0001:0005bf80 _AVIFileInit@0 0045cf80 vfw32:AVIFIL32.dll - 0001:0005bf86 _AVIFileExit@0 0045cf86 vfw32:AVIFIL32.dll - 0001:0005bf8c _AVIFileRelease@4 0045cf8c vfw32:AVIFIL32.dll - 0001:0005bf92 _AVIStreamRelease@4 0045cf92 vfw32:AVIFIL32.dll - 0001:0005bf98 _AVIStreamGetFrameClose@4 0045cf98 vfw32:AVIFIL32.dll - 0001:0005bf9e _DrawDibClose@4 0045cf9e vfw32:MSVFW32.dll - 0001:0005bfa4 _DrawDibOpen@0 0045cfa4 vfw32:MSVFW32.dll - 0001:0005bfaa _AVIStreamStart@4 0045cfaa vfw32:AVIFIL32.dll - 0001:0005bfb0 _AVIStreamLength@4 0045cfb0 vfw32:AVIFIL32.dll - 0001:0005bfb6 _AVIFileInfoA@12 0045cfb6 vfw32:AVIFIL32.dll - 0001:0005bfbc _AVIStreamGetFrameOpen@8 0045cfbc vfw32:AVIFIL32.dll - 0001:0005bfc2 _AVIFileGetStream@16 0045cfc2 vfw32:AVIFIL32.dll - 0001:0005bfc8 _AVIFileOpenA@16 0045cfc8 vfw32:AVIFIL32.dll - 0001:0005bfce _AVIStreamSampleToTime@8 0045cfce vfw32:AVIFIL32.dll - 0001:0005bfd4 _AVIStreamTimeToSample@8 0045cfd4 vfw32:AVIFIL32.dll - 0001:0005bfda _AVIStreamGetFrame@8 0045cfda vfw32:AVIFIL32.dll - 0001:0005bfe0 _AllocSoundFromStream@16 0045cfe0 f audios:sound.obj - 0001:0005c070 ??0CAMWavFileSrc@@QAE@XZ 0045d070 f audios:sound.obj - 0001:0005c0a0 ??1CAMWavFileSrc@@QAE@XZ 0045d0a0 f audios:sound.obj - 0001:0005c100 ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 0045d100 f audios:sound.obj - 0001:0005c150 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 0045d150 f audios:sound.obj - 0001:0005c170 ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 0045d170 f audios:sound.obj - 0001:0005c1c0 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 0045d1c0 f audios:sound.obj - 0001:0005c360 ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 0045d360 f audios:sound.obj - 0001:0005c4b0 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 0045d4b0 f audios:sound.obj - 0001:0005c530 ?AddRef@CAMWavFileSrc@@UAGKXZ 0045d530 f audios:sound.obj - 0001:0005c540 ?Release@CAMWavFileSrc@@UAGKXZ 0045d540 f audios:sound.obj - 0001:0005c580 ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 0045d580 f audios:sound.obj - 0001:0005c610 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 0045d610 f audios:sound.obj - 0001:0005c640 ?GetSamples@CAMWavFileSrc@@UAGKXZ 0045d640 f audios:sound.obj - 0001:0005c650 ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 0045d650 f audios:sound.obj - 0001:0005c680 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 0045d680 f audios:sound.obj - 0001:0005ca80 ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 0045da80 f audios:sound.obj - 0001:0005ca90 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 0045da90 f audios:sound.obj - 0001:0005cab0 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 0045dab0 f audios:sound.obj - 0001:0005cde0 ??1CRIFF@@QAE@XZ 0045dde0 f audios:sound.obj - 0001:0005cdf0 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 0045ddf0 f audios:sound.obj - 0001:0005ce00 ?AddRef@CAMWavFileSrc@@W3AGKXZ 0045de00 f audios:sound.obj - 0001:0005ce10 ?Release@CAMWavFileSrc@@W3AGKXZ 0045de10 f audios:sound.obj - 0001:0005ce20 _AllocLoopFilter@12 0045de20 f audios:sndloop.obj - 0001:0005ce80 ?AddRef@CAMLoopFilter@@UAGKXZ 0045de80 f audios:sndloop.obj - 0001:0005ce90 ?Release@CAMLoopFilter@@UAGKXZ 0045de90 f audios:sndloop.obj - 0001:0005cea0 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 0045dea0 f audios:sndloop.obj - 0001:0005cf10 ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 0045df10 f audios:sndloop.obj - 0001:0005cfe0 ?GetSamples@CAMLoopFilter@@UAGKXZ 0045dfe0 f audios:sndloop.obj - 0001:0005d000 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 0045e000 f audios:sndloop.obj - 0001:0005d040 ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0045e040 f audios:sndloop.obj - 0001:0005d190 ??0CClassFactory@@QAE@XZ 0045e190 f audios:factory.obj - 0001:0005d1a0 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 0045e1a0 f audios:factory.obj - 0001:0005d3c0 ?AddRef@CClassFactory@@UAGKXZ 0045e3c0 f audios:factory.obj - 0001:0005d3d0 ?Release@CClassFactory@@UAGKXZ 0045e3d0 f audios:factory.obj - 0001:0005d410 ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 0045e410 f audios:factory.obj - 0001:0005d470 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 0045e470 f audios:factory.obj - 0001:0005dbb0 ?LockServer@CClassFactory@@UAGJH@Z 0045ebb0 f audios:factory.obj - 0001:0005dbc0 ??_GCAMGateFilter@@UAEPAXI@Z 0045ebc0 f audios:factory.obj - 0001:0005dbc0 ??_ECAMGateFilter@@UAEPAXI@Z 0045ebc0 f audios:factory.obj - 0001:0005dc40 ??_ECAMLoopFilter@@UAEPAXI@Z 0045ec40 f audios:factory.obj - 0001:0005dc40 ??_GCAMLoopFilter@@UAEPAXI@Z 0045ec40 f audios:factory.obj - 0001:0005dcc0 ??_GCAMFaderFilter@@UAEPAXI@Z 0045ecc0 f audios:factory.obj - 0001:0005dcc0 ??_ECAMFaderFilter@@UAEPAXI@Z 0045ecc0 f audios:factory.obj - 0001:0005dd40 ??_ECAMRandomizeFilter@@UAEPAXI@Z 0045ed40 f audios:factory.obj - 0001:0005dd40 ??_GCAMRandomizeFilter@@UAEPAXI@Z 0045ed40 f audios:factory.obj - 0001:0005ddc0 ??_GCAMDistortFilter@@UAEPAXI@Z 0045edc0 f audios:factory.obj - 0001:0005ddc0 ??_ECAMDistortFilter@@UAEPAXI@Z 0045edc0 f audios:factory.obj - 0001:0005de40 ??_ECAMStereoFilter@@UAEPAXI@Z 0045ee40 f audios:factory.obj - 0001:0005de40 ??_GCAMStereoFilter@@UAEPAXI@Z 0045ee40 f audios:factory.obj - 0001:0005dec0 ??_GCAMTrimFilter@@UAEPAXI@Z 0045eec0 f audios:factory.obj - 0001:0005dec0 ??_ECAMTrimFilter@@UAEPAXI@Z 0045eec0 f audios:factory.obj - 0001:0005df40 ??_ECAMBiasFilter@@UAEPAXI@Z 0045ef40 f audios:factory.obj - 0001:0005df40 ??_GCAMBiasFilter@@UAEPAXI@Z 0045ef40 f audios:factory.obj - 0001:0005dfc0 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045efc0 f audios:factory.obj - 0001:0005dfd0 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 0045efd0 f audios:factory.obj - 0001:0005dfe0 ?Release@CAMBiasFilter@@WBE@AGKXZ 0045efe0 f audios:factory.obj - 0001:0005dff0 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045eff0 f audios:factory.obj - 0001:0005e000 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 0045f000 f audios:factory.obj - 0001:0005e010 ?Release@CAMTrimFilter@@WBE@AGKXZ 0045f010 f audios:factory.obj - 0001:0005e020 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045f020 f audios:factory.obj - 0001:0005e030 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 0045f030 f audios:factory.obj - 0001:0005e040 ?Release@CAMDistortFilter@@WBE@AGKXZ 0045f040 f audios:factory.obj - 0001:0005e050 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045f050 f audios:factory.obj - 0001:0005e060 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 0045f060 f audios:factory.obj - 0001:0005e070 ?Release@CAMFaderFilter@@WBE@AGKXZ 0045f070 f audios:factory.obj - 0001:0005e080 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045f080 f audios:factory.obj - 0001:0005e090 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 0045f090 f audios:factory.obj - 0001:0005e0a0 ?Release@CAMStereoFilter@@WBE@AGKXZ 0045f0a0 f audios:factory.obj - 0001:0005e0b0 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045f0b0 f audios:factory.obj - 0001:0005e0c0 ?AddRef@CAMGateFilter@@WBE@AGKXZ 0045f0c0 f audios:factory.obj - 0001:0005e0d0 ?Release@CAMGateFilter@@WBE@AGKXZ 0045f0d0 f audios:factory.obj - 0001:0005e0e0 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045f0e0 f audios:factory.obj - 0001:0005e0f0 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 0045f0f0 f audios:factory.obj - 0001:0005e100 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 0045f100 f audios:factory.obj - 0001:0005e110 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 0045f110 f audios:factory.obj - 0001:0005e120 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 0045f120 f audios:factory.obj - 0001:0005e130 ?Release@CAMLoopFilter@@WBE@AGKXZ 0045f130 f audios:factory.obj - 0001:0005e140 _AMCreate@16 0045f140 f audios:audioman.obj - 0001:0005e190 ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 0045f190 f audios:audioman.obj - 0001:0005e1c0 _AMFinishCache@20 0045f1c0 f audios:audioman.obj - 0001:0005e220 _GetAudioManMixer@0 0045f220 f audios:audioman.obj - 0001:0005e260 ??0CFileStream@@QAE@PADKK@Z 0045f260 f audios:stream.obj - 0001:0005e330 ??1CFileStream@@QAE@XZ 0045f330 f audios:stream.obj - 0001:0005e360 ?AddRef@CFileStream@@UAGKXZ 0045f360 f audios:stream.obj - 0001:0005e370 ?Release@CFileStream@@UAGKXZ 0045f370 f audios:stream.obj - 0001:0005e3b0 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 0045f3b0 f audios:stream.obj - 0001:0005e410 ?Read@CFileStream@@UAGJPAXKPAK@Z 0045f410 f audios:stream.obj - 0001:0005e450 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 0045f450 f audios:stream.obj - 0001:0005e4d0 ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 0045f4d0 f audios:stream.obj - 0001:0005e530 ?Write@CFileStream@@UAGJPBXKPAK@Z 0045f530 f audios:stream.obj - 0001:0005e560 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 0045f560 f audios:stream.obj - 0001:0005e570 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 0045f570 f audios:stream.obj - 0001:0005e580 ?Commit@CFileStream@@UAGJK@Z 0045f580 f audios:stream.obj - 0001:0005e590 ?Revert@CFileStream@@UAGJXZ 0045f590 f audios:stream.obj - 0001:0005e5a0 ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 0045f5a0 f audios:stream.obj - 0001:0005e5b0 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 0045f5b0 f audios:stream.obj - 0001:0005e5c0 ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 0045f5c0 f audios:stream.obj - 0001:0005e5d0 ??0CMemoryStream@@AAE@PAV0@@Z 0045f5d0 f audios:stream.obj - 0001:0005e640 ??0CMemoryStream@@QAE@PAUIStream@@K@Z 0045f640 f audios:stream.obj - 0001:0005e6c0 ??0CMemoryStream@@QAE@PADKK@Z 0045f6c0 f audios:stream.obj - 0001:0005e6f0 ??1CMemoryStream@@QAE@XZ 0045f6f0 f audios:stream.obj - 0001:0005e730 ?AddRef@CMemoryStream@@UAGKXZ 0045f730 f audios:stream.obj - 0001:0005e740 ?Release@CMemoryStream@@UAGKXZ 0045f740 f audios:stream.obj - 0001:0005e780 ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 0045f780 f audios:stream.obj - 0001:0005e7e0 ?Read@CMemoryStream@@UAGJPAXKPAK@Z 0045f7e0 f audios:stream.obj - 0001:0005e840 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 0045f840 f audios:stream.obj - 0001:0005e8a0 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 0045f8a0 f audios:stream.obj - 0001:0005e8f0 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 0045f8f0 f audios:stream.obj - 0001:0005e950 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 0045f950 f audios:stream.obj - 0001:0005e960 ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 0045f960 f audios:stream.obj - 0001:0005e970 ?Commit@CMemoryStream@@UAGJK@Z 0045f970 f audios:stream.obj - 0001:0005e980 ?Revert@CMemoryStream@@UAGJXZ 0045f980 f audios:stream.obj - 0001:0005e990 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 0045f990 f audios:stream.obj - 0001:0005e9a0 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 0045f9a0 f audios:stream.obj - 0001:0005e9b0 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 0045f9b0 f audios:stream.obj - 0001:0005e9c0 _HRESULTFromMMRESULT@4 0045f9c0 f audios:utils.obj - 0001:0005ebb0 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 0045fbb0 f audios:utils.obj - 0001:0005ec90 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 0045fc90 f audios:utils.obj - 0001:0005ed30 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 0045fd30 f audios:utils.obj - 0001:0005ed90 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 0045fd90 f audios:utils.obj - 0001:0005ede0 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 0045fde0 f audios:utils.obj - 0001:0005ee00 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 0045fe00 f audios:utils.obj - 0001:0005ee20 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 0045fe20 f audios:utils.obj - 0001:0005ee40 ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 0045fe40 f audios:utils.obj - 0001:0005ee60 ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 0045fe60 f audios:utils.obj - 0001:0005eec0 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 0045fec0 f audios:utils.obj - 0001:0005ef50 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 0045ff50 f audios:utils.obj - 0001:0005f00c _acmFormatSuggest@20 0046000c f audios:MSACM32.dll - 0001:0005f012 _acmStreamSize@16 00460012 f audios:MSACM32.dll - 0001:0005f018 _acmStreamPrepareHeader@12 00460018 f audios:MSACM32.dll - 0001:0005f01e _acmStreamOpen@32 0046001e f audios:MSACM32.dll - 0001:0005f024 _acmStreamClose@8 00460024 f audios:MSACM32.dll - 0001:0005f02a _acmStreamUnprepareHeader@12 0046002a f audios:MSACM32.dll - 0001:0005f030 _acmStreamConvert@12 00460030 f audios:MSACM32.dll - 0001:0005f040 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 00460040 f audios:riff.obj - 0001:0005f060 ?ReadLongData@CRIFF@@QAEJPAK@Z 00460060 f audios:riff.obj - 0001:0005f080 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 00460080 f audios:riff.obj - 0001:0005f120 ??0CAMPassThruFilter@@QAE@XZ 00460120 f audios:sndpass.obj - 0001:0005f130 ??1CAMPassThruFilter@@UAE@XZ 00460130 f audios:sndpass.obj - 0001:0005f160 ?AddRef@CAMPassThruFilter@@UAGKXZ 00460160 f audios:sndpass.obj - 0001:0005f170 ?Release@CAMPassThruFilter@@UAGKXZ 00460170 f audios:sndpass.obj - 0001:0005f190 ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 00460190 f audios:sndpass.obj - 0001:0005f1f0 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004601f0 f audios:sndpass.obj - 0001:0005f220 ?GetSamples@CAMPassThruFilter@@UAGKXZ 00460220 f audios:sndpass.obj - 0001:0005f240 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 00460240 f audios:sndpass.obj - 0001:0005f270 ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00460270 f audios:sndpass.obj - 0001:0005f2b0 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 004602b0 f audios:sndpass.obj - 0001:0005f2e0 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 004602e0 f audios:sndpass.obj - 0001:0005f340 ??_GCAMPassThruFilter@@UAEPAXI@Z 00460340 f audios:sndpass.obj - 0001:0005f340 ??_ECAMPassThruFilter@@UAEPAXI@Z 00460340 f audios:sndpass.obj - 0001:0005f380 ?AddRef@CAMRandomizeFilter@@UAGKXZ 00460380 f audios:sndrand.obj - 0001:0005f390 ?Release@CAMRandomizeFilter@@UAGKXZ 00460390 f audios:sndrand.obj - 0001:0005f3a0 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 004603a0 f audios:sndrand.obj - 0001:0005f410 ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 00460410 f audios:sndrand.obj - 0001:0005f420 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 00460420 f audios:sndrand.obj - 0001:0005f430 ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 00460430 f audios:sndrand.obj - 0001:0005f440 ?Clear@CAMRandomizeFilter@@UAGJXZ 00460440 f audios:sndrand.obj - 0001:0005f450 _AllocGateFilter@12 00460450 f audios:sndgate.obj - 0001:0005f4b0 ?AddRef@CAMGateFilter@@UAGKXZ 004604b0 f audios:sndgate.obj - 0001:0005f4c0 ?Release@CAMGateFilter@@UAGKXZ 004604c0 f audios:sndgate.obj - 0001:0005f4d0 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 004604d0 f audios:sndgate.obj - 0001:0005f540 ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 00460540 f audios:sndgate.obj - 0001:0005f5c0 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004605c0 f audios:sndgate.obj - 0001:0005f670 ?AddRef@CAMStereoFilter@@UAGKXZ 00460670 f audios:sndstreo.obj - 0001:0005f680 ?Release@CAMStereoFilter@@UAGKXZ 00460680 f audios:sndstreo.obj - 0001:0005f690 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 00460690 f audios:sndstreo.obj - 0001:0005f700 ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 00460700 f audios:sndstreo.obj - 0001:0005f7b0 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004607b0 f audios:sndstreo.obj - 0001:0005f820 ?AddRef@CAMFaderFilter@@UAGKXZ 00460820 f audios:sndfader.obj - 0001:0005f830 ?Release@CAMFaderFilter@@UAGKXZ 00460830 f audios:sndfader.obj - 0001:0005f840 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 00460840 f audios:sndfader.obj - 0001:0005f8b0 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 004608b0 f audios:sndfader.obj - 0001:0005f930 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00460930 f audios:sndfader.obj - 0001:0005f960 ?AddRef@CAMDistortFilter@@UAGKXZ 00460960 f audios:snddist.obj - 0001:0005f970 ?Release@CAMDistortFilter@@UAGKXZ 00460970 f audios:snddist.obj - 0001:0005f980 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 00460980 f audios:snddist.obj - 0001:0005f9f0 ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004609f0 f audios:snddist.obj - 0001:0005fa70 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00460a70 f audios:snddist.obj - 0001:0005fb30 ?AddRef@CAMTrimFilter@@UAGKXZ 00460b30 f audios:sndtrim.obj - 0001:0005fb40 ?Release@CAMTrimFilter@@UAGKXZ 00460b40 f audios:sndtrim.obj - 0001:0005fb50 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 00460b50 f audios:sndtrim.obj - 0001:0005fbc0 ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 00460bc0 f audios:sndtrim.obj - 0001:0005fc50 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 00460c50 f audios:sndtrim.obj - 0001:0005fe50 ?AddRef@CAMBiasFilter@@UAGKXZ 00460e50 f audios:sndbias.obj - 0001:0005fe60 ?Release@CAMBiasFilter@@UAGKXZ 00460e60 f audios:sndbias.obj - 0001:0005fe70 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 00460e70 f audios:sndbias.obj - 0001:0005fee0 ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 00460ee0 f audios:sndbias.obj - 0001:0005ff30 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 00460f30 f audios:sndbias.obj - 0001:00060100 ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00461100 f audios:sndbias.obj - 0001:00060190 _AllocCacheFilter@12 00461190 f audios:sndcache.obj - 0001:000601f0 ??0CAMCacheFilter@@QAE@XZ 004611f0 f audios:sndcache.obj - 0001:00060210 ??1CAMCacheFilter@@QAE@XZ 00461210 f audios:sndcache.obj - 0001:00060270 ?AddRef@CAMCacheFilter@@UAGKXZ 00461270 f audios:sndcache.obj - 0001:00060280 ?Release@CAMCacheFilter@@UAGKXZ 00461280 f audios:sndcache.obj - 0001:000602c0 ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 004612c0 f audios:sndcache.obj - 0001:00060350 ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 00461350 f audios:sndcache.obj - 0001:00060500 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00461500 f audios:sndcache.obj - 0001:00060530 ?GetSamples@CAMCacheFilter@@UAGKXZ 00461530 f audios:sndcache.obj - 0001:00060550 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 00461550 f audios:sndcache.obj - 0001:00060580 ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00461580 f audios:sndcache.obj - 0001:00060720 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 00461720 f audios:sndcache.obj - 0001:00060770 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 00461770 f audios:sndcache.obj - 0001:000607c0 ?FillCache@CAMCacheFilter@@AAGJKK@Z 004617c0 f audios:sndcache.obj - 0001:000608b0 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 004618b0 f audios:sndcache.obj - 0001:00060930 ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 00461930 f audios:sndcache.obj - 0001:00060960 ?SetMode@CAMCacheFilter@@UAGJHH@Z 00461960 f audios:sndcache.obj - 0001:00060a60 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 00461a60 f audios:sndcache.obj - 0001:00060a70 ?AddRef@CAMCacheFilter@@W3AGKXZ 00461a70 f audios:sndcache.obj - 0001:00060a80 ?Release@CAMCacheFilter@@W3AGKXZ 00461a80 f audios:sndcache.obj - 0001:00060a90 ??0CAMScheduleFilter@@QAE@XZ 00461a90 f audios:sndsched.obj - 0001:00060ab0 ??1CAMScheduleFilter@@QAE@XZ 00461ab0 f audios:sndsched.obj - 0001:00060ae0 ?AddRef@CAMScheduleFilter@@UAGKXZ 00461ae0 f audios:sndsched.obj - 0001:00060af0 ?Release@CAMScheduleFilter@@UAGKXZ 00461af0 f audios:sndsched.obj - 0001:00060b30 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 00461b30 f audios:sndsched.obj - 0001:00060bc0 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 00461bc0 f audios:sndsched.obj - 0001:00060bd0 ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00461bd0 f audios:sndsched.obj - 0001:00060c00 ?GetSamples@CAMScheduleFilter@@UAGKXZ 00461c00 f audios:sndsched.obj - 0001:00060c20 ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 00461c20 f audios:sndsched.obj - 0001:00060c50 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00461c50 f audios:sndsched.obj - 0001:00060c90 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 00461c90 f audios:sndsched.obj - 0001:00060ca0 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 00461ca0 f audios:sndsched.obj - 0001:00060cb0 ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 00461cb0 f audios:sndsched.obj - 0001:00060cc0 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 00461cc0 f audios:sndsched.obj - 0001:00060cd0 ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 00461cd0 f audios:sndsched.obj - 0001:00060ce0 ?ClearAll@CAMScheduleFilter@@UAGJXZ 00461ce0 f audios:sndsched.obj - 0001:00060cf0 ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 00461cf0 f audios:sndsched.obj - 0001:00060d00 ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 00461d00 f audios:sndsched.obj - 0001:00060d10 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 00461d10 f audios:sndsched.obj - 0001:00060d20 ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 00461d20 f audios:sndsched.obj - 0001:00060d30 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 00461d30 f audios:sndsched.obj - 0001:00060d40 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 00461d40 f audios:sndsched.obj - 0001:00060d50 ?AddRef@CAMScheduleFilter@@W3AGKXZ 00461d50 f audios:sndsched.obj - 0001:00060d60 ?Release@CAMScheduleFilter@@W3AGKXZ 00461d60 f audios:sndsched.obj - 0001:00060d70 _AllocMixFilter@12 00461d70 f audios:sndmix.obj - 0001:00060dd0 ??0CAMMixFilter@@QAE@XZ 00461dd0 f audios:sndmix.obj - 0001:00060df0 ??1CAMMixFilter@@QAE@XZ 00461df0 f audios:sndmix.obj - 0001:00060e30 ?AddRef@CAMMixFilter@@UAGKXZ 00461e30 f audios:sndmix.obj - 0001:00060e40 ?Release@CAMMixFilter@@UAGKXZ 00461e40 f audios:sndmix.obj - 0001:00060e80 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 00461e80 f audios:sndmix.obj - 0001:00060f10 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 00461f10 f audios:sndmix.obj - 0001:00060fa0 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 00461fa0 f audios:sndmix.obj - 0001:00061160 ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 00462160 f audios:sndmix.obj - 0001:000611a0 ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 004621a0 f audios:sndmix.obj - 0001:000611d0 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004621d0 f audios:sndmix.obj - 0001:00061200 ?GetSamples@CAMMixFilter@@UAGKXZ 00462200 f audios:sndmix.obj - 0001:00061220 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 00462220 f audios:sndmix.obj - 0001:000612a0 ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004622a0 f audios:sndmix.obj - 0001:000613d0 ?SetCacheSize@CAMMixFilter@@UAGJK@Z 004623d0 f audios:sndmix.obj - 0001:000613e0 ?SetMode@CAMMixFilter@@UAGJHH@Z 004623e0 f audios:sndmix.obj - 0001:00061450 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 00462450 f audios:sndmix.obj - 0001:00061460 ?AddRef@CAMMixFilter@@W3AGKXZ 00462460 f audios:sndmix.obj - 0001:00061470 ?Release@CAMMixFilter@@W3AGKXZ 00462470 f audios:sndmix.obj - 0001:00061480 _AllocGainFilter@16 00462480 f audios:sndgain.obj - 0001:000614e0 ??0CAMGainFilter@@QAE@XZ 004624e0 f audios:sndgain.obj - 0001:00061530 ??1CAMGainFilter@@QAE@XZ 00462530 f audios:sndgain.obj - 0001:00061590 ?AddRef@CAMGainFilter@@UAGKXZ 00462590 f audios:sndgain.obj - 0001:000615a0 ?Release@CAMGainFilter@@UAGKXZ 004625a0 f audios:sndgain.obj - 0001:000615e0 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 004625e0 f audios:sndgain.obj - 0001:00061670 ?EnterFilter@CAMGainFilter@@AAGXXZ 00462670 f audios:sndgain.obj - 0001:00061690 ?LeaveFilter@CAMGainFilter@@AAGXXZ 00462690 f audios:sndgain.obj - 0001:000616b0 ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 004626b0 f audios:sndgain.obj - 0001:00061740 ?SetGain@CAMGainFilter@@UAGJMM@Z 00462740 f audios:sndgain.obj - 0001:00061790 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00462790 f audios:sndgain.obj - 0001:000617d0 ?GetSamples@CAMGainFilter@@UAGKXZ 004627d0 f audios:sndgain.obj - 0001:00061800 ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 00462800 f audios:sndgain.obj - 0001:00061840 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00462840 f audios:sndgain.obj - 0001:000618c0 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 004628c0 f audios:sndgain.obj - 0001:00061900 ?SetMode@CAMGainFilter@@UAGJHH@Z 00462900 f audios:sndgain.obj - 0001:00061970 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 00462970 f audios:sndgain.obj - 0001:00061980 ?AddRef@CAMGainFilter@@W3AGKXZ 00462980 f audios:sndgain.obj - 0001:00061990 ?Release@CAMGainFilter@@W3AGKXZ 00462990 f audios:sndgain.obj - 0001:000619a0 ??0CAMDelayFilter@@QAE@XZ 004629a0 f audios:sndecho.obj - 0001:000619c0 ??1CAMDelayFilter@@QAE@XZ 004629c0 f audios:sndecho.obj - 0001:00061a60 ?AddRef@CAMDelayFilter@@UAGKXZ 00462a60 f audios:sndecho.obj - 0001:00061a70 ?Release@CAMDelayFilter@@UAGKXZ 00462a70 f audios:sndecho.obj - 0001:00061ab0 ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 00462ab0 f audios:sndecho.obj - 0001:00061b40 ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 00462b40 f audios:sndecho.obj - 0001:00061d70 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00462d70 f audios:sndecho.obj - 0001:00061da0 ?GetSamples@CAMDelayFilter@@UAGKXZ 00462da0 f audios:sndecho.obj - 0001:00061dc0 ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 00462dc0 f audios:sndecho.obj - 0001:00061e20 ?MixInNewData@CAMDelayFilter@@QAGJXZ 00462e20 f audios:sndecho.obj - 0001:00062060 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00463060 f audios:sndecho.obj - 0001:00062330 ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 00463330 f audios:sndecho.obj - 0001:00062360 ?SetMode@CAMDelayFilter@@UAGJHH@Z 00463360 f audios:sndecho.obj - 0001:000623c0 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 004633c0 f audios:sndecho.obj - 0001:000623d0 ?AddRef@CAMDelayFilter@@W3AGKXZ 004633d0 f audios:sndecho.obj - 0001:000623e0 ?Release@CAMDelayFilter@@W3AGKXZ 004633e0 f audios:sndecho.obj - 0001:000623f0 _AllocConvertFilter@12 004633f0 f audios:sndcnvt.obj - 0001:00062450 ??0CAMConvertFilter@@QAE@XZ 00463450 f audios:sndcnvt.obj - 0001:00062470 ??1CAMConvertFilter@@QAE@XZ 00463470 f audios:sndcnvt.obj - 0001:000624e0 ?AddRef@CAMConvertFilter@@UAGKXZ 004634e0 f audios:sndcnvt.obj - 0001:000624f0 ?Release@CAMConvertFilter@@UAGKXZ 004634f0 f audios:sndcnvt.obj - 0001:00062530 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 00463530 f audios:sndcnvt.obj - 0001:000625c0 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 004635c0 f audios:sndcnvt.obj - 0001:000626b0 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004636b0 f audios:sndcnvt.obj - 0001:00062700 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 00463700 f audios:sndcnvt.obj - 0001:00062740 ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 00463740 f audios:sndcnvt.obj - 0001:00062780 ?GetSamples@CAMConvertFilter@@UAGKXZ 00463780 f audios:sndcnvt.obj - 0001:000627b0 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 004637b0 f audios:sndcnvt.obj - 0001:00062800 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00463800 f audios:sndcnvt.obj - 0001:00062ae0 ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 00463ae0 f audios:sndcnvt.obj - 0001:00062b10 ?SetMode@CAMConvertFilter@@UAGJHH@Z 00463b10 f audios:sndcnvt.obj - 0001:00062b70 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 00463b70 f audios:sndcnvt.obj - 0001:00062b80 ?AddRef@CAMConvertFilter@@W3AGKXZ 00463b80 f audios:sndcnvt.obj - 0001:00062b90 ?Release@CAMConvertFilter@@W3AGKXZ 00463b90 f audios:sndcnvt.obj - 0001:00062ba0 _AllocClipFilter@16 00463ba0 f audios:sndclip.obj - 0001:00062c00 ??0CAMClipFilter@@QAE@XZ 00463c00 f audios:sndclip.obj - 0001:00062c20 ??1CAMClipFilter@@QAE@XZ 00463c20 f audios:sndclip.obj - 0001:00062c50 ?AddRef@CAMClipFilter@@UAGKXZ 00463c50 f audios:sndclip.obj - 0001:00062c60 ?Release@CAMClipFilter@@UAGKXZ 00463c60 f audios:sndclip.obj - 0001:00062ca0 ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 00463ca0 f audios:sndclip.obj - 0001:00062d30 ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 00463d30 f audios:sndclip.obj - 0001:00062dd0 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00463dd0 f audios:sndclip.obj - 0001:00062e00 ?GetSamples@CAMClipFilter@@UAGKXZ 00463e00 f audios:sndclip.obj - 0001:00062e20 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 00463e20 f audios:sndclip.obj - 0001:00062e80 ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 00463e80 f audios:sndclip.obj - 0001:00062ec0 ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00463ec0 f audios:sndclip.obj - 0001:00062fe0 ?SetCacheSize@CAMClipFilter@@UAGJK@Z 00463fe0 f audios:sndclip.obj - 0001:00063010 ?SetMode@CAMClipFilter@@UAGJHH@Z 00464010 f audios:sndclip.obj - 0001:00063070 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 00464070 f audios:sndclip.obj - 0001:00063080 ?AddRef@CAMClipFilter@@W3AGKXZ 00464080 f audios:sndclip.obj - 0001:00063090 ?Release@CAMClipFilter@@W3AGKXZ 00464090 f audios:sndclip.obj - 0001:000630a0 _AllocAppendFilter@16 004640a0 f audios:sndapend.obj - 0001:00063100 ??0CAMAppendFilter@@QAE@XZ 00464100 f audios:sndapend.obj - 0001:00063120 ??1CAMAppendFilter@@QAE@XZ 00464120 f audios:sndapend.obj - 0001:00063160 ?AddRef@CAMAppendFilter@@UAGKXZ 00464160 f audios:sndapend.obj - 0001:00063170 ?Release@CAMAppendFilter@@UAGKXZ 00464170 f audios:sndapend.obj - 0001:000631b0 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 004641b0 f audios:sndapend.obj - 0001:00063240 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 00464240 f audios:sndapend.obj - 0001:00063290 ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 00464290 f audios:sndapend.obj - 0001:000636d0 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004646d0 f audios:sndapend.obj - 0001:00063700 ?GetSamples@CAMAppendFilter@@UAGKXZ 00464700 f audios:sndapend.obj - 0001:00063720 ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 00464720 f audios:sndapend.obj - 0001:00063750 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00464750 f audios:sndapend.obj - 0001:000638b0 ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 004648b0 f audios:sndapend.obj - 0001:000638e0 ?SetMode@CAMAppendFilter@@UAGJHH@Z 004648e0 f audios:sndapend.obj - 0001:00063950 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 00464950 f audios:sndapend.obj - 0001:00063960 ?AddRef@CAMAppendFilter@@W3AGKXZ 00464960 f audios:sndapend.obj - 0001:00063970 ?Release@CAMAppendFilter@@W3AGKXZ 00464970 f audios:sndapend.obj - 0001:00063980 ??0CAMSilentSound@@QAE@XZ 00464980 f audios:sndmute.obj - 0001:000639b0 ??1CAMSilentSound@@QAE@XZ 004649b0 f audios:sndmute.obj - 0001:000639c0 ?AddRef@CAMSilentSound@@UAGKXZ 004649c0 f audios:sndmute.obj - 0001:000639d0 ?Release@CAMSilentSound@@UAGKXZ 004649d0 f audios:sndmute.obj - 0001:00063a10 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 00464a10 f audios:sndmute.obj - 0001:00063aa0 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 00464aa0 f audios:sndmute.obj - 0001:00063b20 ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 00464b20 f audios:sndmute.obj - 0001:00063b70 ?GetSamples@CAMSilentSound@@UAGKXZ 00464b70 f audios:sndmute.obj - 0001:00063b90 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 00464b90 f audios:sndmute.obj - 0001:00063bd0 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 00464bd0 f audios:sndmute.obj - 0001:00063c70 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 00464c70 f audios:sndmute.obj - 0001:00063c80 ?SetMode@CAMSilentSound@@UAGJHH@Z 00464c80 f audios:sndmute.obj - 0001:00063cb0 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 00464cb0 f audios:sndmute.obj - 0001:00063cc0 ?AddRef@CAMSilentSound@@W3AGKXZ 00464cc0 f audios:sndmute.obj - 0001:00063cd0 ?Release@CAMSilentSound@@W3AGKXZ 00464cd0 f audios:sndmute.obj - 0001:00063ce0 ??0CAMMixer@@QAE@XZ 00464ce0 f audios:cmixer.obj - 0001:00063db0 ??1CAMMixer@@QAE@XZ 00464db0 f audios:cmixer.obj - 0001:00063e20 ?AddRef@CAMMixer@@UAGKXZ 00464e20 f audios:cmixer.obj - 0001:00063e30 ?Release@CAMMixer@@UAGKXZ 00464e30 f audios:cmixer.obj - 0001:00063e90 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 00464e90 f audios:cmixer.obj - 0001:00063ef0 ?EnterMixer@CAMMixer@@AAGXXZ 00464ef0 f audios:cmixer.obj - 0001:00063f10 ?LeaveMixer@CAMMixer@@AAGXXZ 00464f10 f audios:cmixer.obj - 0001:00063f30 ?EnterPump@CAMMixer@@AAGXXZ 00464f30 f audios:cmixer.obj - 0001:00063f50 ?LeavePump@CAMMixer@@AAGXXZ 00464f50 f audios:cmixer.obj - 0001:00063f70 ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 00464f70 f audios:cmixer.obj - 0001:00064050 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 00465050 f audios:cmixer.obj - 0001:00064100 ?Uninit@CAMMixer@@UAGJXZ 00465100 f audios:cmixer.obj - 0001:00064150 ?Activate@CAMMixer@@UAGJH@Z 00465150 f audios:cmixer.obj - 0001:00064180 ?Suspend@CAMMixer@@UAGJH@Z 00465180 f audios:cmixer.obj - 0001:00064200 ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 00465200 f audios:cmixer.obj - 0001:000642a0 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 004652a0 f audios:cmixer.obj - 0001:00064340 ?SetMixerVolume@CAMMixer@@UAGJK@Z 00465340 f audios:cmixer.obj - 0001:00064380 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 00465380 f audios:cmixer.obj - 0001:000643c0 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 004653c0 f audios:cmixer.obj - 0001:00064450 ?RemixMode@CAMMixer@@UAGHH@Z 00465450 f audios:cmixer.obj - 0001:00064480 ?GetAvgSample@CAMMixer@@UAGKXZ 00465480 f audios:cmixer.obj - 0001:00064690 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 00465690 f audios:cmixer.obj - 0001:00064730 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 00465730 f audios:cmixer.obj - 0001:00064760 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 00465760 f audios:cmixer.obj - 0001:00064840 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 00465840 f audios:cmixer.obj - 0001:00064920 ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 00465920 f audios:cmixer.obj - 0001:000649a0 ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 004659a0 f audios:cmixer.obj - 0001:00064a10 ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 00465a10 f audios:cmixer.obj - 0001:00064ac0 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 00465ac0 f audios:cmixer.obj - 0001:00064b60 ?AllocGroup@CAMMixer@@UAGJPAK@Z 00465b60 f audios:cmixer.obj - 0001:00064bd0 ?FreeGroup@CAMMixer@@UAGJK@Z 00465bd0 f audios:cmixer.obj - 0001:00064c30 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 00465c30 f audios:cmixer.obj - 0001:00064cb0 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 00465cb0 f audios:cmixer.obj - 0001:00064d70 ?StartGroup@CAMMixer@@UAGJKH@Z 00465d70 f audios:cmixer.obj - 0001:00064e00 ?ResetGroup@CAMMixer@@UAGJK@Z 00465e00 f audios:cmixer.obj - 0001:00064e90 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 00465e90 f audios:cmixer.obj - 0001:00064f20 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 00465f20 f audios:cmixer.obj - 0001:00064fb0 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 00465fb0 f audios:cmixer.obj - 0001:00065050 ?GetInitFile@CAMMixer@@AAGPADXZ 00466050 f audios:cmixer.obj - 0001:00065060 ?LoadProfile@CAMMixer@@AAGJXZ 00466060 f audios:cmixer.obj - 0001:00065130 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 00466130 f audios:cmixer.obj - 0001:00065190 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 00466190 f audios:cmixer.obj - 0001:00065200 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 00466200 f audios:cmixer.obj - 0001:00065270 ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 00466270 f audios:cmixer.obj - 0001:000652e0 ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 004662e0 f audios:cmixer.obj - 0001:00065310 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 00466310 f audios:cmixer.obj - 0001:00065440 ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 00466440 f audios:cmixer.obj - 0001:00065470 ?AllocMixerData@CAMMixer@@AAGJXZ 00466470 f audios:cmixer.obj - 0001:00065620 ?FreeMixerData@CAMMixer@@AAGJXZ 00466620 f audios:cmixer.obj - 0001:000656f0 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 004666f0 f audios:cmixer.obj - 0001:000657a0 ?FreeOutputDevice@CAMMixer@@AAGJXZ 004667a0 f audios:cmixer.obj - 0001:000657c0 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 004667c0 f audios:cmixer.obj - 0001:00065830 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 00466830 f audios:cmixer.obj - 0001:00065860 ?ActivateMixer@CAMMixer@@AAGJXZ 00466860 f audios:cmixer.obj - 0001:000659c0 ?DeactivateMixer@CAMMixer@@AAGJXZ 004669c0 f audios:cmixer.obj - 0001:00065a20 ?AllocMixerTimer@CAMMixer@@AAGJXZ 00466a20 f audios:cmixer.obj - 0001:00065a90 ?FreeMixerTimer@CAMMixer@@AAGJXZ 00466a90 f audios:cmixer.obj - 0001:00065ad0 ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 00466ad0 f audios:cmixer.obj - 0001:00065b80 ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 00466b80 f audios:cmixer.obj - 0001:00065bd0 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 00466bd0 f audios:cmixer.obj - 0001:00065bf0 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 00466bf0 f audios:cmixer.obj - 0001:00065c40 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 00466c40 f audios:cmixer.obj - 0001:00065c70 ?StartMixer@CAMMixer@@AAGXXZ 00466c70 f audios:cmixer.obj - 0001:00065d40 ?StopMixer@CAMMixer@@AAGXXZ 00466d40 f audios:cmixer.obj - 0001:00065d90 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 00466d90 f audios:cmixer.obj - 0001:00065e20 ?CalcRemixBuffers@CAMMixer@@AAGKXZ 00466e20 f audios:cmixer.obj - 0001:00065e90 ?RemixBuffers@CAMMixer@@AAGXK@Z 00466e90 f audios:cmixer.obj - 0001:00065f30 ?Refresh@CAMMixer@@UAGXXZ 00466f30 f audios:cmixer.obj - 0001:00065ff0 ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 00466ff0 f audios:cmixer.obj - 0001:00066040 ?Pump@CAMMixer@@AAGXXZ 00467040 f audios:cmixer.obj - 0001:00066060 ?MixNextBuffer@CAMMixer@@AAGHXZ 00467060 f audios:cmixer.obj - 0001:000661c0 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 004671c0 f audios:cmixer.obj - 0001:000661e0 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 004671e0 f audios:audio.obj - 0001:00066260 ?Interpolate@@YGGMMMGG@Z 00467260 f audios:cmixlib.obj - 0001:000662c0 ?DecibelToInternalVol@@YGGM@Z 004672c0 f audios:cmixlib.obj - 0001:000663d0 ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 004673d0 f audios:cmixlib.obj - 0001:00066430 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 00467430 f audios:cmixlib.obj - 0001:00066470 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 00467470 f audios:cmixlib.obj - 0001:00066540 ?SixteenPanVol@@YGXKPAE0K0@Z 00467540 f audios:cmixlib.obj - 0001:00066580 ?SixteenVol@@YGXKPAE0K0@Z 00467580 f audios:cmixlib.obj - 0001:000665c0 ?Sixteen@@YGXKPAE0K0@Z 004675c0 f audios:cmixlib.obj - 0001:000665e0 ?EightPanVol@@YGXKPAE0K0@Z 004675e0 f audios:cmixlib.obj - 0001:00066620 ?EightVol@@YGXKPAE0K0@Z 00467620 f audios:cmixlib.obj - 0001:00066660 ?Eight@@YGXKPAE0K0@Z 00467660 f audios:cmixlib.obj - 0001:00066680 ?Muted@@YGXKPAE0K0@Z 00467680 f audios:cmixlib.obj - 0001:00066690 ?MixEight@@YGXPAE0K0@Z 00467690 f audios:cmixlib.obj - 0001:00066860 ?MixSixteen@@YGXPAF0KPAE@Z 00467860 f audios:cmixlib.obj - 0001:00066ab0 ?VolAdjustSixteen@@YGXKPAE0K0@Z 00467ab0 f audios:cmixlib.obj - 0001:00067400 ?VolAdjustEight@@YGXKPAE0K0@Z 00468400 f audios:cmixlib.obj - 0001:00067d70 ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 00468d70 f audios:cmixlib.obj - 0001:00068730 ?PanVolAdjustEight@@YGXKPAE0K0@Z 00469730 f audios:cmixlib.obj - 0001:00069000 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 0046a000 f audios:convert.obj - 0001:00069230 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 0046a230 f audios:convert.obj - 0001:00069250 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 0046a250 f audios:convert.obj - 0001:000692c0 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 0046a2c0 f audios:convert.obj - 0001:00069330 ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a330 f audios:convert.obj - 0001:000693e0 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a3e0 f audios:convert.obj - 0001:000694a0 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a4a0 f audios:convert.obj - 0001:00069590 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a590 f audios:convert.obj - 0001:00069670 ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a670 f audios:convert.obj - 0001:00069770 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a770 f audios:convert.obj - 0001:00069850 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a850 f audios:convert.obj - 0001:00069970 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046a970 f audios:convert.obj - 0001:00069a50 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046aa50 f audios:convert.obj - 0001:00069b40 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046ab40 f audios:convert.obj - 0001:00069c80 ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046ac80 f audios:convert.obj - 0001:00069d60 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046ad60 f audios:convert.obj - 0001:00069ec0 ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046aec0 f audios:convert.obj - 0001:0006a010 ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046b010 f audios:convert.obj - 0001:0006a1b0 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046b1b0 f audios:convert.obj - 0001:0006a2f0 ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046b2f0 f audios:convert.obj - 0001:0006a470 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0046b470 f audios:convert.obj - 0001:0006a550 ??0CMixerOut@@QAE@XZ 0046b550 f audios:cmixout.obj - 0001:0006a580 ??1CMixerOut@@QAE@XZ 0046b580 f audios:cmixout.obj - 0001:0006a5c0 ?AddRef@CMixerOut@@UAGKXZ 0046b5c0 f audios:cmixout.obj - 0001:0006a5d0 ?Release@CMixerOut@@UAGKXZ 0046b5d0 f audios:cmixout.obj - 0001:0006a610 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 0046b610 f audios:cmixout.obj - 0001:0006a670 ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 0046b670 f audios:cmixout.obj - 0001:0006a760 ?Suspend@CMixerOut@@QAGJH@Z 0046b760 f audios:cmixout.obj - 0001:0006a840 ?SuspendPump@CMixerOut@@QAGXXZ 0046b840 f audios:cmixout.obj - 0001:0006a860 ?GetNumDevs@CMixerOut@@UAGIXZ 0046b860 f audios:cmixout.obj - 0001:0006a880 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 0046b880 f audios:cmixout.obj - 0001:0006a8c0 ?Close@CMixerOut@@UAGIXZ 0046b8c0 f audios:cmixout.obj - 0001:0006a8f0 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 0046b8f0 f audios:cmixout.obj - 0001:0006a930 ?GetVolume@CMixerOut@@UAGIPAK@Z 0046b930 f audios:cmixout.obj - 0001:0006a960 ?SetVolume@CMixerOut@@UAGIK@Z 0046b960 f audios:cmixout.obj - 0001:0006a9a0 ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 0046b9a0 f audios:cmixout.obj - 0001:0006a9d0 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 0046b9d0 f audios:cmixout.obj - 0001:0006aa00 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 0046ba00 f audios:cmixout.obj - 0001:0006aa30 ?Pause@CMixerOut@@UAGIXZ 0046ba30 f audios:cmixout.obj - 0001:0006aa60 ?Restart@CMixerOut@@UAGIXZ 0046ba60 f audios:cmixout.obj - 0001:0006aa90 ?Reset@CMixerOut@@UAGIXZ 0046ba90 f audios:cmixout.obj - 0001:0006aac0 ?BreakLoop@CMixerOut@@UAGIXZ 0046bac0 f audios:cmixout.obj - 0001:0006aaf0 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 0046baf0 f audios:cmixout.obj - 0001:0006ab20 ?GetPitch@CMixerOut@@UAGIPAK@Z 0046bb20 f audios:cmixout.obj - 0001:0006ab50 ?SetPitch@CMixerOut@@UAGIK@Z 0046bb50 f audios:cmixout.obj - 0001:0006ab80 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 0046bb80 f audios:cmixout.obj - 0001:0006abb0 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 0046bbb0 f audios:cmixout.obj - 0001:0006abe0 ?GetID@CMixerOut@@UAGIPAI@Z 0046bbe0 f audios:cmixout.obj - 0001:0006ac10 ?Message@CMixerOut@@UAGIIKK@Z 0046bc10 f audios:cmixout.obj - 0001:0006ac50 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 0046bc50 f audios:cmixout.obj - 0001:0006ac90 ??0CAMPlaySnd@@QAE@XZ 0046bc90 f audios:cplaysnd.obj - 0001:0006acb0 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 0046bcb0 f audios:cplaysnd.obj - 0001:0006acc0 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 0046bcc0 f audios:cplaysnd.obj - 0001:0006acd0 ??1CAMPlaySnd@@QAE@XZ 0046bcd0 f audios:cplaysnd.obj - 0001:0006acf0 ?AddRef@CAMPlaySnd@@UAGKXZ 0046bcf0 f audios:cplaysnd.obj - 0001:0006ad00 ?Release@CAMPlaySnd@@UAGKXZ 0046bd00 f audios:cplaysnd.obj - 0001:0006ad40 ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 0046bd40 f audios:cplaysnd.obj - 0001:0006ada0 ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 0046bda0 f audios:cplaysnd.obj - 0001:0006ae30 ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 0046be30 f audios:cplaysnd.obj - 0001:0006ae50 ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 0046be50 f audios:cplaysnd.obj - 0001:0006ae70 ?AddRef@CAMChannel@@UAGKXZ 0046be70 f audios:cchannel.obj - 0001:0006ae80 ?Release@CAMChannel@@UAGKXZ 0046be80 f audios:cchannel.obj - 0001:0006af00 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 0046bf00 f audios:cchannel.obj - 0001:0006af80 ??0CAMChannel@@QAE@XZ 0046bf80 f audios:cchannel.obj - 0001:0006afd0 ??1CAMChannel@@QAE@XZ 0046bfd0 f audios:cchannel.obj - 0001:0006b080 ?EnterChannel@CAMChannel@@AAGXXZ 0046c080 f audios:cchannel.obj - 0001:0006b0a0 ?LeaveChannel@CAMChannel@@AAGXXZ 0046c0a0 f audios:cchannel.obj - 0001:0006b0c0 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 0046c0c0 f audios:cchannel.obj - 0001:0006b190 ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 0046c190 f audios:cchannel.obj - 0001:0006b1e0 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 0046c1e0 f audios:cchannel.obj - 0001:0006b2e0 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 0046c2e0 f audios:cchannel.obj - 0001:0006b460 ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 0046c460 f audios:cchannel.obj - 0001:0006b4c0 ?Play@CAMChannel@@UAGJXZ 0046c4c0 f audios:cchannel.obj - 0001:0006b520 ?Stop@CAMChannel@@UAGJXZ 0046c520 f audios:cchannel.obj - 0001:0006b5b0 ?Finish@CAMChannel@@UAGJXZ 0046c5b0 f audios:cchannel.obj - 0001:0006b5e0 ?IsPlaying@CAMChannel@@UAGHXZ 0046c5e0 f audios:cchannel.obj - 0001:0006b610 ?Samples@CAMChannel@@UAGKXZ 0046c610 f audios:cchannel.obj - 0001:0006b640 ?SetPosition@CAMChannel@@UAGJK@Z 0046c640 f audios:cchannel.obj - 0001:0006b6a0 ?GetPosition@CAMChannel@@UAGJPAK@Z 0046c6a0 f audios:cchannel.obj - 0001:0006b6e0 ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 0046c6e0 f audios:cchannel.obj - 0001:0006b750 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 0046c750 f audios:cchannel.obj - 0001:0006b7c0 ?SetTimePos@CAMChannel@@UAGJK@Z 0046c7c0 f audios:cchannel.obj - 0001:0006b800 ?GetTimePos@CAMChannel@@UAGJPAK@Z 0046c800 f audios:cchannel.obj - 0001:0006b860 ?Mute@CAMChannel@@UAGJH@Z 0046c860 f audios:cchannel.obj - 0001:0006b8a0 ?SetVolume@CAMChannel@@UAGJK@Z 0046c8a0 f audios:cchannel.obj - 0001:0006b8f0 ?SetChannelVol@CAMChannel@@AAGXGG@Z 0046c8f0 f audios:cchannel.obj - 0001:0006b980 ?GetVolume@CAMChannel@@UAGJPAK@Z 0046c980 f audios:cchannel.obj - 0001:0006b9c0 ?SetGain@CAMChannel@@UAGJMM@Z 0046c9c0 f audios:cchannel.obj - 0001:0006ba10 ?GetGain@CAMChannel@@UAGJPAM0@Z 0046ca10 f audios:cchannel.obj - 0001:0006ba60 ?DoRemix@CAMChannel@@AAGXXZ 0046ca60 f audios:cchannel.obj - 0001:0006ba90 ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 0046ca90 f audios:cchannel.obj - 0001:0006bab0 ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 0046cab0 f audios:cchannel.obj - 0001:0006bd10 ?ClearNotify@CAMChannel@@AAGXK@Z 0046cd10 f audios:cchannel.obj - 0001:0006bd90 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 0046cd90 f audios:cchannel.obj - 0001:0006bfb0 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 0046cfb0 f audios:cchannel.obj - 0001:0006c0c0 ?RevertTo@CAMChannel@@UAGJK@Z 0046d0c0 f audios:cchannel.obj - 0001:0006c110 ?GetActiveState@CAMChannel@@UAGHXZ 0046d110 f audios:cchannel.obj - 0001:0006c130 ?DoStart@CAMChannel@@UAGJH@Z 0046d130 f audios:cchannel.obj - 0001:0006c1b0 ?DoReset@CAMChannel@@UAGJXZ 0046d1b0 f audios:cchannel.obj - 0001:0006c1f0 ?DoPosition@CAMChannel@@UAGJK@Z 0046d1f0 f audios:cchannel.obj - 0001:0006c220 ?DoVolume@CAMChannel@@UAGJK@Z 0046d220 f audios:cchannel.obj - 0001:0006c260 ?DoGain@CAMChannel@@UAGJMMH@Z 0046d260 f audios:cchannel.obj - 0001:0006c2d0 ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 0046d2d0 f audios:cchannel.obj - 0001:0006c2e0 ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 0046d2e0 f audios:cchannel.obj - 0001:0006c2f0 ?SetPriority@CAMChannel@@UAGJK@Z 0046d2f0 f audios:cchannel.obj - 0001:0006c300 ?GetPriority@CAMChannel@@UAGKXZ 0046d300 f audios:cchannel.obj - 0001:0006c310 ?SetGroup@CAMChannel@@UAGJK@Z 0046d310 f audios:cchannel.obj - 0001:0006c320 ?GetGroup@CAMChannel@@UAGKXZ 0046d320 f audios:cchannel.obj - 0001:0006c330 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 0046d330 f audios:cchannel.obj - 0001:0006c340 ?AddRef@CAMChannel@@W3AGKXZ 0046d340 f audios:cchannel.obj - 0001:0006c350 ?Release@CAMChannel@@W3AGKXZ 0046d350 f audios:cchannel.obj - 0001:0006c360 ??0CRealOut@@QAE@XZ 0046d360 f audios:crealout.obj - 0001:0006c380 ??1CRealOut@@QAE@XZ 0046d380 f audios:crealout.obj - 0001:0006c3b0 ?AddRef@CRealOut@@UAGKXZ 0046d3b0 f audios:crealout.obj - 0001:0006c3c0 ?Release@CRealOut@@UAGKXZ 0046d3c0 f audios:crealout.obj - 0001:0006c400 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 0046d400 f audios:crealout.obj - 0001:0006c460 ?GetNumDevs@CRealOut@@UAGIXZ 0046d460 f audios:crealout.obj - 0001:0006c470 ?Init@CRealOut@@QAGJXZ 0046d470 f audios:crealout.obj - 0001:0006c480 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 0046d480 f audios:crealout.obj - 0001:0006c4e0 ?Close@CRealOut@@UAGIXZ 0046d4e0 f audios:crealout.obj - 0001:0006c520 ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 0046d520 f audios:crealout.obj - 0001:0006c550 ?GetVolume@CRealOut@@UAGIPAK@Z 0046d550 f audios:crealout.obj - 0001:0006c580 ?SetVolume@CRealOut@@UAGIK@Z 0046d580 f audios:crealout.obj - 0001:0006c5b0 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 0046d5b0 f audios:crealout.obj - 0001:0006c5e0 ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 0046d5e0 f audios:crealout.obj - 0001:0006c610 ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 0046d610 f audios:crealout.obj - 0001:0006c640 ?Pause@CRealOut@@UAGIXZ 0046d640 f audios:crealout.obj - 0001:0006c660 ?Restart@CRealOut@@UAGIXZ 0046d660 f audios:crealout.obj - 0001:0006c680 ?Reset@CRealOut@@UAGIXZ 0046d680 f audios:crealout.obj - 0001:0006c6a0 ?BreakLoop@CRealOut@@UAGIXZ 0046d6a0 f audios:crealout.obj - 0001:0006c6c0 ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 0046d6c0 f audios:crealout.obj - 0001:0006c6f0 ?GetPitch@CRealOut@@UAGIPAK@Z 0046d6f0 f audios:crealout.obj - 0001:0006c720 ?SetPitch@CRealOut@@UAGIK@Z 0046d720 f audios:crealout.obj - 0001:0006c750 ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 0046d750 f audios:crealout.obj - 0001:0006c780 ?SetPlaybackRate@CRealOut@@UAGIK@Z 0046d780 f audios:crealout.obj - 0001:0006c7b0 ?GetID@CRealOut@@UAGIPAI@Z 0046d7b0 f audios:crealout.obj - 0001:0006c7e0 ?Message@CRealOut@@UAGIIKK@Z 0046d7e0 f audios:crealout.obj - 0001:0006c810 ?GetErrorText@CRealOut@@UAGIIPADI@Z 0046d810 f audios:crealout.obj - 0001:0006c840 ??0CFakeOut@@QAE@XZ 0046d840 f audios:cfakeout.obj - 0001:0006c880 ??1CFakeOut@@QAE@XZ 0046d880 f audios:cfakeout.obj - 0001:0006c890 ?AddRef@CFakeOut@@UAGKXZ 0046d890 f audios:cfakeout.obj - 0001:0006c8a0 ?Release@CFakeOut@@UAGKXZ 0046d8a0 f audios:cfakeout.obj - 0001:0006c8e0 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 0046d8e0 f audios:cfakeout.obj - 0001:0006c940 ?Init@CFakeOut@@QAGJXZ 0046d940 f audios:cfakeout.obj - 0001:0006c950 ?GetNumDevs@CFakeOut@@UAGIXZ 0046d950 f audios:cfakeout.obj - 0001:0006c960 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 0046d960 f audios:cfakeout.obj - 0001:0006ca00 ?Close@CFakeOut@@UAGIXZ 0046da00 f audios:cfakeout.obj - 0001:0006ca30 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 0046da30 f audios:cfakeout.obj - 0001:0006caf0 ?GetVolume@CFakeOut@@UAGIPAK@Z 0046daf0 f audios:cfakeout.obj - 0001:0006cb20 ?SetVolume@CFakeOut@@UAGIK@Z 0046db20 f audios:cfakeout.obj - 0001:0006cb40 ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 0046db40 f audios:cfakeout.obj - 0001:0006cb80 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 0046db80 f audios:cfakeout.obj - 0001:0006cbc0 ?StartPlayback@CFakeOut@@AAGXXZ 0046dbc0 f audios:cfakeout.obj - 0001:0006cc00 ?SuspendPump@CFakeOut@@QAGXXZ 0046dc00 f audios:cfakeout.obj - 0001:0006cc50 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 0046dc50 f audios:cfakeout.obj - 0001:0006cd00 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 0046dd00 f audios:cfakeout.obj - 0001:0006cd40 ?Pause@CFakeOut@@UAGIXZ 0046dd40 f audios:cfakeout.obj - 0001:0006cd70 ?Restart@CFakeOut@@UAGIXZ 0046dd70 f audios:cfakeout.obj - 0001:0006cda0 ?Reset@CFakeOut@@UAGIXZ 0046dda0 f audios:cfakeout.obj - 0001:0006cdf0 ?BreakLoop@CFakeOut@@UAGIXZ 0046ddf0 f audios:cfakeout.obj - 0001:0006ce00 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 0046de00 f audios:cfakeout.obj - 0001:0006ce10 ?GetPitch@CFakeOut@@UAGIPAK@Z 0046de10 f audios:cfakeout.obj - 0001:0006ce20 ?SetPitch@CFakeOut@@UAGIK@Z 0046de20 f audios:cfakeout.obj - 0001:0006ce30 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 0046de30 f audios:cfakeout.obj - 0001:0006ce40 ?SetPlaybackRate@CFakeOut@@UAGIK@Z 0046de40 f audios:cfakeout.obj - 0001:0006ce50 ?GetID@CFakeOut@@UAGIPAI@Z 0046de50 f audios:cfakeout.obj - 0001:0006ce60 ?Message@CFakeOut@@UAGIIKK@Z 0046de60 f audios:cfakeout.obj - 0001:0006ce70 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 0046de70 f audios:cfakeout.obj - 0001:0006ce78 __onexit 0046de78 f LIBC:onexit.obj - 0001:0006ceee _atexit 0046deee f LIBC:onexit.obj - 0001:0006cf00 ___onexitinit 0046df00 f LIBC:onexit.obj - 0001:0006cf36 __purecall 0046df36 f LIBC:purevirt.obj - 0001:0006cf44 __ftol 0046df44 f LIBC:ftol.obj - 0001:0006cf6c _fdiv_main_routine 0046df6c f LIBC:adj_fdiv.obj - 0001:0006d083 __adj_fdiv_r 0046e083 f LIBC:adj_fdiv.obj - 0001:0006d522 _fdivp_sti_st 0046e522 f LIBC:adj_fdiv.obj - 0001:0006d535 _fdivrp_sti_st 0046e535 f LIBC:adj_fdiv.obj - 0001:0006d548 __adj_fdiv_m32 0046e548 f LIBC:adj_fdiv.obj - 0001:0006d594 __adj_fdiv_m64 0046e594 f LIBC:adj_fdiv.obj - 0001:0006d5e0 __adj_fdiv_m16i 0046e5e0 f LIBC:adj_fdiv.obj - 0001:0006d614 __adj_fdiv_m32i 0046e614 f LIBC:adj_fdiv.obj - 0001:0006d648 __adj_fdivr_m32 0046e648 f LIBC:adj_fdiv.obj - 0001:0006d694 __adj_fdivr_m64 0046e694 f LIBC:adj_fdiv.obj - 0001:0006d6e0 __adj_fdivr_m16i 0046e6e0 f LIBC:adj_fdiv.obj - 0001:0006d714 __adj_fdivr_m32i 0046e714 f LIBC:adj_fdiv.obj - 0001:0006d748 __safe_fdiv 0046e748 f LIBC:adj_fdiv.obj - 0001:0006d75d __safe_fdivr 0046e75d f LIBC:adj_fdiv.obj - 0001:0006d772 __fprem_common 0046e772 f LIBC:adj_fdiv.obj - 0001:0006d978 __adj_fprem 0046e978 f LIBC:adj_fdiv.obj - 0001:0006da2a __fprem1_common 0046ea2a f LIBC:adj_fdiv.obj - 0001:0006dc30 __adj_fprem1 0046ec30 f LIBC:adj_fdiv.obj - 0001:0006dce5 __safe_fprem 0046ece5 f LIBC:adj_fdiv.obj - 0001:0006dceb __safe_fprem1 0046eceb f LIBC:adj_fdiv.obj - 0001:0006dcf1 __adj_fpatan 0046ecf1 f LIBC:adj_fdiv.obj - 0001:0006dcf4 __adj_fptan 0046ecf4 f LIBC:adj_fdiv.obj - 0001:0006dcf7 __fpmath 0046ecf7 f LIBC:fpinit.obj - 0001:0006dd0b __fpclear 0046ed0b f LIBC:fpinit.obj - 0001:0006dd0c __cfltcvt_init 0046ed0c f LIBC:fpinit.obj - 0001:0006dd44 ??3@YAXPAX@Z 0046ed44 f LIBC:delete.obj - 0001:0006dd51 ??2@YAPAXI@Z 0046ed51 f LIBC:new.obj - 0001:0006dd60 _WinMainCRTStartup 0046ed60 f LIBC:wincrt0.obj - 0001:0006dec6 __amsg_exit 0046eec6 f LIBC:wincrt0.obj - 0001:0006def8 ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 0046eef8 f LIBC:trnsctrl.obj - 0001:0006df1e ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 0046ef1e f LIBC:trnsctrl.obj - 0001:0006df53 ?_CallMemberFunction0@@YGXPAX0@Z 0046ef53 f LIBC:trnsctrl.obj - 0001:0006df5a ?_CallMemberFunction1@@YGXPAX00@Z 0046ef5a f LIBC:trnsctrl.obj - 0001:0006df61 ?_CallMemberFunction2@@YGXPAX00H@Z 0046ef61 f LIBC:trnsctrl.obj - 0001:0006df68 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 0046ef68 f LIBC:trnsctrl.obj - 0001:0006dfb6 ___CxxFrameHandler 0046efb6 f LIBC:trnsctrl.obj - 0001:0006dfed ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 0046efed f LIBC:trnsctrl.obj - 0001:0006e065 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 0046f065 f LIBC:trnsctrl.obj - 0001:0006e19c __global_unwind2 0046f19c f LIBC:exsup.obj - 0001:0006e1de __local_unwind2 0046f1de f LIBC:exsup.obj - 0001:0006e238 __abnormal_termination 0046f238 f LIBC:exsup.obj - 0001:0006e25c _pow 0046f25c LIBC:87ctran.obj - 0001:0006e266 _log 0046f266 LIBC:87ctran.obj - 0001:0006e270 _log10 0046f270 LIBC:87ctran.obj - 0001:0006e277 _exp 0046f277 LIBC:87ctran.obj - 0001:0006e27e __CIpow 0046f27e LIBC:87ctran.obj - 0001:0006e288 __CIlog 0046f288 LIBC:87ctran.obj - 0001:0006e292 __CIlog10 0046f292 LIBC:87ctran.obj - 0001:0006e299 __CIexp 0046f299 LIBC:87ctran.obj - 0001:0006e2a0 _memmove 0046f2a0 f LIBC:memmove.obj - 0001:0006e3ee __cinit 0046f3ee f LIBC:crt0dat.obj - 0001:0006e41e _exit 0046f41e f LIBC:crt0dat.obj - 0001:0006e42f __exit 0046f42f f LIBC:crt0dat.obj - 0001:0006e4df _realloc 0046f4df f LIBC:realloc.obj - 0001:0006e631 __msize 0046f631 f LIBC:msize.obj - 0001:0006e642 _malloc 0046f642 f LIBC:malloc.obj - 0001:0006e655 __nh_malloc 0046f655 f LIBC:malloc.obj - 0001:0006e714 __heap_split_block 0046f714 f LIBC:malloc.obj - 0001:0006e759 __setdefaultprecision 0046f759 f LIBC:fp8.obj - 0001:0006e76c _ms_p5_test_fdiv 0046f76c f LIBC:testfdiv.obj - 0001:0006e7b2 _ms_p5_mp_test_fdiv 0046f7b2 f LIBC:testfdiv.obj - 0001:0006e885 __forcdecpt 0046f885 f LIBC:cvt.obj - 0001:0006e8ea __cropzeros 0046f8ea f LIBC:cvt.obj - 0001:0006e949 __positive 0046f949 f LIBC:cvt.obj - 0001:0006e95e __fassign 0046f95e f LIBC:cvt.obj - 0001:0006e9a1 __cftoe 0046f9a1 f LIBC:cvt.obj - 0001:0006eaf4 __cftof 0046faf4 f LIBC:cvt.obj - 0001:0006ec10 __cftog 0046fc10 f LIBC:cvt.obj - 0001:0006ecb8 __cfltcvt 0046fcb8 f LIBC:cvt.obj - 0001:0006ed34 _free 0046fd34 f LIBC:free.obj - 0001:0006ed9c __XcptFilter 0046fd9c f LIBC:winxfltr.obj - 0001:0006ef27 __ismbblead 0046ff27 f LIBC:ismbbyte.obj - 0001:0006ef6a __setenvp 0046ff6a f LIBC:stdenvp.obj - 0001:0006f035 __setargv 00470035 f LIBC:stdargv.obj - 0001:0006f333 __setmbcp 00470333 f LIBC:mbctype.obj - 0001:0006f4c1 ___initmbctable 004704c1 f LIBC:mbctype.obj - 0001:0006f4cc __ioinit 004704cc f LIBC:ioinit.obj - 0001:0006f5ba __heap_init 004705ba f LIBC:heapinit.obj - 0001:0006f637 ___getempty 00470637 f LIBC:heapinit.obj - 0001:0006f664 __except_handler3 00470664 f LIBC:exsup3.obj - 0001:0006f712 __seh_longjmp_unwind@4 00470712 f LIBC:exsup3.obj - 0001:0006f72d __NMSG_WRITE 0047072d f LIBC:crt0msg.obj - 0001:0006f785 __GET_RTERRMSG 00470785 f LIBC:crt0msg.obj - 0001:0006f7ba ___InternalCxxFrameHandler 004707ba f LIBC:frame.obj - 0001:0006fc2d ___FrameUnwindToState 00470c2d f LIBC:frame.obj - 0001:0007012c ?terminate@@YAXXZ 0047112c f LIBC:hooks.obj - 0001:0007019e ?_inconsistency@@YAXXZ 0047119e f LIBC:hooks.obj - 0001:00070221 __fFEXP 00471221 LIBC:87tran.obj - 0001:00070288 __rtinfpopse 00471288 LIBC:87tran.obj - 0001:0007028a __rtinfnpopse 0047128a LIBC:87tran.obj - 0001:0007029a __fFLN 0047129a LIBC:87tran.obj - 0001:0007034f __rtinfpop 0047134f LIBC:87tran.obj - 0001:00070351 __rtinfnpop 00471351 LIBC:87tran.obj - 0001:0007036e __ffexpm1 0047136e LIBC:87tran.obj - 0001:00070418 __cintrindisp2 00471418 f LIBC:87cdisp.obj - 0001:00070456 __cintrindisp1 00471456 f LIBC:87cdisp.obj - 0001:0007048c __ctrandisp2 0047148c f LIBC:87cdisp.obj - 0001:000705fd __ctrandisp1 004715fd f LIBC:87cdisp.obj - 0001:00070629 __fload 00471629 f LIBC:87cdisp.obj - 0001:00070665 __heap_abort 00471665 f LIBC:hpabort.obj - 0001:00070670 __heap_grow 00471670 f LIBC:heapgrow.obj - 0001:00070759 __heap_grow_region 00471759 f LIBC:heapgrow.obj - 0001:00070806 __heap_free_region 00471806 f LIBC:heapgrow.obj - 0001:00070840 __heap_search 00471840 f LIBC:heapsrch.obj - 0001:00070930 __control87 00471930 f LIBC:ieee87.obj - 0001:0007096b __controlfp 0047196b f LIBC:ieee87.obj - 0001:00070aa2 __fptrap 00471aa2 f LIBC:crt0fp.obj - 0001:00070aad __isctype 00471aad f LIBC:isctype.obj - 0001:00070b28 _tolower 00471b28 f LIBC:tolower.obj - 0001:00070bf4 __ZeroTail 00471bf4 f LIBC:intrncvt.obj - 0001:00070c54 __IncMan 00471c54 f LIBC:intrncvt.obj - 0001:00070cb5 __RoundMan 00471cb5 f LIBC:intrncvt.obj - 0001:00070d52 __CopyMan 00471d52 f LIBC:intrncvt.obj - 0001:00070d6f __FillZeroMan 00471d6f f LIBC:intrncvt.obj - 0001:00070d7b __IsZeroMan 00471d7b f LIBC:intrncvt.obj - 0001:00070d99 __ShrMan 00471d99 f LIBC:intrncvt.obj - 0001:00070e44 __ld12cvt 00471e44 f LIBC:intrncvt.obj - 0001:00070fe0 __ld12tod 00471fe0 f LIBC:intrncvt.obj - 0001:00070ff6 __ld12tof 00471ff6 f LIBC:intrncvt.obj - 0001:0007100c __atodbl 0047200c f LIBC:intrncvt.obj - 0001:0007103d __atoflt 0047203d f LIBC:intrncvt.obj - 0001:0007106e __fptostr 0047206e f LIBC:_fptostr.obj - 0001:000710ec __fltout 004720ec f LIBC:cfout.obj - 0001:0007114f ___dtold 0047214f f LIBC:cfout.obj - 0001:00071219 ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 00472219 f LIBC:unhandld.obj - 0001:00071272 ?_ValidateRead@@YAHPBXI@Z 00472272 f LIBC:validate.obj - 0001:00071290 ?_ValidateWrite@@YAHPAXI@Z 00472290 f LIBC:validate.obj - 0001:000712ae ?_ValidateExecute@@YAHP6GHXZ@Z 004722ae f LIBC:validate.obj - 0001:000712c8 _abort 004722c8 f LIBC:abort.obj - 0001:000712e8 __trandisp1 004722e8 f LIBC:87disp.obj - 0001:0007134f __trandisp2 0047234f f LIBC:87disp.obj - 0001:000713db __rttospopde 004723db LIBC:87disp.obj - 0001:000713e0 __rttospop 004723e0 LIBC:87disp.obj - 0001:000713e2 __rtnospop 004723e2 LIBC:87disp.obj - 0001:000713e4 __rttosnpop 004723e4 LIBC:87disp.obj - 0001:000713e5 __rtnospopde 004723e5 LIBC:87disp.obj - 0001:000713ec __rtzeropop 004723ec LIBC:87disp.obj - 0001:000713ee __rtzeronpop 004723ee LIBC:87disp.obj - 0001:000713f3 __rtonepop 004723f3 LIBC:87disp.obj - 0001:000713f5 __rtonenpop 004723f5 LIBC:87disp.obj - 0001:000713fa __tosnan1 004723fa LIBC:87disp.obj - 0001:00071425 __nosnan2 00472425 LIBC:87disp.obj - 0001:00071427 __tosnan2 00472427 LIBC:87disp.obj - 0001:0007144f __nan2 0047244f LIBC:87disp.obj - 0001:0007148e __rtindfpop 0047248e LIBC:87disp.obj - 0001:00071490 __rtindfnpop 00472490 LIBC:87disp.obj - 0001:000714a1 __rttosnpopde 004724a1 LIBC:87disp.obj - 0001:000714ab __rtchsifneg 004724ab LIBC:87disp.obj - 0001:000714b2 __powhlp 004724b2 f LIBC:powhlp.obj - 0001:0007169f __d_inttype 0047269f f LIBC:powhlp.obj - 0001:000716f1 __87except 004726f1 f LIBC:87except.obj - 0001:000717fb __heap_addblock 004727fb f LIBC:heapadd.obj - 0001:00071ab2 ___crtGetStringTypeA 00472ab2 f LIBC:aw_str.obj - 0001:00071c29 ___crtLCMapStringA 00472c29 f LIBC:aw_map.obj - 0001:00071e88 ___addl 00472e88 f LIBC:mantold.obj - 0001:00071eab ___add_12 00472eab f LIBC:mantold.obj - 0001:00071f09 ___shl_12 00472f09 f LIBC:mantold.obj - 0001:00071f47 ___shr_12 00472f47 f LIBC:mantold.obj - 0001:00071f7a ___mtold12 00472f7a f LIBC:mantold.obj - 0001:0007205e ___strgtold12 0047305e f LIBC:strgtold.obj - 0001:0007269d _$I10_OUTPUT 0047369d f LIBC:x10fout.obj - 0001:000729d3 _raise 004739d3 f LIBC:winsig.obj - 0001:00072b58 __set_exp 00473b58 f LIBC:util.obj - 0001:00072b8d __decomp 00473b8d f LIBC:util.obj - 0001:00072c5b __frnd 00473c5b f LIBC:frnd.obj - 0001:00072c70 __raise_exc 00473c70 f LIBC:fpexcept.obj - 0001:00072f82 __handle_exc 00473f82 f LIBC:fpexcept.obj - 0001:000731da __set_errno 004741da f LIBC:fpexcept.obj - 0001:00073206 __matherr 00474206 f LIBC:matherr.obj - 0001:00073209 __statfp 00474209 f LIBC:fpctrl.obj - 0001:0007321a __clrfp 0047421a f LIBC:fpctrl.obj - 0001:0007322c __ctrlfp 0047422c f LIBC:fpctrl.obj - 0001:0007325c __set_statfp 0047425c f LIBC:fpctrl.obj - 0001:000732b6 __heap_findaddr 004742b6 f LIBC:findaddr.obj - 0001:00073320 _calloc 00474320 f LIBC:calloc.obj - 0001:0007335a ___set_invalid_mb_chars 0047435a f LIBC:setmbval.obj - 0001:00073388 _strncpy 00474388 f LIBC:strncpy.obj - 0001:000733ac ___ld12mul 004743ac f LIBC:tenpow.obj - 0001:000735ec ___multtenpow12 004745ec f LIBC:tenpow.obj - 0001:00073662 _RtlUnwind@16 00474662 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00475000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00475018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00475030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 00475038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 00475050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 00475070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 004750a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 00475138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 00475240 utilstr.obj - 0002:00000350 ?_pcflFirst@CFL@@0PAV1@A 00475350 chunk.obj - 0002:00000378 ?_pfilFirst@FIL@@1PAV1@A 00475378 file.obj - 0002:00000380 ?_mutxList@FIL@@1VMUTX@@A 00475380 file.obj - 0002:000003a8 ?_fniTemp@@3VFNI@@A 004753a8 fniwin.obj - 0002:000004d0 ?vpappb@@3PAVAPPB@@A 004754d0 appb.obj - 0002:000004d4 ?vpsndm@@3PAVSNDM@@A 004754d4 appb.obj - 0002:000004e8 ?vpcex@@3PAVCEX@@A 004754e8 appb.obj - 0002:0000050c ?_pclokFirst@CLOK@@1PAV1@A 0047550c clok.obj - 0002:00000550 ?_hidLast@CMH@@0JA 00475550 cmd.obj - 0002:000005dc ?vcactRealize@@3JA 004755dc gfx.obj - 0002:000005f0 ?vntl@@3VNTL@@A 004755f0 gfx.obj - 0002:0000062c ?_gridLast@GOB@@1JA 0047562c gob.obj - 0002:00000738 ?vwig@@3UWIG@@A 00475738 appbwin.obj - 0002:000007c4 ?_pgobScreen@GOB@@0PAV1@A 004757c4 gobwin.obj - 0002:00000800 ?vpmubCur@@3PAVMUB@@A 00475800 menuwin.obj - 0002:00000a28 ?_clip@@3VCLIP@@A 00475a28 clip.obj - 0002:00000a48 ?vpclip@@3PAVCLIP@@A 00475a48 clip.obj - 0002:00000f88 ?_siiLast@SNDV@@1JA 00475f88 sndm.obj - 0002:000012a8 ?vapp@@3VAPP@@A 004762a8 ched.obj - 0002:000015cc __heap_descpages 004765cc - 0002:000015d0 __heap_regions 004765d0 - 0002:000018d0 ___onexitend 004768d0 - 0002:000018d4 ___onexitbegin 004768d4 - 0002:000018d8 __acmdln 004768d8 - 0003:00000058 ??_7KCDC@@6B@ 00477058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00477078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00477090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004770a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004770d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004770f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00477108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00477120 utilstr.obj - 0003:00000138 ??_7CFL@@6B@ 00477138 chunk.obj - 0003:00000150 ??_7CGE@@6B@ 00477150 chunk.obj - 0003:00000168 ??_7CODM@@6B@ 00477168 codec.obj - 0003:00000198 ??_7BACO@@6B@ 00477198 crf.obj - 0003:000001c0 ??_7CRF@@6B@ 004771c0 crf.obj - 0003:000001e8 ??_7FIL@@6B@ 004771e8 file.obj - 0003:00000200 ??_7BLCK@@6B@ 00477200 file.obj - 0003:00000218 ??_7MSFIL@@6B@ 00477218 file.obj - 0003:00000238 ??_7FNI@@6B@ 00477238 fniwin.obj - 0003:00000250 ??_7APPB@@6B@ 00477250 appb.obj - 0003:00000378 ??_7CLOK@@6B@ 00477378 clok.obj - 0003:000003a0 ??_7CMH@@6B@ 004773a0 cmd.obj - 0003:000003c8 ??_7CEX@@6B@ 004773c8 cmd.obj - 0003:00000440 ??_7CURS@@6B@ 00477440 cursor.obj - 0003:00000468 ??_7GNV@@6B@ 00477468 gfx.obj - 0003:00000480 ??_7NTL@@6B@ 00477480 gfx.obj - 0003:00000498 ??_7GOB@@6B@ 00477498 gob.obj - 0003:00000518 ??_7GTE@@6B@ 00477518 gob.obj - 0003:00000530 ??_7REGSC@@6B@ 00477530 region.obj - 0003:00000548 ??_7REGN@@6B@ 00477548 region.obj - 0003:00000560 ??_7REGBL@@6B@ 00477560 region.obj - 0003:00000578 ??_7GPT@@6B@ 00477578 gfxwin.obj - 0003:00000590 ??_7MUB@@6B@ 00477590 menuwin.obj - 0003:000005c0 ??_7PIC@@6B@ 004775c0 picwin.obj - 0003:000005e8 ??_7GKDS@@6B@ 004775e8 kidworld.obj - 0003:00000620 ??_7WOKS@@6B@ 00477620 kidworld.obj - 0003:000006f0 ??_7TXHD@@6B@ 004776f0 kidhelp.obj - 0003:00000800 ??_7TXHG@@6B@ 00477800 kidhelp.obj - 0003:00000928 ??_7HBAL@@6B@ 00477928 kidhelp.obj - 0003:00000a30 ??_7HBTN@@6B@ 00477a30 kidhelp.obj - 0003:00000b60 ??_7GOK@@6B@ 00477b60 kidspace.obj - 0003:00000c58 ??_7GORP@@6B@ 00477c58 kidspace.obj - 0003:00000ca8 ??_7GORF@@6B@ 00477ca8 kidspace.obj - 0003:00000cf8 ??_7GORB@@6B@ 00477cf8 kidspace.obj - 0003:00000d48 ??_7GORT@@6B@ 00477d48 kidspace.obj - 0003:00000d98 ??_7GORV@@6B@ 00477d98 kidspace.obj - 0003:00000de8 ??_7SCEG@@6B@ 00477de8 screxeg.obj - 0003:00000e50 ??_7CABO@@6B@ 00477e50 screxeg.obj - 0003:00000e78 ??_7DOCB@@6B@ 00477e78 docb.obj - 0003:00000f08 ??_7DTE@@6B@ 00477f08 docb.obj - 0003:00000f20 ??_7DDG@@6B@ 00477f20 docb.obj - 0003:00000fe0 ??_7DMD@@6B@ 00477fe0 docb.obj - 0003:00001068 ??_7DMW@@6B@ 00478068 docb.obj - 0003:000010f0 ??_7DSG@@6B@ 004780f0 docb.obj - 0003:00001180 ??_7DSSP@@6B@ 00478180 docb.obj - 0003:00001200 ??_7DSSM@@6B@ 00478200 docb.obj - 0003:00001280 ??_7CLIP@@6B@ 00478280 clip.obj - 0003:00001298 ??_7CHCM@@6B@ 00478298 chcm.obj - 0003:000012b0 ??_7SCCG@@6B@ 004782b0 chcm.obj - 0003:00001300 ??_7CHLX@@6B@ 00478300 chcm.obj - 0003:00001330 ??_7LEXB@@6B@ 00478330 lex.obj - 0003:00001358 ??_7BSM@@6B@ 00478358 stream.obj - 0003:00001370 ??_7BSF@@6B@ 00478370 stream.obj - 0003:00001388 ??_7SCCB@@6B@ 00478388 scrcom.obj - 0003:000013d8 ??_7SCPT@@6B@ 004783d8 scrcom.obj - 0003:00001400 ??_7SCEB@@6B@ 00478400 screxe.obj - 0003:00001470 ??_7STRG@@6B@ 00478470 screxe.obj - 0003:00001488 ??_7GRPB@@6B@ 00478488 groups.obj - 0003:000014b0 ??_7GLB@@6B@ 004784b0 groups.obj - 0003:000014e0 ??_7GL@@6B@ 004784e0 groups.obj - 0003:00001510 ??_7AL@@6B@ 00478510 groups.obj - 0003:00001540 ??_7GGB@@6B@ 00478540 groups.obj - 0003:00001570 ??_7GG@@6B@ 00478570 groups.obj - 0003:000015a0 ??_7AG@@6B@ 004785a0 groups.obj - 0003:000015d0 ??_7GSTB@@6B@ 004785d0 groups2.obj - 0003:00001600 ??_7GST@@6B@ 00478600 groups2.obj - 0003:00001630 ??_7AST@@6B@ 00478630 groups2.obj - 0003:00001660 ??_7TXTB@@6B@ 00478660 rtxt.obj - 0003:00001750 ??_7TXPD@@6B@ 00478750 rtxt.obj - 0003:00001840 ??_7TXRD@@6B@ 00478840 rtxt.obj - 0003:00001948 ??_7RTUN@@6B@ 00478948 rtxt.obj - 0003:00001968 ??_7TXTG@@6B@ 00478968 rtxt2.obj - 0003:00001a68 ??_7TXLG@@6B@ 00478a68 rtxt2.obj - 0003:00001b68 ??_7TXRG@@6B@ 00478b68 rtxt2.obj - 0003:00001c80 ??_7SNDM@@6B@ 00478c80 sndm.obj - 0003:00001ce8 ??_7SNDMQ@@6B@ 00478ce8 sndm.obj - 0003:00001d50 ??_7SNQUE@@6B@ 00478d50 sndm.obj - 0003:00001d88 ??_7IStream@@6B@ 00478d88 sndam.obj - 0003:00001dc0 ??_7STBL@@6B@ 00478dc0 sndam.obj - 0003:00001df8 ??_7CAMS@@6B@ 00478df8 sndam.obj - 0003:00001e20 ??_7AMNOT@@6B@ 00478e20 sndam.obj - 0003:00001e40 ??_7AMQUE@@6B@ 00478e40 sndam.obj - 0003:00001e78 ??_7SDAM@@6B@ 00478e78 sndam.obj - 0003:00001ee8 ??_7MIDO@@6B@ 00478ee8 mididev.obj - 0003:00001f00 ??_7MDPS@@6B@ 00478f00 mididev2.obj - 0003:00001f68 ??_7MDWS@@6B@ 00478f68 mididev2.obj - 0003:00001f90 ??_7MSQUE@@6B@ 00478f90 mididev2.obj - 0003:00001fc8 ??_7MSMIX@@6B@ 00478fc8 mididev2.obj - 0003:00001fe0 ??_7MISI@@6B@ 00478fe0 mididev2.obj - 0003:00002018 ??_7WMS@@6B@ 00479018 mididev2.obj - 0003:00002050 ??_7OMS@@6B@ 00479050 mididev2.obj - 0003:00002088 ??_7MSTP@@6B@ 00479088 midi.obj - 0003:000020a0 ??_7MIDS@@6B@ 004790a0 midi.obj - 0003:000020c8 ??_7DLG@@6B@ 004790c8 dlg.obj - 0003:000020f8 ??_7CTL@@6B@ 004790f8 ctl.obj - 0003:00002178 ??_7SCB@@6B@ 00479178 ctl.obj - 0003:00002200 ??_7WSB@@6B@ 00479200 ctl.obj - 0003:00002280 ??_7GVID@@6B@ 00479280 video.obj - 0003:000022c8 ??_7GVDS@@6B@ 004792c8 video.obj - 0003:00002318 ??_7GVDW@@6B@ 00479318 video.obj - 0003:00002368 ??_7EDCB@@6B@ 00479368 text.obj - 0003:00002430 ??_7EDPL@@6B@ 00479430 text.obj - 0003:00002500 ??_7EDSL@@6B@ 00479500 text.obj - 0003:000025d0 ??_7MBMP@@6B@ 004795d0 mbmp.obj - 0003:00002600 ??_7DOC@@6B@ 00479600 chdoc.obj - 0003:00002690 ??_7DOCE@@6B@ 00479690 chdoc.obj - 0003:00002730 ??_7DCLB@@6B@ 00479730 chdoc.obj - 0003:000027f0 ??_7DCD@@6B@ 004797f0 chdoc.obj - 0003:00002900 ??_7TSCG@@6B@ 00479900 chdoc.obj - 0003:000029d0 ??_7SEL@@6B@ 004799d0 chdoc.obj - 0003:000029e8 ??_7APP@@6B@ 004799e8 ched.obj - 0003:00002b18 ??_7DOCG@@6B@ 00479b18 chgrp.obj - 0003:00002bb8 ??_7DCGB@@6B@ 00479bb8 chgrp.obj - 0003:00002c88 ??_7DCGL@@6B@ 00479c88 chgrp.obj - 0003:00002d58 ??_7DCGG@@6B@ 00479d58 chgrp.obj - 0003:00002e28 ??_7DCST@@6B@ 00479e28 chgrp.obj - 0003:00002ef8 ??_7DOCI@@6B@ 00479ef8 chgrp.obj - 0003:00002f90 ??_7DHEX@@6B@ 00479f90 chhex.obj - 0003:00003020 ??_7DCH@@6B@ 0047a020 chhex.obj - 0003:000030e0 ??_7DOCH@@6B@ 0047a0e0 chhex.obj - 0003:00003180 ??_7DOCMBMP@@6B@ 0047a180 chmbmp.obj - 0003:00003220 ??_7DCMBMP@@6B@ 0047a220 chmbmp.obj - 0003:000032e0 ??_7DOCPIC@@6B@ 0047a2e0 chpic.obj - 0003:00003380 ??_7DCPIC@@6B@ 0047a380 chpic.obj - 0003:00003440 ??_7CHTXD@@6B@ 0047a440 chtxt.obj - 0003:00003530 ??_7CHTDD@@6B@ 0047a530 chtxt.obj - 0003:00003638 _IID_IUnknown 0047a638 uuid:com_i.obj - 0003:00003648 _IID_IClassFactory 0047a648 uuid:com_i.obj - 0003:00003658 _IID_IMarshal 0047a658 uuid:com_i.obj - 0003:00003668 _IID_IMalloc 0047a668 uuid:com_i.obj - 0003:00003678 _IID_IStdMarshalInfo 0047a678 uuid:com_i.obj - 0003:00003688 _IID_IExternalConnection 0047a688 uuid:com_i.obj - 0003:00003698 _IID_IWeakRef 0047a698 uuid:com_i.obj - 0003:000036a8 _IID_IEnumUnknown 0047a6a8 uuid:com_i.obj - 0003:000036b8 _IID_IBindCtx 0047a6b8 uuid:com_i.obj - 0003:000036c8 _IID_IParseDisplayName 0047a6c8 uuid:com_i.obj - 0003:000036d8 _IID_IEnumMoniker 0047a6d8 uuid:com_i.obj - 0003:000036e8 _IID_IRunnableObject 0047a6e8 uuid:com_i.obj - 0003:000036f8 _IID_IRunningObjectTable 0047a6f8 uuid:com_i.obj - 0003:00003708 _IID_IPersist 0047a708 uuid:com_i.obj - 0003:00003718 _IID_IPersistStream 0047a718 uuid:com_i.obj - 0003:00003728 _IID_IMoniker 0047a728 uuid:com_i.obj - 0003:00003738 _IID_IEnumString 0047a738 uuid:com_i.obj - 0003:00003748 _IID_IStream 0047a748 uuid:com_i.obj - 0003:00003758 _IID_IEnumSTATSTG 0047a758 uuid:com_i.obj - 0003:00003768 _IID_IStorage 0047a768 uuid:com_i.obj - 0003:00003778 _IID_IPersistFile 0047a778 uuid:com_i.obj - 0003:00003788 _IID_IPersistStorage 0047a788 uuid:com_i.obj - 0003:00003798 _IID_ILockBytes 0047a798 uuid:com_i.obj - 0003:000037a8 _IID_IEnumFORMATETC 0047a7a8 uuid:com_i.obj - 0003:000037b8 _IID_IEnumSTATDATA 0047a7b8 uuid:com_i.obj - 0003:000037c8 _IID_IRootStorage 0047a7c8 uuid:com_i.obj - 0003:000037d8 _IID_IAdviseSink 0047a7d8 uuid:com_i.obj - 0003:000037e8 _IID_IAdviseSink2 0047a7e8 uuid:com_i.obj - 0003:000037f8 _IID_IDataObject 0047a7f8 uuid:com_i.obj - 0003:00003808 _IID_IDataAdviseHolder 0047a808 uuid:com_i.obj - 0003:00003818 _IID_IMessageFilter 0047a818 uuid:com_i.obj - 0003:00003828 _IID_IRpcChannelBuffer 0047a828 uuid:com_i.obj - 0003:00003838 _IID_IRpcProxyBuffer 0047a838 uuid:com_i.obj - 0003:00003848 _IID_IRpcStubBuffer 0047a848 uuid:com_i.obj - 0003:00003858 _IID_IPSFactoryBuffer 0047a858 uuid:com_i.obj - 0003:00003868 ??_7IAMWavFileSrc@@6B@ 0047a868 audios:sound.obj - 0003:00003880 ??_7IAMSound@@6B@ 0047a880 audios:sound.obj - 0003:000038a8 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 0047a8a8 audios:sound.obj - 0003:000038c0 ??_7CAMWavFileSrc@@6BIAMSound@@@ 0047a8c0 audios:sound.obj - 0003:00003918 _CLSID_AMMixer 0047a918 audios:factory.obj - 0003:00003928 _CLSID_AMWavFileSrc 0047a928 audios:factory.obj - 0003:00003938 _CLSID_AMSilentSound 0047a938 audios:factory.obj - 0003:00003948 _CLSID_AMAppendFilter 0047a948 audios:factory.obj - 0003:00003958 _CLSID_AMClipFilter 0047a958 audios:factory.obj - 0003:00003968 _CLSID_AMConvertFilter 0047a968 audios:factory.obj - 0003:00003978 _CLSID_AMDelayFilter 0047a978 audios:factory.obj - 0003:00003988 _CLSID_AMGainFilter 0047a988 audios:factory.obj - 0003:00003998 _CLSID_AMGateFilter 0047a998 audios:factory.obj - 0003:000039a8 _CLSID_AMLoopFilter 0047a9a8 audios:factory.obj - 0003:000039b8 _CLSID_AMMixFilter 0047a9b8 audios:factory.obj - 0003:000039c8 _CLSID_AMFaderFilter 0047a9c8 audios:factory.obj - 0003:000039d8 _CLSID_AMScheduleFilter 0047a9d8 audios:factory.obj - 0003:000039e8 _CLSID_AMRandomizeFilter 0047a9e8 audios:factory.obj - 0003:000039f8 _CLSID_AMDistortFilter 0047a9f8 audios:factory.obj - 0003:00003a08 _CLSID_AMCacheFilter 0047aa08 audios:factory.obj - 0003:00003a18 _CLSID_AMTrimFilter 0047aa18 audios:factory.obj - 0003:00003a28 _CLSID_AMStereoFilter 0047aa28 audios:factory.obj - 0003:00003a38 _CLSID_AMBiasFilter 0047aa38 audios:factory.obj - 0003:00003a48 _IID_IAMMixer 0047aa48 audios:factory.obj - 0003:00003a58 _IID_IAMChannel 0047aa58 audios:factory.obj - 0003:00003a68 _IID_IAMWaveOut 0047aa68 audios:factory.obj - 0003:00003a78 _IID_IAMSound 0047aa78 audios:factory.obj - 0003:00003a88 _IID_IAMNotifySink 0047aa88 audios:factory.obj - 0003:00003a98 _IID_IAMWavFileSrc 0047aa98 audios:factory.obj - 0003:00003aa8 _IID_IAMSilentSound 0047aaa8 audios:factory.obj - 0003:00003ab8 _IID_IAMAppendFilter 0047aab8 audios:factory.obj - 0003:00003ac8 _IID_IAMClipFilter 0047aac8 audios:factory.obj - 0003:00003ad8 _IID_IAMConvertFilter 0047aad8 audios:factory.obj - 0003:00003ae8 _IID_IAMDelayFilter 0047aae8 audios:factory.obj - 0003:00003af8 _IID_IAMGainFilter 0047aaf8 audios:factory.obj - 0003:00003b08 _IID_IAMGateFilter 0047ab08 audios:factory.obj - 0003:00003b18 _IID_IAMLoopFilter 0047ab18 audios:factory.obj - 0003:00003b28 _IID_IAMMixFilter 0047ab28 audios:factory.obj - 0003:00003b38 _IID_IAMFaderFilter 0047ab38 audios:factory.obj - 0003:00003b48 _IID_IAMScheduleFilter 0047ab48 audios:factory.obj - 0003:00003b58 _IID_IAMRandomizeFilter 0047ab58 audios:factory.obj - 0003:00003b68 _IID_IAMDistortFilter 0047ab68 audios:factory.obj - 0003:00003b78 _IID_IAMCacheFilter 0047ab78 audios:factory.obj - 0003:00003b88 _IID_IAMTrimFilter 0047ab88 audios:factory.obj - 0003:00003b98 _IID_IAMStereoFilter 0047ab98 audios:factory.obj - 0003:00003ba8 _IID_IAMBiasFilter 0047aba8 audios:factory.obj - 0003:00003bb8 _IID_IAMMixerChannel 0047abb8 audios:factory.obj - 0003:00003bc8 _IID_IAMRIFFStream 0047abc8 audios:factory.obj - 0003:00003bd8 ??_7CClassFactory@@6B@ 0047abd8 audios:factory.obj - 0003:00003c50 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 0047ac50 audios:factory.obj - 0003:00003c60 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 0047ac60 audios:factory.obj - 0003:00003c88 ??_7IAMBiasFilter@@6B@ 0047ac88 audios:factory.obj - 0003:00003c98 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 0047ac98 audios:factory.obj - 0003:00003cb8 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 0047acb8 audios:factory.obj - 0003:00003ce0 ??_7IAMStereoFilter@@6B@ 0047ace0 audios:factory.obj - 0003:00003cf0 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 0047acf0 audios:factory.obj - 0003:00003d00 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 0047ad00 audios:factory.obj - 0003:00003d28 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 0047ad28 audios:factory.obj - 0003:00003d38 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 0047ad38 audios:factory.obj - 0003:00003d60 ??_7IAMTrimFilter@@6B@ 0047ad60 audios:factory.obj - 0003:00003d70 ??_7IAMDistortFilter@@6B@ 0047ad70 audios:factory.obj - 0003:00003d80 ??_7IAMRandomizeFilter@@6B@ 0047ad80 audios:factory.obj - 0003:00003da0 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 0047ada0 audios:factory.obj - 0003:00003db0 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 0047adb0 audios:factory.obj - 0003:00003dd8 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 0047add8 audios:factory.obj - 0003:00003de8 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 0047ade8 audios:factory.obj - 0003:00003e10 ??_7IAMFaderFilter@@6B@ 0047ae10 audios:factory.obj - 0003:00003e20 ??_7IAMLoopFilter@@6B@ 0047ae20 audios:factory.obj - 0003:00003e30 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 0047ae30 audios:factory.obj - 0003:00003e40 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 0047ae40 audios:factory.obj - 0003:00003e68 ??_7IAMGateFilter@@6B@ 0047ae68 audios:factory.obj - 0003:00003e78 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 0047ae78 audios:factory.obj - 0003:00003e88 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 0047ae88 audios:factory.obj - 0003:00003ff0 ??_7CFileStream@@6B@ 0047aff0 audios:stream.obj - 0003:00004028 ??_7CMemoryStream@@6B@ 0047b028 audios:stream.obj - 0003:00004080 ??_7CAMPassThruFilter@@6B@ 0047b080 audios:sndpass.obj - 0003:000040f8 ??_7IAMCacheFilter@@6B@ 0047b0f8 audios:sndcache.obj - 0003:00004108 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 0047b108 audios:sndcache.obj - 0003:00004118 ??_7CAMCacheFilter@@6BIAMSound@@@ 0047b118 audios:sndcache.obj - 0003:00004140 ??_7IAMScheduleFilter@@6B@ 0047b140 audios:sndsched.obj - 0003:00004178 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 0047b178 audios:sndsched.obj - 0003:000041b0 ??_7CAMScheduleFilter@@6BIAMSound@@@ 0047b1b0 audios:sndsched.obj - 0003:000041d8 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 0047b1d8 audios:sndmix.obj - 0003:000041e8 ??_7CAMMixFilter@@6BIAMSound@@@ 0047b1e8 audios:sndmix.obj - 0003:00004210 ??_7IAMMixFilter@@6B@ 0047b210 audios:sndmix.obj - 0003:00004228 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 0047b228 audios:sndgain.obj - 0003:00004240 ??_7CAMGainFilter@@6BIAMSound@@@ 0047b240 audios:sndgain.obj - 0003:00004268 ??_7IAMGainFilter@@6B@ 0047b268 audios:sndgain.obj - 0003:00004280 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 0047b280 audios:sndecho.obj - 0003:00004290 ??_7CAMDelayFilter@@6BIAMSound@@@ 0047b290 audios:sndecho.obj - 0003:000042b8 ??_7IAMDelayFilter@@6B@ 0047b2b8 audios:sndecho.obj - 0003:000042d8 ??_7IAMConvertFilter@@6B@ 0047b2d8 audios:sndcnvt.obj - 0003:000042e8 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 0047b2e8 audios:sndcnvt.obj - 0003:000042f8 ??_7CAMConvertFilter@@6BIAMSound@@@ 0047b2f8 audios:sndcnvt.obj - 0003:00004320 ??_7IAMClipFilter@@6B@ 0047b320 audios:sndclip.obj - 0003:00004330 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 0047b330 audios:sndclip.obj - 0003:00004340 ??_7CAMClipFilter@@6BIAMSound@@@ 0047b340 audios:sndclip.obj - 0003:00004368 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 0047b368 audios:sndapend.obj - 0003:00004378 ??_7CAMAppendFilter@@6BIAMSound@@@ 0047b378 audios:sndapend.obj - 0003:000043a0 ??_7IAMAppendFilter@@6B@ 0047b3a0 audios:sndapend.obj - 0003:000043b0 ??_7IAMSilentSound@@6B@ 0047b3b0 audios:sndmute.obj - 0003:000043c0 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 0047b3c0 audios:sndmute.obj - 0003:000043d0 ??_7CAMSilentSound@@6BIAMSound@@@ 0047b3d0 audios:sndmute.obj - 0003:00004458 ??_7CAMMixer@@6B@ 0047b458 audios:cmixer.obj - 0003:000044f8 ??_7CMixerOut@@6B@ 0047b4f8 audios:cmixout.obj - 0003:00004558 ??_7CAMPlaySnd@@6B@ 0047b558 audios:cplaysnd.obj - 0003:00004578 ??_7IAMMixerChannel@@6B@ 0047b578 audios:cchannel.obj - 0003:000045c8 ??_7IAMChannel@@6B@ 0047b5c8 audios:cchannel.obj - 0003:00004628 ??_7CAMChannel@@6BIAMMixerChannel@@@ 0047b628 audios:cchannel.obj - 0003:00004678 ??_7CAMChannel@@6BIAMChannel@@@ 0047b678 audios:cchannel.obj - 0003:000046d8 ??_7CRealOut@@6B@ 0047b6d8 audios:crealout.obj - 0003:00004758 ??_7CFakeOut@@6B@ 0047b758 audios:cfakeout.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 0047c000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 0047c004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 0047c008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0047c00c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 0047c010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 0047c118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0047c11c file.obj - 0004:00000120 ?vftgTemp@@3JA 0047c120 fniwin.obj - 0004:00000128 ??_C@_00A@?$AA@ 0047c128 fniwin.obj - 0004:0000012c ??_C@_08GBDA@Temp?$CF04x?$AA@ 0047c12c fniwin.obj - 0004:00000138 ??_C@_04POLC@?$CFc?3?2?$AA@ 0047c138 fniwin.obj - 0004:00000140 ??_C@_02OOND@?4?4?$AA@ 0047c140 fniwin.obj - 0004:00000148 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 0047c148 appb.obj - 0004:00000150 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 0047c150 appb.obj - 0004:000001b4 ??_C@_07GHND@Generic?$AA@ 0047c1b4 appb.obj - 0004:000001bc ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 0047c1bc appb.obj - 0004:000001cc ??_C@_0M@HLIB@Courier?5New?$AA@ 0047c1cc appb.obj - 0004:000001d8 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 0047c1d8 appb.obj - 0004:00000200 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 0047c200 clok.obj - 0004:00000208 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 0047c208 clok.obj - 0004:00000218 ?_cmmCMH@CMH@@1UCMM@1@A 0047c218 cmd.obj - 0004:00000220 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 0047c220 cmd.obj - 0004:00000230 ?vaptGray@@3UAPT@@A 0047c230 gfx.obj - 0004:00000238 ?vaptLtGray@@3UAPT@@A 0047c238 gfx.obj - 0004:00000240 ?vaptDkGray@@3UAPT@@A 0047c240 gfx.obj - 0004:00000248 ?_mpgfdgrfpt@@3QAKA 0047c248 gfx.obj - 0004:00000258 ?_mpgfdgrfptInv@@3QAKA 0047c258 gfx.obj - 0004:00000268 ?_cmmGOB@GOB@@1UCMM@CMH@@A 0047c268 gob.obj - 0004:00000270 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 0047c270 gob.obj - 0004:00000300 ?_ginDefGob@GOB@@1JA 0047c300 gob.obj - 0004:00000304 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 0047c304 appbwin.obj - 0004:0000031c ??_C@_03KELD@MDI?$AA@ 0047c31c appbwin.obj - 0004:00000320 ??_C@_03BLAA@APP?$AA@ 0047c320 appbwin.obj - 0004:00000328 ?_hpal@GPT@@0PAUHPALETTE__@@A 0047c328 gfxwin.obj - 0004:0000032c ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 0047c32c gfxwin.obj - 0004:00000330 ?_cclrPal@GPT@@0JA 0047c330 gfxwin.obj - 0004:00000334 ?_prgclr@GPT@@0PAUCLR@@A 0047c334 gfxwin.obj - 0004:00000338 ?_cactPalCur@GPT@@0JA 0047c338 gfxwin.obj - 0004:0000033c ?_cactFlush@GPT@@0JA 0047c33c gfxwin.obj - 0004:00000340 ?_fPalettized@GPT@@0HA 0047c340 gfxwin.obj - 0004:000003b8 ??_C@_09MLCM@MDICLIENT?$AA@ 0047c3b8 gobwin.obj - 0004:000003c4 ??_C@_01BJG@?6?$AA@ 0047c3c4 kidworld.obj - 0004:000003c8 ?_cmmTXHG@TXHG@@1UCMM@CMH@@A 0047c3c8 kidhelp.obj - 0004:000003d0 ?_rgcmmeTXHG@TXHG@@0QAUCMME@CMH@@A 0047c3d0 kidhelp.obj - 0004:00000400 ??_C@_08LFAA@_gidBase?$AA@ 0047c400 kidhelp.obj - 0004:0000040c ??_C@_09JJKK@_cnoSound?$AA@ 0047c40c kidhelp.obj - 0004:00000418 ??_C@_09PEHH@_ctgSound?$AA@ 0047c418 kidhelp.obj - 0004:00000428 ?_cmmGOK@GOK@@1UCMM@CMH@@A 0047c428 kidspace.obj - 0004:00000430 ?_rgcmmeGOK@GOK@@0QAUCMME@CMH@@A 0047c430 kidspace.obj - 0004:00000490 ?_mpgmsgmseEnd@@3QAUGMSE@@A 0047c490 kidspace.obj - 0004:00000500 ?_mpgmsgmseMove@@3QAUGMSE@@A 0047c500 kidspace.obj - 0004:00000570 ?_mpgmsgmseRollOff@@3QAUGMSE@@A 0047c570 kidspace.obj - 0004:000005e0 ?_mpgmsgmseMouseDown@@3QAUGMSE@@A 0047c5e0 kidspace.obj - 0004:00000650 ?_mpgmsgmseDownOn@@3QAUGMSE@@A 0047c650 kidspace.obj - 0004:000006c0 ?_mpgmsgmseDownOff@@3QAUGMSE@@A 0047c6c0 kidspace.obj - 0004:00000730 ?_mpgmsgmseUpOn@@3QAUGMSE@@A 0047c730 kidspace.obj - 0004:000007a0 ?_mpgmsgmseUpOff@@3QAUGMSE@@A 0047c7a0 kidspace.obj - 0004:00000848 ??_C@_0L@JBFE@?$CFd?5?$CI0x?$CFx?$CJ?5?$AA@ 0047c848 screxeg.obj - 0004:00000854 ??_C@_0CC@ONHO@Script?5Message?5?$CI?8?$CFf?8?0?50x?$CFx?0?5?$CFd?$CJ?3@ 0047c854 screxeg.obj - 0004:00000878 ?_rgszopSccg@@3QAUSZOP@@A 0047c878 scrcomg.obj - 0004:00000c28 ?_rgaropSccg@@3QAUAROP@@A 0047cc28 scrcomg.obj - 0004:00001738 ??_C@_0N@MHJO@PrintStrStat?$AA@ 0047d738 scrcomg.obj - 0004:00001748 ??_C@_09FJBA@PrintStat?$AA@ 0047d748 scrcomg.obj - 0004:00001754 ??_C@_0L@EOIP@StreamThis?$AA@ 0047d754 scrcomg.obj - 0004:00001760 ??_C@_09HLFA@StreamGob?$AA@ 0047d760 scrcomg.obj - 0004:0000176c ??_C@_0BA@BIPK@FlushUserEvents?$AA@ 0047d76c scrcomg.obj - 0004:0000177c ??_C@_09JJPB@ModalHelp?$AA@ 0047d77c scrcomg.obj - 0004:00001788 ??_C@_0N@DCCE@SetAlarmThis?$AA@ 0047d788 scrcomg.obj - 0004:00001798 ??_C@_0M@NALO@SetAlarmGob?$AA@ 0047d798 scrcomg.obj - 0004:000017a4 ??_C@_0BF@NFFN@SetToolTipSourceThis?$AA@ 0047d7a4 scrcomg.obj - 0004:000017bc ??_C@_0BE@KJIP@SetToolTipSourceGob?$AA@ 0047d7bc scrcomg.obj - 0004:000017d0 ??_C@_09MGPK@EndLongOp?$AA@ 0047d7d0 scrcomg.obj - 0004:000017dc ??_C@_0M@HDMI@StartLongOp?$AA@ 0047d7dc scrcomg.obj - 0004:000017e8 ??_C@_0BA@PADJ@GetMasterVolume?$AA@ 0047d7e8 scrcomg.obj - 0004:000017f8 ??_C@_0BA@NALN@SetMasterVolume?$AA@ 0047d7f8 scrcomg.obj - 0004:00001808 ??_C@_08EKJJ@PrintStr?$AA@ 0047d808 scrcomg.obj - 0004:00001814 ??_C@_05KGMP@Print?$AA@ 0047d814 scrcomg.obj - 0004:0000181c ??_C@_0O@CNH@FIsDescendent?$AA@ 0047d81c scrcomg.obj - 0004:0000182c ??_C@_0O@MGAI@SetNoSlipThis?$AA@ 0047d82c scrcomg.obj - 0004:0000183c ??_C@_0N@PMGO@SetNoSlipGob?$AA@ 0047d83c scrcomg.obj - 0004:0000184c ??_C@_0L@GHAL@HeightThis?$AA@ 0047d84c scrcomg.obj - 0004:00001858 ??_C@_09PPGJ@HeightGob?$AA@ 0047d858 scrcomg.obj - 0004:00001864 ??_C@_09FBEL@WidthThis?$AA@ 0047d864 scrcomg.obj - 0004:00001870 ??_C@_08LPLG@WidthGob?$AA@ 0047d870 scrcomg.obj - 0004:0000187c ??_C@_0BB@OEC@RunScriptCnoThis?$AA@ 0047d87c scrcomg.obj - 0004:00001890 ??_C@_0BA@LGEH@RunScriptCnoGob?$AA@ 0047d890 scrcomg.obj - 0004:000018a0 ??_C@_0BD@KHLA@PlayMouseSoundThis?$AA@ 0047d8a0 scrcomg.obj - 0004:000018b4 ??_C@_0BC@EENC@PlayMouseSoundGob?$AA@ 0047d8b4 scrcomg.obj - 0004:000018c8 ??_C@_0BB@HGPP@ResumeSoundClass?$AA@ 0047d8c8 scrcomg.obj - 0004:000018dc ??_C@_0M@GKDM@ResumeSound?$AA@ 0047d8dc scrcomg.obj - 0004:000018e8 ??_C@_0BA@HHOB@PauseSoundClass?$AA@ 0047d8e8 scrcomg.obj - 0004:000018f8 ??_C@_0L@NKBB@PauseSound?$AA@ 0047d8f8 scrcomg.obj - 0004:00001904 ??_C@_0BC@CBPJ@PlayingSoundClass?$AA@ 0047d904 scrcomg.obj - 0004:00001918 ??_C@_0N@OGM@PlayingSound?$AA@ 0047d918 scrcomg.obj - 0004:00001928 ??_C@_0P@FBO@StopSoundClass?$AA@ 0047d928 scrcomg.obj - 0004:00001938 ??_C@_09MJBN@StopSound?$AA@ 0047d938 scrcomg.obj - 0004:00001944 ??_C@_0N@ELOA@PlaySoundGob?$AA@ 0047d944 scrcomg.obj - 0004:00001954 ??_C@_0O@DNLP@PlaySoundThis?$AA@ 0047d954 scrcomg.obj - 0004:00001964 ??_C@_0BE@LKGN@DestroyChildrenThis?$AA@ 0047d964 scrcomg.obj - 0004:00001978 ??_C@_0BD@JJKG@DestroyChildrenGob?$AA@ 0047d978 scrcomg.obj - 0004:0000198c ??_C@_0P@MKFJ@FilterCmdsThis?$AA@ 0047d98c scrcomg.obj - 0004:0000199c ??_C@_0O@KNPC@FilterCmdsGob?$AA@ 0047d99c scrcomg.obj - 0004:000019ac ??_C@_0O@BGJA@GotoFrameThis?$AA@ 0047d9ac scrcomg.obj - 0004:000019bc ??_C@_0N@GEGG@GotoFrameGob?$AA@ 0047d9bc scrcomg.obj - 0004:000019cc ??_C@_0BA@OGKJ@CountFramesThis?$AA@ 0047d9cc scrcomg.obj - 0004:000019dc ??_C@_0P@FNML@CountFramesGob?$AA@ 0047d9dc scrcomg.obj - 0004:000019ec ??_C@_0N@EGDG@CurFrameThis?$AA@ 0047d9ec scrcomg.obj - 0004:000019fc ??_C@_0M@MCIA@CurFrameGob?$AA@ 0047d9fc scrcomg.obj - 0004:00001a08 ??_C@_08FNOO@StopThis?$AA@ 0047da08 scrcomg.obj - 0004:00001a14 ??_C@_07BKPI@StopGob?$AA@ 0047da14 scrcomg.obj - 0004:00001a1c ??_C@_0M@CMKE@PlayingThis?$AA@ 0047da1c scrcomg.obj - 0004:00001a28 ??_C@_0L@FAND@PlayingGob?$AA@ 0047da28 scrcomg.obj - 0004:00001a34 ??_C@_08GJKE@PlayThis?$AA@ 0047da34 scrcomg.obj - 0004:00001a40 ??_C@_07FAHC@PlayGob?$AA@ 0047da40 scrcomg.obj - 0004:00001a48 ??_C@_06HJIC@Launch?$AA@ 0047da48 scrcomg.obj - 0004:00001a50 ??_C@_07BJKF@SetProp?$AA@ 0047da50 scrcomg.obj - 0004:00001a58 ??_C@_07EKKJ@GetProp?$AA@ 0047da58 scrcomg.obj - 0004:00001a60 ??_C@_08ICLP@AlertStr?$AA@ 0047da60 scrcomg.obj - 0004:00001a6c ??_C@_07OMCA@SetEdit?$AA@ 0047da6c scrcomg.obj - 0004:00001a74 ??_C@_07LPCM@GetEdit?$AA@ 0047da74 scrcomg.obj - 0004:00001a7c ??_C@_0L@LCIG@Transition?$AA@ 0047da7c scrcomg.obj - 0004:00001a88 ??_C@_0P@NHOA@CreateHelpThis?$AA@ 0047da88 scrcomg.obj - 0004:00001a98 ??_C@_0O@BENB@CreateHelpGob?$AA@ 0047da98 scrcomg.obj - 0004:00001aa8 ??_C@_0BE@LEMJ@ChangeModifierState?$AA@ 0047daa8 scrcomg.obj - 0004:00001abc ??_C@_0BB@BAEK@GetModifierState?$AA@ 0047dabc scrcomg.obj - 0004:00001ad0 ??_C@_0M@NBPF@CellNoPause?$AA@ 0047dad0 scrcomg.obj - 0004:00001adc ??_C@_04HPIN@Cell?$AA@ 0047dadc scrcomg.obj - 0004:00001ae4 ??_C@_0O@OJNG@SetColorTable?$AA@ 0047dae4 scrcomg.obj - 0004:00001af4 ??_C@_08JGAI@SetZThis?$AA@ 0047daf4 scrcomg.obj - 0004:00001b00 ??_C@_07PMDM@SetZGob?$AA@ 0047db00 scrcomg.obj - 0004:00001b08 ??_C@_05PEKH@ZThis?$AA@ 0047db08 scrcomg.obj - 0004:00001b10 ??_C@_04FDKD@ZGob?$AA@ 0047db10 scrcomg.obj - 0004:00001b18 ??_C@_05BEMI@YThis?$AA@ 0047db18 scrcomg.obj - 0004:00001b20 ??_C@_04DMFF@YGob?$AA@ 0047db20 scrcomg.obj - 0004:00001b28 ??_C@_05LEON@XThis?$AA@ 0047db28 scrcomg.obj - 0004:00001b30 ??_C@_04BJAH@XGob?$AA@ 0047db30 scrcomg.obj - 0004:00001b38 ??_C@_09MBMH@GidUnique?$AA@ 0047db38 scrcomg.obj - 0004:00001b44 ??_C@_0L@KAKM@YMouseThis?$AA@ 0047db44 scrcomg.obj - 0004:00001b50 ??_C@_09FIFJ@YMouseGob?$AA@ 0047db50 scrcomg.obj - 0004:00001b5c ??_C@_0L@CPGO@XMouseThis?$AA@ 0047db5c scrcomg.obj - 0004:00001b68 ??_C@_09JKBB@XMouseGob?$AA@ 0047db68 scrcomg.obj - 0004:00001b74 ??_C@_0L@JPOL@SetRepThis?$AA@ 0047db74 scrcomg.obj - 0004:00001b80 ??_C@_09BPLC@SetRepGob?$AA@ 0047db80 scrcomg.obj - 0004:00001b8c ??_C@_0P@MKCE@SetPictureThis?$AA@ 0047db8c scrcomg.obj - 0004:00001b9c ??_C@_0O@NACO@SetPictureGob?$AA@ 0047db9c scrcomg.obj - 0004:00001bac ??_C@_0M@CJOF@AnimateThis?$AA@ 0047dbac scrcomg.obj - 0004:00001bb8 ??_C@_0L@BBEN@AnimateGob?$AA@ 0047dbb8 scrcomg.obj - 0004:00001bc4 ??_C@_0BA@IJPG@ChangeStateThis?$AA@ 0047dbc4 scrcomg.obj - 0004:00001bd4 ??_C@_0P@CCO@ChangeStateGob?$AA@ 0047dbd4 scrcomg.obj - 0004:00001be4 ??_C@_09EGDL@StateThis?$AA@ 0047dbe4 scrcomg.obj - 0004:00001bf0 ??_C@_08MPJC@StateGob?$AA@ 0047dbf0 scrcomg.obj - 0004:00001bfc ??_C@_0O@HCMF@RunScriptThis?$AA@ 0047dbfc scrcomg.obj - 0004:00001c0c ??_C@_0N@DBLM@RunScriptGob?$AA@ 0047dc0c scrcomg.obj - 0004:00001c1c ??_C@_05PJFK@Alert?$AA@ 0047dc1c scrcomg.obj - 0004:00001c24 ??_C@_0L@EGFM@EnqueueCid?$AA@ 0047dc24 scrcomg.obj - 0004:00001c30 ??_C@_08IEPA@SetAlarm?$AA@ 0047dc30 scrcomg.obj - 0004:00001c3c ??_C@_07FBMA@TimeCur?$AA@ 0047dc3c scrcomg.obj - 0004:00001c44 ??_C@_09EJEF@StopClock?$AA@ 0047dc44 scrcomg.obj - 0004:00001c50 ??_C@_0L@GGIB@StartClock?$AA@ 0047dc50 scrcomg.obj - 0004:00001c5c ??_C@_0N@NMPG@DestroyClock?$AA@ 0047dc5c scrcomg.obj - 0004:00001c6c ??_C@_0M@EDHP@CreateClock?$AA@ 0047dc6c scrcomg.obj - 0004:00001c78 ??_C@_0L@DKEP@FGobExists?$AA@ 0047dc78 scrcomg.obj - 0004:00001c84 ??_C@_08KBMA@GidChild?$AA@ 0047dc84 scrcomg.obj - 0004:00001c90 ??_C@_0L@OONC@GidPrevSib?$AA@ 0047dc90 scrcomg.obj - 0004:00001c9c ??_C@_0L@EPFB@GidNextSib?$AA@ 0047dc9c scrcomg.obj - 0004:00001ca8 ??_C@_0L@IOKP@GidParThis?$AA@ 0047dca8 scrcomg.obj - 0004:00001cb4 ??_C@_09FLPF@GidParGob?$AA@ 0047dcb4 scrcomg.obj - 0004:00001cc0 ??_C@_07LLIB@GidThis?$AA@ 0047dcc0 scrcomg.obj - 0004:00001cc8 ??_C@_0M@FHNF@MoveAbsThis?$AA@ 0047dcc8 scrcomg.obj - 0004:00001cd4 ??_C@_0L@CBKE@MoveAbsGob?$AA@ 0047dcd4 scrcomg.obj - 0004:00001ce0 ??_C@_0M@EGNE@MoveRelThis?$AA@ 0047dce0 scrcomg.obj - 0004:00001cec ??_C@_0L@CALD@MoveRelGob?$AA@ 0047dcec scrcomg.obj - 0004:00001cf8 ??_C@_0L@OJJL@ResizeThis?$AA@ 0047dcf8 scrcomg.obj - 0004:00001d04 ??_C@_09GPEL@ResizeGob?$AA@ 0047dd04 scrcomg.obj - 0004:00001d10 ??_C@_0M@OOAM@DestroyThis?$AA@ 0047dd10 scrcomg.obj - 0004:00001d1c ??_C@_0L@PILG@DestroyGob?$AA@ 0047dd1c scrcomg.obj - 0004:00001d28 ??_C@_0BA@JGPN@CreateChildThis?$AA@ 0047dd28 scrcomg.obj - 0004:00001d38 ??_C@_0P@JDJ@CreateChildGob?$AA@ 0047dd38 scrcomg.obj - 0004:00001d48 ?_cactLast@DOCB@@1JA 0047dd48 docb.obj - 0004:00001d4c ?_pdocbFirst@DOCB@@1PAV1@A 0047dd4c docb.obj - 0004:00001d50 ?_cmmDDG@DDG@@1UCMM@CMH@@A 0047dd50 docb.obj - 0004:00001d58 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 0047dd58 docb.obj - 0004:00001e28 ?_cmmDSG@DSG@@1UCMM@CMH@@A 0047de28 docb.obj - 0004:00001e30 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 0047de30 docb.obj - 0004:00001e60 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 0047de60 docb.obj - 0004:00001e70 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 0047de70 docb.obj - 0004:00001e7c ??_C@_09IDMC@Clipboard?$AA@ 0047de7c docb.obj - 0004:00001e88 ?_mpertpsz@@3QAPADA 0047de88 chcm.obj - 0004:00002098 ??_C@_07KLIJ@SUBFILE?$AA@ 0047e098 chcm.obj - 0004:000020a0 ??_C@_07NFID@PACKFMT?$AA@ 0047e0a0 chcm.obj - 0004:000020a8 ??_C@_04EJID@PACK?$AA@ 0047e0a8 chcm.obj - 0004:000020b0 ??_C@_09DECH@PREPACKED?$AA@ 0047e0b0 chcm.obj - 0004:000020bc ??_C@_07ONI@PALETTE?$AA@ 0047e0bc chcm.obj - 0004:000020c4 ??_C@_06MDJJ@CURSOR?$AA@ 0047e0c4 chcm.obj - 0004:000020cc ??_C@_05EKBD@LONER?$AA@ 0047e0cc chcm.obj - 0004:000020d4 ??_C@_06INIF@WINOSK?$AA@ 0047e0d4 chcm.obj - 0004:000020dc ??_C@_06MKGG@MACOSK?$AA@ 0047e0dc chcm.obj - 0004:000020e4 ??_C@_05OKLJ@WINBO?$AA@ 0047e0e4 chcm.obj - 0004:000020ec ??_C@_05JOF@MACBO?$AA@ 0047e0ec chcm.obj - 0004:000020f4 ??_C@_03IKKD@AST?$AA@ 0047e0f4 chcm.obj - 0004:000020f8 ??_C@_03GGNE@GST?$AA@ 0047e0f8 chcm.obj - 0004:000020fc ??_C@_02EMCK@AG?$AA@ 0047e0fc chcm.obj - 0004:00002100 ??_C@_02DLNF@GG?$AA@ 0047e100 chcm.obj - 0004:00002104 ??_C@_02OHCL@AL?$AA@ 0047e104 chcm.obj - 0004:00002108 ??_C@_02JANE@GL?$AA@ 0047e108 chcm.obj - 0004:0000210c ??_C@_08EBHJ@SCRIPTPF?$AA@ 0047e10c chcm.obj - 0004:00002118 ??_C@_06PDJ@SCRIPT?$AA@ 0047e118 chcm.obj - 0004:00002120 ??_C@_04CCOG@MIDI?$AA@ 0047e120 chcm.obj - 0004:00002128 ??_C@_04OMIB@MASK?$AA@ 0047e128 chcm.obj - 0004:00002130 ??_C@_06MABC@BITMAP?$AA@ 0047e130 chcm.obj - 0004:00002138 ??_C@_04MEBI@META?$AA@ 0047e138 chcm.obj - 0004:00002140 ??_C@_0L@CDIA@PACKEDFILE?$AA@ 0047e140 chcm.obj - 0004:0000214c ??_C@_04CMDA@FILE?$AA@ 0047e14c chcm.obj - 0004:00002154 ??_C@_05MANP@ALIGN?$AA@ 0047e154 chcm.obj - 0004:0000215c ??_C@_02FNBP@ST?$AA@ 0047e15c chcm.obj - 0004:00002160 ??_C@_02PGNF@SZ?$AA@ 0047e160 chcm.obj - 0004:00002164 ??_C@_03MFHL@STZ?$AA@ 0047e164 chcm.obj - 0004:00002168 ??_C@_03MGFH@STN?$AA@ 0047e168 chcm.obj - 0004:0000216c ??_C@_03FOEM@OSK?$AA@ 0047e16c chcm.obj - 0004:00002170 ??_C@_02CDGN@BO?$AA@ 0047e170 chcm.obj - 0004:00002174 ??_C@_06IBHO@PARENT?$AA@ 0047e174 chcm.obj - 0004:0000217c ??_C@_05JKOA@CHILD?$AA@ 0047e17c chcm.obj - 0004:00002184 ??_C@_05KFCC@ADOPT?$AA@ 0047e184 chcm.obj - 0004:0000218c ??_C@_08CEGN@ENDCHUNK?$AA@ 0047e18c chcm.obj - 0004:00002198 ??_C@_05EPGN@CHUNK?$AA@ 0047e198 chcm.obj - 0004:000021a0 ??_C@_04NIAI@LONG?$AA@ 0047e1a0 chcm.obj - 0004:000021a8 ??_C@_05HFLA@SHORT?$AA@ 0047e1a8 chcm.obj - 0004:000021b0 ??_C@_04EHOP@BYTE?$AA@ 0047e1b0 chcm.obj - 0004:000021b8 ??_C@_03KNCG@VAR?$AA@ 0047e1b8 chcm.obj - 0004:000021bc ??_C@_04MICK@FREE?$AA@ 0047e1bc chcm.obj - 0004:000021c4 ??_C@_04KAML@ITEM?$AA@ 0047e1c4 chcm.obj - 0004:000021cc ??_C@_0BF@FCDC@Unterminated?5SUBFILE?$AA@ 0047e1cc chcm.obj - 0004:000021e4 ??_C@_0CD@MIGA@Illegal?5LONER?5primitive?5in?5SUBFI@ 0047e1e4 chcm.obj - 0004:00002208 ??_C@_0BA@OENL@Bad?5pack?5format?$AA@ 0047e208 chcm.obj - 0004:00002218 ??_C@_0BP@HBGD@Can?8t?5read?5the?5given?5midi?5file?$AA@ 0047e218 chcm.obj - 0004:00002238 ??_C@_0CH@DCDA@Can?8t?5read?5given?5file?5as?5a?5packe@ 0047e238 chcm.obj - 0004:00002260 ??_C@_0CB@OGLB@Can?8t?5read?5the?5given?5cursor?5file@ 0047e260 chcm.obj - 0004:00002284 ??_C@_0CA@COAM@Disassembling?5the?5script?5failed?$AA@ 0047e284 chcm.obj - 0004:000022a4 ??_C@_0CB@PHFL@Can?8t?5read?5the?5given?5bitmap?5file@ 0047e2a4 chcm.obj - 0004:000022c8 ??_C@_0BL@NGMF@Invalid?5BITMAP?5declaration?$AA@ 0047e2c8 chcm.obj - 0004:000022e4 ??_C@_0BL@MIBG@CHUNK?5declaration?5expected?$AA@ 0047e2e4 chcm.obj - 0004:00002300 ??_C@_0BK@BJNH@Invalid?5ADOPT?5declaration?$AA@ 0047e300 chcm.obj - 0004:0000231c ??_C@_0BK@LGLK@Script?5compilation?5failed?$AA@ 0047e31c chcm.obj - 0004:00002338 ??_C@_0CJ@BDGC@Invalid?5size?5for?5extra?5string?5ta@ 0047e338 chcm.obj - 0004:00002364 ??_C@_0BP@EPKP@Invalid?5GST?5or?5AST?5declaration?$AA@ 0047e364 chcm.obj - 0004:00002384 ??_C@_0CC@MMMG@Invalid?5size?5for?5fixed?5group?5dat@ 0047e384 chcm.obj - 0004:000023a8 ??_C@_0BN@NAAD@Invalid?5GG?5or?5AG?5declaration?$AA@ 0047e3a8 chcm.obj - 0004:000023c8 ??_C@_0N@GABD@Syntax?5error?$AA@ 0047e3c8 chcm.obj - 0004:000023d8 ??_C@_0CP@FPHB@Can?8t?5have?5a?5free?5item?5in?5a?5gene@ 0047e3d8 chcm.obj - 0004:00002408 ??_C@_0BH@CCDO@Too?5much?5data?5for?5item?$AA@ 0047e408 chcm.obj - 0004:00002420 ??_C@_0BD@NFIH@Variable?5undefined?$AA@ 0047e420 chcm.obj - 0004:00002434 ??_C@_0BO@CKHA@Invalid?5size?5for?5list?5entries?$AA@ 0047e434 chcm.obj - 0004:00002454 ??_C@_0BN@FKEL@Invalid?5GL?5or?5AL?5declaration?$AA@ 0047e454 chcm.obj - 0004:00002474 ??_C@_0BC@MHJG@ENDCHUNK?5expected?$AA@ 0047e474 chcm.obj - 0004:00002488 ??_C@_0BD@PGNF@File?5name?5expected?$AA@ 0047e488 chcm.obj - 0004:0000249c ??_C@_0CB@NFHA@Alignment?5parameter?5out?5of?5range@ 0047e49c chcm.obj - 0004:000024c0 ??_C@_0BL@IICN@Parent?5chunk?5doesn?8t?5exist?$AA@ 0047e4c0 chcm.obj - 0004:000024dc ??_C@_0BL@PEGG@Invalid?5PARENT?5declaration?$AA@ 0047e4dc chcm.obj - 0004:000024f8 ??_C@_0CK@NBM@A?5cycle?5would?5be?5created?5by?5this@ 0047e4f8 chcm.obj - 0004:00002524 ??_C@_0BK@NJFM@Child?5chunk?5doesn?8t?5exist?$AA@ 0047e524 chcm.obj - 0004:00002540 ??_C@_0BK@GHEM@Invalid?5CHILD?5declaration?$AA@ 0047e540 chcm.obj - 0004:0000255c ??_C@_0BM@KDKG@Duplicate?5CHUNK?5declaration?$AA@ 0047e55c chcm.obj - 0004:00002578 ??_C@_0BK@CPAG@Invalid?5CHUNK?5declaration?$AA@ 0047e578 chcm.obj - 0004:00002594 ??_C@_0BP@HFHD@Close?5parenthesis?5?8?$CJ?8?5expected?$AA@ 0047e594 chcm.obj - 0004:000025b4 ??_C@_0BB@MJKM@Unexpected?5Token?$AA@ 0047e5b4 chcm.obj - 0004:000025c8 ??_C@_0BH@JPMM@Numeric?5value?5expected?$AA@ 0047e5c8 chcm.obj - 0004:000025e0 ??_C@_0BA@BJOB@String?5expected?$AA@ 0047e5e0 chcm.obj - 0004:000025f0 ??_C@_0BH@LAAJ@Unexpected?5end?5of?5file?$AA@ 0047e5f0 chcm.obj - 0004:00002608 ??_C@_0BO@OOPL@Open?5parenthesis?5?8?$CI?8?5expected?$AA@ 0047e608 chcm.obj - 0004:00002628 ??_C@_0CB@PIGB@Invalid?5data?5before?5atomic?5chunk@ 0047e628 chcm.obj - 0004:0000264c ??_C@_0BO@BLMN@Number?5not?5in?5range?5for?5SHORT?$AA@ 0047e64c chcm.obj - 0004:0000266c ??_C@_0BN@DKKO@Number?5not?5in?5range?5for?5BYTE?$AA@ 0047e66c chcm.obj - 0004:0000268c ??_C@_0BO@KFJ@Can?8t?5read?5the?5given?5metafile?$AA@ 0047e68c chcm.obj - 0004:000026ac ??_C@_0BK@CDBP@Can?8t?5open?5the?5given?5file?$AA@ 0047e6ac chcm.obj - 0004:000026c8 ??_C@_0BK@HLHF@Internal?5allocation?5error?$AA@ 0047e6c8 chcm.obj - 0004:000026e4 ??_C@_08KPMF@no?5error?$AA@ 0047e6e4 chcm.obj - 0004:000026f0 ??_C@_0BM@MNOP@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?5?3?5?$CFz?$AA@ 0047e6f0 chcm.obj - 0004:0000270c ??_C@_0BH@DNDF@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?$AA@ 0047e70c chcm.obj - 0004:00002724 ??_C@_0BJ@KDB@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?5?3?5?$CFz?$AA@ 0047e724 chcm.obj - 0004:00002740 ??_C@_0BE@IGCO@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?$AA@ 0047e740 chcm.obj - 0004:00002754 ??_C@_0CG@JPEH@legal?5range?5for?5alignment?5is?5?$CI?$CFd@ 0047e754 chcm.obj - 0004:0000277c ??_C@_0BC@DAM@not?5a?5packed?5file?$AA@ 0047e77c chcm.obj - 0004:00002790 ??_C@_0BA@LADO@bad?5packed?5file?$AA@ 0047e790 chcm.obj - 0004:000027a0 ??_C@_08EBMK@Sub?5File?$AA@ 0047e7a0 chcm.obj - 0004:000027ac ??_C@_06GELG@Script?$AA@ 0047e7ac chcm.obj - 0004:000027b4 ??_C@_0N@KDOG@String?5Table?$AA@ 0047e7b4 chcm.obj - 0004:000027c4 ??_C@_05GGEJ@Group?$AA@ 0047e7c4 chcm.obj - 0004:000027cc ??_C@_04DECM@List?$AA@ 0047e7cc chcm.obj - 0004:000027d4 ??_C@_06KIBG@Cursor?$AA@ 0047e7d4 chcm.obj - 0004:000027dc ??_C@_04OHIB@Midi?$AA@ 0047e7dc chcm.obj - 0004:000027e4 ??_C@_07NBFD@Palette?$AA@ 0047e7e4 chcm.obj - 0004:000027ec ??_C@_06KLJN@Bitmap?$AA@ 0047e7ec chcm.obj - 0004:000027f4 ??_C@_08PPBL@Metafile?$AA@ 0047e7f4 chcm.obj - 0004:00002800 ??_C@_0M@CNM@Packed?5File?$AA@ 0047e800 chcm.obj - 0004:0000280c ??_C@_0CG@PBKA@Too?5many?5errors?5?9?5compilation?5ab@ 0047e80c chcm.obj - 0004:00002834 ??_C@_0CB@NPNL@Couldn?8t?5create?5destination?5file@ 0047e834 chcm.obj - 0004:00002858 ??_C@_0P@NCJB@Memory?5failure?$AA@ 0047e858 chcm.obj - 0004:00002868 ??_C@_03BCLC@SET?$AA@ 0047e868 chcm.obj - 0004:0000286c ??_C@_07KDEJ@include?$AA@ 0047e86c chcm.obj - 0004:00002878 ?_szPoundLine@@3QADA 0047e878 lex.obj - 0004:00002880 ?_mpchgrfct@LEXB@@1QAGA 0047e880 lex.obj - 0004:00002980 ?_rgtt@@3QAFA 0047e980 lex.obj - 0004:00002a40 ?_rgttDouble@@3QAFA 0047ea40 lex.obj - 0004:00002af0 ?_rgttEqual@@3QAFA 0047eaf0 lex.obj - 0004:00002ba8 ?_pszOom@@3PADA 0047eba8 scrcom.obj - 0004:00002bac ?_pszSyntax@@3PADA 0047ebac scrcom.obj - 0004:00002bb0 ?_rgszop@@3QAUSZOP@@A 0047ebb0 scrcom.obj - 0004:00002d90 ?_rgarop@@3QAUAROP@@A 0047ed90 scrcom.obj - 0004:00003000 ?_rgpszKey@@3QAPADA 0047f000 scrcom.obj - 0004:00003020 ?_rgtomeExp@@3QAUTOME@@A 0047f020 scrcom.obj - 0004:00003280 ?_rgtomeOp@@3QAUTOME@@A 0047f280 scrcom.obj - 0004:00003344 ??_C@_08HOLA@Continue?$AA@ 0047f344 scrcom.obj - 0004:00003350 ??_C@_05EABD@Break?$AA@ 0047f350 scrcom.obj - 0004:00003358 ??_C@_05NNJC@While?$AA@ 0047f358 scrcom.obj - 0004:00003360 ??_C@_03HPMG@End?$AA@ 0047f360 scrcom.obj - 0004:00003364 ??_C@_04CCEF@Else?$AA@ 0047f364 scrcom.obj - 0004:0000336c ??_C@_04CPFE@Elif?$AA@ 0047f36c scrcom.obj - 0004:00003374 ??_C@_02BAJ@If?$AA@ 0047f374 scrcom.obj - 0004:00003378 ??_C@_04POBJ@Goto?$AA@ 0047f378 scrcom.obj - 0004:00003380 ??_C@_06GDJA@IfGoto?$AA@ 0047f380 scrcom.obj - 0004:00003388 ??_C@_0L@KPKB@CopySubStr?$AA@ 0047f388 scrcom.obj - 0004:00003394 ??_C@_06KDAM@LenStr?$AA@ 0047f394 scrcom.obj - 0004:0000339c ??_C@_0L@ICIJ@ConcatStrs?$AA@ 0047f39c scrcom.obj - 0004:000033a8 ??_C@_08HOLI@StrToNum?$AA@ 0047f3a8 scrcom.obj - 0004:000033b4 ??_C@_08PBFD@NumToStr?$AA@ 0047f3b4 scrcom.obj - 0004:000033c0 ??_C@_09JFKG@ScaleTime?$AA@ 0047f3c0 scrcom.obj - 0004:000033cc ??_C@_09KOLA@MergeStrs?$AA@ 0047f3cc scrcom.obj - 0004:000033d8 ??_C@_07MHIA@NukeStr?$AA@ 0047f3d8 scrcom.obj - 0004:000033e0 ??_C@_07ELLC@MoveStr?$AA@ 0047f3e0 scrcom.obj - 0004:000033e8 ??_C@_07PCEE@CopyStr?$AA@ 0047f3e8 scrcom.obj - 0004:000033f0 ??_C@_05PFIH@Pause?$AA@ 0047f3f0 scrcom.obj - 0004:000033f8 ??_C@_05LKIE@Match?$AA@ 0047f3f8 scrcom.obj - 0004:00003400 ??_C@_08HGHE@NextCard?$AA@ 0047f400 scrcom.obj - 0004:0000340c ??_C@_0M@GGGO@ShuffleList?$AA@ 0047f40c scrcom.obj - 0004:00003418 ??_C@_07MFK@Shuffle?$AA@ 0047f418 scrcom.obj - 0004:00003420 ??_C@_09CAHB@SetReturn?$AA@ 0047f420 scrcom.obj - 0004:0000342c ??_C@_06JCBD@Return?$AA@ 0047f42c scrcom.obj - 0004:00003434 ??_C@_04LKDK@Exit?$AA@ 0047f434 scrcom.obj - 0004:0000343c ??_C@_02DNIN@Go?$AA@ 0047f43c scrcom.obj - 0004:00003440 ??_C@_04HAFI@GoNz?$AA@ 0047f440 scrcom.obj - 0004:00003448 ??_C@_03JNBL@GoZ?$AA@ 0047f448 scrcom.obj - 0004:0000344c ??_C@_04PFCA@GoLe?$AA@ 0047f44c scrcom.obj - 0004:00003454 ??_C@_04HLIL@GoGe?$AA@ 0047f454 scrcom.obj - 0004:0000345c ??_C@_04PGMH@GoLt?$AA@ 0047f45c scrcom.obj - 0004:00003464 ??_C@_04HIGM@GoGt?$AA@ 0047f464 scrcom.obj - 0004:0000346c ??_C@_04NIHF@GoNe?$AA@ 0047f46c scrcom.obj - 0004:00003474 ??_C@_04FFPC@GoEq?$AA@ 0047f474 scrcom.obj - 0004:0000347c ??_C@_06ININ@Select?$AA@ 0047f47c scrcom.obj - 0004:00003484 ??_C@_07KEJC@RndList?$AA@ 0047f484 scrcom.obj - 0004:0000348c ??_C@_07OONJ@PopList?$AA@ 0047f48c scrcom.obj - 0004:00003494 ??_C@_07GBJG@DupList?$AA@ 0047f494 scrcom.obj - 0004:0000349c ??_C@_03JCDI@Rev?$AA@ 0047f49c scrcom.obj - 0004:000034a0 ??_C@_03FPBH@Rot?$AA@ 0047f4a0 scrcom.obj - 0004:000034a4 ??_C@_04BCL@Swap?$AA@ 0047f4a4 scrcom.obj - 0004:000034ac ??_C@_03FBGG@Pop?$AA@ 0047f4ac scrcom.obj - 0004:000034b0 ??_C@_03MKPO@Dup?$AA@ 0047f4b0 scrcom.obj - 0004:000034b4 ??_C@_02LCLA@Le?$AA@ 0047f4b4 scrcom.obj - 0004:000034b8 ??_C@_02DMBL@Ge?$AA@ 0047f4b8 scrcom.obj - 0004:000034bc ??_C@_02LBFH@Lt?$AA@ 0047f4bc scrcom.obj - 0004:000034c0 ??_C@_02DPPM@Gt?$AA@ 0047f4c0 scrcom.obj - 0004:000034c4 ??_C@_02JPOF@Ne?$AA@ 0047f4c4 scrcom.obj - 0004:000034c8 ??_C@_02BCGC@Eq?$AA@ 0047f4c8 scrcom.obj - 0004:000034cc ??_C@_04ENMP@LNot?$AA@ 0047f4cc scrcom.obj - 0004:000034d4 ??_C@_04HPKA@LXor?$AA@ 0047f4d4 scrcom.obj - 0004:000034dc ??_C@_04LILD@BNot?$AA@ 0047f4dc scrcom.obj - 0004:000034e4 ??_C@_04IKNM@BXor?$AA@ 0047f4e4 scrcom.obj - 0004:000034ec ??_C@_03FEFN@BOr?$AA@ 0047f4ec scrcom.obj - 0004:000034f0 ??_C@_04CJLN@BAnd?$AA@ 0047f4f0 scrcom.obj - 0004:000034f8 ??_C@_06NIPH@MulDiv?$AA@ 0047f4f8 scrcom.obj - 0004:00003500 ??_C@_03OAMN@Rnd?$AA@ 0047f500 scrcom.obj - 0004:00003504 ??_C@_03PGJO@Dec?$AA@ 0047f504 scrcom.obj - 0004:00003508 ??_C@_03PCMM@Inc?$AA@ 0047f508 scrcom.obj - 0004:0000350c ??_C@_03GIFK@Neg?$AA@ 0047f50c scrcom.obj - 0004:00003510 ??_C@_03CEPH@Abs?$AA@ 0047f510 scrcom.obj - 0004:00003514 ??_C@_03PJNJ@Mod?$AA@ 0047f514 scrcom.obj - 0004:00003518 ??_C@_03LANL@Div?$AA@ 0047f518 scrcom.obj - 0004:0000351c ??_C@_03FPMJ@Mul?$AA@ 0047f51c scrcom.obj - 0004:00003520 ??_C@_03KJKL@Sub?$AA@ 0047f520 scrcom.obj - 0004:00003524 ??_C@_03KPJN@Add?$AA@ 0047f524 scrcom.obj - 0004:00003528 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 0047f528 scrcom.obj - 0004:00003538 ??_C@_0BA@JIOM@Undefined?5label?$AA@ 0047f538 scrcom.obj - 0004:00003548 ??_C@_0BA@ILFG@duplicate?5label?$AA@ 0047f548 scrcom.obj - 0004:00003558 ??_C@_03PAAF@0?$CFx?$AA@ 0047f558 scrcom.obj - 0004:0000355c ??_C@_0BC@EEMM@Variable?5expected?$AA@ 0047f55c scrcom.obj - 0004:00003570 ??_C@_0N@CDF@Unknown?5name?$AA@ 0047f570 scrcom.obj - 0004:00003580 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 0047f580 scrcom.obj - 0004:00003590 ??_C@_0BA@EGEJ@unexpected?5Elif?$AA@ 0047f590 scrcom.obj - 0004:000035a0 ??_C@_0P@GCAH@unexpected?5End?$AA@ 0047f5a0 scrcom.obj - 0004:000035b0 ??_C@_0BB@NKHK@unexpected?5Break?$AA@ 0047f5b0 scrcom.obj - 0004:000035c4 ??_C@_0BE@DCMB@unexpected?5Continue?$AA@ 0047f5c4 scrcom.obj - 0004:000035d8 ??_C@_0BA@ELFI@unexpected?5Else?$AA@ 0047f5d8 scrcom.obj - 0004:000035e8 ??_C@_0BI@CDHM@Using?5void?5return?5value?$AA@ 0047f5e8 scrcom.obj - 0004:00003600 ??_C@_0BL@ILLH@Wrong?5number?5of?5parameters?$AA@ 0047f600 scrcom.obj - 0004:0000361c ??_C@_0BB@JCMG@unknown?5function?$AA@ 0047f61c scrcom.obj - 0004:00003630 ??_C@_0BK@OOEF@Using?5keyword?5as?5variable?$AA@ 0047f630 scrcom.obj - 0004:0000364c ??_C@_0BJ@ENGF@unexpected?5end?5of?5source?$AA@ 0047f64c scrcom.obj - 0004:00003668 ??_C@_0N@JHFK@?$CFd?5?1?$CK0x?$CFx?$CK?1?5?$AA@ 0047f668 scrcom.obj - 0004:00003678 ??_C@_08DLOH@$L_?$CF04x?5?$AA@ 0047f678 scrcom.obj - 0004:00003684 ??_C@_0BB@HKCC@bad?5op?5in?5script?$AA@ 0047f684 scrcom.obj - 0004:00003698 ??_C@_0L@PCEF@bad?5var?5op?$AA@ 0047f698 scrcom.obj - 0004:000036a4 ??_C@_02IIMK@?$DO?$HO?$AA@ 0047f6a4 scrcom.obj - 0004:000036a8 ??_C@_02KFJP@?$DM?$HO?$AA@ 0047f6a8 scrcom.obj - 0004:000036ac ??_C@_03MCIB@?$DO?3?3?$AA@ 0047f6ac scrcom.obj - 0004:000036b0 ??_C@_03GGKM@?$DM?3?3?$AA@ 0047f6b0 scrcom.obj - 0004:000036b4 ??_C@_02IEHK@?$DO?4?$AA@ 0047f6b4 scrcom.obj - 0004:000036b8 ??_C@_02KJCP@?$DM?4?$AA@ 0047f6b8 scrcom.obj - 0004:000036bc ??_C@_02KKOH@?$CC?5?$AA@ 0047f6bc scrcom.obj - 0004:000036c0 ??_C@_01HMO@?$CC?$AA@ 0047f6c0 scrcom.obj - 0004:000036c4 ??_C@_0BG@OHKF@bad?5internal?5variable?$AA@ 0047f6c4 scrcom.obj - 0004:000036dc ??_C@_0N@MBNM@bad?5variable?$AA@ 0047f6dc scrcom.obj - 0004:000036ec ??_C@_0BE@DJNF@bad?5var?5instruction?$AA@ 0047f6ec scrcom.obj - 0004:00003700 ??_C@_0BA@OBOI@bad?5instruction?$AA@ 0047f700 scrcom.obj - 0004:00003710 ??_C@_08BFCK@?$EAL_?$CF04x?5?$AA@ 0047f710 scrcom.obj - 0004:0000371c ??_C@_0DF@MNKJ@Script?5version?5doesn?8t?5match?5scr@ 0047f71c scrcom.obj - 0004:00003754 ??_C@_0BN@HMNK@No?5version?5numbers?5on?5script?$AA@ 0047f754 scrcom.obj - 0004:00003774 ??_C@_04GBMF@?$FL?$CFd?$FN?$AA@ 0047f774 scrcom.obj - 0004:0000377c ??_C@_05MPAG@_parm?$AA@ 0047f77c screxe.obj - 0004:00003784 ??_C@_06DPCM@_cparm?$AA@ 0047f784 screxe.obj - 0004:0000378c ??_C@_02MECO@?$CFd?$AA@ 0047f78c screxe.obj - 0004:00003790 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 0047f790 rtxt.obj - 0004:00003798 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 0047f798 rtxt.obj - 0004:00003888 ?vluSysVolFake@@3KA 0047f888 sndm.obj - 0004:00003890 ?vcbMaxMemWave@SDAM@@2JA 0047f890 sndam.obj - 0004:000038c8 ??_C@_0P@GIHP@midiStreamStop?$AA@ 0047f8c8 mididev2.obj - 0004:000038d8 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 0047f8d8 mididev2.obj - 0004:000038ec ??_C@_0BA@JHNK@midiStreamPause?$AA@ 0047f8ec mididev2.obj - 0004:000038fc ??_C@_0O@MCEN@midiStreamOut?$AA@ 0047f8fc mididev2.obj - 0004:0000390c ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 0047f90c mididev2.obj - 0004:00003920 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 0047f920 mididev2.obj - 0004:00003934 ??_C@_0BA@PKJI@midiStreamClose?$AA@ 0047f934 mididev2.obj - 0004:00003944 ??_C@_0P@FAGH@midiStreamOpen?$AA@ 0047f944 mididev2.obj - 0004:00003954 ??_C@_09GPGB@WINMM?4DLL?$AA@ 0047f954 mididev2.obj - 0004:00003960 ?_szDlgProp@@3QADA 0047f960 dlgwin.obj - 0004:00003964 ?_szCtlProp@@3QADA 0047f964 ctl.obj - 0004:00003970 ??_C@_09LIFG@SCROLLBAR?$AA@ 0047f970 ctl.obj - 0004:00003980 ?_cmmGVDS@GVDS@@1UCMM@CMH@@A 0047f980 video.obj - 0004:00003988 ?_rgcmmeGVDS@GVDS@@0QAUCMME@CMH@@A 0047f988 video.obj - 0004:00003998 ??_C@_08KPNA@avivideo?$AA@ 0047f998 video.obj - 0004:000039a8 ?_cmmDCD@DCD@@1UCMM@CMH@@A 0047f9a8 chdoc.obj - 0004:000039b0 ?_rgcmmeDCD@DCD@@0QAUCMME@CMH@@A 0047f9b0 chdoc.obj - 0004:00003be0 ?_cmmTSCG@TSCG@@1UCMM@CMH@@A 0047fbe0 chdoc.obj - 0004:00003be8 ?_rgcmmeTSCG@TSCG@@0QAUCMME@CMH@@A 0047fbe8 chdoc.obj - 0004:00003c08 ??_C@_0EI@FAOD@A?5chunk?5with?5this?5CTG?5?$CG?5CNO?5alre@ 0047fc08 chdoc.obj - 0004:00003c50 ??_C@_0L@PLNL@CNO?5is?5bad?$AA@ 0047fc50 chdoc.obj - 0004:00003c5c ??_C@_0L@IPM@CTG?5is?5bad?$AA@ 0047fc5c chdoc.obj - 0004:00003c68 ??_C@_0BL@CGOO@Saving?5chunky?5file?5failed?$CB?$AA@ 0047fc68 chdoc.obj - 0004:00003c84 ??_C@_09GEDE@?3?5?$CFf?5?$CF08x?$AA@ 0047fc84 chdoc.obj - 0004:00003c90 ??_C@_0BE@LMD@Saving?5chunk?5failed?$AA@ 0047fc90 chdoc.obj - 0004:00003ca4 ??_C@_0CM@GOGL@?$CFc?$CFc?$CFc?5?5?$CF3d?5?5?$CF08x?5?5?9?9?9?9?9?9?9?9?5?5?$CFf?5@ 0047fca4 chdoc.obj - 0004:00003cd0 ??_C@_0CD@HNIH@?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?5?$CF08x?5?5?$CFf?5?5?$CF0@ 0047fcd0 chdoc.obj - 0004:00003cf4 ??_C@_0DP@KPKG@LPF?5?5PARS?5?5?5SIZE?5?5?5?5?5?$CICHID?$CJ?5?5?5CT@ 0047fcf4 chdoc.obj - 0004:00003d34 ??_C@_0CG@NOLF@Nuke?5all?5changes?5since?5the?5last?5@ 0047fd34 chdoc.obj - 0004:00003d5c ??_C@_0BF@HLBE@Writing?5chunk?5failed?$AA@ 0047fd5c chdoc.obj - 0004:00003d74 ??_C@_0BM@CDEA@Reading?5picture?5file?5failed?$AA@ 0047fd74 chdoc.obj - 0004:00003d90 ??_C@_0BH@PHKE@MetaFiles?$AA?$CK?4EMF?$DL?$CK?4WMF?$AA?$AA@ 0047fd90 chdoc.obj - 0004:00003da8 ??_C@_0CD@BEKF@The?5Y?5Position?5must?5be?5an?5intege@ 0047fda8 chdoc.obj - 0004:00003dcc ??_C@_0CD@OOFC@The?5X?5Position?5must?5be?5an?5intege@ 0047fdcc chdoc.obj - 0004:00003df0 ??_C@_0DH@IBI@The?5transparent?5pixel?5value?5must@ 0047fdf0 chdoc.obj - 0004:00003e28 ??_C@_0BL@HILP@Reading?5bitmap?5file?5failed?$AA@ 0047fe28 chdoc.obj - 0004:00003e44 ??_C@_0P@LKBG@Bitmaps?$AA?$CK?4BMP?$AA?$AA@ 0047fe44 chdoc.obj - 0004:00003e54 ??_C@_0BE@DONP@Opening?5file?5failed?$AA@ 0047fe54 chdoc.obj - 0004:00003e68 ??_C@_0CB@LEBN@That?5CTG?1CNO?5pair?5already?5exists@ 0047fe68 chdoc.obj - 0004:00003e8c ??_C@_0CP@EHAK@This?5parent?1child?5relationship?5a@ 0047fe8c chdoc.obj - 0004:00003ebc ??_C@_0BC@PPDC@CHID?5value?5is?5bad?$AA@ 0047febc chdoc.obj - 0004:00003ed0 ??_C@_0EJ@HCMM@Adopting?5this?5child?5would?5form?5a@ 0047fed0 chdoc.obj - 0004:00003f1c ??_C@_0BG@LMAO@Child?5ID?5value?5is?5bad?$AA@ 0047ff1c chdoc.obj - 0004:00003f34 ??_C@_0BB@CFDL@Child?5CNO?5is?5bad?$AA@ 0047ff34 chdoc.obj - 0004:00003f48 ??_C@_0BB@NGBM@Child?5CTG?5is?5bad?$AA@ 0047ff48 chdoc.obj - 0004:00003f5c ??_C@_0BC@FBHM@Parent?5CNO?5is?5bad?$AA@ 0047ff5c chdoc.obj - 0004:00003f70 ??_C@_0BC@KCFL@Parent?5CTG?5is?5bad?$AA@ 0047ff70 chdoc.obj - 0004:00003f84 ??_C@_0BH@CAKH@Adopting?5chunk?5failed?4?$AA@ 0047ff84 chdoc.obj - 0004:00003f9c ??_C@_0CE@MOFP@This?5chunk?5doesn?8t?5fit?5that?5form@ 0047ff9c chdoc.obj - 0004:00003fc0 ??_C@_0BI@KJE@Compiling?5script?5failed?$AA@ 0047ffc0 chdoc.obj - 0004:00003fd8 ??_C@_0CI@BCAA@Unpacking?5failed?5?9?5chunk?5may?5be?5@ 0047ffd8 chdoc.obj - 0004:00004000 ??_C@_0DA@PMEC@Packing?5failed?5?9?5chunk?5may?5be?5in@ 00480000 chdoc.obj - 0004:00004030 ??_C@_0BG@BNCH@Running?5script?5failed?$AA@ 00480030 chdoc.obj - 0004:00004048 ??_C@_0BE@KCPJ@Run?5Script?3?5?$CFf?5?$CF08x?$AA@ 00480048 chdoc.obj - 0004:0000405c ??_C@_0BL@DMFJ@Error?5disassembling?5script?$AA@ 0048005c chdoc.obj - 0004:00004078 ??_C@_0CM@EGHE@Error?5reading?5script?5?$CIor?5it?8s?5no@ 00480078 chdoc.obj - 0004:000040a4 ??_C@_0BK@NDB@Couldn?8t?5paste?5everything?$AA@ 004800a4 chdoc.obj - 0004:000040c0 ??_C@_04HGI@?8?$CFf?8?$AA@ 004800c0 chdoc.obj - 0004:000040c8 ??_C@_0P@CJCE@Cloning?5failed?$AA@ 004800c8 chdoc.obj - 0004:000040d8 ??_C@_02JBAA@?$CFf?$AA@ 004800d8 chdoc.obj - 0004:000040e0 ?_cmmAPP@APP@@1UCMM@CMH@@A 004800e0 ched.obj - 0004:000040e8 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 004800e8 ched.obj - 0004:00004138 ??_C@_0CD@DDEL@Ched?5?$CIAnsi?$DL?5Oct?5?52?51995?$DL?520?351?32@ 00480138 ched.obj - 0004:0000415c ??_C@_0CG@DCHB@Text?5Files?$AA?$CK?4txt?$DL?$CK?4cht?$AAAll?5Files@ 0048015c ched.obj - 0004:00004184 ??_C@_0CI@EANG@Chunky?5Files?$AA?$CK?4chk?$DL?$CK?4cfl?$AAAll?5Fil@ 00480184 ched.obj - 0004:000041b0 ?_cmmDCGB@DCGB@@1UCMM@CMH@@A 004801b0 chgrp.obj - 0004:000041b8 ?_rgcmmeDCGB@DCGB@@0QAUCMME@CMH@@A 004801b8 chgrp.obj - 0004:00004218 ??_C@_08FNKM@Bad?5Size?$AA@ 00480218 chgrp.obj - 0004:00004224 ??_C@_02IHLC@?5?5?$AA@ 00480224 chgrp.obj - 0004:00004228 ??_C@_04IPPK@?4?4?4?4?$AA@ 00480228 chgrp.obj - 0004:00004230 ??_C@_05MAAK@?$CF5d?$CJ?5?$AA@ 00480230 chgrp.obj - 0004:00004238 ??_C@_0L@DAKI@?$CF5d?$CJ?5?5FREE?$AA@ 00480238 chgrp.obj - 0004:00004244 ??_C@_03MFGH@?5?5?5?$AA@ 00480244 chgrp.obj - 0004:00004248 ??_C@_07NDP@?5?5?5?5?5?5?5?$AA@ 00480248 chgrp.obj - 0004:00004250 ??_C@_0L@GJJC@?$CF5d?$CJ?5?5?$CC?$CFs?$CC?$AA@ 00480250 chgrp.obj - 0004:0000425c ??_C@_09MMBH@?3?5item?5?$CFd?$AA@ 0048025c chgrp.obj - 0004:00004268 ??_C@_05NKJJ@?$CF08x?5?$AA@ 00480268 chhex.obj - 0004:00004270 ??_C@_04HJKA@?$CF08x?$AA@ 00480270 chhex.obj - 0004:00004278 ?_cmmCHTDD@CHTDD@@1UCMM@CMH@@A 00480278 chtxt.obj - 0004:00004280 ?_rgcmmeCHTDD@CHTDD@@0QAUCMME@CMH@@A 00480280 chtxt.obj - 0004:000042c0 ??_C@_0BL@NNEJ@Can?8t?5open?5new?5chunky?5file?$AA@ 004802c0 chtxt.obj - 0004:000042dc ??_C@_0BN@HJIE@Compiling?5chunky?5file?5failed?$AA@ 004802dc chtxt.obj - 0004:000042fc ??_C@_0BN@IOLL@Can?8t?5create?5new?5chunky?5file?$AA@ 004802fc chtxt.obj - 0004:0000431c ?gpMixer@@3PAUIAMMixer@@A 0048031c audios:factory.obj - 0004:00004480 __fltused 00480480 LIBC:fpinit.obj - 0004:00004484 __ldused 00480484 LIBC:fpinit.obj - 0004:00004488 ___fastflag 00480488 LIBC:fpinit.obj - 0004:0000448c __adjust_fdiv 0048048c LIBC:fpinit.obj - 0004:00004490 __FPinit 00480490 LIBC:fpinit.obj - 0004:00004494 __FPmtinit 00480494 LIBC:fpinit.obj - 0004:00004498 __FPmtterm 00480498 LIBC:fpinit.obj - 0004:0000449c __aenvptr 0048049c LIBC:wincrt0.obj - 0004:000044a0 __wenvptr 004804a0 LIBC:wincrt0.obj - 0004:000044a4 __aexit_rtn 004804a4 LIBC:wincrt0.obj - 0004:000044b8 _errno 004804b8 LIBC:crt0dat.obj - 0004:000044bc __doserrno 004804bc LIBC:crt0dat.obj - 0004:000044c0 __umaskval 004804c0 LIBC:crt0dat.obj - 0004:000044c4 __osver 004804c4 LIBC:crt0dat.obj - 0004:000044c8 __winver 004804c8 LIBC:crt0dat.obj - 0004:000044cc __winmajor 004804cc LIBC:crt0dat.obj - 0004:000044d0 __winminor 004804d0 LIBC:crt0dat.obj - 0004:000044d4 ___argc 004804d4 LIBC:crt0dat.obj - 0004:000044d8 ___argv 004804d8 LIBC:crt0dat.obj - 0004:000044dc ___wargv 004804dc LIBC:crt0dat.obj - 0004:000044e0 __environ 004804e0 LIBC:crt0dat.obj - 0004:000044e4 ___initenv 004804e4 LIBC:crt0dat.obj - 0004:000044e8 __wenviron 004804e8 LIBC:crt0dat.obj - 0004:000044ec ___winitenv 004804ec LIBC:crt0dat.obj - 0004:000044f0 __pgmptr 004804f0 LIBC:crt0dat.obj - 0004:000044f4 __wpgmptr 004804f4 LIBC:crt0dat.obj - 0004:000044f8 __exitflag 004804f8 LIBC:crt0dat.obj - 0004:000044fc __C_Termination_Done 004804fc LIBC:crt0dat.obj - 0004:00004500 __pnhHeap 00480500 LIBC:malloc.obj - 0004:00004568 __cfltcvt_tab 00480568 LIBC:cmiscdat.obj - 0004:00004598 __XcptActTab 00480598 LIBC:winxfltr.obj - 0004:00004610 __First_FPE_Indx 00480610 LIBC:winxfltr.obj - 0004:00004614 __Num_FPE 00480614 LIBC:winxfltr.obj - 0004:00004618 __XcptActTabCount 00480618 LIBC:winxfltr.obj - 0004:0000461c __fpecode 0048061c LIBC:winxfltr.obj - 0004:00004620 __pxcptinfoptrs 00480620 LIBC:winxfltr.obj - 0004:00004628 __mbctype 00480628 LIBC:mbctype.obj - 0004:0000472c ___mbcodepage 0048072c LIBC:mbctype.obj - 0004:00004730 ___mblcid 00480730 LIBC:mbctype.obj - 0004:00004738 ___mbulinfo 00480738 LIBC:mbctype.obj - 0004:00004840 __nhandle 00480840 LIBC:ioinit.obj - 0004:00004848 __osfile 00480848 LIBC:ioinit.obj - 0004:00004888 __osfhnd 00480888 LIBC:ioinit.obj - 0004:00004988 __pipech 00480988 LIBC:ioinit.obj - 0004:000049c8 __heap_desc 004809c8 LIBC:heapinit.obj - 0004:000049dc __heap_resetsize 004809dc LIBC:heapinit.obj - 0004:000049e0 __amblksiz 004809e0 LIBC:heapinit.obj - 0004:000049e4 __heap_regionsize 004809e4 LIBC:heapinit.obj - 0004:000049e8 __heap_maxregsize 004809e8 LIBC:heapinit.obj - 0004:00004c58 __adbgmsg 00480c58 LIBC:crt0msg.obj - 0004:00004c68 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 00480c68 LIBC:hooks.obj - 0004:00004c6c ?__pTerminate@@3P6AXXZA 00480c6c LIBC:hooks.obj - 0004:00004c70 ?__pUnexpected@@3P6AXXZA 00480c70 LIBC:hooks.obj - 0004:00004c74 ?__pInconsistency@@3P6AXXZA 00480c74 LIBC:hooks.obj - 0004:00004c78 __infinity 00480c78 LIBC:87tran.obj - 0004:00004c82 __minfinity 00480c82 LIBC:87tran.obj - 0004:00004c8c __logemax 00480c8c LIBC:87tran.obj - 0004:00004cbc __OP_POWjmptab 00480cbc LIBC:87tran.obj - 0004:00004d0c __OP_LOG10jmptab 00480d0c LIBC:87tran.obj - 0004:00004d2c __OP_LOGjmptab 00480d2c LIBC:87tran.obj - 0004:00004d4c __OP_EXPjmptab 00480d4c LIBC:87tran.obj - 0004:00004d6c __newmode 00480d6c LIBC:_newmode.obj - 0004:00004d70 ___mb_cur_max 00480d70 LIBC:nlsdata1.obj - 0004:00004d78 ___decimal_point 00480d78 LIBC:nlsdata1.obj - 0004:00004d7c ___decimal_point_length 00480d7c LIBC:nlsdata1.obj - 0004:00004d80 __pctype 00480d80 LIBC:ctype.obj - 0004:00004d84 __pwctype 00480d84 LIBC:ctype.obj - 0004:00004d88 __ctype 00480d88 LIBC:ctype.obj - 0004:0000504c __indefinite 0048104c LIBC:87disp.obj - 0004:00005056 __piby2 00481056 LIBC:87disp.obj - 0004:00005068 __cpower 00481068 LIBC:87disp.obj - 0004:00005120 ___lc_handle 00481120 LIBC:nlsdata2.obj - 0004:00005138 ___lc_codepage 00481138 LIBC:nlsdata2.obj - 0004:00005170 __d_inf 00481170 LIBC:util.obj - 0004:00005178 __d_ind 00481178 LIBC:util.obj - 0004:00005180 __d_max 00481180 LIBC:util.obj - 0004:00005188 __d_min 00481188 LIBC:util.obj - 0004:00005190 __d_mzero 00481190 LIBC:util.obj - 0004:00005324 __matherr_flag 00481324 LIBC:matherr.obj - 0004:00005344 ___invalid_mb_chars 00481344 LIBC:setmbval.obj - 0004:00005350 __pow10pos 00481350 LIBC:constpow.obj - 0004:000054b0 __pow10neg 004814b0 LIBC:constpow.obj - 0004:0000560c ___xc_a 0048160c LIBC:crt0init.obj - 0004:00005720 ___xc_z 00481720 LIBC:crt0init.obj - 0004:00005724 ___xi_a 00481724 LIBC:crt0init.obj - 0004:00005730 ___xi_z 00481730 LIBC:crt0init.obj - 0004:00005734 ___xp_a 00481734 LIBC:crt0init.obj - 0004:00005738 ___xp_z 00481738 LIBC:crt0init.obj - 0004:0000573c ___xt_a 0048173c LIBC:crt0init.obj - 0004:00005740 ___xt_z 00481740 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00482000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00482014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00482028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 0048203c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 00482050 winmm:WINMM.dll - 0005:00000064 MSVFW32_IMPORT_DESCRIPTOR 00482064 vfw32:MSVFW32.dll - 0005:00000078 AVIFIL32_IMPORT_DESCRIPTOR 00482078 vfw32:AVIFIL32.dll - 0005:0000008c __IMPORT_DESCRIPTOR_MSACM32 0048208c audios:MSACM32.dll - 0005:000000a0 NULL_IMPORT_DESCRIPTOR 004820a0 kernel32:KERNEL32.dll - 0005:000000b4 __NULL_IMPORT_DESCRIPTOR 004820b4 audios:MSACM32.dll - 0005:00000574 __imp__AVIStreamStart@4 00482574 vfw32:AVIFIL32.dll - 0005:00000578 __imp__AVIStreamGetFrameClose@4 00482578 vfw32:AVIFIL32.dll - 0005:0000057c __imp__AVIFileInfoA@12 0048257c vfw32:AVIFIL32.dll - 0005:00000580 __imp__AVIFileInit@0 00482580 vfw32:AVIFIL32.dll - 0005:00000584 __imp__AVIFileExit@0 00482584 vfw32:AVIFIL32.dll - 0005:00000588 __imp__AVIFileRelease@4 00482588 vfw32:AVIFIL32.dll - 0005:0000058c __imp__AVIStreamRelease@4 0048258c vfw32:AVIFIL32.dll - 0005:00000590 __imp__AVIStreamLength@4 00482590 vfw32:AVIFIL32.dll - 0005:00000594 __imp__AVIStreamGetFrameOpen@8 00482594 vfw32:AVIFIL32.dll - 0005:00000598 __imp__AVIFileGetStream@16 00482598 vfw32:AVIFIL32.dll - 0005:0000059c __imp__AVIFileOpenA@16 0048259c vfw32:AVIFIL32.dll - 0005:000005a0 __imp__AVIStreamSampleToTime@8 004825a0 vfw32:AVIFIL32.dll - 0005:000005a4 __imp__AVIStreamTimeToSample@8 004825a4 vfw32:AVIFIL32.dll - 0005:000005a8 __imp__AVIStreamGetFrame@8 004825a8 vfw32:AVIFIL32.dll - 0005:000005ac \177AVIFIL32_NULL_THUNK_DATA 004825ac vfw32:AVIFIL32.dll - 0005:000005b0 __imp__ExtCreateRegion@12 004825b0 gdi32:GDI32.dll - 0005:000005b4 __imp__SetWinMetaFileBits@16 004825b4 gdi32:GDI32.dll - 0005:000005b8 __imp__GetEnhMetaFileA@4 004825b8 gdi32:GDI32.dll - 0005:000005bc __imp__CreateRectRgn@16 004825bc gdi32:GDI32.dll - 0005:000005c0 __imp__CreateEllipticRgn@16 004825c0 gdi32:GDI32.dll - 0005:000005c4 __imp__GetClipRgn@8 004825c4 gdi32:GDI32.dll - 0005:000005c8 __imp__RealizePalette@4 004825c8 gdi32:GDI32.dll - 0005:000005cc __imp__SelectPalette@12 004825cc gdi32:GDI32.dll - 0005:000005d0 __imp__GdiFlush@0 004825d0 gdi32:GDI32.dll - 0005:000005d4 __imp__SetPaletteEntries@16 004825d4 gdi32:GDI32.dll - 0005:000005d8 __imp__GetSystemPaletteEntries@16 004825d8 gdi32:GDI32.dll - 0005:000005dc __imp__ResizePalette@8 004825dc gdi32:GDI32.dll - 0005:000005e0 __imp__CreatePalette@4 004825e0 gdi32:GDI32.dll - 0005:000005e4 __imp__GetDeviceCaps@8 004825e4 gdi32:GDI32.dll - 0005:000005e8 __imp__AnimatePalette@16 004825e8 gdi32:GDI32.dll - 0005:000005ec __imp__DeleteObject@4 004825ec gdi32:GDI32.dll - 0005:000005f0 __imp__SelectObject@8 004825f0 gdi32:GDI32.dll - 0005:000005f4 __imp__SetPolyFillMode@8 004825f4 gdi32:GDI32.dll - 0005:000005f8 __imp__DeleteDC@4 004825f8 gdi32:GDI32.dll - 0005:000005fc __imp__DeleteEnhMetaFile@4 004825fc gdi32:GDI32.dll - 0005:00000600 __imp__GetStockObject@4 00482600 gdi32:GDI32.dll - 0005:00000604 __imp__CreateDIBSection@24 00482604 gdi32:GDI32.dll - 0005:00000608 __imp__CreateCompatibleDC@4 00482608 gdi32:GDI32.dll - 0005:0000060c __imp__CloseEnhMetaFile@4 0048260c gdi32:GDI32.dll - 0005:00000610 __imp__CombineRgn@16 00482610 gdi32:GDI32.dll - 0005:00000614 __imp__SetDIBColorTable@16 00482614 gdi32:GDI32.dll - 0005:00000618 __imp__FillRgn@12 00482618 gdi32:GDI32.dll - 0005:0000061c __imp__Rectangle@20 0048261c gdi32:GDI32.dll - 0005:00000620 __imp__IntersectClipRect@20 00482620 gdi32:GDI32.dll - 0005:00000624 __imp__SetROP2@8 00482624 gdi32:GDI32.dll - 0005:00000628 __imp__SetBkColor@8 00482628 gdi32:GDI32.dll - 0005:0000062c __imp__TextOutA@20 0048262c gdi32:GDI32.dll - 0005:00000630 __imp__SetTextColor@8 00482630 gdi32:GDI32.dll - 0005:00000634 __imp__GetTextExtentPoint32A@16 00482634 gdi32:GDI32.dll - 0005:00000638 __imp__GetTextMetricsA@8 00482638 gdi32:GDI32.dll - 0005:0000063c __imp__SetBkMode@8 0048263c gdi32:GDI32.dll - 0005:00000640 __imp__CreateBitmap@20 00482640 gdi32:GDI32.dll - 0005:00000644 __imp__CreateSolidBrush@4 00482644 gdi32:GDI32.dll - 0005:00000648 __imp__CreatePatternBrush@4 00482648 gdi32:GDI32.dll - 0005:0000064c __imp__StretchBlt@44 0048264c gdi32:GDI32.dll - 0005:00000650 __imp__SetStretchBltMode@8 00482650 gdi32:GDI32.dll - 0005:00000654 __imp__SetTextAlign@8 00482654 gdi32:GDI32.dll - 0005:00000658 __imp__PlayEnhMetaFile@12 00482658 gdi32:GDI32.dll - 0005:0000065c __imp__SaveDC@4 0048265c gdi32:GDI32.dll - 0005:00000660 __imp__RestoreDC@8 00482660 gdi32:GDI32.dll - 0005:00000664 __imp__GetObjectA@12 00482664 gdi32:GDI32.dll - 0005:00000668 __imp__CreateFontIndirectA@4 00482668 gdi32:GDI32.dll - 0005:0000066c __imp__SelectClipRgn@8 0048266c gdi32:GDI32.dll - 0005:00000670 __imp__OffsetRgn@12 00482670 gdi32:GDI32.dll - 0005:00000674 __imp__GetEnhMetaFileHeader@12 00482674 gdi32:GDI32.dll - 0005:00000678 __imp__EnumFontsA@16 00482678 gdi32:GDI32.dll - 0005:0000067c __imp__CreateRectRgnIndirect@4 0048267c gdi32:GDI32.dll - 0005:00000680 __imp__SetEnhMetaFileBits@8 00482680 gdi32:GDI32.dll - 0005:00000684 __imp__GetEnhMetaFileBits@12 00482684 gdi32:GDI32.dll - 0005:00000688 \177GDI32_NULL_THUNK_DATA 00482688 gdi32:GDI32.dll - 0005:0000068c __imp__GlobalFree@4 0048268c kernel32:KERNEL32.dll - 0005:00000690 __imp__CompareStringA@24 00482690 kernel32:KERNEL32.dll - 0005:00000694 __imp__LeaveCriticalSection@4 00482694 kernel32:KERNEL32.dll - 0005:00000698 __imp__EnterCriticalSection@4 00482698 kernel32:KERNEL32.dll - 0005:0000069c __imp__GlobalReAlloc@12 0048269c kernel32:KERNEL32.dll - 0005:000006a0 __imp__CloseHandle@4 004826a0 kernel32:KERNEL32.dll - 0005:000006a4 __imp__WideCharToMultiByte@32 004826a4 kernel32:KERNEL32.dll - 0005:000006a8 __imp__CreateFileA@28 004826a8 kernel32:KERNEL32.dll - 0005:000006ac __imp__SetFilePointer@16 004826ac kernel32:KERNEL32.dll - 0005:000006b0 __imp__DeleteFileA@4 004826b0 kernel32:KERNEL32.dll - 0005:000006b4 __imp__FlushFileBuffers@4 004826b4 kernel32:KERNEL32.dll - 0005:000006b8 __imp__MultiByteToWideChar@24 004826b8 kernel32:KERNEL32.dll - 0005:000006bc __imp__SetEndOfFile@4 004826bc kernel32:KERNEL32.dll - 0005:000006c0 __imp__ReadFile@20 004826c0 kernel32:KERNEL32.dll - 0005:000006c4 __imp__RaiseException@16 004826c4 kernel32:KERNEL32.dll - 0005:000006c8 __imp__LockResource@4 004826c8 kernel32:KERNEL32.dll - 0005:000006cc __imp__FindResourceA@12 004826cc kernel32:KERNEL32.dll - 0005:000006d0 __imp__LoadResource@8 004826d0 kernel32:KERNEL32.dll - 0005:000006d4 __imp__GetProcAddress@8 004826d4 kernel32:KERNEL32.dll - 0005:000006d8 __imp__GetVersionExA@4 004826d8 kernel32:KERNEL32.dll - 0005:000006dc __imp__LoadLibraryA@4 004826dc kernel32:KERNEL32.dll - 0005:000006e0 __imp__CreateEventA@16 004826e0 kernel32:KERNEL32.dll - 0005:000006e4 __imp__FreeLibrary@4 004826e4 kernel32:KERNEL32.dll - 0005:000006e8 __imp__Sleep@4 004826e8 kernel32:KERNEL32.dll - 0005:000006ec __imp__ResumeThread@4 004826ec kernel32:KERNEL32.dll - 0005:000006f0 __imp__CreateThread@24 004826f0 kernel32:KERNEL32.dll - 0005:000006f4 __imp__SetThreadPriority@8 004826f4 kernel32:KERNEL32.dll - 0005:000006f8 __imp__GetEnvironmentVariableA@12 004826f8 kernel32:KERNEL32.dll - 0005:000006fc __imp__SetEvent@4 004826fc kernel32:KERNEL32.dll - 0005:00000700 __imp__WaitForSingleObject@8 00482700 kernel32:KERNEL32.dll - 0005:00000704 __imp__GlobalUnlock@4 00482704 kernel32:KERNEL32.dll - 0005:00000708 __imp__GlobalSize@4 00482708 kernel32:KERNEL32.dll - 0005:0000070c __imp__GlobalLock@4 0048270c kernel32:KERNEL32.dll - 0005:00000710 __imp__FatalAppExitA@8 00482710 kernel32:KERNEL32.dll - 0005:00000714 __imp__CreateProcessA@40 00482714 kernel32:KERNEL32.dll - 0005:00000718 __imp__OutputDebugStringA@4 00482718 kernel32:KERNEL32.dll - 0005:0000071c __imp__GetCommandLineA@0 0048271c kernel32:KERNEL32.dll - 0005:00000720 __imp__GetCurrentThreadId@0 00482720 kernel32:KERNEL32.dll - 0005:00000724 __imp__GetFileAttributesA@4 00482724 kernel32:KERNEL32.dll - 0005:00000728 __imp__MoveFileA@8 00482728 kernel32:KERNEL32.dll - 0005:0000072c __imp__GetTempPathA@8 0048272c kernel32:KERNEL32.dll - 0005:00000730 __imp__GetLastError@0 00482730 kernel32:KERNEL32.dll - 0005:00000734 __imp__GetDriveTypeA@4 00482734 kernel32:KERNEL32.dll - 0005:00000738 __imp__WriteFile@20 00482738 kernel32:KERNEL32.dll - 0005:0000073c __imp__SearchPathA@24 0048273c kernel32:KERNEL32.dll - 0005:00000740 __imp__GetFullPathNameA@16 00482740 kernel32:KERNEL32.dll - 0005:00000744 __imp__GlobalAlloc@8 00482744 kernel32:KERNEL32.dll - 0005:00000748 __imp__DeleteCriticalSection@4 00482748 kernel32:KERNEL32.dll - 0005:0000074c __imp__ExitProcess@4 0048274c kernel32:KERNEL32.dll - 0005:00000750 __imp__GetVersion@0 00482750 kernel32:KERNEL32.dll - 0005:00000754 __imp__GetEnvironmentStrings@0 00482754 kernel32:KERNEL32.dll - 0005:00000758 __imp__GetStartupInfoA@4 00482758 kernel32:KERNEL32.dll - 0005:0000075c __imp__GetModuleHandleA@4 0048275c kernel32:KERNEL32.dll - 0005:00000760 __imp__RtlUnwind@16 00482760 kernel32:KERNEL32.dll - 0005:00000764 __imp__GetPrivateProfileIntA@16 00482764 kernel32:KERNEL32.dll - 0005:00000768 __imp___hwrite@12 00482768 kernel32:KERNEL32.dll - 0005:0000076c __imp__DebugBreak@0 0048276c kernel32:KERNEL32.dll - 0005:00000770 __imp___hread@12 00482770 kernel32:KERNEL32.dll - 0005:00000774 __imp___llseek@12 00482774 kernel32:KERNEL32.dll - 0005:00000778 __imp___lcreat@8 00482778 kernel32:KERNEL32.dll - 0005:0000077c __imp___lclose@4 0048277c kernel32:KERNEL32.dll - 0005:00000780 __imp___lopen@8 00482780 kernel32:KERNEL32.dll - 0005:00000784 __imp__GlobalHandle@4 00482784 kernel32:KERNEL32.dll - 0005:00000788 __imp__GetFileType@4 00482788 kernel32:KERNEL32.dll - 0005:0000078c __imp__UnhandledExceptionFilter@4 0048278c kernel32:KERNEL32.dll - 0005:00000790 __imp__GetModuleFileNameA@12 00482790 kernel32:KERNEL32.dll - 0005:00000794 __imp__GetACP@0 00482794 kernel32:KERNEL32.dll - 0005:00000798 __imp__GetOEMCP@0 00482798 kernel32:KERNEL32.dll - 0005:0000079c __imp__GetCPInfo@8 0048279c kernel32:KERNEL32.dll - 0005:000007a0 __imp__GetStdHandle@4 004827a0 kernel32:KERNEL32.dll - 0005:000007a4 __imp__IsBadCodePtr@4 004827a4 kernel32:KERNEL32.dll - 0005:000007a8 __imp__VirtualFree@12 004827a8 kernel32:KERNEL32.dll - 0005:000007ac __imp__VirtualAlloc@16 004827ac kernel32:KERNEL32.dll - 0005:000007b0 __imp__InitializeCriticalSection@4 004827b0 kernel32:KERNEL32.dll - 0005:000007b4 __imp__SetUnhandledExceptionFilter@4 004827b4 kernel32:KERNEL32.dll - 0005:000007b8 __imp__IsBadReadPtr@8 004827b8 kernel32:KERNEL32.dll - 0005:000007bc __imp__IsBadWritePtr@8 004827bc kernel32:KERNEL32.dll - 0005:000007c0 \177KERNEL32_NULL_THUNK_DATA 004827c0 kernel32:KERNEL32.dll - 0005:000007c4 __imp__acmStreamUnprepareHeader@12 004827c4 audios:MSACM32.dll - 0005:000007c8 __imp__acmStreamClose@8 004827c8 audios:MSACM32.dll - 0005:000007cc __imp__acmStreamOpen@32 004827cc audios:MSACM32.dll - 0005:000007d0 __imp__acmStreamPrepareHeader@12 004827d0 audios:MSACM32.dll - 0005:000007d4 __imp__acmStreamSize@16 004827d4 audios:MSACM32.dll - 0005:000007d8 __imp__acmFormatSuggest@20 004827d8 audios:MSACM32.dll - 0005:000007dc __imp__acmStreamConvert@12 004827dc audios:MSACM32.dll - 0005:000007e0 \177MSACM32_NULL_THUNK_DATA 004827e0 audios:MSACM32.dll - 0005:000007e4 __imp__DrawDibClose@4 004827e4 vfw32:MSVFW32.dll - 0005:000007e8 __imp__DrawDibOpen@0 004827e8 vfw32:MSVFW32.dll - 0005:000007ec __imp__DrawDibDraw@52 004827ec vfw32:MSVFW32.dll - 0005:000007f0 \177MSVFW32_NULL_THUNK_DATA 004827f0 vfw32:MSVFW32.dll - 0005:000007f4 __imp__InvertRect@8 004827f4 user32:USER32.dll - 0005:000007f8 __imp__FillRect@12 004827f8 user32:USER32.dll - 0005:000007fc __imp__GetWindow@8 004827fc user32:USER32.dll - 0005:00000800 __imp__GetParent@4 00482800 user32:USER32.dll - 0005:00000804 __imp__ScrollDC@28 00482804 user32:USER32.dll - 0005:00000808 __imp__CreateMDIWindowA@40 00482808 user32:USER32.dll - 0005:0000080c __imp__GetActiveWindow@0 0048280c user32:USER32.dll - 0005:00000810 __imp__IsIconic@4 00482810 user32:USER32.dll - 0005:00000814 __imp__BeginPaint@8 00482814 user32:USER32.dll - 0005:00000818 __imp__ReleaseDC@8 00482818 user32:USER32.dll - 0005:0000081c __imp__EndPaint@8 0048281c user32:USER32.dll - 0005:00000820 __imp__GetMessageTime@0 00482820 user32:USER32.dll - 0005:00000824 __imp__MessageBoxA@16 00482824 user32:USER32.dll - 0005:00000828 __imp__DestroyWindow@4 00482828 user32:USER32.dll - 0005:0000082c __imp__SetClipboardViewer@4 0048282c user32:USER32.dll - 0005:00000830 __imp__IsWindow@4 00482830 user32:USER32.dll - 0005:00000834 __imp__GetWindowLongA@8 00482834 user32:USER32.dll - 0005:00000838 __imp__SetWindowLongA@12 00482838 user32:USER32.dll - 0005:0000083c __imp__GetClipboardOwner@0 0048283c user32:USER32.dll - 0005:00000840 __imp__SendMessageA@16 00482840 user32:USER32.dll - 0005:00000844 __imp__DefFrameProcA@20 00482844 user32:USER32.dll - 0005:00000848 __imp__ChangeClipboardChain@8 00482848 user32:USER32.dll - 0005:0000084c __imp__TranslateMDISysAccel@8 0048284c user32:USER32.dll - 0005:00000850 __imp__TranslateAcceleratorA@12 00482850 user32:USER32.dll - 0005:00000854 __imp__TranslateMessage@4 00482854 user32:USER32.dll - 0005:00000858 __imp__DispatchMessageA@4 00482858 user32:USER32.dll - 0005:0000085c __imp__PeekMessageA@20 0048285c user32:USER32.dll - 0005:00000860 __imp__SetWindowTextA@8 00482860 user32:USER32.dll - 0005:00000864 __imp__GetMessageA@16 00482864 user32:USER32.dll - 0005:00000868 __imp__GetDoubleClickTime@0 00482868 user32:USER32.dll - 0005:0000086c __imp__DefMDIChildProcA@16 0048286c user32:USER32.dll - 0005:00000870 __imp__PostQuitMessage@4 00482870 user32:USER32.dll - 0005:00000874 __imp__GetDC@4 00482874 user32:USER32.dll - 0005:00000878 __imp__SetTimer@16 00482878 user32:USER32.dll - 0005:0000087c __imp__LoadAcceleratorsA@8 0048287c user32:USER32.dll - 0005:00000880 __imp__GetClientRect@8 00482880 user32:USER32.dll - 0005:00000884 __imp__GetCursorPos@4 00482884 user32:USER32.dll - 0005:00000888 __imp__GetMenuItemCount@4 00482888 user32:USER32.dll - 0005:0000088c __imp__ClientToScreen@8 0048288c user32:USER32.dll - 0005:00000890 __imp__ScrollWindowEx@32 00482890 user32:USER32.dll - 0005:00000894 __imp__UpdateWindow@4 00482894 user32:USER32.dll - 0005:00000898 __imp__GetUpdateRect@12 00482898 user32:USER32.dll - 0005:0000089c __imp__ValidateRect@8 0048289c user32:USER32.dll - 0005:000008a0 __imp__GetSystemMetrics@4 004828a0 user32:USER32.dll - 0005:000008a4 __imp__CreateCursor@28 004828a4 user32:USER32.dll - 0005:000008a8 __imp__DestroyCursor@4 004828a8 user32:USER32.dll - 0005:000008ac __imp__SetCapture@4 004828ac user32:USER32.dll - 0005:000008b0 __imp__DeleteMenu@12 004828b0 user32:USER32.dll - 0005:000008b4 __imp__InsertMenuA@20 004828b4 user32:USER32.dll - 0005:000008b8 __imp__ModifyMenuA@20 004828b8 user32:USER32.dll - 0005:000008bc __imp__SetScrollPos@16 004828bc user32:USER32.dll - 0005:000008c0 __imp__SetDlgItemTextA@12 004828c0 user32:USER32.dll - 0005:000008c4 __imp__GetDlgItemTextA@16 004828c4 user32:USER32.dll - 0005:000008c8 __imp__CheckDlgButton@12 004828c8 user32:USER32.dll - 0005:000008cc __imp__CheckRadioButton@16 004828cc user32:USER32.dll - 0005:000008d0 __imp__IsDlgButtonChecked@8 004828d0 user32:USER32.dll - 0005:000008d4 __imp__GetDlgItem@8 004828d4 user32:USER32.dll - 0005:000008d8 __imp__SetFocus@4 004828d8 user32:USER32.dll - 0005:000008dc __imp__SendDlgItemMessageA@20 004828dc user32:USER32.dll - 0005:000008e0 __imp__DialogBoxParamA@20 004828e0 user32:USER32.dll - 0005:000008e4 __imp__GetCapture@0 004828e4 user32:USER32.dll - 0005:000008e8 __imp__ReleaseCapture@0 004828e8 user32:USER32.dll - 0005:000008ec __imp__IsZoomed@4 004828ec user32:USER32.dll - 0005:000008f0 __imp__ShowWindow@8 004828f0 user32:USER32.dll - 0005:000008f4 __imp__InvalidateRect@12 004828f4 user32:USER32.dll - 0005:000008f8 __imp__CreateWindowExA@48 004828f8 user32:USER32.dll - 0005:000008fc __imp__LoadMenuA@8 004828fc user32:USER32.dll - 0005:00000900 __imp__SetCursorPos@8 00482900 user32:USER32.dll - 0005:00000904 __imp__ShowCursor@4 00482904 user32:USER32.dll - 0005:00000908 __imp__GetAsyncKeyState@4 00482908 user32:USER32.dll - 0005:0000090c __imp__GetKeyState@4 0048290c user32:USER32.dll - 0005:00000910 __imp__SetCursor@4 00482910 user32:USER32.dll - 0005:00000914 __imp__LoadCursorA@8 00482914 user32:USER32.dll - 0005:00000918 __imp__CharLowerBuffA@8 00482918 user32:USER32.dll - 0005:0000091c __imp__SetMenu@8 0048291c user32:USER32.dll - 0005:00000920 __imp__CharUpperBuffA@8 00482920 user32:USER32.dll - 0005:00000924 __imp__CheckMenuItem@12 00482924 user32:USER32.dll - 0005:00000928 __imp__GetMenuItemID@8 00482928 user32:USER32.dll - 0005:0000092c __imp__GetSubMenu@8 0048292c user32:USER32.dll - 0005:00000930 __imp__EnableMenuItem@12 00482930 user32:USER32.dll - 0005:00000934 __imp__WindowFromPoint@8 00482934 user32:USER32.dll - 0005:00000938 __imp__ScreenToClient@8 00482938 user32:USER32.dll - 0005:0000093c __imp__GetPropA@8 0048293c user32:USER32.dll - 0005:00000940 __imp__SetPropA@12 00482940 user32:USER32.dll - 0005:00000944 __imp__GetWindowRect@8 00482944 user32:USER32.dll - 0005:00000948 __imp__MoveWindow@24 00482948 user32:USER32.dll - 0005:0000094c __imp__RemovePropA@8 0048294c user32:USER32.dll - 0005:00000950 __imp__KillTimer@8 00482950 user32:USER32.dll - 0005:00000954 __imp__EndDialog@8 00482954 user32:USER32.dll - 0005:00000958 __imp__SetClipboardData@8 00482958 user32:USER32.dll - 0005:0000095c __imp__EmptyClipboard@0 0048295c user32:USER32.dll - 0005:00000960 __imp__EnumClipboardFormats@4 00482960 user32:USER32.dll - 0005:00000964 __imp__GetClipboardData@4 00482964 user32:USER32.dll - 0005:00000968 __imp__CloseClipboard@0 00482968 user32:USER32.dll - 0005:0000096c __imp__GetCaretBlinkTime@0 0048296c user32:USER32.dll - 0005:00000970 __imp__GetMenuStringA@20 00482970 user32:USER32.dll - 0005:00000974 __imp__LoadIconA@8 00482974 user32:USER32.dll - 0005:00000978 __imp__RegisterClassA@4 00482978 user32:USER32.dll - 0005:0000097c __imp__OpenClipboard@4 0048297c user32:USER32.dll - 0005:00000980 __imp__SetScrollRange@20 00482980 user32:USER32.dll - 0005:00000984 \177USER32_NULL_THUNK_DATA 00482984 user32:USER32.dll - 0005:00000988 __imp__midiOutPrepareHeader@12 00482988 winmm:WINMM.dll - 0005:0000098c __imp__midiOutUnprepareHeader@12 0048298c winmm:WINMM.dll - 0005:00000990 __imp__midiOutClose@4 00482990 winmm:WINMM.dll - 0005:00000994 __imp__midiOutOpen@20 00482994 winmm:WINMM.dll - 0005:00000998 __imp__mciSendCommandA@16 00482998 winmm:WINMM.dll - 0005:0000099c __imp__midiOutReset@4 0048299c winmm:WINMM.dll - 0005:000009a0 __imp__midiOutShortMsg@8 004829a0 winmm:WINMM.dll - 0005:000009a4 __imp__midiOutSetVolume@8 004829a4 winmm:WINMM.dll - 0005:000009a8 __imp__midiOutGetVolume@8 004829a8 winmm:WINMM.dll - 0005:000009ac __imp__waveOutGetNumDevs@0 004829ac winmm:WINMM.dll - 0005:000009b0 __imp__waveOutGetDevCapsA@12 004829b0 winmm:WINMM.dll - 0005:000009b4 __imp__timeGetTime@0 004829b4 winmm:WINMM.dll - 0005:000009b8 __imp__timeKillEvent@4 004829b8 winmm:WINMM.dll - 0005:000009bc __imp__waveOutPrepareHeader@12 004829bc winmm:WINMM.dll - 0005:000009c0 __imp__waveOutUnprepareHeader@12 004829c0 winmm:WINMM.dll - 0005:000009c4 __imp__waveOutMessage@16 004829c4 winmm:WINMM.dll - 0005:000009c8 __imp__timeSetEvent@20 004829c8 winmm:WINMM.dll - 0005:000009cc __imp__timeGetDevCaps@8 004829cc winmm:WINMM.dll - 0005:000009d0 __imp__waveOutClose@4 004829d0 winmm:WINMM.dll - 0005:000009d4 __imp__waveOutReset@4 004829d4 winmm:WINMM.dll - 0005:000009d8 __imp__waveOutGetID@8 004829d8 winmm:WINMM.dll - 0005:000009dc __imp__waveOutOpen@24 004829dc winmm:WINMM.dll - 0005:000009e0 __imp__waveOutGetVolume@8 004829e0 winmm:WINMM.dll - 0005:000009e4 __imp__waveOutSetVolume@8 004829e4 winmm:WINMM.dll - 0005:000009e8 __imp__waveOutSetPlaybackRate@8 004829e8 winmm:WINMM.dll - 0005:000009ec __imp__waveOutGetErrorTextA@12 004829ec winmm:WINMM.dll - 0005:000009f0 __imp__waveOutWrite@12 004829f0 winmm:WINMM.dll - 0005:000009f4 __imp__waveOutPause@4 004829f4 winmm:WINMM.dll - 0005:000009f8 __imp__waveOutRestart@4 004829f8 winmm:WINMM.dll - 0005:000009fc __imp__waveOutBreakLoop@4 004829fc winmm:WINMM.dll - 0005:00000a00 __imp__waveOutGetPosition@12 00482a00 winmm:WINMM.dll - 0005:00000a04 __imp__waveOutGetPitch@8 00482a04 winmm:WINMM.dll - 0005:00000a08 __imp__waveOutSetPitch@8 00482a08 winmm:WINMM.dll - 0005:00000a0c __imp__waveOutGetPlaybackRate@8 00482a0c winmm:WINMM.dll - 0005:00000a10 \177WINMM_NULL_THUNK_DATA 00482a10 winmm:WINMM.dll - 0005:00000a14 __imp__GetSaveFileNameA@4 00482a14 comdlg32:comdlg32.dll - 0005:00000a18 __imp__GetOpenFileNameA@4 00482a18 comdlg32:comdlg32.dll - 0005:00000a1c \177comdlg32_NULL_THUNK_DATA 00482a1c comdlg32:comdlg32.dll - - entry point at 0001:0006dd60 - - Static symbols - - 0001:0005bc10 _$$1000 0045cc10 f chtxt.obj - 0001:0005be40 _$$7300 0045ce40 f chtxt.obj - 0001:0005be90 _$$8000 0045ce90 f chtxt.obj - 0001:0005b780 _$$1000 0045c780 f chpic.obj - 0001:0005b800 _$$7300 0045c800 f chpic.obj - 0001:0005b850 _$$8000 0045c850 f chpic.obj - 0001:0005b3b0 _$$1000 0045c3b0 f chmbmp.obj - 0001:0005b440 _$$7300 0045c440 f chmbmp.obj - 0001:0005b490 _$$8000 0045c490 f chmbmp.obj - 0001:000593a0 _$$1000 0045a3a0 f chhex.obj - 0001:0005b030 _$$7300 0045c030 f chhex.obj - 0001:0005b040 _$$8000 0045c040 f chhex.obj - 0001:00056d60 _$$1000 00457d60 f chgrp.obj - 0001:00058fe0 _$$8000 00459fe0 f chgrp.obj - 0001:00059070 _$$7300 0045a070 f chgrp.obj - 0001:00056590 _$$7300 00457590 f ched.obj - 0001:00056820 _$$1000 00457820 f ched.obj - 0001:00056a00 _$$8300 00457a00 f ched.obj - 0001:00056a10 _$$9300 00457a10 f ched.obj - 0001:00056a20 _$$a300 00457a20 f ched.obj - 0001:00056a70 _$$8000 00457a70 f ched.obj - 0001:000518f0 _$$1000 004528f0 f chdoc.obj - 0001:00053910 _$$8000 00454910 f chdoc.obj - 0001:000563a0 _$$7300 004573a0 f chdoc.obj - 0001:00050ca0 _$$1000 00451ca0 f mbmp.obj - 0001:000514f0 _$$9200 004524f0 f mbmp.obj - 0001:00051520 _$$8000 00452520 f mbmp.obj - 0001:0004ec40 _$$1000 0044fc40 f text.obj - 0001:00050700 _$$8000 00451700 f text.obj - 0001:00050790 _$$9200 00451790 f text.obj - 0001:0004df80 _$$9200 0044ef80 f video.obj - 0001:0004e170 _$$1000 0044f170 f video.obj - 0001:0004e9e0 _$$a200 0044f9e0 f video.obj - 0001:0004ea70 _$$8000 0044fa70 f video.obj - 0001:0004d7a0 _$$1000 0044e7a0 f ctl.obj - 0001:0004ddc0 _$$9200 0044edc0 f ctl.obj - 0001:0004de30 _$$8000 0044ee30 f ctl.obj - 0001:0004ce20 _$$1000 0044de20 f dlgwin.obj - 0001:0004d450 _$$9200 0044e450 f dlgwin.obj - 0001:0004d460 _$$8000 0044e460 f dlgwin.obj - 0001:0004c6f0 _$$1000 0044d6f0 f dlg.obj - 0001:0004ca40 _$$9200 0044da40 f dlg.obj - 0001:0004ca70 _$$8000 0044da70 f dlg.obj - 0001:0004ba70 _$$1000 0044ca70 f midi.obj - 0001:0004c2b0 _$$9200 0044d2b0 f midi.obj - 0001:0004c300 _$$8000 0044d300 f midi.obj - 0001:00049240 _$$1000 0044a240 f mididev2.obj - 0001:0004ad70 _$$8000 0044bd70 f mididev2.obj - 0001:0004b4c0 _$$9200 0044c4c0 f mididev2.obj - 0001:00048d20 _$$9200 00449d20 f mididev.obj - 0001:00048f30 _$$1000 00449f30 f mididev.obj - 0001:00048f40 _$$a200 00449f40 f mididev.obj - 0001:00048f50 _$$b200 00449f50 f mididev.obj - 0001:00048f60 _$$c200 00449f60 f mididev.obj - 0001:00048fa0 _$$8000 00449fa0 f mididev.obj - 0001:00047c50 _$$1000 00448c50 f sndam.obj - 0001:00048c20 _$$9200 00449c20 f sndam.obj - 0001:00048c90 _$$8000 00449c90 f sndam.obj - 0001:00046820 _$$1000 00447820 f sndm.obj - 0001:00047a90 _$$9200 00448a90 f sndm.obj - 0001:00047b00 _$$8000 00448b00 f sndm.obj - 0001:00041970 _$$1000 00442970 f rtxt2.obj - 0001:00043b10 _$$8000 00444b10 f rtxt2.obj - 0001:00046470 _$$9200 00447470 f rtxt2.obj - 0001:0003d260 _$$1000 0043e260 f rtxt.obj - 0001:0003f0f0 _$$8000 004400f0 f rtxt.obj - 0001:00041750 _$$9200 00442750 f rtxt.obj - 0001:0003c410 _$$1000 0043d410 f groups2.obj - 0001:0003cfb0 _$$8000 0043dfb0 f groups2.obj - 0001:0003a1d0 _$$1000 0043b1d0 f groups.obj - 0001:0003bf50 _$$8000 0043cf50 f groups.obj - 0001:00037c90 _$$1000 00438c90 f screxe.obj - 0001:00039ec0 _$$8000 0043aec0 f screxe.obj - 0001:000348a0 _$$1000 004358a0 f scrcom.obj - 0001:00037900 _$$8000 00438900 f scrcom.obj - 0001:00033700 _$$1000 00434700 f stream.obj - 0001:00034560 _$$8000 00435560 f stream.obj - 0001:00033570 _$$1000 00434570 f chse.obj - 0001:00033580 _$$8000 00434580 f chse.obj - 0001:00032900 _$$1000 00433900 f lex.obj - 0001:00033540 _$$8000 00434540 f lex.obj - 0001:0002f180 _$$1000 00430180 f chcm.obj - 0001:000311c0 _$$8000 004321c0 f chcm.obj - 0001:00032510 _$$d200 00433510 f chcm.obj - 0001:0002e840 _$$9200 0042f840 f clip.obj - 0001:0002ea40 _$$1000 0042fa40 f clip.obj - 0001:0002edc0 _$$a200 0042fdc0 f clip.obj - 0001:0002edd0 _$$b200 0042fdd0 f clip.obj - 0001:0002ede0 _$$c200 0042fde0 f clip.obj - 0001:0002ee20 _$$8000 0042fe20 f clip.obj - 0001:0002bcb0 _$$1000 0042ccb0 f docb.obj - 0001:0002da60 _$$8000 0042ea60 f docb.obj - 0001:0002e6d0 _$$9200 0042f6d0 f docb.obj - 0001:0002b9d0 _$$1000 0042c9d0 f textdoc.obj - 0001:0002b9e0 _$$8000 0042c9e0 f textdoc.obj - 0001:0002ba70 _$$9200 0042ca70 f textdoc.obj - 0001:0002b920 _$$d200 0042c920 f scrcomg.obj - 0001:0002b930 _$$1000 0042c930 f scrcomg.obj - 0001:0002b940 _$$8000 0042c940 f scrcomg.obj - 0001:0002b1d0 _$$1000 0042c1d0 f screxeg.obj - 0001:0002b6d0 _$$d200 0042c6d0 f screxeg.obj - 0001:0002b720 _$$8000 0042c720 f screxeg.obj - 0001:00025b00 _$$1000 00426b00 f kidspace.obj - 0001:000278f0 _$$8000 004288f0 f kidspace.obj - 0001:00029070 _$$d200 0042a070 f kidspace.obj - 0001:00023df0 _$$1000 00424df0 f kidhelp.obj - 0001:00025710 _$$d200 00426710 f kidhelp.obj - 0001:00025720 _$$8000 00426720 f kidhelp.obj - 0001:000231a0 _$$1000 004241a0 f kidworld.obj - 0001:00023800 _$$d200 00424800 f kidworld.obj - 0001:00023850 _$$8000 00424850 f kidworld.obj - 0001:00022c30 _$$1000 00423c30 f picwin.obj - 0001:00022dc0 _$$9200 00423dc0 f picwin.obj - 0001:00022df0 _$$8000 00423df0 f picwin.obj - 0001:00021ae0 _$$1000 00422ae0 f menuwin.obj - 0001:00022750 _$$9200 00423750 f menuwin.obj - 0001:00022780 _$$8000 00423780 f menuwin.obj - 0001:000215e0 _$$1000 004225e0 f gobwin.obj - 0001:00021790 _$$9200 00422790 f gobwin.obj - 0001:000217a0 _$$8000 004227a0 f gobwin.obj - 0001:0001f4c0 _$$1000 004204c0 f gfxwin.obj - 0001:00020f70 _$$8000 00421f70 f gfxwin.obj - 0001:000212e0 _$$a200 004222e0 f gfxwin.obj - 0001:0001dd00 _$$1000 0041ed00 f appbwin.obj - 0001:0001ee90 _$$9200 0041fe90 f appbwin.obj - 0001:0001eea0 _$$8000 0041fea0 f appbwin.obj - 0001:0001d890 _$$1000 0041e890 f pic.obj - 0001:0001d8a0 _$$9200 0041e8a0 f pic.obj - 0001:0001d8b0 _$$8000 0041e8b0 f pic.obj - 0001:0001be90 _$$1000 0041ce90 f region.obj - 0001:0001d680 _$$9200 0041e680 f region.obj - 0001:0001d790 _$$8000 0041e790 f region.obj - 0001:0001b970 _$$1000 0041c970 f mbmpgui.obj - 0001:0001bc20 _$$9200 0041cc20 f mbmpgui.obj - 0001:0001bc30 _$$8000 0041cc30 f mbmpgui.obj - 0001:00019080 _$$1000 0041a080 f gob.obj - 0001:0001b130 _$$8000 0041c130 f gob.obj - 0001:0001b340 _$$9200 0041c340 f gob.obj - 0001:00015cf0 _$$9200 00416cf0 f gfx.obj - 0001:00015ea0 _$$1000 00416ea0 f gfx.obj - 0001:000179c0 _$$8000 004189c0 f gfx.obj - 0001:00018d90 _$$a200 00419d90 f gfx.obj - 0001:00018da0 _$$b200 00419da0 f gfx.obj - 0001:00018db0 _$$c200 00419db0 f gfx.obj - 0001:00015c10 _$$1000 00416c10 f cursor.obj - 0001:00015c30 _$$9200 00416c30 f cursor.obj - 0001:00015c60 _$$8000 00416c60 f cursor.obj - 0001:00014690 _$$1000 00415690 f cmd.obj - 0001:00015790 _$$9200 00416790 f cmd.obj - 0001:000157e0 _$$8000 004167e0 f cmd.obj - 0001:00013f10 _$$9200 00414f10 f clok.obj - 0001:000140c0 _$$1000 004150c0 f clok.obj - 0001:00014380 _$$a200 00415380 f clok.obj - 0001:000143c0 _$$8000 004153c0 f clok.obj - 0001:00012310 _$$1000 00413310 f appb.obj - 0001:00013da0 _$$9200 00414da0 f appb.obj - 0001:00013dd0 _$$8000 00414dd0 f appb.obj - 0001:00011570 _$$8000 00412570 f fniwin.obj - 0001:000118c0 _$$1000 004128c0 f fniwin.obj - 0001:00011ff0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00412ff0 f fniwin.obj - 0001:00012090 _$$9000 00413090 f fniwin.obj - 0001:000120a0 _$$a000 004130a0 f fniwin.obj - 0001:000120b0 _$$b000 004130b0 f fniwin.obj - 0001:00010e00 ?_HfileOpen@@YGPAXPADHK@Z 00411e00 f filewin.obj - 0001:000110d0 _$$1000 004120d0 f filewin.obj - 0001:00011560 _$$8000 00412560 f filewin.obj - 0001:0000f5e0 _$$8000 004105e0 f file.obj - 0001:0000f8a0 _$$1000 004108a0 f file.obj - 0001:0000fb80 ?_FRangeIn@@YGHJJJ@Z 00410b80 f file.obj - 0001:00010d70 _$$9000 00411d70 f file.obj - 0001:00010d80 _$$a000 00411d80 f file.obj - 0001:00010d90 _$$b000 00411d90 f file.obj - 0001:0000ea30 _$$1000 0040fa30 f crf.obj - 0001:0000f590 _$$8000 00410590 f crf.obj - 0001:000085a0 _$$1000 004095a0 f codkauai.obj - 0001:0000e840 _$$8000 0040f840 f codkauai.obj - 0001:00007d50 _$$1000 00408d50 f codec.obj - 0001:00008080 _$$8000 00409080 f codec.obj - 0001:00003320 _$$1000 00404320 f chunk.obj - 0001:00007a30 _$$8000 00408a30 f chunk.obj - 0001:000031d0 _$$8000 004041d0 f memwin.obj - 0001:000031e0 _$$1000 004041e0 f memwin.obj - 0001:00001f80 _$$1000 00402f80 f utilstr.obj - 0001:00003040 _$$8000 00404040 f utilstr.obj - 0001:00001c50 _$$1000 00402c50 f utilrnd.obj - 0001:00001d50 _$$8000 00402d50 f utilrnd.obj - 0001:00001a20 _$$8000 00402a20 f utilmem.obj - 0001:00001a30 _$$1000 00402a30 f utilmem.obj - 0001:00000b10 _$$1000 00401b10 f utilint.obj - 0001:00001810 _$$8000 00402810 f utilint.obj - 0001:00000650 _$$8000 00401650 f utilerro.obj - 0001:00000880 _$$1000 00401880 f utilerro.obj - 0001:00000890 _$$9000 00401890 f utilerro.obj - 0001:000008b0 _$$a000 004018b0 f utilerro.obj - 0001:000008c0 _$$b000 004018c0 f utilerro.obj - 0001:00000510 _$$1000 00401510 f utilcopy.obj - 0001:00000640 _$$8000 00401640 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:00072b29 _siglookup 00473b29 f LIBC:winsig.obj - 0001:00071bfd _strncnt 00472bfd f LIBC:aw_map.obj - 0001:00071a49 __before 00472a49 f LIBC:heapadd.obj - 0001:00071208 _$$1000 00472208 f LIBC:unhandld.obj - 0001:0007126d _$$2000 0047226d f LIBC:unhandld.obj - 0001:00070982 __abstract_cw 00471982 f LIBC:ieee87.obj - 0001:00070a15 __hw_cw 00471a15 f LIBC:ieee87.obj - 0001:000706d5 __heap_new_region 004716d5 f LIBC:heapgrow.obj - 0001:0006f878 ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 00470878 f LIBC:frame.obj - 0001:0006fac6 ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 00470ac6 f LIBC:frame.obj - 0001:0006fb96 ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 00470b96 f LIBC:frame.obj - 0001:0006fcf0 ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 00470cf0 f LIBC:frame.obj - 0001:0006fd7d ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 00470d7d f LIBC:frame.obj - 0001:0006fe85 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 00470e85 f LIBC:frame.obj - 0001:0006feb0 ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 00470eb0 f LIBC:frame.obj - 0001:0007009f ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 0047109f f LIBC:frame.obj - 0001:0007010b ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 0047110b f LIBC:frame.obj - 0001:0006f5e1 __heap_grow_emptylist 004705e1 f LIBC:heapinit.obj - 0001:0006f295 _getSystemCP 00470295 f LIBC:mbctype.obj - 0001:0006f2d0 _CPtoLCID 004702d0 f LIBC:mbctype.obj - 0001:0006f30f _setSBCS 0047030f f LIBC:mbctype.obj - 0001:0006f0cb _parse_cmdline 004700cb f LIBC:stdargv.obj - 0001:0006ef35 @x_ismbbtype@12 0046ff35 f LIBC:ismbbyte.obj - 0001:0006eefa _xcptlookup 0046fefa f LIBC:winxfltr.obj - 0001:0006eacc __cftoe_g 0046facc f LIBC:cvt.obj - 0001:0006ebed __cftof_g 0046fbed f LIBC:cvt.obj - 0001:0006ed09 __shift 0046fd09 f LIBC:cvt.obj - 0001:0006e5d5 __heap_expand_block 0046f5d5 f LIBC:realloc.obj - 0001:0006e440 _doexit 0046f440 f LIBC:crt0dat.obj - 0001:0006e4bf __initterm 0046f4bf f LIBC:crt0dat.obj - 0001:0006e1bc __unwind_handler 0046f1bc f LIBC:exsup.obj - 0001:0006e041 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 0046f041 f LIBC:trnsctrl.obj - 0001:0006e135 ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 0046f135 f LIBC:trnsctrl.obj - -FIXUPS: 6ede3 10 5 30 56 6 15 f 23 fffffe8d fffffff1 ffffffaf 5 a fffff232 -FIXUPS: 6de7f 1e 12 44 13 13 1770 e c 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 -FIXUPS: 6f416 11 11 5d 12 fffffdbb a 18 a ffffff22 fffffddd 4c 53 31 110 -FIXUPS: 6f180 fffffc42 c 5 120d 11 ffffff3f fffffe73 ffffffaa fffffb43 -FIXUPS: 6f8b1 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d 36 47 11 2c 16 13 -FIXUPS: 6fd2a fffffa90 9a ffffff10 fffffee9 2d 1935 1d 13 1a a a f f 1a -FIXUPS: 71052 e d 7 10 5a 12 fffff5cb d 35 25 ffffff1f fffffcff b8 78 44 -FIXUPS: 704c4 fffffbb0 12 10 19 fffffef2 15 938 25 3c 114 26 28 a 3b 2e -FIXUPS: 70b76 5c 46 6d 1a 21 14 39 23 15 21 e 77 4f 9 c 17 af 13 1d 1f -FIXUPS: 70f77 17 735 75 d 96 d c 32 fffffe42 fffffdcc 3d 49 132 31 fffffc33 -FIXUPS: 71262 1d 5 55 3c 7 2f b2 15 fffffd88 72 fffff5bf 2b 2c 2b 1b 34 -FIXUPS: 708e2 181a 1a fffffb77 17 67 e 177 1a 1d 12 1f 20 d f 13 17 13 -FIXUPS: 71f93 5b 16 22 f 22 f fffffafe 64 ffffff44 ffffff99 fffffe9a 17 -FIXUPS: 7197a fffffd3d 16a1 75 c 1e 77 c fffffd3a 38 fffffc2c 10 10 18 -FIXUPS: 728f1 3e 24 d 41 34 fffffd6a 78 10 18 e fffffe1b a4 22 fffffbfd -FIXUPS: 722d5 a ffffff59 1b 1b 1f37 1f fffffa5d 1c fffffddd 44 fffffdf1 -FIXUPS: 73869 65 1d 2b c 10 c fffff8cd c5 92 10e 49 c6 4f fffff8ed 14 18 -FIXUPS: 72eff b0 9 e 9 29 4d fffffc51 fffeaa5a 77 106 50 39 42 71 49 5b -FIXUPS: 5dafd 21 35 25 82 8b 19 134 8 1c 10 10 166a3 47 3e 110 fffffcdf -FIXUPS: 73d85 133 ef 21 26 10d fffe9d3e 31 1c 10 5f c1 17f ffffeec5 58 -FIXUPS: 5d0d3 17 10 2d 17 25 31 18 62 68 61 20 37 d 44 32 77 34 34 80 b -FIXUPS: 5d557 180 1754 8 78 8 78 8 78 8 13 10 10 10 10 10 10 10 10 10 10 -FIXUPS: 5f076 10 10 10 10 10 10 10 10 10 10 10 10 fffff511 41 3e 41 3c -FIXUPS: 5e77d 3c 37 41 3c 37 41 3c 3a 3c 37 41 3c 3a 3c 3a 3b 8 3b b2 8 -FIXUPS: 5ecab 8 78 8 78 8 17d4 d b 3f 16 fffffd92 10 5f ffffff50 fffffd4c -FIXUPS: 600ba 3d fffffb7e 98 63 7 53 62 20 7 fffff534 18c 244 178 fffff885 -FIXUPS: 5f1e1 5c fffff2b3 5f 3e 3e 3e 252d 10 5f 4d 21 7b 3c 104 fffffb98 -FIXUPS: 60976 5f 62 d b 42 18 fffffd7d 10 5f 59 11 4b fffffd2c 10 5f 6f -FIXUPS: 607cd fffffc9c 31 1c 10 5f cb5 bd 129 3a 16 86 13e 4e 21 29 30 -FIXUPS: 616d4 21 ea d 61 74 26 1f b b0 47 5e 10 10 fffff3d0 10 5f 3d 71 -FIXUPS: 60f82 19c 17af 1c 20 4e 1f 10 10 fffff3f3 31 68 35 d7 c 1a d6 1a -FIXUPS: 62096 2c ad 160 2f 5d 1d 22 bc 10 10 fffff691 23f 10 10 fffff443 -FIXUPS: 62c1b 3a 4d 1b9 4e 43 98 2a 17b fc 46 15b 10 10 fffff0b3 36 e8 -FIXUPS: 626cf 3e 1c 22 20 c 26 21 1c 16 1d 21 1c 48 16 f30 b 46 a d 14 -FIXUPS: 6385e d e e d 1a 65 e d 1b f 1d 86 e 32 c 23 42 49 81 10 10 ffffeef1 -FIXUPS: 62ba6 a 5e 1930 48 18 18 2a 257 11f 10 10 fffff243 36 88 231 c4 -FIXUPS: 63f7e f8 10 10 fffff373 31 59 74 11d 20 9 d0 d a 29 d a 23 37da -FIXUPS: 66f83 f 40 d 2a f 2f 4b 6 37 4b 13 4a 1d 6 6 32 ffffd815 22a a5 -FIXUPS: 64cc6 10 fffff3e3 36 98 da bc 1a 133 4a 4c 1d91 26 80 6 c 9b 3a -FIXUPS: 66424 9b 11 16 11 112 103 34 14 fe 39 29 10 120 13 43 10f 163 d -FIXUPS: 66cc4 1e 1f0 3a c 27 ffffea39 10 24 10 43 16e 4c 34 2a 33 10 46 -FIXUPS: 65cd0 18 72 3a 51 3f 4c 44 51 3f 51 3f 5b 40 8f b 38 61 31 57 fffff0e5 -FIXUPS: 65320 8 25 18 8 20 18 8 1d 30 15 11 20 18 10 3b 1d4 25 33 d 11 -FIXUPS: 65718 55 10 a7 29 10 ad 21 10 1d fffff74d 11 c 17 6 6 d 29 6 d -FIXUPS: 65134 6 6 18 d 7 8 15 19 e 6 17 6 15 27 40 f 10 15 8 23 4f 1fa4 -FIXUPS: 672a8 2c 4c 28 28 28 25 7a d 21 fa e 32 e 25 2d e 32 e 25 fffffb8e -FIXUPS: 67221 ffffdc3c 173 11 18 13 21 f 2c 13 7fc3 1d 38 1b b9 23 17 3e -FIXUPS: 6d336 10 10 ffffe9c1 fffff8d0 e6 2f 33 6a 25 94 ffffe997 16 45 -FIXUPS: 6a2a7 70 3f 54 10 f 6d 59b 310 7f0 12c6 12 24 14 f 1b 25 13 27 -FIXUPS: 6c887 d 16 17 d d 5d 19 39 26 1a 19 b 7 d 18 33 1e9 7 70 19 122 -FIXUPS: 6cf2c fffff40d d1 3f 22 3b 24 1e 14 d 22 10 23 16 14 d 25 10 20 -FIXUPS: 6c5f8 22 13 1d 33 d 20 29 18 20 1c 16 1f 34 fff949e1 fffffea4 11 -FIXUPS: 1053 c a 1e a 1f 1e 18 b 5 5 17 30 6c775 d0 254 65 a2 11 96 fffff64e -FIXUPS: 6bed9 2c1 3a 21 73 67 22 32 fff96177 22a b 28 27 44 29 86 21 ffffee24 -FIXUPS: 1675 11 1e 5c 1b6 b 5 5 21 fffffb52 10 7 8a 1c 146 fffffb64 11 -FIXUPS: 12a4 30 5d 23 d 1734 11 1e 12 10 53 35 1b 28 19 21 e 2f 5e 1e d -FIXUPS: 2ceb 15 26 2b 21 12 d fffffb4d ef 54 ffffeef6 221 19 3cf 428 69 -FIXUPS: 31e1 29 15 3a 32 79 16 2e 2c 35 9c 40 50 20 3f 36 61 f 25b 6d 243 -FIXUPS: 3bb3 63 49 f 2e 73 1a0 3c 156 ffffea14 11 5ef0 13 16 5b 57 13 d -FIXUPS: 8a64 d ffffb5fb a8 6c 51 ffffebe1 32 26 9 54 4b 94 11 4e 33 36 -FIXUPS: 301d 1d f 27 22 4b 1e 28 5200 9 2c 1e 1f 15 21 10 1a 19 27 64 15 -FIXUPS: 84c3 30 9 10 9 46 1c 60 20 1e 38 3d 3b 26 67 82 c8 47 49 fffff633 -FIXUPS: 7f68 2e 12 9 1f 1c 36 1f 27 2a 2e 11 17 1e 1f 22 16 f 15 18 18 -FIXUPS: 81cf f 44 28 1d 13 25 41 9 9 fffff625 18 13 1d 3a 33 18 1c 3a 1b -FIXUPS: 7a8c 1c 2e 1c 34 1c 2d 3d 3d 19 21 a3 33 2a 28 d4 94 2a f 25 9 -FIXUPS: 7f52 fffff52e 1b 2b 29 29 20 1a 3a 18 27 f c 10 22 2e 25 2c 3c -FIXUPS: 76e4 1b 3a 30 2c 34 1f 10 3f 1b 20 18 10 5d fffff721 13 23 28 1c -FIXUPS: 70c6 1c 2b 11 d 24 17 1f 17 17 35 1a 1c 13 1e c d 23 47 25 13 3b -FIXUPS: 738d 37 2e 2c 2f fffff7b5 2a 1a 1b 46 20 1b 1d 13 2d 3d 11 3a f -FIXUPS: 6df5 4e 2b 16 d 19 14 16 17 23 22 29 2a 16 10 16 16 11 fffff896 -FIXUPS: 6886 33 11 24 d 24 13 9 11 7 9 15 22 26 1c 17 1f b 1b 18 f 3f 32 -FIXUPS: 6ae7 17 11 6b 13 2c 1e 17 fffff80d 16 a0 75 3d 45 1a 2c d 17 d -FIXUPS: 6639 10 9 15 12 9 39 2a 10 b 36 11 1d 1a 15 a 50 2c 20 25 8 fffff7ec -FIXUPS: 605d 15 24 11 1a 35 1e 35 13 37 33 1c 2b 11 d 1c 9 d 19 b 1c 11 -FIXUPS: 62bb 1c b d 19 b 23 5d 4e fffff74b 11 40 29 48 f 20 32 21 2c 16 -FIXUPS: 5cd3 34 b 2f 32 17 42 36 9 e 27 17 3f e 4f 40 1d 17 16 7b 19 fffff5b9 -FIXUPS: 55f4 39 1e 47 6 2c 30 24 52 a 9 19 75 60 28 6 38 34 17 23 1f 1c -FIXUPS: 5994 27 39 2a 9c 3c f b 9 fffff59c 18 16 13 26 30 2c 16 16 13 39 -FIXUPS: 521a 4c d cc 48 51 54 52 6 70 11 1c c 18 19 15 10 b f 12 b fffff68c -FIXUPS: 4c62 37 13 37 35 18 14 9 14 f b 1a 2d 8 1c 22 78 1f 4d 13 13 26 -FIXUPS: 4f5f 17 2e 17 3a 2b 27 17 41 fffff697 48 2b 1a 42 5d 1d 1a 18 25 -FIXUPS: 48f8 11 18 2b 16 b 15 19 17 47 3e 23 4d 16 11 18 18 16 5a 34 40 -FIXUPS: 4c01 fffff70d 2c 14 2c 9 b d e b f a6 2b 7 b 2c 10 d d 101 c 10 -FIXUPS: 4624 11 e 13 15 41 26 7 a f 2d 8b85 259d ffff9254 11 2f f 7a 60 -FIXUPS: 8c3d 20 b1 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d ffffb164 11 -FIXUPS: 4245 11 1e 12 500e 3f 1b 1c 55 11 d 81 6a 12 78 12 33 27 21 3994 -FIXUPS: cf2e 1c 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 2db1 3e d 2c 1c -FIXUPS: 100dd 3e 1c 16 46 1c 3a 16 41 16 1d 3e b8 165 78 4b 13 d 13 d ffff8af4 -FIXUPS: 90d6 52 8 28 8 11c 6912 f 31 18 d 27 16 40 9 1e d 2c 37 d 32 33 -FIXUPS: fda0 76 14 27 38 25 26 d 27 16 16 1b d 4a 5f 14 1bec 7b 5f 2f 8 -FIXUPS: 11d33 10 43 b 5 5 9 d 13 d 13 d ffffda74 11 2f 20 11 2f 11 1e 6e -FIXUPS: f9b9 68 3c 58 54 70 1bc9 3f 1a 12 11 b 39 f 1e 19 d b 79 23 11 -FIXUPS: 11918 c9 e 12 35 1c 38 18 57 e 12 29 25 2c 16 26 15 fffff5d8 18 -FIXUPS: 11214 40 1f 38 45 3e 10 17 61 14 15 20 d3 57 6 20 2b 3f 6 20 2b -FIXUPS: 11655 6 1d 18 1f 2d 27 6 1c fffff4ef 2e 4b 36 17 27 34 1c 17 8 -FIXUPS: 10d7a a 28 11 15 8 8 48 125 29 57 23 23 13 1d 18 40 1f 17 31 50 -FIXUPS: 11194 fffff564 21 25 14 23 14 14 25 11 18 3d 1c d 14 57 26 7 a -FIXUPS: 10902 2a 3e 64 a9 64 1d 15 12 b 8 29 69 2e 174f 9 a 11 9 d 14 11 -FIXUPS: 123b0 1b 1d f 1f 1d 14 1f 10 10 4e 10 10 1e 10 3f ffffe0a4 11 2f -FIXUPS: 10656 3e 12 1e 12 25bd 13 3a b 1e 2d 1a 154 76 1d 68 34 7 70 28 -FIXUPS: 130a6 b 5 5 17 ffffedec 23 89 9e 5e a1 aa c a4 c 86 c 3d9 5e b -FIXUPS: 12757 e 7 a8 d 2c 19 20 12 5d 26 11 24 1e 11 b 1e 82 10 28 e 64 -FIXUPS: 12bab c 24 b 4d 1a 22 1d5d 46 52 48 2c 2e b 36 2a 86 19 11 2c 8d -FIXUPS: 14d55 4c 5 e d ffffd7b5 1f 11 2e 15 29 7 56 b 17 a 7 2f 1a21 14 -FIXUPS: 14118 7c 10 37 2e 1d e 72 d 12 2d 5 c 9 8b 2d 2d 37 2a 3c b1 4a -FIXUPS: 145f2 75 1e 1c 31 37 1c6 6e fffff340 20 28 43 22 29 27 9 14 24 -FIXUPS: 13dd5 18 14 18 17 2b 19 29 20 38 21 14 40 1e 2a 1e 12 11 10 b 69 -FIXUPS: 1408b fffff5bd 48 f 47 40 6e f 2d 2c 2d 36 4a 2a 28 29 1c 2c 3a -FIXUPS: 13a91 5 7 8a 50 d 13 c 9 26 a 55 1b 13 15b1 12 6c 3f b4 5 5 9 d -FIXUPS: 130f5 11 20 3b 5d 28 f 2d a5 168 f 10 41 f 10 14 11 44 62 25 14 -FIXUPS: 1361a b 2c01 59 c 29 74 c2 1b 13 92 d2 100 13 3c c6 5 e d 13 d -FIXUPS: 14ee5 11 33 8b 40 3b 3c 84 9 2f 2b 33 24 7b9 1c 11 5f 3b 3f 18 -FIXUPS: 15ae1 13 26 2e 3c 1c 11 d4 c 35 14 20 1f 18 23 53 7 c9 75 cd 3e -FIXUPS: 1604e 110 32 43 860 6 12 6 21 f d 2f c 5a 21 73 7a 5 e d ffffe824 -FIXUPS: 15486 2f 11 7e 200 47 9f b 46 13 2d f 22 18 1f 3ba0 1d 22 15 364 -FIXUPS: 198f4 2b 63 1d 22 15 32b 79 1c 10 b 5 5 5 14 d 13 d ffffca94 11 -FIXUPS: 168da 42 51 18 2d 59 18 2587 15 19 1b 1f 15 d 1e 21 5 d 26 7a 33 -FIXUPS: 19177 1a 1a 26 1a 44 e 63 e 47 14 12 5b e 5a 22 21 3e fffff440 -FIXUPS: 188c9 20 6c 19 24 14 5 ec 1c 5 f 26 b 19 4c 1c 5 1c 15 4c 10 5c -FIXUPS: 18c74 37 70 3f 16 34 91 46 11e fffff1d6 1d 5 1a 13 1c 5 87 ae 18 -FIXUPS: 18378 11 f 32 16 e 48 5 bc 32 60 22 d0 1d 38 1e 116 5 3b 27 1a -FIXUPS: 1889a fffff2e9 c 1b 5 57 64 23 50 a 7e 69 22 e 17 1d 5 18 74 17 -FIXUPS: 17efb 5 79 26 50 a 32 56 1f 64 a 1d 1d fffff4d1 c c 61 5d d 11 -FIXUPS: 17757 1b 33 7a 20 31 27 25 13 c 2d 15 1e 49 9 1b 12 a 29 62 35 -FIXUPS: 17a95 a5 17 1d fffff4c3 e c e c 2d 31 1c 22 22 1f 40 1c 23 31 1f -FIXUPS: 1722d 27 2b e 23 12 88 15 18 10 50 f e0 17 c3 c 4aee 23 2c 1e 15 -FIXUPS: 1c1f4 8e 39 86 5 7e d 21 ffffa904 1f 11 2f 11 2f 11 af 1f 1a 27 -FIXUPS: 16ed2 8 1a 1a c 79 1a 78 4b3a a 18 d 1d c 19 7a 21 c 19 3b c 19 -FIXUPS: 1bdb6 a4 1f 25 13 19 1f 51 33 1e 15 b 1b 15 22 21 2f 2f fffff139 -FIXUPS: 1b1f4 38 44 59 22 66 41 16 49 17 48 18 4a 22 fc 27 82 100 13 2d -FIXUPS: 1b7cc c5 b c 18 3a 109 4c 54 23 84 fffff1a7 14 12 1c 19 77 1f 74 -FIXUPS: 1ae9f 3e c a 13 1f 13 1b 18 5f 4b e 13 10 16 13 11 59 11 12 20 -FIXUPS: 1b12e 14 2c fffff5b0 14 1b 30 e 2b 14 f e 12 19 e 12 e 67 25 21 -FIXUPS: 1a919 14 25 5f 47 f0 40 15 c 13 18 63 4b 54 19 fffff386 28 1e c -FIXUPS: 1a0b9 87 2d 1e 1b 9 10 15 32 1d 24 80 12 3c 76 7c 12 34 37 84 4a -FIXUPS: 1a5a4 2d 10 d 59 91 15 3f88 c 5 e d ba 19 d ffffdcc0 5e 21 e 22 -FIXUPS: 1c505 43 9 97 329 43 89 1b e 185 96 5 ffffd1ff 11 2f 11 be 38 e -FIXUPS: 1e018 16 b 9 22 9 9 2f 1c 64 b8 9 13 2d 9 2c 9 2d 9 10 31 2d 66 -FIXUPS: 1e387 49 30 d 2d 152 4e 3e 9 fffff532 b 9 2e 1c 64 cb 31 9 31 9 -FIXUPS: 1dd69 31 2d 66 19 4a 9 23 3f f 16 b 9 22 9 9 29 9 20 25 2a fffff73c -FIXUPS: 1d761 5c 30 f 28 9 2b 6d 2b 9 36 9 b 27 29 66 19 4e 9 25 10 9 9 -FIXUPS: 1dad1 d 9 1f 9 9 16 f fffff9bd 1b d 9 26 10 17 10 9 9 16 f 16 b -FIXUPS: 1d5e9 27 9 2e 9 18 a 10 9 9 1e d 9 16 f 16 b 9 118a 5 ffffe42f -FIXUPS: 1cce6 2f 11 4e 16 83 d 53 3e 4e d0 b 17 39 28 27 50 15 25 1c 3b -FIXUPS: 1d178 72 16a d 60 5b 27 ae 1c17 286 86 34 24 33 52 4f df 33 11 -FIXUPS: 1f689 2d 2d 2d 2a 30 11c 86 98 f 23 28 1f 34 9e a5 55 2a8 5 ffffe99f -FIXUPS: 1e846 3523 17 33 39 c 2f f 5c 18 37 26 126 39 28 35 40 6c 10 e -FIXUPS: 221b7 17 73 32 c 62 5 e d ffffc673 d 292 10e 263c 23 47 32 43 91 -FIXUPS: 214e8 25 19f 101 12e a d 6b e 41 42 2f 70 a d 51 e 41 38 37 7 83 -FIXUPS: 21cb3 15 e 3c ffffecf0 e 5d 13 31 56 e 75 60 28 aa 55 11 25 4d -FIXUPS: 20dc4 bc 34 16 44 c 5f 72 ee 64 58 64 17 6f 30 3d 46 107c 18 23 -FIXUPS: 223fa 19 dc 158 53 36 28 99 5 ffffd84b 1f 4f 139 8f 14 9f 210 17 -FIXUPS: 20503 d f0 d 1d 3f 1a1 f a7 73 6 288b 3b 4b 5c 22 2d 2f 12 10 a -FIXUPS: 23369 a c d 10 6a 17f 8 1e 1f 14 3e 5c 26 b3 5 e d ffffebb3 1a -FIXUPS: 22353 19 1a21 34 5 e d ffffea64 11 3e d 54 116 b3 78 1c 2a 20 b -FIXUPS: 22bbf 49 76 4c 6a 1c 58 42 11b 4c 75 1c d8 4c 7a 1686 e d 13 d -FIXUPS: 23814 46 12 17 1a 1c 51 a 15 10 94 17 5a b 15 44 2a 16 1f b 142 -FIXUPS: 23c6f 23 1c 57 42 1f 4f0 8 25 d 9 9 31 b b b 8 7 68 6b 20 16 34 -FIXUPS: 24484 42 49 100 b 14 49 2f a 24 14 a5 15 45 1a 1ff3 d 13 d 16 ffffd65e -FIXUPS: 23eb5 11 2f 11 29 23 18 2b 27 9 2b 1d 9 d 18 38 9b 7 ea 7 9 c f -FIXUPS: 24236 f 8 208a 40 26 e 34 11 e 79 e f 13 e 12 e c 2f 12 17 57 a -FIXUPS: 2654a 79 1b e 2e 3d ba 5 9e d 13 d fffff1da a 38 1c 44 2d 2a 2c -FIXUPS: 25c98 2d bc cd 11e 2a 2b 6c 67 a 10 80 2b 2e 8e a 19 18 f e 21 -FIXUPS: 262a0 f e fffff1de 13 1e 1d 4c 2d 23 1f 1c 15 89 2f 1a 74 1e 20 -FIXUPS: 2576e 1a 11 12 11 1a 3b 34 23 2c 1c 36 18 14 31 2d fffff61b 23 -FIXUPS: 24ff2 1e 1b f 16 1f 15 d 19 15 45 24 48 14 b 5e 60 1d 43 26 4c -FIXUPS: 25338 d 23 15 d 12 60 61 1d fffff58c 28 67 17 14 73 28 13 24 3f -FIXUPS: 24be2 13 10 18 f 20 28 2e 2b 13 68 41 48 4d 1f 53 c 34 15 15 6f -FIXUPS: 24f77 4b89 125 d 6e 16 24 11 13 1d 1a 45 52 1b 28a 5 1c 12 d 13 -FIXUPS: 2a0d1 13 d 13 d 21 ffffa803 11 2f 11 2f 11 2f 4b6b 1f f 37 12 1f -FIXUPS: 29605 46 12 1f f 37 12 1f f 30 12 1f f 95 18 c 19 e1 14 af 11 29 -FIXUPS: 29a33 69 37 18 fffff3aa 9 f 5e 19 56 34 2e 1d 11 13 18 f 1d 189 -FIXUPS: 291f7 13 d 17 1c 10 47 15 15 d0 40 4e 40 35 3a 18 5e ffffef91 29 -FIXUPS: 28524 88 26 20 87 a2 2a0 2b 154 1b 11 13 18 f 20 11 11 d 2b 17 -FIXUPS: 28c3e 10 3c 13 3b 2d 90 19 16 d ffffe8cc 6d 13 2d e ee 16 26 16 -FIXUPS: 278bc 16 f7 37 1d 21 39 5f c8 2f6 24 13b 4e 23 d c b 75 fe dd fd -FIXUPS: 283e2 18 ffffe65f c0 132 15a 60 4e 3b 50 88 4d fa 9f 16 87 21 49 -FIXUPS: 272a1 6b 13 e 3d 16 1d 5e 24 79 71 16 3c 44 a6 45 4e5c 21 e 8a -FIXUPS: 2c5c1 d d 13 d 5f 1f 1b 3d 5 29 d a8 d ffffa0e4 11 2f 11 2f 11 -FIXUPS: 26965 11 2f 11 2f 11 49 a 5325 11 2a 11 29 11 2a 11 2a 11 2a 11 -FIXUPS: 2bebc 3d 21 11 2a 11 2e 11 2a 11 225 43 26 11 12 13 1b 18e 31 50 -FIXUPS: 2b991 20 1c 9 39 c 9 9 24 9 5b d 9 19 9 67 d 3b d c 48 28 11 2a -FIXUPS: 2bc71 2a 11 2a 11 11 3b 11 fffff827 9 49 11 c 30 9 34 30 9 34 9 -FIXUPS: 2b6c6 63 11 c 2a 41 11 c 9 39 c 9 69 11 2a 11 c 5f 11 2a fffff715 -FIXUPS: 2b09e 31 19 21 11 c 45 5a 11 c 45 5a 11 c 5a 11 c 9 47 9 9 b 53 -FIXUPS: 2b421 42 39 30 9 34 45 11 fffff869 9 39 c 8 10 9 9 b 6b 11 c 9 -FIXUPS: 2af03 9 46 9 b 9 b 1a 10 13 30 b 9 c b 9 c 51 11 fffff885 19 9 -FIXUPS: 2a94a 22 e 18 6 b 8 97 25 11 c 44 9 62 9 5b 9 5b 9 58 2d 28 21 -FIXUPS: 2ace3 c 3f 28 55 11 fffff865 c 3b 11 c 2f 11 c 2a 9 e 2b 11 f 26 -FIXUPS: 2a78c 28 f 1a f 18 21 11 2a 11 e f 21 b b b 32 fffff9d4 11 9 9 -FIXUPS: 2a344 49 9 9 36 2a c 9 9 36 b e c 9 9 36 1d 1b e 26 11 c 30 3b -FIXUPS: 2a5c5 c 13 2c 50e1 21 12 d 13 d 13 d 13 d 13 d 13 d ffffd2a0 5 -FIXUPS: 2c7e5 11 29 c 2a 18 42 2a 48 5 ffffd84f 11 2c 40 20 24 4fce 13 -FIXUPS: 2f243 b 15 10 3d 13 42 36 2e 1d a3 2e 1a b 1d 10 1f 15 16 d 26 -FIXUPS: 2f55a 42 12 14 e2 24 9 5 e fffff51b 142 6c 59 10 f 29 17 39 7 10 -FIXUPS: 2ef19 25 7 1c 23 14 5 1c 10 24 5 1c 10 26 35 4d 7 14 19 af 3d fffff300 -FIXUPS: 2e53a 2f c 56 2e 2d 1a 2f 15 49 15 18 3b 4b 15 9 3c 36 25 10 2d -FIXUPS: 2e98d 17 38 33 e 12 10 bf df 19 fffff17b 13 b2 92 104 22 9 22 2e -FIXUPS: 2e096 7 18 2d 37 1d 3c 37 22 12 19 41 73 15 3a 54 58 1c 47 3d 21 -FIXUPS: 2e484 23 fffff022 2c b 10 17 35 50 5b 30 39 19 5b 2a 43 69 37 b3 -FIXUPS: 2d9bd 15 58 44 d 1e 16 27 2e 20 13 10 ca 13 107 fffff205 1d ce -FIXUPS: 2d024 4a 3f 2b 58 b0 1e 59 4a 30 1a 2f 19 1f 18 10 e 6 19 1e 12 -FIXUPS: 2d3ee c e 12 2b 34 27 14 2937 5 22 ffffcc93 11 2f 11 2f 11 2f 11 -FIXUPS: 2cba5 11 2f 11 2f 11 2f 11 2f 21 91 2a 2c 5d 9 4e b 7 f 45 56 65f4 -FIXUPS: 33516 e d 13 d 13 d ffffc2a4 11 20 e 2b 25 7 19 56 79 13 f 79 7f -FIXUPS: 2fae8 21 d3 1b 12d 16 42 5a b 5 302a 14 1c f 20 a1 65 20 18 a 1a -FIXUPS: 32fdf e 6a 22 72 26 42 3c 5c 12 19 39 35 20 19 13 14 51 40 24 ed -FIXUPS: 32a30 19 9 19 a e a 94 13 3b f 16 f 18 f 25 f 13 2b 1b 3b 65 34 -FIXUPS: 32d3e 11 9 9 9 2d 18 d 2b fffff9e2 1b b 1a 1c 1a 13 23 10 9 11 -FIXUPS: 328a9 11 19 11 19 11 19 11 19 11 19 11 a 11 a 13 c 19 13 13 f fffffa30 -FIXUPS: 32459 11 12 30 29 16 1f 1f 14 18 20 21 16 1d 1b 1a b 18 d 15 1a -FIXUPS: 3268f d 23 13 31 12 11 25 14 33 fffff8c5 1a 9 2e 4c 38 f 13 9 27 -FIXUPS: 32191 9 9 b9 20 11 9 22 f 14 2a 14 9 1e 14 30 9 36 e 16 9 21 fffff874 -FIXUPS: 31c96 17 9 2e 3e 3b f 29 9 9 42 10 13 50 c 22 15 11 4b 23 11 33 -FIXUPS: 31f89 11 23 f 22 f 14 1e 15 fffff8d8 3e 3b f 29 9 9 2c c 13 3f -FIXUPS: 31a79 1a e 1a 40 23 e 22 14 14 2b e 14 19 d 24 1a c 26 f 11 fffff805 -FIXUPS: 314e5 a 34 e e 1c 25 20 a 56 fb c 13 3f e 18 e 1a 31 23 e 22 14 -FIXUPS: 31853 2c 11 14 19 11 17 9 fffff626 9 27 9 34 41 2a f 19 16 9 9 -FIXUPS: 31068 9 3f 1d 21 6b 31 14 15f 16 4e 2c 2b a 38 2c 11 1b 18 b fffff6c8 -FIXUPS: 30b71 11 37 2a f 19 16 9 9 31 9 1c 13 f 52 21 3e 2a f 1c 19 9 9 -FIXUPS: 30e06 9 40 43 2c f 28 16 fffff8ab 2b 13 2b f 1e f 27 f 15 40 1c -FIXUPS: 3093f 22 11 f 2b 11 21 1c 9 14 13 19 19 f 34 e 1c 2b 13 2d fffff841 -FIXUPS: 303f3 34 24 d 14 66 9 42 1b 37 1c 24 f d 9 43 e 24 20 f 29 1d f -FIXUPS: 306f1 13 2b f 1e f 27 f 3a41 1a 6f 6e 7f 57 88 3a 29 a7 13 d ffffb964 -FIXUPS: 2fed6 2f 11 1e 8 3d 2b 58 42 45 4a 5f 2a 1d 30 12 ac 12 18 3851 -FIXUPS: 33b10 3d 12 42 8f e 2d 2c 3d 12 1c 93 44 36 61 52 2b 57 54 16 24 -FIXUPS: 33ff7 e 48 38 4a 2e 2c 44 36 e 132c 10 d 11 1a e 14 1a 13 d 13 -FIXUPS: 355a1 ffffefe0 fffff014 11 b6 26 1d 5d 29 b4 5d 5a 2c 25 51 58 -FIXUPS: 339cf 19 42 3d 1e 1677 16 46 23 2f 40 16 24 e 1f 1b 28 8 c a 36 -FIXUPS: 35315 29 12 10 32 11 b 24 4a 1a e 2d 16 16 13 11 fffff7bb 1a 18 -FIXUPS: 34cc4 27 1b 2a 44 1b 1a 1b 16 28 2a 43 23 26 18 1d 11 31 1f 16 -FIXUPS: 34f86 1c 38 21 1b 5c 21 2b 16 fffff522 1e 2a 39 22 3c 13 3e 30 -FIXUPS: 3477d 18 26 14 25 49 6b 7d 28 2e 2c 2c 42 54 2d e 2d 3b 57 2a 24 -FIXUPS: 34bff 34 36e3 23 33 2b 62 42 9 8a 12 12 12 12 12 f 1c 1c 46 35 -FIXUPS: 3861d 1a ee 182 2e 16 16 13 d 13 d ffffbc64 11 2f 3868 21 67 9 -FIXUPS: 37f31 11 c 33 11 c 33 c 31 1f 60 15 16 63 1e 1c 4c 26 37 12 a 1e -FIXUPS: 38246 22 12 a f 71 fffff63d 34 1d c 1d f c d 10 d 26 13 46 3a 3a -FIXUPS: 37b11 15 11 5d 11 aa c 17 37 9 82 1e 38 12 35 3a 36 fffff7f5 34 -FIXUPS: 3767d 27 18 b 6 c c 13 e c 13 4f 11 c b 34 3b c c 1e 16 b 16 b -FIXUPS: 378af 22 a c 3a b fffff994 c f f c 8 f 8 1e 11 36 12 1e 16 20 11 -FIXUPS: 37405 ac 11 c b 1f b 1f b 32 47 1e 18 36 c c fffffa25 22 c c 11 -FIXUPS: 370bb 17 17 d 18 22 12 44 1a f 10 c c 12 10 c 8 1a f 10 c c 12 -FIXUPS: 37280 c 8 19 fffff66c 11 5d 11 12 19 3b 11 11 88 11 2d 11 44 11 -FIXUPS: 36b5d 28 27 27 43 2c9 48 1d 2e 21 c 11 17 1c 11 1c 22 fffff253 -FIXUPS: 362b5 25 bd 3d 16 11 49 a 35 f5 97 91 56 1b 1f 11 16 11 11 27 23 -FIXUPS: 367ef 30 45 29 11 12 11 e 16 26 fffff318 3c 2e 4a 44 1f 2e 12 40 -FIXUPS: 35dd0 34 30 4d 3b 24 28 4e f 41 f 26 2e 9 3e 43 b 65 25 11 2f d9 -FIXUPS: 3624e fffff388 1e 38 1e 37 10 10 11 a 7 10 11 24 13 55 c9 2a 6d -FIXUPS: 35924 11 26 15 18 27 12 4b f5 31 54 1c 3d 22 4f17 15 d 9 21 f d -FIXUPS: 3ab89 18 23 53 1e 16 1e 28 26 34 1d 29 38 18 1e 31 12 6c 59 1a -FIXUPS: 3aed4 d 13 d ffffa6c4 511d ba 18 1b 15 15 1f 2e 2a 18 18 2a 1c -FIXUPS: 3a8f6 d d 24 6 f 2b 4e 1c 14 36 17 16 d 1e d 28 2e 16 fffff766 -FIXUPS: 3a282 18 f 30 c d e d 6c 15 4e f 12 51 1d 18 26 d 37 1b 20 30 d -FIXUPS: 3a5a6 25 d 28 d 29 14 d fffff893 28 e 17 9 10 2c 25 10 9 34 1f -FIXUPS: 3a024 20 15 25 d 28 d 3c 1f 18 1b 15 25 d 28 d 33 15 23 d fffff8d1 -FIXUPS: 39b1c 9 9 a 9 9 a a 9 9 9 b b 33 1d d 144 d b 43 c 39 27 19 40 -FIXUPS: 39e62 d 14 11 34 c fffff998 16 9 d d d d c 9 c 10 33 11 14 14 17 -FIXUPS: 399d4 1d 8 10 14 d c 10 16 c 25 34 20 c 9 11 fffff928 23 32 16 -FIXUPS: 394cf 37 16 2a 16 29 16 2c 16 2c 16 2c 16 2c 36 22 21 16 9 2d 3c -FIXUPS: 397af 2c d 21 16 1f d fffff74c f 57 41 1d 2b 22 10 1e 11 83 19 -FIXUPS: 391a6 16 23 16 24 1e 24 1e 24 32 31 31 16 25 16 25 16 23 16 23 -FIXUPS: 3d031 ffffb934 11 2f 11 2f 11 1e 58 7e 11 c6 14 32 12 15 bd 50 -FIXUPS: 38d62 81 19 10 6 3a f e 24 f e 74 31 12 3c36 1d 58 13 42 44 17 -FIXUPS: 3cce1 13 14 2f 2d 11 24 93 5d 18 96 1a 13 d 13 d 13 d 13 d 13 d -FIXUPS: 3d004 d 13 fffff657 13 2d 1f aa 18 70 20 14 1d 12 19 29 a 1b e -FIXUPS: 3c8fb 30 19 14 2f 2d 11 24 41 14 b 51 31 2e 18 6d fffff21a dc 98 -FIXUPS: 3bf41 1e 3e 23 12 1d 43 b8 42 b9 74 e b5 11 37 31 77 11 40 1f 18 -FIXUPS: 3c4af 17 7 42 40 55 23 85 fffff0da 2c 10 1b 3c 41 45 34 14 31 38 -FIXUPS: 3b913 26 35 45 4d 19 10 1e 32 d 1c 37 77 2a 28 10 1b 40 6f 99 4d -FIXUPS: 3b35b a b 28 a b 4c 22 a b 24 a b 2b 5b 6 15 b 17 c 22 1f 10 1e -FIXUPS: 3b5d9 d 1c 48 14 b 20 80 28fb d ffffcf14 11 2f 11 2f 11 2f 11 2f -FIXUPS: 3b036 2f 11 2f 11 28 9 32 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 -FIXUPS: 3db07 2d 11 24 48 38 30 1c 19 60 31 23 10 34 36 8 1f 11 14 2f 2d -FIXUPS: 3de35 24 7a 55 d 66 16 13 d 13 d fffff40b 7c 63 27 20 1c 18 2b -FIXUPS: 3d596 21 f 10 62 55 30 4d 3e 4c 19 aa af 3f 20 45 18 59 1a 12 26 -FIXUPS: 3da77 4d 14 4c10 10 21 38 5 e d 13 d 13 d 13 d ffffa884 11 2f 11 -FIXUPS: 3d0d5 11 1e e3 7 11 1f 13 e 21 12 1d 43 101 14 4c15 d 1a 6 85 20 -FIXUPS: 420e7 2c 11 2f 15 1f 60 61 2d d 70 80 7a 7 d 3a 10 2c 7f 1a 20 -FIXUPS: 4254a 20 61 1b e7 fffff422 2f 47 27 2c 57 1a e 15 19 1f 10 8d 18 -FIXUPS: 41d6c 18 1b 1d 24 8a 1c 17 17 17 20 20 9 24 42 1e 2d 19 fffff08f -FIXUPS: 41194 85 2b 15 28 84 b0 21 41 5d 21 67 1e 71 31 2c 3e c3 26 25 -FIXUPS: 4175a 8d f 52 52 3d 62 21 98 20 5a ffffedf9 15a 14 12 11 9 23 49 -FIXUPS: 40aa5 c 6a 54 35 8f 20 12 1f 12 ba 2c 15 1d 6f c 16 e 10 10 9 e -FIXUPS: 41013 28 fffff1ba 15 2c a4 37 49 15 53 c 24 c 3f 54 4c 54 40 35 -FIXUPS: 40635 20 1b 51 1b 20 1c 28 30 3d 19 1e 3e 17 1f fffff329 f 33 5c -FIXUPS: 3fc58 16 1b 9 1d 19 9 26 4c 3f 41 1c 5b 43 18 75 5d 44 31 2f 28 -FIXUPS: 4003c 15 30 28 c e7 4b fffff56a 2f 15 15 15 35 3b e 10 17 e 17 -FIXUPS: 3f8a2 48 26 21 3c 13 2d d e 86 9 46 b 1e 1e 9 20 16 2f 1c fffff7d0 -FIXUPS: 3f34e d 24 11 13 1d 24 56 10 2f 31 1d 20 25 2f 23 12 39 20 19 3a -FIXUPS: 3f622 17 20 1c 4c 13 11 2a 15 15 fffff585 7b 31 79 c5 1e 12 e 10 -FIXUPS: 3eefd 21 1f 15 73 1b 36 13 2b 1e a f 83 89 15 f 17 35 38 68 17 -FIXUPS: 3f2db 30 fffff268 30 3f 1c 31 59 10 4c 1b 4e a7 a5 34 1f 1e 5b -FIXUPS: 3e970 16 27 4f 43 22 74 2b 24 23 32 29 20 48 43 37 880d 13 d 13 -FIXUPS: 474d1 ffff6b64 11 2f 11 2f 11 2f 11 2f 11 2f 11 2f 11 28 64 31 -FIXUPS: 3e2ee 15 b 57 28 1d c3 20 2a 46 8732 84 b 20 47 9b 81 21 f 33 50 -FIXUPS: 46f1c f 21 41 26 5f c a 1c 200 25 45 c a 18 f 19 18 155 5 e fffff181 -FIXUPS: 4663e 3f 15 69 30 26 27 4e 31 f 15 22 4e 7a 12 e f 12 17 37 44 -FIXUPS: 46a0b 28 2c 2b 72 50 56 30 2f 15 fffff0fd 30 26 1c 85 db 24 db -FIXUPS: 45ff9 2a a 43 15 70 34 15 1f 19 61 26 29 9f 8 3f 5d 23 40 5b ab -FIXUPS: 46502 2f 19 fffff1f5 1f e 47 25 15 2f 21 f 2f 1d f 1b 1d 15 f6 -FIXUPS: 459fb 1d 4c 1c 55 2b 7f 18 1d 20 96 18 23 1d 21 19 fffff38c 33 -FIXUPS: 450da 33 13 2e 6f 29 47 66 29 1c 1b b 5b 1a 1c 105 38 1f 5f 69 -FIXUPS: 45607 f 20 28 2b 1d 21 14 1a 2b ffffee1f 38 9f e 4b 96 45 29 125 -FIXUPS: 448ad 2b 62 13 22 66 24 3a 2b 27 129 18 40 6b 4a 27 22 4d b8 b -FIXUPS: 44e7e 3d 128 ffffe905 18 16 6d 85 4f 13 15 1f a7 17f 1f 1f3 f 9a -FIXUPS: 43fa6 20 2f a9 9e b 56 2f 55 b 9c 4f d7 b a1 4f 49 ffffeadd 3f -FIXUPS: 43077 d 32 31 d 26 f 5c 61 3a 11 35 26 92 3f 4a ed 28 26 ac 3e -FIXUPS: 43617 ed 28 15 28 17 2a dc 1c fffff233 6a f 11 11 b 13 3d 24 11 -FIXUPS: 42c11 b 39 79 f 3f 87 34 22 32 20 27 23 b 1c 15 32 1a e 25 8e 1b -FIXUPS: 48611 23 62 2a 61 1f 66 2e 6d 1f 66 28 63 70 71 25 3a 5 e d 13 -FIXUPS: 48ad1 13 d ffff9d82 13 72 26 15 7c c8 22 537f 50 5d 1a 23 16 185 -FIXUPS: 480d1 a 3a 15 47 a 3a 15 47 a 3a 15 46 a 5b 15 5d 9 b 49 2d 21 -FIXUPS: 4846a 1e 60 fffff07e 2f 11 3e 44 51 b 11 23 14 34 86 2c 50 3e 36 -FIXUPS: 478ff 5e 44 4d 43 80 55 4b 55 4b 55 4a 65 57 40 40 188c 9f 65 5 -FIXUPS: 49779 5b 33 16 27 47 1f b 42 2f 42 46 6a a9 78 35 b3 5 e d 13 d -FIXUPS: 49c74 d ffffd874 20 11 2f 1b74 c 11 b 9 1a 50 51 1e b 1a c 10 14 -FIXUPS: 4927a b 1d 11e 21 13 12 2e 25 11 b 31 3f 98 15 30 39 47 fffff738 -FIXUPS: 48e06 6 23 22 68 4a 41 7 e f 29 7 f 6 c e 18 c 8 14 e 13 e 25 9 -FIXUPS: 49076 b 18 10 d d 34d1 d ffffd785 1f 11 1e 55 31 20 2b 1a 1c 43 -FIXUPS: 49ec9 8 16 b 54 10 b 5 5 5 14 d ffffec14 11 2f 11 2f 11 37 33f4 -FIXUPS: 4c08b 17 9e 1e 7 56 b 9 e6 9d 1a 29 2c 1c 1f 21 40 24 40 5 e d -FIXUPS: 4c4f4 d 13 d 13 d 21 12 d fffff08b 8 1f 5b ab 15 13 16a 1b e0 7 -FIXUPS: 4ba28 b 47 8b 5c 22 46 9f 7d 26 10e 23 38 31 42 7 38 4e 2a 9b 15 -FIXUPS: 4b0ad d7 c 15 10 c 6e 31 10 16 3f 1f 15 1c 4e 32 46 40 39 47 11 -FIXUPS: 4b4be 2f 31 1c 12 12 12 f 12 42 17 fffff630 30 2e c 3c 16 1a 43 -FIXUPS: 4ad4b 19 8 49 46 12 26 23 28 1a 2a a 31 39 6 2d 12 13 1d 11 10 -FIXUPS: 4b06c 16 1f fffff4ee 10 c 3d 14 18 3d 24 15 b 3f a2 2f 2b 15 47 -FIXUPS: 4a831 18 5e 3d c5 b 11 26 17 b 12 7b 32 8c a3 11 fffff58a 2f 11 -FIXUPS: 4a1f4 3b 2b b 2f d 44 14 10 b 10 3b 1d 20 a 42 19 b e 47 9 10 16 -FIXUPS: 4a4b6 10 3d 14 b 3c 2b65 1c 2e 26 1c 56 c b 32 10 17 8 4e 22 18 -FIXUPS: 4d2b1 5 e d 13 d ffffcd54 11 2f 11 2f 11 2f 11 2f 11 2f 2980 15 -FIXUPS: 4cb25 18 11 c 37 13 14 16 1e 17 30 39 17 3a b 2b 15 b 28 25 84 -FIXUPS: 4ce17 8e 27 1b 4e 5c 28 1f 84 844 11 17 a 8 d 25 26 2c 2d 4d 3e -FIXUPS: 4da2d 14 5 e d ffffeb64 11 2f 11 1e 31 43 2d f 4d 3c 8b 61 27b -FIXUPS: 4cafe 9b7 15 f d 90 28 f 18 f 14 f f a 1f 11 12 17 20 17 15 6a -FIXUPS: 4d774 39 2f a d 27 8 12 28 2e a 652 1c 50 e e 6f 1e 40 67 1e 16 -FIXUPS: 4e19d 56 5e 40 40 43 26 12 25 40 60 40 5 ffffef4f 11 22 21 10 21 -FIXUPS: 4d492 19 14be 1e 6d 3b c0 1b6 b 37 7 12 27 10 61 29 5 e d 13 d -FIXUPS: 4ee14 d ffffed73 163 2c 58 15 6 19 e8 d 1d 15 1a8f 3e 3e 5 5 11 -FIXUPS: 4fa09 1b d 13 d ffffeab4 11 2f 11 2f 11 23 47 84 e 8c 10 14 e 30 -FIXUPS: 4e838 1b 34 2a 5b 1c a8e 37 9 c 57 3a 38 3e c 20 1a 46 20 17 21 -FIXUPS: 4f610 27 43 44 28 28 1d 30 28 62 18 77 15 39 33 c 44 fffff5d0 11 -FIXUPS: 4ef55 11 41 8 1a 20 b 1e d d d 5 d 44 f 3c 16 16 1a f 10 4e 9 c -FIXUPS: 4f282 12 99 d 34 31 1d70 10 1f 5a 4d 23 9d 2b 2d 27 31 94 24 10 -FIXUPS: 51574 23 2e 7b 17 27 18 56 a5 5 e d 13 d 13 d ffffd6e4 11 1a0c -FIXUPS: 50977 3a 25 2e 30 2a 31 32 124 43 a 5c a5 6 1f 6 19 6 54 6 1d 6 -FIXUPS: 50e0f 6 29 99 31 15 144 19 6d ffffedcf 22 b 10 12 b 154 7 b0 55 -FIXUPS: 50191 147 b e4 29 77 11 22 1b 9b 16 12 b 72 20 5a 128 57 7e 21 -FIXUPS: 508a4 1d 19a4 17 63 28 3c 1e 49 22 78 a 2e 1e 57 5 e d ffffd614 -FIXUPS: 4fb36 2f 11 2f 11 3c 68 65 41 26 d 4d 14 55 b8 1d50 52 17 7c 65 -FIXUPS: 51d47 2f 19 14 2e 79 d 26 16 22 29 10 1c 5d 95 20 d 8 50 1d 1d -FIXUPS: 521ce 1a d 11 19 2a 4fd2 9 33 30 24 30 23 2f 28 4c 5 e d 13 d 13 -FIXUPS: 57401 13 d 19 7 d 16 d ffffa3a4 11 28 7 10 d ac 1f7 51d8 5f cd -FIXUPS: 56e25 16 20 27 1e 10 d 65 12 1d 23 12 17 b 64 e 25 22 e 76 3d 13 -FIXUPS: 5717e 1d 1d a 9 26 9 fffff6d6 15 1a 1a 9 11 8 9 8 11 7 62 2d 3a -FIXUPS: 56a4a 3d 9 34 12 23 14 41 10 7 50 6d 12 3c 1c 18 22 e fffff7d2 -FIXUPS: 564d3 24 3b 15 61 37 26 17 f 15 2b 7 23 18 55 7 42 12 e 23 d 17 -FIXUPS: 567c6 14 4f 11 c 27 18 25 19 fffff74a 14 5d 57 24 2d 7 52 17 48 -FIXUPS: 561e8 13 46 f 1c c2 11 b b 12 e 9 11 22 27 9 11 23 31 14 9 11 fffff5c6 -FIXUPS: 55a41 33 22 55 f d9 b2 1a 1a 34 d4 13 b 11 14 32 31 a 1b 1e 20 -FIXUPS: 55f05 25 10 7 9 11 35 25 2e 21 fffff5d6 21 25 1d 2c 33 2c 25 6e -FIXUPS: 55784 12 13 12 d 13 8 15 18 15 18 1b 47 1f 2a 18 13 7 3e 2c 1e -FIXUPS: 559e7 3f fffff70a 9 28 17 7 40 28 25 30 2a 8c 1f 9 14 39 63 13 -FIXUPS: 553ee 10 28 13 7 4d 24 25 1a 25 25 25 17 25 1a fffff762 32 16 10 -FIXUPS: 54d76 11 46 24 25 1d 25 26 36 70 15 d 17 e 9 15 18 12 3a 27 41 -FIXUPS: 5506d c 10 28 10 7 2c fffff7c5 38 c0 9 2c 14 18 14 a a 9 17 37 -FIXUPS: 54ab0 3d 46 2a 2f 10 7 1e 4e 11 30 9 13 14 14 1a d 1e 1e fffff79f -FIXUPS: 544ae 1b 27 27 25 2a 22 5e 13 1b 21 10 7 27 9 11 14 12 2a 2a 2f -FIXUPS: 54746 7 1e 3d 11 44 27 31 25 1a fffff656 25 e 41 21 9 5c 15 b 10 -FIXUPS: 54032 28 7 11 54 48 19 19 18 1d 18 37 11 11 7e 7 86 b 80 19 cf -FIXUPS: 54482 fffff659 9 6c c 4b 13 15 6b 19 18 13 7 16 18 10 7 31 1a 7 -FIXUPS: 53d74 14 3a 12 a 10 28 2e 14 21 15 19 20 fffff7e7 a 40 46 46 28 -FIXUPS: 537ce 1d 15 19 1d 1b 18 22 1f 27 f 5f 41 15 9 9 38 44 23 1f 13 -FIXUPS: 53a8d 15 12 c 12 fffff52f 22d 22 2c 20 63 10 4e 1a 58 a c 9 33 -FIXUPS: 5344c 39 11 d 23 e 44 e 16 43 10 19 13 50 b 13 27 47 fffff459 c -FIXUPS: 52b9d b 3e 26 82 16 9 15 1b 3d 3f 3f 21 35 20 18 d 20 d 32 9 22 -FIXUPS: 52ecb 2a 9 36 10 28 1e 25 fffff696 11 2f 11 2f 11 2f 11 47 24 25 -FIXUPS: 527c3 30 40 3f 36 37 2d 8 12 13 10 32 41 30 1b 15 44 1b 30 15 d -FIXUPS: 57756 1b 14 18 b 12 4c f 25 28 3b 22 60 1e b 24 1e b 16 10 4b 10 -FIXUPS: 57a21 5 5 5 14 d ffffab74 11 2f 11 7919 4f 7 e 1a e a ac 5 e d -FIXUPS: 5a0a4 d 13 d 13 d 13 d 16 7 d ffffd45b 2f 11 26 34 1e 61 57 d 10 -FIXUPS: 59a95 9 2e 13 7 25 8 36 24 13 45 13 9 c 11 21 33 26 92 39 1a 13 -FIXUPS: 59dc5 11 10 24 12 a a 8d 33 26 fffff72d 32 e 56 76 30 1c 2c 28 -FIXUPS: 597fb f 24 27 1e 14 f c f 26 14 f 32 43 23 a 17 71 15 2d e d a -FIXUPS: 591f2 6 a f 27 27 1e 14 f 2c 11 f 27 14 f 28 55 21 69 38 14 6 9 -FIXUPS: 594c6 13 7 50 2d 1f 85 11 1a fffff73f f c f 27 14 f 29 2f 35 1e -FIXUPS: 58ec1 1b a 1b 2e 13 7 43 21 1f 6c 11 1b 17 48 68 2b 44 38 6 10 -FIXUPS: 5882e 11 20 22 15 1b 25 10 21 11 d1 36 29 3f 31 1c 16 7 29 23 1f -FIXUPS: 58bc8 1b 17 5f 61 18 6 12 28 27 1e fffff349 10 6e 13 13 4a a3 30 -FIXUPS: 582c0 66 e 18 23 a c 9 1e c3 12 1e 9 72 62 48 96 2a 11 7a 7 86 -FIXUPS: 587bd 55 fffff364 2f 11 2f 11 2f 11 2f 11 32 47 1a 24 13 5d 2a -FIXUPS: 57e14 2c 8a 10 11 1b 88 e 10 e 13 13 80 10 10 10 3c94 74 f 43 37 -FIXUPS: 5be34 7 5d 8 19 1f 13 33 15 23 12 35 30 32 32 5 a1 7 d 19 d 16 -FIXUPS: 5c12e d ffffb9ea 11 2f 3bf7 c 9 88 2a 4c 13 2e f 85 2f 72 24 2f -FIXUPS: 5ba4b 11 20 22 15 1b 2d 19 11 28 57 82 5 27 43 33 12 35 fffff539 -FIXUPS: 5b267 18 19 1c 83 c 11 10 11 e 2d 1c 1b 17 18 c 25 18 27 18 48 -FIXUPS: 5b4fb 15 3d 10 2e f2 16 e 5b 10 fffff60b 34 27 40 d 36 e 8 42 12 -FIXUPS: 5ae71 45 42 c 1e 78 6c 48 38 22 25 18 10 25 1c 3e 14 29 37 18 24 -FIXUPS: 5b23c fffff3bc 13 f 27 28 33 72 18 40 c 38 19 23 2e 16 29 17 20 -FIXUPS: 5a8cd 1be 78 2b 7 69 7 4e 74 f 51 21 17 11 1771 ffffdcf4 11 2f -FIXUPS: 5a1c6 2f 11 1e 11 8 30 21 5f 1f 51 e 18 8 4b 11 13 21 3e 15 16 -FIXUPS: 5a4bc 2f 4c 16 28 27 1e 223a d 5 e d 13 d fffff924 11 2f 11 32 -FIXUPS: 5c21f 1a 1f 13 30 3e 25 4f 1a 68 10 e 16 1e 13 d 5 e d 13 8f8 32 -FIXUPS: 5cdaa d 2c 21 a 33 5 e d 13 d fffff6b4 11 2f 11 32 37 1a 1f 13 -FIXUPS: 5c66b 3e 25 4f 1a 6c 13 10 d e 10d 1f 15 7a 36 2b 29 5c 14 9 c -FIXUPS: 5cab8 9 45 36 9 9 1d c 3e 9 29 9 42 12 35 2e 2a 9 1a 66 9 diff --git a/kauai/OBJ/WINS/CHELP.MAP b/kauai/OBJ/WINS/CHELP.MAP deleted file mode 100644 index 5294205c..00000000 --- a/kauai/OBJ/WINS/CHELP.MAP +++ /dev/null @@ -1,4290 +0,0 @@ - chelp - - Timestamp is 3070b4b9 (Mon Oct 02 20:57:45 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0005c028H .text CODE - 0002:00000000 000013acH .bss DATA - 0003:00000000 00003278H .rdata DATA - 0004:00000000 00003814H .data DATA - 0004:00003814 00000004H .CRT$XCA DATA - 0004:00003818 00000004H .CRT$XCC DATA - 0004:0000381c 000000f4H .CRT$XCU DATA - 0004:00003910 00000004H .CRT$XCZ DATA - 0004:00003914 00000004H .CRT$XIA DATA - 0004:00003918 00000008H .CRT$XIC DATA - 0004:00003920 00000004H .CRT$XIZ DATA - 0004:00003924 00000004H .CRT$XPA DATA - 0004:00003928 00000004H .CRT$XPZ DATA - 0004:0000392c 00000004H .CRT$XTA DATA - 0004:00003930 00000004H .CRT$XTZ DATA - 0005:00000000 000000b4H .idata$2 DATA - 0005:000000b4 00000028H .idata$3 DATA - 0005:000000dc 00000458H .idata$4 DATA - 0005:00000534 00000458H .idata$5 DATA - 0005:0000098c 00001234H .idata$6 DATA - 0006:00000000 0000033cH .rsrc$01 DATA - 0006:00000340 00001d5cH .rsrc$02 DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 0000ac80H .debug$F DATA - 0008:0000c060 00000000H .debug$G DATA - 0008:0000c060 00000032H .debug$H DATA - 0008:fff8e000 00000000H .debug$P DATA - 0008:fff8e000 00000000H .debug$S DATA - 0008:fff8e000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003d0 ?ReversePb@@YGXPAXJ@Z 004013d0 f utilcopy.obj - 0001:00000400 ?SwapBlocks@@YGXPAXJJ@Z 00401400 f utilcopy.obj - 0001:00000430 ?SwapPb@@YGXPAX0J@Z 00401430 f utilcopy.obj - 0001:00000480 ?MoveElement@@YGXPAXJJJ@Z 00401480 f utilcopy.obj - 0001:000004f0 ?FEqualRgb@@YGHPAX0J@Z 004014f0 f utilcopy.obj - 0001:00000530 ?CbEqualRgb@@YGJPAX0J@Z 00401530 f utilcopy.obj - 0001:00000590 ?CopyPb@@YGXPAX0J@Z 00401590 f utilcopy.obj - 0001:000005c0 ?BltPb@@YGXPAX0J@Z 004015c0 f utilcopy.obj - 0001:00000630 ?FWouldBe@ERS@@SGHJ@Z 00401630 f utilerro.obj - 0001:00000650 ?FIs@ERS@@UAEHJ@Z 00401650 f utilerro.obj - 0001:00000660 ?Cls@ERS@@UAEJXZ 00401660 f utilerro.obj - 0001:00000670 ??0ERS@@QAE@XZ 00401670 f utilerro.obj - 0001:000006a0 ?Push@ERS@@UAEXJ@Z 004016a0 f utilerro.obj - 0001:000006f0 ?FPop@ERS@@UAEHPAJ@Z 004016f0 f utilerro.obj - 0001:00000740 ?Clear@ERS@@UAEXXZ 00401740 f utilerro.obj - 0001:00000760 ?Cerc@ERS@@UAEJXZ 00401760 f utilerro.obj - 0001:00000770 ?FIn@ERS@@UAEHJ@Z 00401770 f utilerro.obj - 0001:000007c0 ?ErcGet@ERS@@UAEJJ@Z 004017c0 f utilerro.obj - 0001:00000800 ?Flush@ERS@@UAEXJ@Z 00401800 f utilerro.obj - 0001:000008a0 ??_EERS@@UAEPAXI@Z 004018a0 f utilerro.obj - 0001:000008a0 ??_GERS@@UAEPAXI@Z 004018a0 f utilerro.obj - 0001:000008d0 ?SortLw@@YGXPAJ0@Z 004018d0 f utilint.obj - 0001:000008f0 ?MulLu@@YGXKKPAK0@Z 004018f0 f utilint.obj - 0001:00000910 ?LwMulDivAway@@YGJJJJ@Z 00401910 f utilint.obj - 0001:00000970 ?LwDivAway@@YGJJJ@Z 00401970 f utilint.obj - 0001:000009a0 ?LwRoundAway@@YGJJJ@Z 004019a0 f utilint.obj - 0001:000009d0 ?LwRoundToward@@YGJJJ@Z 004019d0 f utilint.obj - 0001:000009f0 ?LwRoundClosest@@YGJJJ@Z 004019f0 f utilint.obj - 0001:00000a40 ?FAdjustIv@@YGHPAJJJJ@Z 00401a40 f utilint.obj - 0001:00000a90 ?SwapBytesBom@@YGXPAXK@Z 00401a90 f utilint.obj - 0001:00000af0 ?SwapBytesRgsw@@YGXPAXJ@Z 00401af0 f utilint.obj - 0001:00000b20 ?SwapBytesRglw@@YGXPAXJ@Z 00401b20 f utilint.obj - 0001:00000b50 ??BPT@@QAE?AUtagPOINT@@XZ 00401b50 f utilint.obj - 0001:00000bb0 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 00401bb0 f utilint.obj - 0001:00000bd0 ?Map@PT@@QAEXPAVRC@@0@Z 00401bd0 f utilint.obj - 0001:00000c80 ?Transform@PT@@QAEXK@Z 00401c80 f utilint.obj - 0001:00000cb0 ??8RC@@QAEHAAV0@@Z 00401cb0 f utilint.obj - 0001:00000d20 ??9RC@@QAEHAAV0@@Z 00401d20 f utilint.obj - 0001:00000d90 ?Union@RC@@QAEXPAV1@0@Z 00401d90 f utilint.obj - 0001:00000dc0 ?Union@RC@@QAEXPAV1@@Z 00401dc0 f utilint.obj - 0001:00000e40 ?FIntersect@RC@@QAEHPAV1@0@Z 00401e40 f utilint.obj - 0001:00000ec0 ?FIntersect@RC@@QAEHPAV1@@Z 00401ec0 f utilint.obj - 0001:00000f40 ?Inset@RC@@QAEXJJ@Z 00401f40 f utilint.obj - 0001:00000f60 ?Map@RC@@QAEXPAV1@0@Z 00401f60 f utilint.obj - 0001:00001080 ?Transform@RC@@QAEXK@Z 00402080 f utilint.obj - 0001:000010e0 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 004020e0 f utilint.obj - 0001:00001110 ?Offset@RC@@QAEXJJ@Z 00402110 f utilint.obj - 0001:00001130 ?OffsetToOrigin@RC@@QAEXXZ 00402130 f utilint.obj - 0001:00001150 ?CenterOnRc@RC@@QAEXPAV1@@Z 00402150 f utilint.obj - 0001:000011a0 ?FPtIn@RC@@QAEHJJ@Z 004021a0 f utilint.obj - 0001:000011d0 ?PinPt@RC@@QAEXPAVPT@@@Z 004021d0 f utilint.obj - 0001:00001210 ?PinToRc@RC@@QAEXPAV1@@Z 00402210 f utilint.obj - 0001:00001260 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 00402260 f utilint.obj - 0001:00001280 ??BRC@@QAE?AUtagRECT@@XZ 00402280 f utilint.obj - 0001:00001350 ?FContains@RC@@QAEHPAV1@@Z 00402350 f utilint.obj - 0001:00001390 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 00402390 f utilint.obj - 0001:00001470 ?FMapToCell@RC@@QAEHJJJJPAJ0@Z 00402470 f utilint.obj - 0001:00001510 ??0USAC@@QAE@XZ 00402510 f utilint.obj - 0001:00001540 ?TsCur@USAC@@QAEKXZ 00402540 f utilint.obj - 0001:000015a0 ?Scale@USAC@@QAEXK@Z 004025a0 f utilint.obj - 0001:00001610 ?Set@DVER@@QAEXFF@Z 00402610 f utilint.obj - 0001:00001630 ?FReadable@DVER@@QAEHFF@Z 00402630 f utilint.obj - 0001:00001670 ??_EUSAC@@UAEPAXI@Z 00402670 f utilint.obj - 0001:00001670 ??_GUSAC@@UAEPAXI@Z 00402670 f utilint.obj - 0001:00001690 ?FAllocPv@@YGHPAPAXJKJ@Z 00402690 f utilmem.obj - 0001:00001760 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00402760 f utilmem.obj - 0001:00001850 ?FreePpv@@YGXPAPAX@Z 00402850 f utilmem.obj - 0001:00001890 ?FWouldBe@RND@@SGHJ@Z 00402890 f utilrnd.obj - 0001:000018b0 ?FIs@RND@@UAEHJ@Z 004028b0 f utilrnd.obj - 0001:000018c0 ?Cls@RND@@UAEJXZ 004028c0 f utilrnd.obj - 0001:000018d0 ?FWouldBe@SFL@@SGHJ@Z 004028d0 f utilrnd.obj - 0001:000018f0 ?FIs@SFL@@UAEHJ@Z 004028f0 f utilrnd.obj - 0001:00001900 ?Cls@SFL@@UAEJXZ 00402900 f utilrnd.obj - 0001:00001910 ??0RND@@QAE@K@Z 00402910 f utilrnd.obj - 0001:00001950 ?LwNext@RND@@UAEJJ@Z 00402950 f utilrnd.obj - 0001:00001980 ??0SFL@@QAE@K@Z 00402980 f utilrnd.obj - 0001:000019b0 ??1SFL@@UAE@XZ 004029b0 f utilrnd.obj - 0001:000019d0 ?Shuffle@SFL@@QAEXJ@Z 004029d0 f utilrnd.obj - 0001:00001a10 ?_ShuffleCore@SFL@@IAEXXZ 00402a10 f utilrnd.obj - 0001:00001a60 ?_FEnsureHq@SFL@@IAEHJ@Z 00402a60 f utilrnd.obj - 0001:00001ad0 ?LwNext@SFL@@UAEJJ@Z 00402ad0 f utilrnd.obj - 0001:00001b60 ??_GRND@@UAEPAXI@Z 00402b60 f utilrnd.obj - 0001:00001b60 ??_ERND@@UAEPAXI@Z 00402b60 f utilrnd.obj - 0001:00001b80 ??_ESFL@@UAEPAXI@Z 00402b80 f utilrnd.obj - 0001:00001b80 ??_GSFL@@UAEPAXI@Z 00402b80 f utilrnd.obj - 0001:00001ba0 ??0STN@@QAE@PAD@Z 00402ba0 f utilstr.obj - 0001:00001be0 ??4STN@@QAEAAV0@AAV0@@Z 00402be0 f utilstr.obj - 0001:00001c00 ?SetRgch@STN@@QAEXPADJ@Z 00402c00 f utilstr.obj - 0001:00001c40 ?SetSzs@STN@@QAEXPAD@Z 00402c40 f utilstr.obj - 0001:00001c60 ?Delete@STN@@QAEXJJ@Z 00402c60 f utilstr.obj - 0001:00001cc0 ?FAppendRgch@STN@@QAEHPADJ@Z 00402cc0 f utilstr.obj - 0001:00001d10 ?FInsertRgch@STN@@QAEHJPADJ@Z 00402d10 f utilstr.obj - 0001:00001dd0 ?FEqualRgch@STN@@QAEHPADJ@Z 00402dd0 f utilstr.obj - 0001:00001e00 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402e00 f utilstr.obj - 0001:00001e20 ?CbData@STN@@QAEJXZ 00402e20 f utilstr.obj - 0001:00001e30 ?GetData@STN@@QAEXPAX@Z 00402e30 f utilstr.obj - 0001:00001e70 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 00402e70 f utilstr.obj - 0001:00001f00 ?FSetData@STN@@QAEHPAXJPAJ@Z 00402f00 f utilstr.obj - 0001:00002130 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 00403130 f utilstr.obj - 0001:00002400 ?FFormatSz@STN@@QAAHPADZZ 00403400 f utilstr.obj - 0001:00002420 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00403420 f utilstr.obj - 0001:000027a0 ?FGetLw@STN@@QAEHPAJJ@Z 004037a0 f utilstr.obj - 0001:00002890 ?FExpandControls@STN@@QAEHXZ 00403890 f utilstr.obj - 0001:000029a0 ?CchSz@@YGJPAD@Z 004039a0 f utilstr.obj - 0001:000029c0 ?FcmpCompareRgch@@YGKPADJ0J@Z 004039c0 f utilstr.obj - 0001:00002a20 ?FEqualUserRgch@@YGHPADJ0JK@Z 00403a20 f utilstr.obj - 0001:00002b10 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00403b10 f utilstr.obj - 0001:00002b80 ?UpperRgchs@@YGXPADJ@Z 00403b80 f utilstr.obj - 0001:00002be0 ?LowerRgchs@@YGXPADJ@Z 00403be0 f utilstr.obj - 0001:00002c40 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00403c40 f utilstr.obj - 0001:00002d40 ?TranslateRgch@@YGXPADJFH@Z 00403d40 f utilstr.obj - 0001:00002d90 ?GrfchFromCh@@YGKD@Z 00403d90 f utilstr.obj - 0001:00002e90 ?FAllocHq@@YGHPAPAXJKJ@Z 00403e90 f memwin.obj - 0001:00002f00 ?FResizePhq@@YGHPAPAXJKJ@Z 00403f00 f memwin.obj - 0001:00002fa0 ?FreePhq@@YGXPAPAX@Z 00403fa0 f memwin.obj - 0001:00002fd0 ?CbOfHq@@YGJPAX@Z 00403fd0 f memwin.obj - 0001:00002fe0 ?PvLockHq@@YGPAXPAX@Z 00403fe0 f memwin.obj - 0001:00002ff0 ?UnlockHq@@YGXPAX@Z 00403ff0 f memwin.obj - 0001:00003030 ?FWouldBe@APPB@@SGHJ@Z 00404030 f appb.obj - 0001:00003050 ?FIs@APPB@@UAEHJ@Z 00404050 f appb.obj - 0001:00003060 ?Cls@APPB@@UAEJXZ 00404060 f appb.obj - 0001:00003070 ??0APPB@@QAE@XZ 00404070 f appb.obj - 0001:000030a0 ??1APPB@@UAE@XZ 004040a0 f appb.obj - 0001:000030c0 ?Run@APPB@@UAEXKKJ@Z 004040c0 f appb.obj - 0001:000030f0 ?Quit@APPB@@UAEXH@Z 004040f0 f appb.obj - 0001:00003130 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 00404130 f appb.obj - 0001:00003150 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 00404150 f appb.obj - 0001:000031b0 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 004041b0 f appb.obj - 0001:00003200 ?RefreshCurs@APPB@@UAEXXZ 00404200 f appb.obj - 0001:00003240 ?BeginLongOp@APPB@@UAEXXZ 00404240 f appb.obj - 0001:00003270 ?EndLongOp@APPB@@UAEXH@Z 00404270 f appb.obj - 0001:000032a0 ?GrfcustCur@APPB@@UAEKH@Z 004042a0 f appb.obj - 0001:00003300 ?ModifyGrfcust@APPB@@UAEXKK@Z 00404300 f appb.obj - 0001:00003320 ?HideCurs@APPB@@UAEXXZ 00404320 f appb.obj - 0001:00003330 ?ShowCurs@APPB@@UAEXXZ 00404330 f appb.obj - 0001:00003340 ?PositionCurs@APPB@@UAEXJJ@Z 00404340 f appb.obj - 0001:00003360 ?OnnDefVariable@APPB@@UAEJXZ 00404360 f appb.obj - 0001:000033c0 ?OnnDefFixed@APPB@@UAEJXZ 004043c0 f appb.obj - 0001:00003440 ?DypTextDef@APPB@@UAEJXZ 00404440 f appb.obj - 0001:00003450 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 00404450 f appb.obj - 0001:00003460 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 00404460 f appb.obj - 0001:00003480 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 00404480 f appb.obj - 0001:00003630 ?_TakeDownToolTip@APPB@@IAEXXZ 00404630 f appb.obj - 0001:00003660 ?_EnsureToolTip@APPB@@IAEXXZ 00404660 f appb.obj - 0001:000036e0 ?ResetToolTip@APPB@@UAEXXZ 004046e0 f appb.obj - 0001:00003700 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 00404700 f appb.obj - 0001:00003770 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 00404770 f appb.obj - 0001:00003790 ?_FInit@APPB@@MAEHKKJ@Z 00404790 f appb.obj - 0001:00003860 ?_FInitSound@APPB@@MAEHJ@Z 00404860 f appb.obj - 0001:000038f0 ?_FInitMenu@APPB@@MAEHXZ 004048f0 f appb.obj - 0001:00003910 ?_Loop@APPB@@MAEXXZ 00404910 f appb.obj - 0001:000039b0 ?_CleanUp@APPB@@MAEXXZ 004049b0 f appb.obj - 0001:00003a00 ?_Activate@APPB@@MAEXH@Z 00404a00 f appb.obj - 0001:00003a40 ?TopOfLoop@APPB@@UAEXXZ 00404a40 f appb.obj - 0001:00003a60 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 00404a60 f appb.obj - 0001:00003b10 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 00404b10 f appb.obj - 0001:00003b40 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 00404b40 f appb.obj - 0001:00003bc0 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00404bc0 f appb.obj - 0001:00003be0 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00404be0 f appb.obj - 0001:00003c00 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00404c00 f appb.obj - 0001:00003de0 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00404de0 f appb.obj - 0001:00003e00 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00404e00 f appb.obj - 0001:00003e20 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00404e20 f appb.obj - 0001:00003fa0 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 00404fa0 f appb.obj - 0001:00004010 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 00405010 f appb.obj - 0001:000040d0 ?UpdateMarked@APPB@@UAEXXZ 004050d0 f appb.obj - 0001:00004140 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 00405140 f appb.obj - 0001:00004270 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 00405270 f appb.obj - 0001:000042c0 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 004052c0 f appb.obj - 0001:00004420 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 00405420 f appb.obj - 0001:000044f0 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 004054f0 f appb.obj - 0001:000045a0 ?_FSetProp@APPB@@IAEHJJ@Z 004055a0 f appb.obj - 0001:00004630 ?FSetProp@APPB@@UAEHJJ@Z 00405630 f appb.obj - 0001:00004800 ?FGetProp@APPB@@UAEHJPAJ@Z 00405800 f appb.obj - 0001:000048b0 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 004058b0 f appb.obj - 0001:000049a0 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 004059a0 f appb.obj - 0001:00004ae0 ?FModalLoop@APPB@@UAEHPAJ@Z 00405ae0 f appb.obj - 0001:00004b20 ?EndModal@APPB@@UAEXJ@Z 00405b20 f appb.obj - 0001:00004b30 ?PopModal@APPB@@UAEXXZ 00405b30 f appb.obj - 0001:00004be0 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 00405be0 f appb.obj - 0001:00004c10 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 00405c10 f appb.obj - 0001:00004c60 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 00405c60 f appb.obj - 0001:00004ce0 ?FAllowScreenSaver@APPB@@UAEHXZ 00405ce0 f appb.obj - 0001:00004d00 ??_EAPPB@@UAEPAXI@Z 00405d00 f appb.obj - 0001:00004d00 ??_GAPPB@@UAEPAXI@Z 00405d00 f appb.obj - 0001:00004db0 ??_9@$BMA@A 00405db0 f appb.obj - 0001:00004dc0 ??_9@$BME@A 00405dc0 f appb.obj - 0001:00004dd0 ??_9@$BMI@A 00405dd0 f appb.obj - 0001:00004de0 ??_9@$BBBE@A 00405de0 f appb.obj - 0001:00004df0 ??_9@$BLI@A 00405df0 f appb.obj - 0001:00004e00 ??_9@$BLM@A 00405e00 f appb.obj - 0001:00004e10 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 00405e10 f appb.obj - 0001:00004e30 ?PclokFromHid@CLOK@@SGPAV1@J@Z 00405e30 f clok.obj - 0001:00004e50 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 00405e50 f clok.obj - 0001:00004e80 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 00405e80 f clok.obj - 0001:00004ee0 ??_9@$BCE@A 00405ee0 f clok.obj - 0001:00004f80 ?FWouldBe@CMH@@SGHJ@Z 00405f80 f cmd.obj - 0001:00004fa0 ?FIs@CMH@@UAEHJ@Z 00405fa0 f cmd.obj - 0001:00004fb0 ?Cls@CMH@@UAEJXZ 00405fb0 f cmd.obj - 0001:00004fc0 ?FWouldBe@CEX@@SGHJ@Z 00405fc0 f cmd.obj - 0001:00004fe0 ?FIs@CEX@@UAEHJ@Z 00405fe0 f cmd.obj - 0001:00004ff0 ?Cls@CEX@@UAEJXZ 00405ff0 f cmd.obj - 0001:00005000 ?HidUnique@CMH@@SGJJ@Z 00406000 f cmd.obj - 0001:00005060 ??0CMH@@QAE@J@Z 00406060 f cmd.obj - 0001:00005080 ??1CMH@@UAE@XZ 00406080 f cmd.obj - 0001:000050b0 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 004060b0 f cmd.obj - 0001:00005150 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 00406150 f cmd.obj - 0001:000051c0 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 004061c0 f cmd.obj - 0001:00005260 ??0CEX@@IAE@XZ 00406260 f cmd.obj - 0001:00005280 ??1CEX@@UAE@XZ 00406280 f cmd.obj - 0001:00005340 ?PcexNew@CEX@@SGPAV1@JJ@Z 00406340 f cmd.obj - 0001:00005390 ?_FInit@CEX@@MAEHJJ@Z 00406390 f cmd.obj - 0001:000053d0 ?StopRecording@CEX@@QAEXXZ 004063d0 f cmd.obj - 0001:00005520 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00406520 f cmd.obj - 0001:000056f0 ?StopPlaying@CEX@@QAEXXZ 004066f0 f cmd.obj - 0001:00005760 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 00406760 f cmd.obj - 0001:000058e0 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 004068e0 f cmd.obj - 0001:00005930 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 00406930 f cmd.obj - 0001:000059d0 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 004069d0 f cmd.obj - 0001:00005a60 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 00406a60 f cmd.obj - 0001:00005b60 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 00406b60 f cmd.obj - 0001:00005bd0 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00406bd0 f cmd.obj - 0001:00005c20 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00406c20 f cmd.obj - 0001:00005c70 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 00406c70 f cmd.obj - 0001:00005ca0 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 00406ca0 f cmd.obj - 0001:00005cd0 ?FCidIn@CEX@@UAEHJ@Z 00406cd0 f cmd.obj - 0001:00005d20 ?FlushCid@CEX@@UAEXJ@Z 00406d20 f cmd.obj - 0001:00005d90 ?_TGetNextCmd@CEX@@MAEHXZ 00406d90 f cmd.obj - 0001:00005eb0 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 00406eb0 f cmd.obj - 0001:00005ee0 ?_CleanUpCmd@CEX@@MAEXXZ 00406ee0 f cmd.obj - 0001:00005f60 ?FDispatchNextCmd@CEX@@UAEHXZ 00406f60 f cmd.obj - 0001:00006040 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00407040 f cmd.obj - 0001:00006070 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00407070 f cmd.obj - 0001:00006130 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 00407130 f cmd.obj - 0001:00006180 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 00407180 f cmd.obj - 0001:000061e0 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 004071e0 f cmd.obj - 0001:00006200 ?EndMouseTracking@CEX@@UAEXXZ 00407200 f cmd.obj - 0001:00006240 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 00407240 f cmd.obj - 0001:00006250 ?Suspend@CEX@@UAEXH@Z 00407250 f cmd.obj - 0001:000062a0 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 004072a0 f cmd.obj - 0001:000062c0 ??_ECMH@@UAEPAXI@Z 004072c0 f cmd.obj - 0001:000062c0 ??_GCMH@@UAEPAXI@Z 004072c0 f cmd.obj - 0001:000062e0 ??_GCEX@@UAEPAXI@Z 004072e0 f cmd.obj - 0001:000062e0 ??_ECEX@@UAEPAXI@Z 004072e0 f cmd.obj - 0001:00006390 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 00407390 f cmd.obj - 0001:000063a0 ?FWouldBe@CURS@@SGHJ@Z 004073a0 f cursor.obj - 0001:000063c0 ?FIs@CURS@@UAEHJ@Z 004073c0 f cursor.obj - 0001:000063d0 ?Cls@CURS@@UAEJXZ 004073d0 f cursor.obj - 0001:000063e0 ??1CURS@@MAE@XZ 004073e0 f cursor.obj - 0001:00006400 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00407400 f cursor.obj - 0001:00006740 ?Set@CURS@@QAEXXZ 00407740 f cursor.obj - 0001:00006760 ??_GCURS@@MAEPAXI@Z 00407760 f cursor.obj - 0001:00006760 ??_ECURS@@MAEPAXI@Z 00407760 f cursor.obj - 0001:00006820 ?FWouldBe@GNV@@SGHJ@Z 00407820 f gfx.obj - 0001:00006840 ?FIs@GNV@@UAEHJ@Z 00407840 f gfx.obj - 0001:00006850 ?Cls@GNV@@UAEJXZ 00407850 f gfx.obj - 0001:00006860 ?FWouldBe@GPT@@SGHJ@Z 00407860 f gfx.obj - 0001:00006880 ?FIs@GPT@@UAEHJ@Z 00407880 f gfx.obj - 0001:00006890 ?Cls@GPT@@UAEJXZ 00407890 f gfx.obj - 0001:000068a0 ?FWouldBe@NTL@@SGHJ@Z 004078a0 f gfx.obj - 0001:000068c0 ?FIs@NTL@@UAEHJ@Z 004078c0 f gfx.obj - 0001:000068d0 ?Cls@NTL@@UAEJXZ 004078d0 f gfx.obj - 0001:000068e0 ?SetFromLw@ACR@@QAEXJ@Z 004078e0 f gfx.obj - 0001:000068f0 ?LwGet@ACR@@QBEJXZ 004078f0 f gfx.obj - 0001:00006900 ?GetClr@ACR@@QAEXPAUCLR@@@Z 00407900 f gfx.obj - 0001:00006920 ?MoveOrigin@APT@@QAEXJJ@Z 00407920 f gfx.obj - 0001:00006990 ??0GNV@@QAE@PAVGPT@@@Z 00407990 f gfx.obj - 0001:000069d0 ??0GNV@@QAE@PAVGOB@@@Z 004079d0 f gfx.obj - 0001:00006a10 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 00407a10 f gfx.obj - 0001:00006a50 ??1GNV@@UAE@XZ 00407a50 f gfx.obj - 0001:00006a80 ?_Init@GNV@@AAEXPAVGPT@@@Z 00407a80 f gfx.obj - 0001:00006b30 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 00407b30 f gfx.obj - 0001:00006ba0 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00407ba0 f gfx.obj - 0001:00006c10 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 00407c10 f gfx.obj - 0001:00006c50 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00407c50 f gfx.obj - 0001:00006cd0 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 00407cd0 f gfx.obj - 0001:00006d20 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 00407d20 f gfx.obj - 0001:00006d60 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 00407d60 f gfx.obj - 0001:00006e30 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 00407e30 f gfx.obj - 0001:00006f30 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 00407f30 f gfx.obj - 0001:00006f60 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 00407f60 f gfx.obj - 0001:00006fa0 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 00407fa0 f gfx.obj - 0001:00007060 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 00408060 f gfx.obj - 0001:00007100 ?ClipRc@GNV@@QAEXPAVRC@@@Z 00408100 f gfx.obj - 0001:000071e0 ?SetPenSize@GNV@@QAEXJJ@Z 004081e0 f gfx.obj - 0001:00007220 ?SetFont@GNV@@QAEXJKJJJ@Z 00408220 f gfx.obj - 0001:00007260 ?SetOnn@GNV@@QAEXJ@Z 00408260 f gfx.obj - 0001:00007270 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 00408270 f gfx.obj - 0001:000072d0 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 004082d0 f gfx.obj - 0001:00007300 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 00408300 f gfx.obj - 0001:00007370 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 00408370 f gfx.obj - 0001:000073d0 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 004083d0 f gfx.obj - 0001:00007480 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 00408480 f gfx.obj - 0001:000075e0 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 004085e0 f gfx.obj - 0001:00007670 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00408670 f gfx.obj - 0001:00007920 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00408920 f gfx.obj - 0001:00007cd0 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00408cd0 f gfx.obj - 0001:000084d0 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 004094d0 f gfx.obj - 0001:000086d0 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 004096d0 f gfx.obj - 0001:00008c00 ?DrawMbmp@GNV@@QAEXPAVMBMP@@PAVRC@@@Z 00409c00 f gfx.obj - 0001:00008c40 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 00409c40 f gfx.obj - 0001:00008cc0 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 00409cc0 f gfx.obj - 0001:00008d10 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 00409d10 f gfx.obj - 0001:00008d70 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00409d70 f gfx.obj - 0001:00008d90 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 00409d90 f gfx.obj - 0001:00008db0 ?FInitGfx@@YGHXZ 00409db0 f gfx.obj - 0001:00008dc0 ??0NTL@@QAE@XZ 00409dc0 f gfx.obj - 0001:00008de0 ??1NTL@@UAE@XZ 00409de0 f gfx.obj - 0001:00008e10 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 00409e10 f gfx.obj - 0001:00008e30 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 00409e30 f gfx.obj - 0001:00008e50 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 00409e50 f gfx.obj - 0001:00008e80 ?OnnMac@NTL@@QAEJXZ 00409e80 f gfx.obj - 0001:00008e90 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 00409e90 f gfx.obj - 0001:00009350 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 0040a350 f gfx.obj - 0001:00009810 ??_GGNV@@UAEPAXI@Z 0040a810 f gfx.obj - 0001:00009810 ??_EGNV@@UAEPAXI@Z 0040a810 f gfx.obj - 0001:00009830 ??_GNTL@@UAEPAXI@Z 0040a830 f gfx.obj - 0001:00009830 ??_ENTL@@UAEPAXI@Z 0040a830 f gfx.obj - 0001:00009850 ?FWouldBe@GOB@@SGHJ@Z 0040a850 f gob.obj - 0001:00009870 ?FIs@GOB@@UAEHJ@Z 0040a870 f gob.obj - 0001:00009880 ?Cls@GOB@@UAEJXZ 0040a880 f gob.obj - 0001:00009890 ?FWouldBe@GTE@@SGHJ@Z 0040a890 f gob.obj - 0001:000098b0 ?FIs@GTE@@UAEHJ@Z 0040a8b0 f gob.obj - 0001:000098c0 ?Cls@GTE@@UAEJXZ 0040a8c0 f gob.obj - 0001:000098d0 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 0040a8d0 f gob.obj - 0001:00009960 ?ShutDown@GOB@@SGXXZ 0040a960 f gob.obj - 0001:000099a0 ??0GOB@@QAE@PAUGCB@@@Z 0040a9a0 f gob.obj - 0001:000099d0 ?_Init@GOB@@IAEXPAUGCB@@@Z 0040a9d0 f gob.obj - 0001:00009a70 ??0GOB@@QAE@J@Z 0040aa70 f gob.obj - 0001:00009ad0 ?Release@GOB@@UAEXXZ 0040aad0 f gob.obj - 0001:00009b20 ??1GOB@@MAE@XZ 0040ab20 f gob.obj - 0001:00009bc0 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 0040abc0 f gob.obj - 0001:00009c60 ?BringToFront@GOB@@QAEXXZ 0040ac60 f gob.obj - 0001:00009c70 ?SendBehind@GOB@@QAEXPAV1@@Z 0040ac70 f gob.obj - 0001:00009cd0 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 0040acd0 f gob.obj - 0001:00009e10 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 0040ae10 f gob.obj - 0001:00009f00 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 0040af00 f gob.obj - 0001:0000a070 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 0040b070 f gob.obj - 0001:0000a470 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 0040b470 f gob.obj - 0001:0000a840 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 0040b840 f gob.obj - 0001:0000ac80 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 0040bc80 f gob.obj - 0001:0000ac90 ?Maximize@GOB@@UAEXXZ 0040bc90 f gob.obj - 0001:0000acc0 ?SetPos@GOB@@QAEXPAVRC@@0@Z 0040bcc0 f gob.obj - 0001:0000ad40 ?GetPos@GOB@@QAEXPAVRC@@0@Z 0040bd40 f gob.obj - 0001:0000ad90 ?SetRcFromHwnd@GOB@@QAEXXZ 0040bd90 f gob.obj - 0001:0000ada0 ?GetRc@GOB@@QAEXPAVRC@@J@Z 0040bda0 f gob.obj - 0001:0000ae00 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 0040be00 f gob.obj - 0001:0000ae60 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 0040be60 f gob.obj - 0001:0000aec0 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 0040bec0 f gob.obj - 0001:0000aee0 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 0040bee0 f gob.obj - 0001:0000af30 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 0040bf30 f gob.obj - 0001:0000b070 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 0040c070 f gob.obj - 0001:0000b090 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 0040c090 f gob.obj - 0001:0000b110 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 0040c110 f gob.obj - 0001:0000b1a0 ?FPtIn@GOB@@UAEHJJ@Z 0040c1a0 f gob.obj - 0001:0000b1e0 ?FPtInBounds@GOB@@UAEHJJ@Z 0040c1e0 f gob.obj - 0001:0000b220 ?MouseDown@GOB@@UAEXJJJK@Z 0040c220 f gob.obj - 0001:0000b2c0 ?_SetRcCur@GOB@@AAEXXZ 0040c2c0 f gob.obj - 0001:0000b520 ?PgobPrevSib@GOB@@QAEPAV1@XZ 0040c520 f gob.obj - 0001:0000b560 ?PgobLastChild@GOB@@QAEPAV1@XZ 0040c560 f gob.obj - 0001:0000b580 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 0040c580 f gob.obj - 0001:0000b5c0 ?PgobFromCls@GOB@@QAEPAV1@J@Z 0040c5c0 f gob.obj - 0001:0000b620 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 0040c620 f gob.obj - 0001:0000b650 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 0040c650 f gob.obj - 0001:0000b680 ?PgobFromHid@GOB@@QAEPAV1@J@Z 0040c680 f gob.obj - 0001:0000b6e0 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 0040c6e0 f gob.obj - 0001:0000b6f0 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 0040c6f0 f gob.obj - 0001:0000b700 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 0040c700 f gob.obj - 0001:0000b710 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 0040c710 f gob.obj - 0001:0000b720 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 0040c720 f gob.obj - 0001:0000b730 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 0040c730 f gob.obj - 0001:0000b740 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 0040c740 f gob.obj - 0001:0000b760 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 0040c760 f gob.obj - 0001:0000bb80 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 0040cb80 f gob.obj - 0001:0000bb90 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 0040cb90 f gob.obj - 0001:0000bba0 ?LwState@GOB@@UAEJXZ 0040cba0 f gob.obj - 0001:0000bbb0 ??0GTE@@QAE@XZ 0040cbb0 f gob.obj - 0001:0000bbd0 ?Init@GTE@@QAEXPAVGOB@@K@Z 0040cbd0 f gob.obj - 0001:0000bc00 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 0040cc00 f gob.obj - 0001:0000bd10 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 0040cd10 f gob.obj - 0001:0000bd20 ?_NewRc@GOB@@MAEXXZ 0040cd20 f gob.obj - 0001:0000bd30 ?_ActivateHwnd@GOB@@MAEXH@Z 0040cd30 f gob.obj - 0001:0000bd40 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 0040cd40 f gob.obj - 0001:0000bd50 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 0040cd50 f gob.obj - 0001:0000bd60 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 0040cd60 f gob.obj - 0001:0000bd70 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 0040cd70 f gob.obj - 0001:0000bd80 ??_EGOB@@MAEPAXI@Z 0040cd80 f gob.obj - 0001:0000bd80 ??_GGOB@@MAEPAXI@Z 0040cd80 f gob.obj - 0001:0000bda0 ??_EGTE@@UAEPAXI@Z 0040cda0 f gob.obj - 0001:0000bda0 ??_GGTE@@UAEPAXI@Z 0040cda0 f gob.obj - 0001:0000bdc0 ??_9@$BHA@A 0040cdc0 f gob.obj - 0001:0000bdd0 ??_9@$BHE@A 0040cdd0 f gob.obj - 0001:0000bde0 ??_9@$BFM@A 0040cde0 f gob.obj - 0001:0000bdf0 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 0040cdf0 f mbmpgui.obj - 0001:0000c340 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 0040d340 f mbmpgui.obj - 0001:0000c680 ?FWouldBe@REGN@@SGHJ@Z 0040d680 f region.obj - 0001:0000c6a0 ?FIs@REGN@@UAEHJ@Z 0040d6a0 f region.obj - 0001:0000c6b0 ?Cls@REGN@@UAEJXZ 0040d6b0 f region.obj - 0001:0000c6c0 ?FWouldBe@REGSC@@SGHJ@Z 0040d6c0 f region.obj - 0001:0000c6e0 ?FIs@REGSC@@UAEHJ@Z 0040d6e0 f region.obj - 0001:0000c6f0 ?Cls@REGSC@@UAEJXZ 0040d6f0 f region.obj - 0001:0000c700 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 0040d700 f region.obj - 0001:0000c7b0 ?FStartRow@REGBL@@QAEHJJ@Z 0040d7b0 f region.obj - 0001:0000c860 ?EndRow@REGBL@@QAEXXZ 0040d860 f region.obj - 0001:0000c920 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 0040d920 f region.obj - 0001:0000c9e0 ??0REGSC@@QAE@XZ 0040d9e0 f region.obj - 0001:0000ca00 ??1REGSC@@UAE@XZ 0040da00 f region.obj - 0001:0000ca20 ?Free@REGSC@@QAEXXZ 0040da20 f region.obj - 0001:0000ca50 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 0040da50 f region.obj - 0001:0000cab0 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 0040dab0 f region.obj - 0001:0000cad0 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 0040dad0 f region.obj - 0001:0000cbd0 ?_ScanNextCore@REGSC@@IAEXXZ 0040dbd0 f region.obj - 0001:0000cd10 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 0040dd10 f region.obj - 0001:0000cd60 ??1REGN@@UAE@XZ 0040dd60 f region.obj - 0001:0000cd90 ?SetRc@REGN@@QAEXPAVRC@@@Z 0040dd90 f region.obj - 0001:0000cdf0 ?Offset@REGN@@QAEXJJ@Z 0040ddf0 f region.obj - 0001:0000ce20 ?FEmpty@REGN@@QAEHPAVRC@@@Z 0040de20 f region.obj - 0001:0000ce70 ?FIsRc@REGN@@QAEHPAVRC@@@Z 0040de70 f region.obj - 0001:0000cea0 ?FUnion@REGN@@QAEHPAV1@0@Z 0040dea0 f region.obj - 0001:0000cfc0 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 0040dfc0 f region.obj - 0001:0000d0f0 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0040e0f0 f region.obj - 0001:0000d410 ?FIntersect@REGN@@QAEHPAV1@0@Z 0040e410 f region.obj - 0001:0000d540 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0040e540 f region.obj - 0001:0000d840 ?FDiff@REGN@@QAEHPAV1@0@Z 0040e840 f region.obj - 0001:0000d940 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 0040e940 f region.obj - 0001:0000da50 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0040ea50 f region.obj - 0001:0000dd80 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 0040ed80 f region.obj - 0001:0000dff0 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 0040eff0 f region.obj - 0001:0000e050 ??_GREGN@@UAEPAXI@Z 0040f050 f region.obj - 0001:0000e050 ??_EREGN@@UAEPAXI@Z 0040f050 f region.obj - 0001:0000e070 ?XpFetch@REGSC@@QAEJXZ 0040f070 f region.obj - 0001:0000e0f0 ??_EREGBL@@UAEPAXI@Z 0040f0f0 f region.obj - 0001:0000e0f0 ??_GREGBL@@UAEPAXI@Z 0040f0f0 f region.obj - 0001:0000e130 ??_GREGSC@@UAEPAXI@Z 0040f130 f region.obj - 0001:0000e130 ??_EREGSC@@UAEPAXI@Z 0040f130 f region.obj - 0001:0000e290 _WinMain@16 0040f290 f appbwin.obj - 0001:0000e2d0 ?Abort@APPB@@UAEXXZ 0040f2d0 f appbwin.obj - 0001:0000e2f0 ?_FInitOS@APPB@@MAEHXZ 0040f2f0 f appbwin.obj - 0001:0000e480 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 0040f480 f appbwin.obj - 0001:0000e4d0 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 0040f4d0 f appbwin.obj - 0001:0000e570 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 0040f570 f appbwin.obj - 0001:0000e660 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 0040f660 f appbwin.obj - 0001:0000e720 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 0040f720 f appbwin.obj - 0001:0000e830 ?FlushUserEvents@APPB@@UAEXK@Z 0040f830 f appbwin.obj - 0001:0000e890 ?_ShutDownViewer@APPB@@IAEXXZ 0040f890 f appbwin.obj - 0001:0000e8c0 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 0040f8c0 f appbwin.obj - 0001:0000e940 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0040f940 f appbwin.obj - 0001:0000f110 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00410110 f appbwin.obj - 0001:0000f180 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00410180 f appbwin.obj - 0001:0000f270 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00410270 f appbwin.obj - 0001:0000f730 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 00410730 f appbwin.obj - 0001:0000f880 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 00410880 f gfxwin.obj - 0001:0000f8e0 ?_Scr@ACR@@AAEKXZ 004108e0 f gfxwin.obj - 0001:0000f920 ?Flush@GPT@@SGXXZ 00410920 f gfxwin.obj - 0001:0000f930 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 00410930 f gfxwin.obj - 0001:0000fde0 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 00410de0 f gfxwin.obj - 0001:0000fe30 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 00410e30 f gfxwin.obj - 0001:0000ff00 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 00410f00 f gfxwin.obj - 0001:0000ff60 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 00410f60 f gfxwin.obj - 0001:0000ffb0 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 00410fb0 f gfxwin.obj - 0001:00010060 ??1GPT@@EAE@XZ 00411060 f gfxwin.obj - 0001:00010100 ?_Scr@GPT@@AAEKVACR@@@Z 00411100 f gfxwin.obj - 0001:00010180 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 00411180 f gfxwin.obj - 0001:000104e0 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 004114e0 f gfxwin.obj - 0001:00010530 ?CbRow@GPT@@QAEJXZ 00411530 f gfxwin.obj - 0001:00010540 ?CbitPixel@GPT@@QAEJXZ 00411540 f gfxwin.obj - 0001:00010590 ?Lock@GPT@@QAEXXZ 00411590 f gfxwin.obj - 0001:000105a0 ?Unlock@GPT@@QAEXXZ 004115a0 f gfxwin.obj - 0001:000105c0 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 004115c0 f gfxwin.obj - 0001:000105f0 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 004115f0 f gfxwin.obj - 0001:00010640 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 00411640 f gfxwin.obj - 0001:00010700 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 00411700 f gfxwin.obj - 0001:00010730 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 00411730 f gfxwin.obj - 0001:00010760 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 00411760 f gfxwin.obj - 0001:00010910 ?_EnsurePalette@GPT@@AAEXXZ 00411910 f gfxwin.obj - 0001:000109d0 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 004119d0 f gfxwin.obj - 0001:00010bf0 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 00411bf0 f gfxwin.obj - 0001:00010c30 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 00411c30 f gfxwin.obj - 0001:00010e10 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 00411e10 f gfxwin.obj - 0001:00010ed0 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 00411ed0 f gfxwin.obj - 0001:00010fa0 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 00411fa0 f gfxwin.obj - 0001:00011020 ?_SetStockBrush@GPT@@AAEXH@Z 00412020 f gfxwin.obj - 0001:00011090 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 00412090 f gfxwin.obj - 0001:00011160 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 00412160 f gfxwin.obj - 0001:00011540 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 00412540 f gfxwin.obj - 0001:000118a0 ?FInit@NTL@@QAEHXZ 004128a0 f gfxwin.obj - 0001:00011960 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 00412960 f gfxwin.obj - 0001:000119c0 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 004129c0 f gfxwin.obj - 0001:00011a50 ?FFixedPitch@NTL@@QAEHJ@Z 00412a50 f gfxwin.obj - 0001:00011a80 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 00412a80 f gfxwin.obj - 0001:00011ae0 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 00412ae0 f gfxwin.obj - 0001:00011b10 ??_EGPT@@EAEPAXI@Z 00412b10 f gfxwin.obj - 0001:00011b10 ??_GGPT@@EAEPAXI@Z 00412b10 f gfxwin.obj - 0001:00011b30 ?FInitScreen@GOB@@SGHKJ@Z 00412b30 f gobwin.obj - 0001:00011ba0 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 00412ba0 f gobwin.obj - 0001:00011c00 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 00412c00 f gobwin.obj - 0001:00011c60 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 00412c60 f gobwin.obj - 0001:00011c90 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 00412c90 f gobwin.obj - 0001:00011d90 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 00412d90 f gobwin.obj - 0001:00011e10 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 00412e10 f gobwin.obj - 0001:00011eb0 ?Clean@GOB@@UAEXXZ 00412eb0 f gobwin.obj - 0001:00011f30 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 00412f30 f gobwin.obj - 0001:00011f70 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 00412f70 f gobwin.obj - 0001:00012050 ?FWouldBe@MUB@@SGHJ@Z 00413050 f menuwin.obj - 0001:00012070 ?FIs@MUB@@UAEHJ@Z 00413070 f menuwin.obj - 0001:00012080 ?Cls@MUB@@UAEJXZ 00413080 f menuwin.obj - 0001:00012090 ??1MUB@@UAE@XZ 00413090 f menuwin.obj - 0001:000120b0 ?PmubNew@MUB@@SGPAV1@K@Z 004130b0 f menuwin.obj - 0001:00012140 ?Set@MUB@@UAEXXZ 00413140 f menuwin.obj - 0001:00012190 ?Clean@MUB@@UAEXXZ 00413190 f menuwin.obj - 0001:000122d0 ?EnqueueWcid@MUB@@UAEXJ@Z 004132d0 f menuwin.obj - 0001:00012310 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 00413310 f menuwin.obj - 0001:00012510 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 00413510 f menuwin.obj - 0001:000127a0 ?FRemoveAllListCid@MUB@@UAEHJ@Z 004137a0 f menuwin.obj - 0001:00012950 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 00413950 f menuwin.obj - 0001:00012ab0 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 00413ab0 f menuwin.obj - 0001:00012bf0 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 00413bf0 f menuwin.obj - 0001:00012c80 ?_FInitLists@MUB@@AAEHXZ 00413c80 f menuwin.obj - 0001:00012f80 ??_EMUB@@UAEPAXI@Z 00413f80 f menuwin.obj - 0001:00012f80 ??_GMUB@@UAEPAXI@Z 00413f80 f menuwin.obj - 0001:000130e0 ?FWouldBe@GRPB@@SGHJ@Z 004140e0 f groups.obj - 0001:00013100 ?FIs@GRPB@@UAEHJ@Z 00414100 f groups.obj - 0001:00013110 ?Cls@GRPB@@UAEJXZ 00414110 f groups.obj - 0001:00013120 ?FWouldBe@GLB@@SGHJ@Z 00414120 f groups.obj - 0001:00013140 ?FIs@GLB@@UAEHJ@Z 00414140 f groups.obj - 0001:00013150 ?Cls@GLB@@UAEJXZ 00414150 f groups.obj - 0001:00013160 ?FWouldBe@GL@@SGHJ@Z 00414160 f groups.obj - 0001:00013180 ?FIs@GL@@UAEHJ@Z 00414180 f groups.obj - 0001:00013190 ?Cls@GL@@UAEJXZ 00414190 f groups.obj - 0001:000131a0 ?FWouldBe@AL@@SGHJ@Z 004141a0 f groups.obj - 0001:000131c0 ?FIs@AL@@UAEHJ@Z 004141c0 f groups.obj - 0001:000131d0 ?Cls@AL@@UAEJXZ 004141d0 f groups.obj - 0001:000131e0 ?FWouldBe@GGB@@SGHJ@Z 004141e0 f groups.obj - 0001:00013200 ?FIs@GGB@@UAEHJ@Z 00414200 f groups.obj - 0001:00013210 ?Cls@GGB@@UAEJXZ 00414210 f groups.obj - 0001:00013220 ?FWouldBe@GG@@SGHJ@Z 00414220 f groups.obj - 0001:00013240 ?FIs@GG@@UAEHJ@Z 00414240 f groups.obj - 0001:00013250 ?Cls@GG@@UAEJXZ 00414250 f groups.obj - 0001:00013260 ?FWouldBe@AG@@SGHJ@Z 00414260 f groups.obj - 0001:00013280 ?FIs@AG@@UAEHJ@Z 00414280 f groups.obj - 0001:00013290 ?Cls@AG@@UAEJXZ 00414290 f groups.obj - 0001:000132a0 ??1GRPB@@UAE@XZ 004142a0 f groups.obj - 0001:000132d0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 004142d0 f groups.obj - 0001:000133b0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 004143b0 f groups.obj - 0001:00013480 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00414480 f groups.obj - 0001:000134d0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 004144d0 f groups.obj - 0001:000135a0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 004145a0 f groups.obj - 0001:00013660 ??0GLB@@IAE@J@Z 00414660 f groups.obj - 0001:00013690 ?QvGet@GLB@@QAEPAXJ@Z 00414690 f groups.obj - 0001:000136b0 ?Get@GLB@@QAEXJPAX@Z 004146b0 f groups.obj - 0001:000136d0 ?Put@GLB@@QAEXJPAX@Z 004146d0 f groups.obj - 0001:000136f0 ?PvLock@GLB@@QAEPAXJ@Z 004146f0 f groups.obj - 0001:00013710 ?SetMinGrow@GLB@@QAEXJ@Z 00414710 f groups.obj - 0001:00013740 ?PglNew@GL@@SGPAV1@JJ@Z 00414740 f groups.obj - 0001:000137a0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 004147a0 f groups.obj - 0001:00013800 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 00414800 f groups.obj - 0001:00013850 ??0GL@@IAE@J@Z 00414850 f groups.obj - 0001:00013870 ?FFree@GL@@UAEHJ@Z 00414870 f groups.obj - 0001:00013890 ?CbOnFile@GL@@UAEJXZ 00414890 f groups.obj - 0001:000138a0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 004148a0 f groups.obj - 0001:00013910 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00414910 f groups.obj - 0001:000139e0 ?FInsert@GL@@QAEHJPAXJ@Z 004149e0 f groups.obj - 0001:00013a80 ?Delete@GL@@UAEXJ@Z 00414a80 f groups.obj - 0001:00013a90 ?Delete@GL@@QAEXJJ@Z 00414a90 f groups.obj - 0001:00013ad0 ?Move@GL@@QAEXJJ@Z 00414ad0 f groups.obj - 0001:00013af0 ?FAdd@GL@@UAEHPAXPAJ@Z 00414af0 f groups.obj - 0001:00013b20 ?FPop@GL@@QAEHPAX@Z 00414b20 f groups.obj - 0001:00013b50 ?FSetIvMac@GL@@QAEHJ@Z 00414b50 f groups.obj - 0001:00013ba0 ?FEnsureSpace@GL@@QAEHJK@Z 00414ba0 f groups.obj - 0001:00013be0 ?PalNew@AL@@SGPAV1@JJ@Z 00414be0 f groups.obj - 0001:00013c40 ??0AL@@IAE@J@Z 00414c40 f groups.obj - 0001:00013c60 ?CbOnFile@AL@@UAEJXZ 00414c60 f groups.obj - 0001:00013c80 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 00414c80 f groups.obj - 0001:00013d00 ?FFree@AL@@UAEHJ@Z 00414d00 f groups.obj - 0001:00013d40 ?FEnsureSpace@AL@@QAEHJK@Z 00414d40 f groups.obj - 0001:00013d90 ?FAdd@AL@@UAEHPAXPAJ@Z 00414d90 f groups.obj - 0001:00013e30 ?Delete@AL@@UAEXJ@Z 00414e30 f groups.obj - 0001:00013ee0 ??0GGB@@IAE@JH@Z 00414ee0 f groups.obj - 0001:00013f20 ?CbOnFile@GGB@@UAEJXZ 00414f20 f groups.obj - 0001:00013f30 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00414f30 f groups.obj - 0001:00014020 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 00415020 f groups.obj - 0001:000141b0 ?FFree@GGB@@UAEHJ@Z 004151b0 f groups.obj - 0001:000141e0 ?FEnsureSpace@GGB@@QAEHJJK@Z 004151e0 f groups.obj - 0001:00014270 ?_RemoveRgb@GGB@@IAEXJJ@Z 00415270 f groups.obj - 0001:000142c0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 004152c0 f groups.obj - 0001:00014310 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00415310 f groups.obj - 0001:00014350 ?GetFixed@GGB@@QAEXJPAX@Z 00415350 f groups.obj - 0001:00014380 ?PutFixed@GGB@@QAEXJPAX@Z 00415380 f groups.obj - 0001:000143b0 ?Cb@GGB@@QAEJJ@Z 004153b0 f groups.obj - 0001:000143d0 ?QvGet@GGB@@QAEPAXJPAJ@Z 004153d0 f groups.obj - 0001:00014410 ?PvLock@GGB@@QAEPAXJPAJ@Z 00415410 f groups.obj - 0001:00014440 ?FPut@GGB@@QAEHJJPAX@Z 00415440 f groups.obj - 0001:000144b0 ?GetRgb@GGB@@QAEXJJJPAX@Z 004154b0 f groups.obj - 0001:000144f0 ?PutRgb@GGB@@QAEXJJJPAX@Z 004154f0 f groups.obj - 0001:00014530 ?DeleteRgb@GGB@@QAEXJJJ@Z 00415530 f groups.obj - 0001:000145c0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 004155c0 f groups.obj - 0001:000146e0 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 004156e0 f groups.obj - 0001:00014870 ?Merge@GGB@@QAEXJJ@Z 00415870 f groups.obj - 0001:00014910 ?PggNew@GG@@SGPAV1@JJJ@Z 00415910 f groups.obj - 0001:00014980 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00415980 f groups.obj - 0001:000149e0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 004159e0 f groups.obj - 0001:00014a30 ?FInsert@GG@@QAEHJJPAX0@Z 00415a30 f groups.obj - 0001:00014b00 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 00415b00 f groups.obj - 0001:00014c10 ?FAdd@GG@@UAEHJPAJPAX1@Z 00415c10 f groups.obj - 0001:00014c40 ?Delete@GG@@UAEXJ@Z 00415c40 f groups.obj - 0001:00014ca0 ?Move@GG@@QAEXJJ@Z 00415ca0 f groups.obj - 0001:00014cc0 ?PagNew@AG@@SGPAV1@JJJ@Z 00415cc0 f groups.obj - 0001:00014d30 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00415d30 f groups.obj - 0001:00014d90 ?FAdd@AG@@UAEHJPAJPAX1@Z 00415d90 f groups.obj - 0001:00014ea0 ?Delete@AG@@UAEXJ@Z 00415ea0 f groups.obj - 0001:00014f30 ??_EGRPB@@UAEPAXI@Z 00415f30 f groups.obj - 0001:00014f30 ??_GGRPB@@UAEPAXI@Z 00415f30 f groups.obj - 0001:00014f50 ??_EGG@@UAEPAXI@Z 00415f50 f groups.obj - 0001:00014f50 ??_GGG@@UAEPAXI@Z 00415f50 f groups.obj - 0001:00014f70 ??_EAG@@UAEPAXI@Z 00415f70 f groups.obj - 0001:00014f70 ??_GAG@@UAEPAXI@Z 00415f70 f groups.obj - 0001:00014f90 ??_EGLB@@UAEPAXI@Z 00415f90 f groups.obj - 0001:00014f90 ??_GGLB@@UAEPAXI@Z 00415f90 f groups.obj - 0001:00014fb0 ??_GGL@@UAEPAXI@Z 00415fb0 f groups.obj - 0001:00014fb0 ??_EGL@@UAEPAXI@Z 00415fb0 f groups.obj - 0001:00014fd0 ??_GAL@@UAEPAXI@Z 00415fd0 f groups.obj - 0001:00014fd0 ??_EAL@@UAEPAXI@Z 00415fd0 f groups.obj - 0001:00014ff0 ??_EGGB@@UAEPAXI@Z 00415ff0 f groups.obj - 0001:00014ff0 ??_GGGB@@UAEPAXI@Z 00415ff0 f groups.obj - 0001:00015010 ?FWouldBe@GSTB@@SGHJ@Z 00416010 f groups2.obj - 0001:00015030 ?FIs@GSTB@@UAEHJ@Z 00416030 f groups2.obj - 0001:00015040 ?Cls@GSTB@@UAEJXZ 00416040 f groups2.obj - 0001:00015050 ?FWouldBe@GST@@SGHJ@Z 00416050 f groups2.obj - 0001:00015070 ?FIs@GST@@UAEHJ@Z 00416070 f groups2.obj - 0001:00015080 ?Cls@GST@@UAEJXZ 00416080 f groups2.obj - 0001:00015090 ??0GSTB@@IAE@JK@Z 00416090 f groups2.obj - 0001:000150d0 ?CbOnFile@GSTB@@UAEJXZ 004160d0 f groups2.obj - 0001:000150e0 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 004160e0 f groups2.obj - 0001:000151e0 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 004161e0 f groups2.obj - 0001:000153b0 ?FEnsureSpace@GSTB@@QAEHJJK@Z 004163b0 f groups2.obj - 0001:00015420 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 00416420 f groups2.obj - 0001:00015440 ?FPutRgch@GSTB@@QAEHJPADJ@Z 00416440 f groups2.obj - 0001:000154e0 ?FPutStn@GSTB@@QAEHJPAVSTN@@@Z 004164e0 f groups2.obj - 0001:00015500 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 00416500 f groups2.obj - 0001:00015530 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 00416530 f groups2.obj - 0001:00015550 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 00416550 f groups2.obj - 0001:00015570 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 00416570 f groups2.obj - 0001:000155e0 ?GetExtra@GSTB@@QAEXJPAX@Z 004165e0 f groups2.obj - 0001:00015610 ?_Qst@GSTB@@IAEPADJ@Z 00416610 f groups2.obj - 0001:00015630 ?_AppendRgch@GSTB@@IAEXPADJ@Z 00416630 f groups2.obj - 0001:00015660 ?_RemoveSt@GSTB@@IAEXJ@Z 00416660 f groups2.obj - 0001:000156c0 ?_SwapBytesRgbst@GSTB@@IAEXXZ 004166c0 f groups2.obj - 0001:00015700 ?_TranslateGrst@GSTB@@IAEXFH@Z 00416700 f groups2.obj - 0001:000157b0 ?_FTranslateGrst@GSTB@@IAEHF@Z 004167b0 f groups2.obj - 0001:000159d0 ?FFree@GSTB@@UAEHJ@Z 004169d0 f groups2.obj - 0001:00015a00 ?PgstNew@GST@@SGPAV1@JJJ@Z 00416a00 f groups2.obj - 0001:00015a70 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 00416a70 f groups2.obj - 0001:00015ad0 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 00416ad0 f groups2.obj - 0001:00015b00 ?FFindRgch@GST@@UAEHPADJPAJK@Z 00416b00 f groups2.obj - 0001:00015bd0 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 00416bd0 f groups2.obj - 0001:00015c70 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 00416c70 f groups2.obj - 0001:00015c90 ?Delete@GST@@UAEXJ@Z 00416c90 f groups2.obj - 0001:00015ce0 ??_GGST@@UAEPAXI@Z 00416ce0 f groups2.obj - 0001:00015ce0 ??_EGST@@UAEPAXI@Z 00416ce0 f groups2.obj - 0001:00015d00 ??_EGSTB@@UAEPAXI@Z 00416d00 f groups2.obj - 0001:00015d00 ??_GGSTB@@UAEPAXI@Z 00416d00 f groups2.obj - 0001:00015d20 ?FWouldBe@MBMP@@SGHJ@Z 00416d20 f mbmp.obj - 0001:00015d40 ?FIs@MBMP@@UAEHJ@Z 00416d40 f mbmp.obj - 0001:00015d50 ?Cls@MBMP@@UAEJXZ 00416d50 f mbmp.obj - 0001:00015d60 ??1MBMP@@UAE@XZ 00416d60 f mbmp.obj - 0001:00015d80 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 00416d80 f mbmp.obj - 0001:00016160 ?PmbmpRead@MBMP@@SGPAV1@PAVBLCK@@@Z 00417160 f mbmp.obj - 0001:000162b0 ?CbOnFile@MBMP@@UAEJXZ 004172b0 f mbmp.obj - 0001:000162c0 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 004172c0 f mbmp.obj - 0001:00016320 ?GetRc@MBMP@@QAEXPAVRC@@@Z 00417320 f mbmp.obj - 0001:00016350 ?FReadMbmp@MBMP@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00417350 f mbmp.obj - 0001:000163c0 ??_EMBMP@@UAEPAXI@Z 004173c0 f mbmp.obj - 0001:000163c0 ??_GMBMP@@UAEPAXI@Z 004173c0 f mbmp.obj - 0001:00016470 ?FWouldBe@SNDV@@SGHJ@Z 00417470 f sndm.obj - 0001:00016490 ?FWouldBe@SNDM@@SGHJ@Z 00417490 f sndm.obj - 0001:000164b0 ?FIs@SNDM@@UAEHJ@Z 004174b0 f sndm.obj - 0001:000164c0 ?Cls@SNDM@@UAEJXZ 004174c0 f sndm.obj - 0001:000164d0 ?FWouldBe@SNDMQ@@SGHJ@Z 004174d0 f sndm.obj - 0001:000164f0 ?FIs@SNDMQ@@UAEHJ@Z 004174f0 f sndm.obj - 0001:00016500 ?Cls@SNDMQ@@UAEJXZ 00417500 f sndm.obj - 0001:00016510 ?FWouldBe@SNQUE@@SGHJ@Z 00417510 f sndm.obj - 0001:00016530 ?FIs@SNQUE@@UAEHJ@Z 00417530 f sndm.obj - 0001:00016540 ?Cls@SNQUE@@UAEJXZ 00417540 f sndm.obj - 0001:00016550 ?BeginSynch@SNDV@@UAEXXZ 00417550 f sndm.obj - 0001:00016560 ?EndSynch@SNDV@@UAEXXZ 00417560 f sndm.obj - 0001:00016570 ??0SNDM@@IAE@XZ 00417570 f sndm.obj - 0001:00016590 ??1SNDM@@UAE@XZ 00417590 f sndm.obj - 0001:00016600 ?PsndmNew@SNDM@@SGPAV1@XZ 00417600 f sndm.obj - 0001:00016640 ?_FInit@SNDM@@IAEHXZ 00417640 f sndm.obj - 0001:00016670 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 00417670 f sndm.obj - 0001:000166f0 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 004176f0 f sndm.obj - 0001:000167c0 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 004177c0 f sndm.obj - 0001:000167f0 ?RemoveSndv@SNDM@@UAEXK@Z 004177f0 f sndm.obj - 0001:00016840 ?FActive@SNDM@@UAEHXZ 00417840 f sndm.obj - 0001:00016850 ?Activate@SNDM@@UAEXH@Z 00417850 f sndm.obj - 0001:000168c0 ?Suspend@SNDM@@UAEXH@Z 004178c0 f sndm.obj - 0001:00016910 ?SetVlm@SNDM@@UAEXJ@Z 00417910 f sndm.obj - 0001:00016960 ?VlmCur@SNDM@@UAEJXZ 00417960 f sndm.obj - 0001:000169b0 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 004179b0 f sndm.obj - 0001:00016a20 ?Stop@SNDM@@UAEXJ@Z 00417a20 f sndm.obj - 0001:00016a70 ?StopAll@SNDM@@UAEXJJ@Z 00417a70 f sndm.obj - 0001:00016ac0 ?Pause@SNDM@@UAEXJ@Z 00417ac0 f sndm.obj - 0001:00016b10 ?PauseAll@SNDM@@UAEXJJ@Z 00417b10 f sndm.obj - 0001:00016b60 ?Resume@SNDM@@UAEXJ@Z 00417b60 f sndm.obj - 0001:00016bb0 ?ResumeAll@SNDM@@UAEXJJ@Z 00417bb0 f sndm.obj - 0001:00016c00 ?FPlaying@SNDM@@UAEHJ@Z 00417c00 f sndm.obj - 0001:00016c60 ?FPlayingAll@SNDM@@UAEHJJ@Z 00417c60 f sndm.obj - 0001:00016cc0 ?Flush@SNDM@@UAEXXZ 00417cc0 f sndm.obj - 0001:00016d00 ?BeginSynch@SNDM@@UAEXXZ 00417d00 f sndm.obj - 0001:00016d40 ?EndSynch@SNDM@@UAEXXZ 00417d40 f sndm.obj - 0001:00016d80 ??1SNDMQ@@UAE@XZ 00417d80 f sndm.obj - 0001:00016df0 ?_FInit@SNDMQ@@MAEHXZ 00417df0 f sndm.obj - 0001:00016e20 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 00417e20 f sndm.obj - 0001:00016f30 ?FActive@SNDMQ@@UAEHXZ 00417f30 f sndm.obj - 0001:00016f40 ?Activate@SNDMQ@@UAEXH@Z 00417f40 f sndm.obj - 0001:00016f90 ?Suspend@SNDMQ@@UAEXH@Z 00417f90 f sndm.obj - 0001:00016fd0 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 00417fd0 f sndm.obj - 0001:00017040 ?Stop@SNDMQ@@UAEXJ@Z 00418040 f sndm.obj - 0001:00017080 ?StopAll@SNDMQ@@UAEXJJ@Z 00418080 f sndm.obj - 0001:000170e0 ?Pause@SNDMQ@@UAEXJ@Z 004180e0 f sndm.obj - 0001:00017120 ?PauseAll@SNDMQ@@UAEXJJ@Z 00418120 f sndm.obj - 0001:00017180 ?Resume@SNDMQ@@UAEXJ@Z 00418180 f sndm.obj - 0001:000171c0 ?ResumeAll@SNDMQ@@UAEXJJ@Z 004181c0 f sndm.obj - 0001:00017220 ?FPlaying@SNDMQ@@UAEHJ@Z 00418220 f sndm.obj - 0001:00017280 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 00418280 f sndm.obj - 0001:000172f0 ?Flush@SNDMQ@@UAEXXZ 004182f0 f sndm.obj - 0001:00017370 ??0SNQUE@@IAE@XZ 00418370 f sndm.obj - 0001:00017390 ??1SNQUE@@UAE@XZ 00418390 f sndm.obj - 0001:00017410 ?_FInit@SNQUE@@MAEHXZ 00418410 f sndm.obj - 0001:00017430 ?_Enter@SNQUE@@MAEXXZ 00418430 f sndm.obj - 0001:00017440 ?_Leave@SNQUE@@MAEXXZ 00418440 f sndm.obj - 0001:00017450 ?_Flush@SNQUE@@MAEXXZ 00418450 f sndm.obj - 0001:000174b0 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 004184b0 f sndm.obj - 0001:00017570 ?Stop@SNQUE@@QAEXJ@Z 00418570 f sndm.obj - 0001:000175f0 ?StopAll@SNQUE@@QAEXJ@Z 004185f0 f sndm.obj - 0001:00017680 ?Pause@SNQUE@@QAEXJ@Z 00418680 f sndm.obj - 0001:00017700 ?PauseAll@SNQUE@@QAEXJ@Z 00418700 f sndm.obj - 0001:000177a0 ?Resume@SNQUE@@QAEXJ@Z 004187a0 f sndm.obj - 0001:00017820 ?ResumeAll@SNQUE@@QAEXJ@Z 00418820 f sndm.obj - 0001:000178b0 ?FPlaying@SNQUE@@QAEHJ@Z 004188b0 f sndm.obj - 0001:00017920 ?FPlayingAll@SNQUE@@QAEHJ@Z 00418920 f sndm.obj - 0001:00017990 ?Flush@SNQUE@@QAEXXZ 00418990 f sndm.obj - 0001:000179a0 ?LuVolScale@@YGKKJ@Z 004189a0 f sndm.obj - 0001:00017a30 ??_GSNDM@@UAEPAXI@Z 00418a30 f sndm.obj - 0001:00017a30 ??_ESNDM@@UAEPAXI@Z 00418a30 f sndm.obj - 0001:00017a50 ??_GSNDMQ@@UAEPAXI@Z 00418a50 f sndm.obj - 0001:00017a50 ??_ESNDMQ@@UAEPAXI@Z 00418a50 f sndm.obj - 0001:00017a70 ??_ESNQUE@@UAEPAXI@Z 00418a70 f sndm.obj - 0001:00017a70 ??_GSNQUE@@UAEPAXI@Z 00418a70 f sndm.obj - 0001:00017b20 ?FWouldBe@SDAM@@SGHJ@Z 00418b20 f sndam.obj - 0001:00017b40 ?FIs@SDAM@@UAEHJ@Z 00418b40 f sndam.obj - 0001:00017b50 ?Cls@SDAM@@UAEJXZ 00418b50 f sndam.obj - 0001:00017b60 ?FWouldBe@CAMS@@SGHJ@Z 00418b60 f sndam.obj - 0001:00017b80 ?FIs@CAMS@@UAEHJ@Z 00418b80 f sndam.obj - 0001:00017b90 ?Cls@CAMS@@UAEJXZ 00418b90 f sndam.obj - 0001:00017ba0 ?FWouldBe@AMQUE@@SGHJ@Z 00418ba0 f sndam.obj - 0001:00017bc0 ?FIs@AMQUE@@UAEHJ@Z 00418bc0 f sndam.obj - 0001:00017bd0 ?Cls@AMQUE@@UAEJXZ 00418bd0 f sndam.obj - 0001:00017bf0 ??0STBL@@IAE@XZ 00418bf0 f sndam.obj - 0001:00017c20 ?Write@STBL@@UAGJPBXKPAK@Z 00418c20 f sndam.obj - 0001:00017c40 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 00418c40 f sndam.obj - 0001:00017c50 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00418c50 f sndam.obj - 0001:00017c90 ?Commit@STBL@@UAGJK@Z 00418c90 f sndam.obj - 0001:00017ca0 ?Revert@STBL@@UAGJXZ 00418ca0 f sndam.obj - 0001:00017cb0 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00418cb0 f sndam.obj - 0001:00017cc0 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 00418cc0 f sndam.obj - 0001:00017cd0 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 00418cd0 f sndam.obj - 0001:00017ce0 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 00418ce0 f sndam.obj - 0001:00017d00 ??1STBL@@IAE@XZ 00418d00 f sndam.obj - 0001:00017d10 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 00418d10 f sndam.obj - 0001:00017d70 ?AddRef@STBL@@UAGKXZ 00418d70 f sndam.obj - 0001:00017d80 ?Release@STBL@@UAGKXZ 00418d80 f sndam.obj - 0001:00017db0 ?Read@STBL@@UAGJPAXKPAK@Z 00418db0 f sndam.obj - 0001:00017e20 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00418e20 f sndam.obj - 0001:00017ec0 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 00418ec0 f sndam.obj - 0001:000180a0 ??0CAMS@@IAE@XZ 004190a0 f sndam.obj - 0001:000180c0 ??1CAMS@@UAE@XZ 004190c0 f sndam.obj - 0001:00018100 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00419100 f sndam.obj - 0001:00018200 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 00419200 f sndam.obj - 0001:00018270 ??0AMNOT@@QAE@XZ 00419270 f sndam.obj - 0001:00018290 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 00419290 f sndam.obj - 0001:000182a0 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 004192a0 f sndam.obj - 0001:000182b0 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 004192b0 f sndam.obj - 0001:000182c0 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 004192c0 f sndam.obj - 0001:000182d0 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 004192d0 f sndam.obj - 0001:00018330 ?AddRef@AMNOT@@UAGKXZ 00419330 f sndam.obj - 0001:00018340 ?Release@AMNOT@@UAGKXZ 00419340 f sndam.obj - 0001:00018360 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 00419360 f sndam.obj - 0001:00018380 ??0AMQUE@@IAE@XZ 00419380 f sndam.obj - 0001:000183b0 ??1AMQUE@@UAE@XZ 004193b0 f sndam.obj - 0001:000183f0 ?PamqueNew@AMQUE@@SGPAV1@XZ 004193f0 f sndam.obj - 0001:00018430 ?_FInit@AMQUE@@MAEHXZ 00419430 f sndam.obj - 0001:000184a0 ?_Enter@AMQUE@@MAEXXZ 004194a0 f sndam.obj - 0001:000184b0 ?_Leave@AMQUE@@MAEXXZ 004194b0 f sndam.obj - 0001:000184c0 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 004194c0 f sndam.obj - 0001:000184e0 ?_Queue@AMQUE@@MAEXJ@Z 004194e0 f sndam.obj - 0001:000186c0 ?_PauseQueue@AMQUE@@MAEXJ@Z 004196c0 f sndam.obj - 0001:00018730 ?_ResumeQueue@AMQUE@@MAEXJ@Z 00419730 f sndam.obj - 0001:00018740 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 00419740 f sndam.obj - 0001:000187d0 ??0SDAM@@IAE@XZ 004197d0 f sndam.obj - 0001:000187f0 ??1SDAM@@UAE@XZ 004197f0 f sndam.obj - 0001:00018830 ?PsdamNew@SDAM@@SGPAV1@J@Z 00419830 f sndam.obj - 0001:00018880 ?FHaveWaveDevice@@YGHK@Z 00419880 f sndam.obj - 0001:000188f0 ?_FInit@SDAM@@MAEHJ@Z 004198f0 f sndam.obj - 0001:00018a50 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 00419a50 f sndam.obj - 0001:00018a60 ?_Suspend@SDAM@@MAEXH@Z 00419a60 f sndam.obj - 0001:00018ae0 ?SetVlm@SDAM@@UAEXJ@Z 00419ae0 f sndam.obj - 0001:00018b20 ?VlmCur@SDAM@@UAEJXZ 00419b20 f sndam.obj - 0001:00018b30 ?BeginSynch@SDAM@@UAEXXZ 00419b30 f sndam.obj - 0001:00018b60 ?EndSynch@SDAM@@UAEXXZ 00419b60 f sndam.obj - 0001:00018bc0 ??_ECAMS@@UAEPAXI@Z 00419bc0 f sndam.obj - 0001:00018bc0 ??_GCAMS@@UAEPAXI@Z 00419bc0 f sndam.obj - 0001:00018be0 ??_EAMQUE@@UAEPAXI@Z 00419be0 f sndam.obj - 0001:00018be0 ??_GAMQUE@@UAEPAXI@Z 00419be0 f sndam.obj - 0001:00018c00 ??_GSDAM@@UAEPAXI@Z 00419c00 f sndam.obj - 0001:00018c00 ??_ESDAM@@UAEPAXI@Z 00419c00 f sndam.obj - 0001:00018cc0 ?FWouldBe@MIDO@@SGHJ@Z 00419cc0 f mididev.obj - 0001:00018ce0 ?FIs@MIDO@@UAEHJ@Z 00419ce0 f mididev.obj - 0001:00018cf0 ?Cls@MIDO@@UAEJXZ 00419cf0 f mididev.obj - 0001:00018d00 ??0MIDO@@QAE@XZ 00419d00 f mididev.obj - 0001:00018d40 ??1MIDO@@UAE@XZ 00419d40 f mididev.obj - 0001:00018d80 ?_GetSysVol@MIDO@@IAEXXZ 00419d80 f mididev.obj - 0001:00018da0 ?_SetSysVol@MIDO@@IAEXK@Z 00419da0 f mididev.obj - 0001:00018dc0 ?_Reset@MIDO@@IAEXXZ 00419dc0 f mididev.obj - 0001:00018e20 ?Suspend@MIDO@@QAEXH@Z 00419e20 f mididev.obj - 0001:00018f10 ??_EMIDO@@UAEPAXI@Z 00419f10 f mididev.obj - 0001:00018f10 ??_GMIDO@@UAEPAXI@Z 00419f10 f mididev.obj - 0001:00018fc0 ?FWouldBe@MDWS@@SGHJ@Z 00419fc0 f mididev2.obj - 0001:00018fe0 ?FIs@MDWS@@UAEHJ@Z 00419fe0 f mididev2.obj - 0001:00018ff0 ?Cls@MDWS@@UAEJXZ 00419ff0 f mididev2.obj - 0001:00019000 ?FWouldBe@MSQUE@@SGHJ@Z 0041a000 f mididev2.obj - 0001:00019020 ?FIs@MSQUE@@UAEHJ@Z 0041a020 f mididev2.obj - 0001:00019030 ?Cls@MSQUE@@UAEJXZ 0041a030 f mididev2.obj - 0001:00019040 ?FWouldBe@MDPS@@SGHJ@Z 0041a040 f mididev2.obj - 0001:00019060 ?FIs@MDPS@@UAEHJ@Z 0041a060 f mididev2.obj - 0001:00019070 ?Cls@MDPS@@UAEJXZ 0041a070 f mididev2.obj - 0001:00019080 ?FWouldBe@MSMIX@@SGHJ@Z 0041a080 f mididev2.obj - 0001:000190a0 ?FIs@MSMIX@@UAEHJ@Z 0041a0a0 f mididev2.obj - 0001:000190b0 ?Cls@MSMIX@@UAEJXZ 0041a0b0 f mididev2.obj - 0001:000190c0 ?FWouldBe@MISI@@SGHJ@Z 0041a0c0 f mididev2.obj - 0001:000190e0 ?FIs@MISI@@UAEHJ@Z 0041a0e0 f mididev2.obj - 0001:000190f0 ?Cls@MISI@@UAEJXZ 0041a0f0 f mididev2.obj - 0001:00019100 ?FWouldBe@WMS@@SGHJ@Z 0041a100 f mididev2.obj - 0001:00019120 ?FIs@WMS@@UAEHJ@Z 0041a120 f mididev2.obj - 0001:00019130 ?Cls@WMS@@UAEJXZ 0041a130 f mididev2.obj - 0001:00019140 ?FWouldBe@OMS@@SGHJ@Z 0041a140 f mididev2.obj - 0001:00019160 ?FIs@OMS@@UAEHJ@Z 0041a160 f mididev2.obj - 0001:00019170 ?Cls@OMS@@UAEJXZ 0041a170 f mididev2.obj - 0001:00019180 ??0MDPS@@IAE@XZ 0041a180 f mididev2.obj - 0001:000191a0 ??1MDPS@@UAE@XZ 0041a1a0 f mididev2.obj - 0001:000191e0 ?PmdpsNew@MDPS@@SGPAV1@XZ 0041a1e0 f mididev2.obj - 0001:00019220 ?_FInit@MDPS@@MAEHXZ 0041a220 f mididev2.obj - 0001:00019270 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 0041a270 f mididev2.obj - 0001:00019280 ?_Suspend@MDPS@@MAEXH@Z 0041a280 f mididev2.obj - 0001:00019290 ?SetVlm@MDPS@@UAEXJ@Z 0041a290 f mididev2.obj - 0001:000192a0 ?VlmCur@MDPS@@UAEJXZ 0041a2a0 f mididev2.obj - 0001:000192b0 ??0MDWS@@IAE@XZ 0041a2b0 f mididev2.obj - 0001:000192d0 ??1MDWS@@UAE@XZ 0041a2d0 f mididev2.obj - 0001:00019300 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0041a300 f mididev2.obj - 0001:00019370 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 0041a370 f mididev2.obj - 0001:000193e0 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 0041a3e0 f mididev2.obj - 0001:00019560 ?PvLockData@MDWS@@QAEPAXPAJ@Z 0041a560 f mididev2.obj - 0001:00019580 ?UnlockData@MDWS@@QAEXXZ 0041a580 f mididev2.obj - 0001:000195a0 ??0MSQUE@@IAE@XZ 0041a5a0 f mididev2.obj - 0001:000195c0 ??1MSQUE@@UAE@XZ 0041a5c0 f mididev2.obj - 0001:00019610 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 0041a610 f mididev2.obj - 0001:00019660 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 0041a660 f mididev2.obj - 0001:00019690 ?_Enter@MSQUE@@MAEXXZ 0041a690 f mididev2.obj - 0001:000196a0 ?_Leave@MSQUE@@MAEXXZ 0041a6a0 f mididev2.obj - 0001:000196b0 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 0041a6b0 f mididev2.obj - 0001:000196d0 ?_Queue@MSQUE@@MAEXJ@Z 0041a6d0 f mididev2.obj - 0001:00019790 ?_PauseQueue@MSQUE@@MAEXJ@Z 0041a790 f mididev2.obj - 0001:00019800 ?_ResumeQueue@MSQUE@@MAEXJ@Z 0041a800 f mididev2.obj - 0001:00019810 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 0041a810 f mididev2.obj - 0001:00019870 ??0MSMIX@@IAE@XZ 0041a870 f mididev2.obj - 0001:000198a0 ??1MSMIX@@UAE@XZ 0041a8a0 f mididev2.obj - 0001:00019930 ?PmsmixNew@MSMIX@@SGPAV1@XZ 0041a930 f mididev2.obj - 0001:00019970 ?_FInit@MSMIX@@IAEHXZ 0041a970 f mididev2.obj - 0001:00019a10 ?Suspend@MSMIX@@QAEXH@Z 0041aa10 f mididev2.obj - 0001:00019a70 ?_StopStream@MSMIX@@IAEXXZ 0041aa70 f mididev2.obj - 0001:00019ac0 ?SetVlm@MSMIX@@QAEXJ@Z 0041aac0 f mididev2.obj - 0001:00019b20 ?VlmCur@MSMIX@@QAEJXZ 0041ab20 f mididev2.obj - 0001:00019b30 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 0041ab30 f mididev2.obj - 0001:00019ca0 ?_Restart@MSMIX@@IAEXH@Z 0041aca0 f mididev2.obj - 0001:00019d20 ?_SubmitBuffers@MSMIX@@IAEXK@Z 0041ad20 f mididev2.obj - 0001:00019ee0 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 0041aee0 f mididev2.obj - 0001:0001a1b0 ?_MidiProc@MSMIX@@KGXKPAXK@Z 0041b1b0 f mididev2.obj - 0001:0001a1d0 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 0041b1d0 f mididev2.obj - 0001:0001a2a0 ?_ThreadProc@MSMIX@@KGKPAX@Z 0041b2a0 f mididev2.obj - 0001:0001a2b0 ?_LuThread@MSMIX@@IAEKXZ 0041b2b0 f mididev2.obj - 0001:0001a3e0 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 0041b3e0 f mididev2.obj - 0001:0001a420 ?_Reset@MISI@@IAEXXZ 0041b420 f mididev2.obj - 0001:0001a460 ?_GetSysVol@MISI@@IAEXXZ 0041b460 f mididev2.obj - 0001:0001a570 ?_SetSysVol@MISI@@IAEXK@Z 0041b570 f mididev2.obj - 0001:0001a590 ?_SetSysVlm@MISI@@IAEXXZ 0041b590 f mididev2.obj - 0001:0001a5b0 ?SetVlm@MISI@@UAEXJ@Z 0041b5b0 f mididev2.obj - 0001:0001a5d0 ?VlmCur@MISI@@UAEJXZ 0041b5d0 f mididev2.obj - 0001:0001a5e0 ?FActive@MISI@@UAEHXZ 0041b5e0 f mididev2.obj - 0001:0001a5f0 ?FActivate@MISI@@UAEHH@Z 0041b5f0 f mididev2.obj - 0001:0001a610 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 0041b610 f mididev2.obj - 0001:0001a640 ??1WMS@@UAE@XZ 0041b640 f mididev2.obj - 0001:0001a6c0 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 0041b6c0 f mididev2.obj - 0001:0001a710 ?_FInit@WMS@@IAEHXZ 0041b710 f mididev2.obj - 0001:0001a8d0 ?_FOpen@WMS@@MAEHXZ 0041b8d0 f mididev2.obj - 0001:0001a980 ?_FClose@WMS@@MAEHXZ 0041b980 f mididev2.obj - 0001:0001a9f0 ?FActive@WMS@@UAEHXZ 0041b9f0 f mididev2.obj - 0001:0001aa00 ?FActivate@WMS@@UAEHH@Z 0041ba00 f mididev2.obj - 0001:0001aa30 ?_ResetStream@WMS@@IAEXXZ 0041ba30 f mididev2.obj - 0001:0001aa60 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 0041ba60 f mididev2.obj - 0001:0001ab30 ?_CmhSubmitBuffers@WMS@@IAEJXZ 0041bb30 f mididev2.obj - 0001:0001ac50 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 0041bc50 f mididev2.obj - 0001:0001acc0 ?StopPlaying@WMS@@UAEXXZ 0041bcc0 f mididev2.obj - 0001:0001ad90 ?_MidiProc@WMS@@KGXPAXKKKK@Z 0041bd90 f mididev2.obj - 0001:0001adb0 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 0041bdb0 f mididev2.obj - 0001:0001ae30 ?_ThreadProc@WMS@@KGKPAX@Z 0041be30 f mididev2.obj - 0001:0001ae40 ?_LuThread@WMS@@IAEKXZ 0041be40 f mididev2.obj - 0001:0001ae90 ?_DoCallBacks@WMS@@IAEXXZ 0041be90 f mididev2.obj - 0001:0001af20 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 0041bf20 f mididev2.obj - 0001:0001af50 ??1OMS@@UAE@XZ 0041bf50 f mididev2.obj - 0001:0001afc0 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 0041bfc0 f mididev2.obj - 0001:0001b010 ?_FInit@OMS@@IAEHXZ 0041c010 f mididev2.obj - 0001:0001b0a0 ?_FOpen@OMS@@MAEHXZ 0041c0a0 f mididev2.obj - 0001:0001b110 ?_FClose@OMS@@MAEHXZ 0041c110 f mididev2.obj - 0001:0001b180 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 0041c180 f mididev2.obj - 0001:0001b210 ?StopPlaying@OMS@@UAEXXZ 0041c210 f mididev2.obj - 0001:0001b240 ?_ThreadProc@OMS@@KGKPAX@Z 0041c240 f mididev2.obj - 0001:0001b250 ?_LuThread@OMS@@IAEKXZ 0041c250 f mididev2.obj - 0001:0001b3d0 ?_ReleaseBuffers@OMS@@IAEXXZ 0041c3d0 f mididev2.obj - 0001:0001b460 ??_EMDPS@@UAEPAXI@Z 0041c460 f mididev2.obj - 0001:0001b460 ??_GMDPS@@UAEPAXI@Z 0041c460 f mididev2.obj - 0001:0001b480 ??_EMDWS@@UAEPAXI@Z 0041c480 f mididev2.obj - 0001:0001b480 ??_GMDWS@@UAEPAXI@Z 0041c480 f mididev2.obj - 0001:0001b4a0 ??_EMSQUE@@UAEPAXI@Z 0041c4a0 f mididev2.obj - 0001:0001b4a0 ??_GMSQUE@@UAEPAXI@Z 0041c4a0 f mididev2.obj - 0001:0001b4c0 ??_GMSMIX@@UAEPAXI@Z 0041c4c0 f mididev2.obj - 0001:0001b4c0 ??_EMSMIX@@UAEPAXI@Z 0041c4c0 f mididev2.obj - 0001:0001b4e0 ??_GMISI@@UAEPAXI@Z 0041c4e0 f mididev2.obj - 0001:0001b4e0 ??_EMISI@@UAEPAXI@Z 0041c4e0 f mididev2.obj - 0001:0001b500 ??_GWMS@@UAEPAXI@Z 0041c500 f mididev2.obj - 0001:0001b500 ??_EWMS@@UAEPAXI@Z 0041c500 f mididev2.obj - 0001:0001b520 ??_GOMS@@UAEPAXI@Z 0041c520 f mididev2.obj - 0001:0001b520 ??_EOMS@@UAEPAXI@Z 0041c520 f mididev2.obj - 0001:0001b540 ?FWouldBe@MSTP@@SGHJ@Z 0041c540 f midi.obj - 0001:0001b560 ?FIs@MSTP@@UAEHJ@Z 0041c560 f midi.obj - 0001:0001b570 ?Cls@MSTP@@UAEJXZ 0041c570 f midi.obj - 0001:0001b580 ?FWouldBe@MIDS@@SGHJ@Z 0041c580 f midi.obj - 0001:0001b5a0 ?FIs@MIDS@@UAEHJ@Z 0041c5a0 f midi.obj - 0001:0001b5b0 ?Cls@MIDS@@UAEJXZ 0041c5b0 f midi.obj - 0001:0001b5c0 ??0MSTP@@QAE@XZ 0041c5c0 f midi.obj - 0001:0001b5e0 ??1MSTP@@UAE@XZ 0041c5e0 f midi.obj - 0001:0001b620 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 0041c620 f midi.obj - 0001:0001b6b0 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 0041c6b0 f midi.obj - 0001:0001ba10 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 0041ca10 f midi.obj - 0001:0001ba60 ??0MIDS@@IAE@XZ 0041ca60 f midi.obj - 0001:0001ba80 ??1MIDS@@UAE@XZ 0041ca80 f midi.obj - 0001:0001baa0 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 0041caa0 f midi.obj - 0001:0001bb10 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 0041cb10 f midi.obj - 0001:0001bb30 ?CbOnFile@MIDS@@UAEJXZ 0041cb30 f midi.obj - 0001:0001bb50 ??_GMSTP@@UAEPAXI@Z 0041cb50 f midi.obj - 0001:0001bb50 ??_EMSTP@@UAEPAXI@Z 0041cb50 f midi.obj - 0001:0001bb70 ??_GMIDS@@UAEPAXI@Z 0041cb70 f midi.obj - 0001:0001bb70 ??_EMIDS@@UAEPAXI@Z 0041cb70 f midi.obj - 0001:0001bc50 ??_9@$BEM@A 0041cc50 f video.obj - 0001:0001bda0 ?FWouldBe@TXHD@@SGHJ@Z 0041cda0 f kidhelp.obj - 0001:0001bdc0 ?FIs@TXHD@@UAEHJ@Z 0041cdc0 f kidhelp.obj - 0001:0001bdd0 ?Cls@TXHD@@UAEJXZ 0041cdd0 f kidhelp.obj - 0001:0001bde0 ??0TXHD@@IAE@PAVRCA@@PAVDOCB@@K@Z 0041cde0 f kidhelp.obj - 0001:0001be30 ??1TXHD@@MAE@XZ 0041ce30 f kidhelp.obj - 0001:0001be60 ?_FReadChunk@TXHD@@MAEHPAVCFL@@KKPAVSTRG@@K@Z 0041ce60 f kidhelp.obj - 0001:0001c140 ?_FOpenArg@TXHD@@MAEHJEFF@Z 0041d140 f kidhelp.obj - 0001:0001c2e0 ?FSaveToChunk@TXHD@@UAEHPAVCFL@@PAUCKI@@H@Z 0041d2e0 f kidhelp.obj - 0001:0001c420 ?_FGetObjectRc@TXHD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 0041d420 f kidhelp.obj - 0001:0001c5c0 ?_FDrawObject@TXHD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0041d5c0 f kidhelp.obj - 0001:0001c850 ?FInsertPicture@TXHD@@QAEHKPAXJJJPAUCHP@@K@Z 0041d850 f kidhelp.obj - 0001:0001c910 ?FInsertButton@TXHD@@QAEHKKPAXJJJPAUCHP@@K@Z 0041d910 f kidhelp.obj - 0001:0001c9d0 ?FGroupText@TXHD@@QAEHJJEKPAVSTN@@@Z 0041d9d0 f kidhelp.obj - 0001:0001cb50 ?FGrouped@TXHD@@QAEHJPAJ0PAEPAKPAVSTN@@@Z 0041db50 f kidhelp.obj - 0001:0001cc70 ?GetHtop@TXHD@@QAEXPAUHTOP@@@Z 0041dc70 f kidhelp.obj - 0001:0001cd30 ??_GTXHD@@MAEPAXI@Z 0041dd30 f kidhelp.obj - 0001:0001cd30 ??_ETXHD@@MAEPAXI@Z 0041dd30 f kidhelp.obj - 0001:0001cd50 ?FDirty@DOCB@@UAEHXZ 0041dd50 f kidhelp.obj - 0001:0001cd70 ?SetDirty@DOCB@@UAEXH@Z 0041dd70 f kidhelp.obj - 0001:0001ce30 ?FCmdClickedCore@GOK@@QAEHPAUCMD@@@Z 0041de30 f kidspace.obj - 0001:0001ce50 ??_9@$BKM@A 0041de50 f kidspace.obj - 0001:0001ce60 ??_9@$BLE@A 0041de60 f kidspace.obj - 0001:0001cf20 ?FWouldBe@STRG@@SGHJ@Z 0041df20 f screxe.obj - 0001:0001cf40 ?FIs@STRG@@UAEHJ@Z 0041df40 f screxe.obj - 0001:0001cf50 ?Cls@STRG@@UAEJXZ 0041df50 f screxe.obj - 0001:0001cf70 ??0STRG@@QAE@XZ 0041df70 f screxe.obj - 0001:0001cf90 ??1STRG@@UAE@XZ 0041df90 f screxe.obj - 0001:0001cfc0 ?FPut@STRG@@QAEHJPAVSTN@@@Z 0041dfc0 f screxe.obj - 0001:0001d030 ?FGet@STRG@@QAEHJPAVSTN@@@Z 0041e030 f screxe.obj - 0001:0001d080 ?_FFind@STRG@@IAEHJPAJ@Z 0041e080 f screxe.obj - 0001:0001d110 ?_FEnsureGst@STRG@@IAEHXZ 0041e110 f screxe.obj - 0001:0001d150 ??_GSTRG@@UAEPAXI@Z 0041e150 f screxe.obj - 0001:0001d150 ??_ESTRG@@UAEPAXI@Z 0041e150 f screxe.obj - 0001:0001d170 ?FWouldBe@TXTB@@SGHJ@Z 0041e170 f rtxt.obj - 0001:0001d190 ?FIs@TXTB@@UAEHJ@Z 0041e190 f rtxt.obj - 0001:0001d1a0 ?Cls@TXTB@@UAEJXZ 0041e1a0 f rtxt.obj - 0001:0001d1b0 ?FWouldBe@TXRD@@SGHJ@Z 0041e1b0 f rtxt.obj - 0001:0001d1d0 ?FIs@TXRD@@UAEHJ@Z 0041e1d0 f rtxt.obj - 0001:0001d1e0 ?Cls@TXRD@@UAEJXZ 0041e1e0 f rtxt.obj - 0001:0001d1f0 ?FWouldBe@TXTG@@SGHJ@Z 0041e1f0 f rtxt.obj - 0001:0001d210 ?FIs@TXTG@@UAEHJ@Z 0041e210 f rtxt.obj - 0001:0001d220 ?Cls@TXTG@@UAEJXZ 0041e220 f rtxt.obj - 0001:0001d230 ?FWouldBe@TXRG@@SGHJ@Z 0041e230 f rtxt.obj - 0001:0001d250 ?FIs@TXRG@@UAEHJ@Z 0041e250 f rtxt.obj - 0001:0001d260 ?Cls@TXRG@@UAEJXZ 0041e260 f rtxt.obj - 0001:0001d270 ?FWouldBe@RTUN@@SGHJ@Z 0041e270 f rtxt.obj - 0001:0001d290 ?FIs@RTUN@@UAEHJ@Z 0041e290 f rtxt.obj - 0001:0001d2a0 ?Cls@RTUN@@UAEJXZ 0041e2a0 f rtxt.obj - 0001:0001d2b0 ??0TXTB@@IAE@PAVDOCB@@K@Z 0041e2b0 f rtxt.obj - 0001:0001d2f0 ??1TXTB@@MAE@XZ 0041e2f0 f rtxt.obj - 0001:0001d340 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 0041e340 f rtxt.obj - 0001:0001d420 ?_FLoad@TXTB@@MAEHF@Z 0041e420 f rtxt.obj - 0001:0001d4b0 ?CpMac@TXTB@@QAEJXZ 0041e4b0 f rtxt.obj - 0001:0001d4c0 ?SuspendUndo@TXTB@@UAEXXZ 0041e4c0 f rtxt.obj - 0001:0001d4d0 ?ResumeUndo@TXTB@@UAEXXZ 0041e4d0 f rtxt.obj - 0001:0001d4e0 ?FSetUndo@TXTB@@UAEHJJJ@Z 0041e4e0 f rtxt.obj - 0001:0001d4f0 ?CancelUndo@TXTB@@UAEXXZ 0041e4f0 f rtxt.obj - 0001:0001d500 ?CommitUndo@TXTB@@UAEXXZ 0041e500 f rtxt.obj - 0001:0001d510 ?BumpCombineUndo@TXTB@@UAEXXZ 0041e510 f rtxt.obj - 0001:0001d520 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 0041e520 f rtxt.obj - 0001:0001d640 ?HideSel@TXTB@@UAEXXZ 0041e640 f rtxt.obj - 0001:0001d670 ?SetSel@TXTB@@UAEXJJJ@Z 0041e670 f rtxt.obj - 0001:0001d6b0 ?ShowSel@TXTB@@UAEXXZ 0041e6b0 f rtxt.obj - 0001:0001d6e0 ?_CacheRange@TXTB@@MAEXJJ@Z 0041e6e0 f rtxt.obj - 0001:0001d830 ?_InvalCache@TXTB@@MAEXJJJ@Z 0041e830 f rtxt.obj - 0001:0001d8e0 ?_ChFetch@TXTB@@MAEDJ@Z 0041e8e0 f rtxt.obj - 0001:0001d910 ?FetchRgch@TXTB@@UAEXJJPAD@Z 0041e910 f rtxt.obj - 0001:0001d980 ?FMinPara@TXTB@@QAEHJ@Z 0041e980 f rtxt.obj - 0001:0001da10 ?CpMinPara@TXTB@@QAEJJ@Z 0041ea10 f rtxt.obj - 0001:0001dac0 ?CpLimPara@TXTB@@QAEJJ@Z 0041eac0 f rtxt.obj - 0001:0001db80 ?CpPrev@TXTB@@QAEJJH@Z 0041eb80 f rtxt.obj - 0001:0001dc10 ?CpNext@TXTB@@QAEJJH@Z 0041ec10 f rtxt.obj - 0001:0001dcb0 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 0041ecb0 f rtxt.obj - 0001:0001dd30 ?SetAcrBack@TXTB@@QAEXVACR@@K@Z 0041ed30 f rtxt.obj - 0001:0001dd70 ?SetDxpDef@TXTB@@UAEXJ@Z 0041ed70 f rtxt.obj - 0001:0001ddb0 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 0041edb0 f rtxt.obj - 0001:0001de10 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 0041ee10 f rtxt.obj - 0001:0001ded0 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 0041eed0 f rtxt.obj - 0001:0001df40 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 0041ef40 f rtxt.obj - 0001:0001df70 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 0041ef70 f rtxt.obj - 0001:0001df80 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 0041ef80 f rtxt.obj - 0001:0001df90 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 0041ef90 f rtxt.obj - 0001:0001dfd0 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 0041efd0 f rtxt.obj - 0001:0001e020 ??0TXRD@@IAE@PAVDOCB@@K@Z 0041f020 f rtxt.obj - 0001:0001e060 ??1TXRD@@MAE@XZ 0041f060 f rtxt.obj - 0001:0001e0c0 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 0041f0c0 f rtxt.obj - 0001:0001e110 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 0041f110 f rtxt.obj - 0001:0001e250 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 0041f250 f rtxt.obj - 0001:0001e6f0 ?_FOpenArg@TXRD@@MAEHJEFF@Z 0041f6f0 f rtxt.obj - 0001:0001e7e0 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 0041f7e0 f rtxt.obj - 0001:0001e820 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 0041f820 f rtxt.obj - 0001:0001e840 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 0041f840 f rtxt.obj - 0001:0001e960 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 0041f960 f rtxt.obj - 0001:0001ec10 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 0041fc10 f rtxt.obj - 0001:0001ec20 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 0041fc20 f rtxt.obj - 0001:0001ed30 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 0041fd30 f rtxt.obj - 0001:0001edf0 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 0041fdf0 f rtxt.obj - 0001:0001f0a0 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 004200a0 f rtxt.obj - 0001:0001f1c0 ?_ReleaseInAg@TXRD@@IAEXJ@Z 004201c0 f rtxt.obj - 0001:0001f240 ?_AddRefInAg@TXRD@@IAEXJ@Z 00420240 f rtxt.obj - 0001:0001f2a0 ?_FSprmInAg@TXRD@@KGHE@Z 004202a0 f rtxt.obj - 0001:0001f2d0 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 004202d0 f rtxt.obj - 0001:0001f300 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 00420300 f rtxt.obj - 0001:0001f330 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 00420330 f rtxt.obj - 0001:0001f3d0 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 004203d0 f rtxt.obj - 0001:0001f470 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 00420470 f rtxt.obj - 0001:0001f4a0 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 004204a0 f rtxt.obj - 0001:0001f7b0 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 004207b0 f rtxt.obj - 0001:0001fa10 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 00420a10 f rtxt.obj - 0001:0001fc20 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 00420c20 f rtxt.obj - 0001:0001fd10 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 00420d10 f rtxt.obj - 0001:0001fdb0 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 00420db0 f rtxt.obj - 0001:0001ff00 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 00420f00 f rtxt.obj - 0001:00020090 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 00421090 f rtxt.obj - 0001:000201e0 ?FSetUndo@TXRD@@UAEHJJJ@Z 004211e0 f rtxt.obj - 0001:00020260 ?CancelUndo@TXRD@@UAEXXZ 00421260 f rtxt.obj - 0001:000202a0 ?CommitUndo@TXRD@@UAEXXZ 004212a0 f rtxt.obj - 0001:00020330 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 00421330 f rtxt.obj - 0001:000203f0 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 004213f0 f rtxt.obj - 0001:00020430 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 00421430 f rtxt.obj - 0001:000206d0 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 004216d0 f rtxt.obj - 0001:000207f0 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 004217f0 f rtxt.obj - 0001:000208b0 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 004218b0 f rtxt.obj - 0001:000208e0 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 004218e0 f rtxt.obj - 0001:00020920 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 00421920 f rtxt.obj - 0001:00020c10 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 00421c10 f rtxt.obj - 0001:00020e70 ?FFetchObject@TXRD@@QAEHJPAJPAPAX0@Z 00421e70 f rtxt.obj - 0001:00020f60 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 00421f60 f rtxt.obj - 0001:000210e0 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 004220e0 f rtxt.obj - 0001:000211f0 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 004221f0 f rtxt.obj - 0001:00021260 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00422260 f rtxt.obj - 0001:00021270 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00422270 f rtxt.obj - 0001:000212f0 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 004222f0 f rtxt.obj - 0001:00021300 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 00422300 f rtxt.obj - 0001:000213c0 ??1RTUN@@UAE@XZ 004223c0 f rtxt.obj - 0001:000213f0 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 004223f0 f rtxt.obj - 0001:00021590 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 00422590 f rtxt.obj - 0001:000215a0 ?FCombine@RTUN@@QAEHPAV1@@Z 004225a0 f rtxt.obj - 0001:00021680 ??_GTXTB@@MAEPAXI@Z 00422680 f rtxt.obj - 0001:00021680 ??_ETXTB@@MAEPAXI@Z 00422680 f rtxt.obj - 0001:000216a0 ??_ETXRD@@MAEPAXI@Z 004226a0 f rtxt.obj - 0001:000216a0 ??_GTXRD@@MAEPAXI@Z 004226a0 f rtxt.obj - 0001:000216c0 ??_GRTUN@@UAEPAXI@Z 004226c0 f rtxt.obj - 0001:000216c0 ??_ERTUN@@UAEPAXI@Z 004226c0 f rtxt.obj - 0001:000216e0 ??_9@$BBBA@A 004226e0 f rtxt.obj - 0001:000216f0 ?FWouldBe@TRUL@@SGHJ@Z 004226f0 f rtxt2.obj - 0001:00021710 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 00422710 f rtxt2.obj - 0001:000218a0 ?GetNextRun@CHR@@QAEXH@Z 004228a0 f rtxt2.obj - 0001:00021c10 ?_FFit@CHR@@AAEHXZ 00422c10 f rtxt2.obj - 0001:00021c70 ?_SetToBop@CHR@@AAEXXZ 00422c70 f rtxt2.obj - 0001:00021d30 ?_SkipIgnores@CHR@@AAEXXZ 00422d30 f rtxt2.obj - 0001:00021db0 ?_DoTab@CHR@@AAEXXZ 00422db0 f rtxt2.obj - 0001:00021e60 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 00422e60 f rtxt2.obj - 0001:00021ec0 ??1TXTG@@MAE@XZ 00422ec0 f rtxt2.obj - 0001:00021f10 ?_FInit@TXTG@@MAEHXZ 00422f10 f rtxt2.obj - 0001:00022030 ?_Activate@TXTG@@MAEXH@Z 00423030 f rtxt2.obj - 0001:00022060 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 00423060 f rtxt2.obj - 0001:00022220 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00423220 f rtxt2.obj - 0001:00022490 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00423490 f rtxt2.obj - 0001:00022760 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 00423760 f rtxt2.obj - 0001:00022ae0 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 00423ae0 f rtxt2.obj - 0001:00022e90 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 00423e90 f rtxt2.obj - 0001:00022f30 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00423f30 f rtxt2.obj - 0001:000231d0 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 004241d0 f rtxt2.obj - 0001:00023260 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00424260 f rtxt2.obj - 0001:000233a0 ?FReplace@TXTG@@UAEHPADJJJ@Z 004243a0 f rtxt2.obj - 0001:00023420 ?InvalCp@TXTG@@UAEXJJJ@Z 00424420 f rtxt2.obj - 0001:00023510 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 00424510 f rtxt2.obj - 0001:00023680 ?_Scroll@TXTG@@MAEXJJJJ@Z 00424680 f rtxt2.obj - 0001:00023ac0 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 00424ac0 f rtxt2.obj - 0001:00023b50 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 00424b50 f rtxt2.obj - 0001:00023bb0 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 00424bb0 f rtxt2.obj - 0001:00023ea0 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 00424ea0 f rtxt2.obj - 0001:00023eb0 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 00424eb0 f rtxt2.obj - 0001:000240a0 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 004250a0 f rtxt2.obj - 0001:00024120 ?GetSel@TXTG@@UAEXPAJ0@Z 00425120 f rtxt2.obj - 0001:00024140 ?SetSel@TXTG@@UAEXJJJ@Z 00425140 f rtxt2.obj - 0001:00024250 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 00425250 f rtxt2.obj - 0001:00024260 ?ShowSel@TXTG@@QAEXXZ 00425260 f rtxt2.obj - 0001:000244d0 ?HideSel@TXTG@@UAEXXZ 004254d0 f rtxt2.obj - 0001:00024500 ?_SwitchSel@TXTG@@IAEXHJ@Z 00425500 f rtxt2.obj - 0001:00024580 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 00425580 f rtxt2.obj - 0001:00024630 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 00425630 f rtxt2.obj - 0001:00024830 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 00425830 f rtxt2.obj - 0001:00024e00 ?_ScvMax@TXTG@@MAEJH@Z 00425e00 f rtxt2.obj - 0001:00024e60 ?_DxpDoc@TXTG@@MAEJXZ 00425e60 f rtxt2.obj - 0001:00024e70 ?SetDxpTab@TXTG@@UAEXJ@Z 00425e70 f rtxt2.obj - 0001:00024e80 ?SetDxpDoc@TXTG@@UAEXJ@Z 00425e80 f rtxt2.obj - 0001:00024eb0 ?ShowRuler@TXTG@@UAEXH@Z 00425eb0 f rtxt2.obj - 0001:00024fd0 ?_DypTrul@TXTG@@MAEJXZ 00425fd0 f rtxt2.obj - 0001:00024fe0 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 00425fe0 f rtxt2.obj - 0001:00024ff0 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 00425ff0 f rtxt2.obj - 0001:00025040 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 00426040 f rtxt2.obj - 0001:00025070 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 00426070 f rtxt2.obj - 0001:00025080 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 00426080 f rtxt2.obj - 0001:000250f0 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 004260f0 f rtxt2.obj - 0001:00025120 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 00426120 f rtxt2.obj - 0001:00025150 ?SetDxpTab@TXRG@@UAEXJ@Z 00426150 f rtxt2.obj - 0001:00025240 ?SetSel@TXRG@@UAEXJJJ@Z 00426240 f rtxt2.obj - 0001:000252f0 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 004262f0 f rtxt2.obj - 0001:00025380 ?_EnsureChpIns@TXRG@@IAEXXZ 00426380 f rtxt2.obj - 0001:000253c0 ?FReplace@TXRG@@UAEHPADJJJ@Z 004263c0 f rtxt2.obj - 0001:000254d0 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 004264d0 f rtxt2.obj - 0001:00025590 ?_ClearSel@TXRG@@MAEXXZ 00426590 f rtxt2.obj - 0001:000255c0 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 004265c0 f rtxt2.obj - 0001:00025760 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 00426760 f rtxt2.obj - 0001:000258d0 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 004268d0 f rtxt2.obj - 0001:00025970 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 00426970 f rtxt2.obj - 0001:00025c10 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 00426c10 f rtxt2.obj - 0001:00025c20 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 00426c20 f rtxt2.obj - 0001:00025c30 ?FSetColor@TXRG@@QAEHPAVACR@@0@Z 00426c30 f rtxt2.obj - 0001:00025cf0 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 00426cf0 f rtxt2.obj - 0001:00025f50 ??_GTXTG@@MAEPAXI@Z 00426f50 f rtxt2.obj - 0001:00025f50 ??_ETXTG@@MAEPAXI@Z 00426f50 f rtxt2.obj - 0001:00025f70 ??_ETXRG@@UAEPAXI@Z 00426f70 f rtxt2.obj - 0001:00025f70 ??_GTXRG@@UAEPAXI@Z 00426f70 f rtxt2.obj - 0001:00025f90 ?FWouldBe@DOCB@@SGHJ@Z 00426f90 f docb.obj - 0001:00025fb0 ?FIs@DOCB@@UAEHJ@Z 00426fb0 f docb.obj - 0001:00025fc0 ?Cls@DOCB@@UAEJXZ 00426fc0 f docb.obj - 0001:00025fd0 ?FWouldBe@DTE@@SGHJ@Z 00426fd0 f docb.obj - 0001:00025ff0 ?FIs@DTE@@UAEHJ@Z 00426ff0 f docb.obj - 0001:00026000 ?Cls@DTE@@UAEJXZ 00427000 f docb.obj - 0001:00026010 ?FWouldBe@DDG@@SGHJ@Z 00427010 f docb.obj - 0001:00026030 ?FIs@DDG@@UAEHJ@Z 00427030 f docb.obj - 0001:00026040 ?Cls@DDG@@UAEJXZ 00427040 f docb.obj - 0001:00026050 ?FWouldBe@DMD@@SGHJ@Z 00427050 f docb.obj - 0001:00026070 ?FIs@DMD@@UAEHJ@Z 00427070 f docb.obj - 0001:00026080 ?Cls@DMD@@UAEJXZ 00427080 f docb.obj - 0001:00026090 ?FWouldBe@DMW@@SGHJ@Z 00427090 f docb.obj - 0001:000260b0 ?FIs@DMW@@UAEHJ@Z 004270b0 f docb.obj - 0001:000260c0 ?Cls@DMW@@UAEJXZ 004270c0 f docb.obj - 0001:000260d0 ?FWouldBe@DSG@@SGHJ@Z 004270d0 f docb.obj - 0001:000260f0 ?FIs@DSG@@UAEHJ@Z 004270f0 f docb.obj - 0001:00026100 ?Cls@DSG@@UAEJXZ 00427100 f docb.obj - 0001:00026110 ?FWouldBe@DSSP@@SGHJ@Z 00427110 f docb.obj - 0001:00026130 ?FIs@DSSP@@UAEHJ@Z 00427130 f docb.obj - 0001:00026140 ?Cls@DSSP@@UAEJXZ 00427140 f docb.obj - 0001:00026150 ?FWouldBe@DSSM@@SGHJ@Z 00427150 f docb.obj - 0001:00026170 ?FIs@DSSM@@UAEHJ@Z 00427170 f docb.obj - 0001:00026180 ?Cls@DSSM@@UAEJXZ 00427180 f docb.obj - 0001:00026190 ?FWouldBe@UNDB@@SGHJ@Z 00427190 f docb.obj - 0001:000261c0 ??0DOCB@@IAE@PAV0@K@Z 004271c0 f docb.obj - 0001:00026230 ?Release@DOCB@@UAEXXZ 00427230 f docb.obj - 0001:000262e0 ?CloseAllDdg@DOCB@@QAEXXZ 004272e0 f docb.obj - 0001:00026350 ??1DOCB@@MAE@XZ 00427350 f docb.obj - 0001:000263d0 ?FQueryCloseAll@DOCB@@SGHK@Z 004273d0 f docb.obj - 0001:00026410 ?FQueryClose@DOCB@@UAEHK@Z 00427410 f docb.obj - 0001:000264d0 ?_TQuerySave@DOCB@@MAEHH@Z 004274d0 f docb.obj - 0001:000264f0 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 004274f0 f docb.obj - 0001:00026560 ?FInternal@DOCB@@QAEHXZ 00427560 f docb.obj - 0001:00026580 ?SetInternal@DOCB@@QAEXH@Z 00427580 f docb.obj - 0001:000265a0 ?PdocbFromFni@DOCB@@SGPAV1@PAVFNI@@@Z 004275a0 f docb.obj - 0001:00026610 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 00427610 f docb.obj - 0001:00026620 ?FSave@DOCB@@UAEHJ@Z 00427620 f docb.obj - 0001:000266c0 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 004276c0 f docb.obj - 0001:000266d0 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 004276d0 f docb.obj - 0001:000266f0 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 004276f0 f docb.obj - 0001:00026730 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 00427730 f docb.obj - 0001:00026790 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 00427790 f docb.obj - 0001:000267c0 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 004277c0 f docb.obj - 0001:00026800 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 00427800 f docb.obj - 0001:00026830 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 00427830 f docb.obj - 0001:00026850 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 00427850 f docb.obj - 0001:00026860 ?ActivateDmd@DOCB@@QAEXXZ 00427860 f docb.obj - 0001:000268a0 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 004278a0 f docb.obj - 0001:000268b0 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 004278b0 f docb.obj - 0001:000268d0 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 004278d0 f docb.obj - 0001:000268e0 ?GetName@DOCB@@UAEXPAVSTN@@@Z 004278e0 f docb.obj - 0001:00026990 ?UpdateName@DOCB@@UAEXXZ 00427990 f docb.obj - 0001:00026a40 ?FUndo@DOCB@@UAEHXZ 00427a40 f docb.obj - 0001:00026a90 ?FRedo@DOCB@@UAEHXZ 00427a90 f docb.obj - 0001:00026ae0 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 00427ae0 f docb.obj - 0001:00026bd0 ?ClearUndo@DOCB@@UAEXXZ 00427bd0 f docb.obj - 0001:00026c30 ?ClearRedo@DOCB@@UAEXXZ 00427c30 f docb.obj - 0001:00026c80 ?SetCundbMax@DOCB@@UAEXJ@Z 00427c80 f docb.obj - 0001:00026d30 ?CundbMax@DOCB@@UAEJXZ 00427d30 f docb.obj - 0001:00026d40 ?CundbUndo@DOCB@@UAEJXZ 00427d40 f docb.obj - 0001:00026d50 ?CundbRedo@DOCB@@UAEJXZ 00427d50 f docb.obj - 0001:00026d70 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 00427d70 f docb.obj - 0001:00026d80 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 00427d80 f docb.obj - 0001:00026da0 ??0DTE@@QAE@XZ 00427da0 f docb.obj - 0001:00026dc0 ?Init@DTE@@QAEXPAVDOCB@@@Z 00427dc0 f docb.obj - 0001:00026de0 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 00427de0 f docb.obj - 0001:00026eb0 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00427eb0 f docb.obj - 0001:00026f20 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 00427f20 f docb.obj - 0001:00026f60 ??1DDG@@MAE@XZ 00427f60 f docb.obj - 0001:00026fa0 ?_FInit@DDG@@MAEHXZ 00427fa0 f docb.obj - 0001:00026fd0 ?Pdmd@DDG@@QAEPAVDMD@@XZ 00427fd0 f docb.obj - 0001:00026fe0 ?Activate@DDG@@UAEXH@Z 00427fe0 f docb.obj - 0001:00027070 ?_Activate@DDG@@MAEXH@Z 00428070 f docb.obj - 0001:000270b0 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 004280b0 f docb.obj - 0001:000271d0 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 004281d0 f docb.obj - 0001:000272e0 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 004282e0 f docb.obj - 0001:000272f0 ?_ClearSel@DDG@@MAEXXZ 004282f0 f docb.obj - 0001:00027300 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 00428300 f docb.obj - 0001:00027310 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 00428310 f docb.obj - 0001:00027350 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 00428350 f docb.obj - 0001:00027370 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 00428370 f docb.obj - 0001:000273a0 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 004283a0 f docb.obj - 0001:000273e0 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 004283e0 f docb.obj - 0001:00027400 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 00428400 f docb.obj - 0001:000274a0 ?_Scroll@DDG@@MAEXJJJJ@Z 004284a0 f docb.obj - 0001:000274b0 ?_SetScrollValues@DDG@@MAEXXZ 004284b0 f docb.obj - 0001:00027530 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 00428530 f docb.obj - 0001:00027550 ?_ScvMax@DDG@@MAEJH@Z 00428550 f docb.obj - 0001:00027560 ?_NewRc@DDG@@MAEXXZ 00428560 f docb.obj - 0001:00027570 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 00428570 f docb.obj - 0001:00027670 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 00428670 f docb.obj - 0001:00027690 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 00428690 f docb.obj - 0001:00027700 ?_ActivateHwnd@DMD@@MAEXH@Z 00428700 f docb.obj - 0001:00027730 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 00428730 f docb.obj - 0001:00027770 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00428770 f docb.obj - 0001:000277c0 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 004287c0 f docb.obj - 0001:000277f0 ?Release@DMW@@UAEXXZ 004287f0 f docb.obj - 0001:00027830 ?_FInit@DMW@@MAEHXZ 00428830 f docb.obj - 0001:00027870 ?_NewRc@DMW@@MAEXXZ 00428870 f docb.obj - 0001:00027880 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 00428880 f docb.obj - 0001:00027a20 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 00428a20 f docb.obj - 0001:00027a50 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 00428a50 f docb.obj - 0001:00027b30 ?_IdsedEdge@DMW@@IAEJJJ@Z 00428b30 f docb.obj - 0001:00027b90 ?_IdsedNext@DMW@@IAEJJJ@Z 00428b90 f docb.obj - 0001:00027be0 ?_Layout@DMW@@IAEXJ@Z 00428be0 f docb.obj - 0001:00027fc0 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 00428fc0 f docb.obj - 0001:00028090 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 00429090 f docb.obj - 0001:000282c0 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 004292c0 f docb.obj - 0001:00028300 ?TVert@DMW@@QAEHPAVDSG@@@Z 00429300 f docb.obj - 0001:00028350 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 00429350 f docb.obj - 0001:000283e0 ??0DSG@@IAE@PAUGCB@@@Z 004293e0 f docb.obj - 0001:00028400 ??1DSG@@MAE@XZ 00429400 f docb.obj - 0001:00028420 ?_FInit@DSG@@MAEHPAV1@KJ@Z 00429420 f docb.obj - 0001:00028590 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 00429590 f docb.obj - 0001:00028610 ?Split@DSG@@UAEXKJ@Z 00429610 f docb.obj - 0001:00028630 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 00429630 f docb.obj - 0001:00028670 ??0DSSP@@IAE@PAUGCB@@@Z 00429670 f docb.obj - 0001:00028690 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 00429690 f docb.obj - 0001:00028760 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 00429760 f docb.obj - 0001:00028770 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 00429770 f docb.obj - 0001:000287a0 ?MouseDown@DSSP@@UAEXJJJK@Z 004297a0 f docb.obj - 0001:000288f0 ??0DSSM@@IAE@PAUGCB@@@Z 004298f0 f docb.obj - 0001:00028910 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 00429910 f docb.obj - 0001:00028990 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 00429990 f docb.obj - 0001:00028a10 ?MouseDown@DSSM@@UAEXJJJK@Z 00429a10 f docb.obj - 0001:00028b90 ?TVert@DSSM@@QAEHXZ 00429b90 f docb.obj - 0001:00028bb0 ??_GDOCB@@MAEPAXI@Z 00429bb0 f docb.obj - 0001:00028bb0 ??_EDOCB@@MAEPAXI@Z 00429bb0 f docb.obj - 0001:00028bd0 ??_EDTE@@UAEPAXI@Z 00429bd0 f docb.obj - 0001:00028bd0 ??_GDTE@@UAEPAXI@Z 00429bd0 f docb.obj - 0001:00028bf0 ??_EDDG@@MAEPAXI@Z 00429bf0 f docb.obj - 0001:00028bf0 ??_GDDG@@MAEPAXI@Z 00429bf0 f docb.obj - 0001:00028c10 ??_GDMD@@UAEPAXI@Z 00429c10 f docb.obj - 0001:00028c10 ??_EDMD@@UAEPAXI@Z 00429c10 f docb.obj - 0001:00028c30 ??_GDMW@@UAEPAXI@Z 00429c30 f docb.obj - 0001:00028c30 ??_EDMW@@UAEPAXI@Z 00429c30 f docb.obj - 0001:00028c50 ??_GDSG@@MAEPAXI@Z 00429c50 f docb.obj - 0001:00028c50 ??_EDSG@@MAEPAXI@Z 00429c50 f docb.obj - 0001:00028c70 ??_GDSSP@@UAEPAXI@Z 00429c70 f docb.obj - 0001:00028c70 ??_EDSSP@@UAEPAXI@Z 00429c70 f docb.obj - 0001:00028c90 ??_GDSSM@@UAEPAXI@Z 00429c90 f docb.obj - 0001:00028c90 ??_EDSSM@@UAEPAXI@Z 00429c90 f docb.obj - 0001:00028cb0 ??_9@$BII@A 00429cb0 f docb.obj - 0001:00028cc0 ??_9@$BLA@A 00429cc0 f docb.obj - 0001:00028cd0 ?FWouldBe@CLIP@@SGHJ@Z 00429cd0 f clip.obj - 0001:00028cf0 ?FIs@CLIP@@UAEHJ@Z 00429cf0 f clip.obj - 0001:00028d00 ?Cls@CLIP@@UAEJXZ 00429d00 f clip.obj - 0001:00028d20 ??0CLIP@@QAE@XZ 00429d20 f clip.obj - 0001:00028d40 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 00429d40 f clip.obj - 0001:00028d70 ?Show@CLIP@@QAEXXZ 00429d70 f clip.obj - 0001:00028db0 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 00429db0 f clip.obj - 0001:00028e70 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 00429e70 f clip.obj - 0001:00028ee0 ?Import@CLIP@@QAEXXZ 00429ee0 f clip.obj - 0001:00028f20 ?_EnsureDoc@CLIP@@IAEXXZ 00429f20 f clip.obj - 0001:00029020 ?_ImportCur@CLIP@@IAEXXZ 0042a020 f clip.obj - 0001:00029100 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 0042a100 f clip.obj - 0001:00029190 ?FInitExport@CLIP@@QAEHXZ 0042a190 f clip.obj - 0001:000291e0 ?PvExport@CLIP@@QAEPAXJJ@Z 0042a1e0 f clip.obj - 0001:00029240 ?EndExport@CLIP@@QAEXXZ 0042a240 f clip.obj - 0001:00029260 ?_ExportCur@CLIP@@IAEXXZ 0042a260 f clip.obj - 0001:000292d0 ??_GCLIP@@UAEPAXI@Z 0042a2d0 f clip.obj - 0001:000292d0 ??_ECLIP@@UAEPAXI@Z 0042a2d0 f clip.obj - 0001:00029380 ?FWouldBe@BSF@@SGHJ@Z 0042a380 f stream.obj - 0001:000293a0 ?FIs@BSF@@UAEHJ@Z 0042a3a0 f stream.obj - 0001:000293b0 ?Cls@BSF@@UAEJXZ 0042a3b0 f stream.obj - 0001:000293d0 ??0BSF@@QAE@XZ 0042a3d0 f stream.obj - 0001:000293f0 ??1BSF@@UAE@XZ 0042a3f0 f stream.obj - 0001:00029460 ?_IfloFind@BSF@@IAEJJPAJ0@Z 0042a460 f stream.obj - 0001:000294f0 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 0042a4f0 f stream.obj - 0001:00029620 ?_AttemptMerge@BSF@@IAEXJJ@Z 0042a620 f stream.obj - 0001:00029710 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 0042a710 f stream.obj - 0001:00029a20 ?FReplace@BSF@@QAEHPAXJJJ@Z 0042aa20 f stream.obj - 0001:00029d10 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 0042ad10 f stream.obj - 0001:00029eb0 ?FetchRgb@BSF@@QAEXJJPAX@Z 0042aeb0 f stream.obj - 0001:00029f60 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 0042af60 f stream.obj - 0001:0002a110 ??_EBSF@@UAEPAXI@Z 0042b110 f stream.obj - 0001:0002a110 ??_GBSF@@UAEPAXI@Z 0042b110 f stream.obj - 0001:0002a130 ?FWouldBe@CFL@@SGHJ@Z 0042b130 f chunk.obj - 0001:0002a150 ?FIs@CFL@@UAEHJ@Z 0042b150 f chunk.obj - 0001:0002a160 ?Cls@CFL@@UAEJXZ 0042b160 f chunk.obj - 0001:0002a170 ?FWouldBe@CGE@@SGHJ@Z 0042b170 f chunk.obj - 0001:0002a190 ?FIs@CGE@@UAEHJ@Z 0042b190 f chunk.obj - 0001:0002a1a0 ?Cls@CGE@@UAEJXZ 0042b1a0 f chunk.obj - 0001:0002a1b0 ??0CFL@@AAE@XZ 0042b1b0 f chunk.obj - 0001:0002a1d0 ??1CFL@@EAE@XZ 0042b1d0 f chunk.obj - 0001:0002a270 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 0042b270 f chunk.obj - 0001:0002a340 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 0042b340 f chunk.obj - 0001:0002a360 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 0042b360 f chunk.obj - 0001:0002a410 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 0042b410 f chunk.obj - 0001:0002a4a0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 0042b4a0 f chunk.obj - 0001:0002a4e0 ?PcflReadForestFromFlo@CFL@@SGPAV1@PAUFLO@@H@Z 0042b4e0 f chunk.obj - 0001:0002a7d0 ?FForest@CFL@@QAEHKK@Z 0042b7d0 f chunk.obj - 0001:0002a820 ?PcflReadForest@CFL@@QAEPAV1@KKH@Z 0042b820 f chunk.obj - 0001:0002a8d0 ?FSetGrfcfl@CFL@@QAEHKK@Z 0042b8d0 f chunk.obj - 0001:0002a970 ?Release@CFL@@UAEXXZ 0042b970 f chunk.obj - 0001:0002a990 ?_TValidIndex@CFL@@AAEHXZ 0042b990 f chunk.obj - 0001:0002acf0 ?_FReadIndex@CFL@@AAEHXZ 0042bcf0 f chunk.obj - 0001:0002b360 ?_ReadFreeMap@CFL@@AAEXXZ 0042c360 f chunk.obj - 0001:0002b3e0 ?FSave@CFL@@QAEHKPAVFNI@@@Z 0042c3e0 f chunk.obj - 0001:0002b700 ?_FWriteIndex@CFL@@AAEHK@Z 0042c700 f chunk.obj - 0001:0002b850 ?FSaveACopy@CFL@@QAEHKPAVFNI@@@Z 0042c850 f chunk.obj - 0001:0002ba00 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 0042ca00 f chunk.obj - 0001:0002bb00 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 0042cb00 f chunk.obj - 0001:0002bb60 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 0042cb60 f chunk.obj - 0001:0002bba0 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 0042cba0 f chunk.obj - 0001:0002bc00 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 0042cc00 f chunk.obj - 0001:0002bc50 ?SetPacked@CFL@@QAEXKKH@Z 0042cc50 f chunk.obj - 0001:0002bcd0 ?FPacked@CFL@@QAEHKK@Z 0042ccd0 f chunk.obj - 0001:0002bd20 ?_FCreateExtra@CFL@@AAEHXZ 0042cd20 f chunk.obj - 0001:0002bd50 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 0042cd50 f chunk.obj - 0001:0002be60 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 0042ce60 f chunk.obj - 0001:0002bf00 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 0042cf00 f chunk.obj - 0001:0002bf80 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 0042cf80 f chunk.obj - 0001:0002bfd0 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 0042cfd0 f chunk.obj - 0001:0002c090 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 0042d090 f chunk.obj - 0001:0002c110 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 0042d110 f chunk.obj - 0001:0002c1f0 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 0042d1f0 f chunk.obj - 0001:0002c210 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 0042d210 f chunk.obj - 0001:0002c270 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 0042d270 f chunk.obj - 0001:0002c480 ?Move@CFL@@QAEXKKKK@Z 0042d480 f chunk.obj - 0001:0002c670 ?Delete@CFL@@QAEXKK@Z 0042d670 f chunk.obj - 0001:0002c810 ?SetLoner@CFL@@QAEXKKH@Z 0042d810 f chunk.obj - 0001:0002c870 ?CckiRef@CFL@@QAEJKK@Z 0042d870 f chunk.obj - 0001:0002c8c0 ?TIsDescendent@CFL@@QAEHKKKK@Z 0042d8c0 f chunk.obj - 0001:0002c990 ?DeleteChild@CFL@@QAEXKKKKK@Z 0042d990 f chunk.obj - 0001:0002ca40 ?_FDecRefCount@CFL@@AAEHJ@Z 0042da40 f chunk.obj - 0001:0002ca80 ?_DeleteCore@CFL@@AAEXJ@Z 0042da80 f chunk.obj - 0001:0002cae0 ?_FreeFpCb@CFL@@AAEXHJJ@Z 0042dae0 f chunk.obj - 0001:0002ccc0 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 0042dcc0 f chunk.obj - 0001:0002cd30 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 0042dd30 f chunk.obj - 0001:0002cdf0 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 0042ddf0 f chunk.obj - 0001:0002ce40 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 0042de40 f chunk.obj - 0001:0002cee0 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 0042dee0 f chunk.obj - 0001:0002cf70 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 0042df70 f chunk.obj - 0001:0002d090 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 0042e090 f chunk.obj - 0001:0002d100 ?FGetIcki@CFL@@QAEHKKPAJ@Z 0042e100 f chunk.obj - 0001:0002d120 ?CckiCtg@CFL@@QAEJK@Z 0042e120 f chunk.obj - 0001:0002d190 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 0042e190 f chunk.obj - 0001:0002d240 ?Ckid@CFL@@QAEJKK@Z 0042e240 f chunk.obj - 0001:0002d290 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 0042e290 f chunk.obj - 0001:0002d310 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 0042e310 f chunk.obj - 0001:0002d350 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 0042e350 f chunk.obj - 0001:0002d430 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 0042e430 f chunk.obj - 0001:0002d4f0 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 0042e4f0 f chunk.obj - 0001:0002d5c0 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 0042e5c0 f chunk.obj - 0001:0002d620 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 0042e620 f chunk.obj - 0001:0002da30 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 0042ea30 f chunk.obj - 0001:0002dc50 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 0042ec50 f chunk.obj - 0001:0002dce0 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 0042ece0 f chunk.obj - 0001:0002dd00 ?FClone@CFL@@QAEHKKPAV1@PAK@Z 0042ed00 f chunk.obj - 0001:0002dd20 ?_Rti@CFL@@AAEJKK@Z 0042ed20 f chunk.obj - 0001:0002dd50 ?_FSetRti@CFL@@AAEHKKJ@Z 0042ed50 f chunk.obj - 0001:0002de20 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 0042ee20 f chunk.obj - 0001:0002def0 ??0CGE@@QAE@XZ 0042eef0 f chunk.obj - 0001:0002df10 ??1CGE@@UAE@XZ 0042ef10 f chunk.obj - 0001:0002df40 ?Init@CGE@@QAEXPAVCFL@@KK@Z 0042ef40 f chunk.obj - 0001:0002df80 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 0042ef80 f chunk.obj - 0001:0002e160 ??_GCFL@@EAEPAXI@Z 0042f160 f chunk.obj - 0001:0002e160 ??_ECFL@@EAEPAXI@Z 0042f160 f chunk.obj - 0001:0002e180 ??_ECGE@@UAEPAXI@Z 0042f180 f chunk.obj - 0001:0002e180 ??_GCGE@@UAEPAXI@Z 0042f180 f chunk.obj - 0001:0002e1a0 ?FWouldBe@CODM@@SGHJ@Z 0042f1a0 f codec.obj - 0001:0002e1c0 ?FIs@CODM@@UAEHJ@Z 0042f1c0 f codec.obj - 0001:0002e1d0 ?Cls@CODM@@UAEJXZ 0042f1d0 f codec.obj - 0001:0002e1e0 ?FWouldBe@CODC@@SGHJ@Z 0042f1e0 f codec.obj - 0001:0002e200 ??0CODM@@QAE@PAVCODC@@J@Z 0042f200 f codec.obj - 0001:0002e240 ??1CODM@@UAE@XZ 0042f240 f codec.obj - 0001:0002e2c0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 0042f2c0 f codec.obj - 0001:0002e310 ?FCanDo@CODM@@UAEHJH@Z 0042f310 f codec.obj - 0001:0002e340 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 0042f340 f codec.obj - 0001:0002e3c0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 0042f3c0 f codec.obj - 0001:0002e470 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 0042f470 f codec.obj - 0001:0002e590 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 0042f590 f codec.obj - 0001:0002e7a0 ??_ECODM@@UAEPAXI@Z 0042f7a0 f codec.obj - 0001:0002e7a0 ??_GCODM@@UAEPAXI@Z 0042f7a0 f codec.obj - 0001:0002e7c0 ?FWouldBe@KCDC@@SGHJ@Z 0042f7c0 f codkauai.obj - 0001:0002e7e0 ?FIs@KCDC@@UAEHJ@Z 0042f7e0 f codkauai.obj - 0001:0002e7f0 ?Cls@KCDC@@UAEJXZ 0042f7f0 f codkauai.obj - 0001:0002e800 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 0042f800 f codkauai.obj - 0001:0002e880 ?Set@BITA@@QAEXPAXJ@Z 0042f880 f codkauai.obj - 0001:0002e8a0 ?FWriteBits@BITA@@QAEHKJ@Z 0042f8a0 f codkauai.obj - 0001:0002e960 ?FWriteLogEncoded@BITA@@QAEHK@Z 0042f960 f codkauai.obj - 0001:0002e9b0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 0042f9b0 f codkauai.obj - 0001:0002ecc0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 0042fcc0 f codkauai.obj - 0001:000325f0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 004335f0 f codkauai.obj - 0001:000329d0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 004339d0 f codkauai.obj - 0001:00034f60 ?FWouldBe@BACO@@SGHJ@Z 00435f60 f crf.obj - 0001:00034f80 ?FIs@BACO@@UAEHJ@Z 00435f80 f crf.obj - 0001:00034f90 ?Cls@BACO@@UAEJXZ 00435f90 f crf.obj - 0001:00034fa0 ?FWouldBe@RCA@@SGHJ@Z 00435fa0 f crf.obj - 0001:00034fc0 ?FWouldBe@CRF@@SGHJ@Z 00435fc0 f crf.obj - 0001:00034fe0 ?FIs@CRF@@UAEHJ@Z 00435fe0 f crf.obj - 0001:00034ff0 ?Cls@CRF@@UAEJXZ 00435ff0 f crf.obj - 0001:00035000 ?FWouldBe@CRM@@SGHJ@Z 00436000 f crf.obj - 0001:00035020 ?FIs@CRM@@UAEHJ@Z 00436020 f crf.obj - 0001:00035030 ?Cls@CRM@@UAEJXZ 00436030 f crf.obj - 0001:00035040 ??0BACO@@IAE@XZ 00436040 f crf.obj - 0001:00035070 ??1BACO@@MAE@XZ 00436070 f crf.obj - 0001:000350a0 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 004360a0 f crf.obj - 0001:000350e0 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 004360e0 f crf.obj - 0001:000350f0 ?CbOnFile@BACO@@UAEJXZ 004360f0 f crf.obj - 0001:00035100 ?Release@BACO@@UAEXXZ 00436100 f crf.obj - 0001:00035150 ?Detach@BACO@@UAEXXZ 00436150 f crf.obj - 0001:00035190 ?SetCrep@BACO@@UAEXJ@Z 00436190 f crf.obj - 0001:000351c0 ??0CRF@@IAE@PAVCFL@@J@Z 004361c0 f crf.obj - 0001:000351f0 ??1CRF@@UAE@XZ 004361f0 f crf.obj - 0001:00035280 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 00436280 f crf.obj - 0001:000352d0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 004362d0 f crf.obj - 0001:000355b0 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 004365b0 f crf.obj - 0001:000357a0 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 004367a0 f crf.obj - 0001:00035810 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00436810 f crf.obj - 0001:00035890 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 00436890 f crf.obj - 0001:000358e0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 004368e0 f crf.obj - 0001:00035930 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00436930 f crf.obj - 0001:000359b0 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 004369b0 f crf.obj - 0001:00035a60 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00436a60 f crf.obj - 0001:00035b90 ?_FPurgeCb@CRF@@IAEHJJ@Z 00436b90 f crf.obj - 0001:00035ca0 ??1CRM@@UAE@XZ 00436ca0 f crf.obj - 0001:00035d10 ?PcrmNew@CRM@@SGPAV1@J@Z 00436d10 f crf.obj - 0001:00035d70 ?TLoad@CRM@@UAEHKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 00436d70 f crf.obj - 0001:00035dd0 ?PbacoFetch@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 00436dd0 f crf.obj - 0001:00035e60 ?PbacoFind@CRM@@UAEPAVBACO@@KKP6GHPAVCRF@@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 00436e60 f crf.obj - 0001:00035ea0 ?FSetCrep@CRM@@UAEHJKKP6GHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00436ea0 f crf.obj - 0001:00035f20 ?PcrfFindChunk@CRM@@UAEPAVCRF@@KKK@Z 00436f20 f crf.obj - 0001:00035fb0 ?FAddCfl@CRM@@QAEHPAVCFL@@JPAJ@Z 00436fb0 f crf.obj - 0001:00036020 ?PcrfGet@CRM@@QAEPAVCRF@@J@Z 00437020 f crf.obj - 0001:00036060 ??_ECRM@@UAEPAXI@Z 00437060 f crf.obj - 0001:00036060 ??_GCRM@@UAEPAXI@Z 00437060 f crf.obj - 0001:00036080 ??_GBACO@@MAEPAXI@Z 00437080 f crf.obj - 0001:00036080 ??_EBACO@@MAEPAXI@Z 00437080 f crf.obj - 0001:000360a0 ??_ECRF@@UAEPAXI@Z 004370a0 f crf.obj - 0001:000360a0 ??_GCRF@@UAEPAXI@Z 004370a0 f crf.obj - 0001:000360d0 ?FWouldBe@FIL@@SGHJ@Z 004370d0 f file.obj - 0001:000360f0 ?FIs@FIL@@UAEHJ@Z 004370f0 f file.obj - 0001:00036100 ?Cls@FIL@@UAEJXZ 00437100 f file.obj - 0001:00036110 ?FWouldBe@BLCK@@SGHJ@Z 00437110 f file.obj - 0001:00036130 ?FIs@BLCK@@UAEHJ@Z 00437130 f file.obj - 0001:00036140 ?Cls@BLCK@@UAEJXZ 00437140 f file.obj - 0001:00036150 ?FWouldBe@MSFIL@@SGHJ@Z 00437150 f file.obj - 0001:00036180 ?FIs@MSFIL@@UAEHJ@Z 00437180 f file.obj - 0001:00036190 ?Cls@MSFIL@@UAEJXZ 00437190 f file.obj - 0001:000361a0 ??0FIL@@IAE@PAVFNI@@K@Z 004371a0 f file.obj - 0001:00036210 ??1FIL@@MAE@XZ 00437210 f file.obj - 0001:00036260 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00437260 f file.obj - 0001:00036300 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00437300 f file.obj - 0001:00036390 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00437390 f file.obj - 0001:00036420 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00437420 f file.obj - 0001:00036480 ?FSetGrffil@FIL@@QAEHKK@Z 00437480 f file.obj - 0001:00036510 ?Release@FIL@@UAEXXZ 00437510 f file.obj - 0001:00036540 ?SetTemp@FIL@@QAEXH@Z 00437540 f file.obj - 0001:00036580 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 00437580 f file.obj - 0001:000365f0 ?ShutDown@FIL@@SGXXZ 004375f0 f file.obj - 0001:00036660 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00437660 f file.obj - 0001:000366b0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 004376b0 f file.obj - 0001:00036700 ?FCopy@FLO@@QAEHPAU1@@Z 00437700 f file.obj - 0001:000367d0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 004377d0 f file.obj - 0001:00036850 ?FWriteHq@FLO@@QAEHPAXJ@Z 00437850 f file.obj - 0001:000368a0 ?FTranslate@FLO@@QAEHF@Z 004378a0 f file.obj - 0001:00036bb0 ??0BLCK@@QAE@PAUFLO@@H@Z 00437bb0 f file.obj - 0001:00036c00 ??0BLCK@@QAE@PAVFIL@@JJH@Z 00437c00 f file.obj - 0001:00036c40 ??0BLCK@@QAE@XZ 00437c40 f file.obj - 0001:00036c60 ??1BLCK@@UAE@XZ 00437c60 f file.obj - 0001:00036c80 ?Set@BLCK@@QAEXPAUFLO@@H@Z 00437c80 f file.obj - 0001:00036cc0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 00437cc0 f file.obj - 0001:00036d00 ?SetHq@BLCK@@QAEXPAPAXH@Z 00437d00 f file.obj - 0001:00036d40 ?Free@BLCK@@QAEXXZ 00437d40 f file.obj - 0001:00036d70 ?HqFree@BLCK@@QAEPAXH@Z 00437d70 f file.obj - 0001:00036e20 ?Cb@BLCK@@QAEJH@Z 00437e20 f file.obj - 0001:00036e40 ?FSetTemp@BLCK@@QAEHJH@Z 00437e40 f file.obj - 0001:00036ed0 ?FMoveMin@BLCK@@QAEHJ@Z 00437ed0 f file.obj - 0001:00036f40 ?FMoveLim@BLCK@@QAEHJ@Z 00437f40 f file.obj - 0001:00036fb0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00437fb0 f file.obj - 0001:00037040 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00438040 f file.obj - 0001:000370d0 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 004380d0 f file.obj - 0001:00037180 ?FWriteHq@BLCK@@QAEHPAXJH@Z 00438180 f file.obj - 0001:00037210 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00438210 f file.obj - 0001:00037290 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 00438290 f file.obj - 0001:00037330 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 00438330 f file.obj - 0001:00037410 ?FPacked@BLCK@@QAEHPAJ@Z 00438410 f file.obj - 0001:00037450 ?FUnpackData@BLCK@@QAEHXZ 00438450 f file.obj - 0001:00037550 ?CbMem@BLCK@@QAEJXZ 00438550 f file.obj - 0001:00037570 ??0MSFIL@@QAE@PAVFIL@@@Z 00438570 f file.obj - 0001:000375a0 ??1MSFIL@@UAE@XZ 004385a0 f file.obj - 0001:000375d0 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 004385d0 f file.obj - 0001:00037630 ?ReportLine@MSFIL@@UAEXPAD@Z 00438630 f file.obj - 0001:00037680 ?Report@MSFIL@@UAEXPAD@Z 00438680 f file.obj - 0001:000376e0 ?FError@MSFIL@@UAEHXZ 004386e0 f file.obj - 0001:00037720 ??_EFIL@@MAEPAXI@Z 00438720 f file.obj - 0001:00037720 ??_GFIL@@MAEPAXI@Z 00438720 f file.obj - 0001:00037740 ??_GBLCK@@UAEPAXI@Z 00438740 f file.obj - 0001:00037740 ??_EBLCK@@UAEPAXI@Z 00438740 f file.obj - 0001:00037760 ??_GMSFIL@@UAEPAXI@Z 00438760 f file.obj - 0001:00037760 ??_EMSFIL@@UAEPAXI@Z 00438760 f file.obj - 0001:000377d0 ?_FOpen@FIL@@IAEHHK@Z 004387d0 f filewin.obj - 0001:000378d0 ?_Close@FIL@@IAEXH@Z 004388d0 f filewin.obj - 0001:00037940 ?Flush@FIL@@QAEXXZ 00438940 f filewin.obj - 0001:00037970 ?_SetFpPos@FIL@@IAEXJ@Z 00438970 f filewin.obj - 0001:000379d0 ?FSetFpMac@FIL@@QAEHJ@Z 004389d0 f filewin.obj - 0001:00037a60 ?FpMac@FIL@@QAEJXZ 00438a60 f filewin.obj - 0001:00037af0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00438af0 f filewin.obj - 0001:00037ba0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00438ba0 f filewin.obj - 0001:00037c60 ?FSwapNames@FIL@@QAEHPAV1@@Z 00438c60 f filewin.obj - 0001:00037e40 ?FRename@FIL@@QAEHPAVFNI@@@Z 00438e40 f filewin.obj - 0001:00037f00 ?FWouldBe@FNI@@SGHJ@Z 00438f00 f fniwin.obj - 0001:00037f20 ?FIs@FNI@@UAEHJ@Z 00438f20 f fniwin.obj - 0001:00037f30 ?Cls@FNI@@UAEJXZ 00438f30 f fniwin.obj - 0001:00037f40 ?SetNil@FNI@@QAEXXZ 00438f40 f fniwin.obj - 0001:00037f50 ??0FNI@@QAE@XZ 00438f50 f fniwin.obj - 0001:00037f80 ?FGetOpen@FNI@@QAEHPADPAUHWND__@@@Z 00438f80 f fniwin.obj - 0001:00038040 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 00439040 f fniwin.obj - 0001:00038100 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00439100 f fniwin.obj - 0001:00038250 ?FGetUnique@FNI@@QAEHJ@Z 00439250 f fniwin.obj - 0001:00038360 ?FGetTemp@FNI@@QAEHXZ 00439360 f fniwin.obj - 0001:00038400 ?Ftg@FNI@@QAEJXZ 00439400 f fniwin.obj - 0001:00038410 ?Grfvk@FNI@@QAEKXZ 00439410 f fniwin.obj - 0001:00038520 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00439520 f fniwin.obj - 0001:00038590 ?FChangeFtg@FNI@@QAEHJ@Z 00439590 f fniwin.obj - 0001:00038640 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00439640 f fniwin.obj - 0001:00038680 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00439680 f fniwin.obj - 0001:00038690 ?TExists@FNI@@QAEHXZ 00439690 f fniwin.obj - 0001:00038790 ?FDelete@FNI@@QAEHXZ 00439790 f fniwin.obj - 0001:000387c0 ?FRename@FNI@@QAEHPAV1@@Z 004397c0 f fniwin.obj - 0001:00038810 ?FEqual@FNI@@QAEHPAV1@@Z 00439810 f fniwin.obj - 0001:00038830 ?_CchExt@FNI@@AAEJXZ 00439830 f fniwin.obj - 0001:00038870 ?_SetFtgFromName@FNI@@AAEXXZ 00439870 f fniwin.obj - 0001:000388f0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 004398f0 f fniwin.obj - 0001:00038a40 ??_GFNI@@UAEPAXI@Z 00439a40 f fniwin.obj - 0001:00038a40 ??_EFNI@@UAEPAXI@Z 00439a40 f fniwin.obj - 0001:00038a60 ?FWouldBe@CHSE@@SGHJ@Z 00439a60 f chse.obj - 0001:00038a80 ?FIs@CHSE@@UAEHJ@Z 00439a80 f chse.obj - 0001:00038a90 ?Cls@CHSE@@UAEJXZ 00439a90 f chse.obj - 0001:00038aa0 ??0CHSE@@QAE@XZ 00439aa0 f chse.obj - 0001:00038ad0 ??1CHSE@@UAE@XZ 00439ad0 f chse.obj - 0001:00038af0 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 00439af0 f chse.obj - 0001:00038b20 ?Uninit@CHSE@@QAEXXZ 00439b20 f chse.obj - 0001:00038b70 ?DumpBlck@CHSE@@QAEXPAVBLCK@@@Z 00439b70 f chse.obj - 0001:00038c10 ?DumpRgb@CHSE@@QAEXPAXJJ@Z 00439c10 f chse.obj - 0001:00038c50 ?_DumpBsf@CHSE@@IAEXJ@Z 00439c50 f chse.obj - 0001:00038e20 ?FDumpStringTable@CHSE@@QAEHPAVGSTB@@@Z 00439e20 f chse.obj - 0001:00038fa0 ??_ECHSE@@UAEPAXI@Z 00439fa0 f chse.obj - 0001:00038fa0 ??_GCHSE@@UAEPAXI@Z 00439fa0 f chse.obj - 0001:00038fc0 ?FWouldBe@DLG@@SGHJ@Z 00439fc0 f dlg.obj - 0001:00038fe0 ?FIs@DLG@@UAEHJ@Z 00439fe0 f dlg.obj - 0001:00038ff0 ?Cls@DLG@@UAEJXZ 00439ff0 f dlg.obj - 0001:00039000 ??0DLG@@AAE@J@Z 0043a000 f dlg.obj - 0001:00039020 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 0043a020 f dlg.obj - 0001:00039080 ?FGetValues@DLG@@QAEHJJ@Z 0043a080 f dlg.obj - 0001:00039150 ?SetValues@DLG@@QAEXJJ@Z 0043a150 f dlg.obj - 0001:00039330 ?IditFromSit@DLG@@QAEJJ@Z 0043a330 f dlg.obj - 0001:00039380 ?_FDitChange@DLG@@AAEHPAJ@Z 0043a380 f dlg.obj - 0001:000393d0 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 0043a3d0 f dlg.obj - 0001:00039430 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 0043a430 f dlg.obj - 0001:00039550 ?FGetCheck@DLG@@QAEHJ@Z 0043a550 f dlg.obj - 0001:00039570 ?PutCheck@DLG@@QAEXJH@Z 0043a570 f dlg.obj - 0001:000395a0 ?FGetLwFromEdit@DLG@@QAEHJPAJPAH@Z 0043a5a0 f dlg.obj - 0001:00039620 ?FPutLwInEdit@DLG@@QAEHJJ@Z 0043a620 f dlg.obj - 0001:00039670 ?FAddToList@DLG@@QAEHJPAVSTN@@@Z 0043a670 f dlg.obj - 0001:00039730 ?ClearList@DLG@@QAEXJ@Z 0043a730 f dlg.obj - 0001:000397c0 ??_GDLG@@UAEPAXI@Z 0043a7c0 f dlg.obj - 0001:000397c0 ??_EDLG@@UAEPAXI@Z 0043a7c0 f dlg.obj - 0001:00039870 ?_FInit@DLG@@AAEHXZ 0043a870 f dlgwin.obj - 0001:00039ba0 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 0043aba0 f dlgwin.obj - 0001:00039eb0 ?IditDo@DLG@@QAEJJ@Z 0043aeb0 f dlgwin.obj - 0001:00039ef0 ?SelectDit@DLG@@QAEXJ@Z 0043aef0 f dlgwin.obj - 0001:00039f50 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 0043af50 f dlgwin.obj - 0001:00039fb0 ?_SetRadioGroup@DLG@@AAEXJJ@Z 0043afb0 f dlgwin.obj - 0001:00039ff0 ?_FGetCheckBox@DLG@@AAEHJ@Z 0043aff0 f dlgwin.obj - 0001:0003a030 ?_SetCheckBox@DLG@@AAEXJH@Z 0043b030 f dlgwin.obj - 0001:0003a070 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 0043b070 f dlgwin.obj - 0001:0003a0d0 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 0043b0d0 f dlgwin.obj - 0001:0003a110 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 0043b110 f dlgwin.obj - 0001:0003a170 ?_ClearList@DLG@@AAEXJ@Z 0043b170 f dlgwin.obj - 0001:0003a2a0 ?FWouldBe@CTL@@SGHJ@Z 0043b2a0 f ctl.obj - 0001:0003a2c0 ?FIs@CTL@@UAEHJ@Z 0043b2c0 f ctl.obj - 0001:0003a2d0 ?Cls@CTL@@UAEJXZ 0043b2d0 f ctl.obj - 0001:0003a2e0 ?FWouldBe@SCB@@SGHJ@Z 0043b2e0 f ctl.obj - 0001:0003a300 ?FIs@SCB@@UAEHJ@Z 0043b300 f ctl.obj - 0001:0003a310 ?Cls@SCB@@UAEJXZ 0043b310 f ctl.obj - 0001:0003a320 ?FWouldBe@WSB@@SGHJ@Z 0043b320 f ctl.obj - 0001:0003a340 ?FIs@WSB@@UAEHJ@Z 0043b340 f ctl.obj - 0001:0003a350 ?Cls@WSB@@UAEJXZ 0043b350 f ctl.obj - 0001:0003a360 ??0CTL@@IAE@PAUGCB@@@Z 0043b360 f ctl.obj - 0001:0003a380 ??1CTL@@MAE@XZ 0043b380 f ctl.obj - 0001:0003a3c0 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 0043b3c0 f ctl.obj - 0001:0003a400 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 0043b400 f ctl.obj - 0001:0003a420 ?_NewRc@CTL@@MAEXXZ 0043b420 f ctl.obj - 0001:0003a4a0 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 0043b4a0 f ctl.obj - 0001:0003a560 ?DxpNormal@SCB@@SGJXZ 0043b560 f ctl.obj - 0001:0003a580 ?DypNormal@SCB@@SGJXZ 0043b580 f ctl.obj - 0001:0003a5a0 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 0043b5a0 f ctl.obj - 0001:0003a680 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 0043b680 f ctl.obj - 0001:0003a6f0 ?_FCreate@SCB@@IAEHJJJK@Z 0043b6f0 f ctl.obj - 0001:0003a800 ?SetVal@SCB@@QAEXJH@Z 0043b800 f ctl.obj - 0001:0003a870 ?SetValMinMax@SCB@@QAEXJJJH@Z 0043b870 f ctl.obj - 0001:0003a900 ?TrackScroll@SCB@@UAEXJJ@Z 0043b900 f ctl.obj - 0001:0003aaa0 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 0043baa0 f ctl.obj - 0001:0003abf0 ??_GSCB@@UAEPAXI@Z 0043bbf0 f ctl.obj - 0001:0003abf0 ??_ESCB@@UAEPAXI@Z 0043bbf0 f ctl.obj - 0001:0003ac10 ??_GWSB@@UAEPAXI@Z 0043bc10 f ctl.obj - 0001:0003ac10 ??_EWSB@@UAEPAXI@Z 0043bc10 f ctl.obj - 0001:0003ac30 ??_GCTL@@MAEPAXI@Z 0043bc30 f ctl.obj - 0001:0003ac30 ??_ECTL@@MAEPAXI@Z 0043bc30 f ctl.obj - 0001:0003ad90 ?FWouldBe@SPLC@@SGHJ@Z 0043bd90 f spell.obj - 0001:0003adb0 ?FIs@SPLC@@UAEHJ@Z 0043bdb0 f spell.obj - 0001:0003adc0 ?Cls@SPLC@@UAEJXZ 0043bdc0 f spell.obj - 0001:0003add0 ??0SPLC@@IAE@XZ 0043bdd0 f spell.obj - 0001:0003adf0 ??1SPLC@@UAE@XZ 0043bdf0 f spell.obj - 0001:0003ae50 ?PsplcNew@SPLC@@SGPAV1@GPAVSTN@@@Z 0043be50 f spell.obj - 0001:0003aea0 ?_FInit@SPLC@@MAEHGPAVSTN@@@Z 0043bea0 f spell.obj - 0001:0003af60 ?_FEnsureDll@SPLC@@MAEHG@Z 0043bf60 f spell.obj - 0001:0003b190 ?_FEnsureMainDict@SPLC@@MAEHGPAVFNI@@@Z 0043c190 f spell.obj - 0001:0003b2e0 ?_FEnsureUserDict@SPLC@@MAEHPAVSTN@@PAVFNI@@@Z 0043c2e0 f spell.obj - 0001:0003b480 ?_FLoadDictionary@SPLC@@MAEHGPADPAUmdrs@@@Z 0043c480 f spell.obj - 0001:0003b4c0 ?_FLoadUserDictionary@SPLC@@MAEHPADPAIH@Z 0043c4c0 f spell.obj - 0001:0003b510 ?FSetOptions@SPLC@@UAEHK@Z 0043c510 f spell.obj - 0001:0003b540 ?FCheck@SPLC@@UAEHPADJPAJ1PAVSTN@@1@Z 0043c540 f spell.obj - 0001:0003b670 ?FSuggest@SPLC@@UAEHPADJHPAVSTN@@@Z 0043c670 f spell.obj - 0001:0003b800 ?FIgnoreAll@SPLC@@UAEHPAVSTN@@@Z 0043c800 f spell.obj - 0001:0003b830 ?FChange@SPLC@@UAEHPAVSTN@@0H@Z 0043c830 f spell.obj - 0001:0003b870 ?FAddToUser@SPLC@@UAEHPAVSTN@@@Z 0043c870 f spell.obj - 0001:0003b8a0 ?FlushIgnoreList@SPLC@@UAEXXZ 0043c8a0 f spell.obj - 0001:0003b8c0 ?FlushChangeList@SPLC@@UAEXH@Z 0043c8c0 f spell.obj - 0001:0003b8e0 ?SpellInit@SPLC@@IAEGPAKPAUWizSpecChars@@@Z 0043c8e0 f spell.obj - 0001:0003b910 ?SpellOptions@SPLC@@IAEGKJ@Z 0043c910 f spell.obj - 0001:0003b940 ?SpellCheck@SPLC@@IAEGKGPAUSpellInputBuffer@@PAUSpellReturnBuffer@@@Z 0043c940 f spell.obj - 0001:0003b970 ?SpellTerminate@SPLC@@IAEGKH@Z 0043c970 f spell.obj - 0001:0003b9a0 ?SpellOpenMdr@SPLC@@IAEGKPAD0HHGPAUmdrs@@@Z 0043c9a0 f spell.obj - 0001:0003b9e0 ?SpellOpenUdr@SPLC@@IAEGKPADHGPAIPAH@Z 0043c9e0 f spell.obj - 0001:0003ba20 ?SpellAddUdr@SPLC@@IAEGKIPAD@Z 0043ca20 f spell.obj - 0001:0003ba50 ?SpellAddChangeUdr@SPLC@@IAEGKIPAD0@Z 0043ca50 f spell.obj - 0001:0003ba80 ?SpellClearUdr@SPLC@@IAEGKI@Z 0043ca80 f spell.obj - 0001:0003bab0 ?SpellCloseMdr@SPLC@@IAEGKPAUmdrs@@@Z 0043cab0 f spell.obj - 0001:0003bae0 ?SpellCloseUdr@SPLC@@IAEGKIH@Z 0043cae0 f spell.obj - 0001:0003bb20 ??_ESPLC@@UAEPAXI@Z 0043cb20 f spell.obj - 0001:0003bb20 ??_GSPLC@@UAEPAXI@Z 0043cb20 f spell.obj - 0001:0003bbf0 ?FWouldBe@APP@@SGHJ@Z 0043cbf0 f chelp.obj - 0001:0003bc10 ?FIs@APP@@UAEHJ@Z 0043cc10 f chelp.obj - 0001:0003bc20 ?Cls@APP@@UAEJXZ 0043cc20 f chelp.obj - 0001:0003bc30 ?FWouldBe@LIG@@SGHJ@Z 0043cc30 f chelp.obj - 0001:0003bc50 ?FIs@LIG@@UAEHJ@Z 0043cc50 f chelp.obj - 0001:0003bc60 ?Cls@LIG@@UAEJXZ 0043cc60 f chelp.obj - 0001:0003bc70 ?FWouldBe@LID@@SGHJ@Z 0043cc70 f chelp.obj - 0001:0003bc90 ?FIs@LID@@UAEHJ@Z 0043cc90 f chelp.obj - 0001:0003bca0 ?Cls@LID@@UAEJXZ 0043cca0 f chelp.obj - 0001:0003bcb0 ?FWouldBe@CCG@@SGHJ@Z 0043ccb0 f chelp.obj - 0001:0003bcd0 ?FIs@CCG@@UAEHJ@Z 0043ccd0 f chelp.obj - 0001:0003bce0 ?Cls@CCG@@UAEJXZ 0043cce0 f chelp.obj - 0001:0003bcf0 ?FWouldBe@CCGT@@SGHJ@Z 0043ccf0 f chelp.obj - 0001:0003bd10 ?FIs@CCGT@@UAEHJ@Z 0043cd10 f chelp.obj - 0001:0003bd20 ?Cls@CCGT@@UAEJXZ 0043cd20 f chelp.obj - 0001:0003bd40 ?FrameMain@@YGXXZ 0043cd40 f chelp.obj - 0001:0003bd80 ?_FInit@APP@@MAEHKKJ@Z 0043cd80 f chelp.obj - 0001:0003bfc0 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 0043cfc0 f chelp.obj - 0001:0003bfe0 ?UpdateHwnd@APP@@UAEXPAUHWND__@@PAVRC@@K@Z 0043cfe0 f chelp.obj - 0001:0003c040 ?_FastUpdate@APP@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 0043d040 f chelp.obj - 0001:0003c090 ?FCmdOpen@APP@@UAEHPAUCMD@@@Z 0043d090 f chelp.obj - 0001:0003c170 ?FOpenDocFile@APP@@QAEHPAVFNI@@J@Z 0043d170 f chelp.obj - 0001:0003c330 ?FCmdLoadResFile@APP@@UAEHPAUCMD@@@Z 0043d330 f chelp.obj - 0001:0003c390 ?FLoadResFile@APP@@QAEHPAVFNI@@@Z 0043d390 f chelp.obj - 0001:0003c510 ?FEnableChooseLanguage@APP@@UAEHPAUCMD@@PAK@Z 0043d510 f chelp.obj - 0001:0003c540 ?FCmdChooseLanguage@APP@@UAEHPAUCMD@@@Z 0043d540 f chelp.obj - 0001:0003c610 ?PligNew@APP@@QAEPAVLIG@@HPAUGCB@@PAVTXHD@@@Z 0043d610 f chelp.obj - 0001:0003c650 ??0LID@@IAE@XZ 0043d650 f chelp.obj - 0001:0003c670 ??1LID@@MAE@XZ 0043d670 f chelp.obj - 0001:0003c6b0 ?PlidNew@LID@@SGPAV1@PAVCRM@@KK@Z 0043d6b0 f chelp.obj - 0001:0003c710 ?_FInit@LID@@IAEHPAVCRM@@KK@Z 0043d710 f chelp.obj - 0001:0003c760 ?FRefresh@LID@@QAEHXZ 0043d760 f chelp.obj - 0001:0003c8e0 ?Ccki@LID@@QAEJXZ 0043d8e0 f chelp.obj - 0001:0003c8f0 ?GetCki@LID@@QAEXJPAUCKI@@PAPAVCRF@@@Z 0043d8f0 f chelp.obj - 0001:0003c930 ?PmbmpGet@LID@@QAEPAVMBMP@@J@Z 0043d930 f chelp.obj - 0001:0003c970 ??0LIG@@IAE@PAVLID@@PAUGCB@@@Z 0043d970 f chelp.obj - 0001:0003c990 ?PligNew@LIG@@SGPAV1@PAVLID@@PAUGCB@@PAVTXHD@@J@Z 0043d990 f chelp.obj - 0001:0003c9f0 ?Plid@LIG@@QAEPAVLID@@XZ 0043d9f0 f chelp.obj - 0001:0003ca00 ?_FInit@LIG@@IAEHPAVTXHD@@J@Z 0043da00 f chelp.obj - 0001:0003cab0 ?Refresh@LIG@@QAEXXZ 0043dab0 f chelp.obj - 0001:0003cb10 ?Draw@LIG@@UAEXPAVGNV@@PAVRC@@@Z 0043db10 f chelp.obj - 0001:0003ccc0 ?FCmdScroll@LIG@@UAEHPAUCMD@@@Z 0043dcc0 f chelp.obj - 0001:0003ce20 ?MouseDown@LIG@@UAEXJJJK@Z 0043de20 f chelp.obj - 0001:0003cf30 ??0CCG@@QAE@PAUGCB@@PAVTXHD@@HJ@Z 0043df30 f chelp.obj - 0001:0003cf70 ?MouseDown@CCG@@UAEXJJJK@Z 0043df70 f chelp.obj - 0001:0003cff0 ?Draw@CCG@@UAEXPAVGNV@@PAVRC@@@Z 0043dff0 f chelp.obj - 0001:0003d110 ?_FGetAcrFromPt@CCG@@IAEHJJPAVACR@@PAVRC@@PAJ@Z 0043e110 f chelp.obj - 0001:0003d230 ?FEnsureToolTip@CCG@@UAEHPAPAVGOB@@JJ@Z 0043e230 f chelp.obj - 0001:0003d2a0 ?FCmdMouseMove@CCG@@UAEHPAUCMD_MOUSE@@@Z 0043e2a0 f chelp.obj - 0001:0003d420 ??0CCGT@@QAE@PAUGCB@@VACR@@PAVSTN@@@Z 0043e420 f chelp.obj - 0001:0003d460 ?SetAcr@CCGT@@QAEXVACR@@PAVSTN@@@Z 0043e460 f chelp.obj - 0001:0003d4c0 ?Draw@CCGT@@UAEXPAVGNV@@PAVRC@@@Z 0043e4c0 f chelp.obj - 0001:0003d670 ??_GLID@@MAEPAXI@Z 0043e670 f chelp.obj - 0001:0003d670 ??_ELID@@MAEPAXI@Z 0043e670 f chelp.obj - 0001:0003d690 ??_ELIG@@UAEPAXI@Z 0043e690 f chelp.obj - 0001:0003d690 ??_GLIG@@UAEPAXI@Z 0043e690 f chelp.obj - 0001:0003d6b0 ??_GCCG@@UAEPAXI@Z 0043e6b0 f chelp.obj - 0001:0003d6b0 ??_ECCG@@UAEPAXI@Z 0043e6b0 f chelp.obj - 0001:0003d6d0 ??_ECCGT@@UAEPAXI@Z 0043e6d0 f chelp.obj - 0001:0003d6d0 ??_GCCGT@@UAEPAXI@Z 0043e6d0 f chelp.obj - 0001:0003d6f0 ??_EAPP@@UAEPAXI@Z 0043e6f0 f chelp.obj - 0001:0003d6f0 ??_GAPP@@UAEPAXI@Z 0043e6f0 f chelp.obj - 0001:0003d7a0 ??_9@$BKI@A 0043e7a0 f chelp.obj - 0001:0003d7b0 ??_9@$BBCI@A 0043e7b0 f chelp.obj - 0001:0003d7c0 ??_9@$BBCM@A 0043e7c0 f chelp.obj - 0001:0003d7d0 ??_9@$BBDA@A 0043e7d0 f chelp.obj - 0001:0003d7e0 ??_9@$BBDE@A 0043e7e0 f chelp.obj - 0001:0003d7f0 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 0043e7f0 f chelp.obj - 0001:0003d800 ?Pcmm@LIG@@MAEPAUCMM@CMH@@XZ 0043e800 f chelp.obj - 0001:0003d810 ?FWouldBe@HEDO@@SGHJ@Z 0043e810 f chtop.obj - 0001:0003d830 ?FIs@HEDO@@UAEHJ@Z 0043e830 f chtop.obj - 0001:0003d840 ?Cls@HEDO@@UAEJXZ 0043e840 f chtop.obj - 0001:0003d850 ?FWouldBe@TSEL@@SGHJ@Z 0043e850 f chtop.obj - 0001:0003d870 ?FIs@TSEL@@UAEHJ@Z 0043e870 f chtop.obj - 0001:0003d880 ?Cls@TSEL@@UAEJXZ 0043e880 f chtop.obj - 0001:0003d890 ?FWouldBe@HEDG@@SGHJ@Z 0043e890 f chtop.obj - 0001:0003d8b0 ?FIs@HEDG@@UAEHJ@Z 0043e8b0 f chtop.obj - 0001:0003d8c0 ?Cls@HEDG@@UAEJXZ 0043e8c0 f chtop.obj - 0001:0003d8d0 ?FWouldBe@HETD@@SGHJ@Z 0043e8d0 f chtop.obj - 0001:0003d8f0 ?FIs@HETD@@UAEHJ@Z 0043e8f0 f chtop.obj - 0001:0003d900 ?Cls@HETD@@UAEJXZ 0043e900 f chtop.obj - 0001:0003d910 ?FWouldBe@HETG@@SGHJ@Z 0043e910 f chtop.obj - 0001:0003d930 ?FIs@HETG@@UAEHJ@Z 0043e930 f chtop.obj - 0001:0003d940 ?Cls@HETG@@UAEJXZ 0043e940 f chtop.obj - 0001:0003d950 ?FWouldBe@HTRU@@SGHJ@Z 0043e950 f chtop.obj - 0001:0003d970 ?FIs@HTRU@@UAEHJ@Z 0043e970 f chtop.obj - 0001:0003d980 ?Cls@HTRU@@UAEJXZ 0043e980 f chtop.obj - 0001:0003d990 ??0HEDO@@IAE@XZ 0043e990 f chtop.obj - 0001:0003d9b0 ??1HEDO@@MAE@XZ 0043e9b0 f chtop.obj - 0001:0003d9e0 ?PhedoNew@HEDO@@SGPAV1@PAVFNI@@PAVRCA@@@Z 0043e9e0 f chtop.obj - 0001:0003da60 ?PddgNew@HEDO@@UAEPAVDDG@@PAUGCB@@@Z 0043ea60 f chtop.obj - 0001:0003da80 ?FGetFni@HEDO@@UAEHPAVFNI@@@Z 0043ea80 f chtop.obj - 0001:0003dac0 ?FSaveToFni@HEDO@@UAEHPAVFNI@@H@Z 0043eac0 f chtop.obj - 0001:0003db20 ?FGetFniSave@HEDO@@UAEHPAVFNI@@@Z 0043eb20 f chtop.obj - 0001:0003db40 ?InvalAllDdg@HEDO@@UAEXK@Z 0043eb40 f chtop.obj - 0001:0003dba0 ?FExportText@HEDO@@UAEHXZ 0043eba0 f chtop.obj - 0001:0003dcb0 ?DoFindNext@HEDO@@UAEXPAVHETD@@KH@Z 0043ecb0 f chtop.obj - 0001:0003de20 ?PhetdOpenNext@HEDO@@UAEPAVHETD@@PAV2@@Z 0043ee20 f chtop.obj - 0001:0003df50 ?PhetdOpenPrev@HEDO@@UAEPAVHETD@@PAV2@@Z 0043ef50 f chtop.obj - 0001:0003e060 ??0TSEL@@QAE@PAVCFL@@@Z 0043f060 f chtop.obj - 0001:0003e090 ?_SetNil@TSEL@@IAEXXZ 0043f090 f chtop.obj - 0001:0003e0a0 ?FSetIcki@TSEL@@QAEHJ@Z 0043f0a0 f chtop.obj - 0001:0003e100 ?FSetCno@TSEL@@QAEHK@Z 0043f100 f chtop.obj - 0001:0003e130 ?Adjust@TSEL@@QAEXXZ 0043f130 f chtop.obj - 0001:0003e180 ??0HEDG@@IAE@PAVHEDO@@PAVCFL@@PAUGCB@@@Z 0043f180 f chtop.obj - 0001:0003e240 ?PhedgNew@HEDG@@SGPAV1@PAVHEDO@@PAVCFL@@PAUGCB@@@Z 0043f240 f chtop.obj - 0001:0003e2b0 ?_Activate@HEDG@@MAEXH@Z 0043f2b0 f chtop.obj - 0001:0003e2f0 ?InvalCno@HEDG@@UAEXK@Z 0043f2f0 f chtop.obj - 0001:0003e3d0 ?Draw@HEDG@@UAEXPAVGNV@@PAVRC@@@Z 0043f3d0 f chtop.obj - 0001:0003e5c0 ?_DrawSel@HEDG@@IAEXPAVGNV@@@Z 0043f5c0 f chtop.obj - 0001:0003e630 ?_SetSel@HEDG@@IAEXJK@Z 0043f630 f chtop.obj - 0001:0003e6d0 ?_ShowSel@HEDG@@IAEXXZ 0043f6d0 f chtop.obj - 0001:0003e750 ?MouseDown@HEDG@@UAEXJJJK@Z 0043f750 f chtop.obj - 0001:0003e7d0 ?FCmdKey@HEDG@@UAEHPAUCMD_KEY@@@Z 0043f7d0 f chtop.obj - 0001:0003e960 ?_ScvMax@HEDG@@MAEJH@Z 0043f960 f chtop.obj - 0001:0003e9c0 ?FEnableHedgCmd@HEDG@@UAEHPAUCMD@@PAK@Z 0043f9c0 f chtop.obj - 0001:0003ea80 ?FCmdDeleteTopic@HEDG@@UAEHPAUCMD@@@Z 0043fa80 f chtop.obj - 0001:0003ea90 ?FCmdEditTopic@HEDG@@UAEHPAUCMD@@@Z 0043fa90 f chtop.obj - 0001:0003eac0 ?FCmdNewTopic@HEDG@@UAEHPAUCMD@@@Z 0043fac0 f chtop.obj - 0001:0003ead0 ?FCmdExport@HEDG@@UAEHPAUCMD@@@Z 0043fad0 f chtop.obj - 0001:0003eaf0 ?_EditTopic@HEDG@@IAEXK@Z 0043faf0 f chtop.obj - 0001:0003eb50 ?_FCopySel@HEDG@@MAEHPAPAVDOCB@@@Z 0043fb50 f chtop.obj - 0001:0003ebe0 ?_ClearSel@HEDG@@MAEXXZ 0043fbe0 f chtop.obj - 0001:0003ec20 ?_FPaste@HEDG@@MAEHPAVCLIP@@HJ@Z 0043fc20 f chtop.obj - 0001:0003eda0 ?_GetContent@HEDG@@IAEXPAVRC@@@Z 0043fda0 f chtop.obj - 0001:0003edc0 ?_IckiFromYp@HEDG@@IAEJJ@Z 0043fdc0 f chtop.obj - 0001:0003edf0 ?_Scroll@HEDG@@MAEXJJJJ@Z 0043fdf0 f chtop.obj - 0001:0003f020 ?_ScrollDxpDyp@HEDG@@MAEXJJ@Z 00440020 f chtop.obj - 0001:0003f090 ?FCmdFind@HEDG@@UAEHPAUCMD@@@Z 00440090 f chtop.obj - 0001:0003f0e0 ?FCmdPrint@HEDG@@UAEHPAUCMD@@@Z 004400e0 f chtop.obj - 0001:0003f9b0 ?_StartPage@HEDG@@IAEXPAVGNV@@PAVSTN@@JPAVRC@@J@Z 004409b0 f chtop.obj - 0001:0003fa80 ?FCmdCheckSpelling@HEDG@@UAEHPAUCMD@@@Z 00440a80 f chtop.obj - 0001:0003fca0 ?FCmdDump@HEDG@@UAEHPAUCMD@@@Z 00440ca0 f chtop.obj - 0001:0003ff10 ?CloseDeletedHetd@HETD@@SGXPAVDOCB@@@Z 00440f10 f chtop.obj - 0001:0003ff70 ?PhetdFromChunk@HETD@@SGPAV1@PAVDOCB@@K@Z 00440f70 f chtop.obj - 0001:0003ffb0 ??0HETD@@IAE@PAVDOCB@@PAVRCA@@PAVCFL@@K@Z 00440fb0 f chtop.obj - 0001:00040000 ??1HETD@@MAE@XZ 00441000 f chtop.obj - 0001:00040030 ?PhetdNew@HETD@@SGPAV1@PAVDOCB@@PAVRCA@@PAVCFL@@K@Z 00441030 f chtop.obj - 0001:00040140 ?_FReadChunk@HETD@@MAEHPAVCFL@@KKH@Z 00441140 f chtop.obj - 0001:00040240 ?GetName@HETD@@UAEXPAVSTN@@@Z 00441240 f chtop.obj - 0001:000402f0 ?FSave@HETD@@UAEHJ@Z 004412f0 f chtop.obj - 0001:00040400 ?FSaveToChunk@HETD@@UAEHPAVCFL@@PAUCKI@@H@Z 00441400 f chtop.obj - 0001:000404e0 ?PdmdNew@HETD@@UAEPAVDMD@@XZ 004414e0 f chtop.obj - 0001:000406e0 ?PddgNew@HETD@@UAEPAVDDG@@PAUGCB@@@Z 004416e0 f chtop.obj - 0001:000406f0 ?EditHtop@HETD@@QAEXXZ 004416f0 f chtop.obj - 0001:00040c70 ?Pcmm@HEDG@@MAEPAUCMM@CMH@@XZ 00441c70 f chtop.obj - 0001:00040c80 ?FDoFind@HETD@@QAEHJPAJ0@Z 00441c80 f chtop.obj - 0001:00040d10 ?FDoReplace@HETD@@QAEHJJPAJ0@Z 00441d10 f chtop.obj - 0001:00040dc0 ?GetHtopStn@HETD@@QAEXJPAVSTN@@@Z 00441dc0 f chtop.obj - 0001:00040e00 ??0HETG@@IAE@PAVHETD@@PAUGCB@@@Z 00441e00 f chtop.obj - 0001:00040e30 ?Pcmm@HETG@@MAEPAUCMM@CMH@@XZ 00441e30 f chtop.obj - 0001:00040e40 ?PhetgNew@HETG@@SGPAV1@PAVHETD@@PAUGCB@@@Z 00441e40 f chtop.obj - 0001:00040eb0 ?_DypTrul@HETG@@MAEJXZ 00441eb0 f chtop.obj - 0001:00040ec0 ?_PtrulNew@HETG@@MAEPAVTRUL@@PAUGCB@@@Z 00441ec0 f chtop.obj - 0001:00040f50 ?FInsertPicture@HETG@@UAEHPAVCRF@@KK@Z 00441f50 f chtop.obj - 0001:000410c0 ?_FDlgFormatButton@@YGHPAVDLG@@PAJPAX@Z 004420c0 f chtop.obj - 0001:00041160 ?FInsertButton@HETG@@UAEHPAVCRF@@KK@Z 00442160 f chtop.obj - 0001:00041330 ?_FDlgFormatEdit@@YGHPAVDLG@@PAJPAX@Z 00442330 f chtop.obj - 0001:000413f0 ?FCmdInsertEdit@HETG@@UAEHPAUCMD@@@Z 004423f0 f chtop.obj - 0001:000414f0 ?_FCopySel@HETG@@MAEHPAPAVDOCB@@@Z 004424f0 f chtop.obj - 0001:000415d0 ?_DrawLinExtra@HETG@@MAEXPAVGNV@@PAVRC@@PAULIN@TXTG@@JJK@Z 004425d0 f chtop.obj - 0001:000416d0 ?Draw@HETG@@UAEXPAVGNV@@PAVRC@@@Z 004426d0 f chtop.obj - 0001:00041740 ?FCmdGroupText@HETG@@UAEHPAUCMD@@@Z 00442740 f chtop.obj - 0001:00041920 ?FCmdLineSpacing@HETG@@UAEHPAUCMD@@@Z 00442920 f chtop.obj - 0001:00041ab0 ?FEnableHetgCmd@HETG@@UAEHPAUCMD@@PAK@Z 00442ab0 f chtop.obj - 0001:00041c00 ?FCmdFormatPicture@HETG@@UAEHPAUCMD@@@Z 00442c00 f chtop.obj - 0001:00041e00 ?FCmdFormatButton@HETG@@UAEHPAUCMD@@@Z 00442e00 f chtop.obj - 0001:000420a0 ?FCmdFormatEdit@HETG@@UAEHPAUCMD@@@Z 004430a0 f chtop.obj - 0001:00042230 ?FCmdEditHtop@HETG@@UAEHPAUCMD@@@Z 00443230 f chtop.obj - 0001:00042250 ?FCmdNextTopic@HETG@@UAEHPAUCMD@@@Z 00443250 f chtop.obj - 0001:00042340 ?FCmdFind@HETG@@UAEHPAUCMD@@@Z 00443340 f chtop.obj - 0001:000424e0 ?FCmdPrint@HETG@@UAEHPAUCMD@@@Z 004434e0 f chtop.obj - 0001:00042740 ?FCmdCheckSpelling@HETG@@UAEHPAUCMD@@@Z 00443740 f chtop.obj - 0001:000427f0 ?FCheckSpelling@HETG@@UAEHPAJ@Z 004437f0 f chtop.obj - 0001:00042c90 ?InvalCp@HETG@@UAEXJJJ@Z 00443c90 f chtop.obj - 0001:00042cf0 ?_FGetOtherSize@HETG@@MAEHPAJ@Z 00443cf0 f chtop.obj - 0001:00042d60 ?_FGetOtherSubSuper@HETG@@MAEHPAJ@Z 00443d60 f chtop.obj - 0001:00042e00 ?DypLine@HETG@@QAEJJ@Z 00443e00 f chtop.obj - 0001:00042e40 ??0HTRU@@IAE@PAUGCB@@PAVTXTG@@@Z 00443e40 f chtop.obj - 0001:00042e60 ?PhtruNew@HTRU@@SGPAV1@PAUGCB@@PAVTXTG@@JJJJJJK@Z 00443e60 f chtop.obj - 0001:00042ed0 ?Draw@HTRU@@UAEXPAVGNV@@PAVRC@@@Z 00443ed0 f chtop.obj - 0001:000430a0 ?FCmdTrackMouse@HTRU@@UAEHPAUCMD_MOUSE@@@Z 004440a0 f chtop.obj - 0001:00043210 ?FCmdFontDialog@HETG@@UAEHPAUCMD@@@Z 00444210 f chtop.obj - 0001:00043370 ?SetDxpTab@HTRU@@UAEXJ@Z 00444370 f chtop.obj - 0001:00043390 ?SetDxpDoc@HTRU@@UAEXJ@Z 00444390 f chtop.obj - 0001:000433b0 ?SetXpLeft@HTRU@@UAEXJ@Z 004443b0 f chtop.obj - 0001:000433d0 ?SetDypHeight@HTRU@@UAEXJ@Z 004443d0 f chtop.obj - 0001:000433f0 ?_TokenizeStn@@YGXPAVSTN@@@Z 004443f0 f chtop.obj - 0001:00043480 ?_FDlgFind@@YGHPAVDLG@@PAJPAX@Z 00444480 f chtop.obj - 0001:00043550 ?_FDoFindDlg@@YGHXZ 00444550 f chtop.obj - 0001:00043670 ??_EHEDO@@MAEPAXI@Z 00444670 f chtop.obj - 0001:00043670 ??_GHEDO@@MAEPAXI@Z 00444670 f chtop.obj - 0001:00043690 ??_ETSEL@@UAEPAXI@Z 00444690 f chtop.obj - 0001:00043690 ??_GTSEL@@UAEPAXI@Z 00444690 f chtop.obj - 0001:000436b0 ??_EHEDG@@UAEPAXI@Z 004446b0 f chtop.obj - 0001:000436b0 ??_GHEDG@@UAEPAXI@Z 004446b0 f chtop.obj - 0001:000436e0 ??_EHETD@@MAEPAXI@Z 004446e0 f chtop.obj - 0001:000436e0 ??_GHETD@@MAEPAXI@Z 004446e0 f chtop.obj - 0001:00043700 ??_GHETG@@UAEPAXI@Z 00444700 f chtop.obj - 0001:00043700 ??_EHETG@@UAEPAXI@Z 00444700 f chtop.obj - 0001:00043720 ??_EHTRU@@UAEPAXI@Z 00444720 f chtop.obj - 0001:00043720 ??_GHTRU@@UAEPAXI@Z 00444720 f chtop.obj - 0001:00043740 ??_9@$BBEA@A 00444740 f chtop.obj - 0001:00043750 ??_9@$BBCA@A 00444750 f chtop.obj - 0001:00043760 ??_9@$BOA@A 00444760 f chtop.obj - 0001:00043770 ??_9@$BBCE@A 00444770 f chtop.obj - 0001:00043780 ??_9@$BBEE@A 00444780 f chtop.obj - 0001:00043790 ??_9@$BOE@A 00444790 f chtop.obj - 0001:000437a0 ??_9@$BBEI@A 004447a0 f chtop.obj - 0001:000437b0 ??_9@$BBEM@A 004447b0 f chtop.obj - 0001:000437c0 ??_9@$BMM@A 004447c0 f chtop.obj - 0001:000437d0 ??_9@$BBFA@A 004447d0 f chtop.obj - 0001:000437e0 ??_9@$BNA@A 004447e0 f chtop.obj - 0001:000437f0 ??_9@$BNE@A 004447f0 f chtop.obj - 0001:00043800 ??_9@$BBDI@A 00444800 f chtop.obj - 0001:00043810 ??_9@$BNI@A 00444810 f chtop.obj - 0001:00043820 ??_9@$BBDM@A 00444820 f chtop.obj - 0001:00043830 ??_9@$BNM@A 00444830 f chtop.obj - 0001:00043840 ?FExportHelpText@@YGHPAVCFL@@PAVMSNK@@@Z 00444840 f chelpexp.obj - 0001:00044944 _GetOpenFileNameA@4 00445944 comdlg32:comdlg32.dll - 0001:0004494a _GetSaveFileNameA@4 0044594a comdlg32:comdlg32.dll - 0001:00044950 _PrintDlgA@4 00445950 comdlg32:comdlg32.dll - 0001:00044956 _timeGetTime@0 00445956 winmm:WINMM.dll - 0001:0004495c _waveOutGetDevCapsA@12 0044595c winmm:WINMM.dll - 0001:00044962 _waveOutGetNumDevs@0 00445962 winmm:WINMM.dll - 0001:00044968 _midiOutGetVolume@8 00445968 winmm:WINMM.dll - 0001:0004496e _midiOutSetVolume@8 0044596e winmm:WINMM.dll - 0001:00044974 _midiOutShortMsg@8 00445974 winmm:WINMM.dll - 0001:0004497a _midiOutReset@4 0044597a winmm:WINMM.dll - 0001:00044980 _midiOutOpen@20 00445980 winmm:WINMM.dll - 0001:00044986 _midiOutClose@4 00445986 winmm:WINMM.dll - 0001:0004498c _midiOutUnprepareHeader@12 0044598c winmm:WINMM.dll - 0001:00044992 _midiOutPrepareHeader@12 00445992 winmm:WINMM.dll - 0001:000449a0 _AllocSoundFromStream@16 004459a0 f audios:sound.obj - 0001:00044a30 ??0CAMWavFileSrc@@QAE@XZ 00445a30 f audios:sound.obj - 0001:00044a60 ??1CAMWavFileSrc@@QAE@XZ 00445a60 f audios:sound.obj - 0001:00044ac0 ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 00445ac0 f audios:sound.obj - 0001:00044b10 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 00445b10 f audios:sound.obj - 0001:00044b30 ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 00445b30 f audios:sound.obj - 0001:00044b80 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 00445b80 f audios:sound.obj - 0001:00044d20 ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 00445d20 f audios:sound.obj - 0001:00044e70 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 00445e70 f audios:sound.obj - 0001:00044ef0 ?AddRef@CAMWavFileSrc@@UAGKXZ 00445ef0 f audios:sound.obj - 0001:00044f00 ?Release@CAMWavFileSrc@@UAGKXZ 00445f00 f audios:sound.obj - 0001:00044f40 ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 00445f40 f audios:sound.obj - 0001:00044fd0 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 00445fd0 f audios:sound.obj - 0001:00045000 ?GetSamples@CAMWavFileSrc@@UAGKXZ 00446000 f audios:sound.obj - 0001:00045010 ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 00446010 f audios:sound.obj - 0001:00045040 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 00446040 f audios:sound.obj - 0001:00045440 ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 00446440 f audios:sound.obj - 0001:00045450 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 00446450 f audios:sound.obj - 0001:00045470 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 00446470 f audios:sound.obj - 0001:000457a0 ??1CRIFF@@QAE@XZ 004467a0 f audios:sound.obj - 0001:000457b0 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 004467b0 f audios:sound.obj - 0001:000457c0 ?AddRef@CAMWavFileSrc@@W3AGKXZ 004467c0 f audios:sound.obj - 0001:000457d0 ?Release@CAMWavFileSrc@@W3AGKXZ 004467d0 f audios:sound.obj - 0001:000457e0 _AllocLoopFilter@12 004467e0 f audios:sndloop.obj - 0001:00045840 ?AddRef@CAMLoopFilter@@UAGKXZ 00446840 f audios:sndloop.obj - 0001:00045850 ?Release@CAMLoopFilter@@UAGKXZ 00446850 f audios:sndloop.obj - 0001:00045860 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 00446860 f audios:sndloop.obj - 0001:000458d0 ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 004468d0 f audios:sndloop.obj - 0001:000459a0 ?GetSamples@CAMLoopFilter@@UAGKXZ 004469a0 f audios:sndloop.obj - 0001:000459c0 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 004469c0 f audios:sndloop.obj - 0001:00045a00 ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00446a00 f audios:sndloop.obj - 0001:00045b50 ??0CClassFactory@@QAE@XZ 00446b50 f audios:factory.obj - 0001:00045b60 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 00446b60 f audios:factory.obj - 0001:00045d80 ?AddRef@CClassFactory@@UAGKXZ 00446d80 f audios:factory.obj - 0001:00045d90 ?Release@CClassFactory@@UAGKXZ 00446d90 f audios:factory.obj - 0001:00045dd0 ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 00446dd0 f audios:factory.obj - 0001:00045e30 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 00446e30 f audios:factory.obj - 0001:00046570 ?LockServer@CClassFactory@@UAGJH@Z 00447570 f audios:factory.obj - 0001:00046580 ??_GCAMGateFilter@@UAEPAXI@Z 00447580 f audios:factory.obj - 0001:00046580 ??_ECAMGateFilter@@UAEPAXI@Z 00447580 f audios:factory.obj - 0001:00046600 ??_ECAMLoopFilter@@UAEPAXI@Z 00447600 f audios:factory.obj - 0001:00046600 ??_GCAMLoopFilter@@UAEPAXI@Z 00447600 f audios:factory.obj - 0001:00046680 ??_ECAMFaderFilter@@UAEPAXI@Z 00447680 f audios:factory.obj - 0001:00046680 ??_GCAMFaderFilter@@UAEPAXI@Z 00447680 f audios:factory.obj - 0001:00046700 ??_GCAMRandomizeFilter@@UAEPAXI@Z 00447700 f audios:factory.obj - 0001:00046700 ??_ECAMRandomizeFilter@@UAEPAXI@Z 00447700 f audios:factory.obj - 0001:00046780 ??_GCAMDistortFilter@@UAEPAXI@Z 00447780 f audios:factory.obj - 0001:00046780 ??_ECAMDistortFilter@@UAEPAXI@Z 00447780 f audios:factory.obj - 0001:00046800 ??_GCAMStereoFilter@@UAEPAXI@Z 00447800 f audios:factory.obj - 0001:00046800 ??_ECAMStereoFilter@@UAEPAXI@Z 00447800 f audios:factory.obj - 0001:00046880 ??_ECAMTrimFilter@@UAEPAXI@Z 00447880 f audios:factory.obj - 0001:00046880 ??_GCAMTrimFilter@@UAEPAXI@Z 00447880 f audios:factory.obj - 0001:00046900 ??_ECAMBiasFilter@@UAEPAXI@Z 00447900 f audios:factory.obj - 0001:00046900 ??_GCAMBiasFilter@@UAEPAXI@Z 00447900 f audios:factory.obj - 0001:00046980 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00447980 f audios:factory.obj - 0001:00046990 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 00447990 f audios:factory.obj - 0001:000469a0 ?Release@CAMBiasFilter@@WBE@AGKXZ 004479a0 f audios:factory.obj - 0001:000469b0 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004479b0 f audios:factory.obj - 0001:000469c0 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 004479c0 f audios:factory.obj - 0001:000469d0 ?Release@CAMTrimFilter@@WBE@AGKXZ 004479d0 f audios:factory.obj - 0001:000469e0 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 004479e0 f audios:factory.obj - 0001:000469f0 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 004479f0 f audios:factory.obj - 0001:00046a00 ?Release@CAMDistortFilter@@WBE@AGKXZ 00447a00 f audios:factory.obj - 0001:00046a10 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00447a10 f audios:factory.obj - 0001:00046a20 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 00447a20 f audios:factory.obj - 0001:00046a30 ?Release@CAMFaderFilter@@WBE@AGKXZ 00447a30 f audios:factory.obj - 0001:00046a40 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00447a40 f audios:factory.obj - 0001:00046a50 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 00447a50 f audios:factory.obj - 0001:00046a60 ?Release@CAMStereoFilter@@WBE@AGKXZ 00447a60 f audios:factory.obj - 0001:00046a70 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00447a70 f audios:factory.obj - 0001:00046a80 ?AddRef@CAMGateFilter@@WBE@AGKXZ 00447a80 f audios:factory.obj - 0001:00046a90 ?Release@CAMGateFilter@@WBE@AGKXZ 00447a90 f audios:factory.obj - 0001:00046aa0 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00447aa0 f audios:factory.obj - 0001:00046ab0 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 00447ab0 f audios:factory.obj - 0001:00046ac0 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 00447ac0 f audios:factory.obj - 0001:00046ad0 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00447ad0 f audios:factory.obj - 0001:00046ae0 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 00447ae0 f audios:factory.obj - 0001:00046af0 ?Release@CAMLoopFilter@@WBE@AGKXZ 00447af0 f audios:factory.obj - 0001:00046b00 _AMCreate@16 00447b00 f audios:audioman.obj - 0001:00046b50 ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 00447b50 f audios:audioman.obj - 0001:00046b80 _AMFinishCache@20 00447b80 f audios:audioman.obj - 0001:00046be0 _GetAudioManMixer@0 00447be0 f audios:audioman.obj - 0001:00046c20 ??0CFileStream@@QAE@PADKK@Z 00447c20 f audios:stream.obj - 0001:00046cf0 ??1CFileStream@@QAE@XZ 00447cf0 f audios:stream.obj - 0001:00046d20 ?AddRef@CFileStream@@UAGKXZ 00447d20 f audios:stream.obj - 0001:00046d30 ?Release@CFileStream@@UAGKXZ 00447d30 f audios:stream.obj - 0001:00046d70 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 00447d70 f audios:stream.obj - 0001:00046dd0 ?Read@CFileStream@@UAGJPAXKPAK@Z 00447dd0 f audios:stream.obj - 0001:00046e10 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00447e10 f audios:stream.obj - 0001:00046e90 ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 00447e90 f audios:stream.obj - 0001:00046ef0 ?Write@CFileStream@@UAGJPBXKPAK@Z 00447ef0 f audios:stream.obj - 0001:00046f20 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 00447f20 f audios:stream.obj - 0001:00046f30 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00447f30 f audios:stream.obj - 0001:00046f40 ?Commit@CFileStream@@UAGJK@Z 00447f40 f audios:stream.obj - 0001:00046f50 ?Revert@CFileStream@@UAGJXZ 00447f50 f audios:stream.obj - 0001:00046f60 ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00447f60 f audios:stream.obj - 0001:00046f70 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00447f70 f audios:stream.obj - 0001:00046f80 ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 00447f80 f audios:stream.obj - 0001:00046f90 ??0CMemoryStream@@AAE@PAV0@@Z 00447f90 f audios:stream.obj - 0001:00047000 ??0CMemoryStream@@QAE@PAUIStream@@K@Z 00448000 f audios:stream.obj - 0001:00047080 ??0CMemoryStream@@QAE@PADKK@Z 00448080 f audios:stream.obj - 0001:000470b0 ??1CMemoryStream@@QAE@XZ 004480b0 f audios:stream.obj - 0001:000470f0 ?AddRef@CMemoryStream@@UAGKXZ 004480f0 f audios:stream.obj - 0001:00047100 ?Release@CMemoryStream@@UAGKXZ 00448100 f audios:stream.obj - 0001:00047140 ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 00448140 f audios:stream.obj - 0001:000471a0 ?Read@CMemoryStream@@UAGJPAXKPAK@Z 004481a0 f audios:stream.obj - 0001:00047200 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00448200 f audios:stream.obj - 0001:00047260 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 00448260 f audios:stream.obj - 0001:000472b0 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 004482b0 f audios:stream.obj - 0001:00047310 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 00448310 f audios:stream.obj - 0001:00047320 ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00448320 f audios:stream.obj - 0001:00047330 ?Commit@CMemoryStream@@UAGJK@Z 00448330 f audios:stream.obj - 0001:00047340 ?Revert@CMemoryStream@@UAGJXZ 00448340 f audios:stream.obj - 0001:00047350 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00448350 f audios:stream.obj - 0001:00047360 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00448360 f audios:stream.obj - 0001:00047370 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 00448370 f audios:stream.obj - 0001:00047380 _HRESULTFromMMRESULT@4 00448380 f audios:utils.obj - 0001:00047570 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 00448570 f audios:utils.obj - 0001:00047650 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 00448650 f audios:utils.obj - 0001:000476f0 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 004486f0 f audios:utils.obj - 0001:00047750 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 00448750 f audios:utils.obj - 0001:000477a0 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004487a0 f audios:utils.obj - 0001:000477c0 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 004487c0 f audios:utils.obj - 0001:000477e0 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 004487e0 f audios:utils.obj - 0001:00047800 ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 00448800 f audios:utils.obj - 0001:00047820 ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 00448820 f audios:utils.obj - 0001:00047880 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 00448880 f audios:utils.obj - 0001:00047910 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 00448910 f audios:utils.obj - 0001:000479cc _acmFormatSuggest@20 004489cc f audios:MSACM32.dll - 0001:000479d2 _acmStreamSize@16 004489d2 f audios:MSACM32.dll - 0001:000479d8 _acmStreamPrepareHeader@12 004489d8 f audios:MSACM32.dll - 0001:000479de _acmStreamOpen@32 004489de f audios:MSACM32.dll - 0001:000479e4 _acmStreamClose@8 004489e4 f audios:MSACM32.dll - 0001:000479ea _acmStreamUnprepareHeader@12 004489ea f audios:MSACM32.dll - 0001:000479f0 _acmStreamConvert@12 004489f0 f audios:MSACM32.dll - 0001:00047a00 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 00448a00 f audios:riff.obj - 0001:00047a20 ?ReadLongData@CRIFF@@QAEJPAK@Z 00448a20 f audios:riff.obj - 0001:00047a40 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 00448a40 f audios:riff.obj - 0001:00047ae0 ??0CAMPassThruFilter@@QAE@XZ 00448ae0 f audios:sndpass.obj - 0001:00047af0 ??1CAMPassThruFilter@@UAE@XZ 00448af0 f audios:sndpass.obj - 0001:00047b20 ?AddRef@CAMPassThruFilter@@UAGKXZ 00448b20 f audios:sndpass.obj - 0001:00047b30 ?Release@CAMPassThruFilter@@UAGKXZ 00448b30 f audios:sndpass.obj - 0001:00047b50 ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 00448b50 f audios:sndpass.obj - 0001:00047bb0 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00448bb0 f audios:sndpass.obj - 0001:00047be0 ?GetSamples@CAMPassThruFilter@@UAGKXZ 00448be0 f audios:sndpass.obj - 0001:00047c00 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 00448c00 f audios:sndpass.obj - 0001:00047c30 ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00448c30 f audios:sndpass.obj - 0001:00047c70 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 00448c70 f audios:sndpass.obj - 0001:00047ca0 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 00448ca0 f audios:sndpass.obj - 0001:00047d00 ??_GCAMPassThruFilter@@UAEPAXI@Z 00448d00 f audios:sndpass.obj - 0001:00047d00 ??_ECAMPassThruFilter@@UAEPAXI@Z 00448d00 f audios:sndpass.obj - 0001:00047d40 ?AddRef@CAMRandomizeFilter@@UAGKXZ 00448d40 f audios:sndrand.obj - 0001:00047d50 ?Release@CAMRandomizeFilter@@UAGKXZ 00448d50 f audios:sndrand.obj - 0001:00047d60 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 00448d60 f audios:sndrand.obj - 0001:00047dd0 ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 00448dd0 f audios:sndrand.obj - 0001:00047de0 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 00448de0 f audios:sndrand.obj - 0001:00047df0 ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 00448df0 f audios:sndrand.obj - 0001:00047e00 ?Clear@CAMRandomizeFilter@@UAGJXZ 00448e00 f audios:sndrand.obj - 0001:00047e10 _AllocGateFilter@12 00448e10 f audios:sndgate.obj - 0001:00047e70 ?AddRef@CAMGateFilter@@UAGKXZ 00448e70 f audios:sndgate.obj - 0001:00047e80 ?Release@CAMGateFilter@@UAGKXZ 00448e80 f audios:sndgate.obj - 0001:00047e90 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 00448e90 f audios:sndgate.obj - 0001:00047f00 ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 00448f00 f audios:sndgate.obj - 0001:00047f80 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00448f80 f audios:sndgate.obj - 0001:00048030 ?AddRef@CAMStereoFilter@@UAGKXZ 00449030 f audios:sndstreo.obj - 0001:00048040 ?Release@CAMStereoFilter@@UAGKXZ 00449040 f audios:sndstreo.obj - 0001:00048050 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 00449050 f audios:sndstreo.obj - 0001:000480c0 ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 004490c0 f audios:sndstreo.obj - 0001:00048170 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00449170 f audios:sndstreo.obj - 0001:000481e0 ?AddRef@CAMFaderFilter@@UAGKXZ 004491e0 f audios:sndfader.obj - 0001:000481f0 ?Release@CAMFaderFilter@@UAGKXZ 004491f0 f audios:sndfader.obj - 0001:00048200 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 00449200 f audios:sndfader.obj - 0001:00048270 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 00449270 f audios:sndfader.obj - 0001:000482f0 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004492f0 f audios:sndfader.obj - 0001:00048320 ?AddRef@CAMDistortFilter@@UAGKXZ 00449320 f audios:snddist.obj - 0001:00048330 ?Release@CAMDistortFilter@@UAGKXZ 00449330 f audios:snddist.obj - 0001:00048340 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 00449340 f audios:snddist.obj - 0001:000483b0 ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004493b0 f audios:snddist.obj - 0001:00048430 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00449430 f audios:snddist.obj - 0001:000484f0 ?AddRef@CAMTrimFilter@@UAGKXZ 004494f0 f audios:sndtrim.obj - 0001:00048500 ?Release@CAMTrimFilter@@UAGKXZ 00449500 f audios:sndtrim.obj - 0001:00048510 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 00449510 f audios:sndtrim.obj - 0001:00048580 ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 00449580 f audios:sndtrim.obj - 0001:00048610 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 00449610 f audios:sndtrim.obj - 0001:00048810 ?AddRef@CAMBiasFilter@@UAGKXZ 00449810 f audios:sndbias.obj - 0001:00048820 ?Release@CAMBiasFilter@@UAGKXZ 00449820 f audios:sndbias.obj - 0001:00048830 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 00449830 f audios:sndbias.obj - 0001:000488a0 ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 004498a0 f audios:sndbias.obj - 0001:000488f0 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 004498f0 f audios:sndbias.obj - 0001:00048ac0 ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00449ac0 f audios:sndbias.obj - 0001:00048b50 _AllocCacheFilter@12 00449b50 f audios:sndcache.obj - 0001:00048bb0 ??0CAMCacheFilter@@QAE@XZ 00449bb0 f audios:sndcache.obj - 0001:00048bd0 ??1CAMCacheFilter@@QAE@XZ 00449bd0 f audios:sndcache.obj - 0001:00048c30 ?AddRef@CAMCacheFilter@@UAGKXZ 00449c30 f audios:sndcache.obj - 0001:00048c40 ?Release@CAMCacheFilter@@UAGKXZ 00449c40 f audios:sndcache.obj - 0001:00048c80 ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 00449c80 f audios:sndcache.obj - 0001:00048d10 ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 00449d10 f audios:sndcache.obj - 0001:00048ec0 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00449ec0 f audios:sndcache.obj - 0001:00048ef0 ?GetSamples@CAMCacheFilter@@UAGKXZ 00449ef0 f audios:sndcache.obj - 0001:00048f10 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 00449f10 f audios:sndcache.obj - 0001:00048f40 ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00449f40 f audios:sndcache.obj - 0001:000490e0 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 0044a0e0 f audios:sndcache.obj - 0001:00049130 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 0044a130 f audios:sndcache.obj - 0001:00049180 ?FillCache@CAMCacheFilter@@AAGJKK@Z 0044a180 f audios:sndcache.obj - 0001:00049270 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 0044a270 f audios:sndcache.obj - 0001:000492f0 ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 0044a2f0 f audios:sndcache.obj - 0001:00049320 ?SetMode@CAMCacheFilter@@UAGJHH@Z 0044a320 f audios:sndcache.obj - 0001:00049420 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 0044a420 f audios:sndcache.obj - 0001:00049430 ?AddRef@CAMCacheFilter@@W3AGKXZ 0044a430 f audios:sndcache.obj - 0001:00049440 ?Release@CAMCacheFilter@@W3AGKXZ 0044a440 f audios:sndcache.obj - 0001:00049450 ??0CAMScheduleFilter@@QAE@XZ 0044a450 f audios:sndsched.obj - 0001:00049470 ??1CAMScheduleFilter@@QAE@XZ 0044a470 f audios:sndsched.obj - 0001:000494a0 ?AddRef@CAMScheduleFilter@@UAGKXZ 0044a4a0 f audios:sndsched.obj - 0001:000494b0 ?Release@CAMScheduleFilter@@UAGKXZ 0044a4b0 f audios:sndsched.obj - 0001:000494f0 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 0044a4f0 f audios:sndsched.obj - 0001:00049580 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 0044a580 f audios:sndsched.obj - 0001:00049590 ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044a590 f audios:sndsched.obj - 0001:000495c0 ?GetSamples@CAMScheduleFilter@@UAGKXZ 0044a5c0 f audios:sndsched.obj - 0001:000495e0 ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 0044a5e0 f audios:sndsched.obj - 0001:00049610 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044a610 f audios:sndsched.obj - 0001:00049650 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 0044a650 f audios:sndsched.obj - 0001:00049660 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 0044a660 f audios:sndsched.obj - 0001:00049670 ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 0044a670 f audios:sndsched.obj - 0001:00049680 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 0044a680 f audios:sndsched.obj - 0001:00049690 ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 0044a690 f audios:sndsched.obj - 0001:000496a0 ?ClearAll@CAMScheduleFilter@@UAGJXZ 0044a6a0 f audios:sndsched.obj - 0001:000496b0 ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 0044a6b0 f audios:sndsched.obj - 0001:000496c0 ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 0044a6c0 f audios:sndsched.obj - 0001:000496d0 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 0044a6d0 f audios:sndsched.obj - 0001:000496e0 ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 0044a6e0 f audios:sndsched.obj - 0001:000496f0 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 0044a6f0 f audios:sndsched.obj - 0001:00049700 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 0044a700 f audios:sndsched.obj - 0001:00049710 ?AddRef@CAMScheduleFilter@@W3AGKXZ 0044a710 f audios:sndsched.obj - 0001:00049720 ?Release@CAMScheduleFilter@@W3AGKXZ 0044a720 f audios:sndsched.obj - 0001:00049730 _AllocMixFilter@12 0044a730 f audios:sndmix.obj - 0001:00049790 ??0CAMMixFilter@@QAE@XZ 0044a790 f audios:sndmix.obj - 0001:000497b0 ??1CAMMixFilter@@QAE@XZ 0044a7b0 f audios:sndmix.obj - 0001:000497f0 ?AddRef@CAMMixFilter@@UAGKXZ 0044a7f0 f audios:sndmix.obj - 0001:00049800 ?Release@CAMMixFilter@@UAGKXZ 0044a800 f audios:sndmix.obj - 0001:00049840 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 0044a840 f audios:sndmix.obj - 0001:000498d0 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 0044a8d0 f audios:sndmix.obj - 0001:00049960 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 0044a960 f audios:sndmix.obj - 0001:00049b20 ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 0044ab20 f audios:sndmix.obj - 0001:00049b60 ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 0044ab60 f audios:sndmix.obj - 0001:00049b90 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044ab90 f audios:sndmix.obj - 0001:00049bc0 ?GetSamples@CAMMixFilter@@UAGKXZ 0044abc0 f audios:sndmix.obj - 0001:00049be0 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 0044abe0 f audios:sndmix.obj - 0001:00049c60 ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044ac60 f audios:sndmix.obj - 0001:00049d90 ?SetCacheSize@CAMMixFilter@@UAGJK@Z 0044ad90 f audios:sndmix.obj - 0001:00049da0 ?SetMode@CAMMixFilter@@UAGJHH@Z 0044ada0 f audios:sndmix.obj - 0001:00049e10 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 0044ae10 f audios:sndmix.obj - 0001:00049e20 ?AddRef@CAMMixFilter@@W3AGKXZ 0044ae20 f audios:sndmix.obj - 0001:00049e30 ?Release@CAMMixFilter@@W3AGKXZ 0044ae30 f audios:sndmix.obj - 0001:00049e40 _AllocGainFilter@16 0044ae40 f audios:sndgain.obj - 0001:00049ea0 ??0CAMGainFilter@@QAE@XZ 0044aea0 f audios:sndgain.obj - 0001:00049ef0 ??1CAMGainFilter@@QAE@XZ 0044aef0 f audios:sndgain.obj - 0001:00049f50 ?AddRef@CAMGainFilter@@UAGKXZ 0044af50 f audios:sndgain.obj - 0001:00049f60 ?Release@CAMGainFilter@@UAGKXZ 0044af60 f audios:sndgain.obj - 0001:00049fa0 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 0044afa0 f audios:sndgain.obj - 0001:0004a030 ?EnterFilter@CAMGainFilter@@AAGXXZ 0044b030 f audios:sndgain.obj - 0001:0004a050 ?LeaveFilter@CAMGainFilter@@AAGXXZ 0044b050 f audios:sndgain.obj - 0001:0004a070 ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 0044b070 f audios:sndgain.obj - 0001:0004a100 ?SetGain@CAMGainFilter@@UAGJMM@Z 0044b100 f audios:sndgain.obj - 0001:0004a150 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044b150 f audios:sndgain.obj - 0001:0004a190 ?GetSamples@CAMGainFilter@@UAGKXZ 0044b190 f audios:sndgain.obj - 0001:0004a1c0 ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 0044b1c0 f audios:sndgain.obj - 0001:0004a200 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044b200 f audios:sndgain.obj - 0001:0004a280 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 0044b280 f audios:sndgain.obj - 0001:0004a2c0 ?SetMode@CAMGainFilter@@UAGJHH@Z 0044b2c0 f audios:sndgain.obj - 0001:0004a330 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 0044b330 f audios:sndgain.obj - 0001:0004a340 ?AddRef@CAMGainFilter@@W3AGKXZ 0044b340 f audios:sndgain.obj - 0001:0004a350 ?Release@CAMGainFilter@@W3AGKXZ 0044b350 f audios:sndgain.obj - 0001:0004a360 ??0CAMDelayFilter@@QAE@XZ 0044b360 f audios:sndecho.obj - 0001:0004a380 ??1CAMDelayFilter@@QAE@XZ 0044b380 f audios:sndecho.obj - 0001:0004a420 ?AddRef@CAMDelayFilter@@UAGKXZ 0044b420 f audios:sndecho.obj - 0001:0004a430 ?Release@CAMDelayFilter@@UAGKXZ 0044b430 f audios:sndecho.obj - 0001:0004a470 ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 0044b470 f audios:sndecho.obj - 0001:0004a500 ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 0044b500 f audios:sndecho.obj - 0001:0004a730 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044b730 f audios:sndecho.obj - 0001:0004a760 ?GetSamples@CAMDelayFilter@@UAGKXZ 0044b760 f audios:sndecho.obj - 0001:0004a780 ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 0044b780 f audios:sndecho.obj - 0001:0004a7e0 ?MixInNewData@CAMDelayFilter@@QAGJXZ 0044b7e0 f audios:sndecho.obj - 0001:0004aa20 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044ba20 f audios:sndecho.obj - 0001:0004acf0 ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 0044bcf0 f audios:sndecho.obj - 0001:0004ad20 ?SetMode@CAMDelayFilter@@UAGJHH@Z 0044bd20 f audios:sndecho.obj - 0001:0004ad80 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 0044bd80 f audios:sndecho.obj - 0001:0004ad90 ?AddRef@CAMDelayFilter@@W3AGKXZ 0044bd90 f audios:sndecho.obj - 0001:0004ada0 ?Release@CAMDelayFilter@@W3AGKXZ 0044bda0 f audios:sndecho.obj - 0001:0004adb0 _AllocConvertFilter@12 0044bdb0 f audios:sndcnvt.obj - 0001:0004ae10 ??0CAMConvertFilter@@QAE@XZ 0044be10 f audios:sndcnvt.obj - 0001:0004ae30 ??1CAMConvertFilter@@QAE@XZ 0044be30 f audios:sndcnvt.obj - 0001:0004aea0 ?AddRef@CAMConvertFilter@@UAGKXZ 0044bea0 f audios:sndcnvt.obj - 0001:0004aeb0 ?Release@CAMConvertFilter@@UAGKXZ 0044beb0 f audios:sndcnvt.obj - 0001:0004aef0 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 0044bef0 f audios:sndcnvt.obj - 0001:0004af80 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 0044bf80 f audios:sndcnvt.obj - 0001:0004b070 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044c070 f audios:sndcnvt.obj - 0001:0004b0c0 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 0044c0c0 f audios:sndcnvt.obj - 0001:0004b100 ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 0044c100 f audios:sndcnvt.obj - 0001:0004b140 ?GetSamples@CAMConvertFilter@@UAGKXZ 0044c140 f audios:sndcnvt.obj - 0001:0004b170 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 0044c170 f audios:sndcnvt.obj - 0001:0004b1c0 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044c1c0 f audios:sndcnvt.obj - 0001:0004b4a0 ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 0044c4a0 f audios:sndcnvt.obj - 0001:0004b4d0 ?SetMode@CAMConvertFilter@@UAGJHH@Z 0044c4d0 f audios:sndcnvt.obj - 0001:0004b530 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 0044c530 f audios:sndcnvt.obj - 0001:0004b540 ?AddRef@CAMConvertFilter@@W3AGKXZ 0044c540 f audios:sndcnvt.obj - 0001:0004b550 ?Release@CAMConvertFilter@@W3AGKXZ 0044c550 f audios:sndcnvt.obj - 0001:0004b560 _AllocClipFilter@16 0044c560 f audios:sndclip.obj - 0001:0004b5c0 ??0CAMClipFilter@@QAE@XZ 0044c5c0 f audios:sndclip.obj - 0001:0004b5e0 ??1CAMClipFilter@@QAE@XZ 0044c5e0 f audios:sndclip.obj - 0001:0004b610 ?AddRef@CAMClipFilter@@UAGKXZ 0044c610 f audios:sndclip.obj - 0001:0004b620 ?Release@CAMClipFilter@@UAGKXZ 0044c620 f audios:sndclip.obj - 0001:0004b660 ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 0044c660 f audios:sndclip.obj - 0001:0004b6f0 ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 0044c6f0 f audios:sndclip.obj - 0001:0004b790 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044c790 f audios:sndclip.obj - 0001:0004b7c0 ?GetSamples@CAMClipFilter@@UAGKXZ 0044c7c0 f audios:sndclip.obj - 0001:0004b7e0 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 0044c7e0 f audios:sndclip.obj - 0001:0004b840 ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 0044c840 f audios:sndclip.obj - 0001:0004b880 ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044c880 f audios:sndclip.obj - 0001:0004b9a0 ?SetCacheSize@CAMClipFilter@@UAGJK@Z 0044c9a0 f audios:sndclip.obj - 0001:0004b9d0 ?SetMode@CAMClipFilter@@UAGJHH@Z 0044c9d0 f audios:sndclip.obj - 0001:0004ba30 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 0044ca30 f audios:sndclip.obj - 0001:0004ba40 ?AddRef@CAMClipFilter@@W3AGKXZ 0044ca40 f audios:sndclip.obj - 0001:0004ba50 ?Release@CAMClipFilter@@W3AGKXZ 0044ca50 f audios:sndclip.obj - 0001:0004ba60 _AllocAppendFilter@16 0044ca60 f audios:sndapend.obj - 0001:0004bac0 ??0CAMAppendFilter@@QAE@XZ 0044cac0 f audios:sndapend.obj - 0001:0004bae0 ??1CAMAppendFilter@@QAE@XZ 0044cae0 f audios:sndapend.obj - 0001:0004bb20 ?AddRef@CAMAppendFilter@@UAGKXZ 0044cb20 f audios:sndapend.obj - 0001:0004bb30 ?Release@CAMAppendFilter@@UAGKXZ 0044cb30 f audios:sndapend.obj - 0001:0004bb70 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 0044cb70 f audios:sndapend.obj - 0001:0004bc00 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 0044cc00 f audios:sndapend.obj - 0001:0004bc50 ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 0044cc50 f audios:sndapend.obj - 0001:0004c090 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 0044d090 f audios:sndapend.obj - 0001:0004c0c0 ?GetSamples@CAMAppendFilter@@UAGKXZ 0044d0c0 f audios:sndapend.obj - 0001:0004c0e0 ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 0044d0e0 f audios:sndapend.obj - 0001:0004c110 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 0044d110 f audios:sndapend.obj - 0001:0004c270 ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 0044d270 f audios:sndapend.obj - 0001:0004c2a0 ?SetMode@CAMAppendFilter@@UAGJHH@Z 0044d2a0 f audios:sndapend.obj - 0001:0004c310 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 0044d310 f audios:sndapend.obj - 0001:0004c320 ?AddRef@CAMAppendFilter@@W3AGKXZ 0044d320 f audios:sndapend.obj - 0001:0004c330 ?Release@CAMAppendFilter@@W3AGKXZ 0044d330 f audios:sndapend.obj - 0001:0004c340 ??0CAMSilentSound@@QAE@XZ 0044d340 f audios:sndmute.obj - 0001:0004c370 ??1CAMSilentSound@@QAE@XZ 0044d370 f audios:sndmute.obj - 0001:0004c380 ?AddRef@CAMSilentSound@@UAGKXZ 0044d380 f audios:sndmute.obj - 0001:0004c390 ?Release@CAMSilentSound@@UAGKXZ 0044d390 f audios:sndmute.obj - 0001:0004c3d0 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 0044d3d0 f audios:sndmute.obj - 0001:0004c460 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 0044d460 f audios:sndmute.obj - 0001:0004c4e0 ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 0044d4e0 f audios:sndmute.obj - 0001:0004c530 ?GetSamples@CAMSilentSound@@UAGKXZ 0044d530 f audios:sndmute.obj - 0001:0004c550 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 0044d550 f audios:sndmute.obj - 0001:0004c590 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 0044d590 f audios:sndmute.obj - 0001:0004c630 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 0044d630 f audios:sndmute.obj - 0001:0004c640 ?SetMode@CAMSilentSound@@UAGJHH@Z 0044d640 f audios:sndmute.obj - 0001:0004c670 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 0044d670 f audios:sndmute.obj - 0001:0004c680 ?AddRef@CAMSilentSound@@W3AGKXZ 0044d680 f audios:sndmute.obj - 0001:0004c690 ?Release@CAMSilentSound@@W3AGKXZ 0044d690 f audios:sndmute.obj - 0001:0004c6a0 ??0CAMMixer@@QAE@XZ 0044d6a0 f audios:cmixer.obj - 0001:0004c770 ??1CAMMixer@@QAE@XZ 0044d770 f audios:cmixer.obj - 0001:0004c7e0 ?AddRef@CAMMixer@@UAGKXZ 0044d7e0 f audios:cmixer.obj - 0001:0004c7f0 ?Release@CAMMixer@@UAGKXZ 0044d7f0 f audios:cmixer.obj - 0001:0004c850 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 0044d850 f audios:cmixer.obj - 0001:0004c8b0 ?EnterMixer@CAMMixer@@AAGXXZ 0044d8b0 f audios:cmixer.obj - 0001:0004c8d0 ?LeaveMixer@CAMMixer@@AAGXXZ 0044d8d0 f audios:cmixer.obj - 0001:0004c8f0 ?EnterPump@CAMMixer@@AAGXXZ 0044d8f0 f audios:cmixer.obj - 0001:0004c910 ?LeavePump@CAMMixer@@AAGXXZ 0044d910 f audios:cmixer.obj - 0001:0004c930 ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 0044d930 f audios:cmixer.obj - 0001:0004ca10 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 0044da10 f audios:cmixer.obj - 0001:0004cac0 ?Uninit@CAMMixer@@UAGJXZ 0044dac0 f audios:cmixer.obj - 0001:0004cb10 ?Activate@CAMMixer@@UAGJH@Z 0044db10 f audios:cmixer.obj - 0001:0004cb40 ?Suspend@CAMMixer@@UAGJH@Z 0044db40 f audios:cmixer.obj - 0001:0004cbc0 ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 0044dbc0 f audios:cmixer.obj - 0001:0004cc60 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 0044dc60 f audios:cmixer.obj - 0001:0004cd00 ?SetMixerVolume@CAMMixer@@UAGJK@Z 0044dd00 f audios:cmixer.obj - 0001:0004cd40 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 0044dd40 f audios:cmixer.obj - 0001:0004cd80 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 0044dd80 f audios:cmixer.obj - 0001:0004ce10 ?RemixMode@CAMMixer@@UAGHH@Z 0044de10 f audios:cmixer.obj - 0001:0004ce40 ?GetAvgSample@CAMMixer@@UAGKXZ 0044de40 f audios:cmixer.obj - 0001:0004d050 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 0044e050 f audios:cmixer.obj - 0001:0004d0f0 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 0044e0f0 f audios:cmixer.obj - 0001:0004d120 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 0044e120 f audios:cmixer.obj - 0001:0004d200 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 0044e200 f audios:cmixer.obj - 0001:0004d2e0 ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 0044e2e0 f audios:cmixer.obj - 0001:0004d360 ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 0044e360 f audios:cmixer.obj - 0001:0004d3d0 ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 0044e3d0 f audios:cmixer.obj - 0001:0004d480 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 0044e480 f audios:cmixer.obj - 0001:0004d520 ?AllocGroup@CAMMixer@@UAGJPAK@Z 0044e520 f audios:cmixer.obj - 0001:0004d590 ?FreeGroup@CAMMixer@@UAGJK@Z 0044e590 f audios:cmixer.obj - 0001:0004d5f0 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 0044e5f0 f audios:cmixer.obj - 0001:0004d670 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 0044e670 f audios:cmixer.obj - 0001:0004d730 ?StartGroup@CAMMixer@@UAGJKH@Z 0044e730 f audios:cmixer.obj - 0001:0004d7c0 ?ResetGroup@CAMMixer@@UAGJK@Z 0044e7c0 f audios:cmixer.obj - 0001:0004d850 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 0044e850 f audios:cmixer.obj - 0001:0004d8e0 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 0044e8e0 f audios:cmixer.obj - 0001:0004d970 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 0044e970 f audios:cmixer.obj - 0001:0004da10 ?GetInitFile@CAMMixer@@AAGPADXZ 0044ea10 f audios:cmixer.obj - 0001:0004da20 ?LoadProfile@CAMMixer@@AAGJXZ 0044ea20 f audios:cmixer.obj - 0001:0004daf0 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 0044eaf0 f audios:cmixer.obj - 0001:0004db50 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 0044eb50 f audios:cmixer.obj - 0001:0004dbc0 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 0044ebc0 f audios:cmixer.obj - 0001:0004dc30 ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 0044ec30 f audios:cmixer.obj - 0001:0004dca0 ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 0044eca0 f audios:cmixer.obj - 0001:0004dcd0 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 0044ecd0 f audios:cmixer.obj - 0001:0004de00 ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 0044ee00 f audios:cmixer.obj - 0001:0004de30 ?AllocMixerData@CAMMixer@@AAGJXZ 0044ee30 f audios:cmixer.obj - 0001:0004dfe0 ?FreeMixerData@CAMMixer@@AAGJXZ 0044efe0 f audios:cmixer.obj - 0001:0004e0b0 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 0044f0b0 f audios:cmixer.obj - 0001:0004e160 ?FreeOutputDevice@CAMMixer@@AAGJXZ 0044f160 f audios:cmixer.obj - 0001:0004e180 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 0044f180 f audios:cmixer.obj - 0001:0004e1f0 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 0044f1f0 f audios:cmixer.obj - 0001:0004e220 ?ActivateMixer@CAMMixer@@AAGJXZ 0044f220 f audios:cmixer.obj - 0001:0004e380 ?DeactivateMixer@CAMMixer@@AAGJXZ 0044f380 f audios:cmixer.obj - 0001:0004e3e0 ?AllocMixerTimer@CAMMixer@@AAGJXZ 0044f3e0 f audios:cmixer.obj - 0001:0004e450 ?FreeMixerTimer@CAMMixer@@AAGJXZ 0044f450 f audios:cmixer.obj - 0001:0004e490 ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 0044f490 f audios:cmixer.obj - 0001:0004e540 ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 0044f540 f audios:cmixer.obj - 0001:0004e590 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 0044f590 f audios:cmixer.obj - 0001:0004e5b0 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 0044f5b0 f audios:cmixer.obj - 0001:0004e600 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 0044f600 f audios:cmixer.obj - 0001:0004e630 ?StartMixer@CAMMixer@@AAGXXZ 0044f630 f audios:cmixer.obj - 0001:0004e700 ?StopMixer@CAMMixer@@AAGXXZ 0044f700 f audios:cmixer.obj - 0001:0004e750 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 0044f750 f audios:cmixer.obj - 0001:0004e7e0 ?CalcRemixBuffers@CAMMixer@@AAGKXZ 0044f7e0 f audios:cmixer.obj - 0001:0004e850 ?RemixBuffers@CAMMixer@@AAGXK@Z 0044f850 f audios:cmixer.obj - 0001:0004e8f0 ?Refresh@CAMMixer@@UAGXXZ 0044f8f0 f audios:cmixer.obj - 0001:0004e9b0 ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 0044f9b0 f audios:cmixer.obj - 0001:0004ea00 ?Pump@CAMMixer@@AAGXXZ 0044fa00 f audios:cmixer.obj - 0001:0004ea20 ?MixNextBuffer@CAMMixer@@AAGHXZ 0044fa20 f audios:cmixer.obj - 0001:0004eb80 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 0044fb80 f audios:cmixer.obj - 0001:0004eba0 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 0044fba0 f audios:audio.obj - 0001:0004ec20 ?Interpolate@@YGGMMMGG@Z 0044fc20 f audios:cmixlib.obj - 0001:0004ec80 ?DecibelToInternalVol@@YGGM@Z 0044fc80 f audios:cmixlib.obj - 0001:0004ed90 ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 0044fd90 f audios:cmixlib.obj - 0001:0004edf0 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 0044fdf0 f audios:cmixlib.obj - 0001:0004ee30 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 0044fe30 f audios:cmixlib.obj - 0001:0004ef00 ?SixteenPanVol@@YGXKPAE0K0@Z 0044ff00 f audios:cmixlib.obj - 0001:0004ef40 ?SixteenVol@@YGXKPAE0K0@Z 0044ff40 f audios:cmixlib.obj - 0001:0004ef80 ?Sixteen@@YGXKPAE0K0@Z 0044ff80 f audios:cmixlib.obj - 0001:0004efa0 ?EightPanVol@@YGXKPAE0K0@Z 0044ffa0 f audios:cmixlib.obj - 0001:0004efe0 ?EightVol@@YGXKPAE0K0@Z 0044ffe0 f audios:cmixlib.obj - 0001:0004f020 ?Eight@@YGXKPAE0K0@Z 00450020 f audios:cmixlib.obj - 0001:0004f040 ?Muted@@YGXKPAE0K0@Z 00450040 f audios:cmixlib.obj - 0001:0004f050 ?MixEight@@YGXPAE0K0@Z 00450050 f audios:cmixlib.obj - 0001:0004f220 ?MixSixteen@@YGXPAF0KPAE@Z 00450220 f audios:cmixlib.obj - 0001:0004f470 ?VolAdjustSixteen@@YGXKPAE0K0@Z 00450470 f audios:cmixlib.obj - 0001:0004fdc0 ?VolAdjustEight@@YGXKPAE0K0@Z 00450dc0 f audios:cmixlib.obj - 0001:00050730 ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 00451730 f audios:cmixlib.obj - 0001:000510f0 ?PanVolAdjustEight@@YGXKPAE0K0@Z 004520f0 f audios:cmixlib.obj - 0001:000519c0 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 004529c0 f audios:convert.obj - 0001:00051bf0 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 00452bf0 f audios:convert.obj - 0001:00051c10 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 00452c10 f audios:convert.obj - 0001:00051c80 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 00452c80 f audios:convert.obj - 0001:00051cf0 ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00452cf0 f audios:convert.obj - 0001:00051da0 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00452da0 f audios:convert.obj - 0001:00051e60 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00452e60 f audios:convert.obj - 0001:00051f50 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00452f50 f audios:convert.obj - 0001:00052030 ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453030 f audios:convert.obj - 0001:00052130 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453130 f audios:convert.obj - 0001:00052210 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453210 f audios:convert.obj - 0001:00052330 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453330 f audios:convert.obj - 0001:00052410 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453410 f audios:convert.obj - 0001:00052500 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453500 f audios:convert.obj - 0001:00052640 ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453640 f audios:convert.obj - 0001:00052720 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453720 f audios:convert.obj - 0001:00052880 ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453880 f audios:convert.obj - 0001:000529d0 ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 004539d0 f audios:convert.obj - 0001:00052b70 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453b70 f audios:convert.obj - 0001:00052cb0 ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453cb0 f audios:convert.obj - 0001:00052e30 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 00453e30 f audios:convert.obj - 0001:00052f10 ??0CMixerOut@@QAE@XZ 00453f10 f audios:cmixout.obj - 0001:00052f40 ??1CMixerOut@@QAE@XZ 00453f40 f audios:cmixout.obj - 0001:00052f80 ?AddRef@CMixerOut@@UAGKXZ 00453f80 f audios:cmixout.obj - 0001:00052f90 ?Release@CMixerOut@@UAGKXZ 00453f90 f audios:cmixout.obj - 0001:00052fd0 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 00453fd0 f audios:cmixout.obj - 0001:00053030 ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 00454030 f audios:cmixout.obj - 0001:00053120 ?Suspend@CMixerOut@@QAGJH@Z 00454120 f audios:cmixout.obj - 0001:00053200 ?SuspendPump@CMixerOut@@QAGXXZ 00454200 f audios:cmixout.obj - 0001:00053220 ?GetNumDevs@CMixerOut@@UAGIXZ 00454220 f audios:cmixout.obj - 0001:00053240 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 00454240 f audios:cmixout.obj - 0001:00053280 ?Close@CMixerOut@@UAGIXZ 00454280 f audios:cmixout.obj - 0001:000532b0 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004542b0 f audios:cmixout.obj - 0001:000532f0 ?GetVolume@CMixerOut@@UAGIPAK@Z 004542f0 f audios:cmixout.obj - 0001:00053320 ?SetVolume@CMixerOut@@UAGIK@Z 00454320 f audios:cmixout.obj - 0001:00053360 ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 00454360 f audios:cmixout.obj - 0001:00053390 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 00454390 f audios:cmixout.obj - 0001:000533c0 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 004543c0 f audios:cmixout.obj - 0001:000533f0 ?Pause@CMixerOut@@UAGIXZ 004543f0 f audios:cmixout.obj - 0001:00053420 ?Restart@CMixerOut@@UAGIXZ 00454420 f audios:cmixout.obj - 0001:00053450 ?Reset@CMixerOut@@UAGIXZ 00454450 f audios:cmixout.obj - 0001:00053480 ?BreakLoop@CMixerOut@@UAGIXZ 00454480 f audios:cmixout.obj - 0001:000534b0 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 004544b0 f audios:cmixout.obj - 0001:000534e0 ?GetPitch@CMixerOut@@UAGIPAK@Z 004544e0 f audios:cmixout.obj - 0001:00053510 ?SetPitch@CMixerOut@@UAGIK@Z 00454510 f audios:cmixout.obj - 0001:00053540 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 00454540 f audios:cmixout.obj - 0001:00053570 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 00454570 f audios:cmixout.obj - 0001:000535a0 ?GetID@CMixerOut@@UAGIPAI@Z 004545a0 f audios:cmixout.obj - 0001:000535d0 ?Message@CMixerOut@@UAGIIKK@Z 004545d0 f audios:cmixout.obj - 0001:00053610 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 00454610 f audios:cmixout.obj - 0001:00053650 ??0CAMPlaySnd@@QAE@XZ 00454650 f audios:cplaysnd.obj - 0001:00053670 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 00454670 f audios:cplaysnd.obj - 0001:00053680 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 00454680 f audios:cplaysnd.obj - 0001:00053690 ??1CAMPlaySnd@@QAE@XZ 00454690 f audios:cplaysnd.obj - 0001:000536b0 ?AddRef@CAMPlaySnd@@UAGKXZ 004546b0 f audios:cplaysnd.obj - 0001:000536c0 ?Release@CAMPlaySnd@@UAGKXZ 004546c0 f audios:cplaysnd.obj - 0001:00053700 ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 00454700 f audios:cplaysnd.obj - 0001:00053760 ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 00454760 f audios:cplaysnd.obj - 0001:000537f0 ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 004547f0 f audios:cplaysnd.obj - 0001:00053810 ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 00454810 f audios:cplaysnd.obj - 0001:00053830 ?AddRef@CAMChannel@@UAGKXZ 00454830 f audios:cchannel.obj - 0001:00053840 ?Release@CAMChannel@@UAGKXZ 00454840 f audios:cchannel.obj - 0001:000538c0 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 004548c0 f audios:cchannel.obj - 0001:00053940 ??0CAMChannel@@QAE@XZ 00454940 f audios:cchannel.obj - 0001:00053990 ??1CAMChannel@@QAE@XZ 00454990 f audios:cchannel.obj - 0001:00053a40 ?EnterChannel@CAMChannel@@AAGXXZ 00454a40 f audios:cchannel.obj - 0001:00053a60 ?LeaveChannel@CAMChannel@@AAGXXZ 00454a60 f audios:cchannel.obj - 0001:00053a80 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 00454a80 f audios:cchannel.obj - 0001:00053b50 ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 00454b50 f audios:cchannel.obj - 0001:00053ba0 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 00454ba0 f audios:cchannel.obj - 0001:00053ca0 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 00454ca0 f audios:cchannel.obj - 0001:00053e20 ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 00454e20 f audios:cchannel.obj - 0001:00053e80 ?Play@CAMChannel@@UAGJXZ 00454e80 f audios:cchannel.obj - 0001:00053ee0 ?Stop@CAMChannel@@UAGJXZ 00454ee0 f audios:cchannel.obj - 0001:00053f70 ?Finish@CAMChannel@@UAGJXZ 00454f70 f audios:cchannel.obj - 0001:00053fa0 ?IsPlaying@CAMChannel@@UAGHXZ 00454fa0 f audios:cchannel.obj - 0001:00053fd0 ?Samples@CAMChannel@@UAGKXZ 00454fd0 f audios:cchannel.obj - 0001:00054000 ?SetPosition@CAMChannel@@UAGJK@Z 00455000 f audios:cchannel.obj - 0001:00054060 ?GetPosition@CAMChannel@@UAGJPAK@Z 00455060 f audios:cchannel.obj - 0001:000540a0 ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 004550a0 f audios:cchannel.obj - 0001:00054110 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 00455110 f audios:cchannel.obj - 0001:00054180 ?SetTimePos@CAMChannel@@UAGJK@Z 00455180 f audios:cchannel.obj - 0001:000541c0 ?GetTimePos@CAMChannel@@UAGJPAK@Z 004551c0 f audios:cchannel.obj - 0001:00054220 ?Mute@CAMChannel@@UAGJH@Z 00455220 f audios:cchannel.obj - 0001:00054260 ?SetVolume@CAMChannel@@UAGJK@Z 00455260 f audios:cchannel.obj - 0001:000542b0 ?SetChannelVol@CAMChannel@@AAGXGG@Z 004552b0 f audios:cchannel.obj - 0001:00054340 ?GetVolume@CAMChannel@@UAGJPAK@Z 00455340 f audios:cchannel.obj - 0001:00054380 ?SetGain@CAMChannel@@UAGJMM@Z 00455380 f audios:cchannel.obj - 0001:000543d0 ?GetGain@CAMChannel@@UAGJPAM0@Z 004553d0 f audios:cchannel.obj - 0001:00054420 ?DoRemix@CAMChannel@@AAGXXZ 00455420 f audios:cchannel.obj - 0001:00054450 ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 00455450 f audios:cchannel.obj - 0001:00054470 ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 00455470 f audios:cchannel.obj - 0001:000546d0 ?ClearNotify@CAMChannel@@AAGXK@Z 004556d0 f audios:cchannel.obj - 0001:00054750 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 00455750 f audios:cchannel.obj - 0001:00054970 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 00455970 f audios:cchannel.obj - 0001:00054a80 ?RevertTo@CAMChannel@@UAGJK@Z 00455a80 f audios:cchannel.obj - 0001:00054ad0 ?GetActiveState@CAMChannel@@UAGHXZ 00455ad0 f audios:cchannel.obj - 0001:00054af0 ?DoStart@CAMChannel@@UAGJH@Z 00455af0 f audios:cchannel.obj - 0001:00054b70 ?DoReset@CAMChannel@@UAGJXZ 00455b70 f audios:cchannel.obj - 0001:00054bb0 ?DoPosition@CAMChannel@@UAGJK@Z 00455bb0 f audios:cchannel.obj - 0001:00054be0 ?DoVolume@CAMChannel@@UAGJK@Z 00455be0 f audios:cchannel.obj - 0001:00054c20 ?DoGain@CAMChannel@@UAGJMMH@Z 00455c20 f audios:cchannel.obj - 0001:00054c90 ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 00455c90 f audios:cchannel.obj - 0001:00054ca0 ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 00455ca0 f audios:cchannel.obj - 0001:00054cb0 ?SetPriority@CAMChannel@@UAGJK@Z 00455cb0 f audios:cchannel.obj - 0001:00054cc0 ?GetPriority@CAMChannel@@UAGKXZ 00455cc0 f audios:cchannel.obj - 0001:00054cd0 ?SetGroup@CAMChannel@@UAGJK@Z 00455cd0 f audios:cchannel.obj - 0001:00054ce0 ?GetGroup@CAMChannel@@UAGKXZ 00455ce0 f audios:cchannel.obj - 0001:00054cf0 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 00455cf0 f audios:cchannel.obj - 0001:00054d00 ?AddRef@CAMChannel@@W3AGKXZ 00455d00 f audios:cchannel.obj - 0001:00054d10 ?Release@CAMChannel@@W3AGKXZ 00455d10 f audios:cchannel.obj - 0001:00054d20 ??0CRealOut@@QAE@XZ 00455d20 f audios:crealout.obj - 0001:00054d40 ??1CRealOut@@QAE@XZ 00455d40 f audios:crealout.obj - 0001:00054d70 ?AddRef@CRealOut@@UAGKXZ 00455d70 f audios:crealout.obj - 0001:00054d80 ?Release@CRealOut@@UAGKXZ 00455d80 f audios:crealout.obj - 0001:00054dc0 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 00455dc0 f audios:crealout.obj - 0001:00054e20 ?GetNumDevs@CRealOut@@UAGIXZ 00455e20 f audios:crealout.obj - 0001:00054e30 ?Init@CRealOut@@QAGJXZ 00455e30 f audios:crealout.obj - 0001:00054e40 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 00455e40 f audios:crealout.obj - 0001:00054ea0 ?Close@CRealOut@@UAGIXZ 00455ea0 f audios:crealout.obj - 0001:00054ee0 ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 00455ee0 f audios:crealout.obj - 0001:00054f10 ?GetVolume@CRealOut@@UAGIPAK@Z 00455f10 f audios:crealout.obj - 0001:00054f40 ?SetVolume@CRealOut@@UAGIK@Z 00455f40 f audios:crealout.obj - 0001:00054f70 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00455f70 f audios:crealout.obj - 0001:00054fa0 ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00455fa0 f audios:crealout.obj - 0001:00054fd0 ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00455fd0 f audios:crealout.obj - 0001:00055000 ?Pause@CRealOut@@UAGIXZ 00456000 f audios:crealout.obj - 0001:00055020 ?Restart@CRealOut@@UAGIXZ 00456020 f audios:crealout.obj - 0001:00055040 ?Reset@CRealOut@@UAGIXZ 00456040 f audios:crealout.obj - 0001:00055060 ?BreakLoop@CRealOut@@UAGIXZ 00456060 f audios:crealout.obj - 0001:00055080 ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 00456080 f audios:crealout.obj - 0001:000550b0 ?GetPitch@CRealOut@@UAGIPAK@Z 004560b0 f audios:crealout.obj - 0001:000550e0 ?SetPitch@CRealOut@@UAGIK@Z 004560e0 f audios:crealout.obj - 0001:00055110 ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 00456110 f audios:crealout.obj - 0001:00055140 ?SetPlaybackRate@CRealOut@@UAGIK@Z 00456140 f audios:crealout.obj - 0001:00055170 ?GetID@CRealOut@@UAGIPAI@Z 00456170 f audios:crealout.obj - 0001:000551a0 ?Message@CRealOut@@UAGIIKK@Z 004561a0 f audios:crealout.obj - 0001:000551d0 ?GetErrorText@CRealOut@@UAGIIPADI@Z 004561d0 f audios:crealout.obj - 0001:00055200 ??0CFakeOut@@QAE@XZ 00456200 f audios:cfakeout.obj - 0001:00055240 ??1CFakeOut@@QAE@XZ 00456240 f audios:cfakeout.obj - 0001:00055250 ?AddRef@CFakeOut@@UAGKXZ 00456250 f audios:cfakeout.obj - 0001:00055260 ?Release@CFakeOut@@UAGKXZ 00456260 f audios:cfakeout.obj - 0001:000552a0 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 004562a0 f audios:cfakeout.obj - 0001:00055300 ?Init@CFakeOut@@QAGJXZ 00456300 f audios:cfakeout.obj - 0001:00055310 ?GetNumDevs@CFakeOut@@UAGIXZ 00456310 f audios:cfakeout.obj - 0001:00055320 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 00456320 f audios:cfakeout.obj - 0001:000553c0 ?Close@CFakeOut@@UAGIXZ 004563c0 f audios:cfakeout.obj - 0001:000553f0 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 004563f0 f audios:cfakeout.obj - 0001:000554b0 ?GetVolume@CFakeOut@@UAGIPAK@Z 004564b0 f audios:cfakeout.obj - 0001:000554e0 ?SetVolume@CFakeOut@@UAGIK@Z 004564e0 f audios:cfakeout.obj - 0001:00055500 ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00456500 f audios:cfakeout.obj - 0001:00055540 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00456540 f audios:cfakeout.obj - 0001:00055580 ?StartPlayback@CFakeOut@@AAGXXZ 00456580 f audios:cfakeout.obj - 0001:000555c0 ?SuspendPump@CFakeOut@@QAGXXZ 004565c0 f audios:cfakeout.obj - 0001:00055610 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00456610 f audios:cfakeout.obj - 0001:000556c0 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 004566c0 f audios:cfakeout.obj - 0001:00055700 ?Pause@CFakeOut@@UAGIXZ 00456700 f audios:cfakeout.obj - 0001:00055730 ?Restart@CFakeOut@@UAGIXZ 00456730 f audios:cfakeout.obj - 0001:00055760 ?Reset@CFakeOut@@UAGIXZ 00456760 f audios:cfakeout.obj - 0001:000557b0 ?BreakLoop@CFakeOut@@UAGIXZ 004567b0 f audios:cfakeout.obj - 0001:000557c0 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 004567c0 f audios:cfakeout.obj - 0001:000557d0 ?GetPitch@CFakeOut@@UAGIPAK@Z 004567d0 f audios:cfakeout.obj - 0001:000557e0 ?SetPitch@CFakeOut@@UAGIK@Z 004567e0 f audios:cfakeout.obj - 0001:000557f0 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 004567f0 f audios:cfakeout.obj - 0001:00055800 ?SetPlaybackRate@CFakeOut@@UAGIK@Z 00456800 f audios:cfakeout.obj - 0001:00055810 ?GetID@CFakeOut@@UAGIPAI@Z 00456810 f audios:cfakeout.obj - 0001:00055820 ?Message@CFakeOut@@UAGIIKK@Z 00456820 f audios:cfakeout.obj - 0001:00055830 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 00456830 f audios:cfakeout.obj - 0001:00055838 __onexit 00456838 f LIBC:onexit.obj - 0001:000558ae _atexit 004568ae f LIBC:onexit.obj - 0001:000558c0 ___onexitinit 004568c0 f LIBC:onexit.obj - 0001:000558f6 __purecall 004568f6 f LIBC:purevirt.obj - 0001:00055901 ??3@YAXPAX@Z 00456901 f LIBC:delete.obj - 0001:0005590e ??2@YAPAXI@Z 0045690e f LIBC:new.obj - 0001:00055920 __ftol 00456920 f LIBC:ftol.obj - 0001:00055948 _fdiv_main_routine 00456948 f LIBC:adj_fdiv.obj - 0001:00055a5f __adj_fdiv_r 00456a5f f LIBC:adj_fdiv.obj - 0001:00055efe _fdivp_sti_st 00456efe f LIBC:adj_fdiv.obj - 0001:00055f11 _fdivrp_sti_st 00456f11 f LIBC:adj_fdiv.obj - 0001:00055f24 __adj_fdiv_m32 00456f24 f LIBC:adj_fdiv.obj - 0001:00055f70 __adj_fdiv_m64 00456f70 f LIBC:adj_fdiv.obj - 0001:00055fbc __adj_fdiv_m16i 00456fbc f LIBC:adj_fdiv.obj - 0001:00055ff0 __adj_fdiv_m32i 00456ff0 f LIBC:adj_fdiv.obj - 0001:00056024 __adj_fdivr_m32 00457024 f LIBC:adj_fdiv.obj - 0001:00056070 __adj_fdivr_m64 00457070 f LIBC:adj_fdiv.obj - 0001:000560bc __adj_fdivr_m16i 004570bc f LIBC:adj_fdiv.obj - 0001:000560f0 __adj_fdivr_m32i 004570f0 f LIBC:adj_fdiv.obj - 0001:00056124 __safe_fdiv 00457124 f LIBC:adj_fdiv.obj - 0001:00056139 __safe_fdivr 00457139 f LIBC:adj_fdiv.obj - 0001:0005614e __fprem_common 0045714e f LIBC:adj_fdiv.obj - 0001:00056354 __adj_fprem 00457354 f LIBC:adj_fdiv.obj - 0001:00056406 __fprem1_common 00457406 f LIBC:adj_fdiv.obj - 0001:0005660c __adj_fprem1 0045760c f LIBC:adj_fdiv.obj - 0001:000566c1 __safe_fprem 004576c1 f LIBC:adj_fdiv.obj - 0001:000566c7 __safe_fprem1 004576c7 f LIBC:adj_fdiv.obj - 0001:000566cd __adj_fpatan 004576cd f LIBC:adj_fdiv.obj - 0001:000566d0 __adj_fptan 004576d0 f LIBC:adj_fdiv.obj - 0001:000566d3 __fpmath 004576d3 f LIBC:fpinit.obj - 0001:000566e7 __fpclear 004576e7 f LIBC:fpinit.obj - 0001:000566e8 __cfltcvt_init 004576e8 f LIBC:fpinit.obj - 0001:00056720 _WinMainCRTStartup 00457720 f LIBC:wincrt0.obj - 0001:00056886 __amsg_exit 00457886 f LIBC:wincrt0.obj - 0001:000568b8 ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 004578b8 f LIBC:trnsctrl.obj - 0001:000568de ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 004578de f LIBC:trnsctrl.obj - 0001:00056913 ?_CallMemberFunction0@@YGXPAX0@Z 00457913 f LIBC:trnsctrl.obj - 0001:0005691a ?_CallMemberFunction1@@YGXPAX00@Z 0045791a f LIBC:trnsctrl.obj - 0001:00056921 ?_CallMemberFunction2@@YGXPAX00H@Z 00457921 f LIBC:trnsctrl.obj - 0001:00056928 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 00457928 f LIBC:trnsctrl.obj - 0001:00056976 ___CxxFrameHandler 00457976 f LIBC:trnsctrl.obj - 0001:000569ad ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 004579ad f LIBC:trnsctrl.obj - 0001:00056a25 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 00457a25 f LIBC:trnsctrl.obj - 0001:00056b5c __global_unwind2 00457b5c f LIBC:exsup.obj - 0001:00056b9e __local_unwind2 00457b9e f LIBC:exsup.obj - 0001:00056bf8 __abnormal_termination 00457bf8 f LIBC:exsup.obj - 0001:00056c1c _pow 00457c1c LIBC:87ctran.obj - 0001:00056c26 _log 00457c26 LIBC:87ctran.obj - 0001:00056c30 _log10 00457c30 LIBC:87ctran.obj - 0001:00056c37 _exp 00457c37 LIBC:87ctran.obj - 0001:00056c3e __CIpow 00457c3e LIBC:87ctran.obj - 0001:00056c48 __CIlog 00457c48 LIBC:87ctran.obj - 0001:00056c52 __CIlog10 00457c52 LIBC:87ctran.obj - 0001:00056c59 __CIexp 00457c59 LIBC:87ctran.obj - 0001:00056c60 _memmove 00457c60 f LIBC:memmove.obj - 0001:00056dae __cinit 00457dae f LIBC:crt0dat.obj - 0001:00056dde _exit 00457dde f LIBC:crt0dat.obj - 0001:00056def __exit 00457def f LIBC:crt0dat.obj - 0001:00056e9f _realloc 00457e9f f LIBC:realloc.obj - 0001:00056ff1 __msize 00457ff1 f LIBC:msize.obj - 0001:00057002 _malloc 00458002 f LIBC:malloc.obj - 0001:00057015 __nh_malloc 00458015 f LIBC:malloc.obj - 0001:000570d4 __heap_split_block 004580d4 f LIBC:malloc.obj - 0001:00057119 _free 00458119 f LIBC:free.obj - 0001:00057181 __setdefaultprecision 00458181 f LIBC:fp8.obj - 0001:00057194 _ms_p5_test_fdiv 00458194 f LIBC:testfdiv.obj - 0001:000571da _ms_p5_mp_test_fdiv 004581da f LIBC:testfdiv.obj - 0001:000572ad __forcdecpt 004582ad f LIBC:cvt.obj - 0001:00057312 __cropzeros 00458312 f LIBC:cvt.obj - 0001:00057371 __positive 00458371 f LIBC:cvt.obj - 0001:00057386 __fassign 00458386 f LIBC:cvt.obj - 0001:000573c9 __cftoe 004583c9 f LIBC:cvt.obj - 0001:0005751c __cftof 0045851c f LIBC:cvt.obj - 0001:00057638 __cftog 00458638 f LIBC:cvt.obj - 0001:000576e0 __cfltcvt 004586e0 f LIBC:cvt.obj - 0001:0005775c __XcptFilter 0045875c f LIBC:winxfltr.obj - 0001:000578e7 __ismbblead 004588e7 f LIBC:ismbbyte.obj - 0001:0005792a __setenvp 0045892a f LIBC:stdenvp.obj - 0001:000579f5 __setargv 004589f5 f LIBC:stdargv.obj - 0001:00057cf3 __setmbcp 00458cf3 f LIBC:mbctype.obj - 0001:00057e81 ___initmbctable 00458e81 f LIBC:mbctype.obj - 0001:00057e8c __ioinit 00458e8c f LIBC:ioinit.obj - 0001:00057f7a __heap_init 00458f7a f LIBC:heapinit.obj - 0001:00057ff7 ___getempty 00458ff7 f LIBC:heapinit.obj - 0001:00058024 __except_handler3 00459024 f LIBC:exsup3.obj - 0001:000580d2 __seh_longjmp_unwind@4 004590d2 f LIBC:exsup3.obj - 0001:000580ed __NMSG_WRITE 004590ed f LIBC:crt0msg.obj - 0001:00058145 __GET_RTERRMSG 00459145 f LIBC:crt0msg.obj - 0001:0005817a ___InternalCxxFrameHandler 0045917a f LIBC:frame.obj - 0001:000585ed ___FrameUnwindToState 004595ed f LIBC:frame.obj - 0001:00058aec ?terminate@@YAXXZ 00459aec f LIBC:hooks.obj - 0001:00058b5e ?_inconsistency@@YAXXZ 00459b5e f LIBC:hooks.obj - 0001:00058be1 __fFEXP 00459be1 LIBC:87tran.obj - 0001:00058c48 __rtinfpopse 00459c48 LIBC:87tran.obj - 0001:00058c4a __rtinfnpopse 00459c4a LIBC:87tran.obj - 0001:00058c5a __fFLN 00459c5a LIBC:87tran.obj - 0001:00058d0f __rtinfpop 00459d0f LIBC:87tran.obj - 0001:00058d11 __rtinfnpop 00459d11 LIBC:87tran.obj - 0001:00058d2e __ffexpm1 00459d2e LIBC:87tran.obj - 0001:00058dd8 __cintrindisp2 00459dd8 f LIBC:87cdisp.obj - 0001:00058e16 __cintrindisp1 00459e16 f LIBC:87cdisp.obj - 0001:00058e4c __ctrandisp2 00459e4c f LIBC:87cdisp.obj - 0001:00058fbd __ctrandisp1 00459fbd f LIBC:87cdisp.obj - 0001:00058fe9 __fload 00459fe9 f LIBC:87cdisp.obj - 0001:00059025 __heap_abort 0045a025 f LIBC:hpabort.obj - 0001:00059030 __heap_grow 0045a030 f LIBC:heapgrow.obj - 0001:00059119 __heap_grow_region 0045a119 f LIBC:heapgrow.obj - 0001:000591c6 __heap_free_region 0045a1c6 f LIBC:heapgrow.obj - 0001:00059200 __heap_search 0045a200 f LIBC:heapsrch.obj - 0001:000592f0 __control87 0045a2f0 f LIBC:ieee87.obj - 0001:0005932b __controlfp 0045a32b f LIBC:ieee87.obj - 0001:00059462 __fptrap 0045a462 f LIBC:crt0fp.obj - 0001:0005946d __isctype 0045a46d f LIBC:isctype.obj - 0001:000594e8 _tolower 0045a4e8 f LIBC:tolower.obj - 0001:000595b4 __ZeroTail 0045a5b4 f LIBC:intrncvt.obj - 0001:00059614 __IncMan 0045a614 f LIBC:intrncvt.obj - 0001:00059675 __RoundMan 0045a675 f LIBC:intrncvt.obj - 0001:00059712 __CopyMan 0045a712 f LIBC:intrncvt.obj - 0001:0005972f __FillZeroMan 0045a72f f LIBC:intrncvt.obj - 0001:0005973b __IsZeroMan 0045a73b f LIBC:intrncvt.obj - 0001:00059759 __ShrMan 0045a759 f LIBC:intrncvt.obj - 0001:00059804 __ld12cvt 0045a804 f LIBC:intrncvt.obj - 0001:000599a0 __ld12tod 0045a9a0 f LIBC:intrncvt.obj - 0001:000599b6 __ld12tof 0045a9b6 f LIBC:intrncvt.obj - 0001:000599cc __atodbl 0045a9cc f LIBC:intrncvt.obj - 0001:000599fd __atoflt 0045a9fd f LIBC:intrncvt.obj - 0001:00059a2e __fptostr 0045aa2e f LIBC:_fptostr.obj - 0001:00059aac __fltout 0045aaac f LIBC:cfout.obj - 0001:00059b0f ___dtold 0045ab0f f LIBC:cfout.obj - 0001:00059bd9 ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 0045abd9 f LIBC:unhandld.obj - 0001:00059c32 ?_ValidateRead@@YAHPBXI@Z 0045ac32 f LIBC:validate.obj - 0001:00059c50 ?_ValidateWrite@@YAHPAXI@Z 0045ac50 f LIBC:validate.obj - 0001:00059c6e ?_ValidateExecute@@YAHP6GHXZ@Z 0045ac6e f LIBC:validate.obj - 0001:00059c88 _abort 0045ac88 f LIBC:abort.obj - 0001:00059ca8 __trandisp1 0045aca8 f LIBC:87disp.obj - 0001:00059d0f __trandisp2 0045ad0f f LIBC:87disp.obj - 0001:00059d9b __rttospopde 0045ad9b LIBC:87disp.obj - 0001:00059da0 __rttospop 0045ada0 LIBC:87disp.obj - 0001:00059da2 __rtnospop 0045ada2 LIBC:87disp.obj - 0001:00059da4 __rttosnpop 0045ada4 LIBC:87disp.obj - 0001:00059da5 __rtnospopde 0045ada5 LIBC:87disp.obj - 0001:00059dac __rtzeropop 0045adac LIBC:87disp.obj - 0001:00059dae __rtzeronpop 0045adae LIBC:87disp.obj - 0001:00059db3 __rtonepop 0045adb3 LIBC:87disp.obj - 0001:00059db5 __rtonenpop 0045adb5 LIBC:87disp.obj - 0001:00059dba __tosnan1 0045adba LIBC:87disp.obj - 0001:00059de5 __nosnan2 0045ade5 LIBC:87disp.obj - 0001:00059de7 __tosnan2 0045ade7 LIBC:87disp.obj - 0001:00059e0f __nan2 0045ae0f LIBC:87disp.obj - 0001:00059e4e __rtindfpop 0045ae4e LIBC:87disp.obj - 0001:00059e50 __rtindfnpop 0045ae50 LIBC:87disp.obj - 0001:00059e61 __rttosnpopde 0045ae61 LIBC:87disp.obj - 0001:00059e6b __rtchsifneg 0045ae6b LIBC:87disp.obj - 0001:00059e72 __powhlp 0045ae72 f LIBC:powhlp.obj - 0001:0005a05f __d_inttype 0045b05f f LIBC:powhlp.obj - 0001:0005a0b1 __87except 0045b0b1 f LIBC:87except.obj - 0001:0005a1bb __heap_addblock 0045b1bb f LIBC:heapadd.obj - 0001:0005a472 ___crtGetStringTypeA 0045b472 f LIBC:aw_str.obj - 0001:0005a5e9 ___crtLCMapStringA 0045b5e9 f LIBC:aw_map.obj - 0001:0005a848 ___addl 0045b848 f LIBC:mantold.obj - 0001:0005a86b ___add_12 0045b86b f LIBC:mantold.obj - 0001:0005a8c9 ___shl_12 0045b8c9 f LIBC:mantold.obj - 0001:0005a907 ___shr_12 0045b907 f LIBC:mantold.obj - 0001:0005a93a ___mtold12 0045b93a f LIBC:mantold.obj - 0001:0005aa1e ___strgtold12 0045ba1e f LIBC:strgtold.obj - 0001:0005b05d _$I10_OUTPUT 0045c05d f LIBC:x10fout.obj - 0001:0005b393 _raise 0045c393 f LIBC:winsig.obj - 0001:0005b518 __set_exp 0045c518 f LIBC:util.obj - 0001:0005b54d __decomp 0045c54d f LIBC:util.obj - 0001:0005b61b __frnd 0045c61b f LIBC:frnd.obj - 0001:0005b630 __raise_exc 0045c630 f LIBC:fpexcept.obj - 0001:0005b942 __handle_exc 0045c942 f LIBC:fpexcept.obj - 0001:0005bb9a __set_errno 0045cb9a f LIBC:fpexcept.obj - 0001:0005bbc6 __matherr 0045cbc6 f LIBC:matherr.obj - 0001:0005bbc9 __statfp 0045cbc9 f LIBC:fpctrl.obj - 0001:0005bbda __clrfp 0045cbda f LIBC:fpctrl.obj - 0001:0005bbec __ctrlfp 0045cbec f LIBC:fpctrl.obj - 0001:0005bc1c __set_statfp 0045cc1c f LIBC:fpctrl.obj - 0001:0005bc76 __heap_findaddr 0045cc76 f LIBC:findaddr.obj - 0001:0005bce0 _calloc 0045cce0 f LIBC:calloc.obj - 0001:0005bd1a ___set_invalid_mb_chars 0045cd1a f LIBC:setmbval.obj - 0001:0005bd48 _strncpy 0045cd48 f LIBC:strncpy.obj - 0001:0005bd6c ___ld12mul 0045cd6c f LIBC:tenpow.obj - 0001:0005bfac ___multtenpow12 0045cfac f LIBC:tenpow.obj - 0001:0005c022 _RtlUnwind@16 0045d022 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 0045e000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 0045e018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 0045e030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 0045e038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 0045e050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 0045e070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 0045e0a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 0045e138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 0045e240 utilstr.obj - 0002:00000360 ?vpappb@@3PAVAPPB@@A 0045e360 appb.obj - 0002:00000364 ?vpsndm@@3PAVSNDM@@A 0045e364 appb.obj - 0002:00000378 ?vpcex@@3PAVCEX@@A 0045e378 appb.obj - 0002:0000039c ?_pclokFirst@CLOK@@1PAV1@A 0045e39c clok.obj - 0002:000003e0 ?_hidLast@CMH@@0JA 0045e3e0 cmd.obj - 0002:0000046c ?vcactRealize@@3JA 0045e46c gfx.obj - 0002:00000480 ?vntl@@3VNTL@@A 0045e480 gfx.obj - 0002:000004bc ?_gridLast@GOB@@1JA 0045e4bc gob.obj - 0002:000005c8 ?vwig@@3UWIG@@A 0045e5c8 appbwin.obj - 0002:00000654 ?_pgobScreen@GOB@@0PAV1@A 0045e654 gobwin.obj - 0002:00000690 ?vpmubCur@@3PAVMUB@@A 0045e690 menuwin.obj - 0002:00000770 ?_siiLast@SNDV@@1JA 0045e770 sndm.obj - 0002:00000ad8 ?_clip@@3VCLIP@@A 0045ead8 clip.obj - 0002:00000af8 ?vpclip@@3PAVCLIP@@A 0045eaf8 clip.obj - 0002:00000b30 ?_pcflFirst@CFL@@0PAV1@A 0045eb30 chunk.obj - 0002:00000b58 ?_pfilFirst@FIL@@1PAV1@A 0045eb58 file.obj - 0002:00000b60 ?_mutxList@FIL@@1VMUTX@@A 0045eb60 file.obj - 0002:00000b88 ?_fniTemp@@3VFNI@@A 0045eb88 fniwin.obj - 0002:00000df8 ?_strg@@3VSTRG@@A 0045edf8 chelp.obj - 0002:00000e08 ?vapp@@3VAPP@@A 0045ee08 chelp.obj - 0002:00000ea4 ?vpsplc@@3PAVSPLC@@A 0045eea4 chelp.obj - 0002:00000eac ?vpstrg@@3PAVSTRG@@A 0045eeac chelp.obj - 0002:00000eec ?_fCaseSensitive@@3HA 0045eeec chtop.obj - 0002:00001094 __heap_descpages 0045f094 - 0002:000010a0 __heap_regions 0045f0a0 - 0002:000013a0 ___onexitend 0045f3a0 - 0002:000013a4 ___onexitbegin 0045f3a4 - 0002:000013a8 __acmdln 0045f3a8 - 0003:00000058 ??_7KCDC@@6B@ 00460058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00460078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00460090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004600a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004600d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004600f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00460108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00460120 utilstr.obj - 0003:00000138 ??_7APPB@@6B@ 00460138 appb.obj - 0003:00000260 ??_7CMH@@6B@ 00460260 cmd.obj - 0003:00000288 ??_7CEX@@6B@ 00460288 cmd.obj - 0003:00000300 ??_7CURS@@6B@ 00460300 cursor.obj - 0003:00000328 ??_7GNV@@6B@ 00460328 gfx.obj - 0003:00000340 ??_7NTL@@6B@ 00460340 gfx.obj - 0003:00000358 ??_7GOB@@6B@ 00460358 gob.obj - 0003:000003d8 ??_7GTE@@6B@ 004603d8 gob.obj - 0003:000003f0 ??_7REGSC@@6B@ 004603f0 region.obj - 0003:00000408 ??_7REGN@@6B@ 00460408 region.obj - 0003:00000420 ??_7REGBL@@6B@ 00460420 region.obj - 0003:00000438 ??_7GPT@@6B@ 00460438 gfxwin.obj - 0003:00000450 ??_7MUB@@6B@ 00460450 menuwin.obj - 0003:00000480 ??_7GRPB@@6B@ 00460480 groups.obj - 0003:000004a8 ??_7GLB@@6B@ 004604a8 groups.obj - 0003:000004d8 ??_7GL@@6B@ 004604d8 groups.obj - 0003:00000508 ??_7AL@@6B@ 00460508 groups.obj - 0003:00000538 ??_7GGB@@6B@ 00460538 groups.obj - 0003:00000568 ??_7GG@@6B@ 00460568 groups.obj - 0003:00000598 ??_7AG@@6B@ 00460598 groups.obj - 0003:000005c8 ??_7GSTB@@6B@ 004605c8 groups2.obj - 0003:000005f8 ??_7GST@@6B@ 004605f8 groups2.obj - 0003:00000628 ??_7MBMP@@6B@ 00460628 mbmp.obj - 0003:00000658 ??_7SNDM@@6B@ 00460658 sndm.obj - 0003:000006c0 ??_7SNDMQ@@6B@ 004606c0 sndm.obj - 0003:00000728 ??_7SNQUE@@6B@ 00460728 sndm.obj - 0003:00000760 ??_7IStream@@6B@ 00460760 sndam.obj - 0003:00000798 ??_7STBL@@6B@ 00460798 sndam.obj - 0003:000007d0 ??_7CAMS@@6B@ 004607d0 sndam.obj - 0003:000007f8 ??_7AMNOT@@6B@ 004607f8 sndam.obj - 0003:00000818 ??_7AMQUE@@6B@ 00460818 sndam.obj - 0003:00000850 ??_7SDAM@@6B@ 00460850 sndam.obj - 0003:000008c0 ??_7MIDO@@6B@ 004608c0 mididev.obj - 0003:000008d8 ??_7MDPS@@6B@ 004608d8 mididev2.obj - 0003:00000940 ??_7MDWS@@6B@ 00460940 mididev2.obj - 0003:00000968 ??_7MSQUE@@6B@ 00460968 mididev2.obj - 0003:000009a0 ??_7MSMIX@@6B@ 004609a0 mididev2.obj - 0003:000009b8 ??_7MISI@@6B@ 004609b8 mididev2.obj - 0003:000009f0 ??_7WMS@@6B@ 004609f0 mididev2.obj - 0003:00000a28 ??_7OMS@@6B@ 00460a28 mididev2.obj - 0003:00000a60 ??_7MSTP@@6B@ 00460a60 midi.obj - 0003:00000a78 ??_7MIDS@@6B@ 00460a78 midi.obj - 0003:00000aa0 ??_7TXHD@@6B@ 00460aa0 kidhelp.obj - 0003:00000bf8 ??_7STRG@@6B@ 00460bf8 screxe.obj - 0003:00000c10 ??_7TXTB@@6B@ 00460c10 rtxt.obj - 0003:00000d00 ??_7TXRD@@6B@ 00460d00 rtxt.obj - 0003:00000e08 ??_7RTUN@@6B@ 00460e08 rtxt.obj - 0003:00000e28 ??_7TXTG@@6B@ 00460e28 rtxt2.obj - 0003:00000f28 ??_7TXRG@@6B@ 00460f28 rtxt2.obj - 0003:00001040 ??_7DOCB@@6B@ 00461040 docb.obj - 0003:000010d0 ??_7DTE@@6B@ 004610d0 docb.obj - 0003:000010e8 ??_7DDG@@6B@ 004610e8 docb.obj - 0003:000011a8 ??_7DMD@@6B@ 004611a8 docb.obj - 0003:00001230 ??_7DMW@@6B@ 00461230 docb.obj - 0003:000012b8 ??_7DSG@@6B@ 004612b8 docb.obj - 0003:00001348 ??_7DSSP@@6B@ 00461348 docb.obj - 0003:000013c8 ??_7DSSM@@6B@ 004613c8 docb.obj - 0003:00001448 ??_7CLIP@@6B@ 00461448 clip.obj - 0003:00001460 ??_7BSF@@6B@ 00461460 stream.obj - 0003:00001478 ??_7CFL@@6B@ 00461478 chunk.obj - 0003:00001490 ??_7CGE@@6B@ 00461490 chunk.obj - 0003:000014a8 ??_7CODM@@6B@ 004614a8 codec.obj - 0003:000014d8 ??_7BACO@@6B@ 004614d8 crf.obj - 0003:00001500 ??_7CRF@@6B@ 00461500 crf.obj - 0003:00001528 ??_7CRM@@6B@ 00461528 crf.obj - 0003:00001550 ??_7FIL@@6B@ 00461550 file.obj - 0003:00001568 ??_7BLCK@@6B@ 00461568 file.obj - 0003:00001580 ??_7MSFIL@@6B@ 00461580 file.obj - 0003:000015a0 ??_7FNI@@6B@ 004615a0 fniwin.obj - 0003:000015b8 ??_7CHSE@@6B@ 004615b8 chse.obj - 0003:000015d0 ??_7DLG@@6B@ 004615d0 dlg.obj - 0003:00001600 ??_7CTL@@6B@ 00461600 ctl.obj - 0003:00001680 ??_7SCB@@6B@ 00461680 ctl.obj - 0003:00001708 ??_7WSB@@6B@ 00461708 ctl.obj - 0003:00001788 ??_7SPLC@@6B@ 00461788 spell.obj - 0003:000017d8 ??_7APP@@6B@ 004617d8 chelp.obj - 0003:00001910 ??_7LID@@6B@ 00461910 chelp.obj - 0003:000019a0 ??_7LIG@@6B@ 004619a0 chelp.obj - 0003:00001a60 ??_7CCG@@6B@ 00461a60 chelp.obj - 0003:00001ae0 ??_7CCGT@@6B@ 00461ae0 chelp.obj - 0003:00001b60 ??_7HEDO@@6B@ 00461b60 chtop.obj - 0003:00001c00 ??_7TSEL@@6B@ 00461c00 chtop.obj - 0003:00001c18 ??_7HEDG@@6B@ 00461c18 chtop.obj - 0003:00001d00 ??_7HETD@@6B@ 00461d00 chtop.obj - 0003:00001e10 ??_7HETG@@6B@ 00461e10 chtop.obj - 0003:00001f68 ??_7HTRU@@6B@ 00461f68 chtop.obj - 0003:00001ff8 _IID_IUnknown 00461ff8 uuid:com_i.obj - 0003:00002008 _IID_IClassFactory 00462008 uuid:com_i.obj - 0003:00002018 _IID_IMarshal 00462018 uuid:com_i.obj - 0003:00002028 _IID_IMalloc 00462028 uuid:com_i.obj - 0003:00002038 _IID_IStdMarshalInfo 00462038 uuid:com_i.obj - 0003:00002048 _IID_IExternalConnection 00462048 uuid:com_i.obj - 0003:00002058 _IID_IWeakRef 00462058 uuid:com_i.obj - 0003:00002068 _IID_IEnumUnknown 00462068 uuid:com_i.obj - 0003:00002078 _IID_IBindCtx 00462078 uuid:com_i.obj - 0003:00002088 _IID_IParseDisplayName 00462088 uuid:com_i.obj - 0003:00002098 _IID_IEnumMoniker 00462098 uuid:com_i.obj - 0003:000020a8 _IID_IRunnableObject 004620a8 uuid:com_i.obj - 0003:000020b8 _IID_IRunningObjectTable 004620b8 uuid:com_i.obj - 0003:000020c8 _IID_IPersist 004620c8 uuid:com_i.obj - 0003:000020d8 _IID_IPersistStream 004620d8 uuid:com_i.obj - 0003:000020e8 _IID_IMoniker 004620e8 uuid:com_i.obj - 0003:000020f8 _IID_IEnumString 004620f8 uuid:com_i.obj - 0003:00002108 _IID_IStream 00462108 uuid:com_i.obj - 0003:00002118 _IID_IEnumSTATSTG 00462118 uuid:com_i.obj - 0003:00002128 _IID_IStorage 00462128 uuid:com_i.obj - 0003:00002138 _IID_IPersistFile 00462138 uuid:com_i.obj - 0003:00002148 _IID_IPersistStorage 00462148 uuid:com_i.obj - 0003:00002158 _IID_ILockBytes 00462158 uuid:com_i.obj - 0003:00002168 _IID_IEnumFORMATETC 00462168 uuid:com_i.obj - 0003:00002178 _IID_IEnumSTATDATA 00462178 uuid:com_i.obj - 0003:00002188 _IID_IRootStorage 00462188 uuid:com_i.obj - 0003:00002198 _IID_IAdviseSink 00462198 uuid:com_i.obj - 0003:000021a8 _IID_IAdviseSink2 004621a8 uuid:com_i.obj - 0003:000021b8 _IID_IDataObject 004621b8 uuid:com_i.obj - 0003:000021c8 _IID_IDataAdviseHolder 004621c8 uuid:com_i.obj - 0003:000021d8 _IID_IMessageFilter 004621d8 uuid:com_i.obj - 0003:000021e8 _IID_IRpcChannelBuffer 004621e8 uuid:com_i.obj - 0003:000021f8 _IID_IRpcProxyBuffer 004621f8 uuid:com_i.obj - 0003:00002208 _IID_IRpcStubBuffer 00462208 uuid:com_i.obj - 0003:00002218 _IID_IPSFactoryBuffer 00462218 uuid:com_i.obj - 0003:00002228 ??_7IAMWavFileSrc@@6B@ 00462228 audios:sound.obj - 0003:00002240 ??_7IAMSound@@6B@ 00462240 audios:sound.obj - 0003:00002268 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 00462268 audios:sound.obj - 0003:00002280 ??_7CAMWavFileSrc@@6BIAMSound@@@ 00462280 audios:sound.obj - 0003:000022d8 _CLSID_AMMixer 004622d8 audios:factory.obj - 0003:000022e8 _CLSID_AMWavFileSrc 004622e8 audios:factory.obj - 0003:000022f8 _CLSID_AMSilentSound 004622f8 audios:factory.obj - 0003:00002308 _CLSID_AMAppendFilter 00462308 audios:factory.obj - 0003:00002318 _CLSID_AMClipFilter 00462318 audios:factory.obj - 0003:00002328 _CLSID_AMConvertFilter 00462328 audios:factory.obj - 0003:00002338 _CLSID_AMDelayFilter 00462338 audios:factory.obj - 0003:00002348 _CLSID_AMGainFilter 00462348 audios:factory.obj - 0003:00002358 _CLSID_AMGateFilter 00462358 audios:factory.obj - 0003:00002368 _CLSID_AMLoopFilter 00462368 audios:factory.obj - 0003:00002378 _CLSID_AMMixFilter 00462378 audios:factory.obj - 0003:00002388 _CLSID_AMFaderFilter 00462388 audios:factory.obj - 0003:00002398 _CLSID_AMScheduleFilter 00462398 audios:factory.obj - 0003:000023a8 _CLSID_AMRandomizeFilter 004623a8 audios:factory.obj - 0003:000023b8 _CLSID_AMDistortFilter 004623b8 audios:factory.obj - 0003:000023c8 _CLSID_AMCacheFilter 004623c8 audios:factory.obj - 0003:000023d8 _CLSID_AMTrimFilter 004623d8 audios:factory.obj - 0003:000023e8 _CLSID_AMStereoFilter 004623e8 audios:factory.obj - 0003:000023f8 _CLSID_AMBiasFilter 004623f8 audios:factory.obj - 0003:00002408 _IID_IAMMixer 00462408 audios:factory.obj - 0003:00002418 _IID_IAMChannel 00462418 audios:factory.obj - 0003:00002428 _IID_IAMWaveOut 00462428 audios:factory.obj - 0003:00002438 _IID_IAMSound 00462438 audios:factory.obj - 0003:00002448 _IID_IAMNotifySink 00462448 audios:factory.obj - 0003:00002458 _IID_IAMWavFileSrc 00462458 audios:factory.obj - 0003:00002468 _IID_IAMSilentSound 00462468 audios:factory.obj - 0003:00002478 _IID_IAMAppendFilter 00462478 audios:factory.obj - 0003:00002488 _IID_IAMClipFilter 00462488 audios:factory.obj - 0003:00002498 _IID_IAMConvertFilter 00462498 audios:factory.obj - 0003:000024a8 _IID_IAMDelayFilter 004624a8 audios:factory.obj - 0003:000024b8 _IID_IAMGainFilter 004624b8 audios:factory.obj - 0003:000024c8 _IID_IAMGateFilter 004624c8 audios:factory.obj - 0003:000024d8 _IID_IAMLoopFilter 004624d8 audios:factory.obj - 0003:000024e8 _IID_IAMMixFilter 004624e8 audios:factory.obj - 0003:000024f8 _IID_IAMFaderFilter 004624f8 audios:factory.obj - 0003:00002508 _IID_IAMScheduleFilter 00462508 audios:factory.obj - 0003:00002518 _IID_IAMRandomizeFilter 00462518 audios:factory.obj - 0003:00002528 _IID_IAMDistortFilter 00462528 audios:factory.obj - 0003:00002538 _IID_IAMCacheFilter 00462538 audios:factory.obj - 0003:00002548 _IID_IAMTrimFilter 00462548 audios:factory.obj - 0003:00002558 _IID_IAMStereoFilter 00462558 audios:factory.obj - 0003:00002568 _IID_IAMBiasFilter 00462568 audios:factory.obj - 0003:00002578 _IID_IAMMixerChannel 00462578 audios:factory.obj - 0003:00002588 _IID_IAMRIFFStream 00462588 audios:factory.obj - 0003:00002598 ??_7CClassFactory@@6B@ 00462598 audios:factory.obj - 0003:00002610 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 00462610 audios:factory.obj - 0003:00002620 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 00462620 audios:factory.obj - 0003:00002648 ??_7IAMBiasFilter@@6B@ 00462648 audios:factory.obj - 0003:00002658 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 00462658 audios:factory.obj - 0003:00002678 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 00462678 audios:factory.obj - 0003:000026a0 ??_7IAMStereoFilter@@6B@ 004626a0 audios:factory.obj - 0003:000026b0 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 004626b0 audios:factory.obj - 0003:000026c0 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 004626c0 audios:factory.obj - 0003:000026e8 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 004626e8 audios:factory.obj - 0003:000026f8 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 004626f8 audios:factory.obj - 0003:00002720 ??_7IAMTrimFilter@@6B@ 00462720 audios:factory.obj - 0003:00002730 ??_7IAMDistortFilter@@6B@ 00462730 audios:factory.obj - 0003:00002740 ??_7IAMRandomizeFilter@@6B@ 00462740 audios:factory.obj - 0003:00002760 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 00462760 audios:factory.obj - 0003:00002770 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 00462770 audios:factory.obj - 0003:00002798 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 00462798 audios:factory.obj - 0003:000027a8 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 004627a8 audios:factory.obj - 0003:000027d0 ??_7IAMFaderFilter@@6B@ 004627d0 audios:factory.obj - 0003:000027e0 ??_7IAMLoopFilter@@6B@ 004627e0 audios:factory.obj - 0003:000027f0 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 004627f0 audios:factory.obj - 0003:00002800 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 00462800 audios:factory.obj - 0003:00002828 ??_7IAMGateFilter@@6B@ 00462828 audios:factory.obj - 0003:00002838 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 00462838 audios:factory.obj - 0003:00002848 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 00462848 audios:factory.obj - 0003:000029b0 ??_7CFileStream@@6B@ 004629b0 audios:stream.obj - 0003:000029e8 ??_7CMemoryStream@@6B@ 004629e8 audios:stream.obj - 0003:00002a40 ??_7CAMPassThruFilter@@6B@ 00462a40 audios:sndpass.obj - 0003:00002ab8 ??_7IAMCacheFilter@@6B@ 00462ab8 audios:sndcache.obj - 0003:00002ac8 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 00462ac8 audios:sndcache.obj - 0003:00002ad8 ??_7CAMCacheFilter@@6BIAMSound@@@ 00462ad8 audios:sndcache.obj - 0003:00002b00 ??_7IAMScheduleFilter@@6B@ 00462b00 audios:sndsched.obj - 0003:00002b38 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 00462b38 audios:sndsched.obj - 0003:00002b70 ??_7CAMScheduleFilter@@6BIAMSound@@@ 00462b70 audios:sndsched.obj - 0003:00002b98 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 00462b98 audios:sndmix.obj - 0003:00002ba8 ??_7CAMMixFilter@@6BIAMSound@@@ 00462ba8 audios:sndmix.obj - 0003:00002bd0 ??_7IAMMixFilter@@6B@ 00462bd0 audios:sndmix.obj - 0003:00002be8 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 00462be8 audios:sndgain.obj - 0003:00002c00 ??_7CAMGainFilter@@6BIAMSound@@@ 00462c00 audios:sndgain.obj - 0003:00002c28 ??_7IAMGainFilter@@6B@ 00462c28 audios:sndgain.obj - 0003:00002c40 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 00462c40 audios:sndecho.obj - 0003:00002c50 ??_7CAMDelayFilter@@6BIAMSound@@@ 00462c50 audios:sndecho.obj - 0003:00002c78 ??_7IAMDelayFilter@@6B@ 00462c78 audios:sndecho.obj - 0003:00002c98 ??_7IAMConvertFilter@@6B@ 00462c98 audios:sndcnvt.obj - 0003:00002ca8 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 00462ca8 audios:sndcnvt.obj - 0003:00002cb8 ??_7CAMConvertFilter@@6BIAMSound@@@ 00462cb8 audios:sndcnvt.obj - 0003:00002ce0 ??_7IAMClipFilter@@6B@ 00462ce0 audios:sndclip.obj - 0003:00002cf0 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 00462cf0 audios:sndclip.obj - 0003:00002d00 ??_7CAMClipFilter@@6BIAMSound@@@ 00462d00 audios:sndclip.obj - 0003:00002d28 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 00462d28 audios:sndapend.obj - 0003:00002d38 ??_7CAMAppendFilter@@6BIAMSound@@@ 00462d38 audios:sndapend.obj - 0003:00002d60 ??_7IAMAppendFilter@@6B@ 00462d60 audios:sndapend.obj - 0003:00002d70 ??_7IAMSilentSound@@6B@ 00462d70 audios:sndmute.obj - 0003:00002d80 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 00462d80 audios:sndmute.obj - 0003:00002d90 ??_7CAMSilentSound@@6BIAMSound@@@ 00462d90 audios:sndmute.obj - 0003:00002e18 ??_7CAMMixer@@6B@ 00462e18 audios:cmixer.obj - 0003:00002eb8 ??_7CMixerOut@@6B@ 00462eb8 audios:cmixout.obj - 0003:00002f18 ??_7CAMPlaySnd@@6B@ 00462f18 audios:cplaysnd.obj - 0003:00002f38 ??_7IAMMixerChannel@@6B@ 00462f38 audios:cchannel.obj - 0003:00002f88 ??_7IAMChannel@@6B@ 00462f88 audios:cchannel.obj - 0003:00002fe8 ??_7CAMChannel@@6BIAMMixerChannel@@@ 00462fe8 audios:cchannel.obj - 0003:00003038 ??_7CAMChannel@@6BIAMChannel@@@ 00463038 audios:cchannel.obj - 0003:00003098 ??_7CRealOut@@6B@ 00463098 audios:crealout.obj - 0003:00003118 ??_7CFakeOut@@6B@ 00463118 audios:cfakeout.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 00464000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 00464004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 00464008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0046400c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 00464010 utilmem.obj - 0004:00000118 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 00464118 appb.obj - 0004:00000120 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 00464120 appb.obj - 0004:00000184 ??_C@_07GHND@Generic?$AA@ 00464184 appb.obj - 0004:0000018c ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 0046418c appb.obj - 0004:0000019c ??_C@_0M@HLIB@Courier?5New?$AA@ 0046419c appb.obj - 0004:000001a8 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 004641a8 appb.obj - 0004:000001d0 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 004641d0 clok.obj - 0004:000001d8 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 004641d8 clok.obj - 0004:000001e8 ?_cmmCMH@CMH@@1UCMM@1@A 004641e8 cmd.obj - 0004:000001f0 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 004641f0 cmd.obj - 0004:00000200 ?vaptGray@@3UAPT@@A 00464200 gfx.obj - 0004:00000208 ?vaptLtGray@@3UAPT@@A 00464208 gfx.obj - 0004:00000210 ?vaptDkGray@@3UAPT@@A 00464210 gfx.obj - 0004:00000218 ?_mpgfdgrfpt@@3QAKA 00464218 gfx.obj - 0004:00000228 ?_mpgfdgrfptInv@@3QAKA 00464228 gfx.obj - 0004:00000238 ?_cmmGOB@GOB@@1UCMM@CMH@@A 00464238 gob.obj - 0004:00000240 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 00464240 gob.obj - 0004:000002d0 ?_ginDefGob@GOB@@1JA 004642d0 gob.obj - 0004:000002d4 ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 004642d4 appbwin.obj - 0004:000002ec ??_C@_03KELD@MDI?$AA@ 004642ec appbwin.obj - 0004:000002f0 ??_C@_03BLAA@APP?$AA@ 004642f0 appbwin.obj - 0004:000002f4 ??_C@_00A@?$AA@ 004642f4 appbwin.obj - 0004:000002f8 ?_hpal@GPT@@0PAUHPALETTE__@@A 004642f8 gfxwin.obj - 0004:000002fc ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 004642fc gfxwin.obj - 0004:00000300 ?_cclrPal@GPT@@0JA 00464300 gfxwin.obj - 0004:00000304 ?_prgclr@GPT@@0PAUCLR@@A 00464304 gfxwin.obj - 0004:00000308 ?_cactPalCur@GPT@@0JA 00464308 gfxwin.obj - 0004:0000030c ?_cactFlush@GPT@@0JA 0046430c gfxwin.obj - 0004:00000310 ?_fPalettized@GPT@@0HA 00464310 gfxwin.obj - 0004:00000388 ??_C@_09MLCM@MDICLIENT?$AA@ 00464388 gobwin.obj - 0004:00000394 ?vluSysVolFake@@3KA 00464394 sndm.obj - 0004:00000398 ?vcbMaxMemWave@SDAM@@2JA 00464398 sndam.obj - 0004:000003d0 ??_C@_0P@GIHP@midiStreamStop?$AA@ 004643d0 mididev2.obj - 0004:000003e0 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 004643e0 mididev2.obj - 0004:000003f4 ??_C@_0BA@JHNK@midiStreamPause?$AA@ 004643f4 mididev2.obj - 0004:00000404 ??_C@_0O@MCEN@midiStreamOut?$AA@ 00464404 mididev2.obj - 0004:00000414 ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 00464414 mididev2.obj - 0004:00000428 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 00464428 mididev2.obj - 0004:0000043c ??_C@_0BA@PKJI@midiStreamClose?$AA@ 0046443c mididev2.obj - 0004:0000044c ??_C@_0P@FAGH@midiStreamOpen?$AA@ 0046444c mididev2.obj - 0004:0000045c ??_C@_09GPGB@WINMM?4DLL?$AA@ 0046445c mididev2.obj - 0004:00000468 ?_cmmGVDS@GVDS@@1UCMM@CMH@@A 00464468 video.obj - 0004:00000470 ?_rgcmmeGVDS@GVDS@@0QAUCMME@CMH@@A 00464470 video.obj - 0004:00000480 ?_cmmTXHG@TXHG@@1UCMM@CMH@@A 00464480 kidhelp.obj - 0004:00000488 ?_rgcmmeTXHG@TXHG@@0QAUCMME@CMH@@A 00464488 kidhelp.obj - 0004:000004b8 ?_cmmGOK@GOK@@1UCMM@CMH@@A 004644b8 kidspace.obj - 0004:000004c0 ?_rgcmmeGOK@GOK@@0QAUCMME@CMH@@A 004644c0 kidspace.obj - 0004:00000520 ?_mpgmsgmseEnd@@3QAUGMSE@@A 00464520 kidspace.obj - 0004:00000590 ?_mpgmsgmseMove@@3QAUGMSE@@A 00464590 kidspace.obj - 0004:00000600 ?_mpgmsgmseRollOff@@3QAUGMSE@@A 00464600 kidspace.obj - 0004:00000670 ?_mpgmsgmseMouseDown@@3QAUGMSE@@A 00464670 kidspace.obj - 0004:000006e0 ?_mpgmsgmseDownOn@@3QAUGMSE@@A 004646e0 kidspace.obj - 0004:00000750 ?_mpgmsgmseDownOff@@3QAUGMSE@@A 00464750 kidspace.obj - 0004:000007c0 ?_mpgmsgmseUpOn@@3QAUGMSE@@A 004647c0 kidspace.obj - 0004:00000830 ?_mpgmsgmseUpOff@@3QAUGMSE@@A 00464830 kidspace.obj - 0004:000008d8 ??_C@_02MECO@?$CFd?$AA@ 004648d8 screxe.obj - 0004:000008e0 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 004648e0 rtxt.obj - 0004:000008e8 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 004648e8 rtxt.obj - 0004:000009d8 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 004649d8 rtxt.obj - 0004:000009e8 ?_cactLast@DOCB@@1JA 004649e8 docb.obj - 0004:000009ec ?_pdocbFirst@DOCB@@1PAV1@A 004649ec docb.obj - 0004:000009f0 ?_cmmDDG@DDG@@1UCMM@CMH@@A 004649f0 docb.obj - 0004:000009f8 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 004649f8 docb.obj - 0004:00000ac8 ?_cmmDSG@DSG@@1UCMM@CMH@@A 00464ac8 docb.obj - 0004:00000ad0 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 00464ad0 docb.obj - 0004:00000b00 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 00464b00 docb.obj - 0004:00000b0c ??_C@_09IDMC@Clipboard?$AA@ 00464b0c docb.obj - 0004:00000b18 ?_rtiLast@CFL@@0JA 00464b18 chunk.obj - 0004:00000b1c ?vftgCreator@FIL@@2JA 00464b1c file.obj - 0004:00000b20 ?vftgTemp@@3JA 00464b20 fniwin.obj - 0004:00000b28 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00464b28 fniwin.obj - 0004:00000b34 ??_C@_04POLC@?$CFc?3?2?$AA@ 00464b34 fniwin.obj - 0004:00000b3c ??_C@_0BF@PNMJ@Dumping?5chunk?5failed?$AA@ 00464b3c chse.obj - 0004:00000b54 ??_C@_09DECH@PREPACKED?$AA@ 00464b54 chse.obj - 0004:00000b60 ??_C@_02OGOH@?8?5?$AA@ 00464b60 chse.obj - 0004:00000b64 ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 00464b64 chse.obj - 0004:00000b6c ??_C@_07POOB@0x?$CF02x?5?$AA@ 00464b6c chse.obj - 0004:00000b74 ??_C@_05GLIP@?5?5?5?5?5?$AA@ 00464b74 chse.obj - 0004:00000b7c ??_C@_04EHOP@BYTE?$AA@ 00464b7c chse.obj - 0004:00000b84 ??_C@_05BME@?7ITEM?$AA@ 00464b84 chse.obj - 0004:00000b8c ??_C@_05GJCF@?7FREE?$AA@ 00464b8c chse.obj - 0004:00000b94 ??_C@_06ILO@?7?7?$CC?$CFs?$CC?$AA@ 00464b94 chse.obj - 0004:00000b9c ??_C@_08DDHM@?7GST?$CI?$CFd?$CJ?$AA@ 00464b9c chse.obj - 0004:00000ba8 ??_C@_08NEAB@?7AST?$CI?$CFd?$CJ?$AA@ 00464ba8 chse.obj - 0004:00000bb4 ?_szDlgProp@@3QADA 00464bb4 dlgwin.obj - 0004:00000bb8 ?_pszOom@@3PADA 00464bb8 scrcom.obj - 0004:00000bbc ?_pszSyntax@@3PADA 00464bbc scrcom.obj - 0004:00000bc0 ?_rgszop@@3QAUSZOP@@A 00464bc0 scrcom.obj - 0004:00000da0 ?_rgarop@@3QAUAROP@@A 00464da0 scrcom.obj - 0004:00001010 ?_rgpszKey@@3QAPADA 00465010 scrcom.obj - 0004:00001030 ?_rgtomeExp@@3QAUTOME@@A 00465030 scrcom.obj - 0004:00001290 ?_rgtomeOp@@3QAUTOME@@A 00465290 scrcom.obj - 0004:00001354 ??_C@_08HOLA@Continue?$AA@ 00465354 scrcom.obj - 0004:00001360 ??_C@_05EABD@Break?$AA@ 00465360 scrcom.obj - 0004:00001368 ??_C@_05NNJC@While?$AA@ 00465368 scrcom.obj - 0004:00001370 ??_C@_03HPMG@End?$AA@ 00465370 scrcom.obj - 0004:00001374 ??_C@_04CCEF@Else?$AA@ 00465374 scrcom.obj - 0004:0000137c ??_C@_04CPFE@Elif?$AA@ 0046537c scrcom.obj - 0004:00001384 ??_C@_02BAJ@If?$AA@ 00465384 scrcom.obj - 0004:00001388 ??_C@_04POBJ@Goto?$AA@ 00465388 scrcom.obj - 0004:00001390 ??_C@_06GDJA@IfGoto?$AA@ 00465390 scrcom.obj - 0004:00001398 ??_C@_0L@KPKB@CopySubStr?$AA@ 00465398 scrcom.obj - 0004:000013a4 ??_C@_06KDAM@LenStr?$AA@ 004653a4 scrcom.obj - 0004:000013ac ??_C@_0L@ICIJ@ConcatStrs?$AA@ 004653ac scrcom.obj - 0004:000013b8 ??_C@_08HOLI@StrToNum?$AA@ 004653b8 scrcom.obj - 0004:000013c4 ??_C@_08PBFD@NumToStr?$AA@ 004653c4 scrcom.obj - 0004:000013d0 ??_C@_09JFKG@ScaleTime?$AA@ 004653d0 scrcom.obj - 0004:000013dc ??_C@_09KOLA@MergeStrs?$AA@ 004653dc scrcom.obj - 0004:000013e8 ??_C@_07MHIA@NukeStr?$AA@ 004653e8 scrcom.obj - 0004:000013f0 ??_C@_07ELLC@MoveStr?$AA@ 004653f0 scrcom.obj - 0004:000013f8 ??_C@_07PCEE@CopyStr?$AA@ 004653f8 scrcom.obj - 0004:00001400 ??_C@_05PFIH@Pause?$AA@ 00465400 scrcom.obj - 0004:00001408 ??_C@_05LKIE@Match?$AA@ 00465408 scrcom.obj - 0004:00001410 ??_C@_08HGHE@NextCard?$AA@ 00465410 scrcom.obj - 0004:0000141c ??_C@_0M@GGGO@ShuffleList?$AA@ 0046541c scrcom.obj - 0004:00001428 ??_C@_07MFK@Shuffle?$AA@ 00465428 scrcom.obj - 0004:00001430 ??_C@_09CAHB@SetReturn?$AA@ 00465430 scrcom.obj - 0004:0000143c ??_C@_06JCBD@Return?$AA@ 0046543c scrcom.obj - 0004:00001444 ??_C@_04LKDK@Exit?$AA@ 00465444 scrcom.obj - 0004:0000144c ??_C@_02DNIN@Go?$AA@ 0046544c scrcom.obj - 0004:00001450 ??_C@_04HAFI@GoNz?$AA@ 00465450 scrcom.obj - 0004:00001458 ??_C@_03JNBL@GoZ?$AA@ 00465458 scrcom.obj - 0004:0000145c ??_C@_04PFCA@GoLe?$AA@ 0046545c scrcom.obj - 0004:00001464 ??_C@_04HLIL@GoGe?$AA@ 00465464 scrcom.obj - 0004:0000146c ??_C@_04PGMH@GoLt?$AA@ 0046546c scrcom.obj - 0004:00001474 ??_C@_04HIGM@GoGt?$AA@ 00465474 scrcom.obj - 0004:0000147c ??_C@_04NIHF@GoNe?$AA@ 0046547c scrcom.obj - 0004:00001484 ??_C@_04FFPC@GoEq?$AA@ 00465484 scrcom.obj - 0004:0000148c ??_C@_06ININ@Select?$AA@ 0046548c scrcom.obj - 0004:00001494 ??_C@_07KEJC@RndList?$AA@ 00465494 scrcom.obj - 0004:0000149c ??_C@_07OONJ@PopList?$AA@ 0046549c scrcom.obj - 0004:000014a4 ??_C@_07GBJG@DupList?$AA@ 004654a4 scrcom.obj - 0004:000014ac ??_C@_03JCDI@Rev?$AA@ 004654ac scrcom.obj - 0004:000014b0 ??_C@_03FPBH@Rot?$AA@ 004654b0 scrcom.obj - 0004:000014b4 ??_C@_04BCL@Swap?$AA@ 004654b4 scrcom.obj - 0004:000014bc ??_C@_03FBGG@Pop?$AA@ 004654bc scrcom.obj - 0004:000014c0 ??_C@_03MKPO@Dup?$AA@ 004654c0 scrcom.obj - 0004:000014c4 ??_C@_02LCLA@Le?$AA@ 004654c4 scrcom.obj - 0004:000014c8 ??_C@_02DMBL@Ge?$AA@ 004654c8 scrcom.obj - 0004:000014cc ??_C@_02LBFH@Lt?$AA@ 004654cc scrcom.obj - 0004:000014d0 ??_C@_02DPPM@Gt?$AA@ 004654d0 scrcom.obj - 0004:000014d4 ??_C@_02JPOF@Ne?$AA@ 004654d4 scrcom.obj - 0004:000014d8 ??_C@_02BCGC@Eq?$AA@ 004654d8 scrcom.obj - 0004:000014dc ??_C@_04ENMP@LNot?$AA@ 004654dc scrcom.obj - 0004:000014e4 ??_C@_04HPKA@LXor?$AA@ 004654e4 scrcom.obj - 0004:000014ec ??_C@_04LILD@BNot?$AA@ 004654ec scrcom.obj - 0004:000014f4 ??_C@_04IKNM@BXor?$AA@ 004654f4 scrcom.obj - 0004:000014fc ??_C@_03FEFN@BOr?$AA@ 004654fc scrcom.obj - 0004:00001500 ??_C@_04CJLN@BAnd?$AA@ 00465500 scrcom.obj - 0004:00001508 ??_C@_06NIPH@MulDiv?$AA@ 00465508 scrcom.obj - 0004:00001510 ??_C@_03OAMN@Rnd?$AA@ 00465510 scrcom.obj - 0004:00001514 ??_C@_03PGJO@Dec?$AA@ 00465514 scrcom.obj - 0004:00001518 ??_C@_03PCMM@Inc?$AA@ 00465518 scrcom.obj - 0004:0000151c ??_C@_03GIFK@Neg?$AA@ 0046551c scrcom.obj - 0004:00001520 ??_C@_03CEPH@Abs?$AA@ 00465520 scrcom.obj - 0004:00001524 ??_C@_03PJNJ@Mod?$AA@ 00465524 scrcom.obj - 0004:00001528 ??_C@_03LANL@Div?$AA@ 00465528 scrcom.obj - 0004:0000152c ??_C@_03FPMJ@Mul?$AA@ 0046552c scrcom.obj - 0004:00001530 ??_C@_03KJKL@Sub?$AA@ 00465530 scrcom.obj - 0004:00001534 ??_C@_03KPJN@Add?$AA@ 00465534 scrcom.obj - 0004:00001538 ??_C@_0N@GABD@Syntax?5error?$AA@ 00465538 scrcom.obj - 0004:00001548 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 00465548 scrcom.obj - 0004:00001558 ??_C@_02KKOH@?$CC?5?$AA@ 00465558 scrcom.obj - 0004:00001560 ?_szPoundLine@@3QADA 00465560 lex.obj - 0004:00001568 ?_mpchgrfct@LEXB@@1QAGA 00465568 lex.obj - 0004:00001668 ?_rgtt@@3QAFA 00465668 lex.obj - 0004:00001728 ?_rgttDouble@@3QAFA 00465728 lex.obj - 0004:000017d8 ?_rgttEqual@@3QAFA 004657d8 lex.obj - 0004:00001890 ?_szCtlProp@@3QADA 00465890 ctl.obj - 0004:0000189c ??_C@_09LIFG@SCROLLBAR?$AA@ 0046589c ctl.obj - 0004:000018a8 ??_C@_06CMDA@Engine?$AA@ 004658a8 spell.obj - 0004:000018b0 ??_C@_0EC@FNIF@SOFTWARE?2Microsoft?2Shared?5Tools?2@ 004658b0 spell.obj - 0004:000018f4 ??_C@_0L@LIGM@Dictionary?$AA@ 004658f4 spell.obj - 0004:00001900 ??_C@_05MPGJ@PROOF?$AA@ 00465900 spell.obj - 0004:00001908 ??_C@_0CJ@KFBK@SOFTWARE?2Microsoft?2Shared?5Tools?5@ 00465908 spell.obj - 0004:00001938 ?_cmmAPP@APP@@1UCMM@CMH@@A 00465938 chelp.obj - 0004:00001940 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 00465940 chelp.obj - 0004:000019b0 ?_cmmLIG@LIG@@1UCMM@CMH@@A 004659b0 chelp.obj - 0004:000019b8 ?_rgcmmeLIG@LIG@@0QAUCMME@CMH@@A 004659b8 chelp.obj - 0004:000019e8 ?vsclid@@3GA 004659e8 chelp.obj - 0004:00001a88 ??_C@_08PLAM@Other?4?4?4?$AA@ 00465a88 chelp.obj - 0004:00001a94 ??_C@_07PDHA@Italian?$AA@ 00465a94 chelp.obj - 0004:00001a9c ??_C@_07OBPH@Catalan?$AA@ 00465a9c chelp.obj - 0004:00001aa4 ??_C@_07JHAG@Spanish?$AA@ 00465aa4 chelp.obj - 0004:00001aac ??_C@_0BA@FIOL@French?5Canadian?$AA@ 00465aac chelp.obj - 0004:00001abc ??_C@_06EINI@French?$AA@ 00465abc chelp.obj - 0004:00001ac4 ??_C@_0N@CPDN@Swiss?5German?$AA@ 00465ac4 chelp.obj - 0004:00001ad4 ??_C@_06DEFE@German?$AA@ 00465ad4 chelp.obj - 0004:00001adc ??_C@_07EPLG@British?$AA@ 00465adc chelp.obj - 0004:00001ae4 ??_C@_0L@EKGJ@Australian?$AA@ 00465ae4 chelp.obj - 0004:00001af0 ??_C@_08HBAD@American?$AA@ 00465af0 chelp.obj - 0004:00001afc ??_C@_0CE@EINJ@Chelp?5?$CIAnsi?$DL?5Oct?5?52?51995?$DL?520?355?3@ 00465afc chelp.obj - 0004:00001b20 ??_C@_0CF@GDLJ@Rich?5Text?5files?$AA?$CK?4rtx?$AAAll?5Files?$AA@ 00465b20 chelp.obj - 0004:00001b48 ??_C@_0CA@GMNP@Text?5files?$AA?$CK?4txt?$AAAll?5Files?$AA?$CK?4?$CK?$AA?$AA@ 00465b48 chelp.obj - 0004:00001b68 ??_C@_0CK@OPEJ@Kid?5Help?5Files?$AA?$CK?4khp?$DL?$CK?4chk?$AAAll?5F@ 00465b68 chelp.obj - 0004:00001b94 ??_C@_0CL@JJMB@Chunky?5Resource?5Files?$AA?$CK?4chk?$AAAll?5@ 00465b94 chelp.obj - 0004:00001bc0 ??_C@_0BF@LGG@Can?8t?5open?5that?5file?$AA@ 00465bc0 chelp.obj - 0004:00001bd8 ??_C@_04IFGG@?5?$CFd?5?$AA@ 00465bd8 chelp.obj - 0004:00001be0 ??_C@_07DJED@?5Clear?5?$AA@ 00465be0 chelp.obj - 0004:00001be8 ?_cmmHEDG@HEDG@@1UCMM@CMH@@A 00465be8 chtop.obj - 0004:00001bf0 ?_rgcmmeHEDG@HEDG@@0QAUCMME@CMH@@A 00465bf0 chtop.obj - 0004:00001c90 ?_cmmHETG@HETG@@1UCMM@CMH@@A 00465c90 chtop.obj - 0004:00001c98 ?_rgcmmeHETG@HETG@@0QAUCMME@CMH@@A 00465c98 chtop.obj - 0004:00001dd8 ??_C@_0BG@DAHB@Exporting?5file?5failed?$AA@ 00465dd8 chtop.obj - 0004:00001df0 ??_C@_0BP@KJPI@Can?8t?5create?5destination?5file?$CB?$AA@ 00465df0 chtop.obj - 0004:00001e10 ??_C@_0BD@EODM@Chomp?5files?$AA?$CK?4cht?$AA?$AA@ 00465e10 chtop.obj - 0004:00001e24 ??_C@_0BE@IKHM@Empty?5search?5string?$AA@ 00465e24 chtop.obj - 0004:00001e38 ??_C@_0BB@JBKD@?$CF08x?5?$CF10d?5?5?5?$CC?$CFs?$CC?$AA@ 00465e38 chtop.obj - 0004:00001e4c ??_C@_0BL@PGCH@?5?5Hex?5?5?5?5?5?5?5?5?5CNO?5?5?5?5?5Name?$AA@ 00465e4c chtop.obj - 0004:00001e68 ??_C@_0CM@PGCD@Are?5you?5sure?5you?5want?5to?5delete?5@ 00465e68 chtop.obj - 0004:00001e94 ??_C@_0BK@NDB@Couldn?8t?5paste?5everything?$AA@ 00465e94 chtop.obj - 0004:00001eb0 ??_C@_0BA@FEPC@Printing?5failed?$AA@ 00465eb0 chtop.obj - 0004:00001ec0 ??_C@_0BA@JDHO@Topic?5Width?3?5?$CFd?$AA@ 00465ec0 chtop.obj - 0004:00001ed0 ??_C@_0CM@IDCF@Script?3?50x?$CF08x?5?$CI?$CFs?$CJ?$DL?5?5Sound?3?5?8?$CFf@ 00465ed0 chtop.obj - 0004:00001efc ??_C@_0BE@LFIL@Topic?50x?$CF08x?5?$CI?$CFs?$CJ?3?5?$AA@ 00465efc chtop.obj - 0004:00001f10 ??_C@_06JIDD@?9?5?$CFd?5?9?$AA@ 00465f10 chtop.obj - 0004:00001f18 ??_C@_0BE@CEIH@Corrected?5?$CFd?5words?4?$AA@ 00465f18 chtop.obj - 0004:00001f2c ??_C@_0BF@CIJB@No?5corrections?5made?4?$AA@ 00465f2c chtop.obj - 0004:00001f44 ??_C@_0BP@NCNJ@?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9?$AA@ 00465f44 chtop.obj - 0004:00001f64 ??_C@_0BC@KHNA@Text?5Files?$AA?$CK?4txt?$AA?$AA@ 00465f64 chtop.obj - 0004:00001f78 ??_C@_0O@BKCB@Comic?5Sans?5MS?$AA@ 00465f78 chtop.obj - 0004:00001f88 ??_C@_0N@INBF@?3?5Topic?5?$CF08x?$AA@ 00465f88 chtop.obj - 0004:00001f98 ??_C@_0BE@LFON@?3?5Untitled?5Topic?5?$CFd?$AA@ 00465f98 chtop.obj - 0004:00001fac ??_C@_0BE@PPBG@Saving?5topic?5failed?$AA@ 00465fac chtop.obj - 0004:00001fc0 ??_C@_0DK@IGLK@Can?8t?5save?5this?5topic?5?9?5it?5doesn@ 00465fc0 chtop.obj - 0004:00001ffc ??_C@_02JBAA@?$CFf?$AA@ 00465ffc chtop.obj - 0004:00002000 ??_C@_04DOFO@WAVE?$AA@ 00466000 chtop.obj - 0004:00002008 ??_C@_0BE@IBDH@Topic?5number?5is?5bad?$AA@ 00466008 chtop.obj - 0004:0000201c ??_C@_0N@EDPH@Width?5is?5bad?$AA@ 0046601c chtop.obj - 0004:0000202c ??_C@_0BG@CCPI@Topic?5number?5was?5bad?$CB?$AA@ 0046602c chtop.obj - 0004:00002044 ??_C@_0CI@LAKL@Group?5number?5must?5be?5between?50?5a@ 00466044 chtop.obj - 0004:0000206c ??_C@_0BJ@OBEE@Search?5string?5not?5found?4?$AA@ 0046606c chtop.obj - 0004:00002088 ??_C@_0BA@OHCO@Replace?5failed?4?$AA@ 00466088 chtop.obj - 0004:00002098 ??_C@_0BN@CGEN@Couldn?8t?5replace?5wrong?5word?$CB?$AA@ 00466098 chtop.obj - 0004:000020b8 ??_C@_0CB@CILJ@Couldn?8t?5create?5spelling?5dialog?$CB@ 004660b8 chtop.obj - 0004:000020dc ??_C@_0BH@JKOL@Spell?5checking?5failed?$CB?$AA@ 004660dc chtop.obj - 0004:000020f4 ??_C@_0CC@KDHK@Couldn?8t?5load?5the?5main?5dictionar@ 004660f4 chtop.obj - 0004:00002118 ??_C@_05BPFH@Chp?$CFd?$AA@ 00466118 chtop.obj - 0004:00002120 ??_C@_05COAG@Chelp?$AA@ 00466120 chtop.obj - 0004:00002128 ??_C@_0CC@CLFM@Width?5?$DN?5?$CFd?$DL?5Tab?5?$DN?5?$CFd?$DL?5Height?5?$DN?5?$CF@ 00466128 chtop.obj - 0004:0000214c ??_C@_0BK@OJPL@?$CDendif?5?1?1?$CBNO_HELP_SYMBOLS?$AA@ 0046614c chelpexp.obj - 0004:00002168 ??_C@_0BI@JBLA@?$CDifndef?5NO_HELP_SYMBOLS?$AA@ 00466168 chelpexp.obj - 0004:00002180 ??_C@_08CEGN@ENDCHUNK?$AA@ 00466180 chelpexp.obj - 0004:0000218c ??_C@_0BA@PCFC@?50x?$CFx?50x?$CFx?50x?$CFx?$AA@ 0046618c chelpexp.obj - 0004:0000219c ??_C@_0N@DGEF@?7BO?5OSK?5LONG?$AA@ 0046619c chelpexp.obj - 0004:000021ac ??_C@_0BL@NJBI@?$CDendif?5?1?1HELP_SINGLE_CHUNK?$AA@ 004661ac chelpexp.obj - 0004:000021c8 ??_C@_07KLIJ@SUBFILE?$AA@ 004661c8 chelpexp.obj - 0004:000021d0 ??_C@_0DI@INKG@CHUNK?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?5__HELP_@ 004661d0 chelpexp.obj - 0004:00002208 ??_C@_0BB@EFDA@SET?5_help_?$CFx_?$CFx?$DN?$AA@ 00466208 chelpexp.obj - 0004:0000221c ??_C@_0CB@BLLE@?$CDdefine?5__HELP_PACK2?5__HELP_PACK@ 0046621c chelpexp.obj - 0004:00002240 ??_C@_0BF@CHGJ@?$CDdefine?5__HELP_PACK2?$AA@ 00466240 chelpexp.obj - 0004:00002258 ??_C@_0BJ@GMCJ@?$CDifdef?5HELP_SINGLE_CHUNK?$AA@ 00466258 chelpexp.obj - 0004:00002274 ??_C@_0BE@NHCM@?$CDdefine?5__HELP_PACK?$AA@ 00466274 chelpexp.obj - 0004:00002288 ??_C@_0BJ@NJLM@?$CDdefine?5__HELP_PACK?5PACK?$AA@ 00466288 chelpexp.obj - 0004:000022a4 ??_C@_0BB@GPGI@?$CDifdef?5PACK_HELP?$AA@ 004662a4 chelpexp.obj - 0004:000022b8 ??_C@_0CD@DBDP@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?5stu@ 004662b8 chelpexp.obj - 0004:000022dc ??_C@_0BN@PCDE@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?$AA@ 004662dc chelpexp.obj - 0004:000022fc ??_C@_0BH@GHBL@?$CDifdef?5NO_HELP_SYMBOLS?$AA@ 004662fc chelpexp.obj - 0004:00002314 ??_C@_06HHGP@?$CDendif?$AA@ 00466314 chelpexp.obj - 0004:0000231c ??_C@_0BP@ONNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5name?$AA@ 0046631c chelpexp.obj - 0004:0000233c ??_C@_05GMMC@?$CDelse?$AA@ 0046633c chelpexp.obj - 0004:00002344 ??_C@_0BN@DPNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5?$CC?$CC?$AA@ 00466344 chelpexp.obj - 0004:00002364 ??_C@_0BF@EKJL@?$CDifdef?5NO_HELP_NAMES?$AA@ 00466364 chelpexp.obj - 0004:0000237c ??_C@_0BE@HDN@?$CDundef?5__HELP_PACK2?$AA@ 0046637c chelpexp.obj - 0004:00002390 ??_C@_0BD@IDIM@?$CDundef?5__HELP_PACK?$AA@ 00466390 chelpexp.obj - 0004:000023a4 ??_C@_0BF@NAGJ@?$CDundef?5__HELP_SYMBOL?$AA@ 004663a4 chelpexp.obj - 0004:000023bc ??_C@_0BD@EKLA@?$CDundef?5__HELP_NAME?$AA@ 004663bc chelpexp.obj - 0004:000023d0 ??_C@_05OKLJ@WINBO?$AA@ 004663d0 chelpexp.obj - 0004:000023d8 ??_C@_05JOF@MACBO?$AA@ 004663d8 chelpexp.obj - 0004:000023e0 ??_C@_04EJID@PACK?$AA@ 004663e0 chelpexp.obj - 0004:000023e8 ??_C@_0CA@EOFJ@PARENT?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?50x?$CFx?$CJ?$AA@ 004663e8 chelpexp.obj - 0004:00002408 ??_C@_0DH@PBIG@CHUNK?$CI?8?$CFf?8?0?5_help_cno?0?5__HELP_NA@ 00466408 chelpexp.obj - 0004:00002440 ??_C@_0BK@IAEE@SET?5_help_?$CFx_?$CFx?$DN_help_cno?$AA@ 00466440 chelpexp.obj - 0004:0000245c ??_C@_0BA@MCEC@SET?5_help_cno?$CL?$CL?$AA@ 0046645c chelpexp.obj - 0004:0000246c ??_C@_05DOL@?7?7VAR?$AA@ 0046646c chelpexp.obj - 0004:00002474 ??_C@_02GDLA@?$DL?5?$AA@ 00466474 chelpexp.obj - 0004:00002478 ??_C@_0BF@KPBE@?5__HELP_SYMBOL?$CI?5STN?5?$AA@ 00466478 chelpexp.obj - 0004:00002490 ??_C@_04BKHJ@0x?$CFx?$AA@ 00466490 chelpexp.obj - 0004:00002498 ??_C@_0BB@ODIA@?7?7VAR?5LONG?5?8?$CFf?8?5?$AA@ 00466498 chelpexp.obj - 0004:000024ac ??_C@_0CI@MFKF@?7?7VAR?5LONG?5?8?$CFf?8?5?$CFs?5__HELP_SYMBOL@ 004664ac chelpexp.obj - 0004:000024d4 ??_C@_03JPGF@?$CC?5?$CJ?$AA@ 004664d4 chelpexp.obj - 0004:000024d8 ??_C@_0CL@LBJB@?7?7VAR?5BYTE?5?$CFd?5LONG?5?$CFs?5__HELP_SYM@ 004664d8 chelpexp.obj - 0004:00002504 ??_C@_0BA@BFNE@?7ITEM?5LONG?50x?$CFx?$AA@ 00466504 chelpexp.obj - 0004:00002514 ??_C@_05JMLE@AG?$CI4?$CJ?$AA@ 00466514 chelpexp.obj - 0004:0000251c ??_C@_05BOND@?50x?$CFx?$AA@ 0046651c chelpexp.obj - 0004:00002524 ?gpMixer@@3PAUIAMMixer@@A 00466524 audios:factory.obj - 0004:00002688 __fltused 00466688 LIBC:fpinit.obj - 0004:0000268c __ldused 0046668c LIBC:fpinit.obj - 0004:00002690 ___fastflag 00466690 LIBC:fpinit.obj - 0004:00002694 __adjust_fdiv 00466694 LIBC:fpinit.obj - 0004:00002698 __FPinit 00466698 LIBC:fpinit.obj - 0004:0000269c __FPmtinit 0046669c LIBC:fpinit.obj - 0004:000026a0 __FPmtterm 004666a0 LIBC:fpinit.obj - 0004:000026a4 __aenvptr 004666a4 LIBC:wincrt0.obj - 0004:000026a8 __wenvptr 004666a8 LIBC:wincrt0.obj - 0004:000026ac __aexit_rtn 004666ac LIBC:wincrt0.obj - 0004:000026c0 _errno 004666c0 LIBC:crt0dat.obj - 0004:000026c4 __doserrno 004666c4 LIBC:crt0dat.obj - 0004:000026c8 __umaskval 004666c8 LIBC:crt0dat.obj - 0004:000026cc __osver 004666cc LIBC:crt0dat.obj - 0004:000026d0 __winver 004666d0 LIBC:crt0dat.obj - 0004:000026d4 __winmajor 004666d4 LIBC:crt0dat.obj - 0004:000026d8 __winminor 004666d8 LIBC:crt0dat.obj - 0004:000026dc ___argc 004666dc LIBC:crt0dat.obj - 0004:000026e0 ___argv 004666e0 LIBC:crt0dat.obj - 0004:000026e4 ___wargv 004666e4 LIBC:crt0dat.obj - 0004:000026e8 __environ 004666e8 LIBC:crt0dat.obj - 0004:000026ec ___initenv 004666ec LIBC:crt0dat.obj - 0004:000026f0 __wenviron 004666f0 LIBC:crt0dat.obj - 0004:000026f4 ___winitenv 004666f4 LIBC:crt0dat.obj - 0004:000026f8 __pgmptr 004666f8 LIBC:crt0dat.obj - 0004:000026fc __wpgmptr 004666fc LIBC:crt0dat.obj - 0004:00002700 __exitflag 00466700 LIBC:crt0dat.obj - 0004:00002704 __C_Termination_Done 00466704 LIBC:crt0dat.obj - 0004:00002708 __pnhHeap 00466708 LIBC:malloc.obj - 0004:00002770 __cfltcvt_tab 00466770 LIBC:cmiscdat.obj - 0004:000027a0 __XcptActTab 004667a0 LIBC:winxfltr.obj - 0004:00002818 __First_FPE_Indx 00466818 LIBC:winxfltr.obj - 0004:0000281c __Num_FPE 0046681c LIBC:winxfltr.obj - 0004:00002820 __XcptActTabCount 00466820 LIBC:winxfltr.obj - 0004:00002824 __fpecode 00466824 LIBC:winxfltr.obj - 0004:00002828 __pxcptinfoptrs 00466828 LIBC:winxfltr.obj - 0004:00002830 __mbctype 00466830 LIBC:mbctype.obj - 0004:00002934 ___mbcodepage 00466934 LIBC:mbctype.obj - 0004:00002938 ___mblcid 00466938 LIBC:mbctype.obj - 0004:00002940 ___mbulinfo 00466940 LIBC:mbctype.obj - 0004:00002a48 __nhandle 00466a48 LIBC:ioinit.obj - 0004:00002a50 __osfile 00466a50 LIBC:ioinit.obj - 0004:00002a90 __osfhnd 00466a90 LIBC:ioinit.obj - 0004:00002b90 __pipech 00466b90 LIBC:ioinit.obj - 0004:00002bd0 __heap_desc 00466bd0 LIBC:heapinit.obj - 0004:00002be4 __heap_resetsize 00466be4 LIBC:heapinit.obj - 0004:00002be8 __amblksiz 00466be8 LIBC:heapinit.obj - 0004:00002bec __heap_regionsize 00466bec LIBC:heapinit.obj - 0004:00002bf0 __heap_maxregsize 00466bf0 LIBC:heapinit.obj - 0004:00002e60 __adbgmsg 00466e60 LIBC:crt0msg.obj - 0004:00002e70 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 00466e70 LIBC:hooks.obj - 0004:00002e74 ?__pTerminate@@3P6AXXZA 00466e74 LIBC:hooks.obj - 0004:00002e78 ?__pUnexpected@@3P6AXXZA 00466e78 LIBC:hooks.obj - 0004:00002e7c ?__pInconsistency@@3P6AXXZA 00466e7c LIBC:hooks.obj - 0004:00002e80 __infinity 00466e80 LIBC:87tran.obj - 0004:00002e8a __minfinity 00466e8a LIBC:87tran.obj - 0004:00002e94 __logemax 00466e94 LIBC:87tran.obj - 0004:00002ec4 __OP_POWjmptab 00466ec4 LIBC:87tran.obj - 0004:00002f14 __OP_LOG10jmptab 00466f14 LIBC:87tran.obj - 0004:00002f34 __OP_LOGjmptab 00466f34 LIBC:87tran.obj - 0004:00002f54 __OP_EXPjmptab 00466f54 LIBC:87tran.obj - 0004:00002f74 __newmode 00466f74 LIBC:_newmode.obj - 0004:00002f78 ___mb_cur_max 00466f78 LIBC:nlsdata1.obj - 0004:00002f80 ___decimal_point 00466f80 LIBC:nlsdata1.obj - 0004:00002f84 ___decimal_point_length 00466f84 LIBC:nlsdata1.obj - 0004:00002f88 __pctype 00466f88 LIBC:ctype.obj - 0004:00002f8c __pwctype 00466f8c LIBC:ctype.obj - 0004:00002f90 __ctype 00466f90 LIBC:ctype.obj - 0004:00003254 __indefinite 00467254 LIBC:87disp.obj - 0004:0000325e __piby2 0046725e LIBC:87disp.obj - 0004:00003270 __cpower 00467270 LIBC:87disp.obj - 0004:00003328 ___lc_handle 00467328 LIBC:nlsdata2.obj - 0004:00003340 ___lc_codepage 00467340 LIBC:nlsdata2.obj - 0004:00003378 __d_inf 00467378 LIBC:util.obj - 0004:00003380 __d_ind 00467380 LIBC:util.obj - 0004:00003388 __d_max 00467388 LIBC:util.obj - 0004:00003390 __d_min 00467390 LIBC:util.obj - 0004:00003398 __d_mzero 00467398 LIBC:util.obj - 0004:0000352c __matherr_flag 0046752c LIBC:matherr.obj - 0004:0000354c ___invalid_mb_chars 0046754c LIBC:setmbval.obj - 0004:00003558 __pow10pos 00467558 LIBC:constpow.obj - 0004:000036b8 __pow10neg 004676b8 LIBC:constpow.obj - 0004:00003814 ___xc_a 00467814 LIBC:crt0init.obj - 0004:00003910 ___xc_z 00467910 LIBC:crt0init.obj - 0004:00003914 ___xi_a 00467914 LIBC:crt0init.obj - 0004:00003920 ___xi_z 00467920 LIBC:crt0init.obj - 0004:00003924 ___xp_a 00467924 LIBC:crt0init.obj - 0004:00003928 ___xp_z 00467928 LIBC:crt0init.obj - 0004:0000392c ___xt_a 0046792c LIBC:crt0init.obj - 0004:00003930 ___xt_z 00467930 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00468000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00468014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00468028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 0046803c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 00468050 winmm:WINMM.dll - 0005:00000064 ADVAPI32_IMPORT_DESCRIPTOR 00468064 advapi32:ADVAPI32.dll - 0005:00000078 MSVFW32_IMPORT_DESCRIPTOR 00468078 vfw32:MSVFW32.dll - 0005:0000008c AVIFIL32_IMPORT_DESCRIPTOR 0046808c vfw32:AVIFIL32.dll - 0005:000000a0 __IMPORT_DESCRIPTOR_MSACM32 004680a0 audios:MSACM32.dll - 0005:000000b4 NULL_IMPORT_DESCRIPTOR 004680b4 kernel32:KERNEL32.dll - 0005:000000c8 __NULL_IMPORT_DESCRIPTOR 004680c8 audios:MSACM32.dll - 0005:00000534 __imp__RegCloseKey@4 00468534 advapi32:ADVAPI32.dll - 0005:00000538 __imp__RegQueryValueExA@24 00468538 advapi32:ADVAPI32.dll - 0005:0000053c __imp__RegOpenKeyExA@20 0046853c advapi32:ADVAPI32.dll - 0005:00000540 \177ADVAPI32_NULL_THUNK_DATA 00468540 advapi32:ADVAPI32.dll - 0005:00000544 \177AVIFIL32_NULL_THUNK_DATA 00468544 vfw32:AVIFIL32.dll - 0005:00000548 __imp__SelectClipRgn@8 00468548 gdi32:GDI32.dll - 0005:0000054c __imp__AnimatePalette@16 0046854c gdi32:GDI32.dll - 0005:00000550 __imp__CreatePalette@4 00468550 gdi32:GDI32.dll - 0005:00000554 __imp__GetObjectA@12 00468554 gdi32:GDI32.dll - 0005:00000558 __imp__EnumFontsA@16 00468558 gdi32:GDI32.dll - 0005:0000055c __imp__ExtCreateRegion@12 0046855c gdi32:GDI32.dll - 0005:00000560 __imp__OffsetRgn@12 00468560 gdi32:GDI32.dll - 0005:00000564 __imp__GetClipRgn@8 00468564 gdi32:GDI32.dll - 0005:00000568 __imp__CreateRectRgn@16 00468568 gdi32:GDI32.dll - 0005:0000056c __imp__CreateEllipticRgn@16 0046856c gdi32:GDI32.dll - 0005:00000570 __imp__GdiFlush@0 00468570 gdi32:GDI32.dll - 0005:00000574 __imp__RealizePalette@4 00468574 gdi32:GDI32.dll - 0005:00000578 __imp__SelectPalette@12 00468578 gdi32:GDI32.dll - 0005:0000057c __imp__ResizePalette@8 0046857c gdi32:GDI32.dll - 0005:00000580 __imp__SetPaletteEntries@16 00468580 gdi32:GDI32.dll - 0005:00000584 __imp__GetSystemPaletteEntries@16 00468584 gdi32:GDI32.dll - 0005:00000588 __imp__GetDeviceCaps@8 00468588 gdi32:GDI32.dll - 0005:0000058c __imp__SetPolyFillMode@8 0046858c gdi32:GDI32.dll - 0005:00000590 __imp__DeleteObject@4 00468590 gdi32:GDI32.dll - 0005:00000594 __imp__SelectObject@8 00468594 gdi32:GDI32.dll - 0005:00000598 __imp__GetStockObject@4 00468598 gdi32:GDI32.dll - 0005:0000059c __imp__DeleteDC@4 0046859c gdi32:GDI32.dll - 0005:000005a0 __imp__DeleteEnhMetaFile@4 004685a0 gdi32:GDI32.dll - 0005:000005a4 __imp__CloseEnhMetaFile@4 004685a4 gdi32:GDI32.dll - 0005:000005a8 __imp__CreateDIBSection@24 004685a8 gdi32:GDI32.dll - 0005:000005ac __imp__CreateCompatibleDC@4 004685ac gdi32:GDI32.dll - 0005:000005b0 __imp__SetDIBColorTable@16 004685b0 gdi32:GDI32.dll - 0005:000005b4 __imp__CombineRgn@16 004685b4 gdi32:GDI32.dll - 0005:000005b8 __imp__Rectangle@20 004685b8 gdi32:GDI32.dll - 0005:000005bc __imp__FillRgn@12 004685bc gdi32:GDI32.dll - 0005:000005c0 __imp__StartDocA@8 004685c0 gdi32:GDI32.dll - 0005:000005c4 __imp__StartPage@4 004685c4 gdi32:GDI32.dll - 0005:000005c8 __imp__EndPage@4 004685c8 gdi32:GDI32.dll - 0005:000005cc __imp__EndDoc@4 004685cc gdi32:GDI32.dll - 0005:000005d0 __imp__CreateRectRgnIndirect@4 004685d0 gdi32:GDI32.dll - 0005:000005d4 __imp__CreateFontIndirectA@4 004685d4 gdi32:GDI32.dll - 0005:000005d8 __imp__IntersectClipRect@20 004685d8 gdi32:GDI32.dll - 0005:000005dc __imp__CreateBitmap@20 004685dc gdi32:GDI32.dll - 0005:000005e0 __imp__SetStretchBltMode@8 004685e0 gdi32:GDI32.dll - 0005:000005e4 __imp__StretchBlt@44 004685e4 gdi32:GDI32.dll - 0005:000005e8 __imp__SetTextAlign@8 004685e8 gdi32:GDI32.dll - 0005:000005ec __imp__CreateSolidBrush@4 004685ec gdi32:GDI32.dll - 0005:000005f0 __imp__SetBkMode@8 004685f0 gdi32:GDI32.dll - 0005:000005f4 __imp__CreatePatternBrush@4 004685f4 gdi32:GDI32.dll - 0005:000005f8 __imp__GetTextMetricsA@8 004685f8 gdi32:GDI32.dll - 0005:000005fc __imp__GetTextExtentPoint32A@16 004685fc gdi32:GDI32.dll - 0005:00000600 __imp__TextOutA@20 00468600 gdi32:GDI32.dll - 0005:00000604 __imp__SetBkColor@8 00468604 gdi32:GDI32.dll - 0005:00000608 __imp__SetTextColor@8 00468608 gdi32:GDI32.dll - 0005:0000060c __imp__SetROP2@8 0046860c gdi32:GDI32.dll - 0005:00000610 \177GDI32_NULL_THUNK_DATA 00468610 gdi32:GDI32.dll - 0005:00000614 __imp__FindResourceA@12 00468614 kernel32:KERNEL32.dll - 0005:00000618 __imp__LoadResource@8 00468618 kernel32:KERNEL32.dll - 0005:0000061c __imp__LockResource@4 0046861c kernel32:KERNEL32.dll - 0005:00000620 __imp__MoveFileA@8 00468620 kernel32:KERNEL32.dll - 0005:00000624 __imp__GetFileAttributesA@4 00468624 kernel32:KERNEL32.dll - 0005:00000628 __imp__GetLastError@0 00468628 kernel32:KERNEL32.dll - 0005:0000062c __imp__GetDriveTypeA@4 0046862c kernel32:KERNEL32.dll - 0005:00000630 __imp__GetTempPathA@8 00468630 kernel32:KERNEL32.dll - 0005:00000634 __imp__GetFullPathNameA@16 00468634 kernel32:KERNEL32.dll - 0005:00000638 __imp__WriteFile@20 00468638 kernel32:KERNEL32.dll - 0005:0000063c __imp__ReadFile@20 0046863c kernel32:KERNEL32.dll - 0005:00000640 __imp__SetEndOfFile@4 00468640 kernel32:KERNEL32.dll - 0005:00000644 __imp__SetFilePointer@16 00468644 kernel32:KERNEL32.dll - 0005:00000648 __imp__FlushFileBuffers@4 00468648 kernel32:KERNEL32.dll - 0005:0000064c __imp__DeleteFileA@4 0046864c kernel32:KERNEL32.dll - 0005:00000650 __imp__CreateFileA@28 00468650 kernel32:KERNEL32.dll - 0005:00000654 __imp__GlobalSize@4 00468654 kernel32:KERNEL32.dll - 0005:00000658 __imp__GlobalLock@4 00468658 kernel32:KERNEL32.dll - 0005:0000065c __imp__GlobalUnlock@4 0046865c kernel32:KERNEL32.dll - 0005:00000660 __imp__GetVersionExA@4 00468660 kernel32:KERNEL32.dll - 0005:00000664 __imp__GetProcAddress@8 00468664 kernel32:KERNEL32.dll - 0005:00000668 __imp__GetVersion@0 00468668 kernel32:KERNEL32.dll - 0005:0000066c __imp__GetEnvironmentStrings@0 0046866c kernel32:KERNEL32.dll - 0005:00000670 __imp__RtlUnwind@16 00468670 kernel32:KERNEL32.dll - 0005:00000674 __imp__GetModuleHandleA@4 00468674 kernel32:KERNEL32.dll - 0005:00000678 __imp__GetStartupInfoA@4 00468678 kernel32:KERNEL32.dll - 0005:0000067c __imp___hwrite@12 0046867c kernel32:KERNEL32.dll - 0005:00000680 __imp__DebugBreak@0 00468680 kernel32:KERNEL32.dll - 0005:00000684 __imp__GetPrivateProfileIntA@16 00468684 kernel32:KERNEL32.dll - 0005:00000688 __imp___llseek@12 00468688 kernel32:KERNEL32.dll - 0005:0000068c __imp___lcreat@8 0046868c kernel32:KERNEL32.dll - 0005:00000690 __imp___hread@12 00468690 kernel32:KERNEL32.dll - 0005:00000694 __imp___lopen@8 00468694 kernel32:KERNEL32.dll - 0005:00000698 __imp__GlobalHandle@4 00468698 kernel32:KERNEL32.dll - 0005:0000069c __imp___lclose@4 0046869c kernel32:KERNEL32.dll - 0005:000006a0 __imp__Sleep@4 004686a0 kernel32:KERNEL32.dll - 0005:000006a4 __imp__DeleteCriticalSection@4 004686a4 kernel32:KERNEL32.dll - 0005:000006a8 __imp__GlobalAlloc@8 004686a8 kernel32:KERNEL32.dll - 0005:000006ac __imp__GlobalFree@4 004686ac kernel32:KERNEL32.dll - 0005:000006b0 __imp__LeaveCriticalSection@4 004686b0 kernel32:KERNEL32.dll - 0005:000006b4 __imp__EnterCriticalSection@4 004686b4 kernel32:KERNEL32.dll - 0005:000006b8 __imp__GlobalReAlloc@12 004686b8 kernel32:KERNEL32.dll - 0005:000006bc __imp__CompareStringA@24 004686bc kernel32:KERNEL32.dll - 0005:000006c0 __imp__WideCharToMultiByte@32 004686c0 kernel32:KERNEL32.dll - 0005:000006c4 __imp__GetCurrentThreadId@0 004686c4 kernel32:KERNEL32.dll - 0005:000006c8 __imp__GetCommandLineA@0 004686c8 kernel32:KERNEL32.dll - 0005:000006cc __imp__FatalAppExitA@8 004686cc kernel32:KERNEL32.dll - 0005:000006d0 __imp__CloseHandle@4 004686d0 kernel32:KERNEL32.dll - 0005:000006d4 __imp__WaitForSingleObject@8 004686d4 kernel32:KERNEL32.dll - 0005:000006d8 __imp__SetEvent@4 004686d8 kernel32:KERNEL32.dll - 0005:000006dc __imp__ResumeThread@4 004686dc kernel32:KERNEL32.dll - 0005:000006e0 __imp__SetThreadPriority@8 004686e0 kernel32:KERNEL32.dll - 0005:000006e4 __imp__CreateThread@24 004686e4 kernel32:KERNEL32.dll - 0005:000006e8 __imp__CreateEventA@16 004686e8 kernel32:KERNEL32.dll - 0005:000006ec __imp__FreeLibrary@4 004686ec kernel32:KERNEL32.dll - 0005:000006f0 __imp__ExitProcess@4 004686f0 kernel32:KERNEL32.dll - 0005:000006f4 __imp__UnhandledExceptionFilter@4 004686f4 kernel32:KERNEL32.dll - 0005:000006f8 __imp__GetModuleFileNameA@12 004686f8 kernel32:KERNEL32.dll - 0005:000006fc __imp__GetACP@0 004686fc kernel32:KERNEL32.dll - 0005:00000700 __imp__GetOEMCP@0 00468700 kernel32:KERNEL32.dll - 0005:00000704 __imp__GetCPInfo@8 00468704 kernel32:KERNEL32.dll - 0005:00000708 __imp__GetStdHandle@4 00468708 kernel32:KERNEL32.dll - 0005:0000070c __imp__GetFileType@4 0046870c kernel32:KERNEL32.dll - 0005:00000710 __imp__VirtualFree@12 00468710 kernel32:KERNEL32.dll - 0005:00000714 __imp__VirtualAlloc@16 00468714 kernel32:KERNEL32.dll - 0005:00000718 __imp__SetUnhandledExceptionFilter@4 00468718 kernel32:KERNEL32.dll - 0005:0000071c __imp__IsBadReadPtr@8 0046871c kernel32:KERNEL32.dll - 0005:00000720 __imp__InitializeCriticalSection@4 00468720 kernel32:KERNEL32.dll - 0005:00000724 __imp__IsBadWritePtr@8 00468724 kernel32:KERNEL32.dll - 0005:00000728 __imp__IsBadCodePtr@4 00468728 kernel32:KERNEL32.dll - 0005:0000072c __imp__MultiByteToWideChar@24 0046872c kernel32:KERNEL32.dll - 0005:00000730 __imp__RaiseException@16 00468730 kernel32:KERNEL32.dll - 0005:00000734 __imp__LoadLibraryA@4 00468734 kernel32:KERNEL32.dll - 0005:00000738 \177KERNEL32_NULL_THUNK_DATA 00468738 kernel32:KERNEL32.dll - 0005:0000073c __imp__acmStreamConvert@12 0046873c audios:MSACM32.dll - 0005:00000740 __imp__acmStreamClose@8 00468740 audios:MSACM32.dll - 0005:00000744 __imp__acmStreamOpen@32 00468744 audios:MSACM32.dll - 0005:00000748 __imp__acmStreamPrepareHeader@12 00468748 audios:MSACM32.dll - 0005:0000074c __imp__acmStreamSize@16 0046874c audios:MSACM32.dll - 0005:00000750 __imp__acmFormatSuggest@20 00468750 audios:MSACM32.dll - 0005:00000754 __imp__acmStreamUnprepareHeader@12 00468754 audios:MSACM32.dll - 0005:00000758 \177MSACM32_NULL_THUNK_DATA 00468758 audios:MSACM32.dll - 0005:0000075c \177MSVFW32_NULL_THUNK_DATA 0046875c vfw32:MSVFW32.dll - 0005:00000760 __imp__TranslateAcceleratorA@12 00468760 user32:USER32.dll - 0005:00000764 __imp__TranslateMessage@4 00468764 user32:USER32.dll - 0005:00000768 __imp__DispatchMessageA@4 00468768 user32:USER32.dll - 0005:0000076c __imp__PeekMessageA@20 0046876c user32:USER32.dll - 0005:00000770 __imp__GetCursorPos@4 00468770 user32:USER32.dll - 0005:00000774 __imp__GetMessageA@16 00468774 user32:USER32.dll - 0005:00000778 __imp__TranslateMDISysAccel@8 00468778 user32:USER32.dll - 0005:0000077c __imp__LoadIconA@8 0046877c user32:USER32.dll - 0005:00000780 __imp__RegisterClassA@4 00468780 user32:USER32.dll - 0005:00000784 __imp__CreateWindowExA@48 00468784 user32:USER32.dll - 0005:00000788 __imp__GetDC@4 00468788 user32:USER32.dll - 0005:0000078c __imp__SetTimer@16 0046878c user32:USER32.dll - 0005:00000790 __imp__LoadAcceleratorsA@8 00468790 user32:USER32.dll - 0005:00000794 __imp__DefFrameProcA@20 00468794 user32:USER32.dll - 0005:00000798 __imp__ChangeClipboardChain@8 00468798 user32:USER32.dll - 0005:0000079c __imp__ScreenToClient@8 0046879c user32:USER32.dll - 0005:000007a0 __imp__WindowFromPoint@8 004687a0 user32:USER32.dll - 0005:000007a4 __imp__GetClipboardOwner@0 004687a4 user32:USER32.dll - 0005:000007a8 __imp__SetWindowLongA@12 004687a8 user32:USER32.dll - 0005:000007ac __imp__GetUpdateRect@12 004687ac user32:USER32.dll - 0005:000007b0 __imp__ValidateRect@8 004687b0 user32:USER32.dll - 0005:000007b4 __imp__GetSystemMetrics@4 004687b4 user32:USER32.dll - 0005:000007b8 __imp__CreateCursor@28 004687b8 user32:USER32.dll - 0005:000007bc __imp__DestroyCursor@4 004687bc user32:USER32.dll - 0005:000007c0 __imp__SetCapture@4 004687c0 user32:USER32.dll - 0005:000007c4 __imp__GetCapture@0 004687c4 user32:USER32.dll - 0005:000007c8 __imp__ReleaseCapture@0 004687c8 user32:USER32.dll - 0005:000007cc __imp__IsZoomed@4 004687cc user32:USER32.dll - 0005:000007d0 __imp__ShowWindow@8 004687d0 user32:USER32.dll - 0005:000007d4 __imp__GetClientRect@8 004687d4 user32:USER32.dll - 0005:000007d8 __imp__ClientToScreen@8 004687d8 user32:USER32.dll - 0005:000007dc __imp__ShowCursor@4 004687dc user32:USER32.dll - 0005:000007e0 __imp__SendMessageA@16 004687e0 user32:USER32.dll - 0005:000007e4 __imp__GetKeyState@4 004687e4 user32:USER32.dll - 0005:000007e8 __imp__SetCursor@4 004687e8 user32:USER32.dll - 0005:000007ec __imp__InvalidateRect@12 004687ec user32:USER32.dll - 0005:000007f0 __imp__GetWindowLongA@8 004687f0 user32:USER32.dll - 0005:000007f4 __imp__PostQuitMessage@4 004687f4 user32:USER32.dll - 0005:000007f8 __imp__GetWindow@8 004687f8 user32:USER32.dll - 0005:000007fc __imp__CharUpperBuffA@8 004687fc user32:USER32.dll - 0005:00000800 __imp__EndPaint@8 00468800 user32:USER32.dll - 0005:00000804 __imp__ReleaseDC@8 00468804 user32:USER32.dll - 0005:00000808 __imp__BeginPaint@8 00468808 user32:USER32.dll - 0005:0000080c __imp__IsIconic@4 0046880c user32:USER32.dll - 0005:00000810 __imp__MessageBoxA@16 00468810 user32:USER32.dll - 0005:00000814 __imp__GetActiveWindow@0 00468814 user32:USER32.dll - 0005:00000818 __imp__GetParent@4 00468818 user32:USER32.dll - 0005:0000081c __imp__SetScrollRange@20 0046881c user32:USER32.dll - 0005:00000820 __imp__SetScrollPos@16 00468820 user32:USER32.dll - 0005:00000824 __imp__SetDlgItemTextA@12 00468824 user32:USER32.dll - 0005:00000828 __imp__GetDlgItemTextA@16 00468828 user32:USER32.dll - 0005:0000082c __imp__CheckDlgButton@12 0046882c user32:USER32.dll - 0005:00000830 __imp__CheckRadioButton@16 00468830 user32:USER32.dll - 0005:00000834 __imp__IsDlgButtonChecked@8 00468834 user32:USER32.dll - 0005:00000838 __imp__GetDlgItem@8 00468838 user32:USER32.dll - 0005:0000083c __imp__SetFocus@4 0046883c user32:USER32.dll - 0005:00000840 __imp__SendDlgItemMessageA@20 00468840 user32:USER32.dll - 0005:00000844 __imp__DialogBoxParamA@20 00468844 user32:USER32.dll - 0005:00000848 __imp__GetPropA@8 00468848 user32:USER32.dll - 0005:0000084c __imp__SetPropA@12 0046884c user32:USER32.dll - 0005:00000850 __imp__GetAsyncKeyState@4 00468850 user32:USER32.dll - 0005:00000854 __imp__GetWindowRect@8 00468854 user32:USER32.dll - 0005:00000858 __imp__RemovePropA@8 00468858 user32:USER32.dll - 0005:0000085c __imp__KillTimer@8 0046885c user32:USER32.dll - 0005:00000860 __imp__EndDialog@8 00468860 user32:USER32.dll - 0005:00000864 __imp__SetClipboardData@8 00468864 user32:USER32.dll - 0005:00000868 __imp__SetCursorPos@8 00468868 user32:USER32.dll - 0005:0000086c __imp__LoadCursorA@8 0046886c user32:USER32.dll - 0005:00000870 __imp__EmptyClipboard@0 00468870 user32:USER32.dll - 0005:00000874 __imp__OpenClipboard@4 00468874 user32:USER32.dll - 0005:00000878 __imp__EnumClipboardFormats@4 00468878 user32:USER32.dll - 0005:0000087c __imp__GetClipboardData@4 0046887c user32:USER32.dll - 0005:00000880 __imp__CloseClipboard@0 00468880 user32:USER32.dll - 0005:00000884 __imp__GetCaretBlinkTime@0 00468884 user32:USER32.dll - 0005:00000888 __imp__MoveWindow@24 00468888 user32:USER32.dll - 0005:0000088c __imp__GetMenuStringA@20 0046888c user32:USER32.dll - 0005:00000890 __imp__ModifyMenuA@20 00468890 user32:USER32.dll - 0005:00000894 __imp__GetMessageTime@0 00468894 user32:USER32.dll - 0005:00000898 __imp__InsertMenuA@20 00468898 user32:USER32.dll - 0005:0000089c __imp__GetDoubleClickTime@0 0046889c user32:USER32.dll - 0005:000008a0 __imp__SetClipboardViewer@4 004688a0 user32:USER32.dll - 0005:000008a4 __imp__DefMDIChildProcA@16 004688a4 user32:USER32.dll - 0005:000008a8 __imp__GetSubMenu@8 004688a8 user32:USER32.dll - 0005:000008ac __imp__DeleteMenu@12 004688ac user32:USER32.dll - 0005:000008b0 __imp__EnableMenuItem@12 004688b0 user32:USER32.dll - 0005:000008b4 __imp__SetMenu@8 004688b4 user32:USER32.dll - 0005:000008b8 __imp__GetMenuItemID@8 004688b8 user32:USER32.dll - 0005:000008bc __imp__CheckMenuItem@12 004688bc user32:USER32.dll - 0005:000008c0 __imp__IsWindow@4 004688c0 user32:USER32.dll - 0005:000008c4 __imp__LoadMenuA@8 004688c4 user32:USER32.dll - 0005:000008c8 __imp__GetMenuItemCount@4 004688c8 user32:USER32.dll - 0005:000008cc __imp__CreateMDIWindowA@40 004688cc user32:USER32.dll - 0005:000008d0 __imp__SetWindowTextA@8 004688d0 user32:USER32.dll - 0005:000008d4 __imp__DestroyWindow@4 004688d4 user32:USER32.dll - 0005:000008d8 __imp__FillRect@12 004688d8 user32:USER32.dll - 0005:000008dc __imp__ScrollDC@28 004688dc user32:USER32.dll - 0005:000008e0 __imp__InvertRect@8 004688e0 user32:USER32.dll - 0005:000008e4 __imp__ScrollWindowEx@32 004688e4 user32:USER32.dll - 0005:000008e8 __imp__UpdateWindow@4 004688e8 user32:USER32.dll - 0005:000008ec __imp__CharLowerBuffA@8 004688ec user32:USER32.dll - 0005:000008f0 \177USER32_NULL_THUNK_DATA 004688f0 user32:USER32.dll - 0005:000008f4 __imp__midiOutPrepareHeader@12 004688f4 winmm:WINMM.dll - 0005:000008f8 __imp__midiOutUnprepareHeader@12 004688f8 winmm:WINMM.dll - 0005:000008fc __imp__midiOutClose@4 004688fc winmm:WINMM.dll - 0005:00000900 __imp__midiOutOpen@20 00468900 winmm:WINMM.dll - 0005:00000904 __imp__midiOutReset@4 00468904 winmm:WINMM.dll - 0005:00000908 __imp__midiOutShortMsg@8 00468908 winmm:WINMM.dll - 0005:0000090c __imp__midiOutSetVolume@8 0046890c winmm:WINMM.dll - 0005:00000910 __imp__midiOutGetVolume@8 00468910 winmm:WINMM.dll - 0005:00000914 __imp__waveOutGetNumDevs@0 00468914 winmm:WINMM.dll - 0005:00000918 __imp__waveOutGetDevCapsA@12 00468918 winmm:WINMM.dll - 0005:0000091c __imp__timeGetTime@0 0046891c winmm:WINMM.dll - 0005:00000920 __imp__timeKillEvent@4 00468920 winmm:WINMM.dll - 0005:00000924 __imp__waveOutPrepareHeader@12 00468924 winmm:WINMM.dll - 0005:00000928 __imp__waveOutSetVolume@8 00468928 winmm:WINMM.dll - 0005:0000092c __imp__waveOutGetErrorTextA@12 0046892c winmm:WINMM.dll - 0005:00000930 __imp__waveOutMessage@16 00468930 winmm:WINMM.dll - 0005:00000934 __imp__timeSetEvent@20 00468934 winmm:WINMM.dll - 0005:00000938 __imp__timeGetDevCaps@8 00468938 winmm:WINMM.dll - 0005:0000093c __imp__waveOutClose@4 0046893c winmm:WINMM.dll - 0005:00000940 __imp__waveOutReset@4 00468940 winmm:WINMM.dll - 0005:00000944 __imp__waveOutGetID@8 00468944 winmm:WINMM.dll - 0005:00000948 __imp__waveOutOpen@24 00468948 winmm:WINMM.dll - 0005:0000094c __imp__waveOutGetVolume@8 0046894c winmm:WINMM.dll - 0005:00000950 __imp__waveOutGetPlaybackRate@8 00468950 winmm:WINMM.dll - 0005:00000954 __imp__waveOutSetPlaybackRate@8 00468954 winmm:WINMM.dll - 0005:00000958 __imp__waveOutUnprepareHeader@12 00468958 winmm:WINMM.dll - 0005:0000095c __imp__waveOutWrite@12 0046895c winmm:WINMM.dll - 0005:00000960 __imp__waveOutPause@4 00468960 winmm:WINMM.dll - 0005:00000964 __imp__waveOutRestart@4 00468964 winmm:WINMM.dll - 0005:00000968 __imp__waveOutBreakLoop@4 00468968 winmm:WINMM.dll - 0005:0000096c __imp__waveOutGetPosition@12 0046896c winmm:WINMM.dll - 0005:00000970 __imp__waveOutGetPitch@8 00468970 winmm:WINMM.dll - 0005:00000974 __imp__waveOutSetPitch@8 00468974 winmm:WINMM.dll - 0005:00000978 \177WINMM_NULL_THUNK_DATA 00468978 winmm:WINMM.dll - 0005:0000097c __imp__GetOpenFileNameA@4 0046897c comdlg32:comdlg32.dll - 0005:00000980 __imp__PrintDlgA@4 00468980 comdlg32:comdlg32.dll - 0005:00000984 __imp__GetSaveFileNameA@4 00468984 comdlg32:comdlg32.dll - 0005:00000988 \177comdlg32_NULL_THUNK_DATA 00468988 comdlg32:comdlg32.dll - - entry point at 0001:00056720 - - Static symbols - - 0001:00043f20 _$$1000 00444f20 f chelpexp.obj - 0001:00043f30 ?_FWriteHelpChunk@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 00444f30 f chelpexp.obj - 0001:00044120 ?_FWriteHelpPropAg@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 00445120 f chelpexp.obj - 0001:00044820 ?_AppendHelpStnLw@@YGXPAVSTN@@PAVGST@@JJ@Z 00445820 f chelpexp.obj - 0001:000448b0 _$$d200 004458b0 f chelpexp.obj - 0001:000448c0 _$$8000 004458c0 f chelpexp.obj - 0001:0003da50 _$$1000 0043ea50 f chtop.obj - 0001:0003fc10 _$$8000 00440c10 f chtop.obj - 0001:00043660 _$$5300 00444660 f chtop.obj - 0001:0003bbd0 _$$5300 0043cbd0 f chelp.obj - 0001:0003bd30 _$$6300 0043cd30 f chelp.obj - 0001:0003bfb0 _$$1000 0043cfb0 f chelp.obj - 0001:0003d620 _$$7300 0043e620 f chelp.obj - 0001:0003d640 _$$8300 0043e640 f chelp.obj - 0001:0003d650 _$$9300 0043e650 f chelp.obj - 0001:0003d710 _$$8000 0043e710 f chelp.obj - 0001:0003b180 _$$1000 0043c180 f spell.obj - 0001:0003bb10 _$$9200 0043cb10 f spell.obj - 0001:0003bb40 _$$8000 0043cb40 f spell.obj - 0001:0003ace0 _$$1000 0043bce0 f text.obj - 0001:0003acf0 _$$8000 0043bcf0 f text.obj - 0001:0003ad80 _$$9200 0043bd80 f text.obj - 0001:0003a550 _$$1000 0043b550 f ctl.obj - 0001:0003abe0 _$$9200 0043bbe0 f ctl.obj - 0001:0003ac50 _$$8000 0043bc50 f ctl.obj - 0001:0003a280 _$$1000 0043b280 f lex.obj - 0001:0003a290 _$$8000 0043b290 f lex.obj - 0001:0003a260 _$$1000 0043b260 f scrcom.obj - 0001:0003a270 _$$8000 0043b270 f scrcom.obj - 0001:00039b90 _$$1000 0043ab90 f dlgwin.obj - 0001:0003a1c0 _$$9200 0043b1c0 f dlgwin.obj - 0001:0003a1d0 _$$8000 0043b1d0 f dlgwin.obj - 0001:00039320 _$$1000 0043a320 f dlg.obj - 0001:000397b0 _$$9200 0043a7b0 f dlg.obj - 0001:000397e0 _$$8000 0043a7e0 f dlg.obj - 0001:00038c40 _$$1000 00439c40 f chse.obj - 0001:00038f90 _$$8000 00439f90 f chse.obj - 0001:00037ef0 _$$8000 00438ef0 f fniwin.obj - 0001:00038240 _$$1000 00439240 f fniwin.obj - 0001:00038970 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00439970 f fniwin.obj - 0001:00038a10 _$$9000 00439a10 f fniwin.obj - 0001:00038a20 _$$a000 00439a20 f fniwin.obj - 0001:00038a30 _$$b000 00439a30 f fniwin.obj - 0001:00037780 ?_HfileOpen@@YGPAXPADHK@Z 00438780 f filewin.obj - 0001:00037a50 _$$1000 00438a50 f filewin.obj - 0001:00037ee0 _$$8000 00438ee0 f filewin.obj - 0001:000360c0 _$$8000 004370c0 f file.obj - 0001:00036380 _$$1000 00437380 f file.obj - 0001:00036630 ?_FRangeIn@@YGHJJJ@Z 00437630 f file.obj - 0001:000376f0 _$$9000 004386f0 f file.obj - 0001:00037700 _$$a000 00438700 f file.obj - 0001:00037710 _$$b000 00438710 f file.obj - 0001:00035140 _$$1000 00436140 f crf.obj - 0001:00036050 _$$8000 00437050 f crf.obj - 0001:0002ecb0 _$$1000 0042fcb0 f codkauai.obj - 0001:00034f50 _$$8000 00435f50 f codkauai.obj - 0001:0002e460 _$$1000 0042f460 f codec.obj - 0001:0002e790 _$$8000 0042f790 f codec.obj - 0001:0002a260 _$$1000 0042b260 f chunk.obj - 0001:0002e150 _$$8000 0042f150 f chunk.obj - 0001:000293c0 _$$1000 0042a3c0 f stream.obj - 0001:0002a100 _$$8000 0042b100 f stream.obj - 0001:00028d10 _$$9200 00429d10 f clip.obj - 0001:00028f10 _$$1000 00429f10 f clip.obj - 0001:00029290 _$$a200 0042a290 f clip.obj - 0001:000292a0 _$$b200 0042a2a0 f clip.obj - 0001:000292b0 _$$c200 0042a2b0 f clip.obj - 0001:000292f0 _$$8000 0042a2f0 f clip.obj - 0001:000261b0 _$$1000 004271b0 f docb.obj - 0001:00027f30 _$$8000 00428f30 f docb.obj - 0001:00028ba0 _$$9200 00429ba0 f docb.obj - 0001:00021890 _$$1000 00422890 f rtxt2.obj - 0001:00023a30 _$$8000 00424a30 f rtxt2.obj - 0001:00025f40 _$$9200 00426f40 f rtxt2.obj - 0001:0001d330 _$$1000 0041e330 f rtxt.obj - 0001:0001f010 _$$8000 00420010 f rtxt.obj - 0001:00021670 _$$9200 00422670 f rtxt.obj - 0001:0001cf60 _$$1000 0041df60 f screxe.obj - 0001:0001d140 _$$8000 0041e140 f screxe.obj - 0001:0001ce70 _$$1000 0041de70 f screxeg.obj - 0001:0001ce80 _$$d200 0041de80 f screxeg.obj - 0001:0001ce90 _$$8000 0041de90 f screxeg.obj - 0001:0001cd90 _$$1000 0041dd90 f kidspace.obj - 0001:0001cda0 _$$8000 0041dda0 f kidspace.obj - 0001:0001ce40 _$$d200 0041de40 f kidspace.obj - 0001:0001c130 _$$1000 0041d130 f kidhelp.obj - 0001:0001cc90 _$$d200 0041dc90 f kidhelp.obj - 0001:0001cca0 _$$8000 0041dca0 f kidhelp.obj - 0001:0001bcf0 _$$1000 0041ccf0 f kidworld.obj - 0001:0001bd00 _$$d200 0041cd00 f kidworld.obj - 0001:0001bd10 _$$8000 0041cd10 f kidworld.obj - 0001:0001bc20 _$$9200 0041cc20 f video.obj - 0001:0001bc30 _$$1000 0041cc30 f video.obj - 0001:0001bc40 _$$a200 0041cc40 f video.obj - 0001:0001bc60 _$$8000 0041cc60 f video.obj - 0001:0001ba00 _$$1000 0041ca00 f midi.obj - 0001:0001bb40 _$$9200 0041cb40 f midi.obj - 0001:0001bb90 _$$8000 0041cb90 f midi.obj - 0001:000191d0 _$$1000 0041a1d0 f mididev2.obj - 0001:0001ad00 _$$8000 0041bd00 f mididev2.obj - 0001:0001b450 _$$9200 0041c450 f mididev2.obj - 0001:00018cb0 _$$9200 00419cb0 f mididev.obj - 0001:00018ec0 _$$1000 00419ec0 f mididev.obj - 0001:00018ed0 _$$a200 00419ed0 f mididev.obj - 0001:00018ee0 _$$b200 00419ee0 f mididev.obj - 0001:00018ef0 _$$c200 00419ef0 f mididev.obj - 0001:00018f30 _$$8000 00419f30 f mididev.obj - 0001:00017be0 _$$1000 00418be0 f sndam.obj - 0001:00018bb0 _$$9200 00419bb0 f sndam.obj - 0001:00018c20 _$$8000 00419c20 f sndam.obj - 0001:000167b0 _$$1000 004177b0 f sndm.obj - 0001:00017a20 _$$9200 00418a20 f sndm.obj - 0001:00017a90 _$$8000 00418a90 f sndm.obj - 0001:00016150 _$$1000 00417150 f mbmp.obj - 0001:000163b0 _$$9200 004173b0 f mbmp.obj - 0001:000163e0 _$$8000 004173e0 f mbmp.obj - 0001:000153a0 _$$1000 004163a0 f groups2.obj - 0001:00015cd0 _$$8000 00416cd0 f groups2.obj - 0001:000133a0 _$$1000 004143a0 f groups.obj - 0001:00014f20 _$$8000 00415f20 f groups.obj - 0001:00013030 _$$1000 00414030 f picwin.obj - 0001:00013040 _$$9200 00414040 f picwin.obj - 0001:00013050 _$$8000 00414050 f picwin.obj - 0001:00012300 _$$1000 00413300 f menuwin.obj - 0001:00012f70 _$$9200 00413f70 f menuwin.obj - 0001:00012fa0 _$$8000 00413fa0 f menuwin.obj - 0001:00011e00 _$$1000 00412e00 f gobwin.obj - 0001:00011fb0 _$$9200 00412fb0 f gobwin.obj - 0001:00011fc0 _$$8000 00412fc0 f gobwin.obj - 0001:0000fdd0 _$$1000 00410dd0 f gfxwin.obj - 0001:00011810 _$$8000 00412810 f gfxwin.obj - 0001:00011b00 _$$a200 00412b00 f gfxwin.obj - 0001:0000e650 _$$1000 0040f650 f appbwin.obj - 0001:0000f7e0 _$$9200 004107e0 f appbwin.obj - 0001:0000f7f0 _$$8000 004107f0 f appbwin.obj - 0001:0000e1e0 _$$1000 0040f1e0 f pic.obj - 0001:0000e1f0 _$$9200 0040f1f0 f pic.obj - 0001:0000e200 _$$8000 0040f200 f pic.obj - 0001:0000c850 _$$1000 0040d850 f region.obj - 0001:0000e040 _$$9200 0040f040 f region.obj - 0001:0000e150 _$$8000 0040f150 f region.obj - 0001:0000c330 _$$1000 0040d330 f mbmpgui.obj - 0001:0000c5e0 _$$9200 0040d5e0 f mbmpgui.obj - 0001:0000c5f0 _$$8000 0040d5f0 f mbmpgui.obj - 0001:00009ac0 _$$1000 0040aac0 f gob.obj - 0001:0000baf0 _$$8000 0040caf0 f gob.obj - 0001:0000bd00 _$$9200 0040cd00 f gob.obj - 0001:00006810 _$$9200 00407810 f gfx.obj - 0001:000069c0 _$$1000 004079c0 f gfx.obj - 0001:00008440 _$$8000 00409440 f gfx.obj - 0001:000097d0 _$$a200 0040a7d0 f gfx.obj - 0001:000097e0 _$$b200 0040a7e0 f gfx.obj - 0001:000097f0 _$$c200 0040a7f0 f gfx.obj - 0001:00006730 _$$1000 00407730 f cursor.obj - 0001:00006750 _$$9200 00407750 f cursor.obj - 0001:00006780 _$$8000 00407780 f cursor.obj - 0001:000051b0 _$$1000 004061b0 f cmd.obj - 0001:000062b0 _$$9200 004072b0 f cmd.obj - 0001:00006300 _$$8000 00407300 f cmd.obj - 0001:00004e20 _$$9200 00405e20 f clok.obj - 0001:00004ec0 _$$1000 00405ec0 f clok.obj - 0001:00004ed0 _$$a200 00405ed0 f clok.obj - 0001:00004ef0 _$$8000 00405ef0 f clok.obj - 0001:00003260 _$$1000 00404260 f appb.obj - 0001:00004cf0 _$$9200 00405cf0 f appb.obj - 0001:00004d20 _$$8000 00405d20 f appb.obj - 0001:00003010 _$$8000 00404010 f memwin.obj - 0001:00003020 _$$1000 00404020 f memwin.obj - 0001:00001dc0 _$$1000 00402dc0 f utilstr.obj - 0001:00002e80 _$$8000 00403e80 f utilstr.obj - 0001:00001a50 _$$1000 00402a50 f utilrnd.obj - 0001:00001b50 _$$8000 00402b50 f utilrnd.obj - 0001:00001870 _$$8000 00402870 f utilmem.obj - 0001:00001880 _$$1000 00402880 f utilmem.obj - 0001:00000a30 _$$1000 00401a30 f utilint.obj - 0001:00001660 _$$8000 00402660 f utilint.obj - 0001:00000620 _$$8000 00401620 f utilerro.obj - 0001:00000850 _$$1000 00401850 f utilerro.obj - 0001:00000860 _$$9000 00401860 f utilerro.obj - 0001:00000880 _$$a000 00401880 f utilerro.obj - 0001:00000890 _$$b000 00401890 f utilerro.obj - 0001:000004e0 _$$1000 004014e0 f utilcopy.obj - 0001:00000610 _$$8000 00401610 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:0005b4e9 _siglookup 0045c4e9 f LIBC:winsig.obj - 0001:0005a5bd _strncnt 0045b5bd f LIBC:aw_map.obj - 0001:0005a409 __before 0045b409 f LIBC:heapadd.obj - 0001:00059bc8 _$$1000 0045abc8 f LIBC:unhandld.obj - 0001:00059c2d _$$2000 0045ac2d f LIBC:unhandld.obj - 0001:00059342 __abstract_cw 0045a342 f LIBC:ieee87.obj - 0001:000593d5 __hw_cw 0045a3d5 f LIBC:ieee87.obj - 0001:00059095 __heap_new_region 0045a095 f LIBC:heapgrow.obj - 0001:00058238 ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 00459238 f LIBC:frame.obj - 0001:00058486 ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 00459486 f LIBC:frame.obj - 0001:00058556 ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 00459556 f LIBC:frame.obj - 0001:000586b0 ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 004596b0 f LIBC:frame.obj - 0001:0005873d ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 0045973d f LIBC:frame.obj - 0001:00058845 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 00459845 f LIBC:frame.obj - 0001:00058870 ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 00459870 f LIBC:frame.obj - 0001:00058a5f ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 00459a5f f LIBC:frame.obj - 0001:00058acb ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 00459acb f LIBC:frame.obj - 0001:00057fa1 __heap_grow_emptylist 00458fa1 f LIBC:heapinit.obj - 0001:00057c55 _getSystemCP 00458c55 f LIBC:mbctype.obj - 0001:00057c90 _CPtoLCID 00458c90 f LIBC:mbctype.obj - 0001:00057ccf _setSBCS 00458ccf f LIBC:mbctype.obj - 0001:00057a8b _parse_cmdline 00458a8b f LIBC:stdargv.obj - 0001:000578f5 @x_ismbbtype@12 004588f5 f LIBC:ismbbyte.obj - 0001:000578ba _xcptlookup 004588ba f LIBC:winxfltr.obj - 0001:000574f4 __cftoe_g 004584f4 f LIBC:cvt.obj - 0001:00057615 __cftof_g 00458615 f LIBC:cvt.obj - 0001:00057731 __shift 00458731 f LIBC:cvt.obj - 0001:00056f95 __heap_expand_block 00457f95 f LIBC:realloc.obj - 0001:00056e00 _doexit 00457e00 f LIBC:crt0dat.obj - 0001:00056e7f __initterm 00457e7f f LIBC:crt0dat.obj - 0001:00056b7c __unwind_handler 00457b7c f LIBC:exsup.obj - 0001:00056a01 ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 00457a01 f LIBC:trnsctrl.obj - 0001:00056af5 ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 00457af5 f LIBC:trnsctrl.obj - -FIXUPS: 56915 fffffff1 fffffff3 ffffff46 1e 12 44 13 13 14eb 12 11 11 5d -FIXUPS: 57e67 fffffdbb a 18 a ffffff22 fffffddd 4c 53 31 110 13 fffffc42 -FIXUPS: 5778e 5 10 10 5 30 56 6 15 f 23 fffffe49 5 a e83 28 1f 17 30 35 -FIXUPS: 58646 36 47 11 2c 16 13 29 fffffa90 9a ffffff10 ffffffa6 fffffedb -FIXUPS: 5803a f e c 3d 55 fffffdbe 16 33 1f d 23 23 1ac6 10 5a 12 fffff5cb -FIXUPS: 59088 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 -FIXUPS: 58976 2a 11 ffffff3f fffffe73 fffffb55 21 c1 1c 48 13 31 ca 1139 -FIXUPS: 5965f 21 14 39 23 15 21 e 77 4f 9 c 17 af 13 1d 1f 13 17 21 1d -FIXUPS: 5999f 1a a a f f 1a d e d 5b0 fffffc33 12 1d 5 55 3c 7 2f b2 15 -FIXUPS: 59b5a 72 fffff5bf 2b 2c 2b 1b 34 46 c 25 3c 114 26 28 a 3b 2e 52 -FIXUPS: 59592 46 130d f 13 17 13 22 5b 16 22 f 22 f fffffafe 64 ffffff44 -FIXUPS: 5a465 fffffe9a 17 24 fffffd3d c 75 d 96 d c 32 fffffe42 fffffdcc -FIXUPS: 59e31 49 132 1305 3e 24 d 41 34 fffffd6a 78 10 18 e fffffe1b a4 -FIXUPS: 5b08e fffffbfd a a ffffff59 1b 1b fffffe8e 1a fffffb77 17 67 e -FIXUPS: 5a850 1a 1d 12 1f 20 1a1a c fffff8cd c5 92 10e 49 c6 4f fffff8ed -FIXUPS: 5b88f 18 18 b0 9 e 9 29 4d fffffc51 c2 75 c 1e 77 c fffffd3a 38 -FIXUPS: 5b1d8 10 10 18 fffeb328 82 8b 19 134 8 1c 10 10 166a3 47 3e 110 -FIXUPS: 5cced fffffa58 133 ef 21 26 10d aa 1f fffffa5d 1c fffffddd 44 fffffdf1 -FIXUPS: 5c229 65 1d 2b c fffe9805 17 25 31 18 62 68 61 20 37 d 44 32 77 -FIXUPS: 45e1c 34 80 b 3c 180 19 77 106 50 39 42 71 49 5b b0 21 35 14b3 -FIXUPS: 479d6 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 ffffed03 -FIXUPS: 4682a 1c 10 5f c1 17f ffffeec5 58 81 17 10 1827 3a 3c 37 41 3c -FIXUPS: 47445 3c 3a 3b 8 3b b2 8 78 8 78 8 78 8 78 8 78 8 78 8 78 8 13 -FIXUPS: 47996 10 10 c7f 98 63 7 53 62 20 7 fffff534 18c 244 178 fffff885 -FIXUPS: 47ba1 5c fffff2b3 5f 3e 3e 3e 3e 41 3e 41 3c 3a 3c 37 41 3c 37 -FIXUPS: 472a5 215f b 42 18 fffffd7d 10 5f 59 11 4b fffffd2c 10 5f 6f 79 -FIXUPS: 48e29 31 1c 10 5f 62 d b 3f 16 fffffd92 10 5f ffffff50 fffffd4c -FIXUPS: 48a7a 3d 15fe ea d 61 74 26 1f b b0 47 5e 10 10 fffff3d0 10 5f -FIXUPS: 498c2 71 f 19c fffffa18 10 5f 4d 21 7b 3c 104 fffffb98 10 5f 62 -FIXUPS: 4a8fa 1a d6 1a 52 2c ad 160 2f 5d 1d 22 bc 10 10 fffff691 23f 10 -FIXUPS: 4a726 fffff443 31 bd 129 3a 16 86 13e 4e 21 29 30 38 1d02 10 fffff0b3 -FIXUPS: 4ae8f e8 118 3e 1c 22 20 c 26 21 1c 16 1d 21 1c 48 16 25 1c 20 -FIXUPS: 4b317 1f 10 10 fffff3f3 31 68 35 d7 19e5 e d 1b f 1d 86 e 32 c -FIXUPS: 4c42a 42 49 81 10 10 ffffeef1 11f a 5e d 3a 4d 1b9 4e 43 98 2a -FIXUPS: 4bae9 fc 46 15b ae2 c4 12 f8 10 10 fffff373 31 59 74 11d 20 9 d0 -FIXUPS: 4c0ea a 29 d a 23 41 b 46 a d 14 a d e e d 1a 387f 4a 1d 6 6 32 -FIXUPS: 4d3a7 22a a5 10 10 fffff3e3 36 98 da bc 1a 133 4a 4c 3e 48 18 18 -FIXUPS: 4cfa0 257 11f 10 10 fffff243 36 88 2992 103 34 14 fe 39 29 10 120 -FIXUPS: 4f3b7 43 10f 163 d b 1e 1f0 3a c 27 32 12 f 40 d 2a f 2f 4b 6 37 -FIXUPS: 4fada ffffebb6 18 72 3a 51 3f 4c 44 51 3f 51 3f 5b 40 8f b 38 61 -FIXUPS: 4eb93 57 67 26 80 6 c 9b 3a 6 9b 11 16 11 ffffef29 20 18 10 3b -FIXUPS: 4e037 25 33 d 11 2b 55 10 a7 29 10 ad 21 10 1d 20 10 24 10 43 16e -FIXUPS: 4e579 34 2a 33 10 46 fffff4a0 18 d 7 8 15 19 e 6 17 6 15 27 40 -FIXUPS: 4dc1e 10 15 8 23 4f 12 11 8 25 18 8 20 18 8 1d 30 15 215e 32 e -FIXUPS: 4ff92 2d e 32 e 25 fffffb8e 21 ffffdc3c 173 11 18 13 21 f 2c 13 -FIXUPS: 4da65 11 c 17 6 6 d 29 6 d 6 6 64ad e6 2f 33 6a 25 94 ffffe997 -FIXUPS: 52bbf 45 63 70 3f 54 10 f 6d 59b 310 7f0 ffffbdd0 7 2c 4c 28 28 -FIXUPS: 4fd58 25 7a d 21 fa 5362 d d 5d 19 39 26 1a 19 b 7 d 18 33 1e9 -FIXUPS: 555fd 70 19 122 144 112 1d 38 1b b9 23 17 3e 157 10 10 ffffe9c1 -FIXUPS: 54f34 14 d 25 10 20 e 22 13 1d 33 d 20 29 18 20 1c 16 1f 34 7 12 -FIXUPS: 5518d 14 f 1b 25 13 27 1d d 16 fffabe8c 5 17 30 55135 d0 254 65 -FIXUPS: 566a2 11 96 fffff64e ffffeb02 2c1 3a 21 73 67 22 32 16 d1 3f 22 -FIXUPS: 54e66 24 1e 14 d 22 10 23 fffac756 5c 1b6 b 5 5 21 fffffb52 10 -FIXUPS: 1425 8a 1c 146 fffffb94 11 ee 30 5d 23 d fffffe10 fffffea4 11 2d -FIXUPS: 105f a 1e a 1f 1e 18 b 1898 35 1b 28 27 5e 1e d 3a 15 26 2b 21 -FIXUPS: 2b84 d fffffb9d ef 54 fffff53f 49a 239 91 b 28 27 44 29 86 21 ffffefa4 -FIXUPS: 1645 11 1aee 16 2e 2c 35 9c 40 50 20 3f 36 61 f 25b 6d 243 ce 63 -FIXUPS: 3a9f f 2e 73 1a0 3c 156 ffffea24 11 2f 11 1e 12 10 33ce d ffffe19b -FIXUPS: 3f54 6c 51 ffffeb9a 21 26 32 26 9 54 4b 94 11 4e 33 36 f 1d f 27 -FIXUPS: 2ed2 4b 1e 28 be 29 15 3a 32 2249 2d 37 2a 3c b1 4a 69 75 1e 1c -FIXUPS: 5622 37 1c6 6e 8f 46 52 48 2c 2e b 36 2a 86 19 11 2c 8d 7b 4c 5 -FIXUPS: 4ded 20 38 21 14 40 1e 2a 1e 12 11 10 b 69 14 67 14 12 7c 10 37 -FIXUPS: 5159 1d e 72 d 12 2d 5 c 9 8b fffff60f eb 5 7 8a 50 d 13 c 9 26 -FIXUPS: 4b2c 55 1b 13 1e 20 28 43 22 29 27 9 14 24 1a 18 14 18 17 2b 19 -FIXUPS: 4217 168 f 10 41 f 10 14 11 44 62 25 14 68 b 23 48 f 47 40 6e f -FIXUPS: 4720 2c 2d 36 4a 2a 28 29 1c 2c 248a 59 c 29 74 c2 1b 13 92 d2 -FIXUPS: 719c 13 3c c6 5 e d 13 d ffffeb73 3b 32 5 5 ffffe16a 11 20 3b 5d -FIXUPS: 4136 f 2d 2310 1c 11 5f 3b 3f 18 61 13 26 2e 3c 1c 11 d4 c 35 14 -FIXUPS: 681a 1f 18 23 53 7 c9 75 cd 3e 57 110 32 43 860 6 12 6 21 f d 2f -FIXUPS: 75e9 5a 21 73 7a 5 e d ffffe824 11 2f 11 7e 200 47 9f b 46 13 2d -FIXUPS: 63ea 22 18 1f 3ac0 1d 22 15 364 79 2b 63 1d 22 15 32b 79 1c 10 -FIXUPS: a7f1 5 5 5 14 d 13 d ffffcb74 11 34 42 51 18 2d 59 18 23b8 11e -FIXUPS: 9a2a 15 19 1b 1f 15 d 1e 21 5 d 26 7a 33 1f 1a 1a 44 e 63 e 47 -FIXUPS: 9d49 12 5b e 5a 22 21 3e fffff466 15 5 2a 20 6c 19 24 14 5 ec 1c -FIXUPS: 9538 f 26 b 19 4c 1c 5 1c 15 4c 10 5c d 37 70 3f 16 34 91 fffff2f6 -FIXUPS: 8bc8 27 1d 5 1a 13 1c 5 87 ae 18 4c 11 f 32 16 e 48 5 bc 32 60 -FIXUPS: 902b d0 1d 38 1e 116 5 3b 27 fffff2e6 1d 15 c 1b 5 57 64 23 50 -FIXUPS: 8767 7e 69 22 e 17 1d 5 18 74 17 21 5 79 26 50 a 32 56 1f 64 a -FIXUPS: 7f06 e0 17 c3 c 66 5d d 11 4a 1b 33 5a 20 31 27 25 13 c 2d 15 1e -FIXUPS: 8404 9 1b 12 a 29 62 35 11 a5 fffff474 c 79 1a 78 c e c e c 2d -FIXUPS: 7be3 1c 22 22 1f 40 1c 23 31 1f 1c 27 2b e 23 12 88 15 18 10 50 -FIXUPS: c99b 22 21 2f 2f 1e 23 2c 1e 15 d8 8e 39 86 5 7e d 21 ffffaa64 -FIXUPS: 7835 11 2f 11 2f 11 af 1f 1a 27 1d 8 1a 48bd b c 18 3a 109 4c 54 -FIXUPS: c506 84 15 a 22 c 19 7a 21 c 19 c6 a4 1f 25 13 19 1f 51 33 1e 15 -FIXUPS: c96b 1b fffff116 13 11 59 11 12 20 12 14 2c 47 3f 38 44 59 22 66 -FIXUPS: bdd2 16 49 17 48 18 4a 22 fc 27 82 100 13 2d 13 fffff31c 40 15 -FIXUPS: b589 13 18 63 4b 54 19 62 14 12 1c 19 77 1f 74 49 3e c a 13 1f -FIXUPS: b978 1b 18 5f 4b e 13 10 fffff43e 84 4a 52 2d 10 d 59 91 15 31 -FIXUPS: b172 1b 30 e 2b 14 f e 12 19 e 12 e 67 25 21 2c 14 25 5f 47 2113 -FIXUPS: d5e1 5 ffffd27f 11 2f 11 be 38 e 9b 28 1e c 52 87 2d 1e 1b 9 10 -FIXUPS: ac14 32 1d 24 80 12 3c 76 7c 12 34 3ea1 19 49 30 d 2d 152 4e 3e -FIXUPS: efe1 54 c 5 e d ba 19 d ffffdcc0 5e 21 e 22 15 43 9 97 329 43 89 -FIXUPS: d3b8 e 1525 9 22 9 9 29 9 20 25 2a f 16 b 9 22 9 9 2f 1c 64 b8 -FIXUPS: eba6 13 2d 9 2c 9 2d 9 10 31 2d fffff79f 9 21 d 9 1f 9 9 16 f 16 -FIXUPS: e51e 9 2e 1c 64 cb 31 9 31 9 15 31 2d 66 19 4a 9 23 3f f 16 fffff76b -FIXUPS: e054 1e d 9 16 f 16 b 9 2e 1c 5c 30 f 28 9 2b 6d 2b 9 36 9 b 27 -FIXUPS: e353 66 19 4e 9 25 10 fffff67b 3b 24 72 16a d 60 5b 27 ae 9 1b -FIXUPS: dee2 9 26 10 17 10 9 9 16 f 16 b 9 27 9 2e 9 18 a 10 22c1 23 28 -FIXUPS: 1036d 34 9e a5 55 2a8 5 ffffea0b 5 ffffe49f 11 2f 11 4e 16 83 d -FIXUPS: d82d 3e 4e d0 b 17 39 28 27 50 15 25 4f31 73 32 c 62 5 e d ffffc7a3 -FIXUPS: f2d1 292 10e 3e7 286 86 34 24 33 52 4f df 33 11 26 2d 2d 2d 2a -FIXUPS: 100ba 11c 86 98 2039 70 a d 51 e 41 38 37 7 89 15 e 3c 57 17 33 -FIXUPS: 1268c c 2f f 5c 18 37 26 107 35 40 6c 10 e 2a ffffeded 16 44 c -FIXUPS: 11889 72 ee 64 58 64 17 6f 30 3d 46 2b 23 47 32 43 91 1b 25 19f -FIXUPS: 120bd 12e a d 6b e 41 42 ffffe83d 9f 210 17 12 d f0 d 1d 3f 1a1 -FIXUPS: 11129 a7 73 6 c9 e 5d 13 31 56 e 75 60 28 aa 55 11 25 4d 30 bc -FIXUPS: 13c26 17f 8 1e 1f 14 3e 5c 26 b3 5 e d ffffebb3 1a 15 19 42 18 -FIXUPS: 12c09 11 19 dc 158 53 36 28 99 5 ffffd9a9 139 8f 2895 b 18 49 76 -FIXUPS: 134ea 6a 1c 58 42 11b 4c 75 1c d8 4c 7a 44 3b 4b 5c 22 2d 2f 12 -FIXUPS: 13b66 a 19 a c d 10 21ad 93 5d 18 96 1a 13 d 13 d 13 d 13 d 13 -FIXUPS: 15fc1 13 d 13 d ffffe040 5 fffff01f 11 3e d 54 116 b3 78 1c 2a -FIXUPS: 1588b 1b e 17 30 19 14 2f 2d 11 24 41 14 b 51 31 2e 18 6d 19 1d -FIXUPS: 15bdc 13 42 44 17 25 13 14 2f 2d 11 fffff415 42 b9 44 e cd 31 77 -FIXUPS: 1542d 1f 18 1b 17 7 42 40 55 23 85 2f 13 2d 1f aa 18 70 20 14 1d -FIXUPS: 1583f 19 29 fffff0b1 1b 3c 41 45 34 14 31 38 23 26 35 45 4d 19 -FIXUPS: 14bf9 1e 32 77 2a 9b 4d 36 dc 98 35 1e 3e 23 12 1d 43 fffff49e -FIXUPS: 14568 a b 4c 22 a b 24 a b 2b 5b 6 15 b 17 c 22 1f 10 1e 32 d 1c -FIXUPS: 1481a 14 b 20 80 1d 2c fffff7d3 11 2f 11 2f 11 2f 11 2f 11 2f 11 -FIXUPS: 14275 11 28 9 32 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 1e a 2350 -FIXUPS: 168a5 45 18 59 1a 12 26 a 4d 14 2f 2d 11 24 48 38 30 1c 19 60 31 -FIXUPS: 16c42 10 34 36 8 d 13 d 13 d fffff466 7 11 1f 13 e 21 12 1d 43 -FIXUPS: 16363 14 15 7c 43 27 20 1c 18 2b 15 21 f 10 62 55 4d 3e 4c 19 aa -FIXUPS: 16846 528 7 59 1f7 dc 52 17 6c 19 14 2e 79 d 26 16 22 29 10 1c -FIXUPS: 1735c 20 d 8 20 5 e d ffffec54 11 2f 11 1e 22e0 2d 21 38 1e 60 -FIXUPS: 185a1 23 62 2a 61 1f 66 2e 6d 1f 66 28 63 70 71 25 3a 5 e d 13 -FIXUPS: 18a61 13 d ffffe2b4 11 e90 4a 65 57 40 40 4c 50 5d 1a 23 16 185 -FIXUPS: 18061 a 3a 15 47 a 3a 15 47 a 3a 15 46 a 5b 15 5d 9 b 18d9 d ffffd874 -FIXUPS: 174a5 11 2f 11 2f 11 3e 44 51 b 11 23 14 34 86 2c 50 3e 36 89 5e -FIXUPS: 17931 4d 43 80 55 4b 55 4b 18f4 98 15 30 39 47 16 9f 65 5 18 5b -FIXUPS: 19797 16 27 47 1f b 42 2f 42 46 6a a9 78 35 b3 5 e d 13 d fffff415 -FIXUPS: 19011 18 10 d d 6 c 11 b 9 1a 50 51 1e b 1a c 10 14 52 b 1d 11e -FIXUPS: 19371 13 12 2e 25 11 b 31 fffff710 2f 11 2f 11 37 10d 8c 6 23 22 -FIXUPS: 18e49 4a 41 7 e f 29 7 f 6 c e 18 c 8 14 e 13 e 25 9 34bd 13 d -FIXUPS: 1c4f2 12 d 13 d ffffd785 1f 11 1e 55 31 20 2b 1a 1c 43 b 8 16 b -FIXUPS: 19ed6 10 b 5 5 5 14 d ffffec14 3349 38 4e 2a 9b 15 13 2a 17 9e -FIXUPS: 1c0ee 7 56 b 9 e6 9d 1a 29 2c 1c 1f 21 40 24 40 5 e d 13 d 13 fffff04a -FIXUPS: 1b500 f 12 42 17 22 8 1f 5b ab 15 13 16a 1b e0 7 5b b 47 8b 5c -FIXUPS: 1bb13 46 9f 7d 26 10e 23 38 31 42 fffff0c4 11 10 a0 16 1f c d7 -FIXUPS: 1b120 15 10 c 6e 31 10 16 3f 1f 15 1c 4e 32 46 40 39 47 11 12 2f -FIXUPS: 1b4ae 1c 12 fffff4d3 7b 32 8c a3 11 e 30 2e c 3c 16 1a 43 18 19 -FIXUPS: 1acfc 49 46 12 26 23 28 1a 2a a 31 39 6 2d 12 13 fffff528 10 3d -FIXUPS: 1a4a7 b 3c 31 10 c 3d 14 18 3d 24 15 b 3f a2 2f 2b 15 47 5 18 5e -FIXUPS: 1a874 c5 b 11 26 17 b fffff6c9 2f 11 2f 11 2f 11 2f 11 1e 3b 2b -FIXUPS: 1a1f5 2f d 44 14 10 b 10 3b 1d 20 a 42 19 b e 47 9 10 16 2175 11 -FIXUPS: 1c5c4 31 43 2d f 4d 3c 8b 61 27b 2a 7 15 b 18 11 c 33 18 c 5 e -FIXUPS: 1cb61 13 d ffffd454 11 2f 11 2f 3862 3d 59 1f 13 3d 2e 77 16 2c -FIXUPS: 1dabf 7 17 32 66 2d 23 1f 1c 15 7c 5 9e d 16 ffffefaa 5 ffffff3b -FIXUPS: 1cc46 5 fffff90a 11 e2a 1f 15 d 19 15 45 24 48 14 b 5e 60 1d 43 -FIXUPS: 1d613 4c 19 d 23 15 d 12 60 61 1d 21 13 1e 1d 5c 1f fffff5f7 13 -FIXUPS: 1ced2 3f 11 13 10 18 f 20 28 2e 2b 13 68 41 48 4d 1f 53 c 34 15 -FIXUPS: 1d23a 6f e 14 23 44 1e 1b f 52bf 38 5 e d 13 d 13 d ffffb864 11 -FIXUPS: 1df74 53 1e 16 1e 28 26 67 59 1a 13 d fffffd20 5 ffffffbb 5 ffffef6f -FIXUPS: 1cdc6 28 67 1e 50d0 6 85 20 19 2c 11 2f 15 1f 60 61 2d d 70 80 -FIXUPS: 2230c 7 d 3a 10 2c 7f 1a 20 1b 20 61 1b e7 1b 10 fffff46d 27 2c -FIXUPS: 21b2f 1a e 15 19 1f 10 8d 18 33 18 1b 1d 24 8a 1c 17 17 17 20 20 -FIXUPS: 21e34 24 42 1e 2d 19 1e d fffff210 2b 15 28 84 b0 21 41 5d 21 67 -FIXUPS: 2143a 71 31 2c 3e c3 26 25 26 8d f 52 52 3d 62 21 98 20 5a 83 2f -FIXUPS: 208f3 12 11 9 23 49 3a c 6a 54 35 8f 20 12 1f 12 ba 2c 15 1d 6f -FIXUPS: 20d49 16 e 10 10 9 e 18f 28 32 127 fffff0a2 a4 37 49 15 53 c 24 -FIXUPS: 2031e 3f 54 4c 54 40 35 8f 20 1b 51 1b 20 1c 28 30 3d 19 1e 3e -FIXUPS: 20759 1f d 15a fffff204 5c 39 16 1b 9 1d 19 9 26 4c 3f 41 1c 5b -FIXUPS: 1fd9d 18 75 5d 44 31 2f 28 9 15 30 28 c e7 4b e 15 fffff58b 15 -FIXUPS: 1f6df 35 3b e 10 17 e 17 19 48 26 21 3c 13 2d d e 86 9 46 b 1e -FIXUPS: 1fa04 9 20 16 2f 1c 13 f fffff7cb 24 11 13 1d 24 56 10 2f 31 1d -FIXUPS: 1f407 25 2f 23 12 39 20 19 3a 6 17 20 1c 4c 13 11 2a 15 15 18 2f -FIXUPS: 1ebd0 24 23 32 29 20 48 43 77 3a 7b 31 79 c5 1e 12 e 10 7 21 89 -FIXUPS: 1f0cc f 17 35 38 68 17 1d 30 33 10 fffff165 b 57 28 1d c3 20 2a -FIXUPS: 1e5cd 76 30 3f 1c 31 59 10 4c 1b 4e a7 a5 34 1f 1e 5b b 16 27 4f -FIXUPS: 1eb0f 22 74 7eaf 1fd 19 aa 25 45 c a 18 f 19 18 155 5 e d 13 d -FIXUPS: 1e185 11 2f 11 2f 11 2f 11 2f 11 28 64 31 6b 7faf 37 44 33 28 2c -FIXUPS: 2649a 72 50 56 30 2f 15 19 84 b 20 47 9b 81 21 f 33 50 28 f 21 -FIXUPS: 2699d 26 5f c a fffff20b 30 26 1c 85 db 24 db 15 2a a 43 15 70 -FIXUPS: 2604e 3f 15 69 30 26 27 4e 31 f 15 22 4e 7a 12 e f 12 fffff319 -FIXUPS: 2568e e 47 25 15 2f 21 f 2f 1d f 1b 1d 15 f6 11 1d 4c 1c 55 2b -FIXUPS: 25aaf 18 1d 20 96 18 23 1d 21 19 fffff37c 33 1f 33 13 2e 6f 29 -FIXUPS: 2514d 66 29 1c 1b b 6b 1a 1c 105 38 1f 5f 69 54 f 20 28 2b 1d 21 -FIXUPS: 2560b 1a 2b ffffee0f 38 9f e 4b 96 45 29 125 15 2b 62 13 22 66 -FIXUPS: 24919 3a 2b 27 129 18 40 6b 4a 27 22 4d b8 b 6a 3d 128 ffffe905 -FIXUPS: 23820 16 6d 85 4f 13 15 1f a7 17f 1f 1f3 f 9a 27 20 2f a9 9e b -FIXUPS: 240bd 2f 55 b 9c 4f d7 b a1 4f 49 ffffeadd 3f 29 d 32 31 d 26 f -FIXUPS: 230a5 61 3a 11 35 26 92 3f 4a ed 28 26 ac 3e 4b ed 28 15 28 17 -FIXUPS: 236ca dc 1c fffff233 6a f 11 11 b 13 3d 24 11 11 b 39 79 f 3f 87 -FIXUPS: 22cf7 22 32 20 27 23 b 1c 15 32 1a e 25 8e 1b 6b11 42 12 14 e2 -FIXUPS: 29b98 9 5 e d 21 12 d 13 d 13 d 13 d 13 d 13 d ffff8a64 8e 13 72 -FIXUPS: 2283e 15 7c c8 22 6b35 26 35 4d 7 14 19 af 3d 1e 13 2c b 15 10 -FIXUPS: 29780 13 42 36 2e 1d a3 2e 1a b 1d 10 1f 15 16 d 26 fffff47e 38 -FIXUPS: 28edf e 12 10 bf df 19 9 142 6c 59 10 f 29 17 39 7 10 64 25 7 1c -FIXUPS: 29454 14 5 1c 10 24 5 1c fffff2eb 54 58 1c 47 3d 21 1e 23 3f 54 -FIXUPS: 28a39 c 56 2e 2d 1a 2f 15 49 15 18 3b 4b 15 9 3c 36 25 10 2d 11b -FIXUPS: 27f99 16 27 2e 20 13 10 ca 13 107 46 13 b2 92 104 22 9 22 2e 4f -FIXUPS: 2859d 18 2d 37 1d 43 22 12 19 41 73 15 fffff136 12 17 c e 12 2b -FIXUPS: 27979 27 14 15 2c b 10 17 35 50 5b 30 39 19 5b 2a 43 69 37 b3 119 -FIXUPS: 27ed2 58 44 d fffff306 2c 5d 9 4e b 7 f 45 56 13 1d ce 9 4a 3f -FIXUPS: 275d8 58 b0 1e 59 4a 30 1a 2f 19 1f 18 10 e 6 19 2711 21 d3 1b -FIXUPS: 2a1f4 16 42 5a b 5 5 5 22 ffffccc3 11 2f 11 2f 11 2f 11 2f 11 2f -FIXUPS: 270f6 2f 11 2f 11 2f 21 91 3d65 1a e 2d 16 16 13 11 1c 10 d 11 -FIXUPS: 2b0c5 e 14 1a 13 d ffffebc4 11 20 e 2b 25 7 19 56 79 13 f 79 7f -FIXUPS: 2ab2e 16 22 1c 38 21 1b 5c 21 2b 16 28 16 46 23 2f 40 16 24 e 1f -FIXUPS: 2ae4c 28 8 c a 36 2d 29 12 10 32 fffff683 54 2d e 2d 3b 57 2a 24 -FIXUPS: 2a7df 34 49 1a 18 16 27 1b 2a 44 1b 1a 1b 16 28 2a 43 23 26 18 -FIXUPS: 2aacd 11 31 4188 60 20 1e 38 3d 3b 26 67 82 c8 47 49 2a 13 16 5b -FIXUPS: 2f151 13 d 13 d ffffb204 11 2e 49 6b 7d 28 2e 2c 2c 42ee 18 18 -FIXUPS: 2e8ef f 44 28 1d 13 25 41 9 9 31 9 2c 1e 1f 15 21 10 1a 19 27 64 -FIXUPS: 2ebce 15 30 9 10 9 46 fffff6b1 3d 19 21 a0 28 d4 94 2a f 25 9 38 -FIXUPS: 2e67f 9 2e 12 9 1f 1c 36 1f 27 2a 2e 11 17 1e 1f 22 16 f fffff57a -FIXUPS: 2de2b 2c 3c 11 1b 3a 30 2c 34 1f 10 3f 1b 20 18 10 4f 33 18 1c -FIXUPS: 2e14c 25 49 1b 37 1c 2e 1c 34 1c 2d fffff684 35 1a 1c 13 1e c d -FIXUPS: 2da4b 47 25 13 3b 48 37 2e 2c 2f 33 1b 2b 29 29 20 1a 3a 18 27 -FIXUPS: 2dd9a c 10 22 fffff7ff f 1f 4e 2b 16 d 19 14 16 17 23 22 29 2a -FIXUPS: 2d7a9 10 16 16 11 32 13 23 28 1c 2b 11 d 24 17 1f 17 fffff8da 16 -FIXUPS: 2d256 33 11 24 d 24 13 9 11 7 9 15 22 26 1c 17 1f b 1b 18 f 3f -FIXUPS: 2d4b7 20 1b 1d 13 2d 3d 11 fffff7e6 4e 1a 16 a0 75 3d 45 1a 2c -FIXUPS: 2cfeb 17 d 1a 10 9 15 12 9 39 2a 10 b 36 11 1d 1a 15 a 50 2c 25 -FIXUPS: 2c861 32 17 42 36 9 e 27 17 3f e 4f 40 1d 17 16 7b 19 41 b 15 24 -FIXUPS: 2cbc7 1a 35 1e 35 13 37 33 1c 24 fffff665 28 6 38 34 17 23 1f 1c -FIXUPS: 2c4b4 27 39 2a 9c 3c f b 9 13 11 40 29 48 f 20 32 21 2c 16 21 34 -FIXUPS: 2c832 fffff62d 48 51 54 52 6 70 11 1c c 18 19 15 10 b f 12 b 10 -FIXUPS: 2c114 39 1e 47 6 2c 30 24 52 a 9 19 75 fffff5bf 1c 22 78 1f 4d -FIXUPS: 2ba1f 13 26 27 17 2e 17 3a 2b 27 17 41 16 18 16 13 26 30 2c 16 -FIXUPS: 2bcc4 13 39 2a 4c d fffff6fc 17 46 16 b 15 19 17 47 3e 23 4d 16 -FIXUPS: 2b66e 18 18 16 5a 34 40 1f 45 1c 36 18 14 9 14 f b 1a 2d 3eaf 13 -FIXUPS: 2f7b1 ffffb994 11 2f 11 1e 12 88 2c 14 2c 9 b d e b f 6a c 10 b -FIXUPS: 2b3a5 e 13 15 41 26 7 a f 8386 32 e 3a 30 97 13 30 27 21 259d ffff9264 -FIXUPS: 2f1c6 2f f 7a 50 7f 20 b1 65 a 2b 23 18 16 1a 8 e 16 19 6 7b36 -FIXUPS: 370b1 ffff8724 11 52 8 28 8 11c 18 3f 1b 1c 55 11 d 81 6a 12 78 -FIXUPS: 2fc14 33 27 21 3994 1b 1c 52 f d 9c 73 3016 3e 1c 16 46 1c 3a 16 -FIXUPS: 36950 16 1d 3e b8 165 78 75 49 d 20 52 72 c6 80 14 1c 46 79 17 -FIXUPS: 37064 d 13 d fffff299 16 40 9 1e d 2c 37 d 32 33 27 76 14 27 38 -FIXUPS: 365be 26 d 27 16 16 1b d 4a 5f 14 1b 3e d 2c 1c 1edc 10 43 b 5 -FIXUPS: 3871b 9 d 13 d 13 d ffffd804 11 2f 20 11 2f 11 1e 6e 17 68 3c 58 -FIXUPS: 36219 70 15 f 31 18 d 1eb6 1c 1d 3f 1a 12 11 b 39 f 1e 19 d b 79 -FIXUPS: 383ac 11 b c1 e 12 29 25 2c 16 26 15 21 7b 4f 2f 8 fffff56e 40 -FIXUPS: 37c6c 18 40 40 1f 38 45 3e 10 17 61 14 15 20 d3 57 6 20 2b 3f 6 -FIXUPS: 3808f 2b 4b 6 1d 18 1f 2d 27 fffff4c1 2e 22 2e 4b 36 17 27 34 1c -FIXUPS: 37818 8 a a 28 11 15 8 8 48 125 29 57 23 23 13 1d 18 40 1f 17 31 -FIXUPS: 37186 1e 12 22 21 25 14 23 14 14 25 11 18 3d 1c d 14 57 26 7 a -FIXUPS: 373e2 2a 3e 64 dd 1d 15 12 b 8 29 15e2 86 c 42 9 a 11 9 d 14 11 -FIXUPS: 38d30 1b 1d f 1f 1d 14 1f 10 10 4e 10 10 1e 10 3f ffffe204 11 2f -FIXUPS: 37136 3e 243f 1a 22 24 13 3a b 1e 2d 1a 154 76 1d 68 34 7 70 28 -FIXUPS: 39a26 b 5 5 17 ffffedec 23 89 9e 5e a1 aa c a4 43a 7 2f 7 5e b -FIXUPS: 390d7 e 7 a8 d 2c 19 20 12 5d 26 11 24 1e 11 b 1e 82 10 28 e 64 -FIXUPS: 3952b c 24 b 7a9 28 e 21 1f 11 f 27 e f 95 28 59 9 17 24 14 9 15 -FIXUPS: 39f91 13 d ffffef45 1f 11 2e 15 29 7 56 b 17 16c2 e c 12 a d 38 -FIXUPS: 3a764 a 19 18 12 5 e d fffff2a4 11 1e 8 30 8 10 67 25 1f 39 23 -FIXUPS: 39c2b c 69 11 f 610 15 6a 55 39 2f a d 27 8 12 28 2e a c 11 17 -FIXUPS: 3a502 8 d 25 26 2c 2d 4d 3e 17 2a 17 c 12 a 9f6 25 40 60 40 5 ffffee0f -FIXUPS: 39fe6 22 21 10 21 68 19 a 15 f d 90 28 f 18 f 14 f f a 1f 11 12 -FIXUPS: 3a299 20 1988 fffff650 ffffffe0 fffff693 163 2c 58 15 6 19 e8 d -FIXUPS: 3ac31 15 10 1c 50 e e 6f 1e 40 67 1e 16 c7 56 5e 40 40 43 26 398 -FIXUPS: 3b4ce 10 14 e 30 b8 1b 34 2a 5b 1c 41 1e 6d 3b 130 1b6 b 37 7 12 -FIXUPS: 3bb47 10 61 29 5 e d 13 d 13 9f9 9 81 9 12 24 43 2b 16 3d 9 6 55 -FIXUPS: 3c859 31 26 28 239 5 e d fffff250 5 fffff52f 11 2f 11 2f 11 23 -FIXUPS: 3b3b0 84 32a0 d 13 d ffffd6a4 11 1e 3b 17 d 2a b 48 24 2e 94 22f -FIXUPS: 3c275 14 7a 8c 12 19 43 19 18 77 4e 32 63 3f 35 1dff 2e 2c 34 22 -FIXUPS: 3e4b6 1a f 12 d 13 d 29 12 18 23 3e 39 1b a 16 b 5 5 5 5 f d 13 -FIXUPS: 3e6a1 13 d fffff8de 3d 26 17 14 d 15 d 10 2c 2d 3c 1f 2c 15 98 -FIXUPS: 3e207 55 a 18 3f 42 39 15 f 16 24 e 18 e e 12 fffff6d0 7 7 1f 7 -FIXUPS: 3dafa 20 b 10 42 12 34 1c 11 44 12 e 13 12 f 4e 17 e4 20 4b 12 -FIXUPS: 3de63 23 1b 27 71 5a fffff615 94 1c 4a 17 b 22 32 16 21 20 25 27 -FIXUPS: 3d7ff 31 28 1a 23 29 c 3a 3d 3d 1e 15 1d 39 35 1e 22 7 12 fffff6c0 -FIXUPS: 3d182 b 38 31 34 22 38 18 1f 13 70 14 1f 2c 10 13 17 27 2a e 21 -FIXUPS: 3d46f 22 12 14 25 f 9 65 23 9 fffff691 2f 11 2f 11 2f 11 2f 11 -FIXUPS: 3cd36 20 5b 26 f 3a 2f b 34 59 5d 14 20 18 36 f 16 40 58 1c 5e -FIXUPS: 3d117 1a 732a d 5b 28 28 5b 23 e 12 e f 9 12 19 e 12 e 31 5 e d -FIXUPS: 446a2 1e d 17 d 13 d 13 d ffff84a5 2f 7319 13 49 1b 23 27 57 f -FIXUPS: 44058 d 12 13 38 17b 13 12 18 e e d 16 e 9 12 14 10 19 62 20 26 -FIXUPS: 443e1 30 fffff472 3b 34 bb 2b 11 20 9 45 19 20 1e 9d 70 eb 56 1d -FIXUPS: 43d22 22 29 24 16 9 23 b 36 35 1d 1a 6d 12 12 fffff23e 11 1f b -FIXUPS: 43193 14 54 7 18 1d ba 7 f 5d 6e 3e 49 3b 6c 23 29 19 c 50 1c 93 -FIXUPS: 43798 f 16 7f 12 1d fffff4fc a 9 18 51 80 58 a 11 2f e e 27 e e -FIXUPS: 42f75 b 9 1b 16 a 11 9 11 a 11 9 54 7 11 7e 48 fffff6ad 1a 21 4f -FIXUPS: 42886 10 61 1d 1e 49 f f f 9 45 26 26 26 e3 5d 14 a6 58 a e 2c -FIXUPS: 42d0c e b 9 1a 7 fffff539 9 4c 2b 7 4e 27 43 47 1d 23 14 69 7 6b -FIXUPS: 4256e 28 75 27 3c 1e 20 57 23 9 3f e 37 10 e a e fffff679 d6 36 -FIXUPS: 41f9f a e b 23 1a 7 20 a 9 15 43 58 27 25 4e 31 a e b b 23 18 16 -FIXUPS: 4223d 9 15 e a fffff7b9 1a 1b 36 12 35 51 a 12 e a 12 e a 12 e -FIXUPS: 41bb7 12 e a 12 e a 12 a 7b 93 12 8e 1d 1c 3f fffff932 12 e 12 -FIXUPS: 417bf 12 e 10 24 1a 1a 1a 1a 1a 18 10 10 10 16 10 d 14 f 12 11 -FIXUPS: 41966 d 9 30 20 20 20 fffff9c3 3e 16 d 3a 2d 19 14 26 15 f 1b 18 -FIXUPS: 41594 a 7 15 35 12 45 12 27 a 7 1a 3d 27 23 e 12 e 12 fffff68d -FIXUPS: 40e16 18 18 1a 4b 1f 83 b 68 65 14 1f 2d 66 d c 2d 1d 21 d 21 1a -FIXUPS: 411c9 36 1c 9 38 57 26 ab 21 fffff2c2 1e 18 23 1b 26 12 13 32 8 -FIXUPS: 407b7 6d 25 55 13f 2d 17 13 2d 55 25 4d 7 83 f 12 ea 20 14 4b 13 -FIXUPS: 40d7f fffff2d1 2c 36 84 30 2f 1b 10 51 33 90 d 52 11 10 41 13 32 -FIXUPS: 40451 21 34 23 5f 3d 14 13 25 16 1e 23 17 32 fffff128 3c 36 74 -FIXUPS: 3f870 7c 7 90 21 87 2c 52 1a 40 b 1a 64 26 4e 15 2e 2e 2b 15 14 -FIXUPS: 3fce6 20 3d 7 62 55 22d fffff2f5 28 e 46 e 15 44 1f 13 14 f 21 -FIXUPS: 3f48d 29 1e 3e 22 1d 24 2b 3f 3d 36 a 1f 12 c 12 9 52 c 4c fffff64b -FIXUPS: 3edea 55 2b 1e 19 2a 10c 1e 19 2c 2a 14 4b 22 2f 39 b 14 29 13 -FIXUPS: 3f1bd 24 19 2b 28 1a 58 a c 9 2e fffff659 11 22 37 1d 8 12 13 10 -FIXUPS: 3ea6b 41 30 12 1b 27 29 2f 27 b 14 d 17 27 15 e 25 14 1f 40 25 -FIXUPS: 3ed0e 94 68e5 1e f 15 1b a f 15 3d 17 32 f 1b a f 27 44 1e 1d 18 -FIXUPS: 458b1 5 ffff8f6f 11 2f 11 2f 11 2f 11 2f 11 69bf 3b 8 d 2c 2a 1a -FIXUPS: 453ec f 1b a f 2c 46 1a 33 1c 24 c 19 1e 25 21 c 13 17 1e 1a f -FIXUPS: 45653 1b a fffff7a7 3d 67 19 14 c c 4e 21 d 31 26 c 1a 32 27 16 -FIXUPS: 4507f 35 2f 10 16 50 23 1c 57 26 c 1a 32 5c 14 fffff574 c 9 32 -FIXUPS: 44a07 25 1d 19 4e 14 16 1b 12 20 3a 18 2c c 41 4a 2d 12 15 15 15 -FIXUPS: 44ccf 21 21 15 47 1d 5f diff --git a/kauai/OBJ/WINS/CHELPDMP.MAP b/kauai/OBJ/WINS/CHELPDMP.MAP deleted file mode 100644 index fc98227f..00000000 --- a/kauai/OBJ/WINS/CHELPDMP.MAP +++ /dev/null @@ -1,1061 +0,0 @@ - chelpdmp - - Timestamp is 3070b5da (Mon Oct 02 21:02:34 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0001612cH .text CODE - 0002:00000000 000019a0H .bss DATA - 0003:00000000 00000461H .rdata DATA - 0004:00000000 000026e4H .data DATA - 0004:000026e4 00000004H .CRT$XCA DATA - 0004:000026e8 0000006cH .CRT$XCU DATA - 0004:00002754 00000004H .CRT$XCZ DATA - 0004:00002758 00000004H .CRT$XIA DATA - 0004:0000275c 00000008H .CRT$XIC DATA - 0004:00002764 00000004H .CRT$XIZ DATA - 0004:00002768 00000004H .CRT$XPA DATA - 0004:0000276c 00000004H .CRT$XPX DATA - 0004:00002770 00000004H .CRT$XPZ DATA - 0004:00002774 00000004H .CRT$XTA DATA - 0004:00002778 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000bcH .idata$4 DATA - 0005:00000120 000000bcH .idata$5 DATA - 0005:000001dc 0000031cH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 000021a0H .debug$F DATA - 0007:00002790 00000000H .debug$G DATA - 0007:00002790 00000035H .debug$H DATA - 0007:fffdf000 00000000H .debug$P DATA - 0007:fffdf000 00000000H .debug$S DATA - 0007:fffdf000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003d0 ?ReversePb@@YGXPAXJ@Z 004013d0 f utilcopy.obj - 0001:00000400 ?SwapBlocks@@YGXPAXJJ@Z 00401400 f utilcopy.obj - 0001:00000440 ?FEqualRgb@@YGHPAX0J@Z 00401440 f utilcopy.obj - 0001:00000480 ?CbEqualRgb@@YGJPAX0J@Z 00401480 f utilcopy.obj - 0001:000004e0 ?CopyPb@@YGXPAX0J@Z 004014e0 f utilcopy.obj - 0001:00000510 ?BltPb@@YGXPAX0J@Z 00401510 f utilcopy.obj - 0001:00000580 ?FWouldBe@ERS@@SGHJ@Z 00401580 f utilerro.obj - 0001:000005a0 ?FIs@ERS@@UAEHJ@Z 004015a0 f utilerro.obj - 0001:000005b0 ?Cls@ERS@@UAEJXZ 004015b0 f utilerro.obj - 0001:000005c0 ??0ERS@@QAE@XZ 004015c0 f utilerro.obj - 0001:000005f0 ?Push@ERS@@UAEXJ@Z 004015f0 f utilerro.obj - 0001:00000640 ?FPop@ERS@@UAEHPAJ@Z 00401640 f utilerro.obj - 0001:00000690 ?Clear@ERS@@UAEXXZ 00401690 f utilerro.obj - 0001:000006b0 ?Cerc@ERS@@UAEJXZ 004016b0 f utilerro.obj - 0001:000006c0 ?FIn@ERS@@UAEHJ@Z 004016c0 f utilerro.obj - 0001:00000710 ?ErcGet@ERS@@UAEJJ@Z 00401710 f utilerro.obj - 0001:00000750 ?Flush@ERS@@UAEXJ@Z 00401750 f utilerro.obj - 0001:000007f0 ??_EERS@@UAEPAXI@Z 004017f0 f utilerro.obj - 0001:000007f0 ??_GERS@@UAEPAXI@Z 004017f0 f utilerro.obj - 0001:00000820 ?LwRoundToward@@YGJJJ@Z 00401820 f utilint.obj - 0001:00000850 ?SwapBytesBom@@YGXPAXK@Z 00401850 f utilint.obj - 0001:000008b0 ?SwapBytesRgsw@@YGXPAXJ@Z 004018b0 f utilint.obj - 0001:000008e0 ?SwapBytesRglw@@YGXPAXJ@Z 004018e0 f utilint.obj - 0001:00000910 ??0USAC@@QAE@XZ 00401910 f utilint.obj - 0001:00000940 ?FReadable@DVER@@QAEHFF@Z 00401940 f utilint.obj - 0001:00000980 ??_EUSAC@@UAEPAXI@Z 00401980 f utilint.obj - 0001:00000980 ??_GUSAC@@UAEPAXI@Z 00401980 f utilint.obj - 0001:000009a0 ?FAllocPv@@YGHPAPAXJKJ@Z 004019a0 f utilmem.obj - 0001:00000a70 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00401a70 f utilmem.obj - 0001:00000b60 ?FreePpv@@YGXPAPAX@Z 00401b60 f utilmem.obj - 0001:00000ba0 ?FWouldBe@RND@@SGHJ@Z 00401ba0 f utilrnd.obj - 0001:00000bc0 ?FIs@RND@@UAEHJ@Z 00401bc0 f utilrnd.obj - 0001:00000bd0 ?Cls@RND@@UAEJXZ 00401bd0 f utilrnd.obj - 0001:00000be0 ?FWouldBe@SFL@@SGHJ@Z 00401be0 f utilrnd.obj - 0001:00000c00 ?FIs@SFL@@UAEHJ@Z 00401c00 f utilrnd.obj - 0001:00000c10 ?Cls@SFL@@UAEJXZ 00401c10 f utilrnd.obj - 0001:00000c20 ??0RND@@QAE@K@Z 00401c20 f utilrnd.obj - 0001:00000c60 ?LwNext@RND@@UAEJJ@Z 00401c60 f utilrnd.obj - 0001:00000c90 ??0SFL@@QAE@K@Z 00401c90 f utilrnd.obj - 0001:00000cc0 ??1SFL@@UAE@XZ 00401cc0 f utilrnd.obj - 0001:00000ce0 ?Shuffle@SFL@@QAEXJ@Z 00401ce0 f utilrnd.obj - 0001:00000d20 ?_ShuffleCore@SFL@@IAEXXZ 00401d20 f utilrnd.obj - 0001:00000d70 ?_FEnsureHq@SFL@@IAEHJ@Z 00401d70 f utilrnd.obj - 0001:00000de0 ?LwNext@SFL@@UAEJJ@Z 00401de0 f utilrnd.obj - 0001:00000e70 ??_GRND@@UAEPAXI@Z 00401e70 f utilrnd.obj - 0001:00000e70 ??_ERND@@UAEPAXI@Z 00401e70 f utilrnd.obj - 0001:00000e90 ??_GSFL@@UAEPAXI@Z 00401e90 f utilrnd.obj - 0001:00000e90 ??_ESFL@@UAEPAXI@Z 00401e90 f utilrnd.obj - 0001:00000eb0 ??4STN@@QAEAAV0@AAV0@@Z 00401eb0 f utilstr.obj - 0001:00000ed0 ?SetRgch@STN@@QAEXPADJ@Z 00401ed0 f utilstr.obj - 0001:00000f10 ?SetSzs@STN@@QAEXPAD@Z 00401f10 f utilstr.obj - 0001:00000f30 ?Delete@STN@@QAEXJJ@Z 00401f30 f utilstr.obj - 0001:00000f90 ?FAppendRgch@STN@@QAEHPADJ@Z 00401f90 f utilstr.obj - 0001:00000fe0 ?FInsertRgch@STN@@QAEHJPADJ@Z 00401fe0 f utilstr.obj - 0001:000010a0 ?FEqualRgch@STN@@QAEHPADJ@Z 004020a0 f utilstr.obj - 0001:000010d0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 004020d0 f utilstr.obj - 0001:000010f0 ?CbData@STN@@QAEJXZ 004020f0 f utilstr.obj - 0001:00001100 ?GetData@STN@@QAEXPAX@Z 00402100 f utilstr.obj - 0001:00001140 ?FSetData@STN@@QAEHPAXJPAJ@Z 00402140 f utilstr.obj - 0001:00001370 ?FFormatSz@STN@@QAAHPADZZ 00402370 f utilstr.obj - 0001:00001390 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00402390 f utilstr.obj - 0001:00001710 ?FExpandControls@STN@@QAEHXZ 00402710 f utilstr.obj - 0001:00001820 ?CchSz@@YGJPAD@Z 00402820 f utilstr.obj - 0001:00001840 ?FcmpCompareRgch@@YGKPADJ0J@Z 00402840 f utilstr.obj - 0001:000018a0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004028a0 f utilstr.obj - 0001:00001990 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00402990 f utilstr.obj - 0001:00001a00 ?UpperRgchs@@YGXPADJ@Z 00402a00 f utilstr.obj - 0001:00001a60 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00402a60 f utilstr.obj - 0001:00001b60 ?TranslateRgch@@YGXPADJFH@Z 00402b60 f utilstr.obj - 0001:00001bc0 ?FAllocHq@@YGHPAPAXJKJ@Z 00402bc0 f memwin.obj - 0001:00001c30 ?FResizePhq@@YGHPAPAXJKJ@Z 00402c30 f memwin.obj - 0001:00001cd0 ?FreePhq@@YGXPAPAX@Z 00402cd0 f memwin.obj - 0001:00001d00 ?CbOfHq@@YGJPAX@Z 00402d00 f memwin.obj - 0001:00001d10 ?PvLockHq@@YGPAXPAX@Z 00402d10 f memwin.obj - 0001:00001d20 ?UnlockHq@@YGXPAX@Z 00402d20 f memwin.obj - 0001:00001d60 ?FWouldBe@CFL@@SGHJ@Z 00402d60 f chunk.obj - 0001:00001d80 ?FIs@CFL@@UAEHJ@Z 00402d80 f chunk.obj - 0001:00001d90 ?Cls@CFL@@UAEJXZ 00402d90 f chunk.obj - 0001:00001da0 ?FWouldBe@CGE@@SGHJ@Z 00402da0 f chunk.obj - 0001:00001dc0 ?FIs@CGE@@UAEHJ@Z 00402dc0 f chunk.obj - 0001:00001dd0 ?Cls@CGE@@UAEJXZ 00402dd0 f chunk.obj - 0001:00001de0 ??0CFL@@AAE@XZ 00402de0 f chunk.obj - 0001:00001e00 ??1CFL@@EAE@XZ 00402e00 f chunk.obj - 0001:00001ea0 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00402ea0 f chunk.obj - 0001:00001f70 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00402f70 f chunk.obj - 0001:00001f90 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00402f90 f chunk.obj - 0001:00001fd0 ?FSetGrfcfl@CFL@@QAEHKK@Z 00402fd0 f chunk.obj - 0001:00002070 ?Release@CFL@@UAEXXZ 00403070 f chunk.obj - 0001:00002090 ?_TValidIndex@CFL@@AAEHXZ 00403090 f chunk.obj - 0001:000023f0 ?_FReadIndex@CFL@@AAEHXZ 004033f0 f chunk.obj - 0001:00002a60 ?_ReadFreeMap@CFL@@AAEXXZ 00403a60 f chunk.obj - 0001:00002ae0 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00403ae0 f chunk.obj - 0001:00002be0 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00403be0 f chunk.obj - 0001:00002c40 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00403c40 f chunk.obj - 0001:00002c80 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00403c80 f chunk.obj - 0001:00002ce0 ?_FCreateExtra@CFL@@AAEHXZ 00403ce0 f chunk.obj - 0001:00002d10 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00403d10 f chunk.obj - 0001:00002e20 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00403e20 f chunk.obj - 0001:00002ec0 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00403ec0 f chunk.obj - 0001:000030a0 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 004040a0 f chunk.obj - 0001:000030f0 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 004040f0 f chunk.obj - 0001:00003190 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 00404190 f chunk.obj - 0001:00003240 ?Ckid@CFL@@QAEJKK@Z 00404240 f chunk.obj - 0001:00003290 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00404290 f chunk.obj - 0001:00003310 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00404310 f chunk.obj - 0001:00003350 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00404350 f chunk.obj - 0001:00003430 ??0CGE@@QAE@XZ 00404430 f chunk.obj - 0001:00003450 ??1CGE@@UAE@XZ 00404450 f chunk.obj - 0001:00003480 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00404480 f chunk.obj - 0001:000034c0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 004044c0 f chunk.obj - 0001:000036a0 ??_ECFL@@EAEPAXI@Z 004046a0 f chunk.obj - 0001:000036a0 ??_GCFL@@EAEPAXI@Z 004046a0 f chunk.obj - 0001:000036c0 ??_ECGE@@UAEPAXI@Z 004046c0 f chunk.obj - 0001:000036c0 ??_GCGE@@UAEPAXI@Z 004046c0 f chunk.obj - 0001:000036e0 ?FWouldBe@CODM@@SGHJ@Z 004046e0 f codec.obj - 0001:00003700 ?FIs@CODM@@UAEHJ@Z 00404700 f codec.obj - 0001:00003710 ?Cls@CODM@@UAEJXZ 00404710 f codec.obj - 0001:00003720 ?FWouldBe@CODC@@SGHJ@Z 00404720 f codec.obj - 0001:00003740 ??0CODM@@QAE@PAVCODC@@J@Z 00404740 f codec.obj - 0001:00003780 ??1CODM@@UAE@XZ 00404780 f codec.obj - 0001:00003800 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00404800 f codec.obj - 0001:00003850 ?FCanDo@CODM@@UAEHJH@Z 00404850 f codec.obj - 0001:00003880 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00404880 f codec.obj - 0001:00003900 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00404900 f codec.obj - 0001:000039b0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004049b0 f codec.obj - 0001:00003ad0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00404ad0 f codec.obj - 0001:00003ce0 ??_ECODM@@UAEPAXI@Z 00404ce0 f codec.obj - 0001:00003ce0 ??_GCODM@@UAEPAXI@Z 00404ce0 f codec.obj - 0001:00003d00 ?FWouldBe@KCDC@@SGHJ@Z 00404d00 f codkauai.obj - 0001:00003d20 ?FIs@KCDC@@UAEHJ@Z 00404d20 f codkauai.obj - 0001:00003d30 ?Cls@KCDC@@UAEJXZ 00404d30 f codkauai.obj - 0001:00003d40 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00404d40 f codkauai.obj - 0001:00003dc0 ?Set@BITA@@QAEXPAXJ@Z 00404dc0 f codkauai.obj - 0001:00003de0 ?FWriteBits@BITA@@QAEHKJ@Z 00404de0 f codkauai.obj - 0001:00003ea0 ?FWriteLogEncoded@BITA@@QAEHK@Z 00404ea0 f codkauai.obj - 0001:00003ef0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00404ef0 f codkauai.obj - 0001:00004200 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00405200 f codkauai.obj - 0001:00007b30 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00408b30 f codkauai.obj - 0001:00007f10 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00408f10 f codkauai.obj - 0001:0000a4d0 ?FWouldBe@FIL@@SGHJ@Z 0040b4d0 f file.obj - 0001:0000a4f0 ?FIs@FIL@@UAEHJ@Z 0040b4f0 f file.obj - 0001:0000a500 ?Cls@FIL@@UAEJXZ 0040b500 f file.obj - 0001:0000a510 ?FWouldBe@BLCK@@SGHJ@Z 0040b510 f file.obj - 0001:0000a530 ?FIs@BLCK@@UAEHJ@Z 0040b530 f file.obj - 0001:0000a540 ?Cls@BLCK@@UAEJXZ 0040b540 f file.obj - 0001:0000a550 ?FWouldBe@MSFIL@@SGHJ@Z 0040b550 f file.obj - 0001:0000a580 ?FIs@MSFIL@@UAEHJ@Z 0040b580 f file.obj - 0001:0000a590 ?Cls@MSFIL@@UAEJXZ 0040b590 f file.obj - 0001:0000a5a0 ??0FIL@@IAE@PAVFNI@@K@Z 0040b5a0 f file.obj - 0001:0000a610 ??1FIL@@MAE@XZ 0040b610 f file.obj - 0001:0000a660 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0040b660 f file.obj - 0001:0000a700 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0040b700 f file.obj - 0001:0000a790 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0040b790 f file.obj - 0001:0000a820 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0040b820 f file.obj - 0001:0000a880 ?FSetGrffil@FIL@@QAEHKK@Z 0040b880 f file.obj - 0001:0000a910 ?Release@FIL@@UAEXXZ 0040b910 f file.obj - 0001:0000a940 ?SetTemp@FIL@@QAEXH@Z 0040b940 f file.obj - 0001:0000a980 ?ShutDown@FIL@@SGXXZ 0040b980 f file.obj - 0001:0000a9f0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0040b9f0 f file.obj - 0001:0000aa40 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0040ba40 f file.obj - 0001:0000aa90 ?FCopy@FLO@@QAEHPAU1@@Z 0040ba90 f file.obj - 0001:0000ab60 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0040bb60 f file.obj - 0001:0000abe0 ??0BLCK@@QAE@PAUFLO@@H@Z 0040bbe0 f file.obj - 0001:0000ac30 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0040bc30 f file.obj - 0001:0000ac70 ??0BLCK@@QAE@XZ 0040bc70 f file.obj - 0001:0000ac90 ??1BLCK@@UAE@XZ 0040bc90 f file.obj - 0001:0000acb0 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0040bcb0 f file.obj - 0001:0000acf0 ?SetHq@BLCK@@QAEXPAPAXH@Z 0040bcf0 f file.obj - 0001:0000ad30 ?Free@BLCK@@QAEXXZ 0040bd30 f file.obj - 0001:0000ad60 ?HqFree@BLCK@@QAEPAXH@Z 0040bd60 f file.obj - 0001:0000ae10 ?Cb@BLCK@@QAEJH@Z 0040be10 f file.obj - 0001:0000ae30 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0040be30 f file.obj - 0001:0000aec0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0040bec0 f file.obj - 0001:0000af50 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 0040bf50 f file.obj - 0001:0000b030 ?FPacked@BLCK@@QAEHPAJ@Z 0040c030 f file.obj - 0001:0000b070 ?FUnpackData@BLCK@@QAEHXZ 0040c070 f file.obj - 0001:0000b170 ??0MSFIL@@QAE@PAVFIL@@@Z 0040c170 f file.obj - 0001:0000b1a0 ??1MSFIL@@UAE@XZ 0040c1a0 f file.obj - 0001:0000b1d0 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 0040c1d0 f file.obj - 0001:0000b230 ?ReportLine@MSFIL@@UAEXPAD@Z 0040c230 f file.obj - 0001:0000b280 ?Report@MSFIL@@UAEXPAD@Z 0040c280 f file.obj - 0001:0000b2e0 ?FError@MSFIL@@UAEHXZ 0040c2e0 f file.obj - 0001:0000b320 ??_GFIL@@MAEPAXI@Z 0040c320 f file.obj - 0001:0000b320 ??_EFIL@@MAEPAXI@Z 0040c320 f file.obj - 0001:0000b340 ??_GBLCK@@UAEPAXI@Z 0040c340 f file.obj - 0001:0000b340 ??_EBLCK@@UAEPAXI@Z 0040c340 f file.obj - 0001:0000b360 ??_GMSFIL@@UAEPAXI@Z 0040c360 f file.obj - 0001:0000b360 ??_EMSFIL@@UAEPAXI@Z 0040c360 f file.obj - 0001:0000b3d0 ?_FOpen@FIL@@IAEHHK@Z 0040c3d0 f filewin.obj - 0001:0000b4d0 ?_Close@FIL@@IAEXH@Z 0040c4d0 f filewin.obj - 0001:0000b540 ?Flush@FIL@@QAEXXZ 0040c540 f filewin.obj - 0001:0000b570 ?_SetFpPos@FIL@@IAEXJ@Z 0040c570 f filewin.obj - 0001:0000b5d0 ?FSetFpMac@FIL@@QAEHJ@Z 0040c5d0 f filewin.obj - 0001:0000b660 ?FpMac@FIL@@QAEJXZ 0040c660 f filewin.obj - 0001:0000b6f0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040c6f0 f filewin.obj - 0001:0000b7a0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040c7a0 f filewin.obj - 0001:0000b880 ?FWouldBe@FNI@@SGHJ@Z 0040c880 f fniwin.obj - 0001:0000b8a0 ?FIs@FNI@@UAEHJ@Z 0040c8a0 f fniwin.obj - 0001:0000b8b0 ?Cls@FNI@@UAEJXZ 0040c8b0 f fniwin.obj - 0001:0000b8c0 ?SetNil@FNI@@QAEXXZ 0040c8c0 f fniwin.obj - 0001:0000b8d0 ??0FNI@@QAE@XZ 0040c8d0 f fniwin.obj - 0001:0000b900 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040c900 f fniwin.obj - 0001:0000ba50 ?FGetUnique@FNI@@QAEHJ@Z 0040ca50 f fniwin.obj - 0001:0000bb60 ?FGetTemp@FNI@@QAEHXZ 0040cb60 f fniwin.obj - 0001:0000bc00 ?Ftg@FNI@@QAEJXZ 0040cc00 f fniwin.obj - 0001:0000bc10 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0040cc10 f fniwin.obj - 0001:0000bc80 ?FChangeFtg@FNI@@QAEHJ@Z 0040cc80 f fniwin.obj - 0001:0000bd30 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0040cd30 f fniwin.obj - 0001:0000bd70 ?TExists@FNI@@QAEHXZ 0040cd70 f fniwin.obj - 0001:0000be70 ?FEqual@FNI@@QAEHPAV1@@Z 0040ce70 f fniwin.obj - 0001:0000be90 ?_CchExt@FNI@@AAEJXZ 0040ce90 f fniwin.obj - 0001:0000bed0 ?_SetFtgFromName@FNI@@AAEXXZ 0040ced0 f fniwin.obj - 0001:0000bf50 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0040cf50 f fniwin.obj - 0001:0000c0a0 ??_EFNI@@UAEPAXI@Z 0040d0a0 f fniwin.obj - 0001:0000c0a0 ??_GFNI@@UAEPAXI@Z 0040d0a0 f fniwin.obj - 0001:0000c0c0 ?FWouldBe@GRPB@@SGHJ@Z 0040d0c0 f groups.obj - 0001:0000c0e0 ?FIs@GRPB@@UAEHJ@Z 0040d0e0 f groups.obj - 0001:0000c0f0 ?Cls@GRPB@@UAEJXZ 0040d0f0 f groups.obj - 0001:0000c100 ?FWouldBe@GLB@@SGHJ@Z 0040d100 f groups.obj - 0001:0000c120 ?FIs@GLB@@UAEHJ@Z 0040d120 f groups.obj - 0001:0000c130 ?Cls@GLB@@UAEJXZ 0040d130 f groups.obj - 0001:0000c140 ?FWouldBe@GL@@SGHJ@Z 0040d140 f groups.obj - 0001:0000c160 ?FIs@GL@@UAEHJ@Z 0040d160 f groups.obj - 0001:0000c170 ?Cls@GL@@UAEJXZ 0040d170 f groups.obj - 0001:0000c180 ?FWouldBe@GGB@@SGHJ@Z 0040d180 f groups.obj - 0001:0000c1a0 ?FIs@GGB@@UAEHJ@Z 0040d1a0 f groups.obj - 0001:0000c1b0 ?Cls@GGB@@UAEJXZ 0040d1b0 f groups.obj - 0001:0000c1c0 ?FWouldBe@GG@@SGHJ@Z 0040d1c0 f groups.obj - 0001:0000c1e0 ?FIs@GG@@UAEHJ@Z 0040d1e0 f groups.obj - 0001:0000c1f0 ?Cls@GG@@UAEJXZ 0040d1f0 f groups.obj - 0001:0000c200 ?FWouldBe@AG@@SGHJ@Z 0040d200 f groups.obj - 0001:0000c220 ?FIs@AG@@UAEHJ@Z 0040d220 f groups.obj - 0001:0000c230 ?Cls@AG@@UAEJXZ 0040d230 f groups.obj - 0001:0000c240 ??1GRPB@@UAE@XZ 0040d240 f groups.obj - 0001:0000c270 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0040d270 f groups.obj - 0001:0000c350 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0040d350 f groups.obj - 0001:0000c420 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0040d420 f groups.obj - 0001:0000c470 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0040d470 f groups.obj - 0001:0000c540 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0040d540 f groups.obj - 0001:0000c600 ??0GLB@@IAE@J@Z 0040d600 f groups.obj - 0001:0000c630 ?QvGet@GLB@@QAEPAXJ@Z 0040d630 f groups.obj - 0001:0000c650 ?Get@GLB@@QAEXJPAX@Z 0040d650 f groups.obj - 0001:0000c670 ?Put@GLB@@QAEXJPAX@Z 0040d670 f groups.obj - 0001:0000c690 ?PglNew@GL@@SGPAV1@JJ@Z 0040d690 f groups.obj - 0001:0000c6f0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0040d6f0 f groups.obj - 0001:0000c750 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0040d750 f groups.obj - 0001:0000c7a0 ??0GL@@IAE@J@Z 0040d7a0 f groups.obj - 0001:0000c7c0 ?FFree@GL@@UAEHJ@Z 0040d7c0 f groups.obj - 0001:0000c7e0 ?CbOnFile@GL@@UAEJXZ 0040d7e0 f groups.obj - 0001:0000c7f0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0040d7f0 f groups.obj - 0001:0000c860 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0040d860 f groups.obj - 0001:0000c930 ?FInsert@GL@@QAEHJPAXJ@Z 0040d930 f groups.obj - 0001:0000c9d0 ?Delete@GL@@UAEXJ@Z 0040d9d0 f groups.obj - 0001:0000c9e0 ?Delete@GL@@QAEXJJ@Z 0040d9e0 f groups.obj - 0001:0000ca20 ?FAdd@GL@@UAEHPAXPAJ@Z 0040da20 f groups.obj - 0001:0000ca50 ?FPop@GL@@QAEHPAX@Z 0040da50 f groups.obj - 0001:0000ca80 ?FEnsureSpace@GL@@QAEHJK@Z 0040da80 f groups.obj - 0001:0000cac0 ??0GGB@@IAE@JH@Z 0040dac0 f groups.obj - 0001:0000cb00 ?CbOnFile@GGB@@UAEJXZ 0040db00 f groups.obj - 0001:0000cb10 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0040db10 f groups.obj - 0001:0000cc00 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0040dc00 f groups.obj - 0001:0000cd90 ?FFree@GGB@@UAEHJ@Z 0040dd90 f groups.obj - 0001:0000cdc0 ?FEnsureSpace@GGB@@QAEHJJK@Z 0040ddc0 f groups.obj - 0001:0000ce50 ?_RemoveRgb@GGB@@IAEXJJ@Z 0040de50 f groups.obj - 0001:0000cea0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0040dea0 f groups.obj - 0001:0000cef0 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0040def0 f groups.obj - 0001:0000cf30 ?GetFixed@GGB@@QAEXJPAX@Z 0040df30 f groups.obj - 0001:0000cf60 ?PutFixed@GGB@@QAEXJPAX@Z 0040df60 f groups.obj - 0001:0000cf90 ?Cb@GGB@@QAEJJ@Z 0040df90 f groups.obj - 0001:0000cfb0 ?QvGet@GGB@@QAEPAXJPAJ@Z 0040dfb0 f groups.obj - 0001:0000cff0 ?PvLock@GGB@@QAEPAXJPAJ@Z 0040dff0 f groups.obj - 0001:0000d020 ?GetRgb@GGB@@QAEXJJJPAX@Z 0040e020 f groups.obj - 0001:0000d060 ?DeleteRgb@GGB@@QAEXJJJ@Z 0040e060 f groups.obj - 0001:0000d0f0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0040e0f0 f groups.obj - 0001:0000d210 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 0040e210 f groups.obj - 0001:0000d3a0 ?Merge@GGB@@QAEXJJ@Z 0040e3a0 f groups.obj - 0001:0000d440 ?PggNew@GG@@SGPAV1@JJJ@Z 0040e440 f groups.obj - 0001:0000d4b0 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0040e4b0 f groups.obj - 0001:0000d510 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0040e510 f groups.obj - 0001:0000d560 ?FInsert@GG@@QAEHJJPAX0@Z 0040e560 f groups.obj - 0001:0000d630 ?FAdd@GG@@UAEHJPAJPAX1@Z 0040e630 f groups.obj - 0001:0000d660 ?Delete@GG@@UAEXJ@Z 0040e660 f groups.obj - 0001:0000d6c0 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 0040e6c0 f groups.obj - 0001:0000d720 ?FAdd@AG@@UAEHJPAJPAX1@Z 0040e720 f groups.obj - 0001:0000d830 ?Delete@AG@@UAEXJ@Z 0040e830 f groups.obj - 0001:0000d8c0 ??_GGRPB@@UAEPAXI@Z 0040e8c0 f groups.obj - 0001:0000d8c0 ??_EGRPB@@UAEPAXI@Z 0040e8c0 f groups.obj - 0001:0000d8e0 ??_GGG@@UAEPAXI@Z 0040e8e0 f groups.obj - 0001:0000d8e0 ??_EGG@@UAEPAXI@Z 0040e8e0 f groups.obj - 0001:0000d900 ??_GAG@@UAEPAXI@Z 0040e900 f groups.obj - 0001:0000d900 ??_EAG@@UAEPAXI@Z 0040e900 f groups.obj - 0001:0000d920 ??_GGLB@@UAEPAXI@Z 0040e920 f groups.obj - 0001:0000d920 ??_EGLB@@UAEPAXI@Z 0040e920 f groups.obj - 0001:0000d940 ??_GGL@@UAEPAXI@Z 0040e940 f groups.obj - 0001:0000d940 ??_EGL@@UAEPAXI@Z 0040e940 f groups.obj - 0001:0000d960 ??_EGGB@@UAEPAXI@Z 0040e960 f groups.obj - 0001:0000d960 ??_GGGB@@UAEPAXI@Z 0040e960 f groups.obj - 0001:0000d980 ?FWouldBe@GSTB@@SGHJ@Z 0040e980 f groups2.obj - 0001:0000d9a0 ?FIs@GSTB@@UAEHJ@Z 0040e9a0 f groups2.obj - 0001:0000d9b0 ?Cls@GSTB@@UAEJXZ 0040e9b0 f groups2.obj - 0001:0000d9c0 ?FWouldBe@GST@@SGHJ@Z 0040e9c0 f groups2.obj - 0001:0000d9e0 ?FIs@GST@@UAEHJ@Z 0040e9e0 f groups2.obj - 0001:0000d9f0 ?Cls@GST@@UAEJXZ 0040e9f0 f groups2.obj - 0001:0000da00 ??0GSTB@@IAE@JK@Z 0040ea00 f groups2.obj - 0001:0000da40 ?CbOnFile@GSTB@@UAEJXZ 0040ea40 f groups2.obj - 0001:0000da50 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 0040ea50 f groups2.obj - 0001:0000db50 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 0040eb50 f groups2.obj - 0001:0000dd20 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 0040ed20 f groups2.obj - 0001:0000dd40 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 0040ed40 f groups2.obj - 0001:0000ddb0 ?GetExtra@GSTB@@QAEXJPAX@Z 0040edb0 f groups2.obj - 0001:0000dde0 ?_Qst@GSTB@@IAEPADJ@Z 0040ede0 f groups2.obj - 0001:0000de00 ?_AppendRgch@GSTB@@IAEXPADJ@Z 0040ee00 f groups2.obj - 0001:0000de30 ?_RemoveSt@GSTB@@IAEXJ@Z 0040ee30 f groups2.obj - 0001:0000de90 ?_SwapBytesRgbst@GSTB@@IAEXXZ 0040ee90 f groups2.obj - 0001:0000ded0 ?_TranslateGrst@GSTB@@IAEXFH@Z 0040eed0 f groups2.obj - 0001:0000df80 ?_FTranslateGrst@GSTB@@IAEHF@Z 0040ef80 f groups2.obj - 0001:0000e1a0 ?FFree@GSTB@@UAEHJ@Z 0040f1a0 f groups2.obj - 0001:0000e1d0 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 0040f1d0 f groups2.obj - 0001:0000e230 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 0040f230 f groups2.obj - 0001:0000e260 ?FFindRgch@GST@@UAEHPADJPAJK@Z 0040f260 f groups2.obj - 0001:0000e330 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 0040f330 f groups2.obj - 0001:0000e3d0 ?Delete@GST@@UAEXJ@Z 0040f3d0 f groups2.obj - 0001:0000e420 ??_GGST@@UAEPAXI@Z 0040f420 f groups2.obj - 0001:0000e420 ??_EGST@@UAEPAXI@Z 0040f420 f groups2.obj - 0001:0000e440 ??_GGSTB@@UAEPAXI@Z 0040f440 f groups2.obj - 0001:0000e440 ??_EGSTB@@UAEPAXI@Z 0040f440 f groups2.obj - 0001:0000e480 ?FWouldBe@BSF@@SGHJ@Z 0040f480 f stream.obj - 0001:0000e4a0 ?FIs@BSF@@UAEHJ@Z 0040f4a0 f stream.obj - 0001:0000e4b0 ?Cls@BSF@@UAEJXZ 0040f4b0 f stream.obj - 0001:0000e4d0 ??0BSF@@QAE@XZ 0040f4d0 f stream.obj - 0001:0000e4f0 ??1BSF@@UAE@XZ 0040f4f0 f stream.obj - 0001:0000e560 ?_IfloFind@BSF@@IAEJJPAJ0@Z 0040f560 f stream.obj - 0001:0000e5f0 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 0040f5f0 f stream.obj - 0001:0000e720 ?_AttemptMerge@BSF@@IAEXJJ@Z 0040f720 f stream.obj - 0001:0000e810 ?FReplace@BSF@@QAEHPAXJJJ@Z 0040f810 f stream.obj - 0001:0000eb00 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 0040fb00 f stream.obj - 0001:0000eca0 ?FetchRgb@BSF@@QAEXJJPAX@Z 0040fca0 f stream.obj - 0001:0000ed60 ??_EBSF@@UAEPAXI@Z 0040fd60 f stream.obj - 0001:0000ed60 ??_GBSF@@UAEPAXI@Z 0040fd60 f stream.obj - 0001:0000edc0 ?FWouldBe@CHSE@@SGHJ@Z 0040fdc0 f chse.obj - 0001:0000ede0 ?FIs@CHSE@@UAEHJ@Z 0040fde0 f chse.obj - 0001:0000edf0 ?Cls@CHSE@@UAEJXZ 0040fdf0 f chse.obj - 0001:0000ee00 ??0CHSE@@QAE@XZ 0040fe00 f chse.obj - 0001:0000ee30 ??1CHSE@@UAE@XZ 0040fe30 f chse.obj - 0001:0000ee50 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 0040fe50 f chse.obj - 0001:0000ee80 ?Uninit@CHSE@@QAEXXZ 0040fe80 f chse.obj - 0001:0000eed0 ?DumpBlck@CHSE@@QAEXPAVBLCK@@@Z 0040fed0 f chse.obj - 0001:0000ef70 ?DumpRgb@CHSE@@QAEXPAXJJ@Z 0040ff70 f chse.obj - 0001:0000efb0 ?_DumpBsf@CHSE@@IAEXJ@Z 0040ffb0 f chse.obj - 0001:0000f180 ?FDumpStringTable@CHSE@@QAEHPAVGSTB@@@Z 00410180 f chse.obj - 0001:0000f300 ??_GCHSE@@UAEPAXI@Z 00410300 f chse.obj - 0001:0000f300 ??_ECHSE@@UAEPAXI@Z 00410300 f chse.obj - 0001:0000f320 _main 00410320 f chelpdmp.obj - 0001:0000f5a0 ?FExportHelpText@@YGHPAVCFL@@PAVMSNK@@@Z 004105a0 f chelpexp.obj - 0001:000106b0 ??0MSSIO@@QAE@PAU_iobuf@@@Z 004116b0 f mssio.obj - 0001:000106e0 ?ReportLine@MSSIO@@UAEXPAD@Z 004116e0 f mssio.obj - 0001:00010710 ?Report@MSSIO@@UAEXPAD@Z 00411710 f mssio.obj - 0001:00010740 ?FError@MSSIO@@UAEHXZ 00411740 f mssio.obj - 0001:00010760 ??_EMSSIO@@UAEPAXI@Z 00411760 f mssio.obj - 0001:00010760 ??_GMSSIO@@UAEPAXI@Z 00411760 f mssio.obj - 0001:00010790 ?FIs@MSNK@@UAEHJ@Z 00411790 f mssio.obj - 0001:000107b0 ?Cls@MSNK@@UAEJXZ 004117b0 f mssio.obj - 0001:000107b6 _timeGetTime@0 004117b6 winmm:WINMM.dll - 0001:000107bc __onexit 004117bc f LIBC:onexit.obj - 0001:00010832 _atexit 00411832 f LIBC:onexit.obj - 0001:00010844 ___onexitinit 00411844 f LIBC:onexit.obj - 0001:0001087a __purecall 0041187a f LIBC:purevirt.obj - 0001:00010888 __ftol 00411888 f LIBC:ftol.obj - 0001:000108b0 _fdiv_main_routine 004118b0 f LIBC:adj_fdiv.obj - 0001:000109c7 __adj_fdiv_r 004119c7 f LIBC:adj_fdiv.obj - 0001:00010e66 _fdivp_sti_st 00411e66 f LIBC:adj_fdiv.obj - 0001:00010e79 _fdivrp_sti_st 00411e79 f LIBC:adj_fdiv.obj - 0001:00010e8c __adj_fdiv_m32 00411e8c f LIBC:adj_fdiv.obj - 0001:00010ed8 __adj_fdiv_m64 00411ed8 f LIBC:adj_fdiv.obj - 0001:00010f24 __adj_fdiv_m16i 00411f24 f LIBC:adj_fdiv.obj - 0001:00010f58 __adj_fdiv_m32i 00411f58 f LIBC:adj_fdiv.obj - 0001:00010f8c __adj_fdivr_m32 00411f8c f LIBC:adj_fdiv.obj - 0001:00010fd8 __adj_fdivr_m64 00411fd8 f LIBC:adj_fdiv.obj - 0001:00011024 __adj_fdivr_m16i 00412024 f LIBC:adj_fdiv.obj - 0001:00011058 __adj_fdivr_m32i 00412058 f LIBC:adj_fdiv.obj - 0001:0001108c __safe_fdiv 0041208c f LIBC:adj_fdiv.obj - 0001:000110a1 __safe_fdivr 004120a1 f LIBC:adj_fdiv.obj - 0001:000110b6 __fprem_common 004120b6 f LIBC:adj_fdiv.obj - 0001:000112bc __adj_fprem 004122bc f LIBC:adj_fdiv.obj - 0001:0001136e __fprem1_common 0041236e f LIBC:adj_fdiv.obj - 0001:00011574 __adj_fprem1 00412574 f LIBC:adj_fdiv.obj - 0001:00011629 __safe_fprem 00412629 f LIBC:adj_fdiv.obj - 0001:0001162f __safe_fprem1 0041262f f LIBC:adj_fdiv.obj - 0001:00011635 __adj_fpatan 00412635 f LIBC:adj_fdiv.obj - 0001:00011638 __adj_fptan 00412638 f LIBC:adj_fdiv.obj - 0001:0001163b __fpmath 0041263b f LIBC:fpinit.obj - 0001:0001164f __fpclear 0041264f f LIBC:fpinit.obj - 0001:00011650 __cfltcvt_init 00412650 f LIBC:fpinit.obj - 0001:00011688 _fprintf 00412688 f LIBC:fprintf.obj - 0001:000116be _mainCRTStartup 004126be f LIBC:crt0.obj - 0001:000117b7 __amsg_exit 004127b7 f LIBC:crt0.obj - 0001:000117d7 __cinit 004127d7 f LIBC:crt0dat.obj - 0001:00011807 _exit 00412807 f LIBC:crt0dat.obj - 0001:00011818 __exit 00412818 f LIBC:crt0dat.obj - 0001:000118c8 _realloc 004128c8 f LIBC:realloc.obj - 0001:00011a1a __msize 00412a1a f LIBC:msize.obj - 0001:00011a2b _malloc 00412a2b f LIBC:malloc.obj - 0001:00011a3e __nh_malloc 00412a3e f LIBC:malloc.obj - 0001:00011afd __heap_split_block 00412afd f LIBC:malloc.obj - 0001:00011b42 __setdefaultprecision 00412b42 f LIBC:fp8.obj - 0001:00011b55 _ms_p5_test_fdiv 00412b55 f LIBC:testfdiv.obj - 0001:00011b9b _ms_p5_mp_test_fdiv 00412b9b f LIBC:testfdiv.obj - 0001:00011c6e __forcdecpt 00412c6e f LIBC:cvt.obj - 0001:00011cd3 __cropzeros 00412cd3 f LIBC:cvt.obj - 0001:00011d32 __positive 00412d32 f LIBC:cvt.obj - 0001:00011d47 __fassign 00412d47 f LIBC:cvt.obj - 0001:00011d8a __cftoe 00412d8a f LIBC:cvt.obj - 0001:00011edd __cftof 00412edd f LIBC:cvt.obj - 0001:00011ff9 __cftog 00412ff9 f LIBC:cvt.obj - 0001:000120a1 __cfltcvt 004130a1 f LIBC:cvt.obj - 0001:0001211d __stbuf 0041311d f LIBC:_sftbuf.obj - 0001:0001219e __ftbuf 0041319e f LIBC:_sftbuf.obj - 0001:000121e4 __output 004131e4 f LIBC:output.obj - 0001:00012b0c __global_unwind2 00413b0c f LIBC:exsup.obj - 0001:00012b4e __local_unwind2 00413b4e f LIBC:exsup.obj - 0001:00012ba8 __abnormal_termination 00413ba8 f LIBC:exsup.obj - 0001:00012bcb __XcptFilter 00413bcb f LIBC:winxfltr.obj - 0001:00012d56 __setenvp 00413d56 f LIBC:stdenvp.obj - 0001:00012e21 __setargv 00413e21 f LIBC:stdargv.obj - 0001:0001311f __setmbcp 0041411f f LIBC:mbctype.obj - 0001:000132ad ___initmbctable 004142ad f LIBC:mbctype.obj - 0001:000132b8 __ioinit 004142b8 f LIBC:ioinit.obj - 0001:000133a6 __heap_init 004143a6 f LIBC:heapinit.obj - 0001:00013423 ___getempty 00414423 f LIBC:heapinit.obj - 0001:00013450 __except_handler3 00414450 f LIBC:exsup3.obj - 0001:000134fe __seh_longjmp_unwind@4 004144fe f LIBC:exsup3.obj - 0001:00013519 __FF_MSGBANNER 00414519 f LIBC:crt0msg.obj - 0001:0001353f __NMSG_WRITE 0041453f f LIBC:crt0msg.obj - 0001:00013597 _free 00414597 f LIBC:free.obj - 0001:000135ff __heap_abort 004145ff f LIBC:hpabort.obj - 0001:0001360a __heap_grow 0041460a f LIBC:heapgrow.obj - 0001:000136f3 __heap_grow_region 004146f3 f LIBC:heapgrow.obj - 0001:000137a0 __heap_free_region 004147a0 f LIBC:heapgrow.obj - 0001:000137da __heap_search 004147da f LIBC:heapsrch.obj - 0001:000138ca __control87 004148ca f LIBC:ieee87.obj - 0001:00013905 __controlfp 00414905 f LIBC:ieee87.obj - 0001:00013a3c __fptrap 00414a3c f LIBC:crt0fp.obj - 0001:00013a47 __isctype 00414a47 f LIBC:isctype.obj - 0001:00013ac2 _tolower 00414ac2 f LIBC:tolower.obj - 0001:00013b8e __ZeroTail 00414b8e f LIBC:intrncvt.obj - 0001:00013bee __IncMan 00414bee f LIBC:intrncvt.obj - 0001:00013c4f __RoundMan 00414c4f f LIBC:intrncvt.obj - 0001:00013cec __CopyMan 00414cec f LIBC:intrncvt.obj - 0001:00013d09 __FillZeroMan 00414d09 f LIBC:intrncvt.obj - 0001:00013d15 __IsZeroMan 00414d15 f LIBC:intrncvt.obj - 0001:00013d33 __ShrMan 00414d33 f LIBC:intrncvt.obj - 0001:00013dde __ld12cvt 00414dde f LIBC:intrncvt.obj - 0001:00013f7a __ld12tod 00414f7a f LIBC:intrncvt.obj - 0001:00013f90 __ld12tof 00414f90 f LIBC:intrncvt.obj - 0001:00013fa6 __atodbl 00414fa6 f LIBC:intrncvt.obj - 0001:00013fd7 __atoflt 00414fd7 f LIBC:intrncvt.obj - 0001:00014008 __fptostr 00415008 f LIBC:_fptostr.obj - 0001:00014086 __fltout 00415086 f LIBC:cfout.obj - 0001:000140e9 ___dtold 004150e9 f LIBC:cfout.obj - 0001:000141a4 _memmove 004151a4 f LIBC:memmove.obj - 0001:000142f2 _fflush 004152f2 f LIBC:fflush.obj - 0001:0001433e __flush 0041533e f LIBC:fflush.obj - 0001:000143a0 __flushall 004153a0 f LIBC:fflush.obj - 0001:00014415 ___endstdio 00415415 f LIBC:fflush.obj - 0001:00014429 __isatty 00415429 f LIBC:isatty.obj - 0001:00014443 _wctomb 00415443 f LIBC:wctomb.obj - 0001:000144bc __aulldiv 004154bc f LIBC:ulldiv.obj - 0001:0001451c __aullrem 0041551c f LIBC:ullrem.obj - 0001:00014586 __flsbuf 00415586 f LIBC:_flsbuf.obj - 0001:00014692 __heap_addblock 00415692 f LIBC:heapadd.obj - 0001:00014949 ___crtGetStringTypeA 00415949 f LIBC:aw_str.obj - 0001:00014ac0 ___crtLCMapStringA 00415ac0 f LIBC:aw_map.obj - 0001:00014d1f ___addl 00415d1f f LIBC:mantold.obj - 0001:00014d42 ___add_12 00415d42 f LIBC:mantold.obj - 0001:00014da0 ___shl_12 00415da0 f LIBC:mantold.obj - 0001:00014dde ___shr_12 00415dde f LIBC:mantold.obj - 0001:00014e11 ___mtold12 00415e11 f LIBC:mantold.obj - 0001:00014ef5 ___strgtold12 00415ef5 f LIBC:strgtold.obj - 0001:00015534 _$I10_OUTPUT 00416534 f LIBC:x10fout.obj - 0001:0001586a __commit 0041686a f LIBC:commit.obj - 0001:000158b7 __write 004168b7 f LIBC:write.obj - 0001:00015a50 __fcloseall 00416a50 f LIBC:closeall.obj - 0001:00015a81 __lseek 00416a81 f LIBC:lseek.obj - 0001:00015af6 __getbuf 00416af6 f LIBC:_getbuf.obj - 0001:00015b41 __heap_findaddr 00416b41 f LIBC:findaddr.obj - 0001:00015bab _calloc 00416bab f LIBC:calloc.obj - 0001:00015be5 ___set_invalid_mb_chars 00416be5 f LIBC:setmbval.obj - 0001:00015c14 _strncpy 00416c14 f LIBC:strncpy.obj - 0001:00015c38 ___ld12mul 00416c38 f LIBC:tenpow.obj - 0001:00015e78 ___multtenpow12 00416e78 f LIBC:tenpow.obj - 0001:00015eed __free_osfhnd 00416eed f LIBC:osfinfo.obj - 0001:00015f5a __get_osfhandle 00416f5a f LIBC:osfinfo.obj - 0001:00015f92 __dosmaperr 00416f92 f LIBC:dosmap.obj - 0001:00015ffb _fclose 00416ffb f LIBC:fclose.obj - 0001:00016057 __close 00417057 f LIBC:close.obj - 0001:000160ed __freebuf 004170ed f LIBC:_freebuf.obj - 0001:00016126 _RtlUnwind@16 00417126 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00418000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00418018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00418030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 00418038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 00418050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 00418070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 004180a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 00418138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 00418240 utilstr.obj - 0002:00000350 ?_pcflFirst@CFL@@0PAV1@A 00418350 chunk.obj - 0002:00000378 ?_pfilFirst@FIL@@1PAV1@A 00418378 file.obj - 0002:00000380 ?_mutxList@FIL@@1VMUTX@@A 00418380 file.obj - 0002:000003a8 ?_fniTemp@@3VFNI@@A 004183a8 fniwin.obj - 0002:00000680 __heap_descpages 00418680 - 0002:00000690 __heap_regions 00418690 - 0002:00000990 ___onexitend 00418990 - 0002:00000994 ___onexitbegin 00418994 - 0002:00000998 __acmdln 00418998 - 0002:000009a0 __bufin 004189a0 - 0003:00000058 ??_7KCDC@@6B@ 0041a058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 0041a078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 0041a090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 0041a0a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 0041a0d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 0041a0f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 0041a108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 0041a120 utilstr.obj - 0003:00000138 ??_7CFL@@6B@ 0041a138 chunk.obj - 0003:00000150 ??_7CGE@@6B@ 0041a150 chunk.obj - 0003:00000168 ??_7CODM@@6B@ 0041a168 codec.obj - 0003:00000198 ??_7FIL@@6B@ 0041a198 file.obj - 0003:000001b0 ??_7BLCK@@6B@ 0041a1b0 file.obj - 0003:000001c8 ??_7MSFIL@@6B@ 0041a1c8 file.obj - 0003:000001e8 ??_7FNI@@6B@ 0041a1e8 fniwin.obj - 0003:00000200 ??_7GRPB@@6B@ 0041a200 groups.obj - 0003:00000228 ??_7GLB@@6B@ 0041a228 groups.obj - 0003:00000258 ??_7GL@@6B@ 0041a258 groups.obj - 0003:00000288 ??_7GGB@@6B@ 0041a288 groups.obj - 0003:000002b8 ??_7GG@@6B@ 0041a2b8 groups.obj - 0003:000002e8 ??_7AG@@6B@ 0041a2e8 groups.obj - 0003:00000318 ??_7GSTB@@6B@ 0041a318 groups2.obj - 0003:00000348 ??_7GST@@6B@ 0041a348 groups2.obj - 0003:00000378 ??_7BSF@@6B@ 0041a378 stream.obj - 0003:000003a0 ??_7CHSE@@6B@ 0041a3a0 chse.obj - 0003:000003b8 ??_7MSSIO@@6B@ 0041a3b8 mssio.obj - 0003:00000408 ___lookuptable 0041a408 LIBC:output.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 0041b000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 0041b004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 0041b008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0041b00c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 0041b010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 0041b118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0041b11c file.obj - 0004:00000120 ?vftgTemp@@3JA 0041b120 fniwin.obj - 0004:00000128 ??_C@_00A@?$AA@ 0041b128 fniwin.obj - 0004:0000012c ??_C@_08GBDA@Temp?$CF04x?$AA@ 0041b12c fniwin.obj - 0004:00000138 ?_szPoundLine@@3QADA 0041b138 lex.obj - 0004:00000140 ?_mpchgrfct@LEXB@@1QAGA 0041b140 lex.obj - 0004:00000240 ?_rgtt@@3QAFA 0041b240 lex.obj - 0004:00000300 ?_rgttDouble@@3QAFA 0041b300 lex.obj - 0004:000003b0 ?_rgttEqual@@3QAFA 0041b3b0 lex.obj - 0004:00000468 ?_pszOom@@3PADA 0041b468 scrcom.obj - 0004:0000046c ?_pszSyntax@@3PADA 0041b46c scrcom.obj - 0004:00000470 ?_rgszop@@3QAUSZOP@@A 0041b470 scrcom.obj - 0004:00000650 ?_rgarop@@3QAUAROP@@A 0041b650 scrcom.obj - 0004:000008c0 ?_rgpszKey@@3QAPADA 0041b8c0 scrcom.obj - 0004:000008e0 ?_rgtomeExp@@3QAUTOME@@A 0041b8e0 scrcom.obj - 0004:00000b40 ?_rgtomeOp@@3QAUTOME@@A 0041bb40 scrcom.obj - 0004:00000c04 ??_C@_08HOLA@Continue?$AA@ 0041bc04 scrcom.obj - 0004:00000c10 ??_C@_05EABD@Break?$AA@ 0041bc10 scrcom.obj - 0004:00000c18 ??_C@_05NNJC@While?$AA@ 0041bc18 scrcom.obj - 0004:00000c20 ??_C@_03HPMG@End?$AA@ 0041bc20 scrcom.obj - 0004:00000c24 ??_C@_04CCEF@Else?$AA@ 0041bc24 scrcom.obj - 0004:00000c2c ??_C@_04CPFE@Elif?$AA@ 0041bc2c scrcom.obj - 0004:00000c34 ??_C@_02BAJ@If?$AA@ 0041bc34 scrcom.obj - 0004:00000c38 ??_C@_04POBJ@Goto?$AA@ 0041bc38 scrcom.obj - 0004:00000c40 ??_C@_06GDJA@IfGoto?$AA@ 0041bc40 scrcom.obj - 0004:00000c48 ??_C@_0L@KPKB@CopySubStr?$AA@ 0041bc48 scrcom.obj - 0004:00000c54 ??_C@_06KDAM@LenStr?$AA@ 0041bc54 scrcom.obj - 0004:00000c5c ??_C@_0L@ICIJ@ConcatStrs?$AA@ 0041bc5c scrcom.obj - 0004:00000c68 ??_C@_08HOLI@StrToNum?$AA@ 0041bc68 scrcom.obj - 0004:00000c74 ??_C@_08PBFD@NumToStr?$AA@ 0041bc74 scrcom.obj - 0004:00000c80 ??_C@_09JFKG@ScaleTime?$AA@ 0041bc80 scrcom.obj - 0004:00000c8c ??_C@_09KOLA@MergeStrs?$AA@ 0041bc8c scrcom.obj - 0004:00000c98 ??_C@_07MHIA@NukeStr?$AA@ 0041bc98 scrcom.obj - 0004:00000ca0 ??_C@_07ELLC@MoveStr?$AA@ 0041bca0 scrcom.obj - 0004:00000ca8 ??_C@_07PCEE@CopyStr?$AA@ 0041bca8 scrcom.obj - 0004:00000cb0 ??_C@_05PFIH@Pause?$AA@ 0041bcb0 scrcom.obj - 0004:00000cb8 ??_C@_05LKIE@Match?$AA@ 0041bcb8 scrcom.obj - 0004:00000cc0 ??_C@_08HGHE@NextCard?$AA@ 0041bcc0 scrcom.obj - 0004:00000ccc ??_C@_0M@GGGO@ShuffleList?$AA@ 0041bccc scrcom.obj - 0004:00000cd8 ??_C@_07MFK@Shuffle?$AA@ 0041bcd8 scrcom.obj - 0004:00000ce0 ??_C@_09CAHB@SetReturn?$AA@ 0041bce0 scrcom.obj - 0004:00000cec ??_C@_06JCBD@Return?$AA@ 0041bcec scrcom.obj - 0004:00000cf4 ??_C@_04LKDK@Exit?$AA@ 0041bcf4 scrcom.obj - 0004:00000cfc ??_C@_02DNIN@Go?$AA@ 0041bcfc scrcom.obj - 0004:00000d00 ??_C@_04HAFI@GoNz?$AA@ 0041bd00 scrcom.obj - 0004:00000d08 ??_C@_03JNBL@GoZ?$AA@ 0041bd08 scrcom.obj - 0004:00000d0c ??_C@_04PFCA@GoLe?$AA@ 0041bd0c scrcom.obj - 0004:00000d14 ??_C@_04HLIL@GoGe?$AA@ 0041bd14 scrcom.obj - 0004:00000d1c ??_C@_04PGMH@GoLt?$AA@ 0041bd1c scrcom.obj - 0004:00000d24 ??_C@_04HIGM@GoGt?$AA@ 0041bd24 scrcom.obj - 0004:00000d2c ??_C@_04NIHF@GoNe?$AA@ 0041bd2c scrcom.obj - 0004:00000d34 ??_C@_04FFPC@GoEq?$AA@ 0041bd34 scrcom.obj - 0004:00000d3c ??_C@_06ININ@Select?$AA@ 0041bd3c scrcom.obj - 0004:00000d44 ??_C@_07KEJC@RndList?$AA@ 0041bd44 scrcom.obj - 0004:00000d4c ??_C@_07OONJ@PopList?$AA@ 0041bd4c scrcom.obj - 0004:00000d54 ??_C@_07GBJG@DupList?$AA@ 0041bd54 scrcom.obj - 0004:00000d5c ??_C@_03JCDI@Rev?$AA@ 0041bd5c scrcom.obj - 0004:00000d60 ??_C@_03FPBH@Rot?$AA@ 0041bd60 scrcom.obj - 0004:00000d64 ??_C@_04BCL@Swap?$AA@ 0041bd64 scrcom.obj - 0004:00000d6c ??_C@_03FBGG@Pop?$AA@ 0041bd6c scrcom.obj - 0004:00000d70 ??_C@_03MKPO@Dup?$AA@ 0041bd70 scrcom.obj - 0004:00000d74 ??_C@_02LCLA@Le?$AA@ 0041bd74 scrcom.obj - 0004:00000d78 ??_C@_02DMBL@Ge?$AA@ 0041bd78 scrcom.obj - 0004:00000d7c ??_C@_02LBFH@Lt?$AA@ 0041bd7c scrcom.obj - 0004:00000d80 ??_C@_02DPPM@Gt?$AA@ 0041bd80 scrcom.obj - 0004:00000d84 ??_C@_02JPOF@Ne?$AA@ 0041bd84 scrcom.obj - 0004:00000d88 ??_C@_02BCGC@Eq?$AA@ 0041bd88 scrcom.obj - 0004:00000d8c ??_C@_04ENMP@LNot?$AA@ 0041bd8c scrcom.obj - 0004:00000d94 ??_C@_04HPKA@LXor?$AA@ 0041bd94 scrcom.obj - 0004:00000d9c ??_C@_04LILD@BNot?$AA@ 0041bd9c scrcom.obj - 0004:00000da4 ??_C@_04IKNM@BXor?$AA@ 0041bda4 scrcom.obj - 0004:00000dac ??_C@_03FEFN@BOr?$AA@ 0041bdac scrcom.obj - 0004:00000db0 ??_C@_04CJLN@BAnd?$AA@ 0041bdb0 scrcom.obj - 0004:00000db8 ??_C@_06NIPH@MulDiv?$AA@ 0041bdb8 scrcom.obj - 0004:00000dc0 ??_C@_03OAMN@Rnd?$AA@ 0041bdc0 scrcom.obj - 0004:00000dc4 ??_C@_03PGJO@Dec?$AA@ 0041bdc4 scrcom.obj - 0004:00000dc8 ??_C@_03PCMM@Inc?$AA@ 0041bdc8 scrcom.obj - 0004:00000dcc ??_C@_03GIFK@Neg?$AA@ 0041bdcc scrcom.obj - 0004:00000dd0 ??_C@_03CEPH@Abs?$AA@ 0041bdd0 scrcom.obj - 0004:00000dd4 ??_C@_03PJNJ@Mod?$AA@ 0041bdd4 scrcom.obj - 0004:00000dd8 ??_C@_03LANL@Div?$AA@ 0041bdd8 scrcom.obj - 0004:00000ddc ??_C@_03FPMJ@Mul?$AA@ 0041bddc scrcom.obj - 0004:00000de0 ??_C@_03KJKL@Sub?$AA@ 0041bde0 scrcom.obj - 0004:00000de4 ??_C@_03KPJN@Add?$AA@ 0041bde4 scrcom.obj - 0004:00000de8 ??_C@_0N@GABD@Syntax?5error?$AA@ 0041bde8 scrcom.obj - 0004:00000df8 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 0041bdf8 scrcom.obj - 0004:00000e08 ??_C@_02KKOH@?$CC?5?$AA@ 0041be08 scrcom.obj - 0004:00000e0c ??_C@_0BF@PNMJ@Dumping?5chunk?5failed?$AA@ 0041be0c chse.obj - 0004:00000e24 ??_C@_09DECH@PREPACKED?$AA@ 0041be24 chse.obj - 0004:00000e30 ??_C@_02OGOH@?8?5?$AA@ 0041be30 chse.obj - 0004:00000e34 ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 0041be34 chse.obj - 0004:00000e3c ??_C@_07POOB@0x?$CF02x?5?$AA@ 0041be3c chse.obj - 0004:00000e44 ??_C@_05GLIP@?5?5?5?5?5?$AA@ 0041be44 chse.obj - 0004:00000e4c ??_C@_04EHOP@BYTE?$AA@ 0041be4c chse.obj - 0004:00000e54 ??_C@_05BME@?7ITEM?$AA@ 0041be54 chse.obj - 0004:00000e5c ??_C@_05GJCF@?7FREE?$AA@ 0041be5c chse.obj - 0004:00000e64 ??_C@_06ILO@?7?7?$CC?$CFs?$CC?$AA@ 0041be64 chse.obj - 0004:00000e6c ??_C@_08DDHM@?7GST?$CI?$CFd?$CJ?$AA@ 0041be6c chse.obj - 0004:00000e78 ??_C@_08NEAB@?7AST?$CI?$CFd?$CJ?$AA@ 0041be78 chse.obj - 0004:00000e84 ??_C@_02DILL@?$CFs?$AA@ 0041be84 chelpdmp.obj - 0004:00000e88 ??_C@_0CJ@HHNJ@Usage?3?5?5chelpdmp?5?$DMsrcFile?$DO?5?$FL?$DMdst@ 0041be88 chelpdmp.obj - 0004:00000eb4 ??_C@_0M@JNPO@Dump?5failed?$AA@ 0041beb4 chelpdmp.obj - 0004:00000ec0 ??_C@_0P@NCJB@Memory?5failure?$AA@ 0041bec0 chelpdmp.obj - 0004:00000ed0 ??_C@_0CB@NPNL@Couldn?8t?5create?5destination?5file@ 0041bed0 chelpdmp.obj - 0004:00000ef4 ??_C@_0BE@FMFE@Too?5many?5file?5names?$AA@ 0041bef4 chelpdmp.obj - 0004:00000f08 ??_C@_0BK@OJAK@Error?3?5Couldn?8t?5open?5?$CFs?6?6?$AA@ 0041bf08 chelpdmp.obj - 0004:00000f24 ??_C@_0BL@FFAM@Error?3?5Bad?5file?5name?3?5?$CFs?6?6?$AA@ 0041bf24 chelpdmp.obj - 0004:00000f40 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0041bf40 chelpdmp.obj - 0004:00000f7c ??_C@_0EH@HDIJ@?6Microsoft?5?$CIR?$CJ?5Chunky?5Help?5Dump?5@ 0041bf7c chelpdmp.obj - 0004:00000fc4 ??_C@_0BK@OJPL@?$CDendif?5?1?1?$CBNO_HELP_SYMBOLS?$AA@ 0041bfc4 chelpexp.obj - 0004:00000fe0 ??_C@_0BI@JBLA@?$CDifndef?5NO_HELP_SYMBOLS?$AA@ 0041bfe0 chelpexp.obj - 0004:00000ff8 ??_C@_08CEGN@ENDCHUNK?$AA@ 0041bff8 chelpexp.obj - 0004:00001004 ??_C@_0BA@PCFC@?50x?$CFx?50x?$CFx?50x?$CFx?$AA@ 0041c004 chelpexp.obj - 0004:00001014 ??_C@_0N@DGEF@?7BO?5OSK?5LONG?$AA@ 0041c014 chelpexp.obj - 0004:00001024 ??_C@_0BL@NJBI@?$CDendif?5?1?1HELP_SINGLE_CHUNK?$AA@ 0041c024 chelpexp.obj - 0004:00001040 ??_C@_07KLIJ@SUBFILE?$AA@ 0041c040 chelpexp.obj - 0004:00001048 ??_C@_0DI@INKG@CHUNK?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?5__HELP_@ 0041c048 chelpexp.obj - 0004:00001080 ??_C@_0BB@EFDA@SET?5_help_?$CFx_?$CFx?$DN?$AA@ 0041c080 chelpexp.obj - 0004:00001094 ??_C@_0CB@BLLE@?$CDdefine?5__HELP_PACK2?5__HELP_PACK@ 0041c094 chelpexp.obj - 0004:000010b8 ??_C@_0BF@CHGJ@?$CDdefine?5__HELP_PACK2?$AA@ 0041c0b8 chelpexp.obj - 0004:000010d0 ??_C@_0BJ@GMCJ@?$CDifdef?5HELP_SINGLE_CHUNK?$AA@ 0041c0d0 chelpexp.obj - 0004:000010ec ??_C@_0BE@NHCM@?$CDdefine?5__HELP_PACK?$AA@ 0041c0ec chelpexp.obj - 0004:00001100 ??_C@_0BJ@NJLM@?$CDdefine?5__HELP_PACK?5PACK?$AA@ 0041c100 chelpexp.obj - 0004:0000111c ??_C@_0BB@GPGI@?$CDifdef?5PACK_HELP?$AA@ 0041c11c chelpexp.obj - 0004:00001130 ??_C@_0CD@DBDP@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?5stu@ 0041c130 chelpexp.obj - 0004:00001154 ??_C@_0BN@PCDE@?$CDdefine?5__HELP_SYMBOL?$CIstuff?$CJ?$AA@ 0041c154 chelpexp.obj - 0004:00001174 ??_C@_0BH@GHBL@?$CDifdef?5NO_HELP_SYMBOLS?$AA@ 0041c174 chelpexp.obj - 0004:0000118c ??_C@_06HHGP@?$CDendif?$AA@ 0041c18c chelpexp.obj - 0004:00001194 ??_C@_0BP@ONNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5name?$AA@ 0041c194 chelpexp.obj - 0004:000011b4 ??_C@_05GMMC@?$CDelse?$AA@ 0041c1b4 chelpexp.obj - 0004:000011bc ??_C@_0BN@DPNJ@?$CDdefine?5__HELP_NAME?$CIname?$CJ?5?$CC?$CC?$AA@ 0041c1bc chelpexp.obj - 0004:000011dc ??_C@_0BF@EKJL@?$CDifdef?5NO_HELP_NAMES?$AA@ 0041c1dc chelpexp.obj - 0004:000011f4 ??_C@_0BE@HDN@?$CDundef?5__HELP_PACK2?$AA@ 0041c1f4 chelpexp.obj - 0004:00001208 ??_C@_0BD@IDIM@?$CDundef?5__HELP_PACK?$AA@ 0041c208 chelpexp.obj - 0004:0000121c ??_C@_0BF@NAGJ@?$CDundef?5__HELP_SYMBOL?$AA@ 0041c21c chelpexp.obj - 0004:00001234 ??_C@_0BD@EKLA@?$CDundef?5__HELP_NAME?$AA@ 0041c234 chelpexp.obj - 0004:00001248 ??_C@_05OKLJ@WINBO?$AA@ 0041c248 chelpexp.obj - 0004:00001250 ??_C@_05JOF@MACBO?$AA@ 0041c250 chelpexp.obj - 0004:00001258 ??_C@_04EJID@PACK?$AA@ 0041c258 chelpexp.obj - 0004:00001260 ??_C@_0CA@EOFJ@PARENT?$CI?8?$CFf?8?0?5_help_?$CFx_?$CFx?0?50x?$CFx?$CJ?$AA@ 0041c260 chelpexp.obj - 0004:00001280 ??_C@_0DH@PBIG@CHUNK?$CI?8?$CFf?8?0?5_help_cno?0?5__HELP_NA@ 0041c280 chelpexp.obj - 0004:000012b8 ??_C@_0BK@IAEE@SET?5_help_?$CFx_?$CFx?$DN_help_cno?$AA@ 0041c2b8 chelpexp.obj - 0004:000012d4 ??_C@_0BA@MCEC@SET?5_help_cno?$CL?$CL?$AA@ 0041c2d4 chelpexp.obj - 0004:000012e4 ??_C@_05DOL@?7?7VAR?$AA@ 0041c2e4 chelpexp.obj - 0004:000012ec ??_C@_02GDLA@?$DL?5?$AA@ 0041c2ec chelpexp.obj - 0004:000012f0 ??_C@_0BF@KPBE@?5__HELP_SYMBOL?$CI?5STN?5?$AA@ 0041c2f0 chelpexp.obj - 0004:00001308 ??_C@_04BKHJ@0x?$CFx?$AA@ 0041c308 chelpexp.obj - 0004:00001310 ??_C@_0BB@ODIA@?7?7VAR?5LONG?5?8?$CFf?8?5?$AA@ 0041c310 chelpexp.obj - 0004:00001324 ??_C@_0CI@MFKF@?7?7VAR?5LONG?5?8?$CFf?8?5?$CFs?5__HELP_SYMBOL@ 0041c324 chelpexp.obj - 0004:0000134c ??_C@_03JPGF@?$CC?5?$CJ?$AA@ 0041c34c chelpexp.obj - 0004:00001350 ??_C@_0CL@LBJB@?7?7VAR?5BYTE?5?$CFd?5LONG?5?$CFs?5__HELP_SYM@ 0041c350 chelpexp.obj - 0004:0000137c ??_C@_0BA@BFNE@?7ITEM?5LONG?50x?$CFx?$AA@ 0041c37c chelpexp.obj - 0004:0000138c ??_C@_05JMLE@AG?$CI4?$CJ?$AA@ 0041c38c chelpexp.obj - 0004:00001394 ??_C@_05BOND@?50x?$CFx?$AA@ 0041c394 chelpexp.obj - 0004:0000139c ??_C@_03HHKO@?$CFs?6?$AA@ 0041c39c mssio.obj - 0004:00001500 __fltused 0041c500 LIBC:fpinit.obj - 0004:00001504 __ldused 0041c504 LIBC:fpinit.obj - 0004:00001508 ___fastflag 0041c508 LIBC:fpinit.obj - 0004:0000150c __adjust_fdiv 0041c50c LIBC:fpinit.obj - 0004:00001510 __FPinit 0041c510 LIBC:fpinit.obj - 0004:00001514 __FPmtinit 0041c514 LIBC:fpinit.obj - 0004:00001518 __FPmtterm 0041c518 LIBC:fpinit.obj - 0004:00001520 __iob 0041c520 LIBC:_file.obj - 0004:000017a0 __lastiob 0041c7a0 LIBC:_file.obj - 0004:000017a4 __aenvptr 0041c7a4 LIBC:crt0.obj - 0004:000017a8 __wenvptr 0041c7a8 LIBC:crt0.obj - 0004:000017ac __aexit_rtn 0041c7ac LIBC:crt0.obj - 0004:000017b0 _errno 0041c7b0 LIBC:crt0dat.obj - 0004:000017b4 __doserrno 0041c7b4 LIBC:crt0dat.obj - 0004:000017b8 __umaskval 0041c7b8 LIBC:crt0dat.obj - 0004:000017bc __osver 0041c7bc LIBC:crt0dat.obj - 0004:000017c0 __winver 0041c7c0 LIBC:crt0dat.obj - 0004:000017c4 __winmajor 0041c7c4 LIBC:crt0dat.obj - 0004:000017c8 __winminor 0041c7c8 LIBC:crt0dat.obj - 0004:000017cc ___argc 0041c7cc LIBC:crt0dat.obj - 0004:000017d0 ___argv 0041c7d0 LIBC:crt0dat.obj - 0004:000017d4 ___wargv 0041c7d4 LIBC:crt0dat.obj - 0004:000017d8 __environ 0041c7d8 LIBC:crt0dat.obj - 0004:000017dc ___initenv 0041c7dc LIBC:crt0dat.obj - 0004:000017e0 __wenviron 0041c7e0 LIBC:crt0dat.obj - 0004:000017e4 ___winitenv 0041c7e4 LIBC:crt0dat.obj - 0004:000017e8 __pgmptr 0041c7e8 LIBC:crt0dat.obj - 0004:000017ec __wpgmptr 0041c7ec LIBC:crt0dat.obj - 0004:000017f0 __exitflag 0041c7f0 LIBC:crt0dat.obj - 0004:000017f4 __C_Termination_Done 0041c7f4 LIBC:crt0dat.obj - 0004:000017f8 __pnhHeap 0041c7f8 LIBC:malloc.obj - 0004:00001860 __cfltcvt_tab 0041c860 LIBC:cmiscdat.obj - 0004:00001890 __stdbuf 0041c890 LIBC:_sftbuf.obj - 0004:000018a0 ___nullstring 0041c8a0 LIBC:output.obj - 0004:000018b4 ___wnullstring 0041c8b4 LIBC:output.obj - 0004:000018b8 __XcptActTab 0041c8b8 LIBC:winxfltr.obj - 0004:00001930 __First_FPE_Indx 0041c930 LIBC:winxfltr.obj - 0004:00001934 __Num_FPE 0041c934 LIBC:winxfltr.obj - 0004:00001938 __XcptActTabCount 0041c938 LIBC:winxfltr.obj - 0004:0000193c __fpecode 0041c93c LIBC:winxfltr.obj - 0004:00001940 __pxcptinfoptrs 0041c940 LIBC:winxfltr.obj - 0004:00001948 __mbctype 0041c948 LIBC:mbctype.obj - 0004:00001a4c ___mbcodepage 0041ca4c LIBC:mbctype.obj - 0004:00001a50 ___mblcid 0041ca50 LIBC:mbctype.obj - 0004:00001a58 ___mbulinfo 0041ca58 LIBC:mbctype.obj - 0004:00001b60 __nhandle 0041cb60 LIBC:ioinit.obj - 0004:00001b68 __osfile 0041cb68 LIBC:ioinit.obj - 0004:00001ba8 __osfhnd 0041cba8 LIBC:ioinit.obj - 0004:00001ca8 __pipech 0041cca8 LIBC:ioinit.obj - 0004:00001ce8 __heap_desc 0041cce8 LIBC:heapinit.obj - 0004:00001cfc __heap_resetsize 0041ccfc LIBC:heapinit.obj - 0004:00001d00 __amblksiz 0041cd00 LIBC:heapinit.obj - 0004:00001d04 __heap_regionsize 0041cd04 LIBC:heapinit.obj - 0004:00001d08 __heap_maxregsize 0041cd08 LIBC:heapinit.obj - 0004:00001f78 __adbgmsg 0041cf78 LIBC:crt0msg.obj - 0004:00001f7c __newmode 0041cf7c LIBC:_newmode.obj - 0004:00001f80 ___mb_cur_max 0041cf80 LIBC:nlsdata1.obj - 0004:00001f88 ___decimal_point 0041cf88 LIBC:nlsdata1.obj - 0004:00001f8c ___decimal_point_length 0041cf8c LIBC:nlsdata1.obj - 0004:00001f90 __pctype 0041cf90 LIBC:ctype.obj - 0004:00001f94 __pwctype 0041cf94 LIBC:ctype.obj - 0004:00001f98 __ctype 0041cf98 LIBC:ctype.obj - 0004:000021d0 __cflush 0041d1d0 LIBC:fflush.obj - 0004:00002278 ___lc_handle 0041d278 LIBC:nlsdata2.obj - 0004:00002290 ___lc_codepage 0041d290 LIBC:nlsdata2.obj - 0004:000022b4 ___invalid_mb_chars 0041d2b4 LIBC:setmbval.obj - 0004:00002428 __pow10pos 0041d428 LIBC:constpow.obj - 0004:00002588 __pow10neg 0041d588 LIBC:constpow.obj - 0004:000026e4 ___xc_a 0041d6e4 LIBC:crt0init.obj - 0004:00002754 ___xc_z 0041d754 LIBC:crt0init.obj - 0004:00002758 ___xi_a 0041d758 LIBC:crt0init.obj - 0004:00002764 ___xi_z 0041d764 LIBC:crt0init.obj - 0004:00002768 ___xp_a 0041d768 LIBC:crt0init.obj - 0004:00002770 ___xp_z 0041d770 LIBC:crt0init.obj - 0004:00002774 ___xt_a 0041d774 LIBC:crt0init.obj - 0004:00002778 ___xt_z 0041d778 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0041e000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0041e014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0041e028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041e03c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 0041e050 kernel32:KERNEL32.dll - 0005:00000120 __imp__DeleteCriticalSection@4 0041e120 kernel32:KERNEL32.dll - 0005:00000124 __imp__GlobalAlloc@8 0041e124 kernel32:KERNEL32.dll - 0005:00000128 __imp__GlobalFree@4 0041e128 kernel32:KERNEL32.dll - 0005:0000012c __imp__LeaveCriticalSection@4 0041e12c kernel32:KERNEL32.dll - 0005:00000130 __imp__EnterCriticalSection@4 0041e130 kernel32:KERNEL32.dll - 0005:00000134 __imp__GlobalReAlloc@12 0041e134 kernel32:KERNEL32.dll - 0005:00000138 __imp__CompareStringA@24 0041e138 kernel32:KERNEL32.dll - 0005:0000013c __imp__WideCharToMultiByte@32 0041e13c kernel32:KERNEL32.dll - 0005:00000140 __imp__CreateFileA@28 0041e140 kernel32:KERNEL32.dll - 0005:00000144 __imp__CloseHandle@4 0041e144 kernel32:KERNEL32.dll - 0005:00000148 __imp__DeleteFileA@4 0041e148 kernel32:KERNEL32.dll - 0005:0000014c __imp__FlushFileBuffers@4 0041e14c kernel32:KERNEL32.dll - 0005:00000150 __imp__SetFilePointer@16 0041e150 kernel32:KERNEL32.dll - 0005:00000154 __imp__SetEndOfFile@4 0041e154 kernel32:KERNEL32.dll - 0005:00000158 __imp__ReadFile@20 0041e158 kernel32:KERNEL32.dll - 0005:0000015c __imp__WriteFile@20 0041e15c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetFullPathNameA@16 0041e160 kernel32:KERNEL32.dll - 0005:00000164 __imp__GetTempPathA@8 0041e164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetLastError@0 0041e168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetFileAttributesA@4 0041e16c kernel32:KERNEL32.dll - 0005:00000170 __imp__SetStdHandle@8 0041e170 kernel32:KERNEL32.dll - 0005:00000174 __imp__InitializeCriticalSection@4 0041e174 kernel32:KERNEL32.dll - 0005:00000178 __imp__LoadLibraryA@4 0041e178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetProcAddress@8 0041e17c kernel32:KERNEL32.dll - 0005:00000180 __imp__MultiByteToWideChar@24 0041e180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetModuleHandleA@4 0041e184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetStartupInfoA@4 0041e188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetFileType@4 0041e18c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetStdHandle@4 0041e190 kernel32:KERNEL32.dll - 0005:00000194 __imp__VirtualAlloc@16 0041e194 kernel32:KERNEL32.dll - 0005:00000198 __imp__VirtualFree@12 0041e198 kernel32:KERNEL32.dll - 0005:0000019c __imp__GetEnvironmentStrings@0 0041e19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetCommandLineA@0 0041e1a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__GetVersion@0 0041e1a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__ExitProcess@4 0041e1a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__GetOEMCP@0 0041e1ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__RtlUnwind@16 0041e1b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__UnhandledExceptionFilter@4 0041e1b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__GetModuleFileNameA@12 0041e1b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__GetACP@0 0041e1bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__GetCPInfo@8 0041e1c0 kernel32:KERNEL32.dll - 0005:000001c4 \177KERNEL32_NULL_THUNK_DATA 0041e1c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__CharUpperBuffA@8 0041e1c8 user32:USER32.dll - 0005:000001cc \177USER32_NULL_THUNK_DATA 0041e1cc user32:USER32.dll - 0005:000001d0 __imp__timeGetTime@0 0041e1d0 winmm:WINMM.dll - 0005:000001d4 \177WINMM_NULL_THUNK_DATA 0041e1d4 winmm:WINMM.dll - 0005:000001d8 \177comdlg32_NULL_THUNK_DATA 0041e1d8 comdlg32:comdlg32.dll - - entry point at 0001:000116be - - Static symbols - - 0001:00010750 _$$8000 00411750 f mssio.obj - 0001:00010780 _$$1000 00411780 f mssio.obj - 0001:0000fc80 _$$1000 00410c80 f chelpexp.obj - 0001:0000fc90 ?_FWriteHelpChunk@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 00410c90 f chelpexp.obj - 0001:0000fe80 ?_FWriteHelpPropAg@@YGHPAVCFL@@PAVCHSE@@PAUKID@@PAUCKI@@@Z 00410e80 f chelpexp.obj - 0001:00010580 ?_AppendHelpStnLw@@YGXPAVSTN@@PAVGST@@JJ@Z 00411580 f chelpexp.obj - 0001:00010610 _$$d200 00411610 f chelpexp.obj - 0001:00010620 _$$8000 00411620 f chelpexp.obj - 0001:0000f580 _$$8000 00410580 f chelpdmp.obj - 0001:0000f590 _$$1000 00410590 f chelpdmp.obj - 0001:0000efa0 _$$1000 0040ffa0 f chse.obj - 0001:0000f2f0 _$$8000 004102f0 f chse.obj - 0001:0000eda0 _$$1000 0040fda0 f screxe.obj - 0001:0000edb0 _$$8000 0040fdb0 f screxe.obj - 0001:0000ed80 _$$1000 0040fd80 f scrcom.obj - 0001:0000ed90 _$$8000 0040fd90 f scrcom.obj - 0001:0000e4c0 _$$1000 0040f4c0 f stream.obj - 0001:0000ed50 _$$8000 0040fd50 f stream.obj - 0001:0000e460 _$$1000 0040f460 f lex.obj - 0001:0000e470 _$$8000 0040f470 f lex.obj - 0001:0000dd10 _$$1000 0040ed10 f groups2.obj - 0001:0000e410 _$$8000 0040f410 f groups2.obj - 0001:0000c340 _$$1000 0040d340 f groups.obj - 0001:0000d8b0 _$$8000 0040e8b0 f groups.obj - 0001:0000b870 _$$8000 0040c870 f fniwin.obj - 0001:0000ba40 _$$1000 0040ca40 f fniwin.obj - 0001:0000bfd0 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040cfd0 f fniwin.obj - 0001:0000c070 _$$9000 0040d070 f fniwin.obj - 0001:0000c080 _$$a000 0040d080 f fniwin.obj - 0001:0000c090 _$$b000 0040d090 f fniwin.obj - 0001:0000b380 ?_HfileOpen@@YGPAXPADHK@Z 0040c380 f filewin.obj - 0001:0000b650 _$$1000 0040c650 f filewin.obj - 0001:0000b860 _$$8000 0040c860 f filewin.obj - 0001:0000a4c0 _$$8000 0040b4c0 f file.obj - 0001:0000a780 _$$1000 0040b780 f file.obj - 0001:0000a9c0 ?_FRangeIn@@YGHJJJ@Z 0040b9c0 f file.obj - 0001:0000b2f0 _$$9000 0040c2f0 f file.obj - 0001:0000b300 _$$a000 0040c300 f file.obj - 0001:0000b310 _$$b000 0040c310 f file.obj - 0001:0000a4a0 _$$1000 0040b4a0 f crf.obj - 0001:0000a4b0 _$$8000 0040b4b0 f crf.obj - 0001:000041f0 _$$1000 004051f0 f codkauai.obj - 0001:0000a490 _$$8000 0040b490 f codkauai.obj - 0001:000039a0 _$$1000 004049a0 f codec.obj - 0001:00003cd0 _$$8000 00404cd0 f codec.obj - 0001:00001e90 _$$1000 00402e90 f chunk.obj - 0001:00003690 _$$8000 00404690 f chunk.obj - 0001:00001d40 _$$8000 00402d40 f memwin.obj - 0001:00001d50 _$$1000 00402d50 f memwin.obj - 0001:00001090 _$$1000 00402090 f utilstr.obj - 0001:00001bb0 _$$8000 00402bb0 f utilstr.obj - 0001:00000d60 _$$1000 00401d60 f utilrnd.obj - 0001:00000e60 _$$8000 00401e60 f utilrnd.obj - 0001:00000b80 _$$8000 00401b80 f utilmem.obj - 0001:00000b90 _$$1000 00401b90 f utilmem.obj - 0001:00000840 _$$1000 00401840 f utilint.obj - 0001:00000970 _$$8000 00401970 f utilint.obj - 0001:00000570 _$$8000 00401570 f utilerro.obj - 0001:000007a0 _$$1000 004017a0 f utilerro.obj - 0001:000007b0 _$$9000 004017b0 f utilerro.obj - 0001:000007d0 _$$a000 004017d0 f utilerro.obj - 0001:000007e0 _$$b000 004017e0 f utilerro.obj - 0001:00000430 _$$1000 00401430 f utilcopy.obj - 0001:00000560 _$$8000 00401560 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:00014a94 _strncnt 00415a94 f LIBC:aw_map.obj - 0001:000148e0 __before 004158e0 f LIBC:heapadd.obj - 0001:000143ab _flsall 004153ab f LIBC:fflush.obj - 0001:0001391c __abstract_cw 0041491c f LIBC:ieee87.obj - 0001:000139af __hw_cw 004149af f LIBC:ieee87.obj - 0001:0001366f __heap_new_region 0041466f f LIBC:heapgrow.obj - 0001:000133cd __heap_grow_emptylist 004143cd f LIBC:heapinit.obj - 0001:00013081 _getSystemCP 00414081 f LIBC:mbctype.obj - 0001:000130bc _CPtoLCID 004140bc f LIBC:mbctype.obj - 0001:000130fb _setSBCS 004140fb f LIBC:mbctype.obj - 0001:00012eb7 _parse_cmdline 00413eb7 f LIBC:stdargv.obj - 0001:00012d29 _xcptlookup 00413d29 f LIBC:winxfltr.obj - 0001:00012b2c __unwind_handler 00413b2c f LIBC:exsup.obj - 0001:00012a2f _write_char 00413a2f f LIBC:output.obj - 0001:00012a6f _write_multi_char 00413a6f f LIBC:output.obj - 0001:00012aa0 _write_string 00413aa0 f LIBC:output.obj - 0001:00012ad7 _get_int_arg 00413ad7 f LIBC:output.obj - 0001:00012ae6 _get_int64_arg 00413ae6 f LIBC:output.obj - 0001:00012afa _get_short_arg 00413afa f LIBC:output.obj - 0001:00011eb5 __cftoe_g 00412eb5 f LIBC:cvt.obj - 0001:00011fd6 __cftof_g 00412fd6 f LIBC:cvt.obj - 0001:000120f2 __shift 004130f2 f LIBC:cvt.obj - 0001:000119be __heap_expand_block 004129be f LIBC:realloc.obj - 0001:00011829 _doexit 00412829 f LIBC:crt0dat.obj - 0001:000118a8 __initterm 004128a8 f LIBC:crt0dat.obj - -FIXUPS: 12799 1f 9 fffffed0 14 c ffffff8b 5 a fffff232 ffffff46 1e 12 44 -FIXUPS: 1184a 13 1346 9a ffffff10 fffffee9 2d f e c 3d 55 fffffdbe 16 33 -FIXUPS: 12944 d 23 23 fffffe56 12 11 11 5d 12 fffffe8a c 5 10 10 5 1c 9 -FIXUPS: 1278a 11c7 1d 1b cb 3a 37 fffff662 45 46 29 fffffa9e 21 c1 1c 48 -FIXUPS: 12dd2 31 ca 5a 28 1f 17 30 35 1d 36 47 11 2c 16 13 29 d4d 12 10 -FIXUPS: 13e9b fffffef2 15 2a 11 fffffdf5 ffffff4e fffff7c8 4c 9b 1d 6d -FIXUPS: 13469 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 14 1c 2d 1694 22 f -FIXUPS: 14afe 64 ffffff44 ffffff99 fffffe9a 17 24 fffffd3d c 75 d 96 d -FIXUPS: 1478e 32 fffffe42 ffffffae ffffff6f 18 ffffff70 d 35 25 ffffff1f -FIXUPS: 1412c b8 78 44 10 1396 1f fffffc99 b 21 42 37 2f 19 2b e fffffc72 -FIXUPS: 150b0 fffffb77 17 67 e 177 1a 1d 12 1f 20 d f 13 17 13 22 5b 16 -FIXUPS: 14fc0 d92 14 18 18 b0 9 e 9 29 4d fffffc51 c2 75 c 1e 77 c fffffd3a -FIXUPS: 15a83 fffffc2c 10 10 18 a1 3e 24 d 41 34 fffffd88 d 2b 1aa7 ffffff40 -FIXUPS: 1701e b 1b fffffd01 47 3e 110 fffffcde ffffff4f ffffffaf 26 ffffff87 -FIXUPS: 16910 f3 fffffe7e fffffe65 1a 65 1d 2b c 10 c fffff8cd c5 92 10e -FIXUPS: 16350 c6 4f fffeafa9 10 7 13c fffffc44 11 ee 30 5d 23 d fffffe10 -FIXUPS: 1015 11 2d c a 1e a 1f 1e 18 b 5 5 17 30 15fbf ffffff8c c d 20 -FIXUPS: 1c99 35 1b 28 27 5e 1e d 3a 15 26 2b 21 12 d fffffb9d ef 54 fffffd93 -FIXUPS: 191f 52 21 fffffbe4 1f 11 1e 5c 1b6 b 5 5 21 8dc 36 f 30 1e 28 -FIXUPS: 2261 29 15 3a 32 70 f 25b 6d 153 ce 63 49 f 2e 73 140 3c 66 fffff004 -FIXUPS: 1bc6 2f 11 1e 12 10 267c 2d 3d 3d 19 21 91 c8 47 49 2a 13 16 5b -FIXUPS: 4691 13 d 13 d ffffe50b a8 6c 51 fffff181 32 26 9 54 4b 94 11 4e -FIXUPS: 3c96 11 1a 25 5d 4e 1a 16 a0 84 48 37 2e 2c 2f 33 1b 2b 29 27 25 -FIXUPS: 4107 3c 11 1b 4b 1b 37 1c 2e 1c 34 fffff4fd b f 12 b 10 2a 39 1e -FIXUPS: 38b2 6 2c 30 24 52 a 9 19 75 60 28 6 3a 40 1d 17 16 7b 19 41 b -FIXUPS: 3c72 fffff5a3 2b 27 17 41 16 18 16 13 26 30 2c 16 16 13 39 2a 4c -FIXUPS: 3493 cc 48 51 54 52 6 70 11 1c c 18 19 15 155e ffffe084 11 2f 11 -FIXUPS: 2de4 12 88 2c 14 2c 9 b d e b f 63 4c 8 1c 22 78 1f 4d 13 13 26 -FIXUPS: 317f 17 2e 17 5b8d 3a 30 97 13 30 27 21 259d ffff9264 11 2f f 7a -FIXUPS: 480e 7f 20 b1 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 31 11 52 8 -FIXUPS: 4da8 8 11c 18 3f 1b 1c 55 11 d 81 6a 12 78 12 33 27 21 3994 1b -FIXUPS: 8b9a 52 f d 9c 73 11 32 31b5 2b 6f 23 11 b c1 e 12 29 25 2c 16 -FIXUPS: c174 21 7b 4f 2f 8 1d 10 43 b 5 5 9 d 13 d 13 d fffff140 553 2e -FIXUPS: ba54 2e 4b 36 17 27 34 1c 17 8 a a 20 50 40 28 18 40 1f 38 45 3e -FIXUPS: bdde 17 64 6 20 2b 3f 6 972 ffffec84 11 2f 11 3e 12 1e 12 22 21 -FIXUPS: b61e 14 23 14 14 25 11 18 3d 1c d 14 57 26 7 a f 2a 3e 64 ed 1308 -FIXUPS: ccbd 22 24 13 3a b 3b 1a d4 76 1d 68 34 7 70 28 34 b 5 5 17 fffff38c -FIXUPS: c461 89 9e 5e a1 aa c a4 c 2144 13 d 13 d ffffdf05 1f 11 2e 15 -FIXUPS: c994 d 2c 19 20 12 5d 26 11 24 1e 11 b 1e 82 10 28 e 2b c 24 b -FIXUPS: e42b 19 14 2f 2d 11 24 41 14 b 51 31 2e 18 40 44 17 18 11 24 93 -FIXUPS: e7e9 18 96 1a 13 d 13 d 13 d 13 fffff31b 43 b8 42 b9 44 e cd 31 -FIXUPS: dffc 11 42 55 23 85 2f 13 2d 1f aa 18 70 20 14 1d 12 19 29 a 1b -FIXUPS: e3e4 17 fffff29e 10 1e 32 d 1c 48 14 b 20 80 1d 2c 10 1b 3c 41 -FIXUPS: d95f 34 14 31 38 29 35 42 14 98 35 1e 3e 23 12 fffff667 1c 14 1c -FIXUPS: d2f6 24 6e 1e 2f 22 3b 23 38 20 1e a b 28 a b 4c 22 a b 24 a b -FIXUPS: d604 5b 6 15 b 1b60 24 48 38 30 1c 19 60 31 23 10 4a 8 d 13 d 13 -FIXUPS: f451 ffffdc84 11 2f 11 2f 11 2f 11 2f 11 2f 11 28 9 1897 11 1f -FIXUPS: eb31 e 21 12 1d 43 101 14 15 2a 10 42 55 4d 3e 4c 19 aa af 3f 20 -FIXUPS: f0ba 18 59 1a 12 26 a 4d 8ba 16 28 16 46 23 2f 40 16 24 e 1f 1b -FIXUPS: fc64 8 c a 36 2d 29 12 10 21 13 d fffff700 fffff524 11 2f 11 1e -FIXUPS: eae7 9ae 11 2e 49 6b 7d 28 2e 2c 2c 42 54 2d e 2d 3b 53 23 26 18 -FIXUPS: f8bd 11 31 1f 16 22 1c 38 21 1b 5c 21 49c 39 23 30 c 69 11 f 4f -FIXUPS: 10097 e 21 1f 11 f 27 e f 95 28 59 9 17 24 14 9 15 1c 13 d fffffaa0 -FIXUPS: fd91 624 17 16 e 17 16 28 1a 17 17 14 11 e 10 15 16 15 12 13 15 -FIXUPS: 1054f 14 1e fffff854 11 1e 8 30 8 10 67 25 148b 1a f 1f 1b a f -FIXUPS: 11405 f 15 1b a f 15 3d 17 32 f 1b a f 27 44 1e 1d 18 18 5 ffffed25 -FIXUPS: 1034e 12 3f bd6 c 1a 32 5c 14 18 3b 8 d 2c 2a 1a 37 f 1b a f 2c -FIXUPS: 11201 1a 33 1c 24 c 19 1e 25 21 c 13 17 fffff703 21 15 47 1d 5f -FIXUPS: 10b7f 3d 67 19 14 c c 4e 21 d 31 26 c 1a 32 27 16 f 35 2f 10 16 -FIXUPS: 10eb9 23 1c 57 765 3e 30 2f 21 33 ffffee0c c 9 32 16f 25 1d 19 -FIXUPS: 10810 14 16 1b 12 20 3a 18 2c c 41 4a 2d 12 15 15 15 15 diff --git a/kauai/OBJ/WINS/CHMERGE.MAP b/kauai/OBJ/WINS/CHMERGE.MAP deleted file mode 100644 index 7e6d24ad..00000000 --- a/kauai/OBJ/WINS/CHMERGE.MAP +++ /dev/null @@ -1,739 +0,0 @@ - chmerge - - Timestamp is 3070b5c6 (Mon Oct 02 21:02:14 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 00011cb0H .text CODE - 0002:00000000 000018f0H .bss DATA - 0003:00000000 00000331H .rdata DATA - 0004:00000000 00001078H .data DATA - 0004:00001078 00000004H .CRT$XCA DATA - 0004:0000107c 00000050H .CRT$XCU DATA - 0004:000010cc 00000004H .CRT$XCZ DATA - 0004:000010d0 00000004H .CRT$XIA DATA - 0004:000010d4 00000004H .CRT$XIC DATA - 0004:000010d8 00000004H .CRT$XIZ DATA - 0004:000010dc 00000004H .CRT$XPA DATA - 0004:000010e0 00000004H .CRT$XPX DATA - 0004:000010e4 00000004H .CRT$XPZ DATA - 0004:000010e8 00000004H .CRT$XTA DATA - 0004:000010ec 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000acH .idata$4 DATA - 0005:00000110 000000acH .idata$5 DATA - 0005:000001bc 000002caH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00001b00H .debug$F DATA - 0007:00002050 00000000H .debug$G DATA - 0007:00002050 00000034H .debug$H DATA - 0007:fffe6000 00000000H .debug$P DATA - 0007:fffe6000 00000000H .debug$S DATA - 0007:fffe6000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003e0 ?FEqualRgb@@YGHPAX0J@Z 004013e0 f utilcopy.obj - 0001:00000420 ?CbEqualRgb@@YGJPAX0J@Z 00401420 f utilcopy.obj - 0001:00000480 ?CopyPb@@YGXPAX0J@Z 00401480 f utilcopy.obj - 0001:000004b0 ?BltPb@@YGXPAX0J@Z 004014b0 f utilcopy.obj - 0001:00000520 ?FWouldBe@ERS@@SGHJ@Z 00401520 f utilerro.obj - 0001:00000540 ?FIs@ERS@@UAEHJ@Z 00401540 f utilerro.obj - 0001:00000550 ?Cls@ERS@@UAEJXZ 00401550 f utilerro.obj - 0001:00000560 ??0ERS@@QAE@XZ 00401560 f utilerro.obj - 0001:00000590 ?Push@ERS@@UAEXJ@Z 00401590 f utilerro.obj - 0001:000005e0 ?FPop@ERS@@UAEHPAJ@Z 004015e0 f utilerro.obj - 0001:00000630 ?Clear@ERS@@UAEXXZ 00401630 f utilerro.obj - 0001:00000650 ?Cerc@ERS@@UAEJXZ 00401650 f utilerro.obj - 0001:00000660 ?FIn@ERS@@UAEHJ@Z 00401660 f utilerro.obj - 0001:000006b0 ?ErcGet@ERS@@UAEJJ@Z 004016b0 f utilerro.obj - 0001:000006f0 ?Flush@ERS@@UAEXJ@Z 004016f0 f utilerro.obj - 0001:00000790 ??_EERS@@UAEPAXI@Z 00401790 f utilerro.obj - 0001:00000790 ??_GERS@@UAEPAXI@Z 00401790 f utilerro.obj - 0001:000007d0 ?SwapBytesBom@@YGXPAXK@Z 004017d0 f utilint.obj - 0001:00000830 ?SwapBytesRgsw@@YGXPAXJ@Z 00401830 f utilint.obj - 0001:00000860 ?SwapBytesRglw@@YGXPAXJ@Z 00401860 f utilint.obj - 0001:00000890 ??0USAC@@QAE@XZ 00401890 f utilint.obj - 0001:000008c0 ?Set@DVER@@QAEXFF@Z 004018c0 f utilint.obj - 0001:000008e0 ?FReadable@DVER@@QAEHFF@Z 004018e0 f utilint.obj - 0001:00000920 ??_EUSAC@@UAEPAXI@Z 00401920 f utilint.obj - 0001:00000920 ??_GUSAC@@UAEPAXI@Z 00401920 f utilint.obj - 0001:00000940 ?FAllocPv@@YGHPAPAXJKJ@Z 00401940 f utilmem.obj - 0001:00000a10 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00401a10 f utilmem.obj - 0001:00000b00 ?FreePpv@@YGXPAPAX@Z 00401b00 f utilmem.obj - 0001:00000b40 ?FWouldBe@RND@@SGHJ@Z 00401b40 f utilrnd.obj - 0001:00000b60 ?FIs@RND@@UAEHJ@Z 00401b60 f utilrnd.obj - 0001:00000b70 ?Cls@RND@@UAEJXZ 00401b70 f utilrnd.obj - 0001:00000b80 ?FWouldBe@SFL@@SGHJ@Z 00401b80 f utilrnd.obj - 0001:00000ba0 ?FIs@SFL@@UAEHJ@Z 00401ba0 f utilrnd.obj - 0001:00000bb0 ?Cls@SFL@@UAEJXZ 00401bb0 f utilrnd.obj - 0001:00000bc0 ??0RND@@QAE@K@Z 00401bc0 f utilrnd.obj - 0001:00000c00 ?LwNext@RND@@UAEJJ@Z 00401c00 f utilrnd.obj - 0001:00000c30 ??0SFL@@QAE@K@Z 00401c30 f utilrnd.obj - 0001:00000c60 ??1SFL@@UAE@XZ 00401c60 f utilrnd.obj - 0001:00000c80 ?Shuffle@SFL@@QAEXJ@Z 00401c80 f utilrnd.obj - 0001:00000cc0 ?_ShuffleCore@SFL@@IAEXXZ 00401cc0 f utilrnd.obj - 0001:00000d10 ?_FEnsureHq@SFL@@IAEHJ@Z 00401d10 f utilrnd.obj - 0001:00000d80 ?LwNext@SFL@@UAEJJ@Z 00401d80 f utilrnd.obj - 0001:00000e10 ??_ERND@@UAEPAXI@Z 00401e10 f utilrnd.obj - 0001:00000e10 ??_GRND@@UAEPAXI@Z 00401e10 f utilrnd.obj - 0001:00000e30 ??_GSFL@@UAEPAXI@Z 00401e30 f utilrnd.obj - 0001:00000e30 ??_ESFL@@UAEPAXI@Z 00401e30 f utilrnd.obj - 0001:00000e50 ??4STN@@QAEAAV0@AAV0@@Z 00401e50 f utilstr.obj - 0001:00000e70 ?SetRgch@STN@@QAEXPADJ@Z 00401e70 f utilstr.obj - 0001:00000eb0 ?SetSzs@STN@@QAEXPAD@Z 00401eb0 f utilstr.obj - 0001:00000ed0 ?Delete@STN@@QAEXJJ@Z 00401ed0 f utilstr.obj - 0001:00000f30 ?FAppendRgch@STN@@QAEHPADJ@Z 00401f30 f utilstr.obj - 0001:00000f80 ?FInsertRgch@STN@@QAEHJPADJ@Z 00401f80 f utilstr.obj - 0001:00001040 ?FEqualRgch@STN@@QAEHPADJ@Z 00402040 f utilstr.obj - 0001:00001070 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402070 f utilstr.obj - 0001:00001090 ?CbData@STN@@QAEJXZ 00402090 f utilstr.obj - 0001:000010a0 ?GetData@STN@@QAEXPAX@Z 004020a0 f utilstr.obj - 0001:000010e0 ?FSetData@STN@@QAEHPAXJPAJ@Z 004020e0 f utilstr.obj - 0001:00001310 ?FFormatSz@STN@@QAAHPADZZ 00402310 f utilstr.obj - 0001:00001330 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00402330 f utilstr.obj - 0001:000016b0 ?CchSz@@YGJPAD@Z 004026b0 f utilstr.obj - 0001:000016d0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004026d0 f utilstr.obj - 0001:000017c0 ?UpperRgchs@@YGXPADJ@Z 004027c0 f utilstr.obj - 0001:00001820 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00402820 f utilstr.obj - 0001:00001930 ?FAllocHq@@YGHPAPAXJKJ@Z 00402930 f memwin.obj - 0001:000019a0 ?FResizePhq@@YGHPAPAXJKJ@Z 004029a0 f memwin.obj - 0001:00001a40 ?FreePhq@@YGXPAPAX@Z 00402a40 f memwin.obj - 0001:00001a70 ?CbOfHq@@YGJPAX@Z 00402a70 f memwin.obj - 0001:00001a80 ?PvLockHq@@YGPAXPAX@Z 00402a80 f memwin.obj - 0001:00001a90 ?UnlockHq@@YGXPAX@Z 00402a90 f memwin.obj - 0001:00001ad0 ?FWouldBe@CFL@@SGHJ@Z 00402ad0 f chunk.obj - 0001:00001af0 ?FIs@CFL@@UAEHJ@Z 00402af0 f chunk.obj - 0001:00001b00 ?Cls@CFL@@UAEJXZ 00402b00 f chunk.obj - 0001:00001b10 ?FWouldBe@CGE@@SGHJ@Z 00402b10 f chunk.obj - 0001:00001b30 ?FIs@CGE@@UAEHJ@Z 00402b30 f chunk.obj - 0001:00001b40 ?Cls@CGE@@UAEJXZ 00402b40 f chunk.obj - 0001:00001b50 ??0CFL@@AAE@XZ 00402b50 f chunk.obj - 0001:00001b70 ??1CFL@@EAE@XZ 00402b70 f chunk.obj - 0001:00001c10 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00402c10 f chunk.obj - 0001:00001ce0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00402ce0 f chunk.obj - 0001:00001d00 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00402d00 f chunk.obj - 0001:00001db0 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00402db0 f chunk.obj - 0001:00001e40 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00402e40 f chunk.obj - 0001:00001e80 ?FSetGrfcfl@CFL@@QAEHKK@Z 00402e80 f chunk.obj - 0001:00001f20 ?Release@CFL@@UAEXXZ 00402f20 f chunk.obj - 0001:00001f40 ?_TValidIndex@CFL@@AAEHXZ 00402f40 f chunk.obj - 0001:000022a0 ?_FReadIndex@CFL@@AAEHXZ 004032a0 f chunk.obj - 0001:00002910 ?_ReadFreeMap@CFL@@AAEXXZ 00403910 f chunk.obj - 0001:00002990 ?FSave@CFL@@QAEHKPAVFNI@@@Z 00403990 f chunk.obj - 0001:00002cb0 ?_FWriteIndex@CFL@@AAEHK@Z 00403cb0 f chunk.obj - 0001:00002e00 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00403e00 f chunk.obj - 0001:00002f00 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00403f00 f chunk.obj - 0001:00002f60 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00403f60 f chunk.obj - 0001:00002fa0 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00403fa0 f chunk.obj - 0001:00003000 ?SetPacked@CFL@@QAEXKKH@Z 00404000 f chunk.obj - 0001:00003080 ?_FCreateExtra@CFL@@AAEHXZ 00404080 f chunk.obj - 0001:000030b0 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 004040b0 f chunk.obj - 0001:000031c0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 004041c0 f chunk.obj - 0001:00003260 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00404260 f chunk.obj - 0001:000032e0 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 004042e0 f chunk.obj - 0001:00003330 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 00404330 f chunk.obj - 0001:000033f0 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 004043f0 f chunk.obj - 0001:000034d0 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 004044d0 f chunk.obj - 0001:00003530 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00404530 f chunk.obj - 0001:00003740 ?Delete@CFL@@QAEXKK@Z 00404740 f chunk.obj - 0001:000038e0 ?SetLoner@CFL@@QAEXKKH@Z 004048e0 f chunk.obj - 0001:00003940 ?FLoner@CFL@@QAEHKK@Z 00404940 f chunk.obj - 0001:00003990 ?CckiRef@CFL@@QAEJKK@Z 00404990 f chunk.obj - 0001:000039e0 ?TIsDescendent@CFL@@QAEHKKKK@Z 004049e0 f chunk.obj - 0001:00003ab0 ?_FDecRefCount@CFL@@AAEHJ@Z 00404ab0 f chunk.obj - 0001:00003af0 ?_DeleteCore@CFL@@AAEXJ@Z 00404af0 f chunk.obj - 0001:00003b50 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00404b50 f chunk.obj - 0001:00003d30 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 00404d30 f chunk.obj - 0001:00003df0 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 00404df0 f chunk.obj - 0001:00003e90 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00404e90 f chunk.obj - 0001:00003f20 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 00404f20 f chunk.obj - 0001:00004040 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 00405040 f chunk.obj - 0001:000040b0 ?Ckid@CFL@@QAEJKK@Z 004050b0 f chunk.obj - 0001:00004100 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00405100 f chunk.obj - 0001:00004180 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00405180 f chunk.obj - 0001:00004240 ?_FFindCnom@@YGHPAVGL@@KKPAUCNOM@@PAJ@Z 00405240 f chunk.obj - 0001:00004310 ?_FAddCnom@@YGHPAPAVGL@@PAUCNOM@@@Z 00405310 f chunk.obj - 0001:00004370 ?_FCopy@CFL@@AAEHKKPAV1@PAKH@Z 00405370 f chunk.obj - 0001:00004780 ?_FFindMatch@CFL@@AAEHKKPAV1@PAK@Z 00405780 f chunk.obj - 0001:000049a0 ?_FFindCtgRti@CFL@@AAEHKJKPAK@Z 004059a0 f chunk.obj - 0001:00004a30 ?FCopy@CFL@@QAEHKKPAV1@PAK@Z 00405a30 f chunk.obj - 0001:00004a50 ?_Rti@CFL@@AAEJKK@Z 00405a50 f chunk.obj - 0001:00004a80 ?_FSetRti@CFL@@AAEHKKJ@Z 00405a80 f chunk.obj - 0001:00004b50 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00405b50 f chunk.obj - 0001:00004c20 ??0CGE@@QAE@XZ 00405c20 f chunk.obj - 0001:00004c40 ??1CGE@@UAE@XZ 00405c40 f chunk.obj - 0001:00004c70 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00405c70 f chunk.obj - 0001:00004cb0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00405cb0 f chunk.obj - 0001:00004e90 ??_GCFL@@EAEPAXI@Z 00405e90 f chunk.obj - 0001:00004e90 ??_ECFL@@EAEPAXI@Z 00405e90 f chunk.obj - 0001:00004eb0 ??_ECGE@@UAEPAXI@Z 00405eb0 f chunk.obj - 0001:00004eb0 ??_GCGE@@UAEPAXI@Z 00405eb0 f chunk.obj - 0001:00004ed0 ?FWouldBe@CODM@@SGHJ@Z 00405ed0 f codec.obj - 0001:00004ef0 ?FIs@CODM@@UAEHJ@Z 00405ef0 f codec.obj - 0001:00004f00 ?Cls@CODM@@UAEJXZ 00405f00 f codec.obj - 0001:00004f10 ?FWouldBe@CODC@@SGHJ@Z 00405f10 f codec.obj - 0001:00004f30 ??0CODM@@QAE@PAVCODC@@J@Z 00405f30 f codec.obj - 0001:00004f70 ??1CODM@@UAE@XZ 00405f70 f codec.obj - 0001:00004ff0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00405ff0 f codec.obj - 0001:00005040 ?FCanDo@CODM@@UAEHJH@Z 00406040 f codec.obj - 0001:00005070 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00406070 f codec.obj - 0001:000050f0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 004060f0 f codec.obj - 0001:000051a0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004061a0 f codec.obj - 0001:000052c0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 004062c0 f codec.obj - 0001:000054d0 ??_ECODM@@UAEPAXI@Z 004064d0 f codec.obj - 0001:000054d0 ??_GCODM@@UAEPAXI@Z 004064d0 f codec.obj - 0001:000054f0 ?FWouldBe@KCDC@@SGHJ@Z 004064f0 f codkauai.obj - 0001:00005510 ?FIs@KCDC@@UAEHJ@Z 00406510 f codkauai.obj - 0001:00005520 ?Cls@KCDC@@UAEJXZ 00406520 f codkauai.obj - 0001:00005530 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00406530 f codkauai.obj - 0001:000055b0 ?Set@BITA@@QAEXPAXJ@Z 004065b0 f codkauai.obj - 0001:000055d0 ?FWriteBits@BITA@@QAEHKJ@Z 004065d0 f codkauai.obj - 0001:00005690 ?FWriteLogEncoded@BITA@@QAEHK@Z 00406690 f codkauai.obj - 0001:000056e0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004066e0 f codkauai.obj - 0001:000059f0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 004069f0 f codkauai.obj - 0001:00009320 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040a320 f codkauai.obj - 0001:00009700 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040a700 f codkauai.obj - 0001:0000bcc0 ?FWouldBe@FIL@@SGHJ@Z 0040ccc0 f file.obj - 0001:0000bce0 ?FIs@FIL@@UAEHJ@Z 0040cce0 f file.obj - 0001:0000bcf0 ?Cls@FIL@@UAEJXZ 0040ccf0 f file.obj - 0001:0000bd00 ?FWouldBe@BLCK@@SGHJ@Z 0040cd00 f file.obj - 0001:0000bd20 ?FIs@BLCK@@UAEHJ@Z 0040cd20 f file.obj - 0001:0000bd30 ?Cls@BLCK@@UAEJXZ 0040cd30 f file.obj - 0001:0000bd40 ??0FIL@@IAE@PAVFNI@@K@Z 0040cd40 f file.obj - 0001:0000bdb0 ??1FIL@@MAE@XZ 0040cdb0 f file.obj - 0001:0000be00 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0040ce00 f file.obj - 0001:0000bea0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0040cea0 f file.obj - 0001:0000bf30 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0040cf30 f file.obj - 0001:0000bfc0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0040cfc0 f file.obj - 0001:0000c020 ?FSetGrffil@FIL@@QAEHKK@Z 0040d020 f file.obj - 0001:0000c0b0 ?Release@FIL@@UAEXXZ 0040d0b0 f file.obj - 0001:0000c0e0 ?SetTemp@FIL@@QAEXH@Z 0040d0e0 f file.obj - 0001:0000c120 ?ShutDown@FIL@@SGXXZ 0040d120 f file.obj - 0001:0000c190 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0040d190 f file.obj - 0001:0000c1e0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0040d1e0 f file.obj - 0001:0000c230 ?FCopy@FLO@@QAEHPAU1@@Z 0040d230 f file.obj - 0001:0000c300 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0040d300 f file.obj - 0001:0000c380 ??0BLCK@@QAE@PAUFLO@@H@Z 0040d380 f file.obj - 0001:0000c3d0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0040d3d0 f file.obj - 0001:0000c410 ??0BLCK@@QAE@XZ 0040d410 f file.obj - 0001:0000c430 ??1BLCK@@UAE@XZ 0040d430 f file.obj - 0001:0000c450 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0040d450 f file.obj - 0001:0000c490 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0040d490 f file.obj - 0001:0000c4d0 ?SetHq@BLCK@@QAEXPAPAXH@Z 0040d4d0 f file.obj - 0001:0000c510 ?Free@BLCK@@QAEXXZ 0040d510 f file.obj - 0001:0000c540 ?HqFree@BLCK@@QAEPAXH@Z 0040d540 f file.obj - 0001:0000c5f0 ?Cb@BLCK@@QAEJH@Z 0040d5f0 f file.obj - 0001:0000c610 ?FMoveMin@BLCK@@QAEHJ@Z 0040d610 f file.obj - 0001:0000c680 ?FMoveLim@BLCK@@QAEHJ@Z 0040d680 f file.obj - 0001:0000c6f0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0040d6f0 f file.obj - 0001:0000c780 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0040d780 f file.obj - 0001:0000c810 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0040d810 f file.obj - 0001:0000c890 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0040d890 f file.obj - 0001:0000c930 ?FPacked@BLCK@@QAEHPAJ@Z 0040d930 f file.obj - 0001:0000c970 ?FUnpackData@BLCK@@QAEHXZ 0040d970 f file.obj - 0001:0000caa0 ??_EFIL@@MAEPAXI@Z 0040daa0 f file.obj - 0001:0000caa0 ??_GFIL@@MAEPAXI@Z 0040daa0 f file.obj - 0001:0000cac0 ??_EBLCK@@UAEPAXI@Z 0040dac0 f file.obj - 0001:0000cac0 ??_GBLCK@@UAEPAXI@Z 0040dac0 f file.obj - 0001:0000cb30 ?_FOpen@FIL@@IAEHHK@Z 0040db30 f filewin.obj - 0001:0000cc30 ?_Close@FIL@@IAEXH@Z 0040dc30 f filewin.obj - 0001:0000cca0 ?Flush@FIL@@QAEXXZ 0040dca0 f filewin.obj - 0001:0000ccd0 ?_SetFpPos@FIL@@IAEXJ@Z 0040dcd0 f filewin.obj - 0001:0000cd30 ?FSetFpMac@FIL@@QAEHJ@Z 0040dd30 f filewin.obj - 0001:0000cdc0 ?FpMac@FIL@@QAEJXZ 0040ddc0 f filewin.obj - 0001:0000ce50 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040de50 f filewin.obj - 0001:0000cf00 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040df00 f filewin.obj - 0001:0000cfc0 ?FSwapNames@FIL@@QAEHPAV1@@Z 0040dfc0 f filewin.obj - 0001:0000d1a0 ?FRename@FIL@@QAEHPAVFNI@@@Z 0040e1a0 f filewin.obj - 0001:0000d260 ?FWouldBe@FNI@@SGHJ@Z 0040e260 f fniwin.obj - 0001:0000d280 ?FIs@FNI@@UAEHJ@Z 0040e280 f fniwin.obj - 0001:0000d290 ?Cls@FNI@@UAEJXZ 0040e290 f fniwin.obj - 0001:0000d2a0 ?SetNil@FNI@@QAEXXZ 0040e2a0 f fniwin.obj - 0001:0000d2b0 ??0FNI@@QAE@XZ 0040e2b0 f fniwin.obj - 0001:0000d2e0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040e2e0 f fniwin.obj - 0001:0000d430 ?FGetUnique@FNI@@QAEHJ@Z 0040e430 f fniwin.obj - 0001:0000d540 ?FGetTemp@FNI@@QAEHXZ 0040e540 f fniwin.obj - 0001:0000d5e0 ?Ftg@FNI@@QAEJXZ 0040e5e0 f fniwin.obj - 0001:0000d5f0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0040e5f0 f fniwin.obj - 0001:0000d660 ?FChangeFtg@FNI@@QAEHJ@Z 0040e660 f fniwin.obj - 0001:0000d710 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0040e710 f fniwin.obj - 0001:0000d750 ?TExists@FNI@@QAEHXZ 0040e750 f fniwin.obj - 0001:0000d850 ?FDelete@FNI@@QAEHXZ 0040e850 f fniwin.obj - 0001:0000d880 ?FRename@FNI@@QAEHPAV1@@Z 0040e880 f fniwin.obj - 0001:0000d8d0 ?FEqual@FNI@@QAEHPAV1@@Z 0040e8d0 f fniwin.obj - 0001:0000d8f0 ?_CchExt@FNI@@AAEJXZ 0040e8f0 f fniwin.obj - 0001:0000d930 ?_SetFtgFromName@FNI@@AAEXXZ 0040e930 f fniwin.obj - 0001:0000d9b0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0040e9b0 f fniwin.obj - 0001:0000db00 ??_GFNI@@UAEPAXI@Z 0040eb00 f fniwin.obj - 0001:0000db00 ??_EFNI@@UAEPAXI@Z 0040eb00 f fniwin.obj - 0001:0000db20 ?FWouldBe@GRPB@@SGHJ@Z 0040eb20 f groups.obj - 0001:0000db40 ?FIs@GRPB@@UAEHJ@Z 0040eb40 f groups.obj - 0001:0000db50 ?Cls@GRPB@@UAEJXZ 0040eb50 f groups.obj - 0001:0000db60 ?FWouldBe@GLB@@SGHJ@Z 0040eb60 f groups.obj - 0001:0000db80 ?FIs@GLB@@UAEHJ@Z 0040eb80 f groups.obj - 0001:0000db90 ?Cls@GLB@@UAEJXZ 0040eb90 f groups.obj - 0001:0000dba0 ?FWouldBe@GL@@SGHJ@Z 0040eba0 f groups.obj - 0001:0000dbc0 ?FIs@GL@@UAEHJ@Z 0040ebc0 f groups.obj - 0001:0000dbd0 ?Cls@GL@@UAEJXZ 0040ebd0 f groups.obj - 0001:0000dbe0 ?FWouldBe@GGB@@SGHJ@Z 0040ebe0 f groups.obj - 0001:0000dc00 ?FIs@GGB@@UAEHJ@Z 0040ec00 f groups.obj - 0001:0000dc10 ?Cls@GGB@@UAEJXZ 0040ec10 f groups.obj - 0001:0000dc20 ?FWouldBe@GG@@SGHJ@Z 0040ec20 f groups.obj - 0001:0000dc40 ?FIs@GG@@UAEHJ@Z 0040ec40 f groups.obj - 0001:0000dc50 ?Cls@GG@@UAEJXZ 0040ec50 f groups.obj - 0001:0000dc60 ??1GRPB@@UAE@XZ 0040ec60 f groups.obj - 0001:0000dc90 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0040ec90 f groups.obj - 0001:0000dd70 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0040ed70 f groups.obj - 0001:0000de40 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0040ee40 f groups.obj - 0001:0000de90 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0040ee90 f groups.obj - 0001:0000df60 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 0040ef60 f groups.obj - 0001:0000e020 ??0GLB@@IAE@J@Z 0040f020 f groups.obj - 0001:0000e050 ?QvGet@GLB@@QAEPAXJ@Z 0040f050 f groups.obj - 0001:0000e070 ?Get@GLB@@QAEXJPAX@Z 0040f070 f groups.obj - 0001:0000e090 ?Put@GLB@@QAEXJPAX@Z 0040f090 f groups.obj - 0001:0000e0b0 ?PglNew@GL@@SGPAV1@JJ@Z 0040f0b0 f groups.obj - 0001:0000e110 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 0040f110 f groups.obj - 0001:0000e170 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 0040f170 f groups.obj - 0001:0000e1c0 ??0GL@@IAE@J@Z 0040f1c0 f groups.obj - 0001:0000e1e0 ?FFree@GL@@UAEHJ@Z 0040f1e0 f groups.obj - 0001:0000e200 ?CbOnFile@GL@@UAEJXZ 0040f200 f groups.obj - 0001:0000e210 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0040f210 f groups.obj - 0001:0000e280 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 0040f280 f groups.obj - 0001:0000e350 ?FInsert@GL@@QAEHJPAXJ@Z 0040f350 f groups.obj - 0001:0000e3f0 ?Delete@GL@@UAEXJ@Z 0040f3f0 f groups.obj - 0001:0000e400 ?Delete@GL@@QAEXJJ@Z 0040f400 f groups.obj - 0001:0000e440 ?FAdd@GL@@UAEHPAXPAJ@Z 0040f440 f groups.obj - 0001:0000e470 ?FPop@GL@@QAEHPAX@Z 0040f470 f groups.obj - 0001:0000e4a0 ?FEnsureSpace@GL@@QAEHJK@Z 0040f4a0 f groups.obj - 0001:0000e4e0 ??0GGB@@IAE@JH@Z 0040f4e0 f groups.obj - 0001:0000e520 ?CbOnFile@GGB@@UAEJXZ 0040f520 f groups.obj - 0001:0000e530 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 0040f530 f groups.obj - 0001:0000e620 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 0040f620 f groups.obj - 0001:0000e7b0 ?FFree@GGB@@UAEHJ@Z 0040f7b0 f groups.obj - 0001:0000e7e0 ?FEnsureSpace@GGB@@QAEHJJK@Z 0040f7e0 f groups.obj - 0001:0000e870 ?_RemoveRgb@GGB@@IAEXJJ@Z 0040f870 f groups.obj - 0001:0000e8c0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 0040f8c0 f groups.obj - 0001:0000e910 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 0040f910 f groups.obj - 0001:0000e950 ?Cb@GGB@@QAEJJ@Z 0040f950 f groups.obj - 0001:0000e970 ?QvGet@GGB@@QAEPAXJPAJ@Z 0040f970 f groups.obj - 0001:0000e9b0 ?PvLock@GGB@@QAEPAXJPAJ@Z 0040f9b0 f groups.obj - 0001:0000e9e0 ?GetRgb@GGB@@QAEXJJJPAX@Z 0040f9e0 f groups.obj - 0001:0000ea20 ?DeleteRgb@GGB@@QAEXJJJ@Z 0040fa20 f groups.obj - 0001:0000eab0 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 0040fab0 f groups.obj - 0001:0000ebd0 ?PggNew@GG@@SGPAV1@JJJ@Z 0040fbd0 f groups.obj - 0001:0000ec40 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 0040fc40 f groups.obj - 0001:0000eca0 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 0040fca0 f groups.obj - 0001:0000ecf0 ?FInsert@GG@@QAEHJJPAX0@Z 0040fcf0 f groups.obj - 0001:0000edc0 ?FAdd@GG@@UAEHJPAJPAX1@Z 0040fdc0 f groups.obj - 0001:0000edf0 ?Delete@GG@@UAEXJ@Z 0040fdf0 f groups.obj - 0001:0000ee60 ??_GGRPB@@UAEPAXI@Z 0040fe60 f groups.obj - 0001:0000ee60 ??_EGRPB@@UAEPAXI@Z 0040fe60 f groups.obj - 0001:0000ee80 ??_GGG@@UAEPAXI@Z 0040fe80 f groups.obj - 0001:0000ee80 ??_EGG@@UAEPAXI@Z 0040fe80 f groups.obj - 0001:0000eea0 ??_EGLB@@UAEPAXI@Z 0040fea0 f groups.obj - 0001:0000eea0 ??_GGLB@@UAEPAXI@Z 0040fea0 f groups.obj - 0001:0000eec0 ??_GGL@@UAEPAXI@Z 0040fec0 f groups.obj - 0001:0000eec0 ??_EGL@@UAEPAXI@Z 0040fec0 f groups.obj - 0001:0000eee0 ??_GGGB@@UAEPAXI@Z 0040fee0 f groups.obj - 0001:0000eee0 ??_EGGB@@UAEPAXI@Z 0040fee0 f groups.obj - 0001:0000ef20 _main 0040ff20 f chmerge.obj - 0001:0000f39a _timeGetTime@0 0041039a winmm:WINMM.dll - 0001:0000f3a0 __onexit 004103a0 f LIBC:onexit.obj - 0001:0000f416 _atexit 00410416 f LIBC:onexit.obj - 0001:0000f428 ___onexitinit 00410428 f LIBC:onexit.obj - 0001:0000f45e __purecall 0041045e f LIBC:purevirt.obj - 0001:0000f469 _fprintf 00410469 f LIBC:fprintf.obj - 0001:0000f49f _mainCRTStartup 0041049f f LIBC:crt0.obj - 0001:0000f598 __amsg_exit 00410598 f LIBC:crt0.obj - 0001:0000f5b8 __cinit 004105b8 f LIBC:crt0dat.obj - 0001:0000f5e8 _exit 004105e8 f LIBC:crt0dat.obj - 0001:0000f5f9 __exit 004105f9 f LIBC:crt0dat.obj - 0001:0000f6a9 _realloc 004106a9 f LIBC:realloc.obj - 0001:0000f7fb __msize 004107fb f LIBC:msize.obj - 0001:0000f80c _malloc 0041080c f LIBC:malloc.obj - 0001:0000f81f __nh_malloc 0041081f f LIBC:malloc.obj - 0001:0000f8de __heap_split_block 004108de f LIBC:malloc.obj - 0001:0000f923 __stbuf 00410923 f LIBC:_sftbuf.obj - 0001:0000f9a4 __ftbuf 004109a4 f LIBC:_sftbuf.obj - 0001:0000f9ea __output 004109ea f LIBC:output.obj - 0001:00010310 __global_unwind2 00411310 f LIBC:exsup.obj - 0001:00010352 __local_unwind2 00411352 f LIBC:exsup.obj - 0001:000103ac __abnormal_termination 004113ac f LIBC:exsup.obj - 0001:000103cf __XcptFilter 004113cf f LIBC:winxfltr.obj - 0001:0001055a __setenvp 0041155a f LIBC:stdenvp.obj - 0001:00010625 __setargv 00411625 f LIBC:stdargv.obj - 0001:00010923 __setmbcp 00411923 f LIBC:mbctype.obj - 0001:00010ab1 ___initmbctable 00411ab1 f LIBC:mbctype.obj - 0001:00010abc __ioinit 00411abc f LIBC:ioinit.obj - 0001:00010baa __heap_init 00411baa f LIBC:heapinit.obj - 0001:00010c27 ___getempty 00411c27 f LIBC:heapinit.obj - 0001:00010c54 __except_handler3 00411c54 f LIBC:exsup3.obj - 0001:00010d02 __seh_longjmp_unwind@4 00411d02 f LIBC:exsup3.obj - 0001:00010d1d __FF_MSGBANNER 00411d1d f LIBC:crt0msg.obj - 0001:00010d43 __NMSG_WRITE 00411d43 f LIBC:crt0msg.obj - 0001:00010d9b _free 00411d9b f LIBC:free.obj - 0001:00010e03 __heap_abort 00411e03 f LIBC:hpabort.obj - 0001:00010e0e __heap_grow 00411e0e f LIBC:heapgrow.obj - 0001:00010ef7 __heap_grow_region 00411ef7 f LIBC:heapgrow.obj - 0001:00010fa4 __heap_free_region 00411fa4 f LIBC:heapgrow.obj - 0001:00010fde __heap_search 00411fde f LIBC:heapsrch.obj - 0001:000110ce _fflush 004120ce f LIBC:fflush.obj - 0001:0001111a __flush 0041211a f LIBC:fflush.obj - 0001:0001117c __flushall 0041217c f LIBC:fflush.obj - 0001:000111f1 ___endstdio 004121f1 f LIBC:fflush.obj - 0001:00011205 __isatty 00412205 f LIBC:isatty.obj - 0001:0001121f _wctomb 0041221f f LIBC:wctomb.obj - 0001:00011298 __aulldiv 00412298 f LIBC:ulldiv.obj - 0001:000112f8 __aullrem 004122f8 f LIBC:ullrem.obj - 0001:00011362 __flsbuf 00412362 f LIBC:_flsbuf.obj - 0001:0001146e __heap_addblock 0041246e f LIBC:heapadd.obj - 0001:00011725 __commit 00412725 f LIBC:commit.obj - 0001:00011772 __write 00412772 f LIBC:write.obj - 0001:0001190b __fcloseall 0041290b f LIBC:closeall.obj - 0001:0001193c __fptrap 0041293c f LIBC:crt0fp.obj - 0001:00011947 __lseek 00412947 f LIBC:lseek.obj - 0001:000119bc __getbuf 004129bc f LIBC:_getbuf.obj - 0001:00011a07 __heap_findaddr 00412a07 f LIBC:findaddr.obj - 0001:00011a71 __free_osfhnd 00412a71 f LIBC:osfinfo.obj - 0001:00011ade __get_osfhandle 00412ade f LIBC:osfinfo.obj - 0001:00011b16 __dosmaperr 00412b16 f LIBC:dosmap.obj - 0001:00011b7f _fclose 00412b7f f LIBC:fclose.obj - 0001:00011bdb __close 00412bdb f LIBC:close.obj - 0001:00011c71 __freebuf 00412c71 f LIBC:_freebuf.obj - 0001:00011caa _RtlUnwind@16 00412caa kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00413000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00413018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00413030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 00413038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 00413050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 00413070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 004130a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 00413138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 00413240 utilstr.obj - 0002:00000350 ?_pcflFirst@CFL@@0PAV1@A 00413350 chunk.obj - 0002:00000378 ?_pfilFirst@FIL@@1PAV1@A 00413378 file.obj - 0002:00000380 ?_mutxList@FIL@@1VMUTX@@A 00413380 file.obj - 0002:000003a8 ?_fniTemp@@3VFNI@@A 004133a8 fniwin.obj - 0002:000005dc __heap_descpages 004135dc - 0002:000005e0 __heap_regions 004135e0 - 0002:000008e0 ___onexitend 004138e0 - 0002:000008e4 __FPinit 004138e4 - 0002:000008e8 ___onexitbegin 004138e8 - 0002:000008ec __acmdln 004138ec - 0002:000008f0 __bufin 004138f0 - 0003:00000058 ??_7KCDC@@6B@ 00415058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00415078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00415090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004150a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004150d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004150f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00415108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00415120 utilstr.obj - 0003:00000138 ??_7CFL@@6B@ 00415138 chunk.obj - 0003:00000150 ??_7CGE@@6B@ 00415150 chunk.obj - 0003:00000168 ??_7CODM@@6B@ 00415168 codec.obj - 0003:00000198 ??_7FIL@@6B@ 00415198 file.obj - 0003:000001b0 ??_7BLCK@@6B@ 004151b0 file.obj - 0003:000001c8 ??_7FNI@@6B@ 004151c8 fniwin.obj - 0003:000001e0 ??_7GRPB@@6B@ 004151e0 groups.obj - 0003:00000208 ??_7GLB@@6B@ 00415208 groups.obj - 0003:00000238 ??_7GL@@6B@ 00415238 groups.obj - 0003:00000268 ??_7GGB@@6B@ 00415268 groups.obj - 0003:00000298 ??_7GG@@6B@ 00415298 groups.obj - 0003:000002d8 ___lookuptable 004152d8 LIBC:output.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 00416000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 00416004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 00416008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0041600c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 00416010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 00416118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0041611c file.obj - 0004:00000120 ?vftgTemp@@3JA 00416120 fniwin.obj - 0004:00000128 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00416128 fniwin.obj - 0004:00000134 ??_C@_0BC@CAHO@Something?5failed?6?$AA@ 00416134 chmerge.obj - 0004:00000148 ??_C@_02DILL@?$CFs?$AA@ 00416148 chmerge.obj - 0004:0000014c ??_C@_0DN@LEOE@Usage?3?5?5chmerge?5?$FL?9r?$FN?5?$DMsrcFile0?$DO?5@ 0041614c chmerge.obj - 0004:0000018c ??_C@_0CB@HHN@Error?3?5Not?5enough?5chunky?5files?6?6@ 0041618c chmerge.obj - 0004:000001b0 ??_C@_0CN@JABG@Error?3?5Duplicate?5chunks?3?5?8?$CFc?$CFc?$CFc@ 004161b0 chmerge.obj - 0004:000001e0 ??_C@_0BO@NFLM@Error?3?5Copying?5chunk?5failed?6?6?$AA@ 004161e0 chmerge.obj - 0004:00000200 ??_C@_0BK@OJAK@Error?3?5Couldn?8t?5open?5?$CFs?6?6?$AA@ 00416200 chmerge.obj - 0004:0000021c ??_C@_0BL@FFAM@Error?3?5Bad?5file?5name?3?5?$CFs?6?6?$AA@ 0041621c chmerge.obj - 0004:00000238 ??_C@_0CD@GMGF@?9r?5must?5come?5before?5any?5file?5nam@ 00416238 chmerge.obj - 0004:0000025c ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0041625c chmerge.obj - 0004:00000298 ??_C@_0EI@HLEM@?6Microsoft?5?$CIR?$CJ?5Chunky?5File?5Merge@ 00416298 chmerge.obj - 0004:000002e0 __iob 004162e0 LIBC:_file.obj - 0004:00000560 __lastiob 00416560 LIBC:_file.obj - 0004:00000564 __aenvptr 00416564 LIBC:crt0.obj - 0004:00000568 __wenvptr 00416568 LIBC:crt0.obj - 0004:0000056c __aexit_rtn 0041656c LIBC:crt0.obj - 0004:00000570 _errno 00416570 LIBC:crt0dat.obj - 0004:00000574 __doserrno 00416574 LIBC:crt0dat.obj - 0004:00000578 __umaskval 00416578 LIBC:crt0dat.obj - 0004:0000057c __osver 0041657c LIBC:crt0dat.obj - 0004:00000580 __winver 00416580 LIBC:crt0dat.obj - 0004:00000584 __winmajor 00416584 LIBC:crt0dat.obj - 0004:00000588 __winminor 00416588 LIBC:crt0dat.obj - 0004:0000058c ___argc 0041658c LIBC:crt0dat.obj - 0004:00000590 ___argv 00416590 LIBC:crt0dat.obj - 0004:00000594 ___wargv 00416594 LIBC:crt0dat.obj - 0004:00000598 __environ 00416598 LIBC:crt0dat.obj - 0004:0000059c ___initenv 0041659c LIBC:crt0dat.obj - 0004:000005a0 __wenviron 004165a0 LIBC:crt0dat.obj - 0004:000005a4 ___winitenv 004165a4 LIBC:crt0dat.obj - 0004:000005a8 __pgmptr 004165a8 LIBC:crt0dat.obj - 0004:000005ac __wpgmptr 004165ac LIBC:crt0dat.obj - 0004:000005b0 __exitflag 004165b0 LIBC:crt0dat.obj - 0004:000005b4 __C_Termination_Done 004165b4 LIBC:crt0dat.obj - 0004:000005b8 __pnhHeap 004165b8 LIBC:malloc.obj - 0004:000005c0 __stdbuf 004165c0 LIBC:_sftbuf.obj - 0004:000005d0 ___nullstring 004165d0 LIBC:output.obj - 0004:000005e4 ___wnullstring 004165e4 LIBC:output.obj - 0004:000005e8 __XcptActTab 004165e8 LIBC:winxfltr.obj - 0004:00000660 __First_FPE_Indx 00416660 LIBC:winxfltr.obj - 0004:00000664 __Num_FPE 00416664 LIBC:winxfltr.obj - 0004:00000668 __XcptActTabCount 00416668 LIBC:winxfltr.obj - 0004:0000066c __fpecode 0041666c LIBC:winxfltr.obj - 0004:00000670 __pxcptinfoptrs 00416670 LIBC:winxfltr.obj - 0004:00000678 __mbctype 00416678 LIBC:mbctype.obj - 0004:0000077c ___mbcodepage 0041677c LIBC:mbctype.obj - 0004:00000780 ___mblcid 00416780 LIBC:mbctype.obj - 0004:00000788 ___mbulinfo 00416788 LIBC:mbctype.obj - 0004:00000890 __nhandle 00416890 LIBC:ioinit.obj - 0004:00000898 __osfile 00416898 LIBC:ioinit.obj - 0004:000008d8 __osfhnd 004168d8 LIBC:ioinit.obj - 0004:000009d8 __pipech 004169d8 LIBC:ioinit.obj - 0004:00000a18 __heap_desc 00416a18 LIBC:heapinit.obj - 0004:00000a2c __heap_resetsize 00416a2c LIBC:heapinit.obj - 0004:00000a30 __amblksiz 00416a30 LIBC:heapinit.obj - 0004:00000a34 __heap_regionsize 00416a34 LIBC:heapinit.obj - 0004:00000a38 __heap_maxregsize 00416a38 LIBC:heapinit.obj - 0004:00000ca8 __adbgmsg 00416ca8 LIBC:crt0msg.obj - 0004:00000cac __newmode 00416cac LIBC:_newmode.obj - 0004:00000cb0 __cflush 00416cb0 LIBC:fflush.obj - 0004:00000cb8 __cfltcvt_tab 00416cb8 LIBC:cmiscdat.obj - 0004:00000cd0 __pctype 00416cd0 LIBC:ctype.obj - 0004:00000cd4 __pwctype 00416cd4 LIBC:ctype.obj - 0004:00000cd8 __ctype 00416cd8 LIBC:ctype.obj - 0004:00000ee0 ___lc_handle 00416ee0 LIBC:nlsdata2.obj - 0004:00000ef8 ___lc_codepage 00416ef8 LIBC:nlsdata2.obj - 0004:00000efc ___mb_cur_max 00416efc LIBC:nlsdata1.obj - 0004:00000f04 ___decimal_point 00416f04 LIBC:nlsdata1.obj - 0004:00000f08 ___decimal_point_length 00416f08 LIBC:nlsdata1.obj - 0004:00001078 ___xc_a 00417078 LIBC:crt0init.obj - 0004:000010cc ___xc_z 004170cc LIBC:crt0init.obj - 0004:000010d0 ___xi_a 004170d0 LIBC:crt0init.obj - 0004:000010d8 ___xi_z 004170d8 LIBC:crt0init.obj - 0004:000010dc ___xp_a 004170dc LIBC:crt0init.obj - 0004:000010e4 ___xp_z 004170e4 LIBC:crt0init.obj - 0004:000010e8 ___xt_a 004170e8 LIBC:crt0init.obj - 0004:000010ec ___xt_z 004170ec LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00418000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00418014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00418028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041803c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00418050 kernel32:KERNEL32.dll - 0005:00000110 __imp__DeleteCriticalSection@4 00418110 kernel32:KERNEL32.dll - 0005:00000114 __imp__GlobalAlloc@8 00418114 kernel32:KERNEL32.dll - 0005:00000118 __imp__GlobalFree@4 00418118 kernel32:KERNEL32.dll - 0005:0000011c __imp__LeaveCriticalSection@4 0041811c kernel32:KERNEL32.dll - 0005:00000120 __imp__EnterCriticalSection@4 00418120 kernel32:KERNEL32.dll - 0005:00000124 __imp__GlobalReAlloc@12 00418124 kernel32:KERNEL32.dll - 0005:00000128 __imp__WideCharToMultiByte@32 00418128 kernel32:KERNEL32.dll - 0005:0000012c __imp__CreateFileA@28 0041812c kernel32:KERNEL32.dll - 0005:00000130 __imp__CloseHandle@4 00418130 kernel32:KERNEL32.dll - 0005:00000134 __imp__DeleteFileA@4 00418134 kernel32:KERNEL32.dll - 0005:00000138 __imp__FlushFileBuffers@4 00418138 kernel32:KERNEL32.dll - 0005:0000013c __imp__SetFilePointer@16 0041813c kernel32:KERNEL32.dll - 0005:00000140 __imp__SetEndOfFile@4 00418140 kernel32:KERNEL32.dll - 0005:00000144 __imp__ReadFile@20 00418144 kernel32:KERNEL32.dll - 0005:00000148 __imp__WriteFile@20 00418148 kernel32:KERNEL32.dll - 0005:0000014c __imp__GetFullPathNameA@16 0041814c kernel32:KERNEL32.dll - 0005:00000150 __imp__GetTempPathA@8 00418150 kernel32:KERNEL32.dll - 0005:00000154 __imp__GetLastError@0 00418154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetFileAttributesA@4 00418158 kernel32:KERNEL32.dll - 0005:0000015c __imp__MoveFileA@8 0041815c kernel32:KERNEL32.dll - 0005:00000160 __imp__InitializeCriticalSection@4 00418160 kernel32:KERNEL32.dll - 0005:00000164 __imp__ExitProcess@4 00418164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetVersion@0 00418168 kernel32:KERNEL32.dll - 0005:0000016c __imp__SetStdHandle@8 0041816c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetCommandLineA@0 00418170 kernel32:KERNEL32.dll - 0005:00000174 __imp__VirtualAlloc@16 00418174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetStdHandle@4 00418178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetCPInfo@8 0041817c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetOEMCP@0 00418180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetStartupInfoA@4 00418184 kernel32:KERNEL32.dll - 0005:00000188 __imp__GetFileType@4 00418188 kernel32:KERNEL32.dll - 0005:0000018c __imp__GetEnvironmentStrings@0 0041818c kernel32:KERNEL32.dll - 0005:00000190 __imp__GetModuleFileNameA@12 00418190 kernel32:KERNEL32.dll - 0005:00000194 __imp__GetACP@0 00418194 kernel32:KERNEL32.dll - 0005:00000198 __imp__VirtualFree@12 00418198 kernel32:KERNEL32.dll - 0005:0000019c __imp__RtlUnwind@16 0041819c kernel32:KERNEL32.dll - 0005:000001a0 __imp__UnhandledExceptionFilter@4 004181a0 kernel32:KERNEL32.dll - 0005:000001a4 \177KERNEL32_NULL_THUNK_DATA 004181a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__CharUpperBuffA@8 004181a8 user32:USER32.dll - 0005:000001ac \177USER32_NULL_THUNK_DATA 004181ac user32:USER32.dll - 0005:000001b0 __imp__timeGetTime@0 004181b0 winmm:WINMM.dll - 0005:000001b4 \177WINMM_NULL_THUNK_DATA 004181b4 winmm:WINMM.dll - 0005:000001b8 \177comdlg32_NULL_THUNK_DATA 004181b8 comdlg32:comdlg32.dll - - entry point at 0001:0000f49f - - Static symbols - - 0001:0000f380 _$$8000 00410380 f chmerge.obj - 0001:0000f390 _$$1000 00410390 f chmerge.obj - 0001:0000ef00 _$$1000 0040ff00 f groups2.obj - 0001:0000ef10 _$$8000 0040ff10 f groups2.obj - 0001:0000dd60 _$$1000 0040ed60 f groups.obj - 0001:0000ee50 _$$8000 0040fe50 f groups.obj - 0001:0000d250 _$$8000 0040e250 f fniwin.obj - 0001:0000d420 _$$1000 0040e420 f fniwin.obj - 0001:0000da30 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040ea30 f fniwin.obj - 0001:0000dad0 _$$9000 0040ead0 f fniwin.obj - 0001:0000dae0 _$$a000 0040eae0 f fniwin.obj - 0001:0000daf0 _$$b000 0040eaf0 f fniwin.obj - 0001:0000cae0 ?_HfileOpen@@YGPAXPADHK@Z 0040dae0 f filewin.obj - 0001:0000cdb0 _$$1000 0040ddb0 f filewin.obj - 0001:0000d240 _$$8000 0040e240 f filewin.obj - 0001:0000bcb0 _$$8000 0040ccb0 f file.obj - 0001:0000bf20 _$$1000 0040cf20 f file.obj - 0001:0000c160 ?_FRangeIn@@YGHJJJ@Z 0040d160 f file.obj - 0001:0000ca70 _$$9000 0040da70 f file.obj - 0001:0000ca80 _$$a000 0040da80 f file.obj - 0001:0000ca90 _$$b000 0040da90 f file.obj - 0001:0000bc90 _$$1000 0040cc90 f crf.obj - 0001:0000bca0 _$$8000 0040cca0 f crf.obj - 0001:000059e0 _$$1000 004069e0 f codkauai.obj - 0001:0000bc80 _$$8000 0040cc80 f codkauai.obj - 0001:00005190 _$$1000 00406190 f codec.obj - 0001:000054c0 _$$8000 004064c0 f codec.obj - 0001:00001c00 _$$1000 00402c00 f chunk.obj - 0001:00004e80 _$$8000 00405e80 f chunk.obj - 0001:00001ab0 _$$8000 00402ab0 f memwin.obj - 0001:00001ac0 _$$1000 00402ac0 f memwin.obj - 0001:00001030 _$$1000 00402030 f utilstr.obj - 0001:00001920 _$$8000 00402920 f utilstr.obj - 0001:00000d00 _$$1000 00401d00 f utilrnd.obj - 0001:00000e00 _$$8000 00401e00 f utilrnd.obj - 0001:00000b20 _$$8000 00401b20 f utilmem.obj - 0001:00000b30 _$$1000 00401b30 f utilmem.obj - 0001:000007c0 _$$1000 004017c0 f utilint.obj - 0001:00000910 _$$8000 00401910 f utilint.obj - 0001:00000510 _$$8000 00401510 f utilerro.obj - 0001:00000740 _$$1000 00401740 f utilerro.obj - 0001:00000750 _$$9000 00401750 f utilerro.obj - 0001:00000770 _$$a000 00401770 f utilerro.obj - 0001:00000780 _$$b000 00401780 f utilerro.obj - 0001:000003d0 _$$1000 004013d0 f utilcopy.obj - 0001:00000500 _$$8000 00401500 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:000116bc __before 004126bc f LIBC:heapadd.obj - 0001:00011187 _flsall 00412187 f LIBC:fflush.obj - 0001:00010e73 __heap_new_region 00411e73 f LIBC:heapgrow.obj - 0001:00010bd1 __heap_grow_emptylist 00411bd1 f LIBC:heapinit.obj - 0001:00010885 _getSystemCP 00411885 f LIBC:mbctype.obj - 0001:000108c0 _CPtoLCID 004118c0 f LIBC:mbctype.obj - 0001:000108ff _setSBCS 004118ff f LIBC:mbctype.obj - 0001:000106bb _parse_cmdline 004116bb f LIBC:stdargv.obj - 0001:0001052d _xcptlookup 0041152d f LIBC:winxfltr.obj - 0001:00010330 __unwind_handler 00411330 f LIBC:exsup.obj - 0001:00010235 _write_char 00411235 f LIBC:output.obj - 0001:00010275 _write_multi_char 00411275 f LIBC:output.obj - 0001:000102a6 _write_string 004112a6 f LIBC:output.obj - 0001:000102dd _get_int_arg 004112dd f LIBC:output.obj - 0001:000102ec _get_int64_arg 004112ec f LIBC:output.obj - 0001:00010300 _get_short_arg 00411300 f LIBC:output.obj - 0001:0000f79f __heap_expand_block 0041079f f LIBC:realloc.obj - 0001:0000f60a _doexit 0041060a f LIBC:crt0dat.obj - 0001:0000f689 __initterm 00410689 f LIBC:crt0dat.obj - -FIXUPS: 10486 c ffffffcf ffffff46 1e 12 44 13 13 403 f e c 3d 55 fffffdbe -FIXUPS: 106d3 33 1f d 23 23 fffffe56 12 11 11 5d 12 fffffe8a c 5 10 10 -FIXUPS: 10531 1c 9 15 f 1f 9 fffffed0 6c8 9b 1d 6d 10 6b 4f 24 6b 6a 30 -FIXUPS: 10e66 16 11 ab 17 ff 96 14 1c 2d 16 1d 1b cb 3a 37 fffff662 45 -FIXUPS: 109b8 29 fffffe36 164a 75 d 96 d c 32 fffffe42 ffffffae ffffff6f -FIXUPS: 11d3b ffffff70 d 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 -FIXUPS: 11686 19 fffffef2 15 2a 11 fffffdf5 ffffff4e fffff7ca 1e8e 26 ffffff9d -FIXUPS: 1291e fffffead f3 fffffe7e fffffd4f 10 10 18 a1 3e 24 d 41 34 fffffd88 -FIXUPS: 123dd 2b 1a 1f fffffc99 b 21 42 37 2f 19 2b e fffffc55 fffef44f -FIXUPS: 12d4 5d 23 d fffffe10 fffffea4 11 2d c a 1e a 1f 1e 18 b 5 5 17 -FIXUPS: 1142 11b43 ffffff8c c d 20 d ffffff40 b b 1b fffffe05 fffef2e4 -FIXUPS: 1cd8 5e 1e d 3a 15 26 2b 21 12 d fffffb9d ef 54 fffffd73 b 72 21 -FIXUPS: 1516 1f 11 1e 5c 1b6 b 5 5 21 fffffd55 fffffca4 11 ed2 36 f 30 -FIXUPS: 211b 28 be 29 15 3a 32 70 f 25b 6d 114 49 f 2e 143 3c 16 fffff234 -FIXUPS: 1b66 2f 11 1e 12 10 53 35 1b 3ddc 38 3d 3b 26 67 82 c8 47 49 2a -FIXUPS: 5db9 16 5b 57 13 d 13 d ffffca8b a8 6c 51 fffff3b1 32 26 9 54 4b -FIXUPS: 1ff6 11 4e 35cc 1e f 44 28 1d 13 25 41 9 9 31 9 2c 1e 1f 15 21 -FIXUPS: 584b 1a 19 27 64 15 15 30 9 10 9 46 1c 60 fffff6eb 2d 34 28 d4 -FIXUPS: 5323 2a f 25 9 38 d 9 2e 12 9 1f 1c 36 1f 27 2a 2e 11 17 1e 1f -FIXUPS: 55b7 16 f 15 18 fffff6a7 1b 2b 29 2d 18 27 f c 10 22 2f 3c 11 1b -FIXUPS: 4ea9 30 2c 34 1f 10 3f 1b 20 18 10 4f 33 18 22 1c 34 fffff723 2a -FIXUPS: 4879 10 16 16 11 32 13 23 28 1c 34 1c 2b 11 d 24 17 1f 17 17 28 -FIXUPS: 4b02 25 13 3b 48 37 2e 2c 2f fffff88f a 33 11 24 d 24 13 9 11 7 -FIXUPS: 45ec 15 22 26 1c 17 1f b 1b 18 f 3f 27 16 d 19 14 16 17 23 22 fffff809 -FIXUPS: 402c 37 23 5d 4e 1a 16 a0 75 3d 45 1a 2c d 17 d 1a 10 9 15 12 9 -FIXUPS: 4406 11 1d 1a 15 a 50 31 8 fffff694 3c f b 9 13 11 40 29 48 f 20 -FIXUPS: 3d1f 21 2c 16 21 34 b 31 40 1d 17 16 7b 19 41 b 15 24 11 1a fffff672 -FIXUPS: 365e f 12 b 10 2a 39 1e 47 6 2c 30 24 52 a 9 19 75 60 28 6 38 34 -FIXUPS: 39ec 23 1f 1c 1a 27 39 2a fffff5d7 2b 27 17 41 16 18 16 13 26 30 -FIXUPS: 3248 16 16 13 39 2a 4c d cc 48 51 54 52 6 70 11 1c c 18 19 15 fffff646 -FIXUPS: 2c94 f 6a c 10 b 11 e 13 15 41 26 7 a f 2d 17 4c 8 1c 22 78 1f -FIXUPS: 2fbc 13 13 26 27 17 2e 17 2f73 7f 20 b1 65 a 2b 23 18 16 1a 8 e -FIXUPS: 627f 19 6 223 13 d ffffc604 11 2f 11 1e 12 88 2c 14 2c 9 b d 3bc3 -FIXUPS: 68a8 12 78 12 33 27 21 3994 1b 1c 52 f d 9c 73 11 32 e 3a 30 97 -FIXUPS: a66c 30 27 21 259d ffff9264 11 2f f 7a 7957 b 99 e 12 29 25 2c -FIXUPS: da59 2d b 5 5 9 d 13 d fffff1d0 ffff9864 11 52 8 28 8 11c 18 3f -FIXUPS: 672e 1c 55 11 d 6ba7 20 50 40 28 18 40 40 1f 38 45 3e 10 17 ed -FIXUPS: d719 6 20 2b 3f 6 20 2b 37 1a 12 11 b 39 f 1e 19 fffff4fd 14 14 -FIXUPS: ce42 11 18 3d 1c d 14 57 26 7 a f 2a 3e 64 ed 69 2e 22 2e 4b 36 -FIXUPS: d2ba 27 34 1c 17 8 a cda 11 9 d 14 11 10 1b 1d f 1f 1d 14 1f 10 -FIXUPS: e166 4e 10 10 1e 10 3f ffffea94 11 2f 11 1e 12 22 21 25 14 1924 -FIXUPS: e730 b 3b 1a 154 76 1d 68 34 7 70 28 34 b 5 5 17 fffff08c 23 89 -FIXUPS: dce8 5e a1 aa c a4 c 86 c 42 9 1ec7 ffffe365 1f 11 2e 15 ab d 2c -FIXUPS: e3c6 20 12 5d 26 11 24 1e 11 b 1e 82 10 28 e 2b c 24 b 4d 1a 22 -FIXUPS: e6e3 13a4 85 2f 13 2d 1f 3a 14 2f 2d 11 24 41 14 b 51 31 2e 18 -FIXUPS: fde1 44 17 15 13 d 13 d 13 d 13 d 13 fffff382 2c 10 1b 3c 41 45 -FIXUPS: f3b3 14 31 38 29 35 42 14 98 35 1e 3e 23 12 1d 43 b8 42 b9 44 e -FIXUPS: f9bc 11 42 55 fffff411 38 20 1e a b 28 a b 4c 22 a b 24 a b 2b -FIXUPS: f07f 6 15 b 14 10 1e 32 d 1c 48 14 b 20 80 10a3 22 f 16 9 f 18 -FIXUPS: 10381 fffffb90 ffffec24 11 2f 11 2f 11 2f 11 2f 11 28 9 32 1c 14 -FIXUPS: ecf5 21 24 6e 1e 2f 22 3b 10ea c 13 12 46 16 17 16 a 16 14 37 14 -FIXUPS: 100b1 f 19 1b 46 15 3a 2e 1a 17 1b 18 18 18 14 2b 2f d 13 diff --git a/kauai/OBJ/WINS/CHOMP.MAP b/kauai/OBJ/WINS/CHOMP.MAP deleted file mode 100644 index 0efc9e58..00000000 --- a/kauai/OBJ/WINS/CHOMP.MAP +++ /dev/null @@ -1,1725 +0,0 @@ - chomp - - Timestamp is 3070b53b (Mon Oct 02 20:59:55 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0002344cH .text CODE - 0002:00000000 00001f00H .bss DATA - 0003:00000000 000006e9H .rdata DATA - 0004:00000000 0000454cH .data DATA - 0004:0000454c 00000004H .CRT$XCA DATA - 0004:00004550 00000080H .CRT$XCU DATA - 0004:000045d0 00000004H .CRT$XCZ DATA - 0004:000045d4 00000004H .CRT$XIA DATA - 0004:000045d8 00000008H .CRT$XIC DATA - 0004:000045e0 00000004H .CRT$XIZ DATA - 0004:000045e4 00000004H .CRT$XPA DATA - 0004:000045e8 00000004H .CRT$XPX DATA - 0004:000045ec 00000004H .CRT$XPZ DATA - 0004:000045f0 00000004H .CRT$XTA DATA - 0004:000045f4 00000004H .CRT$XTZ DATA - 0005:00000000 00000064H .idata$2 DATA - 0005:00000064 00000014H .idata$3 DATA - 0005:00000078 000000e0H .idata$4 DATA - 0005:00000158 000000e0H .idata$5 DATA - 0005:00000238 000003c4H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00003620H .debug$F DATA - 0007:00003e20 00000000H .debug$G DATA - 0007:00003e20 00000032H .debug$H DATA - 0007:fffd0000 00000000H .debug$P DATA - 0007:fffd0000 00000000H .debug$S DATA - 0007:fffd0000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003d0 ?ReversePb@@YGXPAXJ@Z 004013d0 f utilcopy.obj - 0001:00000400 ?SwapBlocks@@YGXPAXJJ@Z 00401400 f utilcopy.obj - 0001:00000430 ?SwapPb@@YGXPAX0J@Z 00401430 f utilcopy.obj - 0001:00000490 ?FEqualRgb@@YGHPAX0J@Z 00401490 f utilcopy.obj - 0001:000004d0 ?CbEqualRgb@@YGJPAX0J@Z 004014d0 f utilcopy.obj - 0001:00000530 ?CopyPb@@YGXPAX0J@Z 00401530 f utilcopy.obj - 0001:00000560 ?BltPb@@YGXPAX0J@Z 00401560 f utilcopy.obj - 0001:000005d0 ?FWouldBe@ERS@@SGHJ@Z 004015d0 f utilerro.obj - 0001:000005f0 ?FIs@ERS@@UAEHJ@Z 004015f0 f utilerro.obj - 0001:00000600 ?Cls@ERS@@UAEJXZ 00401600 f utilerro.obj - 0001:00000610 ??0ERS@@QAE@XZ 00401610 f utilerro.obj - 0001:00000640 ?Push@ERS@@UAEXJ@Z 00401640 f utilerro.obj - 0001:00000690 ?FPop@ERS@@UAEHPAJ@Z 00401690 f utilerro.obj - 0001:000006e0 ?Clear@ERS@@UAEXXZ 004016e0 f utilerro.obj - 0001:00000700 ?Cerc@ERS@@UAEJXZ 00401700 f utilerro.obj - 0001:00000710 ?FIn@ERS@@UAEHJ@Z 00401710 f utilerro.obj - 0001:00000760 ?ErcGet@ERS@@UAEJJ@Z 00401760 f utilerro.obj - 0001:000007a0 ?Flush@ERS@@UAEXJ@Z 004017a0 f utilerro.obj - 0001:00000840 ??_GERS@@UAEPAXI@Z 00401840 f utilerro.obj - 0001:00000840 ??_EERS@@UAEPAXI@Z 00401840 f utilerro.obj - 0001:00000870 ?LwGcd@@YGJJJ@Z 00401870 f utilint.obj - 0001:00000890 ?LuGcd@@YGKKK@Z 00401890 f utilint.obj - 0001:000008e0 ?LwDivAway@@YGJJJ@Z 004018e0 f utilint.obj - 0001:00000910 ?LwRoundAway@@YGJJJ@Z 00401910 f utilint.obj - 0001:00000940 ?LwRoundToward@@YGJJJ@Z 00401940 f utilint.obj - 0001:00000970 ?SwapBytesBom@@YGXPAXK@Z 00401970 f utilint.obj - 0001:000009d0 ?SwapBytesRgsw@@YGXPAXJ@Z 004019d0 f utilint.obj - 0001:00000a00 ?SwapBytesRglw@@YGXPAXJ@Z 00401a00 f utilint.obj - 0001:00000a30 ?Offset@RC@@QAEXJJ@Z 00401a30 f utilint.obj - 0001:00000a50 ??0USAC@@QAE@XZ 00401a50 f utilint.obj - 0001:00000a80 ?Set@DVER@@QAEXFF@Z 00401a80 f utilint.obj - 0001:00000aa0 ?FReadable@DVER@@QAEHFF@Z 00401aa0 f utilint.obj - 0001:00000ae0 ??_GUSAC@@UAEPAXI@Z 00401ae0 f utilint.obj - 0001:00000ae0 ??_EUSAC@@UAEPAXI@Z 00401ae0 f utilint.obj - 0001:00000b00 ?FAllocPv@@YGHPAPAXJKJ@Z 00401b00 f utilmem.obj - 0001:00000bd0 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00401bd0 f utilmem.obj - 0001:00000cc0 ?FreePpv@@YGXPAPAX@Z 00401cc0 f utilmem.obj - 0001:00000d00 ?FWouldBe@RND@@SGHJ@Z 00401d00 f utilrnd.obj - 0001:00000d20 ?FIs@RND@@UAEHJ@Z 00401d20 f utilrnd.obj - 0001:00000d30 ?Cls@RND@@UAEJXZ 00401d30 f utilrnd.obj - 0001:00000d40 ?FWouldBe@SFL@@SGHJ@Z 00401d40 f utilrnd.obj - 0001:00000d60 ?FIs@SFL@@UAEHJ@Z 00401d60 f utilrnd.obj - 0001:00000d70 ?Cls@SFL@@UAEJXZ 00401d70 f utilrnd.obj - 0001:00000d80 ??0RND@@QAE@K@Z 00401d80 f utilrnd.obj - 0001:00000dc0 ?LwNext@RND@@UAEJJ@Z 00401dc0 f utilrnd.obj - 0001:00000df0 ??0SFL@@QAE@K@Z 00401df0 f utilrnd.obj - 0001:00000e20 ??1SFL@@UAE@XZ 00401e20 f utilrnd.obj - 0001:00000e40 ?Shuffle@SFL@@QAEXJ@Z 00401e40 f utilrnd.obj - 0001:00000e80 ?_ShuffleCore@SFL@@IAEXXZ 00401e80 f utilrnd.obj - 0001:00000ed0 ?_FEnsureHq@SFL@@IAEHJ@Z 00401ed0 f utilrnd.obj - 0001:00000f40 ?LwNext@SFL@@UAEJJ@Z 00401f40 f utilrnd.obj - 0001:00000fd0 ??_ERND@@UAEPAXI@Z 00401fd0 f utilrnd.obj - 0001:00000fd0 ??_GRND@@UAEPAXI@Z 00401fd0 f utilrnd.obj - 0001:00000ff0 ??_GSFL@@UAEPAXI@Z 00401ff0 f utilrnd.obj - 0001:00000ff0 ??_ESFL@@UAEPAXI@Z 00401ff0 f utilrnd.obj - 0001:00001010 ??4STN@@QAEAAV0@AAV0@@Z 00402010 f utilstr.obj - 0001:00001030 ?SetRgch@STN@@QAEXPADJ@Z 00402030 f utilstr.obj - 0001:00001070 ?SetSzs@STN@@QAEXPAD@Z 00402070 f utilstr.obj - 0001:00001090 ?Delete@STN@@QAEXJJ@Z 00402090 f utilstr.obj - 0001:000010f0 ?FAppendRgch@STN@@QAEHPADJ@Z 004020f0 f utilstr.obj - 0001:00001140 ?FInsertRgch@STN@@QAEHJPADJ@Z 00402140 f utilstr.obj - 0001:00001200 ?FEqualRgch@STN@@QAEHPADJ@Z 00402200 f utilstr.obj - 0001:00001230 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402230 f utilstr.obj - 0001:00001250 ?CbData@STN@@QAEJXZ 00402250 f utilstr.obj - 0001:00001260 ?GetData@STN@@QAEXPAX@Z 00402260 f utilstr.obj - 0001:000012a0 ?FSetData@STN@@QAEHPAXJPAJ@Z 004022a0 f utilstr.obj - 0001:000014d0 ?FFormatSz@STN@@QAAHPADZZ 004024d0 f utilstr.obj - 0001:000014f0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004024f0 f utilstr.obj - 0001:00001870 ?FExpandControls@STN@@QAEHXZ 00402870 f utilstr.obj - 0001:00001980 ?CchSz@@YGJPAD@Z 00402980 f utilstr.obj - 0001:000019a0 ?FcmpCompareRgch@@YGKPADJ0J@Z 004029a0 f utilstr.obj - 0001:00001a00 ?FEqualUserRgch@@YGHPADJ0JK@Z 00402a00 f utilstr.obj - 0001:00001af0 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 00402af0 f utilstr.obj - 0001:00001b60 ?UpperRgchs@@YGXPADJ@Z 00402b60 f utilstr.obj - 0001:00001bc0 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00402bc0 f utilstr.obj - 0001:00001cc0 ?TranslateRgch@@YGXPADJFH@Z 00402cc0 f utilstr.obj - 0001:00001d20 ?FAllocHq@@YGHPAPAXJKJ@Z 00402d20 f memwin.obj - 0001:00001d90 ?FResizePhq@@YGHPAPAXJKJ@Z 00402d90 f memwin.obj - 0001:00001e30 ?FreePhq@@YGXPAPAX@Z 00402e30 f memwin.obj - 0001:00001e60 ?CbOfHq@@YGJPAX@Z 00402e60 f memwin.obj - 0001:00001e70 ?PvLockHq@@YGPAXPAX@Z 00402e70 f memwin.obj - 0001:00001e80 ?UnlockHq@@YGXPAX@Z 00402e80 f memwin.obj - 0001:00001ec0 ?FWouldBe@CFL@@SGHJ@Z 00402ec0 f chunk.obj - 0001:00001ee0 ?FIs@CFL@@UAEHJ@Z 00402ee0 f chunk.obj - 0001:00001ef0 ?Cls@CFL@@UAEJXZ 00402ef0 f chunk.obj - 0001:00001f00 ?FWouldBe@CGE@@SGHJ@Z 00402f00 f chunk.obj - 0001:00001f20 ?FIs@CGE@@UAEHJ@Z 00402f20 f chunk.obj - 0001:00001f30 ?Cls@CGE@@UAEJXZ 00402f30 f chunk.obj - 0001:00001f40 ??0CFL@@AAE@XZ 00402f40 f chunk.obj - 0001:00001f60 ??1CFL@@EAE@XZ 00402f60 f chunk.obj - 0001:00002000 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00403000 f chunk.obj - 0001:000020d0 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 004030d0 f chunk.obj - 0001:000020f0 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 004030f0 f chunk.obj - 0001:000021a0 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 004031a0 f chunk.obj - 0001:00002230 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 00403230 f chunk.obj - 0001:00002270 ?FWriteChunkTree@CFL@@QAEHKKPAVFIL@@JPAJ@Z 00403270 f chunk.obj - 0001:00002440 ?FForest@CFL@@QAEHKK@Z 00403440 f chunk.obj - 0001:00002490 ?SetForest@CFL@@QAEXKKH@Z 00403490 f chunk.obj - 0001:00002510 ?FSetGrfcfl@CFL@@QAEHKK@Z 00403510 f chunk.obj - 0001:000025b0 ?Release@CFL@@UAEXXZ 004035b0 f chunk.obj - 0001:000025d0 ?_TValidIndex@CFL@@AAEHXZ 004035d0 f chunk.obj - 0001:00002930 ?_FReadIndex@CFL@@AAEHXZ 00403930 f chunk.obj - 0001:00002fa0 ?_ReadFreeMap@CFL@@AAEXXZ 00403fa0 f chunk.obj - 0001:00003020 ?FSave@CFL@@QAEHKPAVFNI@@@Z 00404020 f chunk.obj - 0001:00003340 ?_FWriteIndex@CFL@@AAEHK@Z 00404340 f chunk.obj - 0001:00003490 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00404490 f chunk.obj - 0001:00003590 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00404590 f chunk.obj - 0001:000035f0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 004045f0 f chunk.obj - 0001:00003630 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00404630 f chunk.obj - 0001:00003690 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 00404690 f chunk.obj - 0001:000036e0 ?SetPacked@CFL@@QAEXKKH@Z 004046e0 f chunk.obj - 0001:00003760 ?FPacked@CFL@@QAEHKK@Z 00404760 f chunk.obj - 0001:000037b0 ?_FCreateExtra@CFL@@AAEHXZ 004047b0 f chunk.obj - 0001:000037e0 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 004047e0 f chunk.obj - 0001:000038f0 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 004048f0 f chunk.obj - 0001:00003990 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00404990 f chunk.obj - 0001:00003a10 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00404a10 f chunk.obj - 0001:00003a60 ?FAddBlck@CFL@@QAEHPAVBLCK@@KPAK@Z 00404a60 f chunk.obj - 0001:00003b20 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00404b20 f chunk.obj - 0001:00003c00 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 00404c00 f chunk.obj - 0001:00003c20 ?FPutPv@CFL@@QAEHPAXJKK@Z 00404c20 f chunk.obj - 0001:00003c40 ?FPutBlck@CFL@@QAEHPAVBLCK@@KK@Z 00404c40 f chunk.obj - 0001:00003ca0 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00404ca0 f chunk.obj - 0001:00003eb0 ?SwapData@CFL@@QAEXKKKK@Z 00404eb0 f chunk.obj - 0001:00003fa0 ?SwapChildren@CFL@@QAEXKKKK@Z 00404fa0 f chunk.obj - 0001:00004070 ?Delete@CFL@@QAEXKK@Z 00405070 f chunk.obj - 0001:00004210 ?SetLoner@CFL@@QAEXKKH@Z 00405210 f chunk.obj - 0001:00004270 ?CckiRef@CFL@@QAEJKK@Z 00405270 f chunk.obj - 0001:000042c0 ?TIsDescendent@CFL@@QAEHKKKK@Z 004052c0 f chunk.obj - 0001:00004390 ?_FDecRefCount@CFL@@AAEHJ@Z 00405390 f chunk.obj - 0001:000043d0 ?_DeleteCore@CFL@@AAEXJ@Z 004053d0 f chunk.obj - 0001:00004430 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00405430 f chunk.obj - 0001:00004610 ?FSetName@CFL@@QAEHKKPAVSTN@@@Z 00405610 f chunk.obj - 0001:00004680 ?_FSetName@CFL@@AAEHJPAVSTN@@@Z 00405680 f chunk.obj - 0001:00004740 ?FGetName@CFL@@QAEHKKPAVSTN@@@Z 00405740 f chunk.obj - 0001:00004790 ?_FGetName@CFL@@AAEHJPAVSTN@@@Z 00405790 f chunk.obj - 0001:00004830 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00405830 f chunk.obj - 0001:000048c0 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 004058c0 f chunk.obj - 0001:000049e0 ?FGetCki@CFL@@QAEHJPAUCKI@@PAJPAVBLCK@@@Z 004059e0 f chunk.obj - 0001:00004a50 ?Ckid@CFL@@QAEJKK@Z 00405a50 f chunk.obj - 0001:00004aa0 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00405aa0 f chunk.obj - 0001:00004b20 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00405b20 f chunk.obj - 0001:00004b60 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00405b60 f chunk.obj - 0001:00004c40 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00405c40 f chunk.obj - 0001:00004d00 ?_FSetRti@CFL@@AAEHKKJ@Z 00405d00 f chunk.obj - 0001:00004dd0 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00405dd0 f chunk.obj - 0001:00004ea0 ??0CGE@@QAE@XZ 00405ea0 f chunk.obj - 0001:00004ec0 ??1CGE@@UAE@XZ 00405ec0 f chunk.obj - 0001:00004ef0 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00405ef0 f chunk.obj - 0001:00004f30 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00405f30 f chunk.obj - 0001:00005110 ??_ECFL@@EAEPAXI@Z 00406110 f chunk.obj - 0001:00005110 ??_GCFL@@EAEPAXI@Z 00406110 f chunk.obj - 0001:00005130 ??_GCGE@@UAEPAXI@Z 00406130 f chunk.obj - 0001:00005130 ??_ECGE@@UAEPAXI@Z 00406130 f chunk.obj - 0001:00005150 ?FWouldBe@CODM@@SGHJ@Z 00406150 f codec.obj - 0001:00005170 ?FIs@CODM@@UAEHJ@Z 00406170 f codec.obj - 0001:00005180 ?Cls@CODM@@UAEJXZ 00406180 f codec.obj - 0001:00005190 ?FWouldBe@CODC@@SGHJ@Z 00406190 f codec.obj - 0001:000051b0 ??0CODM@@QAE@PAVCODC@@J@Z 004061b0 f codec.obj - 0001:000051f0 ??1CODM@@UAE@XZ 004061f0 f codec.obj - 0001:00005270 ?SetCfmtDefault@CODM@@QAEXJ@Z 00406270 f codec.obj - 0001:00005280 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00406280 f codec.obj - 0001:000052d0 ?FCanDo@CODM@@UAEHJH@Z 004062d0 f codec.obj - 0001:00005300 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00406300 f codec.obj - 0001:00005380 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00406380 f codec.obj - 0001:00005430 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00406430 f codec.obj - 0001:00005550 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00406550 f codec.obj - 0001:00005760 ??_ECODM@@UAEPAXI@Z 00406760 f codec.obj - 0001:00005760 ??_GCODM@@UAEPAXI@Z 00406760 f codec.obj - 0001:00005780 ?FWouldBe@KCDC@@SGHJ@Z 00406780 f codkauai.obj - 0001:000057a0 ?FIs@KCDC@@UAEHJ@Z 004067a0 f codkauai.obj - 0001:000057b0 ?Cls@KCDC@@UAEJXZ 004067b0 f codkauai.obj - 0001:000057c0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 004067c0 f codkauai.obj - 0001:00005840 ?Set@BITA@@QAEXPAXJ@Z 00406840 f codkauai.obj - 0001:00005860 ?FWriteBits@BITA@@QAEHKJ@Z 00406860 f codkauai.obj - 0001:00005920 ?FWriteLogEncoded@BITA@@QAEHK@Z 00406920 f codkauai.obj - 0001:00005970 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00406970 f codkauai.obj - 0001:00005c80 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00406c80 f codkauai.obj - 0001:000095b0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040a5b0 f codkauai.obj - 0001:00009990 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040a990 f codkauai.obj - 0001:0000bf20 ?FWouldBe@BACO@@SGHJ@Z 0040cf20 f crf.obj - 0001:0000bf40 ?FIs@BACO@@UAEHJ@Z 0040cf40 f crf.obj - 0001:0000bf50 ?Cls@BACO@@UAEJXZ 0040cf50 f crf.obj - 0001:0000bf60 ??0BACO@@IAE@XZ 0040cf60 f crf.obj - 0001:0000bf90 ??1BACO@@MAE@XZ 0040cf90 f crf.obj - 0001:0000bfc0 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 0040cfc0 f crf.obj - 0001:0000c000 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 0040d000 f crf.obj - 0001:0000c010 ?CbOnFile@BACO@@UAEJXZ 0040d010 f crf.obj - 0001:0000c020 ?Release@BACO@@UAEXXZ 0040d020 f crf.obj - 0001:0000c070 ?Detach@BACO@@UAEXXZ 0040d070 f crf.obj - 0001:0000c0b0 ?SetCrep@BACO@@UAEXJ@Z 0040d0b0 f crf.obj - 0001:0000c0e0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 0040d0e0 f crf.obj - 0001:0000c130 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 0040d130 f crf.obj - 0001:0000c1b0 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 0040d1b0 f crf.obj - 0001:0000c2f0 ??_GBACO@@MAEPAXI@Z 0040d2f0 f crf.obj - 0001:0000c2f0 ??_EBACO@@MAEPAXI@Z 0040d2f0 f crf.obj - 0001:0000c320 ?FWouldBe@FIL@@SGHJ@Z 0040d320 f file.obj - 0001:0000c340 ?FIs@FIL@@UAEHJ@Z 0040d340 f file.obj - 0001:0000c350 ?Cls@FIL@@UAEJXZ 0040d350 f file.obj - 0001:0000c360 ?FWouldBe@BLCK@@SGHJ@Z 0040d360 f file.obj - 0001:0000c380 ?FIs@BLCK@@UAEHJ@Z 0040d380 f file.obj - 0001:0000c390 ?Cls@BLCK@@UAEJXZ 0040d390 f file.obj - 0001:0000c3a0 ?FWouldBe@MSFIL@@SGHJ@Z 0040d3a0 f file.obj - 0001:0000c3d0 ?FIs@MSFIL@@UAEHJ@Z 0040d3d0 f file.obj - 0001:0000c3e0 ?Cls@MSFIL@@UAEJXZ 0040d3e0 f file.obj - 0001:0000c3f0 ??0FIL@@IAE@PAVFNI@@K@Z 0040d3f0 f file.obj - 0001:0000c460 ??1FIL@@MAE@XZ 0040d460 f file.obj - 0001:0000c4b0 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 0040d4b0 f file.obj - 0001:0000c550 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 0040d550 f file.obj - 0001:0000c5e0 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 0040d5e0 f file.obj - 0001:0000c670 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 0040d670 f file.obj - 0001:0000c6d0 ?FSetGrffil@FIL@@QAEHKK@Z 0040d6d0 f file.obj - 0001:0000c760 ?Release@FIL@@UAEXXZ 0040d760 f file.obj - 0001:0000c790 ?GetStnPath@FIL@@QAEXPAVSTN@@@Z 0040d790 f file.obj - 0001:0000c7c0 ?SetTemp@FIL@@QAEXH@Z 0040d7c0 f file.obj - 0001:0000c800 ?ShutDown@FIL@@SGXXZ 0040d800 f file.obj - 0001:0000c870 ?FReadRgb@FLO@@QAEHPAXJJ@Z 0040d870 f file.obj - 0001:0000c8c0 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 0040d8c0 f file.obj - 0001:0000c910 ?FCopy@FLO@@QAEHPAU1@@Z 0040d910 f file.obj - 0001:0000c9e0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0040d9e0 f file.obj - 0001:0000ca60 ?FWriteHq@FLO@@QAEHPAXJ@Z 0040da60 f file.obj - 0001:0000cab0 ?FTranslate@FLO@@QAEHF@Z 0040dab0 f file.obj - 0001:0000cdc0 ??0BLCK@@QAE@PAUFLO@@H@Z 0040ddc0 f file.obj - 0001:0000ce10 ??0BLCK@@QAE@PAVFIL@@JJH@Z 0040de10 f file.obj - 0001:0000ce50 ??0BLCK@@QAE@XZ 0040de50 f file.obj - 0001:0000ce70 ??1BLCK@@UAE@XZ 0040de70 f file.obj - 0001:0000ce90 ?Set@BLCK@@QAEXPAUFLO@@H@Z 0040de90 f file.obj - 0001:0000ced0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0040ded0 f file.obj - 0001:0000cf10 ?SetHq@BLCK@@QAEXPAPAXH@Z 0040df10 f file.obj - 0001:0000cf50 ?Free@BLCK@@QAEXXZ 0040df50 f file.obj - 0001:0000cf80 ?HqFree@BLCK@@QAEPAXH@Z 0040df80 f file.obj - 0001:0000d030 ?Cb@BLCK@@QAEJH@Z 0040e030 f file.obj - 0001:0000d050 ?FSetTemp@BLCK@@QAEHJH@Z 0040e050 f file.obj - 0001:0000d0e0 ?FMoveMin@BLCK@@QAEHJ@Z 0040e0e0 f file.obj - 0001:0000d150 ?FMoveLim@BLCK@@QAEHJ@Z 0040e150 f file.obj - 0001:0000d1c0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0040e1c0 f file.obj - 0001:0000d250 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0040e250 f file.obj - 0001:0000d2e0 ?FWriteHq@BLCK@@QAEHPAXJH@Z 0040e2e0 f file.obj - 0001:0000d370 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0040e370 f file.obj - 0001:0000d3f0 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 0040e3f0 f file.obj - 0001:0000d490 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 0040e490 f file.obj - 0001:0000d570 ?FPacked@BLCK@@QAEHPAJ@Z 0040e570 f file.obj - 0001:0000d5b0 ?FPackData@BLCK@@QAEHJ@Z 0040e5b0 f file.obj - 0001:0000d6d0 ?FUnpackData@BLCK@@QAEHXZ 0040e6d0 f file.obj - 0001:0000d7d0 ??0MSFIL@@QAE@PAVFIL@@@Z 0040e7d0 f file.obj - 0001:0000d800 ??1MSFIL@@UAE@XZ 0040e800 f file.obj - 0001:0000d830 ?SetFile@MSFIL@@QAEXPAVFIL@@@Z 0040e830 f file.obj - 0001:0000d890 ?ReportLine@MSFIL@@UAEXPAD@Z 0040e890 f file.obj - 0001:0000d8e0 ?Report@MSFIL@@UAEXPAD@Z 0040e8e0 f file.obj - 0001:0000d940 ?FError@MSFIL@@UAEHXZ 0040e940 f file.obj - 0001:0000d980 ??_GFIL@@MAEPAXI@Z 0040e980 f file.obj - 0001:0000d980 ??_EFIL@@MAEPAXI@Z 0040e980 f file.obj - 0001:0000d9a0 ??_GBLCK@@UAEPAXI@Z 0040e9a0 f file.obj - 0001:0000d9a0 ??_EBLCK@@UAEPAXI@Z 0040e9a0 f file.obj - 0001:0000d9c0 ??_GMSFIL@@UAEPAXI@Z 0040e9c0 f file.obj - 0001:0000d9c0 ??_EMSFIL@@UAEPAXI@Z 0040e9c0 f file.obj - 0001:0000da30 ?_FOpen@FIL@@IAEHHK@Z 0040ea30 f filewin.obj - 0001:0000db30 ?_Close@FIL@@IAEXH@Z 0040eb30 f filewin.obj - 0001:0000dba0 ?Flush@FIL@@QAEXXZ 0040eba0 f filewin.obj - 0001:0000dbd0 ?_SetFpPos@FIL@@IAEXJ@Z 0040ebd0 f filewin.obj - 0001:0000dc30 ?FSetFpMac@FIL@@QAEHJ@Z 0040ec30 f filewin.obj - 0001:0000dcc0 ?FpMac@FIL@@QAEJXZ 0040ecc0 f filewin.obj - 0001:0000dd50 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040ed50 f filewin.obj - 0001:0000de00 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040ee00 f filewin.obj - 0001:0000dec0 ?FSwapNames@FIL@@QAEHPAV1@@Z 0040eec0 f filewin.obj - 0001:0000e0a0 ?FRename@FIL@@QAEHPAVFNI@@@Z 0040f0a0 f filewin.obj - 0001:0000e160 ?FWouldBe@FNI@@SGHJ@Z 0040f160 f fniwin.obj - 0001:0000e180 ?FIs@FNI@@UAEHJ@Z 0040f180 f fniwin.obj - 0001:0000e190 ?Cls@FNI@@UAEJXZ 0040f190 f fniwin.obj - 0001:0000e1a0 ?SetNil@FNI@@QAEXXZ 0040f1a0 f fniwin.obj - 0001:0000e1b0 ??0FNI@@QAE@XZ 0040f1b0 f fniwin.obj - 0001:0000e1e0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040f1e0 f fniwin.obj - 0001:0000e330 ?FGetUnique@FNI@@QAEHJ@Z 0040f330 f fniwin.obj - 0001:0000e440 ?FGetTemp@FNI@@QAEHXZ 0040f440 f fniwin.obj - 0001:0000e4e0 ?Ftg@FNI@@QAEJXZ 0040f4e0 f fniwin.obj - 0001:0000e4f0 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0040f4f0 f fniwin.obj - 0001:0000e560 ?FChangeFtg@FNI@@QAEHJ@Z 0040f560 f fniwin.obj - 0001:0000e610 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0040f610 f fniwin.obj - 0001:0000e650 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 0040f650 f fniwin.obj - 0001:0000e660 ?TExists@FNI@@QAEHXZ 0040f660 f fniwin.obj - 0001:0000e760 ?FDelete@FNI@@QAEHXZ 0040f760 f fniwin.obj - 0001:0000e790 ?FRename@FNI@@QAEHPAV1@@Z 0040f790 f fniwin.obj - 0001:0000e7e0 ?FEqual@FNI@@QAEHPAV1@@Z 0040f7e0 f fniwin.obj - 0001:0000e800 ?_CchExt@FNI@@AAEJXZ 0040f800 f fniwin.obj - 0001:0000e840 ?_SetFtgFromName@FNI@@AAEXXZ 0040f840 f fniwin.obj - 0001:0000e8c0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0040f8c0 f fniwin.obj - 0001:0000ea10 ??_EFNI@@UAEPAXI@Z 0040fa10 f fniwin.obj - 0001:0000ea10 ??_GFNI@@UAEPAXI@Z 0040fa10 f fniwin.obj - 0001:0000ea30 ?FWouldBe@CHCM@@SGHJ@Z 0040fa30 f chcm.obj - 0001:0000ea50 ?FIs@CHCM@@UAEHJ@Z 0040fa50 f chcm.obj - 0001:0000ea60 ?Cls@CHCM@@UAEJXZ 0040fa60 f chcm.obj - 0001:0000ea70 ?FWouldBe@CHLX@@SGHJ@Z 0040fa70 f chcm.obj - 0001:0000ea90 ?FIs@CHLX@@UAEHJ@Z 0040fa90 f chcm.obj - 0001:0000eaa0 ?Cls@CHLX@@UAEJXZ 0040faa0 f chcm.obj - 0001:0000eab0 ?FWouldBe@CHDC@@SGHJ@Z 0040fab0 f chcm.obj - 0001:0000ead0 ?FIs@CHDC@@UAEHJ@Z 0040fad0 f chcm.obj - 0001:0000eae0 ?Cls@CHDC@@UAEJXZ 0040fae0 f chcm.obj - 0001:0000eaf0 ??0CHCM@@QAE@XZ 0040faf0 f chcm.obj - 0001:0000eb20 ??1CHCM@@UAE@XZ 0040fb20 f chcm.obj - 0001:0000ebd0 ?_Error@CHCM@@IAEXJPAD@Z 0040fbd0 f chcm.obj - 0001:0000ecb0 ?_GetRgbFromLw@CHCM@@IAEXJPAE@Z 0040fcb0 f chcm.obj - 0001:0000ed50 ?_ErrorOnData@CHCM@@IAEXPAD@Z 0040fd50 f chcm.obj - 0001:0000ed80 ?_FGetCleanTok@CHCM@@IAEHPAUTOK@@H@Z 0040fd80 f chcm.obj - 0001:0000ef10 ?_SkipPastTok@CHCM@@IAEXJ@Z 0040ff10 f chcm.obj - 0001:0000ef50 ?_FParseParenHeader@CHCM@@IAEHPAUPHP@1@JPAJ@Z 0040ff50 f chcm.obj - 0001:0000f0c0 ?_ParseChunkHeader@CHCM@@IAEXPAK0@Z 004100c0 f chcm.obj - 0001:0000f1b0 ?_AppendString@CHCM@@IAEXPAVSTN@@@Z 004101b0 f chcm.obj - 0001:0000f250 ?_AppendNumber@CHCM@@IAEXJ@Z 00410250 f chcm.obj - 0001:0000f2a0 ?_ParseBodyChild@CHCM@@IAEXKK@Z 004102a0 f chcm.obj - 0001:0000f390 ?_ParseBodyParent@CHCM@@IAEXKK@Z 00410390 f chcm.obj - 0001:0000f480 ?_ParseBodyAlign@CHCM@@IAEXXZ 00410480 f chcm.obj - 0001:0000f590 ?_ParseBodyFile@CHCM@@IAEXXZ 00410590 f chcm.obj - 0001:0000f650 ?_FPrepWrite@CHCM@@IAEHHJKKPAVBLCK@@@Z 00410650 f chcm.obj - 0001:0000f6a0 ?_FEndWrite@CHCM@@IAEHHKKPAVBLCK@@@Z 004106a0 f chcm.obj - 0001:0000f6e0 ?_ParseBodyMeta@CHCM@@IAEXHKK@Z 004106e0 f chcm.obj - 0001:0000f810 ?_ParseBodyBitmap@CHCM@@IAEXHHKK@Z 00410810 f chcm.obj - 0001:0000f9b0 ?_ParseBodyPalette@CHCM@@IAEXHKK@Z 004109b0 f chcm.obj - 0001:0000faf0 ?_ParseBodyMidi@CHCM@@IAEXHKK@Z 00410af0 f chcm.obj - 0001:0000fc10 ?_ParseBodyCursor@CHCM@@IAEXHKK@Z 00410c10 f chcm.obj - 0001:00010050 ?_FParseData@CHCM@@IAEHPAUTOK@@@Z 00411050 f chcm.obj - 0001:000102a0 ?_ParseBodyList@CHCM@@IAEXHHKK@Z 004112a0 f chcm.obj - 0001:000105b0 ?_ParseBodyGroup@CHCM@@IAEXHHKK@Z 004115b0 f chcm.obj - 0001:00010980 ?_ParseBodyStringTable@CHCM@@IAEXHHKK@Z 00411980 f chcm.obj - 0001:00010e10 ?_ParseBodyScript@CHCM@@IAEXHHKK@Z 00411e10 f chcm.obj - 0001:00010eb0 ?_ParseBodyPackedFile@CHCM@@IAEXPAH@Z 00411eb0 f chcm.obj - 0001:00010fc0 ?_StartSubFile@CHCM@@IAEXHKK@Z 00411fc0 f chcm.obj - 0001:00011050 ?_EndSubFile@CHCM@@IAEXXZ 00412050 f chcm.obj - 0001:00011270 ?_ParsePackFmt@CHCM@@IAEXXZ 00412270 f chcm.obj - 0001:000112f0 ?_ParseChunkBody@CHCM@@IAEXKK@Z 004122f0 f chcm.obj - 0001:000116d0 ?_ParseAdopt@CHCM@@IAEXXZ 004126d0 f chcm.obj - 0001:000117e0 ?PcflCompile@CHCM@@QAEPAVCFL@@PAVFNI@@0PAVMSNK@@@Z 004127e0 f chcm.obj - 0001:000118f0 ?PcflCompile@CHCM@@QAEPAVCFL@@PAVBSF@@PAVSTN@@PAVFNI@@PAVMSNK@@@Z 004128f0 f chcm.obj - 0001:00011bd0 ??0CHLX@@QAE@PAVBSF@@PAVSTN@@@Z 00412bd0 f chcm.obj - 0001:00011c00 ?_ReadNumTok@LEXB@@MAEXPAUTOK@@DJJ@Z 00412c00 f chcm.obj - 0001:00011c20 ??1CHLX@@UAE@XZ 00412c20 f chcm.obj - 0001:00011c50 ?FGetTok@CHLX@@UAEHPAUTOK@@@Z 00412c50 f chcm.obj - 0001:00011d60 ?FGetTokSkipSemi@CHLX@@UAEHPAUTOK@@@Z 00412d60 f chcm.obj - 0001:00011da0 ?FGetPath@CHLX@@UAEHPAVFNI@@@Z 00412da0 f chcm.obj - 0001:00011f10 ?_FDoSet@CHLX@@IAEHPAUTOK@@@Z 00412f10 f chcm.obj - 0001:000121e0 ??0CHDC@@QAE@XZ 004131e0 f chcm.obj - 0001:00012210 ??1CHDC@@UAE@XZ 00413210 f chcm.obj - 0001:00012250 ?FDecompile@CHDC@@QAEHPAVCFL@@PAVMSNK@@1@Z 00413250 f chcm.obj - 0001:00012530 ?_FDumpScript@CHDC@@IAEHPAUCKI@@@Z 00413530 f chcm.obj - 0001:00012600 ?_FDumpList@CHDC@@IAEHPAVBLCK@@H@Z 00413600 f chcm.obj - 0001:000126e0 ?_FDumpGroup@CHDC@@IAEHPAVBLCK@@H@Z 004136e0 f chcm.obj - 0001:000127c0 ?_FDumpStringTable@CHDC@@IAEHPAVBLCK@@H@Z 004137c0 f chcm.obj - 0001:000128a0 ?_WritePack@CHDC@@IAEXJ@Z 004138a0 f chcm.obj - 0001:00012910 ??_GCHCM@@UAEPAXI@Z 00413910 f chcm.obj - 0001:00012910 ??_ECHCM@@UAEPAXI@Z 00413910 f chcm.obj - 0001:00012930 ??_GCHLX@@UAEPAXI@Z 00413930 f chcm.obj - 0001:00012930 ??_ECHLX@@UAEPAXI@Z 00413930 f chcm.obj - 0001:00012950 ??_GCHDC@@UAEPAXI@Z 00413950 f chcm.obj - 0001:00012950 ??_ECHDC@@UAEPAXI@Z 00413950 f chcm.obj - 0001:00012970 ??_ESCCG@@UAEPAXI@Z 00413970 f chcm.obj - 0001:00012970 ??_GSCCG@@UAEPAXI@Z 00413970 f chcm.obj - 0001:00012990 ?FWouldBe@CHSE@@SGHJ@Z 00413990 f chse.obj - 0001:000129b0 ?FIs@CHSE@@UAEHJ@Z 004139b0 f chse.obj - 0001:000129c0 ?Cls@CHSE@@UAEJXZ 004139c0 f chse.obj - 0001:000129d0 ??0CHSE@@QAE@XZ 004139d0 f chse.obj - 0001:00012a00 ??1CHSE@@UAE@XZ 00413a00 f chse.obj - 0001:00012a20 ?Init@CHSE@@QAEXPAVMSNK@@0@Z 00413a20 f chse.obj - 0001:00012a50 ?Uninit@CHSE@@QAEXXZ 00413a50 f chse.obj - 0001:00012aa0 ?DumpHeader@CHSE@@QAEXKKPAVSTN@@H@Z 00413aa0 f chse.obj - 0001:00012b60 ?DumpBlck@CHSE@@QAEXPAVBLCK@@@Z 00413b60 f chse.obj - 0001:00012c10 ?DumpAdoptCmd@CHSE@@QAEXPAUCKI@@PAUKID@@@Z 00413c10 f chse.obj - 0001:00012c70 ?_DumpBsf@CHSE@@IAEXJ@Z 00413c70 f chse.obj - 0001:00012e40 ?FDumpScript@CHSE@@QAEHPAVSCPT@@PAVSCCB@@@Z 00413e40 f chse.obj - 0001:00012ea0 ?DumpList@CHSE@@QAEXPAVGLB@@@Z 00413ea0 f chse.obj - 0001:00012f80 ?DumpGroup@CHSE@@QAEXPAVGGB@@@Z 00413f80 f chse.obj - 0001:000130c0 ?FDumpStringTable@CHSE@@QAEHPAVGSTB@@@Z 004140c0 f chse.obj - 0001:00013240 ??_GCHSE@@UAEPAXI@Z 00414240 f chse.obj - 0001:00013240 ??_ECHSE@@UAEPAXI@Z 00414240 f chse.obj - 0001:00013260 ?FWouldBe@GRPB@@SGHJ@Z 00414260 f groups.obj - 0001:00013280 ?FIs@GRPB@@UAEHJ@Z 00414280 f groups.obj - 0001:00013290 ?Cls@GRPB@@UAEJXZ 00414290 f groups.obj - 0001:000132a0 ?FWouldBe@GLB@@SGHJ@Z 004142a0 f groups.obj - 0001:000132c0 ?FIs@GLB@@UAEHJ@Z 004142c0 f groups.obj - 0001:000132d0 ?Cls@GLB@@UAEJXZ 004142d0 f groups.obj - 0001:000132e0 ?FWouldBe@GL@@SGHJ@Z 004142e0 f groups.obj - 0001:00013300 ?FIs@GL@@UAEHJ@Z 00414300 f groups.obj - 0001:00013310 ?Cls@GL@@UAEJXZ 00414310 f groups.obj - 0001:00013320 ?FWouldBe@AL@@SGHJ@Z 00414320 f groups.obj - 0001:00013340 ?FIs@AL@@UAEHJ@Z 00414340 f groups.obj - 0001:00013350 ?Cls@AL@@UAEJXZ 00414350 f groups.obj - 0001:00013360 ?FWouldBe@GGB@@SGHJ@Z 00414360 f groups.obj - 0001:00013380 ?FIs@GGB@@UAEHJ@Z 00414380 f groups.obj - 0001:00013390 ?Cls@GGB@@UAEJXZ 00414390 f groups.obj - 0001:000133a0 ?FWouldBe@GG@@SGHJ@Z 004143a0 f groups.obj - 0001:000133c0 ?FIs@GG@@UAEHJ@Z 004143c0 f groups.obj - 0001:000133d0 ?Cls@GG@@UAEJXZ 004143d0 f groups.obj - 0001:000133e0 ?FWouldBe@AG@@SGHJ@Z 004143e0 f groups.obj - 0001:00013400 ?FIs@AG@@UAEHJ@Z 00414400 f groups.obj - 0001:00013410 ?Cls@AG@@UAEJXZ 00414410 f groups.obj - 0001:00013420 ??1GRPB@@UAE@XZ 00414420 f groups.obj - 0001:00013450 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00414450 f groups.obj - 0001:00013530 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 00414530 f groups.obj - 0001:00013600 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 00414600 f groups.obj - 0001:00013650 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00414650 f groups.obj - 0001:00013720 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 00414720 f groups.obj - 0001:000137e0 ??0GLB@@IAE@J@Z 004147e0 f groups.obj - 0001:00013810 ?QvGet@GLB@@QAEPAXJ@Z 00414810 f groups.obj - 0001:00013830 ?Get@GLB@@QAEXJPAX@Z 00414830 f groups.obj - 0001:00013850 ?Put@GLB@@QAEXJPAX@Z 00414850 f groups.obj - 0001:00013870 ?PvLock@GLB@@QAEPAXJ@Z 00414870 f groups.obj - 0001:00013890 ?SetMinGrow@GLB@@QAEXJ@Z 00414890 f groups.obj - 0001:000138c0 ?PglNew@GL@@SGPAV1@JJ@Z 004148c0 f groups.obj - 0001:00013920 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 00414920 f groups.obj - 0001:00013980 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 00414980 f groups.obj - 0001:000139d0 ??0GL@@IAE@J@Z 004149d0 f groups.obj - 0001:000139f0 ?FFree@GL@@UAEHJ@Z 004149f0 f groups.obj - 0001:00013a10 ?CbOnFile@GL@@UAEJXZ 00414a10 f groups.obj - 0001:00013a20 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 00414a20 f groups.obj - 0001:00013a90 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00414a90 f groups.obj - 0001:00013b60 ?FInsert@GL@@QAEHJPAXJ@Z 00414b60 f groups.obj - 0001:00013c00 ?Delete@GL@@UAEXJ@Z 00414c00 f groups.obj - 0001:00013c10 ?Delete@GL@@QAEXJJ@Z 00414c10 f groups.obj - 0001:00013c50 ?FAdd@GL@@UAEHPAXPAJ@Z 00414c50 f groups.obj - 0001:00013c80 ?FPop@GL@@QAEHPAX@Z 00414c80 f groups.obj - 0001:00013cb0 ?FSetIvMac@GL@@QAEHJ@Z 00414cb0 f groups.obj - 0001:00013d00 ?FEnsureSpace@GL@@QAEHJK@Z 00414d00 f groups.obj - 0001:00013d40 ?PalNew@AL@@SGPAV1@JJ@Z 00414d40 f groups.obj - 0001:00013da0 ?PalRead@AL@@SGPAV1@PAVBLCK@@PAF1@Z 00414da0 f groups.obj - 0001:00013e00 ??0AL@@IAE@J@Z 00414e00 f groups.obj - 0001:00013e20 ?CbOnFile@AL@@UAEJXZ 00414e20 f groups.obj - 0001:00013e40 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 00414e40 f groups.obj - 0001:00013ec0 ?_FRead@AL@@IAEHPAVBLCK@@PAF1@Z 00414ec0 f groups.obj - 0001:00013fc0 ?FFree@AL@@UAEHJ@Z 00414fc0 f groups.obj - 0001:00014000 ?FEnsureSpace@AL@@QAEHJK@Z 00415000 f groups.obj - 0001:00014050 ?FAdd@AL@@UAEHPAXPAJ@Z 00415050 f groups.obj - 0001:000140f0 ?Delete@AL@@UAEXJ@Z 004150f0 f groups.obj - 0001:000141a0 ??0GGB@@IAE@JH@Z 004151a0 f groups.obj - 0001:000141e0 ?CbOnFile@GGB@@UAEJXZ 004151e0 f groups.obj - 0001:000141f0 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 004151f0 f groups.obj - 0001:000142e0 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 004152e0 f groups.obj - 0001:00014470 ?FFree@GGB@@UAEHJ@Z 00415470 f groups.obj - 0001:000144a0 ?FEnsureSpace@GGB@@QAEHJJK@Z 004154a0 f groups.obj - 0001:00014530 ?SetMinGrow@GGB@@QAEXJJ@Z 00415530 f groups.obj - 0001:00014560 ?_RemoveRgb@GGB@@IAEXJJ@Z 00415560 f groups.obj - 0001:000145b0 ?_AdjustLocs@GGB@@IAEXJJJ@Z 004155b0 f groups.obj - 0001:00014600 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00415600 f groups.obj - 0001:00014640 ?PvFixedLock@GGB@@QAEPAXJPAJ@Z 00415640 f groups.obj - 0001:00014670 ?GetFixed@GGB@@QAEXJPAX@Z 00415670 f groups.obj - 0001:000146a0 ?PutFixed@GGB@@QAEXJPAX@Z 004156a0 f groups.obj - 0001:000146d0 ?Cb@GGB@@QAEJJ@Z 004156d0 f groups.obj - 0001:000146f0 ?QvGet@GGB@@QAEPAXJPAJ@Z 004156f0 f groups.obj - 0001:00014730 ?PvLock@GGB@@QAEPAXJPAJ@Z 00415730 f groups.obj - 0001:00014760 ?GetRgb@GGB@@QAEXJJJPAX@Z 00415760 f groups.obj - 0001:000147a0 ?DeleteRgb@GGB@@QAEXJJJ@Z 004157a0 f groups.obj - 0001:00014830 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00415830 f groups.obj - 0001:00014950 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 00415950 f groups.obj - 0001:00014ae0 ?Merge@GGB@@QAEXJJ@Z 00415ae0 f groups.obj - 0001:00014b80 ?PggNew@GG@@SGPAV1@JJJ@Z 00415b80 f groups.obj - 0001:00014bf0 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00415bf0 f groups.obj - 0001:00014c50 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 00415c50 f groups.obj - 0001:00014ca0 ?FInsert@GG@@QAEHJJPAX0@Z 00415ca0 f groups.obj - 0001:00014d70 ?FAdd@GG@@UAEHJPAJPAX1@Z 00415d70 f groups.obj - 0001:00014da0 ?Delete@GG@@UAEXJ@Z 00415da0 f groups.obj - 0001:00014e00 ?PagNew@AG@@SGPAV1@JJJ@Z 00415e00 f groups.obj - 0001:00014e70 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00415e70 f groups.obj - 0001:00014ed0 ?FAdd@AG@@UAEHJPAJPAX1@Z 00415ed0 f groups.obj - 0001:00014fe0 ?Delete@AG@@UAEXJ@Z 00415fe0 f groups.obj - 0001:00015070 ??_EGRPB@@UAEPAXI@Z 00416070 f groups.obj - 0001:00015070 ??_GGRPB@@UAEPAXI@Z 00416070 f groups.obj - 0001:00015090 ??_GGG@@UAEPAXI@Z 00416090 f groups.obj - 0001:00015090 ??_EGG@@UAEPAXI@Z 00416090 f groups.obj - 0001:000150b0 ??_EAG@@UAEPAXI@Z 004160b0 f groups.obj - 0001:000150b0 ??_GAG@@UAEPAXI@Z 004160b0 f groups.obj - 0001:000150d0 ??_EGLB@@UAEPAXI@Z 004160d0 f groups.obj - 0001:000150d0 ??_GGLB@@UAEPAXI@Z 004160d0 f groups.obj - 0001:000150f0 ??_GGL@@UAEPAXI@Z 004160f0 f groups.obj - 0001:000150f0 ??_EGL@@UAEPAXI@Z 004160f0 f groups.obj - 0001:00015110 ??_GAL@@UAEPAXI@Z 00416110 f groups.obj - 0001:00015110 ??_EAL@@UAEPAXI@Z 00416110 f groups.obj - 0001:00015130 ??_EGGB@@UAEPAXI@Z 00416130 f groups.obj - 0001:00015130 ??_GGGB@@UAEPAXI@Z 00416130 f groups.obj - 0001:00015150 ?FWouldBe@GSTB@@SGHJ@Z 00416150 f groups2.obj - 0001:00015170 ?FIs@GSTB@@UAEHJ@Z 00416170 f groups2.obj - 0001:00015180 ?Cls@GSTB@@UAEJXZ 00416180 f groups2.obj - 0001:00015190 ?FWouldBe@GST@@SGHJ@Z 00416190 f groups2.obj - 0001:000151b0 ?FIs@GST@@UAEHJ@Z 004161b0 f groups2.obj - 0001:000151c0 ?Cls@GST@@UAEJXZ 004161c0 f groups2.obj - 0001:000151d0 ?FWouldBe@AST@@SGHJ@Z 004161d0 f groups2.obj - 0001:000151f0 ?FIs@AST@@UAEHJ@Z 004161f0 f groups2.obj - 0001:00015200 ?Cls@AST@@UAEJXZ 00416200 f groups2.obj - 0001:00015210 ??0GSTB@@IAE@JK@Z 00416210 f groups2.obj - 0001:00015250 ?CbOnFile@GSTB@@UAEJXZ 00416250 f groups2.obj - 0001:00015260 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 00416260 f groups2.obj - 0001:00015360 ?_FRead@GSTB@@IAEHPAVBLCK@@PAF1@Z 00416360 f groups2.obj - 0001:00015530 ?FEnsureSpace@GSTB@@QAEHJJK@Z 00416530 f groups2.obj - 0001:000155a0 ?SetMinGrow@GSTB@@QAEXJJ@Z 004165a0 f groups2.obj - 0001:000155c0 ?FAddStn@GSTB@@QAEHPAVSTN@@PAXPAJ@Z 004165c0 f groups2.obj - 0001:000155e0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 004165e0 f groups2.obj - 0001:00015600 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 00416600 f groups2.obj - 0001:00015620 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 00416620 f groups2.obj - 0001:00015690 ?GetExtra@GSTB@@QAEXJPAX@Z 00416690 f groups2.obj - 0001:000156c0 ?PutExtra@GSTB@@QAEXJPAX@Z 004166c0 f groups2.obj - 0001:000156f0 ?_Qst@GSTB@@IAEPADJ@Z 004166f0 f groups2.obj - 0001:00015710 ?_AppendRgch@GSTB@@IAEXPADJ@Z 00416710 f groups2.obj - 0001:00015740 ?_RemoveSt@GSTB@@IAEXJ@Z 00416740 f groups2.obj - 0001:000157a0 ?_SwapBytesRgbst@GSTB@@IAEXXZ 004167a0 f groups2.obj - 0001:000157e0 ?_TranslateGrst@GSTB@@IAEXFH@Z 004167e0 f groups2.obj - 0001:00015890 ?_FTranslateGrst@GSTB@@IAEHF@Z 00416890 f groups2.obj - 0001:00015ab0 ?FFree@GSTB@@UAEHJ@Z 00416ab0 f groups2.obj - 0001:00015ae0 ?PgstNew@GST@@SGPAV1@JJJ@Z 00416ae0 f groups2.obj - 0001:00015b50 ?PgstRead@GST@@SGPAV1@PAVBLCK@@PAF1@Z 00416b50 f groups2.obj - 0001:00015bb0 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 00416bb0 f groups2.obj - 0001:00015be0 ?FFindRgch@GST@@UAEHPADJPAJK@Z 00416be0 f groups2.obj - 0001:00015cb0 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 00416cb0 f groups2.obj - 0001:00015d50 ?FInsertStn@GST@@QAEHJPAVSTN@@PAX@Z 00416d50 f groups2.obj - 0001:00015d70 ?Delete@GST@@UAEXJ@Z 00416d70 f groups2.obj - 0001:00015db0 ?PastNew@AST@@SGPAV1@JJJ@Z 00416db0 f groups2.obj - 0001:00015e20 ?PastRead@AST@@SGPAV1@PAVBLCK@@PAF1@Z 00416e20 f groups2.obj - 0001:00015e80 ?FAddRgch@AST@@UAEHPADJPAXPAJ@Z 00416e80 f groups2.obj - 0001:00015f50 ?Delete@AST@@UAEXJ@Z 00416f50 f groups2.obj - 0001:00015fc0 ??_GGST@@UAEPAXI@Z 00416fc0 f groups2.obj - 0001:00015fc0 ??_EGST@@UAEPAXI@Z 00416fc0 f groups2.obj - 0001:00015fe0 ??_GAST@@UAEPAXI@Z 00416fe0 f groups2.obj - 0001:00015fe0 ??_EAST@@UAEPAXI@Z 00416fe0 f groups2.obj - 0001:00016000 ??_EGSTB@@UAEPAXI@Z 00417000 f groups2.obj - 0001:00016000 ??_GGSTB@@UAEPAXI@Z 00417000 f groups2.obj - 0001:00016020 ?FWouldBe@LEXB@@SGHJ@Z 00417020 f lex.obj - 0001:00016040 ?FIs@LEXB@@UAEHJ@Z 00417040 f lex.obj - 0001:00016050 ?Cls@LEXB@@UAEJXZ 00417050 f lex.obj - 0001:00016060 ?_TtFromCh@@YGJD@Z 00417060 f lex.obj - 0001:00016080 ?_TtFromChCh@@YGJDD@Z 00417080 f lex.obj - 0001:000160f0 ??0LEXB@@QAE@PAVFIL@@H@Z 004170f0 f lex.obj - 0001:00016190 ??0LEXB@@QAE@PAVBSF@@PAVSTN@@H@Z 00417190 f lex.obj - 0001:00016230 ??1LEXB@@UAE@XZ 00417230 f lex.obj - 0001:00016270 ?GetStnFile@LEXB@@QAEXPAVSTN@@@Z 00417270 f lex.obj - 0001:00016280 ?_FFetchRgch@LEXB@@IAEHPADJ@Z 00417280 f lex.obj - 0001:000163b0 ?_FSkipWhiteSpace@LEXB@@IAEHXZ 004173b0 f lex.obj - 0001:00016860 ?FGetTok@LEXB@@UAEHPAUTOK@@@Z 00417860 f lex.obj - 0001:00016cc0 ?CbExtra@LEXB@@UAEJXZ 00417cc0 f lex.obj - 0001:00016cd0 ?GetExtra@LEXB@@UAEXPAX@Z 00417cd0 f lex.obj - 0001:00016ce0 ?_ReadNumber@LEXB@@MAEXPAJDJJ@Z 00417ce0 f lex.obj - 0001:00016d60 ?_FReadHex@LEXB@@IAEHPAJ@Z 00417d60 f lex.obj - 0001:00016e40 ?_FReadControlCh@LEXB@@IAEHPAD@Z 00417e40 f lex.obj - 0001:00016ff0 ??_ELEXB@@UAEPAXI@Z 00417ff0 f lex.obj - 0001:00016ff0 ??_GLEXB@@UAEPAXI@Z 00417ff0 f lex.obj - 0001:00017010 ?FWouldBe@BSM@@SGHJ@Z 00418010 f stream.obj - 0001:00017030 ?FIs@BSM@@UAEHJ@Z 00418030 f stream.obj - 0001:00017040 ?Cls@BSM@@UAEJXZ 00418040 f stream.obj - 0001:00017050 ?FWouldBe@BSF@@SGHJ@Z 00418050 f stream.obj - 0001:00017070 ?FIs@BSF@@UAEHJ@Z 00418070 f stream.obj - 0001:00017080 ?Cls@BSF@@UAEJXZ 00418080 f stream.obj - 0001:00017090 ??0BSM@@QAE@XZ 00418090 f stream.obj - 0001:000170b0 ??1BSM@@UAE@XZ 004180b0 f stream.obj - 0001:000170d0 ?SetMinGrow@BSM@@QAEXJ@Z 004180d0 f stream.obj - 0001:000170e0 ?FetchRgb@BSM@@QAEXJJPAX@Z 004180e0 f stream.obj - 0001:00017100 ?FReplace@BSM@@QAEHPAXJJJ@Z 00418100 f stream.obj - 0001:00017190 ?_FEnsureSize@BSM@@IAEHJH@Z 00418190 f stream.obj - 0001:00017270 ??0BSF@@QAE@XZ 00418270 f stream.obj - 0001:00017290 ??1BSF@@UAE@XZ 00418290 f stream.obj - 0001:00017300 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00418300 f stream.obj - 0001:00017390 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 00418390 f stream.obj - 0001:000174c0 ?_AttemptMerge@BSF@@IAEXJJ@Z 004184c0 f stream.obj - 0001:000175b0 ?FReplace@BSF@@QAEHPAXJJJ@Z 004185b0 f stream.obj - 0001:000178a0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 004188a0 f stream.obj - 0001:00017a40 ?FetchRgb@BSF@@QAEXJJPAX@Z 00418a40 f stream.obj - 0001:00017af0 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 00418af0 f stream.obj - 0001:00017ca0 ??_EBSM@@UAEPAXI@Z 00418ca0 f stream.obj - 0001:00017ca0 ??_GBSM@@UAEPAXI@Z 00418ca0 f stream.obj - 0001:00017cc0 ??_GBSF@@UAEPAXI@Z 00418cc0 f stream.obj - 0001:00017cc0 ??_EBSF@@UAEPAXI@Z 00418cc0 f stream.obj - 0001:00017ce0 ?FWouldBe@SCCG@@SGHJ@Z 00418ce0 f scrcomg.obj - 0001:00017d00 ?FIs@SCCG@@UAEHJ@Z 00418d00 f scrcomg.obj - 0001:00017d10 ?Cls@SCCG@@UAEJXZ 00418d10 f scrcomg.obj - 0001:00017d20 ?_OpFromStn@SCCG@@MAEJPAVSTN@@@Z 00418d20 f scrcomg.obj - 0001:00017d50 ?_FGetStnFromOp@SCCG@@MAEHJPAVSTN@@@Z 00418d50 f scrcomg.obj - 0001:00017d90 ?_FGetOpFromName@SCCG@@MAEHPAVSTN@@PAJ111PAH@Z 00418d90 f scrcomg.obj - 0001:00017e00 ?_SwCur@SCCG@@MAEFXZ 00418e00 f scrcomg.obj - 0001:00017e10 ?_SwBack@SCCG@@MAEFXZ 00418e10 f scrcomg.obj - 0001:00017e20 ?_SwMin@SCCG@@MAEFXZ 00418e20 f scrcomg.obj - 0001:00017ee0 ?FWouldBe@SCCB@@SGHJ@Z 00418ee0 f scrcom.obj - 0001:00017f00 ?FIs@SCCB@@UAEHJ@Z 00418f00 f scrcom.obj - 0001:00017f10 ?Cls@SCCB@@UAEJXZ 00418f10 f scrcom.obj - 0001:00017f20 ??0SCCB@@QAE@XZ 00418f20 f scrcom.obj - 0001:00017f50 ??1SCCB@@UAE@XZ 00418f50 f scrcom.obj - 0001:00017f70 ?_FInit@SCCB@@IAEHPAVLEXB@@HPAVMSNK@@@Z 00418f70 f scrcom.obj - 0001:000180d0 ?_Free@SCCB@@IAEXXZ 004190d0 f scrcom.obj - 0001:000181e0 ?PscptCompileLex@SCCB@@UAEPAVSCPT@@PAVLEXB@@HPAVMSNK@@J@Z 004191e0 f scrcom.obj - 0001:000182d0 ?PscptCompileFil@SCCB@@UAEPAVSCPT@@PAVFIL@@HPAVMSNK@@@Z 004192d0 f scrcom.obj - 0001:00018330 ?PscptCompileFni@SCCB@@UAEPAVSCPT@@PAVFNI@@HPAVMSNK@@@Z 00419330 f scrcom.obj - 0001:00018380 ?_FGetTok@SCCB@@MAEHPAUTOK@@@Z 00419380 f scrcom.obj - 0001:000183c0 ?_SwCur@SCCB@@MAEFXZ 004193c0 f scrcom.obj - 0001:000183d0 ?_SwBack@SCCB@@MAEFXZ 004193d0 f scrcom.obj - 0001:000183e0 ?_SwMin@SCCB@@MAEFXZ 004193e0 f scrcom.obj - 0001:000183f0 ?_ReportError@SCCB@@MAEXPAD@Z 004193f0 f scrcom.obj - 0001:00018490 ?_PushLw@SCCB@@IAEXJ@Z 00419490 f scrcom.obj - 0001:000184f0 ?_PushString@SCCB@@IAEXPAVSTN@@@Z 004194f0 f scrcom.obj - 0001:00018580 ?_PushOp@SCCB@@IAEXJ@Z 00419580 f scrcom.obj - 0001:000185e0 ?_EndOp@SCCB@@IAEXXZ 004195e0 f scrcom.obj - 0001:00018660 ?_PushVarOp@SCCB@@IAEXJPAURTVN@@@Z 00419660 f scrcom.obj - 0001:000186d0 ?_FFindLabel@SCCB@@IAEHPAVSTN@@PAJ@Z 004196d0 f scrcom.obj - 0001:00018720 ?_AddLabel@SCCB@@IAEXPAVSTN@@@Z 00419720 f scrcom.obj - 0001:000187d0 ?_PushLabelRequest@SCCB@@IAEXPAVSTN@@@Z 004197d0 f scrcom.obj - 0001:00018860 ?_AddLabelLw@SCCB@@IAEXJ@Z 00419860 f scrcom.obj - 0001:000188b0 ?_PushLabelRequestLw@SCCB@@IAEXJ@Z 004198b0 f scrcom.obj - 0001:00018900 ?_OpFromStn@SCCB@@MAEJPAVSTN@@@Z 00419900 f scrcom.obj - 0001:00018920 ?_OpFromStnRgszop@SCCB@@IAEJPAVSTN@@PAUSZOP@@@Z 00419920 f scrcom.obj - 0001:00018970 ?_FGetStnFromOp@SCCB@@MAEHJPAVSTN@@@Z 00419970 f scrcom.obj - 0001:00018990 ?_FGetStnFromOpRgszop@SCCB@@IAEHJPAVSTN@@PAUSZOP@@@Z 00419990 f scrcom.obj - 0001:000189e0 ?_CompilePost@SCCB@@MAEXXZ 004199e0 f scrcom.obj - 0001:00018c80 ?_PtomeFromTt@@YGPAUTOME@@JH@Z 00419c80 f scrcom.obj - 0001:00018cb0 ?_FResolveToOpl@SCCB@@IAEHJJPAJ@Z 00419cb0 f scrcom.obj - 0001:00018e10 ?_FAddToTree@SCCB@@IAEHPAUETN@@PAJ@Z 00419e10 f scrcom.obj - 0001:000193a0 ?_SetDepth@SCCB@@IAEXPAUETN@@H@Z 0041a3a0 f scrcom.obj - 0001:00019530 ?_FConstEtn@SCCB@@IAEHJPAJ@Z 0041a530 f scrcom.obj - 0001:00019580 ?_FCombineConstValues@SCCB@@IAEHJJJPAJ@Z 0041a580 f scrcom.obj - 0001:000197f0 ?_EmitCode@SCCB@@IAEXJKPAJ@Z 0041a7f0 f scrcom.obj - 0001:00019dc0 ?_CstFromName@SCCB@@IAEJJ@Z 0041adc0 f scrcom.obj - 0001:00019e80 ?_BeginCst@SCCB@@IAEXJJ@Z 0041ae80 f scrcom.obj - 0001:0001a080 ?_FHandleCst@SCCB@@IAEHJ@Z 0041b080 f scrcom.obj - 0001:0001a390 ?_EmitVarAccess@SCCB@@IAEXJPAURTVN@@PAJ11@Z 0041b390 f scrcom.obj - 0001:0001a4a0 ?_PushOpFromName@SCCB@@IAEXJKJ@Z 0041b4a0 f scrcom.obj - 0001:0001a5c0 ?_FGetArop@SCCB@@IAEHPAVSTN@@PAUAROP@@PAJ222PAH@Z 0041b5c0 f scrcom.obj - 0001:0001a640 ?_FGetOpFromName@SCCB@@MAEHPAVSTN@@PAJ111PAH@Z 0041b640 f scrcom.obj - 0001:0001a670 ?_AddNameRef@SCCB@@IAEXPAVSTN@@PAJ@Z 0041b670 f scrcom.obj - 0001:0001a6f0 ?_GetIstnNameFromIetn@SCCB@@IAEXJPAJ@Z 0041b6f0 f scrcom.obj - 0001:0001a720 ?_GetStnFromIstn@SCCB@@IAEXJPAVSTN@@@Z 0041b720 f scrcom.obj - 0001:0001a750 ?_GetRtvnFromName@SCCB@@IAEXJPAURTVN@@@Z 0041b750 f scrcom.obj - 0001:0001a7b0 ?_FKeyWord@SCCB@@IAEHPAVSTN@@@Z 0041b7b0 f scrcom.obj - 0001:0001a840 ?_PushLabelRequestIetn@SCCB@@IAEXJ@Z 0041b840 f scrcom.obj - 0001:0001a890 ?_AddLabelIetn@SCCB@@IAEXJ@Z 0041b890 f scrcom.obj - 0001:0001a8e0 ?_PushStringIstn@SCCB@@IAEXJ@Z 0041b8e0 f scrcom.obj - 0001:0001a920 ?_CompileIn@SCCB@@MAEXXZ 0041b920 f scrcom.obj - 0001:0001abf0 ?FDisassemble@SCCB@@UAEHPAVSCPT@@PAVMSNK@@1@Z 0041bbf0 f scrcom.obj - 0001:0001b030 ?SetFromStn@RTVN@@QAEXPAVSTN@@@Z 0041c030 f scrcom.obj - 0001:0001b120 ?GetStn@RTVN@@QAEXPAVSTN@@@Z 0041c120 f scrcom.obj - 0001:0001b240 ??_GSCPT@@UAEPAXI@Z 0041c240 f scrcom.obj - 0001:0001b240 ??_ESCPT@@UAEPAXI@Z 0041c240 f scrcom.obj - 0001:0001b260 ??_ESCCB@@UAEPAXI@Z 0041c260 f scrcom.obj - 0001:0001b260 ??_GSCCB@@UAEPAXI@Z 0041c260 f scrcom.obj - 0001:0001b280 ?FWouldBe@SCPT@@SGHJ@Z 0041c280 f screxe.obj - 0001:0001b2a0 ?FIs@SCPT@@UAEHJ@Z 0041c2a0 f screxe.obj - 0001:0001b2b0 ?Cls@SCPT@@UAEJXZ 0041c2b0 f screxe.obj - 0001:0001b2d0 ?PscptRead@SCPT@@SGPAV1@PAVCFL@@KK@Z 0041c2d0 f screxe.obj - 0001:0001b400 ??1SCPT@@UAE@XZ 0041c400 f screxe.obj - 0001:0001b440 ?FSaveToChunk@SCPT@@QAEHPAVCFL@@KKH@Z 0041c440 f screxe.obj - 0001:0001b640 ?FWouldBe@MBMP@@SGHJ@Z 0041c640 f mbmp.obj - 0001:0001b660 ?FIs@MBMP@@UAEHJ@Z 0041c660 f mbmp.obj - 0001:0001b670 ?Cls@MBMP@@UAEJXZ 0041c670 f mbmp.obj - 0001:0001b680 ??1MBMP@@UAE@XZ 0041c680 f mbmp.obj - 0001:0001b6a0 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 0041c6a0 f mbmp.obj - 0001:0001b710 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 0041c710 f mbmp.obj - 0001:0001baf0 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 0041caf0 f mbmp.obj - 0001:0001bba0 ?CbOnFile@MBMP@@UAEJXZ 0041cba0 f mbmp.obj - 0001:0001bbb0 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 0041cbb0 f mbmp.obj - 0001:0001bc10 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0041cc10 f mbmp.obj - 0001:0001c0c0 ??_GMBMP@@UAEPAXI@Z 0041d0c0 f mbmp.obj - 0001:0001c0c0 ??_EMBMP@@UAEPAXI@Z 0041d0c0 f mbmp.obj - 0001:0001c170 ?FWouldBe@MSTP@@SGHJ@Z 0041d170 f midi.obj - 0001:0001c190 ?FIs@MSTP@@UAEHJ@Z 0041d190 f midi.obj - 0001:0001c1a0 ?Cls@MSTP@@UAEJXZ 0041d1a0 f midi.obj - 0001:0001c1b0 ?FWouldBe@MIDS@@SGHJ@Z 0041d1b0 f midi.obj - 0001:0001c1d0 ?FIs@MIDS@@UAEHJ@Z 0041d1d0 f midi.obj - 0001:0001c1e0 ?Cls@MIDS@@UAEJXZ 0041d1e0 f midi.obj - 0001:0001c1f0 ??0MSTP@@QAE@XZ 0041d1f0 f midi.obj - 0001:0001c210 ??1MSTP@@UAE@XZ 0041d210 f midi.obj - 0001:0001c250 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 0041d250 f midi.obj - 0001:0001c2e0 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 0041d2e0 f midi.obj - 0001:0001c640 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 0041d640 f midi.obj - 0001:0001c690 ??0MIDS@@IAE@XZ 0041d690 f midi.obj - 0001:0001c6b0 ??1MIDS@@UAE@XZ 0041d6b0 f midi.obj - 0001:0001c6d0 ?PmidsReadNative@MIDS@@SGPAV1@PAVFNI@@@Z 0041d6d0 f midi.obj - 0001:0001cd80 ?_CbEncodeLu@MIDS@@KGJKPAE@Z 0041dd80 f midi.obj - 0001:0001cdd0 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 0041ddd0 f midi.obj - 0001:0001cdf0 ?CbOnFile@MIDS@@UAEJXZ 0041ddf0 f midi.obj - 0001:0001ce10 ??_EMSTP@@UAEPAXI@Z 0041de10 f midi.obj - 0001:0001ce10 ??_GMSTP@@UAEPAXI@Z 0041de10 f midi.obj - 0001:0001ce30 ??_GMIDS@@UAEPAXI@Z 0041de30 f midi.obj - 0001:0001ce30 ??_EMIDS@@UAEPAXI@Z 0041de30 f midi.obj - 0001:0001cee0 ??0PIC@@IAE@XZ 0041dee0 f picwin.obj - 0001:0001cf10 ??1PIC@@UAE@XZ 0041df10 f picwin.obj - 0001:0001cf30 ?CbOnFile@PIC@@UAEJXZ 0041df30 f picwin.obj - 0001:0001cf50 ?FWrite@PIC@@UAEHPAVBLCK@@@Z 0041df50 f picwin.obj - 0001:0001d030 ?PpicReadNative@PIC@@SGPAV1@PAVFNI@@@Z 0041e030 f picwin.obj - 0001:0001d1f0 ?_HpicReadWmf@PIC@@KGPAUHENHMETAFILE__@@PAVFNI@@@Z 0041e1f0 f picwin.obj - 0001:0001d380 ??_GPIC@@UAEPAXI@Z 0041e380 f picwin.obj - 0001:0001d380 ??_EPIC@@UAEPAXI@Z 0041e380 f picwin.obj - 0001:0001d430 ?FWouldBe@PIC@@SGHJ@Z 0041e430 f pic.obj - 0001:0001d450 ?FIs@PIC@@UAEHJ@Z 0041e450 f pic.obj - 0001:0001d460 ?Cls@PIC@@UAEJXZ 0041e460 f pic.obj - 0001:0001d520 _main 0041e520 f chomp.obj - 0001:0001d9d0 ??0MSSIO@@QAE@PAU_iobuf@@@Z 0041e9d0 f mssio.obj - 0001:0001da00 ?ReportLine@MSSIO@@UAEXPAD@Z 0041ea00 f mssio.obj - 0001:0001da30 ?Report@MSSIO@@UAEXPAD@Z 0041ea30 f mssio.obj - 0001:0001da60 ?FError@MSSIO@@UAEHXZ 0041ea60 f mssio.obj - 0001:0001da80 ??_GMSSIO@@UAEPAXI@Z 0041ea80 f mssio.obj - 0001:0001da80 ??_EMSSIO@@UAEPAXI@Z 0041ea80 f mssio.obj - 0001:0001dab0 ?FIs@MSNK@@UAEHJ@Z 0041eab0 f mssio.obj - 0001:0001dad0 ?Cls@MSNK@@UAEJXZ 0041ead0 f mssio.obj - 0001:0001dad6 _timeGetTime@0 0041ead6 winmm:WINMM.dll - 0001:0001dadc __onexit 0041eadc f LIBC:onexit.obj - 0001:0001db52 _atexit 0041eb52 f LIBC:onexit.obj - 0001:0001db64 ___onexitinit 0041eb64 f LIBC:onexit.obj - 0001:0001db9a __purecall 0041eb9a f LIBC:purevirt.obj - 0001:0001dba8 __ftol 0041eba8 f LIBC:ftol.obj - 0001:0001dbd0 _fdiv_main_routine 0041ebd0 f LIBC:adj_fdiv.obj - 0001:0001dce7 __adj_fdiv_r 0041ece7 f LIBC:adj_fdiv.obj - 0001:0001e186 _fdivp_sti_st 0041f186 f LIBC:adj_fdiv.obj - 0001:0001e199 _fdivrp_sti_st 0041f199 f LIBC:adj_fdiv.obj - 0001:0001e1ac __adj_fdiv_m32 0041f1ac f LIBC:adj_fdiv.obj - 0001:0001e1f8 __adj_fdiv_m64 0041f1f8 f LIBC:adj_fdiv.obj - 0001:0001e244 __adj_fdiv_m16i 0041f244 f LIBC:adj_fdiv.obj - 0001:0001e278 __adj_fdiv_m32i 0041f278 f LIBC:adj_fdiv.obj - 0001:0001e2ac __adj_fdivr_m32 0041f2ac f LIBC:adj_fdiv.obj - 0001:0001e2f8 __adj_fdivr_m64 0041f2f8 f LIBC:adj_fdiv.obj - 0001:0001e344 __adj_fdivr_m16i 0041f344 f LIBC:adj_fdiv.obj - 0001:0001e378 __adj_fdivr_m32i 0041f378 f LIBC:adj_fdiv.obj - 0001:0001e3ac __safe_fdiv 0041f3ac f LIBC:adj_fdiv.obj - 0001:0001e3c1 __safe_fdivr 0041f3c1 f LIBC:adj_fdiv.obj - 0001:0001e3d6 __fprem_common 0041f3d6 f LIBC:adj_fdiv.obj - 0001:0001e5dc __adj_fprem 0041f5dc f LIBC:adj_fdiv.obj - 0001:0001e68e __fprem1_common 0041f68e f LIBC:adj_fdiv.obj - 0001:0001e894 __adj_fprem1 0041f894 f LIBC:adj_fdiv.obj - 0001:0001e949 __safe_fprem 0041f949 f LIBC:adj_fdiv.obj - 0001:0001e94f __safe_fprem1 0041f94f f LIBC:adj_fdiv.obj - 0001:0001e955 __adj_fpatan 0041f955 f LIBC:adj_fdiv.obj - 0001:0001e958 __adj_fptan 0041f958 f LIBC:adj_fdiv.obj - 0001:0001e95b __fpmath 0041f95b f LIBC:fpinit.obj - 0001:0001e96f __fpclear 0041f96f f LIBC:fpinit.obj - 0001:0001e970 __cfltcvt_init 0041f970 f LIBC:fpinit.obj - 0001:0001e9a8 _fprintf 0041f9a8 f LIBC:fprintf.obj - 0001:0001e9de _mainCRTStartup 0041f9de f LIBC:crt0.obj - 0001:0001ead7 __amsg_exit 0041fad7 f LIBC:crt0.obj - 0001:0001eaf7 __cinit 0041faf7 f LIBC:crt0dat.obj - 0001:0001eb27 _exit 0041fb27 f LIBC:crt0dat.obj - 0001:0001eb38 __exit 0041fb38 f LIBC:crt0dat.obj - 0001:0001ebe8 _realloc 0041fbe8 f LIBC:realloc.obj - 0001:0001ed3a __msize 0041fd3a f LIBC:msize.obj - 0001:0001ed4b _malloc 0041fd4b f LIBC:malloc.obj - 0001:0001ed5e __nh_malloc 0041fd5e f LIBC:malloc.obj - 0001:0001ee1d __heap_split_block 0041fe1d f LIBC:malloc.obj - 0001:0001ee62 __setdefaultprecision 0041fe62 f LIBC:fp8.obj - 0001:0001ee75 _ms_p5_test_fdiv 0041fe75 f LIBC:testfdiv.obj - 0001:0001eebb _ms_p5_mp_test_fdiv 0041febb f LIBC:testfdiv.obj - 0001:0001ef8e __forcdecpt 0041ff8e f LIBC:cvt.obj - 0001:0001eff3 __cropzeros 0041fff3 f LIBC:cvt.obj - 0001:0001f052 __positive 00420052 f LIBC:cvt.obj - 0001:0001f067 __fassign 00420067 f LIBC:cvt.obj - 0001:0001f0aa __cftoe 004200aa f LIBC:cvt.obj - 0001:0001f1fd __cftof 004201fd f LIBC:cvt.obj - 0001:0001f319 __cftog 00420319 f LIBC:cvt.obj - 0001:0001f3c1 __cfltcvt 004203c1 f LIBC:cvt.obj - 0001:0001f43d __stbuf 0042043d f LIBC:_sftbuf.obj - 0001:0001f4be __ftbuf 004204be f LIBC:_sftbuf.obj - 0001:0001f504 __output 00420504 f LIBC:output.obj - 0001:0001fe2c __global_unwind2 00420e2c f LIBC:exsup.obj - 0001:0001fe6e __local_unwind2 00420e6e f LIBC:exsup.obj - 0001:0001fec8 __abnormal_termination 00420ec8 f LIBC:exsup.obj - 0001:0001feeb __XcptFilter 00420eeb f LIBC:winxfltr.obj - 0001:00020076 __setenvp 00421076 f LIBC:stdenvp.obj - 0001:00020141 __setargv 00421141 f LIBC:stdargv.obj - 0001:0002043f __setmbcp 0042143f f LIBC:mbctype.obj - 0001:000205cd ___initmbctable 004215cd f LIBC:mbctype.obj - 0001:000205d8 __ioinit 004215d8 f LIBC:ioinit.obj - 0001:000206c6 __heap_init 004216c6 f LIBC:heapinit.obj - 0001:00020743 ___getempty 00421743 f LIBC:heapinit.obj - 0001:00020770 __except_handler3 00421770 f LIBC:exsup3.obj - 0001:0002081e __seh_longjmp_unwind@4 0042181e f LIBC:exsup3.obj - 0001:00020839 __FF_MSGBANNER 00421839 f LIBC:crt0msg.obj - 0001:0002085f __NMSG_WRITE 0042185f f LIBC:crt0msg.obj - 0001:000208b7 _free 004218b7 f LIBC:free.obj - 0001:0002091f __heap_abort 0042191f f LIBC:hpabort.obj - 0001:0002092a __heap_grow 0042192a f LIBC:heapgrow.obj - 0001:00020a13 __heap_grow_region 00421a13 f LIBC:heapgrow.obj - 0001:00020ac0 __heap_free_region 00421ac0 f LIBC:heapgrow.obj - 0001:00020afa __heap_search 00421afa f LIBC:heapsrch.obj - 0001:00020bea __control87 00421bea f LIBC:ieee87.obj - 0001:00020c25 __controlfp 00421c25 f LIBC:ieee87.obj - 0001:00020d5c __fptrap 00421d5c f LIBC:crt0fp.obj - 0001:00020d67 __isctype 00421d67 f LIBC:isctype.obj - 0001:00020de2 _tolower 00421de2 f LIBC:tolower.obj - 0001:00020eae __ZeroTail 00421eae f LIBC:intrncvt.obj - 0001:00020f0e __IncMan 00421f0e f LIBC:intrncvt.obj - 0001:00020f6f __RoundMan 00421f6f f LIBC:intrncvt.obj - 0001:0002100c __CopyMan 0042200c f LIBC:intrncvt.obj - 0001:00021029 __FillZeroMan 00422029 f LIBC:intrncvt.obj - 0001:00021035 __IsZeroMan 00422035 f LIBC:intrncvt.obj - 0001:00021053 __ShrMan 00422053 f LIBC:intrncvt.obj - 0001:000210fe __ld12cvt 004220fe f LIBC:intrncvt.obj - 0001:0002129a __ld12tod 0042229a f LIBC:intrncvt.obj - 0001:000212b0 __ld12tof 004222b0 f LIBC:intrncvt.obj - 0001:000212c6 __atodbl 004222c6 f LIBC:intrncvt.obj - 0001:000212f7 __atoflt 004222f7 f LIBC:intrncvt.obj - 0001:00021328 __fptostr 00422328 f LIBC:_fptostr.obj - 0001:000213a6 __fltout 004223a6 f LIBC:cfout.obj - 0001:00021409 ___dtold 00422409 f LIBC:cfout.obj - 0001:000214c4 _memmove 004224c4 f LIBC:memmove.obj - 0001:00021612 _fflush 00422612 f LIBC:fflush.obj - 0001:0002165e __flush 0042265e f LIBC:fflush.obj - 0001:000216c0 __flushall 004226c0 f LIBC:fflush.obj - 0001:00021735 ___endstdio 00422735 f LIBC:fflush.obj - 0001:00021749 __isatty 00422749 f LIBC:isatty.obj - 0001:00021763 _wctomb 00422763 f LIBC:wctomb.obj - 0001:000217dc __aulldiv 004227dc f LIBC:ulldiv.obj - 0001:0002183c __aullrem 0042283c f LIBC:ullrem.obj - 0001:000218a6 __flsbuf 004228a6 f LIBC:_flsbuf.obj - 0001:000219b2 __heap_addblock 004229b2 f LIBC:heapadd.obj - 0001:00021c69 ___crtGetStringTypeA 00422c69 f LIBC:aw_str.obj - 0001:00021de0 ___crtLCMapStringA 00422de0 f LIBC:aw_map.obj - 0001:0002203f ___addl 0042303f f LIBC:mantold.obj - 0001:00022062 ___add_12 00423062 f LIBC:mantold.obj - 0001:000220c0 ___shl_12 004230c0 f LIBC:mantold.obj - 0001:000220fe ___shr_12 004230fe f LIBC:mantold.obj - 0001:00022131 ___mtold12 00423131 f LIBC:mantold.obj - 0001:00022215 ___strgtold12 00423215 f LIBC:strgtold.obj - 0001:00022854 _$I10_OUTPUT 00423854 f LIBC:x10fout.obj - 0001:00022b8a __commit 00423b8a f LIBC:commit.obj - 0001:00022bd7 __write 00423bd7 f LIBC:write.obj - 0001:00022d70 __fcloseall 00423d70 f LIBC:closeall.obj - 0001:00022da1 __lseek 00423da1 f LIBC:lseek.obj - 0001:00022e16 __getbuf 00423e16 f LIBC:_getbuf.obj - 0001:00022e61 __heap_findaddr 00423e61 f LIBC:findaddr.obj - 0001:00022ecb _calloc 00423ecb f LIBC:calloc.obj - 0001:00022f05 ___set_invalid_mb_chars 00423f05 f LIBC:setmbval.obj - 0001:00022f34 _strncpy 00423f34 f LIBC:strncpy.obj - 0001:00022f58 ___ld12mul 00423f58 f LIBC:tenpow.obj - 0001:00023198 ___multtenpow12 00424198 f LIBC:tenpow.obj - 0001:0002320d __free_osfhnd 0042420d f LIBC:osfinfo.obj - 0001:0002327a __get_osfhandle 0042427a f LIBC:osfinfo.obj - 0001:000232b2 __dosmaperr 004242b2 f LIBC:dosmap.obj - 0001:0002331b _fclose 0042431b f LIBC:fclose.obj - 0001:00023377 __close 00424377 f LIBC:close.obj - 0001:0002340d __freebuf 0042440d f LIBC:_freebuf.obj - 0001:00023446 _RtlUnwind@16 00424446 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00425000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00425018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00425030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 00425038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 00425050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 00425070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 004250a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 00425138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 00425240 utilstr.obj - 0002:00000350 ?_pcflFirst@CFL@@0PAV1@A 00425350 chunk.obj - 0002:00000378 ?_pfilFirst@FIL@@1PAV1@A 00425378 file.obj - 0002:00000380 ?_mutxList@FIL@@1VMUTX@@A 00425380 file.obj - 0002:000003a8 ?_fniTemp@@3VFNI@@A 004253a8 fniwin.obj - 0002:00000be8 __heap_descpages 00425be8 - 0002:00000bf0 __heap_regions 00425bf0 - 0002:00000ef0 ___onexitend 00425ef0 - 0002:00000ef4 ___onexitbegin 00425ef4 - 0002:00000ef8 __acmdln 00425ef8 - 0002:00000f00 __bufin 00425f00 - 0003:00000058 ??_7KCDC@@6B@ 00427058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00427078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00427090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004270a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004270d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004270f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00427108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00427120 utilstr.obj - 0003:00000138 ??_7CFL@@6B@ 00427138 chunk.obj - 0003:00000150 ??_7CGE@@6B@ 00427150 chunk.obj - 0003:00000168 ??_7CODM@@6B@ 00427168 codec.obj - 0003:00000198 ??_7BACO@@6B@ 00427198 crf.obj - 0003:000001c0 ??_7FIL@@6B@ 004271c0 file.obj - 0003:000001d8 ??_7BLCK@@6B@ 004271d8 file.obj - 0003:000001f0 ??_7MSFIL@@6B@ 004271f0 file.obj - 0003:00000210 ??_7FNI@@6B@ 00427210 fniwin.obj - 0003:00000228 ??_7CHCM@@6B@ 00427228 chcm.obj - 0003:00000240 ??_7SCCG@@6B@ 00427240 chcm.obj - 0003:00000290 ??_7CHLX@@6B@ 00427290 chcm.obj - 0003:000002c0 ??_7CHDC@@6B@ 004272c0 chcm.obj - 0003:000002d8 ??_7CHSE@@6B@ 004272d8 chse.obj - 0003:000002f0 ??_7GRPB@@6B@ 004272f0 groups.obj - 0003:00000318 ??_7GLB@@6B@ 00427318 groups.obj - 0003:00000348 ??_7GL@@6B@ 00427348 groups.obj - 0003:00000378 ??_7AL@@6B@ 00427378 groups.obj - 0003:000003a8 ??_7GGB@@6B@ 004273a8 groups.obj - 0003:000003d8 ??_7GG@@6B@ 004273d8 groups.obj - 0003:00000408 ??_7AG@@6B@ 00427408 groups.obj - 0003:00000438 ??_7GSTB@@6B@ 00427438 groups2.obj - 0003:00000468 ??_7GST@@6B@ 00427468 groups2.obj - 0003:00000498 ??_7AST@@6B@ 00427498 groups2.obj - 0003:000004c8 ??_7LEXB@@6B@ 004274c8 lex.obj - 0003:000004f0 ??_7BSM@@6B@ 004274f0 stream.obj - 0003:00000508 ??_7BSF@@6B@ 00427508 stream.obj - 0003:00000520 ??_7SCCB@@6B@ 00427520 scrcom.obj - 0003:00000570 ??_7SCPT@@6B@ 00427570 scrcom.obj - 0003:000005a8 ??_7MBMP@@6B@ 004275a8 mbmp.obj - 0003:000005d8 ??_7MSTP@@6B@ 004275d8 midi.obj - 0003:000005f0 ??_7MIDS@@6B@ 004275f0 midi.obj - 0003:00000618 ??_7PIC@@6B@ 00427618 picwin.obj - 0003:00000640 ??_7MSSIO@@6B@ 00427640 mssio.obj - 0003:00000690 ___lookuptable 00427690 LIBC:output.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 00428000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 00428004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 00428008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0042800c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 00428010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 00428118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0042811c file.obj - 0004:00000120 ?vftgTemp@@3JA 00428120 fniwin.obj - 0004:00000128 ??_C@_00A@?$AA@ 00428128 fniwin.obj - 0004:0000012c ??_C@_08GBDA@Temp?$CF04x?$AA@ 0042812c fniwin.obj - 0004:00000138 ?_mpertpsz@@3QAPADA 00428138 chcm.obj - 0004:00000348 ??_C@_07KLIJ@SUBFILE?$AA@ 00428348 chcm.obj - 0004:00000350 ??_C@_07NFID@PACKFMT?$AA@ 00428350 chcm.obj - 0004:00000358 ??_C@_04EJID@PACK?$AA@ 00428358 chcm.obj - 0004:00000360 ??_C@_09DECH@PREPACKED?$AA@ 00428360 chcm.obj - 0004:0000036c ??_C@_07ONI@PALETTE?$AA@ 0042836c chcm.obj - 0004:00000374 ??_C@_06MDJJ@CURSOR?$AA@ 00428374 chcm.obj - 0004:0000037c ??_C@_05EKBD@LONER?$AA@ 0042837c chcm.obj - 0004:00000384 ??_C@_06INIF@WINOSK?$AA@ 00428384 chcm.obj - 0004:0000038c ??_C@_06MKGG@MACOSK?$AA@ 0042838c chcm.obj - 0004:00000394 ??_C@_05OKLJ@WINBO?$AA@ 00428394 chcm.obj - 0004:0000039c ??_C@_05JOF@MACBO?$AA@ 0042839c chcm.obj - 0004:000003a4 ??_C@_03IKKD@AST?$AA@ 004283a4 chcm.obj - 0004:000003a8 ??_C@_03GGNE@GST?$AA@ 004283a8 chcm.obj - 0004:000003ac ??_C@_02EMCK@AG?$AA@ 004283ac chcm.obj - 0004:000003b0 ??_C@_02DLNF@GG?$AA@ 004283b0 chcm.obj - 0004:000003b4 ??_C@_02OHCL@AL?$AA@ 004283b4 chcm.obj - 0004:000003b8 ??_C@_02JANE@GL?$AA@ 004283b8 chcm.obj - 0004:000003bc ??_C@_08EBHJ@SCRIPTPF?$AA@ 004283bc chcm.obj - 0004:000003c8 ??_C@_06PDJ@SCRIPT?$AA@ 004283c8 chcm.obj - 0004:000003d0 ??_C@_04CCOG@MIDI?$AA@ 004283d0 chcm.obj - 0004:000003d8 ??_C@_04OMIB@MASK?$AA@ 004283d8 chcm.obj - 0004:000003e0 ??_C@_06MABC@BITMAP?$AA@ 004283e0 chcm.obj - 0004:000003e8 ??_C@_04MEBI@META?$AA@ 004283e8 chcm.obj - 0004:000003f0 ??_C@_0L@CDIA@PACKEDFILE?$AA@ 004283f0 chcm.obj - 0004:000003fc ??_C@_04CMDA@FILE?$AA@ 004283fc chcm.obj - 0004:00000404 ??_C@_05MANP@ALIGN?$AA@ 00428404 chcm.obj - 0004:0000040c ??_C@_02FNBP@ST?$AA@ 0042840c chcm.obj - 0004:00000410 ??_C@_02PGNF@SZ?$AA@ 00428410 chcm.obj - 0004:00000414 ??_C@_03MFHL@STZ?$AA@ 00428414 chcm.obj - 0004:00000418 ??_C@_03MGFH@STN?$AA@ 00428418 chcm.obj - 0004:0000041c ??_C@_03FOEM@OSK?$AA@ 0042841c chcm.obj - 0004:00000420 ??_C@_02CDGN@BO?$AA@ 00428420 chcm.obj - 0004:00000424 ??_C@_06IBHO@PARENT?$AA@ 00428424 chcm.obj - 0004:0000042c ??_C@_05JKOA@CHILD?$AA@ 0042842c chcm.obj - 0004:00000434 ??_C@_05KFCC@ADOPT?$AA@ 00428434 chcm.obj - 0004:0000043c ??_C@_08CEGN@ENDCHUNK?$AA@ 0042843c chcm.obj - 0004:00000448 ??_C@_05EPGN@CHUNK?$AA@ 00428448 chcm.obj - 0004:00000450 ??_C@_04NIAI@LONG?$AA@ 00428450 chcm.obj - 0004:00000458 ??_C@_05HFLA@SHORT?$AA@ 00428458 chcm.obj - 0004:00000460 ??_C@_04EHOP@BYTE?$AA@ 00428460 chcm.obj - 0004:00000468 ??_C@_03KNCG@VAR?$AA@ 00428468 chcm.obj - 0004:0000046c ??_C@_04MICK@FREE?$AA@ 0042846c chcm.obj - 0004:00000474 ??_C@_04KAML@ITEM?$AA@ 00428474 chcm.obj - 0004:0000047c ??_C@_0BF@FCDC@Unterminated?5SUBFILE?$AA@ 0042847c chcm.obj - 0004:00000494 ??_C@_0CD@MIGA@Illegal?5LONER?5primitive?5in?5SUBFI@ 00428494 chcm.obj - 0004:000004b8 ??_C@_0BA@OENL@Bad?5pack?5format?$AA@ 004284b8 chcm.obj - 0004:000004c8 ??_C@_0BP@HBGD@Can?8t?5read?5the?5given?5midi?5file?$AA@ 004284c8 chcm.obj - 0004:000004e8 ??_C@_0CH@DCDA@Can?8t?5read?5given?5file?5as?5a?5packe@ 004284e8 chcm.obj - 0004:00000510 ??_C@_0CB@OGLB@Can?8t?5read?5the?5given?5cursor?5file@ 00428510 chcm.obj - 0004:00000534 ??_C@_0CA@COAM@Disassembling?5the?5script?5failed?$AA@ 00428534 chcm.obj - 0004:00000554 ??_C@_0CB@PHFL@Can?8t?5read?5the?5given?5bitmap?5file@ 00428554 chcm.obj - 0004:00000578 ??_C@_0BL@NGMF@Invalid?5BITMAP?5declaration?$AA@ 00428578 chcm.obj - 0004:00000594 ??_C@_0BL@MIBG@CHUNK?5declaration?5expected?$AA@ 00428594 chcm.obj - 0004:000005b0 ??_C@_0BK@BJNH@Invalid?5ADOPT?5declaration?$AA@ 004285b0 chcm.obj - 0004:000005cc ??_C@_0BK@LGLK@Script?5compilation?5failed?$AA@ 004285cc chcm.obj - 0004:000005e8 ??_C@_0CJ@BDGC@Invalid?5size?5for?5extra?5string?5ta@ 004285e8 chcm.obj - 0004:00000614 ??_C@_0BP@EPKP@Invalid?5GST?5or?5AST?5declaration?$AA@ 00428614 chcm.obj - 0004:00000634 ??_C@_0CC@MMMG@Invalid?5size?5for?5fixed?5group?5dat@ 00428634 chcm.obj - 0004:00000658 ??_C@_0BN@NAAD@Invalid?5GG?5or?5AG?5declaration?$AA@ 00428658 chcm.obj - 0004:00000678 ??_C@_0N@GABD@Syntax?5error?$AA@ 00428678 chcm.obj - 0004:00000688 ??_C@_0CP@FPHB@Can?8t?5have?5a?5free?5item?5in?5a?5gene@ 00428688 chcm.obj - 0004:000006b8 ??_C@_0BH@CCDO@Too?5much?5data?5for?5item?$AA@ 004286b8 chcm.obj - 0004:000006d0 ??_C@_0BD@NFIH@Variable?5undefined?$AA@ 004286d0 chcm.obj - 0004:000006e4 ??_C@_0BO@CKHA@Invalid?5size?5for?5list?5entries?$AA@ 004286e4 chcm.obj - 0004:00000704 ??_C@_0BN@FKEL@Invalid?5GL?5or?5AL?5declaration?$AA@ 00428704 chcm.obj - 0004:00000724 ??_C@_0BC@MHJG@ENDCHUNK?5expected?$AA@ 00428724 chcm.obj - 0004:00000738 ??_C@_0BD@PGNF@File?5name?5expected?$AA@ 00428738 chcm.obj - 0004:0000074c ??_C@_0CB@NFHA@Alignment?5parameter?5out?5of?5range@ 0042874c chcm.obj - 0004:00000770 ??_C@_0BL@IICN@Parent?5chunk?5doesn?8t?5exist?$AA@ 00428770 chcm.obj - 0004:0000078c ??_C@_0BL@PEGG@Invalid?5PARENT?5declaration?$AA@ 0042878c chcm.obj - 0004:000007a8 ??_C@_0CK@NBM@A?5cycle?5would?5be?5created?5by?5this@ 004287a8 chcm.obj - 0004:000007d4 ??_C@_0BK@NJFM@Child?5chunk?5doesn?8t?5exist?$AA@ 004287d4 chcm.obj - 0004:000007f0 ??_C@_0BK@GHEM@Invalid?5CHILD?5declaration?$AA@ 004287f0 chcm.obj - 0004:0000080c ??_C@_0BM@KDKG@Duplicate?5CHUNK?5declaration?$AA@ 0042880c chcm.obj - 0004:00000828 ??_C@_0BK@CPAG@Invalid?5CHUNK?5declaration?$AA@ 00428828 chcm.obj - 0004:00000844 ??_C@_0BP@HFHD@Close?5parenthesis?5?8?$CJ?8?5expected?$AA@ 00428844 chcm.obj - 0004:00000864 ??_C@_0BB@MJKM@Unexpected?5Token?$AA@ 00428864 chcm.obj - 0004:00000878 ??_C@_0BH@JPMM@Numeric?5value?5expected?$AA@ 00428878 chcm.obj - 0004:00000890 ??_C@_0BA@BJOB@String?5expected?$AA@ 00428890 chcm.obj - 0004:000008a0 ??_C@_0BH@LAAJ@Unexpected?5end?5of?5file?$AA@ 004288a0 chcm.obj - 0004:000008b8 ??_C@_0BO@OOPL@Open?5parenthesis?5?8?$CI?8?5expected?$AA@ 004288b8 chcm.obj - 0004:000008d8 ??_C@_0CB@PIGB@Invalid?5data?5before?5atomic?5chunk@ 004288d8 chcm.obj - 0004:000008fc ??_C@_0BO@BLMN@Number?5not?5in?5range?5for?5SHORT?$AA@ 004288fc chcm.obj - 0004:0000091c ??_C@_0BN@DKKO@Number?5not?5in?5range?5for?5BYTE?$AA@ 0042891c chcm.obj - 0004:0000093c ??_C@_0BO@KFJ@Can?8t?5read?5the?5given?5metafile?$AA@ 0042893c chcm.obj - 0004:0000095c ??_C@_0BK@CDBP@Can?8t?5open?5the?5given?5file?$AA@ 0042895c chcm.obj - 0004:00000978 ??_C@_0BK@HLHF@Internal?5allocation?5error?$AA@ 00428978 chcm.obj - 0004:00000994 ??_C@_08KPMF@no?5error?$AA@ 00428994 chcm.obj - 0004:000009a0 ??_C@_0BM@MNOP@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?5?3?5?$CFz?$AA@ 004289a0 chcm.obj - 0004:000009bc ??_C@_0BH@DNDF@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5error?5?3?5?$CFz?$AA@ 004289bc chcm.obj - 0004:000009d4 ??_C@_0BJ@KDB@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?5?3?5?$CFz?$AA@ 004289d4 chcm.obj - 0004:000009f0 ??_C@_0BE@IGCO@?$CFs?$CI?$CFd?3?$CFd?$CJ?5?3?5warning?$AA@ 004289f0 chcm.obj - 0004:00000a04 ??_C@_0CG@JPEH@legal?5range?5for?5alignment?5is?5?$CI?$CFd@ 00428a04 chcm.obj - 0004:00000a2c ??_C@_0BC@DAM@not?5a?5packed?5file?$AA@ 00428a2c chcm.obj - 0004:00000a40 ??_C@_0BA@LADO@bad?5packed?5file?$AA@ 00428a40 chcm.obj - 0004:00000a50 ??_C@_08EBMK@Sub?5File?$AA@ 00428a50 chcm.obj - 0004:00000a5c ??_C@_06GELG@Script?$AA@ 00428a5c chcm.obj - 0004:00000a64 ??_C@_0N@KDOG@String?5Table?$AA@ 00428a64 chcm.obj - 0004:00000a74 ??_C@_05GGEJ@Group?$AA@ 00428a74 chcm.obj - 0004:00000a7c ??_C@_04DECM@List?$AA@ 00428a7c chcm.obj - 0004:00000a84 ??_C@_06KIBG@Cursor?$AA@ 00428a84 chcm.obj - 0004:00000a8c ??_C@_04OHIB@Midi?$AA@ 00428a8c chcm.obj - 0004:00000a94 ??_C@_07NBFD@Palette?$AA@ 00428a94 chcm.obj - 0004:00000a9c ??_C@_06KLJN@Bitmap?$AA@ 00428a9c chcm.obj - 0004:00000aa4 ??_C@_08PPBL@Metafile?$AA@ 00428aa4 chcm.obj - 0004:00000ab0 ??_C@_0M@CNM@Packed?5File?$AA@ 00428ab0 chcm.obj - 0004:00000abc ??_C@_0BL@JIDN@opening?5source?5file?5failed?$AA@ 00428abc chcm.obj - 0004:00000ad8 ??_C@_0CG@PBKA@Too?5many?5errors?5?9?5compilation?5ab@ 00428ad8 chcm.obj - 0004:00000b00 ??_C@_0CB@NPNL@Couldn?8t?5create?5destination?5file@ 00428b00 chcm.obj - 0004:00000b24 ??_C@_0P@NCJB@Memory?5failure?$AA@ 00428b24 chcm.obj - 0004:00000b34 ??_C@_03BCLC@SET?$AA@ 00428b34 chcm.obj - 0004:00000b38 ??_C@_07KDEJ@include?$AA@ 00428b38 chcm.obj - 0004:00000b40 ??_C@_0BE@LKC@PACKFMT?5?$CI0x?$CFx?$CJ?5PACK?$AA@ 00428b40 chcm.obj - 0004:00000b54 ??_C@_05OIIM@?7PACK?$AA@ 00428b54 chse.obj - 0004:00000b5c ??_C@_0BA@MOLF@CHUNK?$CI?8?$CFf?8?0?5?$CFd?$CJ?$AA@ 00428b5c chse.obj - 0004:00000b6c ??_C@_0BG@FJJK@CHUNK?$CI?8?$CFf?8?0?5?$CFd?0?5?$CC?$CFs?$CC?$CJ?$AA@ 00428b6c chse.obj - 0004:00000b84 ??_C@_0BF@PNMJ@Dumping?5chunk?5failed?$AA@ 00428b84 chse.obj - 0004:00000b9c ??_C@_0BO@PFAI@ADOPT?$CI?8?$CFf?8?0?5?$CFd?0?5?8?$CFf?8?0?5?$CFd?0?5?$CFd?$CJ?$AA@ 00428b9c chse.obj - 0004:00000bbc ??_C@_02OGOH@?8?5?$AA@ 00428bbc chse.obj - 0004:00000bc0 ??_C@_07KGCA@?5?5?5?1?1?5?8?$AA@ 00428bc0 chse.obj - 0004:00000bc8 ??_C@_07POOB@0x?$CF02x?5?$AA@ 00428bc8 chse.obj - 0004:00000bd0 ??_C@_05GLIP@?5?5?5?5?5?$AA@ 00428bd0 chse.obj - 0004:00000bd8 ??_C@_0BG@PGHF@Dumping?5script?5failed?$AA@ 00428bd8 chse.obj - 0004:00000bf0 ??_C@_05BME@?7ITEM?$AA@ 00428bf0 chse.obj - 0004:00000bf8 ??_C@_05GJCF@?7FREE?$AA@ 00428bf8 chse.obj - 0004:00000c00 ??_C@_07DGD@?7GL?$CI?$CFd?$CJ?$AA@ 00428c00 chse.obj - 0004:00000c08 ??_C@_07HOKD@?7AL?$CI?$CFd?$CJ?$AA@ 00428c08 chse.obj - 0004:00000c10 ??_C@_04KCOE@?7VAR?$AA@ 00428c10 chse.obj - 0004:00000c18 ??_C@_07OCCG@?7GG?$CI?$CFd?$CJ?$AA@ 00428c18 chse.obj - 0004:00000c20 ??_C@_07JPOG@?7AG?$CI?$CFd?$CJ?$AA@ 00428c20 chse.obj - 0004:00000c28 ??_C@_06ILO@?7?7?$CC?$CFs?$CC?$AA@ 00428c28 chse.obj - 0004:00000c30 ??_C@_08DDHM@?7GST?$CI?$CFd?$CJ?$AA@ 00428c30 chse.obj - 0004:00000c3c ??_C@_08NEAB@?7AST?$CI?$CFd?$CJ?$AA@ 00428c3c chse.obj - 0004:00000c48 ?_szPoundLine@@3QADA 00428c48 lex.obj - 0004:00000c50 ?_mpchgrfct@LEXB@@1QAGA 00428c50 lex.obj - 0004:00000d50 ?_rgtt@@3QAFA 00428d50 lex.obj - 0004:00000e10 ?_rgttDouble@@3QAFA 00428e10 lex.obj - 0004:00000ec0 ?_rgttEqual@@3QAFA 00428ec0 lex.obj - 0004:00000f78 ?_rgszopSccg@@3QAUSZOP@@A 00428f78 scrcomg.obj - 0004:00001328 ?_rgaropSccg@@3QAUAROP@@A 00429328 scrcomg.obj - 0004:00001e38 ??_C@_0N@MHJO@PrintStrStat?$AA@ 00429e38 scrcomg.obj - 0004:00001e48 ??_C@_09FJBA@PrintStat?$AA@ 00429e48 scrcomg.obj - 0004:00001e54 ??_C@_0L@EOIP@StreamThis?$AA@ 00429e54 scrcomg.obj - 0004:00001e60 ??_C@_09HLFA@StreamGob?$AA@ 00429e60 scrcomg.obj - 0004:00001e6c ??_C@_0BA@BIPK@FlushUserEvents?$AA@ 00429e6c scrcomg.obj - 0004:00001e7c ??_C@_09JJPB@ModalHelp?$AA@ 00429e7c scrcomg.obj - 0004:00001e88 ??_C@_0N@DCCE@SetAlarmThis?$AA@ 00429e88 scrcomg.obj - 0004:00001e98 ??_C@_0M@NALO@SetAlarmGob?$AA@ 00429e98 scrcomg.obj - 0004:00001ea4 ??_C@_0BF@NFFN@SetToolTipSourceThis?$AA@ 00429ea4 scrcomg.obj - 0004:00001ebc ??_C@_0BE@KJIP@SetToolTipSourceGob?$AA@ 00429ebc scrcomg.obj - 0004:00001ed0 ??_C@_09MGPK@EndLongOp?$AA@ 00429ed0 scrcomg.obj - 0004:00001edc ??_C@_0M@HDMI@StartLongOp?$AA@ 00429edc scrcomg.obj - 0004:00001ee8 ??_C@_0BA@PADJ@GetMasterVolume?$AA@ 00429ee8 scrcomg.obj - 0004:00001ef8 ??_C@_0BA@NALN@SetMasterVolume?$AA@ 00429ef8 scrcomg.obj - 0004:00001f08 ??_C@_08EKJJ@PrintStr?$AA@ 00429f08 scrcomg.obj - 0004:00001f14 ??_C@_05KGMP@Print?$AA@ 00429f14 scrcomg.obj - 0004:00001f1c ??_C@_0O@CNH@FIsDescendent?$AA@ 00429f1c scrcomg.obj - 0004:00001f2c ??_C@_0O@MGAI@SetNoSlipThis?$AA@ 00429f2c scrcomg.obj - 0004:00001f3c ??_C@_0N@PMGO@SetNoSlipGob?$AA@ 00429f3c scrcomg.obj - 0004:00001f4c ??_C@_0L@GHAL@HeightThis?$AA@ 00429f4c scrcomg.obj - 0004:00001f58 ??_C@_09PPGJ@HeightGob?$AA@ 00429f58 scrcomg.obj - 0004:00001f64 ??_C@_09FBEL@WidthThis?$AA@ 00429f64 scrcomg.obj - 0004:00001f70 ??_C@_08LPLG@WidthGob?$AA@ 00429f70 scrcomg.obj - 0004:00001f7c ??_C@_0BB@OEC@RunScriptCnoThis?$AA@ 00429f7c scrcomg.obj - 0004:00001f90 ??_C@_0BA@LGEH@RunScriptCnoGob?$AA@ 00429f90 scrcomg.obj - 0004:00001fa0 ??_C@_0BD@KHLA@PlayMouseSoundThis?$AA@ 00429fa0 scrcomg.obj - 0004:00001fb4 ??_C@_0BC@EENC@PlayMouseSoundGob?$AA@ 00429fb4 scrcomg.obj - 0004:00001fc8 ??_C@_0BB@HGPP@ResumeSoundClass?$AA@ 00429fc8 scrcomg.obj - 0004:00001fdc ??_C@_0M@GKDM@ResumeSound?$AA@ 00429fdc scrcomg.obj - 0004:00001fe8 ??_C@_0BA@HHOB@PauseSoundClass?$AA@ 00429fe8 scrcomg.obj - 0004:00001ff8 ??_C@_0L@NKBB@PauseSound?$AA@ 00429ff8 scrcomg.obj - 0004:00002004 ??_C@_0BC@CBPJ@PlayingSoundClass?$AA@ 0042a004 scrcomg.obj - 0004:00002018 ??_C@_0N@OGM@PlayingSound?$AA@ 0042a018 scrcomg.obj - 0004:00002028 ??_C@_0P@FBO@StopSoundClass?$AA@ 0042a028 scrcomg.obj - 0004:00002038 ??_C@_09MJBN@StopSound?$AA@ 0042a038 scrcomg.obj - 0004:00002044 ??_C@_0N@ELOA@PlaySoundGob?$AA@ 0042a044 scrcomg.obj - 0004:00002054 ??_C@_0O@DNLP@PlaySoundThis?$AA@ 0042a054 scrcomg.obj - 0004:00002064 ??_C@_0BE@LKGN@DestroyChildrenThis?$AA@ 0042a064 scrcomg.obj - 0004:00002078 ??_C@_0BD@JJKG@DestroyChildrenGob?$AA@ 0042a078 scrcomg.obj - 0004:0000208c ??_C@_0P@MKFJ@FilterCmdsThis?$AA@ 0042a08c scrcomg.obj - 0004:0000209c ??_C@_0O@KNPC@FilterCmdsGob?$AA@ 0042a09c scrcomg.obj - 0004:000020ac ??_C@_0O@BGJA@GotoFrameThis?$AA@ 0042a0ac scrcomg.obj - 0004:000020bc ??_C@_0N@GEGG@GotoFrameGob?$AA@ 0042a0bc scrcomg.obj - 0004:000020cc ??_C@_0BA@OGKJ@CountFramesThis?$AA@ 0042a0cc scrcomg.obj - 0004:000020dc ??_C@_0P@FNML@CountFramesGob?$AA@ 0042a0dc scrcomg.obj - 0004:000020ec ??_C@_0N@EGDG@CurFrameThis?$AA@ 0042a0ec scrcomg.obj - 0004:000020fc ??_C@_0M@MCIA@CurFrameGob?$AA@ 0042a0fc scrcomg.obj - 0004:00002108 ??_C@_08FNOO@StopThis?$AA@ 0042a108 scrcomg.obj - 0004:00002114 ??_C@_07BKPI@StopGob?$AA@ 0042a114 scrcomg.obj - 0004:0000211c ??_C@_0M@CMKE@PlayingThis?$AA@ 0042a11c scrcomg.obj - 0004:00002128 ??_C@_0L@FAND@PlayingGob?$AA@ 0042a128 scrcomg.obj - 0004:00002134 ??_C@_08GJKE@PlayThis?$AA@ 0042a134 scrcomg.obj - 0004:00002140 ??_C@_07FAHC@PlayGob?$AA@ 0042a140 scrcomg.obj - 0004:00002148 ??_C@_06HJIC@Launch?$AA@ 0042a148 scrcomg.obj - 0004:00002150 ??_C@_07BJKF@SetProp?$AA@ 0042a150 scrcomg.obj - 0004:00002158 ??_C@_07EKKJ@GetProp?$AA@ 0042a158 scrcomg.obj - 0004:00002160 ??_C@_08ICLP@AlertStr?$AA@ 0042a160 scrcomg.obj - 0004:0000216c ??_C@_07OMCA@SetEdit?$AA@ 0042a16c scrcomg.obj - 0004:00002174 ??_C@_07LPCM@GetEdit?$AA@ 0042a174 scrcomg.obj - 0004:0000217c ??_C@_0L@LCIG@Transition?$AA@ 0042a17c scrcomg.obj - 0004:00002188 ??_C@_0P@NHOA@CreateHelpThis?$AA@ 0042a188 scrcomg.obj - 0004:00002198 ??_C@_0O@BENB@CreateHelpGob?$AA@ 0042a198 scrcomg.obj - 0004:000021a8 ??_C@_0BE@LEMJ@ChangeModifierState?$AA@ 0042a1a8 scrcomg.obj - 0004:000021bc ??_C@_0BB@BAEK@GetModifierState?$AA@ 0042a1bc scrcomg.obj - 0004:000021d0 ??_C@_0M@NBPF@CellNoPause?$AA@ 0042a1d0 scrcomg.obj - 0004:000021dc ??_C@_04HPIN@Cell?$AA@ 0042a1dc scrcomg.obj - 0004:000021e4 ??_C@_0O@OJNG@SetColorTable?$AA@ 0042a1e4 scrcomg.obj - 0004:000021f4 ??_C@_08JGAI@SetZThis?$AA@ 0042a1f4 scrcomg.obj - 0004:00002200 ??_C@_07PMDM@SetZGob?$AA@ 0042a200 scrcomg.obj - 0004:00002208 ??_C@_05PEKH@ZThis?$AA@ 0042a208 scrcomg.obj - 0004:00002210 ??_C@_04FDKD@ZGob?$AA@ 0042a210 scrcomg.obj - 0004:00002218 ??_C@_05BEMI@YThis?$AA@ 0042a218 scrcomg.obj - 0004:00002220 ??_C@_04DMFF@YGob?$AA@ 0042a220 scrcomg.obj - 0004:00002228 ??_C@_05LEON@XThis?$AA@ 0042a228 scrcomg.obj - 0004:00002230 ??_C@_04BJAH@XGob?$AA@ 0042a230 scrcomg.obj - 0004:00002238 ??_C@_09MBMH@GidUnique?$AA@ 0042a238 scrcomg.obj - 0004:00002244 ??_C@_0L@KAKM@YMouseThis?$AA@ 0042a244 scrcomg.obj - 0004:00002250 ??_C@_09FIFJ@YMouseGob?$AA@ 0042a250 scrcomg.obj - 0004:0000225c ??_C@_0L@CPGO@XMouseThis?$AA@ 0042a25c scrcomg.obj - 0004:00002268 ??_C@_09JKBB@XMouseGob?$AA@ 0042a268 scrcomg.obj - 0004:00002274 ??_C@_0L@JPOL@SetRepThis?$AA@ 0042a274 scrcomg.obj - 0004:00002280 ??_C@_09BPLC@SetRepGob?$AA@ 0042a280 scrcomg.obj - 0004:0000228c ??_C@_0P@MKCE@SetPictureThis?$AA@ 0042a28c scrcomg.obj - 0004:0000229c ??_C@_0O@NACO@SetPictureGob?$AA@ 0042a29c scrcomg.obj - 0004:000022ac ??_C@_0M@CJOF@AnimateThis?$AA@ 0042a2ac scrcomg.obj - 0004:000022b8 ??_C@_0L@BBEN@AnimateGob?$AA@ 0042a2b8 scrcomg.obj - 0004:000022c4 ??_C@_0BA@IJPG@ChangeStateThis?$AA@ 0042a2c4 scrcomg.obj - 0004:000022d4 ??_C@_0P@CCO@ChangeStateGob?$AA@ 0042a2d4 scrcomg.obj - 0004:000022e4 ??_C@_09EGDL@StateThis?$AA@ 0042a2e4 scrcomg.obj - 0004:000022f0 ??_C@_08MPJC@StateGob?$AA@ 0042a2f0 scrcomg.obj - 0004:000022fc ??_C@_0O@HCMF@RunScriptThis?$AA@ 0042a2fc scrcomg.obj - 0004:0000230c ??_C@_0N@DBLM@RunScriptGob?$AA@ 0042a30c scrcomg.obj - 0004:0000231c ??_C@_05PJFK@Alert?$AA@ 0042a31c scrcomg.obj - 0004:00002324 ??_C@_0L@EGFM@EnqueueCid?$AA@ 0042a324 scrcomg.obj - 0004:00002330 ??_C@_08IEPA@SetAlarm?$AA@ 0042a330 scrcomg.obj - 0004:0000233c ??_C@_07FBMA@TimeCur?$AA@ 0042a33c scrcomg.obj - 0004:00002344 ??_C@_09EJEF@StopClock?$AA@ 0042a344 scrcomg.obj - 0004:00002350 ??_C@_0L@GGIB@StartClock?$AA@ 0042a350 scrcomg.obj - 0004:0000235c ??_C@_0N@NMPG@DestroyClock?$AA@ 0042a35c scrcomg.obj - 0004:0000236c ??_C@_0M@EDHP@CreateClock?$AA@ 0042a36c scrcomg.obj - 0004:00002378 ??_C@_0L@DKEP@FGobExists?$AA@ 0042a378 scrcomg.obj - 0004:00002384 ??_C@_08KBMA@GidChild?$AA@ 0042a384 scrcomg.obj - 0004:00002390 ??_C@_0L@OONC@GidPrevSib?$AA@ 0042a390 scrcomg.obj - 0004:0000239c ??_C@_0L@EPFB@GidNextSib?$AA@ 0042a39c scrcomg.obj - 0004:000023a8 ??_C@_0L@IOKP@GidParThis?$AA@ 0042a3a8 scrcomg.obj - 0004:000023b4 ??_C@_09FLPF@GidParGob?$AA@ 0042a3b4 scrcomg.obj - 0004:000023c0 ??_C@_07LLIB@GidThis?$AA@ 0042a3c0 scrcomg.obj - 0004:000023c8 ??_C@_0M@FHNF@MoveAbsThis?$AA@ 0042a3c8 scrcomg.obj - 0004:000023d4 ??_C@_0L@CBKE@MoveAbsGob?$AA@ 0042a3d4 scrcomg.obj - 0004:000023e0 ??_C@_0M@EGNE@MoveRelThis?$AA@ 0042a3e0 scrcomg.obj - 0004:000023ec ??_C@_0L@CALD@MoveRelGob?$AA@ 0042a3ec scrcomg.obj - 0004:000023f8 ??_C@_0L@OJJL@ResizeThis?$AA@ 0042a3f8 scrcomg.obj - 0004:00002404 ??_C@_09GPEL@ResizeGob?$AA@ 0042a404 scrcomg.obj - 0004:00002410 ??_C@_0M@OOAM@DestroyThis?$AA@ 0042a410 scrcomg.obj - 0004:0000241c ??_C@_0L@PILG@DestroyGob?$AA@ 0042a41c scrcomg.obj - 0004:00002428 ??_C@_0BA@JGPN@CreateChildThis?$AA@ 0042a428 scrcomg.obj - 0004:00002438 ??_C@_0P@JDJ@CreateChildGob?$AA@ 0042a438 scrcomg.obj - 0004:00002448 ?_pszOom@@3PADA 0042a448 scrcom.obj - 0004:0000244c ?_pszSyntax@@3PADA 0042a44c scrcom.obj - 0004:00002450 ?_rgszop@@3QAUSZOP@@A 0042a450 scrcom.obj - 0004:00002630 ?_rgarop@@3QAUAROP@@A 0042a630 scrcom.obj - 0004:000028a0 ?_rgpszKey@@3QAPADA 0042a8a0 scrcom.obj - 0004:000028c0 ?_rgtomeExp@@3QAUTOME@@A 0042a8c0 scrcom.obj - 0004:00002b20 ?_rgtomeOp@@3QAUTOME@@A 0042ab20 scrcom.obj - 0004:00002be4 ??_C@_08HOLA@Continue?$AA@ 0042abe4 scrcom.obj - 0004:00002bf0 ??_C@_05EABD@Break?$AA@ 0042abf0 scrcom.obj - 0004:00002bf8 ??_C@_05NNJC@While?$AA@ 0042abf8 scrcom.obj - 0004:00002c00 ??_C@_03HPMG@End?$AA@ 0042ac00 scrcom.obj - 0004:00002c04 ??_C@_04CCEF@Else?$AA@ 0042ac04 scrcom.obj - 0004:00002c0c ??_C@_04CPFE@Elif?$AA@ 0042ac0c scrcom.obj - 0004:00002c14 ??_C@_02BAJ@If?$AA@ 0042ac14 scrcom.obj - 0004:00002c18 ??_C@_04POBJ@Goto?$AA@ 0042ac18 scrcom.obj - 0004:00002c20 ??_C@_06GDJA@IfGoto?$AA@ 0042ac20 scrcom.obj - 0004:00002c28 ??_C@_0L@KPKB@CopySubStr?$AA@ 0042ac28 scrcom.obj - 0004:00002c34 ??_C@_06KDAM@LenStr?$AA@ 0042ac34 scrcom.obj - 0004:00002c3c ??_C@_0L@ICIJ@ConcatStrs?$AA@ 0042ac3c scrcom.obj - 0004:00002c48 ??_C@_08HOLI@StrToNum?$AA@ 0042ac48 scrcom.obj - 0004:00002c54 ??_C@_08PBFD@NumToStr?$AA@ 0042ac54 scrcom.obj - 0004:00002c60 ??_C@_09JFKG@ScaleTime?$AA@ 0042ac60 scrcom.obj - 0004:00002c6c ??_C@_09KOLA@MergeStrs?$AA@ 0042ac6c scrcom.obj - 0004:00002c78 ??_C@_07MHIA@NukeStr?$AA@ 0042ac78 scrcom.obj - 0004:00002c80 ??_C@_07ELLC@MoveStr?$AA@ 0042ac80 scrcom.obj - 0004:00002c88 ??_C@_07PCEE@CopyStr?$AA@ 0042ac88 scrcom.obj - 0004:00002c90 ??_C@_05PFIH@Pause?$AA@ 0042ac90 scrcom.obj - 0004:00002c98 ??_C@_05LKIE@Match?$AA@ 0042ac98 scrcom.obj - 0004:00002ca0 ??_C@_08HGHE@NextCard?$AA@ 0042aca0 scrcom.obj - 0004:00002cac ??_C@_0M@GGGO@ShuffleList?$AA@ 0042acac scrcom.obj - 0004:00002cb8 ??_C@_07MFK@Shuffle?$AA@ 0042acb8 scrcom.obj - 0004:00002cc0 ??_C@_09CAHB@SetReturn?$AA@ 0042acc0 scrcom.obj - 0004:00002ccc ??_C@_06JCBD@Return?$AA@ 0042accc scrcom.obj - 0004:00002cd4 ??_C@_04LKDK@Exit?$AA@ 0042acd4 scrcom.obj - 0004:00002cdc ??_C@_02DNIN@Go?$AA@ 0042acdc scrcom.obj - 0004:00002ce0 ??_C@_04HAFI@GoNz?$AA@ 0042ace0 scrcom.obj - 0004:00002ce8 ??_C@_03JNBL@GoZ?$AA@ 0042ace8 scrcom.obj - 0004:00002cec ??_C@_04PFCA@GoLe?$AA@ 0042acec scrcom.obj - 0004:00002cf4 ??_C@_04HLIL@GoGe?$AA@ 0042acf4 scrcom.obj - 0004:00002cfc ??_C@_04PGMH@GoLt?$AA@ 0042acfc scrcom.obj - 0004:00002d04 ??_C@_04HIGM@GoGt?$AA@ 0042ad04 scrcom.obj - 0004:00002d0c ??_C@_04NIHF@GoNe?$AA@ 0042ad0c scrcom.obj - 0004:00002d14 ??_C@_04FFPC@GoEq?$AA@ 0042ad14 scrcom.obj - 0004:00002d1c ??_C@_06ININ@Select?$AA@ 0042ad1c scrcom.obj - 0004:00002d24 ??_C@_07KEJC@RndList?$AA@ 0042ad24 scrcom.obj - 0004:00002d2c ??_C@_07OONJ@PopList?$AA@ 0042ad2c scrcom.obj - 0004:00002d34 ??_C@_07GBJG@DupList?$AA@ 0042ad34 scrcom.obj - 0004:00002d3c ??_C@_03JCDI@Rev?$AA@ 0042ad3c scrcom.obj - 0004:00002d40 ??_C@_03FPBH@Rot?$AA@ 0042ad40 scrcom.obj - 0004:00002d44 ??_C@_04BCL@Swap?$AA@ 0042ad44 scrcom.obj - 0004:00002d4c ??_C@_03FBGG@Pop?$AA@ 0042ad4c scrcom.obj - 0004:00002d50 ??_C@_03MKPO@Dup?$AA@ 0042ad50 scrcom.obj - 0004:00002d54 ??_C@_02LCLA@Le?$AA@ 0042ad54 scrcom.obj - 0004:00002d58 ??_C@_02DMBL@Ge?$AA@ 0042ad58 scrcom.obj - 0004:00002d5c ??_C@_02LBFH@Lt?$AA@ 0042ad5c scrcom.obj - 0004:00002d60 ??_C@_02DPPM@Gt?$AA@ 0042ad60 scrcom.obj - 0004:00002d64 ??_C@_02JPOF@Ne?$AA@ 0042ad64 scrcom.obj - 0004:00002d68 ??_C@_02BCGC@Eq?$AA@ 0042ad68 scrcom.obj - 0004:00002d6c ??_C@_04ENMP@LNot?$AA@ 0042ad6c scrcom.obj - 0004:00002d74 ??_C@_04HPKA@LXor?$AA@ 0042ad74 scrcom.obj - 0004:00002d7c ??_C@_04LILD@BNot?$AA@ 0042ad7c scrcom.obj - 0004:00002d84 ??_C@_04IKNM@BXor?$AA@ 0042ad84 scrcom.obj - 0004:00002d8c ??_C@_03FEFN@BOr?$AA@ 0042ad8c scrcom.obj - 0004:00002d90 ??_C@_04CJLN@BAnd?$AA@ 0042ad90 scrcom.obj - 0004:00002d98 ??_C@_06NIPH@MulDiv?$AA@ 0042ad98 scrcom.obj - 0004:00002da0 ??_C@_03OAMN@Rnd?$AA@ 0042ada0 scrcom.obj - 0004:00002da4 ??_C@_03PGJO@Dec?$AA@ 0042ada4 scrcom.obj - 0004:00002da8 ??_C@_03PCMM@Inc?$AA@ 0042ada8 scrcom.obj - 0004:00002dac ??_C@_03GIFK@Neg?$AA@ 0042adac scrcom.obj - 0004:00002db0 ??_C@_03CEPH@Abs?$AA@ 0042adb0 scrcom.obj - 0004:00002db4 ??_C@_03PJNJ@Mod?$AA@ 0042adb4 scrcom.obj - 0004:00002db8 ??_C@_03LANL@Div?$AA@ 0042adb8 scrcom.obj - 0004:00002dbc ??_C@_03FPMJ@Mul?$AA@ 0042adbc scrcom.obj - 0004:00002dc0 ??_C@_03KJKL@Sub?$AA@ 0042adc0 scrcom.obj - 0004:00002dc4 ??_C@_03KPJN@Add?$AA@ 0042adc4 scrcom.obj - 0004:00002dc8 ??_C@_0O@MNOP@Out?5of?5memory?$AA@ 0042adc8 scrcom.obj - 0004:00002dd8 ??_C@_0BA@JIOM@Undefined?5label?$AA@ 0042add8 scrcom.obj - 0004:00002de8 ??_C@_0BA@ILFG@duplicate?5label?$AA@ 0042ade8 scrcom.obj - 0004:00002df8 ??_C@_03PAAF@0?$CFx?$AA@ 0042adf8 scrcom.obj - 0004:00002dfc ??_C@_0BC@EEMM@Variable?5expected?$AA@ 0042adfc scrcom.obj - 0004:00002e10 ??_C@_0N@CDF@Unknown?5name?$AA@ 0042ae10 scrcom.obj - 0004:00002e20 ??_C@_0P@GACI@divide?5by?5zero?$AA@ 0042ae20 scrcom.obj - 0004:00002e30 ??_C@_0BA@EGEJ@unexpected?5Elif?$AA@ 0042ae30 scrcom.obj - 0004:00002e40 ??_C@_0P@GCAH@unexpected?5End?$AA@ 0042ae40 scrcom.obj - 0004:00002e50 ??_C@_0BB@NKHK@unexpected?5Break?$AA@ 0042ae50 scrcom.obj - 0004:00002e64 ??_C@_0BE@DCMB@unexpected?5Continue?$AA@ 0042ae64 scrcom.obj - 0004:00002e78 ??_C@_0BA@ELFI@unexpected?5Else?$AA@ 0042ae78 scrcom.obj - 0004:00002e88 ??_C@_0BI@CDHM@Using?5void?5return?5value?$AA@ 0042ae88 scrcom.obj - 0004:00002ea0 ??_C@_0BL@ILLH@Wrong?5number?5of?5parameters?$AA@ 0042aea0 scrcom.obj - 0004:00002ebc ??_C@_0BB@JCMG@unknown?5function?$AA@ 0042aebc scrcom.obj - 0004:00002ed0 ??_C@_0BK@OOEF@Using?5keyword?5as?5variable?$AA@ 0042aed0 scrcom.obj - 0004:00002eec ??_C@_0BJ@ENGF@unexpected?5end?5of?5source?$AA@ 0042aeec scrcom.obj - 0004:00002f08 ??_C@_0N@JHFK@?$CFd?5?1?$CK0x?$CFx?$CK?1?5?$AA@ 0042af08 scrcom.obj - 0004:00002f18 ??_C@_08DLOH@$L_?$CF04x?5?$AA@ 0042af18 scrcom.obj - 0004:00002f24 ??_C@_0BB@HKCC@bad?5op?5in?5script?$AA@ 0042af24 scrcom.obj - 0004:00002f38 ??_C@_0L@PCEF@bad?5var?5op?$AA@ 0042af38 scrcom.obj - 0004:00002f44 ??_C@_02IIMK@?$DO?$HO?$AA@ 0042af44 scrcom.obj - 0004:00002f48 ??_C@_02KFJP@?$DM?$HO?$AA@ 0042af48 scrcom.obj - 0004:00002f4c ??_C@_03MCIB@?$DO?3?3?$AA@ 0042af4c scrcom.obj - 0004:00002f50 ??_C@_03GGKM@?$DM?3?3?$AA@ 0042af50 scrcom.obj - 0004:00002f54 ??_C@_02IEHK@?$DO?4?$AA@ 0042af54 scrcom.obj - 0004:00002f58 ??_C@_02KJCP@?$DM?4?$AA@ 0042af58 scrcom.obj - 0004:00002f5c ??_C@_02KKOH@?$CC?5?$AA@ 0042af5c scrcom.obj - 0004:00002f60 ??_C@_01HMO@?$CC?$AA@ 0042af60 scrcom.obj - 0004:00002f64 ??_C@_0BG@OHKF@bad?5internal?5variable?$AA@ 0042af64 scrcom.obj - 0004:00002f7c ??_C@_0N@MBNM@bad?5variable?$AA@ 0042af7c scrcom.obj - 0004:00002f8c ??_C@_0BE@DJNF@bad?5var?5instruction?$AA@ 0042af8c scrcom.obj - 0004:00002fa0 ??_C@_0BA@OBOI@bad?5instruction?$AA@ 0042afa0 scrcom.obj - 0004:00002fb0 ??_C@_08BFCK@?$EAL_?$CF04x?5?$AA@ 0042afb0 scrcom.obj - 0004:00002fbc ??_C@_0DF@MNKJ@Script?5version?5doesn?8t?5match?5scr@ 0042afbc scrcom.obj - 0004:00002ff4 ??_C@_0BN@HMNK@No?5version?5numbers?5on?5script?$AA@ 0042aff4 scrcom.obj - 0004:00003014 ??_C@_04GBMF@?$FL?$CFd?$FN?$AA@ 0042b014 scrcom.obj - 0004:0000301c ??_C@_02DILL@?$CFs?$AA@ 0042b01c chomp.obj - 0004:00003020 ??_C@_0IP@EPBP@Usage?3?6?5?5?5chomp?5?$FL?1c?$FN?5?$DMsrcTextFil@ 0042b020 chomp.obj - 0004:000030b0 ??_C@_0CD@LHCB@Couldn?8t?5create?5destination?5file@ 0042b0b0 chomp.obj - 0004:000030d4 ??_C@_0CN@EBEA@Couldn?8t?5open?5source?5file?5as?5a?5c@ 0042b0d4 chomp.obj - 0004:00003104 ??_C@_0CA@GMJL@Missing?5destination?5file?5name?6?6?$AA@ 0042b104 chomp.obj - 0004:00003124 ??_C@_0BL@IDH@Missing?5source?5file?5name?6?6?$AA@ 0042b124 chomp.obj - 0004:00003140 ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 0042b140 chomp.obj - 0004:00003150 ??_C@_0BL@INKD@Too?5many?5files?5specified?6?6?$AA@ 0042b150 chomp.obj - 0004:0000316c ??_C@_0BK@FGBF@Bad?5command?5line?5option?6?6?$AA@ 0042b16c chomp.obj - 0004:00003188 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 0042b188 chomp.obj - 0004:000031c4 ??_C@_0ED@BIIJ@?6Microsoft?5?$CIR?$CJ?5Chunky?5File?5Compi@ 0042b1c4 chomp.obj - 0004:00003208 ??_C@_03HHKO@?$CFs?6?$AA@ 0042b208 mssio.obj - 0004:0000336c __fltused 0042b36c LIBC:fpinit.obj - 0004:00003370 __ldused 0042b370 LIBC:fpinit.obj - 0004:00003374 ___fastflag 0042b374 LIBC:fpinit.obj - 0004:00003378 __adjust_fdiv 0042b378 LIBC:fpinit.obj - 0004:0000337c __FPinit 0042b37c LIBC:fpinit.obj - 0004:00003380 __FPmtinit 0042b380 LIBC:fpinit.obj - 0004:00003384 __FPmtterm 0042b384 LIBC:fpinit.obj - 0004:00003388 __iob 0042b388 LIBC:_file.obj - 0004:00003608 __lastiob 0042b608 LIBC:_file.obj - 0004:0000360c __aenvptr 0042b60c LIBC:crt0.obj - 0004:00003610 __wenvptr 0042b610 LIBC:crt0.obj - 0004:00003614 __aexit_rtn 0042b614 LIBC:crt0.obj - 0004:00003618 _errno 0042b618 LIBC:crt0dat.obj - 0004:0000361c __doserrno 0042b61c LIBC:crt0dat.obj - 0004:00003620 __umaskval 0042b620 LIBC:crt0dat.obj - 0004:00003624 __osver 0042b624 LIBC:crt0dat.obj - 0004:00003628 __winver 0042b628 LIBC:crt0dat.obj - 0004:0000362c __winmajor 0042b62c LIBC:crt0dat.obj - 0004:00003630 __winminor 0042b630 LIBC:crt0dat.obj - 0004:00003634 ___argc 0042b634 LIBC:crt0dat.obj - 0004:00003638 ___argv 0042b638 LIBC:crt0dat.obj - 0004:0000363c ___wargv 0042b63c LIBC:crt0dat.obj - 0004:00003640 __environ 0042b640 LIBC:crt0dat.obj - 0004:00003644 ___initenv 0042b644 LIBC:crt0dat.obj - 0004:00003648 __wenviron 0042b648 LIBC:crt0dat.obj - 0004:0000364c ___winitenv 0042b64c LIBC:crt0dat.obj - 0004:00003650 __pgmptr 0042b650 LIBC:crt0dat.obj - 0004:00003654 __wpgmptr 0042b654 LIBC:crt0dat.obj - 0004:00003658 __exitflag 0042b658 LIBC:crt0dat.obj - 0004:0000365c __C_Termination_Done 0042b65c LIBC:crt0dat.obj - 0004:00003660 __pnhHeap 0042b660 LIBC:malloc.obj - 0004:000036c8 __cfltcvt_tab 0042b6c8 LIBC:cmiscdat.obj - 0004:000036f8 __stdbuf 0042b6f8 LIBC:_sftbuf.obj - 0004:00003708 ___nullstring 0042b708 LIBC:output.obj - 0004:0000371c ___wnullstring 0042b71c LIBC:output.obj - 0004:00003720 __XcptActTab 0042b720 LIBC:winxfltr.obj - 0004:00003798 __First_FPE_Indx 0042b798 LIBC:winxfltr.obj - 0004:0000379c __Num_FPE 0042b79c LIBC:winxfltr.obj - 0004:000037a0 __XcptActTabCount 0042b7a0 LIBC:winxfltr.obj - 0004:000037a4 __fpecode 0042b7a4 LIBC:winxfltr.obj - 0004:000037a8 __pxcptinfoptrs 0042b7a8 LIBC:winxfltr.obj - 0004:000037b0 __mbctype 0042b7b0 LIBC:mbctype.obj - 0004:000038b4 ___mbcodepage 0042b8b4 LIBC:mbctype.obj - 0004:000038b8 ___mblcid 0042b8b8 LIBC:mbctype.obj - 0004:000038c0 ___mbulinfo 0042b8c0 LIBC:mbctype.obj - 0004:000039c8 __nhandle 0042b9c8 LIBC:ioinit.obj - 0004:000039d0 __osfile 0042b9d0 LIBC:ioinit.obj - 0004:00003a10 __osfhnd 0042ba10 LIBC:ioinit.obj - 0004:00003b10 __pipech 0042bb10 LIBC:ioinit.obj - 0004:00003b50 __heap_desc 0042bb50 LIBC:heapinit.obj - 0004:00003b64 __heap_resetsize 0042bb64 LIBC:heapinit.obj - 0004:00003b68 __amblksiz 0042bb68 LIBC:heapinit.obj - 0004:00003b6c __heap_regionsize 0042bb6c LIBC:heapinit.obj - 0004:00003b70 __heap_maxregsize 0042bb70 LIBC:heapinit.obj - 0004:00003de0 __adbgmsg 0042bde0 LIBC:crt0msg.obj - 0004:00003de4 __newmode 0042bde4 LIBC:_newmode.obj - 0004:00003de8 ___mb_cur_max 0042bde8 LIBC:nlsdata1.obj - 0004:00003df0 ___decimal_point 0042bdf0 LIBC:nlsdata1.obj - 0004:00003df4 ___decimal_point_length 0042bdf4 LIBC:nlsdata1.obj - 0004:00003df8 __pctype 0042bdf8 LIBC:ctype.obj - 0004:00003dfc __pwctype 0042bdfc LIBC:ctype.obj - 0004:00003e00 __ctype 0042be00 LIBC:ctype.obj - 0004:00004038 __cflush 0042c038 LIBC:fflush.obj - 0004:000040e0 ___lc_handle 0042c0e0 LIBC:nlsdata2.obj - 0004:000040f8 ___lc_codepage 0042c0f8 LIBC:nlsdata2.obj - 0004:0000411c ___invalid_mb_chars 0042c11c LIBC:setmbval.obj - 0004:00004290 __pow10pos 0042c290 LIBC:constpow.obj - 0004:000043f0 __pow10neg 0042c3f0 LIBC:constpow.obj - 0004:0000454c ___xc_a 0042c54c LIBC:crt0init.obj - 0004:000045d0 ___xc_z 0042c5d0 LIBC:crt0init.obj - 0004:000045d4 ___xi_a 0042c5d4 LIBC:crt0init.obj - 0004:000045e0 ___xi_z 0042c5e0 LIBC:crt0init.obj - 0004:000045e4 ___xp_a 0042c5e4 LIBC:crt0init.obj - 0004:000045ec ___xp_z 0042c5ec LIBC:crt0init.obj - 0004:000045f0 ___xt_a 0042c5f0 LIBC:crt0init.obj - 0004:000045f4 ___xt_z 0042c5f4 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 0042d000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 0042d014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 0042d028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 0042d03c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 0042d050 winmm:WINMM.dll - 0005:00000064 NULL_IMPORT_DESCRIPTOR 0042d064 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetEnhMetaFileBits@12 0042d158 gdi32:GDI32.dll - 0005:0000015c __imp__DeleteEnhMetaFile@4 0042d15c gdi32:GDI32.dll - 0005:00000160 __imp__GetEnhMetaFileHeader@12 0042d160 gdi32:GDI32.dll - 0005:00000164 __imp__GetEnhMetaFileA@4 0042d164 gdi32:GDI32.dll - 0005:00000168 __imp__SetWinMetaFileBits@16 0042d168 gdi32:GDI32.dll - 0005:0000016c \177GDI32_NULL_THUNK_DATA 0042d16c gdi32:GDI32.dll - 0005:00000170 __imp__WideCharToMultiByte@32 0042d170 kernel32:KERNEL32.dll - 0005:00000174 __imp__CreateFileA@28 0042d174 kernel32:KERNEL32.dll - 0005:00000178 __imp__CloseHandle@4 0042d178 kernel32:KERNEL32.dll - 0005:0000017c __imp__DeleteFileA@4 0042d17c kernel32:KERNEL32.dll - 0005:00000180 __imp__FlushFileBuffers@4 0042d180 kernel32:KERNEL32.dll - 0005:00000184 __imp__CompareStringA@24 0042d184 kernel32:KERNEL32.dll - 0005:00000188 __imp__SetFilePointer@16 0042d188 kernel32:KERNEL32.dll - 0005:0000018c __imp__SetEndOfFile@4 0042d18c kernel32:KERNEL32.dll - 0005:00000190 __imp__ReadFile@20 0042d190 kernel32:KERNEL32.dll - 0005:00000194 __imp__WriteFile@20 0042d194 kernel32:KERNEL32.dll - 0005:00000198 __imp__GetFullPathNameA@16 0042d198 kernel32:KERNEL32.dll - 0005:0000019c __imp__SearchPathA@24 0042d19c kernel32:KERNEL32.dll - 0005:000001a0 __imp__GetTempPathA@8 0042d1a0 kernel32:KERNEL32.dll - 0005:000001a4 __imp__EnterCriticalSection@4 0042d1a4 kernel32:KERNEL32.dll - 0005:000001a8 __imp__GlobalReAlloc@12 0042d1a8 kernel32:KERNEL32.dll - 0005:000001ac __imp__GetFileAttributesA@4 0042d1ac kernel32:KERNEL32.dll - 0005:000001b0 __imp__MoveFileA@8 0042d1b0 kernel32:KERNEL32.dll - 0005:000001b4 __imp__GetEnvironmentVariableA@12 0042d1b4 kernel32:KERNEL32.dll - 0005:000001b8 __imp__GetStartupInfoA@4 0042d1b8 kernel32:KERNEL32.dll - 0005:000001bc __imp__MultiByteToWideChar@24 0042d1bc kernel32:KERNEL32.dll - 0005:000001c0 __imp__GetModuleHandleA@4 0042d1c0 kernel32:KERNEL32.dll - 0005:000001c4 __imp__InitializeCriticalSection@4 0042d1c4 kernel32:KERNEL32.dll - 0005:000001c8 __imp__LeaveCriticalSection@4 0042d1c8 kernel32:KERNEL32.dll - 0005:000001cc __imp__GlobalFree@4 0042d1cc kernel32:KERNEL32.dll - 0005:000001d0 __imp__GlobalAlloc@8 0042d1d0 kernel32:KERNEL32.dll - 0005:000001d4 __imp__DeleteCriticalSection@4 0042d1d4 kernel32:KERNEL32.dll - 0005:000001d8 __imp__GetLastError@0 0042d1d8 kernel32:KERNEL32.dll - 0005:000001dc __imp__SetStdHandle@8 0042d1dc kernel32:KERNEL32.dll - 0005:000001e0 __imp__GetProcAddress@8 0042d1e0 kernel32:KERNEL32.dll - 0005:000001e4 __imp__ExitProcess@4 0042d1e4 kernel32:KERNEL32.dll - 0005:000001e8 __imp__GetFileType@4 0042d1e8 kernel32:KERNEL32.dll - 0005:000001ec __imp__GetStdHandle@4 0042d1ec kernel32:KERNEL32.dll - 0005:000001f0 __imp__VirtualAlloc@16 0042d1f0 kernel32:KERNEL32.dll - 0005:000001f4 __imp__VirtualFree@12 0042d1f4 kernel32:KERNEL32.dll - 0005:000001f8 __imp__GetEnvironmentStrings@0 0042d1f8 kernel32:KERNEL32.dll - 0005:000001fc __imp__GetCommandLineA@0 0042d1fc kernel32:KERNEL32.dll - 0005:00000200 __imp__GetVersion@0 0042d200 kernel32:KERNEL32.dll - 0005:00000204 __imp__GetOEMCP@0 0042d204 kernel32:KERNEL32.dll - 0005:00000208 __imp__GetCPInfo@8 0042d208 kernel32:KERNEL32.dll - 0005:0000020c __imp__LoadLibraryA@4 0042d20c kernel32:KERNEL32.dll - 0005:00000210 __imp__RtlUnwind@16 0042d210 kernel32:KERNEL32.dll - 0005:00000214 __imp__UnhandledExceptionFilter@4 0042d214 kernel32:KERNEL32.dll - 0005:00000218 __imp__GetModuleFileNameA@12 0042d218 kernel32:KERNEL32.dll - 0005:0000021c __imp__GetACP@0 0042d21c kernel32:KERNEL32.dll - 0005:00000220 \177KERNEL32_NULL_THUNK_DATA 0042d220 kernel32:KERNEL32.dll - 0005:00000224 __imp__CharUpperBuffA@8 0042d224 user32:USER32.dll - 0005:00000228 \177USER32_NULL_THUNK_DATA 0042d228 user32:USER32.dll - 0005:0000022c __imp__timeGetTime@0 0042d22c winmm:WINMM.dll - 0005:00000230 \177WINMM_NULL_THUNK_DATA 0042d230 winmm:WINMM.dll - 0005:00000234 \177comdlg32_NULL_THUNK_DATA 0042d234 comdlg32:comdlg32.dll - - entry point at 0001:0001e9de - - Static symbols - - 0001:0001da70 _$$8000 0041ea70 f mssio.obj - 0001:0001daa0 _$$1000 0041eaa0 f mssio.obj - 0001:0001d920 _$$9200 0041e920 f chomp.obj - 0001:0001d930 _$$1000 0041e930 f chomp.obj - 0001:0001d940 _$$8000 0041e940 f chomp.obj - 0001:0001d470 _$$1000 0041e470 f pic.obj - 0001:0001d480 _$$9200 0041e480 f pic.obj - 0001:0001d490 _$$8000 0041e490 f pic.obj - 0001:0001d1e0 _$$1000 0041e1e0 f picwin.obj - 0001:0001d370 _$$9200 0041e370 f picwin.obj - 0001:0001d3a0 _$$8000 0041e3a0 f picwin.obj - 0001:0001c630 _$$1000 0041d630 f midi.obj - 0001:0001ce00 _$$9200 0041de00 f midi.obj - 0001:0001ce50 _$$8000 0041de50 f midi.obj - 0001:0001bae0 _$$1000 0041cae0 f mbmp.obj - 0001:0001c0b0 _$$9200 0041d0b0 f mbmp.obj - 0001:0001c0e0 _$$8000 0041d0e0 f mbmp.obj - 0001:0001b2c0 _$$1000 0041c2c0 f screxe.obj - 0001:0001b630 _$$8000 0041c630 f screxe.obj - 0001:000181d0 _$$1000 004191d0 f scrcom.obj - 0001:0001b230 _$$8000 0041c230 f scrcom.obj - 0001:00017e30 _$$d200 00418e30 f scrcomg.obj - 0001:00017e40 _$$1000 00418e40 f scrcomg.obj - 0001:00017e50 _$$8000 00418e50 f scrcomg.obj - 0001:00017180 _$$1000 00418180 f stream.obj - 0001:00017c90 _$$8000 00418c90 f stream.obj - 0001:000163a0 _$$1000 004173a0 f lex.obj - 0001:00016fe0 _$$8000 00417fe0 f lex.obj - 0001:00015520 _$$1000 00416520 f groups2.obj - 0001:00015fb0 _$$8000 00416fb0 f groups2.obj - 0001:00013520 _$$1000 00414520 f groups.obj - 0001:00015060 _$$8000 00416060 f groups.obj - 0001:00012c00 _$$1000 00413c00 f chse.obj - 0001:00013230 _$$8000 00414230 f chse.obj - 0001:0000ed40 _$$1000 0040fd40 f chcm.obj - 0001:00010d80 _$$8000 00411d80 f chcm.obj - 0001:00012900 _$$d200 00413900 f chcm.obj - 0001:0000e150 _$$8000 0040f150 f fniwin.obj - 0001:0000e320 _$$1000 0040f320 f fniwin.obj - 0001:0000e940 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040f940 f fniwin.obj - 0001:0000e9e0 _$$9000 0040f9e0 f fniwin.obj - 0001:0000e9f0 _$$a000 0040f9f0 f fniwin.obj - 0001:0000ea00 _$$b000 0040fa00 f fniwin.obj - 0001:0000d9e0 ?_HfileOpen@@YGPAXPADHK@Z 0040e9e0 f filewin.obj - 0001:0000dcb0 _$$1000 0040ecb0 f filewin.obj - 0001:0000e140 _$$8000 0040f140 f filewin.obj - 0001:0000c310 _$$8000 0040d310 f file.obj - 0001:0000c5d0 _$$1000 0040d5d0 f file.obj - 0001:0000c840 ?_FRangeIn@@YGHJJJ@Z 0040d840 f file.obj - 0001:0000d950 _$$9000 0040e950 f file.obj - 0001:0000d960 _$$a000 0040e960 f file.obj - 0001:0000d970 _$$b000 0040e970 f file.obj - 0001:0000c060 _$$1000 0040d060 f crf.obj - 0001:0000c2e0 _$$8000 0040d2e0 f crf.obj - 0001:00005c70 _$$1000 00406c70 f codkauai.obj - 0001:0000bf10 _$$8000 0040cf10 f codkauai.obj - 0001:00005420 _$$1000 00406420 f codec.obj - 0001:00005750 _$$8000 00406750 f codec.obj - 0001:00001ff0 _$$1000 00402ff0 f chunk.obj - 0001:00005100 _$$8000 00406100 f chunk.obj - 0001:00001ea0 _$$8000 00402ea0 f memwin.obj - 0001:00001eb0 _$$1000 00402eb0 f memwin.obj - 0001:000011f0 _$$1000 004021f0 f utilstr.obj - 0001:00001d10 _$$8000 00402d10 f utilstr.obj - 0001:00000ec0 _$$1000 00401ec0 f utilrnd.obj - 0001:00000fc0 _$$8000 00401fc0 f utilrnd.obj - 0001:00000ce0 _$$8000 00401ce0 f utilmem.obj - 0001:00000cf0 _$$1000 00401cf0 f utilmem.obj - 0001:00000960 _$$1000 00401960 f utilint.obj - 0001:00000ad0 _$$8000 00401ad0 f utilint.obj - 0001:000005c0 _$$8000 004015c0 f utilerro.obj - 0001:000007f0 _$$1000 004017f0 f utilerro.obj - 0001:00000800 _$$9000 00401800 f utilerro.obj - 0001:00000820 _$$a000 00401820 f utilerro.obj - 0001:00000830 _$$b000 00401830 f utilerro.obj - 0001:00000480 _$$1000 00401480 f utilcopy.obj - 0001:000005b0 _$$8000 004015b0 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:00021db4 _strncnt 00422db4 f LIBC:aw_map.obj - 0001:00021c00 __before 00422c00 f LIBC:heapadd.obj - 0001:000216cb _flsall 004226cb f LIBC:fflush.obj - 0001:00020c3c __abstract_cw 00421c3c f LIBC:ieee87.obj - 0001:00020ccf __hw_cw 00421ccf f LIBC:ieee87.obj - 0001:0002098f __heap_new_region 0042198f f LIBC:heapgrow.obj - 0001:000206ed __heap_grow_emptylist 004216ed f LIBC:heapinit.obj - 0001:000203a1 _getSystemCP 004213a1 f LIBC:mbctype.obj - 0001:000203dc _CPtoLCID 004213dc f LIBC:mbctype.obj - 0001:0002041b _setSBCS 0042141b f LIBC:mbctype.obj - 0001:000201d7 _parse_cmdline 004211d7 f LIBC:stdargv.obj - 0001:00020049 _xcptlookup 00421049 f LIBC:winxfltr.obj - 0001:0001fe4c __unwind_handler 00420e4c f LIBC:exsup.obj - 0001:0001fd4f _write_char 00420d4f f LIBC:output.obj - 0001:0001fd8f _write_multi_char 00420d8f f LIBC:output.obj - 0001:0001fdc0 _write_string 00420dc0 f LIBC:output.obj - 0001:0001fdf7 _get_int_arg 00420df7 f LIBC:output.obj - 0001:0001fe06 _get_int64_arg 00420e06 f LIBC:output.obj - 0001:0001fe1a _get_short_arg 00420e1a f LIBC:output.obj - 0001:0001f1d5 __cftoe_g 004201d5 f LIBC:cvt.obj - 0001:0001f2f6 __cftof_g 004202f6 f LIBC:cvt.obj - 0001:0001f412 __shift 00420412 f LIBC:cvt.obj - 0001:0001ecde __heap_expand_block 0041fcde f LIBC:realloc.obj - 0001:0001eb49 _doexit 0041fb49 f LIBC:crt0dat.obj - 0001:0001ebc8 __initterm 0041fbc8 f LIBC:crt0dat.obj - -FIXUPS: 1fa8c 9 15 f 1f 9 fffffed0 14 c ffffff8b 5 a fffff232 ffffff46 -FIXUPS: 1eb01 12 44 13 13 187a 13 29 fffffa90 9a ffffff10 fffffee9 2d f -FIXUPS: 1fda0 c 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 12 11 11 5d 12 -FIXUPS: 1fa3a c 5 10 10 5 11a2 1c 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 -FIXUPS: 1ff99 21 c1 1c 48 13 31 ca 5a 28 1f 17 30 35 1d 36 47 11 2c 119b -FIXUPS: 215c0 10 fffffbb0 12 10 19 fffffef2 15 2a 11 fffffdf5 ffffff4e -FIXUPS: 20608 4c 9b 1d 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 16aa -FIXUPS: 222be 22 f 22 f fffffafe 64 ffffff44 ffffff99 fffffe9a 17 24 fffffd3d -FIXUPS: 2197d 75 d 96 d c 32 fffffe42 ffffffae ffffff6f 18 ffffff70 d 35 -FIXUPS: 2182e ffffff1f fffffcff b8 1410 d 2b 1a 1f fffffc99 b 21 42 37 -FIXUPS: 226f2 19 2b e fffffc72 1a fffffb77 17 67 e 177 1a 1d 12 1f 20 d -FIXUPS: 221ee 13 17 13 22 1423 c6 4f fffff8ed 14 18 18 b0 9 e 9 29 4d fffffc51 -FIXUPS: 22f0f 75 c 1e 77 c fffffd3a 38 fffffc2c 10 10 18 a1 3e 24 d 41 -FIXUPS: 22b8c 182d d 20 d ffffff40 b b 1b fffffd01 47 3e 110 fffffcde ffffff4f -FIXUPS: 23dd6 26 ffffff87 fffffead f3 fffffe7e fffffe65 1a 65 1d 2b c 10 -FIXUPS: 23af5 fffff8cd c5 92 10e fffde20f 5 21 fffffbb2 10 7 18c fffffbf4 -FIXUPS: 11b6 ee 30 5d 23 d fffffe10 fffffea4 11 2d c a 1e a 1f 1e 18 b -FIXUPS: 10f6 5 17 30 232df ffffff8c fffdd9e9 10 53 35 1b 28 27 5e 1e d -FIXUPS: 1f5b 15 26 2b 21 12 d fffffb9d ef 54 fffffba6 1cd b 72 21 fffffad4 -FIXUPS: 15e5 11 1e 5c 1b6 b 996 4e 33 36 f 30 1e 28 be 29 15 3a 32 70 f -FIXUPS: 2745 6d 153 ce 63 49 f 2e 73 140 3c 66 fffff004 11 2f 11 1e 3e2f -FIXUPS: 5c53 28 a2 3d 3b 26 67 82 c8 47 49 2a 13 16 5b 57 13 d 13 d ffffcbfb -FIXUPS: 2de4 6c 51 fffff181 32 26 9 54 4b 94 3534 c 10 22 2e 25 2c 3c 11 -FIXUPS: 580f 3a 30 2c 34 1f 10 3f 1b 20 18 10 4f 33 18 22 1c 34 1c 2d 3d -FIXUPS: 5b79 19 fffff6a9 23 28 1c 2b 11 d 24 17 1f 17 17 28 47 25 13 3b -FIXUPS: 549d 37 2e 2c 2f 33 1b 2b 29 29 20 1a 3a 18 27 fffff77d 3f 32 1e -FIXUPS: 4efe 11 6b 13 2c 1e 17 14 2a 1a 1b 1d 16 d 19 14 16 17 23 22 29 -FIXUPS: 5193 16 10 16 16 11 32 fffff90e 11 1d 1a 15 a 50 2c 20 25 8 16 -FIXUPS: 4c86 33 11 24 d 24 13 9 11 7 9 15 22 26 1c 17 1f b 1b 18 fffff7c4 -FIXUPS: 4622 24 11 1a 35 1e 35 13 37 33 1c 24 5d 4e 1a 16 a0 75 3d 45 1a -FIXUPS: 4a6e d 17 d 1a 10 9 15 12 9 fffff5d8 1a 27 39 2a 9c 3c f b 9 13 -FIXUPS: 429d 40 29 48 f 20 32 21 2c 16 21 34 b 31 40 1d 17 16 7b 19 41 -FIXUPS: 3c81 c 18 19 15 10 b f 12 b 10 2a 39 1e 47 6 2c 30 24 52 a 9 19 -FIXUPS: 3f6b 60 28 6 38 34 17 23 1f fffff5da 27 17 2e 17 3a 2b 27 17 41 -FIXUPS: 3815 18 16 13 26 30 2c 16 16 13 39 2a 4c d cc 48 51 54 52 6 70 -FIXUPS: 3c65 fffff56d 7 a f 2d 17 48 2b 1a 42 5d 1d 1a 18 25 22 11 18 35 -FIXUPS: 3472 37 13 37 2f 8 1c 22 78 1f 4d 13 13 2e87 16 19 6 223 13 d ffffc764 -FIXUPS: 2ee6 2f 11 1e 12 88 2c 14 2c 9 b d e b f 6a c 10 b 11 e 13 15 41 -FIXUPS: a67b d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9254 11 2f f -FIXUPS: 622e 60 7f 20 b1 65 a 2b 23 18 16 1a 8 6c7b 1d 46 118 13 d ffff9494 -FIXUPS: 67a6 52 8 28 8 11c 18 3f 1b 1c 55 11 d 81 6a 12 78 12 33 27 21 -FIXUPS: a5e3 1b 1c 52 40e6 25 2c 16 1b 21 7b 4f 2f 8 1d 10 43 b 5 5 9 d -FIXUPS: e9a4 d 13 d ffffe564 11 1e 6e 17 68 3c 6c 16 41 114f 2b 22 27 6 -FIXUPS: e335 1d 3f 1a 12 11 b 39 f 1e 19 d b 79 23 11 b c9 e 12 35 1c 38 -FIXUPS: e6b2 57 e 12 fffff589 23 13 1d 18 40 1f 17 31 50 40 28 18 40 40 -FIXUPS: df33 38 45 3e 10 17 61 14 15 20 d3 57 6 20 2b 3f 6 fffff393 7 a -FIXUPS: d632 2a 3e 64 a9 74 69 2e 22 2e 4b 36 17 27 34 1c 17 8 a a 28 11 -FIXUPS: da92 8 8 48 125 29 57 13b7 10 10 4e 10 10 1e 10 3f ffffe1f4 11 -FIXUPS: d375 11 3e 12 1e 12 22 21 25 14 23 14 14 25 11 18 3d 1c d 14 57 -FIXUPS: f9f6 b 5 5 17 fffff07c 23 89 9e 5e a1 aa c a4 c 86 c 42 9 a 11 -FIXUPS: ef4e d 14 11 10 1b 1d f 1f 1d 14 365 24 1e 11 b 1e 82 10 28 e 2b -FIXUPS: f507 24 b 4d 1a 22 24 13 3a b 1e 2d 1a 154 76 1d 68 34 7 70 28 -FIXUPS: 13714 21 63 3c 19 7 21 63 66 23 5 e d 13 d 13 d 13 d ffffb7d5 1f -FIXUPS: f186 2e 15 ab d 2c 19 20 12 5d 26 3fd1 33 1d 4c 20 19 c 30 23 27 -FIXUPS: 134cc 1e 12 15 2c 11 18 e 12 f 9 1b e 16 9 2e 19 7 21 63 3c 19 -FIXUPS: 12caf e 6a 22 72 26 42 3c 5c 12 19 39 35 20 19 13 14 51 40 24 ed -FIXUPS: 131e4 8 8 3c 8 2c 28 3c 37 18 18 fffff514 f 1d 2f 10 21 b 32 1b -FIXUPS: 12962 65 34 13 11 9 9 9 2d 18 d 2b 29 14 1c f 20 a1 65 20 18 a -FIXUPS: 12ca1 fffff89a 11 a 11 a 13 c 19 13 13 f 12 19 9 19 a e a 94 13 -FIXUPS: 1272f f 16 f 18 f 25 f 13 21 17 22 fffff9f2 32 d 23 13 31 12 11 -FIXUPS: 1230b 14 33 37 1b b 1a 1c 1a 13 23 10 9 11 a 11 19 11 19 11 19 -FIXUPS: 124f8 19 11 fffff9b7 9 1e 14 30 9 36 e 16 9 21 3d b 11 12 30 29 -FIXUPS: 120ab 1f 1f 14 18 20 21 16 1d 1b 1a b 18 d 15 fffff8ec 33 27 11 -FIXUPS: 11b7d f 22 f 14 1e 15 13 1a 9 2e 4c 38 f 13 9 27 13 9 9 b9 20 11 -FIXUPS: 11e56 22 f 14 2a fffff89c e 14 19 d 24 1a c 26 f 11 c 11 17 9 2e -FIXUPS: 118e2 3b f 29 9 9 42 10 13 50 c 22 15 11 4b 23 fffff8eb 22 14 14 -FIXUPS: 1143f 11 14 19 11 17 9 2e 3e 3b f 29 9 9 2c c 13 3f 10 1a e 1a -FIXUPS: 116bb 23 e 22 14 14 fffff79d 4e 2c 2b a 38 2c 11 1b 18 b 9 67 a -FIXUPS: 110e3 e e 1c 25 20 a 56 fb c 13 3f e 18 e 1a 31 23 fffff5cf 9 9 -FIXUPS: 109c6 9 40 43 2c f 28 16 9 9 27 9 34 41 2a f 19 16 9 9 2c 9 3f -FIXUPS: 10c8d 21 6b 31 14 15f fffff71a 13 19 19 f 34 e 1c 2b 13 2d 9 34 -FIXUPS: 10742 37 2a f 19 16 9 9 31 9 1c 13 f 52 21 3e 2a f 1c fffff8f0 -FIXUPS: 1027e f 24 13 2b f 1e f 27 f 15 2b 13 2b f 1e f 27 f 15 40 1c 3d -FIXUPS: 10521 11 f 2b 11 21 1c 9 fffff63b 45 4a 5f 2a 1d 30 12 ac 12 18 -FIXUPS: ff35 7e 34 24 d 14 66 9 42 1b 37 1c 24 f d 9 43 e 24 20 f 3df1 -FIXUPS: 14032 d 9 8 2a 9 d 9 85 28 59 9 17 24 14 9 15 1c 13 d ffffb7f4 -FIXUPS: fa56 2f 11 2f 11 1e 8 3d 2b 58 3e50 8 10 67 47 c 27 24 47 1f 39 -FIXUPS: 13beb 63 72 11 f 4f 28 e 21 1f 11 f 27 e f df 54 9 d 9 6d 1dc9 -FIXUPS: 15dd5 17 18 14 2f 2d 11 24 93 5d 18 96 1a 13 d 13 d 13 d 13 d 13 -FIXUPS: 16101 13 d 13 d ffffd864 11 1e 8 1eb0 2f 13 2d 1f aa 18 70 20 14 -FIXUPS: 15a9d 12 19 29 a 1b e 17 30 19 14 2f 2d 11 24 41 14 b 51 31 2e -FIXUPS: 15d51 fffff159 28 10 1b 40 6f 99 4d 36 dc 98 35 1e 3e 23 12 1d -FIXUPS: 15362 b8 42 b9 74 e b5 11 37 31 77 11 42 55 23 fffff0f0 32 d 1c -FIXUPS: 1499a 14 b 20 80 1d 2c 10 1b 3c 41 45 34 14 31 38 29 35 45 4d 19 -FIXUPS: 14d59 1e 32 d 1c 37 77 fffff67a 6e 1e 2f 22 3b 23 38 20 1e a b -FIXUPS: 146e8 a b 4c 22 a b 24 a b 2b 5b 6 15 b 17 c 22 1f 10 25fa 55 d -FIXUPS: 16f9b 16 13 d 13 d 13 d ffffd264 11 2f 11 2f 11 2f 11 2f 11 2f -FIXUPS: 143c6 2f 11 28 9 32 1c 14 1c 21 24af 45 18 59 1a 12 26 a 4d 14 -FIXUPS: 16b27 2d 11 24 48 38 30 1c 19 60 31 23 10 34 36 8 10 14 2f 2d 11 -FIXUPS: 16e59 fffff31d 2f 11 2f 11 1e e3 7 11 1f 13 e 21 12 1d 43 101 14 -FIXUPS: 1650c 7c 5e 10 62 55 30 4d 3e 4c 19 aa af 3f f14 36 61 52 2b 57 -FIXUPS: 17a38 16 24 25 e 48 38 4a 2e 2c 44 36 e 31 1a 6f 6e 7f 57 88 3a -FIXUPS: 17f3a a7 13 d ffffe164 ed0 11 b6 26 1d 5d 29 b4 5d 5a 2c 25 51 -FIXUPS: 1742a 45 19 42 3d 1e 57 34 3d 12 42 8f e 2d 2c 3d 12 1c 93 118c -FIXUPS: 189dc 28 8 c a 36 2d 29 12 10 32 4a 1a e 2d 16 16 13 11 1c 10 d -FIXUPS: 18c3b 1a e 14 1a 13 d 13 d fffff818 2d e 2d 3b 53 23 26 18 1d 11 -FIXUPS: 1869f 1f 16 22 1c 38 21 1b 5c 21 2b 16 28 16 46 23 2f 40 16 24 -FIXUPS: 189a2 399 2a 18 42 2a 48 5 fffff1ef 11 2f 11 1e 2a 39 22 3c 13 -FIXUPS: 181a6 30 27 18 26 14 25 49 6b 7d 28 2e 2c 2c 42 37b1 23 33 2b 62 -FIXUPS: 1bd6b 9 8a 12 12 12 12 12 f 1c 1c 46 35 33 1a ee 182 2e 16 16 13 -FIXUPS: 1c251 13 d ffffca84 11 29 2a4e 21 67 9 53 11 c 33 11 c 33 c 31 -FIXUPS: 1b95d 60 15 16 63 1e 1c 4c 26 37 12 a 1e e 22 12 a f 71 fffff63d -FIXUPS: 1b2a5 1d c 1d f c d 10 d 26 13 46 3a 3a 1e 15 11 5d 11 aa c 17 -FIXUPS: 1b5d9 9 82 1e 38 12 35 3a 36 fffff7f5 34 13 27 18 b 6 c c 13 e -FIXUPS: 1b042 13 4f 11 c b 34 3b c c 1e 16 b 16 b 2c 22 a c 3a b fffff994 -FIXUPS: 1abfc f f c 8 f 8 1e 11 36 12 1e 16 20 11 14 ac 11 c b 1f b 1f -FIXUPS: 1ae5d 32 47 1e 18 36 c c fffffa25 22 c c 11 21 17 17 d 18 22 12 -FIXUPS: 1aab6 1a f 10 c c 12 10 c 8 1a f 10 c c 12 10 c 8 19 fffff66c 11 -FIXUPS: 1a2b7 11 12 19 3b 11 11 88 11 2d 11 44 11 11 28 27 27 43 2c9 48 -FIXUPS: 1a874 2e 21 c 11 17 1c 11 1c 22 fffff253 30 25 bd 3d 16 11 49 a -FIXUPS: 19db3 f5 97 91 56 1b 1f 11 16 11 11 27 23 2c 30 45 29 11 12 11 -FIXUPS: 1a1ff 16 26 fffff318 3c 2e 4a 44 1f 2e 12 40 16 34 30 4d 3b 24 -FIXUPS: 19838 4e f 41 f 26 2e 9 3e 43 b 65 25 11 2f d9 d fffff388 1e 38 -FIXUPS: 18f7a 37 10 10 11 a 7 10 11 24 13 55 c9 2a 6d 54 11 26 15 18 27 -FIXUPS: 192f1 4b f5 31 54 1c 3d 22 2e09 1c 10 d d 24 6 f 2b 4e 1c 14 36 -FIXUPS: 1c4af 16 d 1e d 28 2e 16 1f 15 d 9 21 f d 9 18 20 ffffc8c4 3ce9 -FIXUPS: 1cbfa 47 1d 1d 113 1a d 11 19 2a 1c 17 63 28 3c 1e 49 22 78 a 2e -FIXUPS: 1d05a 57 5 e d fffff1c4 11 3a 18 18 19e5 c b 32 10 17 8 4e 22 18 -FIXUPS: 1de01 5 e d 13 d ffffe814 11 28 7 10 d ac 1f7 dc 52 17 7c 65 c -FIXUPS: 1cba5 29 af7 1c 13 14 16 1e 17 30 39 17 3a b 2b 15 b 28 25 84 33 -FIXUPS: 1d9f5 27 1b 4e 5c 28 1f 84 67 1c 2e 26 1c 3b3 2a 16 1f b 142 21 -FIXUPS: 1e242 1c 57 42 1f 27 34 5 e d ffffedf4 11 2f 11 1e 31 43 2d f 4d -FIXUPS: 1d32d 8b 61 27b 2a 10ee f 15 c 9 14 8 1c 16 13 8 9 9 1a c 1f 12 -FIXUPS: 1e8c0 9 58 5 fffffb1f 11 2b 5 fffffa5e 46 53 17 5a b 15 9c6 3e -FIXUPS: 1ea42 2f 21 33 fffffa6d 11 1e f 12 3e 18 19 14 37 c 48 16 17 17 -FIXUPS: 1e6eb 17 15 c 16 c 23 7 9 20 b diff --git a/kauai/OBJ/WINS/FT.MAP b/kauai/OBJ/WINS/FT.MAP deleted file mode 100644 index da9dfdc2..00000000 --- a/kauai/OBJ/WINS/FT.MAP +++ /dev/null @@ -1,3969 +0,0 @@ - ft - - Timestamp is 3070b2cb (Mon Oct 02 20:49:31 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 00056368H .text CODE - 0002:00000000 0000123cH .bss DATA - 0003:00000000 000036e8H .rdata DATA - 0004:00000000 00001ce4H .data DATA - 0004:00001ce4 00000004H .CRT$XCA DATA - 0004:00001ce8 00000004H .CRT$XCC DATA - 0004:00001cec 000000c8H .CRT$XCU DATA - 0004:00001db4 00000004H .CRT$XCZ DATA - 0004:00001db8 00000004H .CRT$XIA DATA - 0004:00001dbc 00000008H .CRT$XIC DATA - 0004:00001dc4 00000004H .CRT$XIZ DATA - 0004:00001dc8 00000004H .CRT$XPA DATA - 0004:00001dcc 00000004H .CRT$XPZ DATA - 0004:00001dd0 00000004H .CRT$XTA DATA - 0004:00001dd4 00000004H .CRT$XTZ DATA - 0005:00000000 0000008cH .idata$2 DATA - 0005:0000008c 00000028H .idata$3 DATA - 0005:000000b4 0000044cH .idata$4 DATA - 0005:00000500 0000044cH .idata$5 DATA - 0005:0000094c 00001216H .idata$6 DATA - 0006:00000000 00000114H .rsrc$01 DATA - 0006:00000120 00000624H .rsrc$02 DATA - 0008:00000000 00000000H .debug$C DATA - 0008:00000000 00000110H .debug$E DATA - 0008:00000110 0000a5a0H .debug$F DATA - 0008:0000b8d0 00000000H .debug$G DATA - 0008:0000b8d0 0000002fH .debug$H DATA - 0008:fff98000 00000000H .debug$P DATA - 0008:fff98000 00000000H .debug$S DATA - 0008:fff98000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003d0 ?ReversePb@@YGXPAXJ@Z 004013d0 f utilcopy.obj - 0001:00000400 ?SwapBlocks@@YGXPAXJJ@Z 00401400 f utilcopy.obj - 0001:00000430 ?SwapPb@@YGXPAX0J@Z 00401430 f utilcopy.obj - 0001:00000480 ?MoveElement@@YGXPAXJJJ@Z 00401480 f utilcopy.obj - 0001:000004f0 ?FEqualRgb@@YGHPAX0J@Z 004014f0 f utilcopy.obj - 0001:00000530 ?CbEqualRgb@@YGJPAX0J@Z 00401530 f utilcopy.obj - 0001:00000590 ?CopyPb@@YGXPAX0J@Z 00401590 f utilcopy.obj - 0001:000005c0 ?BltPb@@YGXPAX0J@Z 004015c0 f utilcopy.obj - 0001:00000630 ?FWouldBe@ERS@@SGHJ@Z 00401630 f utilerro.obj - 0001:00000650 ?FIs@ERS@@UAEHJ@Z 00401650 f utilerro.obj - 0001:00000660 ?Cls@ERS@@UAEJXZ 00401660 f utilerro.obj - 0001:00000670 ??0ERS@@QAE@XZ 00401670 f utilerro.obj - 0001:000006a0 ?Push@ERS@@UAEXJ@Z 004016a0 f utilerro.obj - 0001:000006f0 ?FPop@ERS@@UAEHPAJ@Z 004016f0 f utilerro.obj - 0001:00000740 ?Clear@ERS@@UAEXXZ 00401740 f utilerro.obj - 0001:00000760 ?Cerc@ERS@@UAEJXZ 00401760 f utilerro.obj - 0001:00000770 ?FIn@ERS@@UAEHJ@Z 00401770 f utilerro.obj - 0001:000007c0 ?ErcGet@ERS@@UAEJJ@Z 004017c0 f utilerro.obj - 0001:00000800 ?Flush@ERS@@UAEXJ@Z 00401800 f utilerro.obj - 0001:000008a0 ??_EERS@@UAEPAXI@Z 004018a0 f utilerro.obj - 0001:000008a0 ??_GERS@@UAEPAXI@Z 004018a0 f utilerro.obj - 0001:000008d0 ?LwGcd@@YGJJJ@Z 004018d0 f utilint.obj - 0001:000008f0 ?LuGcd@@YGKKK@Z 004018f0 f utilint.obj - 0001:00000940 ?SortLw@@YGXPAJ0@Z 00401940 f utilint.obj - 0001:00000960 ?MulLw@@YGXJJPAJPAK@Z 00401960 f utilint.obj - 0001:00000980 ?LuMulDiv@@YGKKKK@Z 00401980 f utilint.obj - 0001:000009a0 ?MulLu@@YGXKKPAK0@Z 004019a0 f utilint.obj - 0001:000009c0 ?LwMulDivAway@@YGJJJJ@Z 004019c0 f utilint.obj - 0001:00000a20 ?LwDivAway@@YGJJJ@Z 00401a20 f utilint.obj - 0001:00000a50 ?LwRoundAway@@YGJJJ@Z 00401a50 f utilint.obj - 0001:00000a80 ?LwRoundToward@@YGJJJ@Z 00401a80 f utilint.obj - 0001:00000aa0 ?LwRoundClosest@@YGJJJ@Z 00401aa0 f utilint.obj - 0001:00000af0 ?FcmpCompareFracs@@YGKJJJJ@Z 00401af0 f utilint.obj - 0001:00000b80 ?FAdjustIv@@YGHPAJJJJ@Z 00401b80 f utilint.obj - 0001:00000bd0 ?SwapBytesBom@@YGXPAXK@Z 00401bd0 f utilint.obj - 0001:00000c30 ?SwapBytesRgsw@@YGXPAXJ@Z 00401c30 f utilint.obj - 0001:00000c60 ?SwapBytesRglw@@YGXPAXJ@Z 00401c60 f utilint.obj - 0001:00000c90 ??BPT@@QAE?AUtagPOINT@@XZ 00401c90 f utilint.obj - 0001:00000cf0 ??4PT@@QAEAAV0@AAUtagPOINT@@@Z 00401cf0 f utilint.obj - 0001:00000d10 ?Map@PT@@QAEXPAVRC@@0@Z 00401d10 f utilint.obj - 0001:00000dc0 ?Transform@PT@@QAEXK@Z 00401dc0 f utilint.obj - 0001:00000df0 ??8RC@@QAEHAAV0@@Z 00401df0 f utilint.obj - 0001:00000e60 ??9RC@@QAEHAAV0@@Z 00401e60 f utilint.obj - 0001:00000ed0 ?Union@RC@@QAEXPAV1@0@Z 00401ed0 f utilint.obj - 0001:00000f00 ?Union@RC@@QAEXPAV1@@Z 00401f00 f utilint.obj - 0001:00000f80 ?FIntersect@RC@@QAEHPAV1@0@Z 00401f80 f utilint.obj - 0001:00001000 ?FIntersect@RC@@QAEHPAV1@@Z 00402000 f utilint.obj - 0001:00001080 ?Inset@RC@@QAEXJJ@Z 00402080 f utilint.obj - 0001:000010a0 ?Map@RC@@QAEXPAV1@0@Z 004020a0 f utilint.obj - 0001:000011c0 ?Transform@RC@@QAEXK@Z 004021c0 f utilint.obj - 0001:00001220 ?OffsetCopy@RC@@QAEXPAV1@JJ@Z 00402220 f utilint.obj - 0001:00001250 ?Offset@RC@@QAEXJJ@Z 00402250 f utilint.obj - 0001:00001270 ?OffsetToOrigin@RC@@QAEXXZ 00402270 f utilint.obj - 0001:00001290 ?CenterOnRc@RC@@QAEXPAV1@@Z 00402290 f utilint.obj - 0001:000012e0 ?FPtIn@RC@@QAEHJJ@Z 004022e0 f utilint.obj - 0001:00001310 ?PinPt@RC@@QAEXPAVPT@@@Z 00402310 f utilint.obj - 0001:00001350 ?PinToRc@RC@@QAEXPAV1@@Z 00402350 f utilint.obj - 0001:000013a0 ??4RC@@QAEAAV0@AAUtagRECT@@@Z 004023a0 f utilint.obj - 0001:000013c0 ??BRC@@QAE?AUtagRECT@@XZ 004023c0 f utilint.obj - 0001:00001490 ?FContains@RC@@QAEHPAV1@@Z 00402490 f utilint.obj - 0001:000014d0 ?SetToCell@RC@@QAEXPAV1@JJJJ@Z 004024d0 f utilint.obj - 0001:000015b0 ??0USAC@@QAE@XZ 004025b0 f utilint.obj - 0001:000015e0 ?TsCur@USAC@@QAEKXZ 004025e0 f utilint.obj - 0001:00001640 ?Scale@USAC@@QAEXK@Z 00402640 f utilint.obj - 0001:000016b0 ?Set@DVER@@QAEXFF@Z 004026b0 f utilint.obj - 0001:000016d0 ?FReadable@DVER@@QAEHFF@Z 004026d0 f utilint.obj - 0001:00001710 ??_GUSAC@@UAEPAXI@Z 00402710 f utilint.obj - 0001:00001710 ??_EUSAC@@UAEPAXI@Z 00402710 f utilint.obj - 0001:00001730 ?FAllocPv@@YGHPAPAXJKJ@Z 00402730 f utilmem.obj - 0001:00001800 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00402800 f utilmem.obj - 0001:000018f0 ?FreePpv@@YGXPAPAX@Z 004028f0 f utilmem.obj - 0001:00001930 ?FWouldBe@RND@@SGHJ@Z 00402930 f utilrnd.obj - 0001:00001950 ?FIs@RND@@UAEHJ@Z 00402950 f utilrnd.obj - 0001:00001960 ?Cls@RND@@UAEJXZ 00402960 f utilrnd.obj - 0001:00001970 ?FWouldBe@SFL@@SGHJ@Z 00402970 f utilrnd.obj - 0001:00001990 ?FIs@SFL@@UAEHJ@Z 00402990 f utilrnd.obj - 0001:000019a0 ?Cls@SFL@@UAEJXZ 004029a0 f utilrnd.obj - 0001:000019b0 ??0RND@@QAE@K@Z 004029b0 f utilrnd.obj - 0001:000019f0 ?LwNext@RND@@UAEJJ@Z 004029f0 f utilrnd.obj - 0001:00001a20 ??0SFL@@QAE@K@Z 00402a20 f utilrnd.obj - 0001:00001a50 ??1SFL@@UAE@XZ 00402a50 f utilrnd.obj - 0001:00001a70 ?Shuffle@SFL@@QAEXJ@Z 00402a70 f utilrnd.obj - 0001:00001ab0 ?_ShuffleCore@SFL@@IAEXXZ 00402ab0 f utilrnd.obj - 0001:00001b00 ?_FEnsureHq@SFL@@IAEHJ@Z 00402b00 f utilrnd.obj - 0001:00001b70 ?LwNext@SFL@@UAEJJ@Z 00402b70 f utilrnd.obj - 0001:00001c00 ??_GRND@@UAEPAXI@Z 00402c00 f utilrnd.obj - 0001:00001c00 ??_ERND@@UAEPAXI@Z 00402c00 f utilrnd.obj - 0001:00001c20 ??_GSFL@@UAEPAXI@Z 00402c20 f utilrnd.obj - 0001:00001c20 ??_ESFL@@UAEPAXI@Z 00402c20 f utilrnd.obj - 0001:00001c40 ??0STN@@QAE@PAD@Z 00402c40 f utilstr.obj - 0001:00001c80 ??4STN@@QAEAAV0@AAV0@@Z 00402c80 f utilstr.obj - 0001:00001ca0 ?SetRgch@STN@@QAEXPADJ@Z 00402ca0 f utilstr.obj - 0001:00001ce0 ?SetSzs@STN@@QAEXPAD@Z 00402ce0 f utilstr.obj - 0001:00001d00 ?Delete@STN@@QAEXJJ@Z 00402d00 f utilstr.obj - 0001:00001d60 ?FAppendRgch@STN@@QAEHPADJ@Z 00402d60 f utilstr.obj - 0001:00001db0 ?FInsertRgch@STN@@QAEHJPADJ@Z 00402db0 f utilstr.obj - 0001:00001e70 ?FEqualRgch@STN@@QAEHPADJ@Z 00402e70 f utilstr.obj - 0001:00001ea0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402ea0 f utilstr.obj - 0001:00001ec0 ?CbData@STN@@QAEJXZ 00402ec0 f utilstr.obj - 0001:00001ed0 ?GetData@STN@@QAEXPAX@Z 00402ed0 f utilstr.obj - 0001:00001f10 ?FWrite@STN@@QAEHPAVBLCK@@J@Z 00402f10 f utilstr.obj - 0001:00001fa0 ?FSetData@STN@@QAEHPAXJPAJ@Z 00402fa0 f utilstr.obj - 0001:000021d0 ?FRead@STN@@QAEHPAVBLCK@@JPAJ@Z 004031d0 f utilstr.obj - 0001:000024a0 ?FFormatSz@STN@@QAAHPADZZ 004034a0 f utilstr.obj - 0001:000024c0 ?FFormatRgch@STN@@QAEHPADJPAK@Z 004034c0 f utilstr.obj - 0001:00002840 ?CchSz@@YGJPAD@Z 00403840 f utilstr.obj - 0001:00002860 ?FcmpCompareRgch@@YGKPADJ0J@Z 00403860 f utilstr.obj - 0001:000028c0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004038c0 f utilstr.obj - 0001:000029b0 ?FcmpCompareUserRgch@@YGKPADJ0JK@Z 004039b0 f utilstr.obj - 0001:00002a20 ?UpperRgchs@@YGXPADJ@Z 00403a20 f utilstr.obj - 0001:00002a80 ?LowerRgchs@@YGXPADJ@Z 00403a80 f utilstr.obj - 0001:00002ae0 ?CchTranslateRgb@@YGJPAXJFPADJ@Z 00403ae0 f utilstr.obj - 0001:00002be0 ?TranslateRgch@@YGXPADJFH@Z 00403be0 f utilstr.obj - 0001:00002c30 ?GrfchFromCh@@YGKD@Z 00403c30 f utilstr.obj - 0001:00002d30 ?FAllocHq@@YGHPAPAXJKJ@Z 00403d30 f memwin.obj - 0001:00002da0 ?FResizePhq@@YGHPAPAXJKJ@Z 00403da0 f memwin.obj - 0001:00002e40 ?FreePhq@@YGXPAPAX@Z 00403e40 f memwin.obj - 0001:00002e70 ?FCopyHq@@YGHPAXPAPAXJ@Z 00403e70 f memwin.obj - 0001:00002ec0 ?CbOfHq@@YGJPAX@Z 00403ec0 f memwin.obj - 0001:00002ed0 ?PvLockHq@@YGPAXPAX@Z 00403ed0 f memwin.obj - 0001:00002ee0 ?UnlockHq@@YGXPAX@Z 00403ee0 f memwin.obj - 0001:00002f20 ?FWouldBe@GRPB@@SGHJ@Z 00403f20 f groups.obj - 0001:00002f40 ?FIs@GRPB@@UAEHJ@Z 00403f40 f groups.obj - 0001:00002f50 ?Cls@GRPB@@UAEJXZ 00403f50 f groups.obj - 0001:00002f60 ?FWouldBe@GLB@@SGHJ@Z 00403f60 f groups.obj - 0001:00002f80 ?FIs@GLB@@UAEHJ@Z 00403f80 f groups.obj - 0001:00002f90 ?Cls@GLB@@UAEJXZ 00403f90 f groups.obj - 0001:00002fa0 ?FWouldBe@GL@@SGHJ@Z 00403fa0 f groups.obj - 0001:00002fc0 ?FIs@GL@@UAEHJ@Z 00403fc0 f groups.obj - 0001:00002fd0 ?Cls@GL@@UAEJXZ 00403fd0 f groups.obj - 0001:00002fe0 ?FWouldBe@AL@@SGHJ@Z 00403fe0 f groups.obj - 0001:00003000 ?FIs@AL@@UAEHJ@Z 00404000 f groups.obj - 0001:00003010 ?Cls@AL@@UAEJXZ 00404010 f groups.obj - 0001:00003020 ?FWouldBe@GGB@@SGHJ@Z 00404020 f groups.obj - 0001:00003040 ?FIs@GGB@@UAEHJ@Z 00404040 f groups.obj - 0001:00003050 ?Cls@GGB@@UAEJXZ 00404050 f groups.obj - 0001:00003060 ?FWouldBe@GG@@SGHJ@Z 00404060 f groups.obj - 0001:00003080 ?FIs@GG@@UAEHJ@Z 00404080 f groups.obj - 0001:00003090 ?Cls@GG@@UAEJXZ 00404090 f groups.obj - 0001:000030a0 ?FWouldBe@AG@@SGHJ@Z 004040a0 f groups.obj - 0001:000030c0 ?FIs@AG@@UAEHJ@Z 004040c0 f groups.obj - 0001:000030d0 ?Cls@AG@@UAEJXZ 004040d0 f groups.obj - 0001:000030e0 ??1GRPB@@UAE@XZ 004040e0 f groups.obj - 0001:00003110 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 00404110 f groups.obj - 0001:000031f0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 004041f0 f groups.obj - 0001:000032c0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 004042c0 f groups.obj - 0001:00003310 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 00404310 f groups.obj - 0001:000033e0 ?_FReadData@GRPB@@IAEHPAVBLCK@@JJJ@Z 004043e0 f groups.obj - 0001:000034a0 ??0GLB@@IAE@J@Z 004044a0 f groups.obj - 0001:000034d0 ?QvGet@GLB@@QAEPAXJ@Z 004044d0 f groups.obj - 0001:000034f0 ?Get@GLB@@QAEXJPAX@Z 004044f0 f groups.obj - 0001:00003510 ?Put@GLB@@QAEXJPAX@Z 00404510 f groups.obj - 0001:00003530 ?PvLock@GLB@@QAEPAXJ@Z 00404530 f groups.obj - 0001:00003550 ?SetMinGrow@GLB@@QAEXJ@Z 00404550 f groups.obj - 0001:00003580 ?PglNew@GL@@SGPAV1@JJ@Z 00404580 f groups.obj - 0001:000035e0 ?PglRead@GL@@SGPAV1@PAVBLCK@@PAF1@Z 004045e0 f groups.obj - 0001:00003640 ?PglRead@GL@@SGPAV1@PAVFIL@@JJPAF1@Z 00404640 f groups.obj - 0001:00003690 ??0GL@@IAE@J@Z 00404690 f groups.obj - 0001:000036b0 ?FFree@GL@@UAEHJ@Z 004046b0 f groups.obj - 0001:000036d0 ?CbOnFile@GL@@UAEJXZ 004046d0 f groups.obj - 0001:000036e0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 004046e0 f groups.obj - 0001:00003750 ?_FRead@GL@@IAEHPAVBLCK@@PAF1@Z 00404750 f groups.obj - 0001:00003820 ?FInsert@GL@@QAEHJPAXJ@Z 00404820 f groups.obj - 0001:000038c0 ?Delete@GL@@UAEXJ@Z 004048c0 f groups.obj - 0001:000038d0 ?Delete@GL@@QAEXJJ@Z 004048d0 f groups.obj - 0001:00003910 ?Move@GL@@QAEXJJ@Z 00404910 f groups.obj - 0001:00003930 ?FAdd@GL@@UAEHPAXPAJ@Z 00404930 f groups.obj - 0001:00003960 ?FPop@GL@@QAEHPAX@Z 00404960 f groups.obj - 0001:00003990 ?FSetIvMac@GL@@QAEHJ@Z 00404990 f groups.obj - 0001:000039e0 ?FEnsureSpace@GL@@QAEHJK@Z 004049e0 f groups.obj - 0001:00003a20 ?PalNew@AL@@SGPAV1@JJ@Z 00404a20 f groups.obj - 0001:00003a80 ??0AL@@IAE@J@Z 00404a80 f groups.obj - 0001:00003aa0 ?CbOnFile@AL@@UAEJXZ 00404aa0 f groups.obj - 0001:00003ac0 ?FWrite@AL@@UAEHPAVBLCK@@FF@Z 00404ac0 f groups.obj - 0001:00003b40 ?FFree@AL@@UAEHJ@Z 00404b40 f groups.obj - 0001:00003b80 ?FEnsureSpace@AL@@QAEHJK@Z 00404b80 f groups.obj - 0001:00003bd0 ?FAdd@AL@@UAEHPAXPAJ@Z 00404bd0 f groups.obj - 0001:00003c70 ?Delete@AL@@UAEXJ@Z 00404c70 f groups.obj - 0001:00003d20 ??0GGB@@IAE@JH@Z 00404d20 f groups.obj - 0001:00003d60 ?CbOnFile@GGB@@UAEJXZ 00404d60 f groups.obj - 0001:00003d70 ?FWrite@GGB@@UAEHPAVBLCK@@FF@Z 00404d70 f groups.obj - 0001:00003e60 ?_FRead@GGB@@IAEHPAVBLCK@@PAF1@Z 00404e60 f groups.obj - 0001:00003ff0 ?FFree@GGB@@UAEHJ@Z 00404ff0 f groups.obj - 0001:00004020 ?FEnsureSpace@GGB@@QAEHJJK@Z 00405020 f groups.obj - 0001:000040b0 ?_RemoveRgb@GGB@@IAEXJJ@Z 004050b0 f groups.obj - 0001:00004100 ?_AdjustLocs@GGB@@IAEXJJJ@Z 00405100 f groups.obj - 0001:00004150 ?QvFixedGet@GGB@@QAEPAXJPAJ@Z 00405150 f groups.obj - 0001:00004190 ?GetFixed@GGB@@QAEXJPAX@Z 00405190 f groups.obj - 0001:000041c0 ?PutFixed@GGB@@QAEXJPAX@Z 004051c0 f groups.obj - 0001:000041f0 ?Cb@GGB@@QAEJJ@Z 004051f0 f groups.obj - 0001:00004210 ?QvGet@GGB@@QAEPAXJPAJ@Z 00405210 f groups.obj - 0001:00004250 ?PvLock@GGB@@QAEPAXJPAJ@Z 00405250 f groups.obj - 0001:00004280 ?Get@GGB@@QAEXJPAX@Z 00405280 f groups.obj - 0001:000042c0 ?FPut@GGB@@QAEHJJPAX@Z 004052c0 f groups.obj - 0001:00004330 ?GetRgb@GGB@@QAEXJJJPAX@Z 00405330 f groups.obj - 0001:00004370 ?PutRgb@GGB@@QAEXJJJPAX@Z 00405370 f groups.obj - 0001:000043b0 ?DeleteRgb@GGB@@QAEXJJJ@Z 004053b0 f groups.obj - 0001:00004440 ?FInsertRgb@GGB@@QAEHJJJPAX@Z 00405440 f groups.obj - 0001:00004560 ?FMoveRgb@GGB@@QAEHJJJJJ@Z 00405560 f groups.obj - 0001:000046f0 ?Merge@GGB@@QAEXJJ@Z 004056f0 f groups.obj - 0001:00004790 ?PggNew@GG@@SGPAV1@JJJ@Z 00405790 f groups.obj - 0001:00004800 ?PggRead@GG@@SGPAV1@PAVBLCK@@PAF1@Z 00405800 f groups.obj - 0001:00004860 ?PggRead@GG@@SGPAV1@PAVFIL@@JJPAF1@Z 00405860 f groups.obj - 0001:000048b0 ?FInsert@GG@@QAEHJJPAX0@Z 004058b0 f groups.obj - 0001:00004980 ?FCopyEntries@GG@@QAEHPAV1@JJJ@Z 00405980 f groups.obj - 0001:00004a90 ?FAdd@GG@@UAEHJPAJPAX1@Z 00405a90 f groups.obj - 0001:00004ac0 ?Delete@GG@@UAEXJ@Z 00405ac0 f groups.obj - 0001:00004b20 ?PagNew@AG@@SGPAV1@JJJ@Z 00405b20 f groups.obj - 0001:00004b90 ?PagRead@AG@@SGPAV1@PAVBLCK@@PAF1@Z 00405b90 f groups.obj - 0001:00004bf0 ?FAdd@AG@@UAEHJPAJPAX1@Z 00405bf0 f groups.obj - 0001:00004d00 ?Delete@AG@@UAEXJ@Z 00405d00 f groups.obj - 0001:00004d90 ??_GGRPB@@UAEPAXI@Z 00405d90 f groups.obj - 0001:00004d90 ??_EGRPB@@UAEPAXI@Z 00405d90 f groups.obj - 0001:00004db0 ??_GGG@@UAEPAXI@Z 00405db0 f groups.obj - 0001:00004db0 ??_EGG@@UAEPAXI@Z 00405db0 f groups.obj - 0001:00004dd0 ??_GAG@@UAEPAXI@Z 00405dd0 f groups.obj - 0001:00004dd0 ??_EAG@@UAEPAXI@Z 00405dd0 f groups.obj - 0001:00004df0 ??_GGLB@@UAEPAXI@Z 00405df0 f groups.obj - 0001:00004df0 ??_EGLB@@UAEPAXI@Z 00405df0 f groups.obj - 0001:00004e10 ??_EGL@@UAEPAXI@Z 00405e10 f groups.obj - 0001:00004e10 ??_GGL@@UAEPAXI@Z 00405e10 f groups.obj - 0001:00004e30 ??_EAL@@UAEPAXI@Z 00405e30 f groups.obj - 0001:00004e30 ??_GAL@@UAEPAXI@Z 00405e30 f groups.obj - 0001:00004e50 ??_GGGB@@UAEPAXI@Z 00405e50 f groups.obj - 0001:00004e50 ??_EGGB@@UAEPAXI@Z 00405e50 f groups.obj - 0001:00004e70 ?FWouldBe@GSTB@@SGHJ@Z 00405e70 f groups2.obj - 0001:00004e90 ?FIs@GSTB@@UAEHJ@Z 00405e90 f groups2.obj - 0001:00004ea0 ?Cls@GSTB@@UAEJXZ 00405ea0 f groups2.obj - 0001:00004eb0 ?FWouldBe@GST@@SGHJ@Z 00405eb0 f groups2.obj - 0001:00004ed0 ?FIs@GST@@UAEHJ@Z 00405ed0 f groups2.obj - 0001:00004ee0 ?Cls@GST@@UAEJXZ 00405ee0 f groups2.obj - 0001:00004ef0 ??0GSTB@@IAE@JK@Z 00405ef0 f groups2.obj - 0001:00004f30 ?CbOnFile@GSTB@@UAEJXZ 00405f30 f groups2.obj - 0001:00004f40 ?FWrite@GSTB@@UAEHPAVBLCK@@FF@Z 00405f40 f groups2.obj - 0001:00005050 ?FEnsureSpace@GSTB@@QAEHJJK@Z 00406050 f groups2.obj - 0001:000050c0 ?GetRgch@GSTB@@QAEXJPADJPAJ@Z 004060c0 f groups2.obj - 0001:000050f0 ?GetStn@GSTB@@QAEXJPAVSTN@@@Z 004060f0 f groups2.obj - 0001:00005110 ?FFindStn@GSTB@@QAEHPAVSTN@@PAJK@Z 00406110 f groups2.obj - 0001:00005130 ?FFindRgch@GSTB@@UAEHPADJPAJK@Z 00406130 f groups2.obj - 0001:000051a0 ?GetExtra@GSTB@@QAEXJPAX@Z 004061a0 f groups2.obj - 0001:000051d0 ?_Qst@GSTB@@IAEPADJ@Z 004061d0 f groups2.obj - 0001:000051f0 ?_AppendRgch@GSTB@@IAEXPADJ@Z 004061f0 f groups2.obj - 0001:00005220 ?_RemoveSt@GSTB@@IAEXJ@Z 00406220 f groups2.obj - 0001:00005280 ?_SwapBytesRgbst@GSTB@@IAEXXZ 00406280 f groups2.obj - 0001:000052c0 ?_TranslateGrst@GSTB@@IAEXFH@Z 004062c0 f groups2.obj - 0001:00005370 ?FFree@GSTB@@UAEHJ@Z 00406370 f groups2.obj - 0001:000053a0 ?PgstNew@GST@@SGPAV1@JJJ@Z 004063a0 f groups2.obj - 0001:00005410 ?FAddRgch@GST@@UAEHPADJPAXPAJ@Z 00406410 f groups2.obj - 0001:00005440 ?FFindRgch@GST@@UAEHPADJPAJK@Z 00406440 f groups2.obj - 0001:00005510 ?FInsertRgch@GST@@QAEHJPADJPAX@Z 00406510 f groups2.obj - 0001:000055b0 ?Delete@GST@@UAEXJ@Z 004065b0 f groups2.obj - 0001:00005600 ??_GGST@@UAEPAXI@Z 00406600 f groups2.obj - 0001:00005600 ??_EGST@@UAEPAXI@Z 00406600 f groups2.obj - 0001:00005620 ??_EGSTB@@UAEPAXI@Z 00406620 f groups2.obj - 0001:00005620 ??_GGSTB@@UAEPAXI@Z 00406620 f groups2.obj - 0001:00005640 ?FWouldBe@CFL@@SGHJ@Z 00406640 f chunk.obj - 0001:00005660 ?FIs@CFL@@UAEHJ@Z 00406660 f chunk.obj - 0001:00005670 ?Cls@CFL@@UAEJXZ 00406670 f chunk.obj - 0001:00005680 ?FWouldBe@CGE@@SGHJ@Z 00406680 f chunk.obj - 0001:000056a0 ?FIs@CGE@@UAEHJ@Z 004066a0 f chunk.obj - 0001:000056b0 ?Cls@CGE@@UAEJXZ 004066b0 f chunk.obj - 0001:000056c0 ??0CFL@@AAE@XZ 004066c0 f chunk.obj - 0001:000056e0 ??1CFL@@EAE@XZ 004066e0 f chunk.obj - 0001:00005780 ?PcflOpen@CFL@@SGPAV1@PAVFNI@@K@Z 00406780 f chunk.obj - 0001:00005850 ?_GrffilFromGrfcfl@CFL@@CGKK@Z 00406850 f chunk.obj - 0001:00005870 ?PcflCreate@CFL@@SGPAV1@PAVFNI@@K@Z 00406870 f chunk.obj - 0001:00005920 ?PcflCreateTemp@CFL@@SGPAV1@PAVFNI@@@Z 00406920 f chunk.obj - 0001:000059b0 ?PcflFromFni@CFL@@SGPAV1@PAVFNI@@@Z 004069b0 f chunk.obj - 0001:000059f0 ?FSetGrfcfl@CFL@@QAEHKK@Z 004069f0 f chunk.obj - 0001:00005a90 ?Release@CFL@@UAEXXZ 00406a90 f chunk.obj - 0001:00005ab0 ?_TValidIndex@CFL@@AAEHXZ 00406ab0 f chunk.obj - 0001:00005e10 ?_FReadIndex@CFL@@AAEHXZ 00406e10 f chunk.obj - 0001:00006480 ?_ReadFreeMap@CFL@@AAEXXZ 00407480 f chunk.obj - 0001:00006500 ?FSave@CFL@@QAEHKPAVFNI@@@Z 00407500 f chunk.obj - 0001:00006820 ?_FWriteIndex@CFL@@AAEHK@Z 00407820 f chunk.obj - 0001:00006970 ?_FEnsureOnExtra@CFL@@AAEHJPAUFLO@@@Z 00407970 f chunk.obj - 0001:00006a70 ?_GetFlo@CFL@@AAEXJPAUFLO@@@Z 00407a70 f chunk.obj - 0001:00006ad0 ?_GetBlck@CFL@@AAEXJPAVBLCK@@@Z 00407ad0 f chunk.obj - 0001:00006b10 ?FFind@CFL@@QAEHKKPAVBLCK@@@Z 00407b10 f chunk.obj - 0001:00006b70 ?FFindFlo@CFL@@QAEHKKPAUFLO@@@Z 00407b70 f chunk.obj - 0001:00006bc0 ?FPacked@CFL@@QAEHKK@Z 00407bc0 f chunk.obj - 0001:00006c10 ?_FCreateExtra@CFL@@AAEHXZ 00407c10 f chunk.obj - 0001:00006c40 ?_FAllocFlo@CFL@@AAEHJPAUFLO@@H@Z 00407c40 f chunk.obj - 0001:00006d50 ?_FFindCtgCno@CFL@@AAEHKKPAJ@Z 00407d50 f chunk.obj - 0001:00006df0 ?_GetUniqueCno@CFL@@AAEXKPAJPAK@Z 00407df0 f chunk.obj - 0001:00006e70 ?FAdd@CFL@@QAEHJKPAKPAVBLCK@@@Z 00407e70 f chunk.obj - 0001:00006ec0 ?FAddChild@CFL@@QAEHKKKJKPAKPAVBLCK@@@Z 00407ec0 f chunk.obj - 0001:00006f40 ?_FAdd@CFL@@AAEHJKKJPAVBLCK@@@Z 00407f40 f chunk.obj - 0001:00007020 ?FPut@CFL@@QAEHJKKPAVBLCK@@@Z 00408020 f chunk.obj - 0001:00007040 ?FPutPv@CFL@@QAEHPAXJKK@Z 00408040 f chunk.obj - 0001:00007060 ?_FPut@CFL@@AAEHJKKPAVBLCK@@0PAX@Z 00408060 f chunk.obj - 0001:00007270 ?Delete@CFL@@QAEXKK@Z 00408270 f chunk.obj - 0001:00007410 ?CckiRef@CFL@@QAEJKK@Z 00408410 f chunk.obj - 0001:00007460 ?TIsDescendent@CFL@@QAEHKKKK@Z 00408460 f chunk.obj - 0001:00007530 ?DeleteChild@CFL@@QAEXKKKKK@Z 00408530 f chunk.obj - 0001:000075e0 ?_FDecRefCount@CFL@@AAEHJ@Z 004085e0 f chunk.obj - 0001:00007620 ?_DeleteCore@CFL@@AAEXJ@Z 00408620 f chunk.obj - 0001:00007680 ?_FreeFpCb@CFL@@AAEXHJJ@Z 00408680 f chunk.obj - 0001:00007860 ?FAdoptChild@CFL@@QAEHKKKKKH@Z 00408860 f chunk.obj - 0001:000078f0 ?_FAdoptChild@CFL@@AAEHJJKKKH@Z 004088f0 f chunk.obj - 0001:00007a10 ?FGetCkiCtg@CFL@@QAEHKJPAUCKI@@PAJPAVBLCK@@@Z 00408a10 f chunk.obj - 0001:00007ac0 ?Ckid@CFL@@QAEJKK@Z 00408ac0 f chunk.obj - 0001:00007b10 ?FGetKid@CFL@@QAEHKKJPAUKID@@@Z 00408b10 f chunk.obj - 0001:00007b90 ?FGetKidChidCtg@CFL@@QAEHKKKKPAUKID@@@Z 00408b90 f chunk.obj - 0001:00007bd0 ?_FFindChidCtg@CFL@@AAEHKKKKPAUKID@@@Z 00408bd0 f chunk.obj - 0001:00007cb0 ?_FFindChild@CFL@@AAEHJKKKPAJ@Z 00408cb0 f chunk.obj - 0001:00007d70 ?_FSetRti@CFL@@AAEHKKJ@Z 00408d70 f chunk.obj - 0001:00007e40 ?_FFindRtie@CFL@@AAEHKKPAURTIE@1@PAJ@Z 00408e40 f chunk.obj - 0001:00007f10 ??0CGE@@QAE@XZ 00408f10 f chunk.obj - 0001:00007f30 ??1CGE@@UAE@XZ 00408f30 f chunk.obj - 0001:00007f60 ?Init@CGE@@QAEXPAVCFL@@KK@Z 00408f60 f chunk.obj - 0001:00007fa0 ?FNextKid@CGE@@QAEHPAUKID@@PAUCKI@@PAKK@Z 00408fa0 f chunk.obj - 0001:00008180 ??_GCFL@@EAEPAXI@Z 00409180 f chunk.obj - 0001:00008180 ??_ECFL@@EAEPAXI@Z 00409180 f chunk.obj - 0001:000081a0 ??_GCGE@@UAEPAXI@Z 004091a0 f chunk.obj - 0001:000081a0 ??_ECGE@@UAEPAXI@Z 004091a0 f chunk.obj - 0001:000081c0 ?FWouldBe@CODM@@SGHJ@Z 004091c0 f codec.obj - 0001:000081e0 ?FIs@CODM@@UAEHJ@Z 004091e0 f codec.obj - 0001:000081f0 ?Cls@CODM@@UAEJXZ 004091f0 f codec.obj - 0001:00008200 ?FWouldBe@CODC@@SGHJ@Z 00409200 f codec.obj - 0001:00008220 ??0CODM@@QAE@PAVCODC@@J@Z 00409220 f codec.obj - 0001:00008260 ??1CODM@@UAE@XZ 00409260 f codec.obj - 0001:000082e0 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 004092e0 f codec.obj - 0001:00008330 ?FCanDo@CODM@@UAEHJH@Z 00409330 f codec.obj - 0001:00008360 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00409360 f codec.obj - 0001:000083e0 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 004093e0 f codec.obj - 0001:00008490 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00409490 f codec.obj - 0001:000085b0 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 004095b0 f codec.obj - 0001:000087c0 ??_GCODM@@UAEPAXI@Z 004097c0 f codec.obj - 0001:000087c0 ??_ECODM@@UAEPAXI@Z 004097c0 f codec.obj - 0001:000087e0 ?FWouldBe@KCDC@@SGHJ@Z 004097e0 f codkauai.obj - 0001:00008800 ?FIs@KCDC@@UAEHJ@Z 00409800 f codkauai.obj - 0001:00008810 ?Cls@KCDC@@UAEJXZ 00409810 f codkauai.obj - 0001:00008820 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00409820 f codkauai.obj - 0001:000088a0 ?Set@BITA@@QAEXPAXJ@Z 004098a0 f codkauai.obj - 0001:000088c0 ?FWriteBits@BITA@@QAEHKJ@Z 004098c0 f codkauai.obj - 0001:00008980 ?FWriteLogEncoded@BITA@@QAEHK@Z 00409980 f codkauai.obj - 0001:000089d0 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 004099d0 f codkauai.obj - 0001:00008ce0 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00409ce0 f codkauai.obj - 0001:0000c610 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040d610 f codkauai.obj - 0001:0000c9f0 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 0040d9f0 f codkauai.obj - 0001:0000ef80 ?FWouldBe@BACO@@SGHJ@Z 0040ff80 f crf.obj - 0001:0000efa0 ?FIs@BACO@@UAEHJ@Z 0040ffa0 f crf.obj - 0001:0000efb0 ?Cls@BACO@@UAEJXZ 0040ffb0 f crf.obj - 0001:0000efc0 ?FWouldBe@GHQ@@SGHJ@Z 0040ffc0 f crf.obj - 0001:0000efe0 ?FIs@GHQ@@UAEHJ@Z 0040ffe0 f crf.obj - 0001:0000eff0 ?Cls@GHQ@@UAEJXZ 0040fff0 f crf.obj - 0001:0000f000 ?FWouldBe@RCA@@SGHJ@Z 00410000 f crf.obj - 0001:0000f020 ?FWouldBe@CRF@@SGHJ@Z 00410020 f crf.obj - 0001:0000f040 ?FIs@CRF@@UAEHJ@Z 00410040 f crf.obj - 0001:0000f050 ?Cls@CRF@@UAEJXZ 00410050 f crf.obj - 0001:0000f060 ??0BACO@@IAE@XZ 00410060 f crf.obj - 0001:0000f090 ??1BACO@@MAE@XZ 00410090 f crf.obj - 0001:0000f0c0 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 004100c0 f crf.obj - 0001:0000f100 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 00410100 f crf.obj - 0001:0000f110 ?CbOnFile@BACO@@UAEJXZ 00410110 f crf.obj - 0001:0000f120 ?Release@BACO@@UAEXXZ 00410120 f crf.obj - 0001:0000f170 ?Detach@BACO@@UAEXXZ 00410170 f crf.obj - 0001:0000f1b0 ?SetCrep@BACO@@UAEXJ@Z 004101b0 f crf.obj - 0001:0000f1e0 ??0CRF@@IAE@PAVCFL@@J@Z 004101e0 f crf.obj - 0001:0000f210 ??1CRF@@UAE@XZ 00410210 f crf.obj - 0001:0000f2a0 ?PcrfNew@CRF@@SGPAV1@PAVCFL@@J@Z 004102a0 f crf.obj - 0001:0000f2f0 ?TLoad@CRF@@UAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZKJ@Z 004102f0 f crf.obj - 0001:0000f5d0 ?PbacoFetch@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZPAHK@Z 004105d0 f crf.obj - 0001:0000f7c0 ?PbacoFind@CRF@@UAEPAVBACO@@KKP6GHPAV1@KKPAVBLCK@@PAPAV2@PAJ@ZK@Z 004107c0 f crf.obj - 0001:0000f830 ?FSetCrep@CRF@@UAEHJKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@ZK@Z 00410830 f crf.obj - 0001:0000f8b0 ?PcrfFindChunk@CRF@@UAEPAV1@KKK@Z 004108b0 f crf.obj - 0001:0000f900 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 00410900 f crf.obj - 0001:0000f950 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00410950 f crf.obj - 0001:0000f9d0 ?_FFindCre@CRF@@IAEHKKP6GHPAV1@KKPAVBLCK@@PAPAVBACO@@PAJ@Z3@Z 004109d0 f crf.obj - 0001:0000fa80 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00410a80 f crf.obj - 0001:0000fbb0 ?_FPurgeCb@CRF@@IAEHJJ@Z 00410bb0 f crf.obj - 0001:0000fcc0 ?FReadGhq@GHQ@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00410cc0 f crf.obj - 0001:0000fd80 ??_GGHQ@@UAEPAXI@Z 00410d80 f crf.obj - 0001:0000fd80 ??_EGHQ@@UAEPAXI@Z 00410d80 f crf.obj - 0001:0000fdb0 ??_GBACO@@MAEPAXI@Z 00410db0 f crf.obj - 0001:0000fdb0 ??_EBACO@@MAEPAXI@Z 00410db0 f crf.obj - 0001:0000fdd0 ??_ECRF@@UAEPAXI@Z 00410dd0 f crf.obj - 0001:0000fdd0 ??_GCRF@@UAEPAXI@Z 00410dd0 f crf.obj - 0001:0000fe00 ?FWouldBe@FIL@@SGHJ@Z 00410e00 f file.obj - 0001:0000fe20 ?FIs@FIL@@UAEHJ@Z 00410e20 f file.obj - 0001:0000fe30 ?Cls@FIL@@UAEJXZ 00410e30 f file.obj - 0001:0000fe40 ?FWouldBe@BLCK@@SGHJ@Z 00410e40 f file.obj - 0001:0000fe60 ?FIs@BLCK@@UAEHJ@Z 00410e60 f file.obj - 0001:0000fe70 ?Cls@BLCK@@UAEJXZ 00410e70 f file.obj - 0001:0000fe80 ??0FIL@@IAE@PAVFNI@@K@Z 00410e80 f file.obj - 0001:0000fef0 ??1FIL@@MAE@XZ 00410ef0 f file.obj - 0001:0000ff40 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00410f40 f file.obj - 0001:0000ffe0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00410fe0 f file.obj - 0001:00010070 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00411070 f file.obj - 0001:00010100 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00411100 f file.obj - 0001:00010160 ?FSetGrffil@FIL@@QAEHKK@Z 00411160 f file.obj - 0001:000101f0 ?Release@FIL@@UAEXXZ 004111f0 f file.obj - 0001:00010220 ?SetTemp@FIL@@QAEXH@Z 00411220 f file.obj - 0001:00010260 ?FSetFni@FIL@@QAEHPAVFNI@@@Z 00411260 f file.obj - 0001:000102d0 ?ShutDown@FIL@@SGXXZ 004112d0 f file.obj - 0001:00010340 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00411340 f file.obj - 0001:00010390 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00411390 f file.obj - 0001:000103e0 ?FCopy@FLO@@QAEHPAU1@@Z 004113e0 f file.obj - 0001:000104b0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 004114b0 f file.obj - 0001:00010530 ?FWriteHq@FLO@@QAEHPAXJ@Z 00411530 f file.obj - 0001:00010580 ?FTranslate@FLO@@QAEHF@Z 00411580 f file.obj - 0001:00010890 ??0BLCK@@QAE@PAUFLO@@H@Z 00411890 f file.obj - 0001:000108e0 ??0BLCK@@QAE@PAVFIL@@JJH@Z 004118e0 f file.obj - 0001:00010920 ??0BLCK@@QAE@XZ 00411920 f file.obj - 0001:00010940 ??1BLCK@@UAE@XZ 00411940 f file.obj - 0001:00010960 ?Set@BLCK@@QAEXPAUFLO@@H@Z 00411960 f file.obj - 0001:000109a0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 004119a0 f file.obj - 0001:000109e0 ?SetHq@BLCK@@QAEXPAPAXH@Z 004119e0 f file.obj - 0001:00010a20 ?Free@BLCK@@QAEXXZ 00411a20 f file.obj - 0001:00010a50 ?HqFree@BLCK@@QAEPAXH@Z 00411a50 f file.obj - 0001:00010b00 ?Cb@BLCK@@QAEJH@Z 00411b00 f file.obj - 0001:00010b20 ?FSetTemp@BLCK@@QAEHJH@Z 00411b20 f file.obj - 0001:00010bb0 ?FMoveMin@BLCK@@QAEHJ@Z 00411bb0 f file.obj - 0001:00010c20 ?FMoveLim@BLCK@@QAEHJ@Z 00411c20 f file.obj - 0001:00010c90 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00411c90 f file.obj - 0001:00010d20 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00411d20 f file.obj - 0001:00010db0 ?FReadHq@BLCK@@QAEHPAPAXJJH@Z 00411db0 f file.obj - 0001:00010e60 ?FWriteHq@BLCK@@QAEHPAXJH@Z 00411e60 f file.obj - 0001:00010ef0 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00411ef0 f file.obj - 0001:00010f70 ?FWriteToBlck@BLCK@@QAEHPAV1@H@Z 00411f70 f file.obj - 0001:00011010 ?FGetFlo@BLCK@@QAEHPAUFLO@@H@Z 00412010 f file.obj - 0001:000110f0 ?FUnpackData@BLCK@@QAEHXZ 004120f0 f file.obj - 0001:000111f0 ?CbMem@BLCK@@QAEJXZ 004121f0 f file.obj - 0001:00011240 ??_EFIL@@MAEPAXI@Z 00412240 f file.obj - 0001:00011240 ??_GFIL@@MAEPAXI@Z 00412240 f file.obj - 0001:00011260 ??_EBLCK@@UAEPAXI@Z 00412260 f file.obj - 0001:00011260 ??_GBLCK@@UAEPAXI@Z 00412260 f file.obj - 0001:000112d0 ?_FOpen@FIL@@IAEHHK@Z 004122d0 f filewin.obj - 0001:000113d0 ?_Close@FIL@@IAEXH@Z 004123d0 f filewin.obj - 0001:00011440 ?Flush@FIL@@QAEXXZ 00412440 f filewin.obj - 0001:00011470 ?_SetFpPos@FIL@@IAEXJ@Z 00412470 f filewin.obj - 0001:000114d0 ?FSetFpMac@FIL@@QAEHJ@Z 004124d0 f filewin.obj - 0001:00011560 ?FpMac@FIL@@QAEJXZ 00412560 f filewin.obj - 0001:000115f0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 004125f0 f filewin.obj - 0001:000116a0 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 004126a0 f filewin.obj - 0001:00011760 ?FSwapNames@FIL@@QAEHPAV1@@Z 00412760 f filewin.obj - 0001:00011940 ?FRename@FIL@@QAEHPAVFNI@@@Z 00412940 f filewin.obj - 0001:00011a00 ?FWouldBe@FNI@@SGHJ@Z 00412a00 f fniwin.obj - 0001:00011a20 ?FIs@FNI@@UAEHJ@Z 00412a20 f fniwin.obj - 0001:00011a30 ?Cls@FNI@@UAEJXZ 00412a30 f fniwin.obj - 0001:00011a40 ?SetNil@FNI@@QAEXXZ 00412a40 f fniwin.obj - 0001:00011a50 ??0FNI@@QAE@XZ 00412a50 f fniwin.obj - 0001:00011a80 ?FGetOpen@FNI@@QAEHPADPAUHWND__@@@Z 00412a80 f fniwin.obj - 0001:00011b40 ?FGetSave@FNI@@QAEHPADPAUHWND__@@@Z 00412b40 f fniwin.obj - 0001:00011c00 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 00412c00 f fniwin.obj - 0001:00011d50 ?FGetUnique@FNI@@QAEHJ@Z 00412d50 f fniwin.obj - 0001:00011e60 ?FGetTemp@FNI@@QAEHXZ 00412e60 f fniwin.obj - 0001:00011f00 ?Ftg@FNI@@QAEJXZ 00412f00 f fniwin.obj - 0001:00011f10 ?Grfvk@FNI@@QAEKXZ 00412f10 f fniwin.obj - 0001:00012020 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 00413020 f fniwin.obj - 0001:00012090 ?FChangeFtg@FNI@@QAEHJ@Z 00413090 f fniwin.obj - 0001:00012140 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 00413140 f fniwin.obj - 0001:00012180 ?GetStnPath@FNI@@QAEXPAVSTN@@@Z 00413180 f fniwin.obj - 0001:00012190 ?TExists@FNI@@QAEHXZ 00413190 f fniwin.obj - 0001:00012290 ?FDelete@FNI@@QAEHXZ 00413290 f fniwin.obj - 0001:000122c0 ?FRename@FNI@@QAEHPAV1@@Z 004132c0 f fniwin.obj - 0001:00012310 ?FEqual@FNI@@QAEHPAV1@@Z 00413310 f fniwin.obj - 0001:00012330 ?_CchExt@FNI@@AAEJXZ 00413330 f fniwin.obj - 0001:00012370 ?_SetFtgFromName@FNI@@AAEXXZ 00413370 f fniwin.obj - 0001:000123f0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 004133f0 f fniwin.obj - 0001:00012540 ??_EFNI@@UAEPAXI@Z 00413540 f fniwin.obj - 0001:00012540 ??_GFNI@@UAEPAXI@Z 00413540 f fniwin.obj - 0001:00012560 ?FWouldBe@APPB@@SGHJ@Z 00413560 f appb.obj - 0001:00012580 ?FIs@APPB@@UAEHJ@Z 00413580 f appb.obj - 0001:00012590 ?Cls@APPB@@UAEJXZ 00413590 f appb.obj - 0001:000125a0 ??0APPB@@QAE@XZ 004135a0 f appb.obj - 0001:000125d0 ??1APPB@@UAE@XZ 004135d0 f appb.obj - 0001:000125f0 ?Run@APPB@@UAEXKKJ@Z 004135f0 f appb.obj - 0001:00012620 ?Quit@APPB@@UAEXH@Z 00413620 f appb.obj - 0001:00012660 ?GetStnAppName@APPB@@UAEXPAVSTN@@@Z 00413660 f appb.obj - 0001:00012680 ?SetCurs@APPB@@UAEXPAVCURS@@H@Z 00413680 f appb.obj - 0001:000126e0 ?SetCursCno@APPB@@UAEXPAVRCA@@KH@Z 004136e0 f appb.obj - 0001:00012730 ?RefreshCurs@APPB@@UAEXXZ 00413730 f appb.obj - 0001:00012770 ?BeginLongOp@APPB@@UAEXXZ 00413770 f appb.obj - 0001:000127a0 ?EndLongOp@APPB@@UAEXH@Z 004137a0 f appb.obj - 0001:000127d0 ?GrfcustCur@APPB@@UAEKH@Z 004137d0 f appb.obj - 0001:00012830 ?ModifyGrfcust@APPB@@UAEXKK@Z 00413830 f appb.obj - 0001:00012850 ?HideCurs@APPB@@UAEXXZ 00413850 f appb.obj - 0001:00012860 ?ShowCurs@APPB@@UAEXXZ 00413860 f appb.obj - 0001:00012870 ?PositionCurs@APPB@@UAEXJJ@Z 00413870 f appb.obj - 0001:00012890 ?OnnDefVariable@APPB@@UAEJXZ 00413890 f appb.obj - 0001:000128f0 ?OnnDefFixed@APPB@@UAEJXZ 004138f0 f appb.obj - 0001:00012970 ?DypTextDef@APPB@@UAEJXZ 00413970 f appb.obj - 0001:00012980 ?FCmdQuit@APPB@@UAEHPAUCMD@@@Z 00413980 f appb.obj - 0001:00012990 ?FCmdShowClipboard@APPB@@UAEHPAUCMD@@@Z 00413990 f appb.obj - 0001:000129b0 ?FCmdIdle@APPB@@UAEHPAUCMD@@@Z 004139b0 f appb.obj - 0001:00012b60 ?_TakeDownToolTip@APPB@@IAEXXZ 00413b60 f appb.obj - 0001:00012b90 ?_EnsureToolTip@APPB@@IAEXXZ 00413b90 f appb.obj - 0001:00012c10 ?ResetToolTip@APPB@@UAEXXZ 00413c10 f appb.obj - 0001:00012c30 ?FEnableAppCmd@APPB@@UAEHPAUCMD@@PAK@Z 00413c30 f appb.obj - 0001:00012ca0 ?FCmdChooseWnd@APPB@@UAEHPAUCMD@@@Z 00413ca0 f appb.obj - 0001:00012cc0 ?_FInit@APPB@@MAEHKKJ@Z 00413cc0 f appb.obj - 0001:00012d90 ?_FInitSound@APPB@@MAEHJ@Z 00413d90 f appb.obj - 0001:00012e20 ?_FInitMenu@APPB@@MAEHXZ 00413e20 f appb.obj - 0001:00012e40 ?_Loop@APPB@@MAEXXZ 00413e40 f appb.obj - 0001:00012ee0 ?_CleanUp@APPB@@MAEXXZ 00413ee0 f appb.obj - 0001:00012f30 ?_Activate@APPB@@MAEXH@Z 00413f30 f appb.obj - 0001:00012f70 ?TopOfLoop@APPB@@UAEXXZ 00413f70 f appb.obj - 0001:00012f90 ?UpdateHwnd@APPB@@UAEXPAUHWND__@@PAVRC@@K@Z 00413f90 f appb.obj - 0001:00013040 ?PcmhFromHid@APPB@@UAEPAVCMH@@J@Z 00414040 f appb.obj - 0001:00013070 ?BuryCmh@APPB@@UAEXPAVCMH@@@Z 00414070 f appb.obj - 0001:000130f0 ?MarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 004140f0 f appb.obj - 0001:00013110 ?MarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00414110 f appb.obj - 0001:00013130 ?_MarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00414130 f appb.obj - 0001:00013310 ?UnmarkRc@APPB@@UAEXPAVRC@@PAVGOB@@@Z 00414310 f appb.obj - 0001:00013330 ?UnmarkRegn@APPB@@UAEXPAVREGN@@PAVGOB@@@Z 00414330 f appb.obj - 0001:00013350 ?_UnmarkRegnRc@APPB@@IAEXPAVREGN@@PAVRC@@PAVGOB@@@Z 00414350 f appb.obj - 0001:000134d0 ?FGetMarkedRc@APPB@@UAEHPAUHWND__@@PAVRC@@@Z 004144d0 f appb.obj - 0001:00013540 ?InvalMarked@APPB@@UAEXPAUHWND__@@@Z 00414540 f appb.obj - 0001:00013600 ?UpdateMarked@APPB@@UAEXXZ 00414600 f appb.obj - 0001:00013670 ?_FastUpdate@APPB@@MAEXPAVGOB@@PAVREGN@@KPAVGPT@@@Z 00414670 f appb.obj - 0001:000137a0 ?SetGft@APPB@@UAEXJJKPAVGL@@VACR@@@Z 004147a0 f appb.obj - 0001:000137f0 ?_CopyPixels@APPB@@MAEXPAVGNV@@PAVRC@@01@Z 004147f0 f appb.obj - 0001:00013950 ?_PgptEnsure@APPB@@MAEPAVGPT@@PAVRC@@@Z 00414950 f appb.obj - 0001:00013a20 ?_FFindProp@APPB@@IAEHJPAUPROP@1@PAJ@Z 00414a20 f appb.obj - 0001:00013ad0 ?_FSetProp@APPB@@IAEHJJ@Z 00414ad0 f appb.obj - 0001:00013b60 ?FSetProp@APPB@@UAEHJJ@Z 00414b60 f appb.obj - 0001:00013d30 ?FGetProp@APPB@@UAEHJPAJ@Z 00414d30 f appb.obj - 0001:00013de0 ?FImportClip@APPB@@UAEHJPAXJPAPAVDOCB@@PAH@Z 00414de0 f appb.obj - 0001:00013ed0 ?FPushModal@APPB@@UAEHPAVCEX@@@Z 00414ed0 f appb.obj - 0001:00014010 ?FModalLoop@APPB@@UAEHPAJ@Z 00415010 f appb.obj - 0001:00014050 ?EndModal@APPB@@UAEXJ@Z 00415050 f appb.obj - 0001:00014060 ?PopModal@APPB@@UAEXXZ 00415060 f appb.obj - 0001:00014110 ?FCmdEndModal@APPB@@UAEHPAUCMD@@@Z 00415110 f appb.obj - 0001:00014140 ?BadModalCmd@APPB@@UAEXPAUCMD@@@Z 00415140 f appb.obj - 0001:00014190 ?TQuerySaveDoc@APPB@@UAEHPAVDOCB@@H@Z 00415190 f appb.obj - 0001:00014210 ?FAllowScreenSaver@APPB@@UAEHXZ 00415210 f appb.obj - 0001:00014230 ??_GAPPB@@UAEPAXI@Z 00415230 f appb.obj - 0001:00014230 ??_EAPPB@@UAEPAXI@Z 00415230 f appb.obj - 0001:000142e0 ??_9@$BMA@A 004152e0 f appb.obj - 0001:000142f0 ??_9@$BME@A 004152f0 f appb.obj - 0001:00014300 ??_9@$BMI@A 00415300 f appb.obj - 0001:00014310 ??_9@$BBBE@A 00415310 f appb.obj - 0001:00014320 ??_9@$BLI@A 00415320 f appb.obj - 0001:00014330 ??_9@$BLM@A 00415330 f appb.obj - 0001:00014340 ?Pcmm@APPB@@MAEPAUCMM@CMH@@XZ 00415340 f appb.obj - 0001:00014350 ?FWouldBe@CLOK@@SGHJ@Z 00415350 f clok.obj - 0001:00014370 ?FIs@CLOK@@UAEHJ@Z 00415370 f clok.obj - 0001:00014380 ?Cls@CLOK@@UAEJXZ 00415380 f clok.obj - 0001:000143a0 ??0CLOK@@QAE@JK@Z 004153a0 f clok.obj - 0001:000143f0 ??1CLOK@@UAE@XZ 004153f0 f clok.obj - 0001:00014440 ?PclokFromHid@CLOK@@SGPAV1@J@Z 00415440 f clok.obj - 0001:00014460 ?BuryCmh@CLOK@@SGXPAVCMH@@@Z 00415460 f clok.obj - 0001:00014490 ?RemoveCmh@CLOK@@QAEXPAVCMH@@@Z 00415490 f clok.obj - 0001:000144d0 ?Start@CLOK@@QAEXK@Z 004154d0 f clok.obj - 0001:00014530 ?TimCur@CLOK@@QAEKH@Z 00415530 f clok.obj - 0001:00014570 ?FSetAlarm@CLOK@@QAEHJPAVCMH@@JH@Z 00415570 f clok.obj - 0001:00014640 ?FCmdAll@CLOK@@UAEHPAUCMD@@@Z 00415640 f clok.obj - 0001:000147f0 ??_GCLOK@@UAEPAXI@Z 004157f0 f clok.obj - 0001:000147f0 ??_ECLOK@@UAEPAXI@Z 004157f0 f clok.obj - 0001:00014810 ??_9@$BCE@A 00415810 f clok.obj - 0001:000148b0 ?Pcmm@CLOK@@MAEPAUCMM@CMH@@XZ 004158b0 f clok.obj - 0001:000148c0 ?FWouldBe@CMH@@SGHJ@Z 004158c0 f cmd.obj - 0001:000148e0 ?FIs@CMH@@UAEHJ@Z 004158e0 f cmd.obj - 0001:000148f0 ?Cls@CMH@@UAEJXZ 004158f0 f cmd.obj - 0001:00014900 ?FWouldBe@CEX@@SGHJ@Z 00415900 f cmd.obj - 0001:00014920 ?FIs@CEX@@UAEHJ@Z 00415920 f cmd.obj - 0001:00014930 ?Cls@CEX@@UAEJXZ 00415930 f cmd.obj - 0001:00014940 ?HidUnique@CMH@@SGJJ@Z 00415940 f cmd.obj - 0001:000149a0 ??0CMH@@QAE@J@Z 004159a0 f cmd.obj - 0001:000149c0 ??1CMH@@UAE@XZ 004159c0 f cmd.obj - 0001:000149f0 ?_FGetCmme@CMH@@MAEHJKPAUCMME@1@@Z 004159f0 f cmd.obj - 0001:00014a90 ?FDoCmd@CMH@@UAEHPAUCMD@@@Z 00415a90 f cmd.obj - 0001:00014b00 ?FEnableCmd@CMH@@UAEHPAUCMD@@PAK@Z 00415b00 f cmd.obj - 0001:00014ba0 ??0CEX@@IAE@XZ 00415ba0 f cmd.obj - 0001:00014bc0 ??1CEX@@UAE@XZ 00415bc0 f cmd.obj - 0001:00014c80 ?PcexNew@CEX@@SGPAV1@JJ@Z 00415c80 f cmd.obj - 0001:00014cd0 ?_FInit@CEX@@MAEHJJ@Z 00415cd0 f cmd.obj - 0001:00014d10 ?Record@CEX@@QAEXPAVCFL@@@Z 00415d10 f cmd.obj - 0001:00014d90 ?StopRecording@CEX@@QAEXXZ 00415d90 f cmd.obj - 0001:00014ee0 ?RecordCmd@CEX@@QAEXPAUCMD@@@Z 00415ee0 f cmd.obj - 0001:000150b0 ?Play@CEX@@QAEXPAVCFL@@K@Z 004160b0 f cmd.obj - 0001:00015170 ?StopPlaying@CEX@@QAEXXZ 00416170 f cmd.obj - 0001:000151e0 ?_FReadCmd@CEX@@IAEHPAUCMD@@@Z 004161e0 f cmd.obj - 0001:00015360 ?_FCmhOk@CEX@@MAEHPAVCMH@@@Z 00416360 f cmd.obj - 0001:000153b0 ?FAddCmh@CEX@@UAEHPAVCMH@@JK@Z 004163b0 f cmd.obj - 0001:00015450 ?RemoveCmh@CEX@@UAEXPAVCMH@@J@Z 00416450 f cmd.obj - 0001:000154e0 ?BuryCmh@CEX@@UAEXPAVCMH@@@Z 004164e0 f cmd.obj - 0001:000155e0 ?_FFindCmhl@CEX@@MAEHJPAJ@Z 004165e0 f cmd.obj - 0001:00015650 ?EnqueueCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 00416650 f cmd.obj - 0001:000156a0 ?PushCid@CEX@@UAEXJPAVCMH@@PAVGG@@JJJJ@Z 004166a0 f cmd.obj - 0001:000156f0 ?EnqueueCmd@CEX@@UAEXPAUCMD@@@Z 004166f0 f cmd.obj - 0001:00015720 ?PushCmd@CEX@@UAEXPAUCMD@@@Z 00416720 f cmd.obj - 0001:00015750 ?FCidIn@CEX@@UAEHJ@Z 00416750 f cmd.obj - 0001:000157a0 ?FlushCid@CEX@@UAEXJ@Z 004167a0 f cmd.obj - 0001:00015810 ?_TGetNextCmd@CEX@@MAEHXZ 00416810 f cmd.obj - 0001:00015930 ?_FSendCmd@CEX@@MAEHPAVCMH@@@Z 00416930 f cmd.obj - 0001:00015960 ?_CleanUpCmd@CEX@@MAEXXZ 00416960 f cmd.obj - 0001:000159e0 ?FDispatchNextCmd@CEX@@UAEHXZ 004169e0 f cmd.obj - 0001:00015ac0 ?_FEnableCmd@CEX@@MAEHPAVCMH@@PAUCMD@@PAK@Z 00416ac0 f cmd.obj - 0001:00015af0 ?GrfedsForCmd@CEX@@UAEHPAUCMD@@@Z 00416af0 f cmd.obj - 0001:00015bb0 ?GrfedsForCid@CEX@@UAEHJPAVCMH@@PAVGG@@JJJJ@Z 00416bb0 f cmd.obj - 0001:00015c00 ?FGetNextKey@CEX@@UAEHPAUCMD@@@Z 00416c00 f cmd.obj - 0001:00015c60 ?TrackMouse@CEX@@UAEXPAVGOB@@@Z 00416c60 f cmd.obj - 0001:00015c80 ?EndMouseTracking@CEX@@UAEXXZ 00416c80 f cmd.obj - 0001:00015cc0 ?PgobTracking@CEX@@UAEPAVGOB@@XZ 00416cc0 f cmd.obj - 0001:00015cd0 ?Suspend@CEX@@UAEXH@Z 00416cd0 f cmd.obj - 0001:00015d20 ?SetModalGob@CEX@@UAEXPAVGOB@@@Z 00416d20 f cmd.obj - 0001:00015d40 ??_GCMH@@UAEPAXI@Z 00416d40 f cmd.obj - 0001:00015d40 ??_ECMH@@UAEPAXI@Z 00416d40 f cmd.obj - 0001:00015d60 ??_ECEX@@UAEPAXI@Z 00416d60 f cmd.obj - 0001:00015d60 ??_GCEX@@UAEPAXI@Z 00416d60 f cmd.obj - 0001:00015e10 ?Pcmm@CMH@@MAEPAUCMM@1@XZ 00416e10 f cmd.obj - 0001:00015e20 ?FWouldBe@CURS@@SGHJ@Z 00416e20 f cursor.obj - 0001:00015e40 ?FIs@CURS@@UAEHJ@Z 00416e40 f cursor.obj - 0001:00015e50 ?Cls@CURS@@UAEJXZ 00416e50 f cursor.obj - 0001:00015e60 ??1CURS@@MAE@XZ 00416e60 f cursor.obj - 0001:00015e80 ?FReadCurs@CURS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 00416e80 f cursor.obj - 0001:000161c0 ?Set@CURS@@QAEXXZ 004171c0 f cursor.obj - 0001:000161e0 ??_GCURS@@MAEPAXI@Z 004171e0 f cursor.obj - 0001:000161e0 ??_ECURS@@MAEPAXI@Z 004171e0 f cursor.obj - 0001:000162a0 ?FWouldBe@GNV@@SGHJ@Z 004172a0 f gfx.obj - 0001:000162c0 ?FIs@GNV@@UAEHJ@Z 004172c0 f gfx.obj - 0001:000162d0 ?Cls@GNV@@UAEJXZ 004172d0 f gfx.obj - 0001:000162e0 ?FWouldBe@GPT@@SGHJ@Z 004172e0 f gfx.obj - 0001:00016300 ?FIs@GPT@@UAEHJ@Z 00417300 f gfx.obj - 0001:00016310 ?Cls@GPT@@UAEJXZ 00417310 f gfx.obj - 0001:00016320 ?FWouldBe@NTL@@SGHJ@Z 00417320 f gfx.obj - 0001:00016340 ?FIs@NTL@@UAEHJ@Z 00417340 f gfx.obj - 0001:00016350 ?Cls@NTL@@UAEJXZ 00417350 f gfx.obj - 0001:00016360 ?FWouldBe@OGN@@SGHJ@Z 00417360 f gfx.obj - 0001:00016380 ?FIs@OGN@@UAEHJ@Z 00417380 f gfx.obj - 0001:00016390 ?Cls@OGN@@UAEJXZ 00417390 f gfx.obj - 0001:000163a0 ?SetFromLw@ACR@@QAEXJ@Z 004173a0 f gfx.obj - 0001:000163b0 ?LwGet@ACR@@QBEJXZ 004173b0 f gfx.obj - 0001:000163c0 ?GetClr@ACR@@QAEXPAUCLR@@@Z 004173c0 f gfx.obj - 0001:000163e0 ?MoveOrigin@APT@@QAEXJJ@Z 004173e0 f gfx.obj - 0001:00016450 ??0GNV@@QAE@PAVGPT@@@Z 00417450 f gfx.obj - 0001:00016490 ??0GNV@@QAE@PAVGOB@@@Z 00417490 f gfx.obj - 0001:000164d0 ??0GNV@@QAE@PAVGOB@@PAVGPT@@@Z 004174d0 f gfx.obj - 0001:00016510 ??1GNV@@UAE@XZ 00417510 f gfx.obj - 0001:00016540 ?_Init@GNV@@AAEXPAVGPT@@@Z 00417540 f gfx.obj - 0001:000165f0 ?SetGobRc@GNV@@QAEXPAVGOB@@@Z 004175f0 f gfx.obj - 0001:00016660 ?FillRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00417660 f gfx.obj - 0001:000166d0 ?FillRc@GNV@@QAEXPAVRC@@VACR@@@Z 004176d0 f gfx.obj - 0001:00016710 ?FrameRcApt@GNV@@QAEXPAVRC@@PAUAPT@@VACR@@2@Z 00417710 f gfx.obj - 0001:00016790 ?FrameRc@GNV@@QAEXPAVRC@@VACR@@@Z 00417790 f gfx.obj - 0001:000167e0 ?HiliteRc@GNV@@QAEXPAVRC@@VACR@@@Z 004177e0 f gfx.obj - 0001:00016820 ?FillOval@GNV@@QAEXPAVRC@@VACR@@@Z 00417820 f gfx.obj - 0001:00016860 ?FrameOval@GNV@@QAEXPAVRC@@VACR@@@Z 00417860 f gfx.obj - 0001:000168b0 ?LineApt@GNV@@QAEXJJJJPAUAPT@@VACR@@1@Z 004178b0 f gfx.obj - 0001:00016960 ?FrameOgnApt@GNV@@QAEXPAVOGN@@PAUAPT@@VACR@@2@Z 00417960 f gfx.obj - 0001:00016a10 ?FrameOgn@GNV@@QAEXPAVOGN@@VACR@@@Z 00417a10 f gfx.obj - 0001:00016a90 ?FramePolyLineApt@GNV@@QAEXPAVOGN@@PAUAPT@@VACR@@2@Z 00417a90 f gfx.obj - 0001:00016b40 ?_HqolyCreate@GNV@@AAEPAXPAVOGN@@K@Z 00417b40 f gfx.obj - 0001:00016c30 ?_HqolyFrame@GNV@@AAEPAXPAVOGN@@K@Z 00417c30 f gfx.obj - 0001:00016cd0 ??0PT@@QAE@XZ 00417cd0 f gfx.obj - 0001:00016ce0 ?ScrollRc@GNV@@QAEXPAVRC@@JJ00@Z 00417ce0 f gfx.obj - 0001:00016db0 ?GetBadRcForScroll@GNV@@SGXPAVRC@@JJ00@Z 00417db0 f gfx.obj - 0001:00016eb0 ?GetRcSrc@GNV@@QAEXPAVRC@@@Z 00417eb0 f gfx.obj - 0001:00016ee0 ?SetRcSrc@GNV@@QAEXPAVRC@@@Z 00417ee0 f gfx.obj - 0001:00016f20 ?SetRcDst@GNV@@QAEXPAVRC@@@Z 00417f20 f gfx.obj - 0001:00016fe0 ?SetRcVis@GNV@@QAEXPAVRC@@@Z 00417fe0 f gfx.obj - 0001:00017080 ?IntersectRcVis@GNV@@QAEXPAVRC@@@Z 00418080 f gfx.obj - 0001:00017100 ?ClipRc@GNV@@QAEXPAVRC@@@Z 00418100 f gfx.obj - 0001:000171e0 ?SetPenSize@GNV@@QAEXJJ@Z 004181e0 f gfx.obj - 0001:00017220 ?SetFont@GNV@@QAEXJKJJJ@Z 00418220 f gfx.obj - 0001:00017260 ?SetFontAlign@GNV@@QAEXJJ@Z 00418260 f gfx.obj - 0001:00017280 ?DrawRgch@GNV@@QAEXPADJJJVACR@@1@Z 00418280 f gfx.obj - 0001:000172e0 ?DrawStn@GNV@@QAEXPAVSTN@@JJVACR@@1@Z 004182e0 f gfx.obj - 0001:00017310 ?GetRcFromRgch@GNV@@QAEXPAVRC@@PADJJJ@Z 00418310 f gfx.obj - 0001:00017380 ?CopyPixels@GNV@@QAEXPAV1@PAVRC@@1@Z 00418380 f gfx.obj - 0001:000173e0 ?_FInitPaletteTrans@GNV@@AAEHPAVGL@@PAPAV2@1J@Z 004183e0 f gfx.obj - 0001:00017490 ?_PaletteTrans@GNV@@AAEXPAVGL@@0JJ0PAUCLR@@@Z 00418490 f gfx.obj - 0001:000175f0 ?_FEnsureTempGnv@GNV@@AAEHPAPAV1@PAVRC@@@Z 004185f0 f gfx.obj - 0001:00017680 ?Wipe@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418680 f gfx.obj - 0001:00017930 ?Slide@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418930 f gfx.obj - 0001:00017ce0 ?Dissolve@GNV@@QAEXJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 00418ce0 f gfx.obj - 0001:000184e0 ?Fade@GNV@@QAEXJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 004194e0 f gfx.obj - 0001:000186e0 ?Iris@GNV@@QAEXJJJVACR@@PAV1@PAVRC@@2KPAVGL@@@Z 004196e0 f gfx.obj - 0001:00018c10 ?DrawPic@GNV@@QAEXPAVPIC@@PAVRC@@@Z 00419c10 f gfx.obj - 0001:00018c50 ?DrawMbmp@GNV@@QAEXPAVMBMP@@JJ@Z 00419c50 f gfx.obj - 0001:00018cc0 ?_FMapRcRcs@GNV@@AAEHPAVRC@@PAUtagRECT@@@Z 00419cc0 f gfx.obj - 0001:00018d40 ?_MapPtPts@GNV@@AAEXJJPAUtagPOINT@@@Z 00419d40 f gfx.obj - 0001:00018d90 ?ClipToRegn@GPT@@QAEXPAPAVREGN@@@Z 00419d90 f gfx.obj - 0001:00018df0 ?SetPtBase@GPT@@QAEXPAVPT@@@Z 00419df0 f gfx.obj - 0001:00018e10 ?GetPtBase@GPT@@QAEXPAVPT@@@Z 00419e10 f gfx.obj - 0001:00018e30 ?FInitGfx@@YGHXZ 00419e30 f gfx.obj - 0001:00018e40 ??0NTL@@QAE@XZ 00419e40 f gfx.obj - 0001:00018e60 ??1NTL@@UAE@XZ 00419e60 f gfx.obj - 0001:00018e90 ?GetStn@NTL@@QAEXJPAVSTN@@@Z 00419e90 f gfx.obj - 0001:00018eb0 ?FGetOnn@NTL@@QAEHPAVSTN@@PAJ@Z 00419eb0 f gfx.obj - 0001:00018ed0 ?OnnMapStn@NTL@@QAEJPAVSTN@@F@Z 00419ed0 f gfx.obj - 0001:00018f00 ?OnnMac@NTL@@QAEJXZ 00419f00 f gfx.obj - 0001:00018f10 ?PognTraceRgpt@OGN@@QAEPAV1@PAVPT@@JK@Z 00419f10 f gfx.obj - 0001:00019110 ?_FAddEdge@OGN@@AAEHPAUAEI@1@@Z 0041a110 f gfx.obj - 0001:00019210 ?IptFindLeftmost@@YGJPAVPT@@JJJ@Z 0041a210 f gfx.obj - 0001:000192a0 ?PognNew@OGN@@SGPAV1@J@Z 0041a2a0 f gfx.obj - 0001:00019300 ??0OGN@@IAE@XZ 0041a300 f gfx.obj - 0001:00019320 ?DoubleStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 0041a320 f gfx.obj - 0001:000197e0 ?DoubleVertStretch@@YGXPAEJJPAVRC@@0JJJJ1PAVREGN@@@Z 0041a7e0 f gfx.obj - 0001:00019ca0 ??_GGNV@@UAEPAXI@Z 0041aca0 f gfx.obj - 0001:00019ca0 ??_EGNV@@UAEPAXI@Z 0041aca0 f gfx.obj - 0001:00019cc0 ??_GNTL@@UAEPAXI@Z 0041acc0 f gfx.obj - 0001:00019cc0 ??_ENTL@@UAEPAXI@Z 0041acc0 f gfx.obj - 0001:00019ce0 ??_EOGN@@UAEPAXI@Z 0041ace0 f gfx.obj - 0001:00019ce0 ??_GOGN@@UAEPAXI@Z 0041ace0 f gfx.obj - 0001:00019d00 ?FWouldBe@GOB@@SGHJ@Z 0041ad00 f gob.obj - 0001:00019d20 ?FIs@GOB@@UAEHJ@Z 0041ad20 f gob.obj - 0001:00019d30 ?Cls@GOB@@UAEJXZ 0041ad30 f gob.obj - 0001:00019d40 ?FWouldBe@GTE@@SGHJ@Z 0041ad40 f gob.obj - 0001:00019d60 ?FIs@GTE@@UAEHJ@Z 0041ad60 f gob.obj - 0001:00019d70 ?Cls@GTE@@UAEJXZ 0041ad70 f gob.obj - 0001:00019d80 ?Set@GCB@@QAEXJPAVGOB@@KJPAVRC@@1@Z 0041ad80 f gob.obj - 0001:00019e10 ?ShutDown@GOB@@SGXXZ 0041ae10 f gob.obj - 0001:00019e50 ??0GOB@@QAE@PAUGCB@@@Z 0041ae50 f gob.obj - 0001:00019e80 ?_Init@GOB@@IAEXPAUGCB@@@Z 0041ae80 f gob.obj - 0001:00019f20 ??0GOB@@QAE@J@Z 0041af20 f gob.obj - 0001:00019f80 ?Release@GOB@@UAEXXZ 0041af80 f gob.obj - 0001:00019fd0 ??1GOB@@MAE@XZ 0041afd0 f gob.obj - 0001:0001a070 ?ActivateHwnd@GOB@@SGXPAUHWND__@@H@Z 0041b070 f gob.obj - 0001:0001a110 ?BringToFront@GOB@@QAEXXZ 0041b110 f gob.obj - 0001:0001a120 ?SendBehind@GOB@@QAEXPAV1@@Z 0041b120 f gob.obj - 0001:0001a180 ?InvalRc@GOB@@QAEXPAVRC@@J@Z 0041b180 f gob.obj - 0001:0001a2c0 ?ValidRc@GOB@@QAEXPAVRC@@J@Z 0041b2c0 f gob.obj - 0001:0001a3b0 ?FGetRcInval@GOB@@QAEHPAVRC@@J@Z 0041b3b0 f gob.obj - 0001:0001a520 ?Scroll@GOB@@QAEXPAVRC@@JJJ00@Z 0041b520 f gob.obj - 0001:0001a920 ?DrawTree@GOB@@UAEXPAVGPT@@PAVRC@@1K@Z 0041b920 f gob.obj - 0001:0001acf0 ?DrawTreeRgn@GOB@@UAEXPAVGPT@@PAVRC@@PAVREGN@@K@Z 0041bcf0 f gob.obj - 0001:0001b130 ?Draw@GOB@@UAEXPAVGNV@@PAVRC@@@Z 0041c130 f gob.obj - 0001:0001b140 ?Maximize@GOB@@UAEXXZ 0041c140 f gob.obj - 0001:0001b170 ?SetPos@GOB@@QAEXPAVRC@@0@Z 0041c170 f gob.obj - 0001:0001b1f0 ?GetPos@GOB@@QAEXPAVRC@@0@Z 0041c1f0 f gob.obj - 0001:0001b240 ?SetRcFromHwnd@GOB@@QAEXXZ 0041c240 f gob.obj - 0001:0001b250 ?GetRc@GOB@@QAEXPAVRC@@J@Z 0041c250 f gob.obj - 0001:0001b2b0 ?GetRcVis@GOB@@QAEXPAVRC@@J@Z 0041c2b0 f gob.obj - 0001:0001b310 ?_HwndGetRc@GOB@@IAEPAUHWND__@@PAVRC@@@Z 0041c310 f gob.obj - 0001:0001b370 ?HwndContainer@GOB@@QAEPAUHWND__@@XZ 0041c370 f gob.obj - 0001:0001b390 ?MapPt@GOB@@QAEXPAVPT@@JJ@Z 0041c390 f gob.obj - 0001:0001b3e0 ?_HwndGetDptFromCoo@GOB@@AAEPAUHWND__@@PAVPT@@J@Z 0041c3e0 f gob.obj - 0001:0001b520 ?GetMinMax@GOB@@UAEXPAVRC@@@Z 0041c520 f gob.obj - 0001:0001b540 ?PgobFromPtGlobal@GOB@@SGPAV1@JJPAVPT@@@Z 0041c540 f gob.obj - 0001:0001b5c0 ?PgobFromPt@GOB@@UAEPAV1@JJPAVPT@@@Z 0041c5c0 f gob.obj - 0001:0001b650 ?FPtIn@GOB@@UAEHJJ@Z 0041c650 f gob.obj - 0001:0001b690 ?FPtInBounds@GOB@@UAEHJJ@Z 0041c690 f gob.obj - 0001:0001b6d0 ?MouseDown@GOB@@UAEXJJJK@Z 0041c6d0 f gob.obj - 0001:0001b770 ?_SetRcCur@GOB@@AAEXXZ 0041c770 f gob.obj - 0001:0001b9d0 ?PgobPrevSib@GOB@@QAEPAV1@XZ 0041c9d0 f gob.obj - 0001:0001ba10 ?PgobLastChild@GOB@@QAEPAV1@XZ 0041ca10 f gob.obj - 0001:0001ba30 ?FCreateAndAttachMdi@GOB@@QAEHPAVSTN@@@Z 0041ca30 f gob.obj - 0001:0001ba70 ?PgobFromCls@GOB@@QAEPAV1@J@Z 0041ca70 f gob.obj - 0001:0001bad0 ?PgobParFromCls@GOB@@QAEPAV1@J@Z 0041cad0 f gob.obj - 0001:0001bb00 ?PgobFromHidScr@GOB@@SGPAV1@J@Z 0041cb00 f gob.obj - 0001:0001bb30 ?PgobFromHid@GOB@@QAEPAV1@J@Z 0041cb30 f gob.obj - 0001:0001bb90 ?FCmdCloseWnd@GOB@@UAEHPAUCMD@@@Z 0041cb90 f gob.obj - 0001:0001bba0 ?FCmdTrackMouse@GOB@@UAEHPAUCMD_MOUSE@@@Z 0041cba0 f gob.obj - 0001:0001bbb0 ?FCmdKey@GOB@@UAEHPAUCMD_KEY@@@Z 0041cbb0 f gob.obj - 0001:0001bbc0 ?FCmdBadKey@GOB@@UAEHPAUCMD_BADKEY@@@Z 0041cbc0 f gob.obj - 0001:0001bbd0 ?FCmdSelIdle@GOB@@UAEHPAUCMD@@@Z 0041cbd0 f gob.obj - 0001:0001bbe0 ?FCmdActivateSel@GOB@@UAEHPAUCMD@@@Z 0041cbe0 f gob.obj - 0001:0001bbf0 ?FCmdMouseMove@GOB@@UAEHPAUCMD_MOUSE@@@Z 0041cbf0 f gob.obj - 0001:0001bc10 ?ZpDragRc@GOB@@UAEJPAVRC@@HJJJJJ@Z 0041cc10 f gob.obj - 0001:0001c030 ?Ppglrtvm@GOB@@UAEPAPAVGL@@XZ 0041d030 f gob.obj - 0001:0001c040 ?FEnsureToolTip@GOB@@UAEHPAPAV1@JJ@Z 0041d040 f gob.obj - 0001:0001c050 ?LwState@GOB@@UAEJXZ 0041d050 f gob.obj - 0001:0001c060 ??0GTE@@QAE@XZ 0041d060 f gob.obj - 0001:0001c080 ?Init@GTE@@QAEXPAVGOB@@K@Z 0041d080 f gob.obj - 0001:0001c0b0 ?FNextGob@GTE@@QAEHPAPAVGOB@@PAKK@Z 0041d0b0 f gob.obj - 0001:0001c1c0 ?Pcmm@GOB@@MAEPAUCMM@CMH@@XZ 0041d1c0 f gob.obj - 0001:0001c1d0 ?_NewRc@GOB@@MAEXXZ 0041d1d0 f gob.obj - 0001:0001c1e0 ?_ActivateHwnd@GOB@@MAEXH@Z 0041d1e0 f gob.obj - 0001:0001c1f0 ?FCmdTrackMouseCore@GOB@@QAEHPAUCMD@@@Z 0041d1f0 f gob.obj - 0001:0001c200 ?FCmdMouseMoveCore@GOB@@QAEHPAUCMD@@@Z 0041d200 f gob.obj - 0001:0001c210 ?FCmdKeyCore@GOB@@QAEHPAUCMD@@@Z 0041d210 f gob.obj - 0001:0001c220 ?FCmdBadKeyCore@GOB@@QAEHPAUCMD@@@Z 0041d220 f gob.obj - 0001:0001c230 ??_GGOB@@MAEPAXI@Z 0041d230 f gob.obj - 0001:0001c230 ??_EGOB@@MAEPAXI@Z 0041d230 f gob.obj - 0001:0001c250 ??_GGTE@@UAEPAXI@Z 0041d250 f gob.obj - 0001:0001c250 ??_EGTE@@UAEPAXI@Z 0041d250 f gob.obj - 0001:0001c270 ??_9@$BHA@A 0041d270 f gob.obj - 0001:0001c280 ??_9@$BHE@A 0041d280 f gob.obj - 0001:0001c290 ??_9@$BFM@A 0041d290 f gob.obj - 0001:0001c2a0 ?Draw@MBMP@@QAEXPAEJJJJPAVRC@@PAVREGN@@@Z 0041d2a0 f mbmpgui.obj - 0001:0001c7f0 ?DrawMask@MBMP@@QAEXPAEJJJJPAVRC@@@Z 0041d7f0 f mbmpgui.obj - 0001:0001cb30 ?FWouldBe@REGN@@SGHJ@Z 0041db30 f region.obj - 0001:0001cb50 ?FIs@REGN@@UAEHJ@Z 0041db50 f region.obj - 0001:0001cb60 ?Cls@REGN@@UAEJXZ 0041db60 f region.obj - 0001:0001cb70 ?FWouldBe@REGSC@@SGHJ@Z 0041db70 f region.obj - 0001:0001cb90 ?FIs@REGSC@@UAEHJ@Z 0041db90 f region.obj - 0001:0001cba0 ?Cls@REGSC@@UAEJXZ 0041dba0 f region.obj - 0001:0001cbb0 ?FInit@REGBL@@QAEHPAVRC@@PAVGL@@@Z 0041dbb0 f region.obj - 0001:0001cc60 ?FStartRow@REGBL@@QAEHJJ@Z 0041dc60 f region.obj - 0001:0001cd10 ?EndRow@REGBL@@QAEXXZ 0041dd10 f region.obj - 0001:0001cdd0 ?PglxpFree@REGBL@@QAEPAVGL@@PAVRC@@PAJ@Z 0041ddd0 f region.obj - 0001:0001ce90 ??0REGSC@@QAE@XZ 0041de90 f region.obj - 0001:0001ceb0 ??1REGSC@@UAE@XZ 0041deb0 f region.obj - 0001:0001ced0 ?Free@REGSC@@QAEXXZ 0041ded0 f region.obj - 0001:0001cf00 ?Init@REGSC@@QAEXPAVREGN@@PAVRC@@@Z 0041df00 f region.obj - 0001:0001cf60 ?InitRc@REGSC@@QAEXPAVRC@@0@Z 0041df60 f region.obj - 0001:0001cf80 ?_InitCore@REGSC@@IAEXPAVGL@@PAVRC@@1@Z 0041df80 f region.obj - 0001:0001d080 ?_ScanNextCore@REGSC@@IAEXXZ 0041e080 f region.obj - 0001:0001d1c0 ?PregnNew@REGN@@SGPAV1@PAVRC@@@Z 0041e1c0 f region.obj - 0001:0001d210 ??1REGN@@UAE@XZ 0041e210 f region.obj - 0001:0001d240 ?SetRc@REGN@@QAEXPAVRC@@@Z 0041e240 f region.obj - 0001:0001d2a0 ?Offset@REGN@@QAEXJJ@Z 0041e2a0 f region.obj - 0001:0001d2d0 ?FEmpty@REGN@@QAEHPAVRC@@@Z 0041e2d0 f region.obj - 0001:0001d320 ?FIsRc@REGN@@QAEHPAVRC@@@Z 0041e320 f region.obj - 0001:0001d350 ?FUnion@REGN@@QAEHPAV1@0@Z 0041e350 f region.obj - 0001:0001d470 ?FUnionRc@REGN@@QAEHPAVRC@@PAV1@@Z 0041e470 f region.obj - 0001:0001d5a0 ?_FUnionCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0041e5a0 f region.obj - 0001:0001d8c0 ?FIntersect@REGN@@QAEHPAV1@0@Z 0041e8c0 f region.obj - 0001:0001d9f0 ?_FIntersectCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0041e9f0 f region.obj - 0001:0001dcf0 ?FDiff@REGN@@QAEHPAV1@0@Z 0041ecf0 f region.obj - 0001:0001ddf0 ?FDiffRc@REGN@@QAEHPAVRC@@PAV1@@Z 0041edf0 f region.obj - 0001:0001df00 ?_FDiffCore@REGN@@IAEHPAVRC@@PAVREGSC@@1@Z 0041ef00 f region.obj - 0001:0001e230 ?HrgnCreate@REGN@@QAEPAUHRGN__@@XZ 0041f230 f region.obj - 0001:0001e4a0 ?HrgnEnsure@REGN@@QAEPAUHRGN__@@XZ 0041f4a0 f region.obj - 0001:0001e500 ??_GREGN@@UAEPAXI@Z 0041f500 f region.obj - 0001:0001e500 ??_EREGN@@UAEPAXI@Z 0041f500 f region.obj - 0001:0001e520 ?XpFetch@REGSC@@QAEJXZ 0041f520 f region.obj - 0001:0001e5a0 ??_GREGBL@@UAEPAXI@Z 0041f5a0 f region.obj - 0001:0001e5a0 ??_EREGBL@@UAEPAXI@Z 0041f5a0 f region.obj - 0001:0001e5e0 ??_EREGSC@@UAEPAXI@Z 0041f5e0 f region.obj - 0001:0001e5e0 ??_GREGSC@@UAEPAXI@Z 0041f5e0 f region.obj - 0001:0001e690 ?FWouldBe@PIC@@SGHJ@Z 0041f690 f pic.obj - 0001:0001e6b0 ?FIs@PIC@@UAEHJ@Z 0041f6b0 f pic.obj - 0001:0001e6c0 ?Cls@PIC@@UAEJXZ 0041f6c0 f pic.obj - 0001:0001e6d0 ?PpicNew@PIC@@SGPAV1@PAUHENHMETAFILE__@@PAVRC@@@Z 0041f6d0 f pic.obj - 0001:0001e720 ?FAddToCfl@PIC@@QAEHPAVCFL@@KPAKK@Z 0041f720 f pic.obj - 0001:0001e890 _WinMain@16 0041f890 f appbwin.obj - 0001:0001e8d0 ?Abort@APPB@@UAEXXZ 0041f8d0 f appbwin.obj - 0001:0001e8f0 ?_FInitOS@APPB@@MAEHXZ 0041f8f0 f appbwin.obj - 0001:0001ea80 ?_FGetNextEvt@APPB@@MAEHPAUtagMSG@@@Z 0041fa80 f appbwin.obj - 0001:0001ead0 ?TrackMouse@APPB@@QAEXPAVGOB@@PAVPT@@@Z 0041fad0 f appbwin.obj - 0001:0001eb70 ?_DispatchEvt@APPB@@MAEXPAUtagMSG@@@Z 0041fb70 f appbwin.obj - 0001:0001ec60 ?_FTranslateKeyEvt@APPB@@MAEHPAUtagMSG@@PAUCMD_KEY@@@Z 0041fc60 f appbwin.obj - 0001:0001ed20 ?FGetNextKeyFromOsQueue@APPB@@UAEHPAUCMD_KEY@@@Z 0041fd20 f appbwin.obj - 0001:0001ee30 ?FlushUserEvents@APPB@@UAEXK@Z 0041fe30 f appbwin.obj - 0001:0001ee90 ?_ShutDownViewer@APPB@@IAEXXZ 0041fe90 f appbwin.obj - 0001:0001eec0 ?_LuWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 0041fec0 f appbwin.obj - 0001:0001ef40 ?_FFrameWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 0041ff40 f appbwin.obj - 0001:0001f710 ?_LuMdiWndProc@APPB@@KGJPAUHWND__@@IIJ@Z 00420710 f appbwin.obj - 0001:0001f780 ?_FMdiWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00420780 f appbwin.obj - 0001:0001f870 ?_FCommonWndProc@APPB@@MAEHPAUHWND__@@IIJPAJ@Z 00420870 f appbwin.obj - 0001:0001fd30 ?TGiveAlertSz@APPB@@UAEHPADJJ@Z 00420d30 f appbwin.obj - 0001:0001fe80 ?_HrgnNew@@YGPAUHRGN__@@PAUtagRECT@@JJH@Z 00420e80 f gfxwin.obj - 0001:0001fee0 ?_Scr@ACR@@AAEKXZ 00420ee0 f gfxwin.obj - 0001:0001ff20 ?Flush@GPT@@SGXXZ 00420f20 f gfxwin.obj - 0001:0001ff30 ?SetActiveColors@GPT@@SGXPAVGL@@K@Z 00420f30 f gfxwin.obj - 0001:000203e0 ?PglclrGetPalette@GPT@@SGPAVGL@@XZ 004213e0 f gfxwin.obj - 0001:00020430 ?CclrSetPalette@GPT@@SGJPAUHWND__@@H@Z 00421430 f gfxwin.obj - 0001:00020500 ?PgptNew@GPT@@SGPAV1@PAUHDC__@@@Z 00421500 f gfxwin.obj - 0001:00020560 ?PgptNewHwnd@GPT@@SGPAV1@PAUHWND__@@@Z 00421560 f gfxwin.obj - 0001:000205b0 ?_FInit@GPT@@AAEHPAUHDC__@@@Z 004215b0 f gfxwin.obj - 0001:00020660 ??1GPT@@EAE@XZ 00421660 f gfxwin.obj - 0001:00020700 ?_Scr@GPT@@AAEKVACR@@@Z 00421700 f gfxwin.obj - 0001:00020780 ?PgptNewOffscreen@GPT@@SGPAV1@PAVRC@@J@Z 00421780 f gfxwin.obj - 0001:00020ae0 ?SetOffscreenColors@GPT@@QAEXPAVGL@@@Z 00421ae0 f gfxwin.obj - 0001:00020b70 ?PrgbLockPixels@GPT@@QAEPAEPAVRC@@@Z 00421b70 f gfxwin.obj - 0001:00020bc0 ?CbRow@GPT@@QAEJXZ 00421bc0 f gfxwin.obj - 0001:00020bd0 ?CbitPixel@GPT@@QAEJXZ 00421bd0 f gfxwin.obj - 0001:00020c20 ?Lock@GPT@@QAEXXZ 00421c20 f gfxwin.obj - 0001:00020c30 ?Unlock@GPT@@QAEXXZ 00421c30 f gfxwin.obj - 0001:00020c50 ?PgptNewPic@GPT@@SGPAV1@PAVRC@@@Z 00421c50 f gfxwin.obj - 0001:00020d10 ?PpicRelease@GPT@@QAEPAVPIC@@XZ 00421d10 f gfxwin.obj - 0001:00020d70 ?HiliteRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00421d70 f gfxwin.obj - 0001:00020da0 ?DrawRcs@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00421da0 f gfxwin.obj - 0001:00020df0 ?DrawOval@GPT@@QAEXPAUtagRECT@@PAUGDD@@@Z 00421df0 f gfxwin.obj - 0001:00020e40 ?_FrameRcsOval@GPT@@AAEXPAUtagRECT@@PAUGDD@@H@Z 00421e40 f gfxwin.obj - 0001:00020f00 ?DrawPoly@GPT@@QAEXPAXPAUGDD@@@Z 00421f00 f gfxwin.obj - 0001:00020f30 ?DrawLine@GPT@@QAEXPAUtagPOINT@@0PAUGDD@@@Z 00421f30 f gfxwin.obj - 0001:00021010 ?_FillRcs@GPT@@AAEXPAUtagRECT@@@Z 00422010 f gfxwin.obj - 0001:00021040 ?_FillOval@GPT@@AAEXPAUtagRECT@@@Z 00422040 f gfxwin.obj - 0001:00021070 ?_FillRgn@GPT@@AAEXPAPAUHRGN__@@@Z 00422070 f gfxwin.obj - 0001:000210a0 ?_FillPoly@GPT@@AAEXPAUOLY@@@Z 004220a0 f gfxwin.obj - 0001:000210d0 ?_SetClip@GPT@@AAEXPAUtagRECT@@@Z 004220d0 f gfxwin.obj - 0001:00021280 ?_EnsurePalette@GPT@@AAEXXZ 00422280 f gfxwin.obj - 0001:00021340 ?_Fill@GPT@@AAEXPAXPAUGDD@@P81@EX0@Z@Z 00422340 f gfxwin.obj - 0001:00021560 ?ScrollRcs@GPT@@QAEXPAUtagRECT@@JJPAUGDD@@@Z 00422560 f gfxwin.obj - 0001:000215a0 ?DrawRgch@GPT@@QAEXPADJUtagPOINT@@PAUGDD@@PAUDSF@@@Z 004225a0 f gfxwin.obj - 0001:00021780 ?GetRcsFromRgch@GPT@@QAEXPAUtagRECT@@PADJUtagPOINT@@PAUDSF@@@Z 00422780 f gfxwin.obj - 0001:00021840 ?_SetAptBrush@GPT@@AAEXPAUAPT@@@Z 00422840 f gfxwin.obj - 0001:00021910 ?_SetAcrBrush@GPT@@AAEXVACR@@@Z 00422910 f gfxwin.obj - 0001:00021990 ?_SetStockBrush@GPT@@AAEXH@Z 00422990 f gfxwin.obj - 0001:00021a00 ?_SetTextProps@GPT@@AAEXPAUDSF@@@Z 00422a00 f gfxwin.obj - 0001:00021ad0 ?CopyPixels@GPT@@QAEXPAV1@PAUtagRECT@@1PAUGDD@@@Z 00422ad0 f gfxwin.obj - 0001:00021eb0 ?DrawPic@GPT@@QAEXPAVPIC@@PAUtagRECT@@PAUGDD@@@Z 00422eb0 f gfxwin.obj - 0001:00021f20 ?DrawMbmp@GPT@@QAEXPAVMBMP@@PAUtagRECT@@PAUGDD@@@Z 00422f20 f gfxwin.obj - 0001:00022280 ?FInit@NTL@@QAEHXZ 00423280 f gfxwin.obj - 0001:00022340 ?_FEnumFont@@YGHPAUtagLOGFONTA@@PAUtagTEXTMETRICA@@KJ@Z 00423340 f gfxwin.obj - 0001:000223a0 ?HfntCreate@NTL@@QAEPAUHFONT__@@PAUDSF@@@Z 004233a0 f gfxwin.obj - 0001:00022430 ?FFixedPitch@NTL@@QAEHJ@Z 00423430 f gfxwin.obj - 0001:00022460 ?FCreateRgn@@YGHPAPAUHRGN__@@PAVRC@@@Z 00423460 f gfxwin.obj - 0001:000224c0 ?FreePhrgn@@YGXPAPAUHRGN__@@@Z 004234c0 f gfxwin.obj - 0001:000224f0 ??_GGPT@@EAEPAXI@Z 004234f0 f gfxwin.obj - 0001:000224f0 ??_EGPT@@EAEPAXI@Z 004234f0 f gfxwin.obj - 0001:00022510 ?FInitScreen@GOB@@SGHKJ@Z 00423510 f gobwin.obj - 0001:00022580 ?FAttachHwnd@GOB@@QAEHPAUHWND__@@@Z 00423580 f gobwin.obj - 0001:000225e0 ?PgobFromHwnd@GOB@@SGPAV1@PAUHWND__@@@Z 004235e0 f gobwin.obj - 0001:00022640 ?HwndMdiActive@GOB@@SGPAUHWND__@@XZ 00423640 f gobwin.obj - 0001:00022670 ?_HwndNewMdi@GOB@@KGPAUHWND__@@PAVSTN@@@Z 00423670 f gobwin.obj - 0001:00022770 ?_DestroyHwnd@GOB@@KGXPAUHWND__@@@Z 00423770 f gobwin.obj - 0001:000227f0 ?GetPtMouse@GOB@@QAEXPAVPT@@PAH@Z 004237f0 f gobwin.obj - 0001:00022890 ?Clean@GOB@@UAEXXZ 00423890 f gobwin.obj - 0001:00022910 ?SetHwndName@GOB@@QAEXPAVSTN@@@Z 00423910 f gobwin.obj - 0001:00022950 ?MakeHwndActive@GOB@@SGXPAUHWND__@@@Z 00423950 f gobwin.obj - 0001:00022a30 ?FWouldBe@MUB@@SGHJ@Z 00423a30 f menuwin.obj - 0001:00022a50 ?FIs@MUB@@UAEHJ@Z 00423a50 f menuwin.obj - 0001:00022a60 ?Cls@MUB@@UAEJXZ 00423a60 f menuwin.obj - 0001:00022a70 ??1MUB@@UAE@XZ 00423a70 f menuwin.obj - 0001:00022a90 ?PmubNew@MUB@@SGPAV1@K@Z 00423a90 f menuwin.obj - 0001:00022b20 ?Set@MUB@@UAEXXZ 00423b20 f menuwin.obj - 0001:00022b70 ?Clean@MUB@@UAEXXZ 00423b70 f menuwin.obj - 0001:00022cb0 ?EnqueueWcid@MUB@@UAEXJ@Z 00423cb0 f menuwin.obj - 0001:00022cf0 ?FAddListCid@MUB@@UAEHJJPAVSTN@@@Z 00423cf0 f menuwin.obj - 0001:00022ef0 ?FRemoveListCid@MUB@@UAEHJJPAVSTN@@@Z 00423ef0 f menuwin.obj - 0001:00023180 ?FRemoveAllListCid@MUB@@UAEHJ@Z 00424180 f menuwin.obj - 0001:00023330 ?FChangeListCid@MUB@@UAEHJJPAVSTN@@J0@Z 00424330 f menuwin.obj - 0001:00023490 ?_FGetCmdForWcid@MUB@@AAEHJPAUCMD@@@Z 00424490 f menuwin.obj - 0001:000235d0 ?_FFindMlst@MUB@@AAEHJPAUMLST@1@PAJ@Z 004245d0 f menuwin.obj - 0001:00023660 ?_FInitLists@MUB@@AAEHXZ 00424660 f menuwin.obj - 0001:00023960 ??_GMUB@@UAEPAXI@Z 00424960 f menuwin.obj - 0001:00023960 ??_EMUB@@UAEPAXI@Z 00424960 f menuwin.obj - 0001:00023a10 ??0PIC@@IAE@XZ 00424a10 f picwin.obj - 0001:00023a40 ??1PIC@@UAE@XZ 00424a40 f picwin.obj - 0001:00023a60 ?CbOnFile@PIC@@UAEJXZ 00424a60 f picwin.obj - 0001:00023a80 ?FWrite@PIC@@UAEHPAVBLCK@@@Z 00424a80 f picwin.obj - 0001:00023b80 ??_GPIC@@UAEPAXI@Z 00424b80 f picwin.obj - 0001:00023b80 ??_EPIC@@UAEPAXI@Z 00424b80 f picwin.obj - 0001:00023c30 ?FWouldBe@DOCB@@SGHJ@Z 00424c30 f docb.obj - 0001:00023c50 ?FIs@DOCB@@UAEHJ@Z 00424c50 f docb.obj - 0001:00023c60 ?Cls@DOCB@@UAEJXZ 00424c60 f docb.obj - 0001:00023c70 ?FWouldBe@DTE@@SGHJ@Z 00424c70 f docb.obj - 0001:00023c90 ?FIs@DTE@@UAEHJ@Z 00424c90 f docb.obj - 0001:00023ca0 ?Cls@DTE@@UAEJXZ 00424ca0 f docb.obj - 0001:00023cb0 ?FWouldBe@DDG@@SGHJ@Z 00424cb0 f docb.obj - 0001:00023cd0 ?FIs@DDG@@UAEHJ@Z 00424cd0 f docb.obj - 0001:00023ce0 ?Cls@DDG@@UAEJXZ 00424ce0 f docb.obj - 0001:00023cf0 ?FWouldBe@DMD@@SGHJ@Z 00424cf0 f docb.obj - 0001:00023d10 ?FIs@DMD@@UAEHJ@Z 00424d10 f docb.obj - 0001:00023d20 ?Cls@DMD@@UAEJXZ 00424d20 f docb.obj - 0001:00023d30 ?FWouldBe@DMW@@SGHJ@Z 00424d30 f docb.obj - 0001:00023d50 ?FIs@DMW@@UAEHJ@Z 00424d50 f docb.obj - 0001:00023d60 ?Cls@DMW@@UAEJXZ 00424d60 f docb.obj - 0001:00023d70 ?FWouldBe@DSG@@SGHJ@Z 00424d70 f docb.obj - 0001:00023d90 ?FIs@DSG@@UAEHJ@Z 00424d90 f docb.obj - 0001:00023da0 ?Cls@DSG@@UAEJXZ 00424da0 f docb.obj - 0001:00023db0 ?FWouldBe@DSSP@@SGHJ@Z 00424db0 f docb.obj - 0001:00023dd0 ?FIs@DSSP@@UAEHJ@Z 00424dd0 f docb.obj - 0001:00023de0 ?Cls@DSSP@@UAEJXZ 00424de0 f docb.obj - 0001:00023df0 ?FWouldBe@DSSM@@SGHJ@Z 00424df0 f docb.obj - 0001:00023e10 ?FIs@DSSM@@UAEHJ@Z 00424e10 f docb.obj - 0001:00023e20 ?Cls@DSSM@@UAEJXZ 00424e20 f docb.obj - 0001:00023e30 ?FWouldBe@UNDB@@SGHJ@Z 00424e30 f docb.obj - 0001:00023e60 ??0DOCB@@IAE@PAV0@K@Z 00424e60 f docb.obj - 0001:00023ed0 ?Release@DOCB@@UAEXXZ 00424ed0 f docb.obj - 0001:00023f80 ?CloseAllDdg@DOCB@@QAEXXZ 00424f80 f docb.obj - 0001:00023ff0 ??1DOCB@@MAE@XZ 00424ff0 f docb.obj - 0001:00024070 ?FQueryCloseAll@DOCB@@SGHK@Z 00425070 f docb.obj - 0001:000240b0 ?FQueryClose@DOCB@@UAEHK@Z 004250b0 f docb.obj - 0001:00024170 ?_TQuerySave@DOCB@@MAEHH@Z 00425170 f docb.obj - 0001:00024190 ?FQueryCloseDmd@DOCB@@UAEHPAVDMD@@@Z 00425190 f docb.obj - 0001:00024200 ?FInternal@DOCB@@QAEHXZ 00425200 f docb.obj - 0001:00024220 ?SetInternal@DOCB@@QAEXH@Z 00425220 f docb.obj - 0001:00024240 ?FGetFni@DOCB@@UAEHPAVFNI@@@Z 00425240 f docb.obj - 0001:00024250 ?FSave@DOCB@@UAEHJ@Z 00425250 f docb.obj - 0001:000242f0 ?FSaveToFni@DOCB@@UAEHPAVFNI@@H@Z 004252f0 f docb.obj - 0001:00024300 ?FGetFniSave@DOCB@@UAEHPAVFNI@@@Z 00425300 f docb.obj - 0001:00024320 ?FAddDdg@DOCB@@QAEHPAVDDG@@@Z 00425320 f docb.obj - 0001:00024360 ?_FFindDdg@DOCB@@IAEHPAVDDG@@PAJ@Z 00425360 f docb.obj - 0001:000243c0 ?RemoveDdg@DOCB@@QAEXPAVDDG@@@Z 004253c0 f docb.obj - 0001:000243f0 ?MakeFirstDdg@DOCB@@QAEXPAVDDG@@@Z 004253f0 f docb.obj - 0001:00024430 ?PddgGet@DOCB@@QAEPAVDDG@@J@Z 00425430 f docb.obj - 0001:00024460 ?PddgActive@DOCB@@QAEPAVDDG@@XZ 00425460 f docb.obj - 0001:00024480 ?PdmdNew@DOCB@@UAEPAVDMD@@XZ 00425480 f docb.obj - 0001:00024490 ?ActivateDmd@DOCB@@QAEXXZ 00425490 f docb.obj - 0001:000244d0 ?PdmwNew@DOCB@@UAEPAVDMW@@PAUGCB@@@Z 004254d0 f docb.obj - 0001:000244e0 ?PdsgNew@DOCB@@UAEPAVDSG@@PAVDMW@@PAV2@KJ@Z 004254e0 f docb.obj - 0001:00024500 ?PddgNew@DOCB@@UAEPAVDDG@@PAUGCB@@@Z 00425500 f docb.obj - 0001:00024510 ?GetName@DOCB@@UAEXPAVSTN@@@Z 00425510 f docb.obj - 0001:000245c0 ?UpdateName@DOCB@@UAEXXZ 004255c0 f docb.obj - 0001:00024670 ?FUndo@DOCB@@UAEHXZ 00425670 f docb.obj - 0001:000246c0 ?FRedo@DOCB@@UAEHXZ 004256c0 f docb.obj - 0001:00024710 ?FAddUndo@DOCB@@UAEHPAVUNDB@@@Z 00425710 f docb.obj - 0001:00024800 ?ClearUndo@DOCB@@UAEXXZ 00425800 f docb.obj - 0001:00024860 ?ClearRedo@DOCB@@UAEXXZ 00425860 f docb.obj - 0001:000248b0 ?SetCundbMax@DOCB@@UAEXJ@Z 004258b0 f docb.obj - 0001:00024960 ?CundbMax@DOCB@@UAEJXZ 00425960 f docb.obj - 0001:00024970 ?CundbUndo@DOCB@@UAEJXZ 00425970 f docb.obj - 0001:00024980 ?CundbRedo@DOCB@@UAEJXZ 00425980 f docb.obj - 0001:000249a0 ?ExportFormats@DOCB@@UAEXPAVCLIP@@@Z 004259a0 f docb.obj - 0001:000249b0 ?FGetFormat@DOCB@@UAEHJPAPAV1@@Z 004259b0 f docb.obj - 0001:000249d0 ??0DTE@@QAE@XZ 004259d0 f docb.obj - 0001:000249f0 ?Init@DTE@@QAEXPAVDOCB@@@Z 004259f0 f docb.obj - 0001:00024a10 ?FNextDoc@DTE@@QAEHPAPAVDOCB@@PAKK@Z 00425a10 f docb.obj - 0001:00024ae0 ?PddgNew@DDG@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 00425ae0 f docb.obj - 0001:00024b50 ??0DDG@@IAE@PAVDOCB@@PAUGCB@@@Z 00425b50 f docb.obj - 0001:00024b90 ??1DDG@@MAE@XZ 00425b90 f docb.obj - 0001:00024bd0 ?_FInit@DDG@@MAEHXZ 00425bd0 f docb.obj - 0001:00024c00 ?Pdmd@DDG@@QAEPAVDMD@@XZ 00425c00 f docb.obj - 0001:00024c10 ?Activate@DDG@@UAEXH@Z 00425c10 f docb.obj - 0001:00024ca0 ?_Activate@DDG@@MAEXH@Z 00425ca0 f docb.obj - 0001:00024ce0 ?FEnableDdgCmd@DDG@@UAEHPAUCMD@@PAK@Z 00425ce0 f docb.obj - 0001:00024e00 ?FCmdClip@DDG@@UAEHPAUCMD@@@Z 00425e00 f docb.obj - 0001:00024f10 ?_FCopySel@DDG@@MAEHPAPAVDOCB@@@Z 00425f10 f docb.obj - 0001:00024f20 ?_ClearSel@DDG@@MAEXXZ 00425f20 f docb.obj - 0001:00024f30 ?_FPaste@DDG@@MAEHPAVCLIP@@HJ@Z 00425f30 f docb.obj - 0001:00024f40 ?FCmdCloseDoc@DDG@@UAEHPAUCMD@@@Z 00425f40 f docb.obj - 0001:00024f80 ?FCmdSave@DDG@@UAEHPAUCMD@@@Z 00425f80 f docb.obj - 0001:00024fa0 ?FCmdUndo@DDG@@UAEHPAUCMD@@@Z 00425fa0 f docb.obj - 0001:00024fd0 ?Draw@DDG@@UAEXPAVGNV@@PAVRC@@@Z 00425fd0 f docb.obj - 0001:00025010 ?FCmdActivateSel@DDG@@UAEHPAUCMD@@@Z 00426010 f docb.obj - 0001:00025030 ?FCmdScroll@DDG@@UAEHPAUCMD@@@Z 00426030 f docb.obj - 0001:000250d0 ?_Scroll@DDG@@MAEXJJJJ@Z 004260d0 f docb.obj - 0001:000250e0 ?_SetScrollValues@DDG@@MAEXXZ 004260e0 f docb.obj - 0001:00025160 ?_ScrollDxpDyp@DDG@@MAEXJJ@Z 00426160 f docb.obj - 0001:00025180 ?_ScvMax@DDG@@MAEJH@Z 00426180 f docb.obj - 0001:00025190 ?_NewRc@DDG@@MAEXXZ 00426190 f docb.obj - 0001:000251a0 ?PdmdNew@DMD@@SGPAV1@PAVDOCB@@@Z 004261a0 f docb.obj - 0001:000252a0 ??0DMD@@IAE@PAVDOCB@@PAUGCB@@@Z 004262a0 f docb.obj - 0001:000252c0 ?ActivateNext@DMD@@UAEXPAVDDG@@@Z 004262c0 f docb.obj - 0001:00025330 ?_ActivateHwnd@DMD@@MAEXH@Z 00426330 f docb.obj - 0001:00025360 ?FCmdCloseWnd@DMD@@UAEHPAUCMD@@@Z 00426360 f docb.obj - 0001:000253a0 ?PdmwNew@DMW@@SGPAV1@PAVDOCB@@PAUGCB@@@Z 004263a0 f docb.obj - 0001:000253f0 ??0DMW@@IAE@PAVDOCB@@PAUGCB@@@Z 004263f0 f docb.obj - 0001:00025420 ?Release@DMW@@UAEXXZ 00426420 f docb.obj - 0001:00025460 ?_FInit@DMW@@MAEHXZ 00426460 f docb.obj - 0001:000254a0 ?_NewRc@DMW@@MAEXXZ 004264a0 f docb.obj - 0001:000254b0 ?FAddDsg@DMW@@QAEHPAVDSG@@0KJ@Z 004264b0 f docb.obj - 0001:00025650 ?RemoveDsg@DMW@@QAEXPAVDSG@@@Z 00426650 f docb.obj - 0001:00025680 ?_RemoveDsg@DMW@@IAEXPAVDSG@@PAJ@Z 00426680 f docb.obj - 0001:00025760 ?_IdsedEdge@DMW@@IAEJJJ@Z 00426760 f docb.obj - 0001:000257c0 ?_IdsedNext@DMW@@IAEJJJ@Z 004267c0 f docb.obj - 0001:00025810 ?_Layout@DMW@@IAEXJ@Z 00426810 f docb.obj - 0001:00025bf0 ?_SplitRcRel@DMW@@IAEXJPAVRC@@0@Z 00426bf0 f docb.obj - 0001:00025cc0 ?GetRcSplit@DMW@@QAEXPAVDSG@@PAVRC@@1@Z 00426cc0 f docb.obj - 0001:00025ef0 ?MoveSplit@DMW@@QAEXPAVDSG@@J@Z 00426ef0 f docb.obj - 0001:00025f30 ?TVert@DMW@@QAEHPAVDSG@@@Z 00426f30 f docb.obj - 0001:00025f80 ?PdsgNew@DSG@@SGPAV1@PAVDMW@@PAV1@KJ@Z 00426f80 f docb.obj - 0001:00026010 ??0DSG@@IAE@PAUGCB@@@Z 00427010 f docb.obj - 0001:00026030 ??1DSG@@MAE@XZ 00427030 f docb.obj - 0001:00026050 ?_FInit@DSG@@MAEHPAV1@KJ@Z 00427050 f docb.obj - 0001:000261c0 ?GetMinMax@DSG@@UAEXPAVRC@@@Z 004271c0 f docb.obj - 0001:00026240 ?Split@DSG@@UAEXKJ@Z 00427240 f docb.obj - 0001:00026260 ?FCmdScroll@DSG@@UAEHPAUCMD@@@Z 00427260 f docb.obj - 0001:000262a0 ??0DSSP@@IAE@PAUGCB@@@Z 004272a0 f docb.obj - 0001:000262c0 ?FDirty@DOCB@@UAEHXZ 004272c0 f docb.obj - 0001:000262e0 ?SetDirty@DOCB@@UAEXH@Z 004272e0 f docb.obj - 0001:00026300 ?PdsspNew@DSSP@@SGPAV1@PAVDSG@@K@Z 00427300 f docb.obj - 0001:000263d0 ?Pcmm@DDG@@MAEPAUCMM@CMH@@XZ 004273d0 f docb.obj - 0001:000263e0 ?Pcmm@DSG@@MAEPAUCMM@CMH@@XZ 004273e0 f docb.obj - 0001:000263f0 ?Draw@DSSP@@UAEXPAVGNV@@PAVRC@@@Z 004273f0 f docb.obj - 0001:00026420 ?MouseDown@DSSP@@UAEXJJJK@Z 00427420 f docb.obj - 0001:00026570 ??0DSSM@@IAE@PAUGCB@@@Z 00427570 f docb.obj - 0001:00026590 ?PdssmNew@DSSM@@SGPAV1@PAVDSG@@@Z 00427590 f docb.obj - 0001:00026610 ?Draw@DSSM@@UAEXPAVGNV@@PAVRC@@@Z 00427610 f docb.obj - 0001:00026690 ?MouseDown@DSSM@@UAEXJJJK@Z 00427690 f docb.obj - 0001:00026810 ?TVert@DSSM@@QAEHXZ 00427810 f docb.obj - 0001:00026830 ??_EDOCB@@MAEPAXI@Z 00427830 f docb.obj - 0001:00026830 ??_GDOCB@@MAEPAXI@Z 00427830 f docb.obj - 0001:00026850 ??_GDTE@@UAEPAXI@Z 00427850 f docb.obj - 0001:00026850 ??_EDTE@@UAEPAXI@Z 00427850 f docb.obj - 0001:00026870 ??_EDDG@@MAEPAXI@Z 00427870 f docb.obj - 0001:00026870 ??_GDDG@@MAEPAXI@Z 00427870 f docb.obj - 0001:00026890 ??_EDMD@@UAEPAXI@Z 00427890 f docb.obj - 0001:00026890 ??_GDMD@@UAEPAXI@Z 00427890 f docb.obj - 0001:000268b0 ??_GDMW@@UAEPAXI@Z 004278b0 f docb.obj - 0001:000268b0 ??_EDMW@@UAEPAXI@Z 004278b0 f docb.obj - 0001:000268d0 ??_EDSG@@MAEPAXI@Z 004278d0 f docb.obj - 0001:000268d0 ??_GDSG@@MAEPAXI@Z 004278d0 f docb.obj - 0001:000268f0 ??_GDSSP@@UAEPAXI@Z 004278f0 f docb.obj - 0001:000268f0 ??_EDSSP@@UAEPAXI@Z 004278f0 f docb.obj - 0001:00026910 ??_GDSSM@@UAEPAXI@Z 00427910 f docb.obj - 0001:00026910 ??_EDSSM@@UAEPAXI@Z 00427910 f docb.obj - 0001:00026930 ??_9@$BII@A 00427930 f docb.obj - 0001:00026940 ??_9@$BKM@A 00427940 f docb.obj - 0001:00026950 ??_9@$BLA@A 00427950 f docb.obj - 0001:00026960 ??_9@$BLE@A 00427960 f docb.obj - 0001:00026970 ?FWouldBe@CLIP@@SGHJ@Z 00427970 f clip.obj - 0001:00026990 ?FIs@CLIP@@UAEHJ@Z 00427990 f clip.obj - 0001:000269a0 ?Cls@CLIP@@UAEJXZ 004279a0 f clip.obj - 0001:000269c0 ??0CLIP@@QAE@XZ 004279c0 f clip.obj - 0001:000269e0 ?FDocIsClip@CLIP@@QAEHPAVDOCB@@@Z 004279e0 f clip.obj - 0001:00026a10 ?Show@CLIP@@QAEXXZ 00427a10 f clip.obj - 0001:00026a50 ?Set@CLIP@@QAEXPAVDOCB@@H@Z 00427a50 f clip.obj - 0001:00026b10 ?FGetFormat@CLIP@@QAEHJPAPAVDOCB@@@Z 00427b10 f clip.obj - 0001:00026b80 ?Import@CLIP@@QAEXXZ 00427b80 f clip.obj - 0001:00026bc0 ?_EnsureDoc@CLIP@@IAEXXZ 00427bc0 f clip.obj - 0001:00026cc0 ?_ImportCur@CLIP@@IAEXXZ 00427cc0 f clip.obj - 0001:00026da0 ?_FImportFormat@CLIP@@IAEHJPAXJPAPAVDOCB@@PAH@Z 00427da0 f clip.obj - 0001:00026e30 ?FInitExport@CLIP@@QAEHXZ 00427e30 f clip.obj - 0001:00026e80 ?PvExport@CLIP@@QAEPAXJJ@Z 00427e80 f clip.obj - 0001:00026ee0 ?EndExport@CLIP@@QAEXXZ 00427ee0 f clip.obj - 0001:00026f00 ?_ExportCur@CLIP@@IAEXXZ 00427f00 f clip.obj - 0001:00026f70 ??_ECLIP@@UAEPAXI@Z 00427f70 f clip.obj - 0001:00026f70 ??_GCLIP@@UAEPAXI@Z 00427f70 f clip.obj - 0001:00027020 ?FWouldBe@BSM@@SGHJ@Z 00428020 f stream.obj - 0001:00027040 ?FIs@BSM@@UAEHJ@Z 00428040 f stream.obj - 0001:00027050 ?Cls@BSM@@UAEJXZ 00428050 f stream.obj - 0001:00027060 ?FWouldBe@BSF@@SGHJ@Z 00428060 f stream.obj - 0001:00027080 ?FIs@BSF@@UAEHJ@Z 00428080 f stream.obj - 0001:00027090 ?Cls@BSF@@UAEJXZ 00428090 f stream.obj - 0001:000270a0 ??0BSM@@QAE@XZ 004280a0 f stream.obj - 0001:000270c0 ??1BSM@@UAE@XZ 004280c0 f stream.obj - 0001:000270e0 ?SetMinGrow@BSM@@QAEXJ@Z 004280e0 f stream.obj - 0001:000270f0 ?PvLock@BSM@@QAEPAXJ@Z 004280f0 f stream.obj - 0001:00027110 ?Unlock@BSM@@QAEXXZ 00428110 f stream.obj - 0001:00027120 ?FetchRgb@BSM@@QAEXJJPAX@Z 00428120 f stream.obj - 0001:00027140 ?FReplace@BSM@@QAEHPAXJJJ@Z 00428140 f stream.obj - 0001:000271d0 ?_FEnsureSize@BSM@@IAEHJH@Z 004281d0 f stream.obj - 0001:000272b0 ??0BSF@@QAE@XZ 004282b0 f stream.obj - 0001:000272d0 ??1BSF@@UAE@XZ 004282d0 f stream.obj - 0001:00027340 ?_IfloFind@BSF@@IAEJJPAJ0@Z 00428340 f stream.obj - 0001:000273d0 ?_FEnsureSplit@BSF@@IAEHJPAJ@Z 004283d0 f stream.obj - 0001:00027500 ?_AttemptMerge@BSF@@IAEXJJ@Z 00428500 f stream.obj - 0001:000275f0 ?FReplaceBsf@BSF@@QAEHPAV1@JJJJ@Z 004285f0 f stream.obj - 0001:00027900 ?FReplace@BSF@@QAEHPAXJJJ@Z 00428900 f stream.obj - 0001:00027bf0 ?FReplaceFlo@BSF@@QAEHPAUFLO@@HJJ@Z 00428bf0 f stream.obj - 0001:00027d90 ?FetchRgb@BSF@@QAEXJJPAX@Z 00428d90 f stream.obj - 0001:00027e40 ?FWriteRgb@BSF@@QAEHPAVBLCK@@J@Z 00428e40 f stream.obj - 0001:00027ff0 ??_EBSM@@UAEPAXI@Z 00428ff0 f stream.obj - 0001:00027ff0 ??_GBSM@@UAEPAXI@Z 00428ff0 f stream.obj - 0001:00028010 ??_GBSF@@UAEPAXI@Z 00429010 f stream.obj - 0001:00028010 ??_EBSF@@UAEPAXI@Z 00429010 f stream.obj - 0001:00028030 ?FWouldBe@SNDV@@SGHJ@Z 00429030 f sndm.obj - 0001:00028050 ?FWouldBe@SNDM@@SGHJ@Z 00429050 f sndm.obj - 0001:00028070 ?FIs@SNDM@@UAEHJ@Z 00429070 f sndm.obj - 0001:00028080 ?Cls@SNDM@@UAEJXZ 00429080 f sndm.obj - 0001:00028090 ?FWouldBe@SNDMQ@@SGHJ@Z 00429090 f sndm.obj - 0001:000280b0 ?FIs@SNDMQ@@UAEHJ@Z 004290b0 f sndm.obj - 0001:000280c0 ?Cls@SNDMQ@@UAEJXZ 004290c0 f sndm.obj - 0001:000280d0 ?FWouldBe@SNQUE@@SGHJ@Z 004290d0 f sndm.obj - 0001:000280f0 ?FIs@SNQUE@@UAEHJ@Z 004290f0 f sndm.obj - 0001:00028100 ?Cls@SNQUE@@UAEJXZ 00429100 f sndm.obj - 0001:00028110 ?BeginSynch@SNDV@@UAEXXZ 00429110 f sndm.obj - 0001:00028120 ?EndSynch@SNDV@@UAEXXZ 00429120 f sndm.obj - 0001:00028130 ??0SNDM@@IAE@XZ 00429130 f sndm.obj - 0001:00028150 ??1SNDM@@UAE@XZ 00429150 f sndm.obj - 0001:000281c0 ?PsndmNew@SNDM@@SGPAV1@XZ 004291c0 f sndm.obj - 0001:00028200 ?_FInit@SNDM@@IAEHXZ 00429200 f sndm.obj - 0001:00028230 ?_FFindCtg@SNDM@@IAEHKPAUSNDMPE@1@PAJ@Z 00429230 f sndm.obj - 0001:000282b0 ?FAddDevice@SNDM@@UAEHKPAVSNDV@@@Z 004292b0 f sndm.obj - 0001:00028380 ?PsndvFromCtg@SNDM@@UAEPAVSNDV@@K@Z 00429380 f sndm.obj - 0001:000283b0 ?RemoveSndv@SNDM@@UAEXK@Z 004293b0 f sndm.obj - 0001:00028400 ?FActive@SNDM@@UAEHXZ 00429400 f sndm.obj - 0001:00028410 ?Activate@SNDM@@UAEXH@Z 00429410 f sndm.obj - 0001:00028480 ?Suspend@SNDM@@UAEXH@Z 00429480 f sndm.obj - 0001:000284d0 ?SetVlm@SNDM@@UAEXJ@Z 004294d0 f sndm.obj - 0001:00028520 ?VlmCur@SNDM@@UAEJXZ 00429520 f sndm.obj - 0001:00028570 ?SiiPlay@SNDM@@UAEJPAVRCA@@KKJJJKJJ@Z 00429570 f sndm.obj - 0001:000285e0 ?Stop@SNDM@@UAEXJ@Z 004295e0 f sndm.obj - 0001:00028630 ?StopAll@SNDM@@UAEXJJ@Z 00429630 f sndm.obj - 0001:00028680 ?Pause@SNDM@@UAEXJ@Z 00429680 f sndm.obj - 0001:000286d0 ?PauseAll@SNDM@@UAEXJJ@Z 004296d0 f sndm.obj - 0001:00028720 ?Resume@SNDM@@UAEXJ@Z 00429720 f sndm.obj - 0001:00028770 ?ResumeAll@SNDM@@UAEXJJ@Z 00429770 f sndm.obj - 0001:000287c0 ?FPlaying@SNDM@@UAEHJ@Z 004297c0 f sndm.obj - 0001:00028820 ?FPlayingAll@SNDM@@UAEHJJ@Z 00429820 f sndm.obj - 0001:00028880 ?Flush@SNDM@@UAEXXZ 00429880 f sndm.obj - 0001:000288c0 ?BeginSynch@SNDM@@UAEXXZ 004298c0 f sndm.obj - 0001:00028900 ?EndSynch@SNDM@@UAEXXZ 00429900 f sndm.obj - 0001:00028940 ??1SNDMQ@@UAE@XZ 00429940 f sndm.obj - 0001:000289b0 ?_FInit@SNDMQ@@MAEHXZ 004299b0 f sndm.obj - 0001:000289e0 ?_FEnsureQueue@SNDMQ@@MAEHJPAUSNQD@1@PAJ@Z 004299e0 f sndm.obj - 0001:00028af0 ?FActive@SNDMQ@@UAEHXZ 00429af0 f sndm.obj - 0001:00028b00 ?Activate@SNDMQ@@UAEXH@Z 00429b00 f sndm.obj - 0001:00028b50 ?Suspend@SNDMQ@@UAEXH@Z 00429b50 f sndm.obj - 0001:00028b90 ?SiiPlay@SNDMQ@@UAEJPAVRCA@@KKJJJKJJ@Z 00429b90 f sndm.obj - 0001:00028c00 ?Stop@SNDMQ@@UAEXJ@Z 00429c00 f sndm.obj - 0001:00028c40 ?StopAll@SNDMQ@@UAEXJJ@Z 00429c40 f sndm.obj - 0001:00028ca0 ?Pause@SNDMQ@@UAEXJ@Z 00429ca0 f sndm.obj - 0001:00028ce0 ?PauseAll@SNDMQ@@UAEXJJ@Z 00429ce0 f sndm.obj - 0001:00028d40 ?Resume@SNDMQ@@UAEXJ@Z 00429d40 f sndm.obj - 0001:00028d80 ?ResumeAll@SNDMQ@@UAEXJJ@Z 00429d80 f sndm.obj - 0001:00028de0 ?FPlaying@SNDMQ@@UAEHJ@Z 00429de0 f sndm.obj - 0001:00028e40 ?FPlayingAll@SNDMQ@@UAEHJJ@Z 00429e40 f sndm.obj - 0001:00028eb0 ?Flush@SNDMQ@@UAEXXZ 00429eb0 f sndm.obj - 0001:00028f30 ??0SNQUE@@IAE@XZ 00429f30 f sndm.obj - 0001:00028f50 ??1SNQUE@@UAE@XZ 00429f50 f sndm.obj - 0001:00028fd0 ?_FInit@SNQUE@@MAEHXZ 00429fd0 f sndm.obj - 0001:00028ff0 ?_Enter@SNQUE@@MAEXXZ 00429ff0 f sndm.obj - 0001:00029000 ?_Leave@SNQUE@@MAEXXZ 0042a000 f sndm.obj - 0001:00029010 ?_Flush@SNQUE@@MAEXXZ 0042a010 f sndm.obj - 0001:00029070 ?Enqueue@SNQUE@@QAEXJPAVRCA@@KKJJKJJ@Z 0042a070 f sndm.obj - 0001:00029130 ?Stop@SNQUE@@QAEXJ@Z 0042a130 f sndm.obj - 0001:000291b0 ?StopAll@SNQUE@@QAEXJ@Z 0042a1b0 f sndm.obj - 0001:00029240 ?Pause@SNQUE@@QAEXJ@Z 0042a240 f sndm.obj - 0001:000292c0 ?PauseAll@SNQUE@@QAEXJ@Z 0042a2c0 f sndm.obj - 0001:00029360 ?Resume@SNQUE@@QAEXJ@Z 0042a360 f sndm.obj - 0001:000293e0 ?ResumeAll@SNQUE@@QAEXJ@Z 0042a3e0 f sndm.obj - 0001:00029470 ?FPlaying@SNQUE@@QAEHJ@Z 0042a470 f sndm.obj - 0001:000294e0 ?FPlayingAll@SNQUE@@QAEHJ@Z 0042a4e0 f sndm.obj - 0001:00029550 ?Flush@SNQUE@@QAEXXZ 0042a550 f sndm.obj - 0001:00029560 ?LuVolScale@@YGKKJ@Z 0042a560 f sndm.obj - 0001:000295f0 ??_ESNDM@@UAEPAXI@Z 0042a5f0 f sndm.obj - 0001:000295f0 ??_GSNDM@@UAEPAXI@Z 0042a5f0 f sndm.obj - 0001:00029610 ??_GSNDMQ@@UAEPAXI@Z 0042a610 f sndm.obj - 0001:00029610 ??_ESNDMQ@@UAEPAXI@Z 0042a610 f sndm.obj - 0001:00029630 ??_GSNQUE@@UAEPAXI@Z 0042a630 f sndm.obj - 0001:00029630 ??_ESNQUE@@UAEPAXI@Z 0042a630 f sndm.obj - 0001:000296e0 ?FWouldBe@SDAM@@SGHJ@Z 0042a6e0 f sndam.obj - 0001:00029700 ?FIs@SDAM@@UAEHJ@Z 0042a700 f sndam.obj - 0001:00029710 ?Cls@SDAM@@UAEJXZ 0042a710 f sndam.obj - 0001:00029720 ?FWouldBe@CAMS@@SGHJ@Z 0042a720 f sndam.obj - 0001:00029740 ?FIs@CAMS@@UAEHJ@Z 0042a740 f sndam.obj - 0001:00029750 ?Cls@CAMS@@UAEJXZ 0042a750 f sndam.obj - 0001:00029760 ?FWouldBe@AMQUE@@SGHJ@Z 0042a760 f sndam.obj - 0001:00029780 ?FIs@AMQUE@@UAEHJ@Z 0042a780 f sndam.obj - 0001:00029790 ?Cls@AMQUE@@UAEJXZ 0042a790 f sndam.obj - 0001:000297b0 ??0STBL@@IAE@XZ 0042a7b0 f sndam.obj - 0001:000297e0 ?Write@STBL@@UAGJPBXKPAK@Z 0042a7e0 f sndam.obj - 0001:00029800 ?SetSize@STBL@@UAGJT_ULARGE_INTEGER@@@Z 0042a800 f sndam.obj - 0001:00029810 ?CopyTo@STBL@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 0042a810 f sndam.obj - 0001:00029850 ?Commit@STBL@@UAGJK@Z 0042a850 f sndam.obj - 0001:00029860 ?Revert@STBL@@UAGJXZ 0042a860 f sndam.obj - 0001:00029870 ?LockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 0042a870 f sndam.obj - 0001:00029880 ?UnlockRegion@STBL@@UAGJT_ULARGE_INTEGER@@0K@Z 0042a880 f sndam.obj - 0001:00029890 ?Stat@STBL@@UAGJPAUtagSTATSTG@@K@Z 0042a890 f sndam.obj - 0001:000298a0 ?Clone@STBL@@UAGJPAPAUIStream@@@Z 0042a8a0 f sndam.obj - 0001:000298c0 ??1STBL@@IAE@XZ 0042a8c0 f sndam.obj - 0001:000298d0 ?QueryInterface@STBL@@UAGJABU_GUID@@PAPAX@Z 0042a8d0 f sndam.obj - 0001:00029930 ?AddRef@STBL@@UAGKXZ 0042a930 f sndam.obj - 0001:00029940 ?Release@STBL@@UAGKXZ 0042a940 f sndam.obj - 0001:00029970 ?Read@STBL@@UAGJPAXKPAK@Z 0042a970 f sndam.obj - 0001:000299e0 ?Seek@STBL@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 0042a9e0 f sndam.obj - 0001:00029a80 ?PstblNew@STBL@@SGPAV1@PAUFLO@@H@Z 0042aa80 f sndam.obj - 0001:00029c60 ??0CAMS@@IAE@XZ 0042ac60 f sndam.obj - 0001:00029c80 ??1CAMS@@UAE@XZ 0042ac80 f sndam.obj - 0001:00029cc0 ?FReadCams@CAMS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0042acc0 f sndam.obj - 0001:00029dc0 ?PcamsNewLoop@CAMS@@SGPAV1@PAV1@J@Z 0042adc0 f sndam.obj - 0001:00029e30 ??0AMNOT@@QAE@XZ 0042ae30 f sndam.obj - 0001:00029e50 ?OnStart@AMNOT@@UAGXPAUIAMSound@@K@Z 0042ae50 f sndam.obj - 0001:00029e60 ?OnError@AMNOT@@UAGXPAUIAMSound@@KJ@Z 0042ae60 f sndam.obj - 0001:00029e70 ?OnSyncObject@AMNOT@@UAGXPAUIAMSound@@KPAX@Z 0042ae70 f sndam.obj - 0001:00029e80 ?Set@AMNOT@@QAEXPAVAMQUE@@@Z 0042ae80 f sndam.obj - 0001:00029e90 ?QueryInterface@AMNOT@@UAGJABU_GUID@@PAPAX@Z 0042ae90 f sndam.obj - 0001:00029ef0 ?AddRef@AMNOT@@UAGKXZ 0042aef0 f sndam.obj - 0001:00029f00 ?Release@AMNOT@@UAGKXZ 0042af00 f sndam.obj - 0001:00029f20 ?OnCompletion@AMNOT@@UAGXPAUIAMSound@@K@Z 0042af20 f sndam.obj - 0001:00029f40 ??0AMQUE@@IAE@XZ 0042af40 f sndam.obj - 0001:00029f70 ??1AMQUE@@UAE@XZ 0042af70 f sndam.obj - 0001:00029fb0 ?PamqueNew@AMQUE@@SGPAV1@XZ 0042afb0 f sndam.obj - 0001:00029ff0 ?_FInit@AMQUE@@MAEHXZ 0042aff0 f sndam.obj - 0001:0002a060 ?_Enter@AMQUE@@MAEXXZ 0042b060 f sndam.obj - 0001:0002a070 ?_Leave@AMQUE@@MAEXXZ 0042b070 f sndam.obj - 0001:0002a080 ?_PbacoFetch@AMQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 0042b080 f sndam.obj - 0001:0002a0a0 ?_Queue@AMQUE@@MAEXJ@Z 0042b0a0 f sndam.obj - 0001:0002a280 ?_PauseQueue@AMQUE@@MAEXJ@Z 0042b280 f sndam.obj - 0001:0002a2f0 ?_ResumeQueue@AMQUE@@MAEXJ@Z 0042b2f0 f sndam.obj - 0001:0002a300 ?Notify@AMQUE@@QAEXPAUIAMSound@@@Z 0042b300 f sndam.obj - 0001:0002a390 ??0SDAM@@IAE@XZ 0042b390 f sndam.obj - 0001:0002a3b0 ??1SDAM@@UAE@XZ 0042b3b0 f sndam.obj - 0001:0002a3f0 ?PsdamNew@SDAM@@SGPAV1@J@Z 0042b3f0 f sndam.obj - 0001:0002a440 ?FHaveWaveDevice@@YGHK@Z 0042b440 f sndam.obj - 0001:0002a4b0 ?_FInit@SDAM@@MAEHJ@Z 0042b4b0 f sndam.obj - 0001:0002a610 ?_PsnqueNew@SDAM@@MAEPAVSNQUE@@XZ 0042b610 f sndam.obj - 0001:0002a620 ?_Suspend@SDAM@@MAEXH@Z 0042b620 f sndam.obj - 0001:0002a6a0 ?SetVlm@SDAM@@UAEXJ@Z 0042b6a0 f sndam.obj - 0001:0002a6e0 ?VlmCur@SDAM@@UAEJXZ 0042b6e0 f sndam.obj - 0001:0002a6f0 ?BeginSynch@SDAM@@UAEXXZ 0042b6f0 f sndam.obj - 0001:0002a720 ?EndSynch@SDAM@@UAEXXZ 0042b720 f sndam.obj - 0001:0002a780 ??_ECAMS@@UAEPAXI@Z 0042b780 f sndam.obj - 0001:0002a780 ??_GCAMS@@UAEPAXI@Z 0042b780 f sndam.obj - 0001:0002a7a0 ??_GAMQUE@@UAEPAXI@Z 0042b7a0 f sndam.obj - 0001:0002a7a0 ??_EAMQUE@@UAEPAXI@Z 0042b7a0 f sndam.obj - 0001:0002a7c0 ??_GSDAM@@UAEPAXI@Z 0042b7c0 f sndam.obj - 0001:0002a7c0 ??_ESDAM@@UAEPAXI@Z 0042b7c0 f sndam.obj - 0001:0002a880 ?FWouldBe@MIDO@@SGHJ@Z 0042b880 f mididev.obj - 0001:0002a8a0 ?FIs@MIDO@@UAEHJ@Z 0042b8a0 f mididev.obj - 0001:0002a8b0 ?Cls@MIDO@@UAEJXZ 0042b8b0 f mididev.obj - 0001:0002a8c0 ??0MIDO@@QAE@XZ 0042b8c0 f mididev.obj - 0001:0002a900 ??1MIDO@@UAE@XZ 0042b900 f mididev.obj - 0001:0002a940 ?_GetSysVol@MIDO@@IAEXXZ 0042b940 f mididev.obj - 0001:0002a960 ?_SetSysVol@MIDO@@IAEXK@Z 0042b960 f mididev.obj - 0001:0002a980 ?_Reset@MIDO@@IAEXXZ 0042b980 f mididev.obj - 0001:0002a9e0 ?Suspend@MIDO@@QAEXH@Z 0042b9e0 f mididev.obj - 0001:0002aad0 ??_GMIDO@@UAEPAXI@Z 0042bad0 f mididev.obj - 0001:0002aad0 ??_EMIDO@@UAEPAXI@Z 0042bad0 f mididev.obj - 0001:0002ab80 ?FWouldBe@MDWS@@SGHJ@Z 0042bb80 f mididev2.obj - 0001:0002aba0 ?FIs@MDWS@@UAEHJ@Z 0042bba0 f mididev2.obj - 0001:0002abb0 ?Cls@MDWS@@UAEJXZ 0042bbb0 f mididev2.obj - 0001:0002abc0 ?FWouldBe@MSQUE@@SGHJ@Z 0042bbc0 f mididev2.obj - 0001:0002abe0 ?FIs@MSQUE@@UAEHJ@Z 0042bbe0 f mididev2.obj - 0001:0002abf0 ?Cls@MSQUE@@UAEJXZ 0042bbf0 f mididev2.obj - 0001:0002ac00 ?FWouldBe@MDPS@@SGHJ@Z 0042bc00 f mididev2.obj - 0001:0002ac20 ?FIs@MDPS@@UAEHJ@Z 0042bc20 f mididev2.obj - 0001:0002ac30 ?Cls@MDPS@@UAEJXZ 0042bc30 f mididev2.obj - 0001:0002ac40 ?FWouldBe@MSMIX@@SGHJ@Z 0042bc40 f mididev2.obj - 0001:0002ac60 ?FIs@MSMIX@@UAEHJ@Z 0042bc60 f mididev2.obj - 0001:0002ac70 ?Cls@MSMIX@@UAEJXZ 0042bc70 f mididev2.obj - 0001:0002ac80 ?FWouldBe@MISI@@SGHJ@Z 0042bc80 f mididev2.obj - 0001:0002aca0 ?FIs@MISI@@UAEHJ@Z 0042bca0 f mididev2.obj - 0001:0002acb0 ?Cls@MISI@@UAEJXZ 0042bcb0 f mididev2.obj - 0001:0002acc0 ?FWouldBe@WMS@@SGHJ@Z 0042bcc0 f mididev2.obj - 0001:0002ace0 ?FIs@WMS@@UAEHJ@Z 0042bce0 f mididev2.obj - 0001:0002acf0 ?Cls@WMS@@UAEJXZ 0042bcf0 f mididev2.obj - 0001:0002ad00 ?FWouldBe@OMS@@SGHJ@Z 0042bd00 f mididev2.obj - 0001:0002ad20 ?FIs@OMS@@UAEHJ@Z 0042bd20 f mididev2.obj - 0001:0002ad30 ?Cls@OMS@@UAEJXZ 0042bd30 f mididev2.obj - 0001:0002ad40 ??0MDPS@@IAE@XZ 0042bd40 f mididev2.obj - 0001:0002ad60 ??1MDPS@@UAE@XZ 0042bd60 f mididev2.obj - 0001:0002ada0 ?PmdpsNew@MDPS@@SGPAV1@XZ 0042bda0 f mididev2.obj - 0001:0002ade0 ?_FInit@MDPS@@MAEHXZ 0042bde0 f mididev2.obj - 0001:0002ae30 ?_PsnqueNew@MDPS@@MAEPAVSNQUE@@XZ 0042be30 f mididev2.obj - 0001:0002ae40 ?_Suspend@MDPS@@MAEXH@Z 0042be40 f mididev2.obj - 0001:0002ae50 ?SetVlm@MDPS@@UAEXJ@Z 0042be50 f mididev2.obj - 0001:0002ae60 ?VlmCur@MDPS@@UAEJXZ 0042be60 f mididev2.obj - 0001:0002ae70 ??0MDWS@@IAE@XZ 0042be70 f mididev2.obj - 0001:0002ae90 ??1MDWS@@UAE@XZ 0042be90 f mididev2.obj - 0001:0002aec0 ?FReadMdws@MDWS@@SGHPAVCRF@@KKPAVBLCK@@PAPAVBACO@@PAJ@Z 0042bec0 f mididev2.obj - 0001:0002af30 ?PmdwsRead@MDWS@@SGPAV1@PAVBLCK@@@Z 0042bf30 f mididev2.obj - 0001:0002afa0 ?_FInit@MDWS@@IAEHPAVMIDS@@@Z 0042bfa0 f mididev2.obj - 0001:0002b120 ?PvLockData@MDWS@@QAEPAXPAJ@Z 0042c120 f mididev2.obj - 0001:0002b140 ?UnlockData@MDWS@@QAEXXZ 0042c140 f mididev2.obj - 0001:0002b160 ??0MSQUE@@IAE@XZ 0042c160 f mididev2.obj - 0001:0002b180 ??1MSQUE@@UAE@XZ 0042c180 f mididev2.obj - 0001:0002b1d0 ?PmsqueNew@MSQUE@@SGPAV1@PAVMSMIX@@@Z 0042c1d0 f mididev2.obj - 0001:0002b220 ?_FInit@MSQUE@@MAEHPAVMSMIX@@@Z 0042c220 f mididev2.obj - 0001:0002b250 ?_Enter@MSQUE@@MAEXXZ 0042c250 f mididev2.obj - 0001:0002b260 ?_Leave@MSQUE@@MAEXXZ 0042c260 f mididev2.obj - 0001:0002b270 ?_PbacoFetch@MSQUE@@MAEPAVBACO@@PAVRCA@@KK@Z 0042c270 f mididev2.obj - 0001:0002b290 ?_Queue@MSQUE@@MAEXJ@Z 0042c290 f mididev2.obj - 0001:0002b350 ?_PauseQueue@MSQUE@@MAEXJ@Z 0042c350 f mididev2.obj - 0001:0002b3c0 ?_ResumeQueue@MSQUE@@MAEXJ@Z 0042c3c0 f mididev2.obj - 0001:0002b3d0 ?Notify@MSQUE@@QAEXPAVMDWS@@@Z 0042c3d0 f mididev2.obj - 0001:0002b430 ??0MSMIX@@IAE@XZ 0042c430 f mididev2.obj - 0001:0002b460 ??1MSMIX@@UAE@XZ 0042c460 f mididev2.obj - 0001:0002b4f0 ?PmsmixNew@MSMIX@@SGPAV1@XZ 0042c4f0 f mididev2.obj - 0001:0002b530 ?_FInit@MSMIX@@IAEHXZ 0042c530 f mididev2.obj - 0001:0002b5d0 ?Suspend@MSMIX@@QAEXH@Z 0042c5d0 f mididev2.obj - 0001:0002b630 ?_StopStream@MSMIX@@IAEXXZ 0042c630 f mididev2.obj - 0001:0002b680 ?SetVlm@MSMIX@@QAEXJ@Z 0042c680 f mididev2.obj - 0001:0002b6e0 ?VlmCur@MSMIX@@QAEJXZ 0042c6e0 f mididev2.obj - 0001:0002b6f0 ?FPlay@MSMIX@@QAEHPAVMSQUE@@PAVMDWS@@JJJKJ@Z 0042c6f0 f mididev2.obj - 0001:0002b860 ?_Restart@MSMIX@@IAEXH@Z 0042c860 f mididev2.obj - 0001:0002b8e0 ?_SubmitBuffers@MSMIX@@IAEXK@Z 0042c8e0 f mididev2.obj - 0001:0002baa0 ?_FGetKeyEvents@MSMIX@@IAEHPAVMDWS@@KPAJ@Z 0042caa0 f mididev2.obj - 0001:0002bd70 ?_MidiProc@MSMIX@@KGXKPAXK@Z 0042cd70 f mididev2.obj - 0001:0002bd90 ?_Notify@MSMIX@@IAEXPAXPAVMDWS@@@Z 0042cd90 f mididev2.obj - 0001:0002be60 ?_ThreadProc@MSMIX@@KGKPAX@Z 0042ce60 f mididev2.obj - 0001:0002be70 ?_LuThread@MSMIX@@IAEKXZ 0042ce70 f mididev2.obj - 0001:0002bfa0 ??0MISI@@IAE@P6GXKPAXK@ZK@Z 0042cfa0 f mididev2.obj - 0001:0002bfe0 ?_Reset@MISI@@IAEXXZ 0042cfe0 f mididev2.obj - 0001:0002c020 ?_GetSysVol@MISI@@IAEXXZ 0042d020 f mididev2.obj - 0001:0002c130 ?_SetSysVol@MISI@@IAEXK@Z 0042d130 f mididev2.obj - 0001:0002c150 ?_SetSysVlm@MISI@@IAEXXZ 0042d150 f mididev2.obj - 0001:0002c170 ?SetVlm@MISI@@UAEXJ@Z 0042d170 f mididev2.obj - 0001:0002c190 ?VlmCur@MISI@@UAEJXZ 0042d190 f mididev2.obj - 0001:0002c1a0 ?FActive@MISI@@UAEHXZ 0042d1a0 f mididev2.obj - 0001:0002c1b0 ?FActivate@MISI@@UAEHH@Z 0042d1b0 f mididev2.obj - 0001:0002c1d0 ??0WMS@@IAE@P6GXKPAXK@ZK@Z 0042d1d0 f mididev2.obj - 0001:0002c200 ??1WMS@@UAE@XZ 0042d200 f mididev2.obj - 0001:0002c280 ?PwmsNew@WMS@@SGPAV1@P6GXKPAXK@ZK@Z 0042d280 f mididev2.obj - 0001:0002c2d0 ?_FInit@WMS@@IAEHXZ 0042d2d0 f mididev2.obj - 0001:0002c490 ?_FOpen@WMS@@MAEHXZ 0042d490 f mididev2.obj - 0001:0002c540 ?_FClose@WMS@@MAEHXZ 0042d540 f mididev2.obj - 0001:0002c5b0 ?FActive@WMS@@UAEHXZ 0042d5b0 f mididev2.obj - 0001:0002c5c0 ?FActivate@WMS@@UAEHH@Z 0042d5c0 f mididev2.obj - 0001:0002c5f0 ?_ResetStream@WMS@@IAEXXZ 0042d5f0 f mididev2.obj - 0001:0002c620 ?FQueueBuffer@WMS@@UAEHPAXJJJK@Z 0042d620 f mididev2.obj - 0001:0002c6f0 ?_CmhSubmitBuffers@WMS@@IAEJXZ 0042d6f0 f mididev2.obj - 0001:0002c810 ?_FSubmit@WMS@@IAEHPAUMH@@@Z 0042d810 f mididev2.obj - 0001:0002c880 ?StopPlaying@WMS@@UAEXXZ 0042d880 f mididev2.obj - 0001:0002c950 ?_MidiProc@WMS@@KGXPAXKKKK@Z 0042d950 f mididev2.obj - 0001:0002c970 ?_Notify@WMS@@IAEXPAXPAUMH@@@Z 0042d970 f mididev2.obj - 0001:0002c9f0 ?_ThreadProc@WMS@@KGKPAX@Z 0042d9f0 f mididev2.obj - 0001:0002ca00 ?_LuThread@WMS@@IAEKXZ 0042da00 f mididev2.obj - 0001:0002ca50 ?_DoCallBacks@WMS@@IAEXXZ 0042da50 f mididev2.obj - 0001:0002cae0 ??0OMS@@IAE@P6GXKPAXK@ZK@Z 0042dae0 f mididev2.obj - 0001:0002cb10 ??1OMS@@UAE@XZ 0042db10 f mididev2.obj - 0001:0002cb80 ?PomsNew@OMS@@SGPAV1@P6GXKPAXK@ZK@Z 0042db80 f mididev2.obj - 0001:0002cbd0 ?_FInit@OMS@@IAEHXZ 0042dbd0 f mididev2.obj - 0001:0002cc60 ?_FOpen@OMS@@MAEHXZ 0042dc60 f mididev2.obj - 0001:0002ccd0 ?_FClose@OMS@@MAEHXZ 0042dcd0 f mididev2.obj - 0001:0002cd40 ?FQueueBuffer@OMS@@UAEHPAXJJJK@Z 0042dd40 f mididev2.obj - 0001:0002cdd0 ?StopPlaying@OMS@@UAEXXZ 0042ddd0 f mididev2.obj - 0001:0002ce00 ?_ThreadProc@OMS@@KGKPAX@Z 0042de00 f mididev2.obj - 0001:0002ce10 ?_LuThread@OMS@@IAEKXZ 0042de10 f mididev2.obj - 0001:0002cf90 ?_ReleaseBuffers@OMS@@IAEXXZ 0042df90 f mididev2.obj - 0001:0002d020 ??_GMDPS@@UAEPAXI@Z 0042e020 f mididev2.obj - 0001:0002d020 ??_EMDPS@@UAEPAXI@Z 0042e020 f mididev2.obj - 0001:0002d040 ??_GMDWS@@UAEPAXI@Z 0042e040 f mididev2.obj - 0001:0002d040 ??_EMDWS@@UAEPAXI@Z 0042e040 f mididev2.obj - 0001:0002d060 ??_EMSQUE@@UAEPAXI@Z 0042e060 f mididev2.obj - 0001:0002d060 ??_GMSQUE@@UAEPAXI@Z 0042e060 f mididev2.obj - 0001:0002d080 ??_EMSMIX@@UAEPAXI@Z 0042e080 f mididev2.obj - 0001:0002d080 ??_GMSMIX@@UAEPAXI@Z 0042e080 f mididev2.obj - 0001:0002d0a0 ??_GMISI@@UAEPAXI@Z 0042e0a0 f mididev2.obj - 0001:0002d0a0 ??_EMISI@@UAEPAXI@Z 0042e0a0 f mididev2.obj - 0001:0002d0c0 ??_EWMS@@UAEPAXI@Z 0042e0c0 f mididev2.obj - 0001:0002d0c0 ??_GWMS@@UAEPAXI@Z 0042e0c0 f mididev2.obj - 0001:0002d0e0 ??_EOMS@@UAEPAXI@Z 0042e0e0 f mididev2.obj - 0001:0002d0e0 ??_GOMS@@UAEPAXI@Z 0042e0e0 f mididev2.obj - 0001:0002d100 ?FWouldBe@MSTP@@SGHJ@Z 0042e100 f midi.obj - 0001:0002d120 ?FIs@MSTP@@UAEHJ@Z 0042e120 f midi.obj - 0001:0002d130 ?Cls@MSTP@@UAEJXZ 0042e130 f midi.obj - 0001:0002d140 ?FWouldBe@MIDS@@SGHJ@Z 0042e140 f midi.obj - 0001:0002d160 ?FIs@MIDS@@UAEHJ@Z 0042e160 f midi.obj - 0001:0002d170 ?Cls@MIDS@@UAEJXZ 0042e170 f midi.obj - 0001:0002d180 ??0MSTP@@QAE@XZ 0042e180 f midi.obj - 0001:0002d1a0 ??1MSTP@@UAE@XZ 0042e1a0 f midi.obj - 0001:0002d1e0 ?Init@MSTP@@QAEXPAVMIDS@@KJ@Z 0042e1e0 f midi.obj - 0001:0002d270 ?FGetEvent@MSTP@@QAEHPAUMIDEV@@H@Z 0042e270 f midi.obj - 0001:0002d5d0 ?_FReadVar@MSTP@@IAEHPAPAEPAJ@Z 0042e5d0 f midi.obj - 0001:0002d620 ??0MIDS@@IAE@XZ 0042e620 f midi.obj - 0001:0002d640 ??1MIDS@@UAE@XZ 0042e640 f midi.obj - 0001:0002d660 ?PmidsRead@MIDS@@SGPAV1@PAVBLCK@@@Z 0042e660 f midi.obj - 0001:0002d6d0 ?FWrite@MIDS@@UAEHPAVBLCK@@@Z 0042e6d0 f midi.obj - 0001:0002d6f0 ?CbOnFile@MIDS@@UAEJXZ 0042e6f0 f midi.obj - 0001:0002d710 ??_EMSTP@@UAEPAXI@Z 0042e710 f midi.obj - 0001:0002d710 ??_GMSTP@@UAEPAXI@Z 0042e710 f midi.obj - 0001:0002d730 ??_EMIDS@@UAEPAXI@Z 0042e730 f midi.obj - 0001:0002d730 ??_GMIDS@@UAEPAXI@Z 0042e730 f midi.obj - 0001:0002d7e0 ?FWouldBe@DLG@@SGHJ@Z 0042e7e0 f dlg.obj - 0001:0002d800 ?FIs@DLG@@UAEHJ@Z 0042e800 f dlg.obj - 0001:0002d810 ?Cls@DLG@@UAEJXZ 0042e810 f dlg.obj - 0001:0002d820 ??0DLG@@AAE@J@Z 0042e820 f dlg.obj - 0001:0002d840 ?PdlgNew@DLG@@SGPAV1@JP6GHPAV1@PAJPAX@Z2@Z 0042e840 f dlg.obj - 0001:0002d8a0 ?FGetValues@DLG@@QAEHJJ@Z 0042e8a0 f dlg.obj - 0001:0002d970 ?SetValues@DLG@@QAEXJJ@Z 0042e970 f dlg.obj - 0001:0002db50 ?IditFromSit@DLG@@QAEJJ@Z 0042eb50 f dlg.obj - 0001:0002dba0 ?_FDitChange@DLG@@AAEHPAJ@Z 0042eba0 f dlg.obj - 0001:0002dbf0 ?GetStn@DLG@@QAEXJPAVSTN@@@Z 0042ebf0 f dlg.obj - 0001:0002dc50 ?FPutStn@DLG@@QAEHJPAVSTN@@@Z 0042ec50 f dlg.obj - 0001:0002dd80 ??_GDLG@@UAEPAXI@Z 0042ed80 f dlg.obj - 0001:0002dd80 ??_EDLG@@UAEPAXI@Z 0042ed80 f dlg.obj - 0001:0002de30 ?_FInit@DLG@@AAEHXZ 0042ee30 f dlgwin.obj - 0001:0002e160 ?_FDlgCore@@YGHPAUHWND__@@IIJ@Z 0042f160 f dlgwin.obj - 0001:0002e470 ?IditDo@DLG@@QAEJJ@Z 0042f470 f dlgwin.obj - 0001:0002e4b0 ?SelectDit@DLG@@QAEXJ@Z 0042f4b0 f dlgwin.obj - 0001:0002e510 ?_LwGetRadioGroup@DLG@@AAEJJ@Z 0042f510 f dlgwin.obj - 0001:0002e570 ?_SetRadioGroup@DLG@@AAEXJJ@Z 0042f570 f dlgwin.obj - 0001:0002e5b0 ?_FGetCheckBox@DLG@@AAEHJ@Z 0042f5b0 f dlgwin.obj - 0001:0002e5f0 ?_SetCheckBox@DLG@@AAEXJH@Z 0042f5f0 f dlgwin.obj - 0001:0002e630 ?_GetEditText@DLG@@AAEXJPAVSTN@@@Z 0042f630 f dlgwin.obj - 0001:0002e690 ?_SetEditText@DLG@@AAEXJPAVSTN@@@Z 0042f690 f dlgwin.obj - 0001:0002e6d0 ?_FAddToList@DLG@@AAEHJPAVSTN@@@Z 0042f6d0 f dlgwin.obj - 0001:0002e730 ?_ClearList@DLG@@AAEXJ@Z 0042f730 f dlgwin.obj - 0001:0002e820 ?FWouldBe@CTL@@SGHJ@Z 0042f820 f ctl.obj - 0001:0002e840 ?FIs@CTL@@UAEHJ@Z 0042f840 f ctl.obj - 0001:0002e850 ?Cls@CTL@@UAEJXZ 0042f850 f ctl.obj - 0001:0002e860 ?FWouldBe@SCB@@SGHJ@Z 0042f860 f ctl.obj - 0001:0002e880 ?FIs@SCB@@UAEHJ@Z 0042f880 f ctl.obj - 0001:0002e890 ?Cls@SCB@@UAEJXZ 0042f890 f ctl.obj - 0001:0002e8a0 ?FWouldBe@WSB@@SGHJ@Z 0042f8a0 f ctl.obj - 0001:0002e8c0 ?FIs@WSB@@UAEHJ@Z 0042f8c0 f ctl.obj - 0001:0002e8d0 ?Cls@WSB@@UAEJXZ 0042f8d0 f ctl.obj - 0001:0002e8e0 ??0CTL@@IAE@PAUGCB@@@Z 0042f8e0 f ctl.obj - 0001:0002e900 ??1CTL@@MAE@XZ 0042f900 f ctl.obj - 0001:0002e940 ?_FSetHctl@CTL@@IAEHPAUHWND__@@@Z 0042f940 f ctl.obj - 0001:0002e980 ?PctlFromHctl@CTL@@SGPAV1@PAUHWND__@@@Z 0042f980 f ctl.obj - 0001:0002e9a0 ?_NewRc@CTL@@MAEXXZ 0042f9a0 f ctl.obj - 0001:0002ea20 ?PscbNew@SCB@@SGPAV1@PAUGCB@@KJJJ@Z 0042fa20 f ctl.obj - 0001:0002eae0 ?DxpNormal@SCB@@SGJXZ 0042fae0 f ctl.obj - 0001:0002eb00 ?DypNormal@SCB@@SGJXZ 0042fb00 f ctl.obj - 0001:0002eb20 ?GetStandardRc@SCB@@SGXKPAVRC@@0@Z 0042fb20 f ctl.obj - 0001:0002ec00 ?GetClientRc@SCB@@SGXKPAVRC@@0@Z 0042fc00 f ctl.obj - 0001:0002ec70 ?_FCreate@SCB@@IAEHJJJK@Z 0042fc70 f ctl.obj - 0001:0002ed80 ?SetVal@SCB@@QAEXJH@Z 0042fd80 f ctl.obj - 0001:0002edf0 ?SetValMinMax@SCB@@QAEXJJJH@Z 0042fdf0 f ctl.obj - 0001:0002ee80 ?TrackScroll@SCB@@UAEXJJ@Z 0042fe80 f ctl.obj - 0001:0002f020 ?PwsbNew@WSB@@SGPAV1@PAVGOB@@K@Z 00430020 f ctl.obj - 0001:0002f170 ??_ESCB@@UAEPAXI@Z 00430170 f ctl.obj - 0001:0002f170 ??_GSCB@@UAEPAXI@Z 00430170 f ctl.obj - 0001:0002f190 ??_GWSB@@UAEPAXI@Z 00430190 f ctl.obj - 0001:0002f190 ??_EWSB@@UAEPAXI@Z 00430190 f ctl.obj - 0001:0002f1b0 ??_GCTL@@MAEPAXI@Z 004301b0 f ctl.obj - 0001:0002f1b0 ??_ECTL@@MAEPAXI@Z 004301b0 f ctl.obj - 0001:0002f260 ?FWouldBe@EDCB@@SGHJ@Z 00430260 f text.obj - 0001:0002f280 ?FIs@EDCB@@UAEHJ@Z 00430280 f text.obj - 0001:0002f290 ?Cls@EDCB@@UAEJXZ 00430290 f text.obj - 0001:0002f2a0 ?FWouldBe@EDSL@@SGHJ@Z 004302a0 f text.obj - 0001:0002f2c0 ?FIs@EDSL@@UAEHJ@Z 004302c0 f text.obj - 0001:0002f2d0 ?Cls@EDSL@@UAEJXZ 004302d0 f text.obj - 0001:0002f2e0 ?FWouldBe@EDPL@@SGHJ@Z 004302e0 f text.obj - 0001:0002f300 ?FIs@EDPL@@UAEHJ@Z 00430300 f text.obj - 0001:0002f310 ?Cls@EDPL@@UAEJXZ 00430310 f text.obj - 0001:0002f320 ?FWouldBe@EDML@@SGHJ@Z 00430320 f text.obj - 0001:0002f340 ?FIs@EDML@@UAEHJ@Z 00430340 f text.obj - 0001:0002f350 ?Cls@EDML@@UAEJXZ 00430350 f text.obj - 0001:0002f360 ?FWouldBe@EDMW@@SGHJ@Z 00430360 f text.obj - 0001:0002f380 ?FIs@EDMW@@UAEHJ@Z 00430380 f text.obj - 0001:0002f390 ?Cls@EDMW@@UAEJXZ 00430390 f text.obj - 0001:0002f3a0 ??0EDPAR@@QAE@JPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 004303a0 f text.obj - 0001:0002f420 ?Set@EDPAR@@QAEXJPAVGOB@@KJPAVRC@@1JKJJJVACR@@2J@Z 00430420 f text.obj - 0001:0002f4a0 ??0EDCB@@IAE@PAUGCB@@J@Z 004304a0 f text.obj - 0001:0002f4f0 ??1EDCB@@UAE@XZ 004304f0 f text.obj - 0001:0002f520 ?_FInit@EDCB@@MAEHXZ 00430520 f text.obj - 0001:0002f5b0 ?Draw@EDCB@@UAEXPAVGNV@@PAVRC@@@Z 004305b0 f text.obj - 0001:0002f650 ?FCmdTrackMouse@EDCB@@UAEHPAUCMD_MOUSE@@@Z 00430650 f text.obj - 0001:0002f790 ?FCmdKey@EDCB@@UAEHPAUCMD_KEY@@@Z 00430790 f text.obj - 0001:0002fbe0 ?FCmdSelIdle@EDCB@@UAEHPAUCMD@@@Z 00430be0 f text.obj - 0001:0002fc60 ?FCmdActivateSel@EDCB@@UAEHPAUCMD@@@Z 00430c60 f text.obj - 0001:0002fc80 ?Activate@EDCB@@UAEXH@Z 00430c80 f text.obj - 0001:0002fcc0 ?_GetRcContent@EDCB@@MAEXPAVRC@@@Z 00430cc0 f text.obj - 0001:0002fcd0 ?_InitGnv@EDCB@@MAEXPAVGNV@@@Z 00430cd0 f text.obj - 0001:0002fd00 ?_NewRc@EDCB@@MAEXXZ 00430d00 f text.obj - 0001:0002fd10 ?SetSel@EDCB@@QAEXJJJ@Z 00430d10 f text.obj - 0001:0002fe00 ?_SwitchSel@EDCB@@IAEXHJ@Z 00430e00 f text.obj - 0001:0002fe80 ?ShowSel@EDCB@@QAEXHJ@Z 00430e80 f text.obj - 0001:00030050 ?_InvertSel@EDCB@@IAEXPAVGNV@@J@Z 00431050 f text.obj - 0001:00030120 ?_InvertIchRange@EDCB@@IAEXPAVGNV@@JJJ@Z 00431120 f text.obj - 0001:00030320 ?_UpdateLn@EDCB@@IAEXJJJJJ@Z 00431320 f text.obj - 0001:000304a0 ?_Scroll@EDCB@@IAEXJJJ@Z 004314a0 f text.obj - 0001:000304f0 ?_YpFromIch@EDCB@@MAEJJ@Z 004314f0 f text.obj - 0001:00030520 ?_ChFetch@EDCB@@IAEDJ@Z 00431520 f text.obj - 0001:00030550 ?_IchPrev@EDCB@@IAEJJH@Z 00431550 f text.obj - 0001:000305f0 ?_IchNext@EDCB@@IAEJJH@Z 004315f0 f text.obj - 0001:00030680 ??0EDPL@@IAE@PAVEDPAR@@@Z 00431680 f text.obj - 0001:00030720 ?_FInit@EDPL@@MAEHXZ 00431720 f text.obj - 0001:00030790 ?_YpFromLn@EDPL@@MAEJJ@Z 00431790 f text.obj - 0001:00030850 ?_LnFromYp@EDPL@@MAEJJ@Z 00431850 f text.obj - 0001:000308a0 ?_HiliteRc@EDPL@@MAEXPAVGNV@@PAVRC@@@Z 004318a0 f text.obj - 0001:000308c0 ?_XpFromIch@EDPL@@MAEJJ@Z 004318c0 f text.obj - 0001:000309b0 ?_IchFromLnXp@EDPL@@MAEJJJH@Z 004319b0 f text.obj - 0001:00030ab0 ?_DrawLine@EDPL@@MAEXPAVGNV@@J@Z 00431ab0 f text.obj - 0001:00030bc0 ?_XpOrigin@EDPL@@IAEJXZ 00431bc0 f text.obj - 0001:00030c30 ??0EDSL@@IAE@PAVEDPAR@@@Z 00431c30 f text.obj - 0001:00030c50 ?PedslNew@EDSL@@SGPAV1@PAVEDPAR@@@Z 00431c50 f text.obj - 0001:00030ca0 ?_FLockLn@EDSL@@MAEHJPAPADPAJ@Z 00431ca0 f text.obj - 0001:00030ce0 ?_UnlockLn@EDSL@@MAEXJPAD@Z 00431ce0 f text.obj - 0001:00030cf0 ?_LnFromIch@EDSL@@MAEJJ@Z 00431cf0 f text.obj - 0001:00030d10 ?_IchMinLn@EDSL@@MAEJJ@Z 00431d10 f text.obj - 0001:00030d30 ?IchMac@EDSL@@UAEJXZ 00431d30 f text.obj - 0001:00030d40 ?_LnMac@EDSL@@MAEJXZ 00431d40 f text.obj - 0001:00030d50 ?FReplace@EDSL@@UAEHPADJJJJ@Z 00431d50 f text.obj - 0001:00030ee0 ?_FFilterCh@EDSL@@MAEHD@Z 00431ee0 f text.obj - 0001:00030f00 ?CchFetch@EDSL@@UAEJPADJJ@Z 00431f00 f text.obj - 0001:00030f50 ??0EDML@@IAE@PAVEDPAR@@@Z 00431f50 f text.obj - 0001:00030f90 ??1EDML@@UAE@XZ 00431f90 f text.obj - 0001:00030fd0 ?PedmlNew@EDML@@SGPAV1@PAVEDPAR@@@Z 00431fd0 f text.obj - 0001:00031030 ?_FInit@EDML@@MAEHXZ 00432030 f text.obj - 0001:00031080 ?_FLockLn@EDML@@MAEHJPAPADPAJ@Z 00432080 f text.obj - 0001:00031150 ?_UnlockLn@EDML@@MAEXJPAD@Z 00432150 f text.obj - 0001:00031160 ?_LnFromIch@EDML@@MAEJJ@Z 00432160 f text.obj - 0001:00031200 ?_IchMinLn@EDML@@MAEJJ@Z 00432200 f text.obj - 0001:000312d0 ?IchMac@EDML@@UAEJXZ 004322d0 f text.obj - 0001:000312e0 ?_LnMac@EDML@@MAEJXZ 004322e0 f text.obj - 0001:000312f0 ?FReplace@EDML@@UAEHPADJJJJ@Z 004322f0 f text.obj - 0001:00031500 ?_FReplaceCore@EDML@@MAEHPADJJJ@Z 00432500 f text.obj - 0001:00031530 ?_ClnEstimate@EDML@@MAEJPADJ@Z 00432530 f text.obj - 0001:00031560 ?_LnReformat@EDML@@MAEJJPAJ0@Z 00432560 f text.obj - 0001:00031600 ?_FFilterCh@EDML@@MAEHD@Z 00432600 f text.obj - 0001:00031620 ?CchFetch@EDML@@UAEJPADJJ@Z 00432620 f text.obj - 0001:00031670 ??0EDMW@@IAE@PAVEDPAR@@@Z 00432670 f text.obj - 0001:00031690 ?PedmwNew@EDMW@@SGPAV1@PAVEDPAR@@@Z 00432690 f text.obj - 0001:000316f0 ?_ClnEstimate@EDMW@@MAEJPADJ@Z 004326f0 f text.obj - 0001:000317b0 ?_LnReformat@EDMW@@MAEJJPAJ0@Z 004327b0 f text.obj - 0001:00031b80 ?_CichGetBreakables@EDMW@@IAEJPADJPAJJ@Z 00432b80 f text.obj - 0001:00031c10 ?_NewRc@EDMW@@MAEXXZ 00432c10 f text.obj - 0001:00031c60 ??_GEDCB@@UAEPAXI@Z 00432c60 f text.obj - 0001:00031c60 ??_EEDCB@@UAEPAXI@Z 00432c60 f text.obj - 0001:00031c80 ??_GEDPL@@UAEPAXI@Z 00432c80 f text.obj - 0001:00031c80 ??_EEDPL@@UAEPAXI@Z 00432c80 f text.obj - 0001:00031ca0 ??_GEDSL@@UAEPAXI@Z 00432ca0 f text.obj - 0001:00031ca0 ??_EEDSL@@UAEPAXI@Z 00432ca0 f text.obj - 0001:00031cc0 ??_GEDML@@UAEPAXI@Z 00432cc0 f text.obj - 0001:00031cc0 ??_EEDML@@UAEPAXI@Z 00432cc0 f text.obj - 0001:00031ce0 ??_EEDMW@@UAEPAXI@Z 00432ce0 f text.obj - 0001:00031ce0 ??_GEDMW@@UAEPAXI@Z 00432ce0 f text.obj - 0001:00031d00 ?FWouldBe@TXTB@@SGHJ@Z 00432d00 f rtxt.obj - 0001:00031d20 ?FIs@TXTB@@UAEHJ@Z 00432d20 f rtxt.obj - 0001:00031d30 ?Cls@TXTB@@UAEJXZ 00432d30 f rtxt.obj - 0001:00031d40 ?FWouldBe@TXRD@@SGHJ@Z 00432d40 f rtxt.obj - 0001:00031d60 ?FIs@TXRD@@UAEHJ@Z 00432d60 f rtxt.obj - 0001:00031d70 ?Cls@TXRD@@UAEJXZ 00432d70 f rtxt.obj - 0001:00031d80 ?FWouldBe@TXTG@@SGHJ@Z 00432d80 f rtxt.obj - 0001:00031da0 ?FIs@TXTG@@UAEHJ@Z 00432da0 f rtxt.obj - 0001:00031db0 ?Cls@TXTG@@UAEJXZ 00432db0 f rtxt.obj - 0001:00031dc0 ?FWouldBe@TXRG@@SGHJ@Z 00432dc0 f rtxt.obj - 0001:00031de0 ?FIs@TXRG@@UAEHJ@Z 00432de0 f rtxt.obj - 0001:00031df0 ?Cls@TXRG@@UAEJXZ 00432df0 f rtxt.obj - 0001:00031e00 ?FWouldBe@RTUN@@SGHJ@Z 00432e00 f rtxt.obj - 0001:00031e20 ?FIs@RTUN@@UAEHJ@Z 00432e20 f rtxt.obj - 0001:00031e30 ?Cls@RTUN@@UAEJXZ 00432e30 f rtxt.obj - 0001:00031e40 ??0TXTB@@IAE@PAVDOCB@@K@Z 00432e40 f rtxt.obj - 0001:00031e80 ??1TXTB@@MAE@XZ 00432e80 f rtxt.obj - 0001:00031ed0 ?_FInit@TXTB@@MAEHPAVFNI@@PAVBSF@@F@Z 00432ed0 f rtxt.obj - 0001:00031fb0 ?_FLoad@TXTB@@MAEHF@Z 00432fb0 f rtxt.obj - 0001:00032040 ?CpMac@TXTB@@QAEJXZ 00433040 f rtxt.obj - 0001:00032050 ?SuspendUndo@TXTB@@UAEXXZ 00433050 f rtxt.obj - 0001:00032060 ?ResumeUndo@TXTB@@UAEXXZ 00433060 f rtxt.obj - 0001:00032070 ?FSetUndo@TXTB@@UAEHJJJ@Z 00433070 f rtxt.obj - 0001:00032080 ?CancelUndo@TXTB@@UAEXXZ 00433080 f rtxt.obj - 0001:00032090 ?CommitUndo@TXTB@@UAEXXZ 00433090 f rtxt.obj - 0001:000320a0 ?BumpCombineUndo@TXTB@@UAEXXZ 004330a0 f rtxt.obj - 0001:000320b0 ?FFind@TXTB@@UAEHPADJJPAJ1H@Z 004330b0 f rtxt.obj - 0001:000321d0 ?HideSel@TXTB@@UAEXXZ 004331d0 f rtxt.obj - 0001:00032200 ?SetSel@TXTB@@UAEXJJJ@Z 00433200 f rtxt.obj - 0001:00032240 ?ShowSel@TXTB@@UAEXXZ 00433240 f rtxt.obj - 0001:00032270 ?_CacheRange@TXTB@@MAEXJJ@Z 00433270 f rtxt.obj - 0001:000323c0 ?_InvalCache@TXTB@@MAEXJJJ@Z 004333c0 f rtxt.obj - 0001:00032470 ?_ChFetch@TXTB@@MAEDJ@Z 00433470 f rtxt.obj - 0001:000324a0 ?FetchRgch@TXTB@@UAEXJJPAD@Z 004334a0 f rtxt.obj - 0001:00032510 ?FMinPara@TXTB@@QAEHJ@Z 00433510 f rtxt.obj - 0001:000325a0 ?CpMinPara@TXTB@@QAEJJ@Z 004335a0 f rtxt.obj - 0001:00032650 ?CpLimPara@TXTB@@QAEJJ@Z 00433650 f rtxt.obj - 0001:00032710 ?CpPrev@TXTB@@QAEJJH@Z 00433710 f rtxt.obj - 0001:000327a0 ?CpNext@TXTB@@QAEJJH@Z 004337a0 f rtxt.obj - 0001:00032840 ?InvalAllDdg@TXTB@@UAEXJJJK@Z 00433840 f rtxt.obj - 0001:000328c0 ?SetDxpDef@TXTB@@UAEXJ@Z 004338c0 f rtxt.obj - 0001:00032900 ?FReplaceRgch@TXTB@@UAEHPAXJJJK@Z 00433900 f rtxt.obj - 0001:00032960 ?FReplaceFlo@TXTB@@UAEHPAUFLO@@HJJFK@Z 00433960 f rtxt.obj - 0001:00032a20 ?FReplaceBsf@TXTB@@UAEHPAVBSF@@JJJJK@Z 00433a20 f rtxt.obj - 0001:00032a90 ?FReplaceTxtb@TXTB@@UAEHPAV1@JJJJK@Z 00433a90 f rtxt.obj - 0001:00032ac0 ?FGetObjectRc@TXTB@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 00433ac0 f rtxt.obj - 0001:00032ad0 ?FDrawObject@TXTB@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00433ad0 f rtxt.obj - 0001:00032ae0 ?FGetFni@TXTB@@UAEHPAVFNI@@@Z 00433ae0 f rtxt.obj - 0001:00032b20 ?ExportFormats@TXTB@@UAEXPAVCLIP@@@Z 00433b20 f rtxt.obj - 0001:00032b70 ??0TXRD@@IAE@PAVDOCB@@K@Z 00433b70 f rtxt.obj - 0001:00032bb0 ??1TXRD@@MAE@XZ 00433bb0 f rtxt.obj - 0001:00032c10 ?PtxrdNew@TXRD@@SGPAV1@PAVFNI@@@Z 00433c10 f rtxt.obj - 0001:00032c60 ?_FInit@TXRD@@IAEHPAVFNI@@K@Z 00433c60 f rtxt.obj - 0001:00032da0 ?_FReadChunk@TXRD@@MAEHPAVCFL@@KKH@Z 00433da0 f rtxt.obj - 0001:00033240 ?_FOpenArg@TXRD@@MAEHJEFF@Z 00434240 f rtxt.obj - 0001:00033330 ?FGetFni@TXRD@@UAEHPAVFNI@@@Z 00434330 f rtxt.obj - 0001:00033370 ?FGetFniSave@TXRD@@UAEHPAVFNI@@@Z 00434370 f rtxt.obj - 0001:00033390 ?FSaveToFni@TXRD@@UAEHPAVFNI@@H@Z 00434390 f rtxt.obj - 0001:000334b0 ?FSaveToChunk@TXRD@@UAEHPAVCFL@@PAUCKI@@H@Z 004344b0 f rtxt.obj - 0001:00033760 ?PddgNew@TXRD@@UAEPAVDDG@@PAUGCB@@@Z 00434760 f rtxt.obj - 0001:00033770 ?_FFindMpe@TXRD@@IAEHKPAUMPE@1@PAJ1@Z 00434770 f rtxt.obj - 0001:00033880 ?_FFetchProp@TXRD@@IAEHJPAEPAJ11@Z 00434880 f rtxt.obj - 0001:00033940 ?_AdjustMpe@TXRD@@IAEXJJJ@Z 00434940 f rtxt.obj - 0001:00033bf0 ?_FEnsureInAg@TXRD@@IAEHEPAXJPAJ@Z 00434bf0 f rtxt.obj - 0001:00033d10 ?_ReleaseInAg@TXRD@@IAEXJ@Z 00434d10 f rtxt.obj - 0001:00033d90 ?_AddRefInAg@TXRD@@IAEXJ@Z 00434d90 f rtxt.obj - 0001:00033df0 ?_FSprmInAg@TXRD@@KGHE@Z 00434df0 f rtxt.obj - 0001:00033e20 ?_ReleaseSprmLw@TXRD@@IAEXEJ@Z 00434e20 f rtxt.obj - 0001:00033e50 ?_AddRefSprmLw@TXRD@@IAEXEJ@Z 00434e50 f rtxt.obj - 0001:00033e80 ?_FGetRgspvmFromChp@TXRD@@IAEHPAUCHP@@0PAUSPVM@1@PAJ@Z 00434e80 f rtxt.obj - 0001:00033f20 ?_FGetRgspvmFromPap@TXRD@@IAEHPAUPAP@@0PAUSPVM@1@PAJ@Z 00434f20 f rtxt.obj - 0001:00033fc0 ?_ReleaseRgspvm@TXRD@@IAEXPAUSPVM@1@J@Z 00434fc0 f rtxt.obj - 0001:00033ff0 ?_ApplyRgspvm@TXRD@@IAEXJJPAUSPVM@1@J@Z 00434ff0 f rtxt.obj - 0001:00034300 ?_TGetLwFromChp@TXRD@@IAEHEPAUCHP@@0PAJ1@Z 00435300 f rtxt.obj - 0001:00034560 ?FetchChp@TXRD@@QAEXJPAUCHP@@PAJ1@Z 00435560 f rtxt.obj - 0001:00034770 ?FApplyChp@TXRD@@QAEHJJPAUCHP@@0K@Z 00435770 f rtxt.obj - 0001:00034860 ?_GetParaBounds@TXRD@@IAEXPAJ0H@Z 00435860 f rtxt.obj - 0001:00034900 ?_TGetLwFromPap@TXRD@@IAEHEPAUPAP@@0PAJ1@Z 00435900 f rtxt.obj - 0001:00034a50 ?FetchPap@TXRD@@QAEXJPAUPAP@@PAJ1@Z 00435a50 f rtxt.obj - 0001:00034be0 ?FApplyPap@TXRD@@QAEHJJPAUPAP@@0PAJ1HK@Z 00435be0 f rtxt.obj - 0001:00034d30 ?FSetUndo@TXRD@@UAEHJJJ@Z 00435d30 f rtxt.obj - 0001:00034db0 ?CancelUndo@TXRD@@UAEXXZ 00435db0 f rtxt.obj - 0001:00034df0 ?CommitUndo@TXRD@@UAEXXZ 00435df0 f rtxt.obj - 0001:00034e80 ?FReplaceRgch@TXRD@@UAEHPAXJJJK@Z 00435e80 f rtxt.obj - 0001:00034f40 ?FReplaceRgch@TXRD@@QAEHPAXJJJPAUCHP@@PAUPAP@@K@Z 00435f40 f rtxt.obj - 0001:00034f80 ?_FReplaceCore@TXRD@@IAEHPAXPAUFLO@@HPAVBSF@@JJJJPAUCHP@@PAUPAP@@K@Z 00435f80 f rtxt.obj - 0001:00035220 ?FReplaceFlo@TXRD@@UAEHPAUFLO@@HJJFK@Z 00436220 f rtxt.obj - 0001:00035340 ?FReplaceBsf@TXRD@@UAEHPAVBSF@@JJJJK@Z 00436340 f rtxt.obj - 0001:00035400 ?FReplaceTxtb@TXRD@@UAEHPAVTXTB@@JJJJK@Z 00436400 f rtxt.obj - 0001:00035430 ?FReplaceTxtb@TXRD@@QAEHPAVTXTB@@JJJJPAUCHP@@PAUPAP@@K@Z 00436430 f rtxt.obj - 0001:00035470 ?FReplaceTxrd@TXRD@@QAEHPAV1@JJJJK@Z 00436470 f rtxt.obj - 0001:00035760 ?_CopyProps@TXRD@@IAEXPAV1@JJJJEE@Z 00436760 f rtxt.obj - 0001:000359c0 ?FInsertObject@TXRD@@UAEHPAXJJJPAUCHP@@K@Z 004369c0 f rtxt.obj - 0001:00035b40 ?FApplyObjectProps@TXRD@@UAEHPAXJJK@Z 00436b40 f rtxt.obj - 0001:00035c50 ?FGetObjectRc@TXRD@@UAEHJPAVGNV@@PAUCHP@@PAVRC@@@Z 00436c50 f rtxt.obj - 0001:00035cc0 ?_FGetObjectRc@TXRD@@MAEHJEPAVGNV@@PAUCHP@@PAVRC@@@Z 00436cc0 f rtxt.obj - 0001:00035cd0 ?FDrawObject@TXRD@@UAEHJPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00436cd0 f rtxt.obj - 0001:00035d50 ?_FDrawObject@TXRD@@MAEHJEPAVGNV@@PAJJPAUCHP@@PAVRC@@@Z 00436d50 f rtxt.obj - 0001:00035d60 ?PrtunNew@RTUN@@SGPAV1@JPAVTXRD@@JJJ@Z 00436d60 f rtxt.obj - 0001:00035e20 ??1RTUN@@UAE@XZ 00436e20 f rtxt.obj - 0001:00035e50 ?FUndo@RTUN@@UAEHPAVDOCB@@@Z 00436e50 f rtxt.obj - 0001:00035ff0 ?FDo@RTUN@@UAEHPAVDOCB@@@Z 00436ff0 f rtxt.obj - 0001:00036000 ?FCombine@RTUN@@QAEHPAV1@@Z 00437000 f rtxt.obj - 0001:000360e0 ??_ETXTB@@MAEPAXI@Z 004370e0 f rtxt.obj - 0001:000360e0 ??_GTXTB@@MAEPAXI@Z 004370e0 f rtxt.obj - 0001:00036100 ??_ETXRD@@MAEPAXI@Z 00437100 f rtxt.obj - 0001:00036100 ??_GTXRD@@MAEPAXI@Z 00437100 f rtxt.obj - 0001:00036120 ??_GRTUN@@UAEPAXI@Z 00437120 f rtxt.obj - 0001:00036120 ??_ERTUN@@UAEPAXI@Z 00437120 f rtxt.obj - 0001:00036140 ??_9@$BBBA@A 00437140 f rtxt.obj - 0001:00036150 ?Init@CHR@@QAEXPAUCHP@@PAUPAP@@PAVTXTB@@PAVGNV@@JJJJJ@Z 00437150 f rtxt2.obj - 0001:000362e0 ?GetNextRun@CHR@@QAEXH@Z 004372e0 f rtxt2.obj - 0001:00036650 ?_FFit@CHR@@AAEHXZ 00437650 f rtxt2.obj - 0001:000366b0 ?_SetToBop@CHR@@AAEXXZ 004376b0 f rtxt2.obj - 0001:00036770 ?_SkipIgnores@CHR@@AAEXXZ 00437770 f rtxt2.obj - 0001:000367f0 ?_DoTab@CHR@@AAEXXZ 004377f0 f rtxt2.obj - 0001:000368a0 ??0TXTG@@IAE@PAVTXTB@@PAUGCB@@@Z 004378a0 f rtxt2.obj - 0001:00036900 ??1TXTG@@MAE@XZ 00437900 f rtxt2.obj - 0001:00036950 ?_FInit@TXTG@@MAEHXZ 00437950 f rtxt2.obj - 0001:00036a70 ?_Activate@TXTG@@MAEXH@Z 00437a70 f rtxt2.obj - 0001:00036aa0 ?_FetchLin@TXTG@@IAEXJPAULIN@1@PAJ@Z 00437aa0 f rtxt2.obj - 0001:00036c60 ?_FindCp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00437c60 f rtxt2.obj - 0001:00036ed0 ?_FindDyp@TXTG@@IAEXJPAULIN@1@PAJH@Z 00437ed0 f rtxt2.obj - 0001:000371a0 ?_Reformat@TXTG@@IAEXJJJPAJ00@Z 004381a0 f rtxt2.obj - 0001:00037520 ?_CalcLine@TXTG@@IAEXJJPAULIN@1@@Z 00438520 f rtxt2.obj - 0001:000378d0 ?_FGetCpFromPt@TXTG@@IAEHJJPAJH@Z 004388d0 f rtxt2.obj - 0001:00037970 ?_FGetCpFromXp@TXTG@@IAEHJPAULIN@1@PAJH@Z 00438970 f rtxt2.obj - 0001:00037c10 ?_GetXpYpFromCp@TXTG@@IAEXJPAJ000H@Z 00438c10 f rtxt2.obj - 0001:00037ca0 ?_DxpFromCp@TXTG@@IAEJJJ@Z 00438ca0 f rtxt2.obj - 0001:00037de0 ?FReplace@TXTG@@UAEHPADJJJ@Z 00438de0 f rtxt2.obj - 0001:00037e60 ?InvalCp@TXTG@@UAEXJJJ@Z 00438e60 f rtxt2.obj - 0001:00037f50 ?_ReformatAndDraw@TXTG@@IAEXJJJ@Z 00438f50 f rtxt2.obj - 0001:000380c0 ?_Scroll@TXTG@@MAEXJJJJ@Z 004390c0 f rtxt2.obj - 0001:00038500 ?_ScrollDxpDyp@TXTG@@MAEXJJ@Z 00439500 f rtxt2.obj - 0001:00038590 ?Draw@TXTG@@UAEXPAVGNV@@PAVRC@@@Z 00439590 f rtxt2.obj - 0001:000385f0 ?DrawLines@TXTG@@UAEXPAVGNV@@PAVRC@@JJJJK@Z 004395f0 f rtxt2.obj - 0001:000388e0 ?_DrawLinExtra@TXTG@@MAEXPAVGNV@@PAVRC@@PAULIN@1@JJK@Z 004398e0 f rtxt2.obj - 0001:000388f0 ?FCmdTrackMouse@TXTG@@UAEHPAUCMD_MOUSE@@@Z 004398f0 f rtxt2.obj - 0001:00038ae0 ?FCmdSelIdle@TXTG@@UAEHPAUCMD@@@Z 00439ae0 f rtxt2.obj - 0001:00038b60 ?GetSel@TXTG@@UAEXPAJ0@Z 00439b60 f rtxt2.obj - 0001:00038b80 ?SetSel@TXTG@@UAEXJJJ@Z 00439b80 f rtxt2.obj - 0001:00038c90 ?ShowSel@TXTG@@QAEXXZ 00439c90 f rtxt2.obj - 0001:00038f00 ?HideSel@TXTG@@UAEXXZ 00439f00 f rtxt2.obj - 0001:00038f30 ?_SwitchSel@TXTG@@IAEXHJ@Z 00439f30 f rtxt2.obj - 0001:00038fb0 ?_InvertSel@TXTG@@IAEXPAVGNV@@J@Z 00439fb0 f rtxt2.obj - 0001:00039060 ?_InvertCpRange@TXTG@@IAEXPAVGNV@@JJJ@Z 0043a060 f rtxt2.obj - 0001:00039260 ?FCmdKey@TXTG@@UAEHPAUCMD_KEY@@@Z 0043a260 f rtxt2.obj - 0001:00039830 ?_ScvMax@TXTG@@MAEJH@Z 0043a830 f rtxt2.obj - 0001:00039890 ?_DxpDoc@TXTG@@MAEJXZ 0043a890 f rtxt2.obj - 0001:000398a0 ?SetDxpTab@TXTG@@UAEXJ@Z 0043a8a0 f rtxt2.obj - 0001:000398b0 ?SetDxpDoc@TXTG@@UAEXJ@Z 0043a8b0 f rtxt2.obj - 0001:000398e0 ?ShowRuler@TXTG@@UAEXH@Z 0043a8e0 f rtxt2.obj - 0001:00039a00 ?_DypTrul@TXTG@@MAEJXZ 0043aa00 f rtxt2.obj - 0001:00039a10 ?_PtrulNew@TXTG@@MAEPAVTRUL@@PAUGCB@@@Z 0043aa10 f rtxt2.obj - 0001:00039a20 ?GetNaturalSize@TXTG@@UAEXPAJ0@Z 0043aa20 f rtxt2.obj - 0001:00039a70 ??0TXRG@@IAE@PAVTXRD@@PAUGCB@@@Z 0043aa70 f rtxt2.obj - 0001:00039aa0 ?Pcmm@TXRG@@MAEPAUCMM@CMH@@XZ 0043aaa0 f rtxt2.obj - 0001:00039ab0 ?PtxrgNew@TXRG@@SGPAV1@PAVTXRD@@PAUGCB@@@Z 0043aab0 f rtxt2.obj - 0001:00039b20 ?_FetchChp@TXRG@@MAEXJPAUCHP@@PAJ1@Z 0043ab20 f rtxt2.obj - 0001:00039b50 ?_FetchPap@TXRG@@MAEXJPAUPAP@@PAJ1@Z 0043ab50 f rtxt2.obj - 0001:00039b80 ?SetDxpTab@TXRG@@UAEXJ@Z 0043ab80 f rtxt2.obj - 0001:00039c70 ?SetSel@TXRG@@UAEXJJJ@Z 0043ac70 f rtxt2.obj - 0001:00039d20 ?_FetchChpSel@TXRG@@IAEXJJPAUCHP@@@Z 0043ad20 f rtxt2.obj - 0001:00039db0 ?_EnsureChpIns@TXRG@@IAEXXZ 0043adb0 f rtxt2.obj - 0001:00039df0 ?FReplace@TXRG@@UAEHPADJJJ@Z 0043adf0 f rtxt2.obj - 0001:00039f00 ?_FCopySel@TXRG@@MAEHPAPAVDOCB@@@Z 0043af00 f rtxt2.obj - 0001:00039fc0 ?_ClearSel@TXRG@@MAEXXZ 0043afc0 f rtxt2.obj - 0001:00039ff0 ?_FPaste@TXRG@@MAEHPAVCLIP@@HJ@Z 0043aff0 f rtxt2.obj - 0001:0003a190 ?FApplyChp@TXRG@@UAEHPAUCHP@@0@Z 0043b190 f rtxt2.obj - 0001:0003a300 ?FApplyPap@TXRG@@UAEHPAUPAP@@0H@Z 0043b300 f rtxt2.obj - 0001:0003a3a0 ?FCmdApplyProperty@TXRG@@UAEHPAUCMD@@@Z 0043b3a0 f rtxt2.obj - 0001:0003a640 ?_FGetOtherSize@TXRG@@MAEHPAJ@Z 0043b640 f rtxt2.obj - 0001:0003a650 ?_FGetOtherSubSuper@TXRG@@MAEHPAJ@Z 0043b650 f rtxt2.obj - 0001:0003a660 ?FEnablePropCmd@TXRG@@UAEHPAUCMD@@PAK@Z 0043b660 f rtxt2.obj - 0001:0003a8c0 ??_ETXTG@@MAEPAXI@Z 0043b8c0 f rtxt2.obj - 0001:0003a8c0 ??_GTXTG@@MAEPAXI@Z 0043b8c0 f rtxt2.obj - 0001:0003a8e0 ??_GTXRG@@UAEPAXI@Z 0043b8e0 f rtxt2.obj - 0001:0003a8e0 ??_ETXRG@@UAEPAXI@Z 0043b8e0 f rtxt2.obj - 0001:0003a900 ?FWouldBe@MBMP@@SGHJ@Z 0043b900 f mbmp.obj - 0001:0003a920 ?FIs@MBMP@@UAEHJ@Z 0043b920 f mbmp.obj - 0001:0003a930 ?Cls@MBMP@@UAEJXZ 0043b930 f mbmp.obj - 0001:0003a940 ??1MBMP@@UAE@XZ 0043b940 f mbmp.obj - 0001:0003a960 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 0043b960 f mbmp.obj - 0001:0003a9d0 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 0043b9d0 f mbmp.obj - 0001:0003adb0 ?CbOnFile@MBMP@@UAEJXZ 0043bdb0 f mbmp.obj - 0001:0003adc0 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 0043bdc0 f mbmp.obj - 0001:0003ae20 ?GetRc@MBMP@@QAEXPAVRC@@@Z 0043be20 f mbmp.obj - 0001:0003ae60 ??_EMBMP@@UAEPAXI@Z 0043be60 f mbmp.obj - 0001:0003ae60 ??_GMBMP@@UAEPAXI@Z 0043be60 f mbmp.obj - 0001:0003afc0 ?Pcmm@APP@@MAEPAUCMM@CMH@@XZ 0043bfc0 f ft.obj - 0001:0003afd0 ?FWouldBe@APP@@SGHJ@Z 0043bfd0 f ft.obj - 0001:0003aff0 ?FIs@APP@@UAEHJ@Z 0043bff0 f ft.obj - 0001:0003b000 ?Cls@APP@@UAEJXZ 0043c000 f ft.obj - 0001:0003b010 ?FrameMain@@YGXXZ 0043c010 f ft.obj - 0001:0003b030 ?GetStnAppName@APP@@UAEXPAVSTN@@@Z 0043c030 f ft.obj - 0001:0003b050 ?_FInit@APP@@MAEHKKJ@Z 0043c050 f ft.obj - 0001:0003b090 ?FCmdTestSuite@APP@@QAEHPAUCMD@@@Z 0043c090 f ft.obj - 0001:0003b0a0 ?FWouldBe@GPRC@@SGHJ@Z 0043c0a0 f ft.obj - 0001:0003b0c0 ?FIs@GPRC@@UAEHJ@Z 0043c0c0 f ft.obj - 0001:0003b0d0 ?Cls@GPRC@@UAEJXZ 0043c0d0 f ft.obj - 0001:0003b0e0 ?FWouldBe@GFRC@@SGHJ@Z 0043c0e0 f ft.obj - 0001:0003b100 ?FIs@GFRC@@UAEHJ@Z 0043c100 f ft.obj - 0001:0003b110 ?Cls@GFRC@@UAEJXZ 0043c110 f ft.obj - 0001:0003b120 ??0GPRC@@QAE@PAUGCB@@PAUAPT@@VACR@@2H@Z 0043c120 f ft.obj - 0001:0003b180 ??1GPRC@@UAE@XZ 0043c180 f ft.obj - 0001:0003b1b0 ?Draw@GPRC@@UAEXPAVGNV@@PAVRC@@@Z 0043c1b0 f ft.obj - 0001:0003b340 ?FCmdTrackMouse@GPRC@@UAEHPAUCMD_MOUSE@@@Z 0043c340 f ft.obj - 0001:0003b4f0 ??0GFRC@@QAE@PAUGCB@@VACR@@H@Z 0043c4f0 f ft.obj - 0001:0003b530 ?Draw@GFRC@@UAEXPAVGNV@@PAVRC@@@Z 0043c530 f ft.obj - 0001:0003b5b0 ?MouseDown@GFRC@@UAEXJJJK@Z 0043c5b0 f ft.obj - 0001:0003b600 ?FWouldBe@TDC@@SGHJ@Z 0043c600 f ft.obj - 0001:0003b620 ?FIs@TDC@@UAEHJ@Z 0043c620 f ft.obj - 0001:0003b630 ?Cls@TDC@@UAEJXZ 0043c630 f ft.obj - 0001:0003b640 ?_NewRc@TDC@@MAEXXZ 0043c640 f ft.obj - 0001:0003b730 ?Draw@TDC@@UAEXPAVGNV@@PAVRC@@@Z 0043c730 f ft.obj - 0001:0003b760 ?FWouldBe@DWN@@SGHJ@Z 0043c760 f ft.obj - 0001:0003b780 ?FIs@DWN@@UAEHJ@Z 0043c780 f ft.obj - 0001:0003b790 ?Cls@DWN@@UAEJXZ 0043c790 f ft.obj - 0001:0003b7a0 ?PdwnNew@DWN@@SGPAV1@XZ 0043c7a0 f ft.obj - 0001:0003bcd0 ?Pcmm@DWN@@MAEPAUCMM@CMH@@XZ 0043ccd0 f ft.obj - 0001:0003bce0 ?FCmdScroll@DWN@@UAEHPAUCMD@@@Z 0043cce0 f ft.obj - 0001:0003be40 ?FWouldBe@TTW@@SGHJ@Z 0043ce40 f ft.obj - 0001:0003be60 ?FIs@TTW@@UAEHJ@Z 0043ce60 f ft.obj - 0001:0003be70 ?Cls@TTW@@UAEJXZ 0043ce70 f ft.obj - 0001:0003be80 ?PttwNew@TTW@@SGPAV1@XZ 0043ce80 f ft.obj - 0001:0003bfb0 ?Draw@TTW@@UAEXPAVGNV@@PAVRC@@@Z 0043cfb0 f ft.obj - 0001:0003c220 ?MouseDown@TTW@@UAEXJJJK@Z 0043d220 f ft.obj - 0001:0003c270 ?FWouldBe@RTW@@SGHJ@Z 0043d270 f ft.obj - 0001:0003c290 ?FIs@RTW@@UAEHJ@Z 0043d290 f ft.obj - 0001:0003c2a0 ?Cls@RTW@@UAEJXZ 0043d2a0 f ft.obj - 0001:0003c2b0 ?PrtwNew@RTW@@SGPAV1@XZ 0043d2b0 f ft.obj - 0001:0003c360 ?FCmdNewTestWnd@APP@@QAEHPAUCMD@@@Z 0043d360 f ft.obj - 0001:0003c440 ?FCmdTextTestWnd@APP@@QAEHPAUCMD@@@Z 0043d440 f ft.obj - 0001:0003c450 ?FCmdTimeTestRc@APP@@QAEHPAUCMD@@@Z 0043d450 f ft.obj - 0001:0003c460 ?MouseDown@RTW@@UAEXJJJK@Z 0043d460 f ft.obj - 0001:0003c700 ?Draw@RTW@@UAEXPAVGNV@@PAVRC@@@Z 0043d700 f ft.obj - 0001:0003c7f0 ?FCmdMacro@APP@@QAEHPAUCMD@@@Z 0043d7f0 f ft.obj - 0001:0003c920 ?FEnableMacro@APP@@QAEHPAUCMD@@PAK@Z 0043d920 f ft.obj - 0001:0003c960 ?FCmdTestFni@APP@@QAEHPAUCMD@@@Z 0043d960 f ft.obj - 0001:0003ca30 ?PtMap@WOP@@QAE?AVPT@@JJJ@Z 0043da30 f ft.obj - 0001:0003cac0 ??0DOCP@@QAE@XZ 0043dac0 f ft.obj - 0001:0003cb20 ?PddgNew@DOCP@@UAEPAVDDG@@PAUGCB@@@Z 0043db20 f ft.obj - 0001:0003cb30 ?GetRcPic@DOCP@@QAEXPAVRC@@@Z 0043db30 f ft.obj - 0001:0003cba0 ??0DDP@@IAE@PAVDOCP@@PAUGCB@@@Z 0043dba0 f ft.obj - 0001:0003cbc0 ?PddpNew@DDP@@SGPAV1@PAVDOCP@@PAUGCB@@@Z 0043dbc0 f ft.obj - 0001:0003cc30 ?Draw@DDP@@UAEXPAVGNV@@PAVRC@@@Z 0043dc30 f ft.obj - 0001:0003cd10 ?DrawRc@DDP@@QAEXPAVGNV@@@Z 0043dd10 f ft.obj - 0001:0003cd40 ?DrawNumbers@DDP@@QAEXPAVGNV@@@Z 0043dd40 f ft.obj - 0001:0003cda0 ?MouseDown@DDP@@UAEXJJJK@Z 0043dda0 f ft.obj - 0001:0003cf40 ?FCmdTestPerspective@APP@@QAEHPAUCMD@@@Z 0043df40 f ft.obj - 0001:0003cf80 ??0DOCPIC@@IAE@XZ 0043df80 f ft.obj - 0001:0003cfa0 ??1DOCPIC@@UAE@XZ 0043dfa0 f ft.obj - 0001:0003d060 ?PdocpicNew@DOCPIC@@SGPAV1@XZ 0043e060 f ft.obj - 0001:0003d250 ?PddgNew@DOCPIC@@UAEPAVDDG@@PAUGCB@@@Z 0043e250 f ft.obj - 0001:0003d260 ?FSaveToFni@DOCPIC@@UAEHPAVFNI@@H@Z 0043e260 f ft.obj - 0001:0003d2e0 ??0DDPIC@@IAE@PAVDOCPIC@@PAUGCB@@@Z 0043e2e0 f ft.obj - 0001:0003d300 ?PddpicNew@DDPIC@@SGPAV1@PAVDOCPIC@@PAUGCB@@@Z 0043e300 f ft.obj - 0001:0003d370 ?Draw@DDPIC@@UAEXPAVGNV@@PAVRC@@@Z 0043e370 f ft.obj - 0001:0003d460 ?FCmdTestPictures@APP@@QAEHPAUCMD@@@Z 0043e460 f ft.obj - 0001:0003d490 ??0DOCGPT@@IAE@XZ 0043e490 f ft.obj - 0001:0003d4b0 ??1DOCGPT@@UAE@XZ 0043e4b0 f ft.obj - 0001:0003d4e0 ?PdocgptNew@DOCGPT@@SGPAV1@XZ 0043e4e0 f ft.obj - 0001:0003d9b0 ?PddgNew@DOCGPT@@UAEPAVDDG@@PAUGCB@@@Z 0043e9b0 f ft.obj - 0001:0003d9c0 ??0DDGPT@@IAE@PAVDOCGPT@@PAUGCB@@@Z 0043e9c0 f ft.obj - 0001:0003d9e0 ?PddgptNew@DDGPT@@SGPAV1@PAVDOCGPT@@PAUGCB@@@Z 0043e9e0 f ft.obj - 0001:0003da50 ?Draw@DDGPT@@UAEXPAVGNV@@PAVRC@@@Z 0043ea50 f ft.obj - 0001:0003dad0 ?FCmdTestMbmps@APP@@QAEHPAUCMD@@@Z 0043ead0 f ft.obj - 0001:0003db00 ?FCmdFastUpdate@APP@@QAEHPAUCMD@@@Z 0043eb00 f ft.obj - 0001:0003db10 ??0TAN@@IAE@PAUGCB@@@Z 0043eb10 f ft.obj - 0001:0003db30 ?Pcmm@TAN@@MAEPAUCMM@CMH@@XZ 0043eb30 f ft.obj - 0001:0003db40 ?PtanNew@TAN@@SGPAV1@XZ 0043eb40 f ft.obj - 0001:0003dce0 ?FCmdAlarm@TAN@@UAEHPAUCMD@@@Z 0043ece0 f ft.obj - 0001:0003ddf0 ?Draw@TAN@@UAEXPAVGNV@@PAVRC@@@Z 0043edf0 f ft.obj - 0001:0003de20 ?FCmdTextEdit@APP@@QAEHPAUCMD@@@Z 0043ee20 f ft.obj - 0001:0003de30 ?PtedNew@TED@@SGPAV1@XZ 0043ee30 f ft.obj - 0001:0003e1c0 ?FCmdBadKey@TED@@UAEHPAUCMD_BADKEY@@@Z 0043f1c0 f ft.obj - 0001:0003e220 ?Draw@TED@@UAEXPAVGNV@@PAVRC@@@Z 0043f220 f ft.obj - 0001:0003e290 ??_EGPRC@@UAEPAXI@Z 0043f290 f ft.obj - 0001:0003e290 ??_GGPRC@@UAEPAXI@Z 0043f290 f ft.obj - 0001:0003e2b0 ??_GGFRC@@UAEPAXI@Z 0043f2b0 f ft.obj - 0001:0003e2b0 ??_EGFRC@@UAEPAXI@Z 0043f2b0 f ft.obj - 0001:0003e2d0 ??_ETDC@@UAEPAXI@Z 0043f2d0 f ft.obj - 0001:0003e2d0 ??_GTDC@@UAEPAXI@Z 0043f2d0 f ft.obj - 0001:0003e2f0 ??_EDWN@@UAEPAXI@Z 0043f2f0 f ft.obj - 0001:0003e2f0 ??_GDWN@@UAEPAXI@Z 0043f2f0 f ft.obj - 0001:0003e310 ??_GTTW@@UAEPAXI@Z 0043f310 f ft.obj - 0001:0003e310 ??_ETTW@@UAEPAXI@Z 0043f310 f ft.obj - 0001:0003e330 ??_ERTW@@UAEPAXI@Z 0043f330 f ft.obj - 0001:0003e330 ??_GRTW@@UAEPAXI@Z 0043f330 f ft.obj - 0001:0003e350 ??_EDOC@@UAEPAXI@Z 0043f350 f ft.obj - 0001:0003e350 ??_GDOC@@UAEPAXI@Z 0043f350 f ft.obj - 0001:0003e370 ??_GDOCP@@UAEPAXI@Z 0043f370 f ft.obj - 0001:0003e370 ??_EDOCP@@UAEPAXI@Z 0043f370 f ft.obj - 0001:0003e390 ??_EDDP@@UAEPAXI@Z 0043f390 f ft.obj - 0001:0003e390 ??_GDDP@@UAEPAXI@Z 0043f390 f ft.obj - 0001:0003e3b0 ??_EDOCPIC@@UAEPAXI@Z 0043f3b0 f ft.obj - 0001:0003e3b0 ??_GDOCPIC@@UAEPAXI@Z 0043f3b0 f ft.obj - 0001:0003e3d0 ??_EDDPIC@@UAEPAXI@Z 0043f3d0 f ft.obj - 0001:0003e3d0 ??_GDDPIC@@UAEPAXI@Z 0043f3d0 f ft.obj - 0001:0003e3f0 ??_GDOCGPT@@UAEPAXI@Z 0043f3f0 f ft.obj - 0001:0003e3f0 ??_EDOCGPT@@UAEPAXI@Z 0043f3f0 f ft.obj - 0001:0003e410 ??_EDDGPT@@UAEPAXI@Z 0043f410 f ft.obj - 0001:0003e410 ??_GDDGPT@@UAEPAXI@Z 0043f410 f ft.obj - 0001:0003e430 ??_ETAN@@UAEPAXI@Z 0043f430 f ft.obj - 0001:0003e430 ??_GTAN@@UAEPAXI@Z 0043f430 f ft.obj - 0001:0003e450 ??_ETED@@UAEPAXI@Z 0043f450 f ft.obj - 0001:0003e450 ??_GTED@@UAEPAXI@Z 0043f450 f ft.obj - 0001:0003e470 ??_EAPP@@UAEPAXI@Z 0043f470 f ft.obj - 0001:0003e470 ??_GAPP@@UAEPAXI@Z 0043f470 f ft.obj - 0001:0003e490 ??_9@$BIA@A 0043f490 f ft.obj - 0001:0003e4a0 ?TestUtil@@YGXXZ 0043f4a0 f test.obj - 0001:0003e4c0 ?TestInt@@YGXXZ 0043f4c0 f test.obj - 0001:0003e5c0 ?TestMem@@YGXXZ 0043f5c0 f test.obj - 0001:0003e6f0 ?TestGl@@YGXXZ 0043f6f0 f test.obj - 0001:0003e860 ?TestGg@@YGXXZ 0043f860 f test.obj - 0001:0003ea40 ?TestErs@@YGXXZ 0043fa40 f test.obj - 0001:0003eb20 ?TestCrf@@YGXXZ 0043fb20 f test.obj - 0001:0003ec86 _GetOpenFileNameA@4 0043fc86 comdlg32:comdlg32.dll - 0001:0003ec8c _GetSaveFileNameA@4 0043fc8c comdlg32:comdlg32.dll - 0001:0003ec92 _timeGetTime@0 0043fc92 winmm:WINMM.dll - 0001:0003ec98 _waveOutGetDevCapsA@12 0043fc98 winmm:WINMM.dll - 0001:0003ec9e _waveOutGetNumDevs@0 0043fc9e winmm:WINMM.dll - 0001:0003eca4 _midiOutGetVolume@8 0043fca4 winmm:WINMM.dll - 0001:0003ecaa _midiOutSetVolume@8 0043fcaa winmm:WINMM.dll - 0001:0003ecb0 _midiOutShortMsg@8 0043fcb0 winmm:WINMM.dll - 0001:0003ecb6 _midiOutReset@4 0043fcb6 winmm:WINMM.dll - 0001:0003ecbc _midiOutOpen@20 0043fcbc winmm:WINMM.dll - 0001:0003ecc2 _midiOutClose@4 0043fcc2 winmm:WINMM.dll - 0001:0003ecc8 _midiOutUnprepareHeader@12 0043fcc8 winmm:WINMM.dll - 0001:0003ecce _midiOutPrepareHeader@12 0043fcce winmm:WINMM.dll - 0001:0003ece0 _AllocSoundFromStream@16 0043fce0 f audios:sound.obj - 0001:0003ed70 ??0CAMWavFileSrc@@QAE@XZ 0043fd70 f audios:sound.obj - 0001:0003eda0 ??1CAMWavFileSrc@@QAE@XZ 0043fda0 f audios:sound.obj - 0001:0003ee00 ?InitFromFile@CAMWavFileSrc@@UAGJPADKH@Z 0043fe00 f audios:sound.obj - 0001:0003ee50 ?InitFromStream@CAMWavFileSrc@@UAGJPAUIStream@@H@Z 0043fe50 f audios:sound.obj - 0001:0003ee70 ?InitFromMemory@CAMWavFileSrc@@UAGJPADK@Z 0043fe70 f audios:sound.obj - 0001:0003eec0 ?_FInit@CAMWavFileSrc@@AAGJPAUIStream@@H@Z 0043fec0 f audios:sound.obj - 0001:0003f060 ?AllocACMStream@CAMWavFileSrc@@AAGJXZ 00440060 f audios:sound.obj - 0001:0003f1b0 ?FreeACMStream@CAMWavFileSrc@@AAGXXZ 004401b0 f audios:sound.obj - 0001:0003f230 ?AddRef@CAMWavFileSrc@@UAGKXZ 00440230 f audios:sound.obj - 0001:0003f240 ?Release@CAMWavFileSrc@@UAGKXZ 00440240 f audios:sound.obj - 0001:0003f280 ?QueryInterface@CAMWavFileSrc@@UAGJABU_GUID@@PAPAX@Z 00440280 f audios:sound.obj - 0001:0003f310 ?GetFormat@CAMWavFileSrc@@UAGJPAUtWAVEFORMATEX@@K@Z 00440310 f audios:sound.obj - 0001:0003f340 ?GetSamples@CAMWavFileSrc@@UAGKXZ 00440340 f audios:sound.obj - 0001:0003f350 ?GetAlignment@CAMWavFileSrc@@UAGJPAK0@Z 00440350 f audios:sound.obj - 0001:0003f380 ?GetSampleData@CAMWavFileSrc@@UAGJPAEKPAKPAURequestParam@@@Z 00440380 f audios:sound.obj - 0001:0003f780 ?SetCacheSize@CAMWavFileSrc@@UAGJK@Z 00440780 f audios:sound.obj - 0001:0003f790 ?SetMode@CAMWavFileSrc@@UAGJHH@Z 00440790 f audios:sound.obj - 0001:0003f7b0 ?_ReadHeader@CAMWavFileSrc@@AAGJPAUIStream@@@Z 004407b0 f audios:sound.obj - 0001:0003fae0 ??1CRIFF@@QAE@XZ 00440ae0 f audios:sound.obj - 0001:0003faf0 ?QueryInterface@CAMWavFileSrc@@W3AGJABU_GUID@@PAPAX@Z 00440af0 f audios:sound.obj - 0001:0003fb00 ?AddRef@CAMWavFileSrc@@W3AGKXZ 00440b00 f audios:sound.obj - 0001:0003fb10 ?Release@CAMWavFileSrc@@W3AGKXZ 00440b10 f audios:sound.obj - 0001:0003fb20 _AllocLoopFilter@12 00440b20 f audios:sndloop.obj - 0001:0003fb80 ?AddRef@CAMLoopFilter@@UAGKXZ 00440b80 f audios:sndloop.obj - 0001:0003fb90 ?Release@CAMLoopFilter@@UAGKXZ 00440b90 f audios:sndloop.obj - 0001:0003fba0 ?QueryInterface@CAMLoopFilter@@UAGJABU_GUID@@PAPAX@Z 00440ba0 f audios:sndloop.obj - 0001:0003fc10 ?Init@CAMLoopFilter@@UAGJPAUIAMSound@@K@Z 00440c10 f audios:sndloop.obj - 0001:0003fce0 ?GetSamples@CAMLoopFilter@@UAGKXZ 00440ce0 f audios:sndloop.obj - 0001:0003fd00 ?GetAlignment@CAMLoopFilter@@UAGJPAK0@Z 00440d00 f audios:sndloop.obj - 0001:0003fd40 ?GetSampleData@CAMLoopFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00440d40 f audios:sndloop.obj - 0001:0003fe90 ??0CClassFactory@@QAE@XZ 00440e90 f audios:factory.obj - 0001:0003fea0 ?Init@CClassFactory@@QAEHABU_GUID@@@Z 00440ea0 f audios:factory.obj - 0001:000400c0 ?AddRef@CClassFactory@@UAGKXZ 004410c0 f audios:factory.obj - 0001:000400d0 ?Release@CClassFactory@@UAGKXZ 004410d0 f audios:factory.obj - 0001:00040110 ?QueryInterface@CClassFactory@@UAGJABU_GUID@@PAPAX@Z 00441110 f audios:factory.obj - 0001:00040170 ?CreateInstance@CClassFactory@@UAGJPAUIUnknown@@ABU_GUID@@PAPAX@Z 00441170 f audios:factory.obj - 0001:000408b0 ?LockServer@CClassFactory@@UAGJH@Z 004418b0 f audios:factory.obj - 0001:000408c0 ??_GCAMGateFilter@@UAEPAXI@Z 004418c0 f audios:factory.obj - 0001:000408c0 ??_ECAMGateFilter@@UAEPAXI@Z 004418c0 f audios:factory.obj - 0001:00040940 ??_GCAMLoopFilter@@UAEPAXI@Z 00441940 f audios:factory.obj - 0001:00040940 ??_ECAMLoopFilter@@UAEPAXI@Z 00441940 f audios:factory.obj - 0001:000409c0 ??_GCAMFaderFilter@@UAEPAXI@Z 004419c0 f audios:factory.obj - 0001:000409c0 ??_ECAMFaderFilter@@UAEPAXI@Z 004419c0 f audios:factory.obj - 0001:00040a40 ??_ECAMRandomizeFilter@@UAEPAXI@Z 00441a40 f audios:factory.obj - 0001:00040a40 ??_GCAMRandomizeFilter@@UAEPAXI@Z 00441a40 f audios:factory.obj - 0001:00040ac0 ??_GCAMDistortFilter@@UAEPAXI@Z 00441ac0 f audios:factory.obj - 0001:00040ac0 ??_ECAMDistortFilter@@UAEPAXI@Z 00441ac0 f audios:factory.obj - 0001:00040b40 ??_GCAMStereoFilter@@UAEPAXI@Z 00441b40 f audios:factory.obj - 0001:00040b40 ??_ECAMStereoFilter@@UAEPAXI@Z 00441b40 f audios:factory.obj - 0001:00040bc0 ??_GCAMTrimFilter@@UAEPAXI@Z 00441bc0 f audios:factory.obj - 0001:00040bc0 ??_ECAMTrimFilter@@UAEPAXI@Z 00441bc0 f audios:factory.obj - 0001:00040c40 ??_ECAMBiasFilter@@UAEPAXI@Z 00441c40 f audios:factory.obj - 0001:00040c40 ??_GCAMBiasFilter@@UAEPAXI@Z 00441c40 f audios:factory.obj - 0001:00040cc0 ?QueryInterface@CAMBiasFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441cc0 f audios:factory.obj - 0001:00040cd0 ?AddRef@CAMBiasFilter@@WBE@AGKXZ 00441cd0 f audios:factory.obj - 0001:00040ce0 ?Release@CAMBiasFilter@@WBE@AGKXZ 00441ce0 f audios:factory.obj - 0001:00040cf0 ?QueryInterface@CAMTrimFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441cf0 f audios:factory.obj - 0001:00040d00 ?AddRef@CAMTrimFilter@@WBE@AGKXZ 00441d00 f audios:factory.obj - 0001:00040d10 ?Release@CAMTrimFilter@@WBE@AGKXZ 00441d10 f audios:factory.obj - 0001:00040d20 ?QueryInterface@CAMDistortFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441d20 f audios:factory.obj - 0001:00040d30 ?AddRef@CAMDistortFilter@@WBE@AGKXZ 00441d30 f audios:factory.obj - 0001:00040d40 ?Release@CAMDistortFilter@@WBE@AGKXZ 00441d40 f audios:factory.obj - 0001:00040d50 ?QueryInterface@CAMFaderFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441d50 f audios:factory.obj - 0001:00040d60 ?AddRef@CAMFaderFilter@@WBE@AGKXZ 00441d60 f audios:factory.obj - 0001:00040d70 ?Release@CAMFaderFilter@@WBE@AGKXZ 00441d70 f audios:factory.obj - 0001:00040d80 ?QueryInterface@CAMStereoFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441d80 f audios:factory.obj - 0001:00040d90 ?AddRef@CAMStereoFilter@@WBE@AGKXZ 00441d90 f audios:factory.obj - 0001:00040da0 ?Release@CAMStereoFilter@@WBE@AGKXZ 00441da0 f audios:factory.obj - 0001:00040db0 ?QueryInterface@CAMGateFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441db0 f audios:factory.obj - 0001:00040dc0 ?AddRef@CAMGateFilter@@WBE@AGKXZ 00441dc0 f audios:factory.obj - 0001:00040dd0 ?Release@CAMGateFilter@@WBE@AGKXZ 00441dd0 f audios:factory.obj - 0001:00040de0 ?QueryInterface@CAMRandomizeFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441de0 f audios:factory.obj - 0001:00040df0 ?AddRef@CAMRandomizeFilter@@WBE@AGKXZ 00441df0 f audios:factory.obj - 0001:00040e00 ?Release@CAMRandomizeFilter@@WBE@AGKXZ 00441e00 f audios:factory.obj - 0001:00040e10 ?QueryInterface@CAMLoopFilter@@WBE@AGJABU_GUID@@PAPAX@Z 00441e10 f audios:factory.obj - 0001:00040e20 ?AddRef@CAMLoopFilter@@WBE@AGKXZ 00441e20 f audios:factory.obj - 0001:00040e30 ?Release@CAMLoopFilter@@WBE@AGKXZ 00441e30 f audios:factory.obj - 0001:00040e40 _AMCreate@16 00441e40 f audios:audioman.obj - 0001:00040e90 ?AMFinish@@YAXJPAPAUIAMSound@@PAUIUnknown@@PAU1@@Z 00441e90 f audios:audioman.obj - 0001:00040ec0 _AMFinishCache@20 00441ec0 f audios:audioman.obj - 0001:00040f20 _GetAudioManMixer@0 00441f20 f audios:audioman.obj - 0001:00040f60 ??0CFileStream@@QAE@PADKK@Z 00441f60 f audios:stream.obj - 0001:00041030 ??1CFileStream@@QAE@XZ 00442030 f audios:stream.obj - 0001:00041060 ?AddRef@CFileStream@@UAGKXZ 00442060 f audios:stream.obj - 0001:00041070 ?Release@CFileStream@@UAGKXZ 00442070 f audios:stream.obj - 0001:000410b0 ?QueryInterface@CFileStream@@UAGJABU_GUID@@PAPAX@Z 004420b0 f audios:stream.obj - 0001:00041110 ?Read@CFileStream@@UAGJPAXKPAK@Z 00442110 f audios:stream.obj - 0001:00041150 ?Seek@CFileStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00442150 f audios:stream.obj - 0001:000411d0 ?Clone@CFileStream@@UAGJPAPAUIStream@@@Z 004421d0 f audios:stream.obj - 0001:00041230 ?Write@CFileStream@@UAGJPBXKPAK@Z 00442230 f audios:stream.obj - 0001:00041260 ?SetSize@CFileStream@@UAGJT_ULARGE_INTEGER@@@Z 00442260 f audios:stream.obj - 0001:00041270 ?CopyTo@CFileStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00442270 f audios:stream.obj - 0001:00041280 ?Commit@CFileStream@@UAGJK@Z 00442280 f audios:stream.obj - 0001:00041290 ?Revert@CFileStream@@UAGJXZ 00442290 f audios:stream.obj - 0001:000412a0 ?LockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004422a0 f audios:stream.obj - 0001:000412b0 ?UnlockRegion@CFileStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004422b0 f audios:stream.obj - 0001:000412c0 ?Stat@CFileStream@@UAGJPAUtagSTATSTG@@K@Z 004422c0 f audios:stream.obj - 0001:000412d0 ??0CMemoryStream@@AAE@PAV0@@Z 004422d0 f audios:stream.obj - 0001:00041340 ??0CMemoryStream@@QAE@PAUIStream@@K@Z 00442340 f audios:stream.obj - 0001:000413c0 ??0CMemoryStream@@QAE@PADKK@Z 004423c0 f audios:stream.obj - 0001:000413f0 ??1CMemoryStream@@QAE@XZ 004423f0 f audios:stream.obj - 0001:00041430 ?AddRef@CMemoryStream@@UAGKXZ 00442430 f audios:stream.obj - 0001:00041440 ?Release@CMemoryStream@@UAGKXZ 00442440 f audios:stream.obj - 0001:00041480 ?QueryInterface@CMemoryStream@@UAGJABU_GUID@@PAPAX@Z 00442480 f audios:stream.obj - 0001:000414e0 ?Read@CMemoryStream@@UAGJPAXKPAK@Z 004424e0 f audios:stream.obj - 0001:00041540 ?Seek@CMemoryStream@@UAGJT_LARGE_INTEGER@@KPAT_ULARGE_INTEGER@@@Z 00442540 f audios:stream.obj - 0001:000415a0 ?Clone@CMemoryStream@@UAGJPAPAUIStream@@@Z 004425a0 f audios:stream.obj - 0001:000415f0 ?Write@CMemoryStream@@UAGJPBXKPAK@Z 004425f0 f audios:stream.obj - 0001:00041650 ?SetSize@CMemoryStream@@UAGJT_ULARGE_INTEGER@@@Z 00442650 f audios:stream.obj - 0001:00041660 ?CopyTo@CMemoryStream@@UAGJPAUIStream@@T_ULARGE_INTEGER@@PAT3@2@Z 00442660 f audios:stream.obj - 0001:00041670 ?Commit@CMemoryStream@@UAGJK@Z 00442670 f audios:stream.obj - 0001:00041680 ?Revert@CMemoryStream@@UAGJXZ 00442680 f audios:stream.obj - 0001:00041690 ?LockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 00442690 f audios:stream.obj - 0001:000416a0 ?UnlockRegion@CMemoryStream@@UAGJT_ULARGE_INTEGER@@0K@Z 004426a0 f audios:stream.obj - 0001:000416b0 ?Stat@CMemoryStream@@UAGJPAUtagSTATSTG@@K@Z 004426b0 f audios:stream.obj - 0001:000416c0 _HRESULTFromMMRESULT@4 004426c0 f audios:utils.obj - 0001:000418b0 ?ConvertMillisecToSMPTE@@YAHPAUSMPTE@@K@Z 004428b0 f audios:utils.obj - 0001:00041990 ?ConvertSMPTEToMillisec@@YAHPAUSMPTE@@PAK@Z 00442990 f audios:utils.obj - 0001:00041a30 ?BytesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 00442a30 f audios:utils.obj - 0001:00041a90 ?MillisecToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 00442a90 f audios:utils.obj - 0001:00041ae0 ?BytesToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 00442ae0 f audios:utils.obj - 0001:00041b00 ?SamplesToBytes@@YGKPAUtWAVEFORMATEX@@K@Z 00442b00 f audios:utils.obj - 0001:00041b20 ?MillisecToSamples@@YGKPAUtWAVEFORMATEX@@K@Z 00442b20 f audios:utils.obj - 0001:00041b40 ?SamplesToMillisec@@YGKPAUtWAVEFORMATEX@@K@Z 00442b40 f audios:utils.obj - 0001:00041b60 ?SameFormats@@YAHPAUtWAVEFORMATEX@@0@Z 00442b60 f audios:utils.obj - 0001:00041bc0 ?ConvertFormatToWaveFormatEx@@YAHPAUtWAVEFORMATEX@@K@Z 00442bc0 f audios:utils.obj - 0001:00041c50 ?ConvertWaveFormatExToFormat@@YAKPAUtWAVEFORMATEX@@@Z 00442c50 f audios:utils.obj - 0001:00041d0c _acmFormatSuggest@20 00442d0c f audios:MSACM32.dll - 0001:00041d12 _acmStreamSize@16 00442d12 f audios:MSACM32.dll - 0001:00041d18 _acmStreamPrepareHeader@12 00442d18 f audios:MSACM32.dll - 0001:00041d1e _acmStreamOpen@32 00442d1e f audios:MSACM32.dll - 0001:00041d24 _acmStreamClose@8 00442d24 f audios:MSACM32.dll - 0001:00041d2a _acmStreamUnprepareHeader@12 00442d2a f audios:MSACM32.dll - 0001:00041d30 _acmStreamConvert@12 00442d30 f audios:MSACM32.dll - 0001:00041d40 ?ReadRIFFTag@CRIFF@@QAEJPAK@Z 00442d40 f audios:riff.obj - 0001:00041d60 ?ReadLongData@CRIFF@@QAEJPAK@Z 00442d60 f audios:riff.obj - 0001:00041d80 ?FindNextFormChunk@CRIFF@@QAEJPAK0@Z 00442d80 f audios:riff.obj - 0001:00041e20 ??0CAMPassThruFilter@@QAE@XZ 00442e20 f audios:sndpass.obj - 0001:00041e30 ??1CAMPassThruFilter@@UAE@XZ 00442e30 f audios:sndpass.obj - 0001:00041e60 ?AddRef@CAMPassThruFilter@@UAGKXZ 00442e60 f audios:sndpass.obj - 0001:00041e70 ?Release@CAMPassThruFilter@@UAGKXZ 00442e70 f audios:sndpass.obj - 0001:00041e90 ?QueryInterface@CAMPassThruFilter@@UAGJABU_GUID@@PAPAX@Z 00442e90 f audios:sndpass.obj - 0001:00041ef0 ?GetFormat@CAMPassThruFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00442ef0 f audios:sndpass.obj - 0001:00041f20 ?GetSamples@CAMPassThruFilter@@UAGKXZ 00442f20 f audios:sndpass.obj - 0001:00041f40 ?GetAlignment@CAMPassThruFilter@@UAGJPAK0@Z 00442f40 f audios:sndpass.obj - 0001:00041f70 ?GetSampleData@CAMPassThruFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00442f70 f audios:sndpass.obj - 0001:00041fb0 ?SetCacheSize@CAMPassThruFilter@@UAGJK@Z 00442fb0 f audios:sndpass.obj - 0001:00041fe0 ?SetMode@CAMPassThruFilter@@UAGJHH@Z 00442fe0 f audios:sndpass.obj - 0001:00042040 ??_GCAMPassThruFilter@@UAEPAXI@Z 00443040 f audios:sndpass.obj - 0001:00042040 ??_ECAMPassThruFilter@@UAEPAXI@Z 00443040 f audios:sndpass.obj - 0001:00042080 ?AddRef@CAMRandomizeFilter@@UAGKXZ 00443080 f audios:sndrand.obj - 0001:00042090 ?Release@CAMRandomizeFilter@@UAGKXZ 00443090 f audios:sndrand.obj - 0001:000420a0 ?QueryInterface@CAMRandomizeFilter@@UAGJABU_GUID@@PAPAX@Z 004430a0 f audios:sndrand.obj - 0001:00042110 ?Init@CAMRandomizeFilter@@UAGJPAURandomizeConfig@@@Z 00443110 f audios:sndrand.obj - 0001:00042120 ?Add@CAMRandomizeFilter@@UAGJPAUIAMSound@@K@Z 00443120 f audios:sndrand.obj - 0001:00042130 ?Remove@CAMRandomizeFilter@@UAGJPAUIAMSound@@@Z 00443130 f audios:sndrand.obj - 0001:00042140 ?Clear@CAMRandomizeFilter@@UAGJXZ 00443140 f audios:sndrand.obj - 0001:00042150 _AllocGateFilter@12 00443150 f audios:sndgate.obj - 0001:000421b0 ?AddRef@CAMGateFilter@@UAGKXZ 004431b0 f audios:sndgate.obj - 0001:000421c0 ?Release@CAMGateFilter@@UAGKXZ 004431c0 f audios:sndgate.obj - 0001:000421d0 ?QueryInterface@CAMGateFilter@@UAGJABU_GUID@@PAPAX@Z 004431d0 f audios:sndgate.obj - 0001:00042240 ?Init@CAMGateFilter@@UAGJPAUIAMSound@@M@Z 00443240 f audios:sndgate.obj - 0001:000422c0 ?GetSampleData@CAMGateFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004432c0 f audios:sndgate.obj - 0001:00042370 ?AddRef@CAMStereoFilter@@UAGKXZ 00443370 f audios:sndstreo.obj - 0001:00042380 ?Release@CAMStereoFilter@@UAGKXZ 00443380 f audios:sndstreo.obj - 0001:00042390 ?QueryInterface@CAMStereoFilter@@UAGJABU_GUID@@PAPAX@Z 00443390 f audios:sndstreo.obj - 0001:00042400 ?Init@CAMStereoFilter@@UAGJPAUIAMSound@@@Z 00443400 f audios:sndstreo.obj - 0001:000424b0 ?GetSampleData@CAMStereoFilter@@UAGJPAEKPAKPAURequestParam@@@Z 004434b0 f audios:sndstreo.obj - 0001:00042520 ?AddRef@CAMFaderFilter@@UAGKXZ 00443520 f audios:sndfader.obj - 0001:00042530 ?Release@CAMFaderFilter@@UAGKXZ 00443530 f audios:sndfader.obj - 0001:00042540 ?QueryInterface@CAMFaderFilter@@UAGJABU_GUID@@PAPAX@Z 00443540 f audios:sndfader.obj - 0001:000425b0 ?Init@CAMFaderFilter@@UAGJPAUIAMSound@@KK@Z 004435b0 f audios:sndfader.obj - 0001:00042630 ?GetSampleData@CAMFaderFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00443630 f audios:sndfader.obj - 0001:00042660 ?AddRef@CAMDistortFilter@@UAGKXZ 00443660 f audios:snddist.obj - 0001:00042670 ?Release@CAMDistortFilter@@UAGKXZ 00443670 f audios:snddist.obj - 0001:00042680 ?QueryInterface@CAMDistortFilter@@UAGJABU_GUID@@PAPAX@Z 00443680 f audios:snddist.obj - 0001:000426f0 ?Init@CAMDistortFilter@@UAGJPAUIAMSound@@M@Z 004436f0 f audios:snddist.obj - 0001:00042770 ?GetSampleData@CAMDistortFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00443770 f audios:snddist.obj - 0001:00042830 ?AddRef@CAMTrimFilter@@UAGKXZ 00443830 f audios:sndtrim.obj - 0001:00042840 ?Release@CAMTrimFilter@@UAGKXZ 00443840 f audios:sndtrim.obj - 0001:00042850 ?QueryInterface@CAMTrimFilter@@UAGJABU_GUID@@PAPAX@Z 00443850 f audios:sndtrim.obj - 0001:000428c0 ?Init@CAMTrimFilter@@UAGJPAUIAMSound@@@Z 004438c0 f audios:sndtrim.obj - 0001:00042950 ?CalcTrimSamples@CAMTrimFilter@@AAGJPAUIAMSound@@PAK1@Z 00443950 f audios:sndtrim.obj - 0001:00042b50 ?AddRef@CAMBiasFilter@@UAGKXZ 00443b50 f audios:sndbias.obj - 0001:00042b60 ?Release@CAMBiasFilter@@UAGKXZ 00443b60 f audios:sndbias.obj - 0001:00042b70 ?QueryInterface@CAMBiasFilter@@UAGJABU_GUID@@PAPAX@Z 00443b70 f audios:sndbias.obj - 0001:00042be0 ?Init@CAMBiasFilter@@UAGJPAUIAMSound@@@Z 00443be0 f audios:sndbias.obj - 0001:00042c30 ?CalcBias@CAMBiasFilter@@AAGJPAUIAMSound@@@Z 00443c30 f audios:sndbias.obj - 0001:00042e00 ?GetSampleData@CAMBiasFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00443e00 f audios:sndbias.obj - 0001:00042e90 _AllocCacheFilter@12 00443e90 f audios:sndcache.obj - 0001:00042ef0 ??0CAMCacheFilter@@QAE@XZ 00443ef0 f audios:sndcache.obj - 0001:00042f10 ??1CAMCacheFilter@@QAE@XZ 00443f10 f audios:sndcache.obj - 0001:00042f70 ?AddRef@CAMCacheFilter@@UAGKXZ 00443f70 f audios:sndcache.obj - 0001:00042f80 ?Release@CAMCacheFilter@@UAGKXZ 00443f80 f audios:sndcache.obj - 0001:00042fc0 ?QueryInterface@CAMCacheFilter@@UAGJABU_GUID@@PAPAX@Z 00443fc0 f audios:sndcache.obj - 0001:00043050 ?Init@CAMCacheFilter@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 00444050 f audios:sndcache.obj - 0001:00043200 ?GetFormat@CAMCacheFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00444200 f audios:sndcache.obj - 0001:00043230 ?GetSamples@CAMCacheFilter@@UAGKXZ 00444230 f audios:sndcache.obj - 0001:00043250 ?GetAlignment@CAMCacheFilter@@UAGJPAK0@Z 00444250 f audios:sndcache.obj - 0001:00043280 ?GetSampleData@CAMCacheFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00444280 f audios:sndcache.obj - 0001:00043420 ?MoveCacheForward@CAMCacheFilter@@AAGXK@Z 00444420 f audios:sndcache.obj - 0001:00043470 ?MoveCacheBackward@CAMCacheFilter@@AAGXK@Z 00444470 f audios:sndcache.obj - 0001:000434c0 ?FillCache@CAMCacheFilter@@AAGJKK@Z 004444c0 f audios:sndcache.obj - 0001:000435b0 ?FillBufferFromCache@CAMCacheFilter@@AAGJPAEKPAURequestParam@@@Z 004445b0 f audios:sndcache.obj - 0001:00043630 ?SetCacheSize@CAMCacheFilter@@UAGJK@Z 00444630 f audios:sndcache.obj - 0001:00043660 ?SetMode@CAMCacheFilter@@UAGJHH@Z 00444660 f audios:sndcache.obj - 0001:00043760 ?QueryInterface@CAMCacheFilter@@W3AGJABU_GUID@@PAPAX@Z 00444760 f audios:sndcache.obj - 0001:00043770 ?AddRef@CAMCacheFilter@@W3AGKXZ 00444770 f audios:sndcache.obj - 0001:00043780 ?Release@CAMCacheFilter@@W3AGKXZ 00444780 f audios:sndcache.obj - 0001:00043790 ??0CAMScheduleFilter@@QAE@XZ 00444790 f audios:sndsched.obj - 0001:000437b0 ??1CAMScheduleFilter@@QAE@XZ 004447b0 f audios:sndsched.obj - 0001:000437e0 ?AddRef@CAMScheduleFilter@@UAGKXZ 004447e0 f audios:sndsched.obj - 0001:000437f0 ?Release@CAMScheduleFilter@@UAGKXZ 004447f0 f audios:sndsched.obj - 0001:00043830 ?QueryInterface@CAMScheduleFilter@@UAGJABU_GUID@@PAPAX@Z 00444830 f audios:sndsched.obj - 0001:000438c0 ?Init@CAMScheduleFilter@@UAGJPAUSchedulerConfig@@@Z 004448c0 f audios:sndsched.obj - 0001:000438d0 ?GetFormat@CAMScheduleFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004448d0 f audios:sndsched.obj - 0001:00043900 ?GetSamples@CAMScheduleFilter@@UAGKXZ 00444900 f audios:sndsched.obj - 0001:00043920 ?GetAlignment@CAMScheduleFilter@@UAGJPAK0@Z 00444920 f audios:sndsched.obj - 0001:00043950 ?GetSampleData@CAMScheduleFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00444950 f audios:sndsched.obj - 0001:00043990 ?SetCacheSize@CAMScheduleFilter@@UAGJK@Z 00444990 f audios:sndsched.obj - 0001:000439a0 ?SetMode@CAMScheduleFilter@@UAGJHH@Z 004449a0 f audios:sndsched.obj - 0001:000439b0 ?Schedule@CAMScheduleFilter@@UAGJPAUIAMSound@@KKKH@Z 004449b0 f audios:sndsched.obj - 0001:000439c0 ?ScheduleLast@CAMScheduleFilter@@UAGJPAUIAMSound@@KH@Z 004449c0 f audios:sndsched.obj - 0001:000439d0 ?ClearTime@CAMScheduleFilter@@UAGJKK@Z 004449d0 f audios:sndsched.obj - 0001:000439e0 ?ClearAll@CAMScheduleFilter@@UAGJXZ 004449e0 f audios:sndsched.obj - 0001:000439f0 ?GetNumScheduled@CAMScheduleFilter@@UAGKXZ 004449f0 f audios:sndsched.obj - 0001:00043a00 ?GetSound@CAMScheduleFilter@@UAGJPAPAUIAMSound@@K@Z 00444a00 f audios:sndsched.obj - 0001:00043a10 ?GetTimeBlock@CAMScheduleFilter@@UAGJPAUIAMSound@@PAK1@Z 00444a10 f audios:sndsched.obj - 0001:00043a20 ?IsScheduled@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 00444a20 f audios:sndsched.obj - 0001:00043a30 ?IsPlaying@CAMScheduleFilter@@UAGHPAUIAMSound@@@Z 00444a30 f audios:sndsched.obj - 0001:00043a40 ?QueryInterface@CAMScheduleFilter@@W3AGJABU_GUID@@PAPAX@Z 00444a40 f audios:sndsched.obj - 0001:00043a50 ?AddRef@CAMScheduleFilter@@W3AGKXZ 00444a50 f audios:sndsched.obj - 0001:00043a60 ?Release@CAMScheduleFilter@@W3AGKXZ 00444a60 f audios:sndsched.obj - 0001:00043a70 _AllocMixFilter@12 00444a70 f audios:sndmix.obj - 0001:00043ad0 ??0CAMMixFilter@@QAE@XZ 00444ad0 f audios:sndmix.obj - 0001:00043af0 ??1CAMMixFilter@@QAE@XZ 00444af0 f audios:sndmix.obj - 0001:00043b30 ?AddRef@CAMMixFilter@@UAGKXZ 00444b30 f audios:sndmix.obj - 0001:00043b40 ?Release@CAMMixFilter@@UAGKXZ 00444b40 f audios:sndmix.obj - 0001:00043b80 ?QueryInterface@CAMMixFilter@@UAGJABU_GUID@@PAPAX@Z 00444b80 f audios:sndmix.obj - 0001:00043c10 ?Init@CAMMixFilter@@UAGJPAUIAMSound@@0@Z 00444c10 f audios:sndmix.obj - 0001:00043ca0 ?PrimeInputs@CAMMixFilter@@QAGJPAUIAMSound@@0@Z 00444ca0 f audios:sndmix.obj - 0001:00043e60 ?AllocMixBuffer@CAMMixFilter@@QAGJXZ 00444e60 f audios:sndmix.obj - 0001:00043ea0 ?FreeMixBuffer@CAMMixFilter@@QAGJXZ 00444ea0 f audios:sndmix.obj - 0001:00043ed0 ?GetFormat@CAMMixFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00444ed0 f audios:sndmix.obj - 0001:00043f00 ?GetSamples@CAMMixFilter@@UAGKXZ 00444f00 f audios:sndmix.obj - 0001:00043f20 ?GetAlignment@CAMMixFilter@@UAGJPAK0@Z 00444f20 f audios:sndmix.obj - 0001:00043fa0 ?GetSampleData@CAMMixFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00444fa0 f audios:sndmix.obj - 0001:000440d0 ?SetCacheSize@CAMMixFilter@@UAGJK@Z 004450d0 f audios:sndmix.obj - 0001:000440e0 ?SetMode@CAMMixFilter@@UAGJHH@Z 004450e0 f audios:sndmix.obj - 0001:00044150 ?QueryInterface@CAMMixFilter@@W3AGJABU_GUID@@PAPAX@Z 00445150 f audios:sndmix.obj - 0001:00044160 ?AddRef@CAMMixFilter@@W3AGKXZ 00445160 f audios:sndmix.obj - 0001:00044170 ?Release@CAMMixFilter@@W3AGKXZ 00445170 f audios:sndmix.obj - 0001:00044180 _AllocGainFilter@16 00445180 f audios:sndgain.obj - 0001:000441e0 ??0CAMGainFilter@@QAE@XZ 004451e0 f audios:sndgain.obj - 0001:00044230 ??1CAMGainFilter@@QAE@XZ 00445230 f audios:sndgain.obj - 0001:00044290 ?AddRef@CAMGainFilter@@UAGKXZ 00445290 f audios:sndgain.obj - 0001:000442a0 ?Release@CAMGainFilter@@UAGKXZ 004452a0 f audios:sndgain.obj - 0001:000442e0 ?QueryInterface@CAMGainFilter@@UAGJABU_GUID@@PAPAX@Z 004452e0 f audios:sndgain.obj - 0001:00044370 ?EnterFilter@CAMGainFilter@@AAGXXZ 00445370 f audios:sndgain.obj - 0001:00044390 ?LeaveFilter@CAMGainFilter@@AAGXXZ 00445390 f audios:sndgain.obj - 0001:000443b0 ?Init@CAMGainFilter@@UAGJPAUIAMSound@@MM@Z 004453b0 f audios:sndgain.obj - 0001:00044440 ?SetGain@CAMGainFilter@@UAGJMM@Z 00445440 f audios:sndgain.obj - 0001:00044490 ?GetFormat@CAMGainFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00445490 f audios:sndgain.obj - 0001:000444d0 ?GetSamples@CAMGainFilter@@UAGKXZ 004454d0 f audios:sndgain.obj - 0001:00044500 ?GetAlignment@CAMGainFilter@@UAGJPAK0@Z 00445500 f audios:sndgain.obj - 0001:00044540 ?GetSampleData@CAMGainFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00445540 f audios:sndgain.obj - 0001:000445c0 ?SetCacheSize@CAMGainFilter@@UAGJK@Z 004455c0 f audios:sndgain.obj - 0001:00044600 ?SetMode@CAMGainFilter@@UAGJHH@Z 00445600 f audios:sndgain.obj - 0001:00044670 ?QueryInterface@CAMGainFilter@@W3AGJABU_GUID@@PAPAX@Z 00445670 f audios:sndgain.obj - 0001:00044680 ?AddRef@CAMGainFilter@@W3AGKXZ 00445680 f audios:sndgain.obj - 0001:00044690 ?Release@CAMGainFilter@@W3AGKXZ 00445690 f audios:sndgain.obj - 0001:000446a0 ??0CAMDelayFilter@@QAE@XZ 004456a0 f audios:sndecho.obj - 0001:000446c0 ??1CAMDelayFilter@@QAE@XZ 004456c0 f audios:sndecho.obj - 0001:00044760 ?AddRef@CAMDelayFilter@@UAGKXZ 00445760 f audios:sndecho.obj - 0001:00044770 ?Release@CAMDelayFilter@@UAGKXZ 00445770 f audios:sndecho.obj - 0001:000447b0 ?QueryInterface@CAMDelayFilter@@UAGJABU_GUID@@PAPAX@Z 004457b0 f audios:sndecho.obj - 0001:00044840 ?Init@CAMDelayFilter@@UAGJPAUIAMSound@@KKKKK@Z 00445840 f audios:sndecho.obj - 0001:00044a70 ?GetFormat@CAMDelayFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00445a70 f audios:sndecho.obj - 0001:00044aa0 ?GetSamples@CAMDelayFilter@@UAGKXZ 00445aa0 f audios:sndecho.obj - 0001:00044ac0 ?GetAlignment@CAMDelayFilter@@UAGJPAK0@Z 00445ac0 f audios:sndecho.obj - 0001:00044b20 ?MixInNewData@CAMDelayFilter@@QAGJXZ 00445b20 f audios:sndecho.obj - 0001:00044d60 ?GetSampleData@CAMDelayFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00445d60 f audios:sndecho.obj - 0001:00045030 ?SetCacheSize@CAMDelayFilter@@UAGJK@Z 00446030 f audios:sndecho.obj - 0001:00045060 ?SetMode@CAMDelayFilter@@UAGJHH@Z 00446060 f audios:sndecho.obj - 0001:000450c0 ?QueryInterface@CAMDelayFilter@@W3AGJABU_GUID@@PAPAX@Z 004460c0 f audios:sndecho.obj - 0001:000450d0 ?AddRef@CAMDelayFilter@@W3AGKXZ 004460d0 f audios:sndecho.obj - 0001:000450e0 ?Release@CAMDelayFilter@@W3AGKXZ 004460e0 f audios:sndecho.obj - 0001:000450f0 _AllocConvertFilter@12 004460f0 f audios:sndcnvt.obj - 0001:00045150 ??0CAMConvertFilter@@QAE@XZ 00446150 f audios:sndcnvt.obj - 0001:00045170 ??1CAMConvertFilter@@QAE@XZ 00446170 f audios:sndcnvt.obj - 0001:000451e0 ?AddRef@CAMConvertFilter@@UAGKXZ 004461e0 f audios:sndcnvt.obj - 0001:000451f0 ?Release@CAMConvertFilter@@UAGKXZ 004461f0 f audios:sndcnvt.obj - 0001:00045230 ?QueryInterface@CAMConvertFilter@@UAGJABU_GUID@@PAPAX@Z 00446230 f audios:sndcnvt.obj - 0001:000452c0 ?Init@CAMConvertFilter@@UAGJPAUIAMSound@@PAUtWAVEFORMATEX@@@Z 004462c0 f audios:sndcnvt.obj - 0001:000453b0 ?GetFormat@CAMConvertFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004463b0 f audios:sndcnvt.obj - 0001:00045400 ?ConvertToDstSamples@CAMConvertFilter@@QAGKK@Z 00446400 f audios:sndcnvt.obj - 0001:00045440 ?ConvertToSrcSamples@CAMConvertFilter@@QAGKK@Z 00446440 f audios:sndcnvt.obj - 0001:00045480 ?GetSamples@CAMConvertFilter@@UAGKXZ 00446480 f audios:sndcnvt.obj - 0001:000454b0 ?GetAlignment@CAMConvertFilter@@UAGJPAK0@Z 004464b0 f audios:sndcnvt.obj - 0001:00045500 ?GetSampleData@CAMConvertFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00446500 f audios:sndcnvt.obj - 0001:000457e0 ?SetCacheSize@CAMConvertFilter@@UAGJK@Z 004467e0 f audios:sndcnvt.obj - 0001:00045810 ?SetMode@CAMConvertFilter@@UAGJHH@Z 00446810 f audios:sndcnvt.obj - 0001:00045870 ?QueryInterface@CAMConvertFilter@@W3AGJABU_GUID@@PAPAX@Z 00446870 f audios:sndcnvt.obj - 0001:00045880 ?AddRef@CAMConvertFilter@@W3AGKXZ 00446880 f audios:sndcnvt.obj - 0001:00045890 ?Release@CAMConvertFilter@@W3AGKXZ 00446890 f audios:sndcnvt.obj - 0001:000458a0 _AllocClipFilter@16 004468a0 f audios:sndclip.obj - 0001:00045900 ??0CAMClipFilter@@QAE@XZ 00446900 f audios:sndclip.obj - 0001:00045920 ??1CAMClipFilter@@QAE@XZ 00446920 f audios:sndclip.obj - 0001:00045950 ?AddRef@CAMClipFilter@@UAGKXZ 00446950 f audios:sndclip.obj - 0001:00045960 ?Release@CAMClipFilter@@UAGKXZ 00446960 f audios:sndclip.obj - 0001:000459a0 ?QueryInterface@CAMClipFilter@@UAGJABU_GUID@@PAPAX@Z 004469a0 f audios:sndclip.obj - 0001:00045a30 ?Init@CAMClipFilter@@UAGJPAUIAMSound@@KK@Z 00446a30 f audios:sndclip.obj - 0001:00045ad0 ?GetFormat@CAMClipFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 00446ad0 f audios:sndclip.obj - 0001:00045b00 ?GetSamples@CAMClipFilter@@UAGKXZ 00446b00 f audios:sndclip.obj - 0001:00045b20 ?PinSamples@CAMClipFilter@@QAGJPAK0@Z 00446b20 f audios:sndclip.obj - 0001:00045b80 ?GetAlignment@CAMClipFilter@@UAGJPAK0@Z 00446b80 f audios:sndclip.obj - 0001:00045bc0 ?GetSampleData@CAMClipFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00446bc0 f audios:sndclip.obj - 0001:00045ce0 ?SetCacheSize@CAMClipFilter@@UAGJK@Z 00446ce0 f audios:sndclip.obj - 0001:00045d10 ?SetMode@CAMClipFilter@@UAGJHH@Z 00446d10 f audios:sndclip.obj - 0001:00045d70 ?QueryInterface@CAMClipFilter@@W3AGJABU_GUID@@PAPAX@Z 00446d70 f audios:sndclip.obj - 0001:00045d80 ?AddRef@CAMClipFilter@@W3AGKXZ 00446d80 f audios:sndclip.obj - 0001:00045d90 ?Release@CAMClipFilter@@W3AGKXZ 00446d90 f audios:sndclip.obj - 0001:00045da0 _AllocAppendFilter@16 00446da0 f audios:sndapend.obj - 0001:00045e00 ??0CAMAppendFilter@@QAE@XZ 00446e00 f audios:sndapend.obj - 0001:00045e20 ??1CAMAppendFilter@@QAE@XZ 00446e20 f audios:sndapend.obj - 0001:00045e60 ?AddRef@CAMAppendFilter@@UAGKXZ 00446e60 f audios:sndapend.obj - 0001:00045e70 ?Release@CAMAppendFilter@@UAGKXZ 00446e70 f audios:sndapend.obj - 0001:00045eb0 ?QueryInterface@CAMAppendFilter@@UAGJABU_GUID@@PAPAX@Z 00446eb0 f audios:sndapend.obj - 0001:00045f40 ?Init@CAMAppendFilter@@UAGJPAUIAMSound@@0H@Z 00446f40 f audios:sndapend.obj - 0001:00045f90 ?PrimeInputs@CAMAppendFilter@@QAGJPAUIAMSound@@0H@Z 00446f90 f audios:sndapend.obj - 0001:000463d0 ?GetFormat@CAMAppendFilter@@UAGJPAUtWAVEFORMATEX@@K@Z 004473d0 f audios:sndapend.obj - 0001:00046400 ?GetSamples@CAMAppendFilter@@UAGKXZ 00447400 f audios:sndapend.obj - 0001:00046420 ?GetAlignment@CAMAppendFilter@@UAGJPAK0@Z 00447420 f audios:sndapend.obj - 0001:00046450 ?GetSampleData@CAMAppendFilter@@UAGJPAEKPAKPAURequestParam@@@Z 00447450 f audios:sndapend.obj - 0001:000465b0 ?SetCacheSize@CAMAppendFilter@@UAGJK@Z 004475b0 f audios:sndapend.obj - 0001:000465e0 ?SetMode@CAMAppendFilter@@UAGJHH@Z 004475e0 f audios:sndapend.obj - 0001:00046650 ?QueryInterface@CAMAppendFilter@@W3AGJABU_GUID@@PAPAX@Z 00447650 f audios:sndapend.obj - 0001:00046660 ?AddRef@CAMAppendFilter@@W3AGKXZ 00447660 f audios:sndapend.obj - 0001:00046670 ?Release@CAMAppendFilter@@W3AGKXZ 00447670 f audios:sndapend.obj - 0001:00046680 ??0CAMSilentSound@@QAE@XZ 00447680 f audios:sndmute.obj - 0001:000466b0 ??1CAMSilentSound@@QAE@XZ 004476b0 f audios:sndmute.obj - 0001:000466c0 ?AddRef@CAMSilentSound@@UAGKXZ 004476c0 f audios:sndmute.obj - 0001:000466d0 ?Release@CAMSilentSound@@UAGKXZ 004476d0 f audios:sndmute.obj - 0001:00046710 ?QueryInterface@CAMSilentSound@@UAGJABU_GUID@@PAPAX@Z 00447710 f audios:sndmute.obj - 0001:000467a0 ?Init@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 004477a0 f audios:sndmute.obj - 0001:00046820 ?GetFormat@CAMSilentSound@@UAGJPAUtWAVEFORMATEX@@K@Z 00447820 f audios:sndmute.obj - 0001:00046870 ?GetSamples@CAMSilentSound@@UAGKXZ 00447870 f audios:sndmute.obj - 0001:00046890 ?GetAlignment@CAMSilentSound@@UAGJPAK0@Z 00447890 f audios:sndmute.obj - 0001:000468d0 ?GetSampleData@CAMSilentSound@@UAGJPAEKPAKPAURequestParam@@@Z 004478d0 f audios:sndmute.obj - 0001:00046970 ?SetCacheSize@CAMSilentSound@@UAGJK@Z 00447970 f audios:sndmute.obj - 0001:00046980 ?SetMode@CAMSilentSound@@UAGJHH@Z 00447980 f audios:sndmute.obj - 0001:000469b0 ?QueryInterface@CAMSilentSound@@W3AGJABU_GUID@@PAPAX@Z 004479b0 f audios:sndmute.obj - 0001:000469c0 ?AddRef@CAMSilentSound@@W3AGKXZ 004479c0 f audios:sndmute.obj - 0001:000469d0 ?Release@CAMSilentSound@@W3AGKXZ 004479d0 f audios:sndmute.obj - 0001:000469e0 ??0CAMMixer@@QAE@XZ 004479e0 f audios:cmixer.obj - 0001:00046ab0 ??1CAMMixer@@QAE@XZ 00447ab0 f audios:cmixer.obj - 0001:00046b20 ?AddRef@CAMMixer@@UAGKXZ 00447b20 f audios:cmixer.obj - 0001:00046b30 ?Release@CAMMixer@@UAGKXZ 00447b30 f audios:cmixer.obj - 0001:00046b90 ?QueryInterface@CAMMixer@@UAGJABU_GUID@@PAPAX@Z 00447b90 f audios:cmixer.obj - 0001:00046bf0 ?EnterMixer@CAMMixer@@AAGXXZ 00447bf0 f audios:cmixer.obj - 0001:00046c10 ?LeaveMixer@CAMMixer@@AAGXXZ 00447c10 f audios:cmixer.obj - 0001:00046c30 ?EnterPump@CAMMixer@@AAGXXZ 00447c30 f audios:cmixer.obj - 0001:00046c50 ?LeavePump@CAMMixer@@AAGXXZ 00447c50 f audios:cmixer.obj - 0001:00046c70 ?TestConfig@CAMMixer@@UAGJPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@H@Z 00447c70 f audios:cmixer.obj - 0001:00046d50 ?Init@CAMMixer@@UAGJPAXPAUIAMWaveOut@@PAUMixerConfig@@PAUAdvMixerConfig@@@Z 00447d50 f audios:cmixer.obj - 0001:00046e00 ?Uninit@CAMMixer@@UAGJXZ 00447e00 f audios:cmixer.obj - 0001:00046e50 ?Activate@CAMMixer@@UAGJH@Z 00447e50 f audios:cmixer.obj - 0001:00046e80 ?Suspend@CAMMixer@@UAGJH@Z 00447e80 f audios:cmixer.obj - 0001:00046f00 ?GetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 00447f00 f audios:cmixer.obj - 0001:00046fa0 ?SetConfig@CAMMixer@@UAGJPAUMixerConfig@@PAUAdvMixerConfig@@@Z 00447fa0 f audios:cmixer.obj - 0001:00047040 ?SetMixerVolume@CAMMixer@@UAGJK@Z 00448040 f audios:cmixer.obj - 0001:00047080 ?GetMixerVolume@CAMMixer@@UAGJPAK@Z 00448080 f audios:cmixer.obj - 0001:000470c0 ?PlaySoundA@CAMMixer@@UAGJPAUIAMSound@@@Z 004480c0 f audios:cmixer.obj - 0001:00047150 ?RemixMode@CAMMixer@@UAGHH@Z 00448150 f audios:cmixer.obj - 0001:00047180 ?GetAvgSample@CAMMixer@@UAGKXZ 00448180 f audios:cmixer.obj - 0001:00047390 ?AllocChannel@CAMMixer@@UAGJPAPAUIAMChannel@@@Z 00448390 f audios:cmixer.obj - 0001:00047430 ?QueryMCInterface@CAMMixer@@AAGJPAPAUIAMMixerChannel@@PAUIUnknown@@@Z 00448430 f audios:cmixer.obj - 0001:00047460 ?RegisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 00448460 f audios:cmixer.obj - 0001:00047540 ?UnregisterChannel@CAMMixer@@UAGJPAUIUnknown@@@Z 00448540 f audios:cmixer.obj - 0001:00047620 ?SetPriority@CAMMixer@@UAGJPAUIUnknown@@K@Z 00448620 f audios:cmixer.obj - 0001:000476a0 ?GetPriority@CAMMixer@@UAGJPAUIUnknown@@PAK@Z 004486a0 f audios:cmixer.obj - 0001:00047710 ?InsertMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 00448710 f audios:cmixer.obj - 0001:000477c0 ?DeleteMixerChannel@CAMMixer@@AAGJPAUIAMMixerChannel@@@Z 004487c0 f audios:cmixer.obj - 0001:00047860 ?AllocGroup@CAMMixer@@UAGJPAK@Z 00448860 f audios:cmixer.obj - 0001:000478d0 ?FreeGroup@CAMMixer@@UAGJK@Z 004488d0 f audios:cmixer.obj - 0001:00047930 ?EnlistGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 00448930 f audios:cmixer.obj - 0001:000479b0 ?DefectGroup@CAMMixer@@UAGJPAUIUnknown@@K@Z 004489b0 f audios:cmixer.obj - 0001:00047a70 ?StartGroup@CAMMixer@@UAGJKH@Z 00448a70 f audios:cmixer.obj - 0001:00047b00 ?ResetGroup@CAMMixer@@UAGJK@Z 00448b00 f audios:cmixer.obj - 0001:00047b90 ?SetGroupPosition@CAMMixer@@UAGJKK@Z 00448b90 f audios:cmixer.obj - 0001:00047c20 ?SetGroupVolume@CAMMixer@@UAGJKK@Z 00448c20 f audios:cmixer.obj - 0001:00047cb0 ?SetGroupGain@CAMMixer@@UAGJKMMH@Z 00448cb0 f audios:cmixer.obj - 0001:00047d50 ?GetInitFile@CAMMixer@@AAGPADXZ 00448d50 f audios:cmixer.obj - 0001:00047d60 ?LoadProfile@CAMMixer@@AAGJXZ 00448d60 f audios:cmixer.obj - 0001:00047e30 ?GetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 00448e30 f audios:cmixer.obj - 0001:00047e90 ?SetMixerFormat@CAMMixer@@AAGJPAUtWAVEFORMATEX@@@Z 00448e90 f audios:cmixer.obj - 0001:00047f00 ?GetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 00448f00 f audios:cmixer.obj - 0001:00047f70 ?SetAdvanced@CAMMixer@@AAGJPAUAdvMixerConfig@@@Z 00448f70 f audios:cmixer.obj - 0001:00047fe0 ?GetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 00448fe0 f audios:cmixer.obj - 0001:00048010 ?SetMixerSettings@CAMMixer@@AAGHPAUMIXERSETTINGS@@@Z 00449010 f audios:cmixer.obj - 0001:00048140 ?FinishMixerSettings@CAMMixer@@AAGXPAUMIXERSETTINGS@@@Z 00449140 f audios:cmixer.obj - 0001:00048170 ?AllocMixerData@CAMMixer@@AAGJXZ 00449170 f audios:cmixer.obj - 0001:00048320 ?FreeMixerData@CAMMixer@@AAGJXZ 00449320 f audios:cmixer.obj - 0001:000483f0 ?AllocOutputDevice@CAMMixer@@AAGJPAUIAMWaveOut@@@Z 004493f0 f audios:cmixer.obj - 0001:000484a0 ?FreeOutputDevice@CAMMixer@@AAGJXZ 004494a0 f audios:cmixer.obj - 0001:000484c0 ?AudioDeviceCheck@CAMMixer@@AAGJXZ 004494c0 f audios:cmixer.obj - 0001:00048530 ?OpenMixerDevice@CAMMixer@@AAGJI@Z 00449530 f audios:cmixer.obj - 0001:00048560 ?ActivateMixer@CAMMixer@@AAGJXZ 00449560 f audios:cmixer.obj - 0001:000486c0 ?DeactivateMixer@CAMMixer@@AAGJXZ 004496c0 f audios:cmixer.obj - 0001:00048720 ?AllocMixerTimer@CAMMixer@@AAGJXZ 00449720 f audios:cmixer.obj - 0001:00048790 ?FreeMixerTimer@CAMMixer@@AAGJXZ 00449790 f audios:cmixer.obj - 0001:000487d0 ?PrepareMixerBuffers@CAMMixer@@AAGJXZ 004497d0 f audios:cmixer.obj - 0001:00048880 ?UnprepareMixerBuffers@CAMMixer@@AAGJXZ 00449880 f audios:cmixer.obj - 0001:000488d0 ?AllocMixerBuffer@CAMMixer@@AAGXPAUMIXBUFFER@@@Z 004498d0 f audios:cmixer.obj - 0001:000488f0 ?GetNextFreeBuffer@CAMMixer@@AAGPAUMIXBUFFER@@XZ 004498f0 f audios:cmixer.obj - 0001:00048940 ?CountFreeMixerHeaders@CAMMixer@@AAGGXZ 00449940 f audios:cmixer.obj - 0001:00048970 ?StartMixer@CAMMixer@@AAGXXZ 00449970 f audios:cmixer.obj - 0001:00048a40 ?StopMixer@CAMMixer@@AAGXXZ 00449a40 f audios:cmixer.obj - 0001:00048a90 ?FillMixBuffer@CAMMixer@@AAGHPAUMIXBUFFER@@@Z 00449a90 f audios:cmixer.obj - 0001:00048b20 ?CalcRemixBuffers@CAMMixer@@AAGKXZ 00449b20 f audios:cmixer.obj - 0001:00048b90 ?RemixBuffers@CAMMixer@@AAGXK@Z 00449b90 f audios:cmixer.obj - 0001:00048c30 ?Refresh@CAMMixer@@UAGXXZ 00449c30 f audios:cmixer.obj - 0001:00048cf0 ?MakeNotifications@CAMMixer@@AAGXPAUMIXHEADER@@@Z 00449cf0 f audios:cmixer.obj - 0001:00048d40 ?Pump@CAMMixer@@AAGXXZ 00449d40 f audios:cmixer.obj - 0001:00048d60 ?MixNextBuffer@CAMMixer@@AAGHXZ 00449d60 f audios:cmixer.obj - 0001:00048ec0 ?MixerTimerFunction@CAMMixer@@CGXIIKKK@Z 00449ec0 f audios:cmixer.obj - 0001:00048ee0 ?AM_CreateInstance@@YAJABU_GUID@@PAUIUnknown@@0PAPAX@Z 00449ee0 f audios:audio.obj - 0001:00048f60 ?Interpolate@@YGGMMMGG@Z 00449f60 f audios:cmixlib.obj - 0001:00048fc0 ?DecibelToInternalVol@@YGGM@Z 00449fc0 f audios:cmixlib.obj - 0001:000490d0 ?CalcIntVolumeFromOldStyle@@YGKKPAUtWAVEFORMATEX@@0@Z 0044a0d0 f audios:cmixlib.obj - 0001:00049130 ?MixerCalcVolumeFilter@@YAP6GXKPAE0K0@ZMMGPAKH@Z 0044a130 f audios:cmixlib.obj - 0001:00049170 ?CalcMixerProc@@YAP6GXKPAE0K0@ZKGH@Z 0044a170 f audios:cmixlib.obj - 0001:00049240 ?SixteenPanVol@@YGXKPAE0K0@Z 0044a240 f audios:cmixlib.obj - 0001:00049280 ?SixteenVol@@YGXKPAE0K0@Z 0044a280 f audios:cmixlib.obj - 0001:000492c0 ?Sixteen@@YGXKPAE0K0@Z 0044a2c0 f audios:cmixlib.obj - 0001:000492e0 ?EightPanVol@@YGXKPAE0K0@Z 0044a2e0 f audios:cmixlib.obj - 0001:00049320 ?EightVol@@YGXKPAE0K0@Z 0044a320 f audios:cmixlib.obj - 0001:00049360 ?Eight@@YGXKPAE0K0@Z 0044a360 f audios:cmixlib.obj - 0001:00049380 ?Muted@@YGXKPAE0K0@Z 0044a380 f audios:cmixlib.obj - 0001:00049390 ?MixEight@@YGXPAE0K0@Z 0044a390 f audios:cmixlib.obj - 0001:00049560 ?MixSixteen@@YGXPAF0KPAE@Z 0044a560 f audios:cmixlib.obj - 0001:000497b0 ?VolAdjustSixteen@@YGXKPAE0K0@Z 0044a7b0 f audios:cmixlib.obj - 0001:0004a100 ?VolAdjustEight@@YGXKPAE0K0@Z 0044b100 f audios:cmixlib.obj - 0001:0004aa70 ?PanVolAdjustSixteen@@YGXKPAE0K0@Z 0044ba70 f audios:cmixlib.obj - 0001:0004b430 ?PanVolAdjustEight@@YGXKPAE0K0@Z 0044c430 f audios:cmixlib.obj - 0001:0004bd00 ?GetPCMConvertProc@@YAP6AKPAEK0KPAU_CONVERSIONDATA@@@ZPAUtWAVEFORMATEX@@21@Z 0044cd00 f audios:convert.obj - 0001:0004bf30 ?ReleasePCMConvertProc@@YAHPAU_CONVERSIONDATA@@@Z 0044cf30 f audios:convert.obj - 0001:0004bf50 ?GetDestSize@@YAKKPAU_CONVERSIONDATA@@@Z 0044cf50 f audios:convert.obj - 0001:0004bfc0 ?GetSourceSize@@YAKKPAU_CONVERSIONDATA@@@Z 0044cfc0 f audios:convert.obj - 0001:0004c030 ?ConvertPCMGeneric@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d030 f audios:convert.obj - 0001:0004c0e0 ?ConvertPCMMono8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d0e0 f audios:convert.obj - 0001:0004c1a0 ?ConvertPCMMono8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d1a0 f audios:convert.obj - 0001:0004c290 ?ConvertPCMMono8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d290 f audios:convert.obj - 0001:0004c370 ?ConvertPCMMono8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d370 f audios:convert.obj - 0001:0004c470 ?ConvertPCMMono16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d470 f audios:convert.obj - 0001:0004c550 ?ConvertPCMMono16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d550 f audios:convert.obj - 0001:0004c670 ?ConvertPCMMono16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d670 f audios:convert.obj - 0001:0004c750 ?ConvertPCMMono16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d750 f audios:convert.obj - 0001:0004c840 ?ConvertPCMStereo8ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d840 f audios:convert.obj - 0001:0004c980 ?ConvertPCMStereo8ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044d980 f audios:convert.obj - 0001:0004ca60 ?ConvertPCMStereo8ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044da60 f audios:convert.obj - 0001:0004cbc0 ?ConvertPCMStereo8ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044dbc0 f audios:convert.obj - 0001:0004cd10 ?ConvertPCMStereo16ToMono8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044dd10 f audios:convert.obj - 0001:0004ceb0 ?ConvertPCMStereo16ToStereo8@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044deb0 f audios:convert.obj - 0001:0004cff0 ?ConvertPCMStereo16ToMono16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044dff0 f audios:convert.obj - 0001:0004d170 ?ConvertPCMStereo16ToStereo16@@YAKPAEK0KPAU_CONVERSIONDATA@@@Z 0044e170 f audios:convert.obj - 0001:0004d250 ??0CMixerOut@@QAE@XZ 0044e250 f audios:cmixout.obj - 0001:0004d280 ??1CMixerOut@@QAE@XZ 0044e280 f audios:cmixout.obj - 0001:0004d2c0 ?AddRef@CMixerOut@@UAGKXZ 0044e2c0 f audios:cmixout.obj - 0001:0004d2d0 ?Release@CMixerOut@@UAGKXZ 0044e2d0 f audios:cmixout.obj - 0001:0004d310 ?QueryInterface@CMixerOut@@UAGJABU_GUID@@PAPAX@Z 0044e310 f audios:cmixout.obj - 0001:0004d370 ?Init@CMixerOut@@QAGJPAUIAMWaveOut@@@Z 0044e370 f audios:cmixout.obj - 0001:0004d460 ?Suspend@CMixerOut@@QAGJH@Z 0044e460 f audios:cmixout.obj - 0001:0004d540 ?SuspendPump@CMixerOut@@QAGXXZ 0044e540 f audios:cmixout.obj - 0001:0004d560 ?GetNumDevs@CMixerOut@@UAGIXZ 0044e560 f audios:cmixout.obj - 0001:0004d580 ?Open@CMixerOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 0044e580 f audios:cmixout.obj - 0001:0004d5c0 ?Close@CMixerOut@@UAGIXZ 0044e5c0 f audios:cmixout.obj - 0001:0004d5f0 ?GetDevCaps@CMixerOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 0044e5f0 f audios:cmixout.obj - 0001:0004d630 ?GetVolume@CMixerOut@@UAGIPAK@Z 0044e630 f audios:cmixout.obj - 0001:0004d660 ?SetVolume@CMixerOut@@UAGIK@Z 0044e660 f audios:cmixout.obj - 0001:0004d6a0 ?PrepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 0044e6a0 f audios:cmixout.obj - 0001:0004d6d0 ?UnprepareHeader@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 0044e6d0 f audios:cmixout.obj - 0001:0004d700 ?Write@CMixerOut@@UAGIPAUwavehdr_tag@@I@Z 0044e700 f audios:cmixout.obj - 0001:0004d730 ?Pause@CMixerOut@@UAGIXZ 0044e730 f audios:cmixout.obj - 0001:0004d760 ?Restart@CMixerOut@@UAGIXZ 0044e760 f audios:cmixout.obj - 0001:0004d790 ?Reset@CMixerOut@@UAGIXZ 0044e790 f audios:cmixout.obj - 0001:0004d7c0 ?BreakLoop@CMixerOut@@UAGIXZ 0044e7c0 f audios:cmixout.obj - 0001:0004d7f0 ?GetPosition@CMixerOut@@UAGIPAUmmtime_tag@@I@Z 0044e7f0 f audios:cmixout.obj - 0001:0004d820 ?GetPitch@CMixerOut@@UAGIPAK@Z 0044e820 f audios:cmixout.obj - 0001:0004d850 ?SetPitch@CMixerOut@@UAGIK@Z 0044e850 f audios:cmixout.obj - 0001:0004d880 ?GetPlaybackRate@CMixerOut@@UAGIPAK@Z 0044e880 f audios:cmixout.obj - 0001:0004d8b0 ?SetPlaybackRate@CMixerOut@@UAGIK@Z 0044e8b0 f audios:cmixout.obj - 0001:0004d8e0 ?GetID@CMixerOut@@UAGIPAI@Z 0044e8e0 f audios:cmixout.obj - 0001:0004d910 ?Message@CMixerOut@@UAGIIKK@Z 0044e910 f audios:cmixout.obj - 0001:0004d950 ?GetErrorText@CMixerOut@@UAGIIPADI@Z 0044e950 f audios:cmixout.obj - 0001:0004d990 ??0CAMPlaySnd@@QAE@XZ 0044e990 f audios:cplaysnd.obj - 0001:0004d9b0 ?OnStart@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 0044e9b0 f audios:cplaysnd.obj - 0001:0004d9c0 ?OnSyncObject@CAMPlaySnd@@UAGXPAUIAMSound@@KPAX@Z 0044e9c0 f audios:cplaysnd.obj - 0001:0004d9d0 ??1CAMPlaySnd@@QAE@XZ 0044e9d0 f audios:cplaysnd.obj - 0001:0004d9f0 ?AddRef@CAMPlaySnd@@UAGKXZ 0044e9f0 f audios:cplaysnd.obj - 0001:0004da00 ?Release@CAMPlaySnd@@UAGKXZ 0044ea00 f audios:cplaysnd.obj - 0001:0004da40 ?QueryInterface@CAMPlaySnd@@UAGJABU_GUID@@PAPAX@Z 0044ea40 f audios:cplaysnd.obj - 0001:0004daa0 ?Play@CAMPlaySnd@@QAGJPAUIAMMixer@@PAUIAMSound@@@Z 0044eaa0 f audios:cplaysnd.obj - 0001:0004db30 ?OnCompletion@CAMPlaySnd@@UAGXPAUIAMSound@@K@Z 0044eb30 f audios:cplaysnd.obj - 0001:0004db50 ?OnError@CAMPlaySnd@@UAGXPAUIAMSound@@KJ@Z 0044eb50 f audios:cplaysnd.obj - 0001:0004db70 ?AddRef@CAMChannel@@UAGKXZ 0044eb70 f audios:cchannel.obj - 0001:0004db80 ?Release@CAMChannel@@UAGKXZ 0044eb80 f audios:cchannel.obj - 0001:0004dc00 ?QueryInterface@CAMChannel@@UAGJABU_GUID@@PAPAX@Z 0044ec00 f audios:cchannel.obj - 0001:0004dc80 ??0CAMChannel@@QAE@XZ 0044ec80 f audios:cchannel.obj - 0001:0004dcd0 ??1CAMChannel@@QAE@XZ 0044ecd0 f audios:cchannel.obj - 0001:0004dd80 ?EnterChannel@CAMChannel@@AAGXXZ 0044ed80 f audios:cchannel.obj - 0001:0004dda0 ?LeaveChannel@CAMChannel@@AAGXXZ 0044eda0 f audios:cchannel.obj - 0001:0004ddc0 ?Init@CAMChannel@@QAGJPAUIAMMixer@@@Z 0044edc0 f audios:cchannel.obj - 0001:0004de90 ?RegisterNotify@CAMChannel@@UAGJPAUIAMNotifySink@@K@Z 0044ee90 f audios:cchannel.obj - 0001:0004dee0 ?SetCachedSrc@CAMChannel@@UAGJPAUIAMSound@@PAUCacheConfig@@@Z 0044eee0 f audios:cchannel.obj - 0001:0004dfe0 ?SetSoundSrc@CAMChannel@@UAGJPAUIAMSound@@@Z 0044efe0 f audios:cchannel.obj - 0001:0004e160 ?GetSoundSrc@CAMChannel@@UAGJPAPAUIAMSound@@@Z 0044f160 f audios:cchannel.obj - 0001:0004e1c0 ?Play@CAMChannel@@UAGJXZ 0044f1c0 f audios:cchannel.obj - 0001:0004e220 ?Stop@CAMChannel@@UAGJXZ 0044f220 f audios:cchannel.obj - 0001:0004e2b0 ?Finish@CAMChannel@@UAGJXZ 0044f2b0 f audios:cchannel.obj - 0001:0004e2e0 ?IsPlaying@CAMChannel@@UAGHXZ 0044f2e0 f audios:cchannel.obj - 0001:0004e310 ?Samples@CAMChannel@@UAGKXZ 0044f310 f audios:cchannel.obj - 0001:0004e340 ?SetPosition@CAMChannel@@UAGJK@Z 0044f340 f audios:cchannel.obj - 0001:0004e3a0 ?GetPosition@CAMChannel@@UAGJPAK@Z 0044f3a0 f audios:cchannel.obj - 0001:0004e3e0 ?SetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 0044f3e0 f audios:cchannel.obj - 0001:0004e450 ?GetSMPTEPos@CAMChannel@@UAGJPAUSMPTE@@@Z 0044f450 f audios:cchannel.obj - 0001:0004e4c0 ?SetTimePos@CAMChannel@@UAGJK@Z 0044f4c0 f audios:cchannel.obj - 0001:0004e500 ?GetTimePos@CAMChannel@@UAGJPAK@Z 0044f500 f audios:cchannel.obj - 0001:0004e560 ?Mute@CAMChannel@@UAGJH@Z 0044f560 f audios:cchannel.obj - 0001:0004e5a0 ?SetVolume@CAMChannel@@UAGJK@Z 0044f5a0 f audios:cchannel.obj - 0001:0004e5f0 ?SetChannelVol@CAMChannel@@AAGXGG@Z 0044f5f0 f audios:cchannel.obj - 0001:0004e680 ?GetVolume@CAMChannel@@UAGJPAK@Z 0044f680 f audios:cchannel.obj - 0001:0004e6c0 ?SetGain@CAMChannel@@UAGJMM@Z 0044f6c0 f audios:cchannel.obj - 0001:0004e710 ?GetGain@CAMChannel@@UAGJPAM0@Z 0044f710 f audios:cchannel.obj - 0001:0004e760 ?DoRemix@CAMChannel@@AAGXXZ 0044f760 f audios:cchannel.obj - 0001:0004e790 ?SetMutx@CAMChannel@@UAGJPAVMUTX@@@Z 0044f790 f audios:cchannel.obj - 0001:0004e7b0 ?Configure@CAMChannel@@UAGJKKPAUtWAVEFORMATEX@@@Z 0044f7b0 f audios:cchannel.obj - 0001:0004ea10 ?ClearNotify@CAMChannel@@AAGXK@Z 0044fa10 f audios:cchannel.obj - 0001:0004ea90 ?MixBuffer@CAMChannel@@UAGHPAUMIXHEADER@@@Z 0044fa90 f audios:cchannel.obj - 0001:0004ecb0 ?MixNotify@CAMChannel@@UAGJPAUMIXHEADER@@@Z 0044fcb0 f audios:cchannel.obj - 0001:0004edc0 ?RevertTo@CAMChannel@@UAGJK@Z 0044fdc0 f audios:cchannel.obj - 0001:0004ee10 ?GetActiveState@CAMChannel@@UAGHXZ 0044fe10 f audios:cchannel.obj - 0001:0004ee30 ?DoStart@CAMChannel@@UAGJH@Z 0044fe30 f audios:cchannel.obj - 0001:0004eeb0 ?DoReset@CAMChannel@@UAGJXZ 0044feb0 f audios:cchannel.obj - 0001:0004eef0 ?DoPosition@CAMChannel@@UAGJK@Z 0044fef0 f audios:cchannel.obj - 0001:0004ef20 ?DoVolume@CAMChannel@@UAGJK@Z 0044ff20 f audios:cchannel.obj - 0001:0004ef60 ?DoGain@CAMChannel@@UAGJMMH@Z 0044ff60 f audios:cchannel.obj - 0001:0004efd0 ?SetNext@CAMChannel@@UAGJPAUIAMMixerChannel@@@Z 0044ffd0 f audios:cchannel.obj - 0001:0004efe0 ?GetNext@CAMChannel@@UAGPAUIAMMixerChannel@@XZ 0044ffe0 f audios:cchannel.obj - 0001:0004eff0 ?SetPriority@CAMChannel@@UAGJK@Z 0044fff0 f audios:cchannel.obj - 0001:0004f000 ?GetPriority@CAMChannel@@UAGKXZ 00450000 f audios:cchannel.obj - 0001:0004f010 ?SetGroup@CAMChannel@@UAGJK@Z 00450010 f audios:cchannel.obj - 0001:0004f020 ?GetGroup@CAMChannel@@UAGKXZ 00450020 f audios:cchannel.obj - 0001:0004f030 ?QueryInterface@CAMChannel@@W3AGJABU_GUID@@PAPAX@Z 00450030 f audios:cchannel.obj - 0001:0004f040 ?AddRef@CAMChannel@@W3AGKXZ 00450040 f audios:cchannel.obj - 0001:0004f050 ?Release@CAMChannel@@W3AGKXZ 00450050 f audios:cchannel.obj - 0001:0004f060 ??0CRealOut@@QAE@XZ 00450060 f audios:crealout.obj - 0001:0004f080 ??1CRealOut@@QAE@XZ 00450080 f audios:crealout.obj - 0001:0004f0b0 ?AddRef@CRealOut@@UAGKXZ 004500b0 f audios:crealout.obj - 0001:0004f0c0 ?Release@CRealOut@@UAGKXZ 004500c0 f audios:crealout.obj - 0001:0004f100 ?QueryInterface@CRealOut@@UAGJABU_GUID@@PAPAX@Z 00450100 f audios:crealout.obj - 0001:0004f160 ?GetNumDevs@CRealOut@@UAGIXZ 00450160 f audios:crealout.obj - 0001:0004f170 ?Init@CRealOut@@QAGJXZ 00450170 f audios:crealout.obj - 0001:0004f180 ?Open@CRealOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 00450180 f audios:crealout.obj - 0001:0004f1e0 ?Close@CRealOut@@UAGIXZ 004501e0 f audios:crealout.obj - 0001:0004f220 ?GetDevCaps@CRealOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 00450220 f audios:crealout.obj - 0001:0004f250 ?GetVolume@CRealOut@@UAGIPAK@Z 00450250 f audios:crealout.obj - 0001:0004f280 ?SetVolume@CRealOut@@UAGIK@Z 00450280 f audios:crealout.obj - 0001:0004f2b0 ?PrepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004502b0 f audios:crealout.obj - 0001:0004f2e0 ?UnprepareHeader@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 004502e0 f audios:crealout.obj - 0001:0004f310 ?Write@CRealOut@@UAGIPAUwavehdr_tag@@I@Z 00450310 f audios:crealout.obj - 0001:0004f340 ?Pause@CRealOut@@UAGIXZ 00450340 f audios:crealout.obj - 0001:0004f360 ?Restart@CRealOut@@UAGIXZ 00450360 f audios:crealout.obj - 0001:0004f380 ?Reset@CRealOut@@UAGIXZ 00450380 f audios:crealout.obj - 0001:0004f3a0 ?BreakLoop@CRealOut@@UAGIXZ 004503a0 f audios:crealout.obj - 0001:0004f3c0 ?GetPosition@CRealOut@@UAGIPAUmmtime_tag@@I@Z 004503c0 f audios:crealout.obj - 0001:0004f3f0 ?GetPitch@CRealOut@@UAGIPAK@Z 004503f0 f audios:crealout.obj - 0001:0004f420 ?SetPitch@CRealOut@@UAGIK@Z 00450420 f audios:crealout.obj - 0001:0004f450 ?GetPlaybackRate@CRealOut@@UAGIPAK@Z 00450450 f audios:crealout.obj - 0001:0004f480 ?SetPlaybackRate@CRealOut@@UAGIK@Z 00450480 f audios:crealout.obj - 0001:0004f4b0 ?GetID@CRealOut@@UAGIPAI@Z 004504b0 f audios:crealout.obj - 0001:0004f4e0 ?Message@CRealOut@@UAGIIKK@Z 004504e0 f audios:crealout.obj - 0001:0004f510 ?GetErrorText@CRealOut@@UAGIIPADI@Z 00450510 f audios:crealout.obj - 0001:0004f540 ??0CFakeOut@@QAE@XZ 00450540 f audios:cfakeout.obj - 0001:0004f580 ??1CFakeOut@@QAE@XZ 00450580 f audios:cfakeout.obj - 0001:0004f590 ?AddRef@CFakeOut@@UAGKXZ 00450590 f audios:cfakeout.obj - 0001:0004f5a0 ?Release@CFakeOut@@UAGKXZ 004505a0 f audios:cfakeout.obj - 0001:0004f5e0 ?QueryInterface@CFakeOut@@UAGJABU_GUID@@PAPAX@Z 004505e0 f audios:cfakeout.obj - 0001:0004f640 ?Init@CFakeOut@@QAGJXZ 00450640 f audios:cfakeout.obj - 0001:0004f650 ?GetNumDevs@CFakeOut@@UAGIXZ 00450650 f audios:cfakeout.obj - 0001:0004f660 ?Open@CFakeOut@@UAGIIPAUtWAVEFORMATEX@@KKK@Z 00450660 f audios:cfakeout.obj - 0001:0004f700 ?Close@CFakeOut@@UAGIXZ 00450700 f audios:cfakeout.obj - 0001:0004f730 ?GetDevCaps@CFakeOut@@UAGIIPAUtagWAVEOUTCAPSA@@I@Z 00450730 f audios:cfakeout.obj - 0001:0004f7f0 ?GetVolume@CFakeOut@@UAGIPAK@Z 004507f0 f audios:cfakeout.obj - 0001:0004f820 ?SetVolume@CFakeOut@@UAGIK@Z 00450820 f audios:cfakeout.obj - 0001:0004f840 ?PrepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00450840 f audios:cfakeout.obj - 0001:0004f880 ?UnprepareHeader@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00450880 f audios:cfakeout.obj - 0001:0004f8c0 ?StartPlayback@CFakeOut@@AAGXXZ 004508c0 f audios:cfakeout.obj - 0001:0004f900 ?SuspendPump@CFakeOut@@QAGXXZ 00450900 f audios:cfakeout.obj - 0001:0004f950 ?Write@CFakeOut@@UAGIPAUwavehdr_tag@@I@Z 00450950 f audios:cfakeout.obj - 0001:0004fa00 ?AppendHeaderToQueue@CFakeOut@@AAGXPAUwavehdr_tag@@@Z 00450a00 f audios:cfakeout.obj - 0001:0004fa40 ?Pause@CFakeOut@@UAGIXZ 00450a40 f audios:cfakeout.obj - 0001:0004fa70 ?Restart@CFakeOut@@UAGIXZ 00450a70 f audios:cfakeout.obj - 0001:0004faa0 ?Reset@CFakeOut@@UAGIXZ 00450aa0 f audios:cfakeout.obj - 0001:0004faf0 ?BreakLoop@CFakeOut@@UAGIXZ 00450af0 f audios:cfakeout.obj - 0001:0004fb00 ?GetPosition@CFakeOut@@UAGIPAUmmtime_tag@@I@Z 00450b00 f audios:cfakeout.obj - 0001:0004fb10 ?GetPitch@CFakeOut@@UAGIPAK@Z 00450b10 f audios:cfakeout.obj - 0001:0004fb20 ?SetPitch@CFakeOut@@UAGIK@Z 00450b20 f audios:cfakeout.obj - 0001:0004fb30 ?GetPlaybackRate@CFakeOut@@UAGIPAK@Z 00450b30 f audios:cfakeout.obj - 0001:0004fb40 ?SetPlaybackRate@CFakeOut@@UAGIK@Z 00450b40 f audios:cfakeout.obj - 0001:0004fb50 ?GetID@CFakeOut@@UAGIPAI@Z 00450b50 f audios:cfakeout.obj - 0001:0004fb60 ?Message@CFakeOut@@UAGIIKK@Z 00450b60 f audios:cfakeout.obj - 0001:0004fb70 ?GetErrorText@CFakeOut@@UAGIIPADI@Z 00450b70 f audios:cfakeout.obj - 0001:0004fb78 __onexit 00450b78 f LIBC:onexit.obj - 0001:0004fbee _atexit 00450bee f LIBC:onexit.obj - 0001:0004fc00 ___onexitinit 00450c00 f LIBC:onexit.obj - 0001:0004fc36 __purecall 00450c36 f LIBC:purevirt.obj - 0001:0004fc41 ??3@YAXPAX@Z 00450c41 f LIBC:delete.obj - 0001:0004fc4e ??2@YAPAXI@Z 00450c4e f LIBC:new.obj - 0001:0004fc5d _WinMainCRTStartup 00450c5d f LIBC:wincrt0.obj - 0001:0004fdc3 __amsg_exit 00450dc3 f LIBC:wincrt0.obj - 0001:0004fdf5 ?_CallSettingFrame@@YGPAXPAXPAUEHRegistrationNode@@@Z 00450df5 f LIBC:trnsctrl.obj - 0001:0004fe1b ?_JumpToContinuation@@YGXPAXPAUEHRegistrationNode@@@Z 00450e1b f LIBC:trnsctrl.obj - 0001:0004fe50 ?_CallMemberFunction0@@YGXPAX0@Z 00450e50 f LIBC:trnsctrl.obj - 0001:0004fe57 ?_CallMemberFunction1@@YGXPAX00@Z 00450e57 f LIBC:trnsctrl.obj - 0001:0004fe5e ?_CallMemberFunction2@@YGXPAX00H@Z 00450e5e f LIBC:trnsctrl.obj - 0001:0004fe65 ?_UnwindNestedFrames@@YGXPAUEHRegistrationNode@@PAUEHExceptionRecord@@@Z 00450e65 f LIBC:trnsctrl.obj - 0001:0004feb3 ___CxxFrameHandler 00450eb3 f LIBC:trnsctrl.obj - 0001:0004feea ?_CallCatchBlock2@@YAPAXPAUEHRegistrationNode@@PAUFuncInfo@@PAXH@Z 00450eea f LIBC:trnsctrl.obj - 0001:0004ff62 ?_CallSETranslator@@YAHPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAX2PAUFuncInfo@@H1@Z 00450f62 f LIBC:trnsctrl.obj - 0001:00050098 __global_unwind2 00451098 f LIBC:exsup.obj - 0001:000500da __local_unwind2 004510da f LIBC:exsup.obj - 0001:00050134 __abnormal_termination 00451134 f LIBC:exsup.obj - 0001:00050158 __ftol 00451158 f LIBC:ftol.obj - 0001:0005017f __fpmath 0045117f f LIBC:fpinit.obj - 0001:00050193 __fpclear 00451193 f LIBC:fpinit.obj - 0001:00050194 __cfltcvt_init 00451194 f LIBC:fpinit.obj - 0001:000501cc _fdiv_main_routine 004511cc f LIBC:adj_fdiv.obj - 0001:000502e3 __adj_fdiv_r 004512e3 f LIBC:adj_fdiv.obj - 0001:00050782 _fdivp_sti_st 00451782 f LIBC:adj_fdiv.obj - 0001:00050795 _fdivrp_sti_st 00451795 f LIBC:adj_fdiv.obj - 0001:000507a8 __adj_fdiv_m32 004517a8 f LIBC:adj_fdiv.obj - 0001:000507f4 __adj_fdiv_m64 004517f4 f LIBC:adj_fdiv.obj - 0001:00050840 __adj_fdiv_m16i 00451840 f LIBC:adj_fdiv.obj - 0001:00050874 __adj_fdiv_m32i 00451874 f LIBC:adj_fdiv.obj - 0001:000508a8 __adj_fdivr_m32 004518a8 f LIBC:adj_fdiv.obj - 0001:000508f4 __adj_fdivr_m64 004518f4 f LIBC:adj_fdiv.obj - 0001:00050940 __adj_fdivr_m16i 00451940 f LIBC:adj_fdiv.obj - 0001:00050974 __adj_fdivr_m32i 00451974 f LIBC:adj_fdiv.obj - 0001:000509a8 __safe_fdiv 004519a8 f LIBC:adj_fdiv.obj - 0001:000509bd __safe_fdivr 004519bd f LIBC:adj_fdiv.obj - 0001:000509d2 __fprem_common 004519d2 f LIBC:adj_fdiv.obj - 0001:00050bd8 __adj_fprem 00451bd8 f LIBC:adj_fdiv.obj - 0001:00050c8a __fprem1_common 00451c8a f LIBC:adj_fdiv.obj - 0001:00050e90 __adj_fprem1 00451e90 f LIBC:adj_fdiv.obj - 0001:00050f45 __safe_fprem 00451f45 f LIBC:adj_fdiv.obj - 0001:00050f4b __safe_fprem1 00451f4b f LIBC:adj_fdiv.obj - 0001:00050f51 __adj_fpatan 00451f51 f LIBC:adj_fdiv.obj - 0001:00050f54 __adj_fptan 00451f54 f LIBC:adj_fdiv.obj - 0001:00050f58 _pow 00451f58 LIBC:87ctran.obj - 0001:00050f62 _log 00451f62 LIBC:87ctran.obj - 0001:00050f6c _log10 00451f6c LIBC:87ctran.obj - 0001:00050f73 _exp 00451f73 LIBC:87ctran.obj - 0001:00050f7a __CIpow 00451f7a LIBC:87ctran.obj - 0001:00050f84 __CIlog 00451f84 LIBC:87ctran.obj - 0001:00050f8e __CIlog10 00451f8e LIBC:87ctran.obj - 0001:00050f95 __CIexp 00451f95 LIBC:87ctran.obj - 0001:00050f9c _memmove 00451f9c f LIBC:memmove.obj - 0001:000510ea __cinit 004520ea f LIBC:crt0dat.obj - 0001:0005111a _exit 0045211a f LIBC:crt0dat.obj - 0001:0005112b __exit 0045212b f LIBC:crt0dat.obj - 0001:000511db _realloc 004521db f LIBC:realloc.obj - 0001:0005132d __msize 0045232d f LIBC:msize.obj - 0001:0005133e _malloc 0045233e f LIBC:malloc.obj - 0001:00051351 __nh_malloc 00452351 f LIBC:malloc.obj - 0001:00051410 __heap_split_block 00452410 f LIBC:malloc.obj - 0001:00051455 _free 00452455 f LIBC:free.obj - 0001:000514bd __XcptFilter 004524bd f LIBC:winxfltr.obj - 0001:00051648 __ismbblead 00452648 f LIBC:ismbbyte.obj - 0001:0005168b __setenvp 0045268b f LIBC:stdenvp.obj - 0001:00051756 __setargv 00452756 f LIBC:stdargv.obj - 0001:00051a54 __setmbcp 00452a54 f LIBC:mbctype.obj - 0001:00051be2 ___initmbctable 00452be2 f LIBC:mbctype.obj - 0001:00051bed __ioinit 00452bed f LIBC:ioinit.obj - 0001:00051cdb __heap_init 00452cdb f LIBC:heapinit.obj - 0001:00051d58 ___getempty 00452d58 f LIBC:heapinit.obj - 0001:00051d88 __except_handler3 00452d88 f LIBC:exsup3.obj - 0001:00051e36 __seh_longjmp_unwind@4 00452e36 f LIBC:exsup3.obj - 0001:00051e51 __NMSG_WRITE 00452e51 f LIBC:crt0msg.obj - 0001:00051ea9 __GET_RTERRMSG 00452ea9 f LIBC:crt0msg.obj - 0001:00051ede ___InternalCxxFrameHandler 00452ede f LIBC:frame.obj - 0001:00052351 ___FrameUnwindToState 00453351 f LIBC:frame.obj - 0001:00052850 ?terminate@@YAXXZ 00453850 f LIBC:hooks.obj - 0001:000528c2 ?_inconsistency@@YAXXZ 004538c2 f LIBC:hooks.obj - 0001:00052934 __setdefaultprecision 00453934 f LIBC:fp8.obj - 0001:00052947 _ms_p5_test_fdiv 00453947 f LIBC:testfdiv.obj - 0001:0005298d _ms_p5_mp_test_fdiv 0045398d f LIBC:testfdiv.obj - 0001:00052a60 __forcdecpt 00453a60 f LIBC:cvt.obj - 0001:00052ac5 __cropzeros 00453ac5 f LIBC:cvt.obj - 0001:00052b24 __positive 00453b24 f LIBC:cvt.obj - 0001:00052b39 __fassign 00453b39 f LIBC:cvt.obj - 0001:00052b7c __cftoe 00453b7c f LIBC:cvt.obj - 0001:00052ccf __cftof 00453ccf f LIBC:cvt.obj - 0001:00052deb __cftog 00453deb f LIBC:cvt.obj - 0001:00052e93 __cfltcvt 00453e93 f LIBC:cvt.obj - 0001:00052f21 __fFEXP 00453f21 LIBC:87tran.obj - 0001:00052f88 __rtinfpopse 00453f88 LIBC:87tran.obj - 0001:00052f8a __rtinfnpopse 00453f8a LIBC:87tran.obj - 0001:00052f9a __fFLN 00453f9a LIBC:87tran.obj - 0001:0005304f __rtinfpop 0045404f LIBC:87tran.obj - 0001:00053051 __rtinfnpop 00454051 LIBC:87tran.obj - 0001:0005306e __ffexpm1 0045406e LIBC:87tran.obj - 0001:00053118 __cintrindisp2 00454118 f LIBC:87cdisp.obj - 0001:00053156 __cintrindisp1 00454156 f LIBC:87cdisp.obj - 0001:0005318c __ctrandisp2 0045418c f LIBC:87cdisp.obj - 0001:000532fd __ctrandisp1 004542fd f LIBC:87cdisp.obj - 0001:00053329 __fload 00454329 f LIBC:87cdisp.obj - 0001:00053365 __heap_abort 00454365 f LIBC:hpabort.obj - 0001:00053370 __heap_grow 00454370 f LIBC:heapgrow.obj - 0001:00053459 __heap_grow_region 00454459 f LIBC:heapgrow.obj - 0001:00053506 __heap_free_region 00454506 f LIBC:heapgrow.obj - 0001:00053540 __heap_search 00454540 f LIBC:heapsrch.obj - 0001:00053641 ?__CxxUnhandledExceptionFilter@@YGJPAU_EXCEPTION_POINTERS@@@Z 00454641 f LIBC:unhandld.obj - 0001:0005369a ?_ValidateRead@@YAHPBXI@Z 0045469a f LIBC:validate.obj - 0001:000536b8 ?_ValidateWrite@@YAHPAXI@Z 004546b8 f LIBC:validate.obj - 0001:000536d6 ?_ValidateExecute@@YAHP6GHXZ@Z 004546d6 f LIBC:validate.obj - 0001:000536f0 _abort 004546f0 f LIBC:abort.obj - 0001:0005370f __control87 0045470f f LIBC:ieee87.obj - 0001:0005374a __controlfp 0045474a f LIBC:ieee87.obj - 0001:00053881 __fptrap 00454881 f LIBC:crt0fp.obj - 0001:0005388c __isctype 0045488c f LIBC:isctype.obj - 0001:00053907 _tolower 00454907 f LIBC:tolower.obj - 0001:000539d3 __ZeroTail 004549d3 f LIBC:intrncvt.obj - 0001:00053a33 __IncMan 00454a33 f LIBC:intrncvt.obj - 0001:00053a94 __RoundMan 00454a94 f LIBC:intrncvt.obj - 0001:00053b31 __CopyMan 00454b31 f LIBC:intrncvt.obj - 0001:00053b4e __FillZeroMan 00454b4e f LIBC:intrncvt.obj - 0001:00053b5a __IsZeroMan 00454b5a f LIBC:intrncvt.obj - 0001:00053b78 __ShrMan 00454b78 f LIBC:intrncvt.obj - 0001:00053c23 __ld12cvt 00454c23 f LIBC:intrncvt.obj - 0001:00053dbf __ld12tod 00454dbf f LIBC:intrncvt.obj - 0001:00053dd5 __ld12tof 00454dd5 f LIBC:intrncvt.obj - 0001:00053deb __atodbl 00454deb f LIBC:intrncvt.obj - 0001:00053e1c __atoflt 00454e1c f LIBC:intrncvt.obj - 0001:00053e4d __fptostr 00454e4d f LIBC:_fptostr.obj - 0001:00053ecb __fltout 00454ecb f LIBC:cfout.obj - 0001:00053f2e ___dtold 00454f2e f LIBC:cfout.obj - 0001:00053fe8 __trandisp1 00454fe8 f LIBC:87disp.obj - 0001:0005404f __trandisp2 0045504f f LIBC:87disp.obj - 0001:000540db __rttospopde 004550db LIBC:87disp.obj - 0001:000540e0 __rttospop 004550e0 LIBC:87disp.obj - 0001:000540e2 __rtnospop 004550e2 LIBC:87disp.obj - 0001:000540e4 __rttosnpop 004550e4 LIBC:87disp.obj - 0001:000540e5 __rtnospopde 004550e5 LIBC:87disp.obj - 0001:000540ec __rtzeropop 004550ec LIBC:87disp.obj - 0001:000540ee __rtzeronpop 004550ee LIBC:87disp.obj - 0001:000540f3 __rtonepop 004550f3 LIBC:87disp.obj - 0001:000540f5 __rtonenpop 004550f5 LIBC:87disp.obj - 0001:000540fa __tosnan1 004550fa LIBC:87disp.obj - 0001:00054125 __nosnan2 00455125 LIBC:87disp.obj - 0001:00054127 __tosnan2 00455127 LIBC:87disp.obj - 0001:0005414f __nan2 0045514f LIBC:87disp.obj - 0001:0005418e __rtindfpop 0045518e LIBC:87disp.obj - 0001:00054190 __rtindfnpop 00455190 LIBC:87disp.obj - 0001:000541a1 __rttosnpopde 004551a1 LIBC:87disp.obj - 0001:000541ab __rtchsifneg 004551ab LIBC:87disp.obj - 0001:000541b2 __powhlp 004551b2 f LIBC:powhlp.obj - 0001:0005439f __d_inttype 0045539f f LIBC:powhlp.obj - 0001:000543f1 __87except 004553f1 f LIBC:87except.obj - 0001:000544fb __heap_addblock 004554fb f LIBC:heapadd.obj - 0001:000547b2 _raise 004557b2 f LIBC:winsig.obj - 0001:00054937 ___crtGetStringTypeA 00455937 f LIBC:aw_str.obj - 0001:00054aae ___crtLCMapStringA 00455aae f LIBC:aw_map.obj - 0001:00054d0d ___addl 00455d0d f LIBC:mantold.obj - 0001:00054d30 ___add_12 00455d30 f LIBC:mantold.obj - 0001:00054d8e ___shl_12 00455d8e f LIBC:mantold.obj - 0001:00054dcc ___shr_12 00455dcc f LIBC:mantold.obj - 0001:00054dff ___mtold12 00455dff f LIBC:mantold.obj - 0001:00054ee3 ___strgtold12 00455ee3 f LIBC:strgtold.obj - 0001:00055522 _$I10_OUTPUT 00456522 f LIBC:x10fout.obj - 0001:00055858 __set_exp 00456858 f LIBC:util.obj - 0001:0005588d __decomp 0045688d f LIBC:util.obj - 0001:0005595b __frnd 0045695b f LIBC:frnd.obj - 0001:00055970 __raise_exc 00456970 f LIBC:fpexcept.obj - 0001:00055c82 __handle_exc 00456c82 f LIBC:fpexcept.obj - 0001:00055eda __set_errno 00456eda f LIBC:fpexcept.obj - 0001:00055f06 __matherr 00456f06 f LIBC:matherr.obj - 0001:00055f09 __statfp 00456f09 f LIBC:fpctrl.obj - 0001:00055f1a __clrfp 00456f1a f LIBC:fpctrl.obj - 0001:00055f2c __ctrlfp 00456f2c f LIBC:fpctrl.obj - 0001:00055f5c __set_statfp 00456f5c f LIBC:fpctrl.obj - 0001:00055fb6 __heap_findaddr 00456fb6 f LIBC:findaddr.obj - 0001:00056020 _calloc 00457020 f LIBC:calloc.obj - 0001:0005605a ___set_invalid_mb_chars 0045705a f LIBC:setmbval.obj - 0001:00056088 _strncpy 00457088 f LIBC:strncpy.obj - 0001:000560ac ___ld12mul 004570ac f LIBC:tenpow.obj - 0001:000562ec ___multtenpow12 004572ec f LIBC:tenpow.obj - 0001:00056362 _RtlUnwind@16 00457362 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00458000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00458018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00458030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 00458038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 00458050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 00458070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 004580a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 00458138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 00458240 utilstr.obj - 0002:00000360 ?_pcflFirst@CFL@@0PAV1@A 00458360 chunk.obj - 0002:00000388 ?_pfilFirst@FIL@@1PAV1@A 00458388 file.obj - 0002:00000390 ?_mutxList@FIL@@1VMUTX@@A 00458390 file.obj - 0002:000003b8 ?_fniTemp@@3VFNI@@A 004583b8 fniwin.obj - 0002:000004e0 ?vpappb@@3PAVAPPB@@A 004584e0 appb.obj - 0002:000004e4 ?vpsndm@@3PAVSNDM@@A 004584e4 appb.obj - 0002:000004f8 ?vpcex@@3PAVCEX@@A 004584f8 appb.obj - 0002:0000051c ?_pclokFirst@CLOK@@1PAV1@A 0045851c clok.obj - 0002:00000560 ?_hidLast@CMH@@0JA 00458560 cmd.obj - 0002:000005ec ?vcactRealize@@3JA 004585ec gfx.obj - 0002:00000600 ?vntl@@3VNTL@@A 00458600 gfx.obj - 0002:0000063c ?_gridLast@GOB@@1JA 0045863c gob.obj - 0002:00000748 ?vwig@@3UWIG@@A 00458748 appbwin.obj - 0002:000007d4 ?_pgobScreen@GOB@@0PAV1@A 004587d4 gobwin.obj - 0002:00000810 ?vpmubCur@@3PAVMUB@@A 00458810 menuwin.obj - 0002:000008d0 ?_clip@@3VCLIP@@A 004588d0 clip.obj - 0002:000008f0 ?vpclip@@3PAVCLIP@@A 004588f0 clip.obj - 0002:00000948 ?_siiLast@SNDV@@1JA 00458948 sndm.obj - 0002:00000c60 ?vclok@@3VCLOK@@A 00458c60 ft.obj - 0002:00000c98 ?vapp@@3VAPP@@A 00458c98 ft.obj - 0002:00000d30 ?vrnd@@3VRND@@A 00458d30 ft.obj - 0002:00000d48 ?_rgacr@@3QAVACR@@A 00458d48 ft.obj - 0002:00000f20 __heap_descpages 00458f20 - 0002:00000f30 __heap_regions 00458f30 - 0002:00001230 ___onexitend 00459230 - 0002:00001234 ___onexitbegin 00459234 - 0002:00001238 __acmdln 00459238 - 0003:00000058 ??_7KCDC@@6B@ 0045a058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 0045a078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 0045a090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 0045a0a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 0045a0d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 0045a0f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 0045a108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 0045a120 utilstr.obj - 0003:00000138 ??_7GRPB@@6B@ 0045a138 groups.obj - 0003:00000160 ??_7GLB@@6B@ 0045a160 groups.obj - 0003:00000190 ??_7GL@@6B@ 0045a190 groups.obj - 0003:000001c0 ??_7AL@@6B@ 0045a1c0 groups.obj - 0003:000001f0 ??_7GGB@@6B@ 0045a1f0 groups.obj - 0003:00000220 ??_7GG@@6B@ 0045a220 groups.obj - 0003:00000250 ??_7AG@@6B@ 0045a250 groups.obj - 0003:00000280 ??_7GSTB@@6B@ 0045a280 groups2.obj - 0003:000002b0 ??_7GST@@6B@ 0045a2b0 groups2.obj - 0003:000002e0 ??_7CFL@@6B@ 0045a2e0 chunk.obj - 0003:000002f8 ??_7CGE@@6B@ 0045a2f8 chunk.obj - 0003:00000310 ??_7CODM@@6B@ 0045a310 codec.obj - 0003:00000340 ??_7BACO@@6B@ 0045a340 crf.obj - 0003:00000368 ??_7CRF@@6B@ 0045a368 crf.obj - 0003:00000390 ??_7GHQ@@6B@ 0045a390 crf.obj - 0003:000003b8 ??_7FIL@@6B@ 0045a3b8 file.obj - 0003:000003d0 ??_7BLCK@@6B@ 0045a3d0 file.obj - 0003:000003e8 ??_7FNI@@6B@ 0045a3e8 fniwin.obj - 0003:00000400 ??_7APPB@@6B@ 0045a400 appb.obj - 0003:00000528 ??_7CLOK@@6B@ 0045a528 clok.obj - 0003:00000550 ??_7CMH@@6B@ 0045a550 cmd.obj - 0003:00000578 ??_7CEX@@6B@ 0045a578 cmd.obj - 0003:000005f0 ??_7CURS@@6B@ 0045a5f0 cursor.obj - 0003:00000618 ??_7GNV@@6B@ 0045a618 gfx.obj - 0003:00000630 ??_7NTL@@6B@ 0045a630 gfx.obj - 0003:00000648 ??_7OGN@@6B@ 0045a648 gfx.obj - 0003:00000678 ??_7GOB@@6B@ 0045a678 gob.obj - 0003:000006f8 ??_7GTE@@6B@ 0045a6f8 gob.obj - 0003:00000710 ??_7REGSC@@6B@ 0045a710 region.obj - 0003:00000728 ??_7REGN@@6B@ 0045a728 region.obj - 0003:00000740 ??_7REGBL@@6B@ 0045a740 region.obj - 0003:00000758 ??_7GPT@@6B@ 0045a758 gfxwin.obj - 0003:00000770 ??_7MUB@@6B@ 0045a770 menuwin.obj - 0003:000007a0 ??_7PIC@@6B@ 0045a7a0 picwin.obj - 0003:000007c8 ??_7DOCB@@6B@ 0045a7c8 docb.obj - 0003:00000858 ??_7DTE@@6B@ 0045a858 docb.obj - 0003:00000870 ??_7DDG@@6B@ 0045a870 docb.obj - 0003:00000930 ??_7DMD@@6B@ 0045a930 docb.obj - 0003:000009b8 ??_7DMW@@6B@ 0045a9b8 docb.obj - 0003:00000a40 ??_7DSG@@6B@ 0045aa40 docb.obj - 0003:00000ad0 ??_7DSSP@@6B@ 0045aad0 docb.obj - 0003:00000b50 ??_7DSSM@@6B@ 0045ab50 docb.obj - 0003:00000bd0 ??_7CLIP@@6B@ 0045abd0 clip.obj - 0003:00000be8 ??_7BSM@@6B@ 0045abe8 stream.obj - 0003:00000c00 ??_7BSF@@6B@ 0045ac00 stream.obj - 0003:00000c18 ??_7SNDM@@6B@ 0045ac18 sndm.obj - 0003:00000c80 ??_7SNDMQ@@6B@ 0045ac80 sndm.obj - 0003:00000ce8 ??_7SNQUE@@6B@ 0045ace8 sndm.obj - 0003:00000d20 ??_7IStream@@6B@ 0045ad20 sndam.obj - 0003:00000d58 ??_7STBL@@6B@ 0045ad58 sndam.obj - 0003:00000d90 ??_7CAMS@@6B@ 0045ad90 sndam.obj - 0003:00000db8 ??_7AMNOT@@6B@ 0045adb8 sndam.obj - 0003:00000dd8 ??_7AMQUE@@6B@ 0045add8 sndam.obj - 0003:00000e10 ??_7SDAM@@6B@ 0045ae10 sndam.obj - 0003:00000e80 ??_7MIDO@@6B@ 0045ae80 mididev.obj - 0003:00000e98 ??_7MDPS@@6B@ 0045ae98 mididev2.obj - 0003:00000f00 ??_7MDWS@@6B@ 0045af00 mididev2.obj - 0003:00000f28 ??_7MSQUE@@6B@ 0045af28 mididev2.obj - 0003:00000f60 ??_7MSMIX@@6B@ 0045af60 mididev2.obj - 0003:00000f78 ??_7MISI@@6B@ 0045af78 mididev2.obj - 0003:00000fb0 ??_7WMS@@6B@ 0045afb0 mididev2.obj - 0003:00000fe8 ??_7OMS@@6B@ 0045afe8 mididev2.obj - 0003:00001020 ??_7MSTP@@6B@ 0045b020 midi.obj - 0003:00001038 ??_7MIDS@@6B@ 0045b038 midi.obj - 0003:00001060 ??_7DLG@@6B@ 0045b060 dlg.obj - 0003:00001090 ??_7CTL@@6B@ 0045b090 ctl.obj - 0003:00001110 ??_7SCB@@6B@ 0045b110 ctl.obj - 0003:00001198 ??_7WSB@@6B@ 0045b198 ctl.obj - 0003:00001218 ??_7EDCB@@6B@ 0045b218 text.obj - 0003:000012e0 ??_7EDPL@@6B@ 0045b2e0 text.obj - 0003:000013b0 ??_7EDSL@@6B@ 0045b3b0 text.obj - 0003:00001480 ??_7EDML@@6B@ 0045b480 text.obj - 0003:00001560 ??_7EDMW@@6B@ 0045b560 text.obj - 0003:00001640 ??_7TXTB@@6B@ 0045b640 rtxt.obj - 0003:00001730 ??_7TXRD@@6B@ 0045b730 rtxt.obj - 0003:00001838 ??_7RTUN@@6B@ 0045b838 rtxt.obj - 0003:00001858 ??_7TXTG@@6B@ 0045b858 rtxt2.obj - 0003:00001958 ??_7TXRG@@6B@ 0045b958 rtxt2.obj - 0003:00001a70 ??_7MBMP@@6B@ 0045ba70 mbmp.obj - 0003:00001aa0 ??_7APP@@6B@ 0045baa0 ft.obj - 0003:00001bc8 ??_7GPRC@@6B@ 0045bbc8 ft.obj - 0003:00001c48 ??_7GFRC@@6B@ 0045bc48 ft.obj - 0003:00001cc8 ??_7TDC@@6B@ 0045bcc8 ft.obj - 0003:00001d48 ??_7DWN@@6B@ 0045bd48 ft.obj - 0003:00001dd0 ??_7TTW@@6B@ 0045bdd0 ft.obj - 0003:00001e58 ??_7RTW@@6B@ 0045be58 ft.obj - 0003:00001ee0 ??_7DOC@@6B@ 0045bee0 ft.obj - 0003:00001f70 ??_7DOCP@@6B@ 0045bf70 ft.obj - 0003:00002000 ??_7DDP@@6B@ 0045c000 ft.obj - 0003:000020c0 ??_7DOCPIC@@6B@ 0045c0c0 ft.obj - 0003:00002150 ??_7DDPIC@@6B@ 0045c150 ft.obj - 0003:00002210 ??_7DOCGPT@@6B@ 0045c210 ft.obj - 0003:000022a0 ??_7DDGPT@@6B@ 0045c2a0 ft.obj - 0003:00002360 ??_7TAN@@6B@ 0045c360 ft.obj - 0003:000023e8 ??_7TED@@6B@ 0045c3e8 ft.obj - 0003:00002468 _IID_IUnknown 0045c468 uuid:com_i.obj - 0003:00002478 _IID_IClassFactory 0045c478 uuid:com_i.obj - 0003:00002488 _IID_IMarshal 0045c488 uuid:com_i.obj - 0003:00002498 _IID_IMalloc 0045c498 uuid:com_i.obj - 0003:000024a8 _IID_IStdMarshalInfo 0045c4a8 uuid:com_i.obj - 0003:000024b8 _IID_IExternalConnection 0045c4b8 uuid:com_i.obj - 0003:000024c8 _IID_IWeakRef 0045c4c8 uuid:com_i.obj - 0003:000024d8 _IID_IEnumUnknown 0045c4d8 uuid:com_i.obj - 0003:000024e8 _IID_IBindCtx 0045c4e8 uuid:com_i.obj - 0003:000024f8 _IID_IParseDisplayName 0045c4f8 uuid:com_i.obj - 0003:00002508 _IID_IEnumMoniker 0045c508 uuid:com_i.obj - 0003:00002518 _IID_IRunnableObject 0045c518 uuid:com_i.obj - 0003:00002528 _IID_IRunningObjectTable 0045c528 uuid:com_i.obj - 0003:00002538 _IID_IPersist 0045c538 uuid:com_i.obj - 0003:00002548 _IID_IPersistStream 0045c548 uuid:com_i.obj - 0003:00002558 _IID_IMoniker 0045c558 uuid:com_i.obj - 0003:00002568 _IID_IEnumString 0045c568 uuid:com_i.obj - 0003:00002578 _IID_IStream 0045c578 uuid:com_i.obj - 0003:00002588 _IID_IEnumSTATSTG 0045c588 uuid:com_i.obj - 0003:00002598 _IID_IStorage 0045c598 uuid:com_i.obj - 0003:000025a8 _IID_IPersistFile 0045c5a8 uuid:com_i.obj - 0003:000025b8 _IID_IPersistStorage 0045c5b8 uuid:com_i.obj - 0003:000025c8 _IID_ILockBytes 0045c5c8 uuid:com_i.obj - 0003:000025d8 _IID_IEnumFORMATETC 0045c5d8 uuid:com_i.obj - 0003:000025e8 _IID_IEnumSTATDATA 0045c5e8 uuid:com_i.obj - 0003:000025f8 _IID_IRootStorage 0045c5f8 uuid:com_i.obj - 0003:00002608 _IID_IAdviseSink 0045c608 uuid:com_i.obj - 0003:00002618 _IID_IAdviseSink2 0045c618 uuid:com_i.obj - 0003:00002628 _IID_IDataObject 0045c628 uuid:com_i.obj - 0003:00002638 _IID_IDataAdviseHolder 0045c638 uuid:com_i.obj - 0003:00002648 _IID_IMessageFilter 0045c648 uuid:com_i.obj - 0003:00002658 _IID_IRpcChannelBuffer 0045c658 uuid:com_i.obj - 0003:00002668 _IID_IRpcProxyBuffer 0045c668 uuid:com_i.obj - 0003:00002678 _IID_IRpcStubBuffer 0045c678 uuid:com_i.obj - 0003:00002688 _IID_IPSFactoryBuffer 0045c688 uuid:com_i.obj - 0003:00002698 ??_7IAMWavFileSrc@@6B@ 0045c698 audios:sound.obj - 0003:000026b0 ??_7IAMSound@@6B@ 0045c6b0 audios:sound.obj - 0003:000026d8 ??_7CAMWavFileSrc@@6BIAMWavFileSrc@@@ 0045c6d8 audios:sound.obj - 0003:000026f0 ??_7CAMWavFileSrc@@6BIAMSound@@@ 0045c6f0 audios:sound.obj - 0003:00002748 _CLSID_AMMixer 0045c748 audios:factory.obj - 0003:00002758 _CLSID_AMWavFileSrc 0045c758 audios:factory.obj - 0003:00002768 _CLSID_AMSilentSound 0045c768 audios:factory.obj - 0003:00002778 _CLSID_AMAppendFilter 0045c778 audios:factory.obj - 0003:00002788 _CLSID_AMClipFilter 0045c788 audios:factory.obj - 0003:00002798 _CLSID_AMConvertFilter 0045c798 audios:factory.obj - 0003:000027a8 _CLSID_AMDelayFilter 0045c7a8 audios:factory.obj - 0003:000027b8 _CLSID_AMGainFilter 0045c7b8 audios:factory.obj - 0003:000027c8 _CLSID_AMGateFilter 0045c7c8 audios:factory.obj - 0003:000027d8 _CLSID_AMLoopFilter 0045c7d8 audios:factory.obj - 0003:000027e8 _CLSID_AMMixFilter 0045c7e8 audios:factory.obj - 0003:000027f8 _CLSID_AMFaderFilter 0045c7f8 audios:factory.obj - 0003:00002808 _CLSID_AMScheduleFilter 0045c808 audios:factory.obj - 0003:00002818 _CLSID_AMRandomizeFilter 0045c818 audios:factory.obj - 0003:00002828 _CLSID_AMDistortFilter 0045c828 audios:factory.obj - 0003:00002838 _CLSID_AMCacheFilter 0045c838 audios:factory.obj - 0003:00002848 _CLSID_AMTrimFilter 0045c848 audios:factory.obj - 0003:00002858 _CLSID_AMStereoFilter 0045c858 audios:factory.obj - 0003:00002868 _CLSID_AMBiasFilter 0045c868 audios:factory.obj - 0003:00002878 _IID_IAMMixer 0045c878 audios:factory.obj - 0003:00002888 _IID_IAMChannel 0045c888 audios:factory.obj - 0003:00002898 _IID_IAMWaveOut 0045c898 audios:factory.obj - 0003:000028a8 _IID_IAMSound 0045c8a8 audios:factory.obj - 0003:000028b8 _IID_IAMNotifySink 0045c8b8 audios:factory.obj - 0003:000028c8 _IID_IAMWavFileSrc 0045c8c8 audios:factory.obj - 0003:000028d8 _IID_IAMSilentSound 0045c8d8 audios:factory.obj - 0003:000028e8 _IID_IAMAppendFilter 0045c8e8 audios:factory.obj - 0003:000028f8 _IID_IAMClipFilter 0045c8f8 audios:factory.obj - 0003:00002908 _IID_IAMConvertFilter 0045c908 audios:factory.obj - 0003:00002918 _IID_IAMDelayFilter 0045c918 audios:factory.obj - 0003:00002928 _IID_IAMGainFilter 0045c928 audios:factory.obj - 0003:00002938 _IID_IAMGateFilter 0045c938 audios:factory.obj - 0003:00002948 _IID_IAMLoopFilter 0045c948 audios:factory.obj - 0003:00002958 _IID_IAMMixFilter 0045c958 audios:factory.obj - 0003:00002968 _IID_IAMFaderFilter 0045c968 audios:factory.obj - 0003:00002978 _IID_IAMScheduleFilter 0045c978 audios:factory.obj - 0003:00002988 _IID_IAMRandomizeFilter 0045c988 audios:factory.obj - 0003:00002998 _IID_IAMDistortFilter 0045c998 audios:factory.obj - 0003:000029a8 _IID_IAMCacheFilter 0045c9a8 audios:factory.obj - 0003:000029b8 _IID_IAMTrimFilter 0045c9b8 audios:factory.obj - 0003:000029c8 _IID_IAMStereoFilter 0045c9c8 audios:factory.obj - 0003:000029d8 _IID_IAMBiasFilter 0045c9d8 audios:factory.obj - 0003:000029e8 _IID_IAMMixerChannel 0045c9e8 audios:factory.obj - 0003:000029f8 _IID_IAMRIFFStream 0045c9f8 audios:factory.obj - 0003:00002a08 ??_7CClassFactory@@6B@ 0045ca08 audios:factory.obj - 0003:00002a80 ??_7CAMLoopFilter@@6BIAMLoopFilter@@@ 0045ca80 audios:factory.obj - 0003:00002a90 ??_7CAMLoopFilter@@6BCAMPassThruFilter@@@ 0045ca90 audios:factory.obj - 0003:00002ab8 ??_7IAMBiasFilter@@6B@ 0045cab8 audios:factory.obj - 0003:00002ac8 ??_7CAMRandomizeFilter@@6BIAMRandomizeFilter@@@ 0045cac8 audios:factory.obj - 0003:00002ae8 ??_7CAMRandomizeFilter@@6BCAMPassThruFilter@@@ 0045cae8 audios:factory.obj - 0003:00002b10 ??_7IAMStereoFilter@@6B@ 0045cb10 audios:factory.obj - 0003:00002b20 ??_7CAMGateFilter@@6BIAMGateFilter@@@ 0045cb20 audios:factory.obj - 0003:00002b30 ??_7CAMGateFilter@@6BCAMPassThruFilter@@@ 0045cb30 audios:factory.obj - 0003:00002b58 ??_7CAMStereoFilter@@6BIAMStereoFilter@@@ 0045cb58 audios:factory.obj - 0003:00002b68 ??_7CAMStereoFilter@@6BCAMPassThruFilter@@@ 0045cb68 audios:factory.obj - 0003:00002b90 ??_7IAMTrimFilter@@6B@ 0045cb90 audios:factory.obj - 0003:00002ba0 ??_7IAMDistortFilter@@6B@ 0045cba0 audios:factory.obj - 0003:00002bb0 ??_7IAMRandomizeFilter@@6B@ 0045cbb0 audios:factory.obj - 0003:00002bd0 ??_7CAMFaderFilter@@6BIAMFaderFilter@@@ 0045cbd0 audios:factory.obj - 0003:00002be0 ??_7CAMFaderFilter@@6BCAMPassThruFilter@@@ 0045cbe0 audios:factory.obj - 0003:00002c08 ??_7CAMDistortFilter@@6BIAMDistortFilter@@@ 0045cc08 audios:factory.obj - 0003:00002c18 ??_7CAMDistortFilter@@6BCAMPassThruFilter@@@ 0045cc18 audios:factory.obj - 0003:00002c40 ??_7IAMFaderFilter@@6B@ 0045cc40 audios:factory.obj - 0003:00002c50 ??_7IAMLoopFilter@@6B@ 0045cc50 audios:factory.obj - 0003:00002c60 ??_7CAMTrimFilter@@6BIAMTrimFilter@@@ 0045cc60 audios:factory.obj - 0003:00002c70 ??_7CAMTrimFilter@@6BCAMPassThruFilter@@@ 0045cc70 audios:factory.obj - 0003:00002c98 ??_7IAMGateFilter@@6B@ 0045cc98 audios:factory.obj - 0003:00002ca8 ??_7CAMBiasFilter@@6BIAMBiasFilter@@@ 0045cca8 audios:factory.obj - 0003:00002cb8 ??_7CAMBiasFilter@@6BCAMPassThruFilter@@@ 0045ccb8 audios:factory.obj - 0003:00002e20 ??_7CFileStream@@6B@ 0045ce20 audios:stream.obj - 0003:00002e58 ??_7CMemoryStream@@6B@ 0045ce58 audios:stream.obj - 0003:00002eb0 ??_7CAMPassThruFilter@@6B@ 0045ceb0 audios:sndpass.obj - 0003:00002f28 ??_7IAMCacheFilter@@6B@ 0045cf28 audios:sndcache.obj - 0003:00002f38 ??_7CAMCacheFilter@@6BIAMCacheFilter@@@ 0045cf38 audios:sndcache.obj - 0003:00002f48 ??_7CAMCacheFilter@@6BIAMSound@@@ 0045cf48 audios:sndcache.obj - 0003:00002f70 ??_7IAMScheduleFilter@@6B@ 0045cf70 audios:sndsched.obj - 0003:00002fa8 ??_7CAMScheduleFilter@@6BIAMScheduleFilter@@@ 0045cfa8 audios:sndsched.obj - 0003:00002fe0 ??_7CAMScheduleFilter@@6BIAMSound@@@ 0045cfe0 audios:sndsched.obj - 0003:00003008 ??_7CAMMixFilter@@6BIAMMixFilter@@@ 0045d008 audios:sndmix.obj - 0003:00003018 ??_7CAMMixFilter@@6BIAMSound@@@ 0045d018 audios:sndmix.obj - 0003:00003040 ??_7IAMMixFilter@@6B@ 0045d040 audios:sndmix.obj - 0003:00003058 ??_7CAMGainFilter@@6BIAMGainFilter@@@ 0045d058 audios:sndgain.obj - 0003:00003070 ??_7CAMGainFilter@@6BIAMSound@@@ 0045d070 audios:sndgain.obj - 0003:00003098 ??_7IAMGainFilter@@6B@ 0045d098 audios:sndgain.obj - 0003:000030b0 ??_7CAMDelayFilter@@6BIAMDelayFilter@@@ 0045d0b0 audios:sndecho.obj - 0003:000030c0 ??_7CAMDelayFilter@@6BIAMSound@@@ 0045d0c0 audios:sndecho.obj - 0003:000030e8 ??_7IAMDelayFilter@@6B@ 0045d0e8 audios:sndecho.obj - 0003:00003108 ??_7IAMConvertFilter@@6B@ 0045d108 audios:sndcnvt.obj - 0003:00003118 ??_7CAMConvertFilter@@6BIAMConvertFilter@@@ 0045d118 audios:sndcnvt.obj - 0003:00003128 ??_7CAMConvertFilter@@6BIAMSound@@@ 0045d128 audios:sndcnvt.obj - 0003:00003150 ??_7IAMClipFilter@@6B@ 0045d150 audios:sndclip.obj - 0003:00003160 ??_7CAMClipFilter@@6BIAMClipFilter@@@ 0045d160 audios:sndclip.obj - 0003:00003170 ??_7CAMClipFilter@@6BIAMSound@@@ 0045d170 audios:sndclip.obj - 0003:00003198 ??_7CAMAppendFilter@@6BIAMAppendFilter@@@ 0045d198 audios:sndapend.obj - 0003:000031a8 ??_7CAMAppendFilter@@6BIAMSound@@@ 0045d1a8 audios:sndapend.obj - 0003:000031d0 ??_7IAMAppendFilter@@6B@ 0045d1d0 audios:sndapend.obj - 0003:000031e0 ??_7IAMSilentSound@@6B@ 0045d1e0 audios:sndmute.obj - 0003:000031f0 ??_7CAMSilentSound@@6BIAMSilentSound@@@ 0045d1f0 audios:sndmute.obj - 0003:00003200 ??_7CAMSilentSound@@6BIAMSound@@@ 0045d200 audios:sndmute.obj - 0003:00003288 ??_7CAMMixer@@6B@ 0045d288 audios:cmixer.obj - 0003:00003328 ??_7CMixerOut@@6B@ 0045d328 audios:cmixout.obj - 0003:00003388 ??_7CAMPlaySnd@@6B@ 0045d388 audios:cplaysnd.obj - 0003:000033a8 ??_7IAMMixerChannel@@6B@ 0045d3a8 audios:cchannel.obj - 0003:000033f8 ??_7IAMChannel@@6B@ 0045d3f8 audios:cchannel.obj - 0003:00003458 ??_7CAMChannel@@6BIAMMixerChannel@@@ 0045d458 audios:cchannel.obj - 0003:000034a8 ??_7CAMChannel@@6BIAMChannel@@@ 0045d4a8 audios:cchannel.obj - 0003:00003508 ??_7CRealOut@@6B@ 0045d508 audios:crealout.obj - 0003:00003588 ??_7CFakeOut@@6B@ 0045d588 audios:cfakeout.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 0045e000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 0045e004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 0045e008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0045e00c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 0045e010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 0045e118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0045e11c file.obj - 0004:00000120 ?vftgTemp@@3JA 0045e120 fniwin.obj - 0004:00000128 ??_C@_00A@?$AA@ 0045e128 fniwin.obj - 0004:0000012c ??_C@_08GBDA@Temp?$CF04x?$AA@ 0045e12c fniwin.obj - 0004:00000138 ??_C@_04POLC@?$CFc?3?2?$AA@ 0045e138 fniwin.obj - 0004:00000140 ?_cmmAPPB@APPB@@1UCMM@CMH@@A 0045e140 appb.obj - 0004:00000148 ?_rgcmmeAPPB@APPB@@0QAUCMME@CMH@@A 0045e148 appb.obj - 0004:000001ac ??_C@_07GHND@Generic?$AA@ 0045e1ac appb.obj - 0004:000001b4 ??_C@_0BA@MIDB@Times?5New?5Roman?$AA@ 0045e1b4 appb.obj - 0004:000001c4 ??_C@_0M@HLIB@Courier?5New?$AA@ 0045e1c4 appb.obj - 0004:000001d0 ??_C@_0CF@OGIM@Save?5changes?5to?5?$CC?$CFs?$CC?5before?5clos@ 0045e1d0 appb.obj - 0004:000001f8 ?_cmmCLOK@CLOK@@1UCMM@CMH@@A 0045e1f8 clok.obj - 0004:00000200 ?_rgcmmeCLOK@CLOK@@0QAUCMME@CMH@@A 0045e200 clok.obj - 0004:00000210 ?_cmmCMH@CMH@@1UCMM@1@A 0045e210 cmd.obj - 0004:00000218 ?_rgcmmeCMH@CMH@@0QAUCMME@1@A 0045e218 cmd.obj - 0004:00000228 ?vaptGray@@3UAPT@@A 0045e228 gfx.obj - 0004:00000230 ?vaptLtGray@@3UAPT@@A 0045e230 gfx.obj - 0004:00000238 ?vaptDkGray@@3UAPT@@A 0045e238 gfx.obj - 0004:00000240 ?_mpgfdgrfpt@@3QAKA 0045e240 gfx.obj - 0004:00000250 ?_mpgfdgrfptInv@@3QAKA 0045e250 gfx.obj - 0004:00000260 ?_cmmGOB@GOB@@1UCMM@CMH@@A 0045e260 gob.obj - 0004:00000268 ?_rgcmmeGOB@GOB@@0QAUCMME@CMH@@A 0045e268 gob.obj - 0004:000002f8 ?_ginDefGob@GOB@@1JA 0045e2f8 gob.obj - 0004:000002fc ??_C@_0BI@JCHG@Fatal?5Error?5Termination?$AA@ 0045e2fc appbwin.obj - 0004:00000314 ??_C@_03KELD@MDI?$AA@ 0045e314 appbwin.obj - 0004:00000318 ??_C@_03BLAA@APP?$AA@ 0045e318 appbwin.obj - 0004:00000320 ?_hpal@GPT@@0PAUHPALETTE__@@A 0045e320 gfxwin.obj - 0004:00000324 ?_hpalIdentity@GPT@@0PAUHPALETTE__@@A 0045e324 gfxwin.obj - 0004:00000328 ?_cclrPal@GPT@@0JA 0045e328 gfxwin.obj - 0004:0000032c ?_prgclr@GPT@@0PAUCLR@@A 0045e32c gfxwin.obj - 0004:00000330 ?_cactPalCur@GPT@@0JA 0045e330 gfxwin.obj - 0004:00000334 ?_cactFlush@GPT@@0JA 0045e334 gfxwin.obj - 0004:00000338 ?_fPalettized@GPT@@0HA 0045e338 gfxwin.obj - 0004:000003b0 ??_C@_09MLCM@MDICLIENT?$AA@ 0045e3b0 gobwin.obj - 0004:000003c0 ?_cactLast@DOCB@@1JA 0045e3c0 docb.obj - 0004:000003c4 ?_pdocbFirst@DOCB@@1PAV1@A 0045e3c4 docb.obj - 0004:000003c8 ?_cmmDDG@DDG@@1UCMM@CMH@@A 0045e3c8 docb.obj - 0004:000003d0 ?_rgcmmeDDG@DDG@@0QAUCMME@CMH@@A 0045e3d0 docb.obj - 0004:000004a0 ?_cmmDSG@DSG@@1UCMM@CMH@@A 0045e4a0 docb.obj - 0004:000004a8 ?_rgcmmeDSG@DSG@@0QAUCMME@CMH@@A 0045e4a8 docb.obj - 0004:000004d8 ??_C@_0P@GMML@All?5files?$AA?$CK?4?$CK?$AA?$AA@ 0045e4d8 docb.obj - 0004:000004e8 ??_C@_0M@CPBP@Untitled?5?$CFd?$AA@ 0045e4e8 docb.obj - 0004:000004f4 ??_C@_09IDMC@Clipboard?$AA@ 0045e4f4 docb.obj - 0004:00000500 ?vluSysVolFake@@3KA 0045e500 sndm.obj - 0004:00000508 ?vcbMaxMemWave@SDAM@@2JA 0045e508 sndam.obj - 0004:00000540 ??_C@_0P@GIHP@midiStreamStop?$AA@ 0045e540 mididev2.obj - 0004:00000550 ??_C@_0BC@LLAA@midiStreamRestart?$AA@ 0045e550 mididev2.obj - 0004:00000564 ??_C@_0BA@JHNK@midiStreamPause?$AA@ 0045e564 mididev2.obj - 0004:00000574 ??_C@_0O@MCEN@midiStreamOut?$AA@ 0045e574 mididev2.obj - 0004:00000584 ??_C@_0BD@CJJI@midiStreamPosition?$AA@ 0045e584 mididev2.obj - 0004:00000598 ??_C@_0BD@NHF@midiStreamProperty?$AA@ 0045e598 mididev2.obj - 0004:000005ac ??_C@_0BA@PKJI@midiStreamClose?$AA@ 0045e5ac mididev2.obj - 0004:000005bc ??_C@_0P@FAGH@midiStreamOpen?$AA@ 0045e5bc mididev2.obj - 0004:000005cc ??_C@_09GPGB@WINMM?4DLL?$AA@ 0045e5cc mididev2.obj - 0004:000005d8 ?_szDlgProp@@3QADA 0045e5d8 dlgwin.obj - 0004:000005dc ?_szCtlProp@@3QADA 0045e5dc ctl.obj - 0004:000005e8 ??_C@_09LIFG@SCROLLBAR?$AA@ 0045e5e8 ctl.obj - 0004:000005f8 ?_cmmTXRG@TXRG@@1UCMM@CMH@@A 0045e5f8 rtxt.obj - 0004:00000600 ?_rgcmmeTXRG@TXRG@@0QAUCMME@CMH@@A 0045e600 rtxt.obj - 0004:000006f0 ?_cmmAPP@APP@@1UCMM@CMH@@A 0045e6f0 ft.obj - 0004:000006f8 ?_rgcmmeAPP@APP@@0QAUCMME@CMH@@A 0045e6f8 ft.obj - 0004:000007c8 ?_rgszColors@@3QAPADA 0045e7c8 ft.obj - 0004:000007f0 ?_cmmDWN@DWN@@1UCMM@CMH@@A 0045e7f0 ft.obj - 0004:000007f8 ?_rgcmmeDWN@DWN@@0QAUCMME@CMH@@A 0045e7f8 ft.obj - 0004:00000828 ?_cdwn@DWN@@1JA 0045e828 ft.obj - 0004:00000878 ?_cmmTAN@TAN@@1UCMM@CMH@@A 0045e878 ft.obj - 0004:00000880 ?_rgcmmeTAN@TAN@@0QAUCMME@CMH@@A 0045e880 ft.obj - 0004:000008a0 ?_cact@TAN@@1JA 0045e8a0 ft.obj - 0004:000008a4 ??_C@_03BJKC@inv?$AA@ 0045e8a4 ft.obj - 0004:000008a8 ??_C@_03FGKG@cle?$AA@ 0045e8a8 ft.obj - 0004:000008ac ??_C@_03JLNI@whi?$AA@ 0045e8ac ft.obj - 0004:000008b0 ??_C@_03BOIF@yel?$AA@ 0045e8b0 ft.obj - 0004:000008b4 ??_C@_03IGBO@mag?$AA@ 0045e8b4 ft.obj - 0004:000008b8 ??_C@_03CMLD@red?$AA@ 0045e8b8 ft.obj - 0004:000008bc ??_C@_03NKFD@cya?$AA@ 0045e8bc ft.obj - 0004:000008c0 ??_C@_03LGPO@gre?$AA@ 0045e8c0 ft.obj - 0004:000008c4 ??_C@_03KNMA@blu?$AA@ 0045e8c4 ft.obj - 0004:000008c8 ??_C@_03KOOM@bla?$AA@ 0045e8c8 ft.obj - 0004:000008cc ??_C@_0N@LDEN@Frame?5Tester?$AA@ 0045e8cc ft.obj - 0004:000008dc ??_C@_0BC@JGC@Graphics?5Test?5?$CD?$CFd?$AA@ 0045e8dc ft.obj - 0004:000008f0 ??_C@_0O@LOGC@Text?5Test?5?$CD?$CFd?$AA@ 0045e8f0 ft.obj - 0004:00000900 ??_C@_0P@MGLE@?$CI?$CFz?3?$CFz?0?5?$CFc?3?$CFc?$CJ?$AA@ 0045e900 ft.obj - 0004:00000910 ??_C@_0BJ@JMKJ@Frame?5rectangle?5test?5?$CD?$CFd?$AA@ 0045e910 ft.obj - 0004:0000092c ??_C@_0BB@LEHE@elapsed?5time?3?5?$CFu?$AA@ 0045e92c ft.obj - 0004:00000940 ??_C@_0BL@NGNB@Click?5to?5begin?5the?5?$CFs?5test?$AA@ 0045e940 ft.obj - 0004:0000095c ??_C@_0L@DFJD@line?5draw?5?$AA@ 0045e95c ft.obj - 0004:00000968 ??_C@_0P@GNNJ@frame?5polygon?5?$AA@ 0045e968 ft.obj - 0004:00000978 ??_C@_0BB@DCKG@frame?5rectangle?5?$AA@ 0045e978 ft.obj - 0004:0000098c ??_C@_0BN@MEOM@coords?3?5?$CI?$CFd?0?5?$CFd?0?5?$CFd?$CJ?5?5?5?5?5?5?5?5?$AA@ 0045e98c ft.obj - 0004:000009ac ??_C@_0BE@CKMC@Animation?5test?5?$CI?$CFd?$CJ?$AA@ 0045e9ac ft.obj - 0004:000009c0 ??_C@_0L@EOEK@Test?5Edits?$AA@ 0045e9c0 ft.obj - 0004:000009cc ??_C@_0BC@JOAI@0123456789ABCDEFG?$AA@ 0045e9cc test.obj - 0004:000009e0 ??_C@_0M@JCDB@Test?5string?$AA@ 0045e9e0 test.obj - 0004:000009ec ?gpMixer@@3PAUIAMMixer@@A 0045e9ec audios:factory.obj - 0004:000009f0 __aenvptr 0045e9f0 LIBC:wincrt0.obj - 0004:000009f4 __wenvptr 0045e9f4 LIBC:wincrt0.obj - 0004:000009f8 __aexit_rtn 0045e9f8 LIBC:wincrt0.obj - 0004:00000a0c __fltused 0045ea0c LIBC:fpinit.obj - 0004:00000a10 __ldused 0045ea10 LIBC:fpinit.obj - 0004:00000a14 ___fastflag 0045ea14 LIBC:fpinit.obj - 0004:00000a18 __adjust_fdiv 0045ea18 LIBC:fpinit.obj - 0004:00000a1c __FPinit 0045ea1c LIBC:fpinit.obj - 0004:00000a20 __FPmtinit 0045ea20 LIBC:fpinit.obj - 0004:00000a24 __FPmtterm 0045ea24 LIBC:fpinit.obj - 0004:00000b88 _errno 0045eb88 LIBC:crt0dat.obj - 0004:00000b8c __doserrno 0045eb8c LIBC:crt0dat.obj - 0004:00000b90 __umaskval 0045eb90 LIBC:crt0dat.obj - 0004:00000b94 __osver 0045eb94 LIBC:crt0dat.obj - 0004:00000b98 __winver 0045eb98 LIBC:crt0dat.obj - 0004:00000b9c __winmajor 0045eb9c LIBC:crt0dat.obj - 0004:00000ba0 __winminor 0045eba0 LIBC:crt0dat.obj - 0004:00000ba4 ___argc 0045eba4 LIBC:crt0dat.obj - 0004:00000ba8 ___argv 0045eba8 LIBC:crt0dat.obj - 0004:00000bac ___wargv 0045ebac LIBC:crt0dat.obj - 0004:00000bb0 __environ 0045ebb0 LIBC:crt0dat.obj - 0004:00000bb4 ___initenv 0045ebb4 LIBC:crt0dat.obj - 0004:00000bb8 __wenviron 0045ebb8 LIBC:crt0dat.obj - 0004:00000bbc ___winitenv 0045ebbc LIBC:crt0dat.obj - 0004:00000bc0 __pgmptr 0045ebc0 LIBC:crt0dat.obj - 0004:00000bc4 __wpgmptr 0045ebc4 LIBC:crt0dat.obj - 0004:00000bc8 __exitflag 0045ebc8 LIBC:crt0dat.obj - 0004:00000bcc __C_Termination_Done 0045ebcc LIBC:crt0dat.obj - 0004:00000bd0 __pnhHeap 0045ebd0 LIBC:malloc.obj - 0004:00000bd8 __XcptActTab 0045ebd8 LIBC:winxfltr.obj - 0004:00000c50 __First_FPE_Indx 0045ec50 LIBC:winxfltr.obj - 0004:00000c54 __Num_FPE 0045ec54 LIBC:winxfltr.obj - 0004:00000c58 __XcptActTabCount 0045ec58 LIBC:winxfltr.obj - 0004:00000c5c __fpecode 0045ec5c LIBC:winxfltr.obj - 0004:00000c60 __pxcptinfoptrs 0045ec60 LIBC:winxfltr.obj - 0004:00000c68 __mbctype 0045ec68 LIBC:mbctype.obj - 0004:00000d6c ___mbcodepage 0045ed6c LIBC:mbctype.obj - 0004:00000d70 ___mblcid 0045ed70 LIBC:mbctype.obj - 0004:00000d78 ___mbulinfo 0045ed78 LIBC:mbctype.obj - 0004:00000e80 __nhandle 0045ee80 LIBC:ioinit.obj - 0004:00000e88 __osfile 0045ee88 LIBC:ioinit.obj - 0004:00000ec8 __osfhnd 0045eec8 LIBC:ioinit.obj - 0004:00000fc8 __pipech 0045efc8 LIBC:ioinit.obj - 0004:00001008 __heap_desc 0045f008 LIBC:heapinit.obj - 0004:0000101c __heap_resetsize 0045f01c LIBC:heapinit.obj - 0004:00001020 __amblksiz 0045f020 LIBC:heapinit.obj - 0004:00001024 __heap_regionsize 0045f024 LIBC:heapinit.obj - 0004:00001028 __heap_maxregsize 0045f028 LIBC:heapinit.obj - 0004:00001298 __adbgmsg 0045f298 LIBC:crt0msg.obj - 0004:000012a8 ?__pSETranslator@@3P6AXIPAU_EXCEPTION_POINTERS@@@ZA 0045f2a8 LIBC:hooks.obj - 0004:000012ac ?__pTerminate@@3P6AXXZA 0045f2ac LIBC:hooks.obj - 0004:000012b0 ?__pUnexpected@@3P6AXXZA 0045f2b0 LIBC:hooks.obj - 0004:000012b4 ?__pInconsistency@@3P6AXXZA 0045f2b4 LIBC:hooks.obj - 0004:00001320 __cfltcvt_tab 0045f320 LIBC:cmiscdat.obj - 0004:0000134c __infinity 0045f34c LIBC:87tran.obj - 0004:00001356 __minfinity 0045f356 LIBC:87tran.obj - 0004:00001360 __logemax 0045f360 LIBC:87tran.obj - 0004:00001390 __OP_POWjmptab 0045f390 LIBC:87tran.obj - 0004:000013e0 __OP_LOG10jmptab 0045f3e0 LIBC:87tran.obj - 0004:00001400 __OP_LOGjmptab 0045f400 LIBC:87tran.obj - 0004:00001420 __OP_EXPjmptab 0045f420 LIBC:87tran.obj - 0004:00001440 __newmode 0045f440 LIBC:_newmode.obj - 0004:00001448 __pctype 0045f448 LIBC:ctype.obj - 0004:0000144c __pwctype 0045f44c LIBC:ctype.obj - 0004:00001450 __ctype 0045f450 LIBC:ctype.obj - 0004:000016e0 ___mb_cur_max 0045f6e0 LIBC:nlsdata1.obj - 0004:000016e8 ___decimal_point 0045f6e8 LIBC:nlsdata1.obj - 0004:000016ec ___decimal_point_length 0045f6ec LIBC:nlsdata1.obj - 0004:00001720 __indefinite 0045f720 LIBC:87disp.obj - 0004:0000172a __piby2 0045f72a LIBC:87disp.obj - 0004:0000173c __cpower 0045f73c LIBC:87disp.obj - 0004:00001808 ___lc_handle 0045f808 LIBC:nlsdata2.obj - 0004:00001820 ___lc_codepage 0045f820 LIBC:nlsdata2.obj - 0004:00001848 __d_inf 0045f848 LIBC:util.obj - 0004:00001850 __d_ind 0045f850 LIBC:util.obj - 0004:00001858 __d_max 0045f858 LIBC:util.obj - 0004:00001860 __d_min 0045f860 LIBC:util.obj - 0004:00001868 __d_mzero 0045f868 LIBC:util.obj - 0004:000019fc __matherr_flag 0045f9fc LIBC:matherr.obj - 0004:00001a1c ___invalid_mb_chars 0045fa1c LIBC:setmbval.obj - 0004:00001a28 __pow10pos 0045fa28 LIBC:constpow.obj - 0004:00001b88 __pow10neg 0045fb88 LIBC:constpow.obj - 0004:00001ce4 ___xc_a 0045fce4 LIBC:crt0init.obj - 0004:00001db4 ___xc_z 0045fdb4 LIBC:crt0init.obj - 0004:00001db8 ___xi_a 0045fdb8 LIBC:crt0init.obj - 0004:00001dc4 ___xi_z 0045fdc4 LIBC:crt0init.obj - 0004:00001dc8 ___xp_a 0045fdc8 LIBC:crt0init.obj - 0004:00001dcc ___xp_z 0045fdcc LIBC:crt0init.obj - 0004:00001dd0 ___xt_a 0045fdd0 LIBC:crt0init.obj - 0004:00001dd4 ___xt_z 0045fdd4 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00460000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00460014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00460028 user32:USER32.dll - 0005:0000003c GDI32_IMPORT_DESCRIPTOR 0046003c gdi32:GDI32.dll - 0005:00000050 WINMM_IMPORT_DESCRIPTOR 00460050 winmm:WINMM.dll - 0005:00000064 MSVFW32_IMPORT_DESCRIPTOR 00460064 vfw32:MSVFW32.dll - 0005:00000078 __IMPORT_DESCRIPTOR_MSACM32 00460078 audios:MSACM32.dll - 0005:0000008c NULL_IMPORT_DESCRIPTOR 0046008c kernel32:KERNEL32.dll - 0005:000000a0 __NULL_IMPORT_DESCRIPTOR 004600a0 audios:MSACM32.dll - 0005:00000500 __imp__GetEnhMetaFileBits@12 00460500 gdi32:GDI32.dll - 0005:00000504 __imp__ExtCreateRegion@12 00460504 gdi32:GDI32.dll - 0005:00000508 __imp__OffsetRgn@12 00460508 gdi32:GDI32.dll - 0005:0000050c __imp__SelectClipRgn@8 0046050c gdi32:GDI32.dll - 0005:00000510 __imp__GetClipRgn@8 00460510 gdi32:GDI32.dll - 0005:00000514 __imp__CreateRectRgn@16 00460514 gdi32:GDI32.dll - 0005:00000518 __imp__CreateEllipticRgn@16 00460518 gdi32:GDI32.dll - 0005:0000051c __imp__GdiFlush@0 0046051c gdi32:GDI32.dll - 0005:00000520 __imp__RealizePalette@4 00460520 gdi32:GDI32.dll - 0005:00000524 __imp__SelectPalette@12 00460524 gdi32:GDI32.dll - 0005:00000528 __imp__ResizePalette@8 00460528 gdi32:GDI32.dll - 0005:0000052c __imp__SetPaletteEntries@16 0046052c gdi32:GDI32.dll - 0005:00000530 __imp__GetSystemPaletteEntries@16 00460530 gdi32:GDI32.dll - 0005:00000534 __imp__AnimatePalette@16 00460534 gdi32:GDI32.dll - 0005:00000538 __imp__CreatePalette@4 00460538 gdi32:GDI32.dll - 0005:0000053c __imp__GetDeviceCaps@8 0046053c gdi32:GDI32.dll - 0005:00000540 __imp__SetPolyFillMode@8 00460540 gdi32:GDI32.dll - 0005:00000544 __imp__DeleteObject@4 00460544 gdi32:GDI32.dll - 0005:00000548 __imp__SelectObject@8 00460548 gdi32:GDI32.dll - 0005:0000054c __imp__GetStockObject@4 0046054c gdi32:GDI32.dll - 0005:00000550 __imp__DeleteDC@4 00460550 gdi32:GDI32.dll - 0005:00000554 __imp__DeleteEnhMetaFile@4 00460554 gdi32:GDI32.dll - 0005:00000558 __imp__CloseEnhMetaFile@4 00460558 gdi32:GDI32.dll - 0005:0000055c __imp__CreateDIBSection@24 0046055c gdi32:GDI32.dll - 0005:00000560 __imp__CreateCompatibleDC@4 00460560 gdi32:GDI32.dll - 0005:00000564 __imp__SetDIBColorTable@16 00460564 gdi32:GDI32.dll - 0005:00000568 __imp__CreateEnhMetaFileA@16 00460568 gdi32:GDI32.dll - 0005:0000056c __imp__CombineRgn@16 0046056c gdi32:GDI32.dll - 0005:00000570 __imp__Rectangle@20 00460570 gdi32:GDI32.dll - 0005:00000574 __imp__Ellipse@20 00460574 gdi32:GDI32.dll - 0005:00000578 __imp__FillRgn@12 00460578 gdi32:GDI32.dll - 0005:0000057c __imp__Polygon@12 0046057c gdi32:GDI32.dll - 0005:00000580 __imp__IntersectClipRect@20 00460580 gdi32:GDI32.dll - 0005:00000584 __imp__SetROP2@8 00460584 gdi32:GDI32.dll - 0005:00000588 __imp__SetTextColor@8 00460588 gdi32:GDI32.dll - 0005:0000058c __imp__SetBkColor@8 0046058c gdi32:GDI32.dll - 0005:00000590 __imp__TextOutA@20 00460590 gdi32:GDI32.dll - 0005:00000594 __imp__SetBkMode@8 00460594 gdi32:GDI32.dll - 0005:00000598 __imp__GetTextExtentPoint32A@16 00460598 gdi32:GDI32.dll - 0005:0000059c __imp__GetTextMetricsA@8 0046059c gdi32:GDI32.dll - 0005:000005a0 __imp__CreatePatternBrush@4 004605a0 gdi32:GDI32.dll - 0005:000005a4 __imp__CreateBitmap@20 004605a4 gdi32:GDI32.dll - 0005:000005a8 __imp__CreateSolidBrush@4 004605a8 gdi32:GDI32.dll - 0005:000005ac __imp__SetTextAlign@8 004605ac gdi32:GDI32.dll - 0005:000005b0 __imp__StretchBlt@44 004605b0 gdi32:GDI32.dll - 0005:000005b4 __imp__SetStretchBltMode@8 004605b4 gdi32:GDI32.dll - 0005:000005b8 __imp__RestoreDC@8 004605b8 gdi32:GDI32.dll - 0005:000005bc __imp__PlayEnhMetaFile@12 004605bc gdi32:GDI32.dll - 0005:000005c0 __imp__SaveDC@4 004605c0 gdi32:GDI32.dll - 0005:000005c4 __imp__EnumFontsA@16 004605c4 gdi32:GDI32.dll - 0005:000005c8 __imp__GetObjectA@12 004605c8 gdi32:GDI32.dll - 0005:000005cc __imp__CreateFontIndirectA@4 004605cc gdi32:GDI32.dll - 0005:000005d0 __imp__CreateRectRgnIndirect@4 004605d0 gdi32:GDI32.dll - 0005:000005d4 \177GDI32_NULL_THUNK_DATA 004605d4 gdi32:GDI32.dll - 0005:000005d8 __imp__MultiByteToWideChar@24 004605d8 kernel32:KERNEL32.dll - 0005:000005dc __imp__RaiseException@16 004605dc kernel32:KERNEL32.dll - 0005:000005e0 __imp__FindResourceA@12 004605e0 kernel32:KERNEL32.dll - 0005:000005e4 __imp__LoadResource@8 004605e4 kernel32:KERNEL32.dll - 0005:000005e8 __imp__LockResource@4 004605e8 kernel32:KERNEL32.dll - 0005:000005ec __imp__GetVersionExA@4 004605ec kernel32:KERNEL32.dll - 0005:000005f0 __imp__LoadLibraryA@4 004605f0 kernel32:KERNEL32.dll - 0005:000005f4 __imp__GetProcAddress@8 004605f4 kernel32:KERNEL32.dll - 0005:000005f8 __imp__FreeLibrary@4 004605f8 kernel32:KERNEL32.dll - 0005:000005fc __imp__Sleep@4 004605fc kernel32:KERNEL32.dll - 0005:00000600 __imp__CreateEventA@16 00460600 kernel32:KERNEL32.dll - 0005:00000604 __imp__CreateThread@24 00460604 kernel32:KERNEL32.dll - 0005:00000608 __imp__SetThreadPriority@8 00460608 kernel32:KERNEL32.dll - 0005:0000060c __imp__ResumeThread@4 0046060c kernel32:KERNEL32.dll - 0005:00000610 __imp__SetEvent@4 00460610 kernel32:KERNEL32.dll - 0005:00000614 __imp__WaitForSingleObject@8 00460614 kernel32:KERNEL32.dll - 0005:00000618 __imp__GlobalSize@4 00460618 kernel32:KERNEL32.dll - 0005:0000061c __imp__GlobalLock@4 0046061c kernel32:KERNEL32.dll - 0005:00000620 __imp__GlobalUnlock@4 00460620 kernel32:KERNEL32.dll - 0005:00000624 __imp__FatalAppExitA@8 00460624 kernel32:KERNEL32.dll - 0005:00000628 __imp__GetCommandLineA@0 00460628 kernel32:KERNEL32.dll - 0005:0000062c __imp__GetCurrentThreadId@0 0046062c kernel32:KERNEL32.dll - 0005:00000630 __imp__MoveFileA@8 00460630 kernel32:KERNEL32.dll - 0005:00000634 __imp__GetFileAttributesA@4 00460634 kernel32:KERNEL32.dll - 0005:00000638 __imp__GetLastError@0 00460638 kernel32:KERNEL32.dll - 0005:0000063c __imp__GetDriveTypeA@4 0046063c kernel32:KERNEL32.dll - 0005:00000640 __imp__GetTempPathA@8 00460640 kernel32:KERNEL32.dll - 0005:00000644 __imp__GetFullPathNameA@16 00460644 kernel32:KERNEL32.dll - 0005:00000648 __imp__WriteFile@20 00460648 kernel32:KERNEL32.dll - 0005:0000064c __imp__ReadFile@20 0046064c kernel32:KERNEL32.dll - 0005:00000650 __imp__SetEndOfFile@4 00460650 kernel32:KERNEL32.dll - 0005:00000654 __imp__SetFilePointer@16 00460654 kernel32:KERNEL32.dll - 0005:00000658 __imp__FlushFileBuffers@4 00460658 kernel32:KERNEL32.dll - 0005:0000065c __imp__DeleteFileA@4 0046065c kernel32:KERNEL32.dll - 0005:00000660 __imp__CloseHandle@4 00460660 kernel32:KERNEL32.dll - 0005:00000664 __imp__CreateFileA@28 00460664 kernel32:KERNEL32.dll - 0005:00000668 __imp__WideCharToMultiByte@32 00460668 kernel32:KERNEL32.dll - 0005:0000066c __imp__CompareStringA@24 0046066c kernel32:KERNEL32.dll - 0005:00000670 __imp__GlobalReAlloc@12 00460670 kernel32:KERNEL32.dll - 0005:00000674 __imp__EnterCriticalSection@4 00460674 kernel32:KERNEL32.dll - 0005:00000678 __imp__LeaveCriticalSection@4 00460678 kernel32:KERNEL32.dll - 0005:0000067c __imp__GlobalFree@4 0046067c kernel32:KERNEL32.dll - 0005:00000680 __imp__GlobalAlloc@8 00460680 kernel32:KERNEL32.dll - 0005:00000684 __imp__DeleteCriticalSection@4 00460684 kernel32:KERNEL32.dll - 0005:00000688 __imp__UnhandledExceptionFilter@4 00460688 kernel32:KERNEL32.dll - 0005:0000068c __imp__RtlUnwind@16 0046068c kernel32:KERNEL32.dll - 0005:00000690 __imp__GetVersion@0 00460690 kernel32:KERNEL32.dll - 0005:00000694 __imp__GetEnvironmentStrings@0 00460694 kernel32:KERNEL32.dll - 0005:00000698 __imp__GetStartupInfoA@4 00460698 kernel32:KERNEL32.dll - 0005:0000069c __imp__GetModuleHandleA@4 0046069c kernel32:KERNEL32.dll - 0005:000006a0 __imp__GetPrivateProfileIntA@16 004606a0 kernel32:KERNEL32.dll - 0005:000006a4 __imp___hwrite@12 004606a4 kernel32:KERNEL32.dll - 0005:000006a8 __imp__DebugBreak@0 004606a8 kernel32:KERNEL32.dll - 0005:000006ac __imp___hread@12 004606ac kernel32:KERNEL32.dll - 0005:000006b0 __imp___llseek@12 004606b0 kernel32:KERNEL32.dll - 0005:000006b4 __imp___lcreat@8 004606b4 kernel32:KERNEL32.dll - 0005:000006b8 __imp___lclose@4 004606b8 kernel32:KERNEL32.dll - 0005:000006bc __imp__ExitProcess@4 004606bc kernel32:KERNEL32.dll - 0005:000006c0 __imp___lopen@8 004606c0 kernel32:KERNEL32.dll - 0005:000006c4 __imp__GlobalHandle@4 004606c4 kernel32:KERNEL32.dll - 0005:000006c8 __imp__GetFileType@4 004606c8 kernel32:KERNEL32.dll - 0005:000006cc __imp__GetModuleFileNameA@12 004606cc kernel32:KERNEL32.dll - 0005:000006d0 __imp__GetACP@0 004606d0 kernel32:KERNEL32.dll - 0005:000006d4 __imp__GetOEMCP@0 004606d4 kernel32:KERNEL32.dll - 0005:000006d8 __imp__GetCPInfo@8 004606d8 kernel32:KERNEL32.dll - 0005:000006dc __imp__GetStdHandle@4 004606dc kernel32:KERNEL32.dll - 0005:000006e0 __imp__InitializeCriticalSection@4 004606e0 kernel32:KERNEL32.dll - 0005:000006e4 __imp__VirtualFree@12 004606e4 kernel32:KERNEL32.dll - 0005:000006e8 __imp__VirtualAlloc@16 004606e8 kernel32:KERNEL32.dll - 0005:000006ec __imp__SetUnhandledExceptionFilter@4 004606ec kernel32:KERNEL32.dll - 0005:000006f0 __imp__IsBadReadPtr@8 004606f0 kernel32:KERNEL32.dll - 0005:000006f4 __imp__IsBadWritePtr@8 004606f4 kernel32:KERNEL32.dll - 0005:000006f8 __imp__IsBadCodePtr@4 004606f8 kernel32:KERNEL32.dll - 0005:000006fc \177KERNEL32_NULL_THUNK_DATA 004606fc kernel32:KERNEL32.dll - 0005:00000700 __imp__acmStreamClose@8 00460700 audios:MSACM32.dll - 0005:00000704 __imp__acmStreamOpen@32 00460704 audios:MSACM32.dll - 0005:00000708 __imp__acmStreamUnprepareHeader@12 00460708 audios:MSACM32.dll - 0005:0000070c __imp__acmStreamSize@16 0046070c audios:MSACM32.dll - 0005:00000710 __imp__acmFormatSuggest@20 00460710 audios:MSACM32.dll - 0005:00000714 __imp__acmStreamPrepareHeader@12 00460714 audios:MSACM32.dll - 0005:00000718 __imp__acmStreamConvert@12 00460718 audios:MSACM32.dll - 0005:0000071c \177MSACM32_NULL_THUNK_DATA 0046071c audios:MSACM32.dll - 0005:00000720 \177MSVFW32_NULL_THUNK_DATA 00460720 vfw32:MSVFW32.dll - 0005:00000724 __imp__SetScrollRange@20 00460724 user32:USER32.dll - 0005:00000728 __imp__SetScrollPos@16 00460728 user32:USER32.dll - 0005:0000072c __imp__InvertRect@8 0046072c user32:USER32.dll - 0005:00000730 __imp__FillRect@12 00460730 user32:USER32.dll - 0005:00000734 __imp__SetDlgItemTextA@12 00460734 user32:USER32.dll - 0005:00000738 __imp__GetCaretBlinkTime@0 00460738 user32:USER32.dll - 0005:0000073c __imp__GetWindow@8 0046073c user32:USER32.dll - 0005:00000740 __imp__MessageBoxA@16 00460740 user32:USER32.dll - 0005:00000744 __imp__IsIconic@4 00460744 user32:USER32.dll - 0005:00000748 __imp__BeginPaint@8 00460748 user32:USER32.dll - 0005:0000074c __imp__ReleaseDC@8 0046074c user32:USER32.dll - 0005:00000750 __imp__EndPaint@8 00460750 user32:USER32.dll - 0005:00000754 __imp__GetParent@4 00460754 user32:USER32.dll - 0005:00000758 __imp__GetDoubleClickTime@0 00460758 user32:USER32.dll - 0005:0000075c __imp__DefMDIChildProcA@16 0046075c user32:USER32.dll - 0005:00000760 __imp__GetActiveWindow@0 00460760 user32:USER32.dll - 0005:00000764 __imp__GetMessageTime@0 00460764 user32:USER32.dll - 0005:00000768 __imp__GetWindowLongA@8 00460768 user32:USER32.dll - 0005:0000076c __imp__SetWindowLongA@12 0046076c user32:USER32.dll - 0005:00000770 __imp__GetClipboardOwner@0 00460770 user32:USER32.dll - 0005:00000774 __imp__SendMessageA@16 00460774 user32:USER32.dll - 0005:00000778 __imp__DefFrameProcA@20 00460778 user32:USER32.dll - 0005:0000077c __imp__ChangeClipboardChain@8 0046077c user32:USER32.dll - 0005:00000780 __imp__TranslateMDISysAccel@8 00460780 user32:USER32.dll - 0005:00000784 __imp__TranslateAcceleratorA@12 00460784 user32:USER32.dll - 0005:00000788 __imp__TranslateMessage@4 00460788 user32:USER32.dll - 0005:0000078c __imp__DispatchMessageA@4 0046078c user32:USER32.dll - 0005:00000790 __imp__PeekMessageA@20 00460790 user32:USER32.dll - 0005:00000794 __imp__GetCursorPos@4 00460794 user32:USER32.dll - 0005:00000798 __imp__SetClipboardViewer@4 00460798 user32:USER32.dll - 0005:0000079c __imp__CloseClipboard@0 0046079c user32:USER32.dll - 0005:000007a0 __imp__RegisterClassA@4 004607a0 user32:USER32.dll - 0005:000007a4 __imp__CreateWindowExA@48 004607a4 user32:USER32.dll - 0005:000007a8 __imp__GetDC@4 004607a8 user32:USER32.dll - 0005:000007ac __imp__SetTimer@16 004607ac user32:USER32.dll - 0005:000007b0 __imp__PostQuitMessage@4 004607b0 user32:USER32.dll - 0005:000007b4 __imp__CheckRadioButton@16 004607b4 user32:USER32.dll - 0005:000007b8 __imp__WindowFromPoint@8 004607b8 user32:USER32.dll - 0005:000007bc __imp__ScreenToClient@8 004607bc user32:USER32.dll - 0005:000007c0 __imp__ClientToScreen@8 004607c0 user32:USER32.dll - 0005:000007c4 __imp__ScrollWindowEx@32 004607c4 user32:USER32.dll - 0005:000007c8 __imp__UpdateWindow@4 004607c8 user32:USER32.dll - 0005:000007cc __imp__GetUpdateRect@12 004607cc user32:USER32.dll - 0005:000007d0 __imp__ValidateRect@8 004607d0 user32:USER32.dll - 0005:000007d4 __imp__GetSystemMetrics@4 004607d4 user32:USER32.dll - 0005:000007d8 __imp__CreateCursor@28 004607d8 user32:USER32.dll - 0005:000007dc __imp__DestroyCursor@4 004607dc user32:USER32.dll - 0005:000007e0 __imp__SetCapture@4 004607e0 user32:USER32.dll - 0005:000007e4 __imp__GetCapture@0 004607e4 user32:USER32.dll - 0005:000007e8 __imp__ReleaseCapture@0 004607e8 user32:USER32.dll - 0005:000007ec __imp__IsZoomed@4 004607ec user32:USER32.dll - 0005:000007f0 __imp__ShowWindow@8 004607f0 user32:USER32.dll - 0005:000007f4 __imp__InvalidateRect@12 004607f4 user32:USER32.dll - 0005:000007f8 __imp__SetCursorPos@8 004607f8 user32:USER32.dll - 0005:000007fc __imp__ShowCursor@4 004607fc user32:USER32.dll - 0005:00000800 __imp__GetAsyncKeyState@4 00460800 user32:USER32.dll - 0005:00000804 __imp__GetKeyState@4 00460804 user32:USER32.dll - 0005:00000808 __imp__SetCursor@4 00460808 user32:USER32.dll - 0005:0000080c __imp__LoadCursorA@8 0046080c user32:USER32.dll - 0005:00000810 __imp__CharLowerBuffA@8 00460810 user32:USER32.dll - 0005:00000814 __imp__CharUpperBuffA@8 00460814 user32:USER32.dll - 0005:00000818 __imp__GetPropA@8 00460818 user32:USER32.dll - 0005:0000081c __imp__SetPropA@12 0046081c user32:USER32.dll - 0005:00000820 __imp__GetWindowRect@8 00460820 user32:USER32.dll - 0005:00000824 __imp__MoveWindow@24 00460824 user32:USER32.dll - 0005:00000828 __imp__RemovePropA@8 00460828 user32:USER32.dll - 0005:0000082c __imp__KillTimer@8 0046082c user32:USER32.dll - 0005:00000830 __imp__EndDialog@8 00460830 user32:USER32.dll - 0005:00000834 __imp__SetClipboardData@8 00460834 user32:USER32.dll - 0005:00000838 __imp__EmptyClipboard@0 00460838 user32:USER32.dll - 0005:0000083c __imp__OpenClipboard@4 0046083c user32:USER32.dll - 0005:00000840 __imp__EnumClipboardFormats@4 00460840 user32:USER32.dll - 0005:00000844 __imp__GetClipboardData@4 00460844 user32:USER32.dll - 0005:00000848 __imp__GetDlgItemTextA@16 00460848 user32:USER32.dll - 0005:0000084c __imp__CheckDlgButton@12 0046084c user32:USER32.dll - 0005:00000850 __imp__SetFocus@4 00460850 user32:USER32.dll - 0005:00000854 __imp__DialogBoxParamA@20 00460854 user32:USER32.dll - 0005:00000858 __imp__GetDlgItem@8 00460858 user32:USER32.dll - 0005:0000085c __imp__LoadAcceleratorsA@8 0046085c user32:USER32.dll - 0005:00000860 __imp__SendDlgItemMessageA@20 00460860 user32:USER32.dll - 0005:00000864 __imp__GetClientRect@8 00460864 user32:USER32.dll - 0005:00000868 __imp__GetMenuStringA@20 00460868 user32:USER32.dll - 0005:0000086c __imp__ModifyMenuA@20 0046086c user32:USER32.dll - 0005:00000870 __imp__DeleteMenu@12 00460870 user32:USER32.dll - 0005:00000874 __imp__EnableMenuItem@12 00460874 user32:USER32.dll - 0005:00000878 __imp__GetSubMenu@8 00460878 user32:USER32.dll - 0005:0000087c __imp__GetMenuItemID@8 0046087c user32:USER32.dll - 0005:00000880 __imp__CheckMenuItem@12 00460880 user32:USER32.dll - 0005:00000884 __imp__SetMenu@8 00460884 user32:USER32.dll - 0005:00000888 __imp__LoadMenuA@8 00460888 user32:USER32.dll - 0005:0000088c __imp__GetMenuItemCount@4 0046088c user32:USER32.dll - 0005:00000890 __imp__IsWindow@4 00460890 user32:USER32.dll - 0005:00000894 __imp__SetWindowTextA@8 00460894 user32:USER32.dll - 0005:00000898 __imp__DestroyWindow@4 00460898 user32:USER32.dll - 0005:0000089c __imp__CreateMDIWindowA@40 0046089c user32:USER32.dll - 0005:000008a0 __imp__ScrollDC@28 004608a0 user32:USER32.dll - 0005:000008a4 __imp__GetMessageA@16 004608a4 user32:USER32.dll - 0005:000008a8 __imp__LoadIconA@8 004608a8 user32:USER32.dll - 0005:000008ac __imp__InsertMenuA@20 004608ac user32:USER32.dll - 0005:000008b0 __imp__IsDlgButtonChecked@8 004608b0 user32:USER32.dll - 0005:000008b4 \177USER32_NULL_THUNK_DATA 004608b4 user32:USER32.dll - 0005:000008b8 __imp__midiOutUnprepareHeader@12 004608b8 winmm:WINMM.dll - 0005:000008bc __imp__midiOutClose@4 004608bc winmm:WINMM.dll - 0005:000008c0 __imp__midiOutOpen@20 004608c0 winmm:WINMM.dll - 0005:000008c4 __imp__midiOutReset@4 004608c4 winmm:WINMM.dll - 0005:000008c8 __imp__midiOutPrepareHeader@12 004608c8 winmm:WINMM.dll - 0005:000008cc __imp__midiOutShortMsg@8 004608cc winmm:WINMM.dll - 0005:000008d0 __imp__midiOutSetVolume@8 004608d0 winmm:WINMM.dll - 0005:000008d4 __imp__midiOutGetVolume@8 004608d4 winmm:WINMM.dll - 0005:000008d8 __imp__waveOutGetNumDevs@0 004608d8 winmm:WINMM.dll - 0005:000008dc __imp__waveOutGetDevCapsA@12 004608dc winmm:WINMM.dll - 0005:000008e0 __imp__timeGetTime@0 004608e0 winmm:WINMM.dll - 0005:000008e4 __imp__waveOutClose@4 004608e4 winmm:WINMM.dll - 0005:000008e8 __imp__waveOutPrepareHeader@12 004608e8 winmm:WINMM.dll - 0005:000008ec __imp__waveOutUnprepareHeader@12 004608ec winmm:WINMM.dll - 0005:000008f0 __imp__waveOutMessage@16 004608f0 winmm:WINMM.dll - 0005:000008f4 __imp__timeSetEvent@20 004608f4 winmm:WINMM.dll - 0005:000008f8 __imp__timeGetDevCaps@8 004608f8 winmm:WINMM.dll - 0005:000008fc __imp__timeKillEvent@4 004608fc winmm:WINMM.dll - 0005:00000900 __imp__waveOutReset@4 00460900 winmm:WINMM.dll - 0005:00000904 __imp__waveOutGetID@8 00460904 winmm:WINMM.dll - 0005:00000908 __imp__waveOutOpen@24 00460908 winmm:WINMM.dll - 0005:0000090c __imp__waveOutGetVolume@8 0046090c winmm:WINMM.dll - 0005:00000910 __imp__waveOutSetVolume@8 00460910 winmm:WINMM.dll - 0005:00000914 __imp__waveOutSetPlaybackRate@8 00460914 winmm:WINMM.dll - 0005:00000918 __imp__waveOutGetErrorTextA@12 00460918 winmm:WINMM.dll - 0005:0000091c __imp__waveOutWrite@12 0046091c winmm:WINMM.dll - 0005:00000920 __imp__waveOutPause@4 00460920 winmm:WINMM.dll - 0005:00000924 __imp__waveOutRestart@4 00460924 winmm:WINMM.dll - 0005:00000928 __imp__waveOutBreakLoop@4 00460928 winmm:WINMM.dll - 0005:0000092c __imp__waveOutGetPosition@12 0046092c winmm:WINMM.dll - 0005:00000930 __imp__waveOutGetPitch@8 00460930 winmm:WINMM.dll - 0005:00000934 __imp__waveOutSetPitch@8 00460934 winmm:WINMM.dll - 0005:00000938 __imp__waveOutGetPlaybackRate@8 00460938 winmm:WINMM.dll - 0005:0000093c \177WINMM_NULL_THUNK_DATA 0046093c winmm:WINMM.dll - 0005:00000940 __imp__GetSaveFileNameA@4 00460940 comdlg32:comdlg32.dll - 0005:00000944 __imp__GetOpenFileNameA@4 00460944 comdlg32:comdlg32.dll - 0005:00000948 \177comdlg32_NULL_THUNK_DATA 00460948 comdlg32:comdlg32.dll - - entry point at 0001:0004fc5d - - Static symbols - - 0001:0003e6e0 _$$1000 0043f6e0 f test.obj - 0001:0003ec80 _$$8000 0043fc80 f test.obj - 0001:0003af10 _$$b200 0043bf10 f ft.obj - 0001:0003b330 _$$1000 0043c330 f ft.obj - 0001:0003cfd0 _$$8000 0043dfd0 f ft.obj - 0001:0003e240 _$$2300 0043f240 f ft.obj - 0001:0003e260 _$$3300 0043f260 f ft.obj - 0001:0003e270 _$$4300 0043f270 f ft.obj - 0001:0003ada0 _$$1000 0043bda0 f mbmp.obj - 0001:0003ae50 _$$9200 0043be50 f mbmp.obj - 0001:0003ae80 _$$8000 0043be80 f mbmp.obj - 0001:000362d0 _$$1000 004372d0 f rtxt2.obj - 0001:00038470 _$$8000 00439470 f rtxt2.obj - 0001:0003a8b0 _$$9200 0043b8b0 f rtxt2.obj - 0001:00031ec0 _$$1000 00432ec0 f rtxt.obj - 0001:00033b60 _$$8000 00434b60 f rtxt.obj - 0001:000360d0 _$$9200 004370d0 f rtxt.obj - 0001:0002f490 _$$1000 00430490 f text.obj - 0001:00031240 _$$8000 00432240 f text.obj - 0001:00031c50 _$$9200 00432c50 f text.obj - 0001:0002ead0 _$$1000 0042fad0 f ctl.obj - 0001:0002f160 _$$9200 00430160 f ctl.obj - 0001:0002f1d0 _$$8000 004301d0 f ctl.obj - 0001:0002e150 _$$1000 0042f150 f dlgwin.obj - 0001:0002e780 _$$9200 0042f780 f dlgwin.obj - 0001:0002e790 _$$8000 0042f790 f dlgwin.obj - 0001:0002db40 _$$1000 0042eb40 f dlg.obj - 0001:0002dd70 _$$9200 0042ed70 f dlg.obj - 0001:0002dda0 _$$8000 0042eda0 f dlg.obj - 0001:0002d5c0 _$$1000 0042e5c0 f midi.obj - 0001:0002d700 _$$9200 0042e700 f midi.obj - 0001:0002d750 _$$8000 0042e750 f midi.obj - 0001:0002ad90 _$$1000 0042bd90 f mididev2.obj - 0001:0002c8c0 _$$8000 0042d8c0 f mididev2.obj - 0001:0002d010 _$$9200 0042e010 f mididev2.obj - 0001:0002a870 _$$9200 0042b870 f mididev.obj - 0001:0002aa80 _$$1000 0042ba80 f mididev.obj - 0001:0002aa90 _$$a200 0042ba90 f mididev.obj - 0001:0002aaa0 _$$b200 0042baa0 f mididev.obj - 0001:0002aab0 _$$c200 0042bab0 f mididev.obj - 0001:0002aaf0 _$$8000 0042baf0 f mididev.obj - 0001:000297a0 _$$1000 0042a7a0 f sndam.obj - 0001:0002a770 _$$9200 0042b770 f sndam.obj - 0001:0002a7e0 _$$8000 0042b7e0 f sndam.obj - 0001:00028370 _$$1000 00429370 f sndm.obj - 0001:000295e0 _$$9200 0042a5e0 f sndm.obj - 0001:00029650 _$$8000 0042a650 f sndm.obj - 0001:000271c0 _$$1000 004281c0 f stream.obj - 0001:00027fe0 _$$8000 00428fe0 f stream.obj - 0001:000269b0 _$$9200 004279b0 f clip.obj - 0001:00026bb0 _$$1000 00427bb0 f clip.obj - 0001:00026f30 _$$a200 00427f30 f clip.obj - 0001:00026f40 _$$b200 00427f40 f clip.obj - 0001:00026f50 _$$c200 00427f50 f clip.obj - 0001:00026f90 _$$8000 00427f90 f clip.obj - 0001:00023e50 _$$1000 00424e50 f docb.obj - 0001:00025b60 _$$8000 00426b60 f docb.obj - 0001:00026820 _$$9200 00427820 f docb.obj - 0001:00023b60 _$$1000 00424b60 f picwin.obj - 0001:00023b70 _$$9200 00424b70 f picwin.obj - 0001:00023ba0 _$$8000 00424ba0 f picwin.obj - 0001:00022ce0 _$$1000 00423ce0 f menuwin.obj - 0001:00023950 _$$9200 00424950 f menuwin.obj - 0001:00023980 _$$8000 00424980 f menuwin.obj - 0001:000227e0 _$$1000 004237e0 f gobwin.obj - 0001:00022990 _$$9200 00423990 f gobwin.obj - 0001:000229a0 _$$8000 004239a0 f gobwin.obj - 0001:000203d0 _$$1000 004213d0 f gfxwin.obj - 0001:000221f0 _$$8000 004231f0 f gfxwin.obj - 0001:000224e0 _$$a200 004234e0 f gfxwin.obj - 0001:0001ec50 _$$1000 0041fc50 f appbwin.obj - 0001:0001fde0 _$$9200 00420de0 f appbwin.obj - 0001:0001fdf0 _$$8000 00420df0 f appbwin.obj - 0001:0001e7e0 _$$1000 0041f7e0 f pic.obj - 0001:0001e7f0 _$$9200 0041f7f0 f pic.obj - 0001:0001e800 _$$8000 0041f800 f pic.obj - 0001:0001cd00 _$$1000 0041dd00 f region.obj - 0001:0001e4f0 _$$9200 0041f4f0 f region.obj - 0001:0001e600 _$$8000 0041f600 f region.obj - 0001:0001c7e0 _$$1000 0041d7e0 f mbmpgui.obj - 0001:0001ca90 _$$9200 0041da90 f mbmpgui.obj - 0001:0001caa0 _$$8000 0041daa0 f mbmpgui.obj - 0001:00019f70 _$$1000 0041af70 f gob.obj - 0001:0001bfa0 _$$8000 0041cfa0 f gob.obj - 0001:0001c1b0 _$$9200 0041d1b0 f gob.obj - 0001:00016290 _$$9200 00417290 f gfx.obj - 0001:00016480 _$$1000 00417480 f gfx.obj - 0001:00018450 _$$8000 00419450 f gfx.obj - 0001:00019c60 _$$a200 0041ac60 f gfx.obj - 0001:00019c70 _$$b200 0041ac70 f gfx.obj - 0001:00019c80 _$$c200 0041ac80 f gfx.obj - 0001:000161b0 _$$1000 004171b0 f cursor.obj - 0001:000161d0 _$$9200 004171d0 f cursor.obj - 0001:00016200 _$$8000 00417200 f cursor.obj - 0001:00014af0 _$$1000 00415af0 f cmd.obj - 0001:00015d30 _$$9200 00416d30 f cmd.obj - 0001:00015d80 _$$8000 00416d80 f cmd.obj - 0001:00014390 _$$9200 00415390 f clok.obj - 0001:00014520 _$$1000 00415520 f clok.obj - 0001:000147e0 _$$a200 004157e0 f clok.obj - 0001:00014820 _$$8000 00415820 f clok.obj - 0001:00012790 _$$1000 00413790 f appb.obj - 0001:00014220 _$$9200 00415220 f appb.obj - 0001:00014250 _$$8000 00415250 f appb.obj - 0001:000119f0 _$$8000 004129f0 f fniwin.obj - 0001:00011d40 _$$1000 00412d40 f fniwin.obj - 0001:00012470 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 00413470 f fniwin.obj - 0001:00012510 _$$9000 00413510 f fniwin.obj - 0001:00012520 _$$a000 00413520 f fniwin.obj - 0001:00012530 _$$b000 00413530 f fniwin.obj - 0001:00011280 ?_HfileOpen@@YGPAXPADHK@Z 00412280 f filewin.obj - 0001:00011550 _$$1000 00412550 f filewin.obj - 0001:000119e0 _$$8000 004129e0 f filewin.obj - 0001:0000fdf0 _$$8000 00410df0 f file.obj - 0001:00010060 _$$1000 00411060 f file.obj - 0001:00010310 ?_FRangeIn@@YGHJJJ@Z 00411310 f file.obj - 0001:00011210 _$$9000 00412210 f file.obj - 0001:00011220 _$$a000 00412220 f file.obj - 0001:00011230 _$$b000 00412230 f file.obj - 0001:0000f160 _$$1000 00410160 f crf.obj - 0001:0000fd70 _$$8000 00410d70 f crf.obj - 0001:00008cd0 _$$1000 00409cd0 f codkauai.obj - 0001:0000ef70 _$$8000 0040ff70 f codkauai.obj - 0001:00008480 _$$1000 00409480 f codec.obj - 0001:000087b0 _$$8000 004097b0 f codec.obj - 0001:00005770 _$$1000 00406770 f chunk.obj - 0001:00008170 _$$8000 00409170 f chunk.obj - 0001:00005040 _$$1000 00406040 f groups2.obj - 0001:000055f0 _$$8000 004065f0 f groups2.obj - 0001:000031e0 _$$1000 004041e0 f groups.obj - 0001:00004d80 _$$8000 00405d80 f groups.obj - 0001:00002f00 _$$8000 00403f00 f memwin.obj - 0001:00002f10 _$$1000 00403f10 f memwin.obj - 0001:00001e60 _$$1000 00402e60 f utilstr.obj - 0001:00002d20 _$$8000 00403d20 f utilstr.obj - 0001:00001af0 _$$1000 00402af0 f utilrnd.obj - 0001:00001bf0 _$$8000 00402bf0 f utilrnd.obj - 0001:00001910 _$$8000 00402910 f utilmem.obj - 0001:00001920 _$$1000 00402920 f utilmem.obj - 0001:00000ae0 _$$1000 00401ae0 f utilint.obj - 0001:00001700 _$$8000 00402700 f utilint.obj - 0001:00000620 _$$8000 00401620 f utilerro.obj - 0001:00000850 _$$1000 00401850 f utilerro.obj - 0001:00000860 _$$9000 00401860 f utilerro.obj - 0001:00000880 _$$a000 00401880 f utilerro.obj - 0001:00000890 _$$b000 00401890 f utilerro.obj - 0001:000004e0 _$$1000 004014e0 f utilcopy.obj - 0001:00000610 _$$8000 00401610 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:00054a82 _strncnt 00455a82 f LIBC:aw_map.obj - 0001:00054908 _siglookup 00455908 f LIBC:winsig.obj - 0001:00054749 __before 00455749 f LIBC:heapadd.obj - 0001:00053761 __abstract_cw 00454761 f LIBC:ieee87.obj - 0001:000537f4 __hw_cw 004547f4 f LIBC:ieee87.obj - 0001:00053630 _$$1000 00454630 f LIBC:unhandld.obj - 0001:00053695 _$$2000 00454695 f LIBC:unhandld.obj - 0001:000533d5 __heap_new_region 004543d5 f LIBC:heapgrow.obj - 0001:00052ca7 __cftoe_g 00453ca7 f LIBC:cvt.obj - 0001:00052dc8 __cftof_g 00453dc8 f LIBC:cvt.obj - 0001:00052ee4 __shift 00453ee4 f LIBC:cvt.obj - 0001:00051f9c ?FindHandler@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@EH1@Z 00452f9c f LIBC:frame.obj - 0001:000521ea ?FindHandlerForForeignException@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@HH1@Z 004531ea f LIBC:frame.obj - 0001:000522ba ?GetRangeOfTrysToCheck@@YAPAUTryBlockMapEntry@@PAUFuncInfo@@HHPAI1@Z 004532ba f LIBC:frame.obj - 0001:00052414 ?CatchIt@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAXPAUFuncInfo@@PAUHandlerType@@PAUCatchableType@@PAUTryBlockMapEntry@@H1@Z 00453414 f LIBC:frame.obj - 0001:000524a1 ?CallCatchBlock@@YAPAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAU_CONTEXT@@PAUFuncInfo@@PAXH@Z 004534a1 f LIBC:frame.obj - 0001:000525a9 ?ExFilterRethrow@@YAHPAU_EXCEPTION_POINTERS@@@Z 004535a9 f LIBC:frame.obj - 0001:000525d4 ?BuildCatchObject@@YAXPAUEHExceptionRecord@@PAUEHRegistrationNode@@PAUHandlerType@@PAUCatchableType@@@Z 004535d4 f LIBC:frame.obj - 0001:000527c3 ?DestructExceptionObject@@YAXPAUEHExceptionRecord@@E@Z 004537c3 f LIBC:frame.obj - 0001:0005282f ?AdjustPointer@@YAPAXPAXAAUPMD@@@Z 0045382f f LIBC:frame.obj - 0001:00051d02 __heap_grow_emptylist 00452d02 f LIBC:heapinit.obj - 0001:000519b6 _getSystemCP 004529b6 f LIBC:mbctype.obj - 0001:000519f1 _CPtoLCID 004529f1 f LIBC:mbctype.obj - 0001:00051a30 _setSBCS 00452a30 f LIBC:mbctype.obj - 0001:000517ec _parse_cmdline 004527ec f LIBC:stdargv.obj - 0001:00051656 @x_ismbbtype@12 00452656 f LIBC:ismbbyte.obj - 0001:0005161b _xcptlookup 0045261b f LIBC:winxfltr.obj - 0001:000512d1 __heap_expand_block 004522d1 f LIBC:realloc.obj - 0001:0005113c _doexit 0045213c f LIBC:crt0dat.obj - 0001:000511bb __initterm 004521bb f LIBC:crt0dat.obj - 0001:000500b8 __unwind_handler 004510b8 f LIBC:exsup.obj - 0001:0004ff3e ?CatchGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUCatchGuardRN@@PAX2@Z 00450f3e f LIBC:trnsctrl.obj - 0001:00050032 ?TranslatorGuardHandler@@YA?AW4_EXCEPTION_DISPOSITION@@PAUEHExceptionRecord@@PAUTranslatorGuardRN@@PAX2@Z 00451032 f LIBC:trnsctrl.obj - -FIXUPS: 5107d fffffc42 c 5 10 10 5 30 56 6 15 f 23 fffffe8d fffffff1 fffffff3 -FIXUPS: 50b7f 1e 12 44 13 13 175d f e c 3d 55 fffffdbe 16 33 1f d 23 23 -FIXUPS: 52100 12 11 11 5d 12 fffffdbb a 18 a fffff1f6 5 a ffffff1d fffffdde -FIXUPS: 50ed6 53 31 110 26d6 f 1a d e d 7 10 5a 12 fffff5cb d 35 25 ffffff1c -FIXUPS: 52a61 b8 78 44 10 fffffbb0 12 10 19 fffffef2 15 2a 11 ffffff3f -FIXUPS: 524c4 ffffffaa fffffedb e96 3b 2e 52 5c 46 6d 1a 21 14 39 23 15 -FIXUPS: 5348a e 77 4f 9 c 17 af 13 1d 1f 13 17 21 1d 13 1a a a 5e8 28 1f -FIXUPS: 53d77 30 35 1d 36 47 11 2c 16 13 29 fffffa90 9a ffffff10 ffffff7f -FIXUPS: 53930 fffff5bf 2b 2c 2b 1b 34 46 c 25 3c 114 26 28 11e2 c 75 d -FIXUPS: 544db d c 32 fffffe42 fffffdcc 3d 49 132 31 fffffc33 12 1d 5 55 -FIXUPS: 54015 7 2f b2 15 fffff959 21 c1 1c 48 13 31 ca e39 177 1a 1d 12 -FIXUPS: 54cd7 20 d f 13 17 13 22 5b 16 22 f 22 f fffffafe 64 ffffff44 ffffff99 -FIXUPS: 5471e 17 24 ffffff9a a a ffffff59 1b 1b 15bc c 1e 77 c fffffd3a -FIXUPS: 55a71 fffffd88 44 fffffcdb 10 10 18 a1 3e 24 d 41 34 fffffd6a 78 -FIXUPS: 554c7 18 e fffffe1b a4 22 fffffb0d 1a fffffb77 17 67 2311 aa 1f -FIXUPS: 56921 1c fffffd97 1a 65 1d 2b c 10 c fffff8cd c5 92 10e 49 c6 4f -FIXUPS: 55d40 14 18 18 b0 9 e 9 29 4d fffffc51 c2 fffea7fa 19 77 106 50 -FIXUPS: 405f6 42 71 49 5b b0 21 35 25 82 8b 19 134 8 1c 10 10 166a3 47 -FIXUPS: 5723e 110 fffffcdf fffffa58 133 ef 21 26 fffeb148 ffffed03 31 1c -FIXUPS: 40b96 5f c1 17f ffffeec5 58 81 17 10 2d 17 25 31 18 62 68 61 20 -FIXUPS: 4002e d 44 32 77 34 34 80 b 3c 185c 78 8 78 8 78 8 78 8 13 10 10 -FIXUPS: 41cf6 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 -FIXUPS: 41309 3e 41 3e 41 3c 3a 3c 37 41 3c 37 41 3c 3a 3c 37 41 3c 3a -FIXUPS: 417c1 3a 3b 8 3b b2 8 78 8 78 8 78 177a 62 d b 3f 16 fffffd92 10 -FIXUPS: 430f5 ffffff50 fffffd4c 29 3d fffffb7e 98 63 7 53 62 20 7 fffff534 -FIXUPS: 42213 244 178 fffff885 8d 5c fffff2b3 5f 3e 3e 2b53 fffffa18 10 -FIXUPS: 438a5 4d 21 7b 3c 104 fffffb98 10 5f 62 d b 42 18 fffffd7d 10 5f -FIXUPS: 435ee 11 4b fffffd2c 10 5f 6f 79 fffffc9c 31 1c 10 ce3 31 bd 129 -FIXUPS: 440fa 16 86 13e 4e 21 29 30 38 21 ea d 61 74 26 1f b b0 47 5e 10 -FIXUPS: 44786 fffff3d0 10 5f 3d 71 f 1926 25 1c 20 4e 1f 10 10 fffff3f3 -FIXUPS: 44aba 68 35 d7 c 1a d6 1a 52 2c ad 160 2f 5d 1d 22 bc 10 10 fffff691 -FIXUPS: 44a46 10 10 ea8 d 3a 4d 1b9 4e 43 98 2a 17b fc 46 15b 10 10 fffff0b3 -FIXUPS: 451cf e8 118 3e 1c 22 20 c 26 21 1c 16 1d 21 1c 48 f05 41 b 46 -FIXUPS: 46533 d 14 a d e e d 1a 65 e d 1b f 1d 86 e 32 c 23 42 49 81 10 -FIXUPS: 46896 ffffeef1 11f a 1950 3e 48 18 18 2a 257 11f 10 10 fffff243 -FIXUPS: 468ef 88 231 c4 12 f8 10 10 fffff373 31 59 74 11d 20 9 d0 d a 29 -FIXUPS: 4646a a 37cb 32 12 f 40 d 2a f 2f 4b 6 37 4b 13 4a 1d 6 6 32 ffffd815 -FIXUPS: 47911 a5 10 10 fffff3e3 36 98 da bc 1a 133 4a 1d76 67 26 80 6 c -FIXUPS: 490e4 3a 6 9b 11 16 11 112 103 34 14 fe 39 29 10 120 13 43 10f -FIXUPS: 499ac d b 1e 1f0 3a c ffffea40 20 10 24 10 43 16e 4c 34 2a 33 10 -FIXUPS: 489a0 30 18 72 3a 51 3f 4c 44 51 3f 51 3f 5b 40 8f b 38 61 31 fffff12a -FIXUPS: 4800f 11 8 25 18 8 20 18 8 1d 30 15 11 20 18 10 3b 1d4 25 33 d -FIXUPS: 483ed 2b 55 10 a7 29 10 ad 21 10 fffff740 2a 11 c 17 6 6 d 29 6 -FIXUPS: 47e2e 6 6 6 18 d 7 8 15 19 e 6 17 6 15 27 40 f 10 15 8 23 6223 -FIXUPS: 49fa1 7 2c 4c 28 28 28 25 7a d 21 fa e 32 e 25 2d e 32 e 25 fffffb8e -FIXUPS: 49f21 ffffdc3c 173 11 18 13 21 f 2c 7ec4 112 1d 38 1b b9 23 17 -FIXUPS: 4fedf 157 10 10 ffffe9c1 fffff8d0 e6 2f 33 6a 25 94 ffffe997 16 -FIXUPS: 4cf44 63 70 3f 54 10 f 6d 59b 310 1aaf 7 12 24 14 f 1b 25 13 27 -FIXUPS: 4f587 d 16 17 d d 5d 19 39 26 1a 19 b 7 d 18 33 1e9 7 70 19 122 -FIXUPS: 4f023 16 d1 3f 22 3b 24 1e 14 d 22 10 23 16 14 d 25 10 20 e 22 -FIXUPS: 4f32d 1d 33 d 20 29 18 20 1c 16 1f fffb1f05 fffffe10 fffffea4 11 -FIXUPS: 1053 c a 1e a 1f 1e 18 b 5 5 17 30 4f475 d0 254 65 a2 11 96 fffff64e -FIXUPS: 4ebd9 2c1 3a 21 73 67 22 fffb2eff 49a 22a b 28 27 44 29 86 21 ffffef04 -FIXUPS: 1645 11 1e 5c 1b6 b 5 5 21 fffffb52 10 7 8a 1c 146 fffffb94 11 -FIXUPS: 12a4 30 5d 23 269b 1a0 3c 156 ffffec24 11 2f 11 1e 12 10 53 35 -FIXUPS: 2a79 28 27 5e 1e d 3a 15 26 2b 21 12 d fffffb9d ef 54 ffffefd6 -FIXUPS: 1b08 19 13f9 f 27 22 4b 1e 28 be 29 15 3a 32 79 16 2e 2c 35 9c -FIXUPS: 3365 50 20 3f 36 61 f 25b 6d 111 63 49 f 2e 2445 13 d 13 d 13 d -FIXUPS: 5e34 d 13 d ffffdeeb a8 6c 19 14 16 5e ffffed4a 21 26 32 26 9 54 -FIXUPS: 2d92 94 11 4e 33 36 f 2907 11 24 41 14 b 51 31 2e 18 6d 19 1d 58 -FIXUPS: 5a6f 42 44 17 18 14 2f 2d 11 24 93 5d 18 96 1a 13 d 13 fffff4f9 -FIXUPS: 52cc 18 1b 17 7 42 40 55 23 85 2f 13 2d 1f aa 18 70 20 14 1d 12 -FIXUPS: 56d8 29 a 1b e 17 30 19 14 2f fffff14c 26 35 45 4d 19 10 1e 32 -FIXUPS: 4b00 2a 9b 4d 36 dc 98 35 1e 3e 23 12 1d 43 b8 42 b9 44 e cd 31 -FIXUPS: 525c 11 fffff201 b 2b 5b 6 15 b 17 c 22 1f 10 1e 32 d 1c 48 14 -FIXUPS: 4679 20 80 1d 2c 10 1b 3c 41 45 34 14 31 38 fffff746 2f 11 2f 11 -FIXUPS: 40ee 9 32 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 1e a b 28 a b -FIXUPS: 4409 22 a b 24 1de4 4c 19 aa 4d 14 2f 4a 38 30 1c 19 60 31 23 10 -FIXUPS: 65dc 8 d 13 d 13 d ffffd904 11 2f 11 2f 11 2f 11 2f 4edf c8 47 -FIXUPS: 906c 2a 13 16 5b 57 13 d 13 d ffffccd4 11 2f 11 1e e3 7 11 1f 13 -FIXUPS: 602f 79 1e 21 f 10 62 55 4d 2645 2a 30 2c 34 1f 10 3f 1b 20 18 -FIXUPS: 89da 60 1b 37 1c 2e 1c 34 1c 2d 3d 3d 19 21 a0 28 a2 3d 3b 26 67 -FIXUPS: 83e5 11 30 1c 2b 11 d 24 17 1f 17 17 35 1a 1c 13 1e c d 23 47 25 -FIXUPS: 866a 3b 48 37 2e 2c 2f 33 1b 2b fffff895 24 13 9 11 7 9 15 22 26 -FIXUPS: 8195 17 1f b 1b 18 f 3f 27 16 d 19 14 16 17 23 22 29 2a 16 10 16 -FIXUPS: 7b37 1a 35 1e 32 1c 24 5d 4e 1a 16 a0 75 3d 45 1a 39 2a 10 b 36 -FIXUPS: 7f67 1d 1a 15 a 50 2c 20 20 11 24 fffff586 2a 9c 3c f b 9 13 11 -FIXUPS: 77bd 29 48 f 20 32 21 2c 16 21 34 b 31 40 1d 17 16 7b 19 41 b 15 -FIXUPS: 7b26 fffff678 15 10 b f 12 b 10 2a 39 1e 47 6 2c 30 24 52 a 9 19 -FIXUPS: 744b 60 28 6 38 34 17 23 1f 1c 1a 27 fffff5e9 17 3a 2b 27 17 41 -FIXUPS: 6cf5 18 16 13 26 30 2c 16 16 13 39 2a 4c d cc 48 51 54 52 6 70 -FIXUPS: 7145 1c c 18 fffff659 d e b f 6a c 10 b 11 e 13 15 41 26 7 a f -FIXUPS: 699f 17 4c 8 1c 22 78 1f 4d 13 13 26 27 17 266e 7a 50 7f 20 b1 -FIXUPS: 94a3 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d ffffce84 11 2f 11 1e -FIXUPS: 66d6 88 2c 14 2c 9 32cd d 81 6a 12 78 12 33 27 21 3994 1b 1c 52 -FIXUPS: d6db d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9264 11 2f 778e -FIXUPS: 109e1 b8 165 78 59 23 d e 9 11 1b 2f 1d 7 d 12 d 13 d ffff8a14 -FIXUPS: 9806 52 8 28 8 11c 18 3f 1b 1c 55 6a1a 27 76 14 27 38 25 26 d 27 -FIXUPS: 1064e 16 1b d 4a 5f 14 1b 3e d 2c 1c 16 3e 1c 16 46 1c 3a 16 41 -FIXUPS: 10986 18de d ffffdd24 11 2f 11 2f 20 11 1e 6e 17 68 3c 58 54 70 -FIXUPS: 102be f 31 18 d 27 16 40 9 1e d 2c 37 d 32 1a23 1c 1d 3f 1a 12 -FIXUPS: 11f4e b 39 f 1e 19 d b 79 23 11 b 81 e 12 29 25 2c 16 26 27 b 5 -FIXUPS: 1223b 9 d fffff693 40 28 18 40 40 1f 38 45 3e 10 17 61 14 15 20 -FIXUPS: 11c62 57 6 20 2b 3f 6 20 2b 4b 6 1d 18 1f 2d 27 fffff4c1 2e 22 -FIXUPS: 113d2 4b 36 17 27 34 1c 17 8 a a 28 11 15 8 8 48 125 29 57 23 23 -FIXUPS: 117b8 1d 18 40 1f 17 31 fffff5d2 1e 12 22 21 25 14 23 14 14 25 -FIXUPS: 10f93 18 3d 1c d 14 57 26 7 a f 2a 3e 64 dd 1d 15 12 b 8 29 1352 -FIXUPS: 126e1 c 86 c 42 9 a 11 9 d 14 11 10 1b 1d f 1f 1d 14 1f 10 10 4e -FIXUPS: 12964 10 1e 10 3f ffffe434 11 2f 2206 b 4d 1a 22 24 13 3a b 1e -FIXUPS: 131b6 1a 154 76 1d 68 34 7 70 28 34 b 5 5 17 ffffedec 23 89 9e -FIXUPS: 124e6 a1 aa 4c9 17 a 7 2f 7 5e b 16 e 7 a8 d 2c 19 20 12 5d 26 -FIXUPS: 12dac 24 1e 11 b 1e 82 10 28 e 64 d7 c 1aea 31 37 1c6 6e 8f 46 -FIXUPS: 14ee4 48 2c 2e b 36 2a 86 19 11 2c 8d 7b 4c 5 e d ffffd7b5 1f 11 -FIXUPS: 12a54 15 29 7 56 1984 10 b 69 14 67 14 12 7c 10 37 2e 1d e 72 d -FIXUPS: 14745 2d 5 c 9 8b 2d 2d 37 2a 3c b1 4a 69 75 1e fffff54d a 55 1b -FIXUPS: 140df 1e 20 28 43 22 29 27 9 14 24 1a 18 14 18 17 2b 19 29 20 38 -FIXUPS: 14396 14 40 1e 2a 1e 12 fffff597 25 14 68 b 23 48 f 47 40 6e f -FIXUPS: 13c50 2c 2d 36 4a 2a 28 29 1c 2c 3a eb 5 7 8a 50 d 13 c 9 152c -FIXUPS: 15587 2b 33 24 67 12 6c 3f b4 5 5 9 d ffffdd74 11 20 3b 5d 28 f -FIXUPS: 136a2 a5 168 f 10 41 f 10 14 11 44 2c00 57 110 32 43 53 59 c 29 -FIXUPS: 168c8 c2 1b 13 92 d2 100 13 3c c6 5 e d 13 d ffffe5f4 11 33 8b -FIXUPS: 15474 3b 3c 64 90f 11 5f 3b 3f 18 61 13 26 2e 3c 1c 11 2b f 40 -FIXUPS: 16123 2f 9 ca c 35 14 20 1f 18 23 53 7 c9 75 cd a98 21 f d 2f c -FIXUPS: 170c3 21 73 7a 5 e d ffffe6e4 11 2f 11 7e 200 47 9f b 46 13 5b -FIXUPS: 15d6f 2c f 22 18 1f 3f 4982 2b 63 1d 22 15 32b 79 1c 10 b 5 5 5 -FIXUPS: 1aca4 d 13 d 13 d ffffc144 11 34 42 51 18 2d 59 18 10 6 12 2e4b -FIXUPS: 19e44 5a 22 21 64 1e 9 2d 39 4a 28 21 1c 1e 37 14 32 32 5f 3d 38 -FIXUPS: 1a2a9 b 1e 34 29 64 1d 22 15 364 fffff0e9 91 46 11e 11 15 19 1b -FIXUPS: 19aa2 15 d 1e 21 5 d 26 7a 33 1f 1a 1a 28 1b 11 16 4a e 63 e 47 -FIXUPS: 19dc9 12 fffff4f9 27 1a 15 5 2a 20 6c 19 24 14 5 ec 1c 5 f 26 b -FIXUPS: 195a1 4c 1c 5 1c 15 4c 10 5c d 37 70 3f 16 fffff394 a 1d 1d 27 -FIXUPS: 18c1c 5 1a 13 1c 5 87 ae 18 4c 11 f 32 16 e 48 5 bc 32 60 22 d0 -FIXUPS: 19128 38 1e 116 5 fffff28c a5 17 1d 15 c 1b 5 57 64 23 50 a 7e -FIXUPS: 1885e 22 e 17 1d 5 18 74 17 21 5 79 26 50 a 32 56 1f fffff436 17 -FIXUPS: 18040 c 6d c c 61 5d d 11 4a 1b 33 6a 20 31 27 25 13 c 2d 15 1e -FIXUPS: 18414 9 1b 12 a 29 62 35 fffff42a 46 4e 1c a 37 3e a 3d 4e 1c a -FIXUPS: 17b8b 1d 1d 25 2a a 2a 43 1b 4e 2b e 23 12 88 15 18 10 50 f fffff62c -FIXUPS: 174ba 1a 1a c 79 1a 78 c e c e c 2d 31 1c 22 22 1f 40 1c 23 31 -FIXUPS: 177f1 1c 24 22 1e 31 4f 24 16 550b 15 22 21 2f 2f 1e 23 2c 1e 15 -FIXUPS: 1d064 8e 39 86 5 7e d 21 ffffa034 1f 11 2f 11 2f 11 2f 11 af 1f -FIXUPS: 1746e 27 5227 c5 b c 18 3a 109 4c 54 23 84 15 a 22 c 19 7a 21 c -FIXUPS: 1cb60 c6 a4 1f 25 13 19 1f 51 33 1e 15 b fffff11b 16 13 11 59 11 -FIXUPS: 1bfec 20 12 14 2c 47 3f 38 44 59 22 66 41 16 49 17 48 18 4a 22 -FIXUPS: 1c4c0 27 82 100 13 2d fffff23f f0 40 15 c 13 18 63 4b 54 19 62 -FIXUPS: 1bbf5 12 1c 19 77 1f 74 49 3e c a 13 1f 13 1b 18 5f 4b e 13 fffff417 -FIXUPS: 1b374 84 4a 52 2d 10 d 59 91 15 31 14 1b 30 e 2b 14 f e 12 19 e -FIXUPS: 1b722 e 67 25 21 2c 14 25 5f 1fd5 185 96 5 ffffd27f 11 2f 11 be -FIXUPS: 1ae5c e 9b 28 1e c 52 87 2d 1e 1b 9 10 15 32 1d 24 80 12 3c 76 -FIXUPS: 1b2f7 12 3e6f 66 19 49 30 d 2d 152 4e 3e 9 54 c 5 e d ba 19 d ffffdcc0 -FIXUPS: 1d30f 21 e 22 15 43 9 97 329 43 89 1b 1528 b 9 22 9 9 29 9 20 25 -FIXUPS: 1ee79 f 16 b 9 22 9 9 2f 1c 64 b8 9 13 2d 9 2c 9 2d 9 10 31 fffff7c3 -FIXUPS: 1e917 9 21 d 9 1f 9 9 16 f 16 b 9 2e 1c 64 cb 31 9 31 9 15 31 2d -FIXUPS: 1ec9d 19 4a 9 23 3f f fffff778 9 9 1e d 9 16 f 16 b 9 2e 1c 5c -FIXUPS: 1e65d f 28 9 2b 6d 2b 9 36 9 b 27 29 66 19 4e 9 25 fffff66f 1c -FIXUPS: 1dfc4 24 72 16a d 60 5b 27 ae 9 1b d 9 26 10 17 10 9 9 16 f 16 -FIXUPS: 1e450 9 27 9 2e 9 18 a 11c3 11 1e 10 4a 17 d 36 1b 1c 9 29 5 ffffe34f -FIXUPS: 1db56 2f 11 4e 16 83 d 53 3e 4e d0 b 17 39 28 27 50 15 1c1b 10e -FIXUPS: 20058 286 86 34 24 33 52 4f df 33 11 26 2d 2d 2d 2a 30 11c 86 98 -FIXUPS: 20903 23 28 1f 34 9e a5 55 2a8 5 214d 15 e 3c 57 17 33 39 c 2f -FIXUPS: 230b6 5c 18 37 26 107 35 40 6c 10 e 2a 17 73 32 c 62 5 e d ffffc3c3 -FIXUPS: 1f8d1 2c2e 30 3d 46 2b 23 47 32 43 91 1b 25 19f 101 12e a d 6b -FIXUPS: 22beb 41 42 2f 70 a d 51 e 41 38 37 7 83 ffffebdd 92 29 35 28 cd -FIXUPS: 21cbc 83 3d 55 11 3f 11 25 4d 30 40 8 6 d6 108 34 16 44 c 5f 72 -FIXUPS: 22359 64 58 64 17 125f 158 53 36 28 99 5 ffffd5c9 139 8f 14 9f -FIXUPS: 213ea 17 12 d f0 d 1d 3f 1a1 f a7 73 6 c9 e 5d 13 31 56 e 2ad0 -FIXUPS: 24524 12 10 a 19 a c d 10 6a 17f 8 1e 1f 14 3e 5c 26 b3 5 e d ffffebb3 -FIXUPS: 2353e 15 19 42 18 23 11 19 432 11 3e d 54 116 b3 78 1c 2a 20 b -FIXUPS: 23dbf 49 76 4c 6a 1c 58 42 11b 4c 75 1c d8 4c 7a 44 3b 4b 5c 22 -FIXUPS: 276fe 14 e2 24 9 5 e d 21 12 d 13 d 13 d 13 d 13 d 13 d ffffd0f3 -FIXUPS: 24a5a 53 17 5a b 15 33 5 e d 2635 7 14 19 af 1e 5f 1e 13 2c b 15 -FIXUPS: 273b3 4d 13 42 36 2e 1d a3 2e 1a b 1d 10 1f 15 16 d 26 34 42 fffff431 -FIXUPS: 26b2f 10 bf df 19 9 142 6c 59 10 f 29 17 39 7 10 64 25 7 1c 23 -FIXUPS: 27098 5 1c 10 24 5 1c 10 26 35 fffff348 47 3d 21 1e 23 3f 54 2f -FIXUPS: 26675 56 2e 2d 1a 2f 15 49 15 18 3b 4b 15 9 3c 36 25 10 2d 11b -FIXUPS: 26aa4 38 33 fffff125 20 13 10 ca 13 107 46 13 b2 92 104 22 9 22 -FIXUPS: 26177 4f 7 18 2d 37 1d 43 22 12 19 41 73 15 3a 54 58 fffff085 e -FIXUPS: 2554a 2b 34 27 14 15 2c b 10 17 35 50 5b 30 39 19 5b 2a 43 69 37 -FIXUPS: 259d4 119 15 58 44 d 1e 16 27 fffff347 5d 9 4e b 7 f 45 56 13 1d -FIXUPS: 251bb 9 4a 52 b0 1e 59 4a 30 1a 2f 19 1f 18 10 e 6 19 1e 12 17 -FIXUPS: 27c79 d3 1b 12d 16 42 5a b 5 5 5 22 ffffccc3 11 2f 11 2f 11 2f -FIXUPS: 24d16 2f 11 2f 11 2f 11 2f 11 2f 21 91 2a 3fd0 16 16 13 11 1c 10 -FIXUPS: 28f7a 11 1a e 14 1a 13 d 13 d ffffe964 11 20 e 2b 25 7 19 56 79 -FIXUPS: 27b16 f 79 7f 3b e0a 38 21 1b 5c 21 2b 16 28 16 46 23 2f 40 16 -FIXUPS: 28ce4 e 1f 1b 28 8 c a 36 2d 29 12 10 32 4a 1a e fffff6a0 2d 3b -FIXUPS: 28623 2a 24 4e 34 49 1a 18 16 27 1b 2a 44 1b 1a 1b 16 28 2a 43 -FIXUPS: 28952 26 18 1d 11 31 1f 16 22 1bdb 13 d ffffd9f4 11 2f 11 1e 2a -FIXUPS: 280fe 1b 1e 22 3c 13 3e 30 27 18 26 14 25 49 6b 7d 28 2e 2c 2c -FIXUPS: 284d5 54 2d 190f 15 5d 9 b 49 2d 21 38 1e 60 129 23 62 2a 61 1f -FIXUPS: 2a2f6 2e 6d 1f 66 28 63 70 71 25 3a 5 e d 13 ffffefed 55 4b 55 -FIXUPS: 29741 55 4a 65 57 40 40 4c 50 5d 1a 23 16 185 34 a 3a 15 47 a 3a -FIXUPS: 29d1a 47 a 3a 15 46 a 196c e d 13 d 13 d ffffd874 20 11 2f 11 2f -FIXUPS: 290f6 3e 44 51 b 11 23 14 34 86 2c 50 3e 36 89 5e 44 4d 43 1a03 -FIXUPS: 2afa9 11 b 31 3f 98 15 30 39 47 16 9f 65 5 18 5b 33 16 27 47 1f -FIXUPS: 2b405 42 2f 42 46 6a a9 78 35 b3 fffff3f4 13 e 25 9 12 b 18 10 -FIXUPS: 2ac06 d 6 c 11 b 9 1a 50 51 1e b 1a c 10 14 52 b 1d 11e 21 13 12 -FIXUPS: 2babb 5 14 d ffffec14 11 2f 11 2f 11 37 10d 8c 6 23 22 68 4a 41 -FIXUPS: 2aa9b e f 29 7 f 6 c e 18 c 8 14 34cd d 13 d 13 d 13 d 21 12 d -FIXUPS: 2e0e4 d ffffd785 1f 11 1e 55 31 20 2b 1a 1c 43 b 8 16 b 54 10 b -FIXUPS: 2bab6 1eb3 23 38 31 42 7 38 4e 2a 9b 15 13 2a 17 9e 1e 7 56 b 9 -FIXUPS: 2de05 9d 1a 29 2c 1c 1f 21 40 24 40 5 ffffeff8 2f 31 1c 12 12 12 -FIXUPS: 2d0cf 12 42 17 22 8 1f 5b ab 15 13 16a 1b e0 7 5b b 47 8b 5c 22 -FIXUPS: 2d719 9f 7d 26 fffff22b 6 2d 12 13 1d 11 10 a0 16 1f c d7 c 15 -FIXUPS: 2cd05 c 6e 31 10 16 3f 1f 15 1c 4e 32 46 40 39 47 11 fffff508 11 -FIXUPS: 2c53b 17 b 12 7b 32 8c a3 11 e 30 2e c 3c 16 1a 43 18 19 8 49 46 -FIXUPS: 2c95d 26 23 28 1a 2a a 31 fffff51d 47 9 10 16 26 10 3d 14 b 3c -FIXUPS: 2c0df 10 c 3d 14 18 3d 24 15 b 3f a2 2f 2b 15 47 5 18 5e 3d c5 -FIXUPS: 2bb95 11 2f 11 2f 11 2f 11 2f 11 2f 11 2f 11 1e 3b 2b b 2f d 44 -FIXUPS: 2be49 10 b 10 3b 1d 20 a 42 19 b 2e1a e d fffff384 11 2f 11 1e -FIXUPS: 2e1b5 43 2d f 4d 3c 8b 61 27b 2a 7 15 b 18 11 c 33 18 c 5 e d 13 -FIXUPS: 2e741 2e3 14 f f a 1f 11 12 17 20 17 15 6a 55 39 2f a d 27 8 12 -FIXUPS: 2ecac 2e a c 11 17 a 8 d 25 15 661 1e 16 c7 56 5e 40 40 43 26 12 -FIXUPS: 2f6a1 40 60 40 5 fffff06f 11 22 21 10 21 68 19 a 15 f d 90 28 f -FIXUPS: 2ea15 1679 12 27 10 61 29 5 e d 13 d 13 d ffffed03 163 2c 58 15 -FIXUPS: 2f0c6 19 e8 d 1d 15 10 1c 50 e e 6f 1e 40 3966 13 d ffffcb44 11 -FIXUPS: 2f875 11 2f 11 23 47 84 e 8c 10 14 e 30 b8 1b 34 2a 5b 1c 41 1e -FIXUPS: 2fd24 3b 130 1b6 b 37 27a9 1f 1e d 30 4b 3d 3f 28 4f 5f 27 20 1c -FIXUPS: 32ab0 e 22 3a 25 25 48 73 21 11 5 e d 13 d 13 d 13 fffff3af 4a -FIXUPS: 320ef c 16 6 1c 24 53 82 13b 71 1e 70 7a 3b 2e 4b 14 6 17 41 54 -FIXUPS: 32679 24 10 7c 33 17 1e 4a 31 fffff12b 28 10 1f 5a 4d 23 9d 2b -FIXUPS: 31b4d 27 31 94 24 10 157 23 2e 7b 17 27 18 56 24 7 12 40 7 1d 10 -FIXUPS: 3203b 1a fffff0bc 31 85 3a 25 2e 30 2a 31 32 124 43 a 5c a5 6 1f -FIXUPS: 315ae 19 6 54 6 1d 6 15 6 29 99 31 15 144 19 ffffee27 15 22 b 10 -FIXUPS: 30755 b 154 7 b0 55 21 147 b e4 29 77 11 22 1b 9b 16 12 b 72 20 -FIXUPS: 30ebf 128 57 7e 21 17 5f59 1b 10 21 38 5 e d 13 d 13 d ffff9144 -FIXUPS: 30286 2f 11 2f 11 2f 11 2f 11 3c 80 68 65 41 26 d 4d 14 55 6302 -FIXUPS: 3695b 20 9 24 86 20 19 2c 11 2f 15 1f 60 61 2d d 70 80 7a 7 d 3a -FIXUPS: 36dca 2c 7f 1a 20 1b 20 61 1b fffff300 52 52 3d 62 21 98 20 5a -FIXUPS: 3655f 2f 47 27 2c 57 1a e 15 19 1f 10 8d 18 33 18 1b 1d 24 8a 1c -FIXUPS: 3690d 17 ffffef75 16 e 10 10 9 e 18f 28 32 127 85 2b 15 28 84 b0 -FIXUPS: 35e46 41 5d 21 67 1e 71 31 2c 3e c3 26 25 26 8d ffffef31 28 30 -FIXUPS: 3521d 19 1e 3e 17 1f d 15a 14 12 11 9 23 49 3a c 6a 54 35 8f 20 -FIXUPS: 356d5 1f 12 ba 2c 15 1d 6f fffff1ee 28 9 15 30 28 c e7 4b e 15 -FIXUPS: 34ca6 a4 37 49 15 53 c 24 c 3f 54 4c 54 40 35 8f 20 1b 51 1b 20 -FIXUPS: 3450d b 1e 1e 9 20 16 2f 1c 13 f 33 5c 39 16 1b 9 1d 19 9 26 4c -FIXUPS: 347f2 41 1c 5b 43 18 75 5d 44 31 fffff65d 20 1c 4c 13 11 2a 15 -FIXUPS: 341a9 18 2f 15 15 15 35 3b e 10 17 e 17 19 48 26 21 3c 13 2d d -FIXUPS: 34438 86 9 fffff755 f 17 35 38 68 17 1d 30 33 10 d 24 11 13 1d -FIXUPS: 33e54 56 10 2f 31 1d 20 25 2f 23 12 39 20 19 3a 6 fffff49b 1f 1e -FIXUPS: 335c5 b 16 27 4f 43 22 74 2b 24 23 32 29 20 48 43 37 3a 7b 31 79 -FIXUPS: 33b08 1e 12 e 10 7 21 89 fffff15f 2f 11 2f 11 2f 11 28 64 31 6b -FIXUPS: 32f63 b 57 28 1d c3 20 2a 46 76 30 3f 1c 31 59 10 4c 1b 4e a7 a5 -FIXUPS: 3b281 21 f 33 50 28 f 21 41 26 5f c a 1c 200 25 45 c a 18 f 19 -FIXUPS: 3b75c 155 5 e d 13 d ffff7424 11 2f 7e3c 27 4e 31 f 15 22 4e 7a -FIXUPS: 3ad57 e f 12 17 37 44 33 28 2c 2b 72 50 56 30 2f 15 19 84 b 20 -FIXUPS: 3b165 9b fffff1e0 55 2b 7f 18 1d 20 96 18 23 1d 21 19 17 30 26 -FIXUPS: 3a6e5 85 db 24 db 15 2a a 43 15 70 29 3f 15 69 30 fffff2e0 5f 69 -FIXUPS: 39f67 f 20 28 2b 1d 21 14 1a 2b 1f 1f e 47 25 15 2f 21 f 2f 1d -FIXUPS: 3a207 1b 1d 15 f6 11 1d 4c fffff14a 18 40 6b 4a 27 22 4d b8 b 6a -FIXUPS: 3981b 128 a5 33 1f 33 13 2e 6f 29 47 66 29 1c 1b b 5b 1a 1c 105 -FIXUPS: 39e2c ffffec70 b 56 2f 55 b 9c 4f d7 b a1 4f 49 d 38 9f e 4b 96 -FIXUPS: 390aa 29 125 15 2b 62 13 22 66 24 3a 2b 27 ffffea37 26 ac 3e 4b -FIXUPS: 38064 28 15 28 17 2a dc 1c 46 18 16 6d 85 4f 13 15 1f a7 17f 1f -FIXUPS: 38836 f 9a 27 20 2f a9 ffffed8d 20 27 23 b 1c 15 32 1a e 25 8e -FIXUPS: 37959 16 3f 29 d 32 31 d 26 f 5c 61 3a 11 35 26 92 3f 4a ed 4016 -FIXUPS: 3be51 5 e d ffffb362 13 72 26 15 7c c8 22 3c 6a f 11 11 b 13 3d -FIXUPS: 3754f 11 11 b 39 79 f 3f 87 34 22 7c1b d 13 d 13 d 13 d 13 d 13 -FIXUPS: 3f421 13 d 13 d 13 d ffffc494 11 28 7 10 d ac 1f7 dc 52 17 5b 29 -FIXUPS: 3bdee 30d3 12 11 ee a cc a cc a 79 2f 20 a c b 5 5 5 14 d 13 d -FIXUPS: 3f2d4 d 13 d 13 d 13 d 13 d fffff68c 15 76 f 14 14 24 2e 18 7d -FIXUPS: 3eb9d 10 47 f 5c 7 1f f 1f 13 48 19 12 29 26 26 f 1e 30 16 5f f -FIXUPS: 3e5cd 19 c 2a 21 29 31 31 2d 29 33 33 2f 2f 2f 2b 1b 9 6 b 1c e -FIXUPS: 3e8a2 b 2a 18 1b 1c 24 15 58 17 fffff74b 21 10 24 15 3d 1d 23 17 -FIXUPS: 3e227 30 19 26 17 1c 25 1f 15 84 d c d 15 3d 1d 28 35 37 4b 1e -FIXUPS: 3e588 24 fffff43e de 5f 28 2c 33 1f 15 66 e 31 31 12 d 13 8 8 22 -FIXUPS: 3dd30 3a 26 d7 41 78 2a b 33 37 c7 1e 3c 24 fffff440 9 5e b 64 -FIXUPS: 3d635 2a 15 17 3b 1a 40 11 11 29 16 13 b 38 25 3e 1f 21 1f 1c c -FIXUPS: 3d8e4 a4 c f 12 21 fffff692 15 4f 1d 71 14 10 16 3d 3a 24 11 1a -FIXUPS: 3d285 11 40 7 12 3a f 42 14 17 19 b d 11 5a 10 21 3f 18 fffff718 -FIXUPS: 3cbf9 a 24 18 a 24 18 a 24 3f 52 18 73 e a e 1d 43 11 46 7 12 36 -FIXUPS: 3cf0d 46 35 a 37 17 29 49 fffff8a3 27 2c 12 d 27 28 7 18 18 7 19 -FIXUPS: 3ca25 7 19 18 7 19 1b a 24 18 a 24 18 a 24 18 a 24 1b a fffff99d -FIXUPS: 3c56a 18 18 32 49 11 2b e 43 2d 7 2d 10 e 1a 14 26 11 3f 7 12 35 -FIXUPS: 3c822 4b 14 12 14 12 14 11 7 fffff751 f 1b 15 1c 24 11 2f 11 23 -FIXUPS: 3c1a5 1e 22 25 d b0 1a b 12 1b 8d e 14 32 e 14 20 3d 36 24 26 4a -FIXUPS: 3f7d4 1c 24 25 3a 29 3c 10 c 47 13 e c 10 1d 12 2d 2b e c 116 9 -FIXUPS: 3fb4c 21 d 107 ffffc295 1b c a8 11 26 3485 5 5 5 5 5 5e f 19 19 -FIXUPS: 3f572 19 19 13 29 15 c a 11 e a b a 20 13 3e 7 3b 4e 11 4f 1e diff --git a/kauai/OBJ/WINS/KPACK.MAP b/kauai/OBJ/WINS/KPACK.MAP deleted file mode 100644 index ec93a0a8..00000000 --- a/kauai/OBJ/WINS/KPACK.MAP +++ /dev/null @@ -1,582 +0,0 @@ - kpack - - Timestamp is 3070b594 (Mon Oct 02 21:01:24 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0000ce4cH .text CODE - 0002:00000000 00001930H .bss DATA - 0003:00000000 000002a1H .rdata DATA - 0004:00000000 000010b8H .data DATA - 0004:000010b8 00000004H .CRT$XCA DATA - 0004:000010bc 00000050H .CRT$XCU DATA - 0004:0000110c 00000004H .CRT$XCZ DATA - 0004:00001110 00000004H .CRT$XIA DATA - 0004:00001114 00000004H .CRT$XIC DATA - 0004:00001118 00000004H .CRT$XIZ DATA - 0004:0000111c 00000004H .CRT$XPA DATA - 0004:00001120 00000004H .CRT$XPX DATA - 0004:00001124 00000004H .CRT$XPZ DATA - 0004:00001128 00000004H .CRT$XTA DATA - 0004:0000112c 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 0000009cH .idata$4 DATA - 0005:00000100 0000009cH .idata$5 DATA - 0005:0000019c 00000288H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00001340H .debug$F DATA - 0007:000017c0 00000000H .debug$G DATA - 0007:000017c0 00000032H .debug$H DATA - 0007:fffeb000 00000000H .debug$P DATA - 0007:fffeb000 00000000H .debug$S DATA - 0007:fffeb000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003e0 ?FEqualRgb@@YGHPAX0J@Z 004013e0 f utilcopy.obj - 0001:00000420 ?CbEqualRgb@@YGJPAX0J@Z 00401420 f utilcopy.obj - 0001:00000480 ?CopyPb@@YGXPAX0J@Z 00401480 f utilcopy.obj - 0001:000004b0 ?BltPb@@YGXPAX0J@Z 004014b0 f utilcopy.obj - 0001:00000520 ?FWouldBe@ERS@@SGHJ@Z 00401520 f utilerro.obj - 0001:00000540 ?FIs@ERS@@UAEHJ@Z 00401540 f utilerro.obj - 0001:00000550 ?Cls@ERS@@UAEJXZ 00401550 f utilerro.obj - 0001:00000560 ??0ERS@@QAE@XZ 00401560 f utilerro.obj - 0001:00000590 ?Push@ERS@@UAEXJ@Z 00401590 f utilerro.obj - 0001:000005e0 ?FPop@ERS@@UAEHPAJ@Z 004015e0 f utilerro.obj - 0001:00000630 ?Clear@ERS@@UAEXXZ 00401630 f utilerro.obj - 0001:00000650 ?Cerc@ERS@@UAEJXZ 00401650 f utilerro.obj - 0001:00000660 ?FIn@ERS@@UAEHJ@Z 00401660 f utilerro.obj - 0001:000006b0 ?ErcGet@ERS@@UAEJJ@Z 004016b0 f utilerro.obj - 0001:000006f0 ?Flush@ERS@@UAEXJ@Z 004016f0 f utilerro.obj - 0001:00000790 ??_GERS@@UAEPAXI@Z 00401790 f utilerro.obj - 0001:00000790 ??_EERS@@UAEPAXI@Z 00401790 f utilerro.obj - 0001:000007d0 ?SwapBytesBom@@YGXPAXK@Z 004017d0 f utilint.obj - 0001:00000830 ?SwapBytesRglw@@YGXPAXJ@Z 00401830 f utilint.obj - 0001:00000860 ??0USAC@@QAE@XZ 00401860 f utilint.obj - 0001:000008a0 ??_EUSAC@@UAEPAXI@Z 004018a0 f utilint.obj - 0001:000008a0 ??_GUSAC@@UAEPAXI@Z 004018a0 f utilint.obj - 0001:000008c0 ?FAllocPv@@YGHPAPAXJKJ@Z 004018c0 f utilmem.obj - 0001:00000990 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00401990 f utilmem.obj - 0001:00000a80 ?FreePpv@@YGXPAPAX@Z 00401a80 f utilmem.obj - 0001:00000ac0 ?FWouldBe@RND@@SGHJ@Z 00401ac0 f utilrnd.obj - 0001:00000ae0 ?FIs@RND@@UAEHJ@Z 00401ae0 f utilrnd.obj - 0001:00000af0 ?Cls@RND@@UAEJXZ 00401af0 f utilrnd.obj - 0001:00000b00 ?FWouldBe@SFL@@SGHJ@Z 00401b00 f utilrnd.obj - 0001:00000b20 ?FIs@SFL@@UAEHJ@Z 00401b20 f utilrnd.obj - 0001:00000b30 ?Cls@SFL@@UAEJXZ 00401b30 f utilrnd.obj - 0001:00000b40 ??0RND@@QAE@K@Z 00401b40 f utilrnd.obj - 0001:00000b80 ?LwNext@RND@@UAEJJ@Z 00401b80 f utilrnd.obj - 0001:00000bb0 ??0SFL@@QAE@K@Z 00401bb0 f utilrnd.obj - 0001:00000be0 ??1SFL@@UAE@XZ 00401be0 f utilrnd.obj - 0001:00000c00 ?Shuffle@SFL@@QAEXJ@Z 00401c00 f utilrnd.obj - 0001:00000c40 ?_ShuffleCore@SFL@@IAEXXZ 00401c40 f utilrnd.obj - 0001:00000c90 ?_FEnsureHq@SFL@@IAEHJ@Z 00401c90 f utilrnd.obj - 0001:00000d00 ?LwNext@SFL@@UAEJJ@Z 00401d00 f utilrnd.obj - 0001:00000d90 ??_GRND@@UAEPAXI@Z 00401d90 f utilrnd.obj - 0001:00000d90 ??_ERND@@UAEPAXI@Z 00401d90 f utilrnd.obj - 0001:00000db0 ??_ESFL@@UAEPAXI@Z 00401db0 f utilrnd.obj - 0001:00000db0 ??_GSFL@@UAEPAXI@Z 00401db0 f utilrnd.obj - 0001:00000dd0 ??4STN@@QAEAAV0@AAV0@@Z 00401dd0 f utilstr.obj - 0001:00000df0 ?SetRgch@STN@@QAEXPADJ@Z 00401df0 f utilstr.obj - 0001:00000e30 ?SetSzs@STN@@QAEXPAD@Z 00401e30 f utilstr.obj - 0001:00000e50 ?Delete@STN@@QAEXJJ@Z 00401e50 f utilstr.obj - 0001:00000eb0 ?FAppendRgch@STN@@QAEHPADJ@Z 00401eb0 f utilstr.obj - 0001:00000f00 ?FInsertRgch@STN@@QAEHJPADJ@Z 00401f00 f utilstr.obj - 0001:00000fc0 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00401fc0 f utilstr.obj - 0001:00000fe0 ?FGetLw@STN@@QAEHPAJJ@Z 00401fe0 f utilstr.obj - 0001:000010d0 ?CchSz@@YGJPAD@Z 004020d0 f utilstr.obj - 0001:000010f0 ?FEqualUserRgch@@YGHPADJ0JK@Z 004020f0 f utilstr.obj - 0001:000011e0 ?UpperRgchs@@YGXPADJ@Z 004021e0 f utilstr.obj - 0001:00001250 ?FAllocHq@@YGHPAPAXJKJ@Z 00402250 f memwin.obj - 0001:000012c0 ?FResizePhq@@YGHPAPAXJKJ@Z 004022c0 f memwin.obj - 0001:00001360 ?FreePhq@@YGXPAPAX@Z 00402360 f memwin.obj - 0001:00001390 ?CbOfHq@@YGJPAX@Z 00402390 f memwin.obj - 0001:000013a0 ?PvLockHq@@YGPAXPAX@Z 004023a0 f memwin.obj - 0001:000013b0 ?UnlockHq@@YGXPAX@Z 004023b0 f memwin.obj - 0001:00001410 ?FWouldBe@CODM@@SGHJ@Z 00402410 f codec.obj - 0001:00001430 ?FIs@CODM@@UAEHJ@Z 00402430 f codec.obj - 0001:00001440 ?Cls@CODM@@UAEJXZ 00402440 f codec.obj - 0001:00001450 ?FWouldBe@CODC@@SGHJ@Z 00402450 f codec.obj - 0001:00001470 ??0CODM@@QAE@PAVCODC@@J@Z 00402470 f codec.obj - 0001:000014b0 ??1CODM@@UAE@XZ 004024b0 f codec.obj - 0001:00001530 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00402530 f codec.obj - 0001:00001580 ?FCanDo@CODM@@UAEHJH@Z 00402580 f codec.obj - 0001:000015b0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 004025b0 f codec.obj - 0001:00001630 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00402630 f codec.obj - 0001:000016e0 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 004026e0 f codec.obj - 0001:00001800 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00402800 f codec.obj - 0001:00001a10 ??_ECODM@@UAEPAXI@Z 00402a10 f codec.obj - 0001:00001a10 ??_GCODM@@UAEPAXI@Z 00402a10 f codec.obj - 0001:00001a30 ?FWouldBe@KCDC@@SGHJ@Z 00402a30 f codkauai.obj - 0001:00001a50 ?FIs@KCDC@@UAEHJ@Z 00402a50 f codkauai.obj - 0001:00001a60 ?Cls@KCDC@@UAEJXZ 00402a60 f codkauai.obj - 0001:00001a70 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00402a70 f codkauai.obj - 0001:00001af0 ?Set@BITA@@QAEXPAXJ@Z 00402af0 f codkauai.obj - 0001:00001b10 ?FWriteBits@BITA@@QAEHKJ@Z 00402b10 f codkauai.obj - 0001:00001bd0 ?FWriteLogEncoded@BITA@@QAEHK@Z 00402bd0 f codkauai.obj - 0001:00001c20 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00402c20 f codkauai.obj - 0001:00001f30 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00402f30 f codkauai.obj - 0001:00005860 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00406860 f codkauai.obj - 0001:00005c40 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00406c40 f codkauai.obj - 0001:00008200 ?FWouldBe@FIL@@SGHJ@Z 00409200 f file.obj - 0001:00008220 ?FIs@FIL@@UAEHJ@Z 00409220 f file.obj - 0001:00008230 ?Cls@FIL@@UAEJXZ 00409230 f file.obj - 0001:00008240 ?FWouldBe@BLCK@@SGHJ@Z 00409240 f file.obj - 0001:00008260 ?FIs@BLCK@@UAEHJ@Z 00409260 f file.obj - 0001:00008270 ?Cls@BLCK@@UAEJXZ 00409270 f file.obj - 0001:00008280 ??0FIL@@IAE@PAVFNI@@K@Z 00409280 f file.obj - 0001:000082f0 ??1FIL@@MAE@XZ 004092f0 f file.obj - 0001:00008340 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00409340 f file.obj - 0001:000083e0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 004093e0 f file.obj - 0001:00008470 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00409470 f file.obj - 0001:000084d0 ?FSetGrffil@FIL@@QAEHKK@Z 004094d0 f file.obj - 0001:00008560 ?Release@FIL@@UAEXXZ 00409560 f file.obj - 0001:00008590 ?SetTemp@FIL@@QAEXH@Z 00409590 f file.obj - 0001:000085d0 ?ShutDown@FIL@@SGXXZ 004095d0 f file.obj - 0001:00008640 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00409640 f file.obj - 0001:00008690 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00409690 f file.obj - 0001:000086e0 ?FCopy@FLO@@QAEHPAU1@@Z 004096e0 f file.obj - 0001:000087b0 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 004097b0 f file.obj - 0001:00008830 ??0BLCK@@QAE@PAUFLO@@H@Z 00409830 f file.obj - 0001:00008880 ??0BLCK@@QAE@XZ 00409880 f file.obj - 0001:000088a0 ??1BLCK@@UAE@XZ 004098a0 f file.obj - 0001:000088c0 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 004098c0 f file.obj - 0001:00008900 ?SetHq@BLCK@@QAEXPAPAXH@Z 00409900 f file.obj - 0001:00008940 ?Free@BLCK@@QAEXXZ 00409940 f file.obj - 0001:00008970 ?HqFree@BLCK@@QAEPAXH@Z 00409970 f file.obj - 0001:00008a20 ?Cb@BLCK@@QAEJH@Z 00409a20 f file.obj - 0001:00008a40 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00409a40 f file.obj - 0001:00008ad0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 00409ad0 f file.obj - 0001:00008b60 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 00409b60 f file.obj - 0001:00008be0 ?FPacked@BLCK@@QAEHPAJ@Z 00409be0 f file.obj - 0001:00008c20 ?FPackData@BLCK@@QAEHJ@Z 00409c20 f file.obj - 0001:00008d40 ?FUnpackData@BLCK@@QAEHXZ 00409d40 f file.obj - 0001:00008e70 ??_GFIL@@MAEPAXI@Z 00409e70 f file.obj - 0001:00008e70 ??_EFIL@@MAEPAXI@Z 00409e70 f file.obj - 0001:00008e90 ??_EBLCK@@UAEPAXI@Z 00409e90 f file.obj - 0001:00008e90 ??_GBLCK@@UAEPAXI@Z 00409e90 f file.obj - 0001:00008f00 ?_FOpen@FIL@@IAEHHK@Z 00409f00 f filewin.obj - 0001:00009000 ?_Close@FIL@@IAEXH@Z 0040a000 f filewin.obj - 0001:00009070 ?Flush@FIL@@QAEXXZ 0040a070 f filewin.obj - 0001:000090a0 ?_SetFpPos@FIL@@IAEXJ@Z 0040a0a0 f filewin.obj - 0001:00009110 ?FpMac@FIL@@QAEJXZ 0040a110 f filewin.obj - 0001:000091a0 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040a1a0 f filewin.obj - 0001:00009250 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040a250 f filewin.obj - 0001:00009330 ?FWouldBe@FNI@@SGHJ@Z 0040a330 f fniwin.obj - 0001:00009350 ?FIs@FNI@@UAEHJ@Z 0040a350 f fniwin.obj - 0001:00009360 ?Cls@FNI@@UAEJXZ 0040a360 f fniwin.obj - 0001:00009370 ?SetNil@FNI@@QAEXXZ 0040a370 f fniwin.obj - 0001:00009380 ??0FNI@@QAE@XZ 0040a380 f fniwin.obj - 0001:000093b0 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040a3b0 f fniwin.obj - 0001:00009500 ?FChangeFtg@FNI@@QAEHJ@Z 0040a500 f fniwin.obj - 0001:000095b0 ?FEqual@FNI@@QAEHPAV1@@Z 0040a5b0 f fniwin.obj - 0001:000095d0 ?_CchExt@FNI@@AAEJXZ 0040a5d0 f fniwin.obj - 0001:00009610 ?_SetFtgFromName@FNI@@AAEXXZ 0040a610 f fniwin.obj - 0001:00009760 ??_EFNI@@UAEPAXI@Z 0040a760 f fniwin.obj - 0001:00009760 ??_GFNI@@UAEPAXI@Z 0040a760 f fniwin.obj - 0001:00009780 ?FWouldBe@GRPB@@SGHJ@Z 0040a780 f groups.obj - 0001:000097a0 ?FIs@GRPB@@UAEHJ@Z 0040a7a0 f groups.obj - 0001:000097b0 ?Cls@GRPB@@UAEJXZ 0040a7b0 f groups.obj - 0001:000097c0 ?FWouldBe@GLB@@SGHJ@Z 0040a7c0 f groups.obj - 0001:000097e0 ?FIs@GLB@@UAEHJ@Z 0040a7e0 f groups.obj - 0001:000097f0 ?Cls@GLB@@UAEJXZ 0040a7f0 f groups.obj - 0001:00009800 ?FWouldBe@GL@@SGHJ@Z 0040a800 f groups.obj - 0001:00009820 ?FIs@GL@@UAEHJ@Z 0040a820 f groups.obj - 0001:00009830 ?Cls@GL@@UAEJXZ 0040a830 f groups.obj - 0001:00009840 ??1GRPB@@UAE@XZ 0040a840 f groups.obj - 0001:00009870 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0040a870 f groups.obj - 0001:00009950 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0040a950 f groups.obj - 0001:00009a20 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0040aa20 f groups.obj - 0001:00009a70 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0040aa70 f groups.obj - 0001:00009b40 ??0GLB@@IAE@J@Z 0040ab40 f groups.obj - 0001:00009b70 ?QvGet@GLB@@QAEPAXJ@Z 0040ab70 f groups.obj - 0001:00009b90 ?Get@GLB@@QAEXJPAX@Z 0040ab90 f groups.obj - 0001:00009bb0 ?PglNew@GL@@SGPAV1@JJ@Z 0040abb0 f groups.obj - 0001:00009c10 ??0GL@@IAE@J@Z 0040ac10 f groups.obj - 0001:00009c30 ?FFree@GL@@UAEHJ@Z 0040ac30 f groups.obj - 0001:00009c50 ?CbOnFile@GL@@UAEJXZ 0040ac50 f groups.obj - 0001:00009c60 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0040ac60 f groups.obj - 0001:00009cd0 ?FInsert@GL@@QAEHJPAXJ@Z 0040acd0 f groups.obj - 0001:00009d70 ?Delete@GL@@UAEXJ@Z 0040ad70 f groups.obj - 0001:00009d80 ?Delete@GL@@QAEXJJ@Z 0040ad80 f groups.obj - 0001:00009dc0 ?FAdd@GL@@UAEHPAXPAJ@Z 0040adc0 f groups.obj - 0001:00009df0 ?FEnsureSpace@GL@@QAEHJK@Z 0040adf0 f groups.obj - 0001:00009e40 ??_EGRPB@@UAEPAXI@Z 0040ae40 f groups.obj - 0001:00009e40 ??_GGRPB@@UAEPAXI@Z 0040ae40 f groups.obj - 0001:00009e60 ??_GGLB@@UAEPAXI@Z 0040ae60 f groups.obj - 0001:00009e60 ??_EGLB@@UAEPAXI@Z 0040ae60 f groups.obj - 0001:00009e80 ??_EGL@@UAEPAXI@Z 0040ae80 f groups.obj - 0001:00009e80 ??_GGL@@UAEPAXI@Z 0040ae80 f groups.obj - 0001:00009ec0 _main 0040aec0 f kpack.obj - 0001:0000a410 ?_FGetLwFromSzs@@YGHPADPAJ@Z 0040b410 f kpack.obj - 0001:0000a534 _timeGetTime@0 0040b534 winmm:WINMM.dll - 0001:0000a53a __onexit 0040b53a f LIBC:onexit.obj - 0001:0000a5b0 _atexit 0040b5b0 f LIBC:onexit.obj - 0001:0000a5c2 ___onexitinit 0040b5c2 f LIBC:onexit.obj - 0001:0000a5f8 __purecall 0040b5f8 f LIBC:purevirt.obj - 0001:0000a603 _fprintf 0040b603 f LIBC:fprintf.obj - 0001:0000a639 _mainCRTStartup 0040b639 f LIBC:crt0.obj - 0001:0000a732 __amsg_exit 0040b732 f LIBC:crt0.obj - 0001:0000a752 __cinit 0040b752 f LIBC:crt0dat.obj - 0001:0000a782 _exit 0040b782 f LIBC:crt0dat.obj - 0001:0000a793 __exit 0040b793 f LIBC:crt0dat.obj - 0001:0000a843 _realloc 0040b843 f LIBC:realloc.obj - 0001:0000a995 __msize 0040b995 f LIBC:msize.obj - 0001:0000a9a6 _malloc 0040b9a6 f LIBC:malloc.obj - 0001:0000a9b9 __nh_malloc 0040b9b9 f LIBC:malloc.obj - 0001:0000aa78 __heap_split_block 0040ba78 f LIBC:malloc.obj - 0001:0000aabd __stbuf 0040babd f LIBC:_sftbuf.obj - 0001:0000ab3e __ftbuf 0040bb3e f LIBC:_sftbuf.obj - 0001:0000ab84 __output 0040bb84 f LIBC:output.obj - 0001:0000b4ac __global_unwind2 0040c4ac f LIBC:exsup.obj - 0001:0000b4ee __local_unwind2 0040c4ee f LIBC:exsup.obj - 0001:0000b548 __abnormal_termination 0040c548 f LIBC:exsup.obj - 0001:0000b56b __XcptFilter 0040c56b f LIBC:winxfltr.obj - 0001:0000b6f6 __setenvp 0040c6f6 f LIBC:stdenvp.obj - 0001:0000b7c1 __setargv 0040c7c1 f LIBC:stdargv.obj - 0001:0000babf __setmbcp 0040cabf f LIBC:mbctype.obj - 0001:0000bc4d ___initmbctable 0040cc4d f LIBC:mbctype.obj - 0001:0000bc58 __ioinit 0040cc58 f LIBC:ioinit.obj - 0001:0000bd46 __heap_init 0040cd46 f LIBC:heapinit.obj - 0001:0000bdc3 ___getempty 0040cdc3 f LIBC:heapinit.obj - 0001:0000bdf0 __except_handler3 0040cdf0 f LIBC:exsup3.obj - 0001:0000be9e __seh_longjmp_unwind@4 0040ce9e f LIBC:exsup3.obj - 0001:0000beb9 __FF_MSGBANNER 0040ceb9 f LIBC:crt0msg.obj - 0001:0000bedf __NMSG_WRITE 0040cedf f LIBC:crt0msg.obj - 0001:0000bf37 _free 0040cf37 f LIBC:free.obj - 0001:0000bf9f __heap_abort 0040cf9f f LIBC:hpabort.obj - 0001:0000bfaa __heap_grow 0040cfaa f LIBC:heapgrow.obj - 0001:0000c093 __heap_grow_region 0040d093 f LIBC:heapgrow.obj - 0001:0000c140 __heap_free_region 0040d140 f LIBC:heapgrow.obj - 0001:0000c17a __heap_search 0040d17a f LIBC:heapsrch.obj - 0001:0000c26a _fflush 0040d26a f LIBC:fflush.obj - 0001:0000c2b6 __flush 0040d2b6 f LIBC:fflush.obj - 0001:0000c318 __flushall 0040d318 f LIBC:fflush.obj - 0001:0000c38d ___endstdio 0040d38d f LIBC:fflush.obj - 0001:0000c3a1 __isatty 0040d3a1 f LIBC:isatty.obj - 0001:0000c3bb _wctomb 0040d3bb f LIBC:wctomb.obj - 0001:0000c434 __aulldiv 0040d434 f LIBC:ulldiv.obj - 0001:0000c494 __aullrem 0040d494 f LIBC:ullrem.obj - 0001:0000c4fe __flsbuf 0040d4fe f LIBC:_flsbuf.obj - 0001:0000c60a __heap_addblock 0040d60a f LIBC:heapadd.obj - 0001:0000c8c1 __commit 0040d8c1 f LIBC:commit.obj - 0001:0000c90e __write 0040d90e f LIBC:write.obj - 0001:0000caa7 __fcloseall 0040daa7 f LIBC:closeall.obj - 0001:0000cad8 __fptrap 0040dad8 f LIBC:crt0fp.obj - 0001:0000cae3 __lseek 0040dae3 f LIBC:lseek.obj - 0001:0000cb58 __getbuf 0040db58 f LIBC:_getbuf.obj - 0001:0000cba3 __heap_findaddr 0040dba3 f LIBC:findaddr.obj - 0001:0000cc0d __free_osfhnd 0040dc0d f LIBC:osfinfo.obj - 0001:0000cc7a __get_osfhandle 0040dc7a f LIBC:osfinfo.obj - 0001:0000ccb2 __dosmaperr 0040dcb2 f LIBC:dosmap.obj - 0001:0000cd1b _fclose 0040dd1b f LIBC:fclose.obj - 0001:0000cd77 __close 0040dd77 f LIBC:close.obj - 0001:0000ce0d __freebuf 0040de0d f LIBC:_freebuf.obj - 0001:0000ce46 _RtlUnwind@16 0040de46 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 0040e000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 0040e018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 0040e030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 0040e038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 0040e050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 0040e070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 0040e0a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 0040e138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 0040e240 utilstr.obj - 0002:00000350 ?_pcflFirst@CFL@@0PAV1@A 0040e350 chunk.obj - 0002:00000378 ?_pfilFirst@FIL@@1PAV1@A 0040e378 file.obj - 0002:00000380 ?_mutxList@FIL@@1VMUTX@@A 0040e380 file.obj - 0002:000003a8 ?_fniTemp@@3VFNI@@A 0040e3a8 fniwin.obj - 0002:00000614 __heap_descpages 0040e614 - 0002:00000620 __heap_regions 0040e620 - 0002:00000920 ___onexitend 0040e920 - 0002:00000924 __FPinit 0040e924 - 0002:00000928 ___onexitbegin 0040e928 - 0002:0000092c __acmdln 0040e92c - 0002:00000930 __bufin 0040e930 - 0003:00000058 ??_7KCDC@@6B@ 00410058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00410078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00410090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004100a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004100d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004100f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00410108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00410120 utilstr.obj - 0003:00000138 ??_7CODM@@6B@ 00410138 codec.obj - 0003:00000168 ??_7FIL@@6B@ 00410168 file.obj - 0003:00000180 ??_7BLCK@@6B@ 00410180 file.obj - 0003:00000198 ??_7FNI@@6B@ 00410198 fniwin.obj - 0003:000001b0 ??_7GRPB@@6B@ 004101b0 groups.obj - 0003:000001d8 ??_7GLB@@6B@ 004101d8 groups.obj - 0003:00000208 ??_7GL@@6B@ 00410208 groups.obj - 0003:00000248 ___lookuptable 00410248 LIBC:output.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 00411000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 00411004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 00411008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0041100c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 00411010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 00411118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0041111c file.obj - 0004:00000120 ?vftgTemp@@3JA 00411120 fniwin.obj - 0004:00000128 ??_C@_02DILL@?$CFs?$AA@ 00411128 kpack.obj - 0004:0000012c ??_C@_0ED@NKOA@Usage?3?5?5kpack?5?$FL?9d?$FN?5?$FL?9c?$FL0?$HM1?$HM2?$FN?$FN?5?$FL@ 0041112c kpack.obj - 0004:00000170 ??_C@_0BN@DFD@Writing?5destination?5failed?6?6?$AA@ 00411170 kpack.obj - 0004:00000190 ??_C@_0BK@ILAN@Unpacking?5source?5failed?6?6?$AA@ 00411190 kpack.obj - 0004:000001ac ??_C@_0BM@HFOH@Source?5file?5is?5not?5packed?6?6?$AA@ 004111ac kpack.obj - 0004:000001c8 ??_C@_0BN@HALM@Reading?5source?5file?5failed?6?6?$AA@ 004111c8 kpack.obj - 0004:000001e8 ??_C@_0CA@FNMG@Can?8t?5create?5destination?5file?6?6?$AA@ 004111e8 kpack.obj - 0004:00000208 ??_C@_0BJ@LEIF@Can?8t?5open?5source?5file?6?6?$AA@ 00411208 kpack.obj - 0004:00000224 ??_C@_0BH@MOKA@Bad?5compression?5type?6?6?$AA@ 00411224 kpack.obj - 0004:0000023c ??_C@_0BN@DEOC@Wrong?5number?5of?5file?5names?6?6?$AA@ 0041123c kpack.obj - 0004:0000025c ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 0041125c kpack.obj - 0004:0000026c ??_C@_0BG@JNKG@Too?5many?5file?5names?6?6?$AA@ 0041126c kpack.obj - 0004:00000284 ??_C@_0BJ@DFMN@Bad?5compression?5format?6?6?$AA@ 00411284 kpack.obj - 0004:000002a0 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 004112a0 kpack.obj - 0004:000002dc ??_C@_0EB@KJJM@?6Microsoft?5?$CIR?$CJ?5Kauai?5Pack?5Utilit@ 004112dc kpack.obj - 0004:00000320 __iob 00411320 LIBC:_file.obj - 0004:000005a0 __lastiob 004115a0 LIBC:_file.obj - 0004:000005a4 __aenvptr 004115a4 LIBC:crt0.obj - 0004:000005a8 __wenvptr 004115a8 LIBC:crt0.obj - 0004:000005ac __aexit_rtn 004115ac LIBC:crt0.obj - 0004:000005b0 _errno 004115b0 LIBC:crt0dat.obj - 0004:000005b4 __doserrno 004115b4 LIBC:crt0dat.obj - 0004:000005b8 __umaskval 004115b8 LIBC:crt0dat.obj - 0004:000005bc __osver 004115bc LIBC:crt0dat.obj - 0004:000005c0 __winver 004115c0 LIBC:crt0dat.obj - 0004:000005c4 __winmajor 004115c4 LIBC:crt0dat.obj - 0004:000005c8 __winminor 004115c8 LIBC:crt0dat.obj - 0004:000005cc ___argc 004115cc LIBC:crt0dat.obj - 0004:000005d0 ___argv 004115d0 LIBC:crt0dat.obj - 0004:000005d4 ___wargv 004115d4 LIBC:crt0dat.obj - 0004:000005d8 __environ 004115d8 LIBC:crt0dat.obj - 0004:000005dc ___initenv 004115dc LIBC:crt0dat.obj - 0004:000005e0 __wenviron 004115e0 LIBC:crt0dat.obj - 0004:000005e4 ___winitenv 004115e4 LIBC:crt0dat.obj - 0004:000005e8 __pgmptr 004115e8 LIBC:crt0dat.obj - 0004:000005ec __wpgmptr 004115ec LIBC:crt0dat.obj - 0004:000005f0 __exitflag 004115f0 LIBC:crt0dat.obj - 0004:000005f4 __C_Termination_Done 004115f4 LIBC:crt0dat.obj - 0004:000005f8 __pnhHeap 004115f8 LIBC:malloc.obj - 0004:00000600 __stdbuf 00411600 LIBC:_sftbuf.obj - 0004:00000610 ___nullstring 00411610 LIBC:output.obj - 0004:00000624 ___wnullstring 00411624 LIBC:output.obj - 0004:00000628 __XcptActTab 00411628 LIBC:winxfltr.obj - 0004:000006a0 __First_FPE_Indx 004116a0 LIBC:winxfltr.obj - 0004:000006a4 __Num_FPE 004116a4 LIBC:winxfltr.obj - 0004:000006a8 __XcptActTabCount 004116a8 LIBC:winxfltr.obj - 0004:000006ac __fpecode 004116ac LIBC:winxfltr.obj - 0004:000006b0 __pxcptinfoptrs 004116b0 LIBC:winxfltr.obj - 0004:000006b8 __mbctype 004116b8 LIBC:mbctype.obj - 0004:000007bc ___mbcodepage 004117bc LIBC:mbctype.obj - 0004:000007c0 ___mblcid 004117c0 LIBC:mbctype.obj - 0004:000007c8 ___mbulinfo 004117c8 LIBC:mbctype.obj - 0004:000008d0 __nhandle 004118d0 LIBC:ioinit.obj - 0004:000008d8 __osfile 004118d8 LIBC:ioinit.obj - 0004:00000918 __osfhnd 00411918 LIBC:ioinit.obj - 0004:00000a18 __pipech 00411a18 LIBC:ioinit.obj - 0004:00000a58 __heap_desc 00411a58 LIBC:heapinit.obj - 0004:00000a6c __heap_resetsize 00411a6c LIBC:heapinit.obj - 0004:00000a70 __amblksiz 00411a70 LIBC:heapinit.obj - 0004:00000a74 __heap_regionsize 00411a74 LIBC:heapinit.obj - 0004:00000a78 __heap_maxregsize 00411a78 LIBC:heapinit.obj - 0004:00000ce8 __adbgmsg 00411ce8 LIBC:crt0msg.obj - 0004:00000cec __newmode 00411cec LIBC:_newmode.obj - 0004:00000cf0 __cflush 00411cf0 LIBC:fflush.obj - 0004:00000cf8 __cfltcvt_tab 00411cf8 LIBC:cmiscdat.obj - 0004:00000d10 __pctype 00411d10 LIBC:ctype.obj - 0004:00000d14 __pwctype 00411d14 LIBC:ctype.obj - 0004:00000d18 __ctype 00411d18 LIBC:ctype.obj - 0004:00000f20 ___lc_handle 00411f20 LIBC:nlsdata2.obj - 0004:00000f38 ___lc_codepage 00411f38 LIBC:nlsdata2.obj - 0004:00000f3c ___mb_cur_max 00411f3c LIBC:nlsdata1.obj - 0004:00000f44 ___decimal_point 00411f44 LIBC:nlsdata1.obj - 0004:00000f48 ___decimal_point_length 00411f48 LIBC:nlsdata1.obj - 0004:000010b8 ___xc_a 004120b8 LIBC:crt0init.obj - 0004:0000110c ___xc_z 0041210c LIBC:crt0init.obj - 0004:00001110 ___xi_a 00412110 LIBC:crt0init.obj - 0004:00001118 ___xi_z 00412118 LIBC:crt0init.obj - 0004:0000111c ___xp_a 0041211c LIBC:crt0init.obj - 0004:00001124 ___xp_z 00412124 LIBC:crt0init.obj - 0004:00001128 ___xt_a 00412128 LIBC:crt0init.obj - 0004:0000112c ___xt_z 0041212c LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00413000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00413014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00413028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041303c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00413050 kernel32:KERNEL32.dll - 0005:00000100 __imp__DeleteCriticalSection@4 00413100 kernel32:KERNEL32.dll - 0005:00000104 __imp__GlobalAlloc@8 00413104 kernel32:KERNEL32.dll - 0005:00000108 __imp__GlobalFree@4 00413108 kernel32:KERNEL32.dll - 0005:0000010c __imp__LeaveCriticalSection@4 0041310c kernel32:KERNEL32.dll - 0005:00000110 __imp__EnterCriticalSection@4 00413110 kernel32:KERNEL32.dll - 0005:00000114 __imp__GlobalReAlloc@12 00413114 kernel32:KERNEL32.dll - 0005:00000118 __imp__WideCharToMultiByte@32 00413118 kernel32:KERNEL32.dll - 0005:0000011c __imp__CreateFileA@28 0041311c kernel32:KERNEL32.dll - 0005:00000120 __imp__CloseHandle@4 00413120 kernel32:KERNEL32.dll - 0005:00000124 __imp__DeleteFileA@4 00413124 kernel32:KERNEL32.dll - 0005:00000128 __imp__FlushFileBuffers@4 00413128 kernel32:KERNEL32.dll - 0005:0000012c __imp__SetFilePointer@16 0041312c kernel32:KERNEL32.dll - 0005:00000130 __imp__ReadFile@20 00413130 kernel32:KERNEL32.dll - 0005:00000134 __imp__WriteFile@20 00413134 kernel32:KERNEL32.dll - 0005:00000138 __imp__GetFullPathNameA@16 00413138 kernel32:KERNEL32.dll - 0005:0000013c __imp__GetLastError@0 0041313c kernel32:KERNEL32.dll - 0005:00000140 __imp__InitializeCriticalSection@4 00413140 kernel32:KERNEL32.dll - 0005:00000144 __imp__ExitProcess@4 00413144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GetVersion@0 00413148 kernel32:KERNEL32.dll - 0005:0000014c __imp__SetStdHandle@8 0041314c kernel32:KERNEL32.dll - 0005:00000150 __imp__GetCommandLineA@0 00413150 kernel32:KERNEL32.dll - 0005:00000154 __imp__VirtualAlloc@16 00413154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetStdHandle@4 00413158 kernel32:KERNEL32.dll - 0005:0000015c __imp__GetCPInfo@8 0041315c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetOEMCP@0 00413160 kernel32:KERNEL32.dll - 0005:00000164 __imp__GetStartupInfoA@4 00413164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetFileType@4 00413168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetEnvironmentStrings@0 0041316c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetModuleFileNameA@12 00413170 kernel32:KERNEL32.dll - 0005:00000174 __imp__GetACP@0 00413174 kernel32:KERNEL32.dll - 0005:00000178 __imp__VirtualFree@12 00413178 kernel32:KERNEL32.dll - 0005:0000017c __imp__RtlUnwind@16 0041317c kernel32:KERNEL32.dll - 0005:00000180 __imp__UnhandledExceptionFilter@4 00413180 kernel32:KERNEL32.dll - 0005:00000184 \177KERNEL32_NULL_THUNK_DATA 00413184 kernel32:KERNEL32.dll - 0005:00000188 __imp__CharUpperBuffA@8 00413188 user32:USER32.dll - 0005:0000018c \177USER32_NULL_THUNK_DATA 0041318c user32:USER32.dll - 0005:00000190 __imp__timeGetTime@0 00413190 winmm:WINMM.dll - 0005:00000194 \177WINMM_NULL_THUNK_DATA 00413194 winmm:WINMM.dll - 0005:00000198 \177comdlg32_NULL_THUNK_DATA 00413198 comdlg32:comdlg32.dll - - entry point at 0001:0000a639 - - Static symbols - - 0001:0000a400 _$$1000 0040b400 f kpack.obj - 0001:0000a4a0 _$$9200 0040b4a0 f kpack.obj - 0001:0000a4b0 _$$8000 0040b4b0 f kpack.obj - 0001:00009ea0 _$$1000 0040aea0 f groups2.obj - 0001:00009eb0 _$$8000 0040aeb0 f groups2.obj - 0001:00009940 _$$1000 0040a940 f groups.obj - 0001:00009e30 _$$8000 0040ae30 f groups.obj - 0001:00009320 _$$8000 0040a320 f fniwin.obj - 0001:000094f0 _$$1000 0040a4f0 f fniwin.obj - 0001:00009690 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040a690 f fniwin.obj - 0001:00009730 _$$9000 0040a730 f fniwin.obj - 0001:00009740 _$$a000 0040a740 f fniwin.obj - 0001:00009750 _$$b000 0040a750 f fniwin.obj - 0001:00008eb0 ?_HfileOpen@@YGPAXPADHK@Z 00409eb0 f filewin.obj - 0001:00009100 _$$1000 0040a100 f filewin.obj - 0001:00009310 _$$8000 0040a310 f filewin.obj - 0001:000081f0 _$$8000 004091f0 f file.obj - 0001:00008460 _$$1000 00409460 f file.obj - 0001:00008610 ?_FRangeIn@@YGHJJJ@Z 00409610 f file.obj - 0001:00008e40 _$$9000 00409e40 f file.obj - 0001:00008e50 _$$a000 00409e50 f file.obj - 0001:00008e60 _$$b000 00409e60 f file.obj - 0001:000081d0 _$$1000 004091d0 f crf.obj - 0001:000081e0 _$$8000 004091e0 f crf.obj - 0001:00001f20 _$$1000 00402f20 f codkauai.obj - 0001:000081c0 _$$8000 004091c0 f codkauai.obj - 0001:000016d0 _$$1000 004026d0 f codec.obj - 0001:00001a00 _$$8000 00402a00 f codec.obj - 0001:000013f0 _$$1000 004023f0 f chunk.obj - 0001:00001400 _$$8000 00402400 f chunk.obj - 0001:000013d0 _$$8000 004023d0 f memwin.obj - 0001:000013e0 _$$1000 004023e0 f memwin.obj - 0001:00000fb0 _$$1000 00401fb0 f utilstr.obj - 0001:00001240 _$$8000 00402240 f utilstr.obj - 0001:00000c80 _$$1000 00401c80 f utilrnd.obj - 0001:00000d80 _$$8000 00401d80 f utilrnd.obj - 0001:00000aa0 _$$8000 00401aa0 f utilmem.obj - 0001:00000ab0 _$$1000 00401ab0 f utilmem.obj - 0001:000007c0 _$$1000 004017c0 f utilint.obj - 0001:00000890 _$$8000 00401890 f utilint.obj - 0001:00000510 _$$8000 00401510 f utilerro.obj - 0001:00000740 _$$1000 00401740 f utilerro.obj - 0001:00000750 _$$9000 00401750 f utilerro.obj - 0001:00000770 _$$a000 00401770 f utilerro.obj - 0001:00000780 _$$b000 00401780 f utilerro.obj - 0001:000003d0 _$$1000 004013d0 f utilcopy.obj - 0001:00000500 _$$8000 00401500 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:0000c858 __before 0040d858 f LIBC:heapadd.obj - 0001:0000c323 _flsall 0040d323 f LIBC:fflush.obj - 0001:0000c00f __heap_new_region 0040d00f f LIBC:heapgrow.obj - 0001:0000bd6d __heap_grow_emptylist 0040cd6d f LIBC:heapinit.obj - 0001:0000ba21 _getSystemCP 0040ca21 f LIBC:mbctype.obj - 0001:0000ba5c _CPtoLCID 0040ca5c f LIBC:mbctype.obj - 0001:0000ba9b _setSBCS 0040ca9b f LIBC:mbctype.obj - 0001:0000b857 _parse_cmdline 0040c857 f LIBC:stdargv.obj - 0001:0000b6c9 _xcptlookup 0040c6c9 f LIBC:winxfltr.obj - 0001:0000b4cc __unwind_handler 0040c4cc f LIBC:exsup.obj - 0001:0000b3cf _write_char 0040c3cf f LIBC:output.obj - 0001:0000b40f _write_multi_char 0040c40f f LIBC:output.obj - 0001:0000b440 _write_string 0040c440 f LIBC:output.obj - 0001:0000b477 _get_int_arg 0040c477 f LIBC:output.obj - 0001:0000b486 _get_int64_arg 0040c486 f LIBC:output.obj - 0001:0000b49a _get_short_arg 0040c49a f LIBC:output.obj - 0001:0000a939 __heap_expand_block 0040b939 f LIBC:realloc.obj - 0001:0000a7a4 _doexit 0040b7a4 f LIBC:crt0dat.obj - 0001:0000a823 __initterm 0040b823 f LIBC:crt0dat.obj - -FIXUPS: b695 c 5 10 10 5 1c 9 15 f 1f 9 fffffed0 14 c ffffffcf ffffff46 -FIXUPS: b55f 12 44 13 13 cd3 2d 16 1d 1b cb 3a 37 fffff662 45 46 29 fffffe36 -FIXUPS: b9de f e c 3d 55 fffffdbe 16 33 1f d 23 23 fffffe56 12 11 11 5d -FIXUPS: b80b 1435 10 fffffbb0 12 10 19 fffffef2 15 2a 11 fffffdf5 ffffff4e -FIXUPS: bc88 4c 9b 1d 6d 10 6b 4f 24 6b 6a 30 14 16 11 ab 17 ff 96 14 1312 -FIXUPS: d5be 1f fffffc99 b 21 42 37 2f 19 2b e fffffc55 c 75 d 96 d c 32 -FIXUPS: cfa2 ffffffae ffffff6f 18 ffffff70 d 35 25 ffffff1f fffffcff b8 -FIXUPS: cbfc ffff4516 30 ccdf ffffff8c c d 20 d ffffff40 b b 1b fffffe05 -FIXUPS: db18 26 ffffff9d ffffffdf fffffead f3 fffffe7e fffffd4f 10 10 18 -FIXUPS: d700 3e 24 d 41 34 fffffd88 d ffff3f9d 1f 11 1e 5c 1b6 b 5 5 21 -FIXUPS: 1501 fffffca4 11 ee 30 5d 23 d fffffe10 fffffea4 11 2d c a 1e a -FIXUPS: 10b0 1e 18 b 5 5 1083 2e 95 fffff894 11 2f 11 1e 12 10 53 35 1b -FIXUPS: 1c31 27 5e 1e d 3a 15 26 2b 21 12 d fffffb9d ef 54 fffffdc3 b 22 -FIXUPS: 18b2 ddc 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d fffff9e0 fffffe6b -FIXUPS: 2314 6c 51 fffffa11 32 26 9 54 4b 94 11 51 14e 49 d03 12 33 27 -FIXUPS: 2eff 3994 1b 1c 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d -FIXUPS: 2425 11 2f f 7a 50 7f 20 77aa 12 29 25 2c 16 2d b 5 5 9 d 13 d -FIXUPS: 91e1 ffff9864 11 52 8 28 8 11c 18 3f 1b 1c 55 11 d 81 6a 12 6a3a -FIXUPS: 9884 28 18 40 1f 38 45 3e 10 17 64 6 20 2b 3f 6 20 2b 37 1a 12 -FIXUPS: 9bbe b 98 e 12 35 1c 38 18 57 fffff51d 22 21 25 14 23 14 14 25 -FIXUPS: 9393 18 3d 1c d 14 75 64 ed 69 2e 22 2e 4b 36 17 27 34 1c 17 8 -FIXUPS: 980a a ca2 12 5b 1a 22 24 13 2e 76 1d 93 28 34 b 5 5 17 fffff7fc -FIXUPS: 9f91 89 9e 7f aa c a4 c 74 ffffef04 11 2f 11 1e 18c0 5b 6 14 10 -FIXUPS: abe7 32 80 1d 49 34 14 31 38 29 47 11 13 d 13 d 13 d fffff495 1f -FIXUPS: a356 2e 15 ab d 2c 19 fa9 62 5 fffffa0b fffff8e4 11 2f 11 2f 11 -FIXUPS: a84e 9 32 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 1e a b 28 a b -FIXUPS: aed2 13 13 1b 12 44 16 3c 90 69 17 17 23 18 17 2d 22 4e d 31 15 -FIXUPS: b22f 26 21 14 44 9 1c 15 39 9 e2 diff --git a/kauai/OBJ/WINS/MAKEFILE b/kauai/OBJ/WINS/MAKEFILE index 08711da6..2175d477 100644 --- a/kauai/OBJ/WINS/MAKEFILE +++ b/kauai/OBJ/WINS/MAKEFILE @@ -4,10 +4,10 @@ .SILENT: -ALL: SETBLD KAUAI_SRC KAUAI_TOOLS +ALL: KAUAI_SRC KAUAI_TOOLS #SETBLD -SETBLD: - Setbld s w n +#SETBLD: +# Setbld s w n KAUAI_SRC: cd $(KAUAI_ROOT)\src @@ -22,7 +22,7 @@ KAUAI_TOOLS: cd $(KAUAI_ROOT)\obj\wins -CLEAN: SETBLD CLEAN_KAUAI_SRC CLEAN_KAUAI_TOOLS +CLEAN: CLEAN_KAUAI_SRC CLEAN_KAUAI_TOOLS # SETBLD CLEAN_KAUAI_SRC: diff --git a/kauai/OBJ/WINS/MKMBMP.MAP b/kauai/OBJ/WINS/MKMBMP.MAP deleted file mode 100644 index cdecf1a3..00000000 --- a/kauai/OBJ/WINS/MKMBMP.MAP +++ /dev/null @@ -1,638 +0,0 @@ - mkmbmp - - Timestamp is 3070b57b (Mon Oct 02 21:00:59 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0000e6dcH .text CODE - 0002:00000000 00001960H .bss DATA - 0003:00000000 000002f9H .rdata DATA - 0004:00000000 000010a8H .data DATA - 0004:000010a8 00000004H .CRT$XCA DATA - 0004:000010ac 00000054H .CRT$XCU DATA - 0004:00001100 00000004H .CRT$XCZ DATA - 0004:00001104 00000004H .CRT$XIA DATA - 0004:00001108 00000004H .CRT$XIC DATA - 0004:0000110c 00000004H .CRT$XIZ DATA - 0004:00001110 00000004H .CRT$XPA DATA - 0004:00001114 00000004H .CRT$XPX DATA - 0004:00001118 00000004H .CRT$XPZ DATA - 0004:0000111c 00000004H .CRT$XTA DATA - 0004:00001120 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 000000a4H .idata$4 DATA - 0005:00000108 000000a4H .idata$5 DATA - 0005:000001ac 000002aeH .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00001620H .debug$F DATA - 0007:00001af0 00000000H .debug$G DATA - 0007:00001af0 00000033H .debug$H DATA - 0007:fffe9000 00000000H .debug$P DATA - 0007:fffe9000 00000000H .debug$S DATA - 0007:fffe9000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?FWouldBe@BLL@@SGHJ@Z 00401190 f base.obj - 0001:000001b0 ?FIs@BLL@@UAEHJ@Z 004011b0 f base.obj - 0001:000001c0 ?Cls@BLL@@UAEJXZ 004011c0 f base.obj - 0001:000001d0 ?Cls@BASE@@UAEJXZ 004011d0 f base.obj - 0001:000001e0 ?FIs@BASE@@UAEHJ@Z 004011e0 f base.obj - 0001:00000200 ?FWouldBe@BASE@@SGHJ@Z 00401200 f base.obj - 0001:00000220 ??0BASE@@QAE@XZ 00401220 f base.obj - 0001:00000230 ?AddRef@BASE@@UAEXXZ 00401230 f base.obj - 0001:00000240 ?Release@BASE@@UAEXXZ 00401240 f base.obj - 0001:00000260 ??2BASE@@SGPAXI@Z 00401260 f base.obj - 0001:00000290 ??3BASE@@SGXPAX@Z 00401290 f base.obj - 0001:000002a0 ??0BLL@@QAE@XZ 004012a0 f base.obj - 0001:000002c0 ??1BLL@@UAE@XZ 004012c0 f base.obj - 0001:000002e0 ?_Attach@BLL@@IAEXPAX@Z 004012e0 f base.obj - 0001:00000350 ??_EBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000350 ??_GBLL@@UAEPAXI@Z 00401350 f base.obj - 0001:00000370 ?FillPb@@YGXPAXJE@Z 00401370 f utilcopy.obj - 0001:000003b0 ?ClearPb@@YGXPAXJ@Z 004013b0 f utilcopy.obj - 0001:000003e0 ?FEqualRgb@@YGHPAX0J@Z 004013e0 f utilcopy.obj - 0001:00000420 ?CbEqualRgb@@YGJPAX0J@Z 00401420 f utilcopy.obj - 0001:00000480 ?CopyPb@@YGXPAX0J@Z 00401480 f utilcopy.obj - 0001:000004b0 ?BltPb@@YGXPAX0J@Z 004014b0 f utilcopy.obj - 0001:00000520 ?FWouldBe@ERS@@SGHJ@Z 00401520 f utilerro.obj - 0001:00000540 ?FIs@ERS@@UAEHJ@Z 00401540 f utilerro.obj - 0001:00000550 ?Cls@ERS@@UAEJXZ 00401550 f utilerro.obj - 0001:00000560 ??0ERS@@QAE@XZ 00401560 f utilerro.obj - 0001:00000590 ?Push@ERS@@UAEXJ@Z 00401590 f utilerro.obj - 0001:000005e0 ?FPop@ERS@@UAEHPAJ@Z 004015e0 f utilerro.obj - 0001:00000630 ?Clear@ERS@@UAEXXZ 00401630 f utilerro.obj - 0001:00000650 ?Cerc@ERS@@UAEJXZ 00401650 f utilerro.obj - 0001:00000660 ?FIn@ERS@@UAEHJ@Z 00401660 f utilerro.obj - 0001:000006b0 ?ErcGet@ERS@@UAEJJ@Z 004016b0 f utilerro.obj - 0001:000006f0 ?Flush@ERS@@UAEXJ@Z 004016f0 f utilerro.obj - 0001:00000790 ??_EERS@@UAEPAXI@Z 00401790 f utilerro.obj - 0001:00000790 ??_GERS@@UAEPAXI@Z 00401790 f utilerro.obj - 0001:000007c0 ?LwRoundAway@@YGJJJ@Z 004017c0 f utilint.obj - 0001:00000800 ?SwapBytesBom@@YGXPAXK@Z 00401800 f utilint.obj - 0001:00000860 ?SwapBytesRglw@@YGXPAXJ@Z 00401860 f utilint.obj - 0001:00000890 ?Offset@RC@@QAEXJJ@Z 00401890 f utilint.obj - 0001:000008b0 ??0USAC@@QAE@XZ 004018b0 f utilint.obj - 0001:000008f0 ??_EUSAC@@UAEPAXI@Z 004018f0 f utilint.obj - 0001:000008f0 ??_GUSAC@@UAEPAXI@Z 004018f0 f utilint.obj - 0001:00000910 ?FAllocPv@@YGHPAPAXJKJ@Z 00401910 f utilmem.obj - 0001:000009e0 ?_FResizePpv@@YGHPAPAXJJKJ@Z 004019e0 f utilmem.obj - 0001:00000ad0 ?FreePpv@@YGXPAPAX@Z 00401ad0 f utilmem.obj - 0001:00000b10 ?FWouldBe@RND@@SGHJ@Z 00401b10 f utilrnd.obj - 0001:00000b30 ?FIs@RND@@UAEHJ@Z 00401b30 f utilrnd.obj - 0001:00000b40 ?Cls@RND@@UAEJXZ 00401b40 f utilrnd.obj - 0001:00000b50 ?FWouldBe@SFL@@SGHJ@Z 00401b50 f utilrnd.obj - 0001:00000b70 ?FIs@SFL@@UAEHJ@Z 00401b70 f utilrnd.obj - 0001:00000b80 ?Cls@SFL@@UAEJXZ 00401b80 f utilrnd.obj - 0001:00000b90 ??0RND@@QAE@K@Z 00401b90 f utilrnd.obj - 0001:00000bd0 ?LwNext@RND@@UAEJJ@Z 00401bd0 f utilrnd.obj - 0001:00000c00 ??0SFL@@QAE@K@Z 00401c00 f utilrnd.obj - 0001:00000c30 ??1SFL@@UAE@XZ 00401c30 f utilrnd.obj - 0001:00000c50 ?Shuffle@SFL@@QAEXJ@Z 00401c50 f utilrnd.obj - 0001:00000c90 ?_ShuffleCore@SFL@@IAEXXZ 00401c90 f utilrnd.obj - 0001:00000ce0 ?_FEnsureHq@SFL@@IAEHJ@Z 00401ce0 f utilrnd.obj - 0001:00000d50 ?LwNext@SFL@@UAEJJ@Z 00401d50 f utilrnd.obj - 0001:00000de0 ??_ERND@@UAEPAXI@Z 00401de0 f utilrnd.obj - 0001:00000de0 ??_GRND@@UAEPAXI@Z 00401de0 f utilrnd.obj - 0001:00000e00 ??_GSFL@@UAEPAXI@Z 00401e00 f utilrnd.obj - 0001:00000e00 ??_ESFL@@UAEPAXI@Z 00401e00 f utilrnd.obj - 0001:00000e20 ??4STN@@QAEAAV0@AAV0@@Z 00401e20 f utilstr.obj - 0001:00000e40 ?SetRgch@STN@@QAEXPADJ@Z 00401e40 f utilstr.obj - 0001:00000e80 ?SetSzs@STN@@QAEXPAD@Z 00401e80 f utilstr.obj - 0001:00000ea0 ?Delete@STN@@QAEXJJ@Z 00401ea0 f utilstr.obj - 0001:00000f00 ?FAppendRgch@STN@@QAEHPADJ@Z 00401f00 f utilstr.obj - 0001:00000f50 ?FInsertRgch@STN@@QAEHJPADJ@Z 00401f50 f utilstr.obj - 0001:00001010 ?FEqualRgch@STN@@QAEHPADJ@Z 00402010 f utilstr.obj - 0001:00001040 ?FEqualUserRgch@STN@@QAEHPADJK@Z 00402040 f utilstr.obj - 0001:00001060 ?FFormatSz@STN@@QAAHPADZZ 00402060 f utilstr.obj - 0001:00001080 ?FFormatRgch@STN@@QAEHPADJPAK@Z 00402080 f utilstr.obj - 0001:00001400 ?FGetLw@STN@@QAEHPAJJ@Z 00402400 f utilstr.obj - 0001:000014f0 ?CchSz@@YGJPAD@Z 004024f0 f utilstr.obj - 0001:00001510 ?FEqualUserRgch@@YGHPADJ0JK@Z 00402510 f utilstr.obj - 0001:00001600 ?UpperRgchs@@YGXPADJ@Z 00402600 f utilstr.obj - 0001:00001670 ?FAllocHq@@YGHPAPAXJKJ@Z 00402670 f memwin.obj - 0001:000016e0 ?FResizePhq@@YGHPAPAXJKJ@Z 004026e0 f memwin.obj - 0001:00001780 ?FreePhq@@YGXPAPAX@Z 00402780 f memwin.obj - 0001:000017b0 ?CbOfHq@@YGJPAX@Z 004027b0 f memwin.obj - 0001:000017c0 ?PvLockHq@@YGPAXPAX@Z 004027c0 f memwin.obj - 0001:000017d0 ?UnlockHq@@YGXPAX@Z 004027d0 f memwin.obj - 0001:00001830 ?FWouldBe@CODM@@SGHJ@Z 00402830 f codec.obj - 0001:00001850 ?FIs@CODM@@UAEHJ@Z 00402850 f codec.obj - 0001:00001860 ?Cls@CODM@@UAEJXZ 00402860 f codec.obj - 0001:00001870 ?FWouldBe@CODC@@SGHJ@Z 00402870 f codec.obj - 0001:00001890 ??0CODM@@QAE@PAVCODC@@J@Z 00402890 f codec.obj - 0001:000018d0 ??1CODM@@UAE@XZ 004028d0 f codec.obj - 0001:00001950 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00402950 f codec.obj - 0001:000019a0 ?FCanDo@CODM@@UAEHJH@Z 004029a0 f codec.obj - 0001:000019d0 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 004029d0 f codec.obj - 0001:00001a50 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00402a50 f codec.obj - 0001:00001b00 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00402b00 f codec.obj - 0001:00001c20 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00402c20 f codec.obj - 0001:00001e30 ??_GCODM@@UAEPAXI@Z 00402e30 f codec.obj - 0001:00001e30 ??_ECODM@@UAEPAXI@Z 00402e30 f codec.obj - 0001:00001e50 ?FWouldBe@KCDC@@SGHJ@Z 00402e50 f codkauai.obj - 0001:00001e70 ?FIs@KCDC@@UAEHJ@Z 00402e70 f codkauai.obj - 0001:00001e80 ?Cls@KCDC@@UAEJXZ 00402e80 f codkauai.obj - 0001:00001e90 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00402e90 f codkauai.obj - 0001:00001f10 ?Set@BITA@@QAEXPAXJ@Z 00402f10 f codkauai.obj - 0001:00001f30 ?FWriteBits@BITA@@QAEHKJ@Z 00402f30 f codkauai.obj - 0001:00001ff0 ?FWriteLogEncoded@BITA@@QAEHK@Z 00402ff0 f codkauai.obj - 0001:00002040 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00403040 f codkauai.obj - 0001:00002350 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00403350 f codkauai.obj - 0001:00005c80 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00406c80 f codkauai.obj - 0001:00006060 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00407060 f codkauai.obj - 0001:000085f0 ?FWouldBe@BACO@@SGHJ@Z 004095f0 f crf.obj - 0001:00008610 ?FIs@BACO@@UAEHJ@Z 00409610 f crf.obj - 0001:00008620 ?Cls@BACO@@UAEJXZ 00409620 f crf.obj - 0001:00008630 ??0BACO@@IAE@XZ 00409630 f crf.obj - 0001:00008660 ??1BACO@@MAE@XZ 00409660 f crf.obj - 0001:00008690 ?FWriteFlo@BACO@@UAEHPAUFLO@@@Z 00409690 f crf.obj - 0001:000086d0 ?FWrite@BACO@@UAEHPAVBLCK@@@Z 004096d0 f crf.obj - 0001:000086e0 ?CbOnFile@BACO@@UAEJXZ 004096e0 f crf.obj - 0001:000086f0 ?Release@BACO@@UAEXXZ 004096f0 f crf.obj - 0001:00008740 ?Detach@BACO@@UAEXXZ 00409740 f crf.obj - 0001:00008780 ?SetCrep@BACO@@UAEXJ@Z 00409780 f crf.obj - 0001:000087b0 ?BacoDetached@CRF@@QAEXPAVBACO@@@Z 004097b0 f crf.obj - 0001:00008800 ?BacoReleased@CRF@@QAEXPAVBACO@@@Z 00409800 f crf.obj - 0001:00008880 ?_FFindBaco@CRF@@IAEHPAVBACO@@PAJ@Z 00409880 f crf.obj - 0001:000089c0 ??_EBACO@@MAEPAXI@Z 004099c0 f crf.obj - 0001:000089c0 ??_GBACO@@MAEPAXI@Z 004099c0 f crf.obj - 0001:000089f0 ?FWouldBe@FIL@@SGHJ@Z 004099f0 f file.obj - 0001:00008a10 ?FIs@FIL@@UAEHJ@Z 00409a10 f file.obj - 0001:00008a20 ?Cls@FIL@@UAEJXZ 00409a20 f file.obj - 0001:00008a30 ?FWouldBe@BLCK@@SGHJ@Z 00409a30 f file.obj - 0001:00008a50 ?FIs@BLCK@@UAEHJ@Z 00409a50 f file.obj - 0001:00008a60 ?Cls@BLCK@@UAEJXZ 00409a60 f file.obj - 0001:00008a70 ??0FIL@@IAE@PAVFNI@@K@Z 00409a70 f file.obj - 0001:00008ae0 ??1FIL@@MAE@XZ 00409ae0 f file.obj - 0001:00008b30 ?PfilOpen@FIL@@SGPAV1@PAVFNI@@K@Z 00409b30 f file.obj - 0001:00008bd0 ?PfilCreate@FIL@@SGPAV1@PAVFNI@@K@Z 00409bd0 f file.obj - 0001:00008c60 ?PfilCreateTemp@FIL@@SGPAV1@PAVFNI@@@Z 00409c60 f file.obj - 0001:00008cf0 ?PfilFromFni@FIL@@SGPAV1@PAVFNI@@@Z 00409cf0 f file.obj - 0001:00008d50 ?FSetGrffil@FIL@@QAEHKK@Z 00409d50 f file.obj - 0001:00008de0 ?Release@FIL@@UAEXXZ 00409de0 f file.obj - 0001:00008e10 ?SetTemp@FIL@@QAEXH@Z 00409e10 f file.obj - 0001:00008e50 ?ShutDown@FIL@@SGXXZ 00409e50 f file.obj - 0001:00008ec0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 00409ec0 f file.obj - 0001:00008f10 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00409f10 f file.obj - 0001:00008f60 ?FCopy@FLO@@QAEHPAU1@@Z 00409f60 f file.obj - 0001:00009030 ?FReadHq@FLO@@QAEHPAPAXJJ@Z 0040a030 f file.obj - 0001:000090b0 ?FWriteHq@FLO@@QAEHPAXJ@Z 0040a0b0 f file.obj - 0001:00009100 ??0BLCK@@QAE@PAUFLO@@H@Z 0040a100 f file.obj - 0001:00009150 ??0BLCK@@QAE@XZ 0040a150 f file.obj - 0001:00009170 ??1BLCK@@UAE@XZ 0040a170 f file.obj - 0001:00009190 ?Set@BLCK@@QAEXPAVFIL@@JJH@Z 0040a190 f file.obj - 0001:000091d0 ?SetHq@BLCK@@QAEXPAPAXH@Z 0040a1d0 f file.obj - 0001:00009210 ?Free@BLCK@@QAEXXZ 0040a210 f file.obj - 0001:00009240 ?HqFree@BLCK@@QAEPAXH@Z 0040a240 f file.obj - 0001:000092f0 ?Cb@BLCK@@QAEJH@Z 0040a2f0 f file.obj - 0001:00009310 ?FSetTemp@BLCK@@QAEHJH@Z 0040a310 f file.obj - 0001:000093a0 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 0040a3a0 f file.obj - 0001:00009430 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 0040a430 f file.obj - 0001:000094c0 ?FWriteHq@BLCK@@QAEHPAXJH@Z 0040a4c0 f file.obj - 0001:00009550 ?FWriteToFlo@BLCK@@QAEHPAUFLO@@H@Z 0040a550 f file.obj - 0001:000095d0 ?FPackData@BLCK@@QAEHJ@Z 0040a5d0 f file.obj - 0001:00009720 ??_GFIL@@MAEPAXI@Z 0040a720 f file.obj - 0001:00009720 ??_EFIL@@MAEPAXI@Z 0040a720 f file.obj - 0001:00009740 ??_GBLCK@@UAEPAXI@Z 0040a740 f file.obj - 0001:00009740 ??_EBLCK@@UAEPAXI@Z 0040a740 f file.obj - 0001:000097b0 ?_FOpen@FIL@@IAEHHK@Z 0040a7b0 f filewin.obj - 0001:000098b0 ?_Close@FIL@@IAEXH@Z 0040a8b0 f filewin.obj - 0001:00009920 ?Flush@FIL@@QAEXXZ 0040a920 f filewin.obj - 0001:00009950 ?_SetFpPos@FIL@@IAEXJ@Z 0040a950 f filewin.obj - 0001:000099c0 ?FpMac@FIL@@QAEJXZ 0040a9c0 f filewin.obj - 0001:00009a50 ?FReadRgb@FIL@@QAEHPAXJJ@Z 0040aa50 f filewin.obj - 0001:00009b00 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 0040ab00 f filewin.obj - 0001:00009be0 ?FWouldBe@FNI@@SGHJ@Z 0040abe0 f fniwin.obj - 0001:00009c00 ?FIs@FNI@@UAEHJ@Z 0040ac00 f fniwin.obj - 0001:00009c10 ?Cls@FNI@@UAEJXZ 0040ac10 f fniwin.obj - 0001:00009c20 ?SetNil@FNI@@QAEXXZ 0040ac20 f fniwin.obj - 0001:00009c30 ??0FNI@@QAE@XZ 0040ac30 f fniwin.obj - 0001:00009c60 ?FBuildFromPath@FNI@@QAEHPAVSTN@@J@Z 0040ac60 f fniwin.obj - 0001:00009db0 ?FGetUnique@FNI@@QAEHJ@Z 0040adb0 f fniwin.obj - 0001:00009ec0 ?FGetTemp@FNI@@QAEHXZ 0040aec0 f fniwin.obj - 0001:00009f60 ?Ftg@FNI@@QAEJXZ 0040af60 f fniwin.obj - 0001:00009f70 ?FSetLeaf@FNI@@QAEHPAVSTN@@J@Z 0040af70 f fniwin.obj - 0001:00009fe0 ?FChangeFtg@FNI@@QAEHJ@Z 0040afe0 f fniwin.obj - 0001:0000a090 ?GetLeaf@FNI@@QAEXPAVSTN@@@Z 0040b090 f fniwin.obj - 0001:0000a0d0 ?TExists@FNI@@QAEHXZ 0040b0d0 f fniwin.obj - 0001:0000a1d0 ?FEqual@FNI@@QAEHPAV1@@Z 0040b1d0 f fniwin.obj - 0001:0000a1f0 ?_CchExt@FNI@@AAEJXZ 0040b1f0 f fniwin.obj - 0001:0000a230 ?_SetFtgFromName@FNI@@AAEXXZ 0040b230 f fniwin.obj - 0001:0000a2b0 ?_FChangeLeaf@FNI@@AAEHPAVSTN@@@Z 0040b2b0 f fniwin.obj - 0001:0000a400 ??_EFNI@@UAEPAXI@Z 0040b400 f fniwin.obj - 0001:0000a400 ??_GFNI@@UAEPAXI@Z 0040b400 f fniwin.obj - 0001:0000a420 ?FWouldBe@GRPB@@SGHJ@Z 0040b420 f groups.obj - 0001:0000a440 ?FIs@GRPB@@UAEHJ@Z 0040b440 f groups.obj - 0001:0000a450 ?Cls@GRPB@@UAEJXZ 0040b450 f groups.obj - 0001:0000a460 ?FWouldBe@GLB@@SGHJ@Z 0040b460 f groups.obj - 0001:0000a480 ?FIs@GLB@@UAEHJ@Z 0040b480 f groups.obj - 0001:0000a490 ?Cls@GLB@@UAEJXZ 0040b490 f groups.obj - 0001:0000a4a0 ?FWouldBe@GL@@SGHJ@Z 0040b4a0 f groups.obj - 0001:0000a4c0 ?FIs@GL@@UAEHJ@Z 0040b4c0 f groups.obj - 0001:0000a4d0 ?Cls@GL@@UAEJXZ 0040b4d0 f groups.obj - 0001:0000a4e0 ??1GRPB@@UAE@XZ 0040b4e0 f groups.obj - 0001:0000a510 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 0040b510 f groups.obj - 0001:0000a5f0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 0040b5f0 f groups.obj - 0001:0000a6c0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 0040b6c0 f groups.obj - 0001:0000a710 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 0040b710 f groups.obj - 0001:0000a7e0 ??0GLB@@IAE@J@Z 0040b7e0 f groups.obj - 0001:0000a810 ?QvGet@GLB@@QAEPAXJ@Z 0040b810 f groups.obj - 0001:0000a830 ?Get@GLB@@QAEXJPAX@Z 0040b830 f groups.obj - 0001:0000a850 ?Put@GLB@@QAEXJPAX@Z 0040b850 f groups.obj - 0001:0000a870 ?PvLock@GLB@@QAEPAXJ@Z 0040b870 f groups.obj - 0001:0000a890 ?PglNew@GL@@SGPAV1@JJ@Z 0040b890 f groups.obj - 0001:0000a8f0 ??0GL@@IAE@J@Z 0040b8f0 f groups.obj - 0001:0000a910 ?FFree@GL@@UAEHJ@Z 0040b910 f groups.obj - 0001:0000a930 ?CbOnFile@GL@@UAEJXZ 0040b930 f groups.obj - 0001:0000a940 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 0040b940 f groups.obj - 0001:0000a9b0 ?FInsert@GL@@QAEHJPAXJ@Z 0040b9b0 f groups.obj - 0001:0000aa50 ?Delete@GL@@UAEXJ@Z 0040ba50 f groups.obj - 0001:0000aa60 ?Delete@GL@@QAEXJJ@Z 0040ba60 f groups.obj - 0001:0000aaa0 ?FAdd@GL@@UAEHPAXPAJ@Z 0040baa0 f groups.obj - 0001:0000aad0 ?FSetIvMac@GL@@QAEHJ@Z 0040bad0 f groups.obj - 0001:0000ab20 ?FEnsureSpace@GL@@QAEHJK@Z 0040bb20 f groups.obj - 0001:0000ab70 ??_EGRPB@@UAEPAXI@Z 0040bb70 f groups.obj - 0001:0000ab70 ??_GGRPB@@UAEPAXI@Z 0040bb70 f groups.obj - 0001:0000ab90 ??_EGLB@@UAEPAXI@Z 0040bb90 f groups.obj - 0001:0000ab90 ??_GGLB@@UAEPAXI@Z 0040bb90 f groups.obj - 0001:0000abb0 ??_EGL@@UAEPAXI@Z 0040bbb0 f groups.obj - 0001:0000abb0 ??_GGL@@UAEPAXI@Z 0040bbb0 f groups.obj - 0001:0000abf0 ?FWouldBe@MBMP@@SGHJ@Z 0040bbf0 f mbmp.obj - 0001:0000ac10 ?FIs@MBMP@@UAEHJ@Z 0040bc10 f mbmp.obj - 0001:0000ac20 ?Cls@MBMP@@UAEJXZ 0040bc20 f mbmp.obj - 0001:0000ac30 ??1MBMP@@UAE@XZ 0040bc30 f mbmp.obj - 0001:0000ac50 ?PmbmpNew@MBMP@@SGPAV1@PAEJJPAVRC@@JJEKE@Z 0040bc50 f mbmp.obj - 0001:0000acc0 ?_FInit@MBMP@@MAEHPAEJJPAVRC@@JJEKE@Z 0040bcc0 f mbmp.obj - 0001:0000b0a0 ?PmbmpReadNative@MBMP@@SGPAV1@PAVFNI@@EJJKE@Z 0040c0a0 f mbmp.obj - 0001:0000b150 ?CbOnFile@MBMP@@UAEJXZ 0040c150 f mbmp.obj - 0001:0000b160 ?FWrite@MBMP@@UAEHPAVBLCK@@@Z 0040c160 f mbmp.obj - 0001:0000b1c0 ?FReadBitmap@@YGHPAVFNI@@PAPAEPAPAVGL@@PAJ3PAHE@Z 0040c1c0 f mbmp.obj - 0001:0000b670 ??_EMBMP@@UAEPAXI@Z 0040c670 f mbmp.obj - 0001:0000b670 ??_GMBMP@@UAEPAXI@Z 0040c670 f mbmp.obj - 0001:0000b720 _main 0040c720 f mkmbmp.obj - 0001:0000bca0 ?_FGetLwFromSzs@@YGHPADPAJ@Z 0040cca0 f mkmbmp.obj - 0001:0000bdc4 _timeGetTime@0 0040cdc4 winmm:WINMM.dll - 0001:0000bdca __onexit 0040cdca f LIBC:onexit.obj - 0001:0000be40 _atexit 0040ce40 f LIBC:onexit.obj - 0001:0000be52 ___onexitinit 0040ce52 f LIBC:onexit.obj - 0001:0000be88 __purecall 0040ce88 f LIBC:purevirt.obj - 0001:0000be93 _fprintf 0040ce93 f LIBC:fprintf.obj - 0001:0000bec9 _mainCRTStartup 0040cec9 f LIBC:crt0.obj - 0001:0000bfc2 __amsg_exit 0040cfc2 f LIBC:crt0.obj - 0001:0000bfe2 __cinit 0040cfe2 f LIBC:crt0dat.obj - 0001:0000c012 _exit 0040d012 f LIBC:crt0dat.obj - 0001:0000c023 __exit 0040d023 f LIBC:crt0dat.obj - 0001:0000c0d3 _realloc 0040d0d3 f LIBC:realloc.obj - 0001:0000c225 __msize 0040d225 f LIBC:msize.obj - 0001:0000c236 _malloc 0040d236 f LIBC:malloc.obj - 0001:0000c249 __nh_malloc 0040d249 f LIBC:malloc.obj - 0001:0000c308 __heap_split_block 0040d308 f LIBC:malloc.obj - 0001:0000c34d __stbuf 0040d34d f LIBC:_sftbuf.obj - 0001:0000c3ce __ftbuf 0040d3ce f LIBC:_sftbuf.obj - 0001:0000c414 __output 0040d414 f LIBC:output.obj - 0001:0000cd3c __global_unwind2 0040dd3c f LIBC:exsup.obj - 0001:0000cd7e __local_unwind2 0040dd7e f LIBC:exsup.obj - 0001:0000cdd8 __abnormal_termination 0040ddd8 f LIBC:exsup.obj - 0001:0000cdfb __XcptFilter 0040ddfb f LIBC:winxfltr.obj - 0001:0000cf86 __setenvp 0040df86 f LIBC:stdenvp.obj - 0001:0000d051 __setargv 0040e051 f LIBC:stdargv.obj - 0001:0000d34f __setmbcp 0040e34f f LIBC:mbctype.obj - 0001:0000d4dd ___initmbctable 0040e4dd f LIBC:mbctype.obj - 0001:0000d4e8 __ioinit 0040e4e8 f LIBC:ioinit.obj - 0001:0000d5d6 __heap_init 0040e5d6 f LIBC:heapinit.obj - 0001:0000d653 ___getempty 0040e653 f LIBC:heapinit.obj - 0001:0000d680 __except_handler3 0040e680 f LIBC:exsup3.obj - 0001:0000d72e __seh_longjmp_unwind@4 0040e72e f LIBC:exsup3.obj - 0001:0000d749 __FF_MSGBANNER 0040e749 f LIBC:crt0msg.obj - 0001:0000d76f __NMSG_WRITE 0040e76f f LIBC:crt0msg.obj - 0001:0000d7c7 _free 0040e7c7 f LIBC:free.obj - 0001:0000d82f __heap_abort 0040e82f f LIBC:hpabort.obj - 0001:0000d83a __heap_grow 0040e83a f LIBC:heapgrow.obj - 0001:0000d923 __heap_grow_region 0040e923 f LIBC:heapgrow.obj - 0001:0000d9d0 __heap_free_region 0040e9d0 f LIBC:heapgrow.obj - 0001:0000da0a __heap_search 0040ea0a f LIBC:heapsrch.obj - 0001:0000dafa _fflush 0040eafa f LIBC:fflush.obj - 0001:0000db46 __flush 0040eb46 f LIBC:fflush.obj - 0001:0000dba8 __flushall 0040eba8 f LIBC:fflush.obj - 0001:0000dc1d ___endstdio 0040ec1d f LIBC:fflush.obj - 0001:0000dc31 __isatty 0040ec31 f LIBC:isatty.obj - 0001:0000dc4b _wctomb 0040ec4b f LIBC:wctomb.obj - 0001:0000dcc4 __aulldiv 0040ecc4 f LIBC:ulldiv.obj - 0001:0000dd24 __aullrem 0040ed24 f LIBC:ullrem.obj - 0001:0000dd8e __flsbuf 0040ed8e f LIBC:_flsbuf.obj - 0001:0000de9a __heap_addblock 0040ee9a f LIBC:heapadd.obj - 0001:0000e151 __commit 0040f151 f LIBC:commit.obj - 0001:0000e19e __write 0040f19e f LIBC:write.obj - 0001:0000e337 __fcloseall 0040f337 f LIBC:closeall.obj - 0001:0000e368 __fptrap 0040f368 f LIBC:crt0fp.obj - 0001:0000e373 __lseek 0040f373 f LIBC:lseek.obj - 0001:0000e3e8 __getbuf 0040f3e8 f LIBC:_getbuf.obj - 0001:0000e433 __heap_findaddr 0040f433 f LIBC:findaddr.obj - 0001:0000e49d __free_osfhnd 0040f49d f LIBC:osfinfo.obj - 0001:0000e50a __get_osfhandle 0040f50a f LIBC:osfinfo.obj - 0001:0000e542 __dosmaperr 0040f542 f LIBC:dosmap.obj - 0001:0000e5ab _fclose 0040f5ab f LIBC:fclose.obj - 0001:0000e607 __close 0040f607 f LIBC:close.obj - 0001:0000e69d __freebuf 0040f69d f LIBC:_freebuf.obj - 0001:0000e6d6 _RtlUnwind@16 0040f6d6 kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 00410000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 00410018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 00410030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 00410038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 00410050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 00410070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 004100a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 00410138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 00410240 utilstr.obj - 0002:00000350 ?_pcflFirst@CFL@@0PAV1@A 00410350 chunk.obj - 0002:00000378 ?_pfilFirst@FIL@@1PAV1@A 00410378 file.obj - 0002:00000380 ?_mutxList@FIL@@1VMUTX@@A 00410380 file.obj - 0002:000003a8 ?_fniTemp@@3VFNI@@A 004103a8 fniwin.obj - 0002:0000064c __heap_descpages 0041064c - 0002:00000650 __heap_regions 00410650 - 0002:00000950 ___onexitend 00410950 - 0002:00000954 __FPinit 00410954 - 0002:00000958 ___onexitbegin 00410958 - 0002:0000095c __acmdln 0041095c - 0002:00000960 __bufin 00410960 - 0003:00000058 ??_7KCDC@@6B@ 00412058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 00412078 utilglob.obj - 0003:00000090 ??_7BLL@@6B@ 00412090 base.obj - 0003:000000a8 ??_7ERS@@6B@ 004120a8 utilerro.obj - 0003:000000d8 ??_7USAC@@6B@ 004120d8 utilint.obj - 0003:000000f0 ??_7RND@@6B@ 004120f0 utilrnd.obj - 0003:00000108 ??_7SFL@@6B@ 00412108 utilrnd.obj - 0003:00000120 ?vrgchHex@@3QBDB 00412120 utilstr.obj - 0003:00000138 ??_7CODM@@6B@ 00412138 codec.obj - 0003:00000168 ??_7BACO@@6B@ 00412168 crf.obj - 0003:00000190 ??_7FIL@@6B@ 00412190 file.obj - 0003:000001a8 ??_7BLCK@@6B@ 004121a8 file.obj - 0003:000001c0 ??_7FNI@@6B@ 004121c0 fniwin.obj - 0003:000001d8 ??_7GRPB@@6B@ 004121d8 groups.obj - 0003:00000200 ??_7GLB@@6B@ 00412200 groups.obj - 0003:00000230 ??_7GL@@6B@ 00412230 groups.obj - 0003:00000260 ??_7MBMP@@6B@ 00412260 mbmp.obj - 0003:000002a0 ___lookuptable 004122a0 LIBC:output.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 00413000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 00413004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 00413008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0041300c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 00413010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 00413118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0041311c file.obj - 0004:00000120 ?vftgTemp@@3JA 00413120 fniwin.obj - 0004:00000128 ??_C@_08GBDA@Temp?$CF04x?$AA@ 00413128 fniwin.obj - 0004:00000134 ??_C@_02DILL@?$CFs?$AA@ 00413134 mkmbmp.obj - 0004:00000138 ??_C@_0FP@FPKH@Usage?3?5?5mkmbmp?5?$FL?9c?$FL0?$HM1?$HM2?$FN?$FN?5?$FL?9p?5?$DM@ 00413138 mkmbmp.obj - 0004:00000198 ??_C@_0CF@HGJF@writing?5to?5destination?5file?5fail@ 00413198 mkmbmp.obj - 0004:000001c0 ??_C@_0BF@GMGH@allocation?5failure?6?6?$AA@ 004131c0 mkmbmp.obj - 0004:000001d8 ??_C@_0CD@LHCB@Couldn?8t?5create?5destination?5file@ 004131d8 mkmbmp.obj - 0004:000001fc ??_C@_0BI@PHFG@reading?5bitmap?5failed?6?6?$AA@ 004131fc mkmbmp.obj - 0004:00000214 ??_C@_0BH@MOKA@Bad?5compression?5type?6?6?$AA@ 00413214 mkmbmp.obj - 0004:0000022c ??_C@_0BN@DEOC@Wrong?5number?5of?5file?5names?6?6?$AA@ 0041322c mkmbmp.obj - 0004:0000024c ??_C@_0BA@JMLH@Bad?5file?5name?6?6?$AA@ 0041324c mkmbmp.obj - 0004:0000025c ??_C@_0BG@JNKG@Too?5many?5file?5names?6?6?$AA@ 0041325c mkmbmp.obj - 0004:00000274 ??_C@_0BJ@DFMN@Bad?5compression?5format?6?6?$AA@ 00413274 mkmbmp.obj - 0004:00000290 ??_C@_0DK@CJEA@Copyright?5?$CIC?$CJ?5Microsoft?5Corp?5199@ 00413290 mkmbmp.obj - 0004:000002cc ??_C@_0EA@IBEK@?6Microsoft?5?$CIR?$CJ?5Make?5Mbmp?5Utility@ 004132cc mkmbmp.obj - 0004:00000310 __iob 00413310 LIBC:_file.obj - 0004:00000590 __lastiob 00413590 LIBC:_file.obj - 0004:00000594 __aenvptr 00413594 LIBC:crt0.obj - 0004:00000598 __wenvptr 00413598 LIBC:crt0.obj - 0004:0000059c __aexit_rtn 0041359c LIBC:crt0.obj - 0004:000005a0 _errno 004135a0 LIBC:crt0dat.obj - 0004:000005a4 __doserrno 004135a4 LIBC:crt0dat.obj - 0004:000005a8 __umaskval 004135a8 LIBC:crt0dat.obj - 0004:000005ac __osver 004135ac LIBC:crt0dat.obj - 0004:000005b0 __winver 004135b0 LIBC:crt0dat.obj - 0004:000005b4 __winmajor 004135b4 LIBC:crt0dat.obj - 0004:000005b8 __winminor 004135b8 LIBC:crt0dat.obj - 0004:000005bc ___argc 004135bc LIBC:crt0dat.obj - 0004:000005c0 ___argv 004135c0 LIBC:crt0dat.obj - 0004:000005c4 ___wargv 004135c4 LIBC:crt0dat.obj - 0004:000005c8 __environ 004135c8 LIBC:crt0dat.obj - 0004:000005cc ___initenv 004135cc LIBC:crt0dat.obj - 0004:000005d0 __wenviron 004135d0 LIBC:crt0dat.obj - 0004:000005d4 ___winitenv 004135d4 LIBC:crt0dat.obj - 0004:000005d8 __pgmptr 004135d8 LIBC:crt0dat.obj - 0004:000005dc __wpgmptr 004135dc LIBC:crt0dat.obj - 0004:000005e0 __exitflag 004135e0 LIBC:crt0dat.obj - 0004:000005e4 __C_Termination_Done 004135e4 LIBC:crt0dat.obj - 0004:000005e8 __pnhHeap 004135e8 LIBC:malloc.obj - 0004:000005f0 __stdbuf 004135f0 LIBC:_sftbuf.obj - 0004:00000600 ___nullstring 00413600 LIBC:output.obj - 0004:00000614 ___wnullstring 00413614 LIBC:output.obj - 0004:00000618 __XcptActTab 00413618 LIBC:winxfltr.obj - 0004:00000690 __First_FPE_Indx 00413690 LIBC:winxfltr.obj - 0004:00000694 __Num_FPE 00413694 LIBC:winxfltr.obj - 0004:00000698 __XcptActTabCount 00413698 LIBC:winxfltr.obj - 0004:0000069c __fpecode 0041369c LIBC:winxfltr.obj - 0004:000006a0 __pxcptinfoptrs 004136a0 LIBC:winxfltr.obj - 0004:000006a8 __mbctype 004136a8 LIBC:mbctype.obj - 0004:000007ac ___mbcodepage 004137ac LIBC:mbctype.obj - 0004:000007b0 ___mblcid 004137b0 LIBC:mbctype.obj - 0004:000007b8 ___mbulinfo 004137b8 LIBC:mbctype.obj - 0004:000008c0 __nhandle 004138c0 LIBC:ioinit.obj - 0004:000008c8 __osfile 004138c8 LIBC:ioinit.obj - 0004:00000908 __osfhnd 00413908 LIBC:ioinit.obj - 0004:00000a08 __pipech 00413a08 LIBC:ioinit.obj - 0004:00000a48 __heap_desc 00413a48 LIBC:heapinit.obj - 0004:00000a5c __heap_resetsize 00413a5c LIBC:heapinit.obj - 0004:00000a60 __amblksiz 00413a60 LIBC:heapinit.obj - 0004:00000a64 __heap_regionsize 00413a64 LIBC:heapinit.obj - 0004:00000a68 __heap_maxregsize 00413a68 LIBC:heapinit.obj - 0004:00000cd8 __adbgmsg 00413cd8 LIBC:crt0msg.obj - 0004:00000cdc __newmode 00413cdc LIBC:_newmode.obj - 0004:00000ce0 __cflush 00413ce0 LIBC:fflush.obj - 0004:00000ce8 __cfltcvt_tab 00413ce8 LIBC:cmiscdat.obj - 0004:00000d00 __pctype 00413d00 LIBC:ctype.obj - 0004:00000d04 __pwctype 00413d04 LIBC:ctype.obj - 0004:00000d08 __ctype 00413d08 LIBC:ctype.obj - 0004:00000f10 ___lc_handle 00413f10 LIBC:nlsdata2.obj - 0004:00000f28 ___lc_codepage 00413f28 LIBC:nlsdata2.obj - 0004:00000f2c ___mb_cur_max 00413f2c LIBC:nlsdata1.obj - 0004:00000f34 ___decimal_point 00413f34 LIBC:nlsdata1.obj - 0004:00000f38 ___decimal_point_length 00413f38 LIBC:nlsdata1.obj - 0004:000010a8 ___xc_a 004140a8 LIBC:crt0init.obj - 0004:00001100 ___xc_z 00414100 LIBC:crt0init.obj - 0004:00001104 ___xi_a 00414104 LIBC:crt0init.obj - 0004:0000110c ___xi_z 0041410c LIBC:crt0init.obj - 0004:00001110 ___xp_a 00414110 LIBC:crt0init.obj - 0004:00001118 ___xp_z 00414118 LIBC:crt0init.obj - 0004:0000111c ___xt_a 0041411c LIBC:crt0init.obj - 0004:00001120 ___xt_z 00414120 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00415000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00415014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00415028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041503c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00415050 kernel32:KERNEL32.dll - 0005:00000108 __imp__DeleteCriticalSection@4 00415108 kernel32:KERNEL32.dll - 0005:0000010c __imp__GlobalAlloc@8 0041510c kernel32:KERNEL32.dll - 0005:00000110 __imp__GlobalFree@4 00415110 kernel32:KERNEL32.dll - 0005:00000114 __imp__LeaveCriticalSection@4 00415114 kernel32:KERNEL32.dll - 0005:00000118 __imp__EnterCriticalSection@4 00415118 kernel32:KERNEL32.dll - 0005:0000011c __imp__GlobalReAlloc@12 0041511c kernel32:KERNEL32.dll - 0005:00000120 __imp__WideCharToMultiByte@32 00415120 kernel32:KERNEL32.dll - 0005:00000124 __imp__CreateFileA@28 00415124 kernel32:KERNEL32.dll - 0005:00000128 __imp__CloseHandle@4 00415128 kernel32:KERNEL32.dll - 0005:0000012c __imp__DeleteFileA@4 0041512c kernel32:KERNEL32.dll - 0005:00000130 __imp__FlushFileBuffers@4 00415130 kernel32:KERNEL32.dll - 0005:00000134 __imp__SetFilePointer@16 00415134 kernel32:KERNEL32.dll - 0005:00000138 __imp__ReadFile@20 00415138 kernel32:KERNEL32.dll - 0005:0000013c __imp__WriteFile@20 0041513c kernel32:KERNEL32.dll - 0005:00000140 __imp__GetFullPathNameA@16 00415140 kernel32:KERNEL32.dll - 0005:00000144 __imp__GetTempPathA@8 00415144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GetLastError@0 00415148 kernel32:KERNEL32.dll - 0005:0000014c __imp__GetFileAttributesA@4 0041514c kernel32:KERNEL32.dll - 0005:00000150 __imp__InitializeCriticalSection@4 00415150 kernel32:KERNEL32.dll - 0005:00000154 __imp__ExitProcess@4 00415154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetVersion@0 00415158 kernel32:KERNEL32.dll - 0005:0000015c __imp__SetStdHandle@8 0041515c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetCommandLineA@0 00415160 kernel32:KERNEL32.dll - 0005:00000164 __imp__VirtualAlloc@16 00415164 kernel32:KERNEL32.dll - 0005:00000168 __imp__GetStdHandle@4 00415168 kernel32:KERNEL32.dll - 0005:0000016c __imp__GetCPInfo@8 0041516c kernel32:KERNEL32.dll - 0005:00000170 __imp__GetOEMCP@0 00415170 kernel32:KERNEL32.dll - 0005:00000174 __imp__GetStartupInfoA@4 00415174 kernel32:KERNEL32.dll - 0005:00000178 __imp__GetFileType@4 00415178 kernel32:KERNEL32.dll - 0005:0000017c __imp__GetEnvironmentStrings@0 0041517c kernel32:KERNEL32.dll - 0005:00000180 __imp__GetModuleFileNameA@12 00415180 kernel32:KERNEL32.dll - 0005:00000184 __imp__GetACP@0 00415184 kernel32:KERNEL32.dll - 0005:00000188 __imp__VirtualFree@12 00415188 kernel32:KERNEL32.dll - 0005:0000018c __imp__RtlUnwind@16 0041518c kernel32:KERNEL32.dll - 0005:00000190 __imp__UnhandledExceptionFilter@4 00415190 kernel32:KERNEL32.dll - 0005:00000194 \177KERNEL32_NULL_THUNK_DATA 00415194 kernel32:KERNEL32.dll - 0005:00000198 __imp__CharUpperBuffA@8 00415198 user32:USER32.dll - 0005:0000019c \177USER32_NULL_THUNK_DATA 0041519c user32:USER32.dll - 0005:000001a0 __imp__timeGetTime@0 004151a0 winmm:WINMM.dll - 0005:000001a4 \177WINMM_NULL_THUNK_DATA 004151a4 winmm:WINMM.dll - 0005:000001a8 \177comdlg32_NULL_THUNK_DATA 004151a8 comdlg32:comdlg32.dll - - entry point at 0001:0000bec9 - - Static symbols - - 0001:0000bc90 _$$1000 0040cc90 f mkmbmp.obj - 0001:0000bd30 _$$9200 0040cd30 f mkmbmp.obj - 0001:0000bd40 _$$8000 0040cd40 f mkmbmp.obj - 0001:0000b090 _$$1000 0040c090 f mbmp.obj - 0001:0000b660 _$$9200 0040c660 f mbmp.obj - 0001:0000b690 _$$8000 0040c690 f mbmp.obj - 0001:0000abd0 _$$1000 0040bbd0 f groups2.obj - 0001:0000abe0 _$$8000 0040bbe0 f groups2.obj - 0001:0000a5e0 _$$1000 0040b5e0 f groups.obj - 0001:0000ab60 _$$8000 0040bb60 f groups.obj - 0001:00009bd0 _$$8000 0040abd0 f fniwin.obj - 0001:00009da0 _$$1000 0040ada0 f fniwin.obj - 0001:0000a330 ?_CleanFtg@@YGXPAJPAVSTN@@@Z 0040b330 f fniwin.obj - 0001:0000a3d0 _$$9000 0040b3d0 f fniwin.obj - 0001:0000a3e0 _$$a000 0040b3e0 f fniwin.obj - 0001:0000a3f0 _$$b000 0040b3f0 f fniwin.obj - 0001:00009760 ?_HfileOpen@@YGPAXPADHK@Z 0040a760 f filewin.obj - 0001:000099b0 _$$1000 0040a9b0 f filewin.obj - 0001:00009bc0 _$$8000 0040abc0 f filewin.obj - 0001:000089e0 _$$8000 004099e0 f file.obj - 0001:00008c50 _$$1000 00409c50 f file.obj - 0001:00008e90 ?_FRangeIn@@YGHJJJ@Z 00409e90 f file.obj - 0001:000096f0 _$$9000 0040a6f0 f file.obj - 0001:00009700 _$$a000 0040a700 f file.obj - 0001:00009710 _$$b000 0040a710 f file.obj - 0001:00008730 _$$1000 00409730 f crf.obj - 0001:000089b0 _$$8000 004099b0 f crf.obj - 0001:00002340 _$$1000 00403340 f codkauai.obj - 0001:000085e0 _$$8000 004095e0 f codkauai.obj - 0001:00001af0 _$$1000 00402af0 f codec.obj - 0001:00001e20 _$$8000 00402e20 f codec.obj - 0001:00001810 _$$1000 00402810 f chunk.obj - 0001:00001820 _$$8000 00402820 f chunk.obj - 0001:000017f0 _$$8000 004027f0 f memwin.obj - 0001:00001800 _$$1000 00402800 f memwin.obj - 0001:00001000 _$$1000 00402000 f utilstr.obj - 0001:00001660 _$$8000 00402660 f utilstr.obj - 0001:00000cd0 _$$1000 00401cd0 f utilrnd.obj - 0001:00000dd0 _$$8000 00401dd0 f utilrnd.obj - 0001:00000af0 _$$8000 00401af0 f utilmem.obj - 0001:00000b00 _$$1000 00401b00 f utilmem.obj - 0001:000007f0 _$$1000 004017f0 f utilint.obj - 0001:000008e0 _$$8000 004018e0 f utilint.obj - 0001:00000510 _$$8000 00401510 f utilerro.obj - 0001:00000740 _$$1000 00401740 f utilerro.obj - 0001:00000750 _$$9000 00401750 f utilerro.obj - 0001:00000770 _$$a000 00401770 f utilerro.obj - 0001:00000780 _$$b000 00401780 f utilerro.obj - 0001:000003d0 _$$1000 004013d0 f utilcopy.obj - 0001:00000500 _$$8000 00401500 f utilcopy.obj - 0001:00000330 _$$8000 00401330 f base.obj - 0001:00000340 _$$1000 00401340 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:0000e0e8 __before 0040f0e8 f LIBC:heapadd.obj - 0001:0000dbb3 _flsall 0040ebb3 f LIBC:fflush.obj - 0001:0000d89f __heap_new_region 0040e89f f LIBC:heapgrow.obj - 0001:0000d5fd __heap_grow_emptylist 0040e5fd f LIBC:heapinit.obj - 0001:0000d2b1 _getSystemCP 0040e2b1 f LIBC:mbctype.obj - 0001:0000d2ec _CPtoLCID 0040e2ec f LIBC:mbctype.obj - 0001:0000d32b _setSBCS 0040e32b f LIBC:mbctype.obj - 0001:0000d0e7 _parse_cmdline 0040e0e7 f LIBC:stdargv.obj - 0001:0000cf59 _xcptlookup 0040df59 f LIBC:winxfltr.obj - 0001:0000cd5c __unwind_handler 0040dd5c f LIBC:exsup.obj - 0001:0000cc5f _write_char 0040dc5f f LIBC:output.obj - 0001:0000cc9f _write_multi_char 0040dc9f f LIBC:output.obj - 0001:0000ccd0 _write_string 0040dcd0 f LIBC:output.obj - 0001:0000cd07 _get_int_arg 0040dd07 f LIBC:output.obj - 0001:0000cd16 _get_int64_arg 0040dd16 f LIBC:output.obj - 0001:0000cd2a _get_short_arg 0040dd2a f LIBC:output.obj - 0001:0000c1c9 __heap_expand_block 0040d1c9 f LIBC:realloc.obj - 0001:0000c034 _doexit 0040d034 f LIBC:crt0dat.obj - 0001:0000c0b3 __initterm 0040d0b3 f LIBC:crt0dat.obj - -FIXUPS: ce6b 2c5 1f d 23 23 fffffe56 12 11 11 5d 12 fffffe8a c 5 10 10 -FIXUPS: cf5b 1c 9 15 f 1f 9 fffffed0 14 c ffffffcf ffffff46 1e 12 44 13 -FIXUPS: d7e2 6a 30 14 16 11 ab 17 ff 96 14 1c 2d 16 1d 1b cb 3a 37 fffff662 -FIXUPS: d39c 46 29 fffffe36 2d f e c 3d 55 fffffdbe 16 16e3 ffffff6f 18 -FIXUPS: e6d7 d 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 -FIXUPS: dfd2 2a 11 fffffdf5 ffffff4e fffff7c8 4c 9b 1d 6d 10 6b 4f 24 1750 -FIXUPS: eed7 18 a1 3e 24 d 41 34 fffffd88 d 2b 1a 1f fffffc99 b 21 42 37 -FIXUPS: ebda 19 2b e fffffc55 c 75 d 96 d c 32 fffffe42 ffff2821 c a 1e -FIXUPS: 1091 1f 1e 18 b 5 5 17 30 e56f ffffff8c c d 20 d ffffff40 b b 1b -FIXUPS: f3f9 ffffffaf 26 ffffff9d ffffffdf fffffead f3 fffffe7e fffffd4f -FIXUPS: 1dd1 21 12 d fffffb9d ef 54 fffffdc3 b 22 21 fffffc14 1f 11 1e -FIXUPS: 15c0 1b6 b 5 5 21 fffffd55 fffffca4 11 ee 30 5d 23 d fffffe10 fffffea4 -FIXUPS: 1026 f0c 94 11 4e 33 13 f 25b 6d 204 49 f 2e 95 fffff4c4 11 2f -FIXUPS: 1b76 1e 12 10 53 35 1b 28 27 5e 1e d 3a 15 26 adf f 7a 50 7f 20 -FIXUPS: 2aae 65 a 2b 23 18 16 1a 8 e 16 19 6 223 13 d fffff9e0 fffffe6b -FIXUPS: 2734 6c 51 fffff641 32 26 9 54 1218 11 d 81 6a 12 78 12 33 27 21 -FIXUPS: 6cb3 1b 1c 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9264 -FIXUPS: 2856 7ec5 9 d 13 d ffffeeb4 11 1e 6e 17 68 3c 6c 16 41 16 1d 46 -FIXUPS: 99b1 13 d ffff9494 11 52 8 28 8 11c 18 3f 1b 1c 728c 14 15 20 4a -FIXUPS: a3cf 20 2b 3f 6 20 2b 22 27 6 1c 1d 3f 1a 12 11 b 58 e 12 35 1c -FIXUPS: a6ba 18 34 b 5 fffff668 ed 69 2e 22 2e 4b 36 17 27 34 1c 17 8 a -FIXUPS: a094 28 11 15 8 8 12 50 28 18 40 1f 38 45 3e 10 17 7bc c a4 c 74 -FIXUPS: 9a05 11 2f 11 1e 12 22 21 25 14 23 14 14 25 11 18 3d 1c d 14 57 -FIXUPS: 9c92 7 a f 2a 3e 1236 2b c 24 b 4d 1a 22 24 13 3a b 3b 1a d4 76 -FIXUPS: b277 68 34 7 70 28 34 b 5 5 17 fffff40c 23 89 9e 7f 10d2 4a 4d -FIXUPS: bb61 13 d 13 d 13 d fffff015 1f 11 2e 15 ab d 2c 19 20 12 5d 26 -FIXUPS: ae0c 24 1e 11 b 1e 82 10 28 6e6 1e 2f 22 3b 23 38 20 1e a b 28 -FIXUPS: b7b2 b 27 5b 6 15 b 17 c 11 10 1e 32 80 1d 49 34 14 31 38 929 1c -FIXUPS: c3ec 63 28 3c 1e 49 22 78 a 2e 1e 57 5 e d fffff560 fffff854 11 -FIXUPS: b475 11 2f 11 28 9 32 1c 14 1c 21 24 15f9 1f ea 13 62 5 ffffeecf -FIXUPS: bc16 28 7 10 d ac 1f7 dc 52 17 7c 65 c 1e 29 10 1c 47 1d 1d 113 -FIXUPS: c358 d 11 19 3a4 c 31 12 40 16 3c 92 10 18 10 1f 21 10 64 17 28 -FIXUPS: c9f2 3d 10 40 21 16 14 d 11 c 14 c 1c 41 1b diff --git a/kauai/OBJ/WINS/UT.MAP b/kauai/OBJ/WINS/UT.MAP deleted file mode 100644 index ee6bfbad..00000000 --- a/kauai/OBJ/WINS/UT.MAP +++ /dev/null @@ -1,511 +0,0 @@ - ut - - Timestamp is 3070b2f4 (Mon Oct 02 20:50:12 1995) - - Preferred load address is 00400000 - - Start Length Name Class - 0001:00000000 0000b8e4H .text CODE - 0002:00000000 00001940H .bss DATA - 0003:00000000 00000271H .rdata DATA - 0004:00000000 00000ee8H .data DATA - 0004:00000ee8 00000004H .CRT$XCA DATA - 0004:00000eec 00000054H .CRT$XCU DATA - 0004:00000f40 00000004H .CRT$XCZ DATA - 0004:00000f44 00000004H .CRT$XIA DATA - 0004:00000f48 00000004H .CRT$XIC DATA - 0004:00000f4c 00000004H .CRT$XIZ DATA - 0004:00000f50 00000004H .CRT$XPA DATA - 0004:00000f54 00000004H .CRT$XPX DATA - 0004:00000f58 00000004H .CRT$XPZ DATA - 0004:00000f5c 00000004H .CRT$XTA DATA - 0004:00000f60 00000004H .CRT$XTZ DATA - 0005:00000000 00000050H .idata$2 DATA - 0005:00000050 00000014H .idata$3 DATA - 0005:00000064 00000090H .idata$4 DATA - 0005:000000f4 00000090H .idata$5 DATA - 0005:00000184 00000254H .idata$6 DATA - 0007:00000000 00000000H .debug$C DATA - 0007:00000000 00000110H .debug$E DATA - 0007:00000110 00001070H .debug$F DATA - 0007:000014b0 00000000H .debug$G DATA - 0007:000014b0 0000002fH .debug$H DATA - 0007:fffed000 00000000H .debug$P DATA - 0007:fffed000 00000000H .debug$S DATA - 0007:fffed000 00000000H .debug$T DATA - - Address Publics by Value Rva+Base Lib:Object - - 0001:00000000 ?FWouldBe@USAC@@SGHJ@Z 00401000 f utilglob.obj - 0001:00000020 ?FIs@USAC@@UAEHJ@Z 00401020 f utilglob.obj - 0001:00000030 ?Cls@USAC@@UAEJXZ 00401030 f utilglob.obj - 0001:00000100 ??_GBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000100 ??_EBASE@@UAEPAXI@Z 00401100 f utilglob.obj - 0001:00000130 ??_GKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000130 ??_EKCDC@@UAEPAXI@Z 00401130 f utilglob.obj - 0001:00000150 ?FCanDo@KCDC@@UAEHHJ@Z 00401150 f utilglob.obj - 0001:00000190 ?Cls@BASE@@UAEJXZ 00401190 f base.obj - 0001:000001a0 ?FIs@BASE@@UAEHJ@Z 004011a0 f base.obj - 0001:000001c0 ?FWouldBe@BASE@@SGHJ@Z 004011c0 f base.obj - 0001:000001e0 ??0BASE@@QAE@XZ 004011e0 f base.obj - 0001:000001f0 ?AddRef@BASE@@UAEXXZ 004011f0 f base.obj - 0001:00000200 ?Release@BASE@@UAEXXZ 00401200 f base.obj - 0001:00000220 ??2BASE@@SGPAXI@Z 00401220 f base.obj - 0001:00000250 ??3BASE@@SGXPAX@Z 00401250 f base.obj - 0001:00000280 ?FillPb@@YGXPAXJE@Z 00401280 f utilcopy.obj - 0001:000002c0 ?ClearPb@@YGXPAXJ@Z 004012c0 f utilcopy.obj - 0001:000002f0 ?CbEqualRgb@@YGJPAX0J@Z 004012f0 f utilcopy.obj - 0001:00000350 ?CopyPb@@YGXPAX0J@Z 00401350 f utilcopy.obj - 0001:00000380 ?BltPb@@YGXPAX0J@Z 00401380 f utilcopy.obj - 0001:000003f0 ?FWouldBe@ERS@@SGHJ@Z 004013f0 f utilerro.obj - 0001:00000410 ?FIs@ERS@@UAEHJ@Z 00401410 f utilerro.obj - 0001:00000420 ?Cls@ERS@@UAEJXZ 00401420 f utilerro.obj - 0001:00000430 ??0ERS@@QAE@XZ 00401430 f utilerro.obj - 0001:00000460 ?Push@ERS@@UAEXJ@Z 00401460 f utilerro.obj - 0001:000004b0 ?FPop@ERS@@UAEHPAJ@Z 004014b0 f utilerro.obj - 0001:00000500 ?Clear@ERS@@UAEXXZ 00401500 f utilerro.obj - 0001:00000520 ?Cerc@ERS@@UAEJXZ 00401520 f utilerro.obj - 0001:00000530 ?FIn@ERS@@UAEHJ@Z 00401530 f utilerro.obj - 0001:00000580 ?ErcGet@ERS@@UAEJJ@Z 00401580 f utilerro.obj - 0001:000005c0 ?Flush@ERS@@UAEXJ@Z 004015c0 f utilerro.obj - 0001:00000660 ??_EERS@@UAEPAXI@Z 00401660 f utilerro.obj - 0001:00000660 ??_GERS@@UAEPAXI@Z 00401660 f utilerro.obj - 0001:00000690 ?LwDivAway@@YGJJJ@Z 00401690 f utilint.obj - 0001:000006d0 ?SwapBytesBom@@YGXPAXK@Z 004016d0 f utilint.obj - 0001:00000730 ?SwapBytesRglw@@YGXPAXJ@Z 00401730 f utilint.obj - 0001:00000760 ??0USAC@@QAE@XZ 00401760 f utilint.obj - 0001:000007a0 ??_EUSAC@@UAEPAXI@Z 004017a0 f utilint.obj - 0001:000007a0 ??_GUSAC@@UAEPAXI@Z 004017a0 f utilint.obj - 0001:000007c0 ?FAllocPv@@YGHPAPAXJKJ@Z 004017c0 f utilmem.obj - 0001:00000890 ?_FResizePpv@@YGHPAPAXJJKJ@Z 00401890 f utilmem.obj - 0001:00000980 ?FreePpv@@YGXPAPAX@Z 00401980 f utilmem.obj - 0001:000009c0 ?FWouldBe@RND@@SGHJ@Z 004019c0 f utilrnd.obj - 0001:000009e0 ?FIs@RND@@UAEHJ@Z 004019e0 f utilrnd.obj - 0001:000009f0 ?Cls@RND@@UAEJXZ 004019f0 f utilrnd.obj - 0001:00000a00 ?FWouldBe@SFL@@SGHJ@Z 00401a00 f utilrnd.obj - 0001:00000a20 ?FIs@SFL@@UAEHJ@Z 00401a20 f utilrnd.obj - 0001:00000a30 ?Cls@SFL@@UAEJXZ 00401a30 f utilrnd.obj - 0001:00000a40 ??0RND@@QAE@K@Z 00401a40 f utilrnd.obj - 0001:00000a80 ?LwNext@RND@@UAEJJ@Z 00401a80 f utilrnd.obj - 0001:00000ab0 ??0SFL@@QAE@K@Z 00401ab0 f utilrnd.obj - 0001:00000ae0 ??1SFL@@UAE@XZ 00401ae0 f utilrnd.obj - 0001:00000b00 ?Shuffle@SFL@@QAEXJ@Z 00401b00 f utilrnd.obj - 0001:00000b40 ?_ShuffleCore@SFL@@IAEXXZ 00401b40 f utilrnd.obj - 0001:00000b90 ?_FEnsureHq@SFL@@IAEHJ@Z 00401b90 f utilrnd.obj - 0001:00000c00 ?LwNext@SFL@@UAEJJ@Z 00401c00 f utilrnd.obj - 0001:00000c90 ??_ERND@@UAEPAXI@Z 00401c90 f utilrnd.obj - 0001:00000c90 ??_GRND@@UAEPAXI@Z 00401c90 f utilrnd.obj - 0001:00000cb0 ??_ESFL@@UAEPAXI@Z 00401cb0 f utilrnd.obj - 0001:00000cb0 ??_GSFL@@UAEPAXI@Z 00401cb0 f utilrnd.obj - 0001:00000cd0 ?SetRgch@STN@@QAEXPADJ@Z 00401cd0 f utilstr.obj - 0001:00000d10 ?SetSzs@STN@@QAEXPAD@Z 00401d10 f utilstr.obj - 0001:00000d40 ?FGetLw@STN@@QAEHPAJJ@Z 00401d40 f utilstr.obj - 0001:00000e30 ?CchSz@@YGJPAD@Z 00401e30 f utilstr.obj - 0001:00000e60 ?FAllocHq@@YGHPAPAXJKJ@Z 00401e60 f memwin.obj - 0001:00000ed0 ?FResizePhq@@YGHPAPAXJKJ@Z 00401ed0 f memwin.obj - 0001:00000f70 ?FreePhq@@YGXPAPAX@Z 00401f70 f memwin.obj - 0001:00000fa0 ?CbOfHq@@YGJPAX@Z 00401fa0 f memwin.obj - 0001:00000fb0 ?PvLockHq@@YGPAXPAX@Z 00401fb0 f memwin.obj - 0001:00000fc0 ?UnlockHq@@YGXPAX@Z 00401fc0 f memwin.obj - 0001:00001000 ?FWouldBe@GRPB@@SGHJ@Z 00402000 f groups.obj - 0001:00001020 ?FIs@GRPB@@UAEHJ@Z 00402020 f groups.obj - 0001:00001030 ?Cls@GRPB@@UAEJXZ 00402030 f groups.obj - 0001:00001040 ?FWouldBe@GLB@@SGHJ@Z 00402040 f groups.obj - 0001:00001060 ?FIs@GLB@@UAEHJ@Z 00402060 f groups.obj - 0001:00001070 ?Cls@GLB@@UAEJXZ 00402070 f groups.obj - 0001:00001080 ?FWouldBe@GL@@SGHJ@Z 00402080 f groups.obj - 0001:000010a0 ?FIs@GL@@UAEHJ@Z 004020a0 f groups.obj - 0001:000010b0 ?Cls@GL@@UAEJXZ 004020b0 f groups.obj - 0001:000010c0 ??1GRPB@@UAE@XZ 004020c0 f groups.obj - 0001:000010f0 ?_FEnsureSizes@GRPB@@IAEHJJK@Z 004020f0 f groups.obj - 0001:000011d0 ?_FEnsureHqCb@GRPB@@AAEHPAPAXJJPAJ@Z 004021d0 f groups.obj - 0001:000012a0 ?FWriteFlo@GRPB@@UAEHPAUFLO@@FF@Z 004022a0 f groups.obj - 0001:000012f0 ?_FWrite@GRPB@@IAEHPAVBLCK@@PAXJJJ@Z 004022f0 f groups.obj - 0001:000013c0 ??0GLB@@IAE@J@Z 004023c0 f groups.obj - 0001:000013f0 ?QvGet@GLB@@QAEPAXJ@Z 004023f0 f groups.obj - 0001:00001410 ?Get@GLB@@QAEXJPAX@Z 00402410 f groups.obj - 0001:00001430 ?PglNew@GL@@SGPAV1@JJ@Z 00402430 f groups.obj - 0001:00001490 ??0GL@@IAE@J@Z 00402490 f groups.obj - 0001:000014b0 ?FFree@GL@@UAEHJ@Z 004024b0 f groups.obj - 0001:000014d0 ?CbOnFile@GL@@UAEJXZ 004024d0 f groups.obj - 0001:000014e0 ?FWrite@GL@@UAEHPAVBLCK@@FF@Z 004024e0 f groups.obj - 0001:00001550 ?FInsert@GL@@QAEHJPAXJ@Z 00402550 f groups.obj - 0001:000015f0 ?Delete@GL@@UAEXJ@Z 004025f0 f groups.obj - 0001:00001600 ?Delete@GL@@QAEXJJ@Z 00402600 f groups.obj - 0001:00001640 ?FAdd@GL@@UAEHPAXPAJ@Z 00402640 f groups.obj - 0001:00001670 ?FEnsureSpace@GL@@QAEHJK@Z 00402670 f groups.obj - 0001:000016c0 ??_EGRPB@@UAEPAXI@Z 004026c0 f groups.obj - 0001:000016c0 ??_GGRPB@@UAEPAXI@Z 004026c0 f groups.obj - 0001:000016e0 ??_EGLB@@UAEPAXI@Z 004026e0 f groups.obj - 0001:000016e0 ??_GGLB@@UAEPAXI@Z 004026e0 f groups.obj - 0001:00001700 ??_GGL@@UAEPAXI@Z 00402700 f groups.obj - 0001:00001700 ??_EGL@@UAEPAXI@Z 00402700 f groups.obj - 0001:00001760 ?FWouldBe@CODM@@SGHJ@Z 00402760 f codec.obj - 0001:00001780 ?FIs@CODM@@UAEHJ@Z 00402780 f codec.obj - 0001:00001790 ?Cls@CODM@@UAEJXZ 00402790 f codec.obj - 0001:000017a0 ?FWouldBe@CODC@@SGHJ@Z 004027a0 f codec.obj - 0001:000017c0 ??0CODM@@QAE@PAVCODC@@J@Z 004027c0 f codec.obj - 0001:00001800 ??1CODM@@UAE@XZ 00402800 f codec.obj - 0001:00001880 ?FRegisterCodec@CODM@@UAEHPAVCODC@@@Z 00402880 f codec.obj - 0001:000018d0 ?FCanDo@CODM@@UAEHJH@Z 004028d0 f codec.obj - 0001:00001900 ?FGetCfmtFromBlck@CODM@@UAEHPAVBLCK@@PAJ@Z 00402900 f codec.obj - 0001:00001980 ?_FFindCodec@CODM@@MAEHHJPAPAVCODC@@@Z 00402980 f codec.obj - 0001:00001a30 ?_FCodePhq@CODM@@MAEHJPAPAX@Z 00402a30 f codec.obj - 0001:00001b50 ?_FCode@CODM@@MAEHJPAXJ0JPAJ@Z 00402b50 f codec.obj - 0001:00001d60 ??_ECODM@@UAEPAXI@Z 00402d60 f codec.obj - 0001:00001d60 ??_GCODM@@UAEPAXI@Z 00402d60 f codec.obj - 0001:00001d80 ?FWouldBe@KCDC@@SGHJ@Z 00402d80 f codkauai.obj - 0001:00001da0 ?FIs@KCDC@@UAEHJ@Z 00402da0 f codkauai.obj - 0001:00001db0 ?Cls@KCDC@@UAEJXZ 00402db0 f codkauai.obj - 0001:00001dc0 ?FConvert@KCDC@@UAEHHJPAXJ0JPAJ@Z 00402dc0 f codkauai.obj - 0001:00001e40 ?Set@BITA@@QAEXPAXJ@Z 00402e40 f codkauai.obj - 0001:00001e60 ?FWriteBits@BITA@@QAEHKJ@Z 00402e60 f codkauai.obj - 0001:00001f20 ?FWriteLogEncoded@BITA@@QAEHK@Z 00402f20 f codkauai.obj - 0001:00001f70 ?_FEncode@KCDC@@IAEHPAXJ0JPAJ@Z 00402f70 f codkauai.obj - 0001:00002280 ?_FDecode@KCDC@@IAEHPAXJ0JPAJ@Z 00403280 f codkauai.obj - 0001:00005bb0 ?_FEncode2@KCDC@@IAEHPAXJ0JPAJ@Z 00406bb0 f codkauai.obj - 0001:00005f90 ?_FDecode2@KCDC@@IAEHPAXJ0JPAJ@Z 00406f90 f codkauai.obj - 0001:00008550 ?FWouldBe@BLCK@@SGHJ@Z 00409550 f file.obj - 0001:00008570 ?FIs@BLCK@@UAEHJ@Z 00409570 f file.obj - 0001:00008580 ?Cls@BLCK@@UAEJXZ 00409580 f file.obj - 0001:000085d0 ?FReadRgb@FLO@@QAEHPAXJJ@Z 004095d0 f file.obj - 0001:00008620 ?FWriteRgb@FLO@@QAEHPAXJJ@Z 00409620 f file.obj - 0001:00008670 ??0BLCK@@QAE@PAUFLO@@H@Z 00409670 f file.obj - 0001:000086c0 ??1BLCK@@UAE@XZ 004096c0 f file.obj - 0001:000086e0 ?Free@BLCK@@QAEXXZ 004096e0 f file.obj - 0001:00008710 ?Cb@BLCK@@QAEJH@Z 00409710 f file.obj - 0001:00008730 ?FReadRgb@BLCK@@QAEHPAXJJH@Z 00409730 f file.obj - 0001:000087c0 ?FWriteRgb@BLCK@@QAEHPAXJJH@Z 004097c0 f file.obj - 0001:00008880 ??_EBLCK@@UAEPAXI@Z 00409880 f file.obj - 0001:00008880 ??_GBLCK@@UAEPAXI@Z 00409880 f file.obj - 0001:000088f0 ?_FOpen@FIL@@IAEHHK@Z 004098f0 f filewin.obj - 0001:000089f0 ?_SetFpPos@FIL@@IAEXJ@Z 004099f0 f filewin.obj - 0001:00008a60 ?FReadRgb@FIL@@QAEHPAXJJ@Z 00409a60 f filewin.obj - 0001:00008b10 ?FWriteRgb@FIL@@QAEHPAXJJ@Z 00409b10 f filewin.obj - 0001:00008bf0 ?FWouldBe@FNI@@SGHJ@Z 00409bf0 f fniwin.obj - 0001:00008c10 ?FIs@FNI@@UAEHJ@Z 00409c10 f fniwin.obj - 0001:00008c20 ?Cls@FNI@@UAEJXZ 00409c20 f fniwin.obj - 0001:00008c30 ?SetNil@FNI@@QAEXXZ 00409c30 f fniwin.obj - 0001:00008c40 ??0FNI@@QAE@XZ 00409c40 f fniwin.obj - 0001:00008cb0 ??_GFNI@@UAEPAXI@Z 00409cb0 f fniwin.obj - 0001:00008cb0 ??_EFNI@@UAEPAXI@Z 00409cb0 f fniwin.obj - 0001:00008cd0 _main 00409cd0 f ut.obj - 0001:00008dd0 ?FFindPrime@@YGHJJPAJ0@Z 00409dd0 f ut.obj - 0001:00008fc6 _timeGetTime@0 00409fc6 winmm:WINMM.dll - 0001:00008fcc __onexit 00409fcc f LIBC:onexit.obj - 0001:00009042 _atexit 0040a042 f LIBC:onexit.obj - 0001:00009054 ___onexitinit 0040a054 f LIBC:onexit.obj - 0001:0000908a __purecall 0040a08a f LIBC:purevirt.obj - 0001:00009095 _printf 0040a095 f LIBC:printf.obj - 0001:000090d1 _mainCRTStartup 0040a0d1 f LIBC:crt0.obj - 0001:000091ca __amsg_exit 0040a1ca f LIBC:crt0.obj - 0001:000091ea __cinit 0040a1ea f LIBC:crt0dat.obj - 0001:0000921a _exit 0040a21a f LIBC:crt0dat.obj - 0001:0000922b __exit 0040a22b f LIBC:crt0dat.obj - 0001:000092db _realloc 0040a2db f LIBC:realloc.obj - 0001:0000942d __msize 0040a42d f LIBC:msize.obj - 0001:0000943e _malloc 0040a43e f LIBC:malloc.obj - 0001:00009451 __nh_malloc 0040a451 f LIBC:malloc.obj - 0001:00009510 __heap_split_block 0040a510 f LIBC:malloc.obj - 0001:00009555 __stbuf 0040a555 f LIBC:_sftbuf.obj - 0001:000095d6 __ftbuf 0040a5d6 f LIBC:_sftbuf.obj - 0001:0000961c __output 0040a61c f LIBC:output.obj - 0001:00009f44 __global_unwind2 0040af44 f LIBC:exsup.obj - 0001:00009f86 __local_unwind2 0040af86 f LIBC:exsup.obj - 0001:00009fe0 __abnormal_termination 0040afe0 f LIBC:exsup.obj - 0001:0000a003 __XcptFilter 0040b003 f LIBC:winxfltr.obj - 0001:0000a18e __setenvp 0040b18e f LIBC:stdenvp.obj - 0001:0000a259 __setargv 0040b259 f LIBC:stdargv.obj - 0001:0000a557 __setmbcp 0040b557 f LIBC:mbctype.obj - 0001:0000a6e5 ___initmbctable 0040b6e5 f LIBC:mbctype.obj - 0001:0000a6f0 __ioinit 0040b6f0 f LIBC:ioinit.obj - 0001:0000a7de __heap_init 0040b7de f LIBC:heapinit.obj - 0001:0000a85b ___getempty 0040b85b f LIBC:heapinit.obj - 0001:0000a888 __except_handler3 0040b888 f LIBC:exsup3.obj - 0001:0000a936 __seh_longjmp_unwind@4 0040b936 f LIBC:exsup3.obj - 0001:0000a951 __FF_MSGBANNER 0040b951 f LIBC:crt0msg.obj - 0001:0000a977 __NMSG_WRITE 0040b977 f LIBC:crt0msg.obj - 0001:0000a9cf _free 0040b9cf f LIBC:free.obj - 0001:0000aa37 __heap_abort 0040ba37 f LIBC:hpabort.obj - 0001:0000aa42 __heap_grow 0040ba42 f LIBC:heapgrow.obj - 0001:0000ab2b __heap_grow_region 0040bb2b f LIBC:heapgrow.obj - 0001:0000abd8 __heap_free_region 0040bbd8 f LIBC:heapgrow.obj - 0001:0000ac12 __heap_search 0040bc12 f LIBC:heapsrch.obj - 0001:0000ad02 _fflush 0040bd02 f LIBC:fflush.obj - 0001:0000ad4e __flush 0040bd4e f LIBC:fflush.obj - 0001:0000adb0 __flushall 0040bdb0 f LIBC:fflush.obj - 0001:0000ae25 ___endstdio 0040be25 f LIBC:fflush.obj - 0001:0000ae39 __isatty 0040be39 f LIBC:isatty.obj - 0001:0000ae53 _wctomb 0040be53 f LIBC:wctomb.obj - 0001:0000aecc __aulldiv 0040becc f LIBC:ulldiv.obj - 0001:0000af2c __aullrem 0040bf2c f LIBC:ullrem.obj - 0001:0000af96 __flsbuf 0040bf96 f LIBC:_flsbuf.obj - 0001:0000b0a2 __heap_addblock 0040c0a2 f LIBC:heapadd.obj - 0001:0000b359 __commit 0040c359 f LIBC:commit.obj - 0001:0000b3a6 __write 0040c3a6 f LIBC:write.obj - 0001:0000b53f __fcloseall 0040c53f f LIBC:closeall.obj - 0001:0000b570 __fptrap 0040c570 f LIBC:crt0fp.obj - 0001:0000b57b __lseek 0040c57b f LIBC:lseek.obj - 0001:0000b5f0 __getbuf 0040c5f0 f LIBC:_getbuf.obj - 0001:0000b63b __heap_findaddr 0040c63b f LIBC:findaddr.obj - 0001:0000b6a5 __free_osfhnd 0040c6a5 f LIBC:osfinfo.obj - 0001:0000b712 __get_osfhandle 0040c712 f LIBC:osfinfo.obj - 0001:0000b74a __dosmaperr 0040c74a f LIBC:dosmap.obj - 0001:0000b7b3 _fclose 0040c7b3 f LIBC:fclose.obj - 0001:0000b80f __close 0040c80f f LIBC:close.obj - 0001:0000b8a5 __freebuf 0040c8a5 f LIBC:_freebuf.obj - 0001:0000b8de _RtlUnwind@16 0040c8de kernel32:KERNEL32.dll - 0002:00000000 ?vcodmUtil@@3VCODM@@A 0040d000 utilglob.obj - 0002:00000018 ?vmutxMem@@3VMUTX@@A 0040d018 utilglob.obj - 0002:00000030 ?vkcdcUtil@@3VKCDC@@A 0040d030 utilglob.obj - 0002:00000038 ?_usac@@3VUSAC@@A 0040d038 utilglob.obj - 0002:00000050 ?vsflUtil@@3VSFL@@A 0040d050 utilglob.obj - 0002:00000070 ?vrndUtil@@3VRND@@A 0040d070 utilglob.obj - 0002:000000a0 ?_ers@@3VERS@@A 0040d0a0 utilerro.obj - 0002:00000138 ?_mpchschsLower@@3QADA 0040d138 utilstr.obj - 0002:00000240 ?_mpchschsUpper@@3QADA 0040d240 utilstr.obj - 0002:00000360 ?_pcflFirst@CFL@@0PAV1@A 0040d360 chunk.obj - 0002:00000388 ?_pfilFirst@FIL@@1PAV1@A 0040d388 file.obj - 0002:00000390 ?_mutxList@FIL@@1VMUTX@@A 0040d390 file.obj - 0002:000003b8 ?_fniTemp@@3VFNI@@A 0040d3b8 fniwin.obj - 0002:0000062c __heap_descpages 0040d62c - 0002:00000630 __heap_regions 0040d630 - 0002:00000930 __bufin 0040d930 - 0002:00001930 ___onexitend 0040e930 - 0002:00001934 __FPinit 0040e934 - 0002:00001938 ___onexitbegin 0040e938 - 0002:0000193c __acmdln 0040e93c - 0003:00000058 ??_7KCDC@@6B@ 0040f058 utilglob.obj - 0003:00000078 ??_7BASE@@6B@ 0040f078 utilglob.obj - 0003:00000090 ??_7ERS@@6B@ 0040f090 utilerro.obj - 0003:000000c0 ??_7USAC@@6B@ 0040f0c0 utilint.obj - 0003:000000d8 ??_7RND@@6B@ 0040f0d8 utilrnd.obj - 0003:000000f0 ??_7SFL@@6B@ 0040f0f0 utilrnd.obj - 0003:00000108 ?vrgchHex@@3QBDB 0040f108 utilstr.obj - 0003:00000120 ??_7GRPB@@6B@ 0040f120 groups.obj - 0003:00000148 ??_7GLB@@6B@ 0040f148 groups.obj - 0003:00000178 ??_7GL@@6B@ 0040f178 groups.obj - 0003:000001a8 ??_7CODM@@6B@ 0040f1a8 codec.obj - 0003:000001d8 ??_7BLCK@@6B@ 0040f1d8 file.obj - 0003:000001f0 ??_7FNI@@6B@ 0040f1f0 fniwin.obj - 0003:00000218 ___lookuptable 0040f218 LIBC:output.obj - 0004:00000000 ?vpcodmUtil@@3PAVCODM@@A 00410000 utilglob.obj - 0004:00000004 ?vpusac@@3PAVUSAC@@A 00410004 utilglob.obj - 0004:00000008 ?vpers@@3PAVERS@@A 00410008 utilerro.obj - 0004:0000000c ?vpfnlib@@3P6GJJJ@ZA 0041000c utilmem.obj - 0004:00000010 ?_fInLiberator@@3HA 00410010 utilmem.obj - 0004:00000118 ?_rtiLast@CFL@@0JA 00410118 chunk.obj - 0004:0000011c ?vftgCreator@FIL@@2JA 0041011c file.obj - 0004:00000120 ?vftgTemp@@3JA 00410120 fniwin.obj - 0004:00000128 ??_C@_0CD@PKBF@prime?5?$DN?5?$CFld?0?5primitive?5root?5?$DN?5?$CFl@ 00410128 ut.obj - 0004:0000014c __aenvptr 0041014c LIBC:crt0.obj - 0004:00000150 __wenvptr 00410150 LIBC:crt0.obj - 0004:00000154 __aexit_rtn 00410154 LIBC:crt0.obj - 0004:00000158 _errno 00410158 LIBC:crt0dat.obj - 0004:0000015c __doserrno 0041015c LIBC:crt0dat.obj - 0004:00000160 __umaskval 00410160 LIBC:crt0dat.obj - 0004:00000164 __osver 00410164 LIBC:crt0dat.obj - 0004:00000168 __winver 00410168 LIBC:crt0dat.obj - 0004:0000016c __winmajor 0041016c LIBC:crt0dat.obj - 0004:00000170 __winminor 00410170 LIBC:crt0dat.obj - 0004:00000174 ___argc 00410174 LIBC:crt0dat.obj - 0004:00000178 ___argv 00410178 LIBC:crt0dat.obj - 0004:0000017c ___wargv 0041017c LIBC:crt0dat.obj - 0004:00000180 __environ 00410180 LIBC:crt0dat.obj - 0004:00000184 ___initenv 00410184 LIBC:crt0dat.obj - 0004:00000188 __wenviron 00410188 LIBC:crt0dat.obj - 0004:0000018c ___winitenv 0041018c LIBC:crt0dat.obj - 0004:00000190 __pgmptr 00410190 LIBC:crt0dat.obj - 0004:00000194 __wpgmptr 00410194 LIBC:crt0dat.obj - 0004:00000198 __exitflag 00410198 LIBC:crt0dat.obj - 0004:0000019c __C_Termination_Done 0041019c LIBC:crt0dat.obj - 0004:000001a0 __pnhHeap 004101a0 LIBC:malloc.obj - 0004:000001a8 __stdbuf 004101a8 LIBC:_sftbuf.obj - 0004:000001b0 __iob 004101b0 LIBC:_file.obj - 0004:00000430 __lastiob 00410430 LIBC:_file.obj - 0004:0000043c ___nullstring 0041043c LIBC:output.obj - 0004:00000450 ___wnullstring 00410450 LIBC:output.obj - 0004:00000458 __XcptActTab 00410458 LIBC:winxfltr.obj - 0004:000004d0 __First_FPE_Indx 004104d0 LIBC:winxfltr.obj - 0004:000004d4 __Num_FPE 004104d4 LIBC:winxfltr.obj - 0004:000004d8 __XcptActTabCount 004104d8 LIBC:winxfltr.obj - 0004:000004dc __fpecode 004104dc LIBC:winxfltr.obj - 0004:000004e0 __pxcptinfoptrs 004104e0 LIBC:winxfltr.obj - 0004:000004e8 __mbctype 004104e8 LIBC:mbctype.obj - 0004:000005ec ___mbcodepage 004105ec LIBC:mbctype.obj - 0004:000005f0 ___mblcid 004105f0 LIBC:mbctype.obj - 0004:000005f8 ___mbulinfo 004105f8 LIBC:mbctype.obj - 0004:00000700 __nhandle 00410700 LIBC:ioinit.obj - 0004:00000708 __osfile 00410708 LIBC:ioinit.obj - 0004:00000748 __osfhnd 00410748 LIBC:ioinit.obj - 0004:00000848 __pipech 00410848 LIBC:ioinit.obj - 0004:00000888 __heap_desc 00410888 LIBC:heapinit.obj - 0004:0000089c __heap_resetsize 0041089c LIBC:heapinit.obj - 0004:000008a0 __amblksiz 004108a0 LIBC:heapinit.obj - 0004:000008a4 __heap_regionsize 004108a4 LIBC:heapinit.obj - 0004:000008a8 __heap_maxregsize 004108a8 LIBC:heapinit.obj - 0004:00000b18 __adbgmsg 00410b18 LIBC:crt0msg.obj - 0004:00000b1c __newmode 00410b1c LIBC:_newmode.obj - 0004:00000b20 __cflush 00410b20 LIBC:fflush.obj - 0004:00000b28 __cfltcvt_tab 00410b28 LIBC:cmiscdat.obj - 0004:00000b40 __pctype 00410b40 LIBC:ctype.obj - 0004:00000b44 __pwctype 00410b44 LIBC:ctype.obj - 0004:00000b48 __ctype 00410b48 LIBC:ctype.obj - 0004:00000d50 ___lc_handle 00410d50 LIBC:nlsdata2.obj - 0004:00000d68 ___lc_codepage 00410d68 LIBC:nlsdata2.obj - 0004:00000d6c ___mb_cur_max 00410d6c LIBC:nlsdata1.obj - 0004:00000d74 ___decimal_point 00410d74 LIBC:nlsdata1.obj - 0004:00000d78 ___decimal_point_length 00410d78 LIBC:nlsdata1.obj - 0004:00000ee8 ___xc_a 00410ee8 LIBC:crt0init.obj - 0004:00000f40 ___xc_z 00410f40 LIBC:crt0init.obj - 0004:00000f44 ___xi_a 00410f44 LIBC:crt0init.obj - 0004:00000f4c ___xi_z 00410f4c LIBC:crt0init.obj - 0004:00000f50 ___xp_a 00410f50 LIBC:crt0init.obj - 0004:00000f58 ___xp_z 00410f58 LIBC:crt0init.obj - 0004:00000f5c ___xt_a 00410f5c LIBC:crt0init.obj - 0004:00000f60 ___xt_z 00410f60 LIBC:crt0init.obj - 0005:00000000 KERNEL32_IMPORT_DESCRIPTOR 00411000 kernel32:KERNEL32.dll - 0005:00000014 comdlg32_IMPORT_DESCRIPTOR 00411014 comdlg32:comdlg32.dll - 0005:00000028 USER32_IMPORT_DESCRIPTOR 00411028 user32:USER32.dll - 0005:0000003c WINMM_IMPORT_DESCRIPTOR 0041103c winmm:WINMM.dll - 0005:00000050 NULL_IMPORT_DESCRIPTOR 00411050 kernel32:KERNEL32.dll - 0005:000000f4 __imp__DeleteCriticalSection@4 004110f4 kernel32:KERNEL32.dll - 0005:000000f8 __imp__GlobalAlloc@8 004110f8 kernel32:KERNEL32.dll - 0005:000000fc __imp__GlobalFree@4 004110fc kernel32:KERNEL32.dll - 0005:00000100 __imp__LeaveCriticalSection@4 00411100 kernel32:KERNEL32.dll - 0005:00000104 __imp__EnterCriticalSection@4 00411104 kernel32:KERNEL32.dll - 0005:00000108 __imp__GlobalReAlloc@12 00411108 kernel32:KERNEL32.dll - 0005:0000010c __imp__WideCharToMultiByte@32 0041110c kernel32:KERNEL32.dll - 0005:00000110 __imp__CreateFileA@28 00411110 kernel32:KERNEL32.dll - 0005:00000114 __imp__CloseHandle@4 00411114 kernel32:KERNEL32.dll - 0005:00000118 __imp__FlushFileBuffers@4 00411118 kernel32:KERNEL32.dll - 0005:0000011c __imp__SetFilePointer@16 0041111c kernel32:KERNEL32.dll - 0005:00000120 __imp__ReadFile@20 00411120 kernel32:KERNEL32.dll - 0005:00000124 __imp__WriteFile@20 00411124 kernel32:KERNEL32.dll - 0005:00000128 __imp__GetLastError@0 00411128 kernel32:KERNEL32.dll - 0005:0000012c __imp__InitializeCriticalSection@4 0041112c kernel32:KERNEL32.dll - 0005:00000130 __imp__ExitProcess@4 00411130 kernel32:KERNEL32.dll - 0005:00000134 __imp__GetVersion@0 00411134 kernel32:KERNEL32.dll - 0005:00000138 __imp__SetStdHandle@8 00411138 kernel32:KERNEL32.dll - 0005:0000013c __imp__GetCommandLineA@0 0041113c kernel32:KERNEL32.dll - 0005:00000140 __imp__VirtualAlloc@16 00411140 kernel32:KERNEL32.dll - 0005:00000144 __imp__GetStdHandle@4 00411144 kernel32:KERNEL32.dll - 0005:00000148 __imp__GetCPInfo@8 00411148 kernel32:KERNEL32.dll - 0005:0000014c __imp__GetOEMCP@0 0041114c kernel32:KERNEL32.dll - 0005:00000150 __imp__GetStartupInfoA@4 00411150 kernel32:KERNEL32.dll - 0005:00000154 __imp__GetFileType@4 00411154 kernel32:KERNEL32.dll - 0005:00000158 __imp__GetEnvironmentStrings@0 00411158 kernel32:KERNEL32.dll - 0005:0000015c __imp__GetModuleFileNameA@12 0041115c kernel32:KERNEL32.dll - 0005:00000160 __imp__GetACP@0 00411160 kernel32:KERNEL32.dll - 0005:00000164 __imp__VirtualFree@12 00411164 kernel32:KERNEL32.dll - 0005:00000168 __imp__RtlUnwind@16 00411168 kernel32:KERNEL32.dll - 0005:0000016c __imp__UnhandledExceptionFilter@4 0041116c kernel32:KERNEL32.dll - 0005:00000170 \177KERNEL32_NULL_THUNK_DATA 00411170 kernel32:KERNEL32.dll - 0005:00000174 \177USER32_NULL_THUNK_DATA 00411174 user32:USER32.dll - 0005:00000178 __imp__timeGetTime@0 00411178 winmm:WINMM.dll - 0005:0000017c \177WINMM_NULL_THUNK_DATA 0041117c winmm:WINMM.dll - 0005:00000180 \177comdlg32_NULL_THUNK_DATA 00411180 comdlg32:comdlg32.dll - - entry point at 0001:000090d1 - - Static symbols - - 0001:00008fb0 _$$1000 00409fb0 f test.obj - 0001:00008fc0 _$$8000 00409fc0 f test.obj - 0001:00008f90 _$$8000 00409f90 f ut.obj - 0001:00008fa0 _$$1000 00409fa0 f ut.obj - 0001:00008be0 _$$8000 00409be0 f fniwin.obj - 0001:00008c70 _$$1000 00409c70 f fniwin.obj - 0001:00008c80 _$$9000 00409c80 f fniwin.obj - 0001:00008c90 _$$a000 00409c90 f fniwin.obj - 0001:00008ca0 _$$b000 00409ca0 f fniwin.obj - 0001:000088a0 ?_HfileOpen@@YGPAXPADHK@Z 004098a0 f filewin.obj - 0001:00008a50 _$$1000 00409a50 f filewin.obj - 0001:00008bd0 _$$8000 00409bd0 f filewin.obj - 0001:00008540 _$$8000 00409540 f file.obj - 0001:00008590 _$$1000 00409590 f file.obj - 0001:000085a0 ?_FRangeIn@@YGHJJJ@Z 004095a0 f file.obj - 0001:00008850 _$$9000 00409850 f file.obj - 0001:00008860 _$$a000 00409860 f file.obj - 0001:00008870 _$$b000 00409870 f file.obj - 0001:00008520 _$$1000 00409520 f crf.obj - 0001:00008530 _$$8000 00409530 f crf.obj - 0001:00002270 _$$1000 00403270 f codkauai.obj - 0001:00008510 _$$8000 00409510 f codkauai.obj - 0001:00001a20 _$$1000 00402a20 f codec.obj - 0001:00001d50 _$$8000 00402d50 f codec.obj - 0001:00001740 _$$1000 00402740 f chunk.obj - 0001:00001750 _$$8000 00402750 f chunk.obj - 0001:00001720 _$$1000 00402720 f groups2.obj - 0001:00001730 _$$8000 00402730 f groups2.obj - 0001:000011c0 _$$1000 004021c0 f groups.obj - 0001:000016b0 _$$8000 004026b0 f groups.obj - 0001:00000fe0 _$$8000 00401fe0 f memwin.obj - 0001:00000ff0 _$$1000 00401ff0 f memwin.obj - 0001:00000d30 _$$1000 00401d30 f utilstr.obj - 0001:00000e50 _$$8000 00401e50 f utilstr.obj - 0001:00000b80 _$$1000 00401b80 f utilrnd.obj - 0001:00000c80 _$$8000 00401c80 f utilrnd.obj - 0001:000009a0 _$$8000 004019a0 f utilmem.obj - 0001:000009b0 _$$1000 004019b0 f utilmem.obj - 0001:000006c0 _$$1000 004016c0 f utilint.obj - 0001:00000790 _$$8000 00401790 f utilint.obj - 0001:000003e0 _$$8000 004013e0 f utilerro.obj - 0001:00000610 _$$1000 00401610 f utilerro.obj - 0001:00000620 _$$9000 00401620 f utilerro.obj - 0001:00000640 _$$a000 00401640 f utilerro.obj - 0001:00000650 _$$b000 00401650 f utilerro.obj - 0001:000002e0 _$$1000 004012e0 f utilcopy.obj - 0001:000003d0 _$$8000 004013d0 f utilcopy.obj - 0001:00000260 _$$8000 00401260 f base.obj - 0001:00000270 _$$1000 00401270 f base.obj - 0001:00000170 _$$8000 00401170 f util.obj - 0001:00000180 _$$1000 00401180 f util.obj - 0001:00000040 _$$8000 00401040 f utilglob.obj - 0001:000000a0 _$$9000 004010a0 f utilglob.obj - 0001:000000e0 _$$a000 004010e0 f utilglob.obj - 0001:000000f0 _$$b000 004010f0 f utilglob.obj - 0001:00000120 _$$1000 00401120 f utilglob.obj - 0001:0000b2f0 __before 0040c2f0 f LIBC:heapadd.obj - 0001:0000adbb _flsall 0040bdbb f LIBC:fflush.obj - 0001:0000aaa7 __heap_new_region 0040baa7 f LIBC:heapgrow.obj - 0001:0000a805 __heap_grow_emptylist 0040b805 f LIBC:heapinit.obj - 0001:0000a4b9 _getSystemCP 0040b4b9 f LIBC:mbctype.obj - 0001:0000a4f4 _CPtoLCID 0040b4f4 f LIBC:mbctype.obj - 0001:0000a533 _setSBCS 0040b533 f LIBC:mbctype.obj - 0001:0000a2ef _parse_cmdline 0040b2ef f LIBC:stdargv.obj - 0001:0000a161 _xcptlookup 0040b161 f LIBC:winxfltr.obj - 0001:00009f64 __unwind_handler 0040af64 f LIBC:exsup.obj - 0001:00009e67 _write_char 0040ae67 f LIBC:output.obj - 0001:00009ea7 _write_multi_char 0040aea7 f LIBC:output.obj - 0001:00009ed8 _write_string 0040aed8 f LIBC:output.obj - 0001:00009f0f _get_int_arg 0040af0f f LIBC:output.obj - 0001:00009f1e _get_int64_arg 0040af1e f LIBC:output.obj - 0001:00009f32 _get_short_arg 0040af32 f LIBC:output.obj - 0001:000093d1 __heap_expand_block 0040a3d1 f LIBC:realloc.obj - 0001:0000923c _doexit 0040a23c f LIBC:crt0dat.obj - 0001:000092bb __initterm 0040a2bb f LIBC:crt0dat.obj - -FIXUPS: a357 d 23 23 fffffe56 12 11 11 5d 12 fffffe8a c 5 10 10 5 1c 9 -FIXUPS: a19d f 1f 9 fffffec9 18 10 ffffffc8 ffffff46 1e 12 44 13 13 9e7 -FIXUPS: aa84 14 16 11 ab 17 ff 96 14 1c 2d 16 1d 1b cb 3a 37 fffff662 45 -FIXUPS: a5ea 29 fffffe36 2d f e c 3d 55 fffffdbe 16 33 161f 18 ffffff70 -FIXUPS: b8ec 35 25 ffffff1f fffffcff b8 78 44 10 fffffbb0 12 10 19 fffffef2 -FIXUPS: b1da 2a 11 fffffdf5 ffffff4e fffff7c8 4c 9b 1d 6d 10 6b 4f 24 6b -FIXUPS: c0df 18 a1 3e 24 d 41 34 fffffd88 d 2b 1a 1f fffffc99 b 21 42 37 -FIXUPS: bde2 19 2b e fffffc55 c 75 d 96 d c 32 fffffe42 ffffffae ffff5677 -FIXUPS: 1069 1e a 1f 1e 18 b 5 5 17 30 b777 ffffff8c c d 20 d ffffff40 -FIXUPS: c7d6 b 1b fffffe05 ffffffaf 26 ffffff9d ffffffdf fffffead f3 fffffe7e -FIXUPS: c0bf 10 ffff5b05 d 3a 15 26 2b 21 12 d fffffb9d ef 54 fffffdc3 -FIXUPS: 176f 22 21 fffffc34 1f 11 1e 5c 1b6 b 5 5 21 fffffd55 fffffe90 -FIXUPS: 1171 fffffea4 11 2d 15a5 38 29 47 11 13 d 13 d 13 d fffff76b a8 -FIXUPS: 1f90 51 fffffd13 26 9 12e fffffb84 11 2f 11 1e 12 10 53 35 1b 28 -FIXUPS: 1b58 5e 553 1c 14 1c 21 24 6e 1e 2f 22 3b 23 38 20 1e a b 28 a -FIXUPS: 239d 27 5b 6 14 10 1e 32 80 1d 49 34 14 1ee f 7a 50 7f 20 b1 65 -FIXUPS: 2a4d 2b 23 18 16 1a 8 e 16 19 6 223 13 d fffff9e0 ffffffe0 fffff8e4 -FIXUPS: 2026 2f 11 2f 11 28 9 f58 11 d 81 6a 12 78 12 33 27 21 3994 1b -FIXUPS: 6c1a 52 f d 9c 73 11 32 e 3a 30 97 13 30 27 21 259d ffff9264 11 -FIXUPS: 9612 22 2e 12 58 2f 5e 6 20 2b 3f 6 20 2b 2c b 5 5 9 d fffffca0 -FIXUPS: 2d95 11 52 8 28 8 11c 18 3f 1b 1c 6fe7 fffffd45 10 3d 10 36 18 -FIXUPS: 9de3 f 128 77 fffffc55 1f 11 2e 15 3d b 5 5 17 fffffc9c 23 87 99 -FIXUPS: 9aad a4 c 74 fffff994 11 6e diff --git a/kauai/SRC/KCD2_386.H b/kauai/SRC/KCD2_386.H deleted file mode 100644 index 3a34aa85..00000000 --- a/kauai/SRC/KCD2_386.H +++ /dev/null @@ -1,3277 +0,0 @@ -/* Copyright (c) Microsoft Corporation. - Licensed under the MIT License. */ - -/* Copyright (c) Microsoft Corporation. - Licensed under the MIT License. */ - - // Setup - long cbTot; - byte *pbLimDst = (byte *)pvDst + cbDst; - byte *pbLimSrc = (byte *)pvSrc + cbSrc - kcbTailKcd2; - -__asm - { - mov edi,pvDst - mov ebx,pvSrc - inc ebx - mov eax,[ebx] - add ebx,4 - jmp LBlock0 - -LLitDword7: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - jmp LBlock0 - -L6BitOffDword0: - mov esi,eax - inc ecx - shr esi,2 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 - -L9BitOffDword4: - mov esi,eax - inc ecx - shr esi,7 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 - -L12BitOffDword0: - mov esi,eax - inc ecx - shr esi,4 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 - -L20BitOffDword0: - mov esi,eax - add ecx,2 - shr esi,4 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 - - // Copy Dword 0 -LCopyDword0: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock0 - -LLitSingle7: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov [edi],ah - inc edi - mov eax,[ebx-2] - add ebx,2 - jmp LBlock0 - -LLitByte7: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - jmp LBlock0 - -L6BitOffByte0: - mov esi,eax - inc ecx - shr esi,2 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte0 - -L9BitOffByte4: - mov esi,eax - inc ecx - shr esi,7 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte0 - -L12BitOffByte0: - mov esi,eax - inc ecx - shr esi,4 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte0 - -L20BitOffByte0: - mov esi,eax - add ecx,2 - shr esi,4 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte0 - - // Copy Byte 0 -LCopyByte0: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 0 -LBlock0: - test al,1 - jz LLen0_0 - test al,2 - jz LLen0_1 - test al,4 - jz LLen0_2 - test al,8 - jz LLen0_3 - test al,16 - jz LLen0_4 - test al,32 - jz LLen0_5 - test al,64 - jz LLen0_6 - test al,128 - jz LLen0_7 - test ah,1 - jz LLen0_8 - test ah,2 - jz LLen0_9 - test ah,4 - jz LLen0_10 - test ah,8 - jz LLen0_11 - jmp LDone -LLen0_0: - mov ecx,1 - test al,2 - jz LLitSingle1 - test al,4 - jz L6BitOffByte1 - test al,8 - jz L9BitOffByte1 - test al,16 - jz L12BitOffByte1 - jmp L20BitOffByte1 -LLen0_1: - mov ecx,eax - shr ecx,2 - and ecx,1 - or ecx,2 - test al,8 - jz LLitByte3 - test al,16 - jz L6BitOffByte3 - test al,32 - jz L9BitOffByte3 - test al,64 - jz L12BitOffByte3 - jmp L20BitOffByte3 -LLen0_2: - mov ecx,eax - shr ecx,3 - and ecx,3 - or ecx,4 - test al,32 - jz LLitByte5 - test al,64 - jz L6BitOffByte5 - test al,128 - jz L9BitOffByte5 - test ah,1 - jz L12BitOffByte5 - jmp L20BitOffByte5 -LLen0_3: - mov ecx,eax - shr ecx,4 - and ecx,7 - or ecx,8 - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen0_4: - mov ecx,eax - shr ecx,5 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen0_5: - mov ecx,eax - shr ecx,6 - and ecx,31 - or ecx,32 - mov eax,[ebx-3] - inc ebx - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen0_6: - mov ecx,eax - shr ecx,7 - and ecx,63 - or ecx,64 - mov eax,[ebx-3] - inc ebx - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen0_7: - mov ecx,eax - shr ecx,8 - and ecx,127 - or ecx,128 - mov eax,[ebx-3] - inc ebx - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen0_8: - mov ecx,eax - shr ecx,9 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen0_9: - mov ecx,eax - shr ecx,10 - and ecx,511 - or ecx,512 - mov eax,[ebx-2] - add ebx,2 - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen0_10: - mov ecx,eax - shr ecx,11 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-2] - add ebx,2 - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen0_11: - mov ecx,eax - shr ecx,12 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-2] - add ebx,2 - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 - -LLitDword0: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,1 - and edx,127 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,7 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock1 - -L6BitOffDword1: - mov esi,eax - inc ecx - shr esi,3 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 - -L9BitOffDword5: - mov esi,eax - inc ecx - shr esi,8 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 - -L12BitOffDword1: - mov esi,eax - inc ecx - shr esi,5 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 - -L20BitOffDword1: - mov esi,eax - add ecx,2 - shr esi,5 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 - - // Copy Dword 1 -LCopyDword1: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock1 - -LLitSingle0: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,1 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock1 - -LLitByte0: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,1 - and edx,127 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,7 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock1 - -L6BitOffByte1: - mov esi,eax - inc ecx - shr esi,3 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte1 - -L9BitOffByte5: - mov esi,eax - inc ecx - shr esi,8 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte1 - -L12BitOffByte1: - mov esi,eax - inc ecx - shr esi,5 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte1 - -L20BitOffByte1: - mov esi,eax - add ecx,2 - shr esi,5 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte1 - - // Copy Byte 1 -LCopyByte1: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 1 -LBlock1: - test al,2 - jz LLen1_0 - test al,4 - jz LLen1_1 - test al,8 - jz LLen1_2 - test al,16 - jz LLen1_3 - test al,32 - jz LLen1_4 - test al,64 - jz LLen1_5 - test al,128 - jz LLen1_6 - test ah,1 - jz LLen1_7 - test ah,2 - jz LLen1_8 - test ah,4 - jz LLen1_9 - test ah,8 - jz LLen1_10 - test ah,16 - jz LLen1_11 - jmp LDone -LLen1_0: - mov ecx,1 - test al,4 - jz LLitSingle2 - test al,8 - jz L6BitOffByte2 - test al,16 - jz L9BitOffByte2 - test al,32 - jz L12BitOffByte2 - jmp L20BitOffByte2 -LLen1_1: - mov ecx,eax - shr ecx,3 - and ecx,1 - or ecx,2 - test al,16 - jz LLitByte4 - test al,32 - jz L6BitOffByte4 - test al,64 - jz L9BitOffByte4 - test al,128 - jz L12BitOffByte4 - jmp L20BitOffByte4 -LLen1_2: - mov ecx,eax - shr ecx,4 - and ecx,3 - or ecx,4 - test al,64 - jz LLitByte6 - test al,128 - jz L6BitOffByte6 - test ah,1 - jz L9BitOffByte6 - test ah,2 - jz L12BitOffByte6 - jmp L20BitOffByte6 -LLen1_3: - mov ecx,eax - shr ecx,5 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen1_4: - mov ecx,eax - shr ecx,6 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen1_5: - mov ecx,eax - shr ecx,7 - and ecx,31 - or ecx,32 - mov eax,[ebx-3] - inc ebx - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen1_6: - mov ecx,eax - shr ecx,8 - and ecx,63 - or ecx,64 - mov eax,[ebx-3] - inc ebx - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen1_7: - mov ecx,eax - shr ecx,9 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen1_8: - mov ecx,eax - shr ecx,10 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen1_9: - mov ecx,eax - shr ecx,11 - and ecx,511 - or ecx,512 - mov eax,[ebx-2] - add ebx,2 - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen1_10: - mov ecx,eax - shr ecx,12 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-2] - add ebx,2 - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen1_11: - mov ecx,eax - shr ecx,13 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 - -LLitDword1: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,2 - and edx,63 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,6 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock2 - -L6BitOffDword2: - mov esi,eax - inc ecx - shr esi,4 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 - -L9BitOffDword6: - mov esi,eax - inc ecx - shr esi,9 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 - -L12BitOffDword2: - mov esi,eax - inc ecx - shr esi,6 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 - -L20BitOffDword2: - mov esi,eax - add ecx,2 - shr esi,6 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 - - // Copy Dword 2 -LCopyDword2: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock2 - -LLitSingle1: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,2 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock2 - -LLitByte1: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,2 - and edx,63 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,6 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock2 - -L6BitOffByte2: - mov esi,eax - inc ecx - shr esi,4 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte2 - -L9BitOffByte6: - mov esi,eax - inc ecx - shr esi,9 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte2 - -L12BitOffByte2: - mov esi,eax - inc ecx - shr esi,6 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte2 - -L20BitOffByte2: - mov esi,eax - add ecx,2 - shr esi,6 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte2 - - // Copy Byte 2 -LCopyByte2: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 2 -LBlock2: - test al,4 - jz LLen2_0 - test al,8 - jz LLen2_1 - test al,16 - jz LLen2_2 - test al,32 - jz LLen2_3 - test al,64 - jz LLen2_4 - test al,128 - jz LLen2_5 - test ah,1 - jz LLen2_6 - test ah,2 - jz LLen2_7 - test ah,4 - jz LLen2_8 - test ah,8 - jz LLen2_9 - test ah,16 - jz LLen2_10 - test ah,32 - jz LLen2_11 - jmp LDone -LLen2_0: - mov ecx,1 - test al,8 - jz LLitSingle3 - test al,16 - jz L6BitOffByte3 - test al,32 - jz L9BitOffByte3 - test al,64 - jz L12BitOffByte3 - jmp L20BitOffByte3 -LLen2_1: - mov ecx,eax - shr ecx,4 - and ecx,1 - or ecx,2 - test al,32 - jz LLitByte5 - test al,64 - jz L6BitOffByte5 - test al,128 - jz L9BitOffByte5 - test ah,1 - jz L12BitOffByte5 - jmp L20BitOffByte5 -LLen2_2: - mov ecx,eax - shr ecx,5 - and ecx,3 - or ecx,4 - test al,128 - jz LLitByte7 - test ah,1 - jz L6BitOffByte7 - test ah,2 - jz L9BitOffByte7 - test ah,4 - jz L12BitOffByte7 - jmp L20BitOffByte7 -LLen2_3: - mov ecx,eax - shr ecx,6 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen2_4: - mov ecx,eax - shr ecx,7 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen2_5: - mov ecx,eax - shr ecx,8 - and ecx,31 - or ecx,32 - mov eax,[ebx-3] - inc ebx - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen2_6: - mov ecx,eax - shr ecx,9 - and ecx,63 - or ecx,64 - mov eax,[ebx-3] - inc ebx - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen2_7: - mov ecx,eax - shr ecx,10 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen2_8: - mov ecx,eax - shr ecx,11 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen2_9: - mov ecx,eax - shr ecx,12 - and ecx,511 - or ecx,512 - mov eax,[ebx-2] - add ebx,2 - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen2_10: - mov ecx,eax - shr ecx,13 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-2] - add ebx,2 - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen2_11: - mov ecx,eax - shr ecx,14 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 - -LLitDword2: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,3 - and edx,31 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,5 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock3 - -L6BitOffDword3: - mov esi,eax - inc ecx - shr esi,5 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 - -L9BitOffDword7: - mov esi,eax - inc ecx - shr esi,10 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 - -L12BitOffDword3: - mov esi,eax - inc ecx - shr esi,7 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 - -L20BitOffDword3: - mov esi,eax - add ecx,2 - shr esi,7 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 - - // Copy Dword 3 -LCopyDword3: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock3 - -LLitSingle2: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,3 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock3 - -LLitByte2: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,3 - and edx,31 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,5 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock3 - -L6BitOffByte3: - mov esi,eax - inc ecx - shr esi,5 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte3 - -L9BitOffByte7: - mov esi,eax - inc ecx - shr esi,10 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte3 - -L12BitOffByte3: - mov esi,eax - inc ecx - shr esi,7 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte3 - -L20BitOffByte3: - mov esi,eax - add ecx,2 - shr esi,7 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte3 - - // Copy Byte 3 -LCopyByte3: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 3 -LBlock3: - test al,8 - jz LLen3_0 - test al,16 - jz LLen3_1 - test al,32 - jz LLen3_2 - test al,64 - jz LLen3_3 - test al,128 - jz LLen3_4 - test ah,1 - jz LLen3_5 - test ah,2 - jz LLen3_6 - test ah,4 - jz LLen3_7 - test ah,8 - jz LLen3_8 - test ah,16 - jz LLen3_9 - test ah,32 - jz LLen3_10 - test ah,64 - jz LLen3_11 - jmp LDone -LLen3_0: - mov ecx,1 - test al,16 - jz LLitSingle4 - test al,32 - jz L6BitOffByte4 - test al,64 - jz L9BitOffByte4 - test al,128 - jz L12BitOffByte4 - jmp L20BitOffByte4 -LLen3_1: - mov ecx,eax - shr ecx,5 - and ecx,1 - or ecx,2 - test al,64 - jz LLitByte6 - test al,128 - jz L6BitOffByte6 - test ah,1 - jz L9BitOffByte6 - test ah,2 - jz L12BitOffByte6 - jmp L20BitOffByte6 -LLen3_2: - mov ecx,eax - shr ecx,6 - and ecx,3 - or ecx,4 - mov eax,[ebx-3] - inc ebx - test al,1 - jz LLitByte0 - test al,2 - jz L6BitOffByte0 - test al,4 - jz L9BitOffByte0 - test al,8 - jz L12BitOffByte0 - jmp L20BitOffByte0 -LLen3_3: - mov ecx,eax - shr ecx,7 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen3_4: - mov ecx,eax - shr ecx,8 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen3_5: - mov ecx,eax - shr ecx,9 - and ecx,31 - or ecx,32 - mov eax,[ebx-3] - inc ebx - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen3_6: - mov ecx,eax - shr ecx,10 - and ecx,63 - or ecx,64 - mov eax,[ebx-2] - add ebx,2 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen3_7: - mov ecx,eax - shr ecx,11 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen3_8: - mov ecx,eax - shr ecx,12 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen3_9: - mov ecx,eax - shr ecx,13 - and ecx,511 - or ecx,512 - mov eax,[ebx-2] - add ebx,2 - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen3_10: - mov ecx,eax - shr ecx,14 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-1] - add ebx,3 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen3_11: - mov ecx,eax - shr ecx,15 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 - -LLitDword3: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,4 - and edx,15 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,4 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock4 - -L6BitOffDword4: - mov esi,eax - inc ecx - shr esi,6 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 - -L9BitOffDword0: - mov esi,eax - inc ecx - shr esi,3 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 - -L12BitOffDword4: - mov esi,eax - inc ecx - shr esi,8 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 - -L20BitOffDword4: - mov esi,eax - add ecx,2 - shr esi,8 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 - - // Copy Dword 4 -LCopyDword4: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock4 - -LLitSingle3: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,4 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock4 - -LLitByte3: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,4 - and edx,15 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,4 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock4 - -L6BitOffByte4: - mov esi,eax - inc ecx - shr esi,6 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte4 - -L9BitOffByte0: - mov esi,eax - inc ecx - shr esi,3 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyByte4 - -L12BitOffByte4: - mov esi,eax - inc ecx - shr esi,8 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte4 - -L20BitOffByte4: - mov esi,eax - add ecx,2 - shr esi,8 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte4 - - // Copy Byte 4 -LCopyByte4: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 4 -LBlock4: - test al,16 - jz LLen4_0 - test al,32 - jz LLen4_1 - test al,64 - jz LLen4_2 - test al,128 - jz LLen4_3 - test ah,1 - jz LLen4_4 - test ah,2 - jz LLen4_5 - test ah,4 - jz LLen4_6 - test ah,8 - jz LLen4_7 - test ah,16 - jz LLen4_8 - test ah,32 - jz LLen4_9 - test ah,64 - jz LLen4_10 - test ah,128 - jz LLen4_11 - jmp LDone -LLen4_0: - mov ecx,1 - test al,32 - jz LLitSingle5 - test al,64 - jz L6BitOffByte5 - test al,128 - jz L9BitOffByte5 - test ah,1 - jz L12BitOffByte5 - jmp L20BitOffByte5 -LLen4_1: - mov ecx,eax - shr ecx,6 - and ecx,1 - or ecx,2 - test al,128 - jz LLitByte7 - test ah,1 - jz L6BitOffByte7 - test ah,2 - jz L9BitOffByte7 - test ah,4 - jz L12BitOffByte7 - jmp L20BitOffByte7 -LLen4_2: - mov ecx,eax - shr ecx,7 - and ecx,3 - or ecx,4 - mov eax,[ebx-3] - inc ebx - test al,2 - jz LLitByte1 - test al,4 - jz L6BitOffByte1 - test al,8 - jz L9BitOffByte1 - test al,16 - jz L12BitOffByte1 - jmp L20BitOffByte1 -LLen4_3: - mov ecx,eax - shr ecx,8 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen4_4: - mov ecx,eax - shr ecx,9 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen4_5: - mov ecx,eax - shr ecx,10 - and ecx,31 - or ecx,32 - mov eax,[ebx-3] - inc ebx - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen4_6: - mov ecx,eax - shr ecx,11 - and ecx,63 - or ecx,64 - mov eax,[ebx-2] - add ebx,2 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen4_7: - mov ecx,eax - shr ecx,12 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen4_8: - mov ecx,eax - shr ecx,13 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen4_9: - mov ecx,eax - shr ecx,14 - and ecx,511 - or ecx,512 - mov eax,[ebx-2] - add ebx,2 - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen4_10: - mov ecx,eax - shr ecx,15 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-1] - add ebx,3 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen4_11: - mov ecx,eax - shr ecx,16 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 - -LLitDword4: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,5 - and edx,7 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,3 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock5 - -L6BitOffDword5: - mov esi,eax - inc ecx - shr esi,7 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 - -L9BitOffDword1: - mov esi,eax - inc ecx - shr esi,4 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 - -L12BitOffDword5: - mov esi,eax - inc ecx - shr esi,9 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 - -L20BitOffDword5: - mov esi,eax - add ecx,2 - shr esi,9 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword5 - - // Copy Dword 5 -LCopyDword5: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock5 - -LLitSingle4: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,5 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock5 - -LLitByte4: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,5 - and edx,7 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,3 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock5 - -L6BitOffByte5: - mov esi,eax - inc ecx - shr esi,7 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte5 - -L9BitOffByte1: - mov esi,eax - inc ecx - shr esi,4 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyByte5 - -L12BitOffByte5: - mov esi,eax - inc ecx - shr esi,9 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte5 - -L20BitOffByte5: - mov esi,eax - add ecx,2 - shr esi,9 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte5 - - // Copy Byte 5 -LCopyByte5: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 5 -LBlock5: - test al,32 - jz LLen5_0 - test al,64 - jz LLen5_1 - test al,128 - jz LLen5_2 - test ah,1 - jz LLen5_3 - test ah,2 - jz LLen5_4 - test ah,4 - jz LLen5_5 - test ah,8 - jz LLen5_6 - test ah,16 - jz LLen5_7 - test ah,32 - jz LLen5_8 - test ah,64 - jz LLen5_9 - test ah,128 - jz LLen5_10 - test eax,65536 - jz LLen5_11 - jmp LDone -LLen5_0: - mov ecx,1 - test al,64 - jz LLitSingle6 - test al,128 - jz L6BitOffByte6 - test ah,1 - jz L9BitOffByte6 - test ah,2 - jz L12BitOffByte6 - jmp L20BitOffByte6 -LLen5_1: - mov ecx,eax - shr ecx,7 - and ecx,1 - or ecx,2 - mov eax,[ebx-3] - inc ebx - test al,1 - jz LLitByte0 - test al,2 - jz L6BitOffByte0 - test al,4 - jz L9BitOffByte0 - test al,8 - jz L12BitOffByte0 - jmp L20BitOffByte0 -LLen5_2: - mov ecx,eax - shr ecx,8 - and ecx,3 - or ecx,4 - mov eax,[ebx-3] - inc ebx - test al,4 - jz LLitByte2 - test al,8 - jz L6BitOffByte2 - test al,16 - jz L9BitOffByte2 - test al,32 - jz L12BitOffByte2 - jmp L20BitOffByte2 -LLen5_3: - mov ecx,eax - shr ecx,9 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen5_4: - mov ecx,eax - shr ecx,10 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen5_5: - mov ecx,eax - shr ecx,11 - and ecx,31 - or ecx,32 - mov eax,[ebx-2] - add ebx,2 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen5_6: - mov ecx,eax - shr ecx,12 - and ecx,63 - or ecx,64 - mov eax,[ebx-2] - add ebx,2 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen5_7: - mov ecx,eax - shr ecx,13 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen5_8: - mov ecx,eax - shr ecx,14 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen5_9: - mov ecx,eax - shr ecx,15 - and ecx,511 - or ecx,512 - mov eax,[ebx-1] - add ebx,3 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen5_10: - mov ecx,eax - shr ecx,16 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-1] - add ebx,3 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen5_11: - mov ecx,eax - shr ecx,17 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 - -LLitDword5: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,6 - and edx,3 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,2 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock6 - -L6BitOffDword6: - mov esi,eax - inc ecx - shr esi,8 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 - -L9BitOffDword2: - mov esi,eax - inc ecx - shr esi,5 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 - -L12BitOffDword6: - mov esi,eax - inc ecx - shr esi,10 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 - -L20BitOffDword6: - mov esi,eax - add ecx,2 - shr esi,10 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword6 - - // Copy Dword 6 -LCopyDword6: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock6 - -LLitSingle5: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,6 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock6 - -LLitByte5: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,6 - and edx,3 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,2 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock6 - -L6BitOffByte6: - mov esi,eax - inc ecx - shr esi,8 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte6 - -L9BitOffByte2: - mov esi,eax - inc ecx - shr esi,5 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyByte6 - -L12BitOffByte6: - mov esi,eax - inc ecx - shr esi,10 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte6 - -L20BitOffByte6: - mov esi,eax - add ecx,2 - shr esi,10 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte6 - - // Copy Byte 6 -LCopyByte6: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 6 -LBlock6: - test al,64 - jz LLen6_0 - test al,128 - jz LLen6_1 - test ah,1 - jz LLen6_2 - test ah,2 - jz LLen6_3 - test ah,4 - jz LLen6_4 - test ah,8 - jz LLen6_5 - test ah,16 - jz LLen6_6 - test ah,32 - jz LLen6_7 - test ah,64 - jz LLen6_8 - test ah,128 - jz LLen6_9 - test eax,65536 - jz LLen6_10 - test eax,131072 - jz LLen6_11 - jmp LDone -LLen6_0: - mov ecx,1 - test al,128 - jz LLitSingle7 - test ah,1 - jz L6BitOffByte7 - test ah,2 - jz L9BitOffByte7 - test ah,4 - jz L12BitOffByte7 - jmp L20BitOffByte7 -LLen6_1: - mov ecx,eax - shr ecx,8 - and ecx,1 - or ecx,2 - mov eax,[ebx-3] - inc ebx - test al,2 - jz LLitByte1 - test al,4 - jz L6BitOffByte1 - test al,8 - jz L9BitOffByte1 - test al,16 - jz L12BitOffByte1 - jmp L20BitOffByte1 -LLen6_2: - mov ecx,eax - shr ecx,9 - and ecx,3 - or ecx,4 - mov eax,[ebx-3] - inc ebx - test al,8 - jz LLitByte3 - test al,16 - jz L6BitOffByte3 - test al,32 - jz L9BitOffByte3 - test al,64 - jz L12BitOffByte3 - jmp L20BitOffByte3 -LLen6_3: - mov ecx,eax - shr ecx,10 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen6_4: - mov ecx,eax - shr ecx,11 - and ecx,15 - or ecx,16 - mov eax,[ebx-3] - inc ebx - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen6_5: - mov ecx,eax - shr ecx,12 - and ecx,31 - or ecx,32 - mov eax,[ebx-2] - add ebx,2 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen6_6: - mov ecx,eax - shr ecx,13 - and ecx,63 - or ecx,64 - mov eax,[ebx-2] - add ebx,2 - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen6_7: - mov ecx,eax - shr ecx,14 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 -LLen6_8: - mov ecx,eax - shr ecx,15 - and ecx,255 - or ecx,256 - mov eax,[ebx-2] - add ebx,2 - test al,128 - jz LLitDword7 - test ah,1 - jz L6BitOffDword7 - test ah,2 - jz L9BitOffDword7 - test ah,4 - jz L12BitOffDword7 - jmp L20BitOffDword7 -LLen6_9: - mov ecx,eax - shr ecx,16 - and ecx,511 - or ecx,512 - mov eax,[ebx-1] - add ebx,3 - test al,2 - jz LLitDword1 - test al,4 - jz L6BitOffDword1 - test al,8 - jz L9BitOffDword1 - test al,16 - jz L12BitOffDword1 - jmp L20BitOffDword1 -LLen6_10: - mov ecx,eax - shr ecx,17 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-1] - add ebx,3 - test al,8 - jz LLitDword3 - test al,16 - jz L6BitOffDword3 - test al,32 - jz L9BitOffDword3 - test al,64 - jz L12BitOffDword3 - jmp L20BitOffDword3 -LLen6_11: - mov ecx,eax - shr ecx,18 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,32 - jz LLitDword5 - test al,64 - jz L6BitOffDword5 - test al,128 - jz L9BitOffDword5 - test ah,1 - jz L12BitOffDword5 - jmp L20BitOffDword5 - -LLitDword6: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,7 - and edx,1 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - mov eax,ecx - shr ecx,2 - and eax,3 - rep movsd - mov ecx,eax - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,1 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock7 - -L6BitOffDword7: - mov esi,eax - inc ecx - shr esi,9 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 - -L9BitOffDword3: - mov esi,eax - inc ecx - shr esi,6 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 - -L12BitOffDword7: - mov esi,eax - inc ecx - shr esi,11 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 - -L20BitOffDword7: - mov esi,eax - add ecx,2 - shr esi,11 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword7 - - // Copy Dword 7 -LCopyDword7: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock7 - -LLitSingle6: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,7 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock7 - -LLitByte6: -#ifdef SAFETY - lea edx,[edi+ecx] - cmp edx,pbLimDst - ja LFail -#endif //SAFETY - dec ecx - mov edx,eax - shr edx,7 - and edx,1 -#ifdef SAFETY - lea esi,[ebx-3+ecx] - cmp esi,pbLimSrc - ja LFail - sub esi,ecx -#else //!SAFETY - lea esi,[ebx-3] -#endif //!SAFETY - rep movsb - lea ebx,[esi+4] - mov eax,[esi] - mov esi,eax - shl esi,1 - or edx,esi - mov [edi],dl - inc edi - jmp LBlock7 - -L6BitOffByte7: - mov esi,eax - inc ecx - shr esi,9 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - jmp LCopyByte7 - -L9BitOffByte3: - mov esi,eax - inc ecx - shr esi,6 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - jmp LCopyByte7 - -L12BitOffByte7: - mov esi,eax - inc ecx - shr esi,11 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - jmp LCopyByte7 - -L20BitOffByte7: - mov esi,eax - add ecx,2 - shr esi,11 - and esi,1048575 - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - jmp LCopyByte7 - - // Copy Byte 7 -LCopyByte7: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 7 -LBlock7: - test al,128 - jz LLen7_0 - test ah,1 - jz LLen7_1 - test ah,2 - jz LLen7_2 - test ah,4 - jz LLen7_3 - test ah,8 - jz LLen7_4 - test ah,16 - jz LLen7_5 - test ah,32 - jz LLen7_6 - test ah,64 - jz LLen7_7 - test ah,128 - jz LLen7_8 - test eax,65536 - jz LLen7_9 - test eax,131072 - jz LLen7_10 - test eax,262144 - jz LLen7_11 - jmp LDone -LLen7_0: - mov ecx,1 - mov eax,[ebx-3] - inc ebx - test al,1 - jz LLitSingle0 - test al,2 - jz L6BitOffByte0 - test al,4 - jz L9BitOffByte0 - test al,8 - jz L12BitOffByte0 - jmp L20BitOffByte0 -LLen7_1: - mov ecx,eax - shr ecx,9 - and ecx,1 - or ecx,2 - mov eax,[ebx-3] - inc ebx - test al,4 - jz LLitByte2 - test al,8 - jz L6BitOffByte2 - test al,16 - jz L9BitOffByte2 - test al,32 - jz L12BitOffByte2 - jmp L20BitOffByte2 -LLen7_2: - mov ecx,eax - shr ecx,10 - and ecx,3 - or ecx,4 - mov eax,[ebx-3] - inc ebx - test al,16 - jz LLitByte4 - test al,32 - jz L6BitOffByte4 - test al,64 - jz L9BitOffByte4 - test al,128 - jz L12BitOffByte4 - jmp L20BitOffByte4 -LLen7_3: - mov ecx,eax - shr ecx,11 - and ecx,7 - or ecx,8 - mov eax,[ebx-3] - inc ebx - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen7_4: - mov ecx,eax - shr ecx,12 - and ecx,15 - or ecx,16 - mov eax,[ebx-2] - add ebx,2 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen7_5: - mov ecx,eax - shr ecx,13 - and ecx,31 - or ecx,32 - mov eax,[ebx-2] - add ebx,2 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen7_6: - mov ecx,eax - shr ecx,14 - and ecx,63 - or ecx,64 - mov eax,[ebx-2] - add ebx,2 - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen7_7: - mov ecx,eax - shr ecx,15 - and ecx,127 - or ecx,128 - mov eax,[ebx-2] - add ebx,2 - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 -LLen7_8: - mov ecx,eax - shr ecx,16 - and ecx,255 - or ecx,256 - mov eax,[ebx-1] - add ebx,3 - test al,1 - jz LLitDword0 - test al,2 - jz L6BitOffDword0 - test al,4 - jz L9BitOffDword0 - test al,8 - jz L12BitOffDword0 - jmp L20BitOffDword0 -LLen7_9: - mov ecx,eax - shr ecx,17 - and ecx,511 - or ecx,512 - mov eax,[ebx-1] - add ebx,3 - test al,4 - jz LLitDword2 - test al,8 - jz L6BitOffDword2 - test al,16 - jz L9BitOffDword2 - test al,32 - jz L12BitOffDword2 - jmp L20BitOffDword2 -LLen7_10: - mov ecx,eax - shr ecx,18 - and ecx,1023 - or ecx,1024 - mov eax,[ebx-1] - add ebx,3 - test al,16 - jz LLitDword4 - test al,32 - jz L6BitOffDword4 - test al,64 - jz L9BitOffDword4 - test al,128 - jz L12BitOffDword4 - jmp L20BitOffDword4 -LLen7_11: - mov ecx,eax - shr ecx,19 - and ecx,2047 - or ecx,2048 - mov eax,[ebx-1] - add ebx,3 - test al,64 - jz LLitDword6 - test al,128 - jz L6BitOffDword6 - test ah,1 - jz L9BitOffDword6 - test ah,2 - jz L12BitOffDword6 - jmp L20BitOffDword6 - -LDone: - sub edi,pvDst - mov cbTot,edi - } - diff --git a/kauai/SRC/KCDC_386.H b/kauai/SRC/KCDC_386.H deleted file mode 100644 index d7f217b6..00000000 --- a/kauai/SRC/KCDC_386.H +++ /dev/null @@ -1,4966 +0,0 @@ -/* Copyright (c) Microsoft Corporation. - Licensed under the MIT License. */ - -/* Copyright (c) Microsoft Corporation. - Licensed under the MIT License. */ - - // Setup - long cbTot; - byte *pbLimDst = (byte *)pvDst + cbDst; - -__asm - { - mov edi,pvDst - mov ebx,pvSrc - inc ebx - mov eax,[ebx] - add ebx,4 - jmp LBlock0 - - // Copy Dword 0 -LCopyDword0: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock0 - - // Copy Byte 0 -LCopyByte0: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 0 -LBlock0: - test al,1 - jz LLiteral1 - test al,2 - jz L6Bit2 - test al,4 - jz L9Bit3 - test al,8 - jz L12Bit4 - jmp L20Bit4 - - // Literal 1 -LLiteral1: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,1 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock1 - -L6Bit2: - mov esi,eax - mov ecx,2 - shr esi,2 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,1 - jz LLen1_0 - test al,2 - jz LLen1_1 - test al,4 - jz LLen1_2 - test al,8 - jz LLen1_3 - test al,16 - jz LLen1_4 - test al,32 - jz LLen1_5 - test al,64 - jz LLen1_6 - test al,128 - jz LLen1_7 - test ah,1 - jz LLen1_8 - test ah,2 - jz LLen1_9 - test ah,4 - jz LLen1_10 - test ah,8 - jz LLen1_11 - jmp LFail -LLen1_0: -jmp LCopyByte1 -LLen1_1: - mov edx,eax - shr edx,2 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte3 -LLen1_2: - mov edx,eax - shr edx,3 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte5 -LLen1_3: - mov edx,eax - shr edx,4 - add ecx,7 - and edx,7 - add ecx,edx - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen1_4: - mov edx,eax - shr edx,5 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen1_5: - mov edx,eax - shr edx,6 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen1_6: - mov edx,eax - shr edx,7 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen1_7: - mov edx,eax - shr edx,8 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen1_8: - mov edx,eax - shr edx,9 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen1_9: - mov edx,eax - shr edx,10 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen1_10: - mov edx,eax - shr edx,11 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen1_11: - mov edx,eax - shr edx,12 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 - -L9Bit3: - mov esi,eax - mov ecx,2 - shr esi,3 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - test al,16 - jz LLen2_0 - test al,32 - jz LLen2_1 - test al,64 - jz LLen2_2 - test al,128 - jz LLen2_3 - test ah,1 - jz LLen2_4 - test ah,2 - jz LLen2_5 - test ah,4 - jz LLen2_6 - test ah,8 - jz LLen2_7 - test ah,16 - jz LLen2_8 - test ah,32 - jz LLen2_9 - test ah,64 - jz LLen2_10 - test ah,128 - jz LLen2_11 - jmp LFail -LLen2_0: -jmp LCopyByte5 -LLen2_1: - mov edx,eax - shr edx,6 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte7 -LLen2_2: - mov edx,eax - shr edx,7 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen2_3: - mov edx,eax - shr edx,8 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen2_4: - mov edx,eax - shr edx,9 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen2_5: - mov edx,eax - shr edx,10 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen2_6: - mov edx,eax - shr edx,11 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen2_7: - mov edx,eax - shr edx,12 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen2_8: - mov edx,eax - shr edx,13 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen2_9: - mov edx,eax - shr edx,14 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen2_10: - mov edx,eax - shr edx,15 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 -LLen2_11: - mov edx,eax - shr edx,16 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 - -L12Bit4: - mov esi,eax - mov ecx,2 - shr esi,4 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,1 - jz LLen3_0 - test al,2 - jz LLen3_1 - test al,4 - jz LLen3_2 - test al,8 - jz LLen3_3 - test al,16 - jz LLen3_4 - test al,32 - jz LLen3_5 - test al,64 - jz LLen3_6 - test al,128 - jz LLen3_7 - test ah,1 - jz LLen3_8 - test ah,2 - jz LLen3_9 - test ah,4 - jz LLen3_10 - test ah,8 - jz LLen3_11 - jmp LFail -LLen3_0: -jmp LCopyByte1 -LLen3_1: - mov edx,eax - shr edx,2 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte3 -LLen3_2: - mov edx,eax - shr edx,3 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte5 -LLen3_3: - mov edx,eax - shr edx,4 - add ecx,7 - and edx,7 - add ecx,edx - jmp LCopyDword7 -LLen3_4: - mov edx,eax - shr edx,5 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword1 -LLen3_5: - mov edx,eax - shr edx,6 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen3_6: - mov edx,eax - shr edx,7 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen3_7: - mov edx,eax - shr edx,8 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen3_8: - mov edx,eax - shr edx,9 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen3_9: - mov edx,eax - shr edx,10 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen3_10: - mov edx,eax - shr edx,11 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen3_11: - mov edx,eax - shr edx,12 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 - -L20Bit4: - mov esi,eax - mov ecx,3 - shr esi,4 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,1 - jz LLen4_0 - test al,2 - jz LLen4_1 - test al,4 - jz LLen4_2 - test al,8 - jz LLen4_3 - test al,16 - jz LLen4_4 - test al,32 - jz LLen4_5 - test al,64 - jz LLen4_6 - test al,128 - jz LLen4_7 - test ah,1 - jz LLen4_8 - test ah,2 - jz LLen4_9 - test ah,4 - jz LLen4_10 - test ah,8 - jz LLen4_11 - jmp LFail -LLen4_0: -jmp LCopyByte1 -LLen4_1: - mov edx,eax - shr edx,2 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte3 -LLen4_2: - mov edx,eax - shr edx,3 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte5 -LLen4_3: - mov edx,eax - shr edx,4 - add ecx,7 - and edx,7 - add ecx,edx - jmp LCopyDword7 -LLen4_4: - mov edx,eax - shr edx,5 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword1 -LLen4_5: - mov edx,eax - shr edx,6 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen4_6: - mov edx,eax - shr edx,7 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen4_7: - mov edx,eax - shr edx,8 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen4_8: - mov edx,eax - shr edx,9 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen4_9: - mov edx,eax - shr edx,10 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen4_10: - mov edx,eax - shr edx,11 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen4_11: - mov edx,eax - shr edx,12 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 - - // Copy Dword 1 -LCopyDword1: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock1 - - // Copy Byte 1 -LCopyByte1: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 1 -LBlock1: - test al,2 - jz LLiteral2 - test al,4 - jz L6Bit3 - test al,8 - jz L9Bit4 - test al,16 - jz L12Bit5 - jmp L20Bit5 - - // Literal 2 -LLiteral2: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,2 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock2 - -L6Bit3: - mov esi,eax - mov ecx,2 - shr esi,3 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,2 - jz LLen5_0 - test al,4 - jz LLen5_1 - test al,8 - jz LLen5_2 - test al,16 - jz LLen5_3 - test al,32 - jz LLen5_4 - test al,64 - jz LLen5_5 - test al,128 - jz LLen5_6 - test ah,1 - jz LLen5_7 - test ah,2 - jz LLen5_8 - test ah,4 - jz LLen5_9 - test ah,8 - jz LLen5_10 - test ah,16 - jz LLen5_11 - jmp LFail -LLen5_0: -jmp LCopyByte2 -LLen5_1: - mov edx,eax - shr edx,3 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte4 -LLen5_2: - mov edx,eax - shr edx,4 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte6 -LLen5_3: - mov edx,eax - shr edx,5 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen5_4: - mov edx,eax - shr edx,6 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen5_5: - mov edx,eax - shr edx,7 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen5_6: - mov edx,eax - shr edx,8 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen5_7: - mov edx,eax - shr edx,9 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen5_8: - mov edx,eax - shr edx,10 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen5_9: - mov edx,eax - shr edx,11 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen5_10: - mov edx,eax - shr edx,12 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen5_11: - mov edx,eax - shr edx,13 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 - -L9Bit4: - mov esi,eax - mov ecx,2 - shr esi,4 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - test al,32 - jz LLen6_0 - test al,64 - jz LLen6_1 - test al,128 - jz LLen6_2 - test ah,1 - jz LLen6_3 - test ah,2 - jz LLen6_4 - test ah,4 - jz LLen6_5 - test ah,8 - jz LLen6_6 - test ah,16 - jz LLen6_7 - test ah,32 - jz LLen6_8 - test ah,64 - jz LLen6_9 - test ah,128 - jz LLen6_10 - test eax,65536 - jz LLen6_11 - jmp LFail -LLen6_0: -jmp LCopyByte6 -LLen6_1: - mov edx,eax - shr edx,7 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen6_2: - mov edx,eax - shr edx,8 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen6_3: - mov edx,eax - shr edx,9 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen6_4: - mov edx,eax - shr edx,10 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen6_5: - mov edx,eax - shr edx,11 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen6_6: - mov edx,eax - shr edx,12 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen6_7: - mov edx,eax - shr edx,13 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen6_8: - mov edx,eax - shr edx,14 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen6_9: - mov edx,eax - shr edx,15 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen6_10: - mov edx,eax - shr edx,16 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 -LLen6_11: - mov edx,eax - shr edx,17 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 - -L12Bit5: - mov esi,eax - mov ecx,2 - shr esi,5 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,2 - jz LLen7_0 - test al,4 - jz LLen7_1 - test al,8 - jz LLen7_2 - test al,16 - jz LLen7_3 - test al,32 - jz LLen7_4 - test al,64 - jz LLen7_5 - test al,128 - jz LLen7_6 - test ah,1 - jz LLen7_7 - test ah,2 - jz LLen7_8 - test ah,4 - jz LLen7_9 - test ah,8 - jz LLen7_10 - test ah,16 - jz LLen7_11 - jmp LFail -LLen7_0: -jmp LCopyByte2 -LLen7_1: - mov edx,eax - shr edx,3 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte4 -LLen7_2: - mov edx,eax - shr edx,4 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte6 -LLen7_3: - mov edx,eax - shr edx,5 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword0 -LLen7_4: - mov edx,eax - shr edx,6 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword2 -LLen7_5: - mov edx,eax - shr edx,7 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen7_6: - mov edx,eax - shr edx,8 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen7_7: - mov edx,eax - shr edx,9 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen7_8: - mov edx,eax - shr edx,10 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen7_9: - mov edx,eax - shr edx,11 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen7_10: - mov edx,eax - shr edx,12 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen7_11: - mov edx,eax - shr edx,13 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 - -L20Bit5: - mov esi,eax - mov ecx,3 - shr esi,5 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,2 - jz LLen8_0 - test al,4 - jz LLen8_1 - test al,8 - jz LLen8_2 - test al,16 - jz LLen8_3 - test al,32 - jz LLen8_4 - test al,64 - jz LLen8_5 - test al,128 - jz LLen8_6 - test ah,1 - jz LLen8_7 - test ah,2 - jz LLen8_8 - test ah,4 - jz LLen8_9 - test ah,8 - jz LLen8_10 - test ah,16 - jz LLen8_11 - jmp LFail -LLen8_0: -jmp LCopyByte2 -LLen8_1: - mov edx,eax - shr edx,3 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte4 -LLen8_2: - mov edx,eax - shr edx,4 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte6 -LLen8_3: - mov edx,eax - shr edx,5 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword0 -LLen8_4: - mov edx,eax - shr edx,6 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword2 -LLen8_5: - mov edx,eax - shr edx,7 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen8_6: - mov edx,eax - shr edx,8 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen8_7: - mov edx,eax - shr edx,9 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen8_8: - mov edx,eax - shr edx,10 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen8_9: - mov edx,eax - shr edx,11 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen8_10: - mov edx,eax - shr edx,12 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen8_11: - mov edx,eax - shr edx,13 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 - - // Copy Dword 2 -LCopyDword2: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock2 - - // Copy Byte 2 -LCopyByte2: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 2 -LBlock2: - test al,4 - jz LLiteral3 - test al,8 - jz L6Bit4 - test al,16 - jz L9Bit5 - test al,32 - jz L12Bit6 - jmp L20Bit6 - - // Literal 3 -LLiteral3: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,3 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock3 - -L6Bit4: - mov esi,eax - mov ecx,2 - shr esi,4 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,4 - jz LLen9_0 - test al,8 - jz LLen9_1 - test al,16 - jz LLen9_2 - test al,32 - jz LLen9_3 - test al,64 - jz LLen9_4 - test al,128 - jz LLen9_5 - test ah,1 - jz LLen9_6 - test ah,2 - jz LLen9_7 - test ah,4 - jz LLen9_8 - test ah,8 - jz LLen9_9 - test ah,16 - jz LLen9_10 - test ah,32 - jz LLen9_11 - jmp LFail -LLen9_0: -jmp LCopyByte3 -LLen9_1: - mov edx,eax - shr edx,4 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte5 -LLen9_2: - mov edx,eax - shr edx,5 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte7 -LLen9_3: - mov edx,eax - shr edx,6 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen9_4: - mov edx,eax - shr edx,7 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen9_5: - mov edx,eax - shr edx,8 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen9_6: - mov edx,eax - shr edx,9 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen9_7: - mov edx,eax - shr edx,10 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen9_8: - mov edx,eax - shr edx,11 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen9_9: - mov edx,eax - shr edx,12 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen9_10: - mov edx,eax - shr edx,13 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen9_11: - mov edx,eax - shr edx,14 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 - -L9Bit5: - mov esi,eax - mov ecx,2 - shr esi,5 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - test al,64 - jz LLen10_0 - test al,128 - jz LLen10_1 - test ah,1 - jz LLen10_2 - test ah,2 - jz LLen10_3 - test ah,4 - jz LLen10_4 - test ah,8 - jz LLen10_5 - test ah,16 - jz LLen10_6 - test ah,32 - jz LLen10_7 - test ah,64 - jz LLen10_8 - test ah,128 - jz LLen10_9 - test eax,65536 - jz LLen10_10 - test eax,131072 - jz LLen10_11 - jmp LFail -LLen10_0: -jmp LCopyByte7 -LLen10_1: - mov edx,eax - shr edx,8 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen10_2: - mov edx,eax - shr edx,9 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte3 -LLen10_3: - mov edx,eax - shr edx,10 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen10_4: - mov edx,eax - shr edx,11 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen10_5: - mov edx,eax - shr edx,12 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen10_6: - mov edx,eax - shr edx,13 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen10_7: - mov edx,eax - shr edx,14 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen10_8: - mov edx,eax - shr edx,15 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen10_9: - mov edx,eax - shr edx,16 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 -LLen10_10: - mov edx,eax - shr edx,17 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 -LLen10_11: - mov edx,eax - shr edx,18 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword5 - -L12Bit6: - mov esi,eax - mov ecx,2 - shr esi,6 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,4 - jz LLen11_0 - test al,8 - jz LLen11_1 - test al,16 - jz LLen11_2 - test al,32 - jz LLen11_3 - test al,64 - jz LLen11_4 - test al,128 - jz LLen11_5 - test ah,1 - jz LLen11_6 - test ah,2 - jz LLen11_7 - test ah,4 - jz LLen11_8 - test ah,8 - jz LLen11_9 - test ah,16 - jz LLen11_10 - test ah,32 - jz LLen11_11 - jmp LFail -LLen11_0: -jmp LCopyByte3 -LLen11_1: - mov edx,eax - shr edx,4 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte5 -LLen11_2: - mov edx,eax - shr edx,5 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte7 -LLen11_3: - mov edx,eax - shr edx,6 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword1 -LLen11_4: - mov edx,eax - shr edx,7 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen11_5: - mov edx,eax - shr edx,8 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen11_6: - mov edx,eax - shr edx,9 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen11_7: - mov edx,eax - shr edx,10 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen11_8: - mov edx,eax - shr edx,11 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen11_9: - mov edx,eax - shr edx,12 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen11_10: - mov edx,eax - shr edx,13 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen11_11: - mov edx,eax - shr edx,14 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 - -L20Bit6: - mov esi,eax - mov ecx,3 - shr esi,6 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,4 - jz LLen12_0 - test al,8 - jz LLen12_1 - test al,16 - jz LLen12_2 - test al,32 - jz LLen12_3 - test al,64 - jz LLen12_4 - test al,128 - jz LLen12_5 - test ah,1 - jz LLen12_6 - test ah,2 - jz LLen12_7 - test ah,4 - jz LLen12_8 - test ah,8 - jz LLen12_9 - test ah,16 - jz LLen12_10 - test ah,32 - jz LLen12_11 - jmp LFail -LLen12_0: -jmp LCopyByte3 -LLen12_1: - mov edx,eax - shr edx,4 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte5 -LLen12_2: - mov edx,eax - shr edx,5 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte7 -LLen12_3: - mov edx,eax - shr edx,6 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword1 -LLen12_4: - mov edx,eax - shr edx,7 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen12_5: - mov edx,eax - shr edx,8 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen12_6: - mov edx,eax - shr edx,9 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen12_7: - mov edx,eax - shr edx,10 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen12_8: - mov edx,eax - shr edx,11 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen12_9: - mov edx,eax - shr edx,12 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen12_10: - mov edx,eax - shr edx,13 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen12_11: - mov edx,eax - shr edx,14 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 - - // Copy Dword 3 -LCopyDword3: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock3 - - // Copy Byte 3 -LCopyByte3: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 3 -LBlock3: - test al,8 - jz LLiteral4 - test al,16 - jz L6Bit5 - test al,32 - jz L9Bit6 - test al,64 - jz L12Bit7 - jmp L20Bit7 - - // Literal 4 -LLiteral4: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,4 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock4 - -L6Bit5: - mov esi,eax - mov ecx,2 - shr esi,5 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,8 - jz LLen13_0 - test al,16 - jz LLen13_1 - test al,32 - jz LLen13_2 - test al,64 - jz LLen13_3 - test al,128 - jz LLen13_4 - test ah,1 - jz LLen13_5 - test ah,2 - jz LLen13_6 - test ah,4 - jz LLen13_7 - test ah,8 - jz LLen13_8 - test ah,16 - jz LLen13_9 - test ah,32 - jz LLen13_10 - test ah,64 - jz LLen13_11 - jmp LFail -LLen13_0: -jmp LCopyByte4 -LLen13_1: - mov edx,eax - shr edx,5 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte6 -LLen13_2: - mov edx,eax - shr edx,6 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen13_3: - mov edx,eax - shr edx,7 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen13_4: - mov edx,eax - shr edx,8 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen13_5: - mov edx,eax - shr edx,9 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen13_6: - mov edx,eax - shr edx,10 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen13_7: - mov edx,eax - shr edx,11 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen13_8: - mov edx,eax - shr edx,12 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen13_9: - mov edx,eax - shr edx,13 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen13_10: - mov edx,eax - shr edx,14 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen13_11: - mov edx,eax - shr edx,15 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 - -L9Bit6: - mov esi,eax - mov ecx,2 - shr esi,6 - and esi,511 - add esi,65 - mov eax,[ebx-3] - inc ebx - test al,128 - jz LLen14_0 - test ah,1 - jz LLen14_1 - test ah,2 - jz LLen14_2 - test ah,4 - jz LLen14_3 - test ah,8 - jz LLen14_4 - test ah,16 - jz LLen14_5 - test ah,32 - jz LLen14_6 - test ah,64 - jz LLen14_7 - test ah,128 - jz LLen14_8 - test eax,65536 - jz LLen14_9 - test eax,131072 - jz LLen14_10 - test eax,262144 - jz LLen14_11 - jmp LFail -LLen14_0: - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen14_1: - mov edx,eax - shr edx,9 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen14_2: - mov edx,eax - shr edx,10 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte4 -LLen14_3: - mov edx,eax - shr edx,11 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen14_4: - mov edx,eax - shr edx,12 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen14_5: - mov edx,eax - shr edx,13 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen14_6: - mov edx,eax - shr edx,14 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen14_7: - mov edx,eax - shr edx,15 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen14_8: - mov edx,eax - shr edx,16 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen14_9: - mov edx,eax - shr edx,17 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 -LLen14_10: - mov edx,eax - shr edx,18 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 -LLen14_11: - mov edx,eax - shr edx,19 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword6 - -L12Bit7: - mov esi,eax - mov ecx,2 - shr esi,7 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,8 - jz LLen15_0 - test al,16 - jz LLen15_1 - test al,32 - jz LLen15_2 - test al,64 - jz LLen15_3 - test al,128 - jz LLen15_4 - test ah,1 - jz LLen15_5 - test ah,2 - jz LLen15_6 - test ah,4 - jz LLen15_7 - test ah,8 - jz LLen15_8 - test ah,16 - jz LLen15_9 - test ah,32 - jz LLen15_10 - test ah,64 - jz LLen15_11 - jmp LFail -LLen15_0: -jmp LCopyByte4 -LLen15_1: - mov edx,eax - shr edx,5 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte6 -LLen15_2: - mov edx,eax - shr edx,6 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen15_3: - mov edx,eax - shr edx,7 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword2 -LLen15_4: - mov edx,eax - shr edx,8 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen15_5: - mov edx,eax - shr edx,9 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen15_6: - mov edx,eax - shr edx,10 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen15_7: - mov edx,eax - shr edx,11 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen15_8: - mov edx,eax - shr edx,12 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen15_9: - mov edx,eax - shr edx,13 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen15_10: - mov edx,eax - shr edx,14 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen15_11: - mov edx,eax - shr edx,15 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 - -L20Bit7: - mov esi,eax - mov ecx,3 - shr esi,7 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,8 - jz LLen16_0 - test al,16 - jz LLen16_1 - test al,32 - jz LLen16_2 - test al,64 - jz LLen16_3 - test al,128 - jz LLen16_4 - test ah,1 - jz LLen16_5 - test ah,2 - jz LLen16_6 - test ah,4 - jz LLen16_7 - test ah,8 - jz LLen16_8 - test ah,16 - jz LLen16_9 - test ah,32 - jz LLen16_10 - test ah,64 - jz LLen16_11 - jmp LFail -LLen16_0: -jmp LCopyByte4 -LLen16_1: - mov edx,eax - shr edx,5 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte6 -LLen16_2: - mov edx,eax - shr edx,6 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen16_3: - mov edx,eax - shr edx,7 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword2 -LLen16_4: - mov edx,eax - shr edx,8 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen16_5: - mov edx,eax - shr edx,9 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen16_6: - mov edx,eax - shr edx,10 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen16_7: - mov edx,eax - shr edx,11 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen16_8: - mov edx,eax - shr edx,12 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen16_9: - mov edx,eax - shr edx,13 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen16_10: - mov edx,eax - shr edx,14 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen16_11: - mov edx,eax - shr edx,15 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 - - // Copy Dword 4 -LCopyDword4: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock4 - - // Copy Byte 4 -LCopyByte4: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 4 -LBlock4: - test al,16 - jz LLiteral5 - test al,32 - jz L6Bit6 - test al,64 - jz L9Bit7 - test al,128 - jz L12Bit8 - jmp L20Bit8 - - // Literal 5 -LLiteral5: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,5 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock5 - -L6Bit6: - mov esi,eax - mov ecx,2 - shr esi,6 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,16 - jz LLen17_0 - test al,32 - jz LLen17_1 - test al,64 - jz LLen17_2 - test al,128 - jz LLen17_3 - test ah,1 - jz LLen17_4 - test ah,2 - jz LLen17_5 - test ah,4 - jz LLen17_6 - test ah,8 - jz LLen17_7 - test ah,16 - jz LLen17_8 - test ah,32 - jz LLen17_9 - test ah,64 - jz LLen17_10 - test ah,128 - jz LLen17_11 - jmp LFail -LLen17_0: -jmp LCopyByte5 -LLen17_1: - mov edx,eax - shr edx,6 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte7 -LLen17_2: - mov edx,eax - shr edx,7 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen17_3: - mov edx,eax - shr edx,8 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen17_4: - mov edx,eax - shr edx,9 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen17_5: - mov edx,eax - shr edx,10 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen17_6: - mov edx,eax - shr edx,11 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen17_7: - mov edx,eax - shr edx,12 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen17_8: - mov edx,eax - shr edx,13 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen17_9: - mov edx,eax - shr edx,14 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen17_10: - mov edx,eax - shr edx,15 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen17_11: - mov edx,eax - shr edx,16 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 - -L9Bit7: - mov esi,eax - mov ecx,2 - shr esi,7 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - test al,1 - jz LLen18_0 - test al,2 - jz LLen18_1 - test al,4 - jz LLen18_2 - test al,8 - jz LLen18_3 - test al,16 - jz LLen18_4 - test al,32 - jz LLen18_5 - test al,64 - jz LLen18_6 - test al,128 - jz LLen18_7 - test ah,1 - jz LLen18_8 - test ah,2 - jz LLen18_9 - test ah,4 - jz LLen18_10 - test ah,8 - jz LLen18_11 - jmp LFail -LLen18_0: -jmp LCopyByte1 -LLen18_1: - mov edx,eax - shr edx,2 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte3 -LLen18_2: - mov edx,eax - shr edx,3 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte5 -LLen18_3: - mov edx,eax - shr edx,4 - add ecx,7 - and edx,7 - add ecx,edx - jmp LCopyDword7 -LLen18_4: - mov edx,eax - shr edx,5 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword1 -LLen18_5: - mov edx,eax - shr edx,6 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen18_6: - mov edx,eax - shr edx,7 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen18_7: - mov edx,eax - shr edx,8 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen18_8: - mov edx,eax - shr edx,9 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen18_9: - mov edx,eax - shr edx,10 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen18_10: - mov edx,eax - shr edx,11 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen18_11: - mov edx,eax - shr edx,12 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 - -L12Bit8: - mov esi,eax - mov ecx,2 - shr esi,8 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,16 - jz LLen19_0 - test al,32 - jz LLen19_1 - test al,64 - jz LLen19_2 - test al,128 - jz LLen19_3 - test ah,1 - jz LLen19_4 - test ah,2 - jz LLen19_5 - test ah,4 - jz LLen19_6 - test ah,8 - jz LLen19_7 - test ah,16 - jz LLen19_8 - test ah,32 - jz LLen19_9 - test ah,64 - jz LLen19_10 - test ah,128 - jz LLen19_11 - jmp LFail -LLen19_0: -jmp LCopyByte5 -LLen19_1: - mov edx,eax - shr edx,6 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte7 -LLen19_2: - mov edx,eax - shr edx,7 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen19_3: - mov edx,eax - shr edx,8 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen19_4: - mov edx,eax - shr edx,9 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen19_5: - mov edx,eax - shr edx,10 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen19_6: - mov edx,eax - shr edx,11 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen19_7: - mov edx,eax - shr edx,12 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen19_8: - mov edx,eax - shr edx,13 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen19_9: - mov edx,eax - shr edx,14 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen19_10: - mov edx,eax - shr edx,15 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 -LLen19_11: - mov edx,eax - shr edx,16 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 - -L20Bit8: - mov esi,eax - mov ecx,3 - shr esi,8 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,16 - jz LLen20_0 - test al,32 - jz LLen20_1 - test al,64 - jz LLen20_2 - test al,128 - jz LLen20_3 - test ah,1 - jz LLen20_4 - test ah,2 - jz LLen20_5 - test ah,4 - jz LLen20_6 - test ah,8 - jz LLen20_7 - test ah,16 - jz LLen20_8 - test ah,32 - jz LLen20_9 - test ah,64 - jz LLen20_10 - test ah,128 - jz LLen20_11 - jmp LFail -LLen20_0: -jmp LCopyByte5 -LLen20_1: - mov edx,eax - shr edx,6 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte7 -LLen20_2: - mov edx,eax - shr edx,7 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen20_3: - mov edx,eax - shr edx,8 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen20_4: - mov edx,eax - shr edx,9 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen20_5: - mov edx,eax - shr edx,10 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen20_6: - mov edx,eax - shr edx,11 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen20_7: - mov edx,eax - shr edx,12 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen20_8: - mov edx,eax - shr edx,13 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen20_9: - mov edx,eax - shr edx,14 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen20_10: - mov edx,eax - shr edx,15 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 -LLen20_11: - mov edx,eax - shr edx,16 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 - - // Copy Dword 5 -LCopyDword5: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock5 - - // Copy Byte 5 -LCopyByte5: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 5 -LBlock5: - test al,32 - jz LLiteral6 - test al,64 - jz L6Bit7 - test al,128 - jz L9Bit8 - test ah,1 - jz L12Bit9 - jmp L20Bit9 - - // Literal 6 -LLiteral6: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,6 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock6 - -L6Bit7: - mov esi,eax - mov ecx,2 - shr esi,7 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,32 - jz LLen21_0 - test al,64 - jz LLen21_1 - test al,128 - jz LLen21_2 - test ah,1 - jz LLen21_3 - test ah,2 - jz LLen21_4 - test ah,4 - jz LLen21_5 - test ah,8 - jz LLen21_6 - test ah,16 - jz LLen21_7 - test ah,32 - jz LLen21_8 - test ah,64 - jz LLen21_9 - test ah,128 - jz LLen21_10 - test eax,65536 - jz LLen21_11 - jmp LFail -LLen21_0: -jmp LCopyByte6 -LLen21_1: - mov edx,eax - shr edx,7 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen21_2: - mov edx,eax - shr edx,8 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen21_3: - mov edx,eax - shr edx,9 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen21_4: - mov edx,eax - shr edx,10 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen21_5: - mov edx,eax - shr edx,11 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen21_6: - mov edx,eax - shr edx,12 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen21_7: - mov edx,eax - shr edx,13 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen21_8: - mov edx,eax - shr edx,14 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen21_9: - mov edx,eax - shr edx,15 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen21_10: - mov edx,eax - shr edx,16 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen21_11: - mov edx,eax - shr edx,17 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 - -L9Bit8: - mov esi,eax - mov ecx,2 - shr esi,8 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - test al,2 - jz LLen22_0 - test al,4 - jz LLen22_1 - test al,8 - jz LLen22_2 - test al,16 - jz LLen22_3 - test al,32 - jz LLen22_4 - test al,64 - jz LLen22_5 - test al,128 - jz LLen22_6 - test ah,1 - jz LLen22_7 - test ah,2 - jz LLen22_8 - test ah,4 - jz LLen22_9 - test ah,8 - jz LLen22_10 - test ah,16 - jz LLen22_11 - jmp LFail -LLen22_0: -jmp LCopyByte2 -LLen22_1: - mov edx,eax - shr edx,3 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte4 -LLen22_2: - mov edx,eax - shr edx,4 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte6 -LLen22_3: - mov edx,eax - shr edx,5 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword0 -LLen22_4: - mov edx,eax - shr edx,6 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword2 -LLen22_5: - mov edx,eax - shr edx,7 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen22_6: - mov edx,eax - shr edx,8 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen22_7: - mov edx,eax - shr edx,9 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen22_8: - mov edx,eax - shr edx,10 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen22_9: - mov edx,eax - shr edx,11 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen22_10: - mov edx,eax - shr edx,12 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen22_11: - mov edx,eax - shr edx,13 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 - -L12Bit9: - mov esi,eax - mov ecx,2 - shr esi,9 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,32 - jz LLen23_0 - test al,64 - jz LLen23_1 - test al,128 - jz LLen23_2 - test ah,1 - jz LLen23_3 - test ah,2 - jz LLen23_4 - test ah,4 - jz LLen23_5 - test ah,8 - jz LLen23_6 - test ah,16 - jz LLen23_7 - test ah,32 - jz LLen23_8 - test ah,64 - jz LLen23_9 - test ah,128 - jz LLen23_10 - test eax,65536 - jz LLen23_11 - jmp LFail -LLen23_0: -jmp LCopyByte6 -LLen23_1: - mov edx,eax - shr edx,7 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen23_2: - mov edx,eax - shr edx,8 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen23_3: - mov edx,eax - shr edx,9 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen23_4: - mov edx,eax - shr edx,10 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen23_5: - mov edx,eax - shr edx,11 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen23_6: - mov edx,eax - shr edx,12 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen23_7: - mov edx,eax - shr edx,13 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen23_8: - mov edx,eax - shr edx,14 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen23_9: - mov edx,eax - shr edx,15 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen23_10: - mov edx,eax - shr edx,16 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 -LLen23_11: - mov edx,eax - shr edx,17 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 - -L20Bit9: - mov esi,eax - mov ecx,3 - shr esi,9 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,32 - jz LLen24_0 - test al,64 - jz LLen24_1 - test al,128 - jz LLen24_2 - test ah,1 - jz LLen24_3 - test ah,2 - jz LLen24_4 - test ah,4 - jz LLen24_5 - test ah,8 - jz LLen24_6 - test ah,16 - jz LLen24_7 - test ah,32 - jz LLen24_8 - test ah,64 - jz LLen24_9 - test ah,128 - jz LLen24_10 - test eax,65536 - jz LLen24_11 - jmp LFail -LLen24_0: -jmp LCopyByte6 -LLen24_1: - mov edx,eax - shr edx,7 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen24_2: - mov edx,eax - shr edx,8 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen24_3: - mov edx,eax - shr edx,9 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen24_4: - mov edx,eax - shr edx,10 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen24_5: - mov edx,eax - shr edx,11 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen24_6: - mov edx,eax - shr edx,12 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen24_7: - mov edx,eax - shr edx,13 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen24_8: - mov edx,eax - shr edx,14 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen24_9: - mov edx,eax - shr edx,15 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen24_10: - mov edx,eax - shr edx,16 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 -LLen24_11: - mov edx,eax - shr edx,17 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 - - // Copy Dword 6 -LCopyDword6: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock6 - - // Copy Byte 6 -LCopyByte6: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 6 -LBlock6: - test al,64 - jz LLiteral7 - test al,128 - jz L6Bit8 - test ah,1 - jz L9Bit9 - test ah,2 - jz L12Bit10 - jmp L20Bit10 - - // Literal 7 -LLiteral7: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov edx,eax - shr edx,7 - mov [edi],dl - inc edi - mov eax,[ebx-3] - inc ebx - jmp LBlock7 - -L6Bit8: - mov esi,eax - mov ecx,2 - shr esi,8 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,64 - jz LLen25_0 - test al,128 - jz LLen25_1 - test ah,1 - jz LLen25_2 - test ah,2 - jz LLen25_3 - test ah,4 - jz LLen25_4 - test ah,8 - jz LLen25_5 - test ah,16 - jz LLen25_6 - test ah,32 - jz LLen25_7 - test ah,64 - jz LLen25_8 - test ah,128 - jz LLen25_9 - test eax,65536 - jz LLen25_10 - test eax,131072 - jz LLen25_11 - jmp LFail -LLen25_0: -jmp LCopyByte7 -LLen25_1: - mov edx,eax - shr edx,8 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen25_2: - mov edx,eax - shr edx,9 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte3 -LLen25_3: - mov edx,eax - shr edx,10 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen25_4: - mov edx,eax - shr edx,11 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen25_5: - mov edx,eax - shr edx,12 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen25_6: - mov edx,eax - shr edx,13 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen25_7: - mov edx,eax - shr edx,14 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 -LLen25_8: - mov edx,eax - shr edx,15 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte7 - jmp LCopyDword7 -LLen25_9: - mov edx,eax - shr edx,16 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte1 - jmp LCopyDword1 -LLen25_10: - mov edx,eax - shr edx,17 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte3 - jmp LCopyDword3 -LLen25_11: - mov edx,eax - shr edx,18 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte5 - jmp LCopyDword5 - -L9Bit9: - mov esi,eax - mov ecx,2 - shr esi,9 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - test al,4 - jz LLen26_0 - test al,8 - jz LLen26_1 - test al,16 - jz LLen26_2 - test al,32 - jz LLen26_3 - test al,64 - jz LLen26_4 - test al,128 - jz LLen26_5 - test ah,1 - jz LLen26_6 - test ah,2 - jz LLen26_7 - test ah,4 - jz LLen26_8 - test ah,8 - jz LLen26_9 - test ah,16 - jz LLen26_10 - test ah,32 - jz LLen26_11 - jmp LFail -LLen26_0: -jmp LCopyByte3 -LLen26_1: - mov edx,eax - shr edx,4 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte5 -LLen26_2: - mov edx,eax - shr edx,5 - add ecx,3 - and edx,3 - add ecx,edx -jmp LCopyByte7 -LLen26_3: - mov edx,eax - shr edx,6 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword1 -LLen26_4: - mov edx,eax - shr edx,7 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword3 -LLen26_5: - mov edx,eax - shr edx,8 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen26_6: - mov edx,eax - shr edx,9 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen26_7: - mov edx,eax - shr edx,10 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen26_8: - mov edx,eax - shr edx,11 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen26_9: - mov edx,eax - shr edx,12 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen26_10: - mov edx,eax - shr edx,13 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen26_11: - mov edx,eax - shr edx,14 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 - -L12Bit10: - mov esi,eax - mov ecx,2 - shr esi,10 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,64 - jz LLen27_0 - test al,128 - jz LLen27_1 - test ah,1 - jz LLen27_2 - test ah,2 - jz LLen27_3 - test ah,4 - jz LLen27_4 - test ah,8 - jz LLen27_5 - test ah,16 - jz LLen27_6 - test ah,32 - jz LLen27_7 - test ah,64 - jz LLen27_8 - test ah,128 - jz LLen27_9 - test eax,65536 - jz LLen27_10 - test eax,131072 - jz LLen27_11 - jmp LFail -LLen27_0: -jmp LCopyByte7 -LLen27_1: - mov edx,eax - shr edx,8 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen27_2: - mov edx,eax - shr edx,9 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte3 -LLen27_3: - mov edx,eax - shr edx,10 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen27_4: - mov edx,eax - shr edx,11 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen27_5: - mov edx,eax - shr edx,12 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen27_6: - mov edx,eax - shr edx,13 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen27_7: - mov edx,eax - shr edx,14 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen27_8: - mov edx,eax - shr edx,15 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen27_9: - mov edx,eax - shr edx,16 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 -LLen27_10: - mov edx,eax - shr edx,17 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 -LLen27_11: - mov edx,eax - shr edx,18 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword5 - -L20Bit10: - mov esi,eax - mov ecx,3 - shr esi,10 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,64 - jz LLen28_0 - test al,128 - jz LLen28_1 - test ah,1 - jz LLen28_2 - test ah,2 - jz LLen28_3 - test ah,4 - jz LLen28_4 - test ah,8 - jz LLen28_5 - test ah,16 - jz LLen28_6 - test ah,32 - jz LLen28_7 - test ah,64 - jz LLen28_8 - test ah,128 - jz LLen28_9 - test eax,65536 - jz LLen28_10 - test eax,131072 - jz LLen28_11 - jmp LFail -LLen28_0: -jmp LCopyByte7 -LLen28_1: - mov edx,eax - shr edx,8 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte1 -LLen28_2: - mov edx,eax - shr edx,9 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte3 -LLen28_3: - mov edx,eax - shr edx,10 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword5 -LLen28_4: - mov edx,eax - shr edx,11 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword7 -LLen28_5: - mov edx,eax - shr edx,12 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword1 -LLen28_6: - mov edx,eax - shr edx,13 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword3 -LLen28_7: - mov edx,eax - shr edx,14 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword5 -LLen28_8: - mov edx,eax - shr edx,15 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword7 -LLen28_9: - mov edx,eax - shr edx,16 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword1 -LLen28_10: - mov edx,eax - shr edx,17 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword3 -LLen28_11: - mov edx,eax - shr edx,18 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword5 - - // Copy Dword 7 -LCopyDword7: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - mov edx,ecx - shr ecx,2 - and edx,3 - rep movsd - mov ecx,edx - rep movsb - jmp LBlock7 - - // Copy Byte 7 -LCopyByte7: -#ifdef SAFETY - push edx - lea edx,[edi+ecx] - cmp edx,pbLimDst - pop edx - ja LFail -#endif //SAFETY - neg esi - add esi,edi -#ifdef SAFETY - cmp esi,pvDst - jb LFail -#endif //SAFETY - rep movsb - - // Block 7 -LBlock7: - test al,128 - jz LLiteral8 - test ah,1 - jz L6Bit9 - test ah,2 - jz L9Bit10 - test ah,4 - jz L12Bit11 - jmp L20Bit11 - - // Literal 8 -LLiteral8: -#ifdef SAFETY - cmp edi,pbLimDst - jae LFail -#endif //SAFETY - mov [edi],ah - inc edi - mov eax,[ebx-2] - add ebx,2 - jmp LBlock0 - -L6Bit9: - mov esi,eax - mov ecx,2 - shr esi,9 - and esi,63 - inc esi - mov eax,[ebx-3] - inc ebx - test al,128 - jz LLen29_0 - test ah,1 - jz LLen29_1 - test ah,2 - jz LLen29_2 - test ah,4 - jz LLen29_3 - test ah,8 - jz LLen29_4 - test ah,16 - jz LLen29_5 - test ah,32 - jz LLen29_6 - test ah,64 - jz LLen29_7 - test ah,128 - jz LLen29_8 - test eax,65536 - jz LLen29_9 - test eax,131072 - jz LLen29_10 - test eax,262144 - jz LLen29_11 - jmp LFail -LLen29_0: - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen29_1: - mov edx,eax - shr edx,9 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen29_2: - mov edx,eax - shr edx,10 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte4 -LLen29_3: - mov edx,eax - shr edx,11 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen29_4: - mov edx,eax - shr edx,12 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen29_5: - mov edx,eax - shr edx,13 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen29_6: - mov edx,eax - shr edx,14 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen29_7: - mov edx,eax - shr edx,15 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 -LLen29_8: - mov edx,eax - shr edx,16 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte0 - jmp LCopyDword0 -LLen29_9: - mov edx,eax - shr edx,17 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte2 - jmp LCopyDword2 -LLen29_10: - mov edx,eax - shr edx,18 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte4 - jmp LCopyDword4 -LLen29_11: - mov edx,eax - shr edx,19 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - cmp esi,4 - jb LCopyByte6 - jmp LCopyDword6 - -L9Bit10: - mov esi,eax - mov ecx,2 - shr esi,10 - and esi,511 - add esi,65 - mov eax,[ebx-2] - add ebx,2 - test al,8 - jz LLen30_0 - test al,16 - jz LLen30_1 - test al,32 - jz LLen30_2 - test al,64 - jz LLen30_3 - test al,128 - jz LLen30_4 - test ah,1 - jz LLen30_5 - test ah,2 - jz LLen30_6 - test ah,4 - jz LLen30_7 - test ah,8 - jz LLen30_8 - test ah,16 - jz LLen30_9 - test ah,32 - jz LLen30_10 - test ah,64 - jz LLen30_11 - jmp LFail -LLen30_0: -jmp LCopyByte4 -LLen30_1: - mov edx,eax - shr edx,5 - add ecx,1 - and edx,1 - add ecx,edx -jmp LCopyByte6 -LLen30_2: - mov edx,eax - shr edx,6 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen30_3: - mov edx,eax - shr edx,7 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword2 -LLen30_4: - mov edx,eax - shr edx,8 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword4 -LLen30_5: - mov edx,eax - shr edx,9 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen30_6: - mov edx,eax - shr edx,10 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen30_7: - mov edx,eax - shr edx,11 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen30_8: - mov edx,eax - shr edx,12 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen30_9: - mov edx,eax - shr edx,13 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen30_10: - mov edx,eax - shr edx,14 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen30_11: - mov edx,eax - shr edx,15 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 - -L12Bit11: - mov esi,eax - mov ecx,2 - shr esi,11 - and esi,4095 - add esi,577 - mov eax,[ebx-2] - add ebx,2 - test al,128 - jz LLen31_0 - test ah,1 - jz LLen31_1 - test ah,2 - jz LLen31_2 - test ah,4 - jz LLen31_3 - test ah,8 - jz LLen31_4 - test ah,16 - jz LLen31_5 - test ah,32 - jz LLen31_6 - test ah,64 - jz LLen31_7 - test ah,128 - jz LLen31_8 - test eax,65536 - jz LLen31_9 - test eax,131072 - jz LLen31_10 - test eax,262144 - jz LLen31_11 - jmp LFail -LLen31_0: - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen31_1: - mov edx,eax - shr edx,9 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen31_2: - mov edx,eax - shr edx,10 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte4 -LLen31_3: - mov edx,eax - shr edx,11 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen31_4: - mov edx,eax - shr edx,12 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen31_5: - mov edx,eax - shr edx,13 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen31_6: - mov edx,eax - shr edx,14 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen31_7: - mov edx,eax - shr edx,15 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen31_8: - mov edx,eax - shr edx,16 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen31_9: - mov edx,eax - shr edx,17 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 -LLen31_10: - mov edx,eax - shr edx,18 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 -LLen31_11: - mov edx,eax - shr edx,19 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword6 - -L20Bit11: - mov esi,eax - mov ecx,3 - shr esi,11 - and esi,1048575 - cmp esi,1048575 - je LDone - add esi,4673 - mov eax,[ebx-1] - add ebx,3 - test al,128 - jz LLen32_0 - test ah,1 - jz LLen32_1 - test ah,2 - jz LLen32_2 - test ah,4 - jz LLen32_3 - test ah,8 - jz LLen32_4 - test ah,16 - jz LLen32_5 - test ah,32 - jz LLen32_6 - test ah,64 - jz LLen32_7 - test ah,128 - jz LLen32_8 - test eax,65536 - jz LLen32_9 - test eax,131072 - jz LLen32_10 - test eax,262144 - jz LLen32_11 - jmp LFail -LLen32_0: - mov eax,[ebx-3] - inc ebx -jmp LCopyByte0 -LLen32_1: - mov edx,eax - shr edx,9 - add ecx,1 - and edx,1 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte2 -LLen32_2: - mov edx,eax - shr edx,10 - add ecx,3 - and edx,3 - add ecx,edx - mov eax,[ebx-3] - inc ebx -jmp LCopyByte4 -LLen32_3: - mov edx,eax - shr edx,11 - add ecx,7 - and edx,7 - add ecx,edx - mov eax,[ebx-3] - inc ebx - jmp LCopyDword6 -LLen32_4: - mov edx,eax - shr edx,12 - add ecx,15 - and edx,15 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword0 -LLen32_5: - mov edx,eax - shr edx,13 - add ecx,31 - and edx,31 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword2 -LLen32_6: - mov edx,eax - shr edx,14 - add ecx,63 - and edx,63 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword4 -LLen32_7: - mov edx,eax - shr edx,15 - add ecx,127 - and edx,127 - add ecx,edx - mov eax,[ebx-2] - add ebx,2 - jmp LCopyDword6 -LLen32_8: - mov edx,eax - shr edx,16 - add ecx,255 - and edx,255 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword0 -LLen32_9: - mov edx,eax - shr edx,17 - add ecx,511 - and edx,511 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword2 -LLen32_10: - mov edx,eax - shr edx,18 - add ecx,1023 - and edx,1023 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword4 -LLen32_11: - mov edx,eax - shr edx,19 - add ecx,2047 - and edx,2047 - add ecx,edx - mov eax,[ebx-1] - add ebx,3 - jmp LCopyDword6 - -LDone: - sub edi,pvDst - mov cbTot,edi - } - diff --git a/setvars.bat b/setvars.bat index 99c2ff08..7ec2a362 100644 --- a/setvars.bat +++ b/setvars.bat @@ -10,6 +10,8 @@ set KAUAI_ROOT=%SOC_ROOT%\kauai :: Update includes to cover whats needed set include=%include%;%SOC_ROOT%\INC;%SOC_ROOT%\BREN\INC;%KAUAI_ROOT%\SRC;%SOC_ROOT%\SRC +set MSVCNT_ROOT=C:\MSVC20 + :: Set project set PROJ=SOC